diff --git a/_downloads/00031d42551c7ab1aebe97557970ce59/xkcd.ipynb b/_downloads/00031d42551c7ab1aebe97557970ce59/xkcd.ipynb deleted file mode 120000 index 1f5c39c4d7a..00000000000 --- a/_downloads/00031d42551c7ab1aebe97557970ce59/xkcd.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/00031d42551c7ab1aebe97557970ce59/xkcd.ipynb \ No newline at end of file diff --git a/_downloads/00092e8501d7b746e7fd736473feb0f6/scatter_star_poly.ipynb b/_downloads/00092e8501d7b746e7fd736473feb0f6/scatter_star_poly.ipynb deleted file mode 120000 index 7808302cf27..00000000000 --- a/_downloads/00092e8501d7b746e7fd736473feb0f6/scatter_star_poly.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/00092e8501d7b746e7fd736473feb0f6/scatter_star_poly.ipynb \ No newline at end of file diff --git a/_downloads/000ad3317b78df156c632a5c653d11ba/multiple_figs_demo.ipynb b/_downloads/000ad3317b78df156c632a5c653d11ba/multiple_figs_demo.ipynb deleted file mode 120000 index ad71db8a6bf..00000000000 --- a/_downloads/000ad3317b78df156c632a5c653d11ba/multiple_figs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/000ad3317b78df156c632a5c653d11ba/multiple_figs_demo.ipynb \ No newline at end of file diff --git a/_downloads/00157115776ca5e6a9574f992adbb8a7/demo_curvelinear_grid.py b/_downloads/00157115776ca5e6a9574f992adbb8a7/demo_curvelinear_grid.py deleted file mode 100644 index 9d1d4f7b3f7..00000000000 --- a/_downloads/00157115776ca5e6a9574f992adbb8a7/demo_curvelinear_grid.py +++ /dev/null @@ -1,119 +0,0 @@ -""" -===================== -Curvilinear grid demo -===================== - -Custom grid and ticklines. - -This example demonstrates how to use -`~.grid_helper_curvelinear.GridHelperCurveLinear` to define custom grids and -ticklines by applying a transformation on the grid. This can be used, as -shown on the second plot, to create polar projections in a rectangular box. -""" - -import numpy as np - -import matplotlib.pyplot as plt -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D - -from mpl_toolkits.axisartist import ( - angle_helper, Subplot, SubplotHost, ParasiteAxesAuxTrans) -from mpl_toolkits.axisartist.grid_helper_curvelinear import ( - GridHelperCurveLinear) - - -def curvelinear_test1(fig): - """ - Grid for custom transform. - """ - - def tr(x, y): - x, y = np.asarray(x), np.asarray(y) - return x, y - x - - def inv_tr(x, y): - x, y = np.asarray(x), np.asarray(y) - return x, y + x - - grid_helper = GridHelperCurveLinear((tr, inv_tr)) - - ax1 = Subplot(fig, 1, 2, 1, grid_helper=grid_helper) - # ax1 will have a ticks and gridlines defined by the given - # transform (+ transData of the Axes). Note that the transform of - # the Axes itself (i.e., transData) is not affected by the given - # transform. - - fig.add_subplot(ax1) - - xx, yy = tr([3, 6], [5, 10]) - ax1.plot(xx, yy, linewidth=2.0) - - ax1.set_aspect(1) - ax1.set_xlim(0, 10) - ax1.set_ylim(0, 10) - - ax1.axis["t"] = ax1.new_floating_axis(0, 3) - ax1.axis["t2"] = ax1.new_floating_axis(1, 7) - ax1.grid(True, zorder=0) - - -def curvelinear_test2(fig): - """ - Polar projection, but in a rectangular box. - """ - - # PolarAxes.PolarTransform takes radian. However, we want our coordinate - # system in degree - tr = Affine2D().scale(np.pi/180, 1) + PolarAxes.PolarTransform() - # Polar projection, which involves cycle, and also has limits in - # its coordinates, needs a special method to find the extremes - # (min, max of the coordinate within the view). - extreme_finder = angle_helper.ExtremeFinderCycle( - nx=20, ny=20, # Number of sampling points in each direction. - lon_cycle=360, lat_cycle=None, - lon_minmax=None, lat_minmax=(0, np.inf), - ) - # Find grid values appropriate for the coordinate (degree, minute, second). - grid_locator1 = angle_helper.LocatorDMS(12) - # Use an appropriate formatter. Note that the acceptable Locator and - # Formatter classes are a bit different than that of Matplotlib, which - # cannot directly be used here (this may be possible in the future). - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear( - tr, extreme_finder=extreme_finder, - grid_locator1=grid_locator1, tick_formatter1=tick_formatter1) - ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper) - - # make ticklabels of right and top axis visible. - ax1.axis["right"].major_ticklabels.set_visible(True) - ax1.axis["top"].major_ticklabels.set_visible(True) - # let right axis shows ticklabels for 1st coordinate (angle) - ax1.axis["right"].get_helper().nth_coord_ticks = 0 - # let bottom axis shows ticklabels for 2nd coordinate (radius) - ax1.axis["bottom"].get_helper().nth_coord_ticks = 1 - - fig.add_subplot(ax1) - - ax1.set_aspect(1) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - ax1.grid(True, zorder=0) - - # A parasite axes with given transform - ax2 = ParasiteAxesAuxTrans(ax1, tr, "equal") - # note that ax2.transData == tr + ax1.transData - # Anything you draw in ax2 will match the ticks and grids of ax1. - ax1.parasites.append(ax2) - ax2.plot(np.linspace(0, 30, 51), np.linspace(10, 10, 51), linewidth=2) - - -if __name__ == "__main__": - fig = plt.figure(figsize=(7, 4)) - - curvelinear_test1(fig) - curvelinear_test2(fig) - - plt.show() diff --git a/_downloads/0017d0c84e03d6c5e463e23d8e570671/line_collection.ipynb b/_downloads/0017d0c84e03d6c5e463e23d8e570671/line_collection.ipynb deleted file mode 120000 index 2ab39751203..00000000000 --- a/_downloads/0017d0c84e03d6c5e463e23d8e570671/line_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0017d0c84e03d6c5e463e23d8e570671/line_collection.ipynb \ No newline at end of file diff --git a/_downloads/0019310e9444a709ad98db6ee976416e/errorbar_features.py b/_downloads/0019310e9444a709ad98db6ee976416e/errorbar_features.py deleted file mode 120000 index 4ce374eda63..00000000000 --- a/_downloads/0019310e9444a709ad98db6ee976416e/errorbar_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0019310e9444a709ad98db6ee976416e/errorbar_features.py \ No newline at end of file diff --git a/_downloads/00203bf5bb8c7d15b41d4ce0fe1d4050/contour3d_2.py b/_downloads/00203bf5bb8c7d15b41d4ce0fe1d4050/contour3d_2.py deleted file mode 120000 index 2a30171e2df..00000000000 --- a/_downloads/00203bf5bb8c7d15b41d4ce0fe1d4050/contour3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/00203bf5bb8c7d15b41d4ce0fe1d4050/contour3d_2.py \ No newline at end of file diff --git a/_downloads/0022b7e9bf5038dee659317030adc254/scales.py b/_downloads/0022b7e9bf5038dee659317030adc254/scales.py deleted file mode 120000 index 877aa1f5cd5..00000000000 --- a/_downloads/0022b7e9bf5038dee659317030adc254/scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0022b7e9bf5038dee659317030adc254/scales.py \ No newline at end of file diff --git a/_downloads/002dd88353c81f8ead8c49d917e79775/agg_buffer.ipynb b/_downloads/002dd88353c81f8ead8c49d917e79775/agg_buffer.ipynb deleted file mode 120000 index 7382c7ad924..00000000000 --- a/_downloads/002dd88353c81f8ead8c49d917e79775/agg_buffer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/002dd88353c81f8ead8c49d917e79775/agg_buffer.ipynb \ No newline at end of file diff --git a/_downloads/0030ea2ba073910bfaeee3324b663fd9/simple_anim.ipynb b/_downloads/0030ea2ba073910bfaeee3324b663fd9/simple_anim.ipynb deleted file mode 120000 index df4bdff680b..00000000000 --- a/_downloads/0030ea2ba073910bfaeee3324b663fd9/simple_anim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0030ea2ba073910bfaeee3324b663fd9/simple_anim.ipynb \ No newline at end of file diff --git a/_downloads/003118d8eb1e7df55671bcdf18bfac3c/sample_plots.ipynb b/_downloads/003118d8eb1e7df55671bcdf18bfac3c/sample_plots.ipynb deleted file mode 120000 index abaeb3bfc50..00000000000 --- a/_downloads/003118d8eb1e7df55671bcdf18bfac3c/sample_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/003118d8eb1e7df55671bcdf18bfac3c/sample_plots.ipynb \ No newline at end of file diff --git a/_downloads/0035868b7cf7fcb6c06f2b024e2ac642/polygon_selector_demo.py b/_downloads/0035868b7cf7fcb6c06f2b024e2ac642/polygon_selector_demo.py deleted file mode 100644 index e692ccfa493..00000000000 --- a/_downloads/0035868b7cf7fcb6c06f2b024e2ac642/polygon_selector_demo.py +++ /dev/null @@ -1,94 +0,0 @@ -""" -===================== -Polygon Selector Demo -===================== - -Shows how one can select indices of a polygon interactively. - -""" -import numpy as np - -from matplotlib.widgets import PolygonSelector -from matplotlib.path import Path - - -class SelectFromCollection(object): - """Select indices from a matplotlib collection using `PolygonSelector`. - - Selected indices are saved in the `ind` attribute. This tool fades out the - points that are not part of the selection (i.e., reduces their alpha - values). If your collection has alpha < 1, this tool will permanently - alter the alpha values. - - Note that this tool selects collection objects based on their *origins* - (i.e., `offsets`). - - Parameters - ---------- - ax : :class:`~matplotlib.axes.Axes` - Axes to interact with. - - collection : :class:`matplotlib.collections.Collection` subclass - Collection you want to select from. - - alpha_other : 0 <= float <= 1 - To highlight a selection, this tool sets all selected points to an - alpha value of 1 and non-selected points to `alpha_other`. - """ - - def __init__(self, ax, collection, alpha_other=0.3): - self.canvas = ax.figure.canvas - self.collection = collection - self.alpha_other = alpha_other - - self.xys = collection.get_offsets() - self.Npts = len(self.xys) - - # Ensure that we have separate colors for each object - self.fc = collection.get_facecolors() - if len(self.fc) == 0: - raise ValueError('Collection must have a facecolor') - elif len(self.fc) == 1: - self.fc = np.tile(self.fc, (self.Npts, 1)) - - self.poly = PolygonSelector(ax, self.onselect) - self.ind = [] - - def onselect(self, verts): - path = Path(verts) - self.ind = np.nonzero(path.contains_points(self.xys))[0] - self.fc[:, -1] = self.alpha_other - self.fc[self.ind, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - def disconnect(self): - self.poly.disconnect_events() - self.fc[:, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - - fig, ax = plt.subplots() - grid_size = 5 - grid_x = np.tile(np.arange(grid_size), grid_size) - grid_y = np.repeat(np.arange(grid_size), grid_size) - pts = ax.scatter(grid_x, grid_y) - - selector = SelectFromCollection(ax, pts) - - print("Select points in the figure by enclosing them within a polygon.") - print("Press the 'esc' key to start a new polygon.") - print("Try holding the 'shift' key to move all of the vertices.") - print("Try holding the 'ctrl' key to move a single vertex.") - - plt.show() - - selector.disconnect() - - # After figure is closed print the coordinates of the selected points - print('\nSelected points:') - print(selector.xys[selector.ind]) diff --git a/_downloads/0038bf654cefcc9f8b9018e49eeea749/scatter_masked.py b/_downloads/0038bf654cefcc9f8b9018e49eeea749/scatter_masked.py deleted file mode 120000 index 5cc78b9e2f2..00000000000 --- a/_downloads/0038bf654cefcc9f8b9018e49eeea749/scatter_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0038bf654cefcc9f8b9018e49eeea749/scatter_masked.py \ No newline at end of file diff --git a/_downloads/006864203ca4de4c04011c9c0903878a/gridspec.ipynb b/_downloads/006864203ca4de4c04011c9c0903878a/gridspec.ipynb deleted file mode 100644 index d6da4bbd862..00000000000 --- a/_downloads/006864203ca4de4c04011c9c0903878a/gridspec.ipynb +++ /dev/null @@ -1,270 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customizing Figure Layouts Using GridSpec and Other Functions\n\n\nHow to create grid-shaped combinations of axes.\n\n :func:`~matplotlib.pyplot.subplots`\n Perhaps the primary function used to create figures and axes.\n It's also similar to :func:`.matplotlib.pyplot.subplot`,\n but creates and places all axes on the figure at once. See also\n `matplotlib.Figure.subplots`.\n\n :class:`~matplotlib.gridspec.GridSpec`\n Specifies the geometry of the grid that a subplot will be\n placed. The number of rows and number of columns of the grid\n need to be set. Optionally, the subplot layout parameters\n (e.g., left, right, etc.) can be tuned.\n\n :class:`~matplotlib.gridspec.SubplotSpec`\n Specifies the location of the subplot in the given *GridSpec*.\n\n :func:`~matplotlib.pyplot.subplot2grid`\n A helper function that is similar to\n :func:`~matplotlib.pyplot.subplot`,\n but uses 0-based indexing and let subplot to occupy multiple cells.\n This function is not covered in this tutorial.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Basic Quickstart Guide\n======================\n\nThese first two examples show how to create a basic 2-by-2 grid using\nboth :func:`~matplotlib.pyplot.subplots` and :mod:`~matplotlib.gridspec`.\n\nUsing :func:`~matplotlib.pyplot.subplots` is quite simple.\nIt returns a :class:`~matplotlib.figure.Figure` instance and an array of\n:class:`~matplotlib.axes.Axes` objects.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, f1_axes = plt.subplots(ncols=2, nrows=2, constrained_layout=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For a simple use case such as this, :mod:`~matplotlib.gridspec` is\nperhaps overly verbose.\nYou have to create the figure and :class:`~matplotlib.gridspec.GridSpec`\ninstance separately, then pass elements of gridspec instance to the\n:func:`~matplotlib.figure.Figure.add_subplot` method to create the axes\nobjects.\nThe elements of the gridspec are accessed in generally the same manner as\nnumpy arrays.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2 = plt.figure(constrained_layout=True)\nspec2 = gridspec.GridSpec(ncols=2, nrows=2, figure=fig2)\nf2_ax1 = fig2.add_subplot(spec2[0, 0])\nf2_ax2 = fig2.add_subplot(spec2[0, 1])\nf2_ax3 = fig2.add_subplot(spec2[1, 0])\nf2_ax4 = fig2.add_subplot(spec2[1, 1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The power of gridspec comes in being able to create subplots that span\nrows and columns. Note the\n`Numpy slice `_\nsyntax for selecting the part of the gridspec each subplot will occupy.\n\nNote that we have also used the convenience method `.Figure.add_gridspec`\ninstead of `.gridspec.GridSpec`, potentially saving the user an import,\nand keeping the namespace cleaner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig3 = plt.figure(constrained_layout=True)\ngs = fig3.add_gridspec(3, 3)\nf3_ax1 = fig3.add_subplot(gs[0, :])\nf3_ax1.set_title('gs[0, :]')\nf3_ax2 = fig3.add_subplot(gs[1, :-1])\nf3_ax2.set_title('gs[1, :-1]')\nf3_ax3 = fig3.add_subplot(gs[1:, -1])\nf3_ax3.set_title('gs[1:, -1]')\nf3_ax4 = fig3.add_subplot(gs[-1, 0])\nf3_ax4.set_title('gs[-1, 0]')\nf3_ax5 = fig3.add_subplot(gs[-1, -2])\nf3_ax5.set_title('gs[-1, -2]')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":mod:`~matplotlib.gridspec` is also indispensable for creating subplots\nof different widths via a couple of methods.\n\nThe method shown here is similar to the one above and initializes a\nuniform grid specification,\nand then uses numpy indexing and slices to allocate multiple\n\"cells\" for a given subplot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig4 = plt.figure(constrained_layout=True)\nspec4 = fig4.add_gridspec(ncols=2, nrows=2)\nanno_opts = dict(xy=(0.5, 0.5), xycoords='axes fraction',\n va='center', ha='center')\n\nf4_ax1 = fig4.add_subplot(spec4[0, 0])\nf4_ax1.annotate('GridSpec[0, 0]', **anno_opts)\nfig4.add_subplot(spec4[0, 1]).annotate('GridSpec[0, 1:]', **anno_opts)\nfig4.add_subplot(spec4[1, 0]).annotate('GridSpec[1:, 0]', **anno_opts)\nfig4.add_subplot(spec4[1, 1]).annotate('GridSpec[1:, 1:]', **anno_opts)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another option is to use the ``width_ratios`` and ``height_ratios``\nparameters. These keyword arguments are lists of numbers.\nNote that absolute values are meaningless, only their relative ratios\nmatter. That means that ``width_ratios=[2, 4, 8]`` is equivalent to\n``width_ratios=[1, 2, 4]`` within equally wide figures.\nFor the sake of demonstration, we'll blindly create the axes within\n``for`` loops since we won't need them later.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig5 = plt.figure(constrained_layout=True)\nwidths = [2, 3, 1.5]\nheights = [1, 3, 2]\nspec5 = fig5.add_gridspec(ncols=3, nrows=3, width_ratios=widths,\n height_ratios=heights)\nfor row in range(3):\n for col in range(3):\n ax = fig5.add_subplot(spec5[row, col])\n label = 'Width: {}\\nHeight: {}'.format(widths[col], heights[row])\n ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Learning to use ``width_ratios`` and ``height_ratios`` is particularly\nuseful since the top-level function :func:`~matplotlib.pyplot.subplots`\naccepts them within the ``gridspec_kw`` parameter.\nFor that matter, any parameter accepted by\n:class:`~matplotlib.gridspec.GridSpec` can be passed to\n:func:`~matplotlib.pyplot.subplots` via the ``gridspec_kw`` parameter.\nThis example recreates the previous figure without directly using a\ngridspec instance.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "gs_kw = dict(width_ratios=widths, height_ratios=heights)\nfig6, f6_axes = plt.subplots(ncols=3, nrows=3, constrained_layout=True,\n gridspec_kw=gs_kw)\nfor r, row in enumerate(f6_axes):\n for c, ax in enumerate(row):\n label = 'Width: {}\\nHeight: {}'.format(widths[c], heights[r])\n ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The ``subplots`` and ``gridspec`` methods can be combined since it is\nsometimes more convenient to make most of the subplots using ``subplots``\nand then remove some and combine them. Here we create a layout with\nthe bottom two axes in the last column combined.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig7, f7_axs = plt.subplots(ncols=3, nrows=3)\ngs = f7_axs[1, 2].get_gridspec()\n# remove the underlying axes\nfor ax in f7_axs[1:, -1]:\n ax.remove()\naxbig = fig7.add_subplot(gs[1:, -1])\naxbig.annotate('Big Axes \\nGridSpec[1:, -1]', (0.1, 0.5),\n xycoords='axes fraction', va='center')\n\nfig7.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Fine Adjustments to a Gridspec Layout\n=====================================\n\nWhen a GridSpec is explicitly used, you can adjust the layout\nparameters of subplots that are created from the GridSpec. Note this\noption is not compatible with ``constrained_layout`` or\n`.Figure.tight_layout` which both adjust subplot sizes to fill the\nfigure.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig8 = plt.figure(constrained_layout=False)\ngs1 = fig8.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48, wspace=0.05)\nf8_ax1 = fig8.add_subplot(gs1[:-1, :])\nf8_ax2 = fig8.add_subplot(gs1[-1, :-1])\nf8_ax3 = fig8.add_subplot(gs1[-1, -1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is similar to :func:`~matplotlib.pyplot.subplots_adjust`, but it only\naffects the subplots that are created from the given GridSpec.\n\nFor example, compare the left and right sides of this figure:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig9 = plt.figure(constrained_layout=False)\ngs1 = fig9.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48,\n wspace=0.05)\nf9_ax1 = fig9.add_subplot(gs1[:-1, :])\nf9_ax2 = fig9.add_subplot(gs1[-1, :-1])\nf9_ax3 = fig9.add_subplot(gs1[-1, -1])\n\ngs2 = fig9.add_gridspec(nrows=3, ncols=3, left=0.55, right=0.98,\n hspace=0.05)\nf9_ax4 = fig9.add_subplot(gs2[:, :-1])\nf9_ax5 = fig9.add_subplot(gs2[:-1, -1])\nf9_ax6 = fig9.add_subplot(gs2[-1, -1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "GridSpec using SubplotSpec\n==========================\n\nYou can create GridSpec from the :class:`~matplotlib.gridspec.SubplotSpec`,\nin which case its layout parameters are set to that of the location of\nthe given SubplotSpec.\n\nNote this is also available from the more verbose\n`.gridspec.GridSpecFromSubplotSpec`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig10 = plt.figure(constrained_layout=True)\ngs0 = fig10.add_gridspec(1, 2)\n\ngs00 = gs0[0].subgridspec(2, 3)\ngs01 = gs0[1].subgridspec(3, 2)\n\nfor a in range(2):\n for b in range(3):\n fig10.add_subplot(gs00[a, b])\n fig10.add_subplot(gs01[b, a])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A Complex Nested GridSpec using SubplotSpec\n===========================================\n\nHere's a more sophisticated example of nested GridSpec where we put\na box around each cell of the outer 4x4 grid, by hiding appropriate\nspines in each of the inner 3x3 grids.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom itertools import product\n\n\ndef squiggle_xy(a, b, c, d, i=np.arange(0.0, 2*np.pi, 0.05)):\n return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d)\n\n\nfig11 = plt.figure(figsize=(8, 8), constrained_layout=False)\n\n# gridspec inside gridspec\nouter_grid = fig11.add_gridspec(4, 4, wspace=0.0, hspace=0.0)\n\nfor i in range(16):\n inner_grid = outer_grid[i].subgridspec(3, 3, wspace=0.0, hspace=0.0)\n a, b = int(i/4)+1, i % 4+1\n for j, (c, d) in enumerate(product(range(1, 4), repeat=2)):\n ax = fig11.add_subplot(inner_grid[j])\n ax.plot(*squiggle_xy(a, b, c, d))\n ax.set_xticks([])\n ax.set_yticks([])\n fig11.add_subplot(ax)\n\nall_axes = fig11.get_axes()\n\n# show only the outside spines\nfor ax in all_axes:\n for sp in ax.spines.values():\n sp.set_visible(False)\n if ax.is_first_row():\n ax.spines['top'].set_visible(True)\n if ax.is_last_row():\n ax.spines['bottom'].set_visible(True)\n if ax.is_first_col():\n ax.spines['left'].set_visible(True)\n if ax.is_last_col():\n ax.spines['right'].set_visible(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe usage of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.pyplot.subplots\nmatplotlib.figure.Figure.add_gridspec\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.gridspec.GridSpec\nmatplotlib.gridspec.SubplotSpec.subgridspec\nmatplotlib.gridspec.GridSpecFromSubplotSpec" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/00704adb593ead5fd1c82f1794a7e24c/demo_axis_direction.ipynb b/_downloads/00704adb593ead5fd1c82f1794a7e24c/demo_axis_direction.ipynb deleted file mode 120000 index 58e4ab2f074..00000000000 --- a/_downloads/00704adb593ead5fd1c82f1794a7e24c/demo_axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/00704adb593ead5fd1c82f1794a7e24c/demo_axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/0083f14bca9831785ea2adc7f5f94faa/multiple_yaxis_with_spines.py b/_downloads/0083f14bca9831785ea2adc7f5f94faa/multiple_yaxis_with_spines.py deleted file mode 120000 index e51143d1980..00000000000 --- a/_downloads/0083f14bca9831785ea2adc7f5f94faa/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0083f14bca9831785ea2adc7f5f94faa/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/008a957aaa588a27f165fc8c3cccc952/svg_tooltip_sgskip.ipynb b/_downloads/008a957aaa588a27f165fc8c3cccc952/svg_tooltip_sgskip.ipynb deleted file mode 120000 index 92b28458346..00000000000 --- a/_downloads/008a957aaa588a27f165fc8c3cccc952/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/008a957aaa588a27f165fc8c3cccc952/svg_tooltip_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/009aa8b612fe75c3b3046dbffcd0d1c7/axisartist.py b/_downloads/009aa8b612fe75c3b3046dbffcd0d1c7/axisartist.py deleted file mode 100644 index ce227e0ef26..00000000000 --- a/_downloads/009aa8b612fe75c3b3046dbffcd0d1c7/axisartist.py +++ /dev/null @@ -1,623 +0,0 @@ -r""" -============================== -Overview of axisartist toolkit -============================== - -The axisartist toolkit tutorial. - -.. warning:: - *axisartist* uses a custom Axes class - (derived from the mpl's original Axes class). - As a side effect, some commands (mostly tick-related) do not work. - -The *axisartist* contains a custom Axes class that is meant to support -curvilinear grids (e.g., the world coordinate system in astronomy). -Unlike mpl's original Axes class which uses Axes.xaxis and Axes.yaxis -to draw ticks, ticklines, etc., axisartist uses a special -artist (AxisArtist) that can handle ticks, ticklines, etc. for -curved coordinate systems. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png - :target: ../../gallery/axisartist/demo_floating_axis.html - :align: center - :scale: 50 - - Demo Floating Axis - -Since it uses special artists, some Matplotlib commands that work on -Axes.xaxis and Axes.yaxis may not work. - -.. _axisartist_users-guide-index: - -axisartist -========== - -The *axisartist* module provides a custom (and very experimental) Axes -class, where each axis (left, right, top, and bottom) have a separate -associated artist which is responsible for drawing the axis-line, ticks, -ticklabels, and labels. You can also create your own axis, which can pass -through a fixed position in the axes coordinate, or a fixed position -in the data coordinate (i.e., the axis floats around when viewlimit -changes). - -The axes class, by default, has its xaxis and yaxis invisible, and -has 4 additional artists which are responsible for drawing the 4 axis spines in -"left", "right", "bottom", and "top". They are accessed as -ax.axis["left"], ax.axis["right"], and so on, i.e., ax.axis is a -dictionary that contains artists (note that ax.axis is still a -callable method and it behaves as an original Axes.axis method in -Matplotlib). - -To create an axes, :: - - import mpl_toolkits.axisartist as AA - fig = plt.figure() - ax = AA.Axes(fig, [0.1, 0.1, 0.8, 0.8]) - fig.add_axes(ax) - -or to create a subplot :: - - ax = AA.Subplot(fig, 111) - fig.add_subplot(ax) - -For example, you can hide the right and top spines using:: - - ax.axis["right"].set_visible(False) - ax.axis["top"].set_visible(False) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisline3_001.png - :target: ../../gallery/axisartist/simple_axisline3.html - :align: center - :scale: 50 - - Simple Axisline3 - -It is also possible to add a horizontal axis. For example, you may have an -horizontal axis at y=0 (in data coordinate). :: - - ax.axis["y=0"] = ax.new_floating_axis(nth_coord=0, value=0) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisartist1_001.png - :target: ../../gallery/axisartist/simple_axisartist1.html - :align: center - :scale: 50 - - Simple Axisartist1 - -Or a fixed axis with some offset :: - - # make new (right-side) yaxis, but with some offset - ax.axis["right2"] = ax.new_fixed_axis(loc="right", - offset=(20, 0)) - -axisartist with ParasiteAxes ----------------------------- - -Most commands in the axes_grid1 toolkit can take an axes_class keyword -argument, and the commands create an axes of the given class. For example, -to create a host subplot with axisartist.Axes, :: - - import mpl_toolkits.axisartist as AA - from mpl_toolkits.axes_grid1 import host_subplot - - host = host_subplot(111, axes_class=AA.Axes) - -Here is an example that uses ParasiteAxes. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_parasite_axes2_001.png - :target: ../../gallery/axisartist/demo_parasite_axes2.html - :align: center - :scale: 50 - - Demo Parasite Axes2 - -Curvilinear Grid ----------------- - -The motivation behind the AxisArtist module is to support a curvilinear grid -and ticks. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png - :target: ../../gallery/axisartist/demo_curvelinear_grid.html - :align: center - :scale: 50 - - Demo Curvelinear Grid - -Floating Axes -------------- - -AxisArtist also supports a Floating Axes whose outer axes are defined as -floating axis. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axes_001.png - :target: ../../gallery/axisartist/demo_floating_axes.html - :align: center - :scale: 50 - - Demo Floating Axes - -axisartist namespace -==================== - -The *axisartist* namespace includes a derived Axes implementation. The -biggest difference is that the artists responsible to draw axis line, -ticks, ticklabel and axis labels are separated out from the mpl's Axis -class, which are much more than artists in the original mpl. This -change was strongly motivated to support curvilinear grid. Here are a -few things that mpl_toolkits.axisartist.Axes is different from original -Axes from mpl. - -* Axis elements (axis line(spine), ticks, ticklabel and axis labels) - are drawn by a AxisArtist instance. Unlike Axis, left, right, top - and bottom axis are drawn by separate artists. And each of them may - have different tick location and different tick labels. - -* gridlines are drawn by a Gridlines instance. The change was - motivated that in curvilinear coordinate, a gridline may not cross - axis-lines (i.e., no associated ticks). In the original Axes class, - gridlines are tied to ticks. - -* ticklines can be rotated if necessary (i.e, along the gridlines) - -In summary, all these changes was to support - -* a curvilinear grid. -* a floating axis - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png - :target: ../../gallery/axisartist/demo_floating_axis.html - :align: center - :scale: 50 - - Demo Floating Axis - -*mpl_toolkits.axisartist.Axes* class defines a *axis* attribute, which -is a dictionary of AxisArtist instances. By default, the dictionary -has 4 AxisArtist instances, responsible for drawing of left, right, -bottom and top axis. - -xaxis and yaxis attributes are still available, however they are set -to not visible. As separate artists are used for rendering axis, some -axis-related method in mpl may have no effect. -In addition to AxisArtist instances, the mpl_toolkits.axisartist.Axes will -have *gridlines* attribute (Gridlines), which obviously draws grid -lines. - -In both AxisArtist and Gridlines, the calculation of tick and grid -location is delegated to an instance of GridHelper class. -mpl_toolkits.axisartist.Axes class uses GridHelperRectlinear as a grid -helper. The GridHelperRectlinear class is a wrapper around the *xaxis* -and *yaxis* of mpl's original Axes, and it was meant to work as the -way how mpl's original axes works. For example, tick location changes -using set_ticks method and etc. should work as expected. But change in -artist properties (e.g., color) will not work in general, although -some effort has been made so that some often-change attributes (color, -etc.) are respected. - -AxisArtist -========== - -AxisArtist can be considered as a container artist with following -attributes which will draw ticks, labels, etc. - - * line - * major_ticks, major_ticklabels - * minor_ticks, minor_ticklabels - * offsetText - * label - -line ----- - -Derived from Line2d class. Responsible for drawing a spinal(?) line. - -major_ticks, minor_ticks ------------------------- - -Derived from Line2d class. Note that ticks are markers. - -major_ticklabels, minor_ticklabels ----------------------------------- - -Derived from Text. Note that it is not a list of Text artist, but a -single artist (similar to a collection). - -axislabel ---------- - -Derived from Text. - -Default AxisArtists -=================== - -By default, following for axis artists are defined.:: - - ax.axis["left"], ax.axis["bottom"], ax.axis["right"], ax.axis["top"] - -The ticklabels and axislabel of the top and the right axis are set to -not visible. - -For example, if you want to change the color attributes of -major_ticklabels of the bottom x-axis :: - - ax.axis["bottom"].major_ticklabels.set_color("b") - -Similarly, to make ticklabels invisible :: - - ax.axis["bottom"].major_ticklabels.set_visible(False) - -AxisArtist provides a helper method to control the visibility of ticks, -ticklabels, and label. To make ticklabel invisible, :: - - ax.axis["bottom"].toggle(ticklabels=False) - -To make all of ticks, ticklabels, and (axis) label invisible :: - - ax.axis["bottom"].toggle(all=False) - -To turn all off but ticks on :: - - ax.axis["bottom"].toggle(all=False, ticks=True) - -To turn all on but (axis) label off :: - - ax.axis["bottom"].toggle(all=True, label=False)) - -ax.axis's __getitem__ method can take multiple axis names. For -example, to turn ticklabels of "top" and "right" axis on, :: - - ax.axis["top","right"].toggle(ticklabels=True)) - -Note that 'ax.axis["top","right"]' returns a simple proxy object that translate above code to something like below. :: - - for n in ["top","right"]: - ax.axis[n].toggle(ticklabels=True)) - -So, any return values in the for loop are ignored. And you should not -use it anything more than a simple method. - -Like the list indexing ":" means all items, i.e., :: - - ax.axis[:].major_ticks.set_color("r") - -changes tick color in all axis. - -HowTo -===== - -1. Changing tick locations and label. - - Same as the original mpl's axes.:: - - ax.set_xticks([1,2,3]) - -2. Changing axis properties like color, etc. - - Change the properties of appropriate artists. For example, to change - the color of the ticklabels:: - - ax.axis["left"].major_ticklabels.set_color("r") - -3. To change the attributes of multiple axis:: - - ax.axis["left","bottom"].major_ticklabels.set_color("r") - - or to change the attributes of all axis:: - - ax.axis[:].major_ticklabels.set_color("r") - -4. To change the tick size (length), you need to use - axis.major_ticks.set_ticksize method. To change the direction of - the ticks (ticks are in opposite direction of ticklabels by - default), use axis.major_ticks.set_tick_out method. - - To change the pad between ticks and ticklabels, use - axis.major_ticklabels.set_pad method. - - To change the pad between ticklabels and axis label, - axis.label.set_pad method. - -Rotation and Alignment of TickLabels -==================================== - -This is also quite different from the original mpl and can be -confusing. When you want to rotate the ticklabels, first consider -using "set_axis_direction" method. :: - - ax1.axis["left"].major_ticklabels.set_axis_direction("top") - ax1.axis["right"].label.set_axis_direction("left") - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction01_001.png - :target: ../../gallery/axisartist/simple_axis_direction01.html - :align: center - :scale: 50 - - Simple Axis Direction01 - -The parameter for set_axis_direction is one of ["left", "right", -"bottom", "top"]. - -You must understand some underlying concept of directions. - - 1. There is a reference direction which is defined as the direction - of the axis line with increasing coordinate. For example, the - reference direction of the left x-axis is from bottom to top. - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step01_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step01.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 01 - - The direction, text angle, and alignments of the ticks, ticklabels and - axis-label is determined with respect to the reference direction - - 2. *ticklabel_direction* is either the right-hand side (+) of the - reference direction or the left-hand side (-). - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step02_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step02.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 02 - - 3. same for the *label_direction* - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step03_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step03.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 03 - - 4. ticks are by default drawn toward the opposite direction of the ticklabels. - - 5. text rotation of ticklabels and label is determined in reference - to the *ticklabel_direction* or *label_direction*, - respectively. The rotation of ticklabels and label is anchored. - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step04_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step04.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 04 - -On the other hand, there is a concept of "axis_direction". This is a -default setting of above properties for each, "bottom", "left", "top", -and "right" axis. - - ========== =========== ========= ========== ========= ========== - ? ? left bottom right top - ---------- ----------- --------- ---------- --------- ---------- - axislabel direction '-' '+' '+' '-' - axislabel rotation 180 0 0 180 - axislabel va center top center bottom - axislabel ha right center right center - ticklabel direction '-' '+' '+' '-' - ticklabels rotation 90 0 -90 180 - ticklabel ha right center right center - ticklabel va center baseline center baseline - ========== =========== ========= ========== ========= ========== - -And, 'set_axis_direction("top")' means to adjust the text rotation -etc, for settings suitable for "top" axis. The concept of axis -direction can be more clear with curved axis. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_axis_direction_001.png - :target: ../../gallery/axisartist/demo_axis_direction.html - :align: center - :scale: 50 - - Demo Axis Direction - -The axis_direction can be adjusted in the AxisArtist level, or in the -level of its child artists, i.e., ticks, ticklabels, and axis-label. :: - - ax1.axis["left"].set_axis_direction("top") - -changes axis_direction of all the associated artist with the "left" -axis, while :: - - ax1.axis["left"].major_ticklabels.set_axis_direction("top") - -changes the axis_direction of only the major_ticklabels. Note that -set_axis_direction in the AxisArtist level changes the -ticklabel_direction and label_direction, while changing the -axis_direction of ticks, ticklabels, and axis-label does not affect -them. - -If you want to make ticks outward and ticklabels inside the axes, -use invert_ticklabel_direction method. :: - - ax.axis[:].invert_ticklabel_direction() - -A related method is "set_tick_out". It makes ticks outward (as a -matter of fact, it makes ticks toward the opposite direction of the -default direction). :: - - ax.axis[:].major_ticks.set_tick_out(True) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction03_001.png - :target: ../../gallery/axisartist/simple_axis_direction03.html - :align: center - :scale: 50 - - Simple Axis Direction03 - -So, in summary, - - * AxisArtist's methods - * set_axis_direction : "left", "right", "bottom", or "top" - * set_ticklabel_direction : "+" or "-" - * set_axislabel_direction : "+" or "-" - * invert_ticklabel_direction - * Ticks' methods (major_ticks and minor_ticks) - * set_tick_out : True or False - * set_ticksize : size in points - * TickLabels' methods (major_ticklabels and minor_ticklabels) - * set_axis_direction : "left", "right", "bottom", or "top" - * set_rotation : angle with respect to the reference direction - * set_ha and set_va : see below - * AxisLabels' methods (label) - * set_axis_direction : "left", "right", "bottom", or "top" - * set_rotation : angle with respect to the reference direction - * set_ha and set_va - -Adjusting ticklabels alignment ------------------------------- - -Alignment of TickLabels are treated specially. See below - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_ticklabel_alignment_001.png - :target: ../../gallery/axisartist/demo_ticklabel_alignment.html - :align: center - :scale: 50 - - Demo Ticklabel Alignment - -Adjusting pad -------------- - -To change the pad between ticks and ticklabels :: - - ax.axis["left"].major_ticklabels.set_pad(10) - -Or ticklabels and axis-label :: - - ax.axis["left"].label.set_pad(10) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_pad_001.png - :target: ../../gallery/axisartist/simple_axis_pad.html - :align: center - :scale: 50 - - Simple Axis Pad - -GridHelper -========== - -To actually define a curvilinear coordinate, you have to use your own -grid helper. A generalised version of grid helper class is supplied -and this class should suffice in most of cases. A user may provide -two functions which defines a transformation (and its inverse pair) -from the curved coordinate to (rectilinear) image coordinate. Note that -while ticks and grids are drawn for curved coordinate, the data -transform of the axes itself (ax.transData) is still rectilinear -(image) coordinate. :: - - from mpl_toolkits.axisartist.grid_helper_curvelinear \ - import GridHelperCurveLinear - from mpl_toolkits.axisartist import Subplot - - # from curved coordinate to rectlinear coordinate. - def tr(x, y): - x, y = np.asarray(x), np.asarray(y) - return x, y-x - - # from rectlinear coordinate to curved coordinate. - def inv_tr(x,y): - x, y = np.asarray(x), np.asarray(y) - return x, y+x - - grid_helper = GridHelperCurveLinear((tr, inv_tr)) - - ax1 = Subplot(fig, 1, 1, 1, grid_helper=grid_helper) - - fig.add_subplot(ax1) - -You may use matplotlib's Transform instance instead (but a -inverse transformation must be defined). Often, coordinate range in a -curved coordinate system may have a limited range, or may have -cycles. In those cases, a more customized version of grid helper is -required. :: - - import mpl_toolkits.axisartist.angle_helper as angle_helper - - # PolarAxes.PolarTransform takes radian. However, we want our coordinate - # system in degree - tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform() - - # extreme finder : find a range of coordinate. - # 20, 20 : number of sampling points along x, y direction - # The first coordinate (longitude, but theta in polar) - # has a cycle of 360 degree. - # The second coordinate (latitude, but radius in polar) has a minimum of 0 - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle = 360, - lat_cycle = None, - lon_minmax = None, - lat_minmax = (0, np.inf), - ) - - # Find a grid values appropriate for the coordinate (degree, - # minute, second). The argument is a approximate number of grids. - grid_locator1 = angle_helper.LocatorDMS(12) - - # And also uses an appropriate formatter. Note that,the - # acceptable Locator and Formatter class is a bit different than - # that of mpl's, and you cannot directly use mpl's Locator and - # Formatter here (but may be possible in the future). - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - tick_formatter1=tick_formatter1 - ) - -Again, the *transData* of the axes is still a rectilinear coordinate -(image coordinate). You may manually do conversion between two -coordinates, or you may use Parasite Axes for convenience.:: - - ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper) - - # A parasite axes with given transform - ax2 = ParasiteAxesAuxTrans(ax1, tr, "equal") - # note that ax2.transData == tr + ax1.transData - # Anything you draw in ax2 will match the ticks and grids of ax1. - ax1.parasites.append(ax2) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png - :target: ../../gallery/axisartist/demo_curvelinear_grid.html - :align: center - :scale: 50 - - Demo Curvelinear Grid - -FloatingAxis -============ - -A floating axis is an axis one of whose data coordinate is fixed, i.e, -its location is not fixed in Axes coordinate but changes as axes data -limits changes. A floating axis can be created using -*new_floating_axis* method. However, it is your responsibility that -the resulting AxisArtist is properly added to the axes. A recommended -way is to add it as an item of Axes's axis attribute.:: - - # floating axis whose first (index starts from 0) coordinate - # (theta) is fixed at 60 - - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 60) - axis.label.set_text(r"$\theta = 60^{\circ}$") - axis.label.set_visible(True) - -See the first example of this page. - -Current Limitations and TODO's -============================== - -The code need more refinement. Here is a incomplete list of issues and TODO's - -* No easy way to support a user customized tick location (for - curvilinear grid). A new Locator class needs to be created. - -* FloatingAxis may have coordinate limits, e.g., a floating axis of x - = 0, but y only spans from 0 to 1. - -* The location of axislabel of FloatingAxis needs to be optionally - given as a coordinate value. ex, a floating axis of x=0 with label at y=1 -""" diff --git a/_downloads/00b1067c5412e12eb2c0c3ca7b02fa6e/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/00b1067c5412e12eb2c0c3ca7b02fa6e/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 100644 index 62a2211b346..00000000000 --- a/_downloads/00b1067c5412e12eb2c0c3ca7b02fa6e/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Make Room For Ylabel Using Axesgrid\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import make_axes_locatable\nfrom mpl_toolkits.axes_grid1.axes_divider import make_axes_area_auto_adjustable\n\n\nif __name__ == \"__main__\":\n\n import matplotlib.pyplot as plt\n\n def ex1():\n plt.figure(1)\n ax = plt.axes([0, 0, 1, 1])\n #ax = plt.subplot(111)\n\n ax.set_yticks([0.5])\n ax.set_yticklabels([\"very long label\"])\n\n make_axes_area_auto_adjustable(ax)\n\n def ex2():\n\n plt.figure(2)\n ax1 = plt.axes([0, 0, 1, 0.5])\n ax2 = plt.axes([0, 0.5, 1, 0.5])\n\n ax1.set_yticks([0.5])\n ax1.set_yticklabels([\"very long label\"])\n ax1.set_ylabel(\"Y label\")\n\n ax2.set_title(\"Title\")\n\n make_axes_area_auto_adjustable(ax1, pad=0.1, use_axes=[ax1, ax2])\n make_axes_area_auto_adjustable(ax2, pad=0.1, use_axes=[ax1, ax2])\n\n def ex3():\n\n fig = plt.figure(3)\n ax1 = plt.axes([0, 0, 1, 1])\n divider = make_axes_locatable(ax1)\n\n ax2 = divider.new_horizontal(\"100%\", pad=0.3, sharey=ax1)\n ax2.tick_params(labelleft=False)\n fig.add_axes(ax2)\n\n divider.add_auto_adjustable_area(use_axes=[ax1], pad=0.1,\n adjust_dirs=[\"left\"])\n divider.add_auto_adjustable_area(use_axes=[ax2], pad=0.1,\n adjust_dirs=[\"right\"])\n divider.add_auto_adjustable_area(use_axes=[ax1, ax2], pad=0.1,\n adjust_dirs=[\"top\", \"bottom\"])\n\n ax1.set_yticks([0.5])\n ax1.set_yticklabels([\"very long label\"])\n\n ax2.set_title(\"Title\")\n ax2.set_xlabel(\"X - Label\")\n\n ex1()\n ex2()\n ex3()\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/00b56ce30d739a06db8798585498067e/tick_xlabel_top.ipynb b/_downloads/00b56ce30d739a06db8798585498067e/tick_xlabel_top.ipynb deleted file mode 120000 index a99a1e4a7eb..00000000000 --- a/_downloads/00b56ce30d739a06db8798585498067e/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/00b56ce30d739a06db8798585498067e/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/00c94fd2ec27d6cef4b040acefbf730d/hyperlinks_sgskip.py b/_downloads/00c94fd2ec27d6cef4b040acefbf730d/hyperlinks_sgskip.py deleted file mode 120000 index 423028b0c85..00000000000 --- a/_downloads/00c94fd2ec27d6cef4b040acefbf730d/hyperlinks_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/00c94fd2ec27d6cef4b040acefbf730d/hyperlinks_sgskip.py \ No newline at end of file diff --git a/_downloads/00cc87a5ea79aa6d2c2ed435b1570a69/masked_demo.py b/_downloads/00cc87a5ea79aa6d2c2ed435b1570a69/masked_demo.py deleted file mode 120000 index 3cbf9b9b91b..00000000000 --- a/_downloads/00cc87a5ea79aa6d2c2ed435b1570a69/masked_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/00cc87a5ea79aa6d2c2ed435b1570a69/masked_demo.py \ No newline at end of file diff --git a/_downloads/00d1d9e38f94ba0ba5f305e5bda89eaf/path_tutorial.ipynb b/_downloads/00d1d9e38f94ba0ba5f305e5bda89eaf/path_tutorial.ipynb deleted file mode 120000 index ada7f50c554..00000000000 --- a/_downloads/00d1d9e38f94ba0ba5f305e5bda89eaf/path_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/00d1d9e38f94ba0ba5f305e5bda89eaf/path_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/00d34761f9dea7e4fbb49d34f3490352/tutorials_python.zip b/_downloads/00d34761f9dea7e4fbb49d34f3490352/tutorials_python.zip deleted file mode 120000 index 80b811c8ed6..00000000000 --- a/_downloads/00d34761f9dea7e4fbb49d34f3490352/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/00d34761f9dea7e4fbb49d34f3490352/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/00d9c792fe6031d309f0cb239c08652d/multi_image.py b/_downloads/00d9c792fe6031d309f0cb239c08652d/multi_image.py deleted file mode 100644 index e8df23d1d81..00000000000 --- a/_downloads/00d9c792fe6031d309f0cb239c08652d/multi_image.py +++ /dev/null @@ -1,74 +0,0 @@ -""" -=========== -Multi Image -=========== - -Make a set of images with a single colormap, norm, and colorbar. -""" - -from matplotlib import colors -import matplotlib.pyplot as plt -import numpy as np - -np.random.seed(19680801) -Nr = 3 -Nc = 2 -cmap = "cool" - -fig, axs = plt.subplots(Nr, Nc) -fig.suptitle('Multiple images') - -images = [] -for i in range(Nr): - for j in range(Nc): - # Generate data with a range that varies from one plot to the next. - data = ((1 + i + j) / 10) * np.random.rand(10, 20) * 1e-6 - images.append(axs[i, j].imshow(data, cmap=cmap)) - axs[i, j].label_outer() - -# Find the min and max of all colors for use in setting the color scale. -vmin = min(image.get_array().min() for image in images) -vmax = max(image.get_array().max() for image in images) -norm = colors.Normalize(vmin=vmin, vmax=vmax) -for im in images: - im.set_norm(norm) - -fig.colorbar(images[0], ax=axs, orientation='horizontal', fraction=.1) - - -# Make images respond to changes in the norm of other images (e.g. via the -# "edit axis, curves and images parameters" GUI on Qt), but be careful not to -# recurse infinitely! -def update(changed_image): - for im in images: - if (changed_image.get_cmap() != im.get_cmap() - or changed_image.get_clim() != im.get_clim()): - im.set_cmap(changed_image.get_cmap()) - im.set_clim(changed_image.get_clim()) - - -for im in images: - im.callbacksSM.connect('changed', update) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.Normalize -matplotlib.cm.ScalarMappable.set_cmap -matplotlib.cm.ScalarMappable.set_norm -matplotlib.cm.ScalarMappable.set_clim -matplotlib.cbook.CallbackRegistry.connect diff --git a/_downloads/00e14727e32e8cc388b198d87860a9d2/grayscale.ipynb b/_downloads/00e14727e32e8cc388b198d87860a9d2/grayscale.ipynb deleted file mode 100644 index 91d4c841f73..00000000000 --- a/_downloads/00e14727e32e8cc388b198d87860a9d2/grayscale.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Grayscale style sheet\n\n\nThis example demonstrates the \"grayscale\" style sheet, which changes all colors\nthat are defined as rc parameters to grayscale. Note, however, that not all\nplot elements default to colors defined by an rc parameter.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef color_cycle_example(ax):\n L = 6\n x = np.linspace(0, L)\n ncolors = len(plt.rcParams['axes.prop_cycle'])\n shift = np.linspace(0, L, ncolors, endpoint=False)\n for s in shift:\n ax.plot(x, np.sin(x + s), 'o-')\n\n\ndef image_and_patch_example(ax):\n ax.imshow(np.random.random(size=(20, 20)), interpolation='none')\n c = plt.Circle((5, 5), radius=5, label='patch')\n ax.add_patch(c)\n\n\nplt.style.use('grayscale')\n\nfig, (ax1, ax2) = plt.subplots(ncols=2)\nfig.suptitle(\"'grayscale' style sheet\")\n\ncolor_cycle_example(ax1)\nimage_and_patch_example(ax2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/00e2334f3a3cb69c44ff8f0a82a0f2ba/accented_text.ipynb b/_downloads/00e2334f3a3cb69c44ff8f0a82a0f2ba/accented_text.ipynb deleted file mode 120000 index af851511bf2..00000000000 --- a/_downloads/00e2334f3a3cb69c44ff8f0a82a0f2ba/accented_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/00e2334f3a3cb69c44ff8f0a82a0f2ba/accented_text.ipynb \ No newline at end of file diff --git a/_downloads/00f7f20b47c4afdb8cf00a246bc6af53/animation_demo.py b/_downloads/00f7f20b47c4afdb8cf00a246bc6af53/animation_demo.py deleted file mode 120000 index e003554a7d1..00000000000 --- a/_downloads/00f7f20b47c4afdb8cf00a246bc6af53/animation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/00f7f20b47c4afdb8cf00a246bc6af53/animation_demo.py \ No newline at end of file diff --git a/_downloads/00fb9b6278ae3996d0eda53a7198ae42/hatch_style_reference.ipynb b/_downloads/00fb9b6278ae3996d0eda53a7198ae42/hatch_style_reference.ipynb deleted file mode 120000 index 51bad70641d..00000000000 --- a/_downloads/00fb9b6278ae3996d0eda53a7198ae42/hatch_style_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/00fb9b6278ae3996d0eda53a7198ae42/hatch_style_reference.ipynb \ No newline at end of file diff --git a/_downloads/00fcec53627838553c8e3bedabcc4c2a/customizing.ipynb b/_downloads/00fcec53627838553c8e3bedabcc4c2a/customizing.ipynb deleted file mode 120000 index e9dde50771b..00000000000 --- a/_downloads/00fcec53627838553c8e3bedabcc4c2a/customizing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/00fcec53627838553c8e3bedabcc4c2a/customizing.ipynb \ No newline at end of file diff --git a/_downloads/00ffa3d88006b7c0f5b029dd395185c9/whats_new_99_mplot3d.py b/_downloads/00ffa3d88006b7c0f5b029dd395185c9/whats_new_99_mplot3d.py deleted file mode 100644 index 6a85c0a383c..00000000000 --- a/_downloads/00ffa3d88006b7c0f5b029dd395185c9/whats_new_99_mplot3d.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -====================== -Whats New 0.99 Mplot3d -====================== - -Create a 3D surface plot. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib import cm -from mpl_toolkits.mplot3d import Axes3D - -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -fig = plt.figure() -ax = Axes3D(fig) -ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import mpl_toolkits -mpl_toolkits.mplot3d.Axes3D -mpl_toolkits.mplot3d.Axes3D.plot_surface diff --git a/_downloads/00ffb18df3870ff306f7252a25b5f9e0/keypress_demo.py b/_downloads/00ffb18df3870ff306f7252a25b5f9e0/keypress_demo.py deleted file mode 120000 index cb00a03e9e9..00000000000 --- a/_downloads/00ffb18df3870ff306f7252a25b5f9e0/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/00ffb18df3870ff306f7252a25b5f9e0/keypress_demo.py \ No newline at end of file diff --git a/_downloads/0103ebb71db6da20165275a527c4ab5b/geo_demo.ipynb b/_downloads/0103ebb71db6da20165275a527c4ab5b/geo_demo.ipynb deleted file mode 120000 index a64990e8a61..00000000000 --- a/_downloads/0103ebb71db6da20165275a527c4ab5b/geo_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0103ebb71db6da20165275a527c4ab5b/geo_demo.ipynb \ No newline at end of file diff --git a/_downloads/010924be7e90c6f690b5a0f287ea6b12/create_subplots.py b/_downloads/010924be7e90c6f690b5a0f287ea6b12/create_subplots.py deleted file mode 100644 index 976f2482163..00000000000 --- a/_downloads/010924be7e90c6f690b5a0f287ea6b12/create_subplots.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -Easily creating subplots -======================== - -In early versions of matplotlib, if you wanted to use the pythonic API -and create a figure instance and from that create a grid of subplots, -possibly with shared axes, it involved a fair amount of boilerplate -code. e.g. -""" - -import matplotlib.pyplot as plt -import numpy as np - -x = np.random.randn(50) - -# old style -fig = plt.figure() -ax1 = fig.add_subplot(221) -ax2 = fig.add_subplot(222, sharex=ax1, sharey=ax1) -ax3 = fig.add_subplot(223, sharex=ax1, sharey=ax1) -ax3 = fig.add_subplot(224, sharex=ax1, sharey=ax1) - -############################################################################### -# Fernando Perez has provided a nice top level method to create in -# :func:`~matplotlib.pyplots.subplots` (note the "s" at the end) -# everything at once, and turn on x and y sharing for the whole bunch. -# You can either unpack the axes individually... - -# new style method 1; unpack the axes -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, sharex=True, sharey=True) -ax1.plot(x) - -############################################################################### -# or get them back as a numrows x numcolumns object array which supports -# numpy indexing - -# new style method 2; use an axes array -fig, axs = plt.subplots(2, 2, sharex=True, sharey=True) -axs[0, 0].plot(x) - -plt.show() diff --git a/_downloads/0110d43862a30815899ab8f871d466d2/mathtext.ipynb b/_downloads/0110d43862a30815899ab8f871d466d2/mathtext.ipynb deleted file mode 120000 index 54195144a18..00000000000 --- a/_downloads/0110d43862a30815899ab8f871d466d2/mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0110d43862a30815899ab8f871d466d2/mathtext.ipynb \ No newline at end of file diff --git a/_downloads/011a264bdf3a0a76e4c8f073c4b2fa24/demo_axes_rgb.py b/_downloads/011a264bdf3a0a76e4c8f073c4b2fa24/demo_axes_rgb.py deleted file mode 120000 index c8056af18ac..00000000000 --- a/_downloads/011a264bdf3a0a76e4c8f073c4b2fa24/demo_axes_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/011a264bdf3a0a76e4c8f073c4b2fa24/demo_axes_rgb.py \ No newline at end of file diff --git a/_downloads/011a2d750d154235c6e7c012c3f461ee/legend_picking.py b/_downloads/011a2d750d154235c6e7c012c3f461ee/legend_picking.py deleted file mode 120000 index 3c2f991d3b9..00000000000 --- a/_downloads/011a2d750d154235c6e7c012c3f461ee/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/011a2d750d154235c6e7c012c3f461ee/legend_picking.py \ No newline at end of file diff --git a/_downloads/011d78ce6116090d506c2eb844334712/placing_text_boxes.py b/_downloads/011d78ce6116090d506c2eb844334712/placing_text_boxes.py deleted file mode 120000 index 7d0b5a53efe..00000000000 --- a/_downloads/011d78ce6116090d506c2eb844334712/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/011d78ce6116090d506c2eb844334712/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/01247f5ce432001e20549afb82d38875/auto_ticks.py b/_downloads/01247f5ce432001e20549afb82d38875/auto_ticks.py deleted file mode 120000 index 85784096b2d..00000000000 --- a/_downloads/01247f5ce432001e20549afb82d38875/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/01247f5ce432001e20549afb82d38875/auto_ticks.py \ No newline at end of file diff --git a/_downloads/01255335ca2e4baf49349119a8a7be01/usetex_demo.ipynb b/_downloads/01255335ca2e4baf49349119a8a7be01/usetex_demo.ipynb deleted file mode 120000 index b7080220158..00000000000 --- a/_downloads/01255335ca2e4baf49349119a8a7be01/usetex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01255335ca2e4baf49349119a8a7be01/usetex_demo.ipynb \ No newline at end of file diff --git a/_downloads/012cbb8895aa47b0d33b5fd2a220cbb8/subplots_adjust.py b/_downloads/012cbb8895aa47b0d33b5fd2a220cbb8/subplots_adjust.py deleted file mode 120000 index 200d35e8362..00000000000 --- a/_downloads/012cbb8895aa47b0d33b5fd2a220cbb8/subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/012cbb8895aa47b0d33b5fd2a220cbb8/subplots_adjust.py \ No newline at end of file diff --git a/_downloads/0131affbf910119196d15b642c12d7d4/demo_tight_layout.py b/_downloads/0131affbf910119196d15b642c12d7d4/demo_tight_layout.py deleted file mode 100644 index c9e6ca465c8..00000000000 --- a/_downloads/0131affbf910119196d15b642c12d7d4/demo_tight_layout.py +++ /dev/null @@ -1,151 +0,0 @@ -""" -=============================== -Resizing axes with tight layout -=============================== - -`~.figure.Figure.tight_layout` attempts to resize subplots in -a figure so that there are no overlaps between axes objects and labels -on the axes. - -See :doc:`/tutorials/intermediate/tight_layout_guide` for more details and -:doc:`/tutorials/intermediate/constrainedlayout_guide` for an alternative. - -""" - -import matplotlib.pyplot as plt -import itertools -import warnings - - -fontsizes = itertools.cycle([8, 16, 24, 32]) - - -def example_plot(ax): - ax.plot([1, 2]) - ax.set_xlabel('x-label', fontsize=next(fontsizes)) - ax.set_ylabel('y-label', fontsize=next(fontsizes)) - ax.set_title('Title', fontsize=next(fontsizes)) - - -############################################################################### - -fig, ax = plt.subplots() -example_plot(ax) -plt.tight_layout() - -############################################################################### - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) -plt.tight_layout() - -############################################################################### - -fig, (ax1, ax2) = plt.subplots(nrows=2, ncols=1) -example_plot(ax1) -example_plot(ax2) -plt.tight_layout() - -############################################################################### - -fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2) -example_plot(ax1) -example_plot(ax2) -plt.tight_layout() - -############################################################################### - -fig, axes = plt.subplots(nrows=3, ncols=3) -for row in axes: - for ax in row: - example_plot(ax) -plt.tight_layout() - -############################################################################### - -fig = plt.figure() - -ax1 = plt.subplot(221) -ax2 = plt.subplot(223) -ax3 = plt.subplot(122) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -plt.tight_layout() - -############################################################################### - -fig = plt.figure() - -ax1 = plt.subplot2grid((3, 3), (0, 0)) -ax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2) -ax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -plt.tight_layout() - -plt.show() - -############################################################################### - -fig = plt.figure() - -gs1 = fig.add_gridspec(3, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) -ax3 = fig.add_subplot(gs1[2]) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -gs1.tight_layout(fig, rect=[None, None, 0.45, None]) - -gs2 = fig.add_gridspec(2, 1) -ax4 = fig.add_subplot(gs2[0]) -ax5 = fig.add_subplot(gs2[1]) - -example_plot(ax4) -example_plot(ax5) - -with warnings.catch_warnings(): - # gs2.tight_layout cannot handle the subplots from the first gridspec - # (gs1), so it will raise a warning. We are going to match the gridspecs - # manually so we can filter the warning away. - warnings.simplefilter("ignore", UserWarning) - gs2.tight_layout(fig, rect=[0.45, None, None, None]) - -# now match the top and bottom of two gridspecs. -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.update(top=top, bottom=bottom) -gs2.update(top=top, bottom=bottom) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.pyplot.tight_layout -matplotlib.figure.Figure.tight_layout -matplotlib.figure.Figure.add_gridspec -matplotlib.figure.Figure.add_subplot -matplotlib.pyplot.subplot2grid diff --git a/_downloads/0134dce7c0f98b678cde14a105d76da1/demo_axes_rgb.py b/_downloads/0134dce7c0f98b678cde14a105d76da1/demo_axes_rgb.py deleted file mode 120000 index 438ea715932..00000000000 --- a/_downloads/0134dce7c0f98b678cde14a105d76da1/demo_axes_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0134dce7c0f98b678cde14a105d76da1/demo_axes_rgb.py \ No newline at end of file diff --git a/_downloads/01526d1bc6f0260beff6382b79ae89ea/tricontour_demo.py b/_downloads/01526d1bc6f0260beff6382b79ae89ea/tricontour_demo.py deleted file mode 120000 index 57872338814..00000000000 --- a/_downloads/01526d1bc6f0260beff6382b79ae89ea/tricontour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/01526d1bc6f0260beff6382b79ae89ea/tricontour_demo.py \ No newline at end of file diff --git a/_downloads/015f3d8484e7cc976026793f37ae6042/demo_ticklabel_alignment.ipynb b/_downloads/015f3d8484e7cc976026793f37ae6042/demo_ticklabel_alignment.ipynb deleted file mode 120000 index 2c2dd4a0569..00000000000 --- a/_downloads/015f3d8484e7cc976026793f37ae6042/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/015f3d8484e7cc976026793f37ae6042/demo_ticklabel_alignment.ipynb \ No newline at end of file diff --git a/_downloads/016699d3d0d6d07ed087bb2f2268afe6/demo_agg_filter.py b/_downloads/016699d3d0d6d07ed087bb2f2268afe6/demo_agg_filter.py deleted file mode 120000 index 204b2bb6865..00000000000 --- a/_downloads/016699d3d0d6d07ed087bb2f2268afe6/demo_agg_filter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/016699d3d0d6d07ed087bb2f2268afe6/demo_agg_filter.py \ No newline at end of file diff --git a/_downloads/017058e784e2a359b3a7dd004a3e0379/table_demo.py b/_downloads/017058e784e2a359b3a7dd004a3e0379/table_demo.py deleted file mode 120000 index 0361156631a..00000000000 --- a/_downloads/017058e784e2a359b3a7dd004a3e0379/table_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/017058e784e2a359b3a7dd004a3e0379/table_demo.py \ No newline at end of file diff --git a/_downloads/01891726a52d19b62d7c7f9865620d0c/scatter.py b/_downloads/01891726a52d19b62d7c7f9865620d0c/scatter.py deleted file mode 120000 index 5ef2c45b38f..00000000000 --- a/_downloads/01891726a52d19b62d7c7f9865620d0c/scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01891726a52d19b62d7c7f9865620d0c/scatter.py \ No newline at end of file diff --git a/_downloads/018ae96806fbd5ae7019dd76e2024d45/poly_editor.ipynb b/_downloads/018ae96806fbd5ae7019dd76e2024d45/poly_editor.ipynb deleted file mode 120000 index 01c5567e36d..00000000000 --- a/_downloads/018ae96806fbd5ae7019dd76e2024d45/poly_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/018ae96806fbd5ae7019dd76e2024d45/poly_editor.ipynb \ No newline at end of file diff --git a/_downloads/01970b3f51bb668e54f551b2ee4f06f7/power_norm.py b/_downloads/01970b3f51bb668e54f551b2ee4f06f7/power_norm.py deleted file mode 120000 index c7c74c80c34..00000000000 --- a/_downloads/01970b3f51bb668e54f551b2ee4f06f7/power_norm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01970b3f51bb668e54f551b2ee4f06f7/power_norm.py \ No newline at end of file diff --git a/_downloads/0199f12f8290afde46b1c967f5aa5141/anchored_artists.py b/_downloads/0199f12f8290afde46b1c967f5aa5141/anchored_artists.py deleted file mode 120000 index eebb36a64b6..00000000000 --- a/_downloads/0199f12f8290afde46b1c967f5aa5141/anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0199f12f8290afde46b1c967f5aa5141/anchored_artists.py \ No newline at end of file diff --git a/_downloads/01a69cc3aef377922c5f54ec518a529a/contour_image.py b/_downloads/01a69cc3aef377922c5f54ec518a529a/contour_image.py deleted file mode 120000 index ec58740538f..00000000000 --- a/_downloads/01a69cc3aef377922c5f54ec518a529a/contour_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/01a69cc3aef377922c5f54ec518a529a/contour_image.py \ No newline at end of file diff --git a/_downloads/01b64f0e30a0bad1f823eddcd6fdb05d/slider_demo.py b/_downloads/01b64f0e30a0bad1f823eddcd6fdb05d/slider_demo.py deleted file mode 120000 index 04927a47799..00000000000 --- a/_downloads/01b64f0e30a0bad1f823eddcd6fdb05d/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01b64f0e30a0bad1f823eddcd6fdb05d/slider_demo.py \ No newline at end of file diff --git a/_downloads/01bb4afebc5bc20c5120b48d1440bfe5/grayscale.ipynb b/_downloads/01bb4afebc5bc20c5120b48d1440bfe5/grayscale.ipynb deleted file mode 120000 index 1d192055d14..00000000000 --- a/_downloads/01bb4afebc5bc20c5120b48d1440bfe5/grayscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01bb4afebc5bc20c5120b48d1440bfe5/grayscale.ipynb \ No newline at end of file diff --git a/_downloads/01c29073a422df1653f6b8ac21f5eb32/trisurf3d.py b/_downloads/01c29073a422df1653f6b8ac21f5eb32/trisurf3d.py deleted file mode 120000 index 433fdf19c5e..00000000000 --- a/_downloads/01c29073a422df1653f6b8ac21f5eb32/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01c29073a422df1653f6b8ac21f5eb32/trisurf3d.py \ No newline at end of file diff --git a/_downloads/01c6f4411a8eca491bcd16df5c528071/compound_path.ipynb b/_downloads/01c6f4411a8eca491bcd16df5c528071/compound_path.ipynb deleted file mode 120000 index 14ba512d770..00000000000 --- a/_downloads/01c6f4411a8eca491bcd16df5c528071/compound_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01c6f4411a8eca491bcd16df5c528071/compound_path.ipynb \ No newline at end of file diff --git a/_downloads/01d2d618b11a1582ce766e85ecc828ee/fancytextbox_demo.py b/_downloads/01d2d618b11a1582ce766e85ecc828ee/fancytextbox_demo.py deleted file mode 120000 index f0b176f0f81..00000000000 --- a/_downloads/01d2d618b11a1582ce766e85ecc828ee/fancytextbox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/01d2d618b11a1582ce766e85ecc828ee/fancytextbox_demo.py \ No newline at end of file diff --git a/_downloads/01d3a0246ebe5083fa4d782c0b5bb5c3/date_concise_formatter.ipynb b/_downloads/01d3a0246ebe5083fa4d782c0b5bb5c3/date_concise_formatter.ipynb deleted file mode 100644 index 50af4809526..00000000000 --- a/_downloads/01d3a0246ebe5083fa4d782c0b5bb5c3/date_concise_formatter.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Formatting date ticks using ConciseDateFormatter\n\n\nFinding good tick values and formatting the ticks for an axis that\nhas date data is often a challenge. `~.dates.ConciseDateFormatter` is\nmeant to improve the strings chosen for the ticklabels, and to minimize\nthe strings used in those tick labels as much as possible.\n\n

Note

This formatter is a candidate to become the default date tick formatter\n in future versions of Matplotlib. Please report any issues or\n suggestions for improvement to the github repository or mailing list.

\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\nimport matplotlib.pyplot as plt\nimport matplotlib.dates as mdates\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First, the default formatter.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "base = datetime.datetime(2005, 2, 1)\ndates = np.array([base + datetime.timedelta(hours=(2 * i))\n for i in range(732)])\nN = len(dates)\nnp.random.seed(19680801)\ny = np.cumsum(np.random.randn(N))\n\nfig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\nlims = [(np.datetime64('2005-02'), np.datetime64('2005-04')),\n (np.datetime64('2005-02-03'), np.datetime64('2005-02-15')),\n (np.datetime64('2005-02-03 11:00'), np.datetime64('2005-02-04 13:20'))]\nfor nn, ax in enumerate(axs):\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\n # rotate_labels...\n for label in ax.get_xticklabels():\n label.set_rotation(40)\n label.set_horizontalalignment('right')\naxs[0].set_title('Default Date Formatter')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The default date formater is quite verbose, so we have the option of\nusing `~.dates.ConciseDateFormatter`, as shown below. Note that\nfor this example the labels do not need to be rotated as they do for the\ndefault formatter because the labels are as small as possible.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\nfor nn, ax in enumerate(axs):\n locator = mdates.AutoDateLocator(minticks=3, maxticks=7)\n formatter = mdates.ConciseDateFormatter(locator)\n ax.xaxis.set_major_locator(locator)\n ax.xaxis.set_major_formatter(formatter)\n\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If all calls to axes that have dates are to be made using this converter,\nit is probably most convenient to use the units registry where you do\nimports:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.units as munits\nconverter = mdates.ConciseDateConverter()\nmunits.registry[np.datetime64] = converter\nmunits.registry[datetime.date] = converter\nmunits.registry[datetime.datetime] = converter\n\nfig, axs = plt.subplots(3, 1, figsize=(6, 6), constrained_layout=True)\nfor nn, ax in enumerate(axs):\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Localization of date formats\n============================\n\nDates formats can be localized if the default formats are not desirable by\nmanipulating one of three lists of strings.\n\nThe ``formatter.formats`` list of formats is for the normal tick labels,\nThere are six levels: years, months, days, hours, minutes, seconds.\nThe ``formatter.offset_formats`` is how the \"offset\" string on the right\nof the axis is formatted. This is usually much more verbose than the tick\nlabels. Finally, the ``formatter.zero_formats`` are the formats of the\nticks that are \"zeros\". These are tick values that are either the first of\nthe year, month, or day of month, or the zeroth hour, minute, or second.\nThese are usually the same as the format of\nthe ticks a level above. For example if the axis limits mean the ticks are\nmostly days, then we label 1 Mar 2005 simply with a \"Mar\". If the axis\nlimits are mostly hours, we label Feb 4 00:00 as simply \"Feb-4\".\n\nNote that these format lists can also be passed to `.ConciseDateFormatter`\nas optional kwargs.\n\nHere we modify the labels to be \"day month year\", instead of the ISO\n\"year month day\":\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\n\nfor nn, ax in enumerate(axs):\n locator = mdates.AutoDateLocator()\n formatter = mdates.ConciseDateFormatter(locator)\n formatter.formats = ['%y', # ticks are mostly years\n '%b', # ticks are mostly months\n '%d', # ticks are mostly days\n '%H:%M', # hrs\n '%H:%M', # min\n '%S.%f', ] # secs\n # these are mostly just the level above...\n formatter.zero_formats = [''] + formatter.formats[:-1]\n # ...except for ticks that are mostly hours, then it is nice to have\n # month-day:\n formatter.zero_formats[3] = '%d-%b'\n\n formatter.offset_formats = ['',\n '%Y',\n '%b %Y',\n '%d %b %Y',\n '%d %b %Y',\n '%d %b %Y %H:%M', ]\n ax.xaxis.set_major_locator(locator)\n ax.xaxis.set_major_formatter(formatter)\n\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Registering a converter with localization\n=========================================\n\n`.ConciseDateFormatter` doesn't have rcParams entries, but localization\ncan be accomplished by passing kwargs to `~.ConciseDateConverter` and\nregistering the datatypes you will use with the units registry:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\n\nformats = ['%y', # ticks are mostly years\n '%b', # ticks are mostly months\n '%d', # ticks are mostly days\n '%H:%M', # hrs\n '%H:%M', # min\n '%S.%f', ] # secs\n# these can be the same, except offset by one level....\nzero_formats = [''] + formats[:-1]\n# ...except for ticks that are mostly hours, then its nice to have month-day\nzero_formats[3] = '%d-%b'\noffset_formats = ['',\n '%Y',\n '%b %Y',\n '%d %b %Y',\n '%d %b %Y',\n '%d %b %Y %H:%M', ]\n\nconverter = mdates.ConciseDateConverter(formats=formats,\n zero_formats=zero_formats,\n offset_formats=offset_formats)\n\nmunits.registry[np.datetime64] = converter\nmunits.registry[datetime.date] = converter\nmunits.registry[datetime.datetime] = converter\n\nfig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\nfor nn, ax in enumerate(axs):\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter registered non-default')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/01d7fb1e5f050fc8d9c0397ba962a086/demo_tight_layout.py b/_downloads/01d7fb1e5f050fc8d9c0397ba962a086/demo_tight_layout.py deleted file mode 120000 index 4833d4334da..00000000000 --- a/_downloads/01d7fb1e5f050fc8d9c0397ba962a086/demo_tight_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/01d7fb1e5f050fc8d9c0397ba962a086/demo_tight_layout.py \ No newline at end of file diff --git a/_downloads/01d7ff3d9cc2957d9afb3c341fcc4062/canvasagg.ipynb b/_downloads/01d7ff3d9cc2957d9afb3c341fcc4062/canvasagg.ipynb deleted file mode 100644 index 59eb1865cba..00000000000 --- a/_downloads/01d7ff3d9cc2957d9afb3c341fcc4062/canvasagg.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# CanvasAgg demo\n\n\nThis example shows how to use the agg backend directly to create images, which\nmay be of use to web application developers who want full control over their\ncode without using the pyplot interface to manage figures, figure closing etc.\n\n

Note

It is not necessary to avoid using the pyplot interface in order to\n create figures without a graphical front-end - simply setting\n the backend to \"Agg\" would be sufficient.

\n\nIn this example, we show how to save the contents of the agg canvas to a file,\nand how to extract them to a string, which can in turn be passed off to PIL or\nput in a numpy array. The latter functionality allows e.g. to use Matplotlib\ninside a cgi-script *without* needing to write a figure to disk.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_agg import FigureCanvasAgg\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nfig = Figure(figsize=(5, 4), dpi=100)\n# A canvas must be manually attached to the figure (pyplot would automatically\n# do it). This is done by instantiating the canvas with the figure as\n# argument.\ncanvas = FigureCanvasAgg(fig)\n\n# Do some plotting.\nax = fig.add_subplot(111)\nax.plot([1, 2, 3])\n\n# Option 1: Save the figure to a file; can also be a file-like object (BytesIO,\n# etc.).\nfig.savefig(\"test.png\")\n\n# Option 2: Save the figure to a string.\ncanvas.draw()\ns, (width, height) = canvas.print_to_buffer()\n\n# Option 2a: Convert to a NumPy array.\nX = np.frombuffer(s, np.uint8).reshape((height, width, 4))\n\n# Option 2b: Pass off to PIL.\nfrom PIL import Image\nim = Image.frombytes(\"RGBA\", (width, height), s)\n\n# Uncomment this line to display the image using ImageMagick's `display` tool.\n# im.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.backends.backend_agg.FigureCanvasAgg\nmatplotlib.figure.Figure\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.figure.Figure.savefig\nmatplotlib.axes.Axes.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/01d9dfcf4b9ddc6a39a031ce95854825/colormap-manipulation.py b/_downloads/01d9dfcf4b9ddc6a39a031ce95854825/colormap-manipulation.py deleted file mode 120000 index 9a3354f0a0d..00000000000 --- a/_downloads/01d9dfcf4b9ddc6a39a031ce95854825/colormap-manipulation.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/01d9dfcf4b9ddc6a39a031ce95854825/colormap-manipulation.py \ No newline at end of file diff --git a/_downloads/01dc43082195603063020243a8deed7c/simple_axes_divider1.ipynb b/_downloads/01dc43082195603063020243a8deed7c/simple_axes_divider1.ipynb deleted file mode 120000 index 2baf7cab5df..00000000000 --- a/_downloads/01dc43082195603063020243a8deed7c/simple_axes_divider1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/01dc43082195603063020243a8deed7c/simple_axes_divider1.ipynb \ No newline at end of file diff --git a/_downloads/01dce454644b9f81fc43abbf31182af5/fancybox_demo.py b/_downloads/01dce454644b9f81fc43abbf31182af5/fancybox_demo.py deleted file mode 120000 index 3b3a6929d0d..00000000000 --- a/_downloads/01dce454644b9f81fc43abbf31182af5/fancybox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01dce454644b9f81fc43abbf31182af5/fancybox_demo.py \ No newline at end of file diff --git a/_downloads/01e778f2047cf5379c7ba294a0bf5f35/anatomy.ipynb b/_downloads/01e778f2047cf5379c7ba294a0bf5f35/anatomy.ipynb deleted file mode 120000 index 10c148268cf..00000000000 --- a/_downloads/01e778f2047cf5379c7ba294a0bf5f35/anatomy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/01e778f2047cf5379c7ba294a0bf5f35/anatomy.ipynb \ No newline at end of file diff --git a/_downloads/01e97ef536856c03d69a43ea0bfdfd72/animated_histogram.py b/_downloads/01e97ef536856c03d69a43ea0bfdfd72/animated_histogram.py deleted file mode 100644 index 2556708dd7e..00000000000 --- a/_downloads/01e97ef536856c03d69a43ea0bfdfd72/animated_histogram.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -================== -Animated histogram -================== - -Use a path patch to draw a bunch of rectangles for an animated histogram. -""" - -import numpy as np - -import matplotlib.pyplot as plt -import matplotlib.patches as patches -import matplotlib.path as path -import matplotlib.animation as animation - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# histogram our data with numpy -data = np.random.randn(1000) -n, bins = np.histogram(data, 100) - -# get the corners of the rectangles for the histogram -left = np.array(bins[:-1]) -right = np.array(bins[1:]) -bottom = np.zeros(len(left)) -top = bottom + n -nrects = len(left) - -############################################################################### -# Here comes the tricky part -- we have to set up the vertex and path codes -# arrays using ``plt.Path.MOVETO``, ``plt.Path.LINETO`` and -# ``plt.Path.CLOSEPOLY`` for each rect. -# -# * We need 1 ``MOVETO`` per rectangle, which sets the initial point. -# * We need 3 ``LINETO``'s, which tell Matplotlib to draw lines from -# vertex 1 to vertex 2, v2 to v3, and v3 to v4. -# * We then need one ``CLOSEPOLY`` which tells Matplotlib to draw a line from -# the v4 to our initial vertex (the ``MOVETO`` vertex), in order to close the -# polygon. -# -# .. note:: -# -# The vertex for ``CLOSEPOLY`` is ignored, but we still need a placeholder -# in the ``verts`` array to keep the codes aligned with the vertices. -nverts = nrects * (1 + 3 + 1) -verts = np.zeros((nverts, 2)) -codes = np.ones(nverts, int) * path.Path.LINETO -codes[0::5] = path.Path.MOVETO -codes[4::5] = path.Path.CLOSEPOLY -verts[0::5, 0] = left -verts[0::5, 1] = bottom -verts[1::5, 0] = left -verts[1::5, 1] = top -verts[2::5, 0] = right -verts[2::5, 1] = top -verts[3::5, 0] = right -verts[3::5, 1] = bottom - -############################################################################### -# To animate the histogram, we need an ``animate`` function, which generates -# a random set of numbers and updates the locations of the vertices for the -# histogram (in this case, only the heights of each rectangle). ``patch`` will -# eventually be a ``Patch`` object. -patch = None - - -def animate(i): - # simulate new data coming in - data = np.random.randn(1000) - n, bins = np.histogram(data, 100) - top = bottom + n - verts[1::5, 1] = top - verts[2::5, 1] = top - return [patch, ] - -############################################################################### -# And now we build the `Path` and `Patch` instances for the histogram using -# our vertices and codes. We add the patch to the `Axes` instance, and setup -# the `FuncAnimation` with our animate function. -fig, ax = plt.subplots() -barpath = path.Path(verts, codes) -patch = patches.PathPatch( - barpath, facecolor='green', edgecolor='yellow', alpha=0.5) -ax.add_patch(patch) - -ax.set_xlim(left[0], right[-1]) -ax.set_ylim(bottom.min(), top.max()) - -ani = animation.FuncAnimation(fig, animate, 100, repeat=False, blit=True) -plt.show() diff --git a/_downloads/01ebbd5ee74ce063cff4538afb9ffd34/anchored_box04.ipynb b/_downloads/01ebbd5ee74ce063cff4538afb9ffd34/anchored_box04.ipynb deleted file mode 120000 index e07f91b08f4..00000000000 --- a/_downloads/01ebbd5ee74ce063cff4538afb9ffd34/anchored_box04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/01ebbd5ee74ce063cff4538afb9ffd34/anchored_box04.ipynb \ No newline at end of file diff --git a/_downloads/01efa958a36646c939afd52681ad7344/subplot_demo.py b/_downloads/01efa958a36646c939afd52681ad7344/subplot_demo.py deleted file mode 120000 index 2a7cfe72ed8..00000000000 --- a/_downloads/01efa958a36646c939afd52681ad7344/subplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01efa958a36646c939afd52681ad7344/subplot_demo.py \ No newline at end of file diff --git a/_downloads/01fcf89321e46534bd489b49bf84916b/share_axis_lims_views.py b/_downloads/01fcf89321e46534bd489b49bf84916b/share_axis_lims_views.py deleted file mode 120000 index 1f7e0a79883..00000000000 --- a/_downloads/01fcf89321e46534bd489b49bf84916b/share_axis_lims_views.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/01fcf89321e46534bd489b49bf84916b/share_axis_lims_views.py \ No newline at end of file diff --git a/_downloads/01fdb45081a284cd8bd0d3079652b30d/mixed_subplots.ipynb b/_downloads/01fdb45081a284cd8bd0d3079652b30d/mixed_subplots.ipynb deleted file mode 120000 index c362b1aa590..00000000000 --- a/_downloads/01fdb45081a284cd8bd0d3079652b30d/mixed_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/01fdb45081a284cd8bd0d3079652b30d/mixed_subplots.ipynb \ No newline at end of file diff --git a/_downloads/02001ac711e69c8b62b7de38094a4253/axis_direction_demo_step02.py b/_downloads/02001ac711e69c8b62b7de38094a4253/axis_direction_demo_step02.py deleted file mode 120000 index 74263e8a167..00000000000 --- a/_downloads/02001ac711e69c8b62b7de38094a4253/axis_direction_demo_step02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/02001ac711e69c8b62b7de38094a4253/axis_direction_demo_step02.py \ No newline at end of file diff --git a/_downloads/02135d776475fc9453d18d04e6f2f681/skewt.ipynb b/_downloads/02135d776475fc9453d18d04e6f2f681/skewt.ipynb deleted file mode 120000 index f2244494e9a..00000000000 --- a/_downloads/02135d776475fc9453d18d04e6f2f681/skewt.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/02135d776475fc9453d18d04e6f2f681/skewt.ipynb \ No newline at end of file diff --git a/_downloads/0220d2971a88a952f2d978e254c4d7f9/sample_plots.py b/_downloads/0220d2971a88a952f2d978e254c4d7f9/sample_plots.py deleted file mode 120000 index 553ac40af7e..00000000000 --- a/_downloads/0220d2971a88a952f2d978e254c4d7f9/sample_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0220d2971a88a952f2d978e254c4d7f9/sample_plots.py \ No newline at end of file diff --git a/_downloads/022e8e0aa4c54702e2e3a2a917786bab/xkcd.ipynb b/_downloads/022e8e0aa4c54702e2e3a2a917786bab/xkcd.ipynb deleted file mode 120000 index 145937a2dba..00000000000 --- a/_downloads/022e8e0aa4c54702e2e3a2a917786bab/xkcd.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/022e8e0aa4c54702e2e3a2a917786bab/xkcd.ipynb \ No newline at end of file diff --git a/_downloads/023132aa49d0e0a01e84a70ec3900622/scatter_with_legend.py b/_downloads/023132aa49d0e0a01e84a70ec3900622/scatter_with_legend.py deleted file mode 120000 index 655bc65f678..00000000000 --- a/_downloads/023132aa49d0e0a01e84a70ec3900622/scatter_with_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/023132aa49d0e0a01e84a70ec3900622/scatter_with_legend.py \ No newline at end of file diff --git a/_downloads/0234b09e9a73d4ee840adeb2955c67c3/lines_with_ticks_demo.ipynb b/_downloads/0234b09e9a73d4ee840adeb2955c67c3/lines_with_ticks_demo.ipynb deleted file mode 120000 index a5512a353aa..00000000000 --- a/_downloads/0234b09e9a73d4ee840adeb2955c67c3/lines_with_ticks_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0234b09e9a73d4ee840adeb2955c67c3/lines_with_ticks_demo.ipynb \ No newline at end of file diff --git a/_downloads/0238061605d863b6107b01fe273004da/spines.py b/_downloads/0238061605d863b6107b01fe273004da/spines.py deleted file mode 120000 index e76729e2276..00000000000 --- a/_downloads/0238061605d863b6107b01fe273004da/spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0238061605d863b6107b01fe273004da/spines.py \ No newline at end of file diff --git a/_downloads/023954100941a56024213a0a1965ef0b/embedding_in_qt_sgskip.py b/_downloads/023954100941a56024213a0a1965ef0b/embedding_in_qt_sgskip.py deleted file mode 120000 index 4713d330a38..00000000000 --- a/_downloads/023954100941a56024213a0a1965ef0b/embedding_in_qt_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/023954100941a56024213a0a1965ef0b/embedding_in_qt_sgskip.py \ No newline at end of file diff --git a/_downloads/023acd78cc7bec7b21db62da2800da41/buttons.ipynb b/_downloads/023acd78cc7bec7b21db62da2800da41/buttons.ipynb deleted file mode 120000 index 0e01c35a16f..00000000000 --- a/_downloads/023acd78cc7bec7b21db62da2800da41/buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/023acd78cc7bec7b21db62da2800da41/buttons.ipynb \ No newline at end of file diff --git a/_downloads/0242bd8dee4c1c2a4309c2a4c578f83b/interpolation_methods.py b/_downloads/0242bd8dee4c1c2a4309c2a4c578f83b/interpolation_methods.py deleted file mode 120000 index b81b58529ce..00000000000 --- a/_downloads/0242bd8dee4c1c2a4309c2a4c578f83b/interpolation_methods.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0242bd8dee4c1c2a4309c2a4c578f83b/interpolation_methods.py \ No newline at end of file diff --git a/_downloads/02542a4d3987e5a9b51693266a7dd97f/embedding_in_wx3_sgskip.py b/_downloads/02542a4d3987e5a9b51693266a7dd97f/embedding_in_wx3_sgskip.py deleted file mode 120000 index 4cca6ab52e6..00000000000 --- a/_downloads/02542a4d3987e5a9b51693266a7dd97f/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/02542a4d3987e5a9b51693266a7dd97f/embedding_in_wx3_sgskip.py \ No newline at end of file diff --git a/_downloads/025d24ab19ce449d49e6a1d8709c29f0/evans_test.py b/_downloads/025d24ab19ce449d49e6a1d8709c29f0/evans_test.py deleted file mode 120000 index 733adb3cdd5..00000000000 --- a/_downloads/025d24ab19ce449d49e6a1d8709c29f0/evans_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/025d24ab19ce449d49e6a1d8709c29f0/evans_test.py \ No newline at end of file diff --git a/_downloads/027716c8152d86274285e96b7961aee0/coords_report.py b/_downloads/027716c8152d86274285e96b7961aee0/coords_report.py deleted file mode 100644 index 84ce03e09a7..00000000000 --- a/_downloads/027716c8152d86274285e96b7961aee0/coords_report.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -============= -Coords Report -============= - -Override the default reporting of coords. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def millions(x): - return '$%1.1fM' % (x*1e-6) - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x = np.random.rand(20) -y = 1e7*np.random.rand(20) - -fig, ax = plt.subplots() -ax.fmt_ydata = millions -plt.plot(x, y, 'o') - -plt.show() diff --git a/_downloads/0277930ea9b22fd631c76fc955fedcee/svg_filter_line.ipynb b/_downloads/0277930ea9b22fd631c76fc955fedcee/svg_filter_line.ipynb deleted file mode 120000 index 80ed522c7c6..00000000000 --- a/_downloads/0277930ea9b22fd631c76fc955fedcee/svg_filter_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0277930ea9b22fd631c76fc955fedcee/svg_filter_line.ipynb \ No newline at end of file diff --git a/_downloads/028240136e7e8548a6cf675939127c36/units_sample.py b/_downloads/028240136e7e8548a6cf675939127c36/units_sample.py deleted file mode 120000 index 994d9314098..00000000000 --- a/_downloads/028240136e7e8548a6cf675939127c36/units_sample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/028240136e7e8548a6cf675939127c36/units_sample.py \ No newline at end of file diff --git a/_downloads/02875177148be319f45c4fab49e6bb69/axis_direction_demo_step03.py b/_downloads/02875177148be319f45c4fab49e6bb69/axis_direction_demo_step03.py deleted file mode 100644 index 6b6d6a28746..00000000000 --- a/_downloads/02875177148be319f45c4fab49e6bb69/axis_direction_demo_step03.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -========================== -Axis Direction Demo Step03 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - #ax.axis[:].toggle(all=False) - #ax.axis[:].line.set_visible(False) - ax.axis[:].set_visible(False) - - ax.axis["x"] = ax.new_floating_axis(1, 0.5) - ax.axis["x"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(6, 2.5)) -fig.subplots_adjust(bottom=0.2, top=0.8) - -ax1 = setup_axes(fig, "121") -ax1.axis["x"].label.set_text("Label") -ax1.axis["x"].toggle(ticklabels=False) -ax1.axis["x"].set_axislabel_direction("+") -ax1.annotate("label direction=$+$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -ax2 = setup_axes(fig, "122") -ax2.axis["x"].label.set_text("Label") -ax2.axis["x"].toggle(ticklabels=False) -ax2.axis["x"].set_axislabel_direction("-") -ax2.annotate("label direction=$-$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -plt.show() diff --git a/_downloads/02904798ec0076a395e5df6936798f8b/simple_legend01.py b/_downloads/02904798ec0076a395e5df6936798f8b/simple_legend01.py deleted file mode 120000 index b4602308049..00000000000 --- a/_downloads/02904798ec0076a395e5df6936798f8b/simple_legend01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/02904798ec0076a395e5df6936798f8b/simple_legend01.py \ No newline at end of file diff --git a/_downloads/0298abee962d137177f78cb5a3419c57/mpl_with_glade3_sgskip.py b/_downloads/0298abee962d137177f78cb5a3419c57/mpl_with_glade3_sgskip.py deleted file mode 120000 index d8e49a0b01b..00000000000 --- a/_downloads/0298abee962d137177f78cb5a3419c57/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0298abee962d137177f78cb5a3419c57/mpl_with_glade3_sgskip.py \ No newline at end of file diff --git a/_downloads/02a2f00b7dadc245dbc4d9fe1aed0756/histogram_cumulative.py b/_downloads/02a2f00b7dadc245dbc4d9fe1aed0756/histogram_cumulative.py deleted file mode 120000 index a89d2a5b66e..00000000000 --- a/_downloads/02a2f00b7dadc245dbc4d9fe1aed0756/histogram_cumulative.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/02a2f00b7dadc245dbc4d9fe1aed0756/histogram_cumulative.py \ No newline at end of file diff --git a/_downloads/02a491eb4a96bd8e1f8c9820100d6315/imshow_extent.py b/_downloads/02a491eb4a96bd8e1f8c9820100d6315/imshow_extent.py deleted file mode 120000 index 420222464f1..00000000000 --- a/_downloads/02a491eb4a96bd8e1f8c9820100d6315/imshow_extent.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/02a491eb4a96bd8e1f8c9820100d6315/imshow_extent.py \ No newline at end of file diff --git a/_downloads/02b905a44b2d58dc982cab5d801143c3/donut.py b/_downloads/02b905a44b2d58dc982cab5d801143c3/donut.py deleted file mode 100644 index 9afa26c85e6..00000000000 --- a/_downloads/02b905a44b2d58dc982cab5d801143c3/donut.py +++ /dev/null @@ -1,86 +0,0 @@ -r""" -============= -Mmh Donuts!!! -============= - -Draw donuts (miam!) using `~.path.Path`\s and `~.patches.PathPatch`\es. -This example shows the effect of the path's orientations in a compound path. -""" - -import numpy as np -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - - -def wise(v): - if v == 1: - return "CCW" - else: - return "CW" - - -def make_circle(r): - t = np.arange(0, np.pi * 2.0, 0.01) - t = t.reshape((len(t), 1)) - x = r * np.cos(t) - y = r * np.sin(t) - return np.hstack((x, y)) - -Path = mpath.Path - -fig, ax = plt.subplots() - -inside_vertices = make_circle(0.5) -outside_vertices = make_circle(1.0) -codes = np.ones( - len(inside_vertices), dtype=mpath.Path.code_type) * mpath.Path.LINETO -codes[0] = mpath.Path.MOVETO - -for i, (inside, outside) in enumerate(((1, 1), (1, -1), (-1, 1), (-1, -1))): - # Concatenate the inside and outside subpaths together, changing their - # order as needed - vertices = np.concatenate((outside_vertices[::outside], - inside_vertices[::inside])) - # Shift the path - vertices[:, 0] += i * 2.5 - # The codes will be all "LINETO" commands, except for "MOVETO"s at the - # beginning of each subpath - all_codes = np.concatenate((codes, codes)) - # Create the Path object - path = mpath.Path(vertices, all_codes) - # Add plot it - patch = mpatches.PathPatch(path, facecolor='#885500', edgecolor='black') - ax.add_patch(patch) - - ax.annotate("Outside %s,\nInside %s" % (wise(outside), wise(inside)), - (i * 2.5, -1.5), va="top", ha="center") - -ax.set_xlim(-2, 10) -ax.set_ylim(-3, 2) -ax.set_title('Mmm, donuts!') -ax.set_aspect(1.0) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.patches.Circle -matplotlib.axes.Axes.add_patch -matplotlib.axes.Axes.annotate -matplotlib.axes.Axes.set_aspect -matplotlib.axes.Axes.set_xlim -matplotlib.axes.Axes.set_ylim -matplotlib.axes.Axes.set_title diff --git a/_downloads/02bca912c02ae34eb18fb373772f5726/fig_x.ipynb b/_downloads/02bca912c02ae34eb18fb373772f5726/fig_x.ipynb deleted file mode 120000 index 2e5d274a423..00000000000 --- a/_downloads/02bca912c02ae34eb18fb373772f5726/fig_x.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/02bca912c02ae34eb18fb373772f5726/fig_x.ipynb \ No newline at end of file diff --git a/_downloads/02be334176b42a5c4d2cd469f107ff92/images.ipynb b/_downloads/02be334176b42a5c4d2cd469f107ff92/images.ipynb deleted file mode 120000 index 3569ae3df98..00000000000 --- a/_downloads/02be334176b42a5c4d2cd469f107ff92/images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/02be334176b42a5c4d2cd469f107ff92/images.ipynb \ No newline at end of file diff --git a/_downloads/02c60c095ea607163e68352bc0102eee/pie_and_donut_labels.ipynb b/_downloads/02c60c095ea607163e68352bc0102eee/pie_and_donut_labels.ipynb deleted file mode 100644 index 23ba84d86dd..00000000000 --- a/_downloads/02c60c095ea607163e68352bc0102eee/pie_and_donut_labels.ipynb +++ /dev/null @@ -1,104 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Labeling a pie and a donut\n\n\nWelcome to the matplotlib bakery. We will create a pie and a donut\nchart through the :meth:`pie method ` and\nshow how to label them with a :meth:`legend `\nas well as with :meth:`annotations `.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "As usual we would start by defining the imports and create a figure with\nsubplots.\nNow it's time for the pie. Starting with a pie recipe, we create the data\nand a list of labels from it.\n\nWe can provide a function to the ``autopct`` argument, which will expand\nautomatic percentage labeling by showing absolute values; we calculate\nthe latter back from relative data and the known sum of all values.\n\nWe then create the pie and store the returned objects for later.\nThe first returned element of the returned tuple is a list of the wedges.\nThose are\n:class:`matplotlib.patches.Wedge ` patches, which\ncan directly be used as the handles for a legend. We can use the\nlegend's ``bbox_to_anchor`` argument to position the legend outside of\nthe pie. Here we use the axes coordinates ``(1, 0, 0.5, 1)`` together\nwith the location ``\"center left\"``; i.e.\nthe left central point of the legend will be at the left central point of the\nbounding box, spanning from ``(1,0)`` to ``(1.5,1)`` in axes coordinates.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect=\"equal\"))\n\nrecipe = [\"375 g flour\",\n \"75 g sugar\",\n \"250 g butter\",\n \"300 g berries\"]\n\ndata = [float(x.split()[0]) for x in recipe]\ningredients = [x.split()[-1] for x in recipe]\n\n\ndef func(pct, allvals):\n absolute = int(pct/100.*np.sum(allvals))\n return \"{:.1f}%\\n({:d} g)\".format(pct, absolute)\n\n\nwedges, texts, autotexts = ax.pie(data, autopct=lambda pct: func(pct, data),\n textprops=dict(color=\"w\"))\n\nax.legend(wedges, ingredients,\n title=\"Ingredients\",\n loc=\"center left\",\n bbox_to_anchor=(1, 0, 0.5, 1))\n\nplt.setp(autotexts, size=8, weight=\"bold\")\n\nax.set_title(\"Matplotlib bakery: A pie\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now it's time for the donut. Starting with a donut recipe, we transcribe\nthe data to numbers (converting 1 egg to 50 g), and directly plot the pie.\nThe pie? Wait... it's going to be donut, is it not?\nWell, as we see here, the donut is a pie, having a certain ``width`` set to\nthe wedges, which is different from its radius. It's as easy as it gets.\nThis is done via the ``wedgeprops`` argument.\n\nWe then want to label the wedges via\n:meth:`annotations `. We first create some\ndictionaries of common properties, which we can later pass as keyword\nargument. We then iterate over all wedges and for each\n\n* calculate the angle of the wedge's center,\n* from that obtain the coordinates of the point at that angle on the\n circumference,\n* determine the horizontal alignment of the text, depending on which side\n of the circle the point lies,\n* update the connection style with the obtained angle to have the annotation\n arrow point outwards from the donut,\n* finally, create the annotation with all the previously\n determined parameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect=\"equal\"))\n\nrecipe = [\"225 g flour\",\n \"90 g sugar\",\n \"1 egg\",\n \"60 g butter\",\n \"100 ml milk\",\n \"1/2 package of yeast\"]\n\ndata = [225, 90, 50, 60, 100, 5]\n\nwedges, texts = ax.pie(data, wedgeprops=dict(width=0.5), startangle=-40)\n\nbbox_props = dict(boxstyle=\"square,pad=0.3\", fc=\"w\", ec=\"k\", lw=0.72)\nkw = dict(arrowprops=dict(arrowstyle=\"-\"),\n bbox=bbox_props, zorder=0, va=\"center\")\n\nfor i, p in enumerate(wedges):\n ang = (p.theta2 - p.theta1)/2. + p.theta1\n y = np.sin(np.deg2rad(ang))\n x = np.cos(np.deg2rad(ang))\n horizontalalignment = {-1: \"right\", 1: \"left\"}[int(np.sign(x))]\n connectionstyle = \"angle,angleA=0,angleB={}\".format(ang)\n kw[\"arrowprops\"].update({\"connectionstyle\": connectionstyle})\n ax.annotate(recipe[i], xy=(x, y), xytext=(1.35*np.sign(x), 1.4*y),\n horizontalalignment=horizontalalignment, **kw)\n\nax.set_title(\"Matplotlib bakery: A donut\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And here it is, the donut. Note however, that if we were to use this recipe,\nthe ingredients would suffice for around 6 donuts - producing one huge\ndonut is untested and might result in kitchen errors.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/02cd0d749be22a8775c90915da979a05/annotate_simple_coord02.py b/_downloads/02cd0d749be22a8775c90915da979a05/annotate_simple_coord02.py deleted file mode 120000 index 897b1a09ef1..00000000000 --- a/_downloads/02cd0d749be22a8775c90915da979a05/annotate_simple_coord02.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/02cd0d749be22a8775c90915da979a05/annotate_simple_coord02.py \ No newline at end of file diff --git a/_downloads/02d0447a52028d20ca9ab2d2471375b1/dfrac_demo.py b/_downloads/02d0447a52028d20ca9ab2d2471375b1/dfrac_demo.py deleted file mode 120000 index 7f06cbcecab..00000000000 --- a/_downloads/02d0447a52028d20ca9ab2d2471375b1/dfrac_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/02d0447a52028d20ca9ab2d2471375b1/dfrac_demo.py \ No newline at end of file diff --git a/_downloads/02d0c4a462fb00f782e5ac08185695e5/linestyles.ipynb b/_downloads/02d0c4a462fb00f782e5ac08185695e5/linestyles.ipynb deleted file mode 120000 index aeaf342592a..00000000000 --- a/_downloads/02d0c4a462fb00f782e5ac08185695e5/linestyles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/02d0c4a462fb00f782e5ac08185695e5/linestyles.ipynb \ No newline at end of file diff --git a/_downloads/02d1cc3f43fedcec24c8ca19c2a326f7/spines_dropped.py b/_downloads/02d1cc3f43fedcec24c8ca19c2a326f7/spines_dropped.py deleted file mode 120000 index 9ad8432fef2..00000000000 --- a/_downloads/02d1cc3f43fedcec24c8ca19c2a326f7/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/02d1cc3f43fedcec24c8ca19c2a326f7/spines_dropped.py \ No newline at end of file diff --git a/_downloads/02dd661eca711c39aaff6ee497327dc6/custom_legends.ipynb b/_downloads/02dd661eca711c39aaff6ee497327dc6/custom_legends.ipynb deleted file mode 120000 index a65f63e87ed..00000000000 --- a/_downloads/02dd661eca711c39aaff6ee497327dc6/custom_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/02dd661eca711c39aaff6ee497327dc6/custom_legends.ipynb \ No newline at end of file diff --git a/_downloads/02e17535dad871e8ef82565b5803992e/annotation_demo.ipynb b/_downloads/02e17535dad871e8ef82565b5803992e/annotation_demo.ipynb deleted file mode 100644 index 9f56ae5739c..00000000000 --- a/_downloads/02e17535dad871e8ef82565b5803992e/annotation_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotating Plots\n\n\nThe following examples show how it is possible to annotate plots in matplotlib.\nThis includes highlighting specific points of interest and using various\nvisual tools to call attention to this point. For a more complete and in-depth\ndescription of the annotation and text tools in :mod:`matplotlib`, see the\n:doc:`tutorial on annotation `.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import Ellipse\nimport numpy as np\nfrom matplotlib.text import OffsetFrom" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Specifying text points and annotation points\n--------------------------------------------\n\nYou must specify an annotation point `xy=(x,y)` to annotate this point.\nadditionally, you may specify a text point `xytext=(x,y)` for the\nlocation of the text for this annotation. Optionally, you can\nspecify the coordinate system of `xy` and `xytext` with one of the\nfollowing strings for `xycoords` and `textcoords` (default is 'data')::\n\n 'figure points' : points from the lower left corner of the figure\n 'figure pixels' : pixels from the lower left corner of the figure\n 'figure fraction' : 0,0 is lower left of figure and 1,1 is upper, right\n 'axes points' : points from lower left corner of axes\n 'axes pixels' : pixels from lower left corner of axes\n 'axes fraction' : 0,0 is lower left of axes and 1,1 is upper right\n 'offset points' : Specify an offset (in points) from the xy value\n 'offset pixels' : Specify an offset (in pixels) from the xy value\n 'data' : use the axes data coordinate system\n\nNote: for physical coordinate systems (points or pixels) the origin is the\n(bottom, left) of the figure or axes.\n\nOptionally, you can specify arrow properties which draws and arrow\nfrom the text to the annotated point by giving a dictionary of arrow\nproperties\n\nValid keys are::\n\n width : the width of the arrow in points\n frac : the fraction of the arrow length occupied by the head\n headwidth : the width of the base of the arrow head in points\n shrink : move the tip and base some percent away from the\n annotated point and text\n any key for matplotlib.patches.polygon (e.g., facecolor)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Create our figure and data we'll use for plotting\nfig, ax = plt.subplots(figsize=(3, 3))\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\n\n# Plot a line and add some simple annotations\nline, = ax.plot(t, s)\nax.annotate('figure pixels',\n xy=(10, 10), xycoords='figure pixels')\nax.annotate('figure points',\n xy=(80, 80), xycoords='figure points')\nax.annotate('figure fraction',\n xy=(.025, .975), xycoords='figure fraction',\n horizontalalignment='left', verticalalignment='top',\n fontsize=20)\n\n# The following examples show off how these arrows are drawn.\n\nax.annotate('point offset from data',\n xy=(2, 1), xycoords='data',\n xytext=(-15, 25), textcoords='offset points',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='bottom')\n\nax.annotate('axes fraction',\n xy=(3, 1), xycoords='data',\n xytext=(0.8, 0.95), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top')\n\n# You may also use negative points or pixels to specify from (right, top).\n# E.g., (-10, 10) is 10 points to the left of the right side of the axes and 10\n# points above the bottom\n\nax.annotate('pixel offset from axes fraction',\n xy=(1, 0), xycoords='axes fraction',\n xytext=(-20, 20), textcoords='offset pixels',\n horizontalalignment='right',\n verticalalignment='bottom')\n\nax.set(xlim=(-1, 5), ylim=(-3, 5))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using multiple coordinate systems and axis types\n------------------------------------------------\n\nYou can specify the xypoint and the xytext in different positions and\ncoordinate systems, and optionally turn on a connecting line and mark\nthe point with a marker. Annotations work on polar axes too.\n\nIn the example below, the xy point is in native coordinates (xycoords\ndefaults to 'data'). For a polar axes, this is in (theta, radius) space.\nThe text in the example is placed in the fractional figure coordinate system.\nText keyword args like horizontal and vertical alignment are respected.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(subplot_kw=dict(projection='polar'), figsize=(3, 3))\nr = np.arange(0, 1, 0.001)\ntheta = 2*2*np.pi*r\nline, = ax.plot(theta, r)\n\nind = 800\nthisr, thistheta = r[ind], theta[ind]\nax.plot([thistheta], [thisr], 'o')\nax.annotate('a polar annotation',\n xy=(thistheta, thisr), # theta, radius\n xytext=(0.05, 0.05), # fraction, fraction\n textcoords='figure fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='left',\n verticalalignment='bottom')\n\n# You can also use polar notation on a cartesian axes. Here the native\n# coordinate system ('data') is cartesian, so you need to specify the\n# xycoords and textcoords as 'polar' if you want to use (theta, radius).\n\nel = Ellipse((0, 0), 10, 20, facecolor='r', alpha=0.5)\n\nfig, ax = plt.subplots(subplot_kw=dict(aspect='equal'))\nax.add_artist(el)\nel.set_clip_box(ax.bbox)\nax.annotate('the top',\n xy=(np.pi/2., 10.), # theta, radius\n xytext=(np.pi/3, 20.), # theta, radius\n xycoords='polar',\n textcoords='polar',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='left',\n verticalalignment='bottom',\n clip_on=True) # clip to the axes bounding box\n\nax.set(xlim=[-20, 20], ylim=[-20, 20])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Customizing arrow and bubble styles\n-----------------------------------\n\nThe arrow between xytext and the annotation point, as well as the bubble\nthat covers the annotation text, are highly customizable. Below are a few\nparameter options as well as their resulting output.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 5))\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\nline, = ax.plot(t, s, lw=3)\n\nax.annotate('straight',\n xy=(0, 1), xycoords='data',\n xytext=(-50, 30), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\"))\n\nax.annotate('arc3,\\nrad 0.2',\n xy=(0.5, -1), xycoords='data',\n xytext=(-80, -60), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc3,rad=.2\"))\n\nax.annotate('arc,\\nangle 50',\n xy=(1., 1), xycoords='data',\n xytext=(-90, 50), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc,angleA=0,armA=50,rad=10\"))\n\nax.annotate('arc,\\narms',\n xy=(1.5, -1), xycoords='data',\n xytext=(-80, -60), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc,angleA=0,armA=40,angleB=-90,armB=30,rad=7\"))\n\nax.annotate('angle,\\nangle 90',\n xy=(2., 1), xycoords='data',\n xytext=(-70, 30), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\"))\n\nax.annotate('angle3,\\nangle -90',\n xy=(2.5, -1), xycoords='data',\n xytext=(-80, -60), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle3,angleA=0,angleB=-90\"))\n\nax.annotate('angle,\\nround',\n xy=(3., 1), xycoords='data',\n xytext=(-60, 30), textcoords='offset points',\n bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\"))\n\nax.annotate('angle,\\nround4',\n xy=(3.5, -1), xycoords='data',\n xytext=(-70, -80), textcoords='offset points',\n size=20,\n bbox=dict(boxstyle=\"round4,pad=.5\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=-90,rad=10\"))\n\nax.annotate('angle,\\nshrink',\n xy=(4., 1), xycoords='data',\n xytext=(-60, 30), textcoords='offset points',\n bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n shrinkA=0, shrinkB=10,\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\"))\n\n# You can pass an empty string to get only annotation arrows rendered\nann = ax.annotate('', xy=(4., 1.), xycoords='data',\n xytext=(4.5, -1), textcoords='data',\n arrowprops=dict(arrowstyle=\"<->\",\n connectionstyle=\"bar\",\n ec=\"k\",\n shrinkA=5, shrinkB=5))\n\nax.set(xlim=(-1, 5), ylim=(-4, 3))\n\n# We'll create another figure so that it doesn't get too cluttered\nfig, ax = plt.subplots()\n\nel = Ellipse((2, -1), 0.5, 0.5)\nax.add_patch(el)\n\nax.annotate('$->$',\n xy=(2., -1), xycoords='data',\n xytext=(-150, -140), textcoords='offset points',\n bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n patchB=el,\n connectionstyle=\"angle,angleA=90,angleB=0,rad=10\"))\n\nax.annotate('arrow\\nfancy',\n xy=(2., -1), xycoords='data',\n xytext=(-100, 60), textcoords='offset points',\n size=20,\n # bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"fancy\",\n fc=\"0.6\", ec=\"none\",\n patchB=el,\n connectionstyle=\"angle3,angleA=0,angleB=-90\"))\n\nax.annotate('arrow\\nsimple',\n xy=(2., -1), xycoords='data',\n xytext=(100, 60), textcoords='offset points',\n size=20,\n # bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"simple\",\n fc=\"0.6\", ec=\"none\",\n patchB=el,\n connectionstyle=\"arc3,rad=0.3\"))\n\nax.annotate('wedge',\n xy=(2., -1), xycoords='data',\n xytext=(-100, -100), textcoords='offset points',\n size=20,\n # bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"wedge,tail_width=0.7\",\n fc=\"0.6\", ec=\"none\",\n patchB=el,\n connectionstyle=\"arc3,rad=-0.3\"))\n\nann = ax.annotate('bubble,\\ncontours',\n xy=(2., -1), xycoords='data',\n xytext=(0, -70), textcoords='offset points',\n size=20,\n bbox=dict(boxstyle=\"round\",\n fc=(1.0, 0.7, 0.7),\n ec=(1., .5, .5)),\n arrowprops=dict(arrowstyle=\"wedge,tail_width=1.\",\n fc=(1.0, 0.7, 0.7), ec=(1., .5, .5),\n patchA=None,\n patchB=el,\n relpos=(0.2, 0.8),\n connectionstyle=\"arc3,rad=-0.1\"))\n\nann = ax.annotate('bubble',\n xy=(2., -1), xycoords='data',\n xytext=(55, 0), textcoords='offset points',\n size=20, va=\"center\",\n bbox=dict(boxstyle=\"round\", fc=(1.0, 0.7, 0.7), ec=\"none\"),\n arrowprops=dict(arrowstyle=\"wedge,tail_width=1.\",\n fc=(1.0, 0.7, 0.7), ec=\"none\",\n patchA=None,\n patchB=el,\n relpos=(0.2, 0.5)))\n\nax.set(xlim=(-1, 5), ylim=(-5, 3))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "More examples of coordinate systems\n-----------------------------------\n\nBelow we'll show a few more examples of coordinate systems and how the\nlocation of annotations may be specified.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2)\n\nbbox_args = dict(boxstyle=\"round\", fc=\"0.8\")\narrow_args = dict(arrowstyle=\"->\")\n\n# Here we'll demonstrate the extents of the coordinate system and how\n# we place annotating text.\n\nax1.annotate('figure fraction : 0, 0', xy=(0, 0), xycoords='figure fraction',\n xytext=(20, 20), textcoords='offset points',\n ha=\"left\", va=\"bottom\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax1.annotate('figure fraction : 1, 1', xy=(1, 1), xycoords='figure fraction',\n xytext=(-20, -20), textcoords='offset points',\n ha=\"right\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax1.annotate('axes fraction : 0, 0', xy=(0, 0), xycoords='axes fraction',\n xytext=(20, 20), textcoords='offset points',\n ha=\"left\", va=\"bottom\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax1.annotate('axes fraction : 1, 1', xy=(1, 1), xycoords='axes fraction',\n xytext=(-20, -20), textcoords='offset points',\n ha=\"right\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\n# It is also possible to generate draggable annotations\n\nan1 = ax1.annotate('Drag me 1', xy=(.5, .7), xycoords='data',\n #xytext=(.5, .7), textcoords='data',\n ha=\"center\", va=\"center\",\n bbox=bbox_args,\n #arrowprops=arrow_args\n )\n\nan2 = ax1.annotate('Drag me 2', xy=(.5, .5), xycoords=an1,\n xytext=(.5, .3), textcoords='axes fraction',\n ha=\"center\", va=\"center\",\n bbox=bbox_args,\n arrowprops=dict(patchB=an1.get_bbox_patch(),\n connectionstyle=\"arc3,rad=0.2\",\n **arrow_args))\nan1.draggable()\nan2.draggable()\n\nan3 = ax1.annotate('', xy=(.5, .5), xycoords=an2,\n xytext=(.5, .5), textcoords=an1,\n ha=\"center\", va=\"center\",\n bbox=bbox_args,\n arrowprops=dict(patchA=an1.get_bbox_patch(),\n patchB=an2.get_bbox_patch(),\n connectionstyle=\"arc3,rad=0.2\",\n **arrow_args))\n\n# Finally we'll show off some more complex annotation and placement\n\ntext = ax2.annotate('xy=(0, 1)\\nxycoords=(\"data\", \"axes fraction\")',\n xy=(0, 1), xycoords=(\"data\", 'axes fraction'),\n xytext=(0, -20), textcoords='offset points',\n ha=\"center\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax2.annotate('xy=(0.5, 0)\\nxycoords=artist',\n xy=(0.5, 0.), xycoords=text,\n xytext=(0, -20), textcoords='offset points',\n ha=\"center\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax2.annotate('xy=(0.8, 0.5)\\nxycoords=ax1.transData',\n xy=(0.8, 0.5), xycoords=ax1.transData,\n xytext=(10, 10),\n textcoords=OffsetFrom(ax2.bbox, (0, 0), \"points\"),\n ha=\"left\", va=\"bottom\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax2.set(xlim=[-2, 2], ylim=[-2, 2])\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/02fb90c7e84d948e784dbe8c29055233/date_index_formatter.py b/_downloads/02fb90c7e84d948e784dbe8c29055233/date_index_formatter.py deleted file mode 120000 index 240c550000e..00000000000 --- a/_downloads/02fb90c7e84d948e784dbe8c29055233/date_index_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/02fb90c7e84d948e784dbe8c29055233/date_index_formatter.py \ No newline at end of file diff --git a/_downloads/0306c1fb8a5cfefaa08f743298a718d5/color_demo.py b/_downloads/0306c1fb8a5cfefaa08f743298a718d5/color_demo.py deleted file mode 120000 index 88f8d65ef4c..00000000000 --- a/_downloads/0306c1fb8a5cfefaa08f743298a718d5/color_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0306c1fb8a5cfefaa08f743298a718d5/color_demo.py \ No newline at end of file diff --git a/_downloads/030a217edabf620d576b73493b1b963a/bar_unit_demo.ipynb b/_downloads/030a217edabf620d576b73493b1b963a/bar_unit_demo.ipynb deleted file mode 120000 index a7288d66969..00000000000 --- a/_downloads/030a217edabf620d576b73493b1b963a/bar_unit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/030a217edabf620d576b73493b1b963a/bar_unit_demo.ipynb \ No newline at end of file diff --git a/_downloads/0310c974803c84e036a793366f91f99a/annotate_simple01.py b/_downloads/0310c974803c84e036a793366f91f99a/annotate_simple01.py deleted file mode 120000 index 1897401f0a7..00000000000 --- a/_downloads/0310c974803c84e036a793366f91f99a/annotate_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0310c974803c84e036a793366f91f99a/annotate_simple01.py \ No newline at end of file diff --git a/_downloads/0314b989d9ccfe2744aaa7e57cc139a2/image_zcoord.ipynb b/_downloads/0314b989d9ccfe2744aaa7e57cc139a2/image_zcoord.ipynb deleted file mode 120000 index 3e0bd38fc3f..00000000000 --- a/_downloads/0314b989d9ccfe2744aaa7e57cc139a2/image_zcoord.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0314b989d9ccfe2744aaa7e57cc139a2/image_zcoord.ipynb \ No newline at end of file diff --git a/_downloads/03190594ca1f6702e35730d7e22745c5/color_by_yvalue.py b/_downloads/03190594ca1f6702e35730d7e22745c5/color_by_yvalue.py deleted file mode 120000 index 5d07b7646ad..00000000000 --- a/_downloads/03190594ca1f6702e35730d7e22745c5/color_by_yvalue.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/03190594ca1f6702e35730d7e22745c5/color_by_yvalue.py \ No newline at end of file diff --git a/_downloads/031b6d14f9a906b2388b26d67170dabc/menu.ipynb b/_downloads/031b6d14f9a906b2388b26d67170dabc/menu.ipynb deleted file mode 100644 index 891b310a143..00000000000 --- a/_downloads/031b6d14f9a906b2388b26d67170dabc/menu.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Menu\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.colors as colors\nimport matplotlib.patches as patches\nimport matplotlib.mathtext as mathtext\nimport matplotlib.pyplot as plt\nimport matplotlib.artist as artist\nimport matplotlib.image as image\n\n\nclass ItemProperties(object):\n def __init__(self, fontsize=14, labelcolor='black', bgcolor='yellow',\n alpha=1.0):\n self.fontsize = fontsize\n self.labelcolor = labelcolor\n self.bgcolor = bgcolor\n self.alpha = alpha\n\n self.labelcolor_rgb = colors.to_rgba(labelcolor)[:3]\n self.bgcolor_rgb = colors.to_rgba(bgcolor)[:3]\n\n\nclass MenuItem(artist.Artist):\n parser = mathtext.MathTextParser(\"Bitmap\")\n padx = 5\n pady = 5\n\n def __init__(self, fig, labelstr, props=None, hoverprops=None,\n on_select=None):\n artist.Artist.__init__(self)\n\n self.set_figure(fig)\n self.labelstr = labelstr\n\n if props is None:\n props = ItemProperties()\n\n if hoverprops is None:\n hoverprops = ItemProperties()\n\n self.props = props\n self.hoverprops = hoverprops\n\n self.on_select = on_select\n\n x, self.depth = self.parser.to_mask(\n labelstr, fontsize=props.fontsize, dpi=fig.dpi)\n\n if props.fontsize != hoverprops.fontsize:\n raise NotImplementedError(\n 'support for different font sizes not implemented')\n\n self.labelwidth = x.shape[1]\n self.labelheight = x.shape[0]\n\n self.labelArray = np.zeros((x.shape[0], x.shape[1], 4))\n self.labelArray[:, :, -1] = x/255.\n\n self.label = image.FigureImage(fig, origin='upper')\n self.label.set_array(self.labelArray)\n\n # we'll update these later\n self.rect = patches.Rectangle((0, 0), 1, 1)\n\n self.set_hover_props(False)\n\n fig.canvas.mpl_connect('button_release_event', self.check_select)\n\n def check_select(self, event):\n over, junk = self.rect.contains(event)\n if not over:\n return\n\n if self.on_select is not None:\n self.on_select(self)\n\n def set_extent(self, x, y, w, h):\n print(x, y, w, h)\n self.rect.set_x(x)\n self.rect.set_y(y)\n self.rect.set_width(w)\n self.rect.set_height(h)\n\n self.label.ox = x + self.padx\n self.label.oy = y - self.depth + self.pady/2.\n\n self.hover = False\n\n def draw(self, renderer):\n self.rect.draw(renderer)\n self.label.draw(renderer)\n\n def set_hover_props(self, b):\n if b:\n props = self.hoverprops\n else:\n props = self.props\n\n r, g, b = props.labelcolor_rgb\n self.labelArray[:, :, 0] = r\n self.labelArray[:, :, 1] = g\n self.labelArray[:, :, 2] = b\n self.label.set_array(self.labelArray)\n self.rect.set(facecolor=props.bgcolor, alpha=props.alpha)\n\n def set_hover(self, event):\n 'check the hover status of event and return true if status is changed'\n b, junk = self.rect.contains(event)\n\n changed = (b != self.hover)\n\n if changed:\n self.set_hover_props(b)\n\n self.hover = b\n return changed\n\n\nclass Menu(object):\n def __init__(self, fig, menuitems):\n self.figure = fig\n fig.suppressComposite = True\n\n self.menuitems = menuitems\n self.numitems = len(menuitems)\n\n maxw = max(item.labelwidth for item in menuitems)\n maxh = max(item.labelheight for item in menuitems)\n\n totalh = self.numitems*maxh + (self.numitems + 1)*2*MenuItem.pady\n\n x0 = 100\n y0 = 400\n\n width = maxw + 2*MenuItem.padx\n height = maxh + MenuItem.pady\n\n for item in menuitems:\n left = x0\n bottom = y0 - maxh - MenuItem.pady\n\n item.set_extent(left, bottom, width, height)\n\n fig.artists.append(item)\n y0 -= maxh + MenuItem.pady\n\n fig.canvas.mpl_connect('motion_notify_event', self.on_move)\n\n def on_move(self, event):\n draw = False\n for item in self.menuitems:\n draw = item.set_hover(event)\n if draw:\n self.figure.canvas.draw()\n break\n\n\nfig = plt.figure()\nfig.subplots_adjust(left=0.3)\nprops = ItemProperties(labelcolor='black', bgcolor='yellow',\n fontsize=15, alpha=0.2)\nhoverprops = ItemProperties(labelcolor='white', bgcolor='blue',\n fontsize=15, alpha=0.2)\n\nmenuitems = []\nfor label in ('open', 'close', 'save', 'save as', 'quit'):\n def on_select(item):\n print('you selected %s' % item.labelstr)\n item = MenuItem(fig, label, props=props, hoverprops=hoverprops,\n on_select=on_select)\n menuitems.append(item)\n\nmenu = Menu(fig, menuitems)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/031d3666813d91e2b5f161caacd8d9b3/colormap_normalizations_bounds.py b/_downloads/031d3666813d91e2b5f161caacd8d9b3/colormap_normalizations_bounds.py deleted file mode 120000 index 25c929c9aee..00000000000 --- a/_downloads/031d3666813d91e2b5f161caacd8d9b3/colormap_normalizations_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/031d3666813d91e2b5f161caacd8d9b3/colormap_normalizations_bounds.py \ No newline at end of file diff --git a/_downloads/031e6b346a07203238601c626ff9468a/topographic_hillshading.py b/_downloads/031e6b346a07203238601c626ff9468a/topographic_hillshading.py deleted file mode 120000 index cc99d37a8c1..00000000000 --- a/_downloads/031e6b346a07203238601c626ff9468a/topographic_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/031e6b346a07203238601c626ff9468a/topographic_hillshading.py \ No newline at end of file diff --git a/_downloads/0329493b485793bfe1ef1b14e3585222/custom_legends.ipynb b/_downloads/0329493b485793bfe1ef1b14e3585222/custom_legends.ipynb deleted file mode 120000 index 7276c434116..00000000000 --- a/_downloads/0329493b485793bfe1ef1b14e3585222/custom_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0329493b485793bfe1ef1b14e3585222/custom_legends.ipynb \ No newline at end of file diff --git a/_downloads/032b383a28c6ddfdca0f49f038c44593/mathtext_wx_sgskip.ipynb b/_downloads/032b383a28c6ddfdca0f49f038c44593/mathtext_wx_sgskip.ipynb deleted file mode 120000 index fc955d5187a..00000000000 --- a/_downloads/032b383a28c6ddfdca0f49f038c44593/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/032b383a28c6ddfdca0f49f038c44593/mathtext_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/03316a39058c026f05a78f6b0cc55e40/whats_new_98_4_fill_between.py b/_downloads/03316a39058c026f05a78f6b0cc55e40/whats_new_98_4_fill_between.py deleted file mode 120000 index 3edd6567a55..00000000000 --- a/_downloads/03316a39058c026f05a78f6b0cc55e40/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/03316a39058c026f05a78f6b0cc55e40/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/_downloads/034646e836b99ca6930e8d41c004a34f/dfrac_demo.py b/_downloads/034646e836b99ca6930e8d41c004a34f/dfrac_demo.py deleted file mode 120000 index c9129a97524..00000000000 --- a/_downloads/034646e836b99ca6930e8d41c004a34f/dfrac_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/034646e836b99ca6930e8d41c004a34f/dfrac_demo.py \ No newline at end of file diff --git a/_downloads/034c6f4cf2bcbef8d8d44f5e71c02173/usetex_fonteffects.ipynb b/_downloads/034c6f4cf2bcbef8d8d44f5e71c02173/usetex_fonteffects.ipynb deleted file mode 120000 index 6fba6e65909..00000000000 --- a/_downloads/034c6f4cf2bcbef8d8d44f5e71c02173/usetex_fonteffects.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/034c6f4cf2bcbef8d8d44f5e71c02173/usetex_fonteffects.ipynb \ No newline at end of file diff --git a/_downloads/03585d6b78bfd2b18947ed85f9f740e0/centered_spines_with_arrows.ipynb b/_downloads/03585d6b78bfd2b18947ed85f9f740e0/centered_spines_with_arrows.ipynb deleted file mode 120000 index 0e52050aa36..00000000000 --- a/_downloads/03585d6b78bfd2b18947ed85f9f740e0/centered_spines_with_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/03585d6b78bfd2b18947ed85f9f740e0/centered_spines_with_arrows.ipynb \ No newline at end of file diff --git a/_downloads/035e1bb0d15ac220ad53a2b425d08326/embedding_in_wx2_sgskip.py b/_downloads/035e1bb0d15ac220ad53a2b425d08326/embedding_in_wx2_sgskip.py deleted file mode 100644 index 64c8e701dbb..00000000000 --- a/_downloads/035e1bb0d15ac220ad53a2b425d08326/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -================== -Embedding in wx #2 -================== - -An example of how to use wxagg in an application with the new -toolbar - comment out the add_toolbar line for no toolbar -""" - -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wx import NavigationToolbar2Wx as NavigationToolbar -from matplotlib.figure import Figure - -import numpy as np - -import wx -import wx.lib.mixins.inspection as WIT - - -class CanvasFrame(wx.Frame): - def __init__(self): - wx.Frame.__init__(self, None, -1, - 'CanvasFrame', size=(550, 350)) - - self.figure = Figure() - self.axes = self.figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2 * np.pi * t) - - self.axes.plot(t, s) - self.canvas = FigureCanvas(self, -1, self.figure) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.EXPAND) - self.SetSizer(self.sizer) - self.Fit() - - self.add_toolbar() # comment this out for no toolbar - - def add_toolbar(self): - self.toolbar = NavigationToolbar(self.canvas) - self.toolbar.Realize() - # By adding toolbar in sizer, we are able to put it at the bottom - # of the frame - so appearance is closer to GTK version. - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - # update the axes menu on the toolbar - self.toolbar.update() - - -# alternatively you could use -#class App(wx.App): -class App(WIT.InspectableApp): - def OnInit(self): - 'Create the main window and insert the custom frame' - self.Init() - frame = CanvasFrame() - frame.Show(True) - - return True - -app = App(0) -app.MainLoop() diff --git a/_downloads/036bf7c6ba3543e620616a0e18bc5b50/grayscale.py b/_downloads/036bf7c6ba3543e620616a0e18bc5b50/grayscale.py deleted file mode 120000 index 49c01b30b09..00000000000 --- a/_downloads/036bf7c6ba3543e620616a0e18bc5b50/grayscale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/036bf7c6ba3543e620616a0e18bc5b50/grayscale.py \ No newline at end of file diff --git a/_downloads/03781bf1f3fd18cae78c6b58d0385d23/pcolormesh_levels.py b/_downloads/03781bf1f3fd18cae78c6b58d0385d23/pcolormesh_levels.py deleted file mode 120000 index 98fc3ce2bc4..00000000000 --- a/_downloads/03781bf1f3fd18cae78c6b58d0385d23/pcolormesh_levels.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/03781bf1f3fd18cae78c6b58d0385d23/pcolormesh_levels.py \ No newline at end of file diff --git a/_downloads/0380af02e4c7a1a8441786fc67ecd5ef/annotations.py b/_downloads/0380af02e4c7a1a8441786fc67ecd5ef/annotations.py deleted file mode 120000 index 56ceb418287..00000000000 --- a/_downloads/0380af02e4c7a1a8441786fc67ecd5ef/annotations.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0380af02e4c7a1a8441786fc67ecd5ef/annotations.py \ No newline at end of file diff --git a/_downloads/0388069c25c84d6bc3a8b03a4f424035/fancyarrow_demo.ipynb b/_downloads/0388069c25c84d6bc3a8b03a4f424035/fancyarrow_demo.ipynb deleted file mode 120000 index 7700634cb32..00000000000 --- a/_downloads/0388069c25c84d6bc3a8b03a4f424035/fancyarrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0388069c25c84d6bc3a8b03a4f424035/fancyarrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/038e6d6e6393de9f0a88a65dd2e8fc4b/wire3d_animation_sgskip.ipynb b/_downloads/038e6d6e6393de9f0a88a65dd2e8fc4b/wire3d_animation_sgskip.ipynb deleted file mode 120000 index 8980fe5e9e8..00000000000 --- a/_downloads/038e6d6e6393de9f0a88a65dd2e8fc4b/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/038e6d6e6393de9f0a88a65dd2e8fc4b/wire3d_animation_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/039dda5a8749c875eccb730cb8ad9eba/usetex.py b/_downloads/039dda5a8749c875eccb730cb8ad9eba/usetex.py deleted file mode 120000 index bee4fe3c2eb..00000000000 --- a/_downloads/039dda5a8749c875eccb730cb8ad9eba/usetex.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/039dda5a8749c875eccb730cb8ad9eba/usetex.py \ No newline at end of file diff --git a/_downloads/039f55ff82a23910b87126708da568e4/dashpointlabel.py b/_downloads/039f55ff82a23910b87126708da568e4/dashpointlabel.py deleted file mode 100644 index 96a8b756461..00000000000 --- a/_downloads/039f55ff82a23910b87126708da568e4/dashpointlabel.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -=============== -Dashpoint Label -=============== - -""" - -import warnings - -import matplotlib.pyplot as plt - -warnings.simplefilter("ignore") # Ignore deprecation of withdash. - -DATA = ((1, 3), - (2, 4), - (3, 1), - (4, 2)) -# dash_style = -# direction, length, (text)rotation, dashrotation, push -# (The parameters are varied to show their effects, not for visual appeal). -dash_style = ( - (0, 20, -15, 30, 10), - (1, 30, 0, 15, 10), - (0, 40, 15, 15, 10), - (1, 20, 30, 60, 10)) - -fig, ax = plt.subplots() - -(x, y) = zip(*DATA) -ax.plot(x, y, marker='o') -for i in range(len(DATA)): - (x, y) = DATA[i] - (dd, dl, r, dr, dp) = dash_style[i] - t = ax.text(x, y, str((x, y)), withdash=True, - dashdirection=dd, - dashlength=dl, - rotation=r, - dashrotation=dr, - dashpush=dp, - ) - -ax.set_xlim((0, 5)) -ax.set_ylim((0, 5)) -ax.set(title="NOTE: The withdash parameter is deprecated.") - -plt.show() diff --git a/_downloads/03a4ae19b81e22290c46a94bdf82cb9a/mandelbrot.ipynb b/_downloads/03a4ae19b81e22290c46a94bdf82cb9a/mandelbrot.ipynb deleted file mode 120000 index ab021b6b27e..00000000000 --- a/_downloads/03a4ae19b81e22290c46a94bdf82cb9a/mandelbrot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/03a4ae19b81e22290c46a94bdf82cb9a/mandelbrot.ipynb \ No newline at end of file diff --git a/_downloads/03b7b76ef55f0bd7e78fda87a89dcf0c/demo_gridspec03.ipynb b/_downloads/03b7b76ef55f0bd7e78fda87a89dcf0c/demo_gridspec03.ipynb deleted file mode 100644 index 4aa8f95e881..00000000000 --- a/_downloads/03b7b76ef55f0bd7e78fda87a89dcf0c/demo_gridspec03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# GridSpec demo\n\n\nThis example demonstrates the use of `GridSpec` to generate subplots,\nthe control of the relative sizes of subplots with *width_ratios* and\n*height_ratios*, and the control of the spacing around and between subplots\nusing subplot params (*left*, *right*, *bottom*, *top*, *wspace*, and\n*hspace*).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.gridspec import GridSpec\n\n\ndef annotate_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\n\nfig = plt.figure()\nfig.suptitle(\"Controlling subplot sizes with width_ratios and height_ratios\")\n\ngs = GridSpec(2, 2, width_ratios=[1, 2], height_ratios=[4, 1])\nax1 = fig.add_subplot(gs[0])\nax2 = fig.add_subplot(gs[1])\nax3 = fig.add_subplot(gs[2])\nax4 = fig.add_subplot(gs[3])\n\nannotate_axes(fig)\n\n\nfig = plt.figure()\nfig.suptitle(\"Controlling spacing around and between subplots\")\n\ngs1 = GridSpec(3, 3, left=0.05, right=0.48, wspace=0.05)\nax1 = fig.add_subplot(gs1[:-1, :])\nax2 = fig.add_subplot(gs1[-1, :-1])\nax3 = fig.add_subplot(gs1[-1, -1])\n\ngs2 = GridSpec(3, 3, left=0.55, right=0.98, hspace=0.05)\nax4 = fig.add_subplot(gs2[:, :-1])\nax5 = fig.add_subplot(gs2[:-1, -1])\nax6 = fig.add_subplot(gs2[-1, -1])\n\nannotate_axes(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/03cf8ad7bf8bd7848a7c0a7773f4bc10/multiprocess_sgskip.py b/_downloads/03cf8ad7bf8bd7848a7c0a7773f4bc10/multiprocess_sgskip.py deleted file mode 100644 index 517fdc39255..00000000000 --- a/_downloads/03cf8ad7bf8bd7848a7c0a7773f4bc10/multiprocess_sgskip.py +++ /dev/null @@ -1,106 +0,0 @@ -""" -============ -Multiprocess -============ - -Demo of using multiprocessing for generating data in one process and -plotting in another. - -Written by Robert Cimrman -""" - -import multiprocessing as mp -import time - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -############################################################################### -# -# Processing Class -# ================ -# -# This class plots data it receives from a pipe. -# - - -class ProcessPlotter(object): - def __init__(self): - self.x = [] - self.y = [] - - def terminate(self): - plt.close('all') - - def call_back(self): - while self.pipe.poll(): - command = self.pipe.recv() - if command is None: - self.terminate() - return False - else: - self.x.append(command[0]) - self.y.append(command[1]) - self.ax.plot(self.x, self.y, 'ro') - self.fig.canvas.draw() - return True - - def __call__(self, pipe): - print('starting plotter...') - - self.pipe = pipe - self.fig, self.ax = plt.subplots() - timer = self.fig.canvas.new_timer(interval=1000) - timer.add_callback(self.call_back) - timer.start() - - print('...done') - plt.show() - -############################################################################### -# -# Plotting class -# ============== -# -# This class uses multiprocessing to spawn a process to run code from the -# class above. When initialized, it creates a pipe and an instance of -# ``ProcessPlotter`` which will be run in a separate process. -# -# When run from the command line, the parent process sends data to the spawned -# process which is then plotted via the callback function specified in -# ``ProcessPlotter:__call__``. -# - - -class NBPlot(object): - def __init__(self): - self.plot_pipe, plotter_pipe = mp.Pipe() - self.plotter = ProcessPlotter() - self.plot_process = mp.Process( - target=self.plotter, args=(plotter_pipe,), daemon=True) - self.plot_process.start() - - def plot(self, finished=False): - send = self.plot_pipe.send - if finished: - send(None) - else: - data = np.random.random(2) - send(data) - - -def main(): - pl = NBPlot() - for ii in range(10): - pl.plot() - time.sleep(0.5) - pl.plot(finished=True) - - -if __name__ == '__main__': - if plt.get_backend() == "MacOSX": - mp.set_start_method("forkserver") - main() diff --git a/_downloads/03d27447e59c79530a2c2e97ab989bf0/fivethirtyeight.ipynb b/_downloads/03d27447e59c79530a2c2e97ab989bf0/fivethirtyeight.ipynb deleted file mode 120000 index 222be55580a..00000000000 --- a/_downloads/03d27447e59c79530a2c2e97ab989bf0/fivethirtyeight.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/03d27447e59c79530a2c2e97ab989bf0/fivethirtyeight.ipynb \ No newline at end of file diff --git a/_downloads/03dfc835f11467a3222c8827eda9db08/tricontour_smooth_delaunay.ipynb b/_downloads/03dfc835f11467a3222c8827eda9db08/tricontour_smooth_delaunay.ipynb deleted file mode 120000 index 6df2143263d..00000000000 --- a/_downloads/03dfc835f11467a3222c8827eda9db08/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/03dfc835f11467a3222c8827eda9db08/tricontour_smooth_delaunay.ipynb \ No newline at end of file diff --git a/_downloads/03e2b0f236d25d74304c7d8480ac57ed/close_event.ipynb b/_downloads/03e2b0f236d25d74304c7d8480ac57ed/close_event.ipynb deleted file mode 120000 index 0747a116efa..00000000000 --- a/_downloads/03e2b0f236d25d74304c7d8480ac57ed/close_event.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/03e2b0f236d25d74304c7d8480ac57ed/close_event.ipynb \ No newline at end of file diff --git a/_downloads/03ed879008811eb700082f93269e95f9/scatter3d.ipynb b/_downloads/03ed879008811eb700082f93269e95f9/scatter3d.ipynb deleted file mode 120000 index ae7dc342e2f..00000000000 --- a/_downloads/03ed879008811eb700082f93269e95f9/scatter3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/03ed879008811eb700082f93269e95f9/scatter3d.ipynb \ No newline at end of file diff --git a/_downloads/03f3ccfe19f5e87e4866f3380a9e442a/hexbin_demo.py b/_downloads/03f3ccfe19f5e87e4866f3380a9e442a/hexbin_demo.py deleted file mode 100644 index 8115f99548e..00000000000 --- a/_downloads/03f3ccfe19f5e87e4866f3380a9e442a/hexbin_demo.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -=========== -Hexbin Demo -=========== - -Plotting hexbins with Matplotlib. - -Hexbin is an axes method or pyplot function that is essentially -a pcolor of a 2-D histogram with hexagonal cells. It can be -much more informative than a scatter plot. In the first plot -below, try substituting 'scatter' for 'hexbin'. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -n = 100000 -x = np.random.standard_normal(n) -y = 2.0 + 3.0 * x + 4.0 * np.random.standard_normal(n) -xmin = x.min() -xmax = x.max() -ymin = y.min() -ymax = y.max() - -fig, axs = plt.subplots(ncols=2, sharey=True, figsize=(7, 4)) -fig.subplots_adjust(hspace=0.5, left=0.07, right=0.93) -ax = axs[0] -hb = ax.hexbin(x, y, gridsize=50, cmap='inferno') -ax.set(xlim=(xmin, xmax), ylim=(ymin, ymax)) -ax.set_title("Hexagon binning") -cb = fig.colorbar(hb, ax=ax) -cb.set_label('counts') - -ax = axs[1] -hb = ax.hexbin(x, y, gridsize=50, bins='log', cmap='inferno') -ax.set(xlim=(xmin, xmax), ylim=(ymin, ymax)) -ax.set_title("With a log color scale") -cb = fig.colorbar(hb, ax=ax) -cb.set_label('log10(N)') - -plt.show() diff --git a/_downloads/03f6067ff12db8a6b0597ce2719bdc85/pong_sgskip.ipynb b/_downloads/03f6067ff12db8a6b0597ce2719bdc85/pong_sgskip.ipynb deleted file mode 120000 index a9c440dbec1..00000000000 --- a/_downloads/03f6067ff12db8a6b0597ce2719bdc85/pong_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/03f6067ff12db8a6b0597ce2719bdc85/pong_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/03f7917be0ce412060828dc29a0b47e1/embedding_in_gtk3_sgskip.py b/_downloads/03f7917be0ce412060828dc29a0b47e1/embedding_in_gtk3_sgskip.py deleted file mode 120000 index 7010e35d4a4..00000000000 --- a/_downloads/03f7917be0ce412060828dc29a0b47e1/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/03f7917be0ce412060828dc29a0b47e1/embedding_in_gtk3_sgskip.py \ No newline at end of file diff --git a/_downloads/04021d17de49442ea9f3fecfec09945f/findobj_demo.py b/_downloads/04021d17de49442ea9f3fecfec09945f/findobj_demo.py deleted file mode 100644 index 971a184a53d..00000000000 --- a/_downloads/04021d17de49442ea9f3fecfec09945f/findobj_demo.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -============ -Findobj Demo -============ - -Recursively find all objects that match some criteria -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.text as text - -a = np.arange(0, 3, .02) -b = np.arange(0, 3, .02) -c = np.exp(a) -d = c[::-1] - -fig, ax = plt.subplots() -plt.plot(a, c, 'k--', a, d, 'k:', a, c + d, 'k') -plt.legend(('Model length', 'Data length', 'Total message length'), - loc='upper center', shadow=True) -plt.ylim([-1, 20]) -plt.grid(False) -plt.xlabel('Model complexity --->') -plt.ylabel('Message length --->') -plt.title('Minimum Message Length') - - -# match on arbitrary function -def myfunc(x): - return hasattr(x, 'set_color') and not hasattr(x, 'set_facecolor') - - -for o in fig.findobj(myfunc): - o.set_color('blue') - -# match on class instances -for o in fig.findobj(text.Text): - o.set_fontstyle('italic') - - -plt.show() diff --git a/_downloads/040e746355e5106aeaa27a7dfd24b266/affine_image.py b/_downloads/040e746355e5106aeaa27a7dfd24b266/affine_image.py deleted file mode 120000 index 2bcb0f972d3..00000000000 --- a/_downloads/040e746355e5106aeaa27a7dfd24b266/affine_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/040e746355e5106aeaa27a7dfd24b266/affine_image.py \ No newline at end of file diff --git a/_downloads/041a65539861a3de98d2df7e571b0de6/usetex.ipynb b/_downloads/041a65539861a3de98d2df7e571b0de6/usetex.ipynb deleted file mode 120000 index d3b013e06e0..00000000000 --- a/_downloads/041a65539861a3de98d2df7e571b0de6/usetex.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/041a65539861a3de98d2df7e571b0de6/usetex.ipynb \ No newline at end of file diff --git a/_downloads/0423b2eb0d2dff5c75f052c0bc8573ac/text_layout.ipynb b/_downloads/0423b2eb0d2dff5c75f052c0bc8573ac/text_layout.ipynb deleted file mode 100644 index d6a586a3603..00000000000 --- a/_downloads/0423b2eb0d2dff5c75f052c0bc8573ac/text_layout.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text Layout\n\n\nCreate text with different alignment and rotation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as patches\n\n# build a rectangle in axes coords\nleft, width = .25, .5\nbottom, height = .25, .5\nright = left + width\ntop = bottom + height\n\nfig = plt.figure()\nax = fig.add_axes([0,0,1,1])\n\n# axes coordinates are 0,0 is bottom left and 1,1 is upper right\np = patches.Rectangle(\n (left, bottom), width, height,\n fill=False, transform=ax.transAxes, clip_on=False\n )\n\nax.add_patch(p)\n\nax.text(left, bottom, 'left top',\n horizontalalignment='left',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, bottom, 'left bottom',\n horizontalalignment='left',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right bottom',\n horizontalalignment='right',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right top',\n horizontalalignment='right',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(right, bottom, 'center top',\n horizontalalignment='center',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'right center',\n horizontalalignment='right',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'left center',\n horizontalalignment='left',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(0.5*(left+right), 0.5*(bottom+top), 'middle',\n horizontalalignment='center',\n verticalalignment='center',\n fontsize=20, color='red',\n transform=ax.transAxes)\n\nax.text(right, 0.5*(bottom+top), 'centered',\n horizontalalignment='center',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, top, 'rotated\\nwith newlines',\n horizontalalignment='center',\n verticalalignment='center',\n rotation=45,\n transform=ax.transAxes)\n\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.text\nmatplotlib.pyplot.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0423d44e18443729fb18221896163dc3/quad_bezier.ipynb b/_downloads/0423d44e18443729fb18221896163dc3/quad_bezier.ipynb deleted file mode 120000 index 46d3e20ad70..00000000000 --- a/_downloads/0423d44e18443729fb18221896163dc3/quad_bezier.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0423d44e18443729fb18221896163dc3/quad_bezier.ipynb \ No newline at end of file diff --git a/_downloads/042f2e7887e785e7abda0146d3c50768/set_and_get.ipynb b/_downloads/042f2e7887e785e7abda0146d3c50768/set_and_get.ipynb deleted file mode 100644 index 44bd63d64de..00000000000 --- a/_downloads/042f2e7887e785e7abda0146d3c50768/set_and_get.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Set And Get\n\n\nThe pyplot interface allows you to use setp and getp to set and get\nobject properties, as well as to do introspection on the object\n\nset\n===\n\nTo set the linestyle of a line to be dashed, you can do::\n\n >>> line, = plt.plot([1,2,3])\n >>> plt.setp(line, linestyle='--')\n\nIf you want to know the valid types of arguments, you can provide the\nname of the property you want to set without a value::\n\n >>> plt.setp(line, 'linestyle')\n linestyle: [ '-' | '--' | '-.' | ':' | 'steps' | 'None' ]\n\nIf you want to see all the properties that can be set, and their\npossible values, you can do::\n\n >>> plt.setp(line)\n\nset operates on a single instance or a list of instances. If you are\nin query mode introspecting the possible values, only the first\ninstance in the sequence is used. When actually setting values, all\nthe instances will be set. e.g., suppose you have a list of two lines,\nthe following will make both lines thicker and red::\n\n >>> x = np.arange(0,1.0,0.01)\n >>> y1 = np.sin(2*np.pi*x)\n >>> y2 = np.sin(4*np.pi*x)\n >>> lines = plt.plot(x, y1, x, y2)\n >>> plt.setp(lines, linewidth=2, color='r')\n\n\nget\n===\n\nget returns the value of a given attribute. You can use get to query\nthe value of a single attribute::\n\n >>> plt.getp(line, 'linewidth')\n 0.5\n\nor all the attribute/value pairs::\n\n >>> plt.getp(line)\n aa = True\n alpha = 1.0\n antialiased = True\n c = b\n clip_on = True\n color = b\n ... long listing skipped ...\n\nAliases\n=======\n\nTo reduce keystrokes in interactive mode, a number of properties\nhave short aliases, e.g., 'lw' for 'linewidth' and 'mec' for\n'markeredgecolor'. When calling set or get in introspection mode,\nthese properties will be listed as 'fullname or aliasname'.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nx = np.arange(0, 1.0, 0.01)\ny1 = np.sin(2*np.pi*x)\ny2 = np.sin(4*np.pi*x)\nlines = plt.plot(x, y1, x, y2)\nl1, l2 = lines\nplt.setp(lines, linestyle='--') # set both to dashed\nplt.setp(l1, linewidth=2, color='r') # line1 is thick and red\nplt.setp(l2, linewidth=1, color='g') # line2 is thinner and green\n\n\nprint('Line setters')\nplt.setp(l1)\nprint('Line getters')\nplt.getp(l1)\n\nprint('Rectangle setters')\nplt.setp(plt.gca().patch)\nprint('Rectangle getters')\nplt.getp(plt.gca().patch)\n\nt = plt.title('Hi mom')\nprint('Text setters')\nplt.setp(t)\nprint('Text getters')\nplt.getp(t)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/04319d32b529e82e49ddee00fd89e18e/quad_bezier.ipynb b/_downloads/04319d32b529e82e49ddee00fd89e18e/quad_bezier.ipynb deleted file mode 120000 index b2e473bdec3..00000000000 --- a/_downloads/04319d32b529e82e49ddee00fd89e18e/quad_bezier.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/04319d32b529e82e49ddee00fd89e18e/quad_bezier.ipynb \ No newline at end of file diff --git a/_downloads/043234f084c3d98ae69cebfc3e0af679/eventcollection_demo.py b/_downloads/043234f084c3d98ae69cebfc3e0af679/eventcollection_demo.py deleted file mode 100644 index abdb6e6c05f..00000000000 --- a/_downloads/043234f084c3d98ae69cebfc3e0af679/eventcollection_demo.py +++ /dev/null @@ -1,61 +0,0 @@ -""" -==================== -EventCollection Demo -==================== - -Plot two curves, then use EventCollections to mark the locations of the x -and y data points on the respective axes for each curve -""" - -import matplotlib.pyplot as plt -from matplotlib.collections import EventCollection -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# create random data -xdata = np.random.random([2, 10]) - -# split the data into two parts -xdata1 = xdata[0, :] -xdata2 = xdata[1, :] - -# sort the data so it makes clean curves -xdata1.sort() -xdata2.sort() - -# create some y data points -ydata1 = xdata1 ** 2 -ydata2 = 1 - xdata2 ** 3 - -# plot the data -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1) -ax.plot(xdata1, ydata1, color='tab:blue') -ax.plot(xdata2, ydata2, color='tab:orange') - -# create the events marking the x data points -xevents1 = EventCollection(xdata1, color='tab:blue', linelength=0.05) -xevents2 = EventCollection(xdata2, color='tab:orange', linelength=0.05) - -# create the events marking the y data points -yevents1 = EventCollection(ydata1, color='tab:blue', linelength=0.05, - orientation='vertical') -yevents2 = EventCollection(ydata2, color='tab:orange', linelength=0.05, - orientation='vertical') - -# add the events to the axis -ax.add_collection(xevents1) -ax.add_collection(xevents2) -ax.add_collection(yevents1) -ax.add_collection(yevents2) - -# set the limits -ax.set_xlim([0, 1]) -ax.set_ylim([0, 1]) - -ax.set_title('line plot with data points') - -# display the plot -plt.show() diff --git a/_downloads/0435cf7a9cf0747b63c12f2f1bb317cf/tick_label_right.py b/_downloads/0435cf7a9cf0747b63c12f2f1bb317cf/tick_label_right.py deleted file mode 120000 index 85dc448f289..00000000000 --- a/_downloads/0435cf7a9cf0747b63c12f2f1bb317cf/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0435cf7a9cf0747b63c12f2f1bb317cf/tick_label_right.py \ No newline at end of file diff --git a/_downloads/044cf87e9ca9074b92ae2ec80729612a/animate_decay.ipynb b/_downloads/044cf87e9ca9074b92ae2ec80729612a/animate_decay.ipynb deleted file mode 120000 index 7d916b83dac..00000000000 --- a/_downloads/044cf87e9ca9074b92ae2ec80729612a/animate_decay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/044cf87e9ca9074b92ae2ec80729612a/animate_decay.ipynb \ No newline at end of file diff --git a/_downloads/0451337cf650dbb0b1f0314c55fe75ce/errorbar_limits_simple.py b/_downloads/0451337cf650dbb0b1f0314c55fe75ce/errorbar_limits_simple.py deleted file mode 120000 index 03e6a347257..00000000000 --- a/_downloads/0451337cf650dbb0b1f0314c55fe75ce/errorbar_limits_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0451337cf650dbb0b1f0314c55fe75ce/errorbar_limits_simple.py \ No newline at end of file diff --git a/_downloads/0459ad8ea25deaf5d44d23f8bd7d07ca/hist.py b/_downloads/0459ad8ea25deaf5d44d23f8bd7d07ca/hist.py deleted file mode 120000 index 131357683a1..00000000000 --- a/_downloads/0459ad8ea25deaf5d44d23f8bd7d07ca/hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0459ad8ea25deaf5d44d23f8bd7d07ca/hist.py \ No newline at end of file diff --git a/_downloads/0466e9045f8fe3100f98c2a3b536994c/demo_curvelinear_grid2.py b/_downloads/0466e9045f8fe3100f98c2a3b536994c/demo_curvelinear_grid2.py deleted file mode 120000 index cfb8211b101..00000000000 --- a/_downloads/0466e9045f8fe3100f98c2a3b536994c/demo_curvelinear_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0466e9045f8fe3100f98c2a3b536994c/demo_curvelinear_grid2.py \ No newline at end of file diff --git a/_downloads/047c5b051d6bcc3d0ef368577431bd45/menu.ipynb b/_downloads/047c5b051d6bcc3d0ef368577431bd45/menu.ipynb deleted file mode 120000 index f6253d03a92..00000000000 --- a/_downloads/047c5b051d6bcc3d0ef368577431bd45/menu.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/047c5b051d6bcc3d0ef368577431bd45/menu.ipynb \ No newline at end of file diff --git a/_downloads/047e038d7dae420fede5e455808e516f/simple_axisartist1.py b/_downloads/047e038d7dae420fede5e455808e516f/simple_axisartist1.py deleted file mode 120000 index 2c95b82c73b..00000000000 --- a/_downloads/047e038d7dae420fede5e455808e516f/simple_axisartist1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/047e038d7dae420fede5e455808e516f/simple_axisartist1.py \ No newline at end of file diff --git a/_downloads/047f478125e8ebbf84ee9b63df7b50c0/text_fontdict.ipynb b/_downloads/047f478125e8ebbf84ee9b63df7b50c0/text_fontdict.ipynb deleted file mode 100644 index 9b83327560c..00000000000 --- a/_downloads/047f478125e8ebbf84ee9b63df7b50c0/text_fontdict.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Controlling style of text and labels using a dictionary\n\n\nThis example shows how to share parameters across many text objects and labels\nby creating a dictionary of options passed across several functions.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nfont = {'family': 'serif',\n 'color': 'darkred',\n 'weight': 'normal',\n 'size': 16,\n }\n\nx = np.linspace(0.0, 5.0, 100)\ny = np.cos(2*np.pi*x) * np.exp(-x)\n\nplt.plot(x, y, 'k')\nplt.title('Damped exponential decay', fontdict=font)\nplt.text(2, 0.65, r'$\\cos(2 \\pi t) \\exp(-t)$', fontdict=font)\nplt.xlabel('time (s)', fontdict=font)\nplt.ylabel('voltage (mV)', fontdict=font)\n\n# Tweak spacing to prevent clipping of ylabel\nplt.subplots_adjust(left=0.15)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/04821fac449eddc684363a40516e66d7/custom_figure_class.py b/_downloads/04821fac449eddc684363a40516e66d7/custom_figure_class.py deleted file mode 120000 index 3c1daa036e1..00000000000 --- a/_downloads/04821fac449eddc684363a40516e66d7/custom_figure_class.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/04821fac449eddc684363a40516e66d7/custom_figure_class.py \ No newline at end of file diff --git a/_downloads/048a374a50fa64d98b3f259660507d2d/scatter_custom_symbol.py b/_downloads/048a374a50fa64d98b3f259660507d2d/scatter_custom_symbol.py deleted file mode 120000 index ea002f4d6e1..00000000000 --- a/_downloads/048a374a50fa64d98b3f259660507d2d/scatter_custom_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/048a374a50fa64d98b3f259660507d2d/scatter_custom_symbol.py \ No newline at end of file diff --git a/_downloads/048feb2ca909eb1f9214e0a9b47cc00e/quad_bezier.ipynb b/_downloads/048feb2ca909eb1f9214e0a9b47cc00e/quad_bezier.ipynb deleted file mode 100644 index 33c23b90dd7..00000000000 --- a/_downloads/048feb2ca909eb1f9214e0a9b47cc00e/quad_bezier.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bezier Curve\n\n\nThis example showcases the `~.patches.PathPatch` object to create a Bezier\npolycurve path patch.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nPath = mpath.Path\n\nfig, ax = plt.subplots()\npp1 = mpatches.PathPatch(\n Path([(0, 0), (1, 0), (1, 1), (0, 0)],\n [Path.MOVETO, Path.CURVE3, Path.CURVE3, Path.CLOSEPOLY]),\n fc=\"none\", transform=ax.transData)\n\nax.add_patch(pp1)\nax.plot([0.75], [0.25], \"ro\")\nax.set_title('The red point should be on the path')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.axes.Axes.add_patch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/048ffe60afb542d551a867bab4b9fabe/fig_x.ipynb b/_downloads/048ffe60afb542d551a867bab4b9fabe/fig_x.ipynb deleted file mode 120000 index c1bd0059555..00000000000 --- a/_downloads/048ffe60afb542d551a867bab4b9fabe/fig_x.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/048ffe60afb542d551a867bab4b9fabe/fig_x.ipynb \ No newline at end of file diff --git a/_downloads/04900f2151386c190efa2e7ad3a5970e/annotation_basic.py b/_downloads/04900f2151386c190efa2e7ad3a5970e/annotation_basic.py deleted file mode 120000 index 3e462567742..00000000000 --- a/_downloads/04900f2151386c190efa2e7ad3a5970e/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/04900f2151386c190efa2e7ad3a5970e/annotation_basic.py \ No newline at end of file diff --git a/_downloads/04907c28d4180c02e547778b9aaee05d/colors.ipynb b/_downloads/04907c28d4180c02e547778b9aaee05d/colors.ipynb deleted file mode 100644 index 26fa6695872..00000000000 --- a/_downloads/04907c28d4180c02e547778b9aaee05d/colors.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*****************\nSpecifying Colors\n*****************\n\nMatplotlib recognizes the following formats to specify a color:\n\n* an RGB or RGBA (red, green, blue, alpha) tuple of float values in ``[0, 1]``\n (e.g., ``(0.1, 0.2, 0.5)`` or ``(0.1, 0.2, 0.5, 0.3)``);\n* a hex RGB or RGBA string (e.g., ``'#0f0f0f'`` or ``'#0f0f0f80'``;\n case-insensitive);\n* a string representation of a float value in ``[0, 1]`` inclusive for gray\n level (e.g., ``'0.5'``);\n* one of ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``;\n* a X11/CSS4 color name (case-insensitive);\n* a name from the `xkcd color survey`_, prefixed with ``'xkcd:'`` (e.g.,\n ``'xkcd:sky blue'``; case insensitive);\n* one of the Tableau Colors from the 'T10' categorical palette (the default\n color cycle): ``{'tab:blue', 'tab:orange', 'tab:green', 'tab:red',\n 'tab:purple', 'tab:brown', 'tab:pink', 'tab:gray', 'tab:olive', 'tab:cyan'}``\n (case-insensitive);\n* a \"CN\" color spec, i.e. `'C'` followed by a number, which is an index into\n the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the\n indexing is intended to occur at rendering time, and defaults to black if the\n cycle does not include color.\n\n\n\"Red\", \"Green\", and \"Blue\" are the intensities of those colors, the combination\nof which span the colorspace.\n\nHow \"Alpha\" behaves depends on the ``zorder`` of the Artist. Higher\n``zorder`` Artists are drawn on top of lower Artists, and \"Alpha\" determines\nwhether the lower artist is covered by the higher.\nIf the old RGB of a pixel is ``RGBold`` and the RGB of the\npixel of the Artist being added is ``RGBnew`` with Alpha ``alpha``,\nthen the RGB of the pixel is updated to:\n``RGB = RGBOld * (1 - Alpha) + RGBnew * Alpha``. Alpha\nof 1 means the old color is completely covered by the new Artist, Alpha of 0\nmeans that pixel of the Artist is transparent.\n\nFor more information on colors in matplotlib see\n\n* the :doc:`/gallery/color/color_demo` example;\n* the `matplotlib.colors` API;\n* the :doc:`/gallery/color/named_colors` example.\n\n\"CN\" color selection\n--------------------\n\n\"CN\" colors are converted to RGBA as soon as the artist is created. For\nexample,\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib as mpl\n\nth = np.linspace(0, 2*np.pi, 128)\n\n\ndef demo(sty):\n mpl.style.use(sty)\n fig, ax = plt.subplots(figsize=(3, 3))\n\n ax.set_title('style: {!r}'.format(sty), color='C0')\n\n ax.plot(th, np.cos(th), 'C1', label='C1')\n ax.plot(th, np.sin(th), 'C2', label='C2')\n ax.legend()\n\ndemo('default')\ndemo('seaborn')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "will use the first color for the title and then plot using the second\nand third colors of each style's ``mpl.rcParams['axes.prop_cycle']``.\n\n\n\nxkcd v X11/CSS4\n---------------\n\nThe xkcd colors are derived from a user survey conducted by the\nwebcomic xkcd. `Details of the survey are available on the xkcd blog\n`__.\n\nOut of 148 colors in the CSS color list, there are 95 name collisions\nbetween the X11/CSS4 names and the xkcd names, all but 3 of which have\ndifferent hex values. For example ``'blue'`` maps to ``'#0000FF'``\nwhere as ``'xkcd:blue'`` maps to ``'#0343DF'``. Due to these name\ncollisions all of the xkcd colors have ``'xkcd:'`` prefixed. As noted in\nthe blog post, while it might be interesting to re-define the X11/CSS4 names\nbased on such a survey, we do not do so unilaterally.\n\nThe name collisions are shown in the table below; the color names\nwhere the hex values agree are shown in bold.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib._color_data as mcd\nimport matplotlib.patches as mpatch\n\noverlap = {name for name in mcd.CSS4_COLORS\n if \"xkcd:\" + name in mcd.XKCD_COLORS}\n\nfig = plt.figure(figsize=[4.8, 16])\nax = fig.add_axes([0, 0, 1, 1])\n\nfor j, n in enumerate(sorted(overlap, reverse=True)):\n weight = None\n cn = mcd.CSS4_COLORS[n]\n xkcd = mcd.XKCD_COLORS[\"xkcd:\" + n].upper()\n if cn == xkcd:\n weight = 'bold'\n\n r1 = mpatch.Rectangle((0, j), 1, 1, color=cn)\n r2 = mpatch.Rectangle((1, j), 1, 1, color=xkcd)\n txt = ax.text(2, j+.5, ' ' + n, va='center', fontsize=10,\n weight=weight)\n ax.add_patch(r1)\n ax.add_patch(r2)\n ax.axhline(j, color='k')\n\nax.text(.5, j + 1.5, 'X11', ha='center', va='center')\nax.text(1.5, j + 1.5, 'xkcd', ha='center', va='center')\nax.set_xlim(0, 3)\nax.set_ylim(0, j + 2)\nax.axis('off')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/04946bfe6152eda49097ce40a33b7cc3/simple_colorbar.ipynb b/_downloads/04946bfe6152eda49097ce40a33b7cc3/simple_colorbar.ipynb deleted file mode 120000 index d7a5b16094b..00000000000 --- a/_downloads/04946bfe6152eda49097ce40a33b7cc3/simple_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/04946bfe6152eda49097ce40a33b7cc3/simple_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/0495defbecbded1fa9ed9cc54763592b/tick_labels_from_values.ipynb b/_downloads/0495defbecbded1fa9ed9cc54763592b/tick_labels_from_values.ipynb deleted file mode 120000 index aeb1d2ab2ea..00000000000 --- a/_downloads/0495defbecbded1fa9ed9cc54763592b/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0495defbecbded1fa9ed9cc54763592b/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/049e25dda7e2839f38c9e37a832c646c/shading_example.py b/_downloads/049e25dda7e2839f38c9e37a832c646c/shading_example.py deleted file mode 120000 index 1239bed1521..00000000000 --- a/_downloads/049e25dda7e2839f38c9e37a832c646c/shading_example.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/049e25dda7e2839f38c9e37a832c646c/shading_example.py \ No newline at end of file diff --git a/_downloads/049f4d67fb67bc8e80a5ce70ed34eade/double_pendulum_sgskip.py b/_downloads/049f4d67fb67bc8e80a5ce70ed34eade/double_pendulum_sgskip.py deleted file mode 120000 index e6adfb3b600..00000000000 --- a/_downloads/049f4d67fb67bc8e80a5ce70ed34eade/double_pendulum_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/049f4d67fb67bc8e80a5ce70ed34eade/double_pendulum_sgskip.py \ No newline at end of file diff --git a/_downloads/04ad96f3c0189387a26875638c28d1ee/scales.py b/_downloads/04ad96f3c0189387a26875638c28d1ee/scales.py deleted file mode 100644 index 89352c4351a..00000000000 --- a/_downloads/04ad96f3c0189387a26875638c28d1ee/scales.py +++ /dev/null @@ -1,122 +0,0 @@ -""" -====== -Scales -====== - -Illustrate the scale transformations applied to axes, e.g. log, symlog, logit. - -The last two examples are examples of using the ``'function'`` scale by -supplying forward and inverse functions for the scale transformation. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.ticker import NullFormatter, FixedLocator - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# make up some data in the interval ]0, 1[ -y = np.random.normal(loc=0.5, scale=0.4, size=1000) -y = y[(y > 0) & (y < 1)] -y.sort() -x = np.arange(len(y)) - -# plot with various axes scales -fig, axs = plt.subplots(3, 2, figsize=(6, 8), - constrained_layout=True) - -# linear -ax = axs[0, 0] -ax.plot(x, y) -ax.set_yscale('linear') -ax.set_title('linear') -ax.grid(True) - - -# log -ax = axs[0, 1] -ax.plot(x, y) -ax.set_yscale('log') -ax.set_title('log') -ax.grid(True) - - -# symmetric log -ax = axs[1, 1] -ax.plot(x, y - y.mean()) -ax.set_yscale('symlog', linthreshy=0.02) -ax.set_title('symlog') -ax.grid(True) - -# logit -ax = axs[1, 0] -ax.plot(x, y) -ax.set_yscale('logit') -ax.set_title('logit') -ax.grid(True) -ax.yaxis.set_minor_formatter(NullFormatter()) - - -# Function x**(1/2) -def forward(x): - return x**(1/2) - - -def inverse(x): - return x**2 - - -ax = axs[2, 0] -ax.plot(x, y) -ax.set_yscale('function', functions=(forward, inverse)) -ax.set_title('function: $x^{1/2}$') -ax.grid(True) -ax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2)**2)) -ax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2))) - - -# Function Mercator transform -def forward(a): - a = np.deg2rad(a) - return np.rad2deg(np.log(np.abs(np.tan(a) + 1.0 / np.cos(a)))) - - -def inverse(a): - a = np.deg2rad(a) - return np.rad2deg(np.arctan(np.sinh(a))) - -ax = axs[2, 1] - -t = np.arange(-170.0, 170.0, 0.1) -s = t / 2. - -ax.plot(t, s, '-', lw=2) - -ax.set_yscale('function', functions=(forward, inverse)) -ax.set_title('function: Mercator') -ax.grid(True) -ax.set_xlim([-180, 180]) -ax.yaxis.set_minor_formatter(NullFormatter()) -ax.yaxis.set_major_locator(FixedLocator(np.arange(-90, 90, 30))) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.set_yscale -matplotlib.axes.Axes.set_xscale -matplotlib.axis.Axis.set_major_locator -matplotlib.scale.LogitScale -matplotlib.scale.LogScale -matplotlib.scale.LinearScale -matplotlib.scale.SymmetricalLogScale -matplotlib.scale.FuncScale diff --git a/_downloads/04b1704d7242308d9f17317f0730b7c8/sankey_rankine.py b/_downloads/04b1704d7242308d9f17317f0730b7c8/sankey_rankine.py deleted file mode 120000 index 78183a1de5e..00000000000 --- a/_downloads/04b1704d7242308d9f17317f0730b7c8/sankey_rankine.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/04b1704d7242308d9f17317f0730b7c8/sankey_rankine.py \ No newline at end of file diff --git a/_downloads/04b82d941b457fd920529ed26460f23f/fivethirtyeight.py b/_downloads/04b82d941b457fd920529ed26460f23f/fivethirtyeight.py deleted file mode 120000 index 0a11a2b0b65..00000000000 --- a/_downloads/04b82d941b457fd920529ed26460f23f/fivethirtyeight.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/04b82d941b457fd920529ed26460f23f/fivethirtyeight.py \ No newline at end of file diff --git a/_downloads/04c509f9dbb5c50c3f976c5c1c8fd4db/gridspec_multicolumn.py b/_downloads/04c509f9dbb5c50c3f976c5c1c8fd4db/gridspec_multicolumn.py deleted file mode 120000 index 1c2d518fb63..00000000000 --- a/_downloads/04c509f9dbb5c50c3f976c5c1c8fd4db/gridspec_multicolumn.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/04c509f9dbb5c50c3f976c5c1c8fd4db/gridspec_multicolumn.py \ No newline at end of file diff --git a/_downloads/04c52aef8558f6165a1eb6f41fa7b512/axes_props.py b/_downloads/04c52aef8558f6165a1eb6f41fa7b512/axes_props.py deleted file mode 120000 index 9e7851aaffb..00000000000 --- a/_downloads/04c52aef8558f6165a1eb6f41fa7b512/axes_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/04c52aef8558f6165a1eb6f41fa7b512/axes_props.py \ No newline at end of file diff --git a/_downloads/04cbcfc8f66001a5f51a26404017348a/scatter_hist_locatable_axes.py b/_downloads/04cbcfc8f66001a5f51a26404017348a/scatter_hist_locatable_axes.py deleted file mode 100644 index 5786a382e31..00000000000 --- a/_downloads/04cbcfc8f66001a5f51a26404017348a/scatter_hist_locatable_axes.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============ -Scatter Hist -============ - -""" -import numpy as np -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import make_axes_locatable - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# the random data -x = np.random.randn(1000) -y = np.random.randn(1000) - - -fig, axScatter = plt.subplots(figsize=(5.5, 5.5)) - -# the scatter plot: -axScatter.scatter(x, y) -axScatter.set_aspect(1.) - -# create new axes on the right and on the top of the current axes -# The first argument of the new_vertical(new_horizontal) method is -# the height (width) of the axes to be created in inches. -divider = make_axes_locatable(axScatter) -axHistx = divider.append_axes("top", 1.2, pad=0.1, sharex=axScatter) -axHisty = divider.append_axes("right", 1.2, pad=0.1, sharey=axScatter) - -# make some labels invisible -axHistx.xaxis.set_tick_params(labelbottom=False) -axHisty.yaxis.set_tick_params(labelleft=False) - -# now determine nice limits by hand: -binwidth = 0.25 -xymax = max(np.max(np.abs(x)), np.max(np.abs(y))) -lim = (int(xymax/binwidth) + 1)*binwidth - -bins = np.arange(-lim, lim + binwidth, binwidth) -axHistx.hist(x, bins=bins) -axHisty.hist(y, bins=bins, orientation='horizontal') - -# the xaxis of axHistx and yaxis of axHisty are shared with axScatter, -# thus there is no need to manually adjust the xlim and ylim of these -# axis. - -axHistx.set_yticks([0, 50, 100]) - -axHisty.set_xticks([0, 50, 100]) - -plt.show() diff --git a/_downloads/04d0188f6919f2b5d82f6b504c17042a/tutorials_python.zip b/_downloads/04d0188f6919f2b5d82f6b504c17042a/tutorials_python.zip deleted file mode 120000 index c866a673cd6..00000000000 --- a/_downloads/04d0188f6919f2b5d82f6b504c17042a/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.1/_downloads/04d0188f6919f2b5d82f6b504c17042a/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/04df4aae8c695f770bf26e850800cb71/embedding_in_wx2_sgskip.py b/_downloads/04df4aae8c695f770bf26e850800cb71/embedding_in_wx2_sgskip.py deleted file mode 120000 index 09ce1aaba70..00000000000 --- a/_downloads/04df4aae8c695f770bf26e850800cb71/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/04df4aae8c695f770bf26e850800cb71/embedding_in_wx2_sgskip.py \ No newline at end of file diff --git a/_downloads/04effa4bed810e6d09385769a55e141d/specgram_demo.ipynb b/_downloads/04effa4bed810e6d09385769a55e141d/specgram_demo.ipynb deleted file mode 120000 index 0cc3bd58c3c..00000000000 --- a/_downloads/04effa4bed810e6d09385769a55e141d/specgram_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/04effa4bed810e6d09385769a55e141d/specgram_demo.ipynb \ No newline at end of file diff --git a/_downloads/04f39a3d85a1b2537b2f1fa65e101df4/histogram_multihist.py b/_downloads/04f39a3d85a1b2537b2f1fa65e101df4/histogram_multihist.py deleted file mode 120000 index 5d3b208a9a5..00000000000 --- a/_downloads/04f39a3d85a1b2537b2f1fa65e101df4/histogram_multihist.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/04f39a3d85a1b2537b2f1fa65e101df4/histogram_multihist.py \ No newline at end of file diff --git a/_downloads/04fdf0f44e899fe9846ee81ed9eac9c7/scatter_hist.ipynb b/_downloads/04fdf0f44e899fe9846ee81ed9eac9c7/scatter_hist.ipynb deleted file mode 120000 index 3e02ef562dd..00000000000 --- a/_downloads/04fdf0f44e899fe9846ee81ed9eac9c7/scatter_hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/04fdf0f44e899fe9846ee81ed9eac9c7/scatter_hist.ipynb \ No newline at end of file diff --git a/_downloads/04ff3af1a8bb055931168919644e826e/ellipse_demo.ipynb b/_downloads/04ff3af1a8bb055931168919644e826e/ellipse_demo.ipynb deleted file mode 100644 index def88e196ae..00000000000 --- a/_downloads/04ff3af1a8bb055931168919644e826e/ellipse_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ellipse Demo\n\n\nDraw many ellipses. Here individual ellipses are drawn. Compare this\nto the :doc:`Ellipse collection example\n`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.patches import Ellipse\n\nNUM = 250\n\nells = [Ellipse(xy=np.random.rand(2) * 10,\n width=np.random.rand(), height=np.random.rand(),\n angle=np.random.rand() * 360)\n for i in range(NUM)]\n\nfig, ax = plt.subplots(subplot_kw={'aspect': 'equal'})\nfor e in ells:\n ax.add_artist(e)\n e.set_clip_box(ax.bbox)\n e.set_alpha(np.random.rand())\n e.set_facecolor(np.random.rand(3))\n\nax.set_xlim(0, 10)\nax.set_ylim(0, 10)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Ellipse Rotated\n\n\nDraw many ellipses with different angles.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.patches import Ellipse\n\ndelta = 45.0 # degrees\n\nangles = np.arange(0, 360 + delta, delta)\nells = [Ellipse((1, 1), 4, 2, a) for a in angles]\n\na = plt.subplot(111, aspect='equal')\n\nfor e in ells:\n e.set_clip_box(a.bbox)\n e.set_alpha(0.1)\n a.add_artist(e)\n\nplt.xlim(-2, 4)\nplt.ylim(-1, 3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.Ellipse\nmatplotlib.axes.Axes.add_artist\nmatplotlib.artist.Artist.set_clip_box\nmatplotlib.artist.Artist.set_alpha\nmatplotlib.patches.Patch.set_facecolor" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/05086ebdea7695d4833157c462dd78c6/anscombe.ipynb b/_downloads/05086ebdea7695d4833157c462dd78c6/anscombe.ipynb deleted file mode 120000 index 054d0c3293f..00000000000 --- a/_downloads/05086ebdea7695d4833157c462dd78c6/anscombe.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/05086ebdea7695d4833157c462dd78c6/anscombe.ipynb \ No newline at end of file diff --git a/_downloads/050d1dcf8543723722cca58a8ee6d2f6/demo_colorbar_with_axes_divider.py b/_downloads/050d1dcf8543723722cca58a8ee6d2f6/demo_colorbar_with_axes_divider.py deleted file mode 120000 index 5c65c186bc2..00000000000 --- a/_downloads/050d1dcf8543723722cca58a8ee6d2f6/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/050d1dcf8543723722cca58a8ee6d2f6/demo_colorbar_with_axes_divider.py \ No newline at end of file diff --git a/_downloads/050e58534319295796c2000553c62d32/mpl_with_glade3_sgskip.ipynb b/_downloads/050e58534319295796c2000553c62d32/mpl_with_glade3_sgskip.ipynb deleted file mode 120000 index dd09cecccbf..00000000000 --- a/_downloads/050e58534319295796c2000553c62d32/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/050e58534319295796c2000553c62d32/mpl_with_glade3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/050e9caf4e59e583d1f1f3045f37dbdc/custom_ticker1.py b/_downloads/050e9caf4e59e583d1f1f3045f37dbdc/custom_ticker1.py deleted file mode 100644 index ec943e3032f..00000000000 --- a/_downloads/050e9caf4e59e583d1f1f3045f37dbdc/custom_ticker1.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -============== -Custom Ticker1 -============== - -The new ticker code was designed to explicitly support user customized -ticking. The documentation of :mod:`matplotlib.ticker` details this -process. That code defines a lot of preset tickers but was primarily -designed to be user extensible. - -In this example a user defined function is used to format the ticks in -millions of dollars on the y axis. -""" -from matplotlib.ticker import FuncFormatter -import matplotlib.pyplot as plt -import numpy as np - -x = np.arange(4) -money = [1.5e5, 2.5e6, 5.5e6, 2.0e7] - - -def millions(x, pos): - 'The two args are the value and tick position' - return '$%1.1fM' % (x * 1e-6) - - -formatter = FuncFormatter(millions) - -fig, ax = plt.subplots() -ax.yaxis.set_major_formatter(formatter) -plt.bar(x, money) -plt.xticks(x, ('Bill', 'Fred', 'Mary', 'Sue')) -plt.show() diff --git a/_downloads/05113a000ddfa7973851d6ab42f42af2/image_slices_viewer.py b/_downloads/05113a000ddfa7973851d6ab42f42af2/image_slices_viewer.py deleted file mode 120000 index 404c6a021d2..00000000000 --- a/_downloads/05113a000ddfa7973851d6ab42f42af2/image_slices_viewer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/05113a000ddfa7973851d6ab42f42af2/image_slices_viewer.py \ No newline at end of file diff --git a/_downloads/051b3eaa40b0559c106645ff213ae918/image_clip_path.ipynb b/_downloads/051b3eaa40b0559c106645ff213ae918/image_clip_path.ipynb deleted file mode 120000 index acb81a78266..00000000000 --- a/_downloads/051b3eaa40b0559c106645ff213ae918/image_clip_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/051b3eaa40b0559c106645ff213ae918/image_clip_path.ipynb \ No newline at end of file diff --git a/_downloads/051d8927eb3b7229c0d002de3f350d46/animation_demo.ipynb b/_downloads/051d8927eb3b7229c0d002de3f350d46/animation_demo.ipynb deleted file mode 100644 index 808b7b58077..00000000000 --- a/_downloads/051d8927eb3b7229c0d002de3f350d46/animation_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# pyplot animation\n\n\nGenerating an animation by calling `~.pyplot.pause` between plotting commands.\n\nThe method shown here is only suitable for simple, low-performance use. For\nmore demanding applications, look at the :mod:`animation` module and the\nexamples that use it.\n\nNote that calling `time.sleep` instead of `~.pyplot.pause` would *not* work.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nnp.random.seed(19680801)\ndata = np.random.random((50, 50, 50))\n\nfig, ax = plt.subplots()\n\nfor i in range(len(data)):\n ax.cla()\n ax.imshow(data[i])\n ax.set_title(\"frame {}\".format(i))\n # Note that using time.sleep does *not* work here!\n plt.pause(0.1)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0529319bbe89e72f57edab298af07291/collections.ipynb b/_downloads/0529319bbe89e72f57edab298af07291/collections.ipynb deleted file mode 120000 index 44b96877378..00000000000 --- a/_downloads/0529319bbe89e72f57edab298af07291/collections.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0529319bbe89e72f57edab298af07291/collections.ipynb \ No newline at end of file diff --git a/_downloads/052a49ec5fda3c57dafee3881280e53b/ftface_props.ipynb b/_downloads/052a49ec5fda3c57dafee3881280e53b/ftface_props.ipynb deleted file mode 100644 index 1795fd1ff31..00000000000 --- a/_downloads/052a49ec5fda3c57dafee3881280e53b/ftface_props.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Font properties\n\n\nThis example lists the attributes of an `FT2Font` object, which describe global\nfont properties. For individual character metrics, use the `Glyph` object, as\nreturned by `load_char`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\n\nimport matplotlib\nimport matplotlib.ft2font as ft\n\n\nfont = ft.FT2Font(\n # Use a font shipped with Matplotlib.\n os.path.join(matplotlib.get_data_path(),\n 'fonts/ttf/DejaVuSans-Oblique.ttf'))\n\nprint('Num faces :', font.num_faces) # number of faces in file\nprint('Num glyphs :', font.num_glyphs) # number of glyphs in the face\nprint('Family name :', font.family_name) # face family name\nprint('Style name :', font.style_name) # face style name\nprint('PS name :', font.postscript_name) # the postscript name\nprint('Num fixed :', font.num_fixed_sizes) # number of embedded bitmap in face\n\n# the following are only available if face.scalable\nif font.scalable:\n # the face global bounding box (xmin, ymin, xmax, ymax)\n print('Bbox :', font.bbox)\n # number of font units covered by the EM\n print('EM :', font.units_per_EM)\n # the ascender in 26.6 units\n print('Ascender :', font.ascender)\n # the descender in 26.6 units\n print('Descender :', font.descender)\n # the height in 26.6 units\n print('Height :', font.height)\n # maximum horizontal cursor advance\n print('Max adv width :', font.max_advance_width)\n # same for vertical layout\n print('Max adv height :', font.max_advance_height)\n # vertical position of the underline bar\n print('Underline pos :', font.underline_position)\n # vertical thickness of the underline\n print('Underline thickness :', font.underline_thickness)\n\nfor style in ('Italic',\n 'Bold',\n 'Scalable',\n 'Fixed sizes',\n 'Fixed width',\n 'SFNT',\n 'Horizontal',\n 'Vertical',\n 'Kerning',\n 'Fast glyphs',\n 'Multiple masters',\n 'Glyph names',\n 'External stream'):\n bitpos = getattr(ft, style.replace(' ', '_').upper()) - 1\n print('%-17s:' % style, bool(font.style_flags & (1 << bitpos)))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/052d503eb76f61d2900dcd99977cc227/simple_axesgrid2.py b/_downloads/052d503eb76f61d2900dcd99977cc227/simple_axesgrid2.py deleted file mode 100644 index e07ff9c6a11..00000000000 --- a/_downloads/052d503eb76f61d2900dcd99977cc227/simple_axesgrid2.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -================== -Simple ImageGrid 2 -================== - -Align multiple images of different sizes using -`~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`. -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -fig = plt.figure(figsize=(5.5, 3.5)) -grid = ImageGrid(fig, 111, # similar to subplot(111) - nrows_ncols=(1, 3), - axes_pad=0.1, - add_all=True, - label_mode="L", - ) - -Z, extent = get_demo_image() # demo image - -im1 = Z -im2 = Z[:, :10] -im3 = Z[:, 10:] -vmin, vmax = Z.min(), Z.max() -for ax, im in zip(grid, [im1, im2, im3]): - ax.imshow(im, origin="lower", vmin=vmin, vmax=vmax, - interpolation="nearest") - -plt.show() diff --git a/_downloads/052d51ade621325deb2eeffb4076e33f/pyplot_two_subplots.ipynb b/_downloads/052d51ade621325deb2eeffb4076e33f/pyplot_two_subplots.ipynb deleted file mode 120000 index b37d5052274..00000000000 --- a/_downloads/052d51ade621325deb2eeffb4076e33f/pyplot_two_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/052d51ade621325deb2eeffb4076e33f/pyplot_two_subplots.ipynb \ No newline at end of file diff --git a/_downloads/0537c3b269eb1f758f485c92b07e1203/errorbar.py b/_downloads/0537c3b269eb1f758f485c92b07e1203/errorbar.py deleted file mode 100644 index 8c2de1dfc5a..00000000000 --- a/_downloads/0537c3b269eb1f758f485c92b07e1203/errorbar.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -================= -Errorbar function -================= - -This exhibits the most basic use of the error bar method. -In this case, constant values are provided for the error -in both the x- and y-directions. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.arange(0.1, 4, 0.5) -y = np.exp(-x) - -fig, ax = plt.subplots() -ax.errorbar(x, y, xerr=0.2, yerr=0.4) -plt.show() diff --git a/_downloads/054cfeaa4e31c024e65b228c332a94a1/compound_path.py b/_downloads/054cfeaa4e31c024e65b228c332a94a1/compound_path.py deleted file mode 120000 index 1267d88c8c3..00000000000 --- a/_downloads/054cfeaa4e31c024e65b228c332a94a1/compound_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/054cfeaa4e31c024e65b228c332a94a1/compound_path.py \ No newline at end of file diff --git a/_downloads/05551433a67337134e29a429c24d6769/demo_text_path.ipynb b/_downloads/05551433a67337134e29a429c24d6769/demo_text_path.ipynb deleted file mode 120000 index 100ba6c5172..00000000000 --- a/_downloads/05551433a67337134e29a429c24d6769/demo_text_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/05551433a67337134e29a429c24d6769/demo_text_path.ipynb \ No newline at end of file diff --git a/_downloads/05581a5bdb5a1b48e53a4a59ed9212be/pylab_with_gtk3_sgskip.py b/_downloads/05581a5bdb5a1b48e53a4a59ed9212be/pylab_with_gtk3_sgskip.py deleted file mode 120000 index 852d110646b..00000000000 --- a/_downloads/05581a5bdb5a1b48e53a4a59ed9212be/pylab_with_gtk3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/05581a5bdb5a1b48e53a4a59ed9212be/pylab_with_gtk3_sgskip.py \ No newline at end of file diff --git a/_downloads/056fac7eaa3f3b3628358e3cc244d11e/broken_barh.py b/_downloads/056fac7eaa3f3b3628358e3cc244d11e/broken_barh.py deleted file mode 120000 index fb5f7615a54..00000000000 --- a/_downloads/056fac7eaa3f3b3628358e3cc244d11e/broken_barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/056fac7eaa3f3b3628358e3cc244d11e/broken_barh.py \ No newline at end of file diff --git a/_downloads/057427f298130572825835e620ff879d/pythonic_matplotlib.ipynb b/_downloads/057427f298130572825835e620ff879d/pythonic_matplotlib.ipynb deleted file mode 120000 index 7932dbf3c3d..00000000000 --- a/_downloads/057427f298130572825835e620ff879d/pythonic_matplotlib.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/057427f298130572825835e620ff879d/pythonic_matplotlib.ipynb \ No newline at end of file diff --git a/_downloads/057d77d7a6548ba3c8040198ac663560/filled_step.ipynb b/_downloads/057d77d7a6548ba3c8040198ac663560/filled_step.ipynb deleted file mode 120000 index c0ab69807c2..00000000000 --- a/_downloads/057d77d7a6548ba3c8040198ac663560/filled_step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/057d77d7a6548ba3c8040198ac663560/filled_step.ipynb \ No newline at end of file diff --git a/_downloads/058befc58d5e0fcac7c96543c3b83e89/fourier_demo_wx_sgskip.ipynb b/_downloads/058befc58d5e0fcac7c96543c3b83e89/fourier_demo_wx_sgskip.ipynb deleted file mode 120000 index ee22e512052..00000000000 --- a/_downloads/058befc58d5e0fcac7c96543c3b83e89/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/058befc58d5e0fcac7c96543c3b83e89/fourier_demo_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/058f21e0cf596a5b860b0a28de185c12/radio_buttons.ipynb b/_downloads/058f21e0cf596a5b860b0a28de185c12/radio_buttons.ipynb deleted file mode 120000 index 08091b1387d..00000000000 --- a/_downloads/058f21e0cf596a5b860b0a28de185c12/radio_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/058f21e0cf596a5b860b0a28de185c12/radio_buttons.ipynb \ No newline at end of file diff --git a/_downloads/059067d4247dad92d898873389274388/multiple_figs_demo.py b/_downloads/059067d4247dad92d898873389274388/multiple_figs_demo.py deleted file mode 120000 index 1976e1f1554..00000000000 --- a/_downloads/059067d4247dad92d898873389274388/multiple_figs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/059067d4247dad92d898873389274388/multiple_figs_demo.py \ No newline at end of file diff --git a/_downloads/059d331f444809cb0bf18cc2efc9aaf4/cohere.ipynb b/_downloads/059d331f444809cb0bf18cc2efc9aaf4/cohere.ipynb deleted file mode 120000 index c0afab2a3ae..00000000000 --- a/_downloads/059d331f444809cb0bf18cc2efc9aaf4/cohere.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/059d331f444809cb0bf18cc2efc9aaf4/cohere.ipynb \ No newline at end of file diff --git a/_downloads/05a7dd8114dcffa3550e02fa643bb294/scatter_hist_locatable_axes.ipynb b/_downloads/05a7dd8114dcffa3550e02fa643bb294/scatter_hist_locatable_axes.ipynb deleted file mode 120000 index ea282937858..00000000000 --- a/_downloads/05a7dd8114dcffa3550e02fa643bb294/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/05a7dd8114dcffa3550e02fa643bb294/scatter_hist_locatable_axes.ipynb \ No newline at end of file diff --git a/_downloads/05a9ef5b5b7dd183cfa15c88c42d80de/custom_ticker1.ipynb b/_downloads/05a9ef5b5b7dd183cfa15c88c42d80de/custom_ticker1.ipynb deleted file mode 120000 index e5ad72f249b..00000000000 --- a/_downloads/05a9ef5b5b7dd183cfa15c88c42d80de/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/05a9ef5b5b7dd183cfa15c88c42d80de/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/05afdda8b46af14b8d021e4a8d4613ab/bachelors_degrees_by_gender.ipynb b/_downloads/05afdda8b46af14b8d021e4a8d4613ab/bachelors_degrees_by_gender.ipynb deleted file mode 100644 index 1abb5b620da..00000000000 --- a/_downloads/05afdda8b46af14b8d021e4a8d4613ab/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n============================\nBachelor's degrees by gender\n============================\n\nA graph of multiple time series which demonstrates extensive custom\nstyling of plot frame, tick lines and labels, and line graph properties.\n\nAlso demonstrates the custom placement of text labels along the right edge\nas an alternative to a conventional legend.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.cbook import get_sample_data\n\n\nfname = get_sample_data('percent_bachelors_degrees_women_usa.csv',\n asfileobj=False)\ngender_degree_data = np.genfromtxt(fname, delimiter=',', names=True)\n\n# You typically want your plot to be ~1.33x wider than tall. This plot\n# is a rare exception because of the number of lines being plotted on it.\n# Common sizes: (10, 7.5) and (12, 9)\nfig, ax = plt.subplots(1, 1, figsize=(12, 14))\n\n# These are the colors that will be used in the plot\nax.set_prop_cycle(color=[\n '#1f77b4', '#aec7e8', '#ff7f0e', '#ffbb78', '#2ca02c', '#98df8a',\n '#d62728', '#ff9896', '#9467bd', '#c5b0d5', '#8c564b', '#c49c94',\n '#e377c2', '#f7b6d2', '#7f7f7f', '#c7c7c7', '#bcbd22', '#dbdb8d',\n '#17becf', '#9edae5'])\n\n# Remove the plot frame lines. They are unnecessary here.\nax.spines['top'].set_visible(False)\nax.spines['bottom'].set_visible(False)\nax.spines['right'].set_visible(False)\nax.spines['left'].set_visible(False)\n\n# Ensure that the axis ticks only show up on the bottom and left of the plot.\n# Ticks on the right and top of the plot are generally unnecessary.\nax.get_xaxis().tick_bottom()\nax.get_yaxis().tick_left()\n\nfig.subplots_adjust(left=.06, right=.75, bottom=.02, top=.94)\n# Limit the range of the plot to only where the data is.\n# Avoid unnecessary whitespace.\nax.set_xlim(1969.5, 2011.1)\nax.set_ylim(-0.25, 90)\n\n# Set a fixed location and format for ticks.\nax.set_xticks(range(1970, 2011, 10))\nax.set_yticks(range(0, 91, 10))\nax.xaxis.set_major_formatter(plt.FuncFormatter('{:.0f}'.format))\nax.yaxis.set_major_formatter(plt.FuncFormatter('{:.0f}%'.format))\n\n# Provide tick lines across the plot to help your viewers trace along\n# the axis ticks. Make sure that the lines are light and small so they\n# don't obscure the primary data lines.\nax.grid(True, 'major', 'y', ls='--', lw=.5, c='k', alpha=.3)\n\n# Remove the tick marks; they are unnecessary with the tick lines we just\n# plotted. Make sure your axis ticks are large enough to be easily read.\n# You don't want your viewers squinting to read your plot.\nax.tick_params(axis='both', which='both', labelsize=14,\n bottom=False, top=False, labelbottom=True,\n left=False, right=False, labelleft=True)\n\n# Now that the plot is prepared, it's time to actually plot the data!\n# Note that I plotted the majors in order of the highest % in the final year.\nmajors = ['Health Professions', 'Public Administration', 'Education',\n 'Psychology', 'Foreign Languages', 'English',\n 'Communications\\nand Journalism', 'Art and Performance', 'Biology',\n 'Agriculture', 'Social Sciences and History', 'Business',\n 'Math and Statistics', 'Architecture', 'Physical Sciences',\n 'Computer Science', 'Engineering']\n\ny_offsets = {'Foreign Languages': 0.5, 'English': -0.5,\n 'Communications\\nand Journalism': 0.75,\n 'Art and Performance': -0.25, 'Agriculture': 1.25,\n 'Social Sciences and History': 0.25, 'Business': -0.75,\n 'Math and Statistics': 0.75, 'Architecture': -0.75,\n 'Computer Science': 0.75, 'Engineering': -0.25}\n\nfor column in majors:\n # Plot each line separately with its own color.\n column_rec_name = column.replace('\\n', '_').replace(' ', '_')\n\n line, = ax.plot('Year', column_rec_name, data=gender_degree_data,\n lw=2.5)\n\n # Add a text label to the right end of every line. Most of the code below\n # is adding specific offsets y position because some labels overlapped.\n y_pos = gender_degree_data[column_rec_name][-1] - 0.5\n\n if column in y_offsets:\n y_pos += y_offsets[column]\n\n # Again, make sure that all labels are large enough to be easily read\n # by the viewer.\n ax.text(2011.5, y_pos, column, fontsize=14, color=line.get_color())\n\n# Make the title big enough so it spans the entire plot, but don't make it\n# so big that it requires two lines to show.\n\n# Note that if the title is descriptive enough, it is unnecessary to include\n# axis labels; they are self-evident, in this plot's case.\nfig.suptitle('Percentage of Bachelor\\'s degrees conferred to women in '\n 'the U.S.A. by major (1970-2011)\\n', fontsize=18, ha='center')\n\n# Finally, save the figure as a PNG.\n# You can also save it as a PDF, JPEG, etc.\n# Just change the file extension in this call.\n# fig.savefig('percent-bachelors-degrees-women-usa.png', bbox_inches='tight')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/05b2e687a1ed7b0e2d7e9d349657fb81/demo_fixed_size_axes.ipynb b/_downloads/05b2e687a1ed7b0e2d7e9d349657fb81/demo_fixed_size_axes.ipynb deleted file mode 120000 index f8f01163b57..00000000000 --- a/_downloads/05b2e687a1ed7b0e2d7e9d349657fb81/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/05b2e687a1ed7b0e2d7e9d349657fb81/demo_fixed_size_axes.ipynb \ No newline at end of file diff --git a/_downloads/05b5828bd1a866c387ec6e60c22612f4/date_precision_and_epochs.ipynb b/_downloads/05b5828bd1a866c387ec6e60c22612f4/date_precision_and_epochs.ipynb deleted file mode 120000 index e3a9362902f..00000000000 --- a/_downloads/05b5828bd1a866c387ec6e60c22612f4/date_precision_and_epochs.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/05b5828bd1a866c387ec6e60c22612f4/date_precision_and_epochs.ipynb \ No newline at end of file diff --git a/_downloads/05bb4e52f19c71dbe31c11e284d7dc3f/trifinder_event_demo.py b/_downloads/05bb4e52f19c71dbe31c11e284d7dc3f/trifinder_event_demo.py deleted file mode 100644 index 3cc96f1aac3..00000000000 --- a/_downloads/05bb4e52f19c71dbe31c11e284d7dc3f/trifinder_event_demo.py +++ /dev/null @@ -1,61 +0,0 @@ -""" -==================== -Trifinder Event Demo -==================== - -Example showing the use of a TriFinder object. As the mouse is moved over the -triangulation, the triangle under the cursor is highlighted and the index of -the triangle is displayed in the plot title. -""" -import matplotlib.pyplot as plt -from matplotlib.tri import Triangulation -from matplotlib.patches import Polygon -import numpy as np - - -def update_polygon(tri): - if tri == -1: - points = [0, 0, 0] - else: - points = triang.triangles[tri] - xs = triang.x[points] - ys = triang.y[points] - polygon.set_xy(np.column_stack([xs, ys])) - - -def motion_notify(event): - if event.inaxes is None: - tri = -1 - else: - tri = trifinder(event.xdata, event.ydata) - update_polygon(tri) - plt.title('In triangle %i' % tri) - event.canvas.draw() - - -# Create a Triangulation. -n_angles = 16 -n_radii = 5 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -triang = Triangulation(x, y) -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -# Use the triangulation's default TriFinder object. -trifinder = triang.get_trifinder() - -# Setup plot and callbacks. -plt.subplot(111, aspect='equal') -plt.triplot(triang, 'bo-') -polygon = Polygon([[0, 0], [0, 0]], facecolor='y') # dummy data for xs,ys -update_polygon(-1) -plt.gca().add_patch(polygon) -plt.gcf().canvas.mpl_connect('motion_notify_event', motion_notify) -plt.show() diff --git a/_downloads/05c180d113fa010754c36463318a9d99/scalarformatter.ipynb b/_downloads/05c180d113fa010754c36463318a9d99/scalarformatter.ipynb deleted file mode 120000 index 2a78534be36..00000000000 --- a/_downloads/05c180d113fa010754c36463318a9d99/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/05c180d113fa010754c36463318a9d99/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/05c40ba336643505ff31874a1af8c2ad/stix_fonts_demo.py b/_downloads/05c40ba336643505ff31874a1af8c2ad/stix_fonts_demo.py deleted file mode 120000 index 39522763c21..00000000000 --- a/_downloads/05c40ba336643505ff31874a1af8c2ad/stix_fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/05c40ba336643505ff31874a1af8c2ad/stix_fonts_demo.py \ No newline at end of file diff --git a/_downloads/05c8ad8c6d4a982d45eee807ebbe33c1/errorbar_features.py b/_downloads/05c8ad8c6d4a982d45eee807ebbe33c1/errorbar_features.py deleted file mode 120000 index 730f9afd4a4..00000000000 --- a/_downloads/05c8ad8c6d4a982d45eee807ebbe33c1/errorbar_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/05c8ad8c6d4a982d45eee807ebbe33c1/errorbar_features.py \ No newline at end of file diff --git a/_downloads/05cba99c136bdd8ec24d46ef4ed6ba80/color_demo.ipynb b/_downloads/05cba99c136bdd8ec24d46ef4ed6ba80/color_demo.ipynb deleted file mode 120000 index c60543c1adc..00000000000 --- a/_downloads/05cba99c136bdd8ec24d46ef4ed6ba80/color_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/05cba99c136bdd8ec24d46ef4ed6ba80/color_demo.ipynb \ No newline at end of file diff --git a/_downloads/05d346e39918477f21e299820337573e/errorbar.py b/_downloads/05d346e39918477f21e299820337573e/errorbar.py deleted file mode 120000 index b0284a07604..00000000000 --- a/_downloads/05d346e39918477f21e299820337573e/errorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/05d346e39918477f21e299820337573e/errorbar.py \ No newline at end of file diff --git a/_downloads/05d408b994b4fb6c66f81e126e159d29/color_cycle.ipynb b/_downloads/05d408b994b4fb6c66f81e126e159d29/color_cycle.ipynb deleted file mode 120000 index 618249a9118..00000000000 --- a/_downloads/05d408b994b4fb6c66f81e126e159d29/color_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/05d408b994b4fb6c66f81e126e159d29/color_cycle.ipynb \ No newline at end of file diff --git a/_downloads/05df9b86e3a0c5c5dc49568bc0930ea5/embedding_webagg_sgskip.py b/_downloads/05df9b86e3a0c5c5dc49568bc0930ea5/embedding_webagg_sgskip.py deleted file mode 120000 index 023b8475992..00000000000 --- a/_downloads/05df9b86e3a0c5c5dc49568bc0930ea5/embedding_webagg_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/05df9b86e3a0c5c5dc49568bc0930ea5/embedding_webagg_sgskip.py \ No newline at end of file diff --git a/_downloads/05dfca6d9d07e60ea87299f416ee083c/accented_text.ipynb b/_downloads/05dfca6d9d07e60ea87299f416ee083c/accented_text.ipynb deleted file mode 120000 index 6800e74c310..00000000000 --- a/_downloads/05dfca6d9d07e60ea87299f416ee083c/accented_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/05dfca6d9d07e60ea87299f416ee083c/accented_text.ipynb \ No newline at end of file diff --git a/_downloads/05ed32177e3ae475213c1f9ffd4a01a4/axisartist.py b/_downloads/05ed32177e3ae475213c1f9ffd4a01a4/axisartist.py deleted file mode 120000 index 8588897e22b..00000000000 --- a/_downloads/05ed32177e3ae475213c1f9ffd4a01a4/axisartist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/05ed32177e3ae475213c1f9ffd4a01a4/axisartist.py \ No newline at end of file diff --git a/_downloads/05f0f8ad484e95d0ccd1b2734f5063b5/colorbar_tick_labelling_demo.py b/_downloads/05f0f8ad484e95d0ccd1b2734f5063b5/colorbar_tick_labelling_demo.py deleted file mode 120000 index 0addbc6b5ae..00000000000 --- a/_downloads/05f0f8ad484e95d0ccd1b2734f5063b5/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/05f0f8ad484e95d0ccd1b2734f5063b5/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/05fbc1d0d516c90d1c154e0940017d97/fill.py b/_downloads/05fbc1d0d516c90d1c154e0940017d97/fill.py deleted file mode 120000 index 76b8bac7c3b..00000000000 --- a/_downloads/05fbc1d0d516c90d1c154e0940017d97/fill.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/05fbc1d0d516c90d1c154e0940017d97/fill.py \ No newline at end of file diff --git a/_downloads/05fd218296847a32c17ab9a2fea8bbd7/align_labels_demo.py b/_downloads/05fd218296847a32c17ab9a2fea8bbd7/align_labels_demo.py deleted file mode 120000 index b9db0ff020a..00000000000 --- a/_downloads/05fd218296847a32c17ab9a2fea8bbd7/align_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/05fd218296847a32c17ab9a2fea8bbd7/align_labels_demo.py \ No newline at end of file diff --git a/_downloads/0603afd3cb3174230dc8a425b6efd4b6/multicolored_line.py b/_downloads/0603afd3cb3174230dc8a425b6efd4b6/multicolored_line.py deleted file mode 120000 index 33314fd2803..00000000000 --- a/_downloads/0603afd3cb3174230dc8a425b6efd4b6/multicolored_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0603afd3cb3174230dc8a425b6efd4b6/multicolored_line.py \ No newline at end of file diff --git a/_downloads/0606e7bae37d17f7a54ec9dcd1179ce3/colormap-manipulation.py b/_downloads/0606e7bae37d17f7a54ec9dcd1179ce3/colormap-manipulation.py deleted file mode 120000 index dff3684231e..00000000000 --- a/_downloads/0606e7bae37d17f7a54ec9dcd1179ce3/colormap-manipulation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0606e7bae37d17f7a54ec9dcd1179ce3/colormap-manipulation.py \ No newline at end of file diff --git a/_downloads/0606f607ba9443a08500b5442912f31f/subplots_adjust.py b/_downloads/0606f607ba9443a08500b5442912f31f/subplots_adjust.py deleted file mode 100644 index 1a310f8c3a5..00000000000 --- a/_downloads/0606f607ba9443a08500b5442912f31f/subplots_adjust.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=============== -Subplots Adjust -=============== - -Adjusting the spacing of margins and subplots using -:func:`~matplotlib.pyplot.subplots_adjust`. -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -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) - -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() diff --git a/_downloads/0609ba7da6aff274c9d51ded96d741f0/animated_histogram.py b/_downloads/0609ba7da6aff274c9d51ded96d741f0/animated_histogram.py deleted file mode 120000 index 1776b334f9b..00000000000 --- a/_downloads/0609ba7da6aff274c9d51ded96d741f0/animated_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0609ba7da6aff274c9d51ded96d741f0/animated_histogram.py \ No newline at end of file diff --git a/_downloads/061936b13fc0c40231aad71d8c1a498c/font_family_rc_sgskip.ipynb b/_downloads/061936b13fc0c40231aad71d8c1a498c/font_family_rc_sgskip.ipynb deleted file mode 100644 index 77c311cafd8..00000000000 --- a/_downloads/061936b13fc0c40231aad71d8c1a498c/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Configuring the font family\n\n\nYou can explicitly set which font family is picked up for a given font\nstyle (e.g., 'serif', 'sans-serif', or 'monospace').\n\nIn the example below, we only allow one font family (Tahoma) for the\nsans-serif font style. You the default family with the font.family rc\nparam, e.g.,::\n\n rcParams['font.family'] = 'sans-serif'\n\nand for the font.family you set a list of font styles to try to find\nin order::\n\n rcParams['font.sans-serif'] = ['Tahoma', 'DejaVu Sans',\n 'Lucida Grande', 'Verdana']\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import rcParams\nrcParams['font.family'] = 'sans-serif'\nrcParams['font.sans-serif'] = ['Tahoma']\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\nax.plot([1, 2, 3], label='test')\n\nax.legend()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0622457b6b860061b937fd5f8d899da8/color_demo.py b/_downloads/0622457b6b860061b937fd5f8d899da8/color_demo.py deleted file mode 120000 index 5902dfc4bd1..00000000000 --- a/_downloads/0622457b6b860061b937fd5f8d899da8/color_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0622457b6b860061b937fd5f8d899da8/color_demo.py \ No newline at end of file diff --git a/_downloads/062e3f4085de99c18498cb97f0439050/compound_path.ipynb b/_downloads/062e3f4085de99c18498cb97f0439050/compound_path.ipynb deleted file mode 120000 index f8cf55385ca..00000000000 --- a/_downloads/062e3f4085de99c18498cb97f0439050/compound_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/062e3f4085de99c18498cb97f0439050/compound_path.ipynb \ No newline at end of file diff --git a/_downloads/062f9ff9a06156e896e5e13a3f31b71d/font_family_rc_sgskip.ipynb b/_downloads/062f9ff9a06156e896e5e13a3f31b71d/font_family_rc_sgskip.ipynb deleted file mode 120000 index 71dfedbc875..00000000000 --- a/_downloads/062f9ff9a06156e896e5e13a3f31b71d/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/062f9ff9a06156e896e5e13a3f31b71d/font_family_rc_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/06334122042b9651d400829463233b32/multicursor.py b/_downloads/06334122042b9651d400829463233b32/multicursor.py deleted file mode 120000 index f530f75db9f..00000000000 --- a/_downloads/06334122042b9651d400829463233b32/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/06334122042b9651d400829463233b32/multicursor.py \ No newline at end of file diff --git a/_downloads/0640370dfe38d0bc3c084a6d2b9e69d2/demo_ribbon_box.py b/_downloads/0640370dfe38d0bc3c084a6d2b9e69d2/demo_ribbon_box.py deleted file mode 100644 index 9e350182e3d..00000000000 --- a/_downloads/0640370dfe38d0bc3c084a6d2b9e69d2/demo_ribbon_box.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -========== -Ribbon Box -========== - -""" - -import numpy as np - -from matplotlib import cbook, colors as mcolors -from matplotlib.image import AxesImage -import matplotlib.pyplot as plt -from matplotlib.transforms import Bbox, TransformedBbox, BboxTransformTo - - -class RibbonBox: - - original_image = plt.imread( - cbook.get_sample_data("Minduka_Present_Blue_Pack.png")) - cut_location = 70 - b_and_h = original_image[:, :, 2:3] - color = original_image[:, :, 2:3] - original_image[:, :, 0:1] - alpha = original_image[:, :, 3:4] - nx = original_image.shape[1] - - def __init__(self, color): - rgb = mcolors.to_rgba(color)[:3] - self.im = np.dstack( - [self.b_and_h - self.color * (1 - np.array(rgb)), self.alpha]) - - def get_stretched_image(self, stretch_factor): - stretch_factor = max(stretch_factor, 1) - ny, nx, nch = self.im.shape - ny2 = int(ny*stretch_factor) - return np.vstack( - [self.im[:self.cut_location], - np.broadcast_to( - self.im[self.cut_location], (ny2 - ny, nx, nch)), - self.im[self.cut_location:]]) - - -class RibbonBoxImage(AxesImage): - zorder = 1 - - def __init__(self, ax, bbox, color, *, extent=(0, 1, 0, 1), **kwargs): - super().__init__(ax, extent=extent, **kwargs) - self._bbox = bbox - self._ribbonbox = RibbonBox(color) - self.set_transform(BboxTransformTo(bbox)) - - def draw(self, renderer, *args, **kwargs): - stretch_factor = self._bbox.height / self._bbox.width - - ny = int(stretch_factor*self._ribbonbox.nx) - if self.get_array() is None or self.get_array().shape[0] != ny: - arr = self._ribbonbox.get_stretched_image(stretch_factor) - self.set_array(arr) - - super().draw(renderer, *args, **kwargs) - - -def main(): - fig, ax = plt.subplots() - - years = np.arange(2004, 2009) - heights = [7900, 8100, 7900, 6900, 2800] - box_colors = [ - (0.8, 0.2, 0.2), - (0.2, 0.8, 0.2), - (0.2, 0.2, 0.8), - (0.7, 0.5, 0.8), - (0.3, 0.8, 0.7), - ] - - for year, h, bc in zip(years, heights, box_colors): - bbox0 = Bbox.from_extents(year - 0.4, 0., year + 0.4, h) - bbox = TransformedBbox(bbox0, ax.transData) - ax.add_artist(RibbonBoxImage(ax, bbox, bc, interpolation="bicubic")) - ax.annotate(str(h), (year, h), va="bottom", ha="center") - - ax.set_xlim(years[0] - 0.5, years[-1] + 0.5) - ax.set_ylim(0, 10000) - - background_gradient = np.zeros((2, 2, 4)) - background_gradient[:, :, :3] = [1, 1, 0] - background_gradient[:, :, 3] = [[0.1, 0.3], [0.3, 0.5]] # alpha channel - ax.imshow(background_gradient, interpolation="bicubic", zorder=0.1, - extent=(0, 1, 0, 1), transform=ax.transAxes, aspect="auto") - - plt.show() - - -main() diff --git a/_downloads/0656dfb95cc731c8160fddce8493f503/pcolormesh_levels.ipynb b/_downloads/0656dfb95cc731c8160fddce8493f503/pcolormesh_levels.ipynb deleted file mode 120000 index f90a3efd9c0..00000000000 --- a/_downloads/0656dfb95cc731c8160fddce8493f503/pcolormesh_levels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0656dfb95cc731c8160fddce8493f503/pcolormesh_levels.ipynb \ No newline at end of file diff --git a/_downloads/065c071a29c6401996bc2bb8a6218b0a/embedding_in_wx3_sgskip.py b/_downloads/065c071a29c6401996bc2bb8a6218b0a/embedding_in_wx3_sgskip.py deleted file mode 120000 index 66ca3354894..00000000000 --- a/_downloads/065c071a29c6401996bc2bb8a6218b0a/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/065c071a29c6401996bc2bb8a6218b0a/embedding_in_wx3_sgskip.py \ No newline at end of file diff --git a/_downloads/065c1d1f5c5af7b2e186aebd6a80b8d2/histogram_histtypes.ipynb b/_downloads/065c1d1f5c5af7b2e186aebd6a80b8d2/histogram_histtypes.ipynb deleted file mode 100644 index 2751c068244..00000000000 --- a/_downloads/065c1d1f5c5af7b2e186aebd6a80b8d2/histogram_histtypes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n================================================================\nDemo of the histogram function's different ``histtype`` settings\n================================================================\n\n* Histogram with step curve that has a color fill.\n* Histogram with custom and unequal bin widths.\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nmu = 200\nsigma = 25\nx = np.random.normal(mu, sigma, size=100)\n\nfig, (ax0, ax1) = plt.subplots(ncols=2, figsize=(8, 4))\n\nax0.hist(x, 20, density=True, histtype='stepfilled', facecolor='g', alpha=0.75)\nax0.set_title('stepfilled')\n\n# Create a histogram by providing the bin edges (unequally spaced).\nbins = [100, 150, 180, 195, 205, 220, 250, 300]\nax1.hist(x, bins, density=True, histtype='bar', rwidth=0.8)\nax1.set_title('unequal bins')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/065c7a53ee75ed9e3b750fa64ce0eecc/quiver_demo.py b/_downloads/065c7a53ee75ed9e3b750fa64ce0eecc/quiver_demo.py deleted file mode 120000 index 54007003b99..00000000000 --- a/_downloads/065c7a53ee75ed9e3b750fa64ce0eecc/quiver_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/065c7a53ee75ed9e3b750fa64ce0eecc/quiver_demo.py \ No newline at end of file diff --git a/_downloads/065fd6663fae56f6f62876ad191eafb4/multicursor.py b/_downloads/065fd6663fae56f6f62876ad191eafb4/multicursor.py deleted file mode 120000 index aba635e55a3..00000000000 --- a/_downloads/065fd6663fae56f6f62876ad191eafb4/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/065fd6663fae56f6f62876ad191eafb4/multicursor.py \ No newline at end of file diff --git a/_downloads/06626d287e7e8a9d212f940ed21f8b56/log_demo.ipynb b/_downloads/06626d287e7e8a9d212f940ed21f8b56/log_demo.ipynb deleted file mode 120000 index 30704850454..00000000000 --- a/_downloads/06626d287e7e8a9d212f940ed21f8b56/log_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/06626d287e7e8a9d212f940ed21f8b56/log_demo.ipynb \ No newline at end of file diff --git a/_downloads/067712313d71353105d55004d5c8c7d6/offset.ipynb b/_downloads/067712313d71353105d55004d5c8c7d6/offset.ipynb deleted file mode 100644 index 5db53d31ef4..00000000000 --- a/_downloads/067712313d71353105d55004d5c8c7d6/offset.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Automatic Text Offsetting\n\n\nThis example demonstrates mplot3d's offset text display.\nAs one rotates the 3D figure, the offsets should remain oriented the\nsame way as the axis label, and should also be located \"away\"\nfrom the center of the plot.\n\nThis demo triggers the display of the offset text for the x and\ny axis by adding 1e5 to X and Y. Anything less would not\nautomatically trigger it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\nX, Y = np.mgrid[0:6*np.pi:0.25, 0:4*np.pi:0.25]\nZ = np.sqrt(np.abs(np.cos(X) + np.cos(Y)))\n\nax.plot_surface(X + 1e5, Y + 1e5, Z, cmap='autumn', cstride=2, rstride=2)\n\nax.set_xlabel(\"X label\")\nax.set_ylabel(\"Y label\")\nax.set_zlabel(\"Z label\")\nax.set_zlim(0, 2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0677302b511adf99b6b46afa26873b23/patheffect_demo.ipynb b/_downloads/0677302b511adf99b6b46afa26873b23/patheffect_demo.ipynb deleted file mode 120000 index bc5eabf405b..00000000000 --- a/_downloads/0677302b511adf99b6b46afa26873b23/patheffect_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0677302b511adf99b6b46afa26873b23/patheffect_demo.ipynb \ No newline at end of file diff --git a/_downloads/0678643882d9580f0688c63adabaebd2/looking_glass.ipynb b/_downloads/0678643882d9580f0688c63adabaebd2/looking_glass.ipynb deleted file mode 100644 index c104635a0f7..00000000000 --- a/_downloads/0678643882d9580f0688c63adabaebd2/looking_glass.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Looking Glass\n\n\nExample using mouse events to simulate a looking glass for inspecting data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx, y = np.random.rand(2, 200)\n\nfig, ax = plt.subplots()\ncirc = patches.Circle((0.5, 0.5), 0.25, alpha=0.8, fc='yellow')\nax.add_patch(circ)\n\n\nax.plot(x, y, alpha=0.2)\nline, = ax.plot(x, y, alpha=1.0, clip_path=circ)\nax.set_title(\"Left click and drag to move looking glass\")\n\n\nclass EventHandler(object):\n def __init__(self):\n fig.canvas.mpl_connect('button_press_event', self.onpress)\n fig.canvas.mpl_connect('button_release_event', self.onrelease)\n fig.canvas.mpl_connect('motion_notify_event', self.onmove)\n self.x0, self.y0 = circ.center\n self.pressevent = None\n\n def onpress(self, event):\n if event.inaxes != ax:\n return\n\n if not circ.contains(event)[0]:\n return\n\n self.pressevent = event\n\n def onrelease(self, event):\n self.pressevent = None\n self.x0, self.y0 = circ.center\n\n def onmove(self, event):\n if self.pressevent is None or event.inaxes != self.pressevent.inaxes:\n return\n\n dx = event.xdata - self.pressevent.xdata\n dy = event.ydata - self.pressevent.ydata\n circ.center = self.x0 + dx, self.y0 + dy\n line.set_clip_path(circ)\n fig.canvas.draw()\n\nhandler = EventHandler()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/067b7e13c82323dc7d6464cec4c29d51/barh.ipynb b/_downloads/067b7e13c82323dc7d6464cec4c29d51/barh.ipynb deleted file mode 120000 index 6cda8b357c9..00000000000 --- a/_downloads/067b7e13c82323dc7d6464cec4c29d51/barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/067b7e13c82323dc7d6464cec4c29d51/barh.ipynb \ No newline at end of file diff --git a/_downloads/06823cf7a9df096bd906c5c19f77f1dc/tight_layout_guide.ipynb b/_downloads/06823cf7a9df096bd906c5c19f77f1dc/tight_layout_guide.ipynb deleted file mode 120000 index 9798907730f..00000000000 --- a/_downloads/06823cf7a9df096bd906c5c19f77f1dc/tight_layout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/06823cf7a9df096bd906c5c19f77f1dc/tight_layout_guide.ipynb \ No newline at end of file diff --git a/_downloads/0683d72347b9f107ec3f791a9f28a1d9/scatter_with_legend.ipynb b/_downloads/0683d72347b9f107ec3f791a9f28a1d9/scatter_with_legend.ipynb deleted file mode 120000 index 5d5f7bfdccc..00000000000 --- a/_downloads/0683d72347b9f107ec3f791a9f28a1d9/scatter_with_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0683d72347b9f107ec3f791a9f28a1d9/scatter_with_legend.ipynb \ No newline at end of file diff --git a/_downloads/068f25c5e9fd52679afb12911964c629/lasso_demo.ipynb b/_downloads/068f25c5e9fd52679afb12911964c629/lasso_demo.ipynb deleted file mode 120000 index d4fde6127e9..00000000000 --- a/_downloads/068f25c5e9fd52679afb12911964c629/lasso_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/068f25c5e9fd52679afb12911964c629/lasso_demo.ipynb \ No newline at end of file diff --git a/_downloads/0697adfc259b8cc7ed3e0767ad113de7/path_tutorial.py b/_downloads/0697adfc259b8cc7ed3e0767ad113de7/path_tutorial.py deleted file mode 120000 index cf2d997be12..00000000000 --- a/_downloads/0697adfc259b8cc7ed3e0767ad113de7/path_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0697adfc259b8cc7ed3e0767ad113de7/path_tutorial.py \ No newline at end of file diff --git a/_downloads/069cd56e7ceded769f885d51e67e0a53/contour.py b/_downloads/069cd56e7ceded769f885d51e67e0a53/contour.py deleted file mode 120000 index 0b3c3b58f60..00000000000 --- a/_downloads/069cd56e7ceded769f885d51e67e0a53/contour.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/069cd56e7ceded769f885d51e67e0a53/contour.py \ No newline at end of file diff --git a/_downloads/069fa8727b5611eda35b761dbd28b6fb/legend_guide.py b/_downloads/069fa8727b5611eda35b761dbd28b6fb/legend_guide.py deleted file mode 120000 index e2eb735615a..00000000000 --- a/_downloads/069fa8727b5611eda35b761dbd28b6fb/legend_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/069fa8727b5611eda35b761dbd28b6fb/legend_guide.py \ No newline at end of file diff --git a/_downloads/06a91ea311d4b2ac3538b320e94ea993/demo_tight_layout.py b/_downloads/06a91ea311d4b2ac3538b320e94ea993/demo_tight_layout.py deleted file mode 120000 index 9399ca9395c..00000000000 --- a/_downloads/06a91ea311d4b2ac3538b320e94ea993/demo_tight_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/06a91ea311d4b2ac3538b320e94ea993/demo_tight_layout.py \ No newline at end of file diff --git a/_downloads/06ac97558eeb1567b6a47e79368f8b17/artist_tests.py b/_downloads/06ac97558eeb1567b6a47e79368f8b17/artist_tests.py deleted file mode 120000 index 3dd16b54bb2..00000000000 --- a/_downloads/06ac97558eeb1567b6a47e79368f8b17/artist_tests.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/06ac97558eeb1567b6a47e79368f8b17/artist_tests.py \ No newline at end of file diff --git a/_downloads/06c68940175dda932e9f18e300d1b3ac/radar_chart.ipynb b/_downloads/06c68940175dda932e9f18e300d1b3ac/radar_chart.ipynb deleted file mode 100644 index 6585ef3ec18..00000000000 --- a/_downloads/06c68940175dda932e9f18e300d1b3ac/radar_chart.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================================\nRadar chart (aka spider or star chart)\n======================================\n\nThis example creates a radar chart, also known as a spider or star chart [1]_.\n\nAlthough this example allows a frame of either 'circle' or 'polygon', polygon\nframes don't have proper gridlines (the lines are circles instead of polygons).\nIt's possible to get a polygon grid by setting GRIDLINE_INTERPOLATION_STEPS in\nmatplotlib.axis to the desired number of vertices, but the orientation of the\npolygon is not aligned with the radial axes.\n\n.. [1] http://en.wikipedia.org/wiki/Radar_chart\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Circle, RegularPolygon\nfrom matplotlib.path import Path\nfrom matplotlib.projections.polar import PolarAxes\nfrom matplotlib.projections import register_projection\nfrom matplotlib.spines import Spine\nfrom matplotlib.transforms import Affine2D\n\n\ndef radar_factory(num_vars, frame='circle'):\n \"\"\"Create a radar chart with `num_vars` axes.\n\n This function creates a RadarAxes projection and registers it.\n\n Parameters\n ----------\n num_vars : int\n Number of variables for radar chart.\n frame : {'circle' | 'polygon'}\n Shape of frame surrounding axes.\n\n \"\"\"\n # calculate evenly-spaced axis angles\n theta = np.linspace(0, 2*np.pi, num_vars, endpoint=False)\n\n class RadarAxes(PolarAxes):\n\n name = 'radar'\n # use 1 line segment to connect specified points\n RESOLUTION = 1\n\n def __init__(self, *args, **kwargs):\n super().__init__(*args, **kwargs)\n # rotate plot such that the first axis is at the top\n self.set_theta_zero_location('N')\n\n def fill(self, *args, closed=True, **kwargs):\n \"\"\"Override fill so that line is closed by default\"\"\"\n return super().fill(closed=closed, *args, **kwargs)\n\n def plot(self, *args, **kwargs):\n \"\"\"Override plot so that line is closed by default\"\"\"\n lines = super().plot(*args, **kwargs)\n for line in lines:\n self._close_line(line)\n\n def _close_line(self, line):\n x, y = line.get_data()\n # FIXME: markers at x[0], y[0] get doubled-up\n if x[0] != x[-1]:\n x = np.concatenate((x, [x[0]]))\n y = np.concatenate((y, [y[0]]))\n line.set_data(x, y)\n\n def set_varlabels(self, labels):\n self.set_thetagrids(np.degrees(theta), labels)\n\n def _gen_axes_patch(self):\n # The Axes patch must be centered at (0.5, 0.5) and of radius 0.5\n # in axes coordinates.\n if frame == 'circle':\n return Circle((0.5, 0.5), 0.5)\n elif frame == 'polygon':\n return RegularPolygon((0.5, 0.5), num_vars,\n radius=.5, edgecolor=\"k\")\n else:\n raise ValueError(\"unknown value for 'frame': %s\" % frame)\n\n def _gen_axes_spines(self):\n if frame == 'circle':\n return super()._gen_axes_spines()\n elif frame == 'polygon':\n # spine_type must be 'left'/'right'/'top'/'bottom'/'circle'.\n spine = Spine(axes=self,\n spine_type='circle',\n path=Path.unit_regular_polygon(num_vars))\n # unit_regular_polygon gives a polygon of radius 1 centered at\n # (0, 0) but we want a polygon of radius 0.5 centered at (0.5,\n # 0.5) in axes coordinates.\n spine.set_transform(Affine2D().scale(.5).translate(.5, .5)\n + self.transAxes)\n return {'polar': spine}\n else:\n raise ValueError(\"unknown value for 'frame': %s\" % frame)\n\n register_projection(RadarAxes)\n return theta\n\n\ndef example_data():\n # The following data is from the Denver Aerosol Sources and Health study.\n # See doi:10.1016/j.atmosenv.2008.12.017\n #\n # The data are pollution source profile estimates for five modeled\n # pollution sources (e.g., cars, wood-burning, etc) that emit 7-9 chemical\n # species. The radar charts are experimented with here to see if we can\n # nicely visualize how the modeled source profiles change across four\n # scenarios:\n # 1) No gas-phase species present, just seven particulate counts on\n # Sulfate\n # Nitrate\n # Elemental Carbon (EC)\n # Organic Carbon fraction 1 (OC)\n # Organic Carbon fraction 2 (OC2)\n # Organic Carbon fraction 3 (OC3)\n # Pyrolized Organic Carbon (OP)\n # 2)Inclusion of gas-phase specie carbon monoxide (CO)\n # 3)Inclusion of gas-phase specie ozone (O3).\n # 4)Inclusion of both gas-phase species is present...\n data = [\n ['Sulfate', 'Nitrate', 'EC', 'OC1', 'OC2', 'OC3', 'OP', 'CO', 'O3'],\n ('Basecase', [\n [0.88, 0.01, 0.03, 0.03, 0.00, 0.06, 0.01, 0.00, 0.00],\n [0.07, 0.95, 0.04, 0.05, 0.00, 0.02, 0.01, 0.00, 0.00],\n [0.01, 0.02, 0.85, 0.19, 0.05, 0.10, 0.00, 0.00, 0.00],\n [0.02, 0.01, 0.07, 0.01, 0.21, 0.12, 0.98, 0.00, 0.00],\n [0.01, 0.01, 0.02, 0.71, 0.74, 0.70, 0.00, 0.00, 0.00]]),\n ('With CO', [\n [0.88, 0.02, 0.02, 0.02, 0.00, 0.05, 0.00, 0.05, 0.00],\n [0.08, 0.94, 0.04, 0.02, 0.00, 0.01, 0.12, 0.04, 0.00],\n [0.01, 0.01, 0.79, 0.10, 0.00, 0.05, 0.00, 0.31, 0.00],\n [0.00, 0.02, 0.03, 0.38, 0.31, 0.31, 0.00, 0.59, 0.00],\n [0.02, 0.02, 0.11, 0.47, 0.69, 0.58, 0.88, 0.00, 0.00]]),\n ('With O3', [\n [0.89, 0.01, 0.07, 0.00, 0.00, 0.05, 0.00, 0.00, 0.03],\n [0.07, 0.95, 0.05, 0.04, 0.00, 0.02, 0.12, 0.00, 0.00],\n [0.01, 0.02, 0.86, 0.27, 0.16, 0.19, 0.00, 0.00, 0.00],\n [0.01, 0.03, 0.00, 0.32, 0.29, 0.27, 0.00, 0.00, 0.95],\n [0.02, 0.00, 0.03, 0.37, 0.56, 0.47, 0.87, 0.00, 0.00]]),\n ('CO & O3', [\n [0.87, 0.01, 0.08, 0.00, 0.00, 0.04, 0.00, 0.00, 0.01],\n [0.09, 0.95, 0.02, 0.03, 0.00, 0.01, 0.13, 0.06, 0.00],\n [0.01, 0.02, 0.71, 0.24, 0.13, 0.16, 0.00, 0.50, 0.00],\n [0.01, 0.03, 0.00, 0.28, 0.24, 0.23, 0.00, 0.44, 0.88],\n [0.02, 0.00, 0.18, 0.45, 0.64, 0.55, 0.86, 0.00, 0.16]])\n ]\n return data\n\n\nif __name__ == '__main__':\n N = 9\n theta = radar_factory(N, frame='polygon')\n\n data = example_data()\n spoke_labels = data.pop(0)\n\n fig, axes = plt.subplots(figsize=(9, 9), nrows=2, ncols=2,\n subplot_kw=dict(projection='radar'))\n fig.subplots_adjust(wspace=0.25, hspace=0.20, top=0.85, bottom=0.05)\n\n colors = ['b', 'r', 'g', 'm', 'y']\n # Plot the four cases from the example data on separate axes\n for ax, (title, case_data) in zip(axes.flat, data):\n ax.set_rgrids([0.2, 0.4, 0.6, 0.8])\n ax.set_title(title, weight='bold', size='medium', position=(0.5, 1.1),\n horizontalalignment='center', verticalalignment='center')\n for d, color in zip(case_data, colors):\n ax.plot(theta, d, color=color)\n ax.fill(theta, d, facecolor=color, alpha=0.25)\n ax.set_varlabels(spoke_labels)\n\n # add legend relative to top-left plot\n ax = axes[0, 0]\n labels = ('Factor 1', 'Factor 2', 'Factor 3', 'Factor 4', 'Factor 5')\n legend = ax.legend(labels, loc=(0.9, .95),\n labelspacing=0.1, fontsize='small')\n\n fig.text(0.5, 0.965, '5-Factor Solution Profiles Across Four Scenarios',\n horizontalalignment='center', color='black', weight='bold',\n size='large')\n\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.spines\nmatplotlib.spines.Spine\nmatplotlib.projections\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes\nmatplotlib.projections.register_projection" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/06c6f5f0569f1334a0207b7a7be63d45/text_layout.ipynb b/_downloads/06c6f5f0569f1334a0207b7a7be63d45/text_layout.ipynb deleted file mode 120000 index f0dd28cbb3f..00000000000 --- a/_downloads/06c6f5f0569f1334a0207b7a7be63d45/text_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/06c6f5f0569f1334a0207b7a7be63d45/text_layout.ipynb \ No newline at end of file diff --git a/_downloads/06d3a66f319d8b0a81f9b711937e8a22/irregulardatagrid.ipynb b/_downloads/06d3a66f319d8b0a81f9b711937e8a22/irregulardatagrid.ipynb deleted file mode 120000 index bc50a083292..00000000000 --- a/_downloads/06d3a66f319d8b0a81f9b711937e8a22/irregulardatagrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/06d3a66f319d8b0a81f9b711937e8a22/irregulardatagrid.ipynb \ No newline at end of file diff --git a/_downloads/06d8568c9c6f02bf1c64744e15c4a416/tricontourf.ipynb b/_downloads/06d8568c9c6f02bf1c64744e15c4a416/tricontourf.ipynb deleted file mode 120000 index 7dc74613b7f..00000000000 --- a/_downloads/06d8568c9c6f02bf1c64744e15c4a416/tricontourf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/06d8568c9c6f02bf1c64744e15c4a416/tricontourf.ipynb \ No newline at end of file diff --git a/_downloads/06e11dca90715f4f1bdb1b263a55dd11/sankey_rankine.py b/_downloads/06e11dca90715f4f1bdb1b263a55dd11/sankey_rankine.py deleted file mode 120000 index 1ab4f020a93..00000000000 --- a/_downloads/06e11dca90715f4f1bdb1b263a55dd11/sankey_rankine.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/06e11dca90715f4f1bdb1b263a55dd11/sankey_rankine.py \ No newline at end of file diff --git a/_downloads/06e654e0fb4f1e562a0a57e38cbc660c/marker_reference.ipynb b/_downloads/06e654e0fb4f1e562a0a57e38cbc660c/marker_reference.ipynb deleted file mode 120000 index 989809b8c0d..00000000000 --- a/_downloads/06e654e0fb4f1e562a0a57e38cbc660c/marker_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/06e654e0fb4f1e562a0a57e38cbc660c/marker_reference.ipynb \ No newline at end of file diff --git a/_downloads/06eda9329a6b8aa00e57d32ce625d325/logos2.ipynb b/_downloads/06eda9329a6b8aa00e57d32ce625d325/logos2.ipynb deleted file mode 100644 index c213205188e..00000000000 --- a/_downloads/06eda9329a6b8aa00e57d32ce625d325/logos2.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Matplotlib logo\n\n\nThis example generates the current matplotlib logo.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport matplotlib.font_manager\nfrom matplotlib.patches import Circle, Rectangle, PathPatch\nfrom matplotlib.textpath import TextPath\nimport matplotlib.transforms as mtrans\n\nMPL_BLUE = '#11557c'\n\n\ndef get_font_properties():\n # The original font is Calibri, if that is not installed, we fall back\n # to Carlito, which is metrically equivalent.\n if 'Calibri' in matplotlib.font_manager.findfont('Calibri:bold'):\n return matplotlib.font_manager.FontProperties(family='Calibri',\n weight='bold')\n if 'Carlito' in matplotlib.font_manager.findfont('Carlito:bold'):\n print('Original font not found. Falling back to Carlito. '\n 'The logo text will not be in the correct font.')\n return matplotlib.font_manager.FontProperties(family='Carlito',\n weight='bold')\n print('Original font not found. '\n 'The logo text will not be in the correct font.')\n return None\n\n\ndef create_icon_axes(fig, ax_position, lw_bars, lw_grid, lw_border, rgrid):\n \"\"\"\n Create a polar axes containing the matplotlib radar plot.\n\n Parameters\n ----------\n fig : matplotlib.figure.Figure\n The figure to draw into.\n ax_position : (float, float, float, float)\n The position of the created Axes in figure coordinates as\n (x, y, width, height).\n lw_bars : float\n The linewidth of the bars.\n lw_grid : float\n The linewidth of the grid.\n lw_border : float\n The linewidth of the Axes border.\n rgrid : array-like\n Positions of the radial grid.\n\n Returns\n -------\n ax : matplotlib.axes.Axes\n The created Axes.\n \"\"\"\n with plt.rc_context({'axes.edgecolor': MPL_BLUE,\n 'axes.linewidth': lw_border}):\n ax = fig.add_axes(ax_position, projection='polar')\n ax.set_axisbelow(True)\n\n N = 7\n arc = 2. * np.pi\n theta = np.arange(0.0, arc, arc / N)\n radii = np.array([2, 6, 8, 7, 4, 5, 8])\n width = np.pi / 4 * np.array([0.4, 0.4, 0.6, 0.8, 0.2, 0.5, 0.3])\n bars = ax.bar(theta, radii, width=width, bottom=0.0, align='edge',\n edgecolor='0.3', lw=lw_bars)\n for r, bar in zip(radii, bars):\n color = *cm.jet(r / 10.)[:3], 0.6 # color from jet with alpha=0.6\n bar.set_facecolor(color)\n\n ax.tick_params(labelbottom=False, labeltop=False,\n labelleft=False, labelright=False)\n\n ax.grid(lw=lw_grid, color='0.9')\n ax.set_rmax(9)\n ax.set_yticks(rgrid)\n\n # the actual visible background - extends a bit beyond the axis\n ax.add_patch(Rectangle((0, 0), arc, 9.58,\n facecolor='white', zorder=0,\n clip_on=False, in_layout=False))\n return ax\n\n\ndef create_text_axes(fig, height_px):\n \"\"\"Create an axes in *fig* that contains 'matplotlib' as Text.\"\"\"\n ax = fig.add_axes((0, 0, 1, 1))\n ax.set_aspect(\"equal\")\n ax.set_axis_off()\n\n path = TextPath((0, 0), \"matplotlib\", size=height_px * 0.8,\n prop=get_font_properties())\n\n angle = 4.25 # degrees\n trans = mtrans.Affine2D().skew_deg(angle, 0)\n\n patch = PathPatch(path, transform=trans + ax.transData, color=MPL_BLUE,\n lw=0)\n ax.add_patch(patch)\n ax.autoscale()\n\n\ndef make_logo(height_px, lw_bars, lw_grid, lw_border, rgrid, with_text=False):\n \"\"\"\n Create a full figure with the Matplotlib logo.\n\n Parameters\n ----------\n height_px : int\n Height of the figure in pixel.\n lw_bars : float\n The linewidth of the bar border.\n lw_grid : float\n The linewidth of the grid.\n lw_border : float\n The linewidth of icon border.\n rgrid : sequence of float\n The radial grid positions.\n with_text : bool\n Whether to draw only the icon or to include 'matplotlib' as text.\n \"\"\"\n dpi = 100\n height = height_px / dpi\n figsize = (5 * height, height) if with_text else (height, height)\n fig = plt.figure(figsize=figsize, dpi=dpi)\n fig.patch.set_alpha(0)\n\n if with_text:\n create_text_axes(fig, height_px)\n ax_pos = (0.535, 0.12, .17, 0.75) if with_text else (0.03, 0.03, .94, .94)\n ax = create_icon_axes(fig, ax_pos, lw_bars, lw_grid, lw_border, rgrid)\n\n return fig, ax" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A large logo:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1,\n rgrid=[1, 3, 5, 7])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A small 32px logo:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "make_logo(height_px=32, lw_bars=0.3, lw_grid=0.3, lw_border=0.3, rgrid=[5])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A large logo including text, as used on the matplotlib website.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1,\n rgrid=[1, 3, 5, 7], with_text=True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/06f081d6370b07a906dde7f14404abf4/embedding_in_wx4_sgskip.py b/_downloads/06f081d6370b07a906dde7f14404abf4/embedding_in_wx4_sgskip.py deleted file mode 100644 index 6c607108c53..00000000000 --- a/_downloads/06f081d6370b07a906dde7f14404abf4/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -================== -Embedding in wx #4 -================== - -An example of how to use wx or wxagg in an application with a custom toolbar. -""" - -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar -from matplotlib.backends.backend_wx import _load_bitmap -from matplotlib.figure import Figure - -import numpy as np - -import wx - - -class MyNavigationToolbar(NavigationToolbar): - """Extend the default wx toolbar with your own event handlers.""" - - def __init__(self, canvas, cankill): - NavigationToolbar.__init__(self, canvas) - - # for simplicity I'm going to reuse a bitmap from wx, you'll - # probably want to add your own. - tool = self.AddTool(wx.ID_ANY, 'Click me', _load_bitmap('back.png'), - 'Activate custom contol') - self.Bind(wx.EVT_TOOL, self._on_custom, id=tool.GetId()) - - def _on_custom(self, evt): - # add some text to the axes in a random location in axes (0,1) - # coords) with a random color - - # get the axes - ax = self.canvas.figure.axes[0] - - # generate a random location can color - x, y = np.random.rand(2) - rgb = np.random.rand(3) - - # add the text and draw - ax.text(x, y, 'You clicked me', - transform=ax.transAxes, - color=rgb) - self.canvas.draw() - evt.Skip() - - -class CanvasFrame(wx.Frame): - def __init__(self): - wx.Frame.__init__(self, None, -1, - 'CanvasFrame', size=(550, 350)) - - self.figure = Figure(figsize=(5, 4), dpi=100) - self.axes = self.figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2 * np.pi * t) - - self.axes.plot(t, s) - - self.canvas = FigureCanvas(self, -1, self.figure) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.sizer.Add(self.canvas, 1, wx.TOP | wx.LEFT | wx.EXPAND) - - self.toolbar = MyNavigationToolbar(self.canvas, True) - self.toolbar.Realize() - # By adding toolbar in sizer, we are able to put it at the bottom - # of the frame - so appearance is closer to GTK version. - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - - # update the axes menu on the toolbar - self.toolbar.update() - self.SetSizer(self.sizer) - self.Fit() - - -class App(wx.App): - def OnInit(self): - 'Create the main window and insert the custom frame' - frame = CanvasFrame() - frame.Show(True) - - return True - -app = App(0) -app.MainLoop() diff --git a/_downloads/06f0e5f17c1200d79f24d9767f220fb0/multicursor.ipynb b/_downloads/06f0e5f17c1200d79f24d9767f220fb0/multicursor.ipynb deleted file mode 120000 index 8286ab43934..00000000000 --- a/_downloads/06f0e5f17c1200d79f24d9767f220fb0/multicursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/06f0e5f17c1200d79f24d9767f220fb0/multicursor.ipynb \ No newline at end of file diff --git a/_downloads/06f67183221f880108b55f6e445ce4f8/contour3d.py b/_downloads/06f67183221f880108b55f6e445ce4f8/contour3d.py deleted file mode 120000 index 5eb465b2d97..00000000000 --- a/_downloads/06f67183221f880108b55f6e445ce4f8/contour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/06f67183221f880108b55f6e445ce4f8/contour3d.py \ No newline at end of file diff --git a/_downloads/06f97269447c8edb80d464e1c743ce09/integral.py b/_downloads/06f97269447c8edb80d464e1c743ce09/integral.py deleted file mode 120000 index d1e2b4ec912..00000000000 --- a/_downloads/06f97269447c8edb80d464e1c743ce09/integral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/06f97269447c8edb80d464e1c743ce09/integral.py \ No newline at end of file diff --git a/_downloads/06fd146d1bd30a0e489103d9bece5d65/quiver_simple_demo.ipynb b/_downloads/06fd146d1bd30a0e489103d9bece5d65/quiver_simple_demo.ipynb deleted file mode 100644 index 25f01b586ba..00000000000 --- a/_downloads/06fd146d1bd30a0e489103d9bece5d65/quiver_simple_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Quiver Simple Demo\n\n\nA simple example of a `~.axes.Axes.quiver` plot with a `~.axes.Axes.quiverkey`.\n\nFor more advanced options refer to\n:doc:`/gallery/images_contours_and_fields/quiver_demo`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nX = np.arange(-10, 10, 1)\nY = np.arange(-10, 10, 1)\nU, V = np.meshgrid(X, Y)\n\nfig, ax = plt.subplots()\nq = ax.quiver(X, Y, U, V)\nax.quiverkey(q, X=0.3, Y=1.1, U=10,\n label='Quiver key, length = 10', labelpos='E')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.quiver\nmatplotlib.pyplot.quiver\nmatplotlib.axes.Axes.quiverkey\nmatplotlib.pyplot.quiverkey" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/070ce8e166987922db818d881fb0eb0c/tight_layout_guide.ipynb b/_downloads/070ce8e166987922db818d881fb0eb0c/tight_layout_guide.ipynb deleted file mode 120000 index 0f31d1e4c03..00000000000 --- a/_downloads/070ce8e166987922db818d881fb0eb0c/tight_layout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/070ce8e166987922db818d881fb0eb0c/tight_layout_guide.ipynb \ No newline at end of file diff --git a/_downloads/07128e7343c3427fdab80b8b9964fc08/demo_colorbar_of_inset_axes.ipynb b/_downloads/07128e7343c3427fdab80b8b9964fc08/demo_colorbar_of_inset_axes.ipynb deleted file mode 120000 index e3710149faa..00000000000 --- a/_downloads/07128e7343c3427fdab80b8b9964fc08/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/07128e7343c3427fdab80b8b9964fc08/demo_colorbar_of_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/071707aa80a2a7c1bd1683c012bb8043/image_zcoord.py b/_downloads/071707aa80a2a7c1bd1683c012bb8043/image_zcoord.py deleted file mode 120000 index 1b9f1b8a0eb..00000000000 --- a/_downloads/071707aa80a2a7c1bd1683c012bb8043/image_zcoord.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/071707aa80a2a7c1bd1683c012bb8043/image_zcoord.py \ No newline at end of file diff --git a/_downloads/071cd13fd9f40f2c08fa722d390b3184/wire3d_zero_stride.ipynb b/_downloads/071cd13fd9f40f2c08fa722d390b3184/wire3d_zero_stride.ipynb deleted file mode 120000 index dc0ab0010e0..00000000000 --- a/_downloads/071cd13fd9f40f2c08fa722d390b3184/wire3d_zero_stride.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/071cd13fd9f40f2c08fa722d390b3184/wire3d_zero_stride.ipynb \ No newline at end of file diff --git a/_downloads/071d90c13f04c95c041365e8cedc6f64/viewlims.ipynb b/_downloads/071d90c13f04c95c041365e8cedc6f64/viewlims.ipynb deleted file mode 100644 index 215d2d92c10..00000000000 --- a/_downloads/071d90c13f04c95c041365e8cedc6f64/viewlims.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Viewlims\n\n\nCreates two identical panels. Zooming in on the right panel will show\na rectangle in the first panel, denoting the zoomed region.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Rectangle\n\n\n# We just subclass Rectangle so that it can be called with an Axes\n# instance, causing the rectangle to update its shape to match the\n# bounds of the Axes\nclass UpdatingRect(Rectangle):\n def __call__(self, ax):\n self.set_bounds(*ax.viewLim.bounds)\n ax.figure.canvas.draw_idle()\n\n\n# A class that will regenerate a fractal set as we zoom in, so that you\n# can actually see the increasing detail. A box in the left panel will show\n# the area to which we are zoomed.\nclass MandelbrotDisplay(object):\n def __init__(self, h=500, w=500, niter=50, radius=2., power=2):\n self.height = h\n self.width = w\n self.niter = niter\n self.radius = radius\n self.power = power\n\n def __call__(self, xstart, xend, ystart, yend):\n self.x = np.linspace(xstart, xend, self.width)\n self.y = np.linspace(ystart, yend, self.height).reshape(-1, 1)\n c = self.x + 1.0j * self.y\n threshold_time = np.zeros((self.height, self.width))\n z = np.zeros(threshold_time.shape, dtype=complex)\n mask = np.ones(threshold_time.shape, dtype=bool)\n for i in range(self.niter):\n z[mask] = z[mask]**self.power + c[mask]\n mask = (np.abs(z) < self.radius)\n threshold_time += mask\n return threshold_time\n\n def ax_update(self, ax):\n ax.set_autoscale_on(False) # Otherwise, infinite loop\n\n # Get the number of points from the number of pixels in the window\n dims = ax.patch.get_window_extent().bounds\n self.width = int(dims[2] + 0.5)\n self.height = int(dims[2] + 0.5)\n\n # Get the range for the new area\n xstart, ystart, xdelta, ydelta = ax.viewLim.bounds\n xend = xstart + xdelta\n yend = ystart + ydelta\n\n # Update the image object with our new data and extent\n im = ax.images[-1]\n im.set_data(self.__call__(xstart, xend, ystart, yend))\n im.set_extent((xstart, xend, ystart, yend))\n ax.figure.canvas.draw_idle()\n\nmd = MandelbrotDisplay()\nZ = md(-2., 0.5, -1.25, 1.25)\n\nfig1, (ax1, ax2) = plt.subplots(1, 2)\nax1.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max()))\nax2.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max()))\n\nrect = UpdatingRect([0, 0], 0, 0, facecolor='None', edgecolor='black', linewidth=1.0)\nrect.set_bounds(*ax2.viewLim.bounds)\nax1.add_patch(rect)\n\n# Connect for changing the view limits\nax2.callbacks.connect('xlim_changed', rect)\nax2.callbacks.connect('ylim_changed', rect)\n\nax2.callbacks.connect('xlim_changed', md.ax_update)\nax2.callbacks.connect('ylim_changed', md.ax_update)\nax2.set_title(\"Zoom here\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/072bdc9a8dc9f5755f43cd4f392085fe/path_patch.py b/_downloads/072bdc9a8dc9f5755f43cd4f392085fe/path_patch.py deleted file mode 100644 index 5e025bba692..00000000000 --- a/_downloads/072bdc9a8dc9f5755f43cd4f392085fe/path_patch.py +++ /dev/null @@ -1,56 +0,0 @@ -r""" -================ -PathPatch object -================ - -This example shows how to create `~.path.Path` and `~.patches.PathPatch` objects through -Matplotlib's API. -""" -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots() - -Path = mpath.Path -path_data = [ - (Path.MOVETO, (1.58, -2.57)), - (Path.CURVE4, (0.35, -1.1)), - (Path.CURVE4, (-1.75, 2.0)), - (Path.CURVE4, (0.375, 2.0)), - (Path.LINETO, (0.85, 1.15)), - (Path.CURVE4, (2.2, 3.2)), - (Path.CURVE4, (3, 0.05)), - (Path.CURVE4, (2.0, -0.5)), - (Path.CLOSEPOLY, (1.58, -2.57)), - ] -codes, verts = zip(*path_data) -path = mpath.Path(verts, codes) -patch = mpatches.PathPatch(path, facecolor='r', alpha=0.5) -ax.add_patch(patch) - -# plot control points and connecting lines -x, y = zip(*path.vertices) -line, = ax.plot(x, y, 'go-') - -ax.grid() -ax.axis('equal') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.axes.Axes.add_patch diff --git a/_downloads/072f50d9719fb8fb69d88600996b755c/whats_new_98_4_legend.py b/_downloads/072f50d9719fb8fb69d88600996b755c/whats_new_98_4_legend.py deleted file mode 120000 index b97bd9bb404..00000000000 --- a/_downloads/072f50d9719fb8fb69d88600996b755c/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/072f50d9719fb8fb69d88600996b755c/whats_new_98_4_legend.py \ No newline at end of file diff --git a/_downloads/0730b7a7a3c21af4f7652bcc34e6202c/findobj_demo.py b/_downloads/0730b7a7a3c21af4f7652bcc34e6202c/findobj_demo.py deleted file mode 120000 index 2ae0f51f9e2..00000000000 --- a/_downloads/0730b7a7a3c21af4f7652bcc34e6202c/findobj_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0730b7a7a3c21af4f7652bcc34e6202c/findobj_demo.py \ No newline at end of file diff --git a/_downloads/073122510de986debbe8aabb3b3b2993/integral.ipynb b/_downloads/073122510de986debbe8aabb3b3b2993/integral.ipynb deleted file mode 120000 index 054659773e7..00000000000 --- a/_downloads/073122510de986debbe8aabb3b3b2993/integral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/073122510de986debbe8aabb3b3b2993/integral.ipynb \ No newline at end of file diff --git a/_downloads/07313789a6a55320d499fbd7c6a1cac8/surface3d_2.py b/_downloads/07313789a6a55320d499fbd7c6a1cac8/surface3d_2.py deleted file mode 120000 index 4b854653d95..00000000000 --- a/_downloads/07313789a6a55320d499fbd7c6a1cac8/surface3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/07313789a6a55320d499fbd7c6a1cac8/surface3d_2.py \ No newline at end of file diff --git a/_downloads/073fb9bfebe709b63e0e69bab2dbf976/sankey_rankine.ipynb b/_downloads/073fb9bfebe709b63e0e69bab2dbf976/sankey_rankine.ipynb deleted file mode 100644 index 06ba9fc5501..00000000000 --- a/_downloads/073fb9bfebe709b63e0e69bab2dbf976/sankey_rankine.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rankine power cycle\n\n\nDemonstrate the Sankey class with a practical example of a Rankine power cycle.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom matplotlib.sankey import Sankey\n\nfig = plt.figure(figsize=(8, 9))\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[],\n title=\"Rankine Power Cycle: Example 8.6 from Moran and \"\n \"Shapiro\\n\\x22Fundamentals of Engineering Thermodynamics \"\n \"\\x22, 6th ed., 2008\")\nHdot = [260.431, 35.078, 180.794, 221.115, 22.700,\n 142.361, 10.193, 10.210, 43.670, 44.312,\n 68.631, 10.758, 10.758, 0.017, 0.642,\n 232.121, 44.559, 100.613, 132.168] # MW\nsankey = Sankey(ax=ax, format='%.3G', unit=' MW', gap=0.5, scale=1.0/Hdot[0])\nsankey.add(patchlabel='\\n\\nPump 1', rotation=90, facecolor='#37c959',\n flows=[Hdot[13], Hdot[6], -Hdot[7]],\n labels=['Shaft power', '', None],\n pathlengths=[0.4, 0.883, 0.25],\n orientations=[1, -1, 0])\nsankey.add(patchlabel='\\n\\nOpen\\nheater', facecolor='#37c959',\n flows=[Hdot[11], Hdot[7], Hdot[4], -Hdot[8]],\n labels=[None, '', None, None],\n pathlengths=[0.25, 0.25, 1.93, 0.25],\n orientations=[1, 0, -1, 0], prior=0, connect=(2, 1))\nsankey.add(patchlabel='\\n\\nPump 2', facecolor='#37c959',\n flows=[Hdot[14], Hdot[8], -Hdot[9]],\n labels=['Shaft power', '', None],\n pathlengths=[0.4, 0.25, 0.25],\n orientations=[1, 0, 0], prior=1, connect=(3, 1))\nsankey.add(patchlabel='Closed\\nheater', trunklength=2.914, fc='#37c959',\n flows=[Hdot[9], Hdot[1], -Hdot[11], -Hdot[10]],\n pathlengths=[0.25, 1.543, 0.25, 0.25],\n labels=['', '', None, None],\n orientations=[0, -1, 1, -1], prior=2, connect=(2, 0))\nsankey.add(patchlabel='Trap', facecolor='#37c959', trunklength=5.102,\n flows=[Hdot[11], -Hdot[12]],\n labels=['\\n', None],\n pathlengths=[1.0, 1.01],\n orientations=[1, 1], prior=3, connect=(2, 0))\nsankey.add(patchlabel='Steam\\ngenerator', facecolor='#ff5555',\n flows=[Hdot[15], Hdot[10], Hdot[2], -Hdot[3], -Hdot[0]],\n labels=['Heat rate', '', '', None, None],\n pathlengths=0.25,\n orientations=[1, 0, -1, -1, -1], prior=3, connect=(3, 1))\nsankey.add(patchlabel='\\n\\n\\nTurbine 1', facecolor='#37c959',\n flows=[Hdot[0], -Hdot[16], -Hdot[1], -Hdot[2]],\n labels=['', None, None, None],\n pathlengths=[0.25, 0.153, 1.543, 0.25],\n orientations=[0, 1, -1, -1], prior=5, connect=(4, 0))\nsankey.add(patchlabel='\\n\\n\\nReheat', facecolor='#37c959',\n flows=[Hdot[2], -Hdot[2]],\n labels=[None, None],\n pathlengths=[0.725, 0.25],\n orientations=[-1, 0], prior=6, connect=(3, 0))\nsankey.add(patchlabel='Turbine 2', trunklength=3.212, facecolor='#37c959',\n flows=[Hdot[3], Hdot[16], -Hdot[5], -Hdot[4], -Hdot[17]],\n labels=[None, 'Shaft power', None, '', 'Shaft power'],\n pathlengths=[0.751, 0.15, 0.25, 1.93, 0.25],\n orientations=[0, -1, 0, -1, 1], prior=6, connect=(1, 1))\nsankey.add(patchlabel='Condenser', facecolor='#58b1fa', trunklength=1.764,\n flows=[Hdot[5], -Hdot[18], -Hdot[6]],\n labels=['', 'Heat rate', None],\n pathlengths=[0.45, 0.25, 0.883],\n orientations=[-1, 1, 0], prior=8, connect=(2, 0))\ndiagrams = sankey.finish()\nfor diagram in diagrams:\n diagram.text.set_fontweight('bold')\n diagram.text.set_fontsize('10')\n for text in diagram.texts:\n text.set_fontsize('10')\n# Notice that the explicit connections are handled automatically, but the\n# implicit ones currently are not. The lengths of the paths and the trunks\n# must be adjusted manually, and that is a bit tricky.\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.sankey\nmatplotlib.sankey.Sankey\nmatplotlib.sankey.Sankey.add\nmatplotlib.sankey.Sankey.finish" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0744ccc42d65c81eac835316fafdc64e/custom_boxstyle02.py b/_downloads/0744ccc42d65c81eac835316fafdc64e/custom_boxstyle02.py deleted file mode 120000 index b34446a6a7b..00000000000 --- a/_downloads/0744ccc42d65c81eac835316fafdc64e/custom_boxstyle02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0744ccc42d65c81eac835316fafdc64e/custom_boxstyle02.py \ No newline at end of file diff --git a/_downloads/0745cf25f228335d820010463f92f1c6/timers.ipynb b/_downloads/0745cf25f228335d820010463f92f1c6/timers.ipynb deleted file mode 100644 index 039547db6fa..00000000000 --- a/_downloads/0745cf25f228335d820010463f92f1c6/timers.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Timers\n\n\nSimple example of using general timer objects. This is used to update\nthe time placed in the title of the figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom datetime import datetime\n\n\ndef update_title(axes):\n axes.set_title(datetime.now())\n axes.figure.canvas.draw()\n\nfig, ax = plt.subplots()\n\nx = np.linspace(-3, 3)\nax.plot(x, x ** 2)\n\n# Create a new timer object. Set the interval to 100 milliseconds\n# (1000 is default) and tell the timer what function should be called.\ntimer = fig.canvas.new_timer(interval=100)\ntimer.add_callback(update_title, ax)\ntimer.start()\n\n# Or could start the timer on first figure draw\n#def start_timer(evt):\n# timer.start()\n# fig.canvas.mpl_disconnect(drawid)\n#drawid = fig.canvas.mpl_connect('draw_event', start_timer)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0747edf0c5c95fc21ba327b8d0689138/coords_demo.py b/_downloads/0747edf0c5c95fc21ba327b8d0689138/coords_demo.py deleted file mode 100644 index 65047f7a76f..00000000000 --- a/_downloads/0747edf0c5c95fc21ba327b8d0689138/coords_demo.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -=========== -Coords demo -=========== - -An example of how to interact with the plotting canvas by connecting to move -and click events. -""" - -from matplotlib.backend_bases import MouseButton -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2 * np.pi * t) -fig, ax = plt.subplots() -ax.plot(t, s) - - -def on_move(event): - # get the x and y pixel coords - x, y = event.x, event.y - if event.inaxes: - ax = event.inaxes # the axes instance - print('data coords %f %f' % (event.xdata, event.ydata)) - - -def on_click(event): - if event.button is MouseButton.LEFT: - print('disconnecting callback') - plt.disconnect(binding_id) - - -binding_id = plt.connect('motion_notify_event', on_move) -plt.connect('button_press_event', on_click) - -plt.show() diff --git a/_downloads/0749d37b2a966bc90e187a7e9e2258fa/xcorr_acorr_demo.ipynb b/_downloads/0749d37b2a966bc90e187a7e9e2258fa/xcorr_acorr_demo.ipynb deleted file mode 100644 index 74bbc3a19a1..00000000000 --- a/_downloads/0749d37b2a966bc90e187a7e9e2258fa/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Cross- and Auto-Correlation Demo\n\n\nExample use of cross-correlation (`~.Axes.xcorr`) and auto-correlation\n(`~.Axes.acorr`) plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx, y = np.random.randn(2, 100)\nfig, [ax1, ax2] = plt.subplots(2, 1, sharex=True)\nax1.xcorr(x, y, usevlines=True, maxlags=50, normed=True, lw=2)\nax1.grid(True)\n\nax2.acorr(x, usevlines=True, normed=True, maxlags=50, lw=2)\nax2.grid(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.acorr\nmatplotlib.axes.Axes.xcorr\nmatplotlib.pyplot.acorr\nmatplotlib.pyplot.xcorr" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0754e7eb62aa77316c94ad6d93716334/frame_grabbing_sgskip.py b/_downloads/0754e7eb62aa77316c94ad6d93716334/frame_grabbing_sgskip.py deleted file mode 120000 index 25e7220e2ee..00000000000 --- a/_downloads/0754e7eb62aa77316c94ad6d93716334/frame_grabbing_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0754e7eb62aa77316c94ad6d93716334/frame_grabbing_sgskip.py \ No newline at end of file diff --git a/_downloads/075869e3d7e9869ea0bb6f5a1b4de309/contour_demo.py b/_downloads/075869e3d7e9869ea0bb6f5a1b4de309/contour_demo.py deleted file mode 120000 index f64009eca4c..00000000000 --- a/_downloads/075869e3d7e9869ea0bb6f5a1b4de309/contour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/075869e3d7e9869ea0bb6f5a1b4de309/contour_demo.py \ No newline at end of file diff --git a/_downloads/0760bc467fff038692a2715393edde25/voxels_rgb.py b/_downloads/0760bc467fff038692a2715393edde25/voxels_rgb.py deleted file mode 120000 index 99691e96062..00000000000 --- a/_downloads/0760bc467fff038692a2715393edde25/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0760bc467fff038692a2715393edde25/voxels_rgb.py \ No newline at end of file diff --git a/_downloads/0762ea27381c74d0de39ff7877da7ad8/subplot3d.py b/_downloads/0762ea27381c74d0de39ff7877da7ad8/subplot3d.py deleted file mode 100644 index e9c1c3f2d71..00000000000 --- a/_downloads/0762ea27381c74d0de39ff7877da7ad8/subplot3d.py +++ /dev/null @@ -1,48 +0,0 @@ -''' -==================== -3D plots as subplots -==================== - -Demonstrate including 3D plots as subplots. -''' - -import matplotlib.pyplot as plt -from matplotlib import cm -import numpy as np - -from mpl_toolkits.mplot3d.axes3d import get_test_data -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -# set up a figure twice as wide as it is tall -fig = plt.figure(figsize=plt.figaspect(0.5)) - -#=============== -# First subplot -#=============== -# set up the axes for the first plot -ax = fig.add_subplot(1, 2, 1, projection='3d') - -# plot a 3D surface like in the example mplot3d/surface3d_demo -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) -surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm, - linewidth=0, antialiased=False) -ax.set_zlim(-1.01, 1.01) -fig.colorbar(surf, shrink=0.5, aspect=10) - -#=============== -# Second subplot -#=============== -# set up the axes for the second plot -ax = fig.add_subplot(1, 2, 2, projection='3d') - -# plot a 3D wireframe like in the example mplot3d/wire3d_demo -X, Y, Z = get_test_data(0.05) -ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) - -plt.show() diff --git a/_downloads/0763b81468dd2366dce6f70cd98d7d90/gradient_bar.py b/_downloads/0763b81468dd2366dce6f70cd98d7d90/gradient_bar.py deleted file mode 120000 index 25ab9253d0e..00000000000 --- a/_downloads/0763b81468dd2366dce6f70cd98d7d90/gradient_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0763b81468dd2366dce6f70cd98d7d90/gradient_bar.py \ No newline at end of file diff --git a/_downloads/076efe9503f111a8c90bf17e4e7c5dba/load_converter.py b/_downloads/076efe9503f111a8c90bf17e4e7c5dba/load_converter.py deleted file mode 120000 index 279f6d08b66..00000000000 --- a/_downloads/076efe9503f111a8c90bf17e4e7c5dba/load_converter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/076efe9503f111a8c90bf17e4e7c5dba/load_converter.py \ No newline at end of file diff --git a/_downloads/077076056d11728f4231a3c917331666/errorbar_features.ipynb b/_downloads/077076056d11728f4231a3c917331666/errorbar_features.ipynb deleted file mode 100644 index 193123411df..00000000000 --- a/_downloads/077076056d11728f4231a3c917331666/errorbar_features.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Different ways of specifying error bars\n\n\nErrors can be specified as a constant value (as shown in\n`errorbar_demo.py`). However, this example demonstrates\nhow they vary by specifying arrays of error values.\n\nIf the raw ``x`` and ``y`` data have length N, there are two options:\n\nArray of shape (N,):\n Error varies for each point, but the error values are\n symmetric (i.e. the lower and upper values are equal).\n\nArray of shape (2, N):\n Error varies for each point, and the lower and upper limits\n (in that order) are different (asymmetric case)\n\nIn addition, this example demonstrates how to use log\nscale with error bars.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.arange(0.1, 4, 0.5)\ny = np.exp(-x)\n\n# example error bar values that vary with x-position\nerror = 0.1 + 0.2 * x\n\nfig, (ax0, ax1) = plt.subplots(nrows=2, sharex=True)\nax0.errorbar(x, y, yerr=error, fmt='-o')\nax0.set_title('variable, symmetric error')\n\n# error bar values w/ different -/+ errors that\n# also vary with the x-position\nlower_error = 0.4 * error\nupper_error = error\nasymmetric_error = [lower_error, upper_error]\n\nax1.errorbar(x, y, xerr=asymmetric_error, fmt='o')\nax1.set_title('variable, asymmetric error')\nax1.set_yscale('log')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/07709088c063d3e82081d85e9fc23405/demo_gridspec03.ipynb b/_downloads/07709088c063d3e82081d85e9fc23405/demo_gridspec03.ipynb deleted file mode 120000 index 8c0495b4897..00000000000 --- a/_downloads/07709088c063d3e82081d85e9fc23405/demo_gridspec03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/07709088c063d3e82081d85e9fc23405/demo_gridspec03.ipynb \ No newline at end of file diff --git a/_downloads/0783af42818b53741fbf9b026190ed84/centered_spines_with_arrows.py b/_downloads/0783af42818b53741fbf9b026190ed84/centered_spines_with_arrows.py deleted file mode 120000 index b540de8f93e..00000000000 --- a/_downloads/0783af42818b53741fbf9b026190ed84/centered_spines_with_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/0783af42818b53741fbf9b026190ed84/centered_spines_with_arrows.py \ No newline at end of file diff --git a/_downloads/078fbb81559e2fc921be68fd71a81cb6/common_date_problems.py b/_downloads/078fbb81559e2fc921be68fd71a81cb6/common_date_problems.py deleted file mode 120000 index a10d183e608..00000000000 --- a/_downloads/078fbb81559e2fc921be68fd71a81cb6/common_date_problems.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/078fbb81559e2fc921be68fd71a81cb6/common_date_problems.py \ No newline at end of file diff --git a/_downloads/078fd3d92f5973675672376a8a6edfd3/multicolored_line.ipynb b/_downloads/078fd3d92f5973675672376a8a6edfd3/multicolored_line.ipynb deleted file mode 120000 index 3ea1a8040b0..00000000000 --- a/_downloads/078fd3d92f5973675672376a8a6edfd3/multicolored_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/078fd3d92f5973675672376a8a6edfd3/multicolored_line.ipynb \ No newline at end of file diff --git a/_downloads/0791d1d23a687fbe5f0916bf1e77a3a1/errorbar_plot.ipynb b/_downloads/0791d1d23a687fbe5f0916bf1e77a3a1/errorbar_plot.ipynb deleted file mode 120000 index 106c82b500a..00000000000 --- a/_downloads/0791d1d23a687fbe5f0916bf1e77a3a1/errorbar_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0791d1d23a687fbe5f0916bf1e77a3a1/errorbar_plot.ipynb \ No newline at end of file diff --git a/_downloads/07957815333267dfc2455c1508acab59/shared_axis_demo.py b/_downloads/07957815333267dfc2455c1508acab59/shared_axis_demo.py deleted file mode 120000 index db872bcd0ce..00000000000 --- a/_downloads/07957815333267dfc2455c1508acab59/shared_axis_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/07957815333267dfc2455c1508acab59/shared_axis_demo.py \ No newline at end of file diff --git a/_downloads/079929a54ccc96ca99bdff0347abe2b4/spectrum_demo.ipynb b/_downloads/079929a54ccc96ca99bdff0347abe2b4/spectrum_demo.ipynb deleted file mode 100644 index 02fce2c77c5..00000000000 --- a/_downloads/079929a54ccc96ca99bdff0347abe2b4/spectrum_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spectrum Representations\n\n\nThe plots show different spectrum representations of a sine signal with\nadditive noise. A (frequency) spectrum of a discrete-time signal is calculated\nby utilizing the fast Fourier transform (FFT).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nnp.random.seed(0)\n\ndt = 0.01 # sampling interval\nFs = 1 / dt # sampling frequency\nt = np.arange(0, 10, dt)\n\n# generate noise:\nnse = np.random.randn(len(t))\nr = np.exp(-t / 0.05)\ncnse = np.convolve(nse, r) * dt\ncnse = cnse[:len(t)]\n\ns = 0.1 * np.sin(4 * np.pi * t) + cnse # the signal\n\nfig, axes = plt.subplots(nrows=3, ncols=2, figsize=(7, 7))\n\n# plot time signal:\naxes[0, 0].set_title(\"Signal\")\naxes[0, 0].plot(t, s, color='C0')\naxes[0, 0].set_xlabel(\"Time\")\naxes[0, 0].set_ylabel(\"Amplitude\")\n\n# plot different spectrum types:\naxes[1, 0].set_title(\"Magnitude Spectrum\")\naxes[1, 0].magnitude_spectrum(s, Fs=Fs, color='C1')\n\naxes[1, 1].set_title(\"Log. Magnitude Spectrum\")\naxes[1, 1].magnitude_spectrum(s, Fs=Fs, scale='dB', color='C1')\n\naxes[2, 0].set_title(\"Phase Spectrum \")\naxes[2, 0].phase_spectrum(s, Fs=Fs, color='C2')\n\naxes[2, 1].set_title(\"Angle Spectrum\")\naxes[2, 1].angle_spectrum(s, Fs=Fs, color='C2')\n\naxes[0, 1].remove() # don't display empty ax\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0799794f932c01b75b2fd4ac424177ee/date_index_formatter.ipynb b/_downloads/0799794f932c01b75b2fd4ac424177ee/date_index_formatter.ipynb deleted file mode 100644 index b50e06021c9..00000000000 --- a/_downloads/0799794f932c01b75b2fd4ac424177ee/date_index_formatter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom tick formatter for time series\n\n\nWhen plotting time series, e.g., financial time series, one often wants\nto leave out days on which there is no data, i.e. weekends. The example\nbelow shows how to use an 'index formatter' to achieve the desired plot\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport matplotlib.ticker as ticker\n\n# Load a numpy record array from yahoo csv data with fields date, open, close,\n# volume, adj_close from the mpl-data/example directory. The record array\n# stores the date as an np.datetime64 with a day unit ('D') in the date column.\nwith cbook.get_sample_data('goog.npz') as datafile:\n r = np.load(datafile)['price_data'].view(np.recarray)\nr = r[-30:] # get the last 30 days\n# Matplotlib works better with datetime.datetime than np.datetime64, but the\n# latter is more portable.\ndate = r.date.astype('O')\n\n# first we'll do it the default way, with gaps on weekends\nfig, axes = plt.subplots(ncols=2, figsize=(8, 4))\nax = axes[0]\nax.plot(date, r.adj_close, 'o-')\nax.set_title(\"Default\")\nfig.autofmt_xdate()\n\n# next we'll write a custom formatter\nN = len(r)\nind = np.arange(N) # the evenly spaced plot indices\n\n\ndef format_date(x, pos=None):\n thisind = np.clip(int(x + 0.5), 0, N - 1)\n return date[thisind].strftime('%Y-%m-%d')\n\nax = axes[1]\nax.plot(ind, r.adj_close, 'o-')\nax.xaxis.set_major_formatter(ticker.FuncFormatter(format_date))\nax.set_title(\"Custom tick formatter\")\nfig.autofmt_xdate()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/079cc2743a3f542b7b2d17ff6b7b6587/font_table.ipynb b/_downloads/079cc2743a3f542b7b2d17ff6b7b6587/font_table.ipynb deleted file mode 100644 index f584196b43f..00000000000 --- a/_downloads/079cc2743a3f542b7b2d17ff6b7b6587/font_table.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Font table\n\n\nMatplotlib's font support is provided by the FreeType library.\n\nHere, we use `~.Axes.table` to draw a table that shows the glyphs by Unicode\ncodepoint. For brevity, the table only contains the first 256 glyphs.\n\nThe example is a full working script. You can download it and use it to\ninvestigate a font by running ::\n\n python font_table.py /path/to/font/file\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import unicodedata\n\nimport matplotlib.font_manager as fm\nfrom matplotlib.ft2font import FT2Font\nimport matplotlib.pyplot as plt\n\n\ndef print_glyphs(path):\n \"\"\"\n Print the all glyphs in the given font file to stdout.\n\n Parameters\n ----------\n path : str or None\n The path to the font file. If None, use Matplotlib's default font.\n \"\"\"\n if path is None:\n path = fm.findfont(fm.FontProperties()) # The default font.\n\n font = FT2Font(path)\n\n charmap = font.get_charmap()\n max_indices_len = len(str(max(charmap.values())))\n\n print(\"The font face contains the following glyphs:\")\n for char_code, glyph_index in charmap.items():\n char = chr(char_code)\n name = unicodedata.name(\n char,\n f\"{char_code:#x} ({font.get_glyph_name(glyph_index)})\")\n print(f\"{glyph_index:>{max_indices_len}} {char} {name}\")\n\n\ndef draw_font_table(path):\n \"\"\"\n Draw a font table of the first 255 chars of the given font.\n\n Parameters\n ----------\n path : str or None\n The path to the font file. If None, use Matplotlib's default font.\n \"\"\"\n if path is None:\n path = fm.findfont(fm.FontProperties()) # The default font.\n\n font = FT2Font(path)\n # A charmap is a mapping of \"character codes\" (in the sense of a character\n # encoding, e.g. latin-1) to glyph indices (i.e. the internal storage table\n # of the font face).\n # In FreeType>=2.1, a Unicode charmap (i.e. mapping Unicode codepoints)\n # is selected by default. Moreover, recent versions of FreeType will\n # automatically synthesize such a charmap if the font does not include one\n # (this behavior depends on the font format; for example it is present\n # since FreeType 2.0 for Type 1 fonts but only since FreeType 2.8 for\n # TrueType (actually, SFNT) fonts).\n # The code below (specifically, the ``chr(char_code)`` call) assumes that\n # we have indeed selected a Unicode charmap.\n codes = font.get_charmap().items()\n\n labelc = [\"{:X}\".format(i) for i in range(16)]\n labelr = [\"{:02X}\".format(16 * i) for i in range(16)]\n chars = [[\"\" for c in range(16)] for r in range(16)]\n\n for char_code, glyph_index in codes:\n if char_code >= 256:\n continue\n row, col = divmod(char_code, 16)\n chars[row][col] = chr(char_code)\n\n fig, ax = plt.subplots(figsize=(8, 4))\n ax.set_title(path)\n ax.set_axis_off()\n\n table = ax.table(\n cellText=chars,\n rowLabels=labelr,\n colLabels=labelc,\n rowColours=[\"palegreen\"] * 16,\n colColours=[\"palegreen\"] * 16,\n cellColours=[[\".95\" for c in range(16)] for r in range(16)],\n cellLoc='center',\n loc='upper left',\n )\n for key, cell in table.get_celld().items():\n row, col = key\n if row > 0 and col > -1: # Beware of table's idiosyncratic indexing...\n cell.set_text_props(fontproperties=fm.FontProperties(fname=path))\n\n fig.tight_layout()\n plt.show()\n\n\nif __name__ == \"__main__\":\n from argparse import ArgumentParser\n\n parser = ArgumentParser(description=\"Display a font table.\")\n parser.add_argument(\"path\", nargs=\"?\", help=\"Path to the font file.\")\n parser.add_argument(\"--print-all\", action=\"store_true\",\n help=\"Additionally, print all chars to stdout.\")\n args = parser.parse_args()\n\n if args.print_all:\n print_glyphs(args.path)\n draw_font_table(args.path)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/079d029d5fdaaffe33b7bb1b6fea83a3/colormap_normalizations_diverging.py b/_downloads/079d029d5fdaaffe33b7bb1b6fea83a3/colormap_normalizations_diverging.py deleted file mode 120000 index 833cef6e2eb..00000000000 --- a/_downloads/079d029d5fdaaffe33b7bb1b6fea83a3/colormap_normalizations_diverging.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/079d029d5fdaaffe33b7bb1b6fea83a3/colormap_normalizations_diverging.py \ No newline at end of file diff --git a/_downloads/07a9488814cca10d5122c0c5527bcaaf/demo_parasite_axes2.py b/_downloads/07a9488814cca10d5122c0c5527bcaaf/demo_parasite_axes2.py deleted file mode 120000 index 7f1d7e9c7f9..00000000000 --- a/_downloads/07a9488814cca10d5122c0c5527bcaaf/demo_parasite_axes2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/07a9488814cca10d5122c0c5527bcaaf/demo_parasite_axes2.py \ No newline at end of file diff --git a/_downloads/07aba8e735ad3710b5ac56038fe30c99/arctest.py b/_downloads/07aba8e735ad3710b5ac56038fe30c99/arctest.py deleted file mode 120000 index f9d97600824..00000000000 --- a/_downloads/07aba8e735ad3710b5ac56038fe30c99/arctest.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/07aba8e735ad3710b5ac56038fe30c99/arctest.py \ No newline at end of file diff --git a/_downloads/07abe9ef62ba843068bf498c9c055ad7/pipong.py b/_downloads/07abe9ef62ba843068bf498c9c055ad7/pipong.py deleted file mode 120000 index f822e8c0331..00000000000 --- a/_downloads/07abe9ef62ba843068bf498c9c055ad7/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/07abe9ef62ba843068bf498c9c055ad7/pipong.py \ No newline at end of file diff --git a/_downloads/07ad155919458cac302cb166790b0674/pyplot_formatstr.py b/_downloads/07ad155919458cac302cb166790b0674/pyplot_formatstr.py deleted file mode 120000 index 2baa8481801..00000000000 --- a/_downloads/07ad155919458cac302cb166790b0674/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/07ad155919458cac302cb166790b0674/pyplot_formatstr.py \ No newline at end of file diff --git a/_downloads/07bcd4dab07375988c12aca920055593/pyplot_three.ipynb b/_downloads/07bcd4dab07375988c12aca920055593/pyplot_three.ipynb deleted file mode 120000 index 1ae4d744ff4..00000000000 --- a/_downloads/07bcd4dab07375988c12aca920055593/pyplot_three.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/07bcd4dab07375988c12aca920055593/pyplot_three.ipynb \ No newline at end of file diff --git a/_downloads/07be670897832f37b9d1377632730d98/image_clip_path.ipynb b/_downloads/07be670897832f37b9d1377632730d98/image_clip_path.ipynb deleted file mode 120000 index 687080ed3aa..00000000000 --- a/_downloads/07be670897832f37b9d1377632730d98/image_clip_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/07be670897832f37b9d1377632730d98/image_clip_path.ipynb \ No newline at end of file diff --git a/_downloads/07c45ecae5eda64ea8fdf82a677b2bdb/multiple_yaxis_with_spines.py b/_downloads/07c45ecae5eda64ea8fdf82a677b2bdb/multiple_yaxis_with_spines.py deleted file mode 120000 index 21aa656e915..00000000000 --- a/_downloads/07c45ecae5eda64ea8fdf82a677b2bdb/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/07c45ecae5eda64ea8fdf82a677b2bdb/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/07c4eca38fdcd17bce255be670546b24/quiver_simple_demo.py b/_downloads/07c4eca38fdcd17bce255be670546b24/quiver_simple_demo.py deleted file mode 120000 index d12dee1c2e7..00000000000 --- a/_downloads/07c4eca38fdcd17bce255be670546b24/quiver_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/07c4eca38fdcd17bce255be670546b24/quiver_simple_demo.py \ No newline at end of file diff --git a/_downloads/07c61e1fbdfee4a2c4ca153f0e21a171/simple_axesgrid.py b/_downloads/07c61e1fbdfee4a2c4ca153f0e21a171/simple_axesgrid.py deleted file mode 120000 index df789d662b3..00000000000 --- a/_downloads/07c61e1fbdfee4a2c4ca153f0e21a171/simple_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/07c61e1fbdfee4a2c4ca153f0e21a171/simple_axesgrid.py \ No newline at end of file diff --git a/_downloads/07c960a220c53d40dac04606002d0bbe/hatch_demo.ipynb b/_downloads/07c960a220c53d40dac04606002d0bbe/hatch_demo.ipynb deleted file mode 120000 index fd92cdde9ea..00000000000 --- a/_downloads/07c960a220c53d40dac04606002d0bbe/hatch_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/07c960a220c53d40dac04606002d0bbe/hatch_demo.ipynb \ No newline at end of file diff --git a/_downloads/07cecab8b51c49078f3537e6f57773f7/gallery_jupyter.zip b/_downloads/07cecab8b51c49078f3537e6f57773f7/gallery_jupyter.zip deleted file mode 120000 index 1623d2af6ec..00000000000 --- a/_downloads/07cecab8b51c49078f3537e6f57773f7/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.2/_downloads/07cecab8b51c49078f3537e6f57773f7/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/07dc5a95fb1c93323a31a36b68196113/axes_margins.ipynb b/_downloads/07dc5a95fb1c93323a31a36b68196113/axes_margins.ipynb deleted file mode 120000 index 266d3522464..00000000000 --- a/_downloads/07dc5a95fb1c93323a31a36b68196113/axes_margins.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/07dc5a95fb1c93323a31a36b68196113/axes_margins.ipynb \ No newline at end of file diff --git a/_downloads/07e308561519b34e9c720dccaf91c1ab/demo_gridspec06.ipynb b/_downloads/07e308561519b34e9c720dccaf91c1ab/demo_gridspec06.ipynb deleted file mode 120000 index c6ab392ad46..00000000000 --- a/_downloads/07e308561519b34e9c720dccaf91c1ab/demo_gridspec06.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/07e308561519b34e9c720dccaf91c1ab/demo_gridspec06.ipynb \ No newline at end of file diff --git a/_downloads/07e64378616d93d4fa17eaf626e5d9e8/embedding_in_wx3_sgskip.py b/_downloads/07e64378616d93d4fa17eaf626e5d9e8/embedding_in_wx3_sgskip.py deleted file mode 120000 index 9b6d61631b6..00000000000 --- a/_downloads/07e64378616d93d4fa17eaf626e5d9e8/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/07e64378616d93d4fa17eaf626e5d9e8/embedding_in_wx3_sgskip.py \ No newline at end of file diff --git a/_downloads/07eaf6fd334c6419c6055d35ed6df1b6/linestyles.ipynb b/_downloads/07eaf6fd334c6419c6055d35ed6df1b6/linestyles.ipynb deleted file mode 100644 index 477ce76f4e7..00000000000 --- a/_downloads/07eaf6fd334c6419c6055d35ed6df1b6/linestyles.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Linestyles\n\n\nSimple linestyles can be defined using the strings \"solid\", \"dotted\", \"dashed\"\nor \"dashdot\". More refined control can be achieved by providing a dash tuple\n``(offset, (on_off_seq))``. For example, ``(0, (3, 10, 1, 15))`` means\n(3pt line, 10pt space, 1pt line, 15pt space) with no offset. See also\n`.Line2D.set_linestyle`.\n\n*Note*: The dash style can also be configured via `.Line2D.set_dashes`\nas shown in :doc:`/gallery/lines_bars_and_markers/line_demo_dash_control`\nand passing a list of dash sequences using the keyword *dashes* to the\ncycler in :doc:`property_cycle `.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nlinestyle_str = [\n ('solid', 'solid'), # Same as (0, ()) or '-'\n ('dotted', 'dotted'), # Same as (0, (1, 1)) or '.'\n ('dashed', 'dashed'), # Same as '--'\n ('dashdot', 'dashdot')] # Same as '-.'\n\nlinestyle_tuple = [\n ('loosely dotted', (0, (1, 10))),\n ('dotted', (0, (1, 1))),\n ('densely dotted', (0, (1, 1))),\n\n ('loosely dashed', (0, (5, 10))),\n ('dashed', (0, (5, 5))),\n ('densely dashed', (0, (5, 1))),\n\n ('loosely dashdotted', (0, (3, 10, 1, 10))),\n ('dashdotted', (0, (3, 5, 1, 5))),\n ('densely dashdotted', (0, (3, 1, 1, 1))),\n\n ('dashdotdotted', (0, (3, 5, 1, 5, 1, 5))),\n ('loosely dashdotdotted', (0, (3, 10, 1, 10, 1, 10))),\n ('densely dashdotdotted', (0, (3, 1, 1, 1, 1, 1)))]\n\n\ndef plot_linestyles(ax, linestyles):\n X, Y = np.linspace(0, 100, 10), np.zeros(10)\n yticklabels = []\n\n for i, (name, linestyle) in enumerate(linestyles):\n ax.plot(X, Y+i, linestyle=linestyle, linewidth=1.5, color='black')\n yticklabels.append(name)\n\n ax.set(xticks=[], ylim=(-0.5, len(linestyles)-0.5),\n yticks=np.arange(len(linestyles)), yticklabels=yticklabels)\n\n # For each line style, add a text annotation with a small offset from\n # the reference point (0 in Axes coords, y tick value in Data coords).\n for i, (name, linestyle) in enumerate(linestyles):\n ax.annotate(repr(linestyle),\n xy=(0.0, i), xycoords=ax.get_yaxis_transform(),\n xytext=(-6, -12), textcoords='offset points',\n color=\"blue\", fontsize=8, ha=\"right\", family=\"monospace\")\n\n\nfig, (ax0, ax1) = plt.subplots(2, 1, gridspec_kw={'height_ratios': [1, 3]},\n figsize=(10, 8))\n\nplot_linestyles(ax0, linestyle_str[::-1])\nplot_linestyles(ax1, linestyle_tuple[::-1])\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/07f4b5c23cebf7bfed820aff2176d459/colormap-manipulation.py b/_downloads/07f4b5c23cebf7bfed820aff2176d459/colormap-manipulation.py deleted file mode 120000 index 6ced52fc51d..00000000000 --- a/_downloads/07f4b5c23cebf7bfed820aff2176d459/colormap-manipulation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/07f4b5c23cebf7bfed820aff2176d459/colormap-manipulation.py \ No newline at end of file diff --git a/_downloads/080b4c93453b15e46f014f078b163e90/spines_dropped.py b/_downloads/080b4c93453b15e46f014f078b163e90/spines_dropped.py deleted file mode 100644 index 4b7bbbac3a7..00000000000 --- a/_downloads/080b4c93453b15e46f014f078b163e90/spines_dropped.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============== -Dropped spines -============== - -Demo of spines offset from the axes (a.k.a. "dropped spines"). -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() - -image = np.random.uniform(size=(10, 10)) -ax.imshow(image, cmap=plt.cm.gray, interpolation='nearest') -ax.set_title('dropped spines') - -# Move left and bottom spines outward by 10 points -ax.spines['left'].set_position(('outward', 10)) -ax.spines['bottom'].set_position(('outward', 10)) -# Hide the right and top spines -ax.spines['right'].set_visible(False) -ax.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax.yaxis.set_ticks_position('left') -ax.xaxis.set_ticks_position('bottom') - -plt.show() diff --git a/_downloads/08204f760ca1d178acca434333c21c5c/tight_layout_guide.py b/_downloads/08204f760ca1d178acca434333c21c5c/tight_layout_guide.py deleted file mode 100644 index 1c1efc694a3..00000000000 --- a/_downloads/08204f760ca1d178acca434333c21c5c/tight_layout_guide.py +++ /dev/null @@ -1,368 +0,0 @@ -""" -================== -Tight Layout guide -================== - -How to use tight-layout to fit plots within your figure cleanly. - -*tight_layout* automatically adjusts subplot params so that the -subplot(s) fits in to the figure area. This is an experimental -feature and may not work for some cases. It only checks the extents -of ticklabels, axis labels, and titles. - -An alternative to *tight_layout* is :doc:`constrained_layout -`. - - -Simple Example -============== - -In matplotlib, the location of axes (including subplots) are specified in -normalized figure coordinates. It can happen that your axis labels or -titles (or sometimes even ticklabels) go outside the figure area, and are thus -clipped. - -""" - -# sphinx_gallery_thumbnail_number = 7 - -import matplotlib.pyplot as plt -import numpy as np - -plt.rcParams['savefig.facecolor'] = "0.8" - - -def example_plot(ax, fontsize=12): - ax.plot([1, 2]) - - ax.locator_params(nbins=3) - ax.set_xlabel('x-label', fontsize=fontsize) - ax.set_ylabel('y-label', fontsize=fontsize) - ax.set_title('Title', fontsize=fontsize) - -plt.close('all') -fig, ax = plt.subplots() -example_plot(ax, fontsize=24) - -############################################################################### -# To prevent this, the location of axes needs to be adjusted. For -# subplots, this can be done by adjusting the subplot params -# (:ref:`howto-subplots-adjust`). Matplotlib v1.1 introduces a new -# command :func:`~matplotlib.pyplot.tight_layout` that does this -# automatically for you. - -fig, ax = plt.subplots() -example_plot(ax, fontsize=24) -plt.tight_layout() - -############################################################################### -# Note that :func:`matplotlib.pyplot.tight_layout` will only adjust the -# subplot params when it is called. In order to perform this adjustment each -# time the figure is redrawn, you can call ``fig.set_tight_layout(True)``, or, -# equivalently, set the ``figure.autolayout`` rcParam to ``True``. -# -# When you have multiple subplots, often you see labels of different -# axes overlapping each other. - -plt.close('all') - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -############################################################################### -# :func:`~matplotlib.pyplot.tight_layout` will also adjust spacing between -# subplots to minimize the overlaps. - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) -plt.tight_layout() - -############################################################################### -# :func:`~matplotlib.pyplot.tight_layout` can take keyword arguments of -# *pad*, *w_pad* and *h_pad*. These control the extra padding around the -# figure border and between subplots. The pads are specified in fraction -# of fontsize. - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) -plt.tight_layout(pad=0.4, w_pad=0.5, h_pad=1.0) - -############################################################################### -# :func:`~matplotlib.pyplot.tight_layout` will work even if the sizes of -# subplots are different as far as their grid specification is -# compatible. In the example below, *ax1* and *ax2* are subplots of a 2x2 -# grid, while *ax3* is of a 1x2 grid. - -plt.close('all') -fig = plt.figure() - -ax1 = plt.subplot(221) -ax2 = plt.subplot(223) -ax3 = plt.subplot(122) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -plt.tight_layout() - -############################################################################### -# It works with subplots created with -# :func:`~matplotlib.pyplot.subplot2grid`. In general, subplots created -# from the gridspec (:doc:`/tutorials/intermediate/gridspec`) will work. - -plt.close('all') -fig = plt.figure() - -ax1 = plt.subplot2grid((3, 3), (0, 0)) -ax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2) -ax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -plt.tight_layout() - -############################################################################### -# Although not thoroughly tested, it seems to work for subplots with -# aspect != "auto" (e.g., axes with images). - -arr = np.arange(100).reshape((10, 10)) - -plt.close('all') -fig = plt.figure(figsize=(5, 4)) - -ax = plt.subplot(111) -im = ax.imshow(arr, interpolation="none") - -plt.tight_layout() - -############################################################################### -# Caveats -# ======= -# -# * :func:`~matplotlib.pyplot.tight_layout` only considers ticklabels, axis -# labels, and titles. Thus, other artists may be clipped and also may -# overlap. -# -# * It assumes that the extra space needed for ticklabels, axis labels, -# and titles is independent of original location of axes. This is -# often true, but there are rare cases where it is not. -# -# * pad=0 clips some of the texts by a few pixels. This may be a bug or -# a limitation of the current algorithm and it is not clear why it -# happens. Meanwhile, use of pad at least larger than 0.3 is -# recommended. -# -# Use with GridSpec -# ================= -# -# GridSpec has its own :func:`~matplotlib.gridspec.GridSpec.tight_layout` method -# (the pyplot api :func:`~matplotlib.pyplot.tight_layout` also works). - -import matplotlib.gridspec as gridspec - -plt.close('all') -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig) - -############################################################################### -# You may provide an optional *rect* parameter, which specifies the bounding box -# that the subplots will be fit inside. The coordinates must be in normalized -# figure coordinates and the default is (0, 0, 1, 1). - -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig, rect=[0, 0, 0.5, 1]) - -############################################################################### -# For example, this can be used for a figure with multiple gridspecs. - -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig, rect=[0, 0, 0.5, 1]) - -gs2 = gridspec.GridSpec(3, 1) - -for ss in gs2: - ax = fig.add_subplot(ss) - example_plot(ax) - ax.set_title("") - ax.set_xlabel("") - -ax.set_xlabel("x-label", fontsize=12) - -gs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5) - -# We may try to match the top and bottom of two grids :: -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.update(top=top, bottom=bottom) -gs2.update(top=top, bottom=bottom) -plt.show() - -############################################################################### -# While this should be mostly good enough, adjusting top and bottom -# may require adjustment of hspace also. To update hspace & vspace, we -# call :func:`~matplotlib.gridspec.GridSpec.tight_layout` again with updated -# rect argument. Note that the rect argument specifies the area including the -# ticklabels, etc. Thus, we will increase the bottom (which is 0 for the normal -# case) by the difference between the *bottom* from above and the bottom of each -# gridspec. Same thing for the top. - -fig = plt.gcf() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig, rect=[0, 0, 0.5, 1]) - -gs2 = gridspec.GridSpec(3, 1) - -for ss in gs2: - ax = fig.add_subplot(ss) - example_plot(ax) - ax.set_title("") - ax.set_xlabel("") - -ax.set_xlabel("x-label", fontsize=12) - -gs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5) - -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.update(top=top, bottom=bottom) -gs2.update(top=top, bottom=bottom) - -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.tight_layout(fig, rect=[None, 0 + (bottom-gs1.bottom), - 0.5, 1 - (gs1.top-top)]) -gs2.tight_layout(fig, rect=[0.5, 0 + (bottom-gs2.bottom), - None, 1 - (gs2.top-top)], - h_pad=0.5) - -############################################################################### -# Legends and Annotations -# ======================= -# -# Pre Matplotlib 2.2, legends and annotations were excluded from the bounding -# box calculations that decide the layout. Subsequently these artists were -# added to the calculation, but sometimes it is undesirable to include them. -# For instance in this case it might be good to have the axes shring a bit -# to make room for the legend: - -fig, ax = plt.subplots(figsize=(4, 3)) -lines = ax.plot(range(10), label='A simple plot') -ax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',) -fig.tight_layout() -plt.show() - -############################################################################### -# However, sometimes this is not desired (quite often when using -# ``fig.savefig('outname.png', bbox_inches='tight')``). In order to -# remove the legend from the bounding box calculation, we simply set its -# bounding ``leg.set_in_layout(False)`` and the legend will be ignored. - -fig, ax = plt.subplots(figsize=(4, 3)) -lines = ax.plot(range(10), label='B simple plot') -leg = ax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',) -leg.set_in_layout(False) -fig.tight_layout() -plt.show() - -############################################################################### -# Use with AxesGrid1 -# ================== -# -# While limited, the axes_grid1 toolkit is also supported. - -from mpl_toolkits.axes_grid1 import Grid - -plt.close('all') -fig = plt.figure() -grid = Grid(fig, rect=111, nrows_ncols=(2, 2), - axes_pad=0.25, label_mode='L', - ) - -for ax in grid: - example_plot(ax) -ax.title.set_visible(False) - -plt.tight_layout() - -############################################################################### -# Colorbar -# ======== -# -# If you create a colorbar with the :func:`~matplotlib.pyplot.colorbar` -# command, the created colorbar is an instance of Axes, *not* Subplot, so -# tight_layout does not work. With Matplotlib v1.1, you may create a -# colorbar as a subplot using the gridspec. - -plt.close('all') -arr = np.arange(100).reshape((10, 10)) -fig = plt.figure(figsize=(4, 4)) -im = plt.imshow(arr, interpolation="none") - -plt.colorbar(im, use_gridspec=True) - -plt.tight_layout() - -############################################################################### -# Another option is to use AxesGrid1 toolkit to -# explicitly create an axes for colorbar. - -from mpl_toolkits.axes_grid1 import make_axes_locatable - -plt.close('all') -arr = np.arange(100).reshape((10, 10)) -fig = plt.figure(figsize=(4, 4)) -im = plt.imshow(arr, interpolation="none") - -divider = make_axes_locatable(plt.gca()) -cax = divider.append_axes("right", "5%", pad="3%") -plt.colorbar(im, cax=cax) - -plt.tight_layout() diff --git a/_downloads/0824d21ce3ce587de6954509599db937/errorbar_features.py b/_downloads/0824d21ce3ce587de6954509599db937/errorbar_features.py deleted file mode 120000 index c33fa85edb5..00000000000 --- a/_downloads/0824d21ce3ce587de6954509599db937/errorbar_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0824d21ce3ce587de6954509599db937/errorbar_features.py \ No newline at end of file diff --git a/_downloads/083a0a3a6981cc63301b5da8b36ff3c3/dollar_ticks.ipynb b/_downloads/083a0a3a6981cc63301b5da8b36ff3c3/dollar_ticks.ipynb deleted file mode 120000 index 1bc73b7e07a..00000000000 --- a/_downloads/083a0a3a6981cc63301b5da8b36ff3c3/dollar_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/083a0a3a6981cc63301b5da8b36ff3c3/dollar_ticks.ipynb \ No newline at end of file diff --git a/_downloads/0841e5aad3dfae7c44d826bba873d25b/pyplot_two_subplots.py b/_downloads/0841e5aad3dfae7c44d826bba873d25b/pyplot_two_subplots.py deleted file mode 120000 index 6c1fc5efb3e..00000000000 --- a/_downloads/0841e5aad3dfae7c44d826bba873d25b/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0841e5aad3dfae7c44d826bba873d25b/pyplot_two_subplots.py \ No newline at end of file diff --git a/_downloads/0843ee646a32fc214e9f09328c0cd008/colors.py b/_downloads/0843ee646a32fc214e9f09328c0cd008/colors.py deleted file mode 120000 index db5a71006a9..00000000000 --- a/_downloads/0843ee646a32fc214e9f09328c0cd008/colors.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0843ee646a32fc214e9f09328c0cd008/colors.py \ No newline at end of file diff --git a/_downloads/0844a9181eaa54e9bdee60d8effd570d/leftventricle_bulleye.py b/_downloads/0844a9181eaa54e9bdee60d8effd570d/leftventricle_bulleye.py deleted file mode 100644 index 1d87dbaf3c3..00000000000 --- a/_downloads/0844a9181eaa54e9bdee60d8effd570d/leftventricle_bulleye.py +++ /dev/null @@ -1,210 +0,0 @@ -""" -======================= -Left ventricle bullseye -======================= - -This example demonstrates how to create the 17 segment model for the left -ventricle recommended by the American Heart Association (AHA). -""" - -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt - - -def bullseye_plot(ax, data, seg_bold=None, cmap=None, norm=None): - """ - Bullseye representation for the left ventricle. - - Parameters - ---------- - ax : axes - data : list of int and float - The intensity values for each of the 17 segments - seg_bold : list of int, optional - A list with the segments to highlight - cmap : ColorMap or None, optional - Optional argument to set the desired colormap - norm : Normalize or None, optional - Optional argument to normalize data into the [0.0, 1.0] range - - - Notes - ----- - This function create the 17 segment model for the left ventricle according - to the American Heart Association (AHA) [1]_ - - References - ---------- - .. [1] M. D. Cerqueira, N. J. Weissman, V. Dilsizian, A. K. Jacobs, - S. Kaul, W. K. Laskey, D. J. Pennell, J. A. Rumberger, T. Ryan, - and M. S. Verani, "Standardized myocardial segmentation and - nomenclature for tomographic imaging of the heart", - Circulation, vol. 105, no. 4, pp. 539-542, 2002. - """ - if seg_bold is None: - seg_bold = [] - - linewidth = 2 - data = np.array(data).ravel() - - if cmap is None: - cmap = plt.cm.viridis - - if norm is None: - norm = mpl.colors.Normalize(vmin=data.min(), vmax=data.max()) - - theta = np.linspace(0, 2 * np.pi, 768) - r = np.linspace(0.2, 1, 4) - - # Create the bound for the segment 17 - for i in range(r.shape[0]): - ax.plot(theta, np.repeat(r[i], theta.shape), '-k', lw=linewidth) - - # Create the bounds for the segments 1-12 - for i in range(6): - theta_i = np.deg2rad(i * 60) - ax.plot([theta_i, theta_i], [r[1], 1], '-k', lw=linewidth) - - # Create the bounds for the segments 13-16 - for i in range(4): - theta_i = np.deg2rad(i * 90 - 45) - ax.plot([theta_i, theta_i], [r[0], r[1]], '-k', lw=linewidth) - - # Fill the segments 1-6 - r0 = r[2:4] - r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T - for i in range(6): - # First segment start at 60 degrees - theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60) - theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1) - z = np.ones((128, 2)) * data[i] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if i + 1 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - ax.plot(theta0[0], [r[2], r[3]], '-k', lw=linewidth + 1) - ax.plot(theta0[-1], [r[2], r[3]], '-k', lw=linewidth + 1) - - # Fill the segments 7-12 - r0 = r[1:3] - r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T - for i in range(6): - # First segment start at 60 degrees - theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60) - theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1) - z = np.ones((128, 2)) * data[i + 6] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if i + 7 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - ax.plot(theta0[0], [r[1], r[2]], '-k', lw=linewidth + 1) - ax.plot(theta0[-1], [r[1], r[2]], '-k', lw=linewidth + 1) - - # Fill the segments 13-16 - r0 = r[0:2] - r0 = np.repeat(r0[:, np.newaxis], 192, axis=1).T - for i in range(4): - # First segment start at 45 degrees - theta0 = theta[i * 192:i * 192 + 192] + np.deg2rad(45) - theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1) - z = np.ones((192, 2)) * data[i + 12] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if i + 13 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - ax.plot(theta0[0], [r[0], r[1]], '-k', lw=linewidth + 1) - ax.plot(theta0[-1], [r[0], r[1]], '-k', lw=linewidth + 1) - - # Fill the segments 17 - if data.size == 17: - r0 = np.array([0, r[0]]) - r0 = np.repeat(r0[:, np.newaxis], theta.size, axis=1).T - theta0 = np.repeat(theta[:, np.newaxis], 2, axis=1) - z = np.ones((theta.size, 2)) * data[16] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if 17 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - - ax.set_ylim([0, 1]) - ax.set_yticklabels([]) - ax.set_xticklabels([]) - - -# Create the fake data -data = np.array(range(17)) + 1 - - -# Make a figure and axes with dimensions as desired. -fig, ax = plt.subplots(figsize=(12, 8), nrows=1, ncols=3, - subplot_kw=dict(projection='polar')) -fig.canvas.set_window_title('Left Ventricle Bulls Eyes (AHA)') - -# Create the axis for the colorbars -axl = fig.add_axes([0.14, 0.15, 0.2, 0.05]) -axl2 = fig.add_axes([0.41, 0.15, 0.2, 0.05]) -axl3 = fig.add_axes([0.69, 0.15, 0.2, 0.05]) - - -# Set the colormap and norm to correspond to the data for which -# the colorbar will be used. -cmap = mpl.cm.viridis -norm = mpl.colors.Normalize(vmin=1, vmax=17) - -# ColorbarBase derives from ScalarMappable and puts a colorbar -# in a specified axes, so it has everything needed for a -# standalone colorbar. There are many more kwargs, but the -# following gives a basic continuous colorbar with ticks -# and labels. -cb1 = mpl.colorbar.ColorbarBase(axl, cmap=cmap, norm=norm, - orientation='horizontal') -cb1.set_label('Some Units') - - -# Set the colormap and norm to correspond to the data for which -# the colorbar will be used. -cmap2 = mpl.cm.cool -norm2 = mpl.colors.Normalize(vmin=1, vmax=17) - -# ColorbarBase derives from ScalarMappable and puts a colorbar -# in a specified axes, so it has everything needed for a -# standalone colorbar. There are many more kwargs, but the -# following gives a basic continuous colorbar with ticks -# and labels. -cb2 = mpl.colorbar.ColorbarBase(axl2, cmap=cmap2, norm=norm2, - orientation='horizontal') -cb2.set_label('Some other units') - - -# The second example illustrates the use of a ListedColormap, a -# BoundaryNorm, and extended ends to show the "over" and "under" -# value colors. -cmap3 = mpl.colors.ListedColormap(['r', 'g', 'b', 'c']) -cmap3.set_over('0.35') -cmap3.set_under('0.75') - -# If a ListedColormap is used, the length of the bounds array must be -# one greater than the length of the color list. The bounds must be -# monotonically increasing. -bounds = [2, 3, 7, 9, 15] -norm3 = mpl.colors.BoundaryNorm(bounds, cmap3.N) -cb3 = mpl.colorbar.ColorbarBase(axl3, cmap=cmap3, norm=norm3, - # to use 'extend', you must - # specify two extra boundaries: - boundaries=[0] + bounds + [18], - extend='both', - ticks=bounds, # optional - spacing='proportional', - orientation='horizontal') -cb3.set_label('Discrete intervals, some other units') - - -# Create the 17 segment model -bullseye_plot(ax[0], data, cmap=cmap, norm=norm) -ax[0].set_title('Bulls Eye (AHA)') - -bullseye_plot(ax[1], data, cmap=cmap2, norm=norm2) -ax[1].set_title('Bulls Eye (AHA)') - -bullseye_plot(ax[2], data, seg_bold=[3, 5, 6, 11, 12, 16], - cmap=cmap3, norm=norm3) -ax[2].set_title('Segments [3,5,6,11,12,16] in bold') - -plt.show() diff --git a/_downloads/0844acc3d8c8d457bc5f707c80e65bd1/fill_between.ipynb b/_downloads/0844acc3d8c8d457bc5f707c80e65bd1/fill_between.ipynb deleted file mode 120000 index 8c0877d6394..00000000000 --- a/_downloads/0844acc3d8c8d457bc5f707c80e65bd1/fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0844acc3d8c8d457bc5f707c80e65bd1/fill_between.ipynb \ No newline at end of file diff --git a/_downloads/0845f3bb3aabb3ebda3632dd30d8fbec/colorbar_placement.py b/_downloads/0845f3bb3aabb3ebda3632dd30d8fbec/colorbar_placement.py deleted file mode 120000 index 9f3ce87a95e..00000000000 --- a/_downloads/0845f3bb3aabb3ebda3632dd30d8fbec/colorbar_placement.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0845f3bb3aabb3ebda3632dd30d8fbec/colorbar_placement.py \ No newline at end of file diff --git a/_downloads/0846c3e5d114c457e124451aea9e558a/logos2.py b/_downloads/0846c3e5d114c457e124451aea9e558a/logos2.py deleted file mode 120000 index 6db946b77c0..00000000000 --- a/_downloads/0846c3e5d114c457e124451aea9e558a/logos2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0846c3e5d114c457e124451aea9e558a/logos2.py \ No newline at end of file diff --git a/_downloads/084bea15b5416e7548687c752dab0604/violinplot.ipynb b/_downloads/084bea15b5416e7548687c752dab0604/violinplot.ipynb deleted file mode 120000 index c330fb9f8ea..00000000000 --- a/_downloads/084bea15b5416e7548687c752dab0604/violinplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/084bea15b5416e7548687c752dab0604/violinplot.ipynb \ No newline at end of file diff --git a/_downloads/0852663ac32e9cc3ebe890eb2e2ef8aa/subplots_adjust.py b/_downloads/0852663ac32e9cc3ebe890eb2e2ef8aa/subplots_adjust.py deleted file mode 120000 index ab656e17c9c..00000000000 --- a/_downloads/0852663ac32e9cc3ebe890eb2e2ef8aa/subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0852663ac32e9cc3ebe890eb2e2ef8aa/subplots_adjust.py \ No newline at end of file diff --git a/_downloads/08620fd3f8912763844498c45d473526/quiver_simple_demo.ipynb b/_downloads/08620fd3f8912763844498c45d473526/quiver_simple_demo.ipynb deleted file mode 120000 index e5e34703e6a..00000000000 --- a/_downloads/08620fd3f8912763844498c45d473526/quiver_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/08620fd3f8912763844498c45d473526/quiver_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/08661d4026640f412a7c9fa724d2fdb2/barchart_demo.ipynb b/_downloads/08661d4026640f412a7c9fa724d2fdb2/barchart_demo.ipynb deleted file mode 120000 index 16cc7fbde18..00000000000 --- a/_downloads/08661d4026640f412a7c9fa724d2fdb2/barchart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/08661d4026640f412a7c9fa724d2fdb2/barchart_demo.ipynb \ No newline at end of file diff --git a/_downloads/0867280b02d70f637e2e01d38a19e521/print_stdout_sgskip.py b/_downloads/0867280b02d70f637e2e01d38a19e521/print_stdout_sgskip.py deleted file mode 120000 index 74ad248369a..00000000000 --- a/_downloads/0867280b02d70f637e2e01d38a19e521/print_stdout_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0867280b02d70f637e2e01d38a19e521/print_stdout_sgskip.py \ No newline at end of file diff --git a/_downloads/086e6bc8625886d5d0f79235622991ac/imshow.ipynb b/_downloads/086e6bc8625886d5d0f79235622991ac/imshow.ipynb deleted file mode 120000 index f8af4a7bbbb..00000000000 --- a/_downloads/086e6bc8625886d5d0f79235622991ac/imshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/086e6bc8625886d5d0f79235622991ac/imshow.ipynb \ No newline at end of file diff --git a/_downloads/08783e8a080c59669fbe44977977112d/bar_unit_demo.py b/_downloads/08783e8a080c59669fbe44977977112d/bar_unit_demo.py deleted file mode 100644 index e6a6a7687a6..00000000000 --- a/_downloads/08783e8a080c59669fbe44977977112d/bar_unit_demo.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -========================= -Group barchart with units -========================= - -This is the same example as -:doc:`the barchart` in -centimeters. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" - -import numpy as np -from basic_units import cm, inch -import matplotlib.pyplot as plt - - -N = 5 -menMeans = (150*cm, 160*cm, 146*cm, 172*cm, 155*cm) -menStd = (20*cm, 30*cm, 32*cm, 10*cm, 20*cm) - -fig, ax = plt.subplots() - -ind = np.arange(N) # the x locations for the groups -width = 0.35 # the width of the bars -p1 = ax.bar(ind, menMeans, width, bottom=0*cm, yerr=menStd) - - -womenMeans = (145*cm, 149*cm, 172*cm, 165*cm, 200*cm) -womenStd = (30*cm, 25*cm, 20*cm, 31*cm, 22*cm) -p2 = ax.bar(ind + width, womenMeans, width, bottom=0*cm, yerr=womenStd) - -ax.set_title('Scores by group and gender') -ax.set_xticks(ind + width / 2) -ax.set_xticklabels(('G1', 'G2', 'G3', 'G4', 'G5')) - -ax.legend((p1[0], p2[0]), ('Men', 'Women')) -ax.yaxis.set_units(inch) -ax.autoscale_view() - -plt.show() diff --git a/_downloads/087e5d6e0ee15bd28e72afa111ccf5f3/usetex_baseline_test.ipynb b/_downloads/087e5d6e0ee15bd28e72afa111ccf5f3/usetex_baseline_test.ipynb deleted file mode 120000 index fa2d8ee6a92..00000000000 --- a/_downloads/087e5d6e0ee15bd28e72afa111ccf5f3/usetex_baseline_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/087e5d6e0ee15bd28e72afa111ccf5f3/usetex_baseline_test.ipynb \ No newline at end of file diff --git a/_downloads/0880464c3e2a2b3d22c4098b2962eb5d/gallery_jupyter.zip b/_downloads/0880464c3e2a2b3d22c4098b2962eb5d/gallery_jupyter.zip deleted file mode 120000 index fb5b86ab82d..00000000000 --- a/_downloads/0880464c3e2a2b3d22c4098b2962eb5d/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.1/_downloads/0880464c3e2a2b3d22c4098b2962eb5d/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/088af61c72d93591f710509e121b5b99/demo_parasite_axes2.ipynb b/_downloads/088af61c72d93591f710509e121b5b99/demo_parasite_axes2.ipynb deleted file mode 100644 index fb5bf0c1b70..00000000000 --- a/_downloads/088af61c72d93591f710509e121b5b99/demo_parasite_axes2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Parasite Axes2\n\n\nParasite axis demo\n\nThe following code is an example of a parasite axis. It aims to show how\nto plot multiple different values onto one single plot. Notice how in this\nexample, par1 and par2 are both calling twinx meaning both are tied directly to\nthe x-axis. From there, each of those two axis can behave separately from the\neach other, meaning they can take on separate values from themselves as well as\nthe x-axis.\n\nNote that this approach uses the `mpl_toolkits.axes_grid1.parasite_axes`'\n`~mpl_toolkits.axes_grid1.parasite_axes.host_subplot` and\n`mpl_toolkits.axisartist.axislines.Axes`. An alternative approach using the\n`~mpl_toolkits.axes_grid1.parasite_axes`'s\n`~.mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and\n`~.mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes` is the\n:doc:`/gallery/axisartist/demo_parasite_axes` example.\nAn alternative approach using the usual matplotlib subplots is shown in\nthe :doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import host_subplot\nimport mpl_toolkits.axisartist as AA\nimport matplotlib.pyplot as plt\n\nhost = host_subplot(111, axes_class=AA.Axes)\nplt.subplots_adjust(right=0.75)\n\npar1 = host.twinx()\npar2 = host.twinx()\n\noffset = 60\nnew_fixed_axis = par2.get_grid_helper().new_fixed_axis\npar2.axis[\"right\"] = new_fixed_axis(loc=\"right\",\n axes=par2,\n offset=(offset, 0))\n\npar1.axis[\"right\"].toggle(all=True)\npar2.axis[\"right\"].toggle(all=True)\n\nhost.set_xlim(0, 2)\nhost.set_ylim(0, 2)\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar1.set_ylabel(\"Temperature\")\npar2.set_ylabel(\"Velocity\")\n\np1, = host.plot([0, 1, 2], [0, 1, 2], label=\"Density\")\np2, = par1.plot([0, 1, 2], [0, 3, 2], label=\"Temperature\")\np3, = par2.plot([0, 1, 2], [50, 30, 15], label=\"Velocity\")\n\npar1.set_ylim(0, 4)\npar2.set_ylim(1, 65)\n\nhost.legend()\n\nhost.axis[\"left\"].label.set_color(p1.get_color())\npar1.axis[\"right\"].label.set_color(p2.get_color())\npar2.axis[\"right\"].label.set_color(p3.get_color())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/088ca86d579a97933334b09cf8f9f03f/rainbow_text.ipynb b/_downloads/088ca86d579a97933334b09cf8f9f03f/rainbow_text.ipynb deleted file mode 120000 index 2bf781d4ae2..00000000000 --- a/_downloads/088ca86d579a97933334b09cf8f9f03f/rainbow_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/088ca86d579a97933334b09cf8f9f03f/rainbow_text.ipynb \ No newline at end of file diff --git a/_downloads/08be6d14b2954b096590082238e606a8/wire3d.ipynb b/_downloads/08be6d14b2954b096590082238e606a8/wire3d.ipynb deleted file mode 100644 index b6921a67451..00000000000 --- a/_downloads/08be6d14b2954b096590082238e606a8/wire3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D wireframe plot\n\n\nA very basic demonstration of a wireframe plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Grab some test data.\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot a basic wireframe.\nax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/08c10166d65875c5a1e3a645fdcaa482/pathpatch3d.py b/_downloads/08c10166d65875c5a1e3a645fdcaa482/pathpatch3d.py deleted file mode 120000 index fbb81de76fe..00000000000 --- a/_downloads/08c10166d65875c5a1e3a645fdcaa482/pathpatch3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/08c10166d65875c5a1e3a645fdcaa482/pathpatch3d.py \ No newline at end of file diff --git a/_downloads/08c5da00c4da724e947ae9f9861b1350/axis_direction_demo_step01.py b/_downloads/08c5da00c4da724e947ae9f9861b1350/axis_direction_demo_step01.py deleted file mode 120000 index 407665d2148..00000000000 --- a/_downloads/08c5da00c4da724e947ae9f9861b1350/axis_direction_demo_step01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/08c5da00c4da724e947ae9f9861b1350/axis_direction_demo_step01.py \ No newline at end of file diff --git a/_downloads/08c8a667b910334548e5ee31a2e6d320/specgram_demo.ipynb b/_downloads/08c8a667b910334548e5ee31a2e6d320/specgram_demo.ipynb deleted file mode 120000 index d21975708e4..00000000000 --- a/_downloads/08c8a667b910334548e5ee31a2e6d320/specgram_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/08c8a667b910334548e5ee31a2e6d320/specgram_demo.ipynb \ No newline at end of file diff --git a/_downloads/08cfd1035d842a5463ff2214658ff023/simple_axesgrid2.py b/_downloads/08cfd1035d842a5463ff2214658ff023/simple_axesgrid2.py deleted file mode 120000 index 26210291e5a..00000000000 --- a/_downloads/08cfd1035d842a5463ff2214658ff023/simple_axesgrid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/08cfd1035d842a5463ff2214658ff023/simple_axesgrid2.py \ No newline at end of file diff --git a/_downloads/08d283f00ea93f0832b0883007d8f51f/polar_demo.py b/_downloads/08d283f00ea93f0832b0883007d8f51f/polar_demo.py deleted file mode 120000 index 575f963872f..00000000000 --- a/_downloads/08d283f00ea93f0832b0883007d8f51f/polar_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/08d283f00ea93f0832b0883007d8f51f/polar_demo.py \ No newline at end of file diff --git a/_downloads/08f47841364087413dd1c648e6bdcfe6/log_test.py b/_downloads/08f47841364087413dd1c648e6bdcfe6/log_test.py deleted file mode 120000 index 848f44b39f3..00000000000 --- a/_downloads/08f47841364087413dd1c648e6bdcfe6/log_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/08f47841364087413dd1c648e6bdcfe6/log_test.py \ No newline at end of file diff --git a/_downloads/08f4f73c8ca9104781c403dd402ab1cd/surface3d_3.ipynb b/_downloads/08f4f73c8ca9104781c403dd402ab1cd/surface3d_3.ipynb deleted file mode 120000 index 9567e00d21d..00000000000 --- a/_downloads/08f4f73c8ca9104781c403dd402ab1cd/surface3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/08f4f73c8ca9104781c403dd402ab1cd/surface3d_3.ipynb \ No newline at end of file diff --git a/_downloads/08f572befa64d1bf3877e30ed4ff919b/barh.py b/_downloads/08f572befa64d1bf3877e30ed4ff919b/barh.py deleted file mode 120000 index bcfc1c02c19..00000000000 --- a/_downloads/08f572befa64d1bf3877e30ed4ff919b/barh.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/08f572befa64d1bf3877e30ed4ff919b/barh.py \ No newline at end of file diff --git a/_downloads/08f9fae7387a63d2283452a964add635/agg_buffer.ipynb b/_downloads/08f9fae7387a63d2283452a964add635/agg_buffer.ipynb deleted file mode 120000 index 52daa0383f4..00000000000 --- a/_downloads/08f9fae7387a63d2283452a964add635/agg_buffer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/08f9fae7387a63d2283452a964add635/agg_buffer.ipynb \ No newline at end of file diff --git a/_downloads/08fda60668ecd51dffd3b8917ce982a9/wire3d_animation_sgskip.ipynb b/_downloads/08fda60668ecd51dffd3b8917ce982a9/wire3d_animation_sgskip.ipynb deleted file mode 120000 index 5e3d9442b73..00000000000 --- a/_downloads/08fda60668ecd51dffd3b8917ce982a9/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/08fda60668ecd51dffd3b8917ce982a9/wire3d_animation_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/08ffbd9433c0e03855af6f09dd95f0ae/simple_axes_divider3.ipynb b/_downloads/08ffbd9433c0e03855af6f09dd95f0ae/simple_axes_divider3.ipynb deleted file mode 120000 index c5883faba4e..00000000000 --- a/_downloads/08ffbd9433c0e03855af6f09dd95f0ae/simple_axes_divider3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/08ffbd9433c0e03855af6f09dd95f0ae/simple_axes_divider3.ipynb \ No newline at end of file diff --git a/_downloads/09047ec46fd74d97def3283b92038a12/pyplot.py b/_downloads/09047ec46fd74d97def3283b92038a12/pyplot.py deleted file mode 100644 index f9661f5d40e..00000000000 --- a/_downloads/09047ec46fd74d97def3283b92038a12/pyplot.py +++ /dev/null @@ -1,478 +0,0 @@ -""" -=============== -Pyplot tutorial -=============== - -An introduction to the pyplot interface. - -""" - -############################################################################### -# Intro to pyplot -# =============== -# -# :mod:`matplotlib.pyplot` is a collection of command style functions -# that make matplotlib work like MATLAB. -# Each ``pyplot`` function makes -# some change to a figure: e.g., creates a figure, creates a plotting area -# in a figure, plots some lines in a plotting area, decorates the plot -# with labels, etc. -# -# In :mod:`matplotlib.pyplot` various states are preserved -# across function calls, so that it keeps track of things like -# the current figure and plotting area, and the plotting -# functions are directed to the current axes (please note that "axes" here -# and in most places in the documentation refers to the *axes* -# :ref:`part of a figure ` -# and not the strict mathematical term for more than one axis). -# -# .. note:: -# -# the pyplot API is generally less-flexible than the object-oriented API. -# Most of the function calls you see here can also be called as methods -# from an ``Axes`` object. We recommend browsing the tutorials and -# examples to see how this works. -# -# Generating visualizations with pyplot is very quick: - -import matplotlib.pyplot as plt -plt.plot([1, 2, 3, 4]) -plt.ylabel('some numbers') -plt.show() - -############################################################################### -# You may be wondering why the x-axis ranges from 0-3 and the y-axis -# from 1-4. If you provide a single list or array to the -# :func:`~matplotlib.pyplot.plot` command, matplotlib assumes it is a -# sequence of y values, and automatically generates the x values for -# you. Since python ranges start with 0, the default x vector has the -# same length as y but starts with 0. Hence the x data are -# ``[0,1,2,3]``. -# -# :func:`~matplotlib.pyplot.plot` is a versatile command, and will take -# an arbitrary number of arguments. For example, to plot x versus y, -# you can issue the command: - -plt.plot([1, 2, 3, 4], [1, 4, 9, 16]) - -############################################################################### -# Formatting the style of your plot -# --------------------------------- -# -# For every x, y pair of arguments, there is an optional third argument -# which is the format string that indicates the color and line type of -# the plot. The letters and symbols of the format string are from -# MATLAB, and you concatenate a color string with a line style string. -# The default format string is 'b-', which is a solid blue line. For -# example, to plot the above with red circles, you would issue - -plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro') -plt.axis([0, 6, 0, 20]) -plt.show() - -############################################################################### -# See the :func:`~matplotlib.pyplot.plot` documentation for a complete -# list of line styles and format strings. The -# :func:`~matplotlib.pyplot.axis` command in the example above takes a -# list of ``[xmin, xmax, ymin, ymax]`` and specifies the viewport of the -# axes. -# -# If matplotlib were limited to working with lists, it would be fairly -# useless for numeric processing. Generally, you will use `numpy -# `_ arrays. In fact, all sequences are -# converted to numpy arrays internally. The example below illustrates a -# plotting several lines with different format styles in one command -# using arrays. - -import numpy as np - -# evenly sampled time at 200ms intervals -t = np.arange(0., 5., 0.2) - -# red dashes, blue squares and green triangles -plt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^') -plt.show() - -############################################################################### -# .. _plotting-with-keywords: -# -# Plotting with keyword strings -# ============================= -# -# There are some instances where you have data in a format that lets you -# access particular variables with strings. For example, with -# :class:`numpy.recarray` or :class:`pandas.DataFrame`. -# -# Matplotlib allows you provide such an object with -# the ``data`` keyword argument. If provided, then you may generate plots with -# the strings corresponding to these variables. - -data = {'a': np.arange(50), - 'c': np.random.randint(0, 50, 50), - 'd': np.random.randn(50)} -data['b'] = data['a'] + 10 * np.random.randn(50) -data['d'] = np.abs(data['d']) * 100 - -plt.scatter('a', 'b', c='c', s='d', data=data) -plt.xlabel('entry a') -plt.ylabel('entry b') -plt.show() - -############################################################################### -# .. _plotting-with-categorical-vars: -# -# Plotting with categorical variables -# =================================== -# -# It is also possible to create a plot using categorical variables. -# Matplotlib allows you to pass categorical variables directly to -# many plotting functions. For example: - -names = ['group_a', 'group_b', 'group_c'] -values = [1, 10, 100] - -plt.figure(figsize=(9, 3)) - -plt.subplot(131) -plt.bar(names, values) -plt.subplot(132) -plt.scatter(names, values) -plt.subplot(133) -plt.plot(names, values) -plt.suptitle('Categorical Plotting') -plt.show() - -############################################################################### -# .. _controlling-line-properties: -# -# Controlling line properties -# =========================== -# -# Lines have many attributes that you can set: linewidth, dash style, -# antialiased, etc; see :class:`matplotlib.lines.Line2D`. There are -# several ways to set line properties -# -# * Use keyword args:: -# -# plt.plot(x, y, linewidth=2.0) -# -# -# * Use the setter methods of a ``Line2D`` instance. ``plot`` returns a list -# of ``Line2D`` objects; e.g., ``line1, line2 = plot(x1, y1, x2, y2)``. In the code -# below we will suppose that we have only -# one line so that the list returned is of length 1. We use tuple unpacking with -# ``line,`` to get the first element of that list:: -# -# line, = plt.plot(x, y, '-') -# line.set_antialiased(False) # turn off antialiasing -# -# * Use the :func:`~matplotlib.pyplot.setp` command. The example below -# uses a MATLAB-style command to set multiple properties -# on a list of lines. ``setp`` works transparently with a list of objects -# or a single object. You can either use python keyword arguments or -# MATLAB-style string/value pairs:: -# -# lines = plt.plot(x1, y1, x2, y2) -# # use keyword args -# plt.setp(lines, color='r', linewidth=2.0) -# # or MATLAB style string value pairs -# plt.setp(lines, 'color', 'r', 'linewidth', 2.0) -# -# -# Here are the available :class:`~matplotlib.lines.Line2D` properties. -# -# ====================== ================================================== -# Property Value Type -# ====================== ================================================== -# alpha float -# animated [True | False] -# antialiased or aa [True | False] -# clip_box a matplotlib.transform.Bbox instance -# clip_on [True | False] -# clip_path a Path instance and a Transform instance, a Patch -# color or c any matplotlib color -# contains the hit testing function -# dash_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``] -# dash_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``] -# dashes sequence of on/off ink in points -# data (np.array xdata, np.array ydata) -# figure a matplotlib.figure.Figure instance -# label any string -# linestyle or ls [ ``'-'`` | ``'--'`` | ``'-.'`` | ``':'`` | ``'steps'`` | ...] -# linewidth or lw float value in points -# marker [ ``'+'`` | ``','`` | ``'.'`` | ``'1'`` | ``'2'`` | ``'3'`` | ``'4'`` ] -# markeredgecolor or mec any matplotlib color -# markeredgewidth or mew float value in points -# markerfacecolor or mfc any matplotlib color -# markersize or ms float -# markevery [ None | integer | (startind, stride) ] -# picker used in interactive line selection -# pickradius the line pick selection radius -# solid_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``] -# solid_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``] -# transform a matplotlib.transforms.Transform instance -# visible [True | False] -# xdata np.array -# ydata np.array -# zorder any number -# ====================== ================================================== -# -# To get a list of settable line properties, call the -# :func:`~matplotlib.pyplot.setp` function with a line or lines -# as argument -# -# .. sourcecode:: ipython -# -# In [69]: lines = plt.plot([1, 2, 3]) -# -# In [70]: plt.setp(lines) -# alpha: float -# animated: [True | False] -# antialiased or aa: [True | False] -# ...snip -# -# .. _multiple-figs-axes: -# -# -# Working with multiple figures and axes -# ====================================== -# -# MATLAB, and :mod:`~matplotlib.pyplot`, have the concept of the current -# figure and the current axes. All plotting commands apply to the -# current axes. The function :func:`~matplotlib.pyplot.gca` returns the -# current axes (a :class:`matplotlib.axes.Axes` instance), and -# :func:`~matplotlib.pyplot.gcf` returns the current figure -# (:class:`matplotlib.figure.Figure` instance). Normally, you don't have -# to worry about this, because it is all taken care of behind the -# scenes. Below is a script to create two subplots. - - -def f(t): - return np.exp(-t) * np.cos(2*np.pi*t) - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) - -plt.figure() -plt.subplot(211) -plt.plot(t1, f(t1), 'bo', t2, f(t2), 'k') - -plt.subplot(212) -plt.plot(t2, np.cos(2*np.pi*t2), 'r--') -plt.show() - -############################################################################### -# The :func:`~matplotlib.pyplot.figure` command here is optional because -# ``figure(1)`` will be created by default, just as a ``subplot(111)`` -# will be created by default if you don't manually specify any axes. The -# :func:`~matplotlib.pyplot.subplot` command specifies ``numrows, -# numcols, plot_number`` where ``plot_number`` ranges from 1 to -# ``numrows*numcols``. The commas in the ``subplot`` command are -# optional if ``numrows*numcols<10``. So ``subplot(211)`` is identical -# to ``subplot(2, 1, 1)``. -# -# You can create an arbitrary number of subplots -# and axes. If you want to place an axes manually, i.e., not on a -# rectangular grid, use the :func:`~matplotlib.pyplot.axes` command, -# which allows you to specify the location as ``axes([left, bottom, -# width, height])`` where all values are in fractional (0 to 1) -# coordinates. See :doc:`/gallery/subplots_axes_and_figures/axes_demo` for an example of -# placing axes manually and :doc:`/gallery/subplots_axes_and_figures/subplot_demo` for an -# example with lots of subplots. -# -# -# You can create multiple figures by using multiple -# :func:`~matplotlib.pyplot.figure` calls with an increasing figure -# number. Of course, each figure can contain as many axes and subplots -# as your heart desires:: -# -# import matplotlib.pyplot as plt -# plt.figure(1) # the first figure -# plt.subplot(211) # the first subplot in the first figure -# plt.plot([1, 2, 3]) -# plt.subplot(212) # the second subplot in the first figure -# plt.plot([4, 5, 6]) -# -# -# plt.figure(2) # a second figure -# plt.plot([4, 5, 6]) # creates a subplot(111) by default -# -# plt.figure(1) # figure 1 current; subplot(212) still current -# plt.subplot(211) # make subplot(211) in figure1 current -# plt.title('Easy as 1, 2, 3') # subplot 211 title -# -# You can clear the current figure with :func:`~matplotlib.pyplot.clf` -# and the current axes with :func:`~matplotlib.pyplot.cla`. If you find -# it annoying that states (specifically the current image, figure and axes) -# are being maintained for you behind the scenes, don't despair: this is just a thin -# stateful wrapper around an object oriented API, which you can use -# instead (see :doc:`/tutorials/intermediate/artists`) -# -# If you are making lots of figures, you need to be aware of one -# more thing: the memory required for a figure is not completely -# released until the figure is explicitly closed with -# :func:`~matplotlib.pyplot.close`. Deleting all references to the -# figure, and/or using the window manager to kill the window in which -# the figure appears on the screen, is not enough, because pyplot -# maintains internal references until :func:`~matplotlib.pyplot.close` -# is called. -# -# .. _working-with-text: -# -# Working with text -# ================= -# -# The :func:`~matplotlib.pyplot.text` command can be used to add text in -# an arbitrary location, and the :func:`~matplotlib.pyplot.xlabel`, -# :func:`~matplotlib.pyplot.ylabel` and :func:`~matplotlib.pyplot.title` -# are used to add text in the indicated locations (see :doc:`/tutorials/text/text_intro` -# for a more detailed example) - -mu, sigma = 100, 15 -x = mu + sigma * np.random.randn(10000) - -# the histogram of the data -n, bins, patches = plt.hist(x, 50, density=1, facecolor='g', alpha=0.75) - - -plt.xlabel('Smarts') -plt.ylabel('Probability') -plt.title('Histogram of IQ') -plt.text(60, .025, r'$\mu=100,\ \sigma=15$') -plt.axis([40, 160, 0, 0.03]) -plt.grid(True) -plt.show() - -############################################################################### -# All of the :func:`~matplotlib.pyplot.text` commands return an -# :class:`matplotlib.text.Text` instance. Just as with with lines -# above, you can customize the properties by passing keyword arguments -# into the text functions or using :func:`~matplotlib.pyplot.setp`:: -# -# t = plt.xlabel('my data', fontsize=14, color='red') -# -# These properties are covered in more detail in :doc:`/tutorials/text/text_props`. -# -# -# Using mathematical expressions in text -# -------------------------------------- -# -# matplotlib accepts TeX equation expressions in any text expression. -# For example to write the expression :math:`\sigma_i=15` in the title, -# you can write a TeX expression surrounded by dollar signs:: -# -# plt.title(r'$\sigma_i=15$') -# -# The ``r`` preceding the title string is important -- it signifies -# that the string is a *raw* string and not to treat backslashes as -# python escapes. matplotlib has a built-in TeX expression parser and -# layout engine, and ships its own math fonts -- for details see -# :doc:`/tutorials/text/mathtext`. Thus you can use mathematical text across platforms -# without requiring a TeX installation. For those who have LaTeX and -# dvipng installed, you can also use LaTeX to format your text and -# incorporate the output directly into your display figures or saved -# postscript -- see :doc:`/tutorials/text/usetex`. -# -# -# Annotating text -# --------------- -# -# The uses of the basic :func:`~matplotlib.pyplot.text` command above -# place text at an arbitrary position on the Axes. A common use for -# text is to annotate some feature of the plot, and the -# :func:`~matplotlib.pyplot.annotate` method provides helper -# functionality to make annotations easy. In an annotation, there are -# two points to consider: the location being annotated represented by -# the argument ``xy`` and the location of the text ``xytext``. Both of -# these arguments are ``(x,y)`` tuples. - -ax = plt.subplot(111) - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) -line, = plt.plot(t, s, lw=2) - -plt.annotate('local max', xy=(2, 1), xytext=(3, 1.5), - arrowprops=dict(facecolor='black', shrink=0.05), - ) - -plt.ylim(-2, 2) -plt.show() - -############################################################################### -# In this basic example, both the ``xy`` (arrow tip) and ``xytext`` -# locations (text location) are in data coordinates. There are a -# variety of other coordinate systems one can choose -- see -# :ref:`annotations-tutorial` and :ref:`plotting-guide-annotation` for -# details. More examples can be found in -# :doc:`/gallery/text_labels_and_annotations/annotation_demo`. -# -# -# Logarithmic and other nonlinear axes -# ==================================== -# -# :mod:`matplotlib.pyplot` supports not only linear axis scales, but also -# logarithmic and logit scales. This is commonly used if data spans many orders -# of magnitude. Changing the scale of an axis is easy: -# -# plt.xscale('log') -# -# An example of four plots with the same data and different scales for the y axis -# is shown below. - -from matplotlib.ticker import NullFormatter # useful for `logit` scale - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# make up some data in the interval ]0, 1[ -y = np.random.normal(loc=0.5, scale=0.4, size=1000) -y = y[(y > 0) & (y < 1)] -y.sort() -x = np.arange(len(y)) - -# plot with various axes scales -plt.figure() - -# linear -plt.subplot(221) -plt.plot(x, y) -plt.yscale('linear') -plt.title('linear') -plt.grid(True) - - -# log -plt.subplot(222) -plt.plot(x, y) -plt.yscale('log') -plt.title('log') -plt.grid(True) - - -# symmetric log -plt.subplot(223) -plt.plot(x, y - y.mean()) -plt.yscale('symlog', linthreshy=0.01) -plt.title('symlog') -plt.grid(True) - -# logit -plt.subplot(224) -plt.plot(x, y) -plt.yscale('logit') -plt.title('logit') -plt.grid(True) -# Format the minor tick labels of the y-axis into empty strings with -# `NullFormatter`, to avoid cumbering the axis with too many labels. -plt.gca().yaxis.set_minor_formatter(NullFormatter()) -# Adjust the subplot layout, because the logit one may take more space -# than usual, due to y-tick labels like "1 - 10^{-3}" -plt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25, - wspace=0.35) - -plt.show() - -############################################################################### -# It is also possible to add your own scale, see :ref:`adding-new-scales` for -# details. diff --git a/_downloads/0907c2d2a954adb43348f5ab93ccde5f/colormap_normalizations.py b/_downloads/0907c2d2a954adb43348f5ab93ccde5f/colormap_normalizations.py deleted file mode 120000 index 8352f221cf3..00000000000 --- a/_downloads/0907c2d2a954adb43348f5ab93ccde5f/colormap_normalizations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0907c2d2a954adb43348f5ab93ccde5f/colormap_normalizations.py \ No newline at end of file diff --git a/_downloads/090e9827fc93e5c323a1873f036db25c/voxels_rgb.ipynb b/_downloads/090e9827fc93e5c323a1873f036db25c/voxels_rgb.ipynb deleted file mode 120000 index f37cc499c91..00000000000 --- a/_downloads/090e9827fc93e5c323a1873f036db25c/voxels_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/090e9827fc93e5c323a1873f036db25c/voxels_rgb.ipynb \ No newline at end of file diff --git a/_downloads/090eb5ebf21055d620b5db846581d90c/cohere.py b/_downloads/090eb5ebf21055d620b5db846581d90c/cohere.py deleted file mode 120000 index 20f363a5d9c..00000000000 --- a/_downloads/090eb5ebf21055d620b5db846581d90c/cohere.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/090eb5ebf21055d620b5db846581d90c/cohere.py \ No newline at end of file diff --git a/_downloads/09139dde1d992898c6d8336575f272bf/broken_barh.py b/_downloads/09139dde1d992898c6d8336575f272bf/broken_barh.py deleted file mode 100644 index c0691beaf25..00000000000 --- a/_downloads/09139dde1d992898c6d8336575f272bf/broken_barh.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -=========== -Broken Barh -=========== - -Make a "broken" horizontal bar plot, i.e., one with gaps -""" -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() -ax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue') -ax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9), - facecolors=('tab:orange', 'tab:green', 'tab:red')) -ax.set_ylim(5, 35) -ax.set_xlim(0, 200) -ax.set_xlabel('seconds since start') -ax.set_yticks([15, 25]) -ax.set_yticklabels(['Bill', 'Jim']) -ax.grid(True) -ax.annotate('race interrupted', (61, 25), - xytext=(0.8, 0.9), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - fontsize=16, - horizontalalignment='right', verticalalignment='top') - -plt.show() diff --git a/_downloads/0923504f10a419a584baedfc63222a4b/canvasagg.ipynb b/_downloads/0923504f10a419a584baedfc63222a4b/canvasagg.ipynb deleted file mode 120000 index 1a91fe37c20..00000000000 --- a/_downloads/0923504f10a419a584baedfc63222a4b/canvasagg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0923504f10a419a584baedfc63222a4b/canvasagg.ipynb \ No newline at end of file diff --git a/_downloads/09240349fdbe840c8c1035b1e275de73/random_walk.ipynb b/_downloads/09240349fdbe840c8c1035b1e275de73/random_walk.ipynb deleted file mode 120000 index fd28b16e9e5..00000000000 --- a/_downloads/09240349fdbe840c8c1035b1e275de73/random_walk.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/09240349fdbe840c8c1035b1e275de73/random_walk.ipynb \ No newline at end of file diff --git a/_downloads/092f4a3b0bda7f2df2f41d6341c3f3ab/font_indexing.ipynb b/_downloads/092f4a3b0bda7f2df2f41d6341c3f3ab/font_indexing.ipynb deleted file mode 100644 index 8ddfb09b629..00000000000 --- a/_downloads/092f4a3b0bda7f2df2f41d6341c3f3ab/font_indexing.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Font indexing\n\n\nThis example shows how the font tables relate to one another.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\n\nimport matplotlib\nfrom matplotlib.ft2font import (\n FT2Font, KERNING_DEFAULT, KERNING_UNFITTED, KERNING_UNSCALED)\n\n\nfont = FT2Font(\n os.path.join(matplotlib.get_data_path(), 'fonts/ttf/DejaVuSans.ttf'))\nfont.set_charmap(0)\n\ncodes = font.get_charmap().items()\n\n# make a charname to charcode and glyphind dictionary\ncoded = {}\nglyphd = {}\nfor ccode, glyphind in codes:\n name = font.get_glyph_name(glyphind)\n coded[name] = ccode\n glyphd[name] = glyphind\n # print(glyphind, ccode, hex(int(ccode)), name)\n\ncode = coded['A']\nglyph = font.load_char(code)\nprint(glyph.bbox)\nprint(glyphd['A'], glyphd['V'], coded['A'], coded['V'])\nprint('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_DEFAULT))\nprint('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNFITTED))\nprint('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNSCALED))\nprint('AV', font.get_kerning(glyphd['A'], glyphd['T'], KERNING_UNSCALED))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0930fc0f510886b650c1402122cea3ab/colormap_normalizations_power.py b/_downloads/0930fc0f510886b650c1402122cea3ab/colormap_normalizations_power.py deleted file mode 120000 index faf9a689a1f..00000000000 --- a/_downloads/0930fc0f510886b650c1402122cea3ab/colormap_normalizations_power.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0930fc0f510886b650c1402122cea3ab/colormap_normalizations_power.py \ No newline at end of file diff --git a/_downloads/0932ec3d987e157f4dca3f73efa3b6ff/scales.py b/_downloads/0932ec3d987e157f4dca3f73efa3b6ff/scales.py deleted file mode 120000 index 07b745d7fc2..00000000000 --- a/_downloads/0932ec3d987e157f4dca3f73efa3b6ff/scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0932ec3d987e157f4dca3f73efa3b6ff/scales.py \ No newline at end of file diff --git a/_downloads/0935f657502db2dd3505e70409643730/image_clip_path.py b/_downloads/0935f657502db2dd3505e70409643730/image_clip_path.py deleted file mode 120000 index 44d5a4c64f3..00000000000 --- a/_downloads/0935f657502db2dd3505e70409643730/image_clip_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0935f657502db2dd3505e70409643730/image_clip_path.py \ No newline at end of file diff --git a/_downloads/09364d81fc1cbd08346bd216bcc75656/centered_ticklabels.py b/_downloads/09364d81fc1cbd08346bd216bcc75656/centered_ticklabels.py deleted file mode 120000 index 137365abaa1..00000000000 --- a/_downloads/09364d81fc1cbd08346bd216bcc75656/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/09364d81fc1cbd08346bd216bcc75656/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/09414d02d82cca41f587d7fef9125e50/scatter_masked.ipynb b/_downloads/09414d02d82cca41f587d7fef9125e50/scatter_masked.ipynb deleted file mode 120000 index bbe1d875d81..00000000000 --- a/_downloads/09414d02d82cca41f587d7fef9125e50/scatter_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/09414d02d82cca41f587d7fef9125e50/scatter_masked.ipynb \ No newline at end of file diff --git a/_downloads/0943a65548c2732d6001d1ea1e66c7ea/simple_axis_direction03.py b/_downloads/0943a65548c2732d6001d1ea1e66c7ea/simple_axis_direction03.py deleted file mode 120000 index 6f587ae8ae9..00000000000 --- a/_downloads/0943a65548c2732d6001d1ea1e66c7ea/simple_axis_direction03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0943a65548c2732d6001d1ea1e66c7ea/simple_axis_direction03.py \ No newline at end of file diff --git a/_downloads/0944668fc6b7a0e5d1ce3ce3b833efa9/errorbar_subsample.py b/_downloads/0944668fc6b7a0e5d1ce3ce3b833efa9/errorbar_subsample.py deleted file mode 120000 index b950a4db7b1..00000000000 --- a/_downloads/0944668fc6b7a0e5d1ce3ce3b833efa9/errorbar_subsample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0944668fc6b7a0e5d1ce3ce3b833efa9/errorbar_subsample.py \ No newline at end of file diff --git a/_downloads/09484bae967d2fd55446e0d9914e16f8/categorical_variables.ipynb b/_downloads/09484bae967d2fd55446e0d9914e16f8/categorical_variables.ipynb deleted file mode 120000 index 40c10da67e8..00000000000 --- a/_downloads/09484bae967d2fd55446e0d9914e16f8/categorical_variables.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/09484bae967d2fd55446e0d9914e16f8/categorical_variables.ipynb \ No newline at end of file diff --git a/_downloads/0959fe441bb299beaad584aa109a35e2/legend_picking.ipynb b/_downloads/0959fe441bb299beaad584aa109a35e2/legend_picking.ipynb deleted file mode 120000 index 5edea7b8d97..00000000000 --- a/_downloads/0959fe441bb299beaad584aa109a35e2/legend_picking.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0959fe441bb299beaad584aa109a35e2/legend_picking.ipynb \ No newline at end of file diff --git a/_downloads/09747aa3b54e6cba3b9f2c1e643eda9e/mathtext_wx_sgskip.py b/_downloads/09747aa3b54e6cba3b9f2c1e643eda9e/mathtext_wx_sgskip.py deleted file mode 120000 index 1e984620e6c..00000000000 --- a/_downloads/09747aa3b54e6cba3b9f2c1e643eda9e/mathtext_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/09747aa3b54e6cba3b9f2c1e643eda9e/mathtext_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/0974f5c29541078c1cf08cf26cab6e2c/image_thumbnail_sgskip.py b/_downloads/0974f5c29541078c1cf08cf26cab6e2c/image_thumbnail_sgskip.py deleted file mode 120000 index a898dda5c21..00000000000 --- a/_downloads/0974f5c29541078c1cf08cf26cab6e2c/image_thumbnail_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0974f5c29541078c1cf08cf26cab6e2c/image_thumbnail_sgskip.py \ No newline at end of file diff --git a/_downloads/097a51ca72282d995adff65cc154af2f/embedding_in_gtk3_sgskip.ipynb b/_downloads/097a51ca72282d995adff65cc154af2f/embedding_in_gtk3_sgskip.ipynb deleted file mode 120000 index d3ce5ab6745..00000000000 --- a/_downloads/097a51ca72282d995adff65cc154af2f/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/097a51ca72282d995adff65cc154af2f/embedding_in_gtk3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/097abfad08c6603f8b008456287153a0/fill_between_alpha.py b/_downloads/097abfad08c6603f8b008456287153a0/fill_between_alpha.py deleted file mode 120000 index d193a31210d..00000000000 --- a/_downloads/097abfad08c6603f8b008456287153a0/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/097abfad08c6603f8b008456287153a0/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/097b83fd2176d7d59d452c69f9f42051/contour_demo.py b/_downloads/097b83fd2176d7d59d452c69f9f42051/contour_demo.py deleted file mode 120000 index 24d1e392b54..00000000000 --- a/_downloads/097b83fd2176d7d59d452c69f9f42051/contour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/097b83fd2176d7d59d452c69f9f42051/contour_demo.py \ No newline at end of file diff --git a/_downloads/098371686d4b3ac0b72feb146530d9fb/multipage_pdf.ipynb b/_downloads/098371686d4b3ac0b72feb146530d9fb/multipage_pdf.ipynb deleted file mode 100644 index b90a6f67d19..00000000000 --- a/_downloads/098371686d4b3ac0b72feb146530d9fb/multipage_pdf.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multipage PDF\n\n\nThis is a demo of creating a pdf file with several pages,\nas well as adding metadata and annotations to pdf files.\n\nIf you want to use a multipage pdf file using LaTeX, you need\nto use `from matplotlib.backends.backend_pgf import PdfPages`.\nThis version however does not support `attach_note`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\nimport numpy as np\nfrom matplotlib.backends.backend_pdf import PdfPages\nimport matplotlib.pyplot as plt\n\n# Create the PdfPages object to which we will save the pages:\n# The with statement makes sure that the PdfPages object is closed properly at\n# the end of the block, even if an Exception occurs.\nwith PdfPages('multipage_pdf.pdf') as pdf:\n plt.figure(figsize=(3, 3))\n plt.plot(range(7), [3, 1, 4, 1, 5, 9, 2], 'r-o')\n plt.title('Page One')\n pdf.savefig() # saves the current figure into a pdf page\n plt.close()\n\n # if LaTeX is not installed or error caught, change to `usetex=False`\n plt.rc('text', usetex=True)\n plt.figure(figsize=(8, 6))\n x = np.arange(0, 5, 0.1)\n plt.plot(x, np.sin(x), 'b-')\n plt.title('Page Two')\n pdf.attach_note(\"plot of sin(x)\") # you can add a pdf note to\n # attach metadata to a page\n pdf.savefig()\n plt.close()\n\n plt.rc('text', usetex=False)\n fig = plt.figure(figsize=(4, 5))\n plt.plot(x, x ** 2, 'ko')\n plt.title('Page Three')\n pdf.savefig(fig) # or you can pass a Figure object to pdf.savefig\n plt.close()\n\n # We can also set the file's metadata via the PdfPages object:\n d = pdf.infodict()\n d['Title'] = 'Multipage PDF Example'\n d['Author'] = 'Jouni K. Sepp\\xe4nen'\n d['Subject'] = 'How to create a multipage pdf file and set its metadata'\n d['Keywords'] = 'PdfPages multipage keywords author title subject'\n d['CreationDate'] = datetime.datetime(2009, 11, 13)\n d['ModDate'] = datetime.datetime.today()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/098fc711bde59fcb42a6294989475384/scatter.py b/_downloads/098fc711bde59fcb42a6294989475384/scatter.py deleted file mode 120000 index aa22345f069..00000000000 --- a/_downloads/098fc711bde59fcb42a6294989475384/scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/098fc711bde59fcb42a6294989475384/scatter.py \ No newline at end of file diff --git a/_downloads/099c421852f8b5487d6c30a61466eb70/bar_of_pie.ipynb b/_downloads/099c421852f8b5487d6c30a61466eb70/bar_of_pie.ipynb deleted file mode 120000 index 69d2614c2a1..00000000000 --- a/_downloads/099c421852f8b5487d6c30a61466eb70/bar_of_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/099c421852f8b5487d6c30a61466eb70/bar_of_pie.ipynb \ No newline at end of file diff --git a/_downloads/09a0121919925c1be03ed35846cbfa94/errorbar.ipynb b/_downloads/09a0121919925c1be03ed35846cbfa94/errorbar.ipynb deleted file mode 120000 index 3a5076e3099..00000000000 --- a/_downloads/09a0121919925c1be03ed35846cbfa94/errorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/09a0121919925c1be03ed35846cbfa94/errorbar.ipynb \ No newline at end of file diff --git a/_downloads/09a2c80e8a8933805bf49dbc8e42297d/histogram.ipynb b/_downloads/09a2c80e8a8933805bf49dbc8e42297d/histogram.ipynb deleted file mode 100644 index f9d145c1981..00000000000 --- a/_downloads/09a2c80e8a8933805bf49dbc8e42297d/histogram.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage histogram example\n\n\nThis example reproduces the frontpage histogram example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nrandom_state = np.random.RandomState(19680801)\nX = random_state.randn(10000)\n\nfig, ax = plt.subplots()\nax.hist(X, bins=25, density=True)\nx = np.linspace(-5, 5, 1000)\nax.plot(x, 1 / np.sqrt(2*np.pi) * np.exp(-(x**2)/2), linewidth=4)\nax.set_xticks([])\nax.set_yticks([])\nfig.savefig(\"histogram_frontpage.png\", dpi=25) # results in 160x120 px image" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/09a50f46a315616e483ad050b143f4ad/spines_bounds.ipynb b/_downloads/09a50f46a315616e483ad050b143f4ad/spines_bounds.ipynb deleted file mode 120000 index 0dec7df418b..00000000000 --- a/_downloads/09a50f46a315616e483ad050b143f4ad/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/09a50f46a315616e483ad050b143f4ad/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/09b1aea178bf035cbee3521f2dc571d8/whats_new_99_mplot3d.ipynb b/_downloads/09b1aea178bf035cbee3521f2dc571d8/whats_new_99_mplot3d.ipynb deleted file mode 120000 index 5231c0060fc..00000000000 --- a/_downloads/09b1aea178bf035cbee3521f2dc571d8/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/09b1aea178bf035cbee3521f2dc571d8/whats_new_99_mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/09bf0269e174ee2bcb35ac75eaf88cbf/colormap-manipulation.ipynb b/_downloads/09bf0269e174ee2bcb35ac75eaf88cbf/colormap-manipulation.ipynb deleted file mode 120000 index ac99c436085..00000000000 --- a/_downloads/09bf0269e174ee2bcb35ac75eaf88cbf/colormap-manipulation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/09bf0269e174ee2bcb35ac75eaf88cbf/colormap-manipulation.ipynb \ No newline at end of file diff --git a/_downloads/09c2355c9b08bbe526325d3c3f621d36/confidence_ellipse.ipynb b/_downloads/09c2355c9b08bbe526325d3c3f621d36/confidence_ellipse.ipynb deleted file mode 100644 index 702870ad44f..00000000000 --- a/_downloads/09c2355c9b08bbe526325d3c3f621d36/confidence_ellipse.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plot a confidence ellipse of a two-dimensional dataset\n\n\nThis example shows how to plot a confidence ellipse of a\ntwo-dimensional dataset, using its pearson correlation coefficient.\n\nThe approach that is used to obtain the correct geometry is\nexplained and proved here:\n\nhttps://carstenschelp.github.io/2018/09/14/Plot_Confidence_Ellipse_001.html\n\nThe method avoids the use of an iterative eigen decomposition algorithm\nand makes use of the fact that a normalized covariance matrix (composed of\npearson correlation coefficients and ones) is particularly easy to handle.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Ellipse\nimport matplotlib.transforms as transforms" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The plotting function itself\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThis function plots the confidence ellipse of the covariance of the given\narray-like variables x and y. The ellipse is plotted into the given\naxes-object ax.\n\nThe radiuses of the ellipse can be controlled by n_std which is the number\nof standard deviations. The default value is 3 which makes the ellipse\nenclose 99.7% of the points (given the data is normally distributed\nlike in these examples).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def confidence_ellipse(x, y, ax, n_std=3.0, facecolor='none', **kwargs):\n \"\"\"\n Create a plot of the covariance confidence ellipse of `x` and `y`\n\n Parameters\n ----------\n x, y : array_like, shape (n, )\n Input data.\n\n ax : matplotlib.axes.Axes\n The axes object to draw the ellipse into.\n\n n_std : float\n The number of standard deviations to determine the ellipse's radiuses.\n\n Returns\n -------\n matplotlib.patches.Ellipse\n\n Other parameters\n ----------------\n kwargs : `~matplotlib.patches.Patch` properties\n \"\"\"\n if x.size != y.size:\n raise ValueError(\"x and y must be the same size\")\n\n cov = np.cov(x, y)\n pearson = cov[0, 1]/np.sqrt(cov[0, 0] * cov[1, 1])\n # Using a special case to obtain the eigenvalues of this\n # two-dimensionl dataset.\n ell_radius_x = np.sqrt(1 + pearson)\n ell_radius_y = np.sqrt(1 - pearson)\n ellipse = Ellipse((0, 0),\n width=ell_radius_x * 2,\n height=ell_radius_y * 2,\n facecolor=facecolor,\n **kwargs)\n\n # Calculating the stdandard deviation of x from\n # the squareroot of the variance and multiplying\n # with the given number of standard deviations.\n scale_x = np.sqrt(cov[0, 0]) * n_std\n mean_x = np.mean(x)\n\n # calculating the stdandard deviation of y ...\n scale_y = np.sqrt(cov[1, 1]) * n_std\n mean_y = np.mean(y)\n\n transf = transforms.Affine2D() \\\n .rotate_deg(45) \\\n .scale(scale_x, scale_y) \\\n .translate(mean_x, mean_y)\n\n ellipse.set_transform(transf + ax.transData)\n return ax.add_patch(ellipse)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A helper function to create a correlated dataset\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nCreates a random two-dimesional dataset with the specified\ntwo-dimensional mean (mu) and dimensions (scale).\nThe correlation can be controlled by the param 'dependency',\na 2x2 matrix.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def get_correlated_dataset(n, dependency, mu, scale):\n latent = np.random.randn(n, 2)\n dependent = latent.dot(dependency)\n scaled = dependent * scale\n scaled_with_offset = scaled + mu\n # return x and y of the new, correlated dataset\n return scaled_with_offset[:, 0], scaled_with_offset[:, 1]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Positive, negative and weak correlation\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nNote that the shape for the weak correlation (right) is an ellipse,\nnot a circle because x and y are differently scaled.\nHowever, the fact that x and y are uncorrelated is shown by\nthe axes of the ellipse being aligned with the x- and y-axis\nof the coordinate system.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "np.random.seed(0)\n\nPARAMETERS = {\n 'Positive correlation': np.array([[0.85, 0.35],\n [0.15, -0.65]]),\n 'Negative correlation': np.array([[0.9, -0.4],\n [0.1, -0.6]]),\n 'Weak correlation': np.array([[1, 0],\n [0, 1]]),\n}\n\nmu = 2, 4\nscale = 3, 5\n\nfig, axs = plt.subplots(1, 3, figsize=(9, 3))\nfor ax, (title, dependency) in zip(axs, PARAMETERS.items()):\n x, y = get_correlated_dataset(800, dependency, mu, scale)\n ax.scatter(x, y, s=0.5)\n\n ax.axvline(c='grey', lw=1)\n ax.axhline(c='grey', lw=1)\n\n confidence_ellipse(x, y, ax, edgecolor='red')\n\n ax.scatter(mu[0], mu[1], c='red', s=3)\n ax.set_title(title)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Different number of standard deviations\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nA plot with n_std = 3 (blue), 2 (purple) and 1 (red)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax_nstd = plt.subplots(figsize=(6, 6))\n\ndependency_nstd = np.array([\n [0.8, 0.75],\n [-0.2, 0.35]\n])\nmu = 0, 0\nscale = 8, 5\n\nax_nstd.axvline(c='grey', lw=1)\nax_nstd.axhline(c='grey', lw=1)\n\nx, y = get_correlated_dataset(500, dependency_nstd, mu, scale)\nax_nstd.scatter(x, y, s=0.5)\n\nconfidence_ellipse(x, y, ax_nstd, n_std=1,\n label=r'$1\\sigma$', edgecolor='firebrick')\nconfidence_ellipse(x, y, ax_nstd, n_std=2,\n label=r'$2\\sigma$', edgecolor='fuchsia', linestyle='--')\nconfidence_ellipse(x, y, ax_nstd, n_std=3,\n label=r'$3\\sigma$', edgecolor='blue', linestyle=':')\n\nax_nstd.scatter(mu[0], mu[1], c='red', s=3)\nax_nstd.set_title('Different standard deviations')\nax_nstd.legend()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using the keyword arguments\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nUse the kwargs specified for matplotlib.patches.Patch in order\nto have the ellipse rendered in different ways.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax_kwargs = plt.subplots(figsize=(6, 6))\ndependency_kwargs = np.array([\n [-0.8, 0.5],\n [-0.2, 0.5]\n])\nmu = 2, -3\nscale = 6, 5\n\nax_kwargs.axvline(c='grey', lw=1)\nax_kwargs.axhline(c='grey', lw=1)\n\nx, y = get_correlated_dataset(500, dependency_kwargs, mu, scale)\n# Plot the ellipse with zorder=0 in order to demonstrate\n# its transparency (caused by the use of alpha).\nconfidence_ellipse(x, y, ax_kwargs,\n alpha=0.5, facecolor='pink', edgecolor='purple', zorder=0)\n\nax_kwargs.scatter(x, y, s=0.5)\nax_kwargs.scatter(mu[0], mu[1], c='red', s=3)\nax_kwargs.set_title(f'Using kwargs')\n\nfig.subplots_adjust(hspace=0.25)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/09c59008d06c46f5e3b7af18a9b4160b/demo_curvelinear_grid.ipynb b/_downloads/09c59008d06c46f5e3b7af18a9b4160b/demo_curvelinear_grid.ipynb deleted file mode 120000 index 57ec4ff2b97..00000000000 --- a/_downloads/09c59008d06c46f5e3b7af18a9b4160b/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/09c59008d06c46f5e3b7af18a9b4160b/demo_curvelinear_grid.ipynb \ No newline at end of file diff --git a/_downloads/09c73b5bab901badc89f8ffc49eeab83/units_sample.ipynb b/_downloads/09c73b5bab901badc89f8ffc49eeab83/units_sample.ipynb deleted file mode 120000 index 3bfa51d38b2..00000000000 --- a/_downloads/09c73b5bab901badc89f8ffc49eeab83/units_sample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/09c73b5bab901badc89f8ffc49eeab83/units_sample.ipynb \ No newline at end of file diff --git a/_downloads/09caab4922c225ce6337f112aa57234a/stem3d_demo.ipynb b/_downloads/09caab4922c225ce6337f112aa57234a/stem3d_demo.ipynb deleted file mode 120000 index 3e612af9251..00000000000 --- a/_downloads/09caab4922c225ce6337f112aa57234a/stem3d_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/09caab4922c225ce6337f112aa57234a/stem3d_demo.ipynb \ No newline at end of file diff --git a/_downloads/09dc15ddbd608e9fce1b0142fbde4fda/demo_colorbar_of_inset_axes.py b/_downloads/09dc15ddbd608e9fce1b0142fbde4fda/demo_colorbar_of_inset_axes.py deleted file mode 120000 index 5cb7a861f96..00000000000 --- a/_downloads/09dc15ddbd608e9fce1b0142fbde4fda/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/09dc15ddbd608e9fce1b0142fbde4fda/demo_colorbar_of_inset_axes.py \ No newline at end of file diff --git a/_downloads/09dcf53212179c40d1f5f96ab70eae3e/pick_event_demo2.py b/_downloads/09dcf53212179c40d1f5f96ab70eae3e/pick_event_demo2.py deleted file mode 120000 index 96556a66d82..00000000000 --- a/_downloads/09dcf53212179c40d1f5f96ab70eae3e/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/09dcf53212179c40d1f5f96ab70eae3e/pick_event_demo2.py \ No newline at end of file diff --git a/_downloads/09e23e95f98ace22e283199384582c67/bar_stacked.py b/_downloads/09e23e95f98ace22e283199384582c67/bar_stacked.py deleted file mode 100644 index d5bb2eca958..00000000000 --- a/_downloads/09e23e95f98ace22e283199384582c67/bar_stacked.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -================= -Stacked Bar Graph -================= - -This is an example of creating a stacked bar plot with error bars -using `~matplotlib.pyplot.bar`. Note the parameters *yerr* used for -error bars, and *bottom* to stack the women's bars on top of the men's -bars. - -""" - -import numpy as np -import matplotlib.pyplot as plt - - -N = 5 -menMeans = (20, 35, 30, 35, 27) -womenMeans = (25, 32, 34, 20, 25) -menStd = (2, 3, 4, 1, 2) -womenStd = (3, 5, 2, 3, 3) -ind = np.arange(N) # the x locations for the groups -width = 0.35 # the width of the bars: can also be len(x) sequence - -p1 = plt.bar(ind, menMeans, width, yerr=menStd) -p2 = plt.bar(ind, womenMeans, width, - bottom=menMeans, yerr=womenStd) - -plt.ylabel('Scores') -plt.title('Scores by group and gender') -plt.xticks(ind, ('G1', 'G2', 'G3', 'G4', 'G5')) -plt.yticks(np.arange(0, 81, 10)) -plt.legend((p1[0], p2[0]), ('Men', 'Women')) - -plt.show() diff --git a/_downloads/09e64387473eb192b83b534608a79d82/major_minor_demo.ipynb b/_downloads/09e64387473eb192b83b534608a79d82/major_minor_demo.ipynb deleted file mode 120000 index d559549b8dc..00000000000 --- a/_downloads/09e64387473eb192b83b534608a79d82/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/09e64387473eb192b83b534608a79d82/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/09f468e815262b8c233e1b774edfe253/inset_locator_demo.ipynb b/_downloads/09f468e815262b8c233e1b774edfe253/inset_locator_demo.ipynb deleted file mode 120000 index cea1caebe67..00000000000 --- a/_downloads/09f468e815262b8c233e1b774edfe253/inset_locator_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/09f468e815262b8c233e1b774edfe253/inset_locator_demo.ipynb \ No newline at end of file diff --git a/_downloads/09f55f2ff59aaac5ba45d37a63353085/basic_units.ipynb b/_downloads/09f55f2ff59aaac5ba45d37a63353085/basic_units.ipynb deleted file mode 100644 index 4abc3e0290b..00000000000 --- a/_downloads/09f55f2ff59aaac5ba45d37a63353085/basic_units.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Basic Units\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import math\n\nimport numpy as np\n\nimport matplotlib.units as units\nimport matplotlib.ticker as ticker\n\n\nclass ProxyDelegate(object):\n def __init__(self, fn_name, proxy_type):\n self.proxy_type = proxy_type\n self.fn_name = fn_name\n\n def __get__(self, obj, objtype=None):\n return self.proxy_type(self.fn_name, obj)\n\n\nclass TaggedValueMeta(type):\n def __init__(self, name, bases, dict):\n for fn_name in self._proxies:\n try:\n dummy = getattr(self, fn_name)\n except AttributeError:\n setattr(self, fn_name,\n ProxyDelegate(fn_name, self._proxies[fn_name]))\n\n\nclass PassThroughProxy(object):\n def __init__(self, fn_name, obj):\n self.fn_name = fn_name\n self.target = obj.proxy_target\n\n def __call__(self, *args):\n fn = getattr(self.target, self.fn_name)\n ret = fn(*args)\n return ret\n\n\nclass ConvertArgsProxy(PassThroughProxy):\n def __init__(self, fn_name, obj):\n PassThroughProxy.__init__(self, fn_name, obj)\n self.unit = obj.unit\n\n def __call__(self, *args):\n converted_args = []\n for a in args:\n try:\n converted_args.append(a.convert_to(self.unit))\n except AttributeError:\n converted_args.append(TaggedValue(a, self.unit))\n converted_args = tuple([c.get_value() for c in converted_args])\n return PassThroughProxy.__call__(self, *converted_args)\n\n\nclass ConvertReturnProxy(PassThroughProxy):\n def __init__(self, fn_name, obj):\n PassThroughProxy.__init__(self, fn_name, obj)\n self.unit = obj.unit\n\n def __call__(self, *args):\n ret = PassThroughProxy.__call__(self, *args)\n return (NotImplemented if ret is NotImplemented\n else TaggedValue(ret, self.unit))\n\n\nclass ConvertAllProxy(PassThroughProxy):\n def __init__(self, fn_name, obj):\n PassThroughProxy.__init__(self, fn_name, obj)\n self.unit = obj.unit\n\n def __call__(self, *args):\n converted_args = []\n arg_units = [self.unit]\n for a in args:\n if hasattr(a, 'get_unit') and not hasattr(a, 'convert_to'):\n # if this arg has a unit type but no conversion ability,\n # this operation is prohibited\n return NotImplemented\n\n if hasattr(a, 'convert_to'):\n try:\n a = a.convert_to(self.unit)\n except Exception:\n pass\n arg_units.append(a.get_unit())\n converted_args.append(a.get_value())\n else:\n converted_args.append(a)\n if hasattr(a, 'get_unit'):\n arg_units.append(a.get_unit())\n else:\n arg_units.append(None)\n converted_args = tuple(converted_args)\n ret = PassThroughProxy.__call__(self, *converted_args)\n if ret is NotImplemented:\n return NotImplemented\n ret_unit = unit_resolver(self.fn_name, arg_units)\n if ret_unit is NotImplemented:\n return NotImplemented\n return TaggedValue(ret, ret_unit)\n\n\nclass TaggedValue(metaclass=TaggedValueMeta):\n\n _proxies = {'__add__': ConvertAllProxy,\n '__sub__': ConvertAllProxy,\n '__mul__': ConvertAllProxy,\n '__rmul__': ConvertAllProxy,\n '__cmp__': ConvertAllProxy,\n '__lt__': ConvertAllProxy,\n '__gt__': ConvertAllProxy,\n '__len__': PassThroughProxy}\n\n def __new__(cls, value, unit):\n # generate a new subclass for value\n value_class = type(value)\n try:\n subcls = type(f'TaggedValue_of_{value_class.__name__}',\n (cls, value_class), {})\n if subcls not in units.registry:\n units.registry[subcls] = basicConverter\n return object.__new__(subcls)\n except TypeError:\n if cls not in units.registry:\n units.registry[cls] = basicConverter\n return object.__new__(cls)\n\n def __init__(self, value, unit):\n self.value = value\n self.unit = unit\n self.proxy_target = self.value\n\n def __getattribute__(self, name):\n if name.startswith('__'):\n return object.__getattribute__(self, name)\n variable = object.__getattribute__(self, 'value')\n if hasattr(variable, name) and name not in self.__class__.__dict__:\n return getattr(variable, name)\n return object.__getattribute__(self, name)\n\n def __array__(self, dtype=object):\n return np.asarray(self.value).astype(dtype)\n\n def __array_wrap__(self, array, context):\n return TaggedValue(array, self.unit)\n\n def __repr__(self):\n return 'TaggedValue({!r}, {!r})'.format(self.value, self.unit)\n\n def __str__(self):\n return str(self.value) + ' in ' + str(self.unit)\n\n def __len__(self):\n return len(self.value)\n\n def __iter__(self):\n # Return a generator expression rather than use `yield`, so that\n # TypeError is raised by iter(self) if appropriate when checking for\n # iterability.\n return (TaggedValue(inner, self.unit) for inner in self.value)\n\n def get_compressed_copy(self, mask):\n new_value = np.ma.masked_array(self.value, mask=mask).compressed()\n return TaggedValue(new_value, self.unit)\n\n def convert_to(self, unit):\n if unit == self.unit or not unit:\n return self\n try:\n new_value = self.unit.convert_value_to(self.value, unit)\n except AttributeError:\n new_value = self\n return TaggedValue(new_value, unit)\n\n def get_value(self):\n return self.value\n\n def get_unit(self):\n return self.unit\n\n\nclass BasicUnit(object):\n def __init__(self, name, fullname=None):\n self.name = name\n if fullname is None:\n fullname = name\n self.fullname = fullname\n self.conversions = dict()\n\n def __repr__(self):\n return f'BasicUnit({self.name})'\n\n def __str__(self):\n return self.fullname\n\n def __call__(self, value):\n return TaggedValue(value, self)\n\n def __mul__(self, rhs):\n value = rhs\n unit = self\n if hasattr(rhs, 'get_unit'):\n value = rhs.get_value()\n unit = rhs.get_unit()\n unit = unit_resolver('__mul__', (self, unit))\n if unit is NotImplemented:\n return NotImplemented\n return TaggedValue(value, unit)\n\n def __rmul__(self, lhs):\n return self*lhs\n\n def __array_wrap__(self, array, context):\n return TaggedValue(array, self)\n\n def __array__(self, t=None, context=None):\n ret = np.array([1])\n if t is not None:\n return ret.astype(t)\n else:\n return ret\n\n def add_conversion_factor(self, unit, factor):\n def convert(x):\n return x*factor\n self.conversions[unit] = convert\n\n def add_conversion_fn(self, unit, fn):\n self.conversions[unit] = fn\n\n def get_conversion_fn(self, unit):\n return self.conversions[unit]\n\n def convert_value_to(self, value, unit):\n conversion_fn = self.conversions[unit]\n ret = conversion_fn(value)\n return ret\n\n def get_unit(self):\n return self\n\n\nclass UnitResolver(object):\n def addition_rule(self, units):\n for unit_1, unit_2 in zip(units[:-1], units[1:]):\n if unit_1 != unit_2:\n return NotImplemented\n return units[0]\n\n def multiplication_rule(self, units):\n non_null = [u for u in units if u]\n if len(non_null) > 1:\n return NotImplemented\n return non_null[0]\n\n op_dict = {\n '__mul__': multiplication_rule,\n '__rmul__': multiplication_rule,\n '__add__': addition_rule,\n '__radd__': addition_rule,\n '__sub__': addition_rule,\n '__rsub__': addition_rule}\n\n def __call__(self, operation, units):\n if operation not in self.op_dict:\n return NotImplemented\n\n return self.op_dict[operation](self, units)\n\n\nunit_resolver = UnitResolver()\n\ncm = BasicUnit('cm', 'centimeters')\ninch = BasicUnit('inch', 'inches')\ninch.add_conversion_factor(cm, 2.54)\ncm.add_conversion_factor(inch, 1/2.54)\n\nradians = BasicUnit('rad', 'radians')\ndegrees = BasicUnit('deg', 'degrees')\nradians.add_conversion_factor(degrees, 180.0/np.pi)\ndegrees.add_conversion_factor(radians, np.pi/180.0)\n\nsecs = BasicUnit('s', 'seconds')\nhertz = BasicUnit('Hz', 'Hertz')\nminutes = BasicUnit('min', 'minutes')\n\nsecs.add_conversion_fn(hertz, lambda x: 1./x)\nsecs.add_conversion_factor(minutes, 1/60.0)\n\n\n# radians formatting\ndef rad_fn(x, pos=None):\n if x >= 0:\n n = int((x / np.pi) * 2.0 + 0.25)\n else:\n n = int((x / np.pi) * 2.0 - 0.25)\n\n if n == 0:\n return '0'\n elif n == 1:\n return r'$\\pi/2$'\n elif n == 2:\n return r'$\\pi$'\n elif n == -1:\n return r'$-\\pi/2$'\n elif n == -2:\n return r'$-\\pi$'\n elif n % 2 == 0:\n return fr'${n//2}\\pi$'\n else:\n return fr'${n}\\pi/2$'\n\n\nclass BasicUnitConverter(units.ConversionInterface):\n @staticmethod\n def axisinfo(unit, axis):\n 'return AxisInfo instance for x and unit'\n\n if unit == radians:\n return units.AxisInfo(\n majloc=ticker.MultipleLocator(base=np.pi/2),\n majfmt=ticker.FuncFormatter(rad_fn),\n label=unit.fullname,\n )\n elif unit == degrees:\n return units.AxisInfo(\n majloc=ticker.AutoLocator(),\n majfmt=ticker.FormatStrFormatter(r'$%i^\\circ$'),\n label=unit.fullname,\n )\n elif unit is not None:\n if hasattr(unit, 'fullname'):\n return units.AxisInfo(label=unit.fullname)\n elif hasattr(unit, 'unit'):\n return units.AxisInfo(label=unit.unit.fullname)\n return None\n\n @staticmethod\n def convert(val, unit, axis):\n if units.ConversionInterface.is_numlike(val):\n return val\n if np.iterable(val):\n if isinstance(val, np.ma.MaskedArray):\n val = val.astype(float).filled(np.nan)\n out = np.empty(len(val))\n for i, thisval in enumerate(val):\n if np.ma.is_masked(thisval):\n out[i] = np.nan\n else:\n try:\n out[i] = thisval.convert_to(unit).get_value()\n except AttributeError:\n out[i] = thisval\n return out\n if np.ma.is_masked(val):\n return np.nan\n else:\n return val.convert_to(unit).get_value()\n\n @staticmethod\n def default_units(x, axis):\n 'return the default unit for x or None'\n if np.iterable(x):\n for thisx in x:\n return thisx.unit\n return x.unit\n\n\ndef cos(x):\n if np.iterable(x):\n return [math.cos(val.convert_to(radians).get_value()) for val in x]\n else:\n return math.cos(x.convert_to(radians).get_value())\n\n\nbasicConverter = BasicUnitConverter()\nunits.registry[BasicUnit] = basicConverter\nunits.registry[TaggedValue] = basicConverter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/09f5caf08fd28e0aac2ca7a290483af1/demo_bboximage.ipynb b/_downloads/09f5caf08fd28e0aac2ca7a290483af1/demo_bboximage.ipynb deleted file mode 120000 index cad023bca63..00000000000 --- a/_downloads/09f5caf08fd28e0aac2ca7a290483af1/demo_bboximage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/09f5caf08fd28e0aac2ca7a290483af1/demo_bboximage.ipynb \ No newline at end of file diff --git a/_downloads/09f86c41c25db71cc553c837d38c6662/two_scales.py b/_downloads/09f86c41c25db71cc553c837d38c6662/two_scales.py deleted file mode 120000 index 5f6ab199f34..00000000000 --- a/_downloads/09f86c41c25db71cc553c837d38c6662/two_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/09f86c41c25db71cc553c837d38c6662/two_scales.py \ No newline at end of file diff --git a/_downloads/0a06b84639dacabc0b82ae6618c54b48/categorical_variables.ipynb b/_downloads/0a06b84639dacabc0b82ae6618c54b48/categorical_variables.ipynb deleted file mode 120000 index adcd8ac7ae9..00000000000 --- a/_downloads/0a06b84639dacabc0b82ae6618c54b48/categorical_variables.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0a06b84639dacabc0b82ae6618c54b48/categorical_variables.ipynb \ No newline at end of file diff --git a/_downloads/0a1e144b6bce9dd1e3997ee8bff4cc77/poly_editor.ipynb b/_downloads/0a1e144b6bce9dd1e3997ee8bff4cc77/poly_editor.ipynb deleted file mode 100644 index d439b0c6703..00000000000 --- a/_downloads/0a1e144b6bce9dd1e3997ee8bff4cc77/poly_editor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Poly Editor\n\n\nThis is an example to show how to build cross-GUI applications using\nMatplotlib event handling to interact with objects on the canvas.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.lines import Line2D\nfrom matplotlib.artist import Artist\n\n\ndef dist(x, y):\n \"\"\"\n Return the distance between two points.\n \"\"\"\n d = x - y\n return np.sqrt(np.dot(d, d))\n\n\ndef dist_point_to_segment(p, s0, s1):\n \"\"\"\n Get the distance of a point to a segment.\n *p*, *s0*, *s1* are *xy* sequences\n This algorithm from\n http://geomalgorithms.com/a02-_lines.html\n \"\"\"\n v = s1 - s0\n w = p - s0\n c1 = np.dot(w, v)\n if c1 <= 0:\n return dist(p, s0)\n c2 = np.dot(v, v)\n if c2 <= c1:\n return dist(p, s1)\n b = c1 / c2\n pb = s0 + b * v\n return dist(p, pb)\n\n\nclass PolygonInteractor(object):\n \"\"\"\n A polygon editor.\n\n Key-bindings\n\n 't' toggle vertex markers on and off. When vertex markers are on,\n you can move them, delete them\n\n 'd' delete the vertex under point\n\n 'i' insert a vertex at point. You must be within epsilon of the\n line connecting two existing vertices\n\n \"\"\"\n\n showverts = True\n epsilon = 5 # max pixel distance to count as a vertex hit\n\n def __init__(self, ax, poly):\n if poly.figure is None:\n raise RuntimeError('You must first add the polygon to a figure '\n 'or canvas before defining the interactor')\n self.ax = ax\n canvas = poly.figure.canvas\n self.poly = poly\n\n x, y = zip(*self.poly.xy)\n self.line = Line2D(x, y,\n marker='o', markerfacecolor='r',\n animated=True)\n self.ax.add_line(self.line)\n\n self.cid = self.poly.add_callback(self.poly_changed)\n self._ind = None # the active vert\n\n canvas.mpl_connect('draw_event', self.draw_callback)\n canvas.mpl_connect('button_press_event', self.button_press_callback)\n canvas.mpl_connect('key_press_event', self.key_press_callback)\n canvas.mpl_connect('button_release_event', self.button_release_callback)\n canvas.mpl_connect('motion_notify_event', self.motion_notify_callback)\n self.canvas = canvas\n\n def draw_callback(self, event):\n self.background = self.canvas.copy_from_bbox(self.ax.bbox)\n self.ax.draw_artist(self.poly)\n self.ax.draw_artist(self.line)\n # do not need to blit here, this will fire before the screen is\n # updated\n\n def poly_changed(self, poly):\n 'this method is called whenever the polygon object is called'\n # only copy the artist props to the line (except visibility)\n vis = self.line.get_visible()\n Artist.update_from(self.line, poly)\n self.line.set_visible(vis) # don't use the poly visibility state\n\n def get_ind_under_point(self, event):\n 'get the index of the vertex under point if within epsilon tolerance'\n\n # display coords\n xy = np.asarray(self.poly.xy)\n xyt = self.poly.get_transform().transform(xy)\n xt, yt = xyt[:, 0], xyt[:, 1]\n d = np.hypot(xt - event.x, yt - event.y)\n indseq, = np.nonzero(d == d.min())\n ind = indseq[0]\n\n if d[ind] >= self.epsilon:\n ind = None\n\n return ind\n\n def button_press_callback(self, event):\n 'whenever a mouse button is pressed'\n if not self.showverts:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n self._ind = self.get_ind_under_point(event)\n\n def button_release_callback(self, event):\n 'whenever a mouse button is released'\n if not self.showverts:\n return\n if event.button != 1:\n return\n self._ind = None\n\n def key_press_callback(self, event):\n 'whenever a key is pressed'\n if not event.inaxes:\n return\n if event.key == 't':\n self.showverts = not self.showverts\n self.line.set_visible(self.showverts)\n if not self.showverts:\n self._ind = None\n elif event.key == 'd':\n ind = self.get_ind_under_point(event)\n if ind is not None:\n self.poly.xy = np.delete(self.poly.xy,\n ind, axis=0)\n self.line.set_data(zip(*self.poly.xy))\n elif event.key == 'i':\n xys = self.poly.get_transform().transform(self.poly.xy)\n p = event.x, event.y # display coords\n for i in range(len(xys) - 1):\n s0 = xys[i]\n s1 = xys[i + 1]\n d = dist_point_to_segment(p, s0, s1)\n if d <= self.epsilon:\n self.poly.xy = np.insert(\n self.poly.xy, i+1,\n [event.xdata, event.ydata],\n axis=0)\n self.line.set_data(zip(*self.poly.xy))\n break\n if self.line.stale:\n self.canvas.draw_idle()\n\n def motion_notify_callback(self, event):\n 'on mouse movement'\n if not self.showverts:\n return\n if self._ind is None:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n x, y = event.xdata, event.ydata\n\n self.poly.xy[self._ind] = x, y\n if self._ind == 0:\n self.poly.xy[-1] = x, y\n elif self._ind == len(self.poly.xy) - 1:\n self.poly.xy[0] = x, y\n self.line.set_data(zip(*self.poly.xy))\n\n self.canvas.restore_region(self.background)\n self.ax.draw_artist(self.poly)\n self.ax.draw_artist(self.line)\n self.canvas.blit(self.ax.bbox)\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n from matplotlib.patches import Polygon\n\n theta = np.arange(0, 2*np.pi, 0.1)\n r = 1.5\n\n xs = r * np.cos(theta)\n ys = r * np.sin(theta)\n\n poly = Polygon(np.column_stack([xs, ys]), animated=True)\n\n fig, ax = plt.subplots()\n ax.add_patch(poly)\n p = PolygonInteractor(ax, poly)\n\n ax.set_title('Click and drag a point to move it')\n ax.set_xlim((-2, 2))\n ax.set_ylim((-2, 2))\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0a20a3b7eb80d67f96a184fc4988138e/demo_parasite_axes.ipynb b/_downloads/0a20a3b7eb80d67f96a184fc4988138e/demo_parasite_axes.ipynb deleted file mode 120000 index 3afb919a144..00000000000 --- a/_downloads/0a20a3b7eb80d67f96a184fc4988138e/demo_parasite_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0a20a3b7eb80d67f96a184fc4988138e/demo_parasite_axes.ipynb \ No newline at end of file diff --git a/_downloads/0a211ce8d3ee3b1bb9c401bfb4529bef/path_editor.py b/_downloads/0a211ce8d3ee3b1bb9c401bfb4529bef/path_editor.py deleted file mode 120000 index ed39fff0a46..00000000000 --- a/_downloads/0a211ce8d3ee3b1bb9c401bfb4529bef/path_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0a211ce8d3ee3b1bb9c401bfb4529bef/path_editor.py \ No newline at end of file diff --git a/_downloads/0a23210c9b95129932f5bd45cf752507/trifinder_event_demo.ipynb b/_downloads/0a23210c9b95129932f5bd45cf752507/trifinder_event_demo.ipynb deleted file mode 120000 index 7adb56f9ada..00000000000 --- a/_downloads/0a23210c9b95129932f5bd45cf752507/trifinder_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0a23210c9b95129932f5bd45cf752507/trifinder_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/0a2c0cee2aae1830f1d7ea9220458efe/fahrenheit_celsius_scales.ipynb b/_downloads/0a2c0cee2aae1830f1d7ea9220458efe/fahrenheit_celsius_scales.ipynb deleted file mode 120000 index 6d4c1c8a32b..00000000000 --- a/_downloads/0a2c0cee2aae1830f1d7ea9220458efe/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0a2c0cee2aae1830f1d7ea9220458efe/fahrenheit_celsius_scales.ipynb \ No newline at end of file diff --git a/_downloads/0a40b2e2ede393215f7133874cd15bb6/leftventricle_bulleye.ipynb b/_downloads/0a40b2e2ede393215f7133874cd15bb6/leftventricle_bulleye.ipynb deleted file mode 120000 index c02cb70575a..00000000000 --- a/_downloads/0a40b2e2ede393215f7133874cd15bb6/leftventricle_bulleye.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0a40b2e2ede393215f7133874cd15bb6/leftventricle_bulleye.ipynb \ No newline at end of file diff --git a/_downloads/0a4ee95f9a3c877a57c97909203e39ac/tricontour_demo.ipynb b/_downloads/0a4ee95f9a3c877a57c97909203e39ac/tricontour_demo.ipynb deleted file mode 120000 index 3a959ca1093..00000000000 --- a/_downloads/0a4ee95f9a3c877a57c97909203e39ac/tricontour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0a4ee95f9a3c877a57c97909203e39ac/tricontour_demo.ipynb \ No newline at end of file diff --git a/_downloads/0a5a31174300db1973c769a9950c3a32/topographic_hillshading.ipynb b/_downloads/0a5a31174300db1973c769a9950c3a32/topographic_hillshading.ipynb deleted file mode 120000 index 7350436b321..00000000000 --- a/_downloads/0a5a31174300db1973c769a9950c3a32/topographic_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0a5a31174300db1973c769a9950c3a32/topographic_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/0a5a687b9a07c6ebf99a6c40335ad687/custom_boxstyle02.ipynb b/_downloads/0a5a687b9a07c6ebf99a6c40335ad687/custom_boxstyle02.ipynb deleted file mode 120000 index 1a2b1769feb..00000000000 --- a/_downloads/0a5a687b9a07c6ebf99a6c40335ad687/custom_boxstyle02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0a5a687b9a07c6ebf99a6c40335ad687/custom_boxstyle02.ipynb \ No newline at end of file diff --git a/_downloads/0a65154f05db6f9666fd5aa57e848ea1/simple_axisline3.ipynb b/_downloads/0a65154f05db6f9666fd5aa57e848ea1/simple_axisline3.ipynb deleted file mode 120000 index 98a45e4317e..00000000000 --- a/_downloads/0a65154f05db6f9666fd5aa57e848ea1/simple_axisline3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0a65154f05db6f9666fd5aa57e848ea1/simple_axisline3.ipynb \ No newline at end of file diff --git a/_downloads/0a68d1d9065cf3ac861bc7129c233fd0/geo_demo.py b/_downloads/0a68d1d9065cf3ac861bc7129c233fd0/geo_demo.py deleted file mode 100644 index c0ac7f7adfa..00000000000 --- a/_downloads/0a68d1d9065cf3ac861bc7129c233fd0/geo_demo.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -====================== -Geographic Projections -====================== - -This shows 4 possible projections using subplot. Matplotlib also -supports `Basemaps Toolkit `_ and -`Cartopy `_ for geographic projections. - -""" - -import matplotlib.pyplot as plt - -############################################################################### - -plt.figure() -plt.subplot(111, projection="aitoff") -plt.title("Aitoff") -plt.grid(True) - -############################################################################### - -plt.figure() -plt.subplot(111, projection="hammer") -plt.title("Hammer") -plt.grid(True) - -############################################################################### - -plt.figure() -plt.subplot(111, projection="lambert") -plt.title("Lambert") -plt.grid(True) - -############################################################################### - -plt.figure() -plt.subplot(111, projection="mollweide") -plt.title("Mollweide") -plt.grid(True) - -plt.show() diff --git a/_downloads/0a6941f5b2b9f26cf7c44ff3c6359585/fig_axes_labels_simple.py b/_downloads/0a6941f5b2b9f26cf7c44ff3c6359585/fig_axes_labels_simple.py deleted file mode 120000 index 2f10fb659b4..00000000000 --- a/_downloads/0a6941f5b2b9f26cf7c44ff3c6359585/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0a6941f5b2b9f26cf7c44ff3c6359585/fig_axes_labels_simple.py \ No newline at end of file diff --git a/_downloads/0a71252cbd72f4b7703fd19fa4a7b494/mplot3d.ipynb b/_downloads/0a71252cbd72f4b7703fd19fa4a7b494/mplot3d.ipynb deleted file mode 120000 index 6f556d873bb..00000000000 --- a/_downloads/0a71252cbd72f4b7703fd19fa4a7b494/mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0a71252cbd72f4b7703fd19fa4a7b494/mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/0a72db34a04fa8aa4cf4153afe882a6a/fill_between_alpha.ipynb b/_downloads/0a72db34a04fa8aa4cf4153afe882a6a/fill_between_alpha.ipynb deleted file mode 120000 index fc3b9c4eff5..00000000000 --- a/_downloads/0a72db34a04fa8aa4cf4153afe882a6a/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0a72db34a04fa8aa4cf4153afe882a6a/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/0a903f73f66f035ad2161cdc6cc79fb3/power_norm.py b/_downloads/0a903f73f66f035ad2161cdc6cc79fb3/power_norm.py deleted file mode 120000 index 1d3072b388f..00000000000 --- a/_downloads/0a903f73f66f035ad2161cdc6cc79fb3/power_norm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0a903f73f66f035ad2161cdc6cc79fb3/power_norm.py \ No newline at end of file diff --git a/_downloads/0aa526fb17d2197164296ca813288a5d/lifecycle.py b/_downloads/0aa526fb17d2197164296ca813288a5d/lifecycle.py deleted file mode 120000 index c44a8755a1a..00000000000 --- a/_downloads/0aa526fb17d2197164296ca813288a5d/lifecycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0aa526fb17d2197164296ca813288a5d/lifecycle.py \ No newline at end of file diff --git a/_downloads/0aa7207a18c2a71d6c6c7181b93470a1/embedding_in_wx5_sgskip.ipynb b/_downloads/0aa7207a18c2a71d6c6c7181b93470a1/embedding_in_wx5_sgskip.ipynb deleted file mode 120000 index d0995ed3014..00000000000 --- a/_downloads/0aa7207a18c2a71d6c6c7181b93470a1/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0aa7207a18c2a71d6c6c7181b93470a1/embedding_in_wx5_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/0aaba8ecd435a765c9a34c78ed96fdf5/units_scatter.ipynb b/_downloads/0aaba8ecd435a765c9a34c78ed96fdf5/units_scatter.ipynb deleted file mode 120000 index d798d3de64c..00000000000 --- a/_downloads/0aaba8ecd435a765c9a34c78ed96fdf5/units_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0aaba8ecd435a765c9a34c78ed96fdf5/units_scatter.ipynb \ No newline at end of file diff --git a/_downloads/0aaf52c32b39d66f2d9574895b6a35ab/plot_streamplot.py b/_downloads/0aaf52c32b39d66f2d9574895b6a35ab/plot_streamplot.py deleted file mode 120000 index e7455f8de1a..00000000000 --- a/_downloads/0aaf52c32b39d66f2d9574895b6a35ab/plot_streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0aaf52c32b39d66f2d9574895b6a35ab/plot_streamplot.py \ No newline at end of file diff --git a/_downloads/0ac1cb69700435e6764c4e2508779154/annotation_polar.py b/_downloads/0ac1cb69700435e6764c4e2508779154/annotation_polar.py deleted file mode 100644 index e900c70d102..00000000000 --- a/_downloads/0ac1cb69700435e6764c4e2508779154/annotation_polar.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -================ -Annotation Polar -================ - -This example shows how to create an annotation on a polar graph. - -For a complete overview of the annotation capabilities, also see the -:doc:`annotation tutorial`. -""" -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -ax = fig.add_subplot(111, polar=True) -r = np.arange(0,1,0.001) -theta = 2 * 2*np.pi * r -line, = ax.plot(theta, r, color='#ee8d18', lw=3) - -ind = 800 -thisr, thistheta = r[ind], theta[ind] -ax.plot([thistheta], [thisr], 'o') -ax.annotate('a polar annotation', - xy=(thistheta, thisr), # theta, radius - xytext=(0.05, 0.05), # fraction, fraction - textcoords='figure fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='left', - verticalalignment='bottom', - ) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.projections.polar -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/0ac7242e97a850842adf1a5a20fd4400/rainbow_text.py b/_downloads/0ac7242e97a850842adf1a5a20fd4400/rainbow_text.py deleted file mode 120000 index 3fa235ce5b0..00000000000 --- a/_downloads/0ac7242e97a850842adf1a5a20fd4400/rainbow_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ac7242e97a850842adf1a5a20fd4400/rainbow_text.py \ No newline at end of file diff --git a/_downloads/0ac7a97855e500ce22c5ef62c41c29fb/contour3d_2.ipynb b/_downloads/0ac7a97855e500ce22c5ef62c41c29fb/contour3d_2.ipynb deleted file mode 120000 index 29204e5f6b3..00000000000 --- a/_downloads/0ac7a97855e500ce22c5ef62c41c29fb/contour3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0ac7a97855e500ce22c5ef62c41c29fb/contour3d_2.ipynb \ No newline at end of file diff --git a/_downloads/0acdc8b8bcccaea58c529409b8faa998/hyperlinks_sgskip.ipynb b/_downloads/0acdc8b8bcccaea58c529409b8faa998/hyperlinks_sgskip.ipynb deleted file mode 120000 index c9f0649a261..00000000000 --- a/_downloads/0acdc8b8bcccaea58c529409b8faa998/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0acdc8b8bcccaea58c529409b8faa998/hyperlinks_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/0ada87629c84194fcea0d30439a53c80/annotate_simple03.py b/_downloads/0ada87629c84194fcea0d30439a53c80/annotate_simple03.py deleted file mode 120000 index 887a06427b3..00000000000 --- a/_downloads/0ada87629c84194fcea0d30439a53c80/annotate_simple03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ada87629c84194fcea0d30439a53c80/annotate_simple03.py \ No newline at end of file diff --git a/_downloads/0adbc484dfbbc6bd411921a859cac05d/colors.py b/_downloads/0adbc484dfbbc6bd411921a859cac05d/colors.py deleted file mode 100644 index 92ca563b3ad..00000000000 --- a/_downloads/0adbc484dfbbc6bd411921a859cac05d/colors.py +++ /dev/null @@ -1,129 +0,0 @@ -""" -***************** -Specifying Colors -***************** - -Matplotlib recognizes the following formats to specify a color: - -* an RGB or RGBA (red, green, blue, alpha) tuple of float values in ``[0, 1]`` - (e.g., ``(0.1, 0.2, 0.5)`` or ``(0.1, 0.2, 0.5, 0.3)``); -* a hex RGB or RGBA string (e.g., ``'#0f0f0f'`` or ``'#0f0f0f80'``; - case-insensitive); -* a string representation of a float value in ``[0, 1]`` inclusive for gray - level (e.g., ``'0.5'``); -* one of ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``; -* a X11/CSS4 color name (case-insensitive); -* a name from the `xkcd color survey`_, prefixed with ``'xkcd:'`` (e.g., - ``'xkcd:sky blue'``; case insensitive); -* one of the Tableau Colors from the 'T10' categorical palette (the default - color cycle): ``{'tab:blue', 'tab:orange', 'tab:green', 'tab:red', - 'tab:purple', 'tab:brown', 'tab:pink', 'tab:gray', 'tab:olive', 'tab:cyan'}`` - (case-insensitive); -* a "CN" color spec, i.e. `'C'` followed by a number, which is an index into - the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the - indexing is intended to occur at rendering time, and defaults to black if the - cycle does not include color. - -.. _xkcd color survey: https://xkcd.com/color/rgb/ - -"Red", "Green", and "Blue" are the intensities of those colors, the combination -of which span the colorspace. - -How "Alpha" behaves depends on the ``zorder`` of the Artist. Higher -``zorder`` Artists are drawn on top of lower Artists, and "Alpha" determines -whether the lower artist is covered by the higher. -If the old RGB of a pixel is ``RGBold`` and the RGB of the -pixel of the Artist being added is ``RGBnew`` with Alpha ``alpha``, -then the RGB of the pixel is updated to: -``RGB = RGBOld * (1 - Alpha) + RGBnew * Alpha``. Alpha -of 1 means the old color is completely covered by the new Artist, Alpha of 0 -means that pixel of the Artist is transparent. - -For more information on colors in matplotlib see - -* the :doc:`/gallery/color/color_demo` example; -* the `matplotlib.colors` API; -* the :doc:`/gallery/color/named_colors` example. - -"CN" color selection --------------------- - -"CN" colors are converted to RGBA as soon as the artist is created. For -example, -""" - - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl - -th = np.linspace(0, 2*np.pi, 128) - - -def demo(sty): - mpl.style.use(sty) - fig, ax = plt.subplots(figsize=(3, 3)) - - ax.set_title('style: {!r}'.format(sty), color='C0') - - ax.plot(th, np.cos(th), 'C1', label='C1') - ax.plot(th, np.sin(th), 'C2', label='C2') - ax.legend() - -demo('default') -demo('seaborn') - -############################################################################### -# will use the first color for the title and then plot using the second -# and third colors of each style's ``mpl.rcParams['axes.prop_cycle']``. -# -# -# .. _xkcd-colors: -# -# xkcd v X11/CSS4 -# --------------- -# -# The xkcd colors are derived from a user survey conducted by the -# webcomic xkcd. `Details of the survey are available on the xkcd blog -# `__. -# -# Out of 148 colors in the CSS color list, there are 95 name collisions -# between the X11/CSS4 names and the xkcd names, all but 3 of which have -# different hex values. For example ``'blue'`` maps to ``'#0000FF'`` -# where as ``'xkcd:blue'`` maps to ``'#0343DF'``. Due to these name -# collisions all of the xkcd colors have ``'xkcd:'`` prefixed. As noted in -# the blog post, while it might be interesting to re-define the X11/CSS4 names -# based on such a survey, we do not do so unilaterally. -# -# The name collisions are shown in the table below; the color names -# where the hex values agree are shown in bold. - -import matplotlib._color_data as mcd -import matplotlib.patches as mpatch - -overlap = {name for name in mcd.CSS4_COLORS - if "xkcd:" + name in mcd.XKCD_COLORS} - -fig = plt.figure(figsize=[4.8, 16]) -ax = fig.add_axes([0, 0, 1, 1]) - -for j, n in enumerate(sorted(overlap, reverse=True)): - weight = None - cn = mcd.CSS4_COLORS[n] - xkcd = mcd.XKCD_COLORS["xkcd:" + n].upper() - if cn == xkcd: - weight = 'bold' - - r1 = mpatch.Rectangle((0, j), 1, 1, color=cn) - r2 = mpatch.Rectangle((1, j), 1, 1, color=xkcd) - txt = ax.text(2, j+.5, ' ' + n, va='center', fontsize=10, - weight=weight) - ax.add_patch(r1) - ax.add_patch(r2) - ax.axhline(j, color='k') - -ax.text(.5, j + 1.5, 'X11', ha='center', va='center') -ax.text(1.5, j + 1.5, 'xkcd', ha='center', va='center') -ax.set_xlim(0, 3) -ax.set_ylim(0, j + 2) -ax.axis('off') diff --git a/_downloads/0ae5933a04a92c367e0ad60948b01d67/lasso_demo.py b/_downloads/0ae5933a04a92c367e0ad60948b01d67/lasso_demo.py deleted file mode 120000 index dacbd861fd4..00000000000 --- a/_downloads/0ae5933a04a92c367e0ad60948b01d67/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0ae5933a04a92c367e0ad60948b01d67/lasso_demo.py \ No newline at end of file diff --git a/_downloads/0ae916e1c56f79be8a91960db98b72ce/table_demo.ipynb b/_downloads/0ae916e1c56f79be8a91960db98b72ce/table_demo.ipynb deleted file mode 120000 index 5e8cb30b1c0..00000000000 --- a/_downloads/0ae916e1c56f79be8a91960db98b72ce/table_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ae916e1c56f79be8a91960db98b72ce/table_demo.ipynb \ No newline at end of file diff --git a/_downloads/0aef4bdb1e5aa7434cc8d86d9e094e37/simple_axisline.ipynb b/_downloads/0aef4bdb1e5aa7434cc8d86d9e094e37/simple_axisline.ipynb deleted file mode 120000 index a2c71302b97..00000000000 --- a/_downloads/0aef4bdb1e5aa7434cc8d86d9e094e37/simple_axisline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0aef4bdb1e5aa7434cc8d86d9e094e37/simple_axisline.ipynb \ No newline at end of file diff --git a/_downloads/0af54caf968914da79691b3b6a56d34e/ellipse_demo.py b/_downloads/0af54caf968914da79691b3b6a56d34e/ellipse_demo.py deleted file mode 100644 index 29d8c2694b8..00000000000 --- a/_downloads/0af54caf968914da79691b3b6a56d34e/ellipse_demo.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============ -Ellipse Demo -============ - -Draw many ellipses. Here individual ellipses are drawn. Compare this -to the :doc:`Ellipse collection example -`. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.patches import Ellipse - -NUM = 250 - -ells = [Ellipse(xy=np.random.rand(2) * 10, - width=np.random.rand(), height=np.random.rand(), - angle=np.random.rand() * 360) - for i in range(NUM)] - -fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) -for e in ells: - ax.add_artist(e) - e.set_clip_box(ax.bbox) - e.set_alpha(np.random.rand()) - e.set_facecolor(np.random.rand(3)) - -ax.set_xlim(0, 10) -ax.set_ylim(0, 10) - -plt.show() - -############################################################################# -# =============== -# Ellipse Rotated -# =============== -# -# Draw many ellipses with different angles. -# - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.patches import Ellipse - -delta = 45.0 # degrees - -angles = np.arange(0, 360 + delta, delta) -ells = [Ellipse((1, 1), 4, 2, a) for a in angles] - -a = plt.subplot(111, aspect='equal') - -for e in ells: - e.set_clip_box(a.bbox) - e.set_alpha(0.1) - a.add_artist(e) - -plt.xlim(-2, 4) -plt.ylim(-1, 3) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.Ellipse -matplotlib.axes.Axes.add_artist -matplotlib.artist.Artist.set_clip_box -matplotlib.artist.Artist.set_alpha -matplotlib.patches.Patch.set_facecolor diff --git a/_downloads/0af5ada731c84a5f97613daef42b8b37/watermark_image.ipynb b/_downloads/0af5ada731c84a5f97613daef42b8b37/watermark_image.ipynb deleted file mode 100644 index ee88cf97f12..00000000000 --- a/_downloads/0af5ada731c84a5f97613daef42b8b37/watermark_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Watermark image\n\n\nUsing a PNG file as a watermark.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cbook as cbook\nimport matplotlib.image as image\nimport matplotlib.pyplot as plt\n\n\nwith cbook.get_sample_data('logo2.png') as file:\n im = image.imread(file)\n\nfig, ax = plt.subplots()\n\nax.plot(np.sin(10 * np.linspace(0, 1)), '-o', ms=20, alpha=0.7, mfc='orange')\nax.grid()\nfig.figimage(im, 10, 10, zorder=3, alpha=.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.image\nmatplotlib.image.imread\nmatplotlib.pyplot.imread\nmatplotlib.figure.Figure.figimage" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0b003e337f2c9a4c99b162b12ff587ff/xkcd.py b/_downloads/0b003e337f2c9a4c99b162b12ff587ff/xkcd.py deleted file mode 120000 index 835e591f9a7..00000000000 --- a/_downloads/0b003e337f2c9a4c99b162b12ff587ff/xkcd.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0b003e337f2c9a4c99b162b12ff587ff/xkcd.py \ No newline at end of file diff --git a/_downloads/0b0175478ba6147e81e27c8ea497b7d9/check_buttons.ipynb b/_downloads/0b0175478ba6147e81e27c8ea497b7d9/check_buttons.ipynb deleted file mode 120000 index 9b9628134ed..00000000000 --- a/_downloads/0b0175478ba6147e81e27c8ea497b7d9/check_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0b0175478ba6147e81e27c8ea497b7d9/check_buttons.ipynb \ No newline at end of file diff --git a/_downloads/0b057d3bd8f7fed011194b7203743705/axes_grid.ipynb b/_downloads/0b057d3bd8f7fed011194b7203743705/axes_grid.ipynb deleted file mode 120000 index 38df387c602..00000000000 --- a/_downloads/0b057d3bd8f7fed011194b7203743705/axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0b057d3bd8f7fed011194b7203743705/axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/0b0cb67fcd5bdba2f3d86c573642b4de/subplot.ipynb b/_downloads/0b0cb67fcd5bdba2f3d86c573642b4de/subplot.ipynb deleted file mode 120000 index 62e05d18623..00000000000 --- a/_downloads/0b0cb67fcd5bdba2f3d86c573642b4de/subplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0b0cb67fcd5bdba2f3d86c573642b4de/subplot.ipynb \ No newline at end of file diff --git a/_downloads/0b0fe3533b924ef7ae5df1a81f3ac8be/agg_buffer.ipynb b/_downloads/0b0fe3533b924ef7ae5df1a81f3ac8be/agg_buffer.ipynb deleted file mode 120000 index 24a3bd4fdc3..00000000000 --- a/_downloads/0b0fe3533b924ef7ae5df1a81f3ac8be/agg_buffer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/0b0fe3533b924ef7ae5df1a81f3ac8be/agg_buffer.ipynb \ No newline at end of file diff --git a/_downloads/0b2cdef4aa917cf62b14bbfbee3fa39d/demo_axes_divider.ipynb b/_downloads/0b2cdef4aa917cf62b14bbfbee3fa39d/demo_axes_divider.ipynb deleted file mode 100644 index c58c4d0b2d4..00000000000 --- a/_downloads/0b2cdef4aa917cf62b14bbfbee3fa39d/demo_axes_divider.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Divider\n\n\nAxes divider to calculate location of axes and\ncreate a divider for them using existing axes instances.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef demo_simple_image(ax):\n Z, extent = get_demo_image()\n\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n cb = plt.colorbar(im)\n plt.setp(cb.ax.get_yticklabels(), visible=False)\n\n\ndef demo_locatable_axes_hard(fig):\n\n from mpl_toolkits.axes_grid1 import SubplotDivider, Size\n from mpl_toolkits.axes_grid1.mpl_axes import Axes\n\n divider = SubplotDivider(fig, 2, 2, 2, aspect=True)\n\n # axes for image\n ax = Axes(fig, divider.get_position())\n\n # axes for colorbar\n ax_cb = Axes(fig, divider.get_position())\n\n h = [Size.AxesX(ax), # main axes\n Size.Fixed(0.05), # padding, 0.1 inch\n Size.Fixed(0.2), # colorbar, 0.3 inch\n ]\n\n v = [Size.AxesY(ax)]\n\n divider.set_horizontal(h)\n divider.set_vertical(v)\n\n ax.set_axes_locator(divider.new_locator(nx=0, ny=0))\n ax_cb.set_axes_locator(divider.new_locator(nx=2, ny=0))\n\n fig.add_axes(ax)\n fig.add_axes(ax_cb)\n\n ax_cb.axis[\"left\"].toggle(all=False)\n ax_cb.axis[\"right\"].toggle(ticks=True)\n\n Z, extent = get_demo_image()\n\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n plt.colorbar(im, cax=ax_cb)\n plt.setp(ax_cb.get_yticklabels(), visible=False)\n\n\ndef demo_locatable_axes_easy(ax):\n from mpl_toolkits.axes_grid1 import make_axes_locatable\n\n divider = make_axes_locatable(ax)\n\n ax_cb = divider.new_horizontal(size=\"5%\", pad=0.05)\n fig = ax.get_figure()\n fig.add_axes(ax_cb)\n\n Z, extent = get_demo_image()\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n\n plt.colorbar(im, cax=ax_cb)\n ax_cb.yaxis.tick_right()\n ax_cb.yaxis.set_tick_params(labelright=False)\n\n\ndef demo_images_side_by_side(ax):\n from mpl_toolkits.axes_grid1 import make_axes_locatable\n\n divider = make_axes_locatable(ax)\n\n Z, extent = get_demo_image()\n ax2 = divider.new_horizontal(size=\"100%\", pad=0.05)\n fig1 = ax.get_figure()\n fig1.add_axes(ax2)\n\n ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n ax2.imshow(Z, extent=extent, interpolation=\"nearest\")\n ax2.yaxis.set_tick_params(labelleft=False)\n\n\ndef demo():\n\n fig = plt.figure(figsize=(6, 6))\n\n # PLOT 1\n # simple image & colorbar\n ax = fig.add_subplot(2, 2, 1)\n demo_simple_image(ax)\n\n # PLOT 2\n # image and colorbar whose location is adjusted in the drawing time.\n # a hard way\n\n demo_locatable_axes_hard(fig)\n\n # PLOT 3\n # image and colorbar whose location is adjusted in the drawing time.\n # a easy way\n\n ax = fig.add_subplot(2, 2, 3)\n demo_locatable_axes_easy(ax)\n\n # PLOT 4\n # two images side by side with fixed padding.\n\n ax = fig.add_subplot(2, 2, 4)\n demo_images_side_by_side(ax)\n\n plt.show()\n\n\ndemo()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0b2f4cab412321a4facf5b58a084e332/polar_legend.py b/_downloads/0b2f4cab412321a4facf5b58a084e332/polar_legend.py deleted file mode 120000 index e92c35dd0f6..00000000000 --- a/_downloads/0b2f4cab412321a4facf5b58a084e332/polar_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0b2f4cab412321a4facf5b58a084e332/polar_legend.py \ No newline at end of file diff --git a/_downloads/0b3dea6e36982322e5a84ece342894c5/demo_constrained_layout.ipynb b/_downloads/0b3dea6e36982322e5a84ece342894c5/demo_constrained_layout.ipynb deleted file mode 120000 index ca224d9af34..00000000000 --- a/_downloads/0b3dea6e36982322e5a84ece342894c5/demo_constrained_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0b3dea6e36982322e5a84ece342894c5/demo_constrained_layout.ipynb \ No newline at end of file diff --git a/_downloads/0b43940c24c9597dab8509ac95791523/demo_edge_colorbar.py b/_downloads/0b43940c24c9597dab8509ac95791523/demo_edge_colorbar.py deleted file mode 120000 index 83878f04d31..00000000000 --- a/_downloads/0b43940c24c9597dab8509ac95791523/demo_edge_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0b43940c24c9597dab8509ac95791523/demo_edge_colorbar.py \ No newline at end of file diff --git a/_downloads/0b50eee249a35d0b997e9800dee4c45c/random_walk.ipynb b/_downloads/0b50eee249a35d0b997e9800dee4c45c/random_walk.ipynb deleted file mode 100644 index 1179b74414f..00000000000 --- a/_downloads/0b50eee249a35d0b997e9800dee4c45c/random_walk.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated 3D random walk\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.mplot3d.axes3d as p3\nimport matplotlib.animation as animation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef Gen_RandLine(length, dims=2):\n \"\"\"\n Create a line using a random walk algorithm\n\n length is the number of points for the line.\n dims is the number of dimensions the line has.\n \"\"\"\n lineData = np.empty((dims, length))\n lineData[:, 0] = np.random.rand(dims)\n for index in range(1, length):\n # scaling the random numbers by 0.1 so\n # movement is small compared to position.\n # subtraction by 0.5 is to change the range to [-0.5, 0.5]\n # to allow a line to move backwards.\n step = ((np.random.rand(dims) - 0.5) * 0.1)\n lineData[:, index] = lineData[:, index - 1] + step\n\n return lineData\n\n\ndef update_lines(num, dataLines, lines):\n for line, data in zip(lines, dataLines):\n # NOTE: there is no .set_data() for 3 dim data...\n line.set_data(data[0:2, :num])\n line.set_3d_properties(data[2, :num])\n return lines\n\n# Attaching 3D axis to the figure\nfig = plt.figure()\nax = p3.Axes3D(fig)\n\n# Fifty lines of random 3-D lines\ndata = [Gen_RandLine(25, 3) for index in range(50)]\n\n# Creating fifty line objects.\n# NOTE: Can't pass empty arrays into 3d version of plot()\nlines = [ax.plot(dat[0, 0:1], dat[1, 0:1], dat[2, 0:1])[0] for dat in data]\n\n# Setting the axes properties\nax.set_xlim3d([0.0, 1.0])\nax.set_xlabel('X')\n\nax.set_ylim3d([0.0, 1.0])\nax.set_ylabel('Y')\n\nax.set_zlim3d([0.0, 1.0])\nax.set_zlabel('Z')\n\nax.set_title('3D Test')\n\n# Creating the Animation object\nline_ani = animation.FuncAnimation(fig, update_lines, 25, fargs=(data, lines),\n interval=50, blit=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0b567eaf2f1c2105b4d427cd1c606987/simple_rgb.ipynb b/_downloads/0b567eaf2f1c2105b4d427cd1c606987/simple_rgb.ipynb deleted file mode 120000 index 36b7815f728..00000000000 --- a/_downloads/0b567eaf2f1c2105b4d427cd1c606987/simple_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0b567eaf2f1c2105b4d427cd1c606987/simple_rgb.ipynb \ No newline at end of file diff --git a/_downloads/0b56a82ba02d1523b1f684add583480c/coords_demo.py b/_downloads/0b56a82ba02d1523b1f684add583480c/coords_demo.py deleted file mode 120000 index bb4d314b465..00000000000 --- a/_downloads/0b56a82ba02d1523b1f684add583480c/coords_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0b56a82ba02d1523b1f684add583480c/coords_demo.py \ No newline at end of file diff --git a/_downloads/0b64454ac14e0248b259766fdcde63f4/contour_corner_mask.py b/_downloads/0b64454ac14e0248b259766fdcde63f4/contour_corner_mask.py deleted file mode 120000 index 4d9d3e11fb1..00000000000 --- a/_downloads/0b64454ac14e0248b259766fdcde63f4/contour_corner_mask.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0b64454ac14e0248b259766fdcde63f4/contour_corner_mask.py \ No newline at end of file diff --git a/_downloads/0b67c3692c5c7ddd1ad776d248e04c67/multiline.ipynb b/_downloads/0b67c3692c5c7ddd1ad776d248e04c67/multiline.ipynb deleted file mode 100644 index 5c552240ade..00000000000 --- a/_downloads/0b67c3692c5c7ddd1ad776d248e04c67/multiline.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiline\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nplt.figure(figsize=(7, 4))\nax = plt.subplot(121)\nax.set_aspect(1)\nplt.plot(np.arange(10))\nplt.xlabel('this is a xlabel\\n(with newlines!)')\nplt.ylabel('this is vertical\\ntest', multialignment='center')\nplt.text(2, 7, 'this is\\nyet another test',\n rotation=45,\n horizontalalignment='center',\n verticalalignment='top',\n multialignment='center')\n\nplt.grid(True)\n\nplt.subplot(122)\n\nplt.text(0.29, 0.4, \"Mat\\nTTp\\n123\", size=18,\n va=\"baseline\", ha=\"right\", multialignment=\"left\",\n bbox=dict(fc=\"none\"))\n\nplt.text(0.34, 0.4, \"Mag\\nTTT\\n123\", size=18,\n va=\"baseline\", ha=\"left\", multialignment=\"left\",\n bbox=dict(fc=\"none\"))\n\nplt.text(0.95, 0.4, \"Mag\\nTTT$^{A^A}$\\n123\", size=18,\n va=\"baseline\", ha=\"right\", multialignment=\"left\",\n bbox=dict(fc=\"none\"))\n\nplt.xticks([0.2, 0.4, 0.6, 0.8, 1.],\n [\"Jan\\n2009\", \"Feb\\n2009\", \"Mar\\n2009\", \"Apr\\n2009\", \"May\\n2009\"])\n\nplt.axhline(0.4)\nplt.title(\"test line spacing for multiline text\")\n\nplt.subplots_adjust(bottom=0.25, top=0.75)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0b67ecef45709e3b68bcabbdff36f136/demo_anchored_direction_arrows.ipynb b/_downloads/0b67ecef45709e3b68bcabbdff36f136/demo_anchored_direction_arrows.ipynb deleted file mode 120000 index afa316ffccc..00000000000 --- a/_downloads/0b67ecef45709e3b68bcabbdff36f136/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0b67ecef45709e3b68bcabbdff36f136/demo_anchored_direction_arrows.ipynb \ No newline at end of file diff --git a/_downloads/0b6df9a7faa726afda3ff1f60d8be4fd/image_transparency_blend.ipynb b/_downloads/0b6df9a7faa726afda3ff1f60d8be4fd/image_transparency_blend.ipynb deleted file mode 120000 index dd7b027ff8c..00000000000 --- a/_downloads/0b6df9a7faa726afda3ff1f60d8be4fd/image_transparency_blend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0b6df9a7faa726afda3ff1f60d8be4fd/image_transparency_blend.ipynb \ No newline at end of file diff --git a/_downloads/0b6e2b78adb82808cee7c0fb54206974/images.ipynb b/_downloads/0b6e2b78adb82808cee7c0fb54206974/images.ipynb deleted file mode 100644 index 0d04212aed1..00000000000 --- a/_downloads/0b6e2b78adb82808cee7c0fb54206974/images.ipynb +++ /dev/null @@ -1,277 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image tutorial\n\n\nA short tutorial on plotting images with Matplotlib.\n\n\nStartup commands\n===================\n\nFirst, let's start IPython. It is a most excellent enhancement to the\nstandard Python prompt, and it ties in especially well with\nMatplotlib. Start IPython either at a shell, or the IPython Notebook now.\n\nWith IPython started, we now need to connect to a GUI event loop. This\ntells IPython where (and how) to display plots. To connect to a GUI\nloop, execute the **%matplotlib** magic at your IPython prompt. There's more\ndetail on exactly what this does at `IPython's documentation on GUI\nevent loops\n`_.\n\nIf you're using IPython Notebook, the same commands are available, but\npeople commonly use a specific argument to the %matplotlib magic:\n\n.. sourcecode:: ipython\n\n In [1]: %matplotlib inline\n\nThis turns on inline plotting, where plot graphics will appear in your\nnotebook. This has important implications for interactivity. For inline plotting, commands in\ncells below the cell that outputs a plot will not affect the plot. For example,\nchanging the color map is not possible from cells below the cell that creates a plot.\nHowever, for other backends, such as Qt5, that open a separate window,\ncells below those that create the plot will change the plot - it is a\nlive object in memory.\n\nThis tutorial will use matplotlib's imperative-style plotting\ninterface, pyplot. This interface maintains global state, and is very\nuseful for quickly and easily experimenting with various plot\nsettings. The alternative is the object-oriented interface, which is also\nvery powerful, and generally more suitable for large application\ndevelopment. If you'd like to learn about the object-oriented\ninterface, a great place to start is our :doc:`Usage guide\n`. For now, let's get on\nwith the imperative-style approach:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.image as mpimg" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nImporting image data into Numpy arrays\n===============================================\n\nLoading image data is supported by the `Pillow\n`_ library. Natively, Matplotlib\nonly supports PNG images. The commands shown below fall back on Pillow if\nthe native read fails.\n\nThe image used in this example is a PNG file, but keep that Pillow\nrequirement in mind for your own data.\n\nHere's the image we're going to play with:\n\n![](../../_static/stinkbug.png)\n\n\nIt's a 24-bit RGB PNG image (8 bits for each of R, G, B). Depending\non where you get your data, the other kinds of image that you'll most\nlikely encounter are RGBA images, which allow for transparency, or\nsingle-channel grayscale (luminosity) images. You can right click on\nit and choose \"Save image as\" to download it to your computer for the\nrest of this tutorial.\n\nAnd here we go...\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "img = mpimg.imread('../../doc/_static/stinkbug.png')\nprint(img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note the dtype there - float32. Matplotlib has rescaled the 8 bit\ndata from each channel to floating point data between 0.0 and 1.0. As\na side note, the only datatype that Pillow can work with is uint8.\nMatplotlib plotting can handle float32 and uint8, but image\nreading/writing for any format other than PNG is limited to uint8\ndata. Why 8 bits? Most displays can only render 8 bits per channel\nworth of color gradation. Why can they only render 8 bits/channel?\nBecause that's about all the human eye can see. More here (from a\nphotography standpoint): `Luminous Landscape bit depth tutorial\n`_.\n\nEach inner list represents a pixel. Here, with an RGB image, there\nare 3 values. Since it's a black and white image, R, G, and B are all\nsimilar. An RGBA (where A is alpha, or transparency), has 4 values\nper inner list, and a simple luminance image just has one value (and\nis thus only a 2-D array, not a 3-D array). For RGB and RGBA images,\nmatplotlib supports float32 and uint8 data types. For grayscale,\nmatplotlib supports only float32. If your array data does not meet\none of these descriptions, you need to rescale it.\n\n\nPlotting numpy arrays as images\n===================================\n\nSo, you have your data in a numpy array (either by importing it, or by\ngenerating it). Let's render it. In Matplotlib, this is performed\nusing the :func:`~matplotlib.pyplot.imshow` function. Here we'll grab\nthe plot object. This object gives you an easy way to manipulate the\nplot from the prompt.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also plot any numpy array.\n\n\nApplying pseudocolor schemes to image plots\n-------------------------------------------------\n\nPseudocolor can be a useful tool for enhancing contrast and\nvisualizing your data more easily. This is especially useful when\nmaking presentations of your data using projectors - their contrast is\ntypically quite poor.\n\nPseudocolor is only relevant to single-channel, grayscale, luminosity\nimages. We currently have an RGB image. Since R, G, and B are all\nsimilar (see for yourself above or in your data), we can just pick one\nchannel of our data:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "lum_img = img[:, :, 0]\n\n# This is array slicing. You can read more in the `Numpy tutorial\n# `_.\n\nplt.imshow(lum_img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now, with a luminosity (2D, no color) image, the default colormap (aka lookup table,\nLUT), is applied. The default is called viridis. There are plenty of\nothers to choose from.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.imshow(lum_img, cmap=\"hot\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that you can also change colormaps on existing plot objects using the\n:meth:`~matplotlib.image.Image.set_cmap` method:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(lum_img)\nimgplot.set_cmap('nipy_spectral')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

However, remember that in the IPython notebook with the inline backend,\n you can't make changes to plots that have already been rendered. If you\n create imgplot here in one cell, you cannot call set_cmap() on it in a later\n cell and expect the earlier plot to change. Make sure that you enter these\n commands together in one cell. plt commands will not change plots from earlier\n cells.

\n\nThere are many other colormap schemes available. See the `list and\nimages of the colormaps\n<../colors/colormaps.html>`_.\n\n\nColor scale reference\n------------------------\n\nIt's helpful to have an idea of what value a color represents. We can\ndo that by adding color bars.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(lum_img)\nplt.colorbar()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This adds a colorbar to your existing figure. This won't\nautomatically change if you change you switch to a different\ncolormap - you have to re-create your plot, and add in the colorbar\nagain.\n\n\nExamining a specific data range\n---------------------------------\n\nSometimes you want to enhance the contrast in your image, or expand\nthe contrast in a particular region while sacrificing the detail in\ncolors that don't vary much, or don't matter. A good tool to find\ninteresting regions is the histogram. To create a histogram of our\nimage data, we use the :func:`~matplotlib.pyplot.hist` function.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.hist(lum_img.ravel(), bins=256, range=(0.0, 1.0), fc='k', ec='k')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Most often, the \"interesting\" part of the image is around the peak,\nand you can get extra contrast by clipping the regions above and/or\nbelow the peak. In our histogram, it looks like there's not much\nuseful information in the high end (not many white things in the\nimage). Let's adjust the upper limit, so that we effectively \"zoom in\non\" part of the histogram. We do this by passing the clim argument to\nimshow. You could also do this by calling the\n:meth:`~matplotlib.image.Image.set_clim` method of the image plot\nobject, but make sure that you do so in the same cell as your plot\ncommand when working with the IPython Notebook - it will not change\nplots from earlier cells.\n\nYou can specify the clim in the call to ``plot``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(lum_img, clim=(0.0, 0.7))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also specify the clim using the returned object\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\na = fig.add_subplot(1, 2, 1)\nimgplot = plt.imshow(lum_img)\na.set_title('Before')\nplt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal')\na = fig.add_subplot(1, 2, 2)\nimgplot = plt.imshow(lum_img)\nimgplot.set_clim(0.0, 0.7)\na.set_title('After')\nplt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nArray Interpolation schemes\n---------------------------\n\nInterpolation calculates what the color or value of a pixel \"should\"\nbe, according to different mathematical schemes. One common place\nthat this happens is when you resize an image. The number of pixels\nchange, but you want the same information. Since pixels are discrete,\nthere's missing space. Interpolation is how you fill that space.\nThis is why your images sometimes come out looking pixelated when you\nblow them up. The effect is more pronounced when the difference\nbetween the original image and the expanded image is greater. Let's\ntake our image and shrink it. We're effectively discarding pixels,\nonly keeping a select few. Now when we plot it, that data gets blown\nup to the size on your screen. The old pixels aren't there anymore,\nand the computer has to draw in pixels to fill that space.\n\nWe'll use the Pillow library that we used to load the image also to resize\nthe image.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from PIL import Image\n\nimg = Image.open('../../doc/_static/stinkbug.png')\nimg.thumbnail((64, 64), Image.ANTIALIAS) # resizes image in-place\nimgplot = plt.imshow(img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we have the default interpolation, bilinear, since we did not\ngive :func:`~matplotlib.pyplot.imshow` any interpolation argument.\n\nLet's try some others. Here's \"nearest\", which does no interpolation.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(img, interpolation=\"nearest\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "and bicubic:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(img, interpolation=\"bicubic\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Bicubic interpolation is often used when blowing up photos - people\ntend to prefer blurry over pixelated.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0b829c410ae39b8c287f6e1aad64ce8a/auto_subplots_adjust.ipynb b/_downloads/0b829c410ae39b8c287f6e1aad64ce8a/auto_subplots_adjust.ipynb deleted file mode 120000 index 98664c71f71..00000000000 --- a/_downloads/0b829c410ae39b8c287f6e1aad64ce8a/auto_subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0b829c410ae39b8c287f6e1aad64ce8a/auto_subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/0b87f768b375d28ca40f4c95d90cf31d/gtk_spreadsheet_sgskip.ipynb b/_downloads/0b87f768b375d28ca40f4c95d90cf31d/gtk_spreadsheet_sgskip.ipynb deleted file mode 100644 index 41e0d27c22b..00000000000 --- a/_downloads/0b87f768b375d28ca40f4c95d90cf31d/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# GTK Spreadsheet\n\n\nExample of embedding Matplotlib in an application and interacting with a\ntreeview to store data. Double click on an entry to update plot data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import gi\ngi.require_version('Gtk', '3.0')\ngi.require_version('Gdk', '3.0')\nfrom gi.repository import Gtk, Gdk\n\nfrom matplotlib.backends.backend_gtk3agg import FigureCanvas # or gtk3cairo.\n\nfrom numpy.random import random\nfrom matplotlib.figure import Figure\n\n\nclass DataManager(Gtk.Window):\n num_rows, num_cols = 20, 10\n\n data = random((num_rows, num_cols))\n\n def __init__(self):\n super().__init__()\n self.set_default_size(600, 600)\n self.connect('destroy', lambda win: Gtk.main_quit())\n\n self.set_title('GtkListStore demo')\n self.set_border_width(8)\n\n vbox = Gtk.VBox(homogeneous=False, spacing=8)\n self.add(vbox)\n\n label = Gtk.Label(label='Double click a row to plot the data')\n\n vbox.pack_start(label, False, False, 0)\n\n sw = Gtk.ScrolledWindow()\n sw.set_shadow_type(Gtk.ShadowType.ETCHED_IN)\n sw.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)\n vbox.pack_start(sw, True, True, 0)\n\n model = self.create_model()\n\n self.treeview = Gtk.TreeView(model=model)\n\n # Matplotlib stuff\n fig = Figure(figsize=(6, 4))\n\n self.canvas = FigureCanvas(fig) # a Gtk.DrawingArea\n vbox.pack_start(self.canvas, True, True, 0)\n ax = fig.add_subplot(111)\n self.line, = ax.plot(self.data[0, :], 'go') # plot the first row\n\n self.treeview.connect('row-activated', self.plot_row)\n sw.add(self.treeview)\n\n self.add_columns()\n\n self.add_events(Gdk.EventMask.BUTTON_PRESS_MASK |\n Gdk.EventMask.KEY_PRESS_MASK |\n Gdk.EventMask.KEY_RELEASE_MASK)\n\n def plot_row(self, treeview, path, view_column):\n ind, = path # get the index into data\n points = self.data[ind, :]\n self.line.set_ydata(points)\n self.canvas.draw()\n\n def add_columns(self):\n for i in range(self.num_cols):\n column = Gtk.TreeViewColumn(str(i), Gtk.CellRendererText(), text=i)\n self.treeview.append_column(column)\n\n def create_model(self):\n types = [float] * self.num_cols\n store = Gtk.ListStore(*types)\n for row in self.data:\n store.append(tuple(row))\n return store\n\n\nmanager = DataManager()\nmanager.show_all()\nGtk.main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0b8bc42b825aa2ed5cf22bf080a06d1e/custom_figure_class.ipynb b/_downloads/0b8bc42b825aa2ed5cf22bf080a06d1e/custom_figure_class.ipynb deleted file mode 100644 index 97d9e3f0f36..00000000000 --- a/_downloads/0b8bc42b825aa2ed5cf22bf080a06d1e/custom_figure_class.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Figure Class\n\n\nYou can pass a custom Figure constructor to figure if you want to derive from\nthe default Figure. This simple example creates a figure with a figure title.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.figure import Figure\n\n\nclass MyFigure(Figure):\n def __init__(self, *args, figtitle='hi mom', **kwargs):\n \"\"\"\n custom kwarg figtitle is a figure title\n \"\"\"\n super().__init__(*args, **kwargs)\n self.text(0.5, 0.95, figtitle, ha='center')\n\n\nfig = plt.figure(FigureClass=MyFigure, figtitle='my title')\nax = fig.subplots()\nax.plot([1, 2, 3])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0b8bcf4441fecc75d3c6e8b3b12edccb/fig_x.py b/_downloads/0b8bcf4441fecc75d3c6e8b3b12edccb/fig_x.py deleted file mode 120000 index 358725e80a9..00000000000 --- a/_downloads/0b8bcf4441fecc75d3c6e8b3b12edccb/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0b8bcf4441fecc75d3c6e8b3b12edccb/fig_x.py \ No newline at end of file diff --git a/_downloads/0b8ecd5661a306b2e36e16b10b7addba/anatomy.ipynb b/_downloads/0b8ecd5661a306b2e36e16b10b7addba/anatomy.ipynb deleted file mode 120000 index 17a4fcc6bf0..00000000000 --- a/_downloads/0b8ecd5661a306b2e36e16b10b7addba/anatomy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0b8ecd5661a306b2e36e16b10b7addba/anatomy.ipynb \ No newline at end of file diff --git a/_downloads/0b95e76b9e368f08d0a597214e461075/power_norm.py b/_downloads/0b95e76b9e368f08d0a597214e461075/power_norm.py deleted file mode 120000 index 6e83c564230..00000000000 --- a/_downloads/0b95e76b9e368f08d0a597214e461075/power_norm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0b95e76b9e368f08d0a597214e461075/power_norm.py \ No newline at end of file diff --git a/_downloads/0b9616154623d0d078e31057f9ee3d9d/color_cycle_default.py b/_downloads/0b9616154623d0d078e31057f9ee3d9d/color_cycle_default.py deleted file mode 120000 index 51b8ddce6f6..00000000000 --- a/_downloads/0b9616154623d0d078e31057f9ee3d9d/color_cycle_default.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0b9616154623d0d078e31057f9ee3d9d/color_cycle_default.py \ No newline at end of file diff --git a/_downloads/0b9f76c43b495cd2e0fd7b56141bda98/font_file.py b/_downloads/0b9f76c43b495cd2e0fd7b56141bda98/font_file.py deleted file mode 100644 index ed1341c1435..00000000000 --- a/_downloads/0b9f76c43b495cd2e0fd7b56141bda98/font_file.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=================================== -Using a ttf font file in Matplotlib -=================================== - -Although it is usually not a good idea to explicitly point to a single ttf file -for a font instance, you can do so using the `font_manager.FontProperties` -*fname* argument. - -Here, we use the Computer Modern roman font (``cmr10``) shipped with -Matplotlib. - -For a more flexible solution, see -:doc:`/gallery/text_labels_and_annotations/font_family_rc_sgskip` and -:doc:`/gallery/text_labels_and_annotations/fonts_demo`. -""" - -import os -from matplotlib import font_manager as fm, rcParams -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -fpath = os.path.join(rcParams["datapath"], "fonts/ttf/cmr10.ttf") -prop = fm.FontProperties(fname=fpath) -fname = os.path.split(fpath)[1] -ax.set_title('This is a special font: {}'.format(fname), fontproperties=prop) -ax.set_xlabel('This is the default font') - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.font_manager.FontProperties -matplotlib.axes.Axes.set_title diff --git a/_downloads/0bbe9ce6ee2e5a4bcf2a3382e9165173/figlegend_demo.py b/_downloads/0bbe9ce6ee2e5a4bcf2a3382e9165173/figlegend_demo.py deleted file mode 100644 index 674b7627f09..00000000000 --- a/_downloads/0bbe9ce6ee2e5a4bcf2a3382e9165173/figlegend_demo.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -================== -Figure legend demo -================== - -Instead of plotting a legend on each axis, a legend for all the artists on all -the sub-axes of a figure can be plotted instead. -""" - -import numpy as np -import matplotlib.pyplot as plt - -fig, axs = plt.subplots(1, 2) - -x = np.arange(0.0, 2.0, 0.02) -y1 = np.sin(2 * np.pi * x) -y2 = np.exp(-x) -l1, = axs[0].plot(x, y1) -l2, = axs[0].plot(x, y2, marker='o') - -y3 = np.sin(4 * np.pi * x) -y4 = np.exp(-2 * x) -l3, = axs[1].plot(x, y3, color='tab:green') -l4, = axs[1].plot(x, y4, color='tab:red', marker='^') - -fig.legend((l1, l2), ('Line 1', 'Line 2'), 'upper left') -fig.legend((l3, l4), ('Line 3', 'Line 4'), 'upper right') - -plt.tight_layout() -plt.show() diff --git a/_downloads/0bc1dcea7f6f63c4a84c92bb99b984da/hexbin_demo.py b/_downloads/0bc1dcea7f6f63c4a84c92bb99b984da/hexbin_demo.py deleted file mode 120000 index 5563951ddfb..00000000000 --- a/_downloads/0bc1dcea7f6f63c4a84c92bb99b984da/hexbin_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0bc1dcea7f6f63c4a84c92bb99b984da/hexbin_demo.py \ No newline at end of file diff --git a/_downloads/0bc2c82e078dd28a010524c294e162b2/trifinder_event_demo.py b/_downloads/0bc2c82e078dd28a010524c294e162b2/trifinder_event_demo.py deleted file mode 120000 index 67d63ab393b..00000000000 --- a/_downloads/0bc2c82e078dd28a010524c294e162b2/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0bc2c82e078dd28a010524c294e162b2/trifinder_event_demo.py \ No newline at end of file diff --git a/_downloads/0bc5bedb6936d5c783c8e97782d4052c/integral.ipynb b/_downloads/0bc5bedb6936d5c783c8e97782d4052c/integral.ipynb deleted file mode 100644 index d21b7a25f8e..00000000000 --- a/_downloads/0bc5bedb6936d5c783c8e97782d4052c/integral.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Integral as the area under a curve\n\n\nAlthough this is a simple example, it demonstrates some important tweaks:\n\n * A simple line plot with custom color and line width.\n * A shaded region created using a Polygon patch.\n * A text label with mathtext rendering.\n * figtext calls to label the x- and y-axes.\n * Use of axis spines to hide the top and right spines.\n * Custom tick placement and labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Polygon\n\n\ndef func(x):\n return (x - 3) * (x - 5) * (x - 7) + 85\n\n\na, b = 2, 9 # integral limits\nx = np.linspace(0, 10)\ny = func(x)\n\nfig, ax = plt.subplots()\nax.plot(x, y, 'r', linewidth=2)\nax.set_ylim(bottom=0)\n\n# Make the shaded region\nix = np.linspace(a, b)\niy = func(ix)\nverts = [(a, 0), *zip(ix, iy), (b, 0)]\npoly = Polygon(verts, facecolor='0.9', edgecolor='0.5')\nax.add_patch(poly)\n\nax.text(0.5 * (a + b), 30, r\"$\\int_a^b f(x)\\mathrm{d}x$\",\n horizontalalignment='center', fontsize=20)\n\nfig.text(0.9, 0.05, '$x$')\nfig.text(0.1, 0.9, '$y$')\n\nax.spines['right'].set_visible(False)\nax.spines['top'].set_visible(False)\nax.xaxis.set_ticks_position('bottom')\n\nax.set_xticks((a, b))\nax.set_xticklabels(('$a$', '$b$'))\nax.set_yticks([])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0bc7a3d99f97096ef8486c42163888eb/hatch_demo.py b/_downloads/0bc7a3d99f97096ef8486c42163888eb/hatch_demo.py deleted file mode 120000 index ab554845d66..00000000000 --- a/_downloads/0bc7a3d99f97096ef8486c42163888eb/hatch_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0bc7a3d99f97096ef8486c42163888eb/hatch_demo.py \ No newline at end of file diff --git a/_downloads/0bd1a8e995583965bd9982eea897efc9/triplot_demo.ipynb b/_downloads/0bd1a8e995583965bd9982eea897efc9/triplot_demo.ipynb deleted file mode 120000 index 8c0bc6dbab0..00000000000 --- a/_downloads/0bd1a8e995583965bd9982eea897efc9/triplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0bd1a8e995583965bd9982eea897efc9/triplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/0bd263e26631dd2003bb18f47a997c27/contour.ipynb b/_downloads/0bd263e26631dd2003bb18f47a997c27/contour.ipynb deleted file mode 120000 index a45cd6d64cf..00000000000 --- a/_downloads/0bd263e26631dd2003bb18f47a997c27/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0bd263e26631dd2003bb18f47a997c27/contour.ipynb \ No newline at end of file diff --git a/_downloads/0bd904312c626aaadc34818c346a8e50/whats_new_98_4_legend.py b/_downloads/0bd904312c626aaadc34818c346a8e50/whats_new_98_4_legend.py deleted file mode 120000 index 543f390910f..00000000000 --- a/_downloads/0bd904312c626aaadc34818c346a8e50/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0bd904312c626aaadc34818c346a8e50/whats_new_98_4_legend.py \ No newline at end of file diff --git a/_downloads/0bddd812fcbd9b0351e7f09142ef3972/fill_between_demo.py b/_downloads/0bddd812fcbd9b0351e7f09142ef3972/fill_between_demo.py deleted file mode 120000 index 96e2cb91e0c..00000000000 --- a/_downloads/0bddd812fcbd9b0351e7f09142ef3972/fill_between_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0bddd812fcbd9b0351e7f09142ef3972/fill_between_demo.py \ No newline at end of file diff --git a/_downloads/0be2dd9af5f62f5c8c9f2402d21d720a/text_alignment.py b/_downloads/0be2dd9af5f62f5c8c9f2402d21d720a/text_alignment.py deleted file mode 120000 index 9dcf6d0c075..00000000000 --- a/_downloads/0be2dd9af5f62f5c8c9f2402d21d720a/text_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0be2dd9af5f62f5c8c9f2402d21d720a/text_alignment.py \ No newline at end of file diff --git a/_downloads/0be5a76f4a0abf41b6252fd7e8f7de7d/histogram_path.py b/_downloads/0be5a76f4a0abf41b6252fd7e8f7de7d/histogram_path.py deleted file mode 120000 index 36a0c3116dd..00000000000 --- a/_downloads/0be5a76f4a0abf41b6252fd7e8f7de7d/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0be5a76f4a0abf41b6252fd7e8f7de7d/histogram_path.py \ No newline at end of file diff --git a/_downloads/0be8d19eb452eb8a36345009bfd0b482/text_fontdict.ipynb b/_downloads/0be8d19eb452eb8a36345009bfd0b482/text_fontdict.ipynb deleted file mode 120000 index 3fd6a096387..00000000000 --- a/_downloads/0be8d19eb452eb8a36345009bfd0b482/text_fontdict.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0be8d19eb452eb8a36345009bfd0b482/text_fontdict.ipynb \ No newline at end of file diff --git a/_downloads/0beb0186ec9042647f8363db162f609e/transparent_legends.ipynb b/_downloads/0beb0186ec9042647f8363db162f609e/transparent_legends.ipynb deleted file mode 120000 index 32a954c0121..00000000000 --- a/_downloads/0beb0186ec9042647f8363db162f609e/transparent_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/0beb0186ec9042647f8363db162f609e/transparent_legends.ipynb \ No newline at end of file diff --git a/_downloads/0bed77093a5bd3dae4ab665f241c02e7/surface3d_3.py b/_downloads/0bed77093a5bd3dae4ab665f241c02e7/surface3d_3.py deleted file mode 120000 index 279d7870eed..00000000000 --- a/_downloads/0bed77093a5bd3dae4ab665f241c02e7/surface3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0bed77093a5bd3dae4ab665f241c02e7/surface3d_3.py \ No newline at end of file diff --git a/_downloads/0bf00951671cfe1a83c05205575b541d/plot_solarizedlight2.py b/_downloads/0bf00951671cfe1a83c05205575b541d/plot_solarizedlight2.py deleted file mode 100644 index b1a30b6fe14..00000000000 --- a/_downloads/0bf00951671cfe1a83c05205575b541d/plot_solarizedlight2.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -========================== -Solarized Light stylesheet -========================== - -This shows an example of "Solarized_Light" styling, which -tries to replicate the styles of: - - - ``__ - - ``__ - - ``__ - -and work of: - - - ``__ - -using all 8 accents of the color palette - starting with blue - -ToDo: - - Create alpha values for bar and stacked charts. .33 or .5 - - Apply Layout Rules -""" -import matplotlib.pyplot as plt -import numpy as np -x = np.linspace(0, 10) -with plt.style.context('Solarize_Light2'): - plt.plot(x, np.sin(x) + x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 2 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 3 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 4 + np.random.randn(50)) - plt.plot(x, np.sin(x) + 5 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 6 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 7 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 8 * x + np.random.randn(50)) - # Number of accent colors in the color scheme - plt.title('8 Random Lines - Line') - plt.xlabel('x label', fontsize=14) - plt.ylabel('y label', fontsize=14) - -plt.show() diff --git a/_downloads/0bf51bcd2e9907e66035e7fb128b66f4/date_index_formatter2.py b/_downloads/0bf51bcd2e9907e66035e7fb128b66f4/date_index_formatter2.py deleted file mode 120000 index 9ed315b7271..00000000000 --- a/_downloads/0bf51bcd2e9907e66035e7fb128b66f4/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/0bf51bcd2e9907e66035e7fb128b66f4/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/0bf5e798f3233330f87b82088c83238b/demo_parasite_axes2.py b/_downloads/0bf5e798f3233330f87b82088c83238b/demo_parasite_axes2.py deleted file mode 120000 index ec1138e3f15..00000000000 --- a/_downloads/0bf5e798f3233330f87b82088c83238b/demo_parasite_axes2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0bf5e798f3233330f87b82088c83238b/demo_parasite_axes2.py \ No newline at end of file diff --git a/_downloads/0bf6785b1ae2b94d36712ee0520d8e0b/autowrap.ipynb b/_downloads/0bf6785b1ae2b94d36712ee0520d8e0b/autowrap.ipynb deleted file mode 120000 index a5bb4136445..00000000000 --- a/_downloads/0bf6785b1ae2b94d36712ee0520d8e0b/autowrap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0bf6785b1ae2b94d36712ee0520d8e0b/autowrap.ipynb \ No newline at end of file diff --git a/_downloads/0bf959adf8e2eed33deb268ddf74c9b2/color_cycle.ipynb b/_downloads/0bf959adf8e2eed33deb268ddf74c9b2/color_cycle.ipynb deleted file mode 120000 index 43fb13878d8..00000000000 --- a/_downloads/0bf959adf8e2eed33deb268ddf74c9b2/color_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0bf959adf8e2eed33deb268ddf74c9b2/color_cycle.ipynb \ No newline at end of file diff --git a/_downloads/0bf9e51dec88ec25526322495c8e6273/offset.ipynb b/_downloads/0bf9e51dec88ec25526322495c8e6273/offset.ipynb deleted file mode 120000 index 543e72ad301..00000000000 --- a/_downloads/0bf9e51dec88ec25526322495c8e6273/offset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0bf9e51dec88ec25526322495c8e6273/offset.ipynb \ No newline at end of file diff --git a/_downloads/0bfc9d3ce3c096557f29d669ef327823/simple_axesgrid2.ipynb b/_downloads/0bfc9d3ce3c096557f29d669ef327823/simple_axesgrid2.ipynb deleted file mode 120000 index 9aa99b3792b..00000000000 --- a/_downloads/0bfc9d3ce3c096557f29d669ef327823/simple_axesgrid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0bfc9d3ce3c096557f29d669ef327823/simple_axesgrid2.ipynb \ No newline at end of file diff --git a/_downloads/0c091bfb77738c39bbd819c5da9632d8/whats_new_98_4_legend.py b/_downloads/0c091bfb77738c39bbd819c5da9632d8/whats_new_98_4_legend.py deleted file mode 100644 index ed534ca1899..00000000000 --- a/_downloads/0c091bfb77738c39bbd819c5da9632d8/whats_new_98_4_legend.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -======================= -Whats New 0.98.4 Legend -======================= - -Create a legend and tweak it with a shadow and a box. -""" -import matplotlib.pyplot as plt -import numpy as np - - -ax = plt.subplot(111) -t1 = np.arange(0.0, 1.0, 0.01) -for n in [1, 2, 3, 4]: - plt.plot(t1, t1**n, label="n=%d"%(n,)) - -leg = plt.legend(loc='best', ncol=2, mode="expand", shadow=True, fancybox=True) -leg.get_frame().set_alpha(0.5) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.legend.Legend -matplotlib.legend.Legend.get_frame diff --git a/_downloads/0c0b0ce311b6f2c97acdd3e38db84ddb/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/0c0b0ce311b6f2c97acdd3e38db84ddb/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 120000 index 05067300b2f..00000000000 --- a/_downloads/0c0b0ce311b6f2c97acdd3e38db84ddb/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0c0b0ce311b6f2c97acdd3e38db84ddb/embedding_in_gtk3_panzoom_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/0c0bceec5b66dc4841d06be6852509dc/keyword_plotting.py b/_downloads/0c0bceec5b66dc4841d06be6852509dc/keyword_plotting.py deleted file mode 120000 index 10590dc9417..00000000000 --- a/_downloads/0c0bceec5b66dc4841d06be6852509dc/keyword_plotting.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0c0bceec5b66dc4841d06be6852509dc/keyword_plotting.py \ No newline at end of file diff --git a/_downloads/0c107992199a6a700feaa3968db07243/bayes_update.ipynb b/_downloads/0c107992199a6a700feaa3968db07243/bayes_update.ipynb deleted file mode 120000 index 2ee3d360651..00000000000 --- a/_downloads/0c107992199a6a700feaa3968db07243/bayes_update.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0c107992199a6a700feaa3968db07243/bayes_update.ipynb \ No newline at end of file diff --git a/_downloads/0c197ed5fcb645d586dc38e425187501/multiple_figs_demo.ipynb b/_downloads/0c197ed5fcb645d586dc38e425187501/multiple_figs_demo.ipynb deleted file mode 100644 index 289475d0bd0..00000000000 --- a/_downloads/0c197ed5fcb645d586dc38e425187501/multiple_figs_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiple Figs Demo\n\n\nWorking with multiple figure windows and subplots\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 2.0, 0.01)\ns1 = np.sin(2*np.pi*t)\ns2 = np.sin(4*np.pi*t)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create figure 1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure(1)\nplt.subplot(211)\nplt.plot(t, s1)\nplt.subplot(212)\nplt.plot(t, 2*s1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create figure 2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure(2)\nplt.plot(t, s2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now switch back to figure 1 and make some changes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure(1)\nplt.subplot(211)\nplt.plot(t, s2, 's')\nax = plt.gca()\nax.set_xticklabels([])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0c2987574f305ba36407355a5ac04113/print_stdout_sgskip.py b/_downloads/0c2987574f305ba36407355a5ac04113/print_stdout_sgskip.py deleted file mode 120000 index 1869f70ec67..00000000000 --- a/_downloads/0c2987574f305ba36407355a5ac04113/print_stdout_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0c2987574f305ba36407355a5ac04113/print_stdout_sgskip.py \ No newline at end of file diff --git a/_downloads/0c2fe414c0a71308ef101fbcaf4f52c1/contourf_log.ipynb b/_downloads/0c2fe414c0a71308ef101fbcaf4f52c1/contourf_log.ipynb deleted file mode 120000 index 818046de6c3..00000000000 --- a/_downloads/0c2fe414c0a71308ef101fbcaf4f52c1/contourf_log.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0c2fe414c0a71308ef101fbcaf4f52c1/contourf_log.ipynb \ No newline at end of file diff --git a/_downloads/0c38bb1f7eb5f2f9a3926bae30faefcc/simple_axes_divider1.py b/_downloads/0c38bb1f7eb5f2f9a3926bae30faefcc/simple_axes_divider1.py deleted file mode 100644 index 8c205781c2f..00000000000 --- a/_downloads/0c38bb1f7eb5f2f9a3926bae30faefcc/simple_axes_divider1.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -===================== -Simple Axes Divider 1 -===================== - -""" -from mpl_toolkits.axes_grid1 import Size, Divider -import matplotlib.pyplot as plt - - -fig1 = plt.figure(1, (6, 6)) - -# fixed size in inch -horiz = [Size.Fixed(1.), Size.Fixed(.5), Size.Fixed(1.5), - Size.Fixed(.5)] -vert = [Size.Fixed(1.5), Size.Fixed(.5), Size.Fixed(1.)] - -rect = (0.1, 0.1, 0.8, 0.8) -# divide the axes rectangle into grid whose size is specified by horiz * vert -divider = Divider(fig1, rect, horiz, vert, aspect=False) - -# the rect parameter will be ignore as we will set axes_locator -ax1 = fig1.add_axes(rect, label="1") -ax2 = fig1.add_axes(rect, label="2") -ax3 = fig1.add_axes(rect, label="3") -ax4 = fig1.add_axes(rect, label="4") - -ax1.set_axes_locator(divider.new_locator(nx=0, ny=0)) -ax2.set_axes_locator(divider.new_locator(nx=0, ny=2)) -ax3.set_axes_locator(divider.new_locator(nx=2, ny=2)) -ax4.set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0)) - -plt.show() diff --git a/_downloads/0c4736bcaffddaa0b4dd365655a70fed/pyplot_scales.py b/_downloads/0c4736bcaffddaa0b4dd365655a70fed/pyplot_scales.py deleted file mode 100644 index 77536f350c8..00000000000 --- a/_downloads/0c4736bcaffddaa0b4dd365655a70fed/pyplot_scales.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -============= -Pyplot Scales -============= - -Create plots on different scales. Here a linear, a logarithmic, a symmetric -logarithmic and a logit scale are shown. For further examples also see the -:ref:`scales_examples` section of the gallery. -""" -import numpy as np -import matplotlib.pyplot as plt - -from matplotlib.ticker import NullFormatter # useful for `logit` scale - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# make up some data in the interval ]0, 1[ -y = np.random.normal(loc=0.5, scale=0.4, size=1000) -y = y[(y > 0) & (y < 1)] -y.sort() -x = np.arange(len(y)) - -# plot with various axes scales -plt.figure() - -# linear -plt.subplot(221) -plt.plot(x, y) -plt.yscale('linear') -plt.title('linear') -plt.grid(True) - - -# log -plt.subplot(222) -plt.plot(x, y) -plt.yscale('log') -plt.title('log') -plt.grid(True) - - -# symmetric log -plt.subplot(223) -plt.plot(x, y - y.mean()) -plt.yscale('symlog', linthreshy=0.01) -plt.title('symlog') -plt.grid(True) - -# logit -plt.subplot(224) -plt.plot(x, y) -plt.yscale('logit') -plt.title('logit') -plt.grid(True) -# Format the minor tick labels of the y-axis into empty strings with -# `NullFormatter`, to avoid cumbering the axis with too many labels. -plt.gca().yaxis.set_minor_formatter(NullFormatter()) -# Adjust the subplot layout, because the logit one may take more space -# than usual, due to y-tick labels like "1 - 10^{-3}" -plt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25, - wspace=0.35) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.subplot -matplotlib.pyplot.subplots_adjust -matplotlib.pyplot.gca -matplotlib.pyplot.yscale -matplotlib.ticker.NullFormatter -matplotlib.axis.Axis.set_minor_formatter diff --git a/_downloads/0c49bd30282e7b1fae1bbf49f5e174b7/patheffect_demo.ipynb b/_downloads/0c49bd30282e7b1fae1bbf49f5e174b7/patheffect_demo.ipynb deleted file mode 120000 index 75d4f7a0244..00000000000 --- a/_downloads/0c49bd30282e7b1fae1bbf49f5e174b7/patheffect_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0c49bd30282e7b1fae1bbf49f5e174b7/patheffect_demo.ipynb \ No newline at end of file diff --git a/_downloads/0c4c5a35f7030a2eb6b59f381c8bbb1a/demo_imagegrid_aspect.py b/_downloads/0c4c5a35f7030a2eb6b59f381c8bbb1a/demo_imagegrid_aspect.py deleted file mode 120000 index 9b1433453ae..00000000000 --- a/_downloads/0c4c5a35f7030a2eb6b59f381c8bbb1a/demo_imagegrid_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0c4c5a35f7030a2eb6b59f381c8bbb1a/demo_imagegrid_aspect.py \ No newline at end of file diff --git a/_downloads/0c5d248b3ce3c5f8b54ee8ef825d1861/simple_axis_direction01.ipynb b/_downloads/0c5d248b3ce3c5f8b54ee8ef825d1861/simple_axis_direction01.ipynb deleted file mode 120000 index 8a251b150a6..00000000000 --- a/_downloads/0c5d248b3ce3c5f8b54ee8ef825d1861/simple_axis_direction01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0c5d248b3ce3c5f8b54ee8ef825d1861/simple_axis_direction01.ipynb \ No newline at end of file diff --git a/_downloads/0c705d9f24c035b1f5cdf2bc93e84a3c/sankey_rankine.py b/_downloads/0c705d9f24c035b1f5cdf2bc93e84a3c/sankey_rankine.py deleted file mode 120000 index 02974839110..00000000000 --- a/_downloads/0c705d9f24c035b1f5cdf2bc93e84a3c/sankey_rankine.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0c705d9f24c035b1f5cdf2bc93e84a3c/sankey_rankine.py \ No newline at end of file diff --git a/_downloads/0c7220d5e9e3a7556f29667f2dfab12d/csd_demo.ipynb b/_downloads/0c7220d5e9e3a7556f29667f2dfab12d/csd_demo.ipynb deleted file mode 100644 index ca76066208c..00000000000 --- a/_downloads/0c7220d5e9e3a7556f29667f2dfab12d/csd_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# CSD Demo\n\n\nCompute the cross spectral density of two signals\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nfig, (ax1, ax2) = plt.subplots(2, 1)\n# make a little extra space between the subplots\nfig.subplots_adjust(hspace=0.5)\n\ndt = 0.01\nt = np.arange(0, 30, dt)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nnse1 = np.random.randn(len(t)) # white noise 1\nnse2 = np.random.randn(len(t)) # white noise 2\nr = np.exp(-t / 0.05)\n\ncnse1 = np.convolve(nse1, r, mode='same') * dt # colored noise 1\ncnse2 = np.convolve(nse2, r, mode='same') * dt # colored noise 2\n\n# two signals with a coherent part and a random part\ns1 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse1\ns2 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse2\n\nax1.plot(t, s1, t, s2)\nax1.set_xlim(0, 5)\nax1.set_xlabel('time')\nax1.set_ylabel('s1 and s2')\nax1.grid(True)\n\ncxy, f = ax2.csd(s1, s2, 256, 1. / dt)\nax2.set_ylabel('CSD (db)')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0c93b77341104f73a6cecd7e89f4f783/pathpatch3d.ipynb b/_downloads/0c93b77341104f73a6cecd7e89f4f783/pathpatch3d.ipynb deleted file mode 120000 index 4deeff2c825..00000000000 --- a/_downloads/0c93b77341104f73a6cecd7e89f4f783/pathpatch3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0c93b77341104f73a6cecd7e89f4f783/pathpatch3d.ipynb \ No newline at end of file diff --git a/_downloads/0c9e31b68ad20972cbd8a98f928bc767/font_file.py b/_downloads/0c9e31b68ad20972cbd8a98f928bc767/font_file.py deleted file mode 100644 index ed1341c1435..00000000000 --- a/_downloads/0c9e31b68ad20972cbd8a98f928bc767/font_file.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=================================== -Using a ttf font file in Matplotlib -=================================== - -Although it is usually not a good idea to explicitly point to a single ttf file -for a font instance, you can do so using the `font_manager.FontProperties` -*fname* argument. - -Here, we use the Computer Modern roman font (``cmr10``) shipped with -Matplotlib. - -For a more flexible solution, see -:doc:`/gallery/text_labels_and_annotations/font_family_rc_sgskip` and -:doc:`/gallery/text_labels_and_annotations/fonts_demo`. -""" - -import os -from matplotlib import font_manager as fm, rcParams -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -fpath = os.path.join(rcParams["datapath"], "fonts/ttf/cmr10.ttf") -prop = fm.FontProperties(fname=fpath) -fname = os.path.split(fpath)[1] -ax.set_title('This is a special font: {}'.format(fname), fontproperties=prop) -ax.set_xlabel('This is the default font') - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.font_manager.FontProperties -matplotlib.axes.Axes.set_title diff --git a/_downloads/0caf2b4d78715f5f69da9207fa34b3fb/voxels_numpy_logo.py b/_downloads/0caf2b4d78715f5f69da9207fa34b3fb/voxels_numpy_logo.py deleted file mode 120000 index 33afa7981a7..00000000000 --- a/_downloads/0caf2b4d78715f5f69da9207fa34b3fb/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0caf2b4d78715f5f69da9207fa34b3fb/voxels_numpy_logo.py \ No newline at end of file diff --git a/_downloads/0cb1ecc662691b4c0fe5bc1bc204dd36/joinstyle.py b/_downloads/0cb1ecc662691b4c0fe5bc1bc204dd36/joinstyle.py deleted file mode 120000 index 646ac1c882c..00000000000 --- a/_downloads/0cb1ecc662691b4c0fe5bc1bc204dd36/joinstyle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0cb1ecc662691b4c0fe5bc1bc204dd36/joinstyle.py \ No newline at end of file diff --git a/_downloads/0cc3a5ea75c92c86088a6ce572b139c4/color_cycler.py b/_downloads/0cc3a5ea75c92c86088a6ce572b139c4/color_cycler.py deleted file mode 120000 index 9bc339b5fc0..00000000000 --- a/_downloads/0cc3a5ea75c92c86088a6ce572b139c4/color_cycler.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0cc3a5ea75c92c86088a6ce572b139c4/color_cycler.py \ No newline at end of file diff --git a/_downloads/0cc58d3e8c409e48e3c93312fc69e4fe/barchart_demo.ipynb b/_downloads/0cc58d3e8c409e48e3c93312fc69e4fe/barchart_demo.ipynb deleted file mode 120000 index a1ec471ba13..00000000000 --- a/_downloads/0cc58d3e8c409e48e3c93312fc69e4fe/barchart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0cc58d3e8c409e48e3c93312fc69e4fe/barchart_demo.ipynb \ No newline at end of file diff --git a/_downloads/0ccca25b82edc7a77c82a9666d233917/auto_subplots_adjust.py b/_downloads/0ccca25b82edc7a77c82a9666d233917/auto_subplots_adjust.py deleted file mode 120000 index 419f787fa33..00000000000 --- a/_downloads/0ccca25b82edc7a77c82a9666d233917/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0ccca25b82edc7a77c82a9666d233917/auto_subplots_adjust.py \ No newline at end of file diff --git a/_downloads/0cce34bd4f4d9d6ec4b815a13ad0e852/demo_gridspec06.py b/_downloads/0cce34bd4f4d9d6ec4b815a13ad0e852/demo_gridspec06.py deleted file mode 120000 index 251dfcf51b1..00000000000 --- a/_downloads/0cce34bd4f4d9d6ec4b815a13ad0e852/demo_gridspec06.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0cce34bd4f4d9d6ec4b815a13ad0e852/demo_gridspec06.py \ No newline at end of file diff --git a/_downloads/0cd784206dbba06a653e61d0792d54cc/barcode_demo.py b/_downloads/0cd784206dbba06a653e61d0792d54cc/barcode_demo.py deleted file mode 120000 index dbf0dc422ce..00000000000 --- a/_downloads/0cd784206dbba06a653e61d0792d54cc/barcode_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0cd784206dbba06a653e61d0792d54cc/barcode_demo.py \ No newline at end of file diff --git a/_downloads/0cdb90dc361fef8914788fcb71808f6b/simple_axis_direction01.ipynb b/_downloads/0cdb90dc361fef8914788fcb71808f6b/simple_axis_direction01.ipynb deleted file mode 120000 index 82192dc30bd..00000000000 --- a/_downloads/0cdb90dc361fef8914788fcb71808f6b/simple_axis_direction01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0cdb90dc361fef8914788fcb71808f6b/simple_axis_direction01.ipynb \ No newline at end of file diff --git a/_downloads/0cdc2b99b17db2f475eb5646cf51b6ce/svg_tooltip_sgskip.ipynb b/_downloads/0cdc2b99b17db2f475eb5646cf51b6ce/svg_tooltip_sgskip.ipynb deleted file mode 100644 index da39b0ae4e6..00000000000 --- a/_downloads/0cdc2b99b17db2f475eb5646cf51b6ce/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Tooltip\n\n\nThis example shows how to create a tooltip that will show up when\nhovering over a matplotlib patch.\n\nAlthough it is possible to create the tooltip from CSS or javascript,\nhere we create it in matplotlib and simply toggle its visibility on\nwhen hovering over the patch. This approach provides total control over\nthe tooltip placement and appearance, at the expense of more code up\nfront.\n\nThe alternative approach would be to put the tooltip content in `title`\nattributes of SVG objects. Then, using an existing js/CSS library, it\nwould be relatively straightforward to create the tooltip in the\nbrowser. The content would be dictated by the `title` attribute, and\nthe appearance by the CSS.\n\n\n:author: David Huard\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport xml.etree.ElementTree as ET\nfrom io import BytesIO\n\nET.register_namespace(\"\", \"http://www.w3.org/2000/svg\")\n\nfig, ax = plt.subplots()\n\n# Create patches to which tooltips will be assigned.\nrect1 = plt.Rectangle((10, -20), 10, 5, fc='blue')\nrect2 = plt.Rectangle((-20, 15), 10, 5, fc='green')\n\nshapes = [rect1, rect2]\nlabels = ['This is a blue rectangle.', 'This is a green rectangle']\n\nfor i, (item, label) in enumerate(zip(shapes, labels)):\n patch = ax.add_patch(item)\n annotate = ax.annotate(labels[i], xy=item.get_xy(), xytext=(0, 0),\n textcoords='offset points', color='w', ha='center',\n fontsize=8, bbox=dict(boxstyle='round, pad=.5',\n fc=(.1, .1, .1, .92),\n ec=(1., 1., 1.), lw=1,\n zorder=1))\n\n ax.add_patch(patch)\n patch.set_gid('mypatch_{:03d}'.format(i))\n annotate.set_gid('mytooltip_{:03d}'.format(i))\n\n# Save the figure in a fake file object\nax.set_xlim(-30, 30)\nax.set_ylim(-30, 30)\nax.set_aspect('equal')\n\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\n# --- Add interactivity ---\n\n# Create XML tree from the SVG file.\ntree, xmlid = ET.XMLID(f.getvalue())\ntree.set('onload', 'init(evt)')\n\nfor i in shapes:\n # Get the index of the shape\n index = shapes.index(i)\n # Hide the tooltips\n tooltip = xmlid['mytooltip_{:03d}'.format(index)]\n tooltip.set('visibility', 'hidden')\n # Assign onmouseover and onmouseout callbacks to patches.\n mypatch = xmlid['mypatch_{:03d}'.format(index)]\n mypatch.set('onmouseover', \"ShowTooltip(this)\")\n mypatch.set('onmouseout', \"HideTooltip(this)\")\n\n# This is the script defining the ShowTooltip and HideTooltip functions.\nscript = \"\"\"\n \n \"\"\"\n\n# Insert the script at the top of the file and save it.\ntree.insert(0, ET.XML(script))\nET.ElementTree(tree).write('svg_tooltip.svg')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0cee8bd2570d6fd96a0625bedd56b764/dark_background.py b/_downloads/0cee8bd2570d6fd96a0625bedd56b764/dark_background.py deleted file mode 120000 index b0c6b988ddf..00000000000 --- a/_downloads/0cee8bd2570d6fd96a0625bedd56b764/dark_background.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0cee8bd2570d6fd96a0625bedd56b764/dark_background.py \ No newline at end of file diff --git a/_downloads/0cf45d9747234181c46b2224a784859b/parasite_simple.py b/_downloads/0cf45d9747234181c46b2224a784859b/parasite_simple.py deleted file mode 120000 index f1d3bdb5eb2..00000000000 --- a/_downloads/0cf45d9747234181c46b2224a784859b/parasite_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0cf45d9747234181c46b2224a784859b/parasite_simple.py \ No newline at end of file diff --git a/_downloads/0cf7ab5e9e32269eebaa9af943799ed2/placing_text_boxes.ipynb b/_downloads/0cf7ab5e9e32269eebaa9af943799ed2/placing_text_boxes.ipynb deleted file mode 120000 index 95366854594..00000000000 --- a/_downloads/0cf7ab5e9e32269eebaa9af943799ed2/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0cf7ab5e9e32269eebaa9af943799ed2/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/0cfb7099725ebeba0a5c100a05154f4e/scatter_symbol.ipynb b/_downloads/0cfb7099725ebeba0a5c100a05154f4e/scatter_symbol.ipynb deleted file mode 120000 index 696a80a6822..00000000000 --- a/_downloads/0cfb7099725ebeba0a5c100a05154f4e/scatter_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0cfb7099725ebeba0a5c100a05154f4e/scatter_symbol.ipynb \ No newline at end of file diff --git a/_downloads/0d0225925eb6ff49c515089b8e20d867/errorbar_limits.ipynb b/_downloads/0d0225925eb6ff49c515089b8e20d867/errorbar_limits.ipynb deleted file mode 120000 index 14e4da63a99..00000000000 --- a/_downloads/0d0225925eb6ff49c515089b8e20d867/errorbar_limits.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0d0225925eb6ff49c515089b8e20d867/errorbar_limits.ipynb \ No newline at end of file diff --git a/_downloads/0d029288a16de4edf0a1a38a401e744c/artist_reference.py b/_downloads/0d029288a16de4edf0a1a38a401e744c/artist_reference.py deleted file mode 120000 index ff49aa1c344..00000000000 --- a/_downloads/0d029288a16de4edf0a1a38a401e744c/artist_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d029288a16de4edf0a1a38a401e744c/artist_reference.py \ No newline at end of file diff --git a/_downloads/0d0443da653106f1b87e44b73717475d/unchained.ipynb b/_downloads/0d0443da653106f1b87e44b73717475d/unchained.ipynb deleted file mode 120000 index eb227b95016..00000000000 --- a/_downloads/0d0443da653106f1b87e44b73717475d/unchained.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d0443da653106f1b87e44b73717475d/unchained.ipynb \ No newline at end of file diff --git a/_downloads/0d0866ec3a5117f2275f05151670851f/svg_tooltip_sgskip.py b/_downloads/0d0866ec3a5117f2275f05151670851f/svg_tooltip_sgskip.py deleted file mode 120000 index 6ea50d67428..00000000000 --- a/_downloads/0d0866ec3a5117f2275f05151670851f/svg_tooltip_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0d0866ec3a5117f2275f05151670851f/svg_tooltip_sgskip.py \ No newline at end of file diff --git a/_downloads/0d0e9908ce319a1bd248c02b1ccd3f37/align_ylabels.py b/_downloads/0d0e9908ce319a1bd248c02b1ccd3f37/align_ylabels.py deleted file mode 120000 index f8672566e8c..00000000000 --- a/_downloads/0d0e9908ce319a1bd248c02b1ccd3f37/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0d0e9908ce319a1bd248c02b1ccd3f37/align_ylabels.py \ No newline at end of file diff --git a/_downloads/0d107edc8c3e240a5bc4f7486b23afc1/usetex.py b/_downloads/0d107edc8c3e240a5bc4f7486b23afc1/usetex.py deleted file mode 120000 index 8b46260e09f..00000000000 --- a/_downloads/0d107edc8c3e240a5bc4f7486b23afc1/usetex.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0d107edc8c3e240a5bc4f7486b23afc1/usetex.py \ No newline at end of file diff --git a/_downloads/0d11e48d6beeb9bfd7472b8c33525601/histogram.py b/_downloads/0d11e48d6beeb9bfd7472b8c33525601/histogram.py deleted file mode 120000 index eba2566c2ff..00000000000 --- a/_downloads/0d11e48d6beeb9bfd7472b8c33525601/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0d11e48d6beeb9bfd7472b8c33525601/histogram.py \ No newline at end of file diff --git a/_downloads/0d136a63bfc8d4e30b96cc01cd6d27dc/embedding_in_tk_sgskip.py b/_downloads/0d136a63bfc8d4e30b96cc01cd6d27dc/embedding_in_tk_sgskip.py deleted file mode 120000 index 54750839c84..00000000000 --- a/_downloads/0d136a63bfc8d4e30b96cc01cd6d27dc/embedding_in_tk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0d136a63bfc8d4e30b96cc01cd6d27dc/embedding_in_tk_sgskip.py \ No newline at end of file diff --git a/_downloads/0d1434f3aa07902683d27f2f7a87c372/ginput_demo_sgskip.ipynb b/_downloads/0d1434f3aa07902683d27f2f7a87c372/ginput_demo_sgskip.ipynb deleted file mode 120000 index aa8c925173c..00000000000 --- a/_downloads/0d1434f3aa07902683d27f2f7a87c372/ginput_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/0d1434f3aa07902683d27f2f7a87c372/ginput_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/0d19377afb26192140547b9ffcff149f/subplots_demo.py b/_downloads/0d19377afb26192140547b9ffcff149f/subplots_demo.py deleted file mode 120000 index 566ccaf3f95..00000000000 --- a/_downloads/0d19377afb26192140547b9ffcff149f/subplots_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0d19377afb26192140547b9ffcff149f/subplots_demo.py \ No newline at end of file diff --git a/_downloads/0d21423e2b451ca1c372790f5a9a4e51/annotate_simple01.ipynb b/_downloads/0d21423e2b451ca1c372790f5a9a4e51/annotate_simple01.ipynb deleted file mode 120000 index a5975e53ce5..00000000000 --- a/_downloads/0d21423e2b451ca1c372790f5a9a4e51/annotate_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d21423e2b451ca1c372790f5a9a4e51/annotate_simple01.ipynb \ No newline at end of file diff --git a/_downloads/0d2ab492a0c78d7875bc26427b4bd7f6/load_converter.py b/_downloads/0d2ab492a0c78d7875bc26427b4bd7f6/load_converter.py deleted file mode 100644 index 5f0d7940f1c..00000000000 --- a/_downloads/0d2ab492a0c78d7875bc26427b4bd7f6/load_converter.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============== -Load converter -============== - -This example demonstrates passing a custom converter to `numpy.genfromtxt` to -extract dates from a CSV file. -""" - -import dateutil.parser -from matplotlib import cbook, dates -import matplotlib.pyplot as plt -import numpy as np - - -datafile = cbook.get_sample_data('msft.csv', asfileobj=False) -print('loading', datafile) - -data = np.genfromtxt( - datafile, delimiter=',', names=True, - dtype=None, converters={0: dateutil.parser.parse}) - -fig, ax = plt.subplots() -ax.plot(data['Date'], data['High'], '-') -fig.autofmt_xdate() -plt.show() diff --git a/_downloads/0d3217275802a1cec97b6712ef560bd4/customize_rc.ipynb b/_downloads/0d3217275802a1cec97b6712ef560bd4/customize_rc.ipynb deleted file mode 120000 index d007bea3df5..00000000000 --- a/_downloads/0d3217275802a1cec97b6712ef560bd4/customize_rc.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0d3217275802a1cec97b6712ef560bd4/customize_rc.ipynb \ No newline at end of file diff --git a/_downloads/0d37310d80373fee3923c5ba3d646f75/strip_chart.ipynb b/_downloads/0d37310d80373fee3923c5ba3d646f75/strip_chart.ipynb deleted file mode 120000 index 4c8dbb62907..00000000000 --- a/_downloads/0d37310d80373fee3923c5ba3d646f75/strip_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0d37310d80373fee3923c5ba3d646f75/strip_chart.ipynb \ No newline at end of file diff --git a/_downloads/0d388311269e8778a3f3fb10af6dfa26/demo_axes_divider.ipynb b/_downloads/0d388311269e8778a3f3fb10af6dfa26/demo_axes_divider.ipynb deleted file mode 100644 index 09f3c80fdaf..00000000000 --- a/_downloads/0d388311269e8778a3f3fb10af6dfa26/demo_axes_divider.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Divider\n\n\nAxes divider to calculate location of axes and\ncreate a divider for them using existing axes instances.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef demo_simple_image(ax):\n Z, extent = get_demo_image()\n\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n cb = plt.colorbar(im)\n plt.setp(cb.ax.get_yticklabels(), visible=False)\n\n\ndef demo_locatable_axes_hard(fig):\n\n from mpl_toolkits.axes_grid1 import SubplotDivider, Size\n from mpl_toolkits.axes_grid1.mpl_axes import Axes\n\n divider = SubplotDivider(fig, 2, 2, 2, aspect=True)\n\n # axes for image\n ax = Axes(fig, divider.get_position())\n\n # axes for colorbar\n ax_cb = Axes(fig, divider.get_position())\n\n h = [Size.AxesX(ax), # main axes\n Size.Fixed(0.05), # padding, 0.1 inch\n Size.Fixed(0.2), # colorbar, 0.3 inch\n ]\n\n v = [Size.AxesY(ax)]\n\n divider.set_horizontal(h)\n divider.set_vertical(v)\n\n ax.set_axes_locator(divider.new_locator(nx=0, ny=0))\n ax_cb.set_axes_locator(divider.new_locator(nx=2, ny=0))\n\n fig.add_axes(ax)\n fig.add_axes(ax_cb)\n\n ax_cb.axis[\"left\"].toggle(all=False)\n ax_cb.axis[\"right\"].toggle(ticks=True)\n\n Z, extent = get_demo_image()\n\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n plt.colorbar(im, cax=ax_cb)\n plt.setp(ax_cb.get_yticklabels(), visible=False)\n\n\ndef demo_locatable_axes_easy(ax):\n from mpl_toolkits.axes_grid1 import make_axes_locatable\n\n divider = make_axes_locatable(ax)\n\n ax_cb = divider.new_horizontal(size=\"5%\", pad=0.05)\n fig = ax.get_figure()\n fig.add_axes(ax_cb)\n\n Z, extent = get_demo_image()\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n\n plt.colorbar(im, cax=ax_cb)\n ax_cb.yaxis.tick_right()\n ax_cb.yaxis.set_tick_params(labelright=False)\n\n\ndef demo_images_side_by_side(ax):\n from mpl_toolkits.axes_grid1 import make_axes_locatable\n\n divider = make_axes_locatable(ax)\n\n Z, extent = get_demo_image()\n ax2 = divider.new_horizontal(size=\"100%\", pad=0.05)\n fig1 = ax.get_figure()\n fig1.add_axes(ax2)\n\n ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n ax2.imshow(Z, extent=extent, interpolation=\"nearest\")\n ax2.yaxis.set_tick_params(labelleft=False)\n\n\ndef demo():\n\n fig = plt.figure(figsize=(6, 6))\n\n # PLOT 1\n # simple image & colorbar\n ax = fig.add_subplot(2, 2, 1)\n demo_simple_image(ax)\n\n # PLOT 2\n # image and colorbar whose location is adjusted in the drawing time.\n # a hard way\n\n demo_locatable_axes_hard(fig)\n\n # PLOT 3\n # image and colorbar whose location is adjusted in the drawing time.\n # a easy way\n\n ax = fig.add_subplot(2, 2, 3)\n demo_locatable_axes_easy(ax)\n\n # PLOT 4\n # two images side by side with fixed padding.\n\n ax = fig.add_subplot(2, 2, 4)\n demo_images_side_by_side(ax)\n\n plt.show()\n\n\ndemo()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0d45171fe5d4c71d5c26d4b7034c8b95/annotation_basic.py b/_downloads/0d45171fe5d4c71d5c26d4b7034c8b95/annotation_basic.py deleted file mode 100644 index 1b2e6ec1a09..00000000000 --- a/_downloads/0d45171fe5d4c71d5c26d4b7034c8b95/annotation_basic.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -================= -Annotating a plot -================= - -This example shows how to annotate a plot with an arrow pointing to provided -coordinates. We modify the defaults of the arrow, to "shrink" it. - -For a complete overview of the annotation capabilities, also see the -:doc:`annotation tutorial`. -""" -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) -line, = ax.plot(t, s, lw=2) - -ax.annotate('local max', xy=(2, 1), xytext=(3, 1.5), - arrowprops=dict(facecolor='black', shrink=0.05), - ) -ax.set_ylim(-2, 2) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/0d4f394baf1cfbba8dfbd870b9ccab5f/filled_step.py b/_downloads/0d4f394baf1cfbba8dfbd870b9ccab5f/filled_step.py deleted file mode 100644 index c680e4b870c..00000000000 --- a/_downloads/0d4f394baf1cfbba8dfbd870b9ccab5f/filled_step.py +++ /dev/null @@ -1,237 +0,0 @@ -""" -========================= -Hatch-filled histograms -========================= - -Hatching capabilities for plotting histograms. -""" - -import itertools -from collections import OrderedDict -from functools import partial - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as mticker -from cycler import cycler - - -def filled_hist(ax, edges, values, bottoms=None, orientation='v', - **kwargs): - """ - Draw a histogram as a stepped patch. - - Extra kwargs are passed through to `fill_between` - - Parameters - ---------- - ax : Axes - The axes to plot to - - edges : array - A length n+1 array giving the left edges of each bin and the - right edge of the last bin. - - values : array - A length n array of bin counts or values - - bottoms : scalar or array, optional - A length n array of the bottom of the bars. If None, zero is used. - - orientation : {'v', 'h'} - Orientation of the histogram. 'v' (default) has - the bars increasing in the positive y-direction. - - Returns - ------- - ret : PolyCollection - Artist added to the Axes - """ - print(orientation) - if orientation not in 'hv': - raise ValueError("orientation must be in {{'h', 'v'}} " - "not {o}".format(o=orientation)) - - kwargs.setdefault('step', 'post') - edges = np.asarray(edges) - values = np.asarray(values) - if len(edges) - 1 != len(values): - raise ValueError('Must provide one more bin edge than value not: ' - 'len(edges): {lb} len(values): {lv}'.format( - lb=len(edges), lv=len(values))) - - if bottoms is None: - bottoms = 0 - bottoms = np.broadcast_to(bottoms, values.shape) - - values = np.r_[values, values[-1]] - bottoms = np.r_[bottoms, bottoms[-1]] - if orientation == 'h': - return ax.fill_betweenx(edges, values, bottoms, - **kwargs) - elif orientation == 'v': - return ax.fill_between(edges, values, bottoms, - **kwargs) - else: - raise AssertionError("you should never be here") - - -def stack_hist(ax, stacked_data, sty_cycle, bottoms=None, - hist_func=None, labels=None, - plot_func=None, plot_kwargs=None): - """ - ax : axes.Axes - The axes to add artists too - - stacked_data : array or Mapping - A (N, M) shaped array. The first dimension will be iterated over to - compute histograms row-wise - - sty_cycle : Cycler or operable of dict - Style to apply to each set - - bottoms : array, optional - The initial positions of the bottoms, defaults to 0 - - hist_func : callable, optional - Must have signature `bin_vals, bin_edges = f(data)`. - `bin_edges` expected to be one longer than `bin_vals` - - labels : list of str, optional - The label for each set. - - If not given and stacked data is an array defaults to 'default set {n}' - - If stacked_data is a mapping, and labels is None, default to the keys - (which may come out in a random order). - - If stacked_data is a mapping and labels is given then only - the columns listed by be plotted. - - plot_func : callable, optional - Function to call to draw the histogram must have signature: - - ret = plot_func(ax, edges, top, bottoms=bottoms, - label=label, **kwargs) - - plot_kwargs : dict, optional - Any extra kwargs to pass through to the plotting function. This - will be the same for all calls to the plotting function and will - over-ride the values in cycle. - - Returns - ------- - arts : dict - Dictionary of artists keyed on their labels - """ - # deal with default binning function - if hist_func is None: - hist_func = np.histogram - - # deal with default plotting function - if plot_func is None: - plot_func = filled_hist - - # deal with default - if plot_kwargs is None: - plot_kwargs = {} - print(plot_kwargs) - try: - l_keys = stacked_data.keys() - label_data = True - if labels is None: - labels = l_keys - - except AttributeError: - label_data = False - if labels is None: - labels = itertools.repeat(None) - - if label_data: - loop_iter = enumerate((stacked_data[lab], lab, s) - for lab, s in zip(labels, sty_cycle)) - else: - loop_iter = enumerate(zip(stacked_data, labels, sty_cycle)) - - arts = {} - for j, (data, label, sty) in loop_iter: - if label is None: - label = 'dflt set {n}'.format(n=j) - label = sty.pop('label', label) - vals, edges = hist_func(data) - if bottoms is None: - bottoms = np.zeros_like(vals) - top = bottoms + vals - print(sty) - sty.update(plot_kwargs) - print(sty) - ret = plot_func(ax, edges, top, bottoms=bottoms, - label=label, **sty) - bottoms = top - arts[label] = ret - ax.legend(fontsize=10) - return arts - - -# set up histogram function to fixed bins -edges = np.linspace(-3, 3, 20, endpoint=True) -hist_func = partial(np.histogram, bins=edges) - -# set up style cycles -color_cycle = cycler(facecolor=plt.rcParams['axes.prop_cycle'][:4]) -label_cycle = cycler(label=['set {n}'.format(n=n) for n in range(4)]) -hatch_cycle = cycler(hatch=['/', '*', '+', '|']) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -stack_data = np.random.randn(4, 12250) -dict_data = OrderedDict(zip((c['label'] for c in label_cycle), stack_data)) - -############################################################################### -# Work with plain arrays - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5), tight_layout=True) -arts = stack_hist(ax1, stack_data, color_cycle + label_cycle + hatch_cycle, - hist_func=hist_func) - -arts = stack_hist(ax2, stack_data, color_cycle, - hist_func=hist_func, - plot_kwargs=dict(edgecolor='w', orientation='h')) -ax1.set_ylabel('counts') -ax1.set_xlabel('x') -ax2.set_xlabel('counts') -ax2.set_ylabel('x') - -############################################################################### -# Work with labeled data - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5), - tight_layout=True, sharey=True) - -arts = stack_hist(ax1, dict_data, color_cycle + hatch_cycle, - hist_func=hist_func) - -arts = stack_hist(ax2, dict_data, color_cycle + hatch_cycle, - hist_func=hist_func, labels=['set 0', 'set 3']) -ax1.xaxis.set_major_locator(mticker.MaxNLocator(5)) -ax1.set_xlabel('counts') -ax1.set_ylabel('x') -ax2.set_ylabel('x') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.fill_betweenx -matplotlib.axes.Axes.fill_between -matplotlib.axis.Axis.set_major_locator diff --git a/_downloads/0d4ff4024c20f03cd09a81a24b58f1ff/quad_bezier.py b/_downloads/0d4ff4024c20f03cd09a81a24b58f1ff/quad_bezier.py deleted file mode 120000 index 9b8917420cd..00000000000 --- a/_downloads/0d4ff4024c20f03cd09a81a24b58f1ff/quad_bezier.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d4ff4024c20f03cd09a81a24b58f1ff/quad_bezier.py \ No newline at end of file diff --git a/_downloads/0d523231c19ff452ef67a87a9e5d57aa/date_index_formatter.ipynb b/_downloads/0d523231c19ff452ef67a87a9e5d57aa/date_index_formatter.ipynb deleted file mode 120000 index 8ebba80bb4e..00000000000 --- a/_downloads/0d523231c19ff452ef67a87a9e5d57aa/date_index_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d523231c19ff452ef67a87a9e5d57aa/date_index_formatter.ipynb \ No newline at end of file diff --git a/_downloads/0d6288ac6983cb5d54d7110cacda3bdd/axes_props.ipynb b/_downloads/0d6288ac6983cb5d54d7110cacda3bdd/axes_props.ipynb deleted file mode 120000 index e2d235e02bc..00000000000 --- a/_downloads/0d6288ac6983cb5d54d7110cacda3bdd/axes_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d6288ac6983cb5d54d7110cacda3bdd/axes_props.ipynb \ No newline at end of file diff --git a/_downloads/0d65e2c11bd9d21e2c997b5c57bf0d56/secondary_axis.py b/_downloads/0d65e2c11bd9d21e2c997b5c57bf0d56/secondary_axis.py deleted file mode 120000 index 598fb7208d3..00000000000 --- a/_downloads/0d65e2c11bd9d21e2c997b5c57bf0d56/secondary_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d65e2c11bd9d21e2c997b5c57bf0d56/secondary_axis.py \ No newline at end of file diff --git a/_downloads/0d65f1e11627ae40df14b7960c140526/gridspec_and_subplots.ipynb b/_downloads/0d65f1e11627ae40df14b7960c140526/gridspec_and_subplots.ipynb deleted file mode 100644 index 4daa7b58957..00000000000 --- a/_downloads/0d65f1e11627ae40df14b7960c140526/gridspec_and_subplots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Combining two subplots using subplots and GridSpec\n\n\nSometimes we want to combine two subplots in an axes layout created with\n`~.Figure.subplots`. We can get the `~.gridspec.GridSpec` from the axes\nand then remove the covered axes and fill the gap with a new bigger axes.\nHere we create a layout with the bottom two axes in the last column combined.\n\nSee also :doc:`/tutorials/intermediate/gridspec`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, axs = plt.subplots(ncols=3, nrows=3)\ngs = axs[1, 2].get_gridspec()\n# remove the underlying axes\nfor ax in axs[1:, -1]:\n ax.remove()\naxbig = fig.add_subplot(gs[1:, -1])\naxbig.annotate('Big Axes \\nGridSpec[1:, -1]', (0.1, 0.5),\n xycoords='axes fraction', va='center')\n\nfig.tight_layout()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0d67d109c387e8aea86adb7c0cbbecac/simple_axis_direction01.py b/_downloads/0d67d109c387e8aea86adb7c0cbbecac/simple_axis_direction01.py deleted file mode 120000 index 0dc8535782d..00000000000 --- a/_downloads/0d67d109c387e8aea86adb7c0cbbecac/simple_axis_direction01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d67d109c387e8aea86adb7c0cbbecac/simple_axis_direction01.py \ No newline at end of file diff --git a/_downloads/0d6a88e8824c1d2bea8d34e056f745dc/sankey_rankine.ipynb b/_downloads/0d6a88e8824c1d2bea8d34e056f745dc/sankey_rankine.ipynb deleted file mode 120000 index 6ab609446cc..00000000000 --- a/_downloads/0d6a88e8824c1d2bea8d34e056f745dc/sankey_rankine.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0d6a88e8824c1d2bea8d34e056f745dc/sankey_rankine.ipynb \ No newline at end of file diff --git a/_downloads/0d6c2a376b9c2529ca5284b54237a4fa/pyplot_two_subplots.ipynb b/_downloads/0d6c2a376b9c2529ca5284b54237a4fa/pyplot_two_subplots.ipynb deleted file mode 100644 index 4e58daf9eda..00000000000 --- a/_downloads/0d6c2a376b9c2529ca5284b54237a4fa/pyplot_two_subplots.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Two Subplots\n\n\nCreate a figure with two subplots with `pyplot.subplot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef f(t):\n return np.exp(-t) * np.cos(2*np.pi*t)\n\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\n\nplt.figure()\nplt.subplot(211)\nplt.plot(t1, f(t1), color='tab:blue', marker='o')\nplt.plot(t2, f(t2), color='black')\n\nplt.subplot(212)\nplt.plot(t2, np.cos(2*np.pi*t2), color='tab:orange', linestyle='--')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.figure\nmatplotlib.pyplot.subplot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0d7f5314d2bea2ba71032b00c9e22768/hinton_demo.py b/_downloads/0d7f5314d2bea2ba71032b00c9e22768/hinton_demo.py deleted file mode 100644 index 128d2ccb11b..00000000000 --- a/_downloads/0d7f5314d2bea2ba71032b00c9e22768/hinton_demo.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=============== -Hinton diagrams -=============== - -Hinton diagrams are useful for visualizing the values of a 2D array (e.g. -a weight matrix): Positive and negative values are represented by white and -black squares, respectively, and the size of each square represents the -magnitude of each value. - -Initial idea from David Warde-Farley on the SciPy Cookbook -""" -import numpy as np -import matplotlib.pyplot as plt - - -def hinton(matrix, max_weight=None, ax=None): - """Draw Hinton diagram for visualizing a weight matrix.""" - ax = ax if ax is not None else plt.gca() - - if not max_weight: - max_weight = 2 ** np.ceil(np.log(np.abs(matrix).max()) / np.log(2)) - - ax.patch.set_facecolor('gray') - ax.set_aspect('equal', 'box') - ax.xaxis.set_major_locator(plt.NullLocator()) - ax.yaxis.set_major_locator(plt.NullLocator()) - - for (x, y), w in np.ndenumerate(matrix): - color = 'white' if w > 0 else 'black' - size = np.sqrt(np.abs(w) / max_weight) - rect = plt.Rectangle([x - size / 2, y - size / 2], size, size, - facecolor=color, edgecolor=color) - ax.add_patch(rect) - - ax.autoscale_view() - ax.invert_yaxis() - - -if __name__ == '__main__': - # Fixing random state for reproducibility - np.random.seed(19680801) - - hinton(np.random.rand(20, 20) - 0.5) - plt.show() diff --git a/_downloads/0d80045996fadd11562ab57fc10d99a5/joinstyle.ipynb b/_downloads/0d80045996fadd11562ab57fc10d99a5/joinstyle.ipynb deleted file mode 120000 index 11480648edf..00000000000 --- a/_downloads/0d80045996fadd11562ab57fc10d99a5/joinstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0d80045996fadd11562ab57fc10d99a5/joinstyle.ipynb \ No newline at end of file diff --git a/_downloads/0d8477fae41d15ae686378183c1f4ea8/fonts_demo.ipynb b/_downloads/0d8477fae41d15ae686378183c1f4ea8/fonts_demo.ipynb deleted file mode 120000 index e83a90e7fa2..00000000000 --- a/_downloads/0d8477fae41d15ae686378183c1f4ea8/fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0d8477fae41d15ae686378183c1f4ea8/fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/0d8ba2915f80231f17a222904da5d732/affine_image.py b/_downloads/0d8ba2915f80231f17a222904da5d732/affine_image.py deleted file mode 120000 index f3f5e3b60e4..00000000000 --- a/_downloads/0d8ba2915f80231f17a222904da5d732/affine_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0d8ba2915f80231f17a222904da5d732/affine_image.py \ No newline at end of file diff --git a/_downloads/0d94160c338d1cb111a4d38e5df5307f/polar_bar.py b/_downloads/0d94160c338d1cb111a4d38e5df5307f/polar_bar.py deleted file mode 120000 index 61d0e8f8127..00000000000 --- a/_downloads/0d94160c338d1cb111a4d38e5df5307f/polar_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0d94160c338d1cb111a4d38e5df5307f/polar_bar.py \ No newline at end of file diff --git a/_downloads/0d96e2b1216b6ca855562012179a2d39/demo_axis_direction.py b/_downloads/0d96e2b1216b6ca855562012179a2d39/demo_axis_direction.py deleted file mode 120000 index e28fc33f710..00000000000 --- a/_downloads/0d96e2b1216b6ca855562012179a2d39/demo_axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0d96e2b1216b6ca855562012179a2d39/demo_axis_direction.py \ No newline at end of file diff --git a/_downloads/0da3702a4217f92af6b444b51be1e178/colormap_normalizations_diverging.ipynb b/_downloads/0da3702a4217f92af6b444b51be1e178/colormap_normalizations_diverging.ipynb deleted file mode 100644 index d74c3f79215..00000000000 --- a/_downloads/0da3702a4217f92af6b444b51be1e178/colormap_normalizations_diverging.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# DivergingNorm colormap normalization\n\n\nSometimes we want to have a different colormap on either side of a\nconceptual center point, and we want those two colormaps to have\ndifferent linear scales. An example is a topographic map where the land\nand ocean have a center at zero, but land typically has a greater\nelevation range than the water has depth range, and they are often\nrepresented by a different colormap.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport matplotlib.colors as colors\n\nfilename = cbook.get_sample_data('topobathy.npz', asfileobj=False)\nwith np.load(filename) as dem:\n topo = dem['topo']\n longitude = dem['longitude']\n latitude = dem['latitude']\n\nfig, ax = plt.subplots(constrained_layout=True)\n# make a colormap that has land and ocean clearly delineated and of the\n# same length (256 + 256)\ncolors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256))\ncolors_land = plt.cm.terrain(np.linspace(0.25, 1, 256))\nall_colors = np.vstack((colors_undersea, colors_land))\nterrain_map = colors.LinearSegmentedColormap.from_list('terrain_map',\n all_colors)\n\n# make the norm: Note the center is offset so that the land has more\n# dynamic range:\ndivnorm = colors.DivergingNorm(vmin=-500, vcenter=0, vmax=4000)\n\npcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm,\n cmap=terrain_map,)\nax.set_xlabel('Lon $[^o E]$')\nax.set_ylabel('Lat $[^o N]$')\nax.set_aspect(1 / np.cos(np.deg2rad(49)))\nfig.colorbar(pcm, shrink=0.6, extend='both', label='Elevation [m]')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0daa277be99c64e854b2036e1668b981/contour3d.ipynb b/_downloads/0daa277be99c64e854b2036e1668b981/contour3d.ipynb deleted file mode 120000 index 7e4924a67eb..00000000000 --- a/_downloads/0daa277be99c64e854b2036e1668b981/contour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0daa277be99c64e854b2036e1668b981/contour3d.ipynb \ No newline at end of file diff --git a/_downloads/0daf1174cdf0909658bc705082b78cb2/marker_path.py b/_downloads/0daf1174cdf0909658bc705082b78cb2/marker_path.py deleted file mode 100644 index 7d43df365b3..00000000000 --- a/_downloads/0daf1174cdf0909658bc705082b78cb2/marker_path.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -=========== -Marker Path -=========== - -Using a `~.path.Path` as marker for a `~.axes.Axes.plot`. -""" -import matplotlib.pyplot as plt -import matplotlib.path as mpath -import numpy as np - - -star = mpath.Path.unit_regular_star(6) -circle = mpath.Path.unit_circle() -# concatenate the circle with an internal cutout of the star -verts = np.concatenate([circle.vertices, star.vertices[::-1, ...]]) -codes = np.concatenate([circle.codes, star.codes]) -cut_star = mpath.Path(verts, codes) - - -plt.plot(np.arange(10)**2, '--r', marker=cut_star, markersize=15) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.path.Path.unit_regular_star -matplotlib.path.Path.unit_circle -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot diff --git a/_downloads/0db191a61ab8ea3a0dd29648886df7df/text_rotation.py b/_downloads/0db191a61ab8ea3a0dd29648886df7df/text_rotation.py deleted file mode 120000 index e9160647b37..00000000000 --- a/_downloads/0db191a61ab8ea3a0dd29648886df7df/text_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0db191a61ab8ea3a0dd29648886df7df/text_rotation.py \ No newline at end of file diff --git a/_downloads/0dbbfb5cc7b3504640bdf70d2a07b687/mathtext_demo.ipynb b/_downloads/0dbbfb5cc7b3504640bdf70d2a07b687/mathtext_demo.ipynb deleted file mode 100644 index 0e7a1f5b58f..00000000000 --- a/_downloads/0dbbfb5cc7b3504640bdf70d2a07b687/mathtext_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Mathtext Demo\n\n\nUse Matplotlib's internal LaTeX parser and layout engine. For true LaTeX\nrendering, see the text.usetex option.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nax.plot([1, 2, 3], label=r'$\\sqrt{x^2}$')\nax.legend()\n\nax.set_xlabel(r'$\\Delta_i^j$', fontsize=20)\nax.set_ylabel(r'$\\Delta_{i+1}^j$', fontsize=20)\nax.set_title(r'$\\Delta_i^j \\hspace{0.4} \\mathrm{versus} \\hspace{0.4} '\n r'\\Delta_{i+1}^j$', fontsize=20)\n\ntex = r'$\\mathcal{R}\\prod_{i=\\alpha_{i+1}}^\\infty a_i\\sin(2 \\pi f x_i)$'\nax.text(1, 1.6, tex, fontsize=20, va='bottom')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0dc5c9556623c7e31d111f24f90b0520/data_browser.ipynb b/_downloads/0dc5c9556623c7e31d111f24f90b0520/data_browser.ipynb deleted file mode 120000 index 966a6ea06f3..00000000000 --- a/_downloads/0dc5c9556623c7e31d111f24f90b0520/data_browser.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0dc5c9556623c7e31d111f24f90b0520/data_browser.ipynb \ No newline at end of file diff --git a/_downloads/0dc69559b118ff661badc1f78ea05afc/scatter_with_legend.ipynb b/_downloads/0dc69559b118ff661badc1f78ea05afc/scatter_with_legend.ipynb deleted file mode 120000 index 185dbd092b9..00000000000 --- a/_downloads/0dc69559b118ff661badc1f78ea05afc/scatter_with_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0dc69559b118ff661badc1f78ea05afc/scatter_with_legend.ipynb \ No newline at end of file diff --git a/_downloads/0dc8c982cb901da42dee1a426bf92f57/color_demo.py b/_downloads/0dc8c982cb901da42dee1a426bf92f57/color_demo.py deleted file mode 100644 index 58c0341247f..00000000000 --- a/_downloads/0dc8c982cb901da42dee1a426bf92f57/color_demo.py +++ /dev/null @@ -1,77 +0,0 @@ -""" -========== -Color Demo -========== - -Matplotlib recognizes the following formats to specify a color: - -1) an RGB or RGBA tuple of float values in ``[0, 1]`` (e.g. ``(0.1, 0.2, 0.5)`` - or ``(0.1, 0.2, 0.5, 0.3)``). RGBA is short for Red, Green, Blue, Alpha; -2) a hex RGB or RGBA string (e.g., ``'#0F0F0F'`` or ``'#0F0F0F0F'``); -3) a string representation of a float value in ``[0, 1]`` inclusive for gray - level (e.g., ``'0.5'``); -4) a single letter string, i.e. one of - ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``; -5) a X11/CSS4 ("html") color name, e.g. ``"blue"``; -6) a name from the `xkcd color survey `__, - prefixed with ``'xkcd:'`` (e.g., ``'xkcd:sky blue'``); -7) a "Cn" color spec, i.e. `'C'` followed by a number, which is an index into - the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the - indexing is intended to occur at rendering time, and defaults to black if - the cycle does not include color. -8) one of ``{'tab:blue', 'tab:orange', 'tab:green', - 'tab:red', 'tab:purple', 'tab:brown', 'tab:pink', - 'tab:gray', 'tab:olive', 'tab:cyan'}`` which are the Tableau Colors from the - 'tab10' categorical palette (which is the default color cycle); - -For more information on colors in matplotlib see - -* the :doc:`/tutorials/colors/colors` tutorial; -* the `matplotlib.colors` API; -* the :doc:`/gallery/color/named_colors` example. -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.linspace(0.0, 2.0, 201) -s = np.sin(2 * np.pi * t) - -# 1) RGB tuple: -fig, ax = plt.subplots(facecolor=(.18, .31, .31)) -# 2) hex string: -ax.set_facecolor('#eafff5') -# 3) gray level string: -ax.set_title('Voltage vs. time chart', color='0.7') -# 4) single letter color string -ax.set_xlabel('time (s)', color='c') -# 5) a named color: -ax.set_ylabel('voltage (mV)', color='peachpuff') -# 6) a named xkcd color: -ax.plot(t, s, 'xkcd:crimson') -# 7) Cn notation: -ax.plot(t, .7*s, color='C4', linestyle='--') -# 8) tab notation: -ax.tick_params(labelcolor='tab:orange') - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.set_facecolor -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.tick_params diff --git a/_downloads/0dc911e7f2eea44149763e3ac990f978/spines.ipynb b/_downloads/0dc911e7f2eea44149763e3ac990f978/spines.ipynb deleted file mode 120000 index 4cf71a1e6e6..00000000000 --- a/_downloads/0dc911e7f2eea44149763e3ac990f978/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0dc911e7f2eea44149763e3ac990f978/spines.ipynb \ No newline at end of file diff --git a/_downloads/0dcb7adb7f30c812ec759fc0abcfd410/axes_zoom_effect.py b/_downloads/0dcb7adb7f30c812ec759fc0abcfd410/axes_zoom_effect.py deleted file mode 120000 index e8fd727640c..00000000000 --- a/_downloads/0dcb7adb7f30c812ec759fc0abcfd410/axes_zoom_effect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0dcb7adb7f30c812ec759fc0abcfd410/axes_zoom_effect.py \ No newline at end of file diff --git a/_downloads/0dcd2e0ff81ff95bb485b0429d4ddea1/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/0dcd2e0ff81ff95bb485b0429d4ddea1/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 120000 index 20d7f462901..00000000000 --- a/_downloads/0dcd2e0ff81ff95bb485b0429d4ddea1/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0dcd2e0ff81ff95bb485b0429d4ddea1/embedding_in_gtk3_panzoom_sgskip.py \ No newline at end of file diff --git a/_downloads/0dd01d352c3fd0264b6bdd8668dba97b/usetex_fonteffects.py b/_downloads/0dd01d352c3fd0264b6bdd8668dba97b/usetex_fonteffects.py deleted file mode 100644 index 8027a916606..00000000000 --- a/_downloads/0dd01d352c3fd0264b6bdd8668dba97b/usetex_fonteffects.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -================== -Usetex Fonteffects -================== - -This script demonstrates that font effects specified in your pdftex.map -are now supported in pdf usetex. -""" - -import matplotlib -import matplotlib.pyplot as plt -matplotlib.rc('text', usetex=True) - - -def setfont(font): - return r'\font\a %s at 14pt\a ' % font - - -for y, font, text in zip(range(5), - ['ptmr8r', 'ptmri8r', 'ptmro8r', - 'ptmr8rn', 'ptmrr8re'], - ['Nimbus Roman No9 L ' + x for x in - ['', 'Italics (real italics for comparison)', - '(slanted)', '(condensed)', '(extended)']]): - plt.text(0, y, setfont(font) + text) - -plt.ylim(-1, 5) -plt.xlim(-0.2, 0.6) -plt.setp(plt.gca(), frame_on=False, xticks=(), yticks=()) -plt.title('Usetex font effects') -plt.savefig('usetex_fonteffects.pdf') diff --git a/_downloads/0dde215bea83a29bcf4b5c3c41d95c21/whats_new_99_mplot3d.py b/_downloads/0dde215bea83a29bcf4b5c3c41d95c21/whats_new_99_mplot3d.py deleted file mode 100644 index 6a85c0a383c..00000000000 --- a/_downloads/0dde215bea83a29bcf4b5c3c41d95c21/whats_new_99_mplot3d.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -====================== -Whats New 0.99 Mplot3d -====================== - -Create a 3D surface plot. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib import cm -from mpl_toolkits.mplot3d import Axes3D - -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -fig = plt.figure() -ax = Axes3D(fig) -ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import mpl_toolkits -mpl_toolkits.mplot3d.Axes3D -mpl_toolkits.mplot3d.Axes3D.plot_surface diff --git a/_downloads/0ddf2eab43c6e6db5baba0875d7125cb/share_axis_lims_views.ipynb b/_downloads/0ddf2eab43c6e6db5baba0875d7125cb/share_axis_lims_views.ipynb deleted file mode 120000 index ec0ca5a9777..00000000000 --- a/_downloads/0ddf2eab43c6e6db5baba0875d7125cb/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0ddf2eab43c6e6db5baba0875d7125cb/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/0de81914fba4ab817cb8a322f8c34c45/demo_gridspec06.py b/_downloads/0de81914fba4ab817cb8a322f8c34c45/demo_gridspec06.py deleted file mode 120000 index bf8e030c013..00000000000 --- a/_downloads/0de81914fba4ab817cb8a322f8c34c45/demo_gridspec06.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0de81914fba4ab817cb8a322f8c34c45/demo_gridspec06.py \ No newline at end of file diff --git a/_downloads/0df53714ef13c64d82d44de225af20b5/histogram_cumulative.py b/_downloads/0df53714ef13c64d82d44de225af20b5/histogram_cumulative.py deleted file mode 100644 index b027cb3066d..00000000000 --- a/_downloads/0df53714ef13c64d82d44de225af20b5/histogram_cumulative.py +++ /dev/null @@ -1,72 +0,0 @@ -""" -================================================== -Using histograms to plot a cumulative distribution -================================================== - -This shows how to plot a cumulative, normalized histogram as a -step function in order to visualize the empirical cumulative -distribution function (CDF) of a sample. We also show the theoretical CDF. - -A couple of other options to the ``hist`` function are demonstrated. -Namely, we use the ``normed`` parameter to normalize the histogram and -a couple of different options to the ``cumulative`` parameter. -The ``normed`` parameter takes a boolean value. When ``True``, the bin -heights are scaled such that the total area of the histogram is 1. The -``cumulative`` kwarg is a little more nuanced. Like ``normed``, you -can pass it True or False, but you can also pass it -1 to reverse the -distribution. - -Since we're showing a normalized and cumulative histogram, these curves -are effectively the cumulative distribution functions (CDFs) of the -samples. In engineering, empirical CDFs are sometimes called -"non-exceedance" curves. In other words, you can look at the -y-value for a given-x-value to get the probability of and observation -from the sample not exceeding that x-value. For example, the value of -225 on the x-axis corresponds to about 0.85 on the y-axis, so there's an -85% chance that an observation in the sample does not exceed 225. -Conversely, setting, ``cumulative`` to -1 as is done in the -last series for this example, creates a "exceedance" curve. - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html - -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -mu = 200 -sigma = 25 -n_bins = 50 -x = np.random.normal(mu, sigma, size=100) - -fig, ax = plt.subplots(figsize=(8, 4)) - -# plot the cumulative histogram -n, bins, patches = ax.hist(x, n_bins, density=True, histtype='step', - cumulative=True, label='Empirical') - -# Add a line showing the expected distribution. -y = ((1 / (np.sqrt(2 * np.pi) * sigma)) * - np.exp(-0.5 * (1 / sigma * (bins - mu))**2)) -y = y.cumsum() -y /= y[-1] - -ax.plot(bins, y, 'k--', linewidth=1.5, label='Theoretical') - -# Overlay a reversed cumulative histogram. -ax.hist(x, bins=bins, density=True, histtype='step', cumulative=-1, - label='Reversed emp.') - -# tidy up the figure -ax.grid(True) -ax.legend(loc='right') -ax.set_title('Cumulative step histograms') -ax.set_xlabel('Annual rainfall (mm)') -ax.set_ylabel('Likelihood of occurrence') - -plt.show() diff --git a/_downloads/0dfd64883d6193efbe2f48ebc2759d69/mathtext_wx_sgskip.py b/_downloads/0dfd64883d6193efbe2f48ebc2759d69/mathtext_wx_sgskip.py deleted file mode 100644 index 53a861986c2..00000000000 --- a/_downloads/0dfd64883d6193efbe2f48ebc2759d69/mathtext_wx_sgskip.py +++ /dev/null @@ -1,128 +0,0 @@ -""" -=========== -MathText WX -=========== - -Demonstrates how to convert mathtext to a wx.Bitmap for display in various -controls on wxPython. -""" - -import matplotlib -matplotlib.use("WxAgg") -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wx import NavigationToolbar2Wx -from matplotlib.figure import Figure -import numpy as np - -import wx - -IS_GTK = 'wxGTK' in wx.PlatformInfo -IS_WIN = 'wxMSW' in wx.PlatformInfo - -############################################################ -# This is where the "magic" happens. -from matplotlib.mathtext import MathTextParser -mathtext_parser = MathTextParser("Bitmap") - - -def mathtext_to_wxbitmap(s): - ftimage, depth = mathtext_parser.parse(s, 150) - return wx.Bitmap.FromBufferRGBA( - ftimage.get_width(), ftimage.get_height(), - ftimage.as_rgba_str()) -############################################################ - -functions = [ - (r'$\sin(2 \pi x)$', lambda x: np.sin(2*np.pi*x)), - (r'$\frac{4}{3}\pi x^3$', lambda x: (4.0/3.0)*np.pi*x**3), - (r'$\cos(2 \pi x)$', lambda x: np.cos(2*np.pi*x)), - (r'$\log(x)$', lambda x: np.log(x)) -] - - -class CanvasFrame(wx.Frame): - def __init__(self, parent, title): - wx.Frame.__init__(self, parent, -1, title, size=(550, 350)) - - self.figure = Figure() - self.axes = self.figure.add_subplot(111) - - self.canvas = FigureCanvas(self, -1, self.figure) - - self.change_plot(0) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.add_buttonbar() - self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW) - self.add_toolbar() # comment this out for no toolbar - - menuBar = wx.MenuBar() - - # File Menu - menu = wx.Menu() - m_exit = menu.Append(wx.ID_EXIT, "E&xit\tAlt-X", "Exit this simple sample") - menuBar.Append(menu, "&File") - self.Bind(wx.EVT_MENU, self.OnClose, m_exit) - - if IS_GTK or IS_WIN: - # Equation Menu - menu = wx.Menu() - for i, (mt, func) in enumerate(functions): - bm = mathtext_to_wxbitmap(mt) - item = wx.MenuItem(menu, 1000 + i, " ") - item.SetBitmap(bm) - menu.Append(item) - self.Bind(wx.EVT_MENU, self.OnChangePlot, item) - menuBar.Append(menu, "&Functions") - - self.SetMenuBar(menuBar) - - self.SetSizer(self.sizer) - self.Fit() - - def add_buttonbar(self): - self.button_bar = wx.Panel(self) - self.button_bar_sizer = wx.BoxSizer(wx.HORIZONTAL) - self.sizer.Add(self.button_bar, 0, wx.LEFT | wx.TOP | wx.GROW) - - for i, (mt, func) in enumerate(functions): - bm = mathtext_to_wxbitmap(mt) - button = wx.BitmapButton(self.button_bar, 1000 + i, bm) - self.button_bar_sizer.Add(button, 1, wx.GROW) - self.Bind(wx.EVT_BUTTON, self.OnChangePlot, button) - - self.button_bar.SetSizer(self.button_bar_sizer) - - def add_toolbar(self): - """Copied verbatim from embedding_wx2.py""" - self.toolbar = NavigationToolbar2Wx(self.canvas) - self.toolbar.Realize() - # By adding toolbar in sizer, we are able to put it at the bottom - # of the frame - so appearance is closer to GTK version. - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - # update the axes menu on the toolbar - self.toolbar.update() - - def OnChangePlot(self, event): - self.change_plot(event.GetId() - 1000) - - def change_plot(self, plot_number): - t = np.arange(1.0, 3.0, 0.01) - s = functions[plot_number][1](t) - self.axes.clear() - self.axes.plot(t, s) - self.canvas.draw() - - def OnClose(self, event): - self.Destroy() - - -class MyApp(wx.App): - def OnInit(self): - frame = CanvasFrame(None, "wxPython mathtext demo app") - self.SetTopWindow(frame) - frame.Show(True) - return True - -app = MyApp() -app.MainLoop() diff --git a/_downloads/0dff3dd67468123eb00b27dd85176840/demo_curvelinear_grid.py b/_downloads/0dff3dd67468123eb00b27dd85176840/demo_curvelinear_grid.py deleted file mode 120000 index 342c40896fa..00000000000 --- a/_downloads/0dff3dd67468123eb00b27dd85176840/demo_curvelinear_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0dff3dd67468123eb00b27dd85176840/demo_curvelinear_grid.py \ No newline at end of file diff --git a/_downloads/0e0759e95ca885d49bba795ec3b449b3/2dcollections3d.py b/_downloads/0e0759e95ca885d49bba795ec3b449b3/2dcollections3d.py deleted file mode 100644 index 589e1083f7f..00000000000 --- a/_downloads/0e0759e95ca885d49bba795ec3b449b3/2dcollections3d.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -======================= -Plot 2D data on 3D plot -======================= - -Demonstrates using ax.plot's zdir keyword to plot 2D data on -selective axes of a 3D plot. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Plot a sin curve using the x and y axes. -x = np.linspace(0, 1, 100) -y = np.sin(x * 2 * np.pi) / 2 + 0.5 -ax.plot(x, y, zs=0, zdir='z', label='curve in (x,y)') - -# Plot scatterplot data (20 2D points per colour) on the x and z axes. -colors = ('r', 'g', 'b', 'k') - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x = np.random.sample(20 * len(colors)) -y = np.random.sample(20 * len(colors)) -c_list = [] -for c in colors: - c_list.extend([c] * 20) -# By using zdir='y', the y value of these points is fixed to the zs value 0 -# and the (x,y) points are plotted on the x and z axes. -ax.scatter(x, y, zs=0, zdir='y', c=c_list, label='points in (x,z)') - -# Make legend, set axes limits and labels -ax.legend() -ax.set_xlim(0, 1) -ax.set_ylim(0, 1) -ax.set_zlim(0, 1) -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -# Customize the view angle so it's easier to see that the scatter points lie -# on the plane y=0 -ax.view_init(elev=20., azim=-35) - -plt.show() diff --git a/_downloads/0e078593bc0a7bc7d9d7e312111def53/svg_filter_line.ipynb b/_downloads/0e078593bc0a7bc7d9d7e312111def53/svg_filter_line.ipynb deleted file mode 120000 index 6dd7d479964..00000000000 --- a/_downloads/0e078593bc0a7bc7d9d7e312111def53/svg_filter_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0e078593bc0a7bc7d9d7e312111def53/svg_filter_line.ipynb \ No newline at end of file diff --git a/_downloads/0e13990c080048c6e3e4c369b65bef72/scatter_star_poly.py b/_downloads/0e13990c080048c6e3e4c369b65bef72/scatter_star_poly.py deleted file mode 100644 index 6dafbf27c83..00000000000 --- a/_downloads/0e13990c080048c6e3e4c369b65bef72/scatter_star_poly.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -================= -Scatter Star Poly -================= - -Create multiple scatter plots with different -star symbols. - -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x = np.random.rand(10) -y = np.random.rand(10) -z = np.sqrt(x**2 + y**2) - -plt.subplot(321) -plt.scatter(x, y, s=80, c=z, marker=">") - -plt.subplot(322) -plt.scatter(x, y, s=80, c=z, marker=(5, 0)) - -verts = np.array([[-1, -1], [1, -1], [1, 1], [-1, -1]]) -plt.subplot(323) -plt.scatter(x, y, s=80, c=z, marker=verts) - -plt.subplot(324) -plt.scatter(x, y, s=80, c=z, marker=(5, 1)) - -plt.subplot(325) -plt.scatter(x, y, s=80, c=z, marker='+') - -plt.subplot(326) -plt.scatter(x, y, s=80, c=z, marker=(5, 2)) - -plt.show() diff --git a/_downloads/0e15aece915c73f39f3e9d0fd9822a11/usetex_demo.py b/_downloads/0e15aece915c73f39f3e9d0fd9822a11/usetex_demo.py deleted file mode 100644 index 09902ad9efe..00000000000 --- a/_downloads/0e15aece915c73f39f3e9d0fd9822a11/usetex_demo.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -=========== -Usetex Demo -=========== - -Shows how to use latex in a plot. - -Also refer to the :doc:`/tutorials/text/usetex` guide. -""" - -import numpy as np -import matplotlib.pyplot as plt -plt.rc('text', usetex=True) - -# interface tracking profiles -N = 500 -delta = 0.6 -X = np.linspace(-1, 1, N) -plt.plot(X, (1 - np.tanh(4 * X / delta)) / 2, # phase field tanh profiles - X, (1.4 + np.tanh(4 * X / delta)) / 4, "C2", # composition profile - X, X < 0, 'k--') # sharp interface - -# legend -plt.legend(('phase field', 'level set', 'sharp interface'), - shadow=True, loc=(0.01, 0.48), handlelength=1.5, fontsize=16) - -# the arrow -plt.annotate("", xy=(-delta / 2., 0.1), xytext=(delta / 2., 0.1), - arrowprops=dict(arrowstyle="<->", connectionstyle="arc3")) -plt.text(0, 0.1, r'$\delta$', - {'color': 'black', 'fontsize': 24, 'ha': 'center', 'va': 'center', - 'bbox': dict(boxstyle="round", fc="white", ec="black", pad=0.2)}) - -# Use tex in labels -plt.xticks((-1, 0, 1), ('$-1$', r'$\pm 0$', '$+1$'), color='k', size=20) - -# Left Y-axis labels, combine math mode and text mode -plt.ylabel(r'\bf{phase field} $\phi$', {'color': 'C0', 'fontsize': 20}) -plt.yticks((0, 0.5, 1), (r'\bf{0}', r'\bf{.5}', r'\bf{1}'), color='k', size=20) - -# Right Y-axis labels -plt.text(1.02, 0.5, r"\bf{level set} $\phi$", {'color': 'C2', 'fontsize': 20}, - horizontalalignment='left', - verticalalignment='center', - rotation=90, - clip_on=False, - transform=plt.gca().transAxes) - -# Use multiline environment inside a `text`. -# level set equations -eq1 = r"\begin{eqnarray*}" + \ - r"|\nabla\phi| &=& 1,\\" + \ - r"\frac{\partial \phi}{\partial t} + U|\nabla \phi| &=& 0 " + \ - r"\end{eqnarray*}" -plt.text(1, 0.9, eq1, {'color': 'C2', 'fontsize': 18}, va="top", ha="right") - -# phase field equations -eq2 = r'\begin{eqnarray*}' + \ - r'\mathcal{F} &=& \int f\left( \phi, c \right) dV, \\ ' + \ - r'\frac{ \partial \phi } { \partial t } &=& -M_{ \phi } ' + \ - r'\frac{ \delta \mathcal{F} } { \delta \phi }' + \ - r'\end{eqnarray*}' -plt.text(0.18, 0.18, eq2, {'color': 'C0', 'fontsize': 16}) - -plt.text(-1, .30, r'gamma: $\gamma$', {'color': 'r', 'fontsize': 20}) -plt.text(-1, .18, r'Omega: $\Omega$', {'color': 'b', 'fontsize': 20}) - -plt.show() diff --git a/_downloads/0e1883a58fd8fc1bc5dc8379f2376b0d/units_scatter.py b/_downloads/0e1883a58fd8fc1bc5dc8379f2376b0d/units_scatter.py deleted file mode 120000 index 5189e88c3fa..00000000000 --- a/_downloads/0e1883a58fd8fc1bc5dc8379f2376b0d/units_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0e1883a58fd8fc1bc5dc8379f2376b0d/units_scatter.py \ No newline at end of file diff --git a/_downloads/0e1f0861d3ee191fe8697650bac8cd3b/fig_axes_labels_simple.py b/_downloads/0e1f0861d3ee191fe8697650bac8cd3b/fig_axes_labels_simple.py deleted file mode 100644 index b7d3bd25b74..00000000000 --- a/_downloads/0e1f0861d3ee191fe8697650bac8cd3b/fig_axes_labels_simple.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -================== -Simple axes labels -================== - -Label the axes of a plot. -""" -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.subplots_adjust(top=0.8) -ax1 = fig.add_subplot(211) -ax1.set_ylabel('volts') -ax1.set_title('a sine wave') - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2 * np.pi * t) -line, = ax1.plot(t, s, lw=2) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -ax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3]) -n, bins, patches = ax2.hist(np.random.randn(1000), 50) -ax2.set_xlabel('time (s)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.hist -matplotlib.figure.Figure.add_axes diff --git a/_downloads/0e1f6f81780101ca4526837c7ea53422/pong_sgskip.py b/_downloads/0e1f6f81780101ca4526837c7ea53422/pong_sgskip.py deleted file mode 120000 index 9442571a3be..00000000000 --- a/_downloads/0e1f6f81780101ca4526837c7ea53422/pong_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0e1f6f81780101ca4526837c7ea53422/pong_sgskip.py \ No newline at end of file diff --git a/_downloads/0e29cafdb7bc613c0de1a6587f835402/textbox.ipynb b/_downloads/0e29cafdb7bc613c0de1a6587f835402/textbox.ipynb deleted file mode 120000 index c3b91aab950..00000000000 --- a/_downloads/0e29cafdb7bc613c0de1a6587f835402/textbox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0e29cafdb7bc613c0de1a6587f835402/textbox.ipynb \ No newline at end of file diff --git a/_downloads/0e301d627eb5ba0f12cb09c8e415becb/cursor_demo_sgskip.ipynb b/_downloads/0e301d627eb5ba0f12cb09c8e415becb/cursor_demo_sgskip.ipynb deleted file mode 120000 index e046adc0c5c..00000000000 --- a/_downloads/0e301d627eb5ba0f12cb09c8e415becb/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0e301d627eb5ba0f12cb09c8e415becb/cursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/0e4c67a6da5767bd9984ae086e2bd925/fig_axes_customize_simple.ipynb b/_downloads/0e4c67a6da5767bd9984ae086e2bd925/fig_axes_customize_simple.ipynb deleted file mode 120000 index d704a4dc27e..00000000000 --- a/_downloads/0e4c67a6da5767bd9984ae086e2bd925/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0e4c67a6da5767bd9984ae086e2bd925/fig_axes_customize_simple.ipynb \ No newline at end of file diff --git a/_downloads/0e5e98be7eff6fee3c2f609ef36b4505/advanced_hillshading.py b/_downloads/0e5e98be7eff6fee3c2f609ef36b4505/advanced_hillshading.py deleted file mode 120000 index 5f4e6aa92bd..00000000000 --- a/_downloads/0e5e98be7eff6fee3c2f609ef36b4505/advanced_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0e5e98be7eff6fee3c2f609ef36b4505/advanced_hillshading.py \ No newline at end of file diff --git a/_downloads/0e6c09e389820026dfb75063860b5045/tricontour_smooth_delaunay.py b/_downloads/0e6c09e389820026dfb75063860b5045/tricontour_smooth_delaunay.py deleted file mode 120000 index 02dca94329d..00000000000 --- a/_downloads/0e6c09e389820026dfb75063860b5045/tricontour_smooth_delaunay.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0e6c09e389820026dfb75063860b5045/tricontour_smooth_delaunay.py \ No newline at end of file diff --git a/_downloads/0e728ab453382eeb4a17b43cfee3b9fd/keypress_demo.ipynb b/_downloads/0e728ab453382eeb4a17b43cfee3b9fd/keypress_demo.ipynb deleted file mode 120000 index 408f5215984..00000000000 --- a/_downloads/0e728ab453382eeb4a17b43cfee3b9fd/keypress_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0e728ab453382eeb4a17b43cfee3b9fd/keypress_demo.ipynb \ No newline at end of file diff --git a/_downloads/0e7e88d2646a02138e86ed0bc16f7382/bbox_intersect.py b/_downloads/0e7e88d2646a02138e86ed0bc16f7382/bbox_intersect.py deleted file mode 120000 index 494490f8257..00000000000 --- a/_downloads/0e7e88d2646a02138e86ed0bc16f7382/bbox_intersect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0e7e88d2646a02138e86ed0bc16f7382/bbox_intersect.py \ No newline at end of file diff --git a/_downloads/0e8292eb641f3cff55459b6a7c1d5b62/inset_locator_demo2.py b/_downloads/0e8292eb641f3cff55459b6a7c1d5b62/inset_locator_demo2.py deleted file mode 120000 index d8a0d4fcfe2..00000000000 --- a/_downloads/0e8292eb641f3cff55459b6a7c1d5b62/inset_locator_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0e8292eb641f3cff55459b6a7c1d5b62/inset_locator_demo2.py \ No newline at end of file diff --git a/_downloads/0ea2ff5b48b0618f444f6f7caf805de0/pyplot_simple.ipynb b/_downloads/0ea2ff5b48b0618f444f6f7caf805de0/pyplot_simple.ipynb deleted file mode 120000 index d6c15a9d5bc..00000000000 --- a/_downloads/0ea2ff5b48b0618f444f6f7caf805de0/pyplot_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ea2ff5b48b0618f444f6f7caf805de0/pyplot_simple.ipynb \ No newline at end of file diff --git a/_downloads/0ea43575a636b8608b1752b56a78af49/load_converter.py b/_downloads/0ea43575a636b8608b1752b56a78af49/load_converter.py deleted file mode 120000 index f785d4cb0df..00000000000 --- a/_downloads/0ea43575a636b8608b1752b56a78af49/load_converter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0ea43575a636b8608b1752b56a78af49/load_converter.py \ No newline at end of file diff --git a/_downloads/0ea4bd76adb182c803b6d846e99d6c23/demo_bboximage.ipynb b/_downloads/0ea4bd76adb182c803b6d846e99d6c23/demo_bboximage.ipynb deleted file mode 120000 index b016bbfff75..00000000000 --- a/_downloads/0ea4bd76adb182c803b6d846e99d6c23/demo_bboximage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0ea4bd76adb182c803b6d846e99d6c23/demo_bboximage.ipynb \ No newline at end of file diff --git a/_downloads/0eaf234b06f4f7a6a52fa9ca11b63755/gridspec.ipynb b/_downloads/0eaf234b06f4f7a6a52fa9ca11b63755/gridspec.ipynb deleted file mode 100644 index dc115a6b698..00000000000 --- a/_downloads/0eaf234b06f4f7a6a52fa9ca11b63755/gridspec.ipynb +++ /dev/null @@ -1,270 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customizing Figure Layouts Using GridSpec and Other Functions\n\n\nHow to create grid-shaped combinations of axes.\n\n :func:`~matplotlib.pyplot.subplots`\n Perhaps the primary function used to create figures and axes.\n It's also similar to :func:`.matplotlib.pyplot.subplot`,\n but creates and places all axes on the figure at once. See also\n `matplotlib.Figure.subplots`.\n\n :class:`~matplotlib.gridspec.GridSpec`\n Specifies the geometry of the grid that a subplot will be\n placed. The number of rows and number of columns of the grid\n need to be set. Optionally, the subplot layout parameters\n (e.g., left, right, etc.) can be tuned.\n\n :class:`~matplotlib.gridspec.SubplotSpec`\n Specifies the location of the subplot in the given *GridSpec*.\n\n :func:`~matplotlib.pyplot.subplot2grid`\n A helper function that is similar to\n :func:`~matplotlib.pyplot.subplot`,\n but uses 0-based indexing and let subplot to occupy multiple cells.\n This function is not covered in this tutorial.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Basic Quickstart Guide\n======================\n\nThese first two examples show how to create a basic 2-by-2 grid using\nboth :func:`~matplotlib.pyplot.subplots` and :mod:`~matplotlib.gridspec`.\n\nUsing :func:`~matplotlib.pyplot.subplots` is quite simple.\nIt returns a :class:`~matplotlib.figure.Figure` instance and an array of\n:class:`~matplotlib.axes.Axes` objects.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, f1_axes = plt.subplots(ncols=2, nrows=2, constrained_layout=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For a simple use case such as this, :mod:`~matplotlib.gridspec` is\nperhaps overly verbose.\nYou have to create the figure and :class:`~matplotlib.gridspec.GridSpec`\ninstance separately, then pass elements of gridspec instance to the\n:func:`~matplotlib.figure.Figure.add_subplot` method to create the axes\nobjects.\nThe elements of the gridspec are accessed in generally the same manner as\nnumpy arrays.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2 = plt.figure(constrained_layout=True)\nspec2 = gridspec.GridSpec(ncols=2, nrows=2, figure=fig2)\nf2_ax1 = fig2.add_subplot(spec2[0, 0])\nf2_ax2 = fig2.add_subplot(spec2[0, 1])\nf2_ax3 = fig2.add_subplot(spec2[1, 0])\nf2_ax4 = fig2.add_subplot(spec2[1, 1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The power of gridspec comes in being able to create subplots that span\nrows and columns. Note the\n`Numpy slice `_\nsyntax for selecting the part of the gridspec each subplot will occupy.\n\nNote that we have also used the convenience method `.Figure.add_gridspec`\ninstead of `.gridspec.GridSpec`, potentially saving the user an import,\nand keeping the namespace cleaner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig3 = plt.figure(constrained_layout=True)\ngs = fig3.add_gridspec(3, 3)\nf3_ax1 = fig3.add_subplot(gs[0, :])\nf3_ax1.set_title('gs[0, :]')\nf3_ax2 = fig3.add_subplot(gs[1, :-1])\nf3_ax2.set_title('gs[1, :-1]')\nf3_ax3 = fig3.add_subplot(gs[1:, -1])\nf3_ax3.set_title('gs[1:, -1]')\nf3_ax4 = fig3.add_subplot(gs[-1, 0])\nf3_ax4.set_title('gs[-1, 0]')\nf3_ax5 = fig3.add_subplot(gs[-1, -2])\nf3_ax5.set_title('gs[-1, -2]')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":mod:`~matplotlib.gridspec` is also indispensable for creating subplots\nof different widths via a couple of methods.\n\nThe method shown here is similar to the one above and initializes a\nuniform grid specification,\nand then uses numpy indexing and slices to allocate multiple\n\"cells\" for a given subplot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig4 = plt.figure(constrained_layout=True)\nspec4 = fig4.add_gridspec(ncols=2, nrows=2)\nanno_opts = dict(xy=(0.5, 0.5), xycoords='axes fraction',\n va='center', ha='center')\n\nf4_ax1 = fig4.add_subplot(spec4[0, 0])\nf4_ax1.annotate('GridSpec[0, 0]', **anno_opts)\nfig4.add_subplot(spec4[0, 1]).annotate('GridSpec[0, 1:]', **anno_opts)\nfig4.add_subplot(spec4[1, 0]).annotate('GridSpec[1:, 0]', **anno_opts)\nfig4.add_subplot(spec4[1, 1]).annotate('GridSpec[1:, 1:]', **anno_opts)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another option is to use the ``width_ratios`` and ``height_ratios``\nparameters. These keyword arguments are lists of numbers.\nNote that absolute values are meaningless, only their relative ratios\nmatter. That means that ``width_ratios=[2, 4, 8]`` is equivalent to\n``width_ratios=[1, 2, 4]`` within equally wide figures.\nFor the sake of demonstration, we'll blindly create the axes within\n``for`` loops since we won't need them later.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig5 = plt.figure(constrained_layout=True)\nwidths = [2, 3, 1.5]\nheights = [1, 3, 2]\nspec5 = fig5.add_gridspec(ncols=3, nrows=3, width_ratios=widths,\n height_ratios=heights)\nfor row in range(3):\n for col in range(3):\n ax = fig5.add_subplot(spec5[row, col])\n label = 'Width: {}\\nHeight: {}'.format(widths[col], heights[row])\n ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Learning to use ``width_ratios`` and ``height_ratios`` is particularly\nuseful since the top-level function :func:`~matplotlib.pyplot.subplots`\naccepts them within the ``gridspec_kw`` parameter.\nFor that matter, any parameter accepted by\n:class:`~matplotlib.gridspec.GridSpec` can be passed to\n:func:`~matplotlib.pyplot.subplots` via the ``gridspec_kw`` parameter.\nThis example recreates the previous figure without directly using a\ngridspec instance.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "gs_kw = dict(width_ratios=widths, height_ratios=heights)\nfig6, f6_axes = plt.subplots(ncols=3, nrows=3, constrained_layout=True,\n gridspec_kw=gs_kw)\nfor r, row in enumerate(f6_axes):\n for c, ax in enumerate(row):\n label = 'Width: {}\\nHeight: {}'.format(widths[c], heights[r])\n ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The ``subplots`` and ``gridspec`` methods can be combined since it is\nsometimes more convenient to make most of the subplots using ``subplots``\nand then remove some and combine them. Here we create a layout with\nthe bottom two axes in the last column combined.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig7, f7_axs = plt.subplots(ncols=3, nrows=3)\ngs = f7_axs[1, 2].get_gridspec()\n# remove the underlying axes\nfor ax in f7_axs[1:, -1]:\n ax.remove()\naxbig = fig7.add_subplot(gs[1:, -1])\naxbig.annotate('Big Axes \\nGridSpec[1:, -1]', (0.1, 0.5),\n xycoords='axes fraction', va='center')\n\nfig7.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Fine Adjustments to a Gridspec Layout\n=====================================\n\nWhen a GridSpec is explicitly used, you can adjust the layout\nparameters of subplots that are created from the GridSpec. Note this\noption is not compatible with ``constrained_layout`` or\n`.Figure.tight_layout` which both adjust subplot sizes to fill the\nfigure.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig8 = plt.figure(constrained_layout=False)\ngs1 = fig8.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48, wspace=0.05)\nf8_ax1 = fig8.add_subplot(gs1[:-1, :])\nf8_ax2 = fig8.add_subplot(gs1[-1, :-1])\nf8_ax3 = fig8.add_subplot(gs1[-1, -1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is similar to :func:`~matplotlib.pyplot.subplots_adjust`, but it only\naffects the subplots that are created from the given GridSpec.\n\nFor example, compare the left and right sides of this figure:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig9 = plt.figure(constrained_layout=False)\ngs1 = fig9.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48,\n wspace=0.05)\nf9_ax1 = fig9.add_subplot(gs1[:-1, :])\nf9_ax2 = fig9.add_subplot(gs1[-1, :-1])\nf9_ax3 = fig9.add_subplot(gs1[-1, -1])\n\ngs2 = fig9.add_gridspec(nrows=3, ncols=3, left=0.55, right=0.98,\n hspace=0.05)\nf9_ax4 = fig9.add_subplot(gs2[:, :-1])\nf9_ax5 = fig9.add_subplot(gs2[:-1, -1])\nf9_ax6 = fig9.add_subplot(gs2[-1, -1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "GridSpec using SubplotSpec\n==========================\n\nYou can create GridSpec from the :class:`~matplotlib.gridspec.SubplotSpec`,\nin which case its layout parameters are set to that of the location of\nthe given SubplotSpec.\n\nNote this is also available from the more verbose\n`.gridspec.GridSpecFromSubplotSpec`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig10 = plt.figure(constrained_layout=True)\ngs0 = fig10.add_gridspec(1, 2)\n\ngs00 = gs0[0].subgridspec(2, 3)\ngs01 = gs0[1].subgridspec(3, 2)\n\nfor a in range(2):\n for b in range(3):\n fig10.add_subplot(gs00[a, b])\n fig10.add_subplot(gs01[b, a])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A Complex Nested GridSpec using SubplotSpec\n===========================================\n\nHere's a more sophisticated example of nested GridSpec where we put\na box around each cell of the outer 4x4 grid, by hiding appropriate\nspines in each of the inner 3x3 grids.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom itertools import product\n\n\ndef squiggle_xy(a, b, c, d, i=np.arange(0.0, 2*np.pi, 0.05)):\n return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d)\n\n\nfig11 = plt.figure(figsize=(8, 8), constrained_layout=False)\n\n# gridspec inside gridspec\nouter_grid = fig11.add_gridspec(4, 4, wspace=0.0, hspace=0.0)\n\nfor i in range(16):\n inner_grid = outer_grid[i].subgridspec(3, 3, wspace=0.0, hspace=0.0)\n a, b = int(i/4)+1, i % 4+1\n for j, (c, d) in enumerate(product(range(1, 4), repeat=2)):\n ax = fig11.add_subplot(inner_grid[j])\n ax.plot(*squiggle_xy(a, b, c, d))\n ax.set_xticks([])\n ax.set_yticks([])\n fig11.add_subplot(ax)\n\nall_axes = fig11.get_axes()\n\n# show only the outside spines\nfor ax in all_axes:\n for sp in ax.spines.values():\n sp.set_visible(False)\n if ax.is_first_row():\n ax.spines['top'].set_visible(True)\n if ax.is_last_row():\n ax.spines['bottom'].set_visible(True)\n if ax.is_first_col():\n ax.spines['left'].set_visible(True)\n if ax.is_last_col():\n ax.spines['right'].set_visible(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe usage of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.pyplot.subplots\nmatplotlib.figure.Figure.add_gridspec\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.gridspec.GridSpec\nmatplotlib.gridspec.SubplotSpec.subgridspec\nmatplotlib.gridspec.GridSpecFromSubplotSpec" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0eb3b26aed0a78b1e9b20e564ce59a9a/tight_layout_guide.py b/_downloads/0eb3b26aed0a78b1e9b20e564ce59a9a/tight_layout_guide.py deleted file mode 120000 index b585a9521be..00000000000 --- a/_downloads/0eb3b26aed0a78b1e9b20e564ce59a9a/tight_layout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0eb3b26aed0a78b1e9b20e564ce59a9a/tight_layout_guide.py \ No newline at end of file diff --git a/_downloads/0eb7ee3499a8e461ec4b55aeaa13104b/stix_fonts_demo.ipynb b/_downloads/0eb7ee3499a8e461ec4b55aeaa13104b/stix_fonts_demo.ipynb deleted file mode 120000 index 5c7ceec7621..00000000000 --- a/_downloads/0eb7ee3499a8e461ec4b55aeaa13104b/stix_fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0eb7ee3499a8e461ec4b55aeaa13104b/stix_fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/0eba25ee1eff1ff1dc34e0d1697fcbcd/fill_spiral.py b/_downloads/0eba25ee1eff1ff1dc34e0d1697fcbcd/fill_spiral.py deleted file mode 120000 index 3385e2d9f4b..00000000000 --- a/_downloads/0eba25ee1eff1ff1dc34e0d1697fcbcd/fill_spiral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0eba25ee1eff1ff1dc34e0d1697fcbcd/fill_spiral.py \ No newline at end of file diff --git a/_downloads/0ebb3638b762442678772eaf4d6819a0/findobj_demo.ipynb b/_downloads/0ebb3638b762442678772eaf4d6819a0/findobj_demo.ipynb deleted file mode 120000 index 0ade4f4c38e..00000000000 --- a/_downloads/0ebb3638b762442678772eaf4d6819a0/findobj_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ebb3638b762442678772eaf4d6819a0/findobj_demo.ipynb \ No newline at end of file diff --git a/_downloads/0ebb4ffe62f0e7ee47e4a93d5f36ba10/tutorials_python.zip b/_downloads/0ebb4ffe62f0e7ee47e4a93d5f36ba10/tutorials_python.zip deleted file mode 100644 index 05ab09bab84..00000000000 Binary files a/_downloads/0ebb4ffe62f0e7ee47e4a93d5f36ba10/tutorials_python.zip and /dev/null differ diff --git a/_downloads/0ebefeeede05e70895168833ddb44643/set_and_get.ipynb b/_downloads/0ebefeeede05e70895168833ddb44643/set_and_get.ipynb deleted file mode 120000 index 4a37adab3fd..00000000000 --- a/_downloads/0ebefeeede05e70895168833ddb44643/set_and_get.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0ebefeeede05e70895168833ddb44643/set_and_get.ipynb \ No newline at end of file diff --git a/_downloads/0ec3060efebcde8bbab35d5a429ab6bf/demo_curvelinear_grid2.py b/_downloads/0ec3060efebcde8bbab35d5a429ab6bf/demo_curvelinear_grid2.py deleted file mode 120000 index 614a900c6d9..00000000000 --- a/_downloads/0ec3060efebcde8bbab35d5a429ab6bf/demo_curvelinear_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ec3060efebcde8bbab35d5a429ab6bf/demo_curvelinear_grid2.py \ No newline at end of file diff --git a/_downloads/0ec4e4333c61a6ea27fc82867d96f53c/colorbar_placement.py b/_downloads/0ec4e4333c61a6ea27fc82867d96f53c/colorbar_placement.py deleted file mode 120000 index 1c7b4acf0ca..00000000000 --- a/_downloads/0ec4e4333c61a6ea27fc82867d96f53c/colorbar_placement.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0ec4e4333c61a6ea27fc82867d96f53c/colorbar_placement.py \ No newline at end of file diff --git a/_downloads/0ed34d9c6d1275edacd2939b44ab9b62/anchored_box02.ipynb b/_downloads/0ed34d9c6d1275edacd2939b44ab9b62/anchored_box02.ipynb deleted file mode 120000 index 74d79da3f44..00000000000 --- a/_downloads/0ed34d9c6d1275edacd2939b44ab9b62/anchored_box02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0ed34d9c6d1275edacd2939b44ab9b62/anchored_box02.ipynb \ No newline at end of file diff --git a/_downloads/0edd167f60fae1c67c176f26c6966af7/zorder_demo.ipynb b/_downloads/0edd167f60fae1c67c176f26c6966af7/zorder_demo.ipynb deleted file mode 120000 index 10ac80b7b9f..00000000000 --- a/_downloads/0edd167f60fae1c67c176f26c6966af7/zorder_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0edd167f60fae1c67c176f26c6966af7/zorder_demo.ipynb \ No newline at end of file diff --git a/_downloads/0ede643d38189115ab86a14cb1d96d5e/sankey_links.ipynb b/_downloads/0ede643d38189115ab86a14cb1d96d5e/sankey_links.ipynb deleted file mode 120000 index 992327564a5..00000000000 --- a/_downloads/0ede643d38189115ab86a14cb1d96d5e/sankey_links.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ede643d38189115ab86a14cb1d96d5e/sankey_links.ipynb \ No newline at end of file diff --git a/_downloads/0edf2f0b05163cc9696185d80282b864/scatter_hist.py b/_downloads/0edf2f0b05163cc9696185d80282b864/scatter_hist.py deleted file mode 120000 index c3e831c62bb..00000000000 --- a/_downloads/0edf2f0b05163cc9696185d80282b864/scatter_hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0edf2f0b05163cc9696185d80282b864/scatter_hist.py \ No newline at end of file diff --git a/_downloads/0ee0adc8f070d8fba4a152e1b4545f52/demo_imagegrid_aspect.ipynb b/_downloads/0ee0adc8f070d8fba4a152e1b4545f52/demo_imagegrid_aspect.ipynb deleted file mode 120000 index f7ad94263fa..00000000000 --- a/_downloads/0ee0adc8f070d8fba4a152e1b4545f52/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0ee0adc8f070d8fba4a152e1b4545f52/demo_imagegrid_aspect.ipynb \ No newline at end of file diff --git a/_downloads/0eef4eabd5fc1779c56d7f27cc59e2bf/axes_margins.ipynb b/_downloads/0eef4eabd5fc1779c56d7f27cc59e2bf/axes_margins.ipynb deleted file mode 100644 index de1305246ac..00000000000 --- a/_downloads/0eef4eabd5fc1779c56d7f27cc59e2bf/axes_margins.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================================================================\nZooming in and out using Axes.margins and the subject of \"stickiness\"\n=====================================================================\n\nThe first figure in this example shows how to zoom in and out of a\nplot using `~.Axes.margins` instead of `~.Axes.set_xlim` and\n`~.Axes.set_ylim`. The second figure demonstrates the concept of\nedge \"stickiness\" introduced by certain methods and artists and how\nto effectively work around that.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef f(t):\n return np.exp(-t) * np.cos(2*np.pi*t)\n\n\nt1 = np.arange(0.0, 3.0, 0.01)\n\nax1 = plt.subplot(212)\nax1.margins(0.05) # Default margin is 0.05, value 0 means fit\nax1.plot(t1, f(t1))\n\nax2 = plt.subplot(221)\nax2.margins(2, 2) # Values >0.0 zoom out\nax2.plot(t1, f(t1))\nax2.set_title('Zoomed out')\n\nax3 = plt.subplot(222)\nax3.margins(x=0, y=-0.25) # Values in (-0.5, 0.0) zooms in to center\nax3.plot(t1, f(t1))\nax3.set_title('Zoomed in')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "On the \"stickiness\" of certain plotting methods\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nSome plotting functions make the axis limits \"sticky\" or immune to the will\nof the `~.Axes.margins` methods. For instance, `~.Axes.imshow` and\n`~.Axes.pcolor` expect the user to want the limits to be tight around the\npixels shown in the plot. If this behavior is not desired, you need to set\n`~.Axes.use_sticky_edges` to `False`. Consider the following example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "y, x = np.mgrid[:5, 1:6]\npoly_coords = [\n (0.25, 2.75), (3.25, 2.75),\n (2.25, 0.75), (0.25, 0.75)\n]\nfig, (ax1, ax2) = plt.subplots(ncols=2)\n\n# Here we set the stickiness of the axes object...\n# ax1 we'll leave as the default, which uses sticky edges\n# and we'll turn off stickiness for ax2\nax2.use_sticky_edges = False\n\nfor ax, status in zip((ax1, ax2), ('Is', 'Is Not')):\n cells = ax.pcolor(x, y, x+y, cmap='inferno') # sticky\n ax.add_patch(\n plt.Polygon(poly_coords, color='forestgreen', alpha=0.5)\n ) # not sticky\n ax.margins(x=0.1, y=0.05)\n ax.set_aspect('equal')\n ax.set_title('{} Sticky'.format(status))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.margins\nmatplotlib.pyplot.margins\nmatplotlib.axes.Axes.use_sticky_edges\nmatplotlib.axes.Axes.pcolor\nmatplotlib.pyplot.pcolor\nmatplotlib.pyplot.Polygon" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0ef2bf461cbfd823142aec1befa7a53f/fig_x.py b/_downloads/0ef2bf461cbfd823142aec1befa7a53f/fig_x.py deleted file mode 100644 index 304ff4ed354..00000000000 --- a/_downloads/0ef2bf461cbfd823142aec1befa7a53f/fig_x.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -======================= -Adding lines to figures -======================= - -Adding lines to a figure without any axes. -""" -import matplotlib.pyplot as plt -import matplotlib.lines as lines - - -fig = plt.figure() -l1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig) -l2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig) -fig.lines.extend([l1, l2]) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.figure -matplotlib.lines -matplotlib.lines.Line2D diff --git a/_downloads/0f013dfe68629e227d91c2b2e6df9522/violinplot.py b/_downloads/0f013dfe68629e227d91c2b2e6df9522/violinplot.py deleted file mode 100644 index 19d80b494fb..00000000000 --- a/_downloads/0f013dfe68629e227d91c2b2e6df9522/violinplot.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -================== -Violin plot basics -================== - -Violin plots are similar to histograms and box plots in that they show -an abstract representation of the probability distribution of the -sample. Rather than showing counts of data points that fall into bins -or order statistics, violin plots use kernel density estimation (KDE) to -compute an empirical distribution of the sample. That computation -is controlled by several parameters. This example demonstrates how to -modify the number of points at which the KDE is evaluated (``points``) -and how to modify the band-width of the KDE (``bw_method``). - -For more information on violin plots and KDE, the scikit-learn docs -have a great section: http://scikit-learn.org/stable/modules/density.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# fake data -fs = 10 # fontsize -pos = [1, 2, 4, 5, 7, 8] -data = [np.random.normal(0, std, size=100) for std in pos] - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6)) - -axes[0, 0].violinplot(data, pos, points=20, widths=0.3, - showmeans=True, showextrema=True, showmedians=True) -axes[0, 0].set_title('Custom violinplot 1', fontsize=fs) - -axes[0, 1].violinplot(data, pos, points=40, widths=0.5, - showmeans=True, showextrema=True, showmedians=True, - bw_method='silverman') -axes[0, 1].set_title('Custom violinplot 2', fontsize=fs) - -axes[0, 2].violinplot(data, pos, points=60, widths=0.7, showmeans=True, - showextrema=True, showmedians=True, bw_method=0.5) -axes[0, 2].set_title('Custom violinplot 3', fontsize=fs) - -axes[1, 0].violinplot(data, pos, points=80, vert=False, widths=0.7, - showmeans=True, showextrema=True, showmedians=True) -axes[1, 0].set_title('Custom violinplot 4', fontsize=fs) - -axes[1, 1].violinplot(data, pos, points=100, vert=False, widths=0.9, - showmeans=True, showextrema=True, showmedians=True, - bw_method='silverman') -axes[1, 1].set_title('Custom violinplot 5', fontsize=fs) - -axes[1, 2].violinplot(data, pos, points=200, vert=False, widths=1.1, - showmeans=True, showextrema=True, showmedians=True, - bw_method=0.5) -axes[1, 2].set_title('Custom violinplot 6', fontsize=fs) - -for ax in axes.flat: - ax.set_yticklabels([]) - -fig.suptitle("Violin Plotting Examples") -fig.subplots_adjust(hspace=0.4) -plt.show() diff --git a/_downloads/0f047f2acf6067dcbbce2f546fff0f71/embedding_in_gtk3_sgskip.py b/_downloads/0f047f2acf6067dcbbce2f546fff0f71/embedding_in_gtk3_sgskip.py deleted file mode 120000 index 67301ea6451..00000000000 --- a/_downloads/0f047f2acf6067dcbbce2f546fff0f71/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0f047f2acf6067dcbbce2f546fff0f71/embedding_in_gtk3_sgskip.py \ No newline at end of file diff --git a/_downloads/0f0b727500420ed9a07e9440b66c9859/animation_demo.ipynb b/_downloads/0f0b727500420ed9a07e9440b66c9859/animation_demo.ipynb deleted file mode 120000 index a361dffc54b..00000000000 --- a/_downloads/0f0b727500420ed9a07e9440b66c9859/animation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0f0b727500420ed9a07e9440b66c9859/animation_demo.ipynb \ No newline at end of file diff --git a/_downloads/0f0bc87ad503cf157cb05b7a11ef9cc3/gridspec.py b/_downloads/0f0bc87ad503cf157cb05b7a11ef9cc3/gridspec.py deleted file mode 120000 index a80b6332b27..00000000000 --- a/_downloads/0f0bc87ad503cf157cb05b7a11ef9cc3/gridspec.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0f0bc87ad503cf157cb05b7a11ef9cc3/gridspec.py \ No newline at end of file diff --git a/_downloads/0f0f499e2c03487e00ae4ecccc1c0ab6/pythonic_matplotlib.py b/_downloads/0f0f499e2c03487e00ae4ecccc1c0ab6/pythonic_matplotlib.py deleted file mode 120000 index b8d5be573dc..00000000000 --- a/_downloads/0f0f499e2c03487e00ae4ecccc1c0ab6/pythonic_matplotlib.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0f0f499e2c03487e00ae4ecccc1c0ab6/pythonic_matplotlib.py \ No newline at end of file diff --git a/_downloads/0f0fd288c7d4a6a16f4835b96343f597/basic_units.py b/_downloads/0f0fd288c7d4a6a16f4835b96343f597/basic_units.py deleted file mode 120000 index b8e7cca4ab8..00000000000 --- a/_downloads/0f0fd288c7d4a6a16f4835b96343f597/basic_units.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0f0fd288c7d4a6a16f4835b96343f597/basic_units.py \ No newline at end of file diff --git a/_downloads/0f123ca456b76cef0d82d97cb0c6d814/simple_axes_divider3.ipynb b/_downloads/0f123ca456b76cef0d82d97cb0c6d814/simple_axes_divider3.ipynb deleted file mode 120000 index 4eed579c131..00000000000 --- a/_downloads/0f123ca456b76cef0d82d97cb0c6d814/simple_axes_divider3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0f123ca456b76cef0d82d97cb0c6d814/simple_axes_divider3.ipynb \ No newline at end of file diff --git a/_downloads/0f2ba9c7f01fb681be340c75423051f5/lasso_demo.py b/_downloads/0f2ba9c7f01fb681be340c75423051f5/lasso_demo.py deleted file mode 120000 index 8457a7dd376..00000000000 --- a/_downloads/0f2ba9c7f01fb681be340c75423051f5/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0f2ba9c7f01fb681be340c75423051f5/lasso_demo.py \ No newline at end of file diff --git a/_downloads/0f3c9bd8b0391f2bfa0e9f7d05ee6d96/contourf3d.py b/_downloads/0f3c9bd8b0391f2bfa0e9f7d05ee6d96/contourf3d.py deleted file mode 120000 index d5ab43c5f7d..00000000000 --- a/_downloads/0f3c9bd8b0391f2bfa0e9f7d05ee6d96/contourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0f3c9bd8b0391f2bfa0e9f7d05ee6d96/contourf3d.py \ No newline at end of file diff --git a/_downloads/0f3d6c03f1589dd284a567624b02c791/demo_parasite_axes2.py b/_downloads/0f3d6c03f1589dd284a567624b02c791/demo_parasite_axes2.py deleted file mode 120000 index e1d44f956f3..00000000000 --- a/_downloads/0f3d6c03f1589dd284a567624b02c791/demo_parasite_axes2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0f3d6c03f1589dd284a567624b02c791/demo_parasite_axes2.py \ No newline at end of file diff --git a/_downloads/0f40d64f09be6b489d6962fbd543ce5d/image_demo.ipynb b/_downloads/0f40d64f09be6b489d6962fbd543ce5d/image_demo.ipynb deleted file mode 120000 index 85d4e2edbcd..00000000000 --- a/_downloads/0f40d64f09be6b489d6962fbd543ce5d/image_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0f40d64f09be6b489d6962fbd543ce5d/image_demo.ipynb \ No newline at end of file diff --git a/_downloads/0f4c5b7e89f73bba3272d13552faee22/transforms_tutorial.ipynb b/_downloads/0f4c5b7e89f73bba3272d13552faee22/transforms_tutorial.ipynb deleted file mode 120000 index 69e08da9724..00000000000 --- a/_downloads/0f4c5b7e89f73bba3272d13552faee22/transforms_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0f4c5b7e89f73bba3272d13552faee22/transforms_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/0f50c93f4242dd7f7ed7a31b064465e6/scatter_hist.ipynb b/_downloads/0f50c93f4242dd7f7ed7a31b064465e6/scatter_hist.ipynb deleted file mode 120000 index 7be6c7f4894..00000000000 --- a/_downloads/0f50c93f4242dd7f7ed7a31b064465e6/scatter_hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0f50c93f4242dd7f7ed7a31b064465e6/scatter_hist.ipynb \ No newline at end of file diff --git a/_downloads/0f5ba2432deca0c92fcba539190ab063/pong_sgskip.py b/_downloads/0f5ba2432deca0c92fcba539190ab063/pong_sgskip.py deleted file mode 120000 index 0aa5617b29e..00000000000 --- a/_downloads/0f5ba2432deca0c92fcba539190ab063/pong_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0f5ba2432deca0c92fcba539190ab063/pong_sgskip.py \ No newline at end of file diff --git a/_downloads/0f61c0cf4de0ba50ffb3a4d5877ee20a/triplot_demo.py b/_downloads/0f61c0cf4de0ba50ffb3a4d5877ee20a/triplot_demo.py deleted file mode 100644 index 836848205e3..00000000000 --- a/_downloads/0f61c0cf4de0ba50ffb3a4d5877ee20a/triplot_demo.py +++ /dev/null @@ -1,122 +0,0 @@ -""" -============ -Triplot Demo -============ - -Creating and plotting unstructured triangular grids. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -############################################################################### -# Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points. - -# First create the x and y coordinates of the points. -n_angles = 36 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -############################################################################### -# Plot the triangulation. - -fig1, ax1 = plt.subplots() -ax1.set_aspect('equal') -ax1.triplot(triang, 'bo-', lw=1) -ax1.set_title('triplot of Delaunay triangulation') - - -############################################################################### -# You can specify your own triangulation rather than perform a Delaunay -# triangulation of the points, where each triangle is given by the indices of -# the three points that make up the triangle, ordered in either a clockwise or -# anticlockwise manner. - -xy = np.asarray([ - [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890], - [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898], - [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919], - [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949], - [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959], - [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965], - [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980], - [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996], - [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021], - [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005], - [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987], - [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968], - [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926], - [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905], - [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886], - [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879], - [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872], - [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933], - [-0.077, 0.990], [-0.059, 0.993]]) -x = np.degrees(xy[:, 0]) -y = np.degrees(xy[:, 1]) - -triangles = np.asarray([ - [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64], - [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63], - [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68], - [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7], - [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9], - [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12], - [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71], - [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71], - [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19], - [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24], - [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28], - [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45], - [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40], - [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40], - [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38], - [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]]) - -############################################################################### -# Rather than create a Triangulation object, can simply pass x, y and triangles -# arrays to triplot directly. It would be better to use a Triangulation object -# if the same triangulation was to be used more than once to save duplicated -# calculations. - -fig2, ax2 = plt.subplots() -ax2.set_aspect('equal') -ax2.triplot(x, y, triangles, 'go-', lw=1.0) -ax2.set_title('triplot of user-specified triangulation') -ax2.set_xlabel('Longitude (degrees)') -ax2.set_ylabel('Latitude (degrees)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.tri -matplotlib.tri.Triangulation diff --git a/_downloads/0f6515ec907616925c0b1cb0bd925d01/axes_box_aspect.ipynb b/_downloads/0f6515ec907616925c0b1cb0bd925d01/axes_box_aspect.ipynb deleted file mode 120000 index dcc3381f875..00000000000 --- a/_downloads/0f6515ec907616925c0b1cb0bd925d01/axes_box_aspect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0f6515ec907616925c0b1cb0bd925d01/axes_box_aspect.ipynb \ No newline at end of file diff --git a/_downloads/0f6b14d8d2c7827e3dc79bd771f08901/random_walk.ipynb b/_downloads/0f6b14d8d2c7827e3dc79bd771f08901/random_walk.ipynb deleted file mode 120000 index b64aced7882..00000000000 --- a/_downloads/0f6b14d8d2c7827e3dc79bd771f08901/random_walk.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0f6b14d8d2c7827e3dc79bd771f08901/random_walk.ipynb \ No newline at end of file diff --git a/_downloads/0f724583c62896dfe11a7d36b7e64ea4/interpolation_methods.ipynb b/_downloads/0f724583c62896dfe11a7d36b7e64ea4/interpolation_methods.ipynb deleted file mode 120000 index ee1448be486..00000000000 --- a/_downloads/0f724583c62896dfe11a7d36b7e64ea4/interpolation_methods.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0f724583c62896dfe11a7d36b7e64ea4/interpolation_methods.ipynb \ No newline at end of file diff --git a/_downloads/0f7b3f1bd359fc97979471c093924ae5/scatter.ipynb b/_downloads/0f7b3f1bd359fc97979471c093924ae5/scatter.ipynb deleted file mode 120000 index ef590e05cb7..00000000000 --- a/_downloads/0f7b3f1bd359fc97979471c093924ae5/scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0f7b3f1bd359fc97979471c093924ae5/scatter.ipynb \ No newline at end of file diff --git a/_downloads/0f7fcbfb645d495544f79fd803c14c7e/date_concise_formatter.ipynb b/_downloads/0f7fcbfb645d495544f79fd803c14c7e/date_concise_formatter.ipynb deleted file mode 120000 index f3948b342b0..00000000000 --- a/_downloads/0f7fcbfb645d495544f79fd803c14c7e/date_concise_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0f7fcbfb645d495544f79fd803c14c7e/date_concise_formatter.ipynb \ No newline at end of file diff --git a/_downloads/0f843b79e25c3edf69c5e86968a484c8/log_bar.py b/_downloads/0f843b79e25c3edf69c5e86968a484c8/log_bar.py deleted file mode 120000 index b8a6cbdea9a..00000000000 --- a/_downloads/0f843b79e25c3edf69c5e86968a484c8/log_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0f843b79e25c3edf69c5e86968a484c8/log_bar.py \ No newline at end of file diff --git a/_downloads/0f954b32af8e509c4b3bc755ebb64149/simple_axisline4.py b/_downloads/0f954b32af8e509c4b3bc755ebb64149/simple_axisline4.py deleted file mode 100644 index 91b76cf3e95..00000000000 --- a/_downloads/0f954b32af8e509c4b3bc755ebb64149/simple_axisline4.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -================ -Simple Axisline4 -================ - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import host_subplot -import numpy as np - -ax = host_subplot(111) -xx = np.arange(0, 2*np.pi, 0.01) -ax.plot(xx, np.sin(xx)) - -ax2 = ax.twin() # ax2 is responsible for "top" axis and "right" axis -ax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi]) -ax2.set_xticklabels(["$0$", r"$\frac{1}{2}\pi$", - r"$\pi$", r"$\frac{3}{2}\pi$", r"$2\pi$"]) - -ax2.axis["right"].major_ticklabels.set_visible(False) -ax2.axis["top"].major_ticklabels.set_visible(True) - -plt.show() diff --git a/_downloads/0f9cffeffa72529bb8d4dcbcd86c03bf/psd_demo.ipynb b/_downloads/0f9cffeffa72529bb8d4dcbcd86c03bf/psd_demo.ipynb deleted file mode 120000 index dfcf79b5df6..00000000000 --- a/_downloads/0f9cffeffa72529bb8d4dcbcd86c03bf/psd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0f9cffeffa72529bb8d4dcbcd86c03bf/psd_demo.ipynb \ No newline at end of file diff --git a/_downloads/0fa795f4093c612d16857f4426e96dd0/date_index_formatter2.ipynb b/_downloads/0fa795f4093c612d16857f4426e96dd0/date_index_formatter2.ipynb deleted file mode 120000 index 76890a3c911..00000000000 --- a/_downloads/0fa795f4093c612d16857f4426e96dd0/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0fa795f4093c612d16857f4426e96dd0/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/0fae607bace0d8f61bdbf7a8c5587259/tick-locators.ipynb b/_downloads/0fae607bace0d8f61bdbf7a8c5587259/tick-locators.ipynb deleted file mode 120000 index 8cd0a010f07..00000000000 --- a/_downloads/0fae607bace0d8f61bdbf7a8c5587259/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0fae607bace0d8f61bdbf7a8c5587259/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/0fc4df35b2afe32f83135a9395c9a7ec/embedding_in_tk_sgskip.py b/_downloads/0fc4df35b2afe32f83135a9395c9a7ec/embedding_in_tk_sgskip.py deleted file mode 120000 index 4426a288a91..00000000000 --- a/_downloads/0fc4df35b2afe32f83135a9395c9a7ec/embedding_in_tk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/0fc4df35b2afe32f83135a9395c9a7ec/embedding_in_tk_sgskip.py \ No newline at end of file diff --git a/_downloads/0fc56fe0470464598f2d63fc49420d80/errorbars_and_boxes.ipynb b/_downloads/0fc56fe0470464598f2d63fc49420d80/errorbars_and_boxes.ipynb deleted file mode 120000 index bb8e41c120a..00000000000 --- a/_downloads/0fc56fe0470464598f2d63fc49420d80/errorbars_and_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0fc56fe0470464598f2d63fc49420d80/errorbars_and_boxes.ipynb \ No newline at end of file diff --git a/_downloads/0fc5f79b11044fb4fbe1304b7639f777/svg_histogram_sgskip.ipynb b/_downloads/0fc5f79b11044fb4fbe1304b7639f777/svg_histogram_sgskip.ipynb deleted file mode 120000 index a31b18f41eb..00000000000 --- a/_downloads/0fc5f79b11044fb4fbe1304b7639f777/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0fc5f79b11044fb4fbe1304b7639f777/svg_histogram_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/0fc858391b9e3b7a32b92663c65fa1d2/arrow_simple_demo.ipynb b/_downloads/0fc858391b9e3b7a32b92663c65fa1d2/arrow_simple_demo.ipynb deleted file mode 100644 index fe0cea5fcf9..00000000000 --- a/_downloads/0fc858391b9e3b7a32b92663c65fa1d2/arrow_simple_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Arrow Simple Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nax = plt.axes()\nax.arrow(0, 0, 0.5, 0.5, head_width=0.05, head_length=0.1, fc='k', ec='k')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/0fc91ec9b3f179d3c42b7d2bde99bca8/boxplot_demo.py b/_downloads/0fc91ec9b3f179d3c42b7d2bde99bca8/boxplot_demo.py deleted file mode 120000 index b0bcea5dc3d..00000000000 --- a/_downloads/0fc91ec9b3f179d3c42b7d2bde99bca8/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0fc91ec9b3f179d3c42b7d2bde99bca8/boxplot_demo.py \ No newline at end of file diff --git a/_downloads/0fd0bdceedd10eeee797c7b3cb0a6534/hinton_demo.ipynb b/_downloads/0fd0bdceedd10eeee797c7b3cb0a6534/hinton_demo.ipynb deleted file mode 120000 index d6115c8ae15..00000000000 --- a/_downloads/0fd0bdceedd10eeee797c7b3cb0a6534/hinton_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/0fd0bdceedd10eeee797c7b3cb0a6534/hinton_demo.ipynb \ No newline at end of file diff --git a/_downloads/0fdf82cd7b7965efd007415451b4ec9e/mandelbrot.py b/_downloads/0fdf82cd7b7965efd007415451b4ec9e/mandelbrot.py deleted file mode 100644 index 873e23ef3eb..00000000000 --- a/_downloads/0fdf82cd7b7965efd007415451b4ec9e/mandelbrot.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -=================================== -Shaded & power normalized rendering -=================================== - -The Mandelbrot set rendering can be improved by using a normalized recount -associated with a power normalized colormap (gamma=0.3). Rendering can be -further enhanced thanks to shading. - -The `maxiter` gives the precision of the computation. `maxiter=200` should -take a few seconds on most modern laptops. -""" -import numpy as np - - -def mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon=2.0): - X = np.linspace(xmin, xmax, xn).astype(np.float32) - Y = np.linspace(ymin, ymax, yn).astype(np.float32) - C = X + Y[:, None] * 1j - N = np.zeros_like(C, dtype=int) - Z = np.zeros_like(C) - for n in range(maxiter): - I = abs(Z) < horizon - N[I] = n - Z[I] = Z[I]**2 + C[I] - N[N == maxiter-1] = 0 - return Z, N - - -if __name__ == '__main__': - import time - import matplotlib - from matplotlib import colors - import matplotlib.pyplot as plt - - xmin, xmax, xn = -2.25, +0.75, 3000 // 2 - ymin, ymax, yn = -1.25, +1.25, 2500 // 2 - maxiter = 200 - horizon = 2.0 ** 40 - log_horizon = np.log2(np.log(horizon)) - Z, N = mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon) - - # Normalized recount as explained in: - # https://linas.org/art-gallery/escape/smooth.html - # https://www.ibm.com/developerworks/community/blogs/jfp/entry/My_Christmas_Gift - - # This line will generate warnings for null values but it is faster to - # process them afterwards using the nan_to_num - with np.errstate(invalid='ignore'): - M = np.nan_to_num(N + 1 - np.log2(np.log(abs(Z))) + log_horizon) - - dpi = 72 - width = 10 - height = 10*yn/xn - fig = plt.figure(figsize=(width, height), dpi=dpi) - ax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1) - - # Shaded rendering - light = colors.LightSource(azdeg=315, altdeg=10) - M = light.shade(M, cmap=plt.cm.hot, vert_exag=1.5, - norm=colors.PowerNorm(0.3), blend_mode='hsv') - ax.imshow(M, extent=[xmin, xmax, ymin, ymax], interpolation="bicubic") - ax.set_xticks([]) - ax.set_yticks([]) - - # Some advertisement for matplotlib - year = time.strftime("%Y") - text = ("The Mandelbrot fractal set\n" - "Rendered with matplotlib %s, %s - http://matplotlib.org" - % (matplotlib.__version__, year)) - ax.text(xmin+.025, ymin+.025, text, color="white", fontsize=12, alpha=0.5) - - plt.show() diff --git a/_downloads/0febd77f8fbbb9c3075bb17742286b9d/filled_step.py b/_downloads/0febd77f8fbbb9c3075bb17742286b9d/filled_step.py deleted file mode 120000 index 32e70512c93..00000000000 --- a/_downloads/0febd77f8fbbb9c3075bb17742286b9d/filled_step.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0febd77f8fbbb9c3075bb17742286b9d/filled_step.py \ No newline at end of file diff --git a/_downloads/0feedd8c708bcafb0da71f193fc43961/svg_histogram_sgskip.py b/_downloads/0feedd8c708bcafb0da71f193fc43961/svg_histogram_sgskip.py deleted file mode 120000 index 0ab8f31d20f..00000000000 --- a/_downloads/0feedd8c708bcafb0da71f193fc43961/svg_histogram_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0feedd8c708bcafb0da71f193fc43961/svg_histogram_sgskip.py \ No newline at end of file diff --git a/_downloads/0fef16360ee8e06e6772264a24e3e129/usetex_fonteffects.py b/_downloads/0fef16360ee8e06e6772264a24e3e129/usetex_fonteffects.py deleted file mode 120000 index 42eadc21036..00000000000 --- a/_downloads/0fef16360ee8e06e6772264a24e3e129/usetex_fonteffects.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0fef16360ee8e06e6772264a24e3e129/usetex_fonteffects.py \ No newline at end of file diff --git a/_downloads/0ff03a6ccf9d3f4c23c2bfe92451f818/whats_new_1_subplot3d.py b/_downloads/0ff03a6ccf9d3f4c23c2bfe92451f818/whats_new_1_subplot3d.py deleted file mode 120000 index 8860fdc4783..00000000000 --- a/_downloads/0ff03a6ccf9d3f4c23c2bfe92451f818/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/0ff03a6ccf9d3f4c23c2bfe92451f818/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/_downloads/0ffd9b456945166a168ddc97efc46337/quad_bezier.py b/_downloads/0ffd9b456945166a168ddc97efc46337/quad_bezier.py deleted file mode 120000 index afeb2d9bfc0..00000000000 --- a/_downloads/0ffd9b456945166a168ddc97efc46337/quad_bezier.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/0ffd9b456945166a168ddc97efc46337/quad_bezier.py \ No newline at end of file diff --git a/_downloads/0ffeb94aa4c80c1016f9f23e8b898337/fivethirtyeight.ipynb b/_downloads/0ffeb94aa4c80c1016f9f23e8b898337/fivethirtyeight.ipynb deleted file mode 120000 index 41a2642f3d4..00000000000 --- a/_downloads/0ffeb94aa4c80c1016f9f23e8b898337/fivethirtyeight.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/0ffeb94aa4c80c1016f9f23e8b898337/fivethirtyeight.ipynb \ No newline at end of file diff --git a/_downloads/10009f8e60e3f18cd331d609bb0bef2c/3D.py b/_downloads/10009f8e60e3f18cd331d609bb0bef2c/3D.py deleted file mode 120000 index 548ccd63ba8..00000000000 --- a/_downloads/10009f8e60e3f18cd331d609bb0bef2c/3D.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/10009f8e60e3f18cd331d609bb0bef2c/3D.py \ No newline at end of file diff --git a/_downloads/10029634f1aeb3cc5e7479bf4253de0d/contourf_hatching.ipynb b/_downloads/10029634f1aeb3cc5e7479bf4253de0d/contourf_hatching.ipynb deleted file mode 100644 index 845348d567e..00000000000 --- a/_downloads/10029634f1aeb3cc5e7479bf4253de0d/contourf_hatching.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contourf Hatching\n\n\nDemo filled contour plots with hatched patterns.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# invent some numbers, turning the x and y arrays into simple\n# 2d arrays, which make combining them together easier.\nx = np.linspace(-3, 5, 150).reshape(1, -1)\ny = np.linspace(-3, 5, 120).reshape(-1, 1)\nz = np.cos(x) + np.sin(y)\n\n# we no longer need x and y to be 2 dimensional, so flatten them.\nx, y = x.flatten(), y.flatten()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot 1: the simplest hatched plot with a colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\ncs = ax1.contourf(x, y, z, hatches=['-', '/', '\\\\', '//'],\n cmap='gray', extend='both', alpha=0.5)\nfig1.colorbar(cs)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot 2: a plot of hatches without color with a legend\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nn_levels = 6\nax2.contour(x, y, z, n_levels, colors='black', linestyles='-')\ncs = ax2.contourf(x, y, z, n_levels, colors='none',\n hatches=['.', '/', '\\\\', None, '\\\\\\\\', '*'],\n extend='lower')\n\n# create a legend for the contour set\nartists, labels = cs.legend_elements()\nax2.legend(artists, labels, handleheight=2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.contour.ContourSet\nmatplotlib.contour.ContourSet.legend_elements" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/10105cfa1f6b8014dc05bcbb78bf17c9/demo_axes_grid2.ipynb b/_downloads/10105cfa1f6b8014dc05bcbb78bf17c9/demo_axes_grid2.ipynb deleted file mode 100644 index 182ae858209..00000000000 --- a/_downloads/10105cfa1f6b8014dc05bcbb78bf17c9/demo_axes_grid2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Grid2\n\n\nGrid of images with shared xaxis and yaxis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\nimport matplotlib.colors\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef add_inner_title(ax, title, loc, **kwargs):\n from matplotlib.offsetbox import AnchoredText\n from matplotlib.patheffects import withStroke\n prop = dict(path_effects=[withStroke(foreground='w', linewidth=3)],\n size=plt.rcParams['legend.fontsize'])\n at = AnchoredText(title, loc=loc, prop=prop,\n pad=0., borderpad=0.5,\n frameon=False, **kwargs)\n ax.add_artist(at)\n return at\n\n\nfig = plt.figure(figsize=(6, 6))\n\n# Prepare images\nZ, extent = get_demo_image()\nZS = [Z[i::3, :] for i in range(3)]\nextent = extent[0], extent[1]/3., extent[2], extent[3]\n\n# *** Demo 1: colorbar at each axes ***\ngrid = ImageGrid(fig, 211, # similar to subplot(211)\n nrows_ncols=(1, 3),\n direction=\"row\",\n axes_pad=0.05,\n add_all=True,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"top\",\n cbar_mode=\"each\",\n cbar_size=\"7%\",\n cbar_pad=\"1%\",\n )\n\nfor ax, z in zip(grid, ZS):\n im = ax.imshow(\n z, origin=\"lower\", extent=extent, interpolation=\"nearest\")\n ax.cax.colorbar(im)\n\nfor ax, im_title in zip(grid, [\"Image 1\", \"Image 2\", \"Image 3\"]):\n t = add_inner_title(ax, im_title, loc='lower left')\n t.patch.set_alpha(0.5)\n\nfor ax, z in zip(grid, ZS):\n ax.cax.toggle_label(True)\n #axis = ax.cax.axis[ax.cax.orientation]\n #axis.label.set_text(\"counts s$^{-1}$\")\n #axis.label.set_size(10)\n #axis.major_ticklabels.set_size(6)\n\n# Changing the colorbar ticks\ngrid[1].cax.set_xticks([-1, 0, 1])\ngrid[2].cax.set_xticks([-1, 0, 1])\n\ngrid[0].set_xticks([-2, 0])\ngrid[0].set_yticks([-2, 0, 2])\n\n# *** Demo 2: shared colorbar ***\ngrid2 = ImageGrid(fig, 212,\n nrows_ncols=(1, 3),\n direction=\"row\",\n axes_pad=0.05,\n add_all=True,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"right\",\n cbar_mode=\"single\",\n cbar_size=\"10%\",\n cbar_pad=0.05,\n )\n\ngrid2[0].set_xlabel(\"X\")\ngrid2[0].set_ylabel(\"Y\")\n\nvmax, vmin = np.max(ZS), np.min(ZS)\nnorm = matplotlib.colors.Normalize(vmax=vmax, vmin=vmin)\n\nfor ax, z in zip(grid2, ZS):\n im = ax.imshow(z, norm=norm,\n origin=\"lower\", extent=extent,\n interpolation=\"nearest\")\n\n# With cbar_mode=\"single\", cax attribute of all axes are identical.\nax.cax.colorbar(im)\nax.cax.toggle_label(True)\n\nfor ax, im_title in zip(grid2, [\"(a)\", \"(b)\", \"(c)\"]):\n t = add_inner_title(ax, im_title, loc='upper left')\n t.patch.set_ec(\"none\")\n t.patch.set_alpha(0.5)\n\ngrid2[0].set_xticks([-2, 0])\ngrid2[0].set_yticks([-2, 0, 2])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/10139578672ab6e375bdd67b9504f4d6/demo_ticklabel_alignment.py b/_downloads/10139578672ab6e375bdd67b9504f4d6/demo_ticklabel_alignment.py deleted file mode 120000 index e32a0cf12b9..00000000000 --- a/_downloads/10139578672ab6e375bdd67b9504f4d6/demo_ticklabel_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/10139578672ab6e375bdd67b9504f4d6/demo_ticklabel_alignment.py \ No newline at end of file diff --git a/_downloads/102458e2d4bbdaf5980e6a9d92ff11fb/keypress_demo.py b/_downloads/102458e2d4bbdaf5980e6a9d92ff11fb/keypress_demo.py deleted file mode 100644 index 149cb1ba310..00000000000 --- a/_downloads/102458e2d4bbdaf5980e6a9d92ff11fb/keypress_demo.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============= -Keypress Demo -============= - -Show how to connect to keypress events -""" -import sys -import numpy as np -import matplotlib.pyplot as plt - - -def press(event): - print('press', event.key) - sys.stdout.flush() - if event.key == 'x': - visible = xl.get_visible() - xl.set_visible(not visible) - fig.canvas.draw() - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() - -fig.canvas.mpl_connect('key_press_event', press) - -ax.plot(np.random.rand(12), np.random.rand(12), 'go') -xl = ax.set_xlabel('easy come, easy go') -ax.set_title('Press a key') -plt.show() diff --git a/_downloads/102622d1f9e66a15c61ce1890ed41513/lorenz_attractor.py b/_downloads/102622d1f9e66a15c61ce1890ed41513/lorenz_attractor.py deleted file mode 120000 index 73ef0ec284a..00000000000 --- a/_downloads/102622d1f9e66a15c61ce1890ed41513/lorenz_attractor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/102622d1f9e66a15c61ce1890ed41513/lorenz_attractor.py \ No newline at end of file diff --git a/_downloads/102690b93198e37c4e474dd811304824/skewt.py b/_downloads/102690b93198e37c4e474dd811304824/skewt.py deleted file mode 100644 index 1f601876df3..00000000000 --- a/_downloads/102690b93198e37c4e474dd811304824/skewt.py +++ /dev/null @@ -1,279 +0,0 @@ -""" -=========================================================== -SkewT-logP diagram: using transforms and custom projections -=========================================================== - -This serves as an intensive exercise of Matplotlib's transforms and custom -projection API. This example produces a so-called SkewT-logP diagram, which is -a common plot in meteorology for displaying vertical profiles of temperature. -As far as Matplotlib is concerned, the complexity comes from having X and Y -axes that are not orthogonal. This is handled by including a skew component to -the basic Axes transforms. Additional complexity comes in handling the fact -that the upper and lower X-axes have different data ranges, which necessitates -a bunch of custom classes for ticks, spines, and axis to handle this. -""" - -from contextlib import ExitStack - -from matplotlib.axes import Axes -import matplotlib.transforms as transforms -import matplotlib.axis as maxis -import matplotlib.spines as mspines -from matplotlib.projections import register_projection - - -# The sole purpose of this class is to look at the upper, lower, or total -# interval as appropriate and see what parts of the tick to draw, if any. -class SkewXTick(maxis.XTick): - def draw(self, renderer): - # When adding the callbacks with `stack.callback`, we fetch the current - # visibility state of the artist with `get_visible`; the ExitStack will - # restore these states (`set_visible`) at the end of the block (after - # the draw). - with ExitStack() as stack: - for artist in [self.gridline, self.tick1line, self.tick2line, - self.label1, self.label2]: - stack.callback(artist.set_visible, artist.get_visible()) - needs_lower = transforms.interval_contains( - self.axes.lower_xlim, self.get_loc()) - needs_upper = transforms.interval_contains( - self.axes.upper_xlim, self.get_loc()) - self.tick1line.set_visible( - self.tick1line.get_visible() and needs_lower) - self.label1.set_visible( - self.label1.get_visible() and needs_lower) - self.tick2line.set_visible( - self.tick2line.get_visible() and needs_upper) - self.label2.set_visible( - self.label2.get_visible() and needs_upper) - super(SkewXTick, self).draw(renderer) - - def get_view_interval(self): - return self.axes.xaxis.get_view_interval() - - -# This class exists to provide two separate sets of intervals to the tick, -# as well as create instances of the custom tick -class SkewXAxis(maxis.XAxis): - def _get_tick(self, major): - return SkewXTick(self.axes, None, '', major=major) - - def get_view_interval(self): - return self.axes.upper_xlim[0], self.axes.lower_xlim[1] - - -# This class exists to calculate the separate data range of the -# upper X-axis and draw the spine there. It also provides this range -# to the X-axis artist for ticking and gridlines -class SkewSpine(mspines.Spine): - def _adjust_location(self): - pts = self._path.vertices - if self.spine_type == 'top': - pts[:, 0] = self.axes.upper_xlim - else: - pts[:, 0] = self.axes.lower_xlim - - -# This class handles registration of the skew-xaxes as a projection as well -# as setting up the appropriate transformations. It also overrides standard -# spines and axes instances as appropriate. -class SkewXAxes(Axes): - # The projection must specify a name. This will be used be the - # user to select the projection, i.e. ``subplot(111, - # projection='skewx')``. - name = 'skewx' - - def _init_axis(self): - # Taken from Axes and modified to use our modified X-axis - self.xaxis = SkewXAxis(self) - self.spines['top'].register_axis(self.xaxis) - self.spines['bottom'].register_axis(self.xaxis) - self.yaxis = maxis.YAxis(self) - self.spines['left'].register_axis(self.yaxis) - self.spines['right'].register_axis(self.yaxis) - - def _gen_axes_spines(self): - spines = {'top': SkewSpine.linear_spine(self, 'top'), - 'bottom': mspines.Spine.linear_spine(self, 'bottom'), - 'left': mspines.Spine.linear_spine(self, 'left'), - 'right': mspines.Spine.linear_spine(self, 'right')} - return spines - - def _set_lim_and_transforms(self): - """ - This is called once when the plot is created to set up all the - transforms for the data, text and grids. - """ - rot = 30 - - # Get the standard transform setup from the Axes base class - super()._set_lim_and_transforms() - - # Need to put the skew in the middle, after the scale and limits, - # but before the transAxes. This way, the skew is done in Axes - # coordinates thus performing the transform around the proper origin - # We keep the pre-transAxes transform around for other users, like the - # spines for finding bounds - self.transDataToAxes = ( - self.transScale - + self.transLimits - + transforms.Affine2D().skew_deg(rot, 0) - ) - # Create the full transform from Data to Pixels - self.transData = self.transDataToAxes + self.transAxes - - # Blended transforms like this need to have the skewing applied using - # both axes, in axes coords like before. - self._xaxis_transform = ( - transforms.blended_transform_factory( - self.transScale + self.transLimits, - transforms.IdentityTransform()) - + transforms.Affine2D().skew_deg(rot, 0) - + self.transAxes - ) - - @property - def lower_xlim(self): - return self.axes.viewLim.intervalx - - @property - def upper_xlim(self): - pts = [[0., 1.], [1., 1.]] - return self.transDataToAxes.inverted().transform(pts)[:, 0] - - -# Now register the projection with matplotlib so the user can select it. -register_projection(SkewXAxes) - -if __name__ == '__main__': - # Now make a simple example using the custom projection. - from io import StringIO - from matplotlib.ticker import (MultipleLocator, NullFormatter, - ScalarFormatter) - import matplotlib.pyplot as plt - import numpy as np - - # Some example data. - data_txt = ''' - 978.0 345 7.8 0.8 - 971.0 404 7.2 0.2 - 946.7 610 5.2 -1.8 - 944.0 634 5.0 -2.0 - 925.0 798 3.4 -2.6 - 911.8 914 2.4 -2.7 - 906.0 966 2.0 -2.7 - 877.9 1219 0.4 -3.2 - 850.0 1478 -1.3 -3.7 - 841.0 1563 -1.9 -3.8 - 823.0 1736 1.4 -0.7 - 813.6 1829 4.5 1.2 - 809.0 1875 6.0 2.2 - 798.0 1988 7.4 -0.6 - 791.0 2061 7.6 -1.4 - 783.9 2134 7.0 -1.7 - 755.1 2438 4.8 -3.1 - 727.3 2743 2.5 -4.4 - 700.5 3048 0.2 -5.8 - 700.0 3054 0.2 -5.8 - 698.0 3077 0.0 -6.0 - 687.0 3204 -0.1 -7.1 - 648.9 3658 -3.2 -10.9 - 631.0 3881 -4.7 -12.7 - 600.7 4267 -6.4 -16.7 - 592.0 4381 -6.9 -17.9 - 577.6 4572 -8.1 -19.6 - 555.3 4877 -10.0 -22.3 - 536.0 5151 -11.7 -24.7 - 533.8 5182 -11.9 -25.0 - 500.0 5680 -15.9 -29.9 - 472.3 6096 -19.7 -33.4 - 453.0 6401 -22.4 -36.0 - 400.0 7310 -30.7 -43.7 - 399.7 7315 -30.8 -43.8 - 387.0 7543 -33.1 -46.1 - 382.7 7620 -33.8 -46.8 - 342.0 8398 -40.5 -53.5 - 320.4 8839 -43.7 -56.7 - 318.0 8890 -44.1 -57.1 - 310.0 9060 -44.7 -58.7 - 306.1 9144 -43.9 -57.9 - 305.0 9169 -43.7 -57.7 - 300.0 9280 -43.5 -57.5 - 292.0 9462 -43.7 -58.7 - 276.0 9838 -47.1 -62.1 - 264.0 10132 -47.5 -62.5 - 251.0 10464 -49.7 -64.7 - 250.0 10490 -49.7 -64.7 - 247.0 10569 -48.7 -63.7 - 244.0 10649 -48.9 -63.9 - 243.3 10668 -48.9 -63.9 - 220.0 11327 -50.3 -65.3 - 212.0 11569 -50.5 -65.5 - 210.0 11631 -49.7 -64.7 - 200.0 11950 -49.9 -64.9 - 194.0 12149 -49.9 -64.9 - 183.0 12529 -51.3 -66.3 - 164.0 13233 -55.3 -68.3 - 152.0 13716 -56.5 -69.5 - 150.0 13800 -57.1 -70.1 - 136.0 14414 -60.5 -72.5 - 132.0 14600 -60.1 -72.1 - 131.4 14630 -60.2 -72.2 - 128.0 14792 -60.9 -72.9 - 125.0 14939 -60.1 -72.1 - 119.0 15240 -62.2 -73.8 - 112.0 15616 -64.9 -75.9 - 108.0 15838 -64.1 -75.1 - 107.8 15850 -64.1 -75.1 - 105.0 16010 -64.7 -75.7 - 103.0 16128 -62.9 -73.9 - 100.0 16310 -62.5 -73.5 - ''' - - # Parse the data - sound_data = StringIO(data_txt) - p, h, T, Td = np.loadtxt(sound_data, unpack=True) - - # Create a new figure. The dimensions here give a good aspect ratio - fig = plt.figure(figsize=(6.5875, 6.2125)) - ax = fig.add_subplot(111, projection='skewx') - - plt.grid(True) - - # Plot the data using normal plotting functions, in this case using - # log scaling in Y, as dictated by the typical meteorological plot - ax.semilogy(T, p, color='C3') - ax.semilogy(Td, p, color='C2') - - # An example of a slanted line at constant X - l = ax.axvline(0, color='C0') - - # Disables the log-formatting that comes with semilogy - ax.yaxis.set_major_formatter(ScalarFormatter()) - ax.yaxis.set_minor_formatter(NullFormatter()) - ax.set_yticks(np.linspace(100, 1000, 10)) - ax.set_ylim(1050, 100) - - ax.xaxis.set_major_locator(MultipleLocator(10)) - ax.set_xlim(-50, 50) - - plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.transforms -matplotlib.spines -matplotlib.spines.Spine -matplotlib.spines.Spine.register_axis -matplotlib.projections -matplotlib.projections.register_projection diff --git a/_downloads/1029db6e5da99b2178f2d681f1ddebc8/scatter_symbol.ipynb b/_downloads/1029db6e5da99b2178f2d681f1ddebc8/scatter_symbol.ipynb deleted file mode 100644 index 1d3f28bd12c..00000000000 --- a/_downloads/1029db6e5da99b2178f2d681f1ddebc8/scatter_symbol.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Symbol\n\n\nScatter plot with clover symbols.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx = np.arange(0.0, 50.0, 2.0)\ny = x ** 1.3 + np.random.rand(*x.shape) * 30.0\ns = np.random.rand(*x.shape) * 800 + 500\n\nplt.scatter(x, y, s, c=\"g\", alpha=0.5, marker=r'$\\clubsuit$',\n label=\"Luck\")\nplt.xlabel(\"Leprechauns\")\nplt.ylabel(\"Gold\")\nplt.legend(loc='upper left')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/102b5b4bab98661fc6e98754b15cb9d7/errorbar_limits_simple.ipynb b/_downloads/102b5b4bab98661fc6e98754b15cb9d7/errorbar_limits_simple.ipynb deleted file mode 120000 index 3b50c3d14ae..00000000000 --- a/_downloads/102b5b4bab98661fc6e98754b15cb9d7/errorbar_limits_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/102b5b4bab98661fc6e98754b15cb9d7/errorbar_limits_simple.ipynb \ No newline at end of file diff --git a/_downloads/102d00e450513df14152f3639b6e1487/colormap_normalizations_custom.ipynb b/_downloads/102d00e450513df14152f3639b6e1487/colormap_normalizations_custom.ipynb deleted file mode 120000 index 60a43fd6f0a..00000000000 --- a/_downloads/102d00e450513df14152f3639b6e1487/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/102d00e450513df14152f3639b6e1487/colormap_normalizations_custom.ipynb \ No newline at end of file diff --git a/_downloads/102d5b5d92f01f467afbf93706d6f0f0/custom_projection.py b/_downloads/102d5b5d92f01f467afbf93706d6f0f0/custom_projection.py deleted file mode 100644 index 50396e7692c..00000000000 --- a/_downloads/102d5b5d92f01f467afbf93706d6f0f0/custom_projection.py +++ /dev/null @@ -1,458 +0,0 @@ -""" -================= -Custom projection -================= - -Showcase Hammer projection by alleviating many features of Matplotlib. -""" - -import matplotlib -from matplotlib.axes import Axes -from matplotlib.patches import Circle -from matplotlib.path import Path -from matplotlib.ticker import NullLocator, Formatter, FixedLocator -from matplotlib.transforms import Affine2D, BboxTransformTo, Transform -from matplotlib.projections import register_projection -import matplotlib.spines as mspines -import matplotlib.axis as maxis -import numpy as np - -rcParams = matplotlib.rcParams - -# This example projection class is rather long, but it is designed to -# illustrate many features, not all of which will be used every time. -# It is also common to factor out a lot of these methods into common -# code used by a number of projections with similar characteristics -# (see geo.py). - - -class GeoAxes(Axes): - """ - An abstract base class for geographic projections - """ - class ThetaFormatter(Formatter): - """ - Used to format the theta tick labels. Converts the native - unit of radians into degrees and adds a degree symbol. - """ - def __init__(self, round_to=1.0): - self._round_to = round_to - - def __call__(self, x, pos=None): - degrees = np.round(np.rad2deg(x) / self._round_to) * self._round_to - if rcParams['text.usetex'] and not rcParams['text.latex.unicode']: - return r"$%0.0f^\circ$" % degrees - else: - return "%0.0f\N{DEGREE SIGN}" % degrees - - RESOLUTION = 75 - - def _init_axis(self): - self.xaxis = maxis.XAxis(self) - self.yaxis = maxis.YAxis(self) - # Do not register xaxis or yaxis with spines -- as done in - # Axes._init_axis() -- until GeoAxes.xaxis.cla() works. - # self.spines['geo'].register_axis(self.yaxis) - self._update_transScale() - - def cla(self): - Axes.cla(self) - - self.set_longitude_grid(30) - self.set_latitude_grid(15) - self.set_longitude_grid_ends(75) - self.xaxis.set_minor_locator(NullLocator()) - self.yaxis.set_minor_locator(NullLocator()) - self.xaxis.set_ticks_position('none') - self.yaxis.set_ticks_position('none') - self.yaxis.set_tick_params(label1On=True) - # Why do we need to turn on yaxis tick labels, but - # xaxis tick labels are already on? - - self.grid(rcParams['axes.grid']) - - Axes.set_xlim(self, -np.pi, np.pi) - Axes.set_ylim(self, -np.pi / 2.0, np.pi / 2.0) - - def _set_lim_and_transforms(self): - # A (possibly non-linear) projection on the (already scaled) data - - # There are three important coordinate spaces going on here: - # - # 1. Data space: The space of the data itself - # - # 2. Axes space: The unit rectangle (0, 0) to (1, 1) - # covering the entire plot area. - # - # 3. Display space: The coordinates of the resulting image, - # often in pixels or dpi/inch. - - # This function makes heavy use of the Transform classes in - # ``lib/matplotlib/transforms.py.`` For more information, see - # the inline documentation there. - - # The goal of the first two transformations is to get from the - # data space (in this case longitude and latitude) to axes - # space. It is separated into a non-affine and affine part so - # that the non-affine part does not have to be recomputed when - # a simple affine change to the figure has been made (such as - # resizing the window or changing the dpi). - - # 1) The core transformation from data space into - # rectilinear space defined in the HammerTransform class. - self.transProjection = self._get_core_transform(self.RESOLUTION) - - # 2) The above has an output range that is not in the unit - # rectangle, so scale and translate it so it fits correctly - # within the axes. The peculiar calculations of xscale and - # yscale are specific to a Aitoff-Hammer projection, so don't - # worry about them too much. - self.transAffine = self._get_affine_transform() - - # 3) This is the transformation from axes space to display - # space. - self.transAxes = BboxTransformTo(self.bbox) - - # Now put these 3 transforms together -- from data all the way - # to display coordinates. Using the '+' operator, these - # transforms will be applied "in order". The transforms are - # automatically simplified, if possible, by the underlying - # transformation framework. - self.transData = \ - self.transProjection + \ - self.transAffine + \ - self.transAxes - - # The main data transformation is set up. Now deal with - # gridlines and tick labels. - - # Longitude gridlines and ticklabels. The input to these - # transforms are in display space in x and axes space in y. - # Therefore, the input values will be in range (-xmin, 0), - # (xmax, 1). The goal of these transforms is to go from that - # space to display space. The tick labels will be offset 4 - # pixels from the equator. - self._xaxis_pretransform = \ - Affine2D() \ - .scale(1.0, self._longitude_cap * 2.0) \ - .translate(0.0, -self._longitude_cap) - self._xaxis_transform = \ - self._xaxis_pretransform + \ - self.transData - self._xaxis_text1_transform = \ - Affine2D().scale(1.0, 0.0) + \ - self.transData + \ - Affine2D().translate(0.0, 4.0) - self._xaxis_text2_transform = \ - Affine2D().scale(1.0, 0.0) + \ - self.transData + \ - Affine2D().translate(0.0, -4.0) - - # Now set up the transforms for the latitude ticks. The input to - # these transforms are in axes space in x and display space in - # y. Therefore, the input values will be in range (0, -ymin), - # (1, ymax). The goal of these transforms is to go from that - # space to display space. The tick labels will be offset 4 - # pixels from the edge of the axes ellipse. - yaxis_stretch = Affine2D().scale(np.pi*2, 1).translate(-np.pi, 0) - yaxis_space = Affine2D().scale(1.0, 1.1) - self._yaxis_transform = \ - yaxis_stretch + \ - self.transData - yaxis_text_base = \ - yaxis_stretch + \ - self.transProjection + \ - (yaxis_space + - self.transAffine + - self.transAxes) - self._yaxis_text1_transform = \ - yaxis_text_base + \ - Affine2D().translate(-8.0, 0.0) - self._yaxis_text2_transform = \ - yaxis_text_base + \ - Affine2D().translate(8.0, 0.0) - - def _get_affine_transform(self): - transform = self._get_core_transform(1) - xscale, _ = transform.transform_point((np.pi, 0)) - _, yscale = transform.transform_point((0, np.pi / 2.0)) - return Affine2D() \ - .scale(0.5 / xscale, 0.5 / yscale) \ - .translate(0.5, 0.5) - - def get_xaxis_transform(self, which='grid'): - """ - Override this method to provide a transformation for the - x-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - if which not in ['tick1', 'tick2', 'grid']: - raise ValueError( - "'which' must be one of 'tick1', 'tick2', or 'grid'") - return self._xaxis_transform - - def get_xaxis_text1_transform(self, pad): - return self._xaxis_text1_transform, 'bottom', 'center' - - def get_xaxis_text2_transform(self, pad): - """ - Override this method to provide a transformation for the - secondary x-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - return self._xaxis_text2_transform, 'top', 'center' - - def get_yaxis_transform(self, which='grid'): - """ - Override this method to provide a transformation for the - y-axis grid and ticks. - """ - if which not in ['tick1', 'tick2', 'grid']: - raise ValueError( - "'which' must be one of 'tick1', 'tick2', or 'grid'") - return self._yaxis_transform - - def get_yaxis_text1_transform(self, pad): - """ - Override this method to provide a transformation for the - y-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - return self._yaxis_text1_transform, 'center', 'right' - - def get_yaxis_text2_transform(self, pad): - """ - Override this method to provide a transformation for the - secondary y-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - return self._yaxis_text2_transform, 'center', 'left' - - def _gen_axes_patch(self): - """ - Override this method to define the shape that is used for the - background of the plot. It should be a subclass of Patch. - - In this case, it is a Circle (that may be warped by the axes - transform into an ellipse). Any data and gridlines will be - clipped to this shape. - """ - return Circle((0.5, 0.5), 0.5) - - def _gen_axes_spines(self): - return {'geo': mspines.Spine.circular_spine(self, (0.5, 0.5), 0.5)} - - def set_yscale(self, *args, **kwargs): - if args[0] != 'linear': - raise NotImplementedError - - # Prevent the user from applying scales to one or both of the - # axes. In this particular case, scaling the axes wouldn't make - # sense, so we don't allow it. - set_xscale = set_yscale - - # Prevent the user from changing the axes limits. In our case, we - # want to display the whole sphere all the time, so we override - # set_xlim and set_ylim to ignore any input. This also applies to - # interactive panning and zooming in the GUI interfaces. - def set_xlim(self, *args, **kwargs): - raise TypeError("It is not possible to change axes limits " - "for geographic projections. Please consider " - "using Basemap or Cartopy.") - - set_ylim = set_xlim - - def format_coord(self, lon, lat): - """ - Override this method to change how the values are displayed in - the status bar. - - In this case, we want them to be displayed in degrees N/S/E/W. - """ - lon, lat = np.rad2deg([lon, lat]) - if lat >= 0.0: - ns = 'N' - else: - ns = 'S' - if lon >= 0.0: - ew = 'E' - else: - ew = 'W' - return ('%f\N{DEGREE SIGN}%s, %f\N{DEGREE SIGN}%s' - % (abs(lat), ns, abs(lon), ew)) - - def set_longitude_grid(self, degrees): - """ - Set the number of degrees between each longitude grid. - - This is an example method that is specific to this projection - class -- it provides a more convenient interface to set the - ticking than set_xticks would. - """ - # Skip -180 and 180, which are the fixed limits. - grid = np.arange(-180 + degrees, 180, degrees) - self.xaxis.set_major_locator(FixedLocator(np.deg2rad(grid))) - self.xaxis.set_major_formatter(self.ThetaFormatter(degrees)) - - def set_latitude_grid(self, degrees): - """ - Set the number of degrees between each longitude grid. - - This is an example method that is specific to this projection - class -- it provides a more convenient interface than - set_yticks would. - """ - # Skip -90 and 90, which are the fixed limits. - grid = np.arange(-90 + degrees, 90, degrees) - self.yaxis.set_major_locator(FixedLocator(np.deg2rad(grid))) - self.yaxis.set_major_formatter(self.ThetaFormatter(degrees)) - - def set_longitude_grid_ends(self, degrees): - """ - Set the latitude(s) at which to stop drawing the longitude grids. - - Often, in geographic projections, you wouldn't want to draw - longitude gridlines near the poles. This allows the user to - specify the degree at which to stop drawing longitude grids. - - This is an example method that is specific to this projection - class -- it provides an interface to something that has no - analogy in the base Axes class. - """ - self._longitude_cap = np.deg2rad(degrees) - self._xaxis_pretransform \ - .clear() \ - .scale(1.0, self._longitude_cap * 2.0) \ - .translate(0.0, -self._longitude_cap) - - def get_data_ratio(self): - """ - Return the aspect ratio of the data itself. - - This method should be overridden by any Axes that have a - fixed data ratio. - """ - return 1.0 - - # Interactive panning and zooming is not supported with this projection, - # so we override all of the following methods to disable it. - def can_zoom(self): - """ - Return *True* if this axes supports the zoom box button functionality. - This axes object does not support interactive zoom box. - """ - return False - - def can_pan(self): - """ - Return *True* if this axes supports the pan/zoom button functionality. - This axes object does not support interactive pan/zoom. - """ - return False - - def start_pan(self, x, y, button): - pass - - def end_pan(self): - pass - - def drag_pan(self, button, key, x, y): - pass - - -class HammerAxes(GeoAxes): - """ - A custom class for the Aitoff-Hammer projection, an equal-area map - projection. - - https://en.wikipedia.org/wiki/Hammer_projection - """ - - # The projection must specify a name. This will be used by the - # user to select the projection, - # i.e. ``subplot(111, projection='custom_hammer')``. - name = 'custom_hammer' - - class HammerTransform(Transform): - """ - The base Hammer transform. - """ - input_dims = 2 - output_dims = 2 - is_separable = False - - def __init__(self, resolution): - """ - Create a new Hammer transform. Resolution is the number of steps - to interpolate between each input line segment to approximate its - path in curved Hammer space. - """ - Transform.__init__(self) - self._resolution = resolution - - def transform_non_affine(self, ll): - longitude, latitude = ll.T - - # Pre-compute some values - half_long = longitude / 2 - cos_latitude = np.cos(latitude) - sqrt2 = np.sqrt(2) - - alpha = np.sqrt(1 + cos_latitude * np.cos(half_long)) - x = (2 * sqrt2) * (cos_latitude * np.sin(half_long)) / alpha - y = (sqrt2 * np.sin(latitude)) / alpha - return np.column_stack([x, y]) - - def transform_path_non_affine(self, path): - # vertices = path.vertices - ipath = path.interpolated(self._resolution) - return Path(self.transform(ipath.vertices), ipath.codes) - - def inverted(self): - return HammerAxes.InvertedHammerTransform(self._resolution) - - class InvertedHammerTransform(Transform): - input_dims = 2 - output_dims = 2 - is_separable = False - - def __init__(self, resolution): - Transform.__init__(self) - self._resolution = resolution - - def transform_non_affine(self, xy): - x, y = xy.T - z = np.sqrt(1 - (x / 4) ** 2 - (y / 2) ** 2) - longitude = 2 * np.arctan((z * x) / (2 * (2 * z ** 2 - 1))) - latitude = np.arcsin(y*z) - return np.column_stack([longitude, latitude]) - - def inverted(self): - return HammerAxes.HammerTransform(self._resolution) - - def __init__(self, *args, **kwargs): - self._longitude_cap = np.pi / 2.0 - GeoAxes.__init__(self, *args, **kwargs) - self.set_aspect(0.5, adjustable='box', anchor='C') - self.cla() - - def _get_core_transform(self, resolution): - return self.HammerTransform(resolution) - - -# Now register the projection with Matplotlib so the user can select it. -register_projection(HammerAxes) - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - # Now make a simple example using the custom projection. - plt.subplot(111, projection="custom_hammer") - p = plt.plot([-1, 1, 1], [-1, -1, 1], "o-") - plt.grid(True) - - plt.show() diff --git a/_downloads/103016609fe483fc59fd0c9a48cdd717/pyplot_formatstr.py b/_downloads/103016609fe483fc59fd0c9a48cdd717/pyplot_formatstr.py deleted file mode 100644 index 3e5b1806b5c..00000000000 --- a/_downloads/103016609fe483fc59fd0c9a48cdd717/pyplot_formatstr.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -==================== -plot() format string -==================== - -Use a format string (here, 'ro') to set the color and markers of a -`~matplotlib.axes.Axes.plot`. -""" - -import matplotlib.pyplot as plt -plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.plot -matplotlib.axes.Axes.plot diff --git a/_downloads/1031069b233d778873c178931f9832df/bayes_update.ipynb b/_downloads/1031069b233d778873c178931f9832df/bayes_update.ipynb deleted file mode 120000 index 8e20847f1e9..00000000000 --- a/_downloads/1031069b233d778873c178931f9832df/bayes_update.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1031069b233d778873c178931f9832df/bayes_update.ipynb \ No newline at end of file diff --git a/_downloads/10358d9b3be1e341060a8ad933a4f687/cohere.ipynb b/_downloads/10358d9b3be1e341060a8ad933a4f687/cohere.ipynb deleted file mode 120000 index e97cf6467d8..00000000000 --- a/_downloads/10358d9b3be1e341060a8ad933a4f687/cohere.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/10358d9b3be1e341060a8ad933a4f687/cohere.ipynb \ No newline at end of file diff --git a/_downloads/10381af7ae69848da68b34bfff3e0ac0/pgf_texsystem.py b/_downloads/10381af7ae69848da68b34bfff3e0ac0/pgf_texsystem.py deleted file mode 120000 index b4cb74820f2..00000000000 --- a/_downloads/10381af7ae69848da68b34bfff3e0ac0/pgf_texsystem.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10381af7ae69848da68b34bfff3e0ac0/pgf_texsystem.py \ No newline at end of file diff --git a/_downloads/104543588464bfa3c21954630b644a07/figlegend_demo.ipynb b/_downloads/104543588464bfa3c21954630b644a07/figlegend_demo.ipynb deleted file mode 120000 index 8862864b945..00000000000 --- a/_downloads/104543588464bfa3c21954630b644a07/figlegend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/104543588464bfa3c21954630b644a07/figlegend_demo.ipynb \ No newline at end of file diff --git a/_downloads/104ed7b3cf94414593147cd23c1aff2f/line_collection.ipynb b/_downloads/104ed7b3cf94414593147cd23c1aff2f/line_collection.ipynb deleted file mode 120000 index 70e61470c24..00000000000 --- a/_downloads/104ed7b3cf94414593147cd23c1aff2f/line_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/104ed7b3cf94414593147cd23c1aff2f/line_collection.ipynb \ No newline at end of file diff --git a/_downloads/105513fa9e654d7868530325dfaebf01/simple_colorbar.ipynb b/_downloads/105513fa9e654d7868530325dfaebf01/simple_colorbar.ipynb deleted file mode 120000 index 826a3b4f5a6..00000000000 --- a/_downloads/105513fa9e654d7868530325dfaebf01/simple_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/105513fa9e654d7868530325dfaebf01/simple_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/106c5158c84acee9f8c529cf999f2975/demo_annotation_box.py b/_downloads/106c5158c84acee9f8c529cf999f2975/demo_annotation_box.py deleted file mode 120000 index b536b4fbad1..00000000000 --- a/_downloads/106c5158c84acee9f8c529cf999f2975/demo_annotation_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/106c5158c84acee9f8c529cf999f2975/demo_annotation_box.py \ No newline at end of file diff --git a/_downloads/106dddf6800f4b5a7101426eb5cf6116/ellipse_with_units.py b/_downloads/106dddf6800f4b5a7101426eb5cf6116/ellipse_with_units.py deleted file mode 100644 index 4377d91d9d5..00000000000 --- a/_downloads/106dddf6800f4b5a7101426eb5cf6116/ellipse_with_units.py +++ /dev/null @@ -1,79 +0,0 @@ -""" -================== -Ellipse With Units -================== - -Compare the ellipse generated with arcs versus a polygonal approximation - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -from basic_units import cm -import numpy as np -from matplotlib import patches -import matplotlib.pyplot as plt - - -xcenter, ycenter = 0.38*cm, 0.52*cm -width, height = 1e-1*cm, 3e-1*cm -angle = -30 - -theta = np.deg2rad(np.arange(0.0, 360.0, 1.0)) -x = 0.5 * width * np.cos(theta) -y = 0.5 * height * np.sin(theta) - -rtheta = np.radians(angle) -R = np.array([ - [np.cos(rtheta), -np.sin(rtheta)], - [np.sin(rtheta), np.cos(rtheta)], - ]) - - -x, y = np.dot(R, np.array([x, y])) -x += xcenter -y += ycenter - -############################################################################### - -fig = plt.figure() -ax = fig.add_subplot(211, aspect='auto') -ax.fill(x, y, alpha=0.2, facecolor='yellow', - edgecolor='yellow', linewidth=1, zorder=1) - -e1 = patches.Ellipse((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - -ax.add_patch(e1) - -ax = fig.add_subplot(212, aspect='equal') -ax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1) -e2 = patches.Ellipse((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - - -ax.add_patch(e2) -fig.savefig('ellipse_compare') - -############################################################################### - -fig = plt.figure() -ax = fig.add_subplot(211, aspect='auto') -ax.fill(x, y, alpha=0.2, facecolor='yellow', - edgecolor='yellow', linewidth=1, zorder=1) - -e1 = patches.Arc((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - -ax.add_patch(e1) - -ax = fig.add_subplot(212, aspect='equal') -ax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1) -e2 = patches.Arc((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - - -ax.add_patch(e2) -fig.savefig('arc_compare') - -plt.show() diff --git a/_downloads/1072266b0e941ddfa0a75e42599b67ab/annotate_simple02.py b/_downloads/1072266b0e941ddfa0a75e42599b67ab/annotate_simple02.py deleted file mode 100644 index 8ba7f51a194..00000000000 --- a/_downloads/1072266b0e941ddfa0a75e42599b67ab/annotate_simple02.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -================= -Annotate Simple02 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - arrowprops=dict(arrowstyle="simple", - connectionstyle="arc3,rad=-0.2"), - ) - -plt.show() diff --git a/_downloads/1081c0785084448a5e277e1237ec39eb/errorbar_subsample.py b/_downloads/1081c0785084448a5e277e1237ec39eb/errorbar_subsample.py deleted file mode 120000 index 734cb314b51..00000000000 --- a/_downloads/1081c0785084448a5e277e1237ec39eb/errorbar_subsample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1081c0785084448a5e277e1237ec39eb/errorbar_subsample.py \ No newline at end of file diff --git a/_downloads/108b1df01f0a4143e1cf58a76a59a3fa/fancytextbox_demo.py b/_downloads/108b1df01f0a4143e1cf58a76a59a3fa/fancytextbox_demo.py deleted file mode 100644 index f7616b37bed..00000000000 --- a/_downloads/108b1df01f0a4143e1cf58a76a59a3fa/fancytextbox_demo.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -================= -Fancytextbox Demo -================= - -""" -import matplotlib.pyplot as plt - -plt.text(0.6, 0.7, "eggs", size=50, rotation=30., - ha="center", va="center", - bbox=dict(boxstyle="round", - ec=(1., 0.5, 0.5), - fc=(1., 0.8, 0.8), - ) - ) - -plt.text(0.55, 0.6, "spam", size=50, rotation=-25., - ha="right", va="top", - bbox=dict(boxstyle="square", - ec=(1., 0.5, 0.5), - fc=(1., 0.8, 0.8), - ) - ) - -plt.show() diff --git a/_downloads/108d9234e54c634b3697d5427a5d611b/fonts_demo_kw.ipynb b/_downloads/108d9234e54c634b3697d5427a5d611b/fonts_demo_kw.ipynb deleted file mode 100644 index 2155c66d5d2..00000000000 --- a/_downloads/108d9234e54c634b3697d5427a5d611b/fonts_demo_kw.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===================\nFonts demo (kwargs)\n===================\n\nSet font properties using kwargs.\n\nSee :doc:`fonts_demo` to achieve the same effect using setters.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nalignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'}\n\n# Show family options\n\nfamilies = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace']\n\nt = plt.figtext(0.1, 0.9, 'family', size='large', **alignment)\n\nyp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2]\n\nfor k, family in enumerate(families):\n t = plt.figtext(0.1, yp[k], family, family=family, **alignment)\n\n# Show style options\n\nstyles = ['normal', 'italic', 'oblique']\n\nt = plt.figtext(0.3, 0.9, 'style', **alignment)\n\nfor k, style in enumerate(styles):\n t = plt.figtext(0.3, yp[k], style, family='sans-serif', style=style,\n **alignment)\n\n# Show variant options\n\nvariants = ['normal', 'small-caps']\n\nt = plt.figtext(0.5, 0.9, 'variant', **alignment)\n\nfor k, variant in enumerate(variants):\n t = plt.figtext(0.5, yp[k], variant, family='serif', variant=variant,\n **alignment)\n\n# Show weight options\n\nweights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black']\n\nt = plt.figtext(0.7, 0.9, 'weight', **alignment)\n\nfor k, weight in enumerate(weights):\n t = plt.figtext(0.7, yp[k], weight, weight=weight, **alignment)\n\n# Show size options\n\nsizes = ['xx-small', 'x-small', 'small', 'medium', 'large',\n 'x-large', 'xx-large']\n\nt = plt.figtext(0.9, 0.9, 'size', **alignment)\n\nfor k, size in enumerate(sizes):\n t = plt.figtext(0.9, yp[k], size, size=size, **alignment)\n\n# Show bold italic\nt = plt.figtext(0.3, 0.1, 'bold italic', style='italic',\n weight='bold', size='x-small',\n **alignment)\nt = plt.figtext(0.3, 0.2, 'bold italic',\n style='italic', weight='bold', size='medium',\n **alignment)\nt = plt.figtext(0.3, 0.3, 'bold italic',\n style='italic', weight='bold', size='x-large',\n **alignment)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/109cafe4dcd4ac018896505c917aecf9/skewt.py b/_downloads/109cafe4dcd4ac018896505c917aecf9/skewt.py deleted file mode 120000 index 4ca430c4bbd..00000000000 --- a/_downloads/109cafe4dcd4ac018896505c917aecf9/skewt.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/109cafe4dcd4ac018896505c917aecf9/skewt.py \ No newline at end of file diff --git a/_downloads/10a090b53f6cf09d69c46e78cb5518f0/annotate_explain.ipynb b/_downloads/10a090b53f6cf09d69c46e78cb5518f0/annotate_explain.ipynb deleted file mode 120000 index 68e2753a58a..00000000000 --- a/_downloads/10a090b53f6cf09d69c46e78cb5518f0/annotate_explain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/10a090b53f6cf09d69c46e78cb5518f0/annotate_explain.ipynb \ No newline at end of file diff --git a/_downloads/10a50e1fe9531ca189272f2abf033b60/plotfile_demo.py b/_downloads/10a50e1fe9531ca189272f2abf033b60/plotfile_demo.py deleted file mode 100644 index d55323b1f7c..00000000000 --- a/_downloads/10a50e1fe9531ca189272f2abf033b60/plotfile_demo.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -============= -Plotfile Demo -============= - -Example use of ``plotfile`` to plot data directly from a file. -""" - -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook - -fname = cbook.get_sample_data('msft.csv', asfileobj=False) -fname2 = cbook.get_sample_data('data_x_x2_x3.csv', asfileobj=False) - -# test 1; use ints -plt.plotfile(fname, (0, 5, 6)) - -# test 2; use names -plt.plotfile(fname, ('date', 'volume', 'adj_close')) - -# test 3; use semilogy for volume -plt.plotfile(fname, ('date', 'volume', 'adj_close'), - plotfuncs={'volume': 'semilogy'}) - -# test 4; use semilogy for volume -plt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'semilogy'}) - -# test 5; single subplot -plt.plotfile(fname, ('date', 'open', 'high', 'low', 'close'), subplots=False) - -# test 6; labeling, if no names in csv-file -plt.plotfile(fname2, cols=(0, 1, 2), delimiter=' ', - names=['$x$', '$f(x)=x^2$', '$f(x)=x^3$']) - -# test 7; more than one file per figure--illustrated here with a single file -plt.plotfile(fname2, cols=(0, 1), delimiter=' ') -plt.plotfile(fname2, cols=(0, 2), newfig=False, - delimiter=' ') # use current figure -plt.xlabel(r'$x$') -plt.ylabel(r'$f(x) = x^2, x^3$') - -# test 8; use bar for volume -plt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'bar'}) - -plt.show() diff --git a/_downloads/10a6bbb066f71869dbc39c2e8bdfea7c/log_bar.py b/_downloads/10a6bbb066f71869dbc39c2e8bdfea7c/log_bar.py deleted file mode 120000 index 2402c792fc4..00000000000 --- a/_downloads/10a6bbb066f71869dbc39c2e8bdfea7c/log_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10a6bbb066f71869dbc39c2e8bdfea7c/log_bar.py \ No newline at end of file diff --git a/_downloads/10a8be3bd057222df5cdceec59bf2724/geo_demo.py b/_downloads/10a8be3bd057222df5cdceec59bf2724/geo_demo.py deleted file mode 120000 index d7e80d44fea..00000000000 --- a/_downloads/10a8be3bd057222df5cdceec59bf2724/geo_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/10a8be3bd057222df5cdceec59bf2724/geo_demo.py \ No newline at end of file diff --git a/_downloads/10b5ff9cd296af8239f07265bd77390f/radar_chart.py b/_downloads/10b5ff9cd296af8239f07265bd77390f/radar_chart.py deleted file mode 100644 index a4e9c3666d6..00000000000 --- a/_downloads/10b5ff9cd296af8239f07265bd77390f/radar_chart.py +++ /dev/null @@ -1,211 +0,0 @@ -""" -====================================== -Radar chart (aka spider or star chart) -====================================== - -This example creates a radar chart, also known as a spider or star chart [1]_. - -Although this example allows a frame of either 'circle' or 'polygon', polygon -frames don't have proper gridlines (the lines are circles instead of polygons). -It's possible to get a polygon grid by setting GRIDLINE_INTERPOLATION_STEPS in -matplotlib.axis to the desired number of vertices, but the orientation of the -polygon is not aligned with the radial axes. - -.. [1] http://en.wikipedia.org/wiki/Radar_chart -""" - -import numpy as np - -import matplotlib.pyplot as plt -from matplotlib.patches import Circle, RegularPolygon -from matplotlib.path import Path -from matplotlib.projections.polar import PolarAxes -from matplotlib.projections import register_projection -from matplotlib.spines import Spine -from matplotlib.transforms import Affine2D - - -def radar_factory(num_vars, frame='circle'): - """Create a radar chart with `num_vars` axes. - - This function creates a RadarAxes projection and registers it. - - Parameters - ---------- - num_vars : int - Number of variables for radar chart. - frame : {'circle' | 'polygon'} - Shape of frame surrounding axes. - - """ - # calculate evenly-spaced axis angles - theta = np.linspace(0, 2*np.pi, num_vars, endpoint=False) - - class RadarAxes(PolarAxes): - - name = 'radar' - # use 1 line segment to connect specified points - RESOLUTION = 1 - - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - # rotate plot such that the first axis is at the top - self.set_theta_zero_location('N') - - def fill(self, *args, closed=True, **kwargs): - """Override fill so that line is closed by default""" - return super().fill(closed=closed, *args, **kwargs) - - def plot(self, *args, **kwargs): - """Override plot so that line is closed by default""" - lines = super().plot(*args, **kwargs) - for line in lines: - self._close_line(line) - - def _close_line(self, line): - x, y = line.get_data() - # FIXME: markers at x[0], y[0] get doubled-up - if x[0] != x[-1]: - x = np.concatenate((x, [x[0]])) - y = np.concatenate((y, [y[0]])) - line.set_data(x, y) - - def set_varlabels(self, labels): - self.set_thetagrids(np.degrees(theta), labels) - - def _gen_axes_patch(self): - # The Axes patch must be centered at (0.5, 0.5) and of radius 0.5 - # in axes coordinates. - if frame == 'circle': - return Circle((0.5, 0.5), 0.5) - elif frame == 'polygon': - return RegularPolygon((0.5, 0.5), num_vars, - radius=.5, edgecolor="k") - else: - raise ValueError("unknown value for 'frame': %s" % frame) - - def _gen_axes_spines(self): - if frame == 'circle': - return super()._gen_axes_spines() - elif frame == 'polygon': - # spine_type must be 'left'/'right'/'top'/'bottom'/'circle'. - spine = Spine(axes=self, - spine_type='circle', - path=Path.unit_regular_polygon(num_vars)) - # unit_regular_polygon gives a polygon of radius 1 centered at - # (0, 0) but we want a polygon of radius 0.5 centered at (0.5, - # 0.5) in axes coordinates. - spine.set_transform(Affine2D().scale(.5).translate(.5, .5) - + self.transAxes) - return {'polar': spine} - else: - raise ValueError("unknown value for 'frame': %s" % frame) - - register_projection(RadarAxes) - return theta - - -def example_data(): - # The following data is from the Denver Aerosol Sources and Health study. - # See doi:10.1016/j.atmosenv.2008.12.017 - # - # The data are pollution source profile estimates for five modeled - # pollution sources (e.g., cars, wood-burning, etc) that emit 7-9 chemical - # species. The radar charts are experimented with here to see if we can - # nicely visualize how the modeled source profiles change across four - # scenarios: - # 1) No gas-phase species present, just seven particulate counts on - # Sulfate - # Nitrate - # Elemental Carbon (EC) - # Organic Carbon fraction 1 (OC) - # Organic Carbon fraction 2 (OC2) - # Organic Carbon fraction 3 (OC3) - # Pyrolized Organic Carbon (OP) - # 2)Inclusion of gas-phase specie carbon monoxide (CO) - # 3)Inclusion of gas-phase specie ozone (O3). - # 4)Inclusion of both gas-phase species is present... - data = [ - ['Sulfate', 'Nitrate', 'EC', 'OC1', 'OC2', 'OC3', 'OP', 'CO', 'O3'], - ('Basecase', [ - [0.88, 0.01, 0.03, 0.03, 0.00, 0.06, 0.01, 0.00, 0.00], - [0.07, 0.95, 0.04, 0.05, 0.00, 0.02, 0.01, 0.00, 0.00], - [0.01, 0.02, 0.85, 0.19, 0.05, 0.10, 0.00, 0.00, 0.00], - [0.02, 0.01, 0.07, 0.01, 0.21, 0.12, 0.98, 0.00, 0.00], - [0.01, 0.01, 0.02, 0.71, 0.74, 0.70, 0.00, 0.00, 0.00]]), - ('With CO', [ - [0.88, 0.02, 0.02, 0.02, 0.00, 0.05, 0.00, 0.05, 0.00], - [0.08, 0.94, 0.04, 0.02, 0.00, 0.01, 0.12, 0.04, 0.00], - [0.01, 0.01, 0.79, 0.10, 0.00, 0.05, 0.00, 0.31, 0.00], - [0.00, 0.02, 0.03, 0.38, 0.31, 0.31, 0.00, 0.59, 0.00], - [0.02, 0.02, 0.11, 0.47, 0.69, 0.58, 0.88, 0.00, 0.00]]), - ('With O3', [ - [0.89, 0.01, 0.07, 0.00, 0.00, 0.05, 0.00, 0.00, 0.03], - [0.07, 0.95, 0.05, 0.04, 0.00, 0.02, 0.12, 0.00, 0.00], - [0.01, 0.02, 0.86, 0.27, 0.16, 0.19, 0.00, 0.00, 0.00], - [0.01, 0.03, 0.00, 0.32, 0.29, 0.27, 0.00, 0.00, 0.95], - [0.02, 0.00, 0.03, 0.37, 0.56, 0.47, 0.87, 0.00, 0.00]]), - ('CO & O3', [ - [0.87, 0.01, 0.08, 0.00, 0.00, 0.04, 0.00, 0.00, 0.01], - [0.09, 0.95, 0.02, 0.03, 0.00, 0.01, 0.13, 0.06, 0.00], - [0.01, 0.02, 0.71, 0.24, 0.13, 0.16, 0.00, 0.50, 0.00], - [0.01, 0.03, 0.00, 0.28, 0.24, 0.23, 0.00, 0.44, 0.88], - [0.02, 0.00, 0.18, 0.45, 0.64, 0.55, 0.86, 0.00, 0.16]]) - ] - return data - - -if __name__ == '__main__': - N = 9 - theta = radar_factory(N, frame='polygon') - - data = example_data() - spoke_labels = data.pop(0) - - fig, axes = plt.subplots(figsize=(9, 9), nrows=2, ncols=2, - subplot_kw=dict(projection='radar')) - fig.subplots_adjust(wspace=0.25, hspace=0.20, top=0.85, bottom=0.05) - - colors = ['b', 'r', 'g', 'm', 'y'] - # Plot the four cases from the example data on separate axes - for ax, (title, case_data) in zip(axes.flat, data): - ax.set_rgrids([0.2, 0.4, 0.6, 0.8]) - ax.set_title(title, weight='bold', size='medium', position=(0.5, 1.1), - horizontalalignment='center', verticalalignment='center') - for d, color in zip(case_data, colors): - ax.plot(theta, d, color=color) - ax.fill(theta, d, facecolor=color, alpha=0.25) - ax.set_varlabels(spoke_labels) - - # add legend relative to top-left plot - ax = axes[0, 0] - labels = ('Factor 1', 'Factor 2', 'Factor 3', 'Factor 4', 'Factor 5') - legend = ax.legend(labels, loc=(0.9, .95), - labelspacing=0.1, fontsize='small') - - fig.text(0.5, 0.965, '5-Factor Solution Profiles Across Four Scenarios', - horizontalalignment='center', color='black', weight='bold', - size='large') - - plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.spines -matplotlib.spines.Spine -matplotlib.projections -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes -matplotlib.projections.register_projection diff --git a/_downloads/10b870889c6450717e0fe21ab97836c5/tick_labels_from_values.ipynb b/_downloads/10b870889c6450717e0fe21ab97836c5/tick_labels_from_values.ipynb deleted file mode 120000 index 36f415630a1..00000000000 --- a/_downloads/10b870889c6450717e0fe21ab97836c5/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/10b870889c6450717e0fe21ab97836c5/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/10bb0814cb64cd65d5a34e71ba9b94ee/simple_axisline4.ipynb b/_downloads/10bb0814cb64cd65d5a34e71ba9b94ee/simple_axisline4.ipynb deleted file mode 120000 index 96e23f12d9a..00000000000 --- a/_downloads/10bb0814cb64cd65d5a34e71ba9b94ee/simple_axisline4.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10bb0814cb64cd65d5a34e71ba9b94ee/simple_axisline4.ipynb \ No newline at end of file diff --git a/_downloads/10c27356d424b3ae990a96715b666f44/fivethirtyeight.py b/_downloads/10c27356d424b3ae990a96715b666f44/fivethirtyeight.py deleted file mode 120000 index e96fee6c6c2..00000000000 --- a/_downloads/10c27356d424b3ae990a96715b666f44/fivethirtyeight.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10c27356d424b3ae990a96715b666f44/fivethirtyeight.py \ No newline at end of file diff --git a/_downloads/10c308494f1957d0125f677421b10880/unicode_minus.py b/_downloads/10c308494f1957d0125f677421b10880/unicode_minus.py deleted file mode 120000 index 69743600929..00000000000 --- a/_downloads/10c308494f1957d0125f677421b10880/unicode_minus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/10c308494f1957d0125f677421b10880/unicode_minus.py \ No newline at end of file diff --git a/_downloads/10c43c49ee9e49fae555d9bc119554f3/poly_editor.py b/_downloads/10c43c49ee9e49fae555d9bc119554f3/poly_editor.py deleted file mode 120000 index 8943be34aca..00000000000 --- a/_downloads/10c43c49ee9e49fae555d9bc119554f3/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10c43c49ee9e49fae555d9bc119554f3/poly_editor.py \ No newline at end of file diff --git a/_downloads/10d104944eed9df046d0a9efa3257590/dolphin.py b/_downloads/10d104944eed9df046d0a9efa3257590/dolphin.py deleted file mode 120000 index c9fc0fe14d0..00000000000 --- a/_downloads/10d104944eed9df046d0a9efa3257590/dolphin.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/10d104944eed9df046d0a9efa3257590/dolphin.py \ No newline at end of file diff --git a/_downloads/10d35288a203458af04a69932f12010d/demo_imagegrid_aspect.ipynb b/_downloads/10d35288a203458af04a69932f12010d/demo_imagegrid_aspect.ipynb deleted file mode 100644 index ffcad9b9375..00000000000 --- a/_downloads/10d35288a203458af04a69932f12010d/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Imagegrid Aspect\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1 import ImageGrid\nfig = plt.figure()\n\ngrid1 = ImageGrid(fig, 121, (2, 2), axes_pad=0.1,\n aspect=True, share_all=True)\n\nfor i in [0, 1]:\n grid1[i].set_aspect(2)\n\n\ngrid2 = ImageGrid(fig, 122, (2, 2), axes_pad=0.1,\n aspect=True, share_all=True)\n\n\nfor i in [1, 3]:\n grid2[i].set_aspect(2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/10e00aece1dc1fd5bcef726cece1fb79/errorbar_plot.py b/_downloads/10e00aece1dc1fd5bcef726cece1fb79/errorbar_plot.py deleted file mode 120000 index cbd54f8bc2e..00000000000 --- a/_downloads/10e00aece1dc1fd5bcef726cece1fb79/errorbar_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/10e00aece1dc1fd5bcef726cece1fb79/errorbar_plot.py \ No newline at end of file diff --git a/_downloads/10e0f674729a6b04c43278cae0c56671/voxels.ipynb b/_downloads/10e0f674729a6b04c43278cae0c56671/voxels.ipynb deleted file mode 120000 index 416d5160f2b..00000000000 --- a/_downloads/10e0f674729a6b04c43278cae0c56671/voxels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10e0f674729a6b04c43278cae0c56671/voxels.ipynb \ No newline at end of file diff --git a/_downloads/10e26b509f066ec3b7039de4e66a1308/simple_anchored_artists.py b/_downloads/10e26b509f066ec3b7039de4e66a1308/simple_anchored_artists.py deleted file mode 120000 index b9c5ea0770e..00000000000 --- a/_downloads/10e26b509f066ec3b7039de4e66a1308/simple_anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10e26b509f066ec3b7039de4e66a1308/simple_anchored_artists.py \ No newline at end of file diff --git a/_downloads/10e79e961d6af2dfa2d6c7899afe8326/color_by_yvalue.ipynb b/_downloads/10e79e961d6af2dfa2d6c7899afe8326/color_by_yvalue.ipynb deleted file mode 120000 index d645f5b8377..00000000000 --- a/_downloads/10e79e961d6af2dfa2d6c7899afe8326/color_by_yvalue.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/10e79e961d6af2dfa2d6c7899afe8326/color_by_yvalue.ipynb \ No newline at end of file diff --git a/_downloads/10e9f85ddcf52bc911915635f82d1b13/slider_demo.ipynb b/_downloads/10e9f85ddcf52bc911915635f82d1b13/slider_demo.ipynb deleted file mode 120000 index 0a493b553c1..00000000000 --- a/_downloads/10e9f85ddcf52bc911915635f82d1b13/slider_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/10e9f85ddcf52bc911915635f82d1b13/slider_demo.ipynb \ No newline at end of file diff --git a/_downloads/10ebc3fae4c26be16851be65bd405c1b/date_index_formatter2.ipynb b/_downloads/10ebc3fae4c26be16851be65bd405c1b/date_index_formatter2.ipynb deleted file mode 120000 index 33cf5a1eedc..00000000000 --- a/_downloads/10ebc3fae4c26be16851be65bd405c1b/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10ebc3fae4c26be16851be65bd405c1b/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/10ec6b8d2546088e5478ace39cc6cd45/tick_label_right.ipynb b/_downloads/10ec6b8d2546088e5478ace39cc6cd45/tick_label_right.ipynb deleted file mode 120000 index bad2b8def00..00000000000 --- a/_downloads/10ec6b8d2546088e5478ace39cc6cd45/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/10ec6b8d2546088e5478ace39cc6cd45/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/10f17d8e0349fe0ab5b1140e451d37ed/embedding_in_wx3_sgskip.ipynb b/_downloads/10f17d8e0349fe0ab5b1140e451d37ed/embedding_in_wx3_sgskip.ipynb deleted file mode 120000 index cb0be92b5b5..00000000000 --- a/_downloads/10f17d8e0349fe0ab5b1140e451d37ed/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/10f17d8e0349fe0ab5b1140e451d37ed/embedding_in_wx3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/10f80207049e357dd74416bc9c2693eb/text_rotation.py b/_downloads/10f80207049e357dd74416bc9c2693eb/text_rotation.py deleted file mode 100644 index 0e22ee02d63..00000000000 --- a/_downloads/10f80207049e357dd74416bc9c2693eb/text_rotation.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -=================================== -Default text rotation demonstration -=================================== - -The way Matplotlib does text layout by default is counter-intuitive to some, so -this example is designed to make it a little clearer. - -The text is aligned by its bounding box (the rectangular box that surrounds the -ink rectangle). The order of operations is rotation then alignment. -Basically, the text is centered at your x,y location, rotated around this -point, and then aligned according to the bounding box of the rotated text. - -So if you specify left, bottom alignment, the bottom left of the -bounding box of the rotated text will be at the x,y coordinate of the -text. - -But a picture is worth a thousand words! -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def addtext(ax, props): - ax.text(0.5, 0.5, 'text 0', props, rotation=0) - ax.text(1.5, 0.5, 'text 45', props, rotation=45) - ax.text(2.5, 0.5, 'text 135', props, rotation=135) - ax.text(3.5, 0.5, 'text 225', props, rotation=225) - ax.text(4.5, 0.5, 'text -45', props, rotation=-45) - for x in range(0, 5): - ax.scatter(x + 0.5, 0.5, color='r', alpha=0.5) - ax.set_yticks([0, .5, 1]) - ax.set_xlim(0, 5) - ax.grid(True) - - -# the text bounding box -bbox = {'fc': '0.8', 'pad': 0} - -fig, axs = plt.subplots(2, 1) - -addtext(axs[0], {'ha': 'center', 'va': 'center', 'bbox': bbox}) -axs[0].set_xticks(np.arange(0, 5.1, 0.5), []) -axs[0].set_ylabel('center / center') - -addtext(axs[1], {'ha': 'left', 'va': 'bottom', 'bbox': bbox}) -axs[1].set_xticks(np.arange(0, 5.1, 0.5)) -axs[1].set_ylabel('left / bottom') - -plt.show() diff --git a/_downloads/10fa2ca343564d07fddcc7b372b3df0e/mixed_subplots.py b/_downloads/10fa2ca343564d07fddcc7b372b3df0e/mixed_subplots.py deleted file mode 120000 index a8defd4b5c0..00000000000 --- a/_downloads/10fa2ca343564d07fddcc7b372b3df0e/mixed_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/10fa2ca343564d07fddcc7b372b3df0e/mixed_subplots.py \ No newline at end of file diff --git a/_downloads/10fd8e49315493589b352771c3f06032/histogram.py b/_downloads/10fd8e49315493589b352771c3f06032/histogram.py deleted file mode 120000 index 1d3ab1bba45..00000000000 --- a/_downloads/10fd8e49315493589b352771c3f06032/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/10fd8e49315493589b352771c3f06032/histogram.py \ No newline at end of file diff --git a/_downloads/11048fe09b577618f68c76e6a81dc3d6/pipong.ipynb b/_downloads/11048fe09b577618f68c76e6a81dc3d6/pipong.ipynb deleted file mode 120000 index 42c3fd0c791..00000000000 --- a/_downloads/11048fe09b577618f68c76e6a81dc3d6/pipong.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/11048fe09b577618f68c76e6a81dc3d6/pipong.ipynb \ No newline at end of file diff --git a/_downloads/110ef9838dc04b8d3924083f2a4a452d/plot_solarizedlight2.py b/_downloads/110ef9838dc04b8d3924083f2a4a452d/plot_solarizedlight2.py deleted file mode 120000 index b11030206e3..00000000000 --- a/_downloads/110ef9838dc04b8d3924083f2a4a452d/plot_solarizedlight2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/110ef9838dc04b8d3924083f2a4a452d/plot_solarizedlight2.py \ No newline at end of file diff --git a/_downloads/1115eaa83d29a741d73c97a65570e4c7/frame_grabbing_sgskip.ipynb b/_downloads/1115eaa83d29a741d73c97a65570e4c7/frame_grabbing_sgskip.ipynb deleted file mode 120000 index a1885fa3103..00000000000 --- a/_downloads/1115eaa83d29a741d73c97a65570e4c7/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1115eaa83d29a741d73c97a65570e4c7/frame_grabbing_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/111c2eec4214610f5373a69c8ab0e7b6/quiver_demo.ipynb b/_downloads/111c2eec4214610f5373a69c8ab0e7b6/quiver_demo.ipynb deleted file mode 120000 index bf99fde5f7f..00000000000 --- a/_downloads/111c2eec4214610f5373a69c8ab0e7b6/quiver_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/111c2eec4214610f5373a69c8ab0e7b6/quiver_demo.ipynb \ No newline at end of file diff --git a/_downloads/112bd5141e0f718972a98aacad2e31a3/colormap_normalizations.ipynb b/_downloads/112bd5141e0f718972a98aacad2e31a3/colormap_normalizations.ipynb deleted file mode 100644 index dda539ef121..00000000000 --- a/_downloads/112bd5141e0f718972a98aacad2e31a3/colormap_normalizations.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Lognorm: Instead of pcolor log10(Z1) you can have colorbars that have\nthe exponential labels using a norm.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out of the top. Needs to have\n# z/colour axis on a log scale so we see both hump and spike. linear\n# scale only shows the spike.\n\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nZ = Z1 + 50 * Z2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolor(X, Y, Z,\n norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "PowerNorm: Here a power-law trend in X partially obscures a rectified\nsine wave in Y. We can remove the power law using a PowerNorm.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)]\nZ1 = (1 + np.sin(Y * 10.)) * X**(2.)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1. / 2.),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "SymLogNorm: two humps, one negative and one positive, The positive\nwith 5-times the amplitude. Linearly, you cannot see detail in the\nnegative hump. Here we logarithmically scale the positive and\nnegative data separately.\n\nNote that colorbar labels do not come out looking very good.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = 5 * np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1,\n norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03,\n vmin=-1.0, vmax=1.0),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='RdBu_r', vmin=-np.max(Z1))\nfig.colorbar(pcm, ax=ax[1], extend='both')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Custom Norm: An example with a customized normalization. This one\nuses the example above, and normalizes the negative data differently\nfrom the positive.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n# Example of making your own norm. Also see matplotlib.colors.\n# From Joe Kington: This one gives two different linear ramps:\n\n\nclass MidpointNormalize(colors.Normalize):\n def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False):\n self.midpoint = midpoint\n colors.Normalize.__init__(self, vmin, vmax, clip)\n\n def __call__(self, value, clip=None):\n # I'm ignoring masked values and all kinds of edge cases to make a\n # simple example...\n x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1]\n return np.ma.masked_array(np.interp(value, x, y))\n\n\n#####\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=MidpointNormalize(midpoint=0.),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "BoundaryNorm: For this one you provide the boundaries for your colors,\nand the Norm puts the first color in between the first pair, the\nsecond color between the second pair, etc.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(3, 1, figsize=(8, 8))\nax = ax.flatten()\n# even bounds gives a contour-like effect\nbounds = np.linspace(-1, 1, 10)\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=norm,\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical')\n\n# uneven bounds changes the colormapping:\nbounds = np.array([-0.25, -0.125, 0, 0.5, 1])\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical')\n\npcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z1))\nfig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1141fba93edb182a78fba4366d838424/ganged_plots.py b/_downloads/1141fba93edb182a78fba4366d838424/ganged_plots.py deleted file mode 120000 index cc24a481655..00000000000 --- a/_downloads/1141fba93edb182a78fba4366d838424/ganged_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1141fba93edb182a78fba4366d838424/ganged_plots.py \ No newline at end of file diff --git a/_downloads/11523779ae8aad98f92f668f1c1ff5a6/custom_cmap.py b/_downloads/11523779ae8aad98f92f668f1c1ff5a6/custom_cmap.py deleted file mode 120000 index 8166cbdd4d5..00000000000 --- a/_downloads/11523779ae8aad98f92f668f1c1ff5a6/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/11523779ae8aad98f92f668f1c1ff5a6/custom_cmap.py \ No newline at end of file diff --git a/_downloads/115335217767869574c0cb9aefd383e5/pgf_preamble_sgskip.ipynb b/_downloads/115335217767869574c0cb9aefd383e5/pgf_preamble_sgskip.ipynb deleted file mode 120000 index a05dcf903cb..00000000000 --- a/_downloads/115335217767869574c0cb9aefd383e5/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/115335217767869574c0cb9aefd383e5/pgf_preamble_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/11571f3c56fe04044114bf511129f5a0/histogram_features.ipynb b/_downloads/11571f3c56fe04044114bf511129f5a0/histogram_features.ipynb deleted file mode 120000 index 81686b07044..00000000000 --- a/_downloads/11571f3c56fe04044114bf511129f5a0/histogram_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/11571f3c56fe04044114bf511129f5a0/histogram_features.ipynb \ No newline at end of file diff --git a/_downloads/1157998045b1faf2b6f5116f24dbc04a/anchored_box01.ipynb b/_downloads/1157998045b1faf2b6f5116f24dbc04a/anchored_box01.ipynb deleted file mode 120000 index 86df83f2cec..00000000000 --- a/_downloads/1157998045b1faf2b6f5116f24dbc04a/anchored_box01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1157998045b1faf2b6f5116f24dbc04a/anchored_box01.ipynb \ No newline at end of file diff --git a/_downloads/1164b1c779f1bc16a7184125264f2b1a/set_and_get.py b/_downloads/1164b1c779f1bc16a7184125264f2b1a/set_and_get.py deleted file mode 120000 index 113505da06b..00000000000 --- a/_downloads/1164b1c779f1bc16a7184125264f2b1a/set_and_get.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1164b1c779f1bc16a7184125264f2b1a/set_and_get.py \ No newline at end of file diff --git a/_downloads/11651cd92294430fb588c7ea0a9ee026/colormap_normalizations.ipynb b/_downloads/11651cd92294430fb588c7ea0a9ee026/colormap_normalizations.ipynb deleted file mode 120000 index 1eefe8b81f5..00000000000 --- a/_downloads/11651cd92294430fb588c7ea0a9ee026/colormap_normalizations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/11651cd92294430fb588c7ea0a9ee026/colormap_normalizations.ipynb \ No newline at end of file diff --git a/_downloads/116d18ffdc2a6443744cff2362c2cbd0/demo_ribbon_box.py b/_downloads/116d18ffdc2a6443744cff2362c2cbd0/demo_ribbon_box.py deleted file mode 120000 index 26bfa0e15ed..00000000000 --- a/_downloads/116d18ffdc2a6443744cff2362c2cbd0/demo_ribbon_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/116d18ffdc2a6443744cff2362c2cbd0/demo_ribbon_box.py \ No newline at end of file diff --git a/_downloads/116d7a252daaa72dda346f6a884033ed/tick_xlabel_top.py b/_downloads/116d7a252daaa72dda346f6a884033ed/tick_xlabel_top.py deleted file mode 120000 index 09b7edb4fbf..00000000000 --- a/_downloads/116d7a252daaa72dda346f6a884033ed/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/116d7a252daaa72dda346f6a884033ed/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/1182c2f8e3b1d52fa4e67da31803fe76/pyplot_mathtext.py b/_downloads/1182c2f8e3b1d52fa4e67da31803fe76/pyplot_mathtext.py deleted file mode 100644 index 709488bcc93..00000000000 --- a/_downloads/1182c2f8e3b1d52fa4e67da31803fe76/pyplot_mathtext.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=============== -Pyplot Mathtext -=============== - -Use mathematical expressions in text labels. For an overview over MathText -see :doc:`/tutorials/text/mathtext`. -""" -import numpy as np -import matplotlib.pyplot as plt -t = np.arange(0.0, 2.0, 0.01) -s = np.sin(2*np.pi*t) - -plt.plot(t,s) -plt.title(r'$\alpha_i > \beta_i$', fontsize=20) -plt.text(1, -0.6, r'$\sum_{i=0}^\infty x_i$', fontsize=20) -plt.text(0.6, 0.6, r'$\mathcal{A}\mathrm{sin}(2 \omega t)$', - fontsize=20) -plt.xlabel('time (s)') -plt.ylabel('volts (mV)') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.text -matplotlib.axes.Axes.text diff --git a/_downloads/118d462f5b64725a1d0dc6f401f27eda/pie_features.ipynb b/_downloads/118d462f5b64725a1d0dc6f401f27eda/pie_features.ipynb deleted file mode 120000 index 6928dcaa79c..00000000000 --- a/_downloads/118d462f5b64725a1d0dc6f401f27eda/pie_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/118d462f5b64725a1d0dc6f401f27eda/pie_features.ipynb \ No newline at end of file diff --git a/_downloads/1192dabe68f25112ec4f260bcb244a82/tick_xlabel_top.py b/_downloads/1192dabe68f25112ec4f260bcb244a82/tick_xlabel_top.py deleted file mode 120000 index 81b83c7058c..00000000000 --- a/_downloads/1192dabe68f25112ec4f260bcb244a82/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1192dabe68f25112ec4f260bcb244a82/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/119cf34e60345621d10f5083d229f5db/colorbar_tick_labelling_demo.ipynb b/_downloads/119cf34e60345621d10f5083d229f5db/colorbar_tick_labelling_demo.ipynb deleted file mode 100644 index c76bfd48232..00000000000 --- a/_downloads/119cf34e60345621d10f5083d229f5db/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colorbar Tick Labelling Demo\n\n\nProduce custom labelling for a colorbar.\n\nContributed by Scott Sinclair\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import cm\nfrom numpy.random import randn" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make plot with vertical (default) colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\ndata = np.clip(randn(250, 250), -1, 1)\n\ncax = ax.imshow(data, interpolation='nearest', cmap=cm.coolwarm)\nax.set_title('Gaussian noise with vertical colorbar')\n\n# Add colorbar, make sure to specify tick locations to match desired ticklabels\ncbar = fig.colorbar(cax, ticks=[-1, 0, 1])\ncbar.ax.set_yticklabels(['< -1', '0', '> 1']) # vertically oriented colorbar" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make plot with horizontal colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\ndata = np.clip(randn(250, 250), -1, 1)\n\ncax = ax.imshow(data, interpolation='nearest', cmap=cm.afmhot)\nax.set_title('Gaussian noise with horizontal colorbar')\n\ncbar = fig.colorbar(cax, ticks=[-1, 0, 1], orientation='horizontal')\ncbar.ax.set_xticklabels(['Low', 'Medium', 'High']) # horizontal colorbar\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/11a70d92d9dd54c2c56c745d1485f672/demo_anchored_direction_arrows.ipynb b/_downloads/11a70d92d9dd54c2c56c745d1485f672/demo_anchored_direction_arrows.ipynb deleted file mode 120000 index d3c95714d9c..00000000000 --- a/_downloads/11a70d92d9dd54c2c56c745d1485f672/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/11a70d92d9dd54c2c56c745d1485f672/demo_anchored_direction_arrows.ipynb \ No newline at end of file diff --git a/_downloads/11ab9776ec996040cd161500492109fe/pyplot_three.py b/_downloads/11ab9776ec996040cd161500492109fe/pyplot_three.py deleted file mode 120000 index 33ddd22e02f..00000000000 --- a/_downloads/11ab9776ec996040cd161500492109fe/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/11ab9776ec996040cd161500492109fe/pyplot_three.py \ No newline at end of file diff --git a/_downloads/11b4a00d79b5fde083bbfc3a76ac06a7/gridspec_multicolumn.py b/_downloads/11b4a00d79b5fde083bbfc3a76ac06a7/gridspec_multicolumn.py deleted file mode 100644 index 5a22aa2d310..00000000000 --- a/_downloads/11b4a00d79b5fde083bbfc3a76ac06a7/gridspec_multicolumn.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -======================================================= -Using Gridspec to make multi-column/row subplot layouts -======================================================= - -`.GridSpec` is a flexible way to layout -subplot grids. Here is an example with a 3x3 grid, and -axes spanning all three columns, two columns, and two rows. - -""" -import matplotlib.pyplot as plt -from matplotlib.gridspec import GridSpec - - -def format_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - -fig = plt.figure(constrained_layout=True) - -gs = GridSpec(3, 3, figure=fig) -ax1 = fig.add_subplot(gs[0, :]) -# identical to ax1 = plt.subplot(gs.new_subplotspec((0, 0), colspan=3)) -ax2 = fig.add_subplot(gs[1, :-1]) -ax3 = fig.add_subplot(gs[1:, -1]) -ax4 = fig.add_subplot(gs[-1, 0]) -ax5 = fig.add_subplot(gs[-1, -2]) - -fig.suptitle("GridSpec") -format_axes(fig) - -plt.show() diff --git a/_downloads/11bac96e8009c810169090de205226df/csd_demo.ipynb b/_downloads/11bac96e8009c810169090de205226df/csd_demo.ipynb deleted file mode 120000 index 26ca4547032..00000000000 --- a/_downloads/11bac96e8009c810169090de205226df/csd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/11bac96e8009c810169090de205226df/csd_demo.ipynb \ No newline at end of file diff --git a/_downloads/11bd97b6824888a04ff6c818fbcc3456/custom_shaded_3d_surface.py b/_downloads/11bd97b6824888a04ff6c818fbcc3456/custom_shaded_3d_surface.py deleted file mode 100644 index e165c59ef28..00000000000 --- a/_downloads/11bd97b6824888a04ff6c818fbcc3456/custom_shaded_3d_surface.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -======================================= -Custom hillshading in a 3D surface plot -======================================= - -Demonstrates using custom hillshading in a 3D surface plot. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib import cbook -from matplotlib import cm -from matplotlib.colors import LightSource -import matplotlib.pyplot as plt -import numpy as np - -# Load and format data -with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \ - np.load(file) as dem: - z = dem['elevation'] - nrows, ncols = z.shape - x = np.linspace(dem['xmin'], dem['xmax'], ncols) - y = np.linspace(dem['ymin'], dem['ymax'], nrows) - x, y = np.meshgrid(x, y) - -region = np.s_[5:50, 5:50] -x, y, z = x[region], y[region], z[region] - -# Set up plot -fig, ax = plt.subplots(subplot_kw=dict(projection='3d')) - -ls = LightSource(270, 45) -# To use a custom hillshading mode, override the built-in shading and pass -# in the rgb colors of the shaded surface calculated from "shade". -rgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft') -surf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb, - linewidth=0, antialiased=False, shade=False) - -plt.show() diff --git a/_downloads/11c3f8f9b8aad9435d7362562678fa7d/tick_label_right.ipynb b/_downloads/11c3f8f9b8aad9435d7362562678fa7d/tick_label_right.ipynb deleted file mode 120000 index 68250b4027c..00000000000 --- a/_downloads/11c3f8f9b8aad9435d7362562678fa7d/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/11c3f8f9b8aad9435d7362562678fa7d/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/11c8720f6cf6a3c92632bed16d84ce73/fonts_demo_kw.ipynb b/_downloads/11c8720f6cf6a3c92632bed16d84ce73/fonts_demo_kw.ipynb deleted file mode 120000 index f2724959452..00000000000 --- a/_downloads/11c8720f6cf6a3c92632bed16d84ce73/fonts_demo_kw.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/11c8720f6cf6a3c92632bed16d84ce73/fonts_demo_kw.ipynb \ No newline at end of file diff --git a/_downloads/11c8c6b564a34d38f2688f734d0151a2/markevery_prop_cycle.ipynb b/_downloads/11c8c6b564a34d38f2688f734d0151a2/markevery_prop_cycle.ipynb deleted file mode 120000 index 5d36641d699..00000000000 --- a/_downloads/11c8c6b564a34d38f2688f734d0151a2/markevery_prop_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/11c8c6b564a34d38f2688f734d0151a2/markevery_prop_cycle.ipynb \ No newline at end of file diff --git a/_downloads/11cd5287e12be054c10233b646917055/skewt.ipynb b/_downloads/11cd5287e12be054c10233b646917055/skewt.ipynb deleted file mode 120000 index 176accd5b18..00000000000 --- a/_downloads/11cd5287e12be054c10233b646917055/skewt.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/11cd5287e12be054c10233b646917055/skewt.ipynb \ No newline at end of file diff --git a/_downloads/11d081f31656d51c7272fc59dc20498e/radio_buttons.ipynb b/_downloads/11d081f31656d51c7272fc59dc20498e/radio_buttons.ipynb deleted file mode 120000 index 571e396971b..00000000000 --- a/_downloads/11d081f31656d51c7272fc59dc20498e/radio_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/11d081f31656d51c7272fc59dc20498e/radio_buttons.ipynb \ No newline at end of file diff --git a/_downloads/11d5405c8a4502b11d195a1410997b88/multipage_pdf.py b/_downloads/11d5405c8a4502b11d195a1410997b88/multipage_pdf.py deleted file mode 100644 index 9986237c7f2..00000000000 --- a/_downloads/11d5405c8a4502b11d195a1410997b88/multipage_pdf.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============= -Multipage PDF -============= - -This is a demo of creating a pdf file with several pages, -as well as adding metadata and annotations to pdf files. - -If you want to use a multipage pdf file using LaTeX, you need -to use `from matplotlib.backends.backend_pgf import PdfPages`. -This version however does not support `attach_note`. -""" - -import datetime -import numpy as np -from matplotlib.backends.backend_pdf import PdfPages -import matplotlib.pyplot as plt - -# Create the PdfPages object to which we will save the pages: -# The with statement makes sure that the PdfPages object is closed properly at -# the end of the block, even if an Exception occurs. -with PdfPages('multipage_pdf.pdf') as pdf: - plt.figure(figsize=(3, 3)) - plt.plot(range(7), [3, 1, 4, 1, 5, 9, 2], 'r-o') - plt.title('Page One') - pdf.savefig() # saves the current figure into a pdf page - plt.close() - - # if LaTeX is not installed or error caught, change to `usetex=False` - plt.rc('text', usetex=True) - plt.figure(figsize=(8, 6)) - x = np.arange(0, 5, 0.1) - plt.plot(x, np.sin(x), 'b-') - plt.title('Page Two') - pdf.attach_note("plot of sin(x)") # you can add a pdf note to - # attach metadata to a page - pdf.savefig() - plt.close() - - plt.rc('text', usetex=False) - fig = plt.figure(figsize=(4, 5)) - plt.plot(x, x ** 2, 'ko') - plt.title('Page Three') - pdf.savefig(fig) # or you can pass a Figure object to pdf.savefig - plt.close() - - # We can also set the file's metadata via the PdfPages object: - d = pdf.infodict() - d['Title'] = 'Multipage PDF Example' - d['Author'] = 'Jouni K. Sepp\xe4nen' - d['Subject'] = 'How to create a multipage pdf file and set its metadata' - d['Keywords'] = 'PdfPages multipage keywords author title subject' - d['CreationDate'] = datetime.datetime(2009, 11, 13) - d['ModDate'] = datetime.datetime.today() diff --git a/_downloads/11d945356c8b731dd6250b926cfe76a5/keyword_plotting.ipynb b/_downloads/11d945356c8b731dd6250b926cfe76a5/keyword_plotting.ipynb deleted file mode 120000 index 0135ab07fd4..00000000000 --- a/_downloads/11d945356c8b731dd6250b926cfe76a5/keyword_plotting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/11d945356c8b731dd6250b926cfe76a5/keyword_plotting.ipynb \ No newline at end of file diff --git a/_downloads/11d9a41ef851b96116bc2d7d752a779d/voxels_torus.py b/_downloads/11d9a41ef851b96116bc2d7d752a779d/voxels_torus.py deleted file mode 120000 index be6f7a3d835..00000000000 --- a/_downloads/11d9a41ef851b96116bc2d7d752a779d/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/11d9a41ef851b96116bc2d7d752a779d/voxels_torus.py \ No newline at end of file diff --git a/_downloads/11e1cdb0ed17c1eba825e06d8bec5486/multiple_histograms_side_by_side.py b/_downloads/11e1cdb0ed17c1eba825e06d8bec5486/multiple_histograms_side_by_side.py deleted file mode 100644 index 2c4ff176ce4..00000000000 --- a/_downloads/11e1cdb0ed17c1eba825e06d8bec5486/multiple_histograms_side_by_side.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -========================================== -Producing multiple histograms side by side -========================================== - -This example plots horizontal histograms of different samples along -a categorical x-axis. Additionally, the histograms are plotted to -be symmetrical about their x-position, thus making them very similar -to violin plots. - -To make this highly specialized plot, we can't use the standard ``hist`` -method. Instead we use ``barh`` to draw the horizontal bars directly. The -vertical positions and lengths of the bars are computed via the -``np.histogram`` function. The histograms for all the samples are -computed using the same range (min and max values) and number of bins, -so that the bins for each sample are in the same vertical positions. - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) -number_of_bins = 20 - -# An example of three data sets to compare -number_of_data_points = 387 -labels = ["A", "B", "C"] -data_sets = [np.random.normal(0, 1, number_of_data_points), - np.random.normal(6, 1, number_of_data_points), - np.random.normal(-3, 1, number_of_data_points)] - -# Computed quantities to aid plotting -hist_range = (np.min(data_sets), np.max(data_sets)) -binned_data_sets = [ - np.histogram(d, range=hist_range, bins=number_of_bins)[0] - for d in data_sets -] -binned_maximums = np.max(binned_data_sets, axis=1) -x_locations = np.arange(0, sum(binned_maximums), np.max(binned_maximums)) - -# The bin_edges are the same for all of the histograms -bin_edges = np.linspace(hist_range[0], hist_range[1], number_of_bins + 1) -centers = 0.5 * (bin_edges + np.roll(bin_edges, 1))[:-1] -heights = np.diff(bin_edges) - -# Cycle through and plot each histogram -fig, ax = plt.subplots() -for x_loc, binned_data in zip(x_locations, binned_data_sets): - lefts = x_loc - 0.5 * binned_data - ax.barh(centers, binned_data, height=heights, left=lefts) - -ax.set_xticks(x_locations) -ax.set_xticklabels(labels) - -ax.set_ylabel("Data values") -ax.set_xlabel("Data sets") - -plt.show() diff --git a/_downloads/11e425200fc3e8519b7ab37eb0bc8d28/subplot.py b/_downloads/11e425200fc3e8519b7ab37eb0bc8d28/subplot.py deleted file mode 100644 index 8457fba0992..00000000000 --- a/_downloads/11e425200fc3e8519b7ab37eb0bc8d28/subplot.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -================= -Multiple subplots -================= - -Simple demo with multiple subplots. -""" -import numpy as np -import matplotlib.pyplot as plt - - -x1 = np.linspace(0.0, 5.0) -x2 = np.linspace(0.0, 2.0) - -y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) -y2 = np.cos(2 * np.pi * x2) - -plt.subplot(2, 1, 1) -plt.plot(x1, y1, 'o-') -plt.title('A tale of 2 subplots') -plt.ylabel('Damped oscillation') - -plt.subplot(2, 1, 2) -plt.plot(x2, y2, '.-') -plt.xlabel('time (s)') -plt.ylabel('Undamped') - -plt.show() diff --git a/_downloads/11e95ef6e4760125d6adb15bbca61a04/custom_boxstyle01.py b/_downloads/11e95ef6e4760125d6adb15bbca61a04/custom_boxstyle01.py deleted file mode 120000 index 39bdcc5ee68..00000000000 --- a/_downloads/11e95ef6e4760125d6adb15bbca61a04/custom_boxstyle01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/11e95ef6e4760125d6adb15bbca61a04/custom_boxstyle01.py \ No newline at end of file diff --git a/_downloads/1200249a7aa18582ff6af785b6583d8f/text_alignment.ipynb b/_downloads/1200249a7aa18582ff6af785b6583d8f/text_alignment.ipynb deleted file mode 120000 index 4e0bf4409a9..00000000000 --- a/_downloads/1200249a7aa18582ff6af785b6583d8f/text_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1200249a7aa18582ff6af785b6583d8f/text_alignment.ipynb \ No newline at end of file diff --git a/_downloads/1203debde1fd0110e6acb8b6658408db/radian_demo.ipynb b/_downloads/1203debde1fd0110e6acb8b6658408db/radian_demo.ipynb deleted file mode 100644 index f11347ec76c..00000000000 --- a/_downloads/1203debde1fd0110e6acb8b6658408db/radian_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Radian ticks\n\n\nPlot with radians from the basic_units mockup example package.\n\n\nThis example shows how the unit class can determine the tick locating,\nformatting and axis labeling.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfrom basic_units import radians, degrees, cos\n\nx = [val*radians for val in np.arange(0, 15, 0.01)]\n\nfig, axs = plt.subplots(2)\n\naxs[0].plot(x, cos(x), xunits=radians)\naxs[1].plot(x, cos(x), xunits=degrees)\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1203faf52291384fec2baedc15cf34f4/tripcolor_demo.ipynb b/_downloads/1203faf52291384fec2baedc15cf34f4/tripcolor_demo.ipynb deleted file mode 100644 index 0fa4f1778a2..00000000000 --- a/_downloads/1203faf52291384fec2baedc15cf34f4/tripcolor_demo.ipynb +++ /dev/null @@ -1,162 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tripcolor Demo\n\n\nPseudocolor plots of unstructured triangular grids.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating a Triangulation without specifying the triangles results in the\nDelaunay triangulation of the points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# First create the x and y coordinates of the points.\nn_angles = 36\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\nz = (np.cos(radii) * np.cos(3 * angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "tripcolor plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_aspect('equal')\ntpc = ax1.tripcolor(triang, z, shading='flat')\nfig1.colorbar(tpc)\nax1.set_title('tripcolor of Delaunay triangulation, flat shading')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Illustrate Gouraud shading.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_aspect('equal')\ntpc = ax2.tripcolor(triang, z, shading='gouraud')\nfig2.colorbar(tpc)\nax2.set_title('tripcolor of Delaunay triangulation, gouraud shading')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify your own triangulation rather than perform a Delaunay\ntriangulation of the points, where each triangle is given by the indices of\nthe three points that make up the triangle, ordered in either a clockwise or\nanticlockwise manner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xy = np.asarray([\n [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890],\n [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898],\n [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919],\n [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949],\n [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959],\n [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965],\n [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980],\n [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996],\n [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021],\n [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005],\n [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987],\n [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968],\n [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926],\n [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905],\n [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886],\n [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879],\n [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872],\n [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933],\n [-0.077, 0.990], [-0.059, 0.993]])\nx, y = np.rad2deg(xy).T\n\ntriangles = np.asarray([\n [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64],\n [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63],\n [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68],\n [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7],\n [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9],\n [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12],\n [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71],\n [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71],\n [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19],\n [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24],\n [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28],\n [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45],\n [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40],\n [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40],\n [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38],\n [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]])\n\nxmid = x[triangles].mean(axis=1)\nymid = y[triangles].mean(axis=1)\nx0 = -5\ny0 = 52\nzfaces = np.exp(-0.01 * ((xmid - x0) * (xmid - x0) +\n (ymid - y0) * (ymid - y0)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Rather than create a Triangulation object, can simply pass x, y and triangles\narrays to tripcolor directly. It would be better to use a Triangulation\nobject if the same triangulation was to be used more than once to save\nduplicated calculations.\nCan specify one color value per face rather than one per point by using the\nfacecolors kwarg.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig3, ax3 = plt.subplots()\nax3.set_aspect('equal')\ntpc = ax3.tripcolor(x, y, triangles, facecolors=zfaces, edgecolors='k')\nfig3.colorbar(tpc)\nax3.set_title('tripcolor of user-specified triangulation')\nax3.set_xlabel('Longitude (degrees)')\nax3.set_ylabel('Latitude (degrees)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tripcolor\nmatplotlib.pyplot.tripcolor\nmatplotlib.tri\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/12063b1e447e68836db59f489d93fa0f/gradient_bar.ipynb b/_downloads/12063b1e447e68836db59f489d93fa0f/gradient_bar.ipynb deleted file mode 120000 index 1956683266e..00000000000 --- a/_downloads/12063b1e447e68836db59f489d93fa0f/gradient_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/12063b1e447e68836db59f489d93fa0f/gradient_bar.ipynb \ No newline at end of file diff --git a/_downloads/120845adfd85af4405f5c326da0f13b9/shading_example.py b/_downloads/120845adfd85af4405f5c326da0f13b9/shading_example.py deleted file mode 120000 index 98967fc0b8a..00000000000 --- a/_downloads/120845adfd85af4405f5c326da0f13b9/shading_example.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/120845adfd85af4405f5c326da0f13b9/shading_example.py \ No newline at end of file diff --git a/_downloads/120d5f91fd79e5651c29c9dd25752569/firefox.py b/_downloads/120d5f91fd79e5651c29c9dd25752569/firefox.py deleted file mode 120000 index ed7d4defada..00000000000 --- a/_downloads/120d5f91fd79e5651c29c9dd25752569/firefox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/120d5f91fd79e5651c29c9dd25752569/firefox.py \ No newline at end of file diff --git a/_downloads/1212b9c004732cd9a71cd63878c5c1a3/mri_with_eeg.py b/_downloads/1212b9c004732cd9a71cd63878c5c1a3/mri_with_eeg.py deleted file mode 120000 index 1cb66bbd32b..00000000000 --- a/_downloads/1212b9c004732cd9a71cd63878c5c1a3/mri_with_eeg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1212b9c004732cd9a71cd63878c5c1a3/mri_with_eeg.py \ No newline at end of file diff --git a/_downloads/1218cd5e94040ae915edce0c78b0043b/contours_in_optimization_demo.py b/_downloads/1218cd5e94040ae915edce0c78b0043b/contours_in_optimization_demo.py deleted file mode 120000 index b86e69f35bb..00000000000 --- a/_downloads/1218cd5e94040ae915edce0c78b0043b/contours_in_optimization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1218cd5e94040ae915edce0c78b0043b/contours_in_optimization_demo.py \ No newline at end of file diff --git a/_downloads/1219e066df5dbbe9c3edeb0d51b02da0/trisurf3d.ipynb b/_downloads/1219e066df5dbbe9c3edeb0d51b02da0/trisurf3d.ipynb deleted file mode 120000 index f664ff62389..00000000000 --- a/_downloads/1219e066df5dbbe9c3edeb0d51b02da0/trisurf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1219e066df5dbbe9c3edeb0d51b02da0/trisurf3d.ipynb \ No newline at end of file diff --git a/_downloads/1220f71aea5d815c3be833bb2faead0a/looking_glass.py b/_downloads/1220f71aea5d815c3be833bb2faead0a/looking_glass.py deleted file mode 100644 index aad0cba3a28..00000000000 --- a/_downloads/1220f71aea5d815c3be833bb2faead0a/looking_glass.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -============= -Looking Glass -============= - -Example using mouse events to simulate a looking glass for inspecting data. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.patches as patches - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x, y = np.random.rand(2, 200) - -fig, ax = plt.subplots() -circ = patches.Circle((0.5, 0.5), 0.25, alpha=0.8, fc='yellow') -ax.add_patch(circ) - - -ax.plot(x, y, alpha=0.2) -line, = ax.plot(x, y, alpha=1.0, clip_path=circ) -ax.set_title("Left click and drag to move looking glass") - - -class EventHandler(object): - def __init__(self): - fig.canvas.mpl_connect('button_press_event', self.onpress) - fig.canvas.mpl_connect('button_release_event', self.onrelease) - fig.canvas.mpl_connect('motion_notify_event', self.onmove) - self.x0, self.y0 = circ.center - self.pressevent = None - - def onpress(self, event): - if event.inaxes != ax: - return - - if not circ.contains(event)[0]: - return - - self.pressevent = event - - def onrelease(self, event): - self.pressevent = None - self.x0, self.y0 = circ.center - - def onmove(self, event): - if self.pressevent is None or event.inaxes != self.pressevent.inaxes: - return - - dx = event.xdata - self.pressevent.xdata - dy = event.ydata - self.pressevent.ydata - circ.center = self.x0 + dx, self.y0 + dy - line.set_clip_path(circ) - fig.canvas.draw() - -handler = EventHandler() -plt.show() diff --git a/_downloads/12268c833b751b9b93c2f62b8d3ba963/quiver3d.ipynb b/_downloads/12268c833b751b9b93c2f62b8d3ba963/quiver3d.ipynb deleted file mode 100644 index 2ad345aa721..00000000000 --- a/_downloads/12268c833b751b9b93c2f62b8d3ba963/quiver3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D quiver plot\n\n\nDemonstrates plotting directional arrows at points on a 3d meshgrid.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make the grid\nx, y, z = np.meshgrid(np.arange(-0.8, 1, 0.2),\n np.arange(-0.8, 1, 0.2),\n np.arange(-0.8, 1, 0.8))\n\n# Make the direction data for the arrows\nu = np.sin(np.pi * x) * np.cos(np.pi * y) * np.cos(np.pi * z)\nv = -np.cos(np.pi * x) * np.sin(np.pi * y) * np.cos(np.pi * z)\nw = (np.sqrt(2.0 / 3.0) * np.cos(np.pi * x) * np.cos(np.pi * y) *\n np.sin(np.pi * z))\n\nax.quiver(x, y, z, u, v, w, length=0.1, normalize=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/122724f26bb80d628927651bd38dcace/subplot.ipynb b/_downloads/122724f26bb80d628927651bd38dcace/subplot.ipynb deleted file mode 100644 index 53769aaa61a..00000000000 --- a/_downloads/122724f26bb80d628927651bd38dcace/subplot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiple subplots\n\n\nSimple demo with multiple subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nx1 = np.linspace(0.0, 5.0)\nx2 = np.linspace(0.0, 2.0)\n\ny1 = np.cos(2 * np.pi * x1) * np.exp(-x1)\ny2 = np.cos(2 * np.pi * x2)\n\nplt.subplot(2, 1, 1)\nplt.plot(x1, y1, 'o-')\nplt.title('A tale of 2 subplots')\nplt.ylabel('Damped oscillation')\n\nplt.subplot(2, 1, 2)\nplt.plot(x2, y2, '.-')\nplt.xlabel('time (s)')\nplt.ylabel('Undamped')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1238079545d2a43cd39237772fd209b8/arrow_guide.ipynb b/_downloads/1238079545d2a43cd39237772fd209b8/arrow_guide.ipynb deleted file mode 120000 index 6576c050731..00000000000 --- a/_downloads/1238079545d2a43cd39237772fd209b8/arrow_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1238079545d2a43cd39237772fd209b8/arrow_guide.ipynb \ No newline at end of file diff --git a/_downloads/123c5d1d16e0ecaba69f4375d0ab27ce/specgram_demo.ipynb b/_downloads/123c5d1d16e0ecaba69f4375d0ab27ce/specgram_demo.ipynb deleted file mode 100644 index 1e9627f512b..00000000000 --- a/_downloads/123c5d1d16e0ecaba69f4375d0ab27ce/specgram_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spectrogram Demo\n\n\nDemo of a spectrogram plot (`~.axes.Axes.specgram`).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ndt = 0.0005\nt = np.arange(0.0, 20.0, dt)\ns1 = np.sin(2 * np.pi * 100 * t)\ns2 = 2 * np.sin(2 * np.pi * 400 * t)\n\n# create a transient \"chirp\"\ns2[t <= 10] = s2[12 <= t] = 0\n\n# add some noise into the mix\nnse = 0.01 * np.random.random(size=len(t))\n\nx = s1 + s2 + nse # the signal\nNFFT = 1024 # the length of the windowing segments\nFs = int(1.0 / dt) # the sampling frequency\n\nfig, (ax1, ax2) = plt.subplots(nrows=2)\nax1.plot(t, x)\nPxx, freqs, bins, im = ax2.specgram(x, NFFT=NFFT, Fs=Fs, noverlap=900)\n# The `specgram` method returns 4 objects. They are:\n# - Pxx: the periodogram\n# - freqs: the frequency vector\n# - bins: the centers of the time bins\n# - im: the matplotlib.image.AxesImage instance representing the data in the plot\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.specgram\nmatplotlib.pyplot.specgram" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/124552bea6449ae9719996a170ef24c9/embedding_webagg_sgskip.py b/_downloads/124552bea6449ae9719996a170ef24c9/embedding_webagg_sgskip.py deleted file mode 100644 index 91ecd69fe20..00000000000 --- a/_downloads/124552bea6449ae9719996a170ef24c9/embedding_webagg_sgskip.py +++ /dev/null @@ -1,249 +0,0 @@ -""" -================ -Embedding WebAgg -================ - -This example demonstrates how to embed matplotlib WebAgg interactive -plotting in your own web application and framework. It is not -necessary to do all this if you merely want to display a plot in a -browser or use matplotlib's built-in Tornado-based server "on the -side". - -The framework being used must support web sockets. -""" - -import io - -try: - import tornado -except ImportError: - raise RuntimeError("This example requires tornado.") -import tornado.web -import tornado.httpserver -import tornado.ioloop -import tornado.websocket - - -from matplotlib.backends.backend_webagg_core import ( - FigureManagerWebAgg, new_figure_manager_given_figure) -from matplotlib.figure import Figure - -import numpy as np - -import json - - -def create_figure(): - """ - Creates a simple example figure. - """ - fig = Figure() - a = fig.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2 * np.pi * t) - a.plot(t, s) - return fig - - -# The following is the content of the web page. You would normally -# generate this using some sort of template facility in your web -# framework, but here we just use Python string formatting. -html_content = """ - - - - - - - - - - - - - - matplotlib - - - -
-
- - -""" - - -class MyApplication(tornado.web.Application): - class MainPage(tornado.web.RequestHandler): - """ - Serves the main HTML page. - """ - - def get(self): - manager = self.application.manager - ws_uri = "ws://{req.host}/".format(req=self.request) - content = html_content % { - "ws_uri": ws_uri, "fig_id": manager.num} - self.write(content) - - class MplJs(tornado.web.RequestHandler): - """ - Serves the generated matplotlib javascript file. The content - is dynamically generated based on which toolbar functions the - user has defined. Call `FigureManagerWebAgg` to get its - content. - """ - - def get(self): - self.set_header('Content-Type', 'application/javascript') - js_content = FigureManagerWebAgg.get_javascript() - - self.write(js_content) - - class Download(tornado.web.RequestHandler): - """ - Handles downloading of the figure in various file formats. - """ - - def get(self, fmt): - manager = self.application.manager - - mimetypes = { - 'ps': 'application/postscript', - 'eps': 'application/postscript', - 'pdf': 'application/pdf', - 'svg': 'image/svg+xml', - 'png': 'image/png', - 'jpeg': 'image/jpeg', - 'tif': 'image/tiff', - 'emf': 'application/emf' - } - - self.set_header('Content-Type', mimetypes.get(fmt, 'binary')) - - buff = io.BytesIO() - manager.canvas.figure.savefig(buff, format=fmt) - self.write(buff.getvalue()) - - class WebSocket(tornado.websocket.WebSocketHandler): - """ - A websocket for interactive communication between the plot in - the browser and the server. - - In addition to the methods required by tornado, it is required to - have two callback methods: - - - ``send_json(json_content)`` is called by matplotlib when - it needs to send json to the browser. `json_content` is - a JSON tree (Python dictionary), and it is the responsibility - of this implementation to encode it as a string to send over - the socket. - - - ``send_binary(blob)`` is called to send binary image data - to the browser. - """ - supports_binary = True - - def open(self): - # Register the websocket with the FigureManager. - manager = self.application.manager - manager.add_web_socket(self) - if hasattr(self, 'set_nodelay'): - self.set_nodelay(True) - - def on_close(self): - # When the socket is closed, deregister the websocket with - # the FigureManager. - manager = self.application.manager - manager.remove_web_socket(self) - - def on_message(self, message): - # The 'supports_binary' message is relevant to the - # websocket itself. The other messages get passed along - # to matplotlib as-is. - - # Every message has a "type" and a "figure_id". - message = json.loads(message) - if message['type'] == 'supports_binary': - self.supports_binary = message['value'] - else: - manager = self.application.manager - manager.handle_json(message) - - def send_json(self, content): - self.write_message(json.dumps(content)) - - def send_binary(self, blob): - if self.supports_binary: - self.write_message(blob, binary=True) - else: - data_uri = "data:image/png;base64,{0}".format( - blob.encode('base64').replace('\n', '')) - self.write_message(data_uri) - - def __init__(self, figure): - self.figure = figure - self.manager = new_figure_manager_given_figure(id(figure), figure) - - super().__init__([ - # Static files for the CSS and JS - (r'/_static/(.*)', - tornado.web.StaticFileHandler, - {'path': FigureManagerWebAgg.get_static_file_path()}), - - # The page that contains all of the pieces - ('/', self.MainPage), - - ('/mpl.js', self.MplJs), - - # Sends images and events to the browser, and receives - # events from the browser - ('/ws', self.WebSocket), - - # Handles the downloading (i.e., saving) of static images - (r'/download.([a-z0-9.]+)', self.Download), - ]) - - -if __name__ == "__main__": - figure = create_figure() - application = MyApplication(figure) - - http_server = tornado.httpserver.HTTPServer(application) - http_server.listen(8080) - - print("http://127.0.0.1:8080/") - print("Press Ctrl+C to quit") - - tornado.ioloop.IOLoop.instance().start() diff --git a/_downloads/124cb5df01794e1d8d2d24b4e7ac0890/quadmesh_demo.py b/_downloads/124cb5df01794e1d8d2d24b4e7ac0890/quadmesh_demo.py deleted file mode 120000 index 5e95c956547..00000000000 --- a/_downloads/124cb5df01794e1d8d2d24b4e7ac0890/quadmesh_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/124cb5df01794e1d8d2d24b4e7ac0890/quadmesh_demo.py \ No newline at end of file diff --git a/_downloads/124f4ede5ec77bf10a290e0091b5494b/anchored_artists.py b/_downloads/124f4ede5ec77bf10a290e0091b5494b/anchored_artists.py deleted file mode 100644 index cd829f80fb2..00000000000 --- a/_downloads/124f4ede5ec77bf10a290e0091b5494b/anchored_artists.py +++ /dev/null @@ -1,128 +0,0 @@ -""" -================ -Anchored Artists -================ - -This example illustrates the use of the anchored objects without the -helper classes found in the :ref:`toolkit_axesgrid1-index`. This version -of the figure is similar to the one found in -:doc:`/gallery/axes_grid1/simple_anchored_artists`, but it is -implemented using only the matplotlib namespace, without the help -of additional toolkits. -""" - -from matplotlib import pyplot as plt -from matplotlib.patches import Rectangle, Ellipse -from matplotlib.offsetbox import ( - AnchoredOffsetbox, AuxTransformBox, DrawingArea, TextArea, VPacker) - - -class AnchoredText(AnchoredOffsetbox): - def __init__(self, s, loc, pad=0.4, borderpad=0.5, - prop=None, frameon=True): - self.txt = TextArea(s, minimumdescent=False) - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self.txt, prop=prop, frameon=frameon) - - -def draw_text(ax): - """ - Draw a text-box anchored to the upper-left corner of the figure. - """ - at = AnchoredText("Figure 1a", loc='upper left', frameon=True) - at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at) - - -class AnchoredDrawingArea(AnchoredOffsetbox): - def __init__(self, width, height, xdescent, ydescent, - loc, pad=0.4, borderpad=0.5, prop=None, frameon=True): - self.da = DrawingArea(width, height, xdescent, ydescent) - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self.da, prop=None, frameon=frameon) - - -def draw_circle(ax): - """ - Draw a circle in axis coordinates - """ - from matplotlib.patches import Circle - ada = AnchoredDrawingArea(20, 20, 0, 0, - loc='upper right', pad=0., frameon=False) - p = Circle((10, 10), 10) - ada.da.add_artist(p) - ax.add_artist(ada) - - -class AnchoredEllipse(AnchoredOffsetbox): - def __init__(self, transform, width, height, angle, loc, - pad=0.1, borderpad=0.1, prop=None, frameon=True): - """ - Draw an ellipse the size in data coordinate of the give axes. - - pad, borderpad in fraction of the legend font size (or prop) - """ - self._box = AuxTransformBox(transform) - self.ellipse = Ellipse((0, 0), width, height, angle) - self._box.add_artist(self.ellipse) - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self._box, prop=prop, frameon=frameon) - - -def draw_ellipse(ax): - """ - Draw an ellipse of width=0.1, height=0.15 in data coordinates - """ - ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0., - loc='lower left', pad=0.5, borderpad=0.4, - frameon=True) - - ax.add_artist(ae) - - -class AnchoredSizeBar(AnchoredOffsetbox): - def __init__(self, transform, size, label, loc, - pad=0.1, borderpad=0.1, sep=2, prop=None, frameon=True): - """ - Draw a horizontal bar with the size in data coordinate of the given - axes. A label will be drawn underneath (center-aligned). - - pad, borderpad in fraction of the legend font size (or prop) - sep in points. - """ - self.size_bar = AuxTransformBox(transform) - self.size_bar.add_artist(Rectangle((0, 0), size, 0, ec="black", lw=1.0)) - - self.txt_label = TextArea(label, minimumdescent=False) - - self._box = VPacker(children=[self.size_bar, self.txt_label], - align="center", - pad=0, sep=sep) - - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self._box, prop=prop, frameon=frameon) - - -def draw_sizebar(ax): - """ - Draw a horizontal bar with length of 0.1 in data coordinates, - with a fixed label underneath. - """ - asb = AnchoredSizeBar(ax.transData, - 0.1, - r"1$^{\prime}$", - loc='lower center', - pad=0.1, borderpad=0.5, sep=5, - frameon=False) - ax.add_artist(asb) - - -ax = plt.gca() -ax.set_aspect(1.) - -draw_text(ax) -draw_circle(ax) -draw_ellipse(ax) -draw_sizebar(ax) - -plt.show() diff --git a/_downloads/12534a4e3fa842ce936e22a6dde041ea/annotate_explain.ipynb b/_downloads/12534a4e3fa842ce936e22a6dde041ea/annotate_explain.ipynb deleted file mode 120000 index ca257c73f8a..00000000000 --- a/_downloads/12534a4e3fa842ce936e22a6dde041ea/annotate_explain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/12534a4e3fa842ce936e22a6dde041ea/annotate_explain.ipynb \ No newline at end of file diff --git a/_downloads/12548d041bbb643ef87d565ad4ab4db8/fill_between_alpha.ipynb b/_downloads/12548d041bbb643ef87d565ad4ab4db8/fill_between_alpha.ipynb deleted file mode 120000 index 41224754a61..00000000000 --- a/_downloads/12548d041bbb643ef87d565ad4ab4db8/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/12548d041bbb643ef87d565ad4ab4db8/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/125787b85dd0a1ddf029aea3d6b96773/image_transparency_blend.ipynb b/_downloads/125787b85dd0a1ddf029aea3d6b96773/image_transparency_blend.ipynb deleted file mode 120000 index b48f923e0e4..00000000000 --- a/_downloads/125787b85dd0a1ddf029aea3d6b96773/image_transparency_blend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/125787b85dd0a1ddf029aea3d6b96773/image_transparency_blend.ipynb \ No newline at end of file diff --git a/_downloads/12617664675eaf90e53eaf24675962df/markevery_prop_cycle.py b/_downloads/12617664675eaf90e53eaf24675962df/markevery_prop_cycle.py deleted file mode 120000 index 75735fbc73e..00000000000 --- a/_downloads/12617664675eaf90e53eaf24675962df/markevery_prop_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/12617664675eaf90e53eaf24675962df/markevery_prop_cycle.py \ No newline at end of file diff --git a/_downloads/126a78dbcdb97722cdb11258a7107428/embedding_in_gtk3_sgskip.py b/_downloads/126a78dbcdb97722cdb11258a7107428/embedding_in_gtk3_sgskip.py deleted file mode 120000 index 7d02fbf2ec8..00000000000 --- a/_downloads/126a78dbcdb97722cdb11258a7107428/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/126a78dbcdb97722cdb11258a7107428/embedding_in_gtk3_sgskip.py \ No newline at end of file diff --git a/_downloads/12722b0898df8cc55e80e0057cb89f57/tick-formatters.ipynb b/_downloads/12722b0898df8cc55e80e0057cb89f57/tick-formatters.ipynb deleted file mode 120000 index 031e652397e..00000000000 --- a/_downloads/12722b0898df8cc55e80e0057cb89f57/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/12722b0898df8cc55e80e0057cb89f57/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/12760657d09f24ac9a8d5d0bc77ff608/gallery_python.zip b/_downloads/12760657d09f24ac9a8d5d0bc77ff608/gallery_python.zip deleted file mode 120000 index 271327e608b..00000000000 --- a/_downloads/12760657d09f24ac9a8d5d0bc77ff608/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.0/_downloads/12760657d09f24ac9a8d5d0bc77ff608/gallery_python.zip \ No newline at end of file diff --git a/_downloads/1279192619655e8dc0f4c2c38d451f9a/agg_buffer_to_array.ipynb b/_downloads/1279192619655e8dc0f4c2c38d451f9a/agg_buffer_to_array.ipynb deleted file mode 100644 index 0a69514948f..00000000000 --- a/_downloads/1279192619655e8dc0f4c2c38d451f9a/agg_buffer_to_array.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Agg Buffer To Array\n\n\nConvert a rendered figure to its image (NumPy array) representation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# make an agg figure\nfig, ax = plt.subplots()\nax.plot([1, 2, 3])\nax.set_title('a simple figure')\nfig.canvas.draw()\n\n# grab the pixel buffer and dump it into a numpy array\nX = np.array(fig.canvas.renderer.buffer_rgba())\n\n# now display the array X as an Axes in a new figure\nfig2 = plt.figure()\nax2 = fig2.add_subplot(111, frameon=False)\nax2.imshow(X)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/127d75c81c3ea245f56d145be230bf96/custom_boxstyle02.ipynb b/_downloads/127d75c81c3ea245f56d145be230bf96/custom_boxstyle02.ipynb deleted file mode 100644 index 3a24db9b3db..00000000000 --- a/_downloads/127d75c81c3ea245f56d145be230bf96/custom_boxstyle02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Boxstyle02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.path import Path\nfrom matplotlib.patches import BoxStyle\nimport matplotlib.pyplot as plt\n\n\n# we may derive from matplotlib.patches.BoxStyle._Base class.\n# You need to override transmute method in this case.\nclass MyStyle(BoxStyle._Base):\n \"\"\"\n A simple box.\n \"\"\"\n\n def __init__(self, pad=0.3):\n \"\"\"\n The arguments need to be floating numbers and need to have\n default values.\n\n *pad*\n amount of padding\n \"\"\"\n\n self.pad = pad\n super().__init__()\n\n def transmute(self, x0, y0, width, height, mutation_size):\n \"\"\"\n Given the location and size of the box, return the path of\n the box around it.\n\n - *x0*, *y0*, *width*, *height* : location and size of the box\n - *mutation_size* : a reference scale for the mutation.\n\n Often, the *mutation_size* is the font size of the text.\n You don't need to worry about the rotation as it is\n automatically taken care of.\n \"\"\"\n\n # padding\n pad = mutation_size * self.pad\n\n # width and height with padding added.\n width, height = width + 2.*pad, \\\n height + 2.*pad,\n\n # boundary of the padded box\n x0, y0 = x0-pad, y0-pad,\n x1, y1 = x0+width, y0 + height\n\n cp = [(x0, y0),\n (x1, y0), (x1, y1), (x0, y1),\n (x0-pad, (y0+y1)/2.), (x0, y0),\n (x0, y0)]\n\n com = [Path.MOVETO,\n Path.LINETO, Path.LINETO, Path.LINETO,\n Path.LINETO, Path.LINETO,\n Path.CLOSEPOLY]\n\n path = Path(cp, com)\n\n return path\n\n\n# register the custom style\nBoxStyle._style_list[\"angled\"] = MyStyle\n\nfig, ax = plt.subplots(figsize=(3, 3))\nax.text(0.5, 0.5, \"Test\", size=30, va=\"center\", ha=\"center\", rotation=30,\n bbox=dict(boxstyle=\"angled,pad=0.5\", alpha=0.2))\n\ndel BoxStyle._style_list[\"angled\"]\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/127fb8da570ee0e304e652241b545c20/pyplot_two_subplots.py b/_downloads/127fb8da570ee0e304e652241b545c20/pyplot_two_subplots.py deleted file mode 120000 index 72df36d05fe..00000000000 --- a/_downloads/127fb8da570ee0e304e652241b545c20/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/127fb8da570ee0e304e652241b545c20/pyplot_two_subplots.py \ No newline at end of file diff --git a/_downloads/12927e05bde893cbae7f16aaed1b87eb/demo_floating_axis.py b/_downloads/12927e05bde893cbae7f16aaed1b87eb/demo_floating_axis.py deleted file mode 120000 index 173fc1a1a14..00000000000 --- a/_downloads/12927e05bde893cbae7f16aaed1b87eb/demo_floating_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/12927e05bde893cbae7f16aaed1b87eb/demo_floating_axis.py \ No newline at end of file diff --git a/_downloads/12a15d8f9ee7d7373e974c6b749bada7/symlog_demo.ipynb b/_downloads/12a15d8f9ee7d7373e974c6b749bada7/symlog_demo.ipynb deleted file mode 120000 index 7963bb89df2..00000000000 --- a/_downloads/12a15d8f9ee7d7373e974c6b749bada7/symlog_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/12a15d8f9ee7d7373e974c6b749bada7/symlog_demo.ipynb \ No newline at end of file diff --git a/_downloads/12aae39cf6f70beee2f6905d652bc5d0/tricontour_smooth_delaunay.py b/_downloads/12aae39cf6f70beee2f6905d652bc5d0/tricontour_smooth_delaunay.py deleted file mode 100644 index 23c6b902398..00000000000 --- a/_downloads/12aae39cf6f70beee2f6905d652bc5d0/tricontour_smooth_delaunay.py +++ /dev/null @@ -1,161 +0,0 @@ -""" -========================== -Tricontour Smooth Delaunay -========================== - -Demonstrates high-resolution tricontouring of a random set of points; -a `matplotlib.tri.TriAnalyzer` is used to improve the plot quality. - -The initial data points and triangular grid for this demo are: - -- a set of random points is instantiated, inside [-1, 1] x [-1, 1] square -- A Delaunay triangulation of these points is then computed, of which a - random subset of triangles is masked out by the user (based on - *init_mask_frac* parameter). This simulates invalidated data. - -The proposed generic procedure to obtain a high resolution contouring of such -a data set is the following: - -1. Compute an extended mask with a `matplotlib.tri.TriAnalyzer`, which will - exclude badly shaped (flat) triangles from the border of the - triangulation. Apply the mask to the triangulation (using set_mask). -2. Refine and interpolate the data using a - `matplotlib.tri.UniformTriRefiner`. -3. Plot the refined data with `~.axes.Axes.tricontour`. - -""" -from matplotlib.tri import Triangulation, TriAnalyzer, UniformTriRefiner -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import numpy as np - - -#----------------------------------------------------------------------------- -# Analytical test function -#----------------------------------------------------------------------------- -def experiment_res(x, y): - """An analytic function representing experiment results.""" - x = 2 * x - r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2) - theta1 = np.arctan2(0.5 - x, 0.5 - y) - r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2) - theta2 = np.arctan2(-x - 0.2, -y - 0.2) - z = (4 * (np.exp((r1/10)**2) - 1) * 30 * np.cos(3 * theta1) + - (np.exp((r2/10)**2) - 1) * 30 * np.cos(5 * theta2) + - 2 * (x**2 + y**2)) - return (np.max(z) - z) / (np.max(z) - np.min(z)) - -#----------------------------------------------------------------------------- -# Generating the initial data test points and triangulation for the demo -#----------------------------------------------------------------------------- -# User parameters for data test points -n_test = 200 # Number of test data points, tested from 3 to 5000 for subdiv=3 - -subdiv = 3 # Number of recursive subdivisions of the initial mesh for smooth - # plots. Values >3 might result in a very high number of triangles - # for the refine mesh: new triangles numbering = (4**subdiv)*ntri - -init_mask_frac = 0.0 # Float > 0. adjusting the proportion of - # (invalid) initial triangles which will be masked - # out. Enter 0 for no mask. - -min_circle_ratio = .01 # Minimum circle ratio - border triangles with circle - # ratio below this will be masked if they touch a - # border. Suggested value 0.01; use -1 to keep - # all triangles. - -# Random points -random_gen = np.random.RandomState(seed=19680801) -x_test = random_gen.uniform(-1., 1., size=n_test) -y_test = random_gen.uniform(-1., 1., size=n_test) -z_test = experiment_res(x_test, y_test) - -# meshing with Delaunay triangulation -tri = Triangulation(x_test, y_test) -ntri = tri.triangles.shape[0] - -# Some invalid data are masked out -mask_init = np.zeros(ntri, dtype=bool) -masked_tri = random_gen.randint(0, ntri, int(ntri * init_mask_frac)) -mask_init[masked_tri] = True -tri.set_mask(mask_init) - - -#----------------------------------------------------------------------------- -# Improving the triangulation before high-res plots: removing flat triangles -#----------------------------------------------------------------------------- -# masking badly shaped triangles at the border of the triangular mesh. -mask = TriAnalyzer(tri).get_flat_tri_mask(min_circle_ratio) -tri.set_mask(mask) - -# refining the data -refiner = UniformTriRefiner(tri) -tri_refi, z_test_refi = refiner.refine_field(z_test, subdiv=subdiv) - -# analytical 'results' for comparison -z_expected = experiment_res(tri_refi.x, tri_refi.y) - -# for the demo: loading the 'flat' triangles for plot -flat_tri = Triangulation(x_test, y_test) -flat_tri.set_mask(~mask) - - -#----------------------------------------------------------------------------- -# Now the plots -#----------------------------------------------------------------------------- -# User options for plots -plot_tri = True # plot of base triangulation -plot_masked_tri = True # plot of excessively flat excluded triangles -plot_refi_tri = False # plot of refined triangulation -plot_expected = False # plot of analytical function values for comparison - - -# Graphical options for tricontouring -levels = np.arange(0., 1., 0.025) -cmap = cm.get_cmap(name='Blues', lut=None) - -fig, ax = plt.subplots() -ax.set_aspect('equal') -ax.set_title("Filtering a Delaunay mesh\n" + - "(application to high-resolution tricontouring)") - -# 1) plot of the refined (computed) data contours: -ax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap, - linewidths=[2.0, 0.5, 1.0, 0.5]) -# 2) plot of the expected (analytical) data contours (dashed): -if plot_expected: - ax.tricontour(tri_refi, z_expected, levels=levels, cmap=cmap, - linestyles='--') -# 3) plot of the fine mesh on which interpolation was done: -if plot_refi_tri: - ax.triplot(tri_refi, color='0.97') -# 4) plot of the initial 'coarse' mesh: -if plot_tri: - ax.triplot(tri, color='0.7') -# 4) plot of the unvalidated triangles from naive Delaunay Triangulation: -if plot_masked_tri: - ax.triplot(flat_tri, color='red') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.tri -matplotlib.tri.Triangulation -matplotlib.tri.TriAnalyzer -matplotlib.tri.UniformTriRefiner diff --git a/_downloads/12afa534551b02aac1a3edce98945de1/axhspan_demo.ipynb b/_downloads/12afa534551b02aac1a3edce98945de1/axhspan_demo.ipynb deleted file mode 120000 index 6eca38b191c..00000000000 --- a/_downloads/12afa534551b02aac1a3edce98945de1/axhspan_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/12afa534551b02aac1a3edce98945de1/axhspan_demo.ipynb \ No newline at end of file diff --git a/_downloads/12b939ccd9da047e2b6d5a22af34a2e0/pong_sgskip.ipynb b/_downloads/12b939ccd9da047e2b6d5a22af34a2e0/pong_sgskip.ipynb deleted file mode 100644 index 76a543f1c96..00000000000 --- a/_downloads/12b939ccd9da047e2b6d5a22af34a2e0/pong_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pong\n\n\nA small game demo using Matplotlib.\n\n.. only:: builder_html\n\n This example requires :download:`pipong.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import time\n\n\nimport matplotlib.pyplot as plt\nimport pipong\n\n\nfig, ax = plt.subplots()\ncanvas = ax.figure.canvas\nanimation = pipong.Game(ax)\n\n# disable the default key bindings\nif fig.canvas.manager.key_press_handler_id is not None:\n canvas.mpl_disconnect(fig.canvas.manager.key_press_handler_id)\n\n\n# reset the blitting background on redraw\ndef handle_redraw(event):\n animation.background = None\n\n\n# bootstrap after the first draw\ndef start_anim(event):\n canvas.mpl_disconnect(start_anim.cid)\n\n def local_draw():\n if animation.ax.get_renderer_cache():\n animation.draw(None)\n start_anim.timer.add_callback(local_draw)\n start_anim.timer.start()\n canvas.mpl_connect('draw_event', handle_redraw)\n\n\nstart_anim.cid = canvas.mpl_connect('draw_event', start_anim)\nstart_anim.timer = animation.canvas.new_timer()\nstart_anim.timer.interval = 1\n\ntstart = time.time()\n\nplt.show()\nprint('FPS: %f' % (animation.cnt/(time.time() - tstart)))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/12c0575a4f4b815f1db7427937435b98/demo_constrained_layout.ipynb b/_downloads/12c0575a4f4b815f1db7427937435b98/demo_constrained_layout.ipynb deleted file mode 120000 index 38a4902486b..00000000000 --- a/_downloads/12c0575a4f4b815f1db7427937435b98/demo_constrained_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/12c0575a4f4b815f1db7427937435b98/demo_constrained_layout.ipynb \ No newline at end of file diff --git a/_downloads/12c809606ac61c52169007cf19a725a9/fancytextbox_demo.ipynb b/_downloads/12c809606ac61c52169007cf19a725a9/fancytextbox_demo.ipynb deleted file mode 120000 index 682410868b4..00000000000 --- a/_downloads/12c809606ac61c52169007cf19a725a9/fancytextbox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/12c809606ac61c52169007cf19a725a9/fancytextbox_demo.ipynb \ No newline at end of file diff --git a/_downloads/12c8b0115e39b2140dba65d60d13f5d6/hinton_demo.py b/_downloads/12c8b0115e39b2140dba65d60d13f5d6/hinton_demo.py deleted file mode 100644 index 128d2ccb11b..00000000000 --- a/_downloads/12c8b0115e39b2140dba65d60d13f5d6/hinton_demo.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=============== -Hinton diagrams -=============== - -Hinton diagrams are useful for visualizing the values of a 2D array (e.g. -a weight matrix): Positive and negative values are represented by white and -black squares, respectively, and the size of each square represents the -magnitude of each value. - -Initial idea from David Warde-Farley on the SciPy Cookbook -""" -import numpy as np -import matplotlib.pyplot as plt - - -def hinton(matrix, max_weight=None, ax=None): - """Draw Hinton diagram for visualizing a weight matrix.""" - ax = ax if ax is not None else plt.gca() - - if not max_weight: - max_weight = 2 ** np.ceil(np.log(np.abs(matrix).max()) / np.log(2)) - - ax.patch.set_facecolor('gray') - ax.set_aspect('equal', 'box') - ax.xaxis.set_major_locator(plt.NullLocator()) - ax.yaxis.set_major_locator(plt.NullLocator()) - - for (x, y), w in np.ndenumerate(matrix): - color = 'white' if w > 0 else 'black' - size = np.sqrt(np.abs(w) / max_weight) - rect = plt.Rectangle([x - size / 2, y - size / 2], size, size, - facecolor=color, edgecolor=color) - ax.add_patch(rect) - - ax.autoscale_view() - ax.invert_yaxis() - - -if __name__ == '__main__': - # Fixing random state for reproducibility - np.random.seed(19680801) - - hinton(np.random.rand(20, 20) - 0.5) - plt.show() diff --git a/_downloads/12cb008cc56bd3704ae27af0e536d25f/fill_spiral.ipynb b/_downloads/12cb008cc56bd3704ae27af0e536d25f/fill_spiral.ipynb deleted file mode 120000 index 5f8a9b14cfe..00000000000 --- a/_downloads/12cb008cc56bd3704ae27af0e536d25f/fill_spiral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/12cb008cc56bd3704ae27af0e536d25f/fill_spiral.ipynb \ No newline at end of file diff --git a/_downloads/12cd080908119955bed76097890257fb/bbox_intersect.ipynb b/_downloads/12cd080908119955bed76097890257fb/bbox_intersect.ipynb deleted file mode 100644 index d45b58be65e..00000000000 --- a/_downloads/12cd080908119955bed76097890257fb/bbox_intersect.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Changing colors of lines intersecting a box\n\n\nThe lines intersecting the rectangle are colored in red, while the others\nare left as blue lines. This example showcases the `intersect_bbox` function.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.transforms import Bbox\nfrom matplotlib.path import Path\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nleft, bottom, width, height = (-1, -1, 2, 2)\nrect = plt.Rectangle((left, bottom), width, height,\n facecolor=\"black\", alpha=0.1)\n\nfig, ax = plt.subplots()\nax.add_patch(rect)\n\nbbox = Bbox.from_bounds(left, bottom, width, height)\n\nfor i in range(12):\n vertices = (np.random.random((2, 2)) - 0.5) * 6.0\n path = Path(vertices)\n if path.intersects_bbox(bbox):\n color = 'r'\n else:\n color = 'b'\n ax.plot(vertices[:, 0], vertices[:, 1], color=color)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/12d7b131325ce005b135978671cf953d/text_fontdict.py b/_downloads/12d7b131325ce005b135978671cf953d/text_fontdict.py deleted file mode 120000 index 5de1810e13a..00000000000 --- a/_downloads/12d7b131325ce005b135978671cf953d/text_fontdict.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/12d7b131325ce005b135978671cf953d/text_fontdict.py \ No newline at end of file diff --git a/_downloads/12f0b1b07e05033324878e104d49db55/custom_cmap.ipynb b/_downloads/12f0b1b07e05033324878e104d49db55/custom_cmap.ipynb deleted file mode 120000 index a1e67537a45..00000000000 --- a/_downloads/12f0b1b07e05033324878e104d49db55/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/12f0b1b07e05033324878e104d49db55/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/12f3c95e288d1248f39525a9cbae1b9c/svg_tooltip_sgskip.py b/_downloads/12f3c95e288d1248f39525a9cbae1b9c/svg_tooltip_sgskip.py deleted file mode 120000 index 7031f62048a..00000000000 --- a/_downloads/12f3c95e288d1248f39525a9cbae1b9c/svg_tooltip_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/12f3c95e288d1248f39525a9cbae1b9c/svg_tooltip_sgskip.py \ No newline at end of file diff --git a/_downloads/12f988776a8f665343bd3a3e57058a9b/color_cycle_default.ipynb b/_downloads/12f988776a8f665343bd3a3e57058a9b/color_cycle_default.ipynb deleted file mode 120000 index 228ff2522b5..00000000000 --- a/_downloads/12f988776a8f665343bd3a3e57058a9b/color_cycle_default.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/12f988776a8f665343bd3a3e57058a9b/color_cycle_default.ipynb \ No newline at end of file diff --git a/_downloads/130a68cbe07f5bc85e85756a5080499b/nested_pie.ipynb b/_downloads/130a68cbe07f5bc85e85756a5080499b/nested_pie.ipynb deleted file mode 120000 index 8dcf4e7c5f4..00000000000 --- a/_downloads/130a68cbe07f5bc85e85756a5080499b/nested_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/130a68cbe07f5bc85e85756a5080499b/nested_pie.ipynb \ No newline at end of file diff --git a/_downloads/130a7a69ad19d63de37ea053bad2c22b/simple_rgb.ipynb b/_downloads/130a7a69ad19d63de37ea053bad2c22b/simple_rgb.ipynb deleted file mode 100644 index 089ce4005da..00000000000 --- a/_downloads/130a7a69ad19d63de37ea053bad2c22b/simple_rgb.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple RGB\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.axes_rgb import RGBAxes\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef get_rgb():\n Z, extent = get_demo_image()\n\n Z[Z < 0] = 0.\n Z = Z / Z.max()\n\n R = Z[:13, :13]\n G = Z[2:, 2:]\n B = Z[:13, 2:]\n\n return R, G, B\n\n\nfig = plt.figure()\nax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8])\n\nr, g, b = get_rgb()\nkwargs = dict(origin=\"lower\", interpolation=\"nearest\")\nax.imshow_rgb(r, g, b, **kwargs)\n\nax.RGB.set_xlim(0., 9.5)\nax.RGB.set_ylim(0.9, 10.6)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/130aecf35f880003b3122b768ff81ca4/pgf.ipynb b/_downloads/130aecf35f880003b3122b768ff81ca4/pgf.ipynb deleted file mode 120000 index 62068d86a10..00000000000 --- a/_downloads/130aecf35f880003b3122b768ff81ca4/pgf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/130aecf35f880003b3122b768ff81ca4/pgf.ipynb \ No newline at end of file diff --git a/_downloads/131003d834c9563da5210e627d4c6cdb/log_bar.py b/_downloads/131003d834c9563da5210e627d4c6cdb/log_bar.py deleted file mode 120000 index 636684cc6da..00000000000 --- a/_downloads/131003d834c9563da5210e627d4c6cdb/log_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/131003d834c9563da5210e627d4c6cdb/log_bar.py \ No newline at end of file diff --git a/_downloads/13112e6aab431a90db8461bf906c5a6d/hist.ipynb b/_downloads/13112e6aab431a90db8461bf906c5a6d/hist.ipynb deleted file mode 120000 index 8fc7bd2dd23..00000000000 --- a/_downloads/13112e6aab431a90db8461bf906c5a6d/hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/13112e6aab431a90db8461bf906c5a6d/hist.ipynb \ No newline at end of file diff --git a/_downloads/131d158e81b262ebc937088478d60b25/xkcd.ipynb b/_downloads/131d158e81b262ebc937088478d60b25/xkcd.ipynb deleted file mode 120000 index f043d95898d..00000000000 --- a/_downloads/131d158e81b262ebc937088478d60b25/xkcd.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/131d158e81b262ebc937088478d60b25/xkcd.ipynb \ No newline at end of file diff --git a/_downloads/131eb38113d106bf0def7cec928266a8/fahrenheit_celsius_scales.ipynb b/_downloads/131eb38113d106bf0def7cec928266a8/fahrenheit_celsius_scales.ipynb deleted file mode 120000 index 5ff668ff58f..00000000000 --- a/_downloads/131eb38113d106bf0def7cec928266a8/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/131eb38113d106bf0def7cec928266a8/fahrenheit_celsius_scales.ipynb \ No newline at end of file diff --git a/_downloads/13214bfb44cefa9f96a60bbdba5f3990/polar_legend.ipynb b/_downloads/13214bfb44cefa9f96a60bbdba5f3990/polar_legend.ipynb deleted file mode 120000 index 0da623f657c..00000000000 --- a/_downloads/13214bfb44cefa9f96a60bbdba5f3990/polar_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/13214bfb44cefa9f96a60bbdba5f3990/polar_legend.ipynb \ No newline at end of file diff --git a/_downloads/132701dd6c45084ea7d385c9f3f324de/fahrenheit_celsius_scales.py b/_downloads/132701dd6c45084ea7d385c9f3f324de/fahrenheit_celsius_scales.py deleted file mode 120000 index a3f901c6c70..00000000000 --- a/_downloads/132701dd6c45084ea7d385c9f3f324de/fahrenheit_celsius_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/132701dd6c45084ea7d385c9f3f324de/fahrenheit_celsius_scales.py \ No newline at end of file diff --git a/_downloads/1327dbb9c7f4f4f248194d110ddf0a52/nested_pie.ipynb b/_downloads/1327dbb9c7f4f4f248194d110ddf0a52/nested_pie.ipynb deleted file mode 120000 index 93ffa5a65ba..00000000000 --- a/_downloads/1327dbb9c7f4f4f248194d110ddf0a52/nested_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1327dbb9c7f4f4f248194d110ddf0a52/nested_pie.ipynb \ No newline at end of file diff --git a/_downloads/1327fecca76444ef703683cc4610086e/double_pendulum.ipynb b/_downloads/1327fecca76444ef703683cc4610086e/double_pendulum.ipynb deleted file mode 120000 index 870797e11e2..00000000000 --- a/_downloads/1327fecca76444ef703683cc4610086e/double_pendulum.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1327fecca76444ef703683cc4610086e/double_pendulum.ipynb \ No newline at end of file diff --git a/_downloads/132f47ebf400196fbf7e16c6ae83fdaa/contour_corner_mask.ipynb b/_downloads/132f47ebf400196fbf7e16c6ae83fdaa/contour_corner_mask.ipynb deleted file mode 100644 index 79df864bdc6..00000000000 --- a/_downloads/132f47ebf400196fbf7e16c6ae83fdaa/contour_corner_mask.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Corner Mask\n\n\nIllustrate the difference between ``corner_mask=False`` and\n``corner_mask=True`` for masked contour plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Data to plot.\nx, y = np.meshgrid(np.arange(7), np.arange(10))\nz = np.sin(0.5 * x) * np.cos(0.52 * y)\n\n# Mask various z values.\nmask = np.zeros_like(z, dtype=bool)\nmask[2, 3:5] = True\nmask[3:5, 4] = True\nmask[7, 2] = True\nmask[5, 0] = True\nmask[0, 6] = True\nz = np.ma.array(z, mask=mask)\n\ncorner_masks = [False, True]\nfig, axs = plt.subplots(ncols=2)\nfor ax, corner_mask in zip(axs, corner_masks):\n cs = ax.contourf(x, y, z, corner_mask=corner_mask)\n ax.contour(cs, colors='k')\n ax.set_title('corner_mask = {0}'.format(corner_mask))\n\n # Plot grid.\n ax.grid(c='k', ls='-', alpha=0.3)\n\n # Indicate masked points with red circles.\n ax.plot(np.ma.array(x, mask=~mask), y, 'ro')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/133329f6ccbe4e7c06a22a5e36c7fa9e/multiple_histograms_side_by_side.py b/_downloads/133329f6ccbe4e7c06a22a5e36c7fa9e/multiple_histograms_side_by_side.py deleted file mode 120000 index c4af98ae567..00000000000 --- a/_downloads/133329f6ccbe4e7c06a22a5e36c7fa9e/multiple_histograms_side_by_side.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/133329f6ccbe4e7c06a22a5e36c7fa9e/multiple_histograms_side_by_side.py \ No newline at end of file diff --git a/_downloads/133d6b93e6be0d2a30bf6521b952cba8/axes_props.py b/_downloads/133d6b93e6be0d2a30bf6521b952cba8/axes_props.py deleted file mode 120000 index 2c0a6d2c7a3..00000000000 --- a/_downloads/133d6b93e6be0d2a30bf6521b952cba8/axes_props.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/133d6b93e6be0d2a30bf6521b952cba8/axes_props.py \ No newline at end of file diff --git a/_downloads/134e3c614df98c9ca81dbc9175fc02ec/time_series_histogram.ipynb b/_downloads/134e3c614df98c9ca81dbc9175fc02ec/time_series_histogram.ipynb deleted file mode 120000 index 39e4c6a69aa..00000000000 --- a/_downloads/134e3c614df98c9ca81dbc9175fc02ec/time_series_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/134e3c614df98c9ca81dbc9175fc02ec/time_series_histogram.ipynb \ No newline at end of file diff --git a/_downloads/134ed148e2c8b2091eff9e4bbb3384f4/pie_features.py b/_downloads/134ed148e2c8b2091eff9e4bbb3384f4/pie_features.py deleted file mode 100644 index d52f3a699ae..00000000000 --- a/_downloads/134ed148e2c8b2091eff9e4bbb3384f4/pie_features.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -=============== -Basic pie chart -=============== - -Demo of a basic pie chart plus a few additional features. - -In addition to the basic pie chart, this demo shows a few optional features: - - * slice labels - * auto-labeling the percentage - * offsetting a slice with "explode" - * drop-shadow - * custom start angle - -Note about the custom start angle: - -The default ``startangle`` is 0, which would start the "Frogs" slice on the -positive x-axis. This example sets ``startangle = 90`` such that everything is -rotated counter-clockwise by 90 degrees, and the frog slice starts on the -positive y-axis. -""" -import matplotlib.pyplot as plt - -# Pie chart, where the slices will be ordered and plotted counter-clockwise: -labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' -sizes = [15, 30, 45, 10] -explode = (0, 0.1, 0, 0) # only "explode" the 2nd slice (i.e. 'Hogs') - -fig1, ax1 = plt.subplots() -ax1.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%', - shadow=True, startangle=90) -ax1.axis('equal') # Equal aspect ratio ensures that pie is drawn as a circle. - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie diff --git a/_downloads/1358fb13a477970fd3953dee7a8603b1/mixed_subplots.py b/_downloads/1358fb13a477970fd3953dee7a8603b1/mixed_subplots.py deleted file mode 120000 index b60db0e5280..00000000000 --- a/_downloads/1358fb13a477970fd3953dee7a8603b1/mixed_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1358fb13a477970fd3953dee7a8603b1/mixed_subplots.py \ No newline at end of file diff --git a/_downloads/135ae1d190ea88558db09244866bac86/annotate_simple03.py b/_downloads/135ae1d190ea88558db09244866bac86/annotate_simple03.py deleted file mode 120000 index f69d58f93a6..00000000000 --- a/_downloads/135ae1d190ea88558db09244866bac86/annotate_simple03.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/135ae1d190ea88558db09244866bac86/annotate_simple03.py \ No newline at end of file diff --git a/_downloads/135b0feb5f2e4e95b5e2c9850706dec0/dashpointlabel.py b/_downloads/135b0feb5f2e4e95b5e2c9850706dec0/dashpointlabel.py deleted file mode 120000 index 12471137412..00000000000 --- a/_downloads/135b0feb5f2e4e95b5e2c9850706dec0/dashpointlabel.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/135b0feb5f2e4e95b5e2c9850706dec0/dashpointlabel.py \ No newline at end of file diff --git a/_downloads/135b9b0d25496c767a4b78c396b26a8e/demo_gridspec01.ipynb b/_downloads/135b9b0d25496c767a4b78c396b26a8e/demo_gridspec01.ipynb deleted file mode 120000 index a31c04eadfd..00000000000 --- a/_downloads/135b9b0d25496c767a4b78c396b26a8e/demo_gridspec01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/135b9b0d25496c767a4b78c396b26a8e/demo_gridspec01.ipynb \ No newline at end of file diff --git a/_downloads/136767d6dd19d44afabfba262ceb0735/mri_demo.py b/_downloads/136767d6dd19d44afabfba262ceb0735/mri_demo.py deleted file mode 120000 index a8779fc16a3..00000000000 --- a/_downloads/136767d6dd19d44afabfba262ceb0735/mri_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/136767d6dd19d44afabfba262ceb0735/mri_demo.py \ No newline at end of file diff --git a/_downloads/13677dda3c299db21ddcc63e92ea2564/marker_fillstyle_reference.py b/_downloads/13677dda3c299db21ddcc63e92ea2564/marker_fillstyle_reference.py deleted file mode 120000 index 77c6d47cc4e..00000000000 --- a/_downloads/13677dda3c299db21ddcc63e92ea2564/marker_fillstyle_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/13677dda3c299db21ddcc63e92ea2564/marker_fillstyle_reference.py \ No newline at end of file diff --git a/_downloads/1372e2cc29984e6dda9b796c1824c2ed/style_sheets_reference.py b/_downloads/1372e2cc29984e6dda9b796c1824c2ed/style_sheets_reference.py deleted file mode 120000 index c6abd7e3d27..00000000000 --- a/_downloads/1372e2cc29984e6dda9b796c1824c2ed/style_sheets_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1372e2cc29984e6dda9b796c1824c2ed/style_sheets_reference.py \ No newline at end of file diff --git a/_downloads/13769e66fa805c813d7343df919cbc35/axes_demo.py b/_downloads/13769e66fa805c813d7343df919cbc35/axes_demo.py deleted file mode 120000 index c2502d4c4a8..00000000000 --- a/_downloads/13769e66fa805c813d7343df919cbc35/axes_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/13769e66fa805c813d7343df919cbc35/axes_demo.py \ No newline at end of file diff --git a/_downloads/137ba5eae28d8c298aa645bf1ff0718e/major_minor_demo.ipynb b/_downloads/137ba5eae28d8c298aa645bf1ff0718e/major_minor_demo.ipynb deleted file mode 100644 index b207ebe19b1..00000000000 --- a/_downloads/137ba5eae28d8c298aa645bf1ff0718e/major_minor_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Major and minor ticks\n\n\nDemonstrate how to use major and minor tickers.\n\nThe two relevant classes are `.Locator`\\s and `.Formatter`\\s. Locators\ndetermine where the ticks are, and formatters control the formatting of tick\nlabels.\n\nMinor ticks are off by default (using `.NullLocator` and `.NullFormatter`).\nMinor ticks can be turned on without labels by setting the minor locator.\nMinor tick labels can be turned on by setting the minor formatter.\n\n`MultipleLocator` places ticks on multiples of some base. `FormatStrFormatter`\nuses a format string (e.g., '%d' or '%1.2f' or '%1.1f cm' ) to format the tick\nlabels.\n\n`.pyplot.grid` changes the grid settings of the major ticks of the y and y axis\ntogether. If you want to control the grid of the minor ticks for a given axis,\nuse for example ::\n\n ax.xaxis.grid(True, which='minor')\n\nNote that a given locator or formatter instance can only be used on a single\naxis (because the locator stores references to the axis data and view limits).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.ticker import (MultipleLocator, FormatStrFormatter,\n AutoMinorLocator)\n\n\nt = np.arange(0.0, 100.0, 0.1)\ns = np.sin(0.1 * np.pi * t) * np.exp(-t * 0.01)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\n# Make a plot with major ticks that are multiples of 20 and minor ticks that\n# are multiples of 5. Label major ticks with '%d' formatting but don't label\n# minor ticks.\nax.xaxis.set_major_locator(MultipleLocator(20))\nax.xaxis.set_major_formatter(FormatStrFormatter('%d'))\n\n# For the minor ticks, use no labels; default NullFormatter.\nax.xaxis.set_minor_locator(MultipleLocator(5))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Automatic tick selection for major and minor ticks.\n\nUse interactive pan and zoom to see how the tick intervals change. There will\nbe either 4 or 5 minor tick intervals per major interval, depending on the\nmajor interval.\n\nOne can supply an argument to AutoMinorLocator to specify a fixed number of\nminor intervals per major interval, e.g. ``AutoMinorLocator(2)`` would lead\nto a single minor tick between major ticks.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "t = np.arange(0.0, 100.0, 0.01)\ns = np.sin(2 * np.pi * t) * np.exp(-t * 0.01)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\nax.xaxis.set_minor_locator(AutoMinorLocator())\n\nax.tick_params(which='both', width=2)\nax.tick_params(which='major', length=7)\nax.tick_params(which='minor', length=4, color='r')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/13867f0733517b5d81ff9e4ecac6c374/slider_demo.ipynb b/_downloads/13867f0733517b5d81ff9e4ecac6c374/slider_demo.ipynb deleted file mode 120000 index 8f6b544e0b4..00000000000 --- a/_downloads/13867f0733517b5d81ff9e4ecac6c374/slider_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/13867f0733517b5d81ff9e4ecac6c374/slider_demo.ipynb \ No newline at end of file diff --git a/_downloads/1396177ce1d23fee4cbc40e2635021b2/buttons.py b/_downloads/1396177ce1d23fee4cbc40e2635021b2/buttons.py deleted file mode 120000 index 8f171882b93..00000000000 --- a/_downloads/1396177ce1d23fee4cbc40e2635021b2/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1396177ce1d23fee4cbc40e2635021b2/buttons.py \ No newline at end of file diff --git a/_downloads/139c378d6d958884aea51997f1945b43/text_layout.ipynb b/_downloads/139c378d6d958884aea51997f1945b43/text_layout.ipynb deleted file mode 120000 index 4dd6cbc6b9b..00000000000 --- a/_downloads/139c378d6d958884aea51997f1945b43/text_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/139c378d6d958884aea51997f1945b43/text_layout.ipynb \ No newline at end of file diff --git a/_downloads/13a70031532ffce057567092d1badc90/demo_curvelinear_grid2.ipynb b/_downloads/13a70031532ffce057567092d1badc90/demo_curvelinear_grid2.ipynb deleted file mode 100644 index 946a0c1894c..00000000000 --- a/_downloads/13a70031532ffce057567092d1badc90/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Curvelinear Grid2\n\n\nCustom grid and ticklines.\n\nThis example demonstrates how to use GridHelperCurveLinear to define\ncustom grids and ticklines by applying a transformation on the grid.\nAs showcase on the plot, a 5x5 matrix is displayed on the axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import \\\n GridHelperCurveLinear\nfrom mpl_toolkits.axisartist.grid_finder import MaxNLocator\nfrom mpl_toolkits.axisartist.axislines import Subplot\n\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\n\n\ndef curvelinear_test1(fig):\n \"\"\"\n grid for custom transform.\n \"\"\"\n\n def tr(x, y):\n sgn = np.sign(x)\n x, y = np.abs(np.asarray(x)), np.asarray(y)\n return sgn*x**.5, y\n\n def inv_tr(x, y):\n sgn = np.sign(x)\n x, y = np.asarray(x), np.asarray(y)\n return sgn*x**2, y\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle=None,\n lat_cycle=None,\n # (0, np.inf),\n lon_minmax=None,\n lat_minmax=None,\n )\n\n grid_helper = GridHelperCurveLinear((tr, inv_tr),\n extreme_finder=extreme_finder,\n # better tick density\n grid_locator1=MaxNLocator(nbins=6),\n grid_locator2=MaxNLocator(nbins=6))\n\n ax1 = Subplot(fig, 111, grid_helper=grid_helper)\n # ax1 will have a ticks and gridlines defined by the given\n # transform (+ transData of the Axes). Note that the transform of\n # the Axes itself (i.e., transData) is not affected by the given\n # transform.\n\n fig.add_subplot(ax1)\n\n ax1.imshow(np.arange(25).reshape(5, 5),\n vmax=50, cmap=plt.cm.gray_r,\n interpolation=\"nearest\",\n origin=\"lower\")\n\n\nif __name__ == \"__main__\":\n fig = plt.figure(figsize=(7, 4))\n curvelinear_test1(fig)\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/13a772475b01486fa4b6b4ae46946cb2/annotate_simple04.py b/_downloads/13a772475b01486fa4b6b4ae46946cb2/annotate_simple04.py deleted file mode 120000 index 88a67f931e7..00000000000 --- a/_downloads/13a772475b01486fa4b6b4ae46946cb2/annotate_simple04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/13a772475b01486fa4b6b4ae46946cb2/annotate_simple04.py \ No newline at end of file diff --git a/_downloads/13aa32e93eff99154b73a5d0dd6ba211/artists.ipynb b/_downloads/13aa32e93eff99154b73a5d0dd6ba211/artists.ipynb deleted file mode 100644 index 511df4c1e59..00000000000 --- a/_downloads/13aa32e93eff99154b73a5d0dd6ba211/artists.ipynb +++ /dev/null @@ -1,173 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Artist tutorial\n\n\nUsing Artist objects to render on the canvas.\n\nThere are three layers to the matplotlib API.\n\n* the :class:`matplotlib.backend_bases.FigureCanvas` is the area onto which\n the figure is drawn\n* the :class:`matplotlib.backend_bases.Renderer` is\n the object which knows how to draw on the\n :class:`~matplotlib.backend_bases.FigureCanvas`\n* and the :class:`matplotlib.artist.Artist` is the object that knows how to use\n a renderer to paint onto the canvas.\n\nThe :class:`~matplotlib.backend_bases.FigureCanvas` and\n:class:`~matplotlib.backend_bases.Renderer` handle all the details of\ntalking to user interface toolkits like `wxPython\n`_ or drawing languages like PostScript\u00ae, and\nthe ``Artist`` handles all the high level constructs like representing\nand laying out the figure, text, and lines. The typical user will\nspend 95% of their time working with the ``Artists``.\n\nThere are two types of ``Artists``: primitives and containers. The primitives\nrepresent the standard graphical objects we want to paint onto our canvas:\n:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.patches.Rectangle`,\n:class:`~matplotlib.text.Text`, :class:`~matplotlib.image.AxesImage`, etc., and\nthe containers are places to put them (:class:`~matplotlib.axis.Axis`,\n:class:`~matplotlib.axes.Axes` and :class:`~matplotlib.figure.Figure`). The\nstandard use is to create a :class:`~matplotlib.figure.Figure` instance, use\nthe ``Figure`` to create one or more :class:`~matplotlib.axes.Axes` or\n:class:`~matplotlib.axes.Subplot` instances, and use the ``Axes`` instance\nhelper methods to create the primitives. In the example below, we create a\n``Figure`` instance using :func:`matplotlib.pyplot.figure`, which is a\nconvenience method for instantiating ``Figure`` instances and connecting them\nwith your user interface or drawing toolkit ``FigureCanvas``. As we will\ndiscuss below, this is not necessary -- you can work directly with PostScript,\nPDF Gtk+, or wxPython ``FigureCanvas`` instances, instantiate your ``Figures``\ndirectly and connect them yourselves -- but since we are focusing here on the\n``Artist`` API we'll let :mod:`~matplotlib.pyplot` handle some of those details\nfor us::\n\n import matplotlib.pyplot as plt\n fig = plt.figure()\n ax = fig.add_subplot(2, 1, 1) # two rows, one column, first plot\n\nThe :class:`~matplotlib.axes.Axes` is probably the most important\nclass in the matplotlib API, and the one you will be working with most\nof the time. This is because the ``Axes`` is the plotting area into\nwhich most of the objects go, and the ``Axes`` has many special helper\nmethods (:meth:`~matplotlib.axes.Axes.plot`,\n:meth:`~matplotlib.axes.Axes.text`,\n:meth:`~matplotlib.axes.Axes.hist`,\n:meth:`~matplotlib.axes.Axes.imshow`) to create the most common\ngraphics primitives (:class:`~matplotlib.lines.Line2D`,\n:class:`~matplotlib.text.Text`,\n:class:`~matplotlib.patches.Rectangle`,\n:class:`~matplotlib.image.Image`, respectively). These helper methods\nwill take your data (e.g., ``numpy`` arrays and strings) and create\nprimitive ``Artist`` instances as needed (e.g., ``Line2D``), add them to\nthe relevant containers, and draw them when requested. Most of you\nare probably familiar with the :class:`~matplotlib.axes.Subplot`,\nwhich is just a special case of an ``Axes`` that lives on a regular\nrows by columns grid of ``Subplot`` instances. If you want to create\nan ``Axes`` at an arbitrary location, simply use the\n:meth:`~matplotlib.figure.Figure.add_axes` method which takes a list\nof ``[left, bottom, width, height]`` values in 0-1 relative figure\ncoordinates::\n\n fig2 = plt.figure()\n ax2 = fig2.add_axes([0.15, 0.1, 0.7, 0.3])\n\nContinuing with our example::\n\n import numpy as np\n t = np.arange(0.0, 1.0, 0.01)\n s = np.sin(2*np.pi*t)\n line, = ax.plot(t, s, color='blue', lw=2)\n\nIn this example, ``ax`` is the ``Axes`` instance created by the\n``fig.add_subplot`` call above (remember ``Subplot`` is just a\nsubclass of ``Axes``) and when you call ``ax.plot``, it creates a\n``Line2D`` instance and adds it to the :attr:`Axes.lines\n` list. In the interactive `ipython\n`_ session below, you can see that the\n``Axes.lines`` list is length one and contains the same line that was\nreturned by the ``line, = ax.plot...`` call:\n\n.. sourcecode:: ipython\n\n In [101]: ax.lines[0]\n Out[101]: \n\n In [102]: line\n Out[102]: \n\nIf you make subsequent calls to ``ax.plot`` (and the hold state is \"on\"\nwhich is the default) then additional lines will be added to the list.\nYou can remove lines later simply by calling the list methods; either\nof these will work::\n\n del ax.lines[0]\n ax.lines.remove(line) # one or the other, not both!\n\nThe Axes also has helper methods to configure and decorate the x-axis\nand y-axis tick, tick labels and axis labels::\n\n xtext = ax.set_xlabel('my xdata') # returns a Text instance\n ytext = ax.set_ylabel('my ydata')\n\nWhen you call :meth:`ax.set_xlabel `,\nit passes the information on the :class:`~matplotlib.text.Text`\ninstance of the :class:`~matplotlib.axis.XAxis`. Each ``Axes``\ninstance contains an :class:`~matplotlib.axis.XAxis` and a\n:class:`~matplotlib.axis.YAxis` instance, which handle the layout and\ndrawing of the ticks, tick labels and axis labels.\n\nTry creating the figure below.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.subplots_adjust(top=0.8)\nax1 = fig.add_subplot(211)\nax1.set_ylabel('volts')\nax1.set_title('a sine wave')\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2*np.pi*t)\nline, = ax1.plot(t, s, color='blue', lw=2)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3])\nn, bins, patches = ax2.hist(np.random.randn(1000), 50,\n facecolor='yellow', edgecolor='yellow')\nax2.set_xlabel('time (s)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nCustomizing your objects\n========================\n\nEvery element in the figure is represented by a matplotlib\n:class:`~matplotlib.artist.Artist`, and each has an extensive list of\nproperties to configure its appearance. The figure itself contains a\n:class:`~matplotlib.patches.Rectangle` exactly the size of the figure,\nwhich you can use to set the background color and transparency of the\nfigures. Likewise, each :class:`~matplotlib.axes.Axes` bounding box\n(the standard white box with black edges in the typical matplotlib\nplot, has a ``Rectangle`` instance that determines the color,\ntransparency, and other properties of the Axes. These instances are\nstored as member variables :attr:`Figure.patch\n` and :attr:`Axes.patch\n` (\"Patch\" is a name inherited from\nMATLAB, and is a 2D \"patch\" of color on the figure, e.g., rectangles,\ncircles and polygons). Every matplotlib ``Artist`` has the following\nproperties\n\n========== ================================================================================\nProperty Description\n========== ================================================================================\nalpha The transparency - a scalar from 0-1\nanimated A boolean that is used to facilitate animated drawing\naxes The axes that the Artist lives in, possibly None\nclip_box The bounding box that clips the Artist\nclip_on Whether clipping is enabled\nclip_path The path the artist is clipped to\ncontains A picking function to test whether the artist contains the pick point\nfigure The figure instance the artist lives in, possibly None\nlabel A text label (e.g., for auto-labeling)\npicker A python object that controls object picking\ntransform The transformation\nvisible A boolean whether the artist should be drawn\nzorder A number which determines the drawing order\nrasterized Boolean; Turns vectors into raster graphics (for compression & eps transparency)\n========== ================================================================================\n\nEach of the properties is accessed with an old-fashioned setter or\ngetter (yes we know this irritates Pythonistas and we plan to support\ndirect access via properties or traits but it hasn't been done yet).\nFor example, to multiply the current alpha by a half::\n\n a = o.get_alpha()\n o.set_alpha(0.5*a)\n\nIf you want to set a number of properties at once, you can also use\nthe ``set`` method with keyword arguments. For example::\n\n o.set(alpha=0.5, zorder=2)\n\nIf you are working interactively at the python shell, a handy way to\ninspect the ``Artist`` properties is to use the\n:func:`matplotlib.artist.getp` function (simply\n:func:`~matplotlib.pyplot.getp` in pyplot), which lists the properties\nand their values. This works for classes derived from ``Artist`` as\nwell, e.g., ``Figure`` and ``Rectangle``. Here are the ``Figure`` rectangle\nproperties mentioned above:\n\n.. sourcecode:: ipython\n\n In [149]: matplotlib.artist.getp(fig.patch)\n\talpha = 1.0\n\tanimated = False\n\tantialiased or aa = True\n\taxes = None\n\tclip_box = None\n\tclip_on = False\n\tclip_path = None\n\tcontains = None\n\tedgecolor or ec = w\n\tfacecolor or fc = 0.75\n\tfigure = Figure(8.125x6.125)\n\tfill = 1\n\thatch = None\n\theight = 1\n\tlabel =\n\tlinewidth or lw = 1.0\n\tpicker = None\n\ttransform = \n\tverts = ((0, 0), (0, 1), (1, 1), (1, 0))\n\tvisible = True\n\twidth = 1\n\twindow_extent = \n\tx = 0\n\ty = 0\n\tzorder = 1\n\nThe docstrings for all of the classes also contain the ``Artist``\nproperties, so you can consult the interactive \"help\" or the\n`artist-api` for a listing of properties for a given object.\n\n\nObject containers\n=================\n\n\nNow that we know how to inspect and set the properties of a given\nobject we want to configure, we need to know how to get at that object.\nAs mentioned in the introduction, there are two kinds of objects:\nprimitives and containers. The primitives are usually the things you\nwant to configure (the font of a :class:`~matplotlib.text.Text`\ninstance, the width of a :class:`~matplotlib.lines.Line2D`) although\nthe containers also have some properties as well -- for example the\n:class:`~matplotlib.axes.Axes` :class:`~matplotlib.artist.Artist` is a\ncontainer that contains many of the primitives in your plot, but it\nalso has properties like the ``xscale`` to control whether the xaxis\nis 'linear' or 'log'. In this section we'll review where the various\ncontainer objects store the ``Artists`` that you want to get at.\n\n\nFigure container\n----------------\n\nThe top level container ``Artist`` is the\n:class:`matplotlib.figure.Figure`, and it contains everything in the\nfigure. The background of the figure is a\n:class:`~matplotlib.patches.Rectangle` which is stored in\n:attr:`Figure.patch `. As\nyou add subplots (:meth:`~matplotlib.figure.Figure.add_subplot`) and\naxes (:meth:`~matplotlib.figure.Figure.add_axes`) to the figure\nthese will be appended to the :attr:`Figure.axes\n`. These are also returned by the\nmethods that create them:\n\n.. sourcecode:: ipython\n\n In [156]: fig = plt.figure()\n\n In [157]: ax1 = fig.add_subplot(211)\n\n In [158]: ax2 = fig.add_axes([0.1, 0.1, 0.7, 0.3])\n\n In [159]: ax1\n Out[159]: \n\n In [160]: print(fig.axes)\n [, ]\n\nBecause the figure maintains the concept of the \"current axes\" (see\n:meth:`Figure.gca ` and\n:meth:`Figure.sca `) to support the\npylab/pyplot state machine, you should not insert or remove axes\ndirectly from the axes list, but rather use the\n:meth:`~matplotlib.figure.Figure.add_subplot` and\n:meth:`~matplotlib.figure.Figure.add_axes` methods to insert, and the\n:meth:`~matplotlib.figure.Figure.delaxes` method to delete. You are\nfree however, to iterate over the list of axes or index into it to get\naccess to ``Axes`` instances you want to customize. Here is an\nexample which turns all the axes grids on::\n\n for ax in fig.axes:\n ax.grid(True)\n\n\nThe figure also has its own text, lines, patches and images, which you\ncan use to add primitives directly. The default coordinate system for\nthe ``Figure`` will simply be in pixels (which is not usually what you\nwant) but you can control this by setting the transform property of\nthe ``Artist`` you are adding to the figure.\n\n.. TODO: Is that still true?\n\nMore useful is \"figure coordinates\" where (0, 0) is the bottom-left of\nthe figure and (1, 1) is the top-right of the figure which you can\nobtain by setting the ``Artist`` transform to :attr:`fig.transFigure\n`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.lines as lines\n\nfig = plt.figure()\n\nl1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig)\nl2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig)\nfig.lines.extend([l1, l2])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is a summary of the Artists the figure contains\n\n.. TODO: Add xrefs to this table\n\n================ ===============================================================\nFigure attribute Description\n================ ===============================================================\naxes A list of Axes instances (includes Subplot)\npatch The Rectangle background\nimages A list of FigureImages patches - useful for raw pixel display\nlegends A list of Figure Legend instances (different from Axes.legends)\nlines A list of Figure Line2D instances (rarely used, see Axes.lines)\npatches A list of Figure patches (rarely used, see Axes.patches)\ntexts A list Figure Text instances\n================ ===============================================================\n\n\nAxes container\n--------------\n\nThe :class:`matplotlib.axes.Axes` is the center of the matplotlib\nuniverse -- it contains the vast majority of all the ``Artists`` used\nin a figure with many helper methods to create and add these\n``Artists`` to itself, as well as helper methods to access and\ncustomize the ``Artists`` it contains. Like the\n:class:`~matplotlib.figure.Figure`, it contains a\n:class:`~matplotlib.patches.Patch`\n:attr:`~matplotlib.axes.Axes.patch` which is a\n:class:`~matplotlib.patches.Rectangle` for Cartesian coordinates and a\n:class:`~matplotlib.patches.Circle` for polar coordinates; this patch\ndetermines the shape, background and border of the plotting region::\n\n ax = fig.add_subplot(111)\n rect = ax.patch # a Rectangle instance\n rect.set_facecolor('green')\n\nWhen you call a plotting method, e.g., the canonical\n:meth:`~matplotlib.axes.Axes.plot` and pass in arrays or lists of\nvalues, the method will create a :meth:`matplotlib.lines.Line2D`\ninstance, update the line with all the ``Line2D`` properties passed as\nkeyword arguments, add the line to the :attr:`Axes.lines\n` container, and returns it to you:\n\n.. sourcecode:: ipython\n\n In [213]: x, y = np.random.rand(2, 100)\n\n In [214]: line, = ax.plot(x, y, '-', color='blue', linewidth=2)\n\n``plot`` returns a list of lines because you can pass in multiple x, y\npairs to plot, and we are unpacking the first element of the length\none list into the line variable. The line has been added to the\n``Axes.lines`` list:\n\n.. sourcecode:: ipython\n\n In [229]: print(ax.lines)\n []\n\nSimilarly, methods that create patches, like\n:meth:`~matplotlib.axes.Axes.bar` creates a list of rectangles, will\nadd the patches to the :attr:`Axes.patches\n` list:\n\n.. sourcecode:: ipython\n\n In [233]: n, bins, rectangles = ax.hist(np.random.randn(1000), 50, facecolor='yellow')\n\n In [234]: rectangles\n Out[234]: \n\n In [235]: print(len(ax.patches))\n\nYou should not add objects directly to the ``Axes.lines`` or\n``Axes.patches`` lists unless you know exactly what you are doing,\nbecause the ``Axes`` needs to do a few things when it creates and adds\nan object. It sets the figure and axes property of the ``Artist``, as\nwell as the default ``Axes`` transformation (unless a transformation\nis set). It also inspects the data contained in the ``Artist`` to\nupdate the data structures controlling auto-scaling, so that the view\nlimits can be adjusted to contain the plotted data. You can,\nnonetheless, create objects yourself and add them directly to the\n``Axes`` using helper methods like\n:meth:`~matplotlib.axes.Axes.add_line` and\n:meth:`~matplotlib.axes.Axes.add_patch`. Here is an annotated\ninteractive session illustrating what is going on:\n\n.. sourcecode:: ipython\n\n In [262]: fig, ax = plt.subplots()\n\n # create a rectangle instance\n In [263]: rect = matplotlib.patches.Rectangle( (1,1), width=5, height=12)\n\n # by default the axes instance is None\n In [264]: print(rect.get_axes())\n None\n\n # and the transformation instance is set to the \"identity transform\"\n In [265]: print(rect.get_transform())\n \n\n # now we add the Rectangle to the Axes\n In [266]: ax.add_patch(rect)\n\n # and notice that the ax.add_patch method has set the axes\n # instance\n In [267]: print(rect.get_axes())\n Axes(0.125,0.1;0.775x0.8)\n\n # and the transformation has been set too\n In [268]: print(rect.get_transform())\n \n\n # the default axes transformation is ax.transData\n In [269]: print(ax.transData)\n \n\n # notice that the xlimits of the Axes have not been changed\n In [270]: print(ax.get_xlim())\n (0.0, 1.0)\n\n # but the data limits have been updated to encompass the rectangle\n In [271]: print(ax.dataLim.bounds)\n (1.0, 1.0, 5.0, 12.0)\n\n # we can manually invoke the auto-scaling machinery\n In [272]: ax.autoscale_view()\n\n # and now the xlim are updated to encompass the rectangle\n In [273]: print(ax.get_xlim())\n (1.0, 6.0)\n\n # we have to manually force a figure draw\n In [274]: ax.figure.canvas.draw()\n\n\nThere are many, many ``Axes`` helper methods for creating primitive\n``Artists`` and adding them to their respective containers. The table\nbelow summarizes a small sampling of them, the kinds of ``Artist`` they\ncreate, and where they store them\n\n============================== ==================== =======================\nHelper method Artist Container\n============================== ==================== =======================\nax.annotate - text annotations Annotate ax.texts\nax.bar - bar charts Rectangle ax.patches\nax.errorbar - error bar plots Line2D and Rectangle ax.lines and ax.patches\nax.fill - shared area Polygon ax.patches\nax.hist - histograms Rectangle ax.patches\nax.imshow - image data AxesImage ax.images\nax.legend - axes legends Legend ax.legends\nax.plot - xy plots Line2D ax.lines\nax.scatter - scatter charts PolygonCollection ax.collections\nax.text - text Text ax.texts\n============================== ==================== =======================\n\n\nIn addition to all of these ``Artists``, the ``Axes`` contains two\nimportant ``Artist`` containers: the :class:`~matplotlib.axis.XAxis`\nand :class:`~matplotlib.axis.YAxis`, which handle the drawing of the\nticks and labels. These are stored as instance variables\n:attr:`~matplotlib.axes.Axes.xaxis` and\n:attr:`~matplotlib.axes.Axes.yaxis`. The ``XAxis`` and ``YAxis``\ncontainers will be detailed below, but note that the ``Axes`` contains\nmany helper methods which forward calls on to the\n:class:`~matplotlib.axis.Axis` instances so you often do not need to\nwork with them directly unless you want to. For example, you can set\nthe font color of the ``XAxis`` ticklabels using the ``Axes`` helper\nmethod::\n\n for label in ax.get_xticklabels():\n label.set_color('orange')\n\nBelow is a summary of the Artists that the Axes contains\n\n============== ======================================\nAxes attribute Description\n============== ======================================\nartists A list of Artist instances\npatch Rectangle instance for Axes background\ncollections A list of Collection instances\nimages A list of AxesImage\nlegends A list of Legend instances\nlines A list of Line2D instances\npatches A list of Patch instances\ntexts A list of Text instances\nxaxis matplotlib.axis.XAxis instance\nyaxis matplotlib.axis.YAxis instance\n============== ======================================\n\n\nAxis containers\n---------------\n\nThe :class:`matplotlib.axis.Axis` instances handle the drawing of the\ntick lines, the grid lines, the tick labels and the axis label. You\ncan configure the left and right ticks separately for the y-axis, and\nthe upper and lower ticks separately for the x-axis. The ``Axis``\nalso stores the data and view intervals used in auto-scaling, panning\nand zooming, as well as the :class:`~matplotlib.ticker.Locator` and\n:class:`~matplotlib.ticker.Formatter` instances which control where\nthe ticks are placed and how they are represented as strings.\n\nEach ``Axis`` object contains a :attr:`~matplotlib.axis.Axis.label` attribute\n(this is what :mod:`~matplotlib.pyplot` modifies in calls to\n:func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.ylabel`) as\nwell as a list of major and minor ticks. The ticks are\n:class:`~matplotlib.axis.XTick` and :class:`~matplotlib.axis.YTick` instances,\nwhich contain the actual line and text primitives that render the ticks and\nticklabels. Because the ticks are dynamically created as needed (e.g., when\npanning and zooming), you should access the lists of major and minor ticks\nthrough their accessor methods :meth:`~matplotlib.axis.Axis.get_major_ticks`\nand :meth:`~matplotlib.axis.Axis.get_minor_ticks`. Although the ticks contain\nall the primitives and will be covered below, ``Axis`` instances have accessor\nmethods that return the tick lines, tick labels, tick locations etc.:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\naxis = ax.xaxis\naxis.get_ticklocs()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklabels()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "note there are twice as many ticklines as labels because by\n default there are tick lines at the top and bottom but only tick\n labels below the xaxis; this can be customized\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklines()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "by default you get the major ticks back\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklines()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "but you can also ask for the minor ticks\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklines(minor=True)\n\n# Here is a summary of some of the useful accessor methods of the ``Axis``\n# (these have corresponding setters where useful, such as\n# set_major_formatter)\n#\n# ====================== =========================================================\n# Accessor method Description\n# ====================== =========================================================\n# get_scale The scale of the axis, e.g., 'log' or 'linear'\n# get_view_interval The interval instance of the axis view limits\n# get_data_interval The interval instance of the axis data limits\n# get_gridlines A list of grid lines for the Axis\n# get_label The axis label - a Text instance\n# get_ticklabels A list of Text instances - keyword minor=True|False\n# get_ticklines A list of Line2D instances - keyword minor=True|False\n# get_ticklocs A list of Tick locations - keyword minor=True|False\n# get_major_locator The matplotlib.ticker.Locator instance for major ticks\n# get_major_formatter The matplotlib.ticker.Formatter instance for major ticks\n# get_minor_locator The matplotlib.ticker.Locator instance for minor ticks\n# get_minor_formatter The matplotlib.ticker.Formatter instance for minor ticks\n# get_major_ticks A list of Tick instances for major ticks\n# get_minor_ticks A list of Tick instances for minor ticks\n# grid Turn the grid on or off for the major or minor ticks\n# ====================== =========================================================\n#\n# Here is an example, not recommended for its beauty, which customizes\n# the axes and tick properties\n\n# plt.figure creates a matplotlib.figure.Figure instance\nfig = plt.figure()\nrect = fig.patch # a rectangle instance\nrect.set_facecolor('lightgoldenrodyellow')\n\nax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4])\nrect = ax1.patch\nrect.set_facecolor('lightslategray')\n\n\nfor label in ax1.xaxis.get_ticklabels():\n # label is a Text instance\n label.set_color('red')\n label.set_rotation(45)\n label.set_fontsize(16)\n\nfor line in ax1.yaxis.get_ticklines():\n # line is a Line2D instance\n line.set_color('green')\n line.set_markersize(25)\n line.set_markeredgewidth(3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nTick containers\n---------------\n\nThe :class:`matplotlib.axis.Tick` is the final container object in our\ndescent from the :class:`~matplotlib.figure.Figure` to the\n:class:`~matplotlib.axes.Axes` to the :class:`~matplotlib.axis.Axis`\nto the :class:`~matplotlib.axis.Tick`. The ``Tick`` contains the tick\nand grid line instances, as well as the label instances for the upper\nand lower ticks. Each of these is accessible directly as an attribute\nof the ``Tick``.\n\n============== ==========================================================\nTick attribute Description\n============== ==========================================================\ntick1line Line2D instance\ntick2line Line2D instance\ngridline Line2D instance\nlabel1 Text instance\nlabel2 Text instance\n============== ==========================================================\n\nHere is an example which sets the formatter for the right side ticks with\ndollar signs and colors them green on the right side of the yaxis\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.ticker as ticker\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\nax.plot(100*np.random.rand(20))\n\nformatter = ticker.FormatStrFormatter('$%1.2f')\nax.yaxis.set_major_formatter(formatter)\n\nfor tick in ax.yaxis.get_major_ticks():\n tick.label1.set_visible(False)\n tick.label2.set_visible(True)\n tick.label2.set_color('green')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/13b55ad178a55308f85ec7132ce8ba71/constrainedlayout_guide.ipynb b/_downloads/13b55ad178a55308f85ec7132ce8ba71/constrainedlayout_guide.ipynb deleted file mode 120000 index 50f2b241a54..00000000000 --- a/_downloads/13b55ad178a55308f85ec7132ce8ba71/constrainedlayout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/13b55ad178a55308f85ec7132ce8ba71/constrainedlayout_guide.ipynb \ No newline at end of file diff --git a/_downloads/13b7d80b1bb64b045c82435ce9688fe8/usage.py b/_downloads/13b7d80b1bb64b045c82435ce9688fe8/usage.py deleted file mode 120000 index 00818678a23..00000000000 --- a/_downloads/13b7d80b1bb64b045c82435ce9688fe8/usage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/13b7d80b1bb64b045c82435ce9688fe8/usage.py \ No newline at end of file diff --git a/_downloads/13b9806187581a9adf90ac9599b3a563/annotate_simple_coord03.ipynb b/_downloads/13b9806187581a9adf90ac9599b3a563/annotate_simple_coord03.ipynb deleted file mode 120000 index 67aad3bbec0..00000000000 --- a/_downloads/13b9806187581a9adf90ac9599b3a563/annotate_simple_coord03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/13b9806187581a9adf90ac9599b3a563/annotate_simple_coord03.ipynb \ No newline at end of file diff --git a/_downloads/13c5b18cbbd1a0a6f11850b5d7f6a86c/surface3d_2.py b/_downloads/13c5b18cbbd1a0a6f11850b5d7f6a86c/surface3d_2.py deleted file mode 100644 index 226e8bf3543..00000000000 --- a/_downloads/13c5b18cbbd1a0a6f11850b5d7f6a86c/surface3d_2.py +++ /dev/null @@ -1,29 +0,0 @@ -''' -======================== -3D surface (solid color) -======================== - -Demonstrates a very basic plot of a 3D surface using a solid color. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Make data -u = np.linspace(0, 2 * np.pi, 100) -v = np.linspace(0, np.pi, 100) -x = 10 * np.outer(np.cos(u), np.sin(v)) -y = 10 * np.outer(np.sin(u), np.sin(v)) -z = 10 * np.outer(np.ones(np.size(u)), np.cos(v)) - -# Plot the surface -ax.plot_surface(x, y, z) - -plt.show() diff --git a/_downloads/13c76fae83c021b39eeb0837fa6ad7af/line_collection.py b/_downloads/13c76fae83c021b39eeb0837fa6ad7af/line_collection.py deleted file mode 120000 index d45b04c4983..00000000000 --- a/_downloads/13c76fae83c021b39eeb0837fa6ad7af/line_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/13c76fae83c021b39eeb0837fa6ad7af/line_collection.py \ No newline at end of file diff --git a/_downloads/13c7fb96c5057c43c7d4ba5a0e069f3e/mathtext_demo.ipynb b/_downloads/13c7fb96c5057c43c7d4ba5a0e069f3e/mathtext_demo.ipynb deleted file mode 120000 index aeaa9219bdb..00000000000 --- a/_downloads/13c7fb96c5057c43c7d4ba5a0e069f3e/mathtext_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/13c7fb96c5057c43c7d4ba5a0e069f3e/mathtext_demo.ipynb \ No newline at end of file diff --git a/_downloads/13c898aafd326e1a8d8cfd44399e9011/contour_label_demo.ipynb b/_downloads/13c898aafd326e1a8d8cfd44399e9011/contour_label_demo.ipynb deleted file mode 120000 index ed13a8b387c..00000000000 --- a/_downloads/13c898aafd326e1a8d8cfd44399e9011/contour_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/13c898aafd326e1a8d8cfd44399e9011/contour_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/13d8122ee3df9ddc6de3115f64ccf68b/double_pendulum_sgskip.py b/_downloads/13d8122ee3df9ddc6de3115f64ccf68b/double_pendulum_sgskip.py deleted file mode 120000 index 252df8781e0..00000000000 --- a/_downloads/13d8122ee3df9ddc6de3115f64ccf68b/double_pendulum_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/13d8122ee3df9ddc6de3115f64ccf68b/double_pendulum_sgskip.py \ No newline at end of file diff --git a/_downloads/13f04e013ef16524f334ced76b0d8789/demo_floating_axis.py b/_downloads/13f04e013ef16524f334ced76b0d8789/demo_floating_axis.py deleted file mode 120000 index 8e50b6b80f7..00000000000 --- a/_downloads/13f04e013ef16524f334ced76b0d8789/demo_floating_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/13f04e013ef16524f334ced76b0d8789/demo_floating_axis.py \ No newline at end of file diff --git a/_downloads/13f2322be36f622da60ed058b9390b78/usetex_fonteffects.py b/_downloads/13f2322be36f622da60ed058b9390b78/usetex_fonteffects.py deleted file mode 100644 index 8027a916606..00000000000 --- a/_downloads/13f2322be36f622da60ed058b9390b78/usetex_fonteffects.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -================== -Usetex Fonteffects -================== - -This script demonstrates that font effects specified in your pdftex.map -are now supported in pdf usetex. -""" - -import matplotlib -import matplotlib.pyplot as plt -matplotlib.rc('text', usetex=True) - - -def setfont(font): - return r'\font\a %s at 14pt\a ' % font - - -for y, font, text in zip(range(5), - ['ptmr8r', 'ptmri8r', 'ptmro8r', - 'ptmr8rn', 'ptmrr8re'], - ['Nimbus Roman No9 L ' + x for x in - ['', 'Italics (real italics for comparison)', - '(slanted)', '(condensed)', '(extended)']]): - plt.text(0, y, setfont(font) + text) - -plt.ylim(-1, 5) -plt.xlim(-0.2, 0.6) -plt.setp(plt.gca(), frame_on=False, xticks=(), yticks=()) -plt.title('Usetex font effects') -plt.savefig('usetex_fonteffects.pdf') diff --git a/_downloads/13f360b593e1ee1f60df408c86de7437/gridspec_multicolumn.ipynb b/_downloads/13f360b593e1ee1f60df408c86de7437/gridspec_multicolumn.ipynb deleted file mode 120000 index 3f2e6fd9a9e..00000000000 --- a/_downloads/13f360b593e1ee1f60df408c86de7437/gridspec_multicolumn.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/13f360b593e1ee1f60df408c86de7437/gridspec_multicolumn.ipynb \ No newline at end of file diff --git a/_downloads/13f68dc6df7acef348e1b1bfbb0768ad/tick_labels_from_values.ipynb b/_downloads/13f68dc6df7acef348e1b1bfbb0768ad/tick_labels_from_values.ipynb deleted file mode 120000 index 5e6ffdba325..00000000000 --- a/_downloads/13f68dc6df7acef348e1b1bfbb0768ad/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/13f68dc6df7acef348e1b1bfbb0768ad/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/13fc6970bd76faa024af27bdd9982e7f/subplot3d.ipynb b/_downloads/13fc6970bd76faa024af27bdd9982e7f/subplot3d.ipynb deleted file mode 120000 index 776bcf2a064..00000000000 --- a/_downloads/13fc6970bd76faa024af27bdd9982e7f/subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/13fc6970bd76faa024af27bdd9982e7f/subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/1403c9176f441d71ec67e54e239b695e/patheffect_demo.py b/_downloads/1403c9176f441d71ec67e54e239b695e/patheffect_demo.py deleted file mode 120000 index 839f671b429..00000000000 --- a/_downloads/1403c9176f441d71ec67e54e239b695e/patheffect_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1403c9176f441d71ec67e54e239b695e/patheffect_demo.py \ No newline at end of file diff --git a/_downloads/140e1793c8fb8b416b6f6bd9a1eeca03/scatter_custom_symbol.ipynb b/_downloads/140e1793c8fb8b416b6f6bd9a1eeca03/scatter_custom_symbol.ipynb deleted file mode 120000 index 570f7899754..00000000000 --- a/_downloads/140e1793c8fb8b416b6f6bd9a1eeca03/scatter_custom_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/140e1793c8fb8b416b6f6bd9a1eeca03/scatter_custom_symbol.ipynb \ No newline at end of file diff --git a/_downloads/141b8762d9c28d741dc304d7d03a44ac/tick_xlabel_top.ipynb b/_downloads/141b8762d9c28d741dc304d7d03a44ac/tick_xlabel_top.ipynb deleted file mode 120000 index dd711518f42..00000000000 --- a/_downloads/141b8762d9c28d741dc304d7d03a44ac/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/141b8762d9c28d741dc304d7d03a44ac/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/141ec89c44451f33a8dc032801619cb1/transforms_tutorial.ipynb b/_downloads/141ec89c44451f33a8dc032801619cb1/transforms_tutorial.ipynb deleted file mode 120000 index 61721153868..00000000000 --- a/_downloads/141ec89c44451f33a8dc032801619cb1/transforms_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/141ec89c44451f33a8dc032801619cb1/transforms_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/143499a2d230be260b3b20d9e8e105c8/poly_editor.py b/_downloads/143499a2d230be260b3b20d9e8e105c8/poly_editor.py deleted file mode 120000 index 0ef68cf9b1c..00000000000 --- a/_downloads/143499a2d230be260b3b20d9e8e105c8/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/143499a2d230be260b3b20d9e8e105c8/poly_editor.py \ No newline at end of file diff --git a/_downloads/1443ae0492537fbba21c3e5c6562357d/leftventricle_bulleye.py b/_downloads/1443ae0492537fbba21c3e5c6562357d/leftventricle_bulleye.py deleted file mode 120000 index 64cdbc86ccc..00000000000 --- a/_downloads/1443ae0492537fbba21c3e5c6562357d/leftventricle_bulleye.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1443ae0492537fbba21c3e5c6562357d/leftventricle_bulleye.py \ No newline at end of file diff --git a/_downloads/1444def5a9d3618c435e030b553ac25b/simple_axesgrid.ipynb b/_downloads/1444def5a9d3618c435e030b553ac25b/simple_axesgrid.ipynb deleted file mode 120000 index d3c37533699..00000000000 --- a/_downloads/1444def5a9d3618c435e030b553ac25b/simple_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1444def5a9d3618c435e030b553ac25b/simple_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/144eb7f76be7ba2831ec9fa4897d9b01/marker_reference.ipynb b/_downloads/144eb7f76be7ba2831ec9fa4897d9b01/marker_reference.ipynb deleted file mode 100644 index 96021f247d6..00000000000 --- a/_downloads/144eb7f76be7ba2831ec9fa4897d9b01/marker_reference.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Marker Reference\n\n\nReference for filled-, unfilled- and custom marker types with Matplotlib.\n\nFor a list of all markers see the `matplotlib.markers` documentation. Also\nrefer to the :doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference`\nand :doc:`/gallery/shapes_and_collections/marker_path` examples.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.lines import Line2D\n\n\npoints = np.ones(3) # Draw 3 points for each line\ntext_style = dict(horizontalalignment='right', verticalalignment='center',\n fontsize=12, fontdict={'family': 'monospace'})\nmarker_style = dict(linestyle=':', color='0.8', markersize=10,\n mfc=\"C0\", mec=\"C0\")\n\n\ndef format_axes(ax):\n ax.margins(0.2)\n ax.set_axis_off()\n ax.invert_yaxis()\n\n\ndef split_list(a_list):\n i_half = len(a_list) // 2\n return (a_list[:i_half], a_list[i_half:])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Filled and unfilled-marker types\n================================\n\nPlot all un-filled markers\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(ncols=2)\nfig.suptitle('un-filled markers', fontsize=14)\n\n# Filter out filled markers and marker settings that do nothing.\nunfilled_markers = [m for m, func in Line2D.markers.items()\n if func != 'nothing' and m not in Line2D.filled_markers]\n\nfor ax, markers in zip(axes, split_list(unfilled_markers)):\n for y, marker in enumerate(markers):\n ax.text(-0.5, y, repr(marker), **text_style)\n ax.plot(y * points, marker=marker, **marker_style)\n format_axes(ax)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot all filled markers.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(ncols=2)\nfor ax, markers in zip(axes, split_list(Line2D.filled_markers)):\n for y, marker in enumerate(markers):\n ax.text(-0.5, y, repr(marker), **text_style)\n ax.plot(y * points, marker=marker, **marker_style)\n format_axes(ax)\nfig.suptitle('filled markers', fontsize=14)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Custom Markers with MathText\n============================\n\nUse :doc:`MathText `, to use custom marker symbols,\nlike e.g. ``\"$\\u266B$\"``. For an overview over the STIX font symbols refer\nto the `STIX font table `_.\nAlso see the :doc:`/gallery/text_labels_and_annotations/stix_fonts_demo`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nfig.subplots_adjust(left=0.4)\n\nmarker_style.update(mec=\"None\", markersize=15)\nmarkers = [\"$1$\", r\"$\\frac{1}{2}$\", \"$f$\", \"$\\u266B$\", r\"$\\mathcal{A}$\"]\n\n\nfor y, marker in enumerate(markers):\n # Escape dollars so that the text is written \"as is\", not as mathtext.\n ax.text(-0.5, y, repr(marker).replace(\"$\", r\"\\$\"), **text_style)\n ax.plot(y * points, marker=marker, **marker_style)\nformat_axes(ax)\nfig.suptitle('mathtext markers', fontsize=14)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/144ebb5be49116711722b5eabb7bfce1/fig_x.ipynb b/_downloads/144ebb5be49116711722b5eabb7bfce1/fig_x.ipynb deleted file mode 120000 index 614ff063b2e..00000000000 --- a/_downloads/144ebb5be49116711722b5eabb7bfce1/fig_x.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/144ebb5be49116711722b5eabb7bfce1/fig_x.ipynb \ No newline at end of file diff --git a/_downloads/14525a2b9567d31d64e1d294fa7e08c4/ticklabels_rotation.ipynb b/_downloads/14525a2b9567d31d64e1d294fa7e08c4/ticklabels_rotation.ipynb deleted file mode 120000 index cf0c0545611..00000000000 --- a/_downloads/14525a2b9567d31d64e1d294fa7e08c4/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/14525a2b9567d31d64e1d294fa7e08c4/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/1454597f02e30061c418bedcf917f90a/color_cycle.py b/_downloads/1454597f02e30061c418bedcf917f90a/color_cycle.py deleted file mode 120000 index 67dbdc51f82..00000000000 --- a/_downloads/1454597f02e30061c418bedcf917f90a/color_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1454597f02e30061c418bedcf917f90a/color_cycle.py \ No newline at end of file diff --git a/_downloads/1457dcb474cf2ca10c84f270d2743a35/scatter_star_poly.py b/_downloads/1457dcb474cf2ca10c84f270d2743a35/scatter_star_poly.py deleted file mode 120000 index 8697b87439c..00000000000 --- a/_downloads/1457dcb474cf2ca10c84f270d2743a35/scatter_star_poly.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1457dcb474cf2ca10c84f270d2743a35/scatter_star_poly.py \ No newline at end of file diff --git a/_downloads/145e1c84fc43ea6ec75e2472980f7bf6/whats_new_98_4_legend.ipynb b/_downloads/145e1c84fc43ea6ec75e2472980f7bf6/whats_new_98_4_legend.ipynb deleted file mode 120000 index ede8c8ec7f6..00000000000 --- a/_downloads/145e1c84fc43ea6ec75e2472980f7bf6/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/145e1c84fc43ea6ec75e2472980f7bf6/whats_new_98_4_legend.ipynb \ No newline at end of file diff --git a/_downloads/14614ea1598a379050a33426bf3211af/ginput_manual_clabel_sgskip.ipynb b/_downloads/14614ea1598a379050a33426bf3211af/ginput_manual_clabel_sgskip.ipynb deleted file mode 120000 index 32a6c34612e..00000000000 --- a/_downloads/14614ea1598a379050a33426bf3211af/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/14614ea1598a379050a33426bf3211af/ginput_manual_clabel_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1471ca2fc4b64ae818d2a01610114e0a/demo_ribbon_box.py b/_downloads/1471ca2fc4b64ae818d2a01610114e0a/demo_ribbon_box.py deleted file mode 120000 index 8c5ae3b0217..00000000000 --- a/_downloads/1471ca2fc4b64ae818d2a01610114e0a/demo_ribbon_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1471ca2fc4b64ae818d2a01610114e0a/demo_ribbon_box.py \ No newline at end of file diff --git a/_downloads/147390e13df0bd55a92bb4f7beac9c7a/slider_snap_demo.ipynb b/_downloads/147390e13df0bd55a92bb4f7beac9c7a/slider_snap_demo.ipynb deleted file mode 120000 index 3fab98c5c51..00000000000 --- a/_downloads/147390e13df0bd55a92bb4f7beac9c7a/slider_snap_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/147390e13df0bd55a92bb4f7beac9c7a/slider_snap_demo.ipynb \ No newline at end of file diff --git a/_downloads/147aca9d51598770a942ca8b8fd1edec/polys3d.ipynb b/_downloads/147aca9d51598770a942ca8b8fd1edec/polys3d.ipynb deleted file mode 100644 index b2a4258e967..00000000000 --- a/_downloads/147aca9d51598770a942ca8b8fd1edec/polys3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Generate polygons to fill under 3D line graph\n\n\nDemonstrate how to create polygons which fill the space under a line\ngraph. In this example polygons are semi-transparent, creating a sort\nof 'jagged stained glass' effect.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib.collections import PolyCollection\nimport matplotlib.pyplot as plt\nfrom matplotlib import colors as mcolors\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef polygon_under_graph(xlist, ylist):\n \"\"\"\n Construct the vertex list which defines the polygon filling the space under\n the (xlist, ylist) line graph. Assumes the xs are in ascending order.\n \"\"\"\n return [(xlist[0], 0.), *zip(xlist, ylist), (xlist[-1], 0.)]\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make verts a list, verts[i] will be a list of (x,y) pairs defining polygon i\nverts = []\n\n# Set up the x sequence\nxs = np.linspace(0., 10., 26)\n\n# The ith polygon will appear on the plane y = zs[i]\nzs = range(4)\n\nfor i in zs:\n ys = np.random.rand(len(xs))\n verts.append(polygon_under_graph(xs, ys))\n\npoly = PolyCollection(verts, facecolors=['r', 'g', 'b', 'y'], alpha=.6)\nax.add_collection3d(poly, zs=zs, zdir='y')\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\nax.set_xlim(0, 10)\nax.set_ylim(-1, 4)\nax.set_zlim(0, 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/14842b2da10439b7e9f46003468d41a9/anchored_artists.py b/_downloads/14842b2da10439b7e9f46003468d41a9/anchored_artists.py deleted file mode 120000 index a63b9c7b762..00000000000 --- a/_downloads/14842b2da10439b7e9f46003468d41a9/anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/14842b2da10439b7e9f46003468d41a9/anchored_artists.py \ No newline at end of file diff --git a/_downloads/1485c038441672fd51425d7309de0818/annotation_basic.py b/_downloads/1485c038441672fd51425d7309de0818/annotation_basic.py deleted file mode 120000 index 4835ad2e9ed..00000000000 --- a/_downloads/1485c038441672fd51425d7309de0818/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1485c038441672fd51425d7309de0818/annotation_basic.py \ No newline at end of file diff --git a/_downloads/1487431aa92903cff97b0971fd176de3/embedding_in_qt_sgskip.ipynb b/_downloads/1487431aa92903cff97b0971fd176de3/embedding_in_qt_sgskip.ipynb deleted file mode 120000 index a2fb7594d3f..00000000000 --- a/_downloads/1487431aa92903cff97b0971fd176de3/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1487431aa92903cff97b0971fd176de3/embedding_in_qt_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1490b0eee0f272a263b880644084a8b2/embedding_in_qt_sgskip.ipynb b/_downloads/1490b0eee0f272a263b880644084a8b2/embedding_in_qt_sgskip.ipynb deleted file mode 120000 index 877b42cc1cc..00000000000 --- a/_downloads/1490b0eee0f272a263b880644084a8b2/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1490b0eee0f272a263b880644084a8b2/embedding_in_qt_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/149863d87201489c66653021bd44ddd0/tick_label_right.ipynb b/_downloads/149863d87201489c66653021bd44ddd0/tick_label_right.ipynb deleted file mode 100644 index afa933fc09a..00000000000 --- a/_downloads/149863d87201489c66653021bd44ddd0/tick_label_right.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Set default y-axis tick labels on the right\n\n\nWe can use :rc:`ytick.labelright` (default False) and :rc:`ytick.right`\n(default False) and :rc:`ytick.labelleft` (default True) and :rc:`ytick.left`\n(default True) to control where on the axes ticks and their labels appear.\nThese properties can also be set in the ``.matplotlib/matplotlibrc``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nplt.rcParams['ytick.right'] = plt.rcParams['ytick.labelright'] = True\nplt.rcParams['ytick.left'] = plt.rcParams['ytick.labelleft'] = False\n\nx = np.arange(10)\n\nfig, (ax0, ax1) = plt.subplots(2, 1, sharex=True, figsize=(6, 6))\n\nax0.plot(x)\nax0.yaxis.tick_left()\n\n# use default parameter in rcParams, not calling tick_right()\nax1.plot(x)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/149b06fa9ff315f16ab21adcaa2a06f5/eventplot_demo.ipynb b/_downloads/149b06fa9ff315f16ab21adcaa2a06f5/eventplot_demo.ipynb deleted file mode 120000 index 9fae5456d5a..00000000000 --- a/_downloads/149b06fa9ff315f16ab21adcaa2a06f5/eventplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/149b06fa9ff315f16ab21adcaa2a06f5/eventplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/149cc00e166d0fcddb8c250d05413b91/contourf_demo.ipynb b/_downloads/149cc00e166d0fcddb8c250d05413b91/contourf_demo.ipynb deleted file mode 100644 index d8bde93da91..00000000000 --- a/_downloads/149cc00e166d0fcddb8c250d05413b91/contourf_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contourf Demo\n\n\nHow to use the :meth:`.axes.Axes.contourf` method to create filled contour plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\norigin = 'lower'\n\ndelta = 0.025\n\nx = y = np.arange(-3.0, 3.01, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nnr, nc = Z.shape\n\n# put NaNs in one corner:\nZ[-nr // 6:, -nc // 6:] = np.nan\n# contourf will convert these to masked\n\n\nZ = np.ma.array(Z)\n# mask another corner:\nZ[:nr // 6, :nc // 6] = np.ma.masked\n\n# mask a circle in the middle:\ninterior = np.sqrt(X**2 + Y**2) < 0.5\nZ[interior] = np.ma.masked\n\n# We are using automatic selection of contour levels;\n# this is usually not such a good idea, because they don't\n# occur on nice boundaries, but we do it here for purposes\n# of illustration.\n\nfig1, ax2 = plt.subplots(constrained_layout=True)\nCS = ax2.contourf(X, Y, Z, 10, cmap=plt.cm.bone, origin=origin)\n\n# Note that in the following, we explicitly pass in a subset of\n# the contour levels used for the filled contours. Alternatively,\n# We could pass in additional levels to provide extra resolution,\n# or leave out the levels kwarg to use all of the original levels.\n\nCS2 = ax2.contour(CS, levels=CS.levels[::2], colors='r', origin=origin)\n\nax2.set_title('Nonsense (3 masked regions)')\nax2.set_xlabel('word length anomaly')\nax2.set_ylabel('sentence length anomaly')\n\n# Make a colorbar for the ContourSet returned by the contourf call.\ncbar = fig1.colorbar(CS)\ncbar.ax.set_ylabel('verbosity coefficient')\n# Add the contour line levels to the colorbar\ncbar.add_lines(CS2)\n\nfig2, ax2 = plt.subplots(constrained_layout=True)\n# Now make a contour plot with the levels specified,\n# and with the colormap generated automatically from a list\n# of colors.\nlevels = [-1.5, -1, -0.5, 0, 0.5, 1]\nCS3 = ax2.contourf(X, Y, Z, levels,\n colors=('r', 'g', 'b'),\n origin=origin,\n extend='both')\n# Our data range extends outside the range of levels; make\n# data below the lowest contour level yellow, and above the\n# highest level cyan:\nCS3.cmap.set_under('yellow')\nCS3.cmap.set_over('cyan')\n\nCS4 = ax2.contour(X, Y, Z, levels,\n colors=('k',),\n linewidths=(3,),\n origin=origin)\nax2.set_title('Listed colors (3 masked regions)')\nax2.clabel(CS4, fmt='%2.1f', colors='w', fontsize=14)\n\n# Notice that the colorbar command gets all the information it\n# needs from the ContourSet object, CS3.\nfig2.colorbar(CS3)\n\n# Illustrate all 4 possible \"extend\" settings:\nextends = [\"neither\", \"both\", \"min\", \"max\"]\ncmap = plt.cm.get_cmap(\"winter\")\ncmap.set_under(\"magenta\")\ncmap.set_over(\"yellow\")\n# Note: contouring simply excludes masked or nan regions, so\n# instead of using the \"bad\" colormap value for them, it draws\n# nothing at all in them. Therefore the following would have\n# no effect:\n# cmap.set_bad(\"red\")\n\nfig, axs = plt.subplots(2, 2, constrained_layout=True)\n\nfor ax, extend in zip(axs.ravel(), extends):\n cs = ax.contourf(X, Y, Z, levels, cmap=cmap, extend=extend, origin=origin)\n fig.colorbar(cs, ax=ax, shrink=0.9)\n ax.set_title(\"extend = %s\" % extend)\n ax.locator_params(nbins=4)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.axes.Axes.clabel\nmatplotlib.pyplot.clabel\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.Colormap\nmatplotlib.colors.Colormap.set_bad\nmatplotlib.colors.Colormap.set_under\nmatplotlib.colors.Colormap.set_over" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/149f25a4d936bc5141ef6632af4614df/whats_new_99_mplot3d.py b/_downloads/149f25a4d936bc5141ef6632af4614df/whats_new_99_mplot3d.py deleted file mode 120000 index 0e12ee835a0..00000000000 --- a/_downloads/149f25a4d936bc5141ef6632af4614df/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/149f25a4d936bc5141ef6632af4614df/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/_downloads/14b4636e74d5e53f33bc4257569d12fb/logos2.py b/_downloads/14b4636e74d5e53f33bc4257569d12fb/logos2.py deleted file mode 100644 index 4492923aee1..00000000000 --- a/_downloads/14b4636e74d5e53f33bc4257569d12fb/logos2.py +++ /dev/null @@ -1,158 +0,0 @@ -""" -=============== -Matplotlib logo -=============== - -This example generates the current matplotlib logo. -""" - -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import matplotlib.font_manager -from matplotlib.patches import Circle, Rectangle, PathPatch -from matplotlib.textpath import TextPath -import matplotlib.transforms as mtrans - -MPL_BLUE = '#11557c' - - -def get_font_properties(): - # The original font is Calibri, if that is not installed, we fall back - # to Carlito, which is metrically equivalent. - if 'Calibri' in matplotlib.font_manager.findfont('Calibri:bold'): - return matplotlib.font_manager.FontProperties(family='Calibri', - weight='bold') - if 'Carlito' in matplotlib.font_manager.findfont('Carlito:bold'): - print('Original font not found. Falling back to Carlito. ' - 'The logo text will not be in the correct font.') - return matplotlib.font_manager.FontProperties(family='Carlito', - weight='bold') - print('Original font not found. ' - 'The logo text will not be in the correct font.') - return None - - -def create_icon_axes(fig, ax_position, lw_bars, lw_grid, lw_border, rgrid): - """ - Create a polar axes containing the matplotlib radar plot. - - Parameters - ---------- - fig : matplotlib.figure.Figure - The figure to draw into. - ax_position : (float, float, float, float) - The position of the created Axes in figure coordinates as - (x, y, width, height). - lw_bars : float - The linewidth of the bars. - lw_grid : float - The linewidth of the grid. - lw_border : float - The linewidth of the Axes border. - rgrid : array-like - Positions of the radial grid. - - Returns - ------- - ax : matplotlib.axes.Axes - The created Axes. - """ - with plt.rc_context({'axes.edgecolor': MPL_BLUE, - 'axes.linewidth': lw_border}): - ax = fig.add_axes(ax_position, projection='polar') - ax.set_axisbelow(True) - - N = 7 - arc = 2. * np.pi - theta = np.arange(0.0, arc, arc / N) - radii = np.array([2, 6, 8, 7, 4, 5, 8]) - width = np.pi / 4 * np.array([0.4, 0.4, 0.6, 0.8, 0.2, 0.5, 0.3]) - bars = ax.bar(theta, radii, width=width, bottom=0.0, align='edge', - edgecolor='0.3', lw=lw_bars) - for r, bar in zip(radii, bars): - color = *cm.jet(r / 10.)[:3], 0.6 # color from jet with alpha=0.6 - bar.set_facecolor(color) - - ax.tick_params(labelbottom=False, labeltop=False, - labelleft=False, labelright=False) - - ax.grid(lw=lw_grid, color='0.9') - ax.set_rmax(9) - ax.set_yticks(rgrid) - - # the actual visible background - extends a bit beyond the axis - ax.add_patch(Rectangle((0, 0), arc, 9.58, - facecolor='white', zorder=0, - clip_on=False, in_layout=False)) - return ax - - -def create_text_axes(fig, height_px): - """Create an axes in *fig* that contains 'matplotlib' as Text.""" - ax = fig.add_axes((0, 0, 1, 1)) - ax.set_aspect("equal") - ax.set_axis_off() - - path = TextPath((0, 0), "matplotlib", size=height_px * 0.8, - prop=get_font_properties()) - - angle = 4.25 # degrees - trans = mtrans.Affine2D().skew_deg(angle, 0) - - patch = PathPatch(path, transform=trans + ax.transData, color=MPL_BLUE, - lw=0) - ax.add_patch(patch) - ax.autoscale() - - -def make_logo(height_px, lw_bars, lw_grid, lw_border, rgrid, with_text=False): - """ - Create a full figure with the Matplotlib logo. - - Parameters - ---------- - height_px : int - Height of the figure in pixel. - lw_bars : float - The linewidth of the bar border. - lw_grid : float - The linewidth of the grid. - lw_border : float - The linewidth of icon border. - rgrid : sequence of float - The radial grid positions. - with_text : bool - Whether to draw only the icon or to include 'matplotlib' as text. - """ - dpi = 100 - height = height_px / dpi - figsize = (5 * height, height) if with_text else (height, height) - fig = plt.figure(figsize=figsize, dpi=dpi) - fig.patch.set_alpha(0) - - if with_text: - create_text_axes(fig, height_px) - ax_pos = (0.535, 0.12, .17, 0.75) if with_text else (0.03, 0.03, .94, .94) - ax = create_icon_axes(fig, ax_pos, lw_bars, lw_grid, lw_border, rgrid) - - return fig, ax - -############################################################################## -# A large logo: - -make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1, - rgrid=[1, 3, 5, 7]) - -############################################################################## -# A small 32px logo: - -make_logo(height_px=32, lw_bars=0.3, lw_grid=0.3, lw_border=0.3, rgrid=[5]) - -############################################################################## -# A large logo including text, as used on the matplotlib website. - -make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1, - rgrid=[1, 3, 5, 7], with_text=True) -plt.show() diff --git a/_downloads/14bd2e389e95df459d08241116bb80d4/mathtext_demo.ipynb b/_downloads/14bd2e389e95df459d08241116bb80d4/mathtext_demo.ipynb deleted file mode 120000 index 6a4ef35972e..00000000000 --- a/_downloads/14bd2e389e95df459d08241116bb80d4/mathtext_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/14bd2e389e95df459d08241116bb80d4/mathtext_demo.ipynb \ No newline at end of file diff --git a/_downloads/14be160bbd1e1cee11212df46b2ecc33/fill_betweenx_demo.py b/_downloads/14be160bbd1e1cee11212df46b2ecc33/fill_betweenx_demo.py deleted file mode 100644 index 1f449c37234..00000000000 --- a/_downloads/14be160bbd1e1cee11212df46b2ecc33/fill_betweenx_demo.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -================== -Fill Betweenx Demo -================== - -Using `~.Axes.fill_betweenx` to color along the horizontal direction between -two curves. -""" -import matplotlib.pyplot as plt -import numpy as np - - -y = np.arange(0.0, 2, 0.01) -x1 = np.sin(2 * np.pi * y) -x2 = 1.2 * np.sin(4 * np.pi * y) - -fig, [ax1, ax2, ax3] = plt.subplots(1, 3, sharey=True, figsize=(6, 6)) - -ax1.fill_betweenx(y, 0, x1) -ax1.set_title('between (x1, 0)') - -ax2.fill_betweenx(y, x1, 1) -ax2.set_title('between (x1, 1)') -ax2.set_xlabel('x') - -ax3.fill_betweenx(y, x1, x2) -ax3.set_title('between (x1, x2)') - -# now fill between x1 and x2 where a logical condition is met. Note -# this is different than calling -# fill_between(y[where], x1[where], x2[where]) -# because of edge effects over multiple contiguous regions. - -fig, [ax, ax1] = plt.subplots(1, 2, sharey=True, figsize=(6, 6)) -ax.plot(x1, y, x2, y, color='black') -ax.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') -ax.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red') -ax.set_title('fill_betweenx where') - -# Test support for masked arrays. -x2 = np.ma.masked_greater(x2, 1.0) -ax1.plot(x1, y, x2, y, color='black') -ax1.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') -ax1.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red') -ax1.set_title('regions with x2 > 1 are masked') - -# This example illustrates a problem; because of the data -# gridding, there are undesired unfilled triangles at the crossover -# points. A brute-force solution would be to interpolate all -# arrays to a very fine grid before plotting. - -plt.show() diff --git a/_downloads/14d1300368a040e01d10fcdb3eb454f5/3d_bars.py b/_downloads/14d1300368a040e01d10fcdb3eb454f5/3d_bars.py deleted file mode 120000 index 5ae25011ec8..00000000000 --- a/_downloads/14d1300368a040e01d10fcdb3eb454f5/3d_bars.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/14d1300368a040e01d10fcdb3eb454f5/3d_bars.py \ No newline at end of file diff --git a/_downloads/14d2db7a2cf9cac1f76bf79e9c30cc08/bar_demo2.py b/_downloads/14d2db7a2cf9cac1f76bf79e9c30cc08/bar_demo2.py deleted file mode 120000 index 4512aa688e9..00000000000 --- a/_downloads/14d2db7a2cf9cac1f76bf79e9c30cc08/bar_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/14d2db7a2cf9cac1f76bf79e9c30cc08/bar_demo2.py \ No newline at end of file diff --git a/_downloads/14d7eb9bbaa711767c3176da7ff247cc/simple_colorbar.py b/_downloads/14d7eb9bbaa711767c3176da7ff247cc/simple_colorbar.py deleted file mode 120000 index e98e7a105c1..00000000000 --- a/_downloads/14d7eb9bbaa711767c3176da7ff247cc/simple_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/14d7eb9bbaa711767c3176da7ff247cc/simple_colorbar.py \ No newline at end of file diff --git a/_downloads/14e34ebc0bf7d9b427c3c915c146dffe/trisurf3d_2.py b/_downloads/14e34ebc0bf7d9b427c3c915c146dffe/trisurf3d_2.py deleted file mode 120000 index 7f572bf0de3..00000000000 --- a/_downloads/14e34ebc0bf7d9b427c3c915c146dffe/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/14e34ebc0bf7d9b427c3c915c146dffe/trisurf3d_2.py \ No newline at end of file diff --git a/_downloads/14ec180fd69db40dcd2cde852684d886/stix_fonts_demo.ipynb b/_downloads/14ec180fd69db40dcd2cde852684d886/stix_fonts_demo.ipynb deleted file mode 100644 index a5e0e3d3c92..00000000000 --- a/_downloads/14ec180fd69db40dcd2cde852684d886/stix_fonts_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# STIX Fonts Demo\n\n\nDemonstration of `STIX Fonts `_ used in LaTeX\nrendering.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ncircle123 = \"\\N{CIRCLED DIGIT ONE}\\N{CIRCLED DIGIT TWO}\\N{CIRCLED DIGIT THREE}\"\n\ntests = [\n r'$%s\\;\\mathrm{%s}\\;\\mathbf{%s}$' % ((circle123,) * 3),\n r'$\\mathsf{Sans \\Omega}\\;\\mathrm{\\mathsf{Sans \\Omega}}\\;'\n r'\\mathbf{\\mathsf{Sans \\Omega}}$',\n r'$\\mathtt{Monospace}$',\n r'$\\mathcal{CALLIGRAPHIC}$',\n r'$\\mathbb{Blackboard\\;\\pi}$',\n r'$\\mathrm{\\mathbb{Blackboard\\;\\pi}}$',\n r'$\\mathbf{\\mathbb{Blackboard\\;\\pi}}$',\n r'$\\mathfrak{Fraktur}\\;\\mathbf{\\mathfrak{Fraktur}}$',\n r'$\\mathscr{Script}$',\n]\n\nfig = plt.figure(figsize=(8, len(tests) + 2))\nfor i, s in enumerate(tests[::-1]):\n fig.text(0, (i + .5) / len(tests), s, fontsize=32)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/14ec3fe2b249967ac9185ed67347c9d2/errorbars_and_boxes.py b/_downloads/14ec3fe2b249967ac9185ed67347c9d2/errorbars_and_boxes.py deleted file mode 120000 index 391c536f0d4..00000000000 --- a/_downloads/14ec3fe2b249967ac9185ed67347c9d2/errorbars_and_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/14ec3fe2b249967ac9185ed67347c9d2/errorbars_and_boxes.py \ No newline at end of file diff --git a/_downloads/14f32d9a0976a203df7f0b9d7cf2ab5b/engineering_formatter.ipynb b/_downloads/14f32d9a0976a203df7f0b9d7cf2ab5b/engineering_formatter.ipynb deleted file mode 120000 index 64788414f5b..00000000000 --- a/_downloads/14f32d9a0976a203df7f0b9d7cf2ab5b/engineering_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/14f32d9a0976a203df7f0b9d7cf2ab5b/engineering_formatter.ipynb \ No newline at end of file diff --git a/_downloads/14f8232d0916d9b1ac22406f67763448/anchored_artists.ipynb b/_downloads/14f8232d0916d9b1ac22406f67763448/anchored_artists.ipynb deleted file mode 120000 index ebdaacac02b..00000000000 --- a/_downloads/14f8232d0916d9b1ac22406f67763448/anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/14f8232d0916d9b1ac22406f67763448/anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/150276de58520ffa64046a22089569c5/ftface_props.py b/_downloads/150276de58520ffa64046a22089569c5/ftface_props.py deleted file mode 120000 index 1c65f5831fc..00000000000 --- a/_downloads/150276de58520ffa64046a22089569c5/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/150276de58520ffa64046a22089569c5/ftface_props.py \ No newline at end of file diff --git a/_downloads/150616fc86ab0056ab243c8a7869977f/contour_image.py b/_downloads/150616fc86ab0056ab243c8a7869977f/contour_image.py deleted file mode 120000 index 5525c8a1592..00000000000 --- a/_downloads/150616fc86ab0056ab243c8a7869977f/contour_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/150616fc86ab0056ab243c8a7869977f/contour_image.py \ No newline at end of file diff --git a/_downloads/1508463df21491bd68f863703632e30d/embedding_in_wx3_sgskip.py b/_downloads/1508463df21491bd68f863703632e30d/embedding_in_wx3_sgskip.py deleted file mode 120000 index bf9198650ff..00000000000 --- a/_downloads/1508463df21491bd68f863703632e30d/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1508463df21491bd68f863703632e30d/embedding_in_wx3_sgskip.py \ No newline at end of file diff --git a/_downloads/150a7509e05299e8421bbd0bc16bc93e/axis_labels_demo.ipynb b/_downloads/150a7509e05299e8421bbd0bc16bc93e/axis_labels_demo.ipynb deleted file mode 120000 index 46edfb7ea79..00000000000 --- a/_downloads/150a7509e05299e8421bbd0bc16bc93e/axis_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/150a7509e05299e8421bbd0bc16bc93e/axis_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/150abd6ac5abe890a8a3c8ed29206138/axes_zoom_effect.py b/_downloads/150abd6ac5abe890a8a3c8ed29206138/axes_zoom_effect.py deleted file mode 100644 index 3f156eba35a..00000000000 --- a/_downloads/150abd6ac5abe890a8a3c8ed29206138/axes_zoom_effect.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -================ -Axes Zoom Effect -================ - -""" - -from matplotlib.transforms import ( - Bbox, TransformedBbox, blended_transform_factory) -from mpl_toolkits.axes_grid1.inset_locator import ( - BboxPatch, BboxConnector, BboxConnectorPatch) - - -def connect_bbox(bbox1, bbox2, - loc1a, loc2a, loc1b, loc2b, - prop_lines, prop_patches=None): - if prop_patches is None: - prop_patches = { - **prop_lines, - "alpha": prop_lines.get("alpha", 1) * 0.2, - } - - c1 = BboxConnector(bbox1, bbox2, loc1=loc1a, loc2=loc2a, **prop_lines) - c1.set_clip_on(False) - c2 = BboxConnector(bbox1, bbox2, loc1=loc1b, loc2=loc2b, **prop_lines) - c2.set_clip_on(False) - - bbox_patch1 = BboxPatch(bbox1, **prop_patches) - bbox_patch2 = BboxPatch(bbox2, **prop_patches) - - p = BboxConnectorPatch(bbox1, bbox2, - # loc1a=3, loc2a=2, loc1b=4, loc2b=1, - loc1a=loc1a, loc2a=loc2a, loc1b=loc1b, loc2b=loc2b, - **prop_patches) - p.set_clip_on(False) - - return c1, c2, bbox_patch1, bbox_patch2, p - - -def zoom_effect01(ax1, ax2, xmin, xmax, **kwargs): - """ - Connect *ax1* and *ax2*. The *xmin*-to-*xmax* range in both axes will - be marked. - - Parameters - ---------- - ax1 - The main axes. - ax2 - The zoomed axes. - xmin, xmax - The limits of the colored area in both plot axes. - **kwargs - Arguments passed to the patch constructor. - """ - - trans1 = blended_transform_factory(ax1.transData, ax1.transAxes) - trans2 = blended_transform_factory(ax2.transData, ax2.transAxes) - - bbox = Bbox.from_extents(xmin, 0, xmax, 1) - - mybbox1 = TransformedBbox(bbox, trans1) - mybbox2 = TransformedBbox(bbox, trans2) - - prop_patches = {**kwargs, "ec": "none", "alpha": 0.2} - - c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox( - mybbox1, mybbox2, - loc1a=3, loc2a=2, loc1b=4, loc2b=1, - prop_lines=kwargs, prop_patches=prop_patches) - - ax1.add_patch(bbox_patch1) - ax2.add_patch(bbox_patch2) - ax2.add_patch(c1) - ax2.add_patch(c2) - ax2.add_patch(p) - - return c1, c2, bbox_patch1, bbox_patch2, p - - -def zoom_effect02(ax1, ax2, **kwargs): - """ - ax1 : the main axes - ax1 : the zoomed axes - - Similar to zoom_effect01. The xmin & xmax will be taken from the - ax1.viewLim. - """ - - tt = ax1.transScale + (ax1.transLimits + ax2.transAxes) - trans = blended_transform_factory(ax2.transData, tt) - - mybbox1 = ax1.bbox - mybbox2 = TransformedBbox(ax1.viewLim, trans) - - prop_patches = {**kwargs, "ec": "none", "alpha": 0.2} - - c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox( - mybbox1, mybbox2, - loc1a=3, loc2a=2, loc1b=4, loc2b=1, - prop_lines=kwargs, prop_patches=prop_patches) - - ax1.add_patch(bbox_patch1) - ax2.add_patch(bbox_patch2) - ax2.add_patch(c1) - ax2.add_patch(c2) - ax2.add_patch(p) - - return c1, c2, bbox_patch1, bbox_patch2, p - - -import matplotlib.pyplot as plt - -plt.figure(figsize=(5, 5)) -ax1 = plt.subplot(221) -ax2 = plt.subplot(212) -ax2.set_xlim(0, 1) -ax2.set_xlim(0, 5) -zoom_effect01(ax1, ax2, 0.2, 0.8) - - -ax1 = plt.subplot(222) -ax1.set_xlim(2, 3) -ax2.set_xlim(0, 5) -zoom_effect02(ax1, ax2) - -plt.show() diff --git a/_downloads/150e433ef8e8b66582a04e38bc02c49c/eventcollection_demo.ipynb b/_downloads/150e433ef8e8b66582a04e38bc02c49c/eventcollection_demo.ipynb deleted file mode 120000 index 8c75bc77ea7..00000000000 --- a/_downloads/150e433ef8e8b66582a04e38bc02c49c/eventcollection_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/150e433ef8e8b66582a04e38bc02c49c/eventcollection_demo.ipynb \ No newline at end of file diff --git a/_downloads/151610db4e1b4dce41b16dc65919d1e9/hatch_demo.py b/_downloads/151610db4e1b4dce41b16dc65919d1e9/hatch_demo.py deleted file mode 100644 index 66ea648f60d..00000000000 --- a/_downloads/151610db4e1b4dce41b16dc65919d1e9/hatch_demo.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -========== -Hatch Demo -========== - -Hatching (pattern filled polygons) is supported currently in the PS, -PDF, SVG and Agg backends only. -""" -import matplotlib.pyplot as plt -from matplotlib.patches import Ellipse, Polygon - -fig, (ax1, ax2, ax3) = plt.subplots(3) - -ax1.bar(range(1, 5), range(1, 5), color='red', edgecolor='black', hatch="/") -ax1.bar(range(1, 5), [6] * 4, bottom=range(1, 5), - color='blue', edgecolor='black', hatch='//') -ax1.set_xticks([1.5, 2.5, 3.5, 4.5]) - -bars = ax2.bar(range(1, 5), range(1, 5), color='yellow', ecolor='black') + \ - ax2.bar(range(1, 5), [6] * 4, bottom=range(1, 5), - color='green', ecolor='black') -ax2.set_xticks([1.5, 2.5, 3.5, 4.5]) - -patterns = ('-', '+', 'x', '\\', '*', 'o', 'O', '.') -for bar, pattern in zip(bars, patterns): - bar.set_hatch(pattern) - -ax3.fill([1, 3, 3, 1], [1, 1, 2, 2], fill=False, hatch='\\') -ax3.add_patch(Ellipse((4, 1.5), 4, 0.5, fill=False, hatch='*')) -ax3.add_patch(Polygon([[0, 0], [4, 1.1], [6, 2.5], [2, 1.4]], closed=True, - fill=False, hatch='/')) -ax3.set_xlim((0, 6)) -ax3.set_ylim((0, 2.5)) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.Ellipse -matplotlib.patches.Polygon -matplotlib.axes.Axes.add_patch -matplotlib.patches.Patch.set_hatch -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar diff --git a/_downloads/151c6687eac46bb808360b99a525bb5c/rainbow_text.py b/_downloads/151c6687eac46bb808360b99a525bb5c/rainbow_text.py deleted file mode 120000 index e9de938d413..00000000000 --- a/_downloads/151c6687eac46bb808360b99a525bb5c/rainbow_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/151c6687eac46bb808360b99a525bb5c/rainbow_text.py \ No newline at end of file diff --git a/_downloads/151d2a48abe84e896e960c914f2d9af4/whats_new_98_4_fancy.py b/_downloads/151d2a48abe84e896e960c914f2d9af4/whats_new_98_4_fancy.py deleted file mode 100644 index d611ba9417a..00000000000 --- a/_downloads/151d2a48abe84e896e960c914f2d9af4/whats_new_98_4_fancy.py +++ /dev/null @@ -1,80 +0,0 @@ -""" -====================== -Whats New 0.98.4 Fancy -====================== - -Create fancy box and arrow styles. -""" -import matplotlib.patches as mpatch -import matplotlib.pyplot as plt - -figheight = 8 -fig = plt.figure(figsize=(9, figheight), dpi=80) -fontsize = 0.4 * fig.dpi - -def make_boxstyles(ax): - styles = mpatch.BoxStyle.get_styles() - - for i, (stylename, styleclass) in enumerate(sorted(styles.items())): - ax.text(0.5, (float(len(styles)) - 0.5 - i)/len(styles), stylename, - ha="center", - size=fontsize, - transform=ax.transAxes, - bbox=dict(boxstyle=stylename, fc="w", ec="k")) - -def make_arrowstyles(ax): - styles = mpatch.ArrowStyle.get_styles() - - ax.set_xlim(0, 4) - ax.set_ylim(0, figheight) - - for i, (stylename, styleclass) in enumerate(sorted(styles.items())): - y = (float(len(styles)) - 0.25 - i) # /figheight - p = mpatch.Circle((3.2, y), 0.2, fc="w") - ax.add_patch(p) - - ax.annotate(stylename, (3.2, y), - (2., y), - # xycoords="figure fraction", textcoords="figure fraction", - ha="right", va="center", - size=fontsize, - arrowprops=dict(arrowstyle=stylename, - patchB=p, - shrinkA=5, - shrinkB=5, - fc="w", ec="k", - connectionstyle="arc3,rad=-0.05", - ), - bbox=dict(boxstyle="square", fc="w")) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -ax1 = fig.add_subplot(121, frameon=False, xticks=[], yticks=[]) -make_boxstyles(ax1) - -ax2 = fig.add_subplot(122, frameon=False, xticks=[], yticks=[]) -make_arrowstyles(ax2) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.BoxStyle -matplotlib.patches.BoxStyle.get_styles -matplotlib.patches.ArrowStyle -matplotlib.patches.ArrowStyle.get_styles -matplotlib.axes.Axes.text -matplotlib.axes.Axes.annotate diff --git a/_downloads/15232122f6f93a74f446e803138764b4/findobj_demo.py b/_downloads/15232122f6f93a74f446e803138764b4/findobj_demo.py deleted file mode 120000 index af78f6764d8..00000000000 --- a/_downloads/15232122f6f93a74f446e803138764b4/findobj_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/15232122f6f93a74f446e803138764b4/findobj_demo.py \ No newline at end of file diff --git a/_downloads/1531a5c0cde762fac88bcce62a5bdefc/contour3d_2.py b/_downloads/1531a5c0cde762fac88bcce62a5bdefc/contour3d_2.py deleted file mode 120000 index 4bd4f64acd1..00000000000 --- a/_downloads/1531a5c0cde762fac88bcce62a5bdefc/contour3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1531a5c0cde762fac88bcce62a5bdefc/contour3d_2.py \ No newline at end of file diff --git a/_downloads/153540ed03b09035afeaa7070a145e35/simple_axesgrid.ipynb b/_downloads/153540ed03b09035afeaa7070a145e35/simple_axesgrid.ipynb deleted file mode 120000 index 407d29d2a74..00000000000 --- a/_downloads/153540ed03b09035afeaa7070a145e35/simple_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/153540ed03b09035afeaa7070a145e35/simple_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/153d2f2a06fbd3df0e6141f6fa956009/mathtext_asarray.ipynb b/_downloads/153d2f2a06fbd3df0e6141f6fa956009/mathtext_asarray.ipynb deleted file mode 120000 index 7b3b5a3406d..00000000000 --- a/_downloads/153d2f2a06fbd3df0e6141f6fa956009/mathtext_asarray.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/153d2f2a06fbd3df0e6141f6fa956009/mathtext_asarray.ipynb \ No newline at end of file diff --git a/_downloads/155bc40789e57ae2c32d342e697f572f/watermark_image.ipynb b/_downloads/155bc40789e57ae2c32d342e697f572f/watermark_image.ipynb deleted file mode 120000 index c7e51c64cbd..00000000000 --- a/_downloads/155bc40789e57ae2c32d342e697f572f/watermark_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/155bc40789e57ae2c32d342e697f572f/watermark_image.ipynb \ No newline at end of file diff --git a/_downloads/155e7305996970eceebe68c905ef8a9d/ganged_plots.ipynb b/_downloads/155e7305996970eceebe68c905ef8a9d/ganged_plots.ipynb deleted file mode 100644 index e5bc7898933..00000000000 --- a/_downloads/155e7305996970eceebe68c905ef8a9d/ganged_plots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating adjacent subplots\n\n\nTo create plots that share a common axis (visually) you can set the hspace\nbetween the subplots to zero. Passing sharex=True when creating the subplots\nwill automatically turn off all x ticks and labels except those on the bottom\naxis.\n\nIn this example the plots share a common x axis but you can follow the same\nlogic to supply a common y axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 2.0, 0.01)\n\ns1 = np.sin(2 * np.pi * t)\ns2 = np.exp(-t)\ns3 = s1 * s2\n\nfig, axs = plt.subplots(3, 1, sharex=True)\n# Remove horizontal space between axes\nfig.subplots_adjust(hspace=0)\n\n# Plot each graph, and manually set the y tick values\naxs[0].plot(t, s1)\naxs[0].set_yticks(np.arange(-0.9, 1.0, 0.4))\naxs[0].set_ylim(-1, 1)\n\naxs[1].plot(t, s2)\naxs[1].set_yticks(np.arange(0.1, 1.0, 0.2))\naxs[1].set_ylim(0, 1)\n\naxs[2].plot(t, s3)\naxs[2].set_yticks(np.arange(-0.9, 1.0, 0.4))\naxs[2].set_ylim(-1, 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1566d9aa01f5291e9316100398ad4ad1/images.py b/_downloads/1566d9aa01f5291e9316100398ad4ad1/images.py deleted file mode 120000 index 6ea7c86de75..00000000000 --- a/_downloads/1566d9aa01f5291e9316100398ad4ad1/images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1566d9aa01f5291e9316100398ad4ad1/images.py \ No newline at end of file diff --git a/_downloads/1567b893d266d9fe81ca698aba78ef59/two_scales.py b/_downloads/1567b893d266d9fe81ca698aba78ef59/two_scales.py deleted file mode 120000 index e8177fd5f48..00000000000 --- a/_downloads/1567b893d266d9fe81ca698aba78ef59/two_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1567b893d266d9fe81ca698aba78ef59/two_scales.py \ No newline at end of file diff --git a/_downloads/15686ee8a93260db756167540f7b282e/mathtext_demo.ipynb b/_downloads/15686ee8a93260db756167540f7b282e/mathtext_demo.ipynb deleted file mode 120000 index e4f073ed53e..00000000000 --- a/_downloads/15686ee8a93260db756167540f7b282e/mathtext_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/15686ee8a93260db756167540f7b282e/mathtext_demo.ipynb \ No newline at end of file diff --git a/_downloads/156be4ea85e6bfb196d706717e9574c1/svg_filter_pie.ipynb b/_downloads/156be4ea85e6bfb196d706717e9574c1/svg_filter_pie.ipynb deleted file mode 120000 index a3814303bda..00000000000 --- a/_downloads/156be4ea85e6bfb196d706717e9574c1/svg_filter_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/156be4ea85e6bfb196d706717e9574c1/svg_filter_pie.ipynb \ No newline at end of file diff --git a/_downloads/156e12176c18a33418a0f8e85d6dec40/animated_histogram.ipynb b/_downloads/156e12176c18a33418a0f8e85d6dec40/animated_histogram.ipynb deleted file mode 100644 index 063c6ddff4d..00000000000 --- a/_downloads/156e12176c18a33418a0f8e85d6dec40/animated_histogram.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated histogram\n\n\nUse a path patch to draw a bunch of rectangles for an animated histogram.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nimport matplotlib.path as path\nimport matplotlib.animation as animation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# histogram our data with numpy\ndata = np.random.randn(1000)\nn, bins = np.histogram(data, 100)\n\n# get the corners of the rectangles for the histogram\nleft = np.array(bins[:-1])\nright = np.array(bins[1:])\nbottom = np.zeros(len(left))\ntop = bottom + n\nnrects = len(left)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here comes the tricky part -- we have to set up the vertex and path codes\narrays using ``plt.Path.MOVETO``, ``plt.Path.LINETO`` and\n``plt.Path.CLOSEPOLY`` for each rect.\n\n* We need 1 ``MOVETO`` per rectangle, which sets the initial point.\n* We need 3 ``LINETO``'s, which tell Matplotlib to draw lines from\n vertex 1 to vertex 2, v2 to v3, and v3 to v4.\n* We then need one ``CLOSEPOLY`` which tells Matplotlib to draw a line from\n the v4 to our initial vertex (the ``MOVETO`` vertex), in order to close the\n polygon.\n\n

Note

The vertex for ``CLOSEPOLY`` is ignored, but we still need a placeholder\n in the ``verts`` array to keep the codes aligned with the vertices.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "nverts = nrects * (1 + 3 + 1)\nverts = np.zeros((nverts, 2))\ncodes = np.ones(nverts, int) * path.Path.LINETO\ncodes[0::5] = path.Path.MOVETO\ncodes[4::5] = path.Path.CLOSEPOLY\nverts[0::5, 0] = left\nverts[0::5, 1] = bottom\nverts[1::5, 0] = left\nverts[1::5, 1] = top\nverts[2::5, 0] = right\nverts[2::5, 1] = top\nverts[3::5, 0] = right\nverts[3::5, 1] = bottom" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To animate the histogram, we need an ``animate`` function, which generates\na random set of numbers and updates the locations of the vertices for the\nhistogram (in this case, only the heights of each rectangle). ``patch`` will\neventually be a ``Patch`` object.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "patch = None\n\n\ndef animate(i):\n # simulate new data coming in\n data = np.random.randn(1000)\n n, bins = np.histogram(data, 100)\n top = bottom + n\n verts[1::5, 1] = top\n verts[2::5, 1] = top\n return [patch, ]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And now we build the `Path` and `Patch` instances for the histogram using\nour vertices and codes. We add the patch to the `Axes` instance, and setup\nthe `FuncAnimation` with our animate function.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nbarpath = path.Path(verts, codes)\npatch = patches.PathPatch(\n barpath, facecolor='green', edgecolor='yellow', alpha=0.5)\nax.add_patch(patch)\n\nax.set_xlim(left[0], right[-1])\nax.set_ylim(bottom.min(), top.max())\n\nani = animation.FuncAnimation(fig, animate, 100, repeat=False, blit=True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1570c89e7cd5b298caeb3772e3b1573f/resample.py b/_downloads/1570c89e7cd5b298caeb3772e3b1573f/resample.py deleted file mode 120000 index 7acb077dec5..00000000000 --- a/_downloads/1570c89e7cd5b298caeb3772e3b1573f/resample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1570c89e7cd5b298caeb3772e3b1573f/resample.py \ No newline at end of file diff --git a/_downloads/1576f6089b8c6de9dac0d0e7649e1c6e/spines_dropped.ipynb b/_downloads/1576f6089b8c6de9dac0d0e7649e1c6e/spines_dropped.ipynb deleted file mode 120000 index 4882d34f2fa..00000000000 --- a/_downloads/1576f6089b8c6de9dac0d0e7649e1c6e/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1576f6089b8c6de9dac0d0e7649e1c6e/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/157bf147fc929e11134758e75c6f6110/horizontal_barchart_distribution.ipynb b/_downloads/157bf147fc929e11134758e75c6f6110/horizontal_barchart_distribution.ipynb deleted file mode 120000 index 367fa4c98bd..00000000000 --- a/_downloads/157bf147fc929e11134758e75c6f6110/horizontal_barchart_distribution.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/157bf147fc929e11134758e75c6f6110/horizontal_barchart_distribution.ipynb \ No newline at end of file diff --git a/_downloads/1581b4468d0238829e026731953b7caf/stix_fonts_demo.ipynb b/_downloads/1581b4468d0238829e026731953b7caf/stix_fonts_demo.ipynb deleted file mode 120000 index 8a59aa18ab9..00000000000 --- a/_downloads/1581b4468d0238829e026731953b7caf/stix_fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1581b4468d0238829e026731953b7caf/stix_fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/1588b4841dd3f6c7e93604681408a341/imshow_extent.ipynb b/_downloads/1588b4841dd3f6c7e93604681408a341/imshow_extent.ipynb deleted file mode 120000 index 1005ba4509c..00000000000 --- a/_downloads/1588b4841dd3f6c7e93604681408a341/imshow_extent.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1588b4841dd3f6c7e93604681408a341/imshow_extent.ipynb \ No newline at end of file diff --git a/_downloads/1590a09654ccb987f861ad8a14321de2/errorbar.py b/_downloads/1590a09654ccb987f861ad8a14321de2/errorbar.py deleted file mode 120000 index 49cdfbd9573..00000000000 --- a/_downloads/1590a09654ccb987f861ad8a14321de2/errorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1590a09654ccb987f861ad8a14321de2/errorbar.py \ No newline at end of file diff --git a/_downloads/15966589d958fdf3c6c2e178d53b3e09/colormaps.py b/_downloads/15966589d958fdf3c6c2e178d53b3e09/colormaps.py deleted file mode 120000 index 622084ce5bb..00000000000 --- a/_downloads/15966589d958fdf3c6c2e178d53b3e09/colormaps.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/15966589d958fdf3c6c2e178d53b3e09/colormaps.py \ No newline at end of file diff --git a/_downloads/15ab0f11c3f7e89585afa521bc07c771/wire3d.ipynb b/_downloads/15ab0f11c3f7e89585afa521bc07c771/wire3d.ipynb deleted file mode 120000 index 3f0f6df1d2a..00000000000 --- a/_downloads/15ab0f11c3f7e89585afa521bc07c771/wire3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/15ab0f11c3f7e89585afa521bc07c771/wire3d.ipynb \ No newline at end of file diff --git a/_downloads/15ab8246929a64130c071d1d9b93d6ae/custom_figure_class.ipynb b/_downloads/15ab8246929a64130c071d1d9b93d6ae/custom_figure_class.ipynb deleted file mode 120000 index 263df1dc99b..00000000000 --- a/_downloads/15ab8246929a64130c071d1d9b93d6ae/custom_figure_class.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/15ab8246929a64130c071d1d9b93d6ae/custom_figure_class.ipynb \ No newline at end of file diff --git a/_downloads/15aeefb854549ccea88bbc18e82237a9/contour3d.ipynb b/_downloads/15aeefb854549ccea88bbc18e82237a9/contour3d.ipynb deleted file mode 100644 index c13f0825cc9..00000000000 --- a/_downloads/15aeefb854549ccea88bbc18e82237a9/contour3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================================================\nDemonstrates plotting contour (level) curves in 3D\n==================================================\n\nThis is like a contour plot in 2D except that the f(x,y)=c curve is plotted\non the plane z=c.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot contour curves\ncset = ax.contour(X, Y, Z, cmap=cm.coolwarm)\n\nax.clabel(cset, fontsize=9, inline=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/15af72ad53acec5282505c97ed4a7c15/log_bar.py b/_downloads/15af72ad53acec5282505c97ed4a7c15/log_bar.py deleted file mode 100644 index 77110b3620b..00000000000 --- a/_downloads/15af72ad53acec5282505c97ed4a7c15/log_bar.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -======= -Log Bar -======= - -Plotting a bar chart with a logarithmic y-axis. -""" -import matplotlib.pyplot as plt -import numpy as np - -data = ((3, 1000), (10, 3), (100, 30), (500, 800), (50, 1)) - -dim = len(data[0]) -w = 0.75 -dimw = w / dim - -fig, ax = plt.subplots() -x = np.arange(len(data)) -for i in range(len(data[0])): - y = [d[i] for d in data] - b = ax.bar(x + i * dimw, y, dimw, bottom=0.001) - -ax.set_xticks(x + dimw / 2, map(str, x)) -ax.set_yscale('log') - -ax.set_xlabel('x') -ax.set_ylabel('y') - -plt.show() diff --git a/_downloads/15b0025c4fc242e086f8cf9671b7faea/hyperlinks_sgskip.ipynb b/_downloads/15b0025c4fc242e086f8cf9671b7faea/hyperlinks_sgskip.ipynb deleted file mode 120000 index c3ae1589583..00000000000 --- a/_downloads/15b0025c4fc242e086f8cf9671b7faea/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/15b0025c4fc242e086f8cf9671b7faea/hyperlinks_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/15b9def574e9fbeb36c2645d7c108f15/anchored_box04.ipynb b/_downloads/15b9def574e9fbeb36c2645d7c108f15/anchored_box04.ipynb deleted file mode 120000 index 15aa2e9e2bb..00000000000 --- a/_downloads/15b9def574e9fbeb36c2645d7c108f15/anchored_box04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/15b9def574e9fbeb36c2645d7c108f15/anchored_box04.ipynb \ No newline at end of file diff --git a/_downloads/15c3e0e2338b345d63ccacf961b97444/usetex_demo.ipynb b/_downloads/15c3e0e2338b345d63ccacf961b97444/usetex_demo.ipynb deleted file mode 120000 index 2d2f52202b6..00000000000 --- a/_downloads/15c3e0e2338b345d63ccacf961b97444/usetex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/15c3e0e2338b345d63ccacf961b97444/usetex_demo.ipynb \ No newline at end of file diff --git a/_downloads/15c9d47676098b81ef588b5ef6687dbb/bxp.ipynb b/_downloads/15c9d47676098b81ef588b5ef6687dbb/bxp.ipynb deleted file mode 120000 index 46b3834eb6b..00000000000 --- a/_downloads/15c9d47676098b81ef588b5ef6687dbb/bxp.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/15c9d47676098b81ef588b5ef6687dbb/bxp.ipynb \ No newline at end of file diff --git a/_downloads/15cb80a529fda3deffdd9fbbf9d24b74/make_room_for_ylabel_using_axesgrid.py b/_downloads/15cb80a529fda3deffdd9fbbf9d24b74/make_room_for_ylabel_using_axesgrid.py deleted file mode 120000 index b8b5c4ef8ec..00000000000 --- a/_downloads/15cb80a529fda3deffdd9fbbf9d24b74/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/15cb80a529fda3deffdd9fbbf9d24b74/make_room_for_ylabel_using_axesgrid.py \ No newline at end of file diff --git a/_downloads/15cb8e7f3f9a4cf5db016c0f7c09e9a4/sankey_basics.ipynb b/_downloads/15cb8e7f3f9a4cf5db016c0f7c09e9a4/sankey_basics.ipynb deleted file mode 120000 index 2e0e121e755..00000000000 --- a/_downloads/15cb8e7f3f9a4cf5db016c0f7c09e9a4/sankey_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/15cb8e7f3f9a4cf5db016c0f7c09e9a4/sankey_basics.ipynb \ No newline at end of file diff --git a/_downloads/15e3569f519b6fba49e00e190802283b/demo_gridspec06.py b/_downloads/15e3569f519b6fba49e00e190802283b/demo_gridspec06.py deleted file mode 100644 index 6629bb15688..00000000000 --- a/_downloads/15e3569f519b6fba49e00e190802283b/demo_gridspec06.py +++ /dev/null @@ -1,52 +0,0 @@ -r""" -================ -Nested GridSpecs -================ - -This example demonstrates the use of nested `GridSpec`\s. -""" - -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec -import numpy as np -from itertools import product - - -def squiggle_xy(a, b, c, d): - i = np.arange(0.0, 2*np.pi, 0.05) - return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d) - - -fig = plt.figure(figsize=(8, 8)) - -# gridspec inside gridspec -outer_grid = gridspec.GridSpec(4, 4, wspace=0.0, hspace=0.0) - -for i in range(16): - inner_grid = gridspec.GridSpecFromSubplotSpec(3, 3, - subplot_spec=outer_grid[i], wspace=0.0, hspace=0.0) - a = i // 4 + 1 - b = i % 4 + 1 - for j, (c, d) in enumerate(product(range(1, 4), repeat=2)): - ax = fig.add_subplot(inner_grid[j]) - ax.plot(*squiggle_xy(a, b, c, d)) - ax.set_xticks([]) - ax.set_yticks([]) - fig.add_subplot(ax) - -all_axes = fig.get_axes() - -# show only the outside spines -for ax in all_axes: - for sp in ax.spines.values(): - sp.set_visible(False) - if ax.is_first_row(): - ax.spines['top'].set_visible(True) - if ax.is_last_row(): - ax.spines['bottom'].set_visible(True) - if ax.is_first_col(): - ax.spines['left'].set_visible(True) - if ax.is_last_col(): - ax.spines['right'].set_visible(True) - -plt.show() diff --git a/_downloads/15ebd41aec6ebf084ad5797ba93359e4/svg_filter_pie.py b/_downloads/15ebd41aec6ebf084ad5797ba93359e4/svg_filter_pie.py deleted file mode 120000 index 1198a5abfeb..00000000000 --- a/_downloads/15ebd41aec6ebf084ad5797ba93359e4/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/15ebd41aec6ebf084ad5797ba93359e4/svg_filter_pie.py \ No newline at end of file diff --git a/_downloads/15f4c2b5add188e8c72e930dd6bdcc7f/contour_corner_mask.ipynb b/_downloads/15f4c2b5add188e8c72e930dd6bdcc7f/contour_corner_mask.ipynb deleted file mode 120000 index a331b35ce59..00000000000 --- a/_downloads/15f4c2b5add188e8c72e930dd6bdcc7f/contour_corner_mask.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/15f4c2b5add188e8c72e930dd6bdcc7f/contour_corner_mask.ipynb \ No newline at end of file diff --git a/_downloads/16057ff82d83be1fc578f599b4bc7cc8/wxcursor_demo_sgskip.py b/_downloads/16057ff82d83be1fc578f599b4bc7cc8/wxcursor_demo_sgskip.py deleted file mode 100644 index 1112b285fb7..00000000000 --- a/_downloads/16057ff82d83be1fc578f599b4bc7cc8/wxcursor_demo_sgskip.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -============= -WXcursor Demo -============= - -Example to draw a cursor and report the data coords in wx. -""" - -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wx import NavigationToolbar2Wx -from matplotlib.figure import Figure -import numpy as np - -import wx - - -class CanvasFrame(wx.Frame): - def __init__(self, ): - wx.Frame.__init__(self, None, -1, 'CanvasFrame', size=(550, 350)) - - self.figure = Figure() - self.axes = self.figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2*np.pi*t) - - self.axes.plot(t, s) - self.axes.set_xlabel('t') - self.axes.set_ylabel('sin(t)') - self.figure_canvas = FigureCanvas(self, -1, self.figure) - - # Note that event is a MplEvent - self.figure_canvas.mpl_connect( - 'motion_notify_event', self.UpdateStatusBar) - self.figure_canvas.Bind(wx.EVT_ENTER_WINDOW, self.ChangeCursor) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.sizer.Add(self.figure_canvas, 1, wx.LEFT | wx.TOP | wx.GROW) - self.SetSizer(self.sizer) - self.Fit() - - self.statusBar = wx.StatusBar(self, -1) - self.SetStatusBar(self.statusBar) - - self.toolbar = NavigationToolbar2Wx(self.figure_canvas) - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - self.toolbar.Show() - - def ChangeCursor(self, event): - self.figure_canvas.SetCursor(wx.Cursor(wx.CURSOR_BULLSEYE)) - - def UpdateStatusBar(self, event): - if event.inaxes: - self.statusBar.SetStatusText( - "x={} y={}".format(event.xdata, event.ydata)) - - -class App(wx.App): - def OnInit(self): - 'Create the main window and insert the custom frame' - frame = CanvasFrame() - self.SetTopWindow(frame) - frame.Show(True) - return True - - -if __name__ == '__main__': - app = App(0) - app.MainLoop() diff --git a/_downloads/16093b46cfdbd0469ceecd116d0bf427/text_alignment.py b/_downloads/16093b46cfdbd0469ceecd116d0bf427/text_alignment.py deleted file mode 120000 index 39712f0a2c2..00000000000 --- a/_downloads/16093b46cfdbd0469ceecd116d0bf427/text_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/16093b46cfdbd0469ceecd116d0bf427/text_alignment.py \ No newline at end of file diff --git a/_downloads/160ad2c3359ef5cbad9453ddbf067d7a/pcolor_demo.ipynb b/_downloads/160ad2c3359ef5cbad9453ddbf067d7a/pcolor_demo.ipynb deleted file mode 120000 index 923384ca264..00000000000 --- a/_downloads/160ad2c3359ef5cbad9453ddbf067d7a/pcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/160ad2c3359ef5cbad9453ddbf067d7a/pcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/1616c81fe31fe4bad8d39a6448f09106/specgram_demo.ipynb b/_downloads/1616c81fe31fe4bad8d39a6448f09106/specgram_demo.ipynb deleted file mode 120000 index 3c13675c502..00000000000 --- a/_downloads/1616c81fe31fe4bad8d39a6448f09106/specgram_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1616c81fe31fe4bad8d39a6448f09106/specgram_demo.ipynb \ No newline at end of file diff --git a/_downloads/161e27ba4126377ad29670b691d00ba6/tex_demo.py b/_downloads/161e27ba4126377ad29670b691d00ba6/tex_demo.py deleted file mode 120000 index c0168b6208c..00000000000 --- a/_downloads/161e27ba4126377ad29670b691d00ba6/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/161e27ba4126377ad29670b691d00ba6/tex_demo.py \ No newline at end of file diff --git a/_downloads/1621829a85f5363c8c1e90c6f412e1b3/embedding_in_tk_sgskip.ipynb b/_downloads/1621829a85f5363c8c1e90c6f412e1b3/embedding_in_tk_sgskip.ipynb deleted file mode 120000 index 241687a5897..00000000000 --- a/_downloads/1621829a85f5363c8c1e90c6f412e1b3/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1621829a85f5363c8c1e90c6f412e1b3/embedding_in_tk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/162cfb1e75edbb65ca45f77d13c1215c/dollar_ticks.ipynb b/_downloads/162cfb1e75edbb65ca45f77d13c1215c/dollar_ticks.ipynb deleted file mode 120000 index 97c280331f7..00000000000 --- a/_downloads/162cfb1e75edbb65ca45f77d13c1215c/dollar_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/162cfb1e75edbb65ca45f77d13c1215c/dollar_ticks.ipynb \ No newline at end of file diff --git a/_downloads/162e0f0a352486c3c4f23b0622d2ff9c/markevery_demo.py b/_downloads/162e0f0a352486c3c4f23b0622d2ff9c/markevery_demo.py deleted file mode 100644 index d917fa01501..00000000000 --- a/_downloads/162e0f0a352486c3c4f23b0622d2ff9c/markevery_demo.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -============== -Markevery Demo -============== - -This example demonstrates the various options for showing a marker at a -subset of data points using the ``markevery`` property of a Line2D object. - -Integer arguments are fairly intuitive. e.g. ``markevery=5`` will plot every -5th marker starting from the first data point. - -Float arguments allow markers to be spaced at approximately equal distances -along the line. The theoretical distance along the line between markers is -determined by multiplying the display-coordinate distance of the axes -bounding-box diagonal by the value of ``markevery``. The data points closest -to the theoretical distances will be shown. - -A slice or list/array can also be used with ``markevery`` to specify the -markers to show. - -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - -# define a list of markevery cases to plot -cases = [None, - 8, - (30, 8), - [16, 24, 30], [0, -1], - slice(100, 200, 3), - 0.1, 0.3, 1.5, - (0.0, 0.1), (0.45, 0.1)] - -# define the figure size and grid layout properties -figsize = (10, 8) -cols = 3 -rows = len(cases) // cols + 1 -# define the data for cartesian plots -delta = 0.11 -x = np.linspace(0, 10 - 2 * delta, 200) + delta -y = np.sin(x) + 1.0 + delta - - -def trim_axs(axs, N): - """little helper to massage the axs list to have correct length...""" - axs = axs.flat - for ax in axs[N:]: - ax.remove() - return axs[:N] - -############################################################################### -# Plot each markevery case for linear x and y scales - -fig1, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.plot(x, y, 'o', ls='-', ms=4, markevery=case) - -############################################################################### -# Plot each markevery case for log x and y scales - -fig2, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.set_xscale('log') - ax.set_yscale('log') - ax.plot(x, y, 'o', ls='-', ms=4, markevery=case) - -############################################################################### -# Plot each markevery case for linear x and y scales but zoomed in -# note the behaviour when zoomed in. When a start marker offset is specified -# it is always interpreted with respect to the first data point which might be -# different to the first visible data point. - -fig3, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.plot(x, y, 'o', ls='-', ms=4, markevery=case) - ax.set_xlim((6, 6.7)) - ax.set_ylim((1.1, 1.7)) - -# define data for polar plots -r = np.linspace(0, 3.0, 200) -theta = 2 * np.pi * r - -############################################################################### -# Plot each markevery case for polar plots - -fig4, axs = plt.subplots(rows, cols, figsize=figsize, - subplot_kw={'projection': 'polar'}, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.plot(theta, r, 'o', ls='-', ms=4, markevery=case) - -plt.show() diff --git a/_downloads/162f5426e572cec989a8ac643cf7d345/demo_ticklabel_direction.py b/_downloads/162f5426e572cec989a8ac643cf7d345/demo_ticklabel_direction.py deleted file mode 120000 index 3316582a9db..00000000000 --- a/_downloads/162f5426e572cec989a8ac643cf7d345/demo_ticklabel_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/162f5426e572cec989a8ac643cf7d345/demo_ticklabel_direction.py \ No newline at end of file diff --git a/_downloads/163b1bec60d4ccf54070499e36ed0db4/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/163b1bec60d4ccf54070499e36ed0db4/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 120000 index cfd0376feb4..00000000000 --- a/_downloads/163b1bec60d4ccf54070499e36ed0db4/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/163b1bec60d4ccf54070499e36ed0db4/embedding_in_gtk3_panzoom_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/163c7ac912de33914401bf15b5b79ad0/polar_scatter.py b/_downloads/163c7ac912de33914401bf15b5b79ad0/polar_scatter.py deleted file mode 120000 index 1c4cc613164..00000000000 --- a/_downloads/163c7ac912de33914401bf15b5b79ad0/polar_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/163c7ac912de33914401bf15b5b79ad0/polar_scatter.py \ No newline at end of file diff --git a/_downloads/163cd5cb6f89537551c83a99889e2adc/usetex_fonteffects.py b/_downloads/163cd5cb6f89537551c83a99889e2adc/usetex_fonteffects.py deleted file mode 120000 index c4c89a8fb62..00000000000 --- a/_downloads/163cd5cb6f89537551c83a99889e2adc/usetex_fonteffects.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/163cd5cb6f89537551c83a99889e2adc/usetex_fonteffects.py \ No newline at end of file diff --git a/_downloads/164bb7fb55926af36a3ea4f341ebdf95/spines_dropped.py b/_downloads/164bb7fb55926af36a3ea4f341ebdf95/spines_dropped.py deleted file mode 120000 index 21577f1de33..00000000000 --- a/_downloads/164bb7fb55926af36a3ea4f341ebdf95/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/164bb7fb55926af36a3ea4f341ebdf95/spines_dropped.py \ No newline at end of file diff --git a/_downloads/164ed06b81a3033b79a20674b52c373b/text_rotation_relative_to_line.ipynb b/_downloads/164ed06b81a3033b79a20674b52c373b/text_rotation_relative_to_line.ipynb deleted file mode 120000 index a09e2179542..00000000000 --- a/_downloads/164ed06b81a3033b79a20674b52c373b/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/164ed06b81a3033b79a20674b52c373b/text_rotation_relative_to_line.ipynb \ No newline at end of file diff --git a/_downloads/165279dd446d0895641789de7a410c77/transoffset.py b/_downloads/165279dd446d0895641789de7a410c77/transoffset.py deleted file mode 120000 index a2d9ab34a6e..00000000000 --- a/_downloads/165279dd446d0895641789de7a410c77/transoffset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/165279dd446d0895641789de7a410c77/transoffset.py \ No newline at end of file diff --git a/_downloads/165eca6dc5ec864c4f4175ac2c4ec0e2/textbox.ipynb b/_downloads/165eca6dc5ec864c4f4175ac2c4ec0e2/textbox.ipynb deleted file mode 120000 index 7864b2736ce..00000000000 --- a/_downloads/165eca6dc5ec864c4f4175ac2c4ec0e2/textbox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/165eca6dc5ec864c4f4175ac2c4ec0e2/textbox.ipynb \ No newline at end of file diff --git a/_downloads/16615ba41b9bb607dcff54415d91c3f7/canvasagg.ipynb b/_downloads/16615ba41b9bb607dcff54415d91c3f7/canvasagg.ipynb deleted file mode 120000 index 31e8ffb735a..00000000000 --- a/_downloads/16615ba41b9bb607dcff54415d91c3f7/canvasagg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/16615ba41b9bb607dcff54415d91c3f7/canvasagg.ipynb \ No newline at end of file diff --git a/_downloads/1669a4e3bd6486bffe691fe8e862294d/broken_barh.ipynb b/_downloads/1669a4e3bd6486bffe691fe8e862294d/broken_barh.ipynb deleted file mode 120000 index b113af37651..00000000000 --- a/_downloads/1669a4e3bd6486bffe691fe8e862294d/broken_barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1669a4e3bd6486bffe691fe8e862294d/broken_barh.ipynb \ No newline at end of file diff --git a/_downloads/166b7e109911f1d602a0dfcf8b5a8e8c/path_patch.ipynb b/_downloads/166b7e109911f1d602a0dfcf8b5a8e8c/path_patch.ipynb deleted file mode 100644 index 429d4b7a785..00000000000 --- a/_downloads/166b7e109911f1d602a0dfcf8b5a8e8c/path_patch.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# PathPatch object\n\n\nThis example shows how to create `~.path.Path` and `~.patches.PathPatch` objects through\nMatplotlib's API.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots()\n\nPath = mpath.Path\npath_data = [\n (Path.MOVETO, (1.58, -2.57)),\n (Path.CURVE4, (0.35, -1.1)),\n (Path.CURVE4, (-1.75, 2.0)),\n (Path.CURVE4, (0.375, 2.0)),\n (Path.LINETO, (0.85, 1.15)),\n (Path.CURVE4, (2.2, 3.2)),\n (Path.CURVE4, (3, 0.05)),\n (Path.CURVE4, (2.0, -0.5)),\n (Path.CLOSEPOLY, (1.58, -2.57)),\n ]\ncodes, verts = zip(*path_data)\npath = mpath.Path(verts, codes)\npatch = mpatches.PathPatch(path, facecolor='r', alpha=0.5)\nax.add_patch(patch)\n\n# plot control points and connecting lines\nx, y = zip(*path.vertices)\nline, = ax.plot(x, y, 'go-')\n\nax.grid()\nax.axis('equal')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.axes.Axes.add_patch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1674b89a50fab27b67bdc434b26edf38/trigradient_demo.ipynb b/_downloads/1674b89a50fab27b67bdc434b26edf38/trigradient_demo.ipynb deleted file mode 120000 index 26294636acb..00000000000 --- a/_downloads/1674b89a50fab27b67bdc434b26edf38/trigradient_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1674b89a50fab27b67bdc434b26edf38/trigradient_demo.ipynb \ No newline at end of file diff --git a/_downloads/16794c70dff00ddaa49dc5e5045a1f54/fill_spiral.ipynb b/_downloads/16794c70dff00ddaa49dc5e5045a1f54/fill_spiral.ipynb deleted file mode 120000 index e2b365ce77b..00000000000 --- a/_downloads/16794c70dff00ddaa49dc5e5045a1f54/fill_spiral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/16794c70dff00ddaa49dc5e5045a1f54/fill_spiral.ipynb \ No newline at end of file diff --git a/_downloads/167a6b96e85c2a46a54014410141264a/image_slices_viewer.ipynb b/_downloads/167a6b96e85c2a46a54014410141264a/image_slices_viewer.ipynb deleted file mode 120000 index 831382ee137..00000000000 --- a/_downloads/167a6b96e85c2a46a54014410141264a/image_slices_viewer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/167a6b96e85c2a46a54014410141264a/image_slices_viewer.ipynb \ No newline at end of file diff --git a/_downloads/167d03c053ee301ae49912d715f5941a/axes_demo.ipynb b/_downloads/167d03c053ee301ae49912d715f5941a/axes_demo.ipynb deleted file mode 120000 index c4040028bfd..00000000000 --- a/_downloads/167d03c053ee301ae49912d715f5941a/axes_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/167d03c053ee301ae49912d715f5941a/axes_demo.ipynb \ No newline at end of file diff --git a/_downloads/1684e514f1d1d0e4f3f3d73165c4f618/subplot_toolbar.ipynb b/_downloads/1684e514f1d1d0e4f3f3d73165c4f618/subplot_toolbar.ipynb deleted file mode 120000 index 6a9bbeb0bd6..00000000000 --- a/_downloads/1684e514f1d1d0e4f3f3d73165c4f618/subplot_toolbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1684e514f1d1d0e4f3f3d73165c4f618/subplot_toolbar.ipynb \ No newline at end of file diff --git a/_downloads/16867375fcbcbfcea5fc5c3f9b0fa30f/membrane.py b/_downloads/16867375fcbcbfcea5fc5c3f9b0fa30f/membrane.py deleted file mode 120000 index 4a298218cbe..00000000000 --- a/_downloads/16867375fcbcbfcea5fc5c3f9b0fa30f/membrane.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/16867375fcbcbfcea5fc5c3f9b0fa30f/membrane.py \ No newline at end of file diff --git a/_downloads/168da77573888ed1a5d741b7fe19e84a/colormaps.py b/_downloads/168da77573888ed1a5d741b7fe19e84a/colormaps.py deleted file mode 100644 index 3e7cf114136..00000000000 --- a/_downloads/168da77573888ed1a5d741b7fe19e84a/colormaps.py +++ /dev/null @@ -1,425 +0,0 @@ -""" -******************************** -Choosing Colormaps in Matplotlib -******************************** - -Matplotlib has a number of built-in colormaps accessible via -`.matplotlib.cm.get_cmap`. There are also external libraries like -[palettable]_ and [colorcet]_ that have many extra colormaps. -Here we briefly discuss how to choose between the many options. For -help on creating your own colormaps, see -:doc:`/tutorials/colors/colormap-manipulation`. - -Overview -======== - -The idea behind choosing a good colormap is to find a good representation in 3D -colorspace for your data set. The best colormap for any given data set depends -on many things including: - -- Whether representing form or metric data ([Ware]_) - -- Your knowledge of the data set (*e.g.*, is there a critical value - from which the other values deviate?) - -- If there is an intuitive color scheme for the parameter you are plotting - -- If there is a standard in the field the audience may be expecting - -For many applications, a perceptually uniform colormap is the best -choice --- one in which equal steps in data are perceived as equal -steps in the color space. Researchers have found that the human brain -perceives changes in the lightness parameter as changes in the data -much better than, for example, changes in hue. Therefore, colormaps -which have monotonically increasing lightness through the colormap -will be better interpreted by the viewer. A wonderful example of -perceptually uniform colormaps is [colorcet]_. - -Color can be represented in 3D space in various ways. One way to represent color -is using CIELAB. In CIELAB, color space is represented by lightness, -:math:`L^*`; red-green, :math:`a^*`; and yellow-blue, :math:`b^*`. The lightness -parameter :math:`L^*` can then be used to learn more about how the matplotlib -colormaps will be perceived by viewers. - -An excellent starting resource for learning about human perception of colormaps -is from [IBM]_. - - -Classes of colormaps -==================== - -Colormaps are often split into several categories based on their function (see, -*e.g.*, [Moreland]_): - -1. Sequential: change in lightness and often saturation of color - incrementally, often using a single hue; should be used for - representing information that has ordering. - -2. Diverging: change in lightness and possibly saturation of two - different colors that meet in the middle at an unsaturated color; - should be used when the information being plotted has a critical - middle value, such as topography or when the data deviates around - zero. - -3. Cyclic: change in lightness of two different colors that meet in - the middle and beginning/end at an unsaturated color; should be - used for values that wrap around at the endpoints, such as phase - angle, wind direction, or time of day. - -4. Qualitative: often are miscellaneous colors; should be used to - represent information which does not have ordering or - relationships. -""" - -# sphinx_gallery_thumbnail_number = 2 - -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt -from matplotlib import cm -from colorspacious import cspace_converter -from collections import OrderedDict - -cmaps = OrderedDict() - -############################################################################### -# Sequential -# ---------- -# -# For the Sequential plots, the lightness value increases monotonically through -# the colormaps. This is good. Some of the :math:`L^*` values in the colormaps -# span from 0 to 100 (binary and the other grayscale), and others start around -# :math:`L^*=20`. Those that have a smaller range of :math:`L^*` will accordingly -# have a smaller perceptual range. Note also that the :math:`L^*` function varies -# amongst the colormaps: some are approximately linear in :math:`L^*` and others -# are more curved. - -cmaps['Perceptually Uniform Sequential'] = [ - 'viridis', 'plasma', 'inferno', 'magma', 'cividis'] - -cmaps['Sequential'] = [ - 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds', - 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu', - 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn'] - -############################################################################### -# Sequential2 -# ----------- -# -# Many of the :math:`L^*` values from the Sequential2 plots are monotonically -# increasing, but some (autumn, cool, spring, and winter) plateau or even go both -# up and down in :math:`L^*` space. Others (afmhot, copper, gist_heat, and hot) -# have kinks in the :math:`L^*` functions. Data that is being represented in a -# region of the colormap that is at a plateau or kink will lead to a perception of -# banding of the data in those values in the colormap (see [mycarta-banding]_ for -# an excellent example of this). - -cmaps['Sequential (2)'] = [ - 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink', - 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia', - 'hot', 'afmhot', 'gist_heat', 'copper'] - -############################################################################### -# Diverging -# --------- -# -# For the Diverging maps, we want to have monotonically increasing :math:`L^*` -# values up to a maximum, which should be close to :math:`L^*=100`, followed by -# monotonically decreasing :math:`L^*` values. We are looking for approximately -# equal minimum :math:`L^*` values at opposite ends of the colormap. By these -# measures, BrBG and RdBu are good options. coolwarm is a good option, but it -# doesn't span a wide range of :math:`L^*` values (see grayscale section below). - -cmaps['Diverging'] = [ - 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu', - 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic'] - -############################################################################### -# Cyclic -# ------ -# -# For Cyclic maps, we want to start and end on the same color, and meet a -# symmetric center point in the middle. :math:`L^*` should change monotonically -# from start to middle, and inversely from middle to end. It should be symmetric -# on the increasing and decreasing side, and only differ in hue. At the ends and -# middle, :math:`L^*` will reverse direction, which should be smoothed in -# :math:`L^*` space to reduce artifacts. See [kovesi-colormaps]_ for more -# information on the design of cyclic maps. -# -# The often-used HSV colormap is included in this set of colormaps, although it -# is not symmetric to a center point. Additionally, the :math:`L^*` values vary -# widely throughout the colormap, making it a poor choice for representing data -# for viewers to see perceptually. See an extension on this idea at -# [mycarta-jet]_. - -cmaps['Cyclic'] = ['twilight', 'twilight_shifted', 'hsv'] - -############################################################################### -# Qualitative -# ----------- -# -# Qualitative colormaps are not aimed at being perceptual maps, but looking at the -# lightness parameter can verify that for us. The :math:`L^*` values move all over -# the place throughout the colormap, and are clearly not monotonically increasing. -# These would not be good options for use as perceptual colormaps. - -cmaps['Qualitative'] = ['Pastel1', 'Pastel2', 'Paired', 'Accent', - 'Dark2', 'Set1', 'Set2', 'Set3', - 'tab10', 'tab20', 'tab20b', 'tab20c'] - -############################################################################### -# Miscellaneous -# ------------- -# -# Some of the miscellaneous colormaps have particular uses for which -# they have been created. For example, gist_earth, ocean, and terrain -# all seem to be created for plotting topography (green/brown) and water -# depths (blue) together. We would expect to see a divergence in these -# colormaps, then, but multiple kinks may not be ideal, such as in -# gist_earth and terrain. CMRmap was created to convert well to -# grayscale, though it does appear to have some small kinks in -# :math:`L^*`. cubehelix was created to vary smoothly in both lightness -# and hue, but appears to have a small hump in the green hue area. -# -# The often-used jet colormap is included in this set of colormaps. We can see -# that the :math:`L^*` values vary widely throughout the colormap, making it a -# poor choice for representing data for viewers to see perceptually. See an -# extension on this idea at [mycarta-jet]_. - -cmaps['Miscellaneous'] = [ - 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern', - 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg', - 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar'] - -############################################################################### -# .. _color-colormaps_reference: -# -# First, we'll show the range of each colormap. Note that some seem -# to change more "quickly" than others. - -nrows = max(len(cmap_list) for cmap_category, cmap_list in cmaps.items()) -gradient = np.linspace(0, 1, 256) -gradient = np.vstack((gradient, gradient)) - - -def plot_color_gradients(cmap_category, cmap_list, nrows): - fig, axes = plt.subplots(nrows=nrows) - fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99) - axes[0].set_title(cmap_category + ' colormaps', fontsize=14) - - for ax, name in zip(axes, cmap_list): - ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name)) - pos = list(ax.get_position().bounds) - x_text = pos[0] - 0.01 - y_text = pos[1] + pos[3]/2. - fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10) - - # Turn off *all* ticks & spines, not just the ones with colormaps. - for ax in axes: - ax.set_axis_off() - - -for cmap_category, cmap_list in cmaps.items(): - plot_color_gradients(cmap_category, cmap_list, nrows) - -plt.show() - -############################################################################### -# Lightness of matplotlib colormaps -# ================================= -# -# Here we examine the lightness values of the matplotlib colormaps. -# Note that some documentation on the colormaps is available -# ([list-colormaps]_). - -mpl.rcParams.update({'font.size': 12}) - -# Number of colormap per subplot for particular cmap categories -_DSUBS = {'Perceptually Uniform Sequential': 5, 'Sequential': 6, - 'Sequential (2)': 6, 'Diverging': 6, 'Cyclic': 3, - 'Qualitative': 4, 'Miscellaneous': 6} - -# Spacing between the colormaps of a subplot -_DC = {'Perceptually Uniform Sequential': 1.4, 'Sequential': 0.7, - 'Sequential (2)': 1.4, 'Diverging': 1.4, 'Cyclic': 1.4, - 'Qualitative': 1.4, 'Miscellaneous': 1.4} - -# Indices to step through colormap -x = np.linspace(0.0, 1.0, 100) - -# Do plot -for cmap_category, cmap_list in cmaps.items(): - - # Do subplots so that colormaps have enough space. - # Default is 6 colormaps per subplot. - dsub = _DSUBS.get(cmap_category, 6) - nsubplots = int(np.ceil(len(cmap_list) / dsub)) - - # squeeze=False to handle similarly the case of a single subplot - fig, axes = plt.subplots(nrows=nsubplots, squeeze=False, - figsize=(7, 2.6*nsubplots)) - - for i, ax in enumerate(axes.flat): - - locs = [] # locations for text labels - - for j, cmap in enumerate(cmap_list[i*dsub:(i+1)*dsub]): - - # Get RGB values for colormap and convert the colormap in - # CAM02-UCS colorspace. lab[0, :, 0] is the lightness. - rgb = cm.get_cmap(cmap)(x)[np.newaxis, :, :3] - lab = cspace_converter("sRGB1", "CAM02-UCS")(rgb) - - # Plot colormap L values. Do separately for each category - # so each plot can be pretty. To make scatter markers change - # color along plot: - # http://stackoverflow.com/questions/8202605/ - - if cmap_category == 'Sequential': - # These colormaps all start at high lightness but we want them - # reversed to look nice in the plot, so reverse the order. - y_ = lab[0, ::-1, 0] - c_ = x[::-1] - else: - y_ = lab[0, :, 0] - c_ = x - - dc = _DC.get(cmap_category, 1.4) # cmaps horizontal spacing - ax.scatter(x + j*dc, y_, c=c_, cmap=cmap, s=300, linewidths=0.0) - - # Store locations for colormap labels - if cmap_category in ('Perceptually Uniform Sequential', - 'Sequential'): - locs.append(x[-1] + j*dc) - elif cmap_category in ('Diverging', 'Qualitative', 'Cyclic', - 'Miscellaneous', 'Sequential (2)'): - locs.append(x[int(x.size/2.)] + j*dc) - - # Set up the axis limits: - # * the 1st subplot is used as a reference for the x-axis limits - # * lightness values goes from 0 to 100 (y-axis limits) - ax.set_xlim(axes[0, 0].get_xlim()) - ax.set_ylim(0.0, 100.0) - - # Set up labels for colormaps - ax.xaxis.set_ticks_position('top') - ticker = mpl.ticker.FixedLocator(locs) - ax.xaxis.set_major_locator(ticker) - formatter = mpl.ticker.FixedFormatter(cmap_list[i*dsub:(i+1)*dsub]) - ax.xaxis.set_major_formatter(formatter) - ax.xaxis.set_tick_params(rotation=50) - - ax.set_xlabel(cmap_category + ' colormaps', fontsize=14) - fig.text(0.0, 0.55, 'Lightness $L^*$', fontsize=12, - transform=fig.transFigure, rotation=90) - - fig.tight_layout(h_pad=0.0, pad=1.5) - plt.show() - - -############################################################################### -# Grayscale conversion -# ==================== -# -# It is important to pay attention to conversion to grayscale for color -# plots, since they may be printed on black and white printers. If not -# carefully considered, your readers may end up with indecipherable -# plots because the grayscale changes unpredictably through the -# colormap. -# -# Conversion to grayscale is done in many different ways [bw]_. Some of the -# better ones use a linear combination of the rgb values of a pixel, but -# weighted according to how we perceive color intensity. A nonlinear method of -# conversion to grayscale is to use the :math:`L^*` values of the pixels. In -# general, similar principles apply for this question as they do for presenting -# one's information perceptually; that is, if a colormap is chosen that is -# monotonically increasing in :math:`L^*` values, it will print in a reasonable -# manner to grayscale. -# -# With this in mind, we see that the Sequential colormaps have reasonable -# representations in grayscale. Some of the Sequential2 colormaps have decent -# enough grayscale representations, though some (autumn, spring, summer, -# winter) have very little grayscale change. If a colormap like this was used -# in a plot and then the plot was printed to grayscale, a lot of the -# information may map to the same gray values. The Diverging colormaps mostly -# vary from darker gray on the outer edges to white in the middle. Some -# (PuOr and seismic) have noticeably darker gray on one side than the other -# and therefore are not very symmetric. coolwarm has little range of gray scale -# and would print to a more uniform plot, losing a lot of detail. Note that -# overlaid, labeled contours could help differentiate between one side of the -# colormap vs. the other since color cannot be used once a plot is printed to -# grayscale. Many of the Qualitative and Miscellaneous colormaps, such as -# Accent, hsv, and jet, change from darker to lighter and back to darker gray -# throughout the colormap. This would make it impossible for a viewer to -# interpret the information in a plot once it is printed in grayscale. - -mpl.rcParams.update({'font.size': 14}) - -# Indices to step through colormap. -x = np.linspace(0.0, 1.0, 100) - -gradient = np.linspace(0, 1, 256) -gradient = np.vstack((gradient, gradient)) - - -def plot_color_gradients(cmap_category, cmap_list): - fig, axes = plt.subplots(nrows=len(cmap_list), ncols=2) - fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99, - wspace=0.05) - fig.suptitle(cmap_category + ' colormaps', fontsize=14, y=1.0, x=0.6) - - for ax, name in zip(axes, cmap_list): - - # Get RGB values for colormap. - rgb = cm.get_cmap(plt.get_cmap(name))(x)[np.newaxis, :, :3] - - # Get colormap in CAM02-UCS colorspace. We want the lightness. - lab = cspace_converter("sRGB1", "CAM02-UCS")(rgb) - L = lab[0, :, 0] - L = np.float32(np.vstack((L, L, L))) - - ax[0].imshow(gradient, aspect='auto', cmap=plt.get_cmap(name)) - ax[1].imshow(L, aspect='auto', cmap='binary_r', vmin=0., vmax=100.) - pos = list(ax[0].get_position().bounds) - x_text = pos[0] - 0.01 - y_text = pos[1] + pos[3]/2. - fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10) - - # Turn off *all* ticks & spines, not just the ones with colormaps. - for ax in axes.flat: - ax.set_axis_off() - - plt.show() - - -for cmap_category, cmap_list in cmaps.items(): - - plot_color_gradients(cmap_category, cmap_list) - -############################################################################### -# Color vision deficiencies -# ========================= -# -# There is a lot of information available about color blindness (*e.g.*, -# [colorblindness]_). Additionally, there are tools available to convert images -# to how they look for different types of color vision deficiencies. -# -# The most common form of color vision deficiency involves differentiating -# between red and green. Thus, avoiding colormaps with both red and green will -# avoid many problems in general. -# -# -# References -# ========== -# -# .. [colorcet] https://colorcet.pyviz.org -# .. [Ware] http://ccom.unh.edu/sites/default/files/publications/Ware_1988_CGA_Color_sequences_univariate_maps.pdf -# .. [Moreland] http://www.kennethmoreland.com/color-maps/ColorMapsExpanded.pdf -# .. [list-colormaps] https://gist.github.com/endolith/2719900#id7 -# .. [mycarta-banding] https://mycarta.wordpress.com/2012/10/14/the-rainbow-is-deadlong-live-the-rainbow-part-4-cie-lab-heated-body/ -# .. [mycarta-jet] https://mycarta.wordpress.com/2012/10/06/the-rainbow-is-deadlong-live-the-rainbow-part-3/ -# .. [kovesi-colormaps] https://arxiv.org/abs/1509.03700 -# .. [bw] http://www.tannerhelland.com/3643/grayscale-image-algorithm-vb6/ -# .. [colorblindness] http://www.color-blindness.com/ -# .. [IBM] https://doi.org/10.1109/VISUAL.1995.480803 -# .. [palettable] https://jiffyclub.github.io/palettable/ diff --git a/_downloads/168e63cc0650bc4cb6a1765cbd2de991/demo_fixed_size_axes.ipynb b/_downloads/168e63cc0650bc4cb6a1765cbd2de991/demo_fixed_size_axes.ipynb deleted file mode 120000 index e58b1411f83..00000000000 --- a/_downloads/168e63cc0650bc4cb6a1765cbd2de991/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/168e63cc0650bc4cb6a1765cbd2de991/demo_fixed_size_axes.ipynb \ No newline at end of file diff --git a/_downloads/169b58d266e244cd8c1fd7164b9d2283/figlegend_demo.py b/_downloads/169b58d266e244cd8c1fd7164b9d2283/figlegend_demo.py deleted file mode 120000 index 70e8cf69288..00000000000 --- a/_downloads/169b58d266e244cd8c1fd7164b9d2283/figlegend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/169b58d266e244cd8c1fd7164b9d2283/figlegend_demo.py \ No newline at end of file diff --git a/_downloads/16b417d1bc6a72a897a2070af8e901d5/whats_new_99_mplot3d.py b/_downloads/16b417d1bc6a72a897a2070af8e901d5/whats_new_99_mplot3d.py deleted file mode 120000 index 8805d0b55ab..00000000000 --- a/_downloads/16b417d1bc6a72a897a2070af8e901d5/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/16b417d1bc6a72a897a2070af8e901d5/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/_downloads/16b7f38d56a3152766faaeb88109d874/advanced_hillshading.py b/_downloads/16b7f38d56a3152766faaeb88109d874/advanced_hillshading.py deleted file mode 120000 index 6c5e778322a..00000000000 --- a/_downloads/16b7f38d56a3152766faaeb88109d874/advanced_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/16b7f38d56a3152766faaeb88109d874/advanced_hillshading.py \ No newline at end of file diff --git a/_downloads/16b8b1c4086b7eae4e4ac0a57d1f2ad6/errorbar_subsample.ipynb b/_downloads/16b8b1c4086b7eae4e4ac0a57d1f2ad6/errorbar_subsample.ipynb deleted file mode 120000 index 028a1cdc873..00000000000 --- a/_downloads/16b8b1c4086b7eae4e4ac0a57d1f2ad6/errorbar_subsample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/16b8b1c4086b7eae4e4ac0a57d1f2ad6/errorbar_subsample.ipynb \ No newline at end of file diff --git a/_downloads/16cbf477a4e69133c3df55e50029793a/triinterp_demo.ipynb b/_downloads/16cbf477a4e69133c3df55e50029793a/triinterp_demo.ipynb deleted file mode 120000 index a050ce2900a..00000000000 --- a/_downloads/16cbf477a4e69133c3df55e50029793a/triinterp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/16cbf477a4e69133c3df55e50029793a/triinterp_demo.ipynb \ No newline at end of file diff --git a/_downloads/16d604c55fb650c0dce205aa67def02b/usage.ipynb b/_downloads/16d604c55fb650c0dce205aa67def02b/usage.ipynb deleted file mode 100644 index 5d7245ac566..00000000000 --- a/_downloads/16d604c55fb650c0dce205aa67def02b/usage.ipynb +++ /dev/null @@ -1,151 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n***********\nUsage Guide\n***********\n\nThis tutorial covers some basic usage patterns and best-practices to\nhelp you get started with Matplotlib.\n\n\nGeneral Concepts\n================\n\n:mod:`matplotlib` has an extensive codebase that can be daunting to many\nnew users. However, most of matplotlib can be understood with a fairly\nsimple conceptual framework and knowledge of a few important points.\n\nPlotting requires action on a range of levels, from the most general\n(e.g., 'contour this 2-D array') to the most specific (e.g., 'color\nthis screen pixel red'). The purpose of a plotting package is to assist\nyou in visualizing your data as easily as possible, with all the necessary\ncontrol -- that is, by using relatively high-level commands most of\nthe time, and still have the ability to use the low-level commands when\nneeded.\n\nTherefore, everything in matplotlib is organized in a hierarchy. At the top\nof the hierarchy is the matplotlib \"state-machine environment\" which is\nprovided by the :mod:`matplotlib.pyplot` module. At this level, simple\nfunctions are used to add plot elements (lines, images, text, etc.) to\nthe current axes in the current figure.\n\n

Note

Pyplot's state-machine environment behaves similarly to MATLAB and\n should be most familiar to users with MATLAB experience.

\n\nThe next level down in the hierarchy is the first level of the object-oriented\ninterface, in which pyplot is used only for a few functions such as figure\ncreation, and the user explicitly creates and keeps track of the figure\nand axes objects. At this level, the user uses pyplot to create figures,\nand through those figures, one or more axes objects can be created. These\naxes objects are then used for most plotting actions.\n\nFor even more control -- which is essential for things like embedding\nmatplotlib plots in GUI applications -- the pyplot level may be dropped\ncompletely, leaving a purely object-oriented approach.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 3\nimport matplotlib.pyplot as plt\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nParts of a Figure\n=================\n\n![](../../_static/anatomy.png)\n\n\n\n:class:`~matplotlib.figure.Figure`\n----------------------------------\n\nThe **whole** figure. The figure keeps\ntrack of all the child :class:`~matplotlib.axes.Axes`, a smattering of\n'special' artists (titles, figure legends, etc), and the **canvas**.\n(Don't worry too much about the canvas, it is crucial as it is the\nobject that actually does the drawing to get you your plot, but as the\nuser it is more-or-less invisible to you). A figure can have any\nnumber of :class:`~matplotlib.axes.Axes`, but to be useful should have\nat least one.\n\nThe easiest way to create a new figure is with pyplot:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure() # an empty figure with no axes\nfig.suptitle('No axes on this figure') # Add a title so we know which it is\n\nfig, ax_lst = plt.subplots(2, 2) # a figure with a 2x2 grid of Axes" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":class:`~matplotlib.axes.Axes`\n------------------------------\n\nThis is what you think of as 'a plot', it is the region of the image\nwith the data space. A given figure\ncan contain many Axes, but a given :class:`~matplotlib.axes.Axes`\nobject can only be in one :class:`~matplotlib.figure.Figure`. The\nAxes contains two (or three in the case of 3D)\n:class:`~matplotlib.axis.Axis` objects (be aware of the difference\nbetween **Axes** and **Axis**) which take care of the data limits (the\ndata limits can also be controlled via set via the\n:meth:`~matplotlib.axes.Axes.set_xlim` and\n:meth:`~matplotlib.axes.Axes.set_ylim` :class:`Axes` methods). Each\n:class:`Axes` has a title (set via\n:meth:`~matplotlib.axes.Axes.set_title`), an x-label (set via\n:meth:`~matplotlib.axes.Axes.set_xlabel`), and a y-label set via\n:meth:`~matplotlib.axes.Axes.set_ylabel`).\n\nThe :class:`Axes` class and its member functions are the primary entry\npoint to working with the OO interface.\n\n:class:`~matplotlib.axis.Axis`\n------------------------------\n\nThese are the number-line-like objects. They take\ncare of setting the graph limits and generating the ticks (the marks\non the axis) and ticklabels (strings labeling the ticks). The\nlocation of the ticks is determined by a\n:class:`~matplotlib.ticker.Locator` object and the ticklabel strings\nare formatted by a :class:`~matplotlib.ticker.Formatter`. The\ncombination of the correct :class:`Locator` and :class:`Formatter` gives\nvery fine control over the tick locations and labels.\n\n:class:`~matplotlib.artist.Artist`\n----------------------------------\n\nBasically everything you can see on the figure is an artist (even the\n:class:`Figure`, :class:`Axes`, and :class:`Axis` objects). This\nincludes :class:`Text` objects, :class:`Line2D` objects,\n:class:`collection` objects, :class:`Patch` objects ... (you get the\nidea). When the figure is rendered, all of the artists are drawn to\nthe **canvas**. Most Artists are tied to an Axes; such an Artist\ncannot be shared by multiple Axes, or moved from one to another.\n\n\nTypes of inputs to plotting functions\n=====================================\n\nAll of plotting functions expect `np.array` or `np.ma.masked_array` as\ninput. Classes that are 'array-like' such as `pandas` data objects\nand `np.matrix` may or may not work as intended. It is best to\nconvert these to `np.array` objects prior to plotting.\n\nFor example, to convert a `pandas.DataFrame` ::\n\n a = pandas.DataFrame(np.random.rand(4,5), columns = list('abcde'))\n a_asarray = a.values\n\nand to convert a `np.matrix` ::\n\n b = np.matrix([[1,2],[3,4]])\n b_asarray = np.asarray(b)\n\n\nMatplotlib, pyplot and pylab: how are they related?\n====================================================\n\nMatplotlib is the whole package and :mod:`matplotlib.pyplot` is a module in\nMatplotlib.\n\nFor functions in the pyplot module, there is always a \"current\" figure and\naxes (which is created automatically on request). For example, in the\nfollowing example, the first call to ``plt.plot`` creates the axes, then\nsubsequent calls to ``plt.plot`` add additional lines on the same axes, and\n``plt.xlabel``, ``plt.ylabel``, ``plt.title`` and ``plt.legend`` set the\naxes labels and title and add a legend.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 2, 100)\n\nplt.plot(x, x, label='linear')\nplt.plot(x, x**2, label='quadratic')\nplt.plot(x, x**3, label='cubic')\n\nplt.xlabel('x label')\nplt.ylabel('y label')\n\nplt.title(\"Simple Plot\")\n\nplt.legend()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":mod:`pylab` is a convenience module that bulk imports\n:mod:`matplotlib.pyplot` (for plotting) and :mod:`numpy`\n(for mathematics and working with arrays) in a single namespace.\npylab is deprecated and its use is strongly discouraged because\nof namespace pollution. Use pyplot instead.\n\nFor non-interactive plotting it is suggested\nto use pyplot to create the figures and then the OO interface for\nplotting.\n\n\nCoding Styles\n==================\n\nWhen viewing this documentation and examples, you will find different\ncoding styles and usage patterns. These styles are perfectly valid\nand have their pros and cons. Just about all of the examples can be\nconverted into another style and achieve the same results.\nThe only caveat is to avoid mixing the coding styles for your own code.\n\n

Note

Developers for matplotlib have to follow a specific style and guidelines.\n See `developers-guide-index`.

\n\nOf the different styles, there are two that are officially supported.\nTherefore, these are the preferred ways to use matplotlib.\n\nFor the pyplot style, the imports at the top of your\nscripts will typically be::\n\n import matplotlib.pyplot as plt\n import numpy as np\n\nThen one calls, for example, np.arange, np.zeros, np.pi, plt.figure,\nplt.plot, plt.show, etc. Use the pyplot interface\nfor creating figures, and then use the object methods for the rest:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 10, 0.2)\ny = np.sin(x)\nfig, ax = plt.subplots()\nax.plot(x, y)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "So, why all the extra typing instead of the MATLAB-style (which relies\non global state and a flat namespace)? For very simple things like\nthis example, the only advantage is academic: the wordier styles are\nmore explicit, more clear as to where things come from and what is\ngoing on. For more complicated applications, this explicitness and\nclarity becomes increasingly valuable, and the richer and more\ncomplete object-oriented interface will likely make the program easier\nto write and maintain.\n\n\nTypically one finds oneself making the same plots over and over\nagain, but with different data sets, which leads to needing to write\nspecialized functions to do the plotting. The recommended function\nsignature is something like:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def my_plotter(ax, data1, data2, param_dict):\n \"\"\"\n A helper function to make a graph\n\n Parameters\n ----------\n ax : Axes\n The axes to draw to\n\n data1 : array\n The x data\n\n data2 : array\n The y data\n\n param_dict : dict\n Dictionary of kwargs to pass to ax.plot\n\n Returns\n -------\n out : list\n list of artists added\n \"\"\"\n out = ax.plot(data1, data2, **param_dict)\n return out\n\n# which you would then use as:\n\ndata1, data2, data3, data4 = np.random.randn(4, 100)\nfig, ax = plt.subplots(1, 1)\nmy_plotter(ax, data1, data2, {'marker': 'x'})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "or if you wanted to have 2 sub-plots:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2)\nmy_plotter(ax1, data1, data2, {'marker': 'x'})\nmy_plotter(ax2, data3, data4, {'marker': 'o'})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Again, for these simple examples this style seems like overkill, however\nonce the graphs get slightly more complex it pays off.\n\n\n\nBackends\n========\n\n\nWhat is a backend?\n------------------\n\nA lot of documentation on the website and in the mailing lists refers\nto the \"backend\" and many new users are confused by this term.\nmatplotlib targets many different use cases and output formats. Some\npeople use matplotlib interactively from the python shell and have\nplotting windows pop up when they type commands. Some people run\n`Jupyter `_ notebooks and draw inline plots for\nquick data analysis. Others embed matplotlib into graphical user\ninterfaces like wxpython or pygtk to build rich applications. Some\npeople use matplotlib in batch scripts to generate postscript images\nfrom numerical simulations, and still others run web application\nservers to dynamically serve up graphs.\n\nTo support all of these use cases, matplotlib can target different\noutputs, and each of these capabilities is called a backend; the\n\"frontend\" is the user facing code, i.e., the plotting code, whereas the\n\"backend\" does all the hard work behind-the-scenes to make the figure.\nThere are two types of backends: user interface backends (for use in\npygtk, wxpython, tkinter, qt4, or macosx; also referred to as\n\"interactive backends\") and hardcopy backends to make image files\n(PNG, SVG, PDF, PS; also referred to as \"non-interactive backends\").\n\nThere are four ways to configure your backend. If they conflict each other,\nthe method mentioned last in the following list will be used, e.g. calling\n:func:`~matplotlib.use()` will override the setting in your ``matplotlibrc``.\n\n\n#. The ``backend`` parameter in your ``matplotlibrc`` file (see\n :doc:`/tutorials/introductory/customizing`)::\n\n backend : WXAgg # use wxpython with antigrain (agg) rendering\n\n#. Setting the :envvar:`MPLBACKEND` environment variable, either for your\n current shell or for a single script. On Unix::\n\n > export MPLBACKEND=module://my_backend\n > python simple_plot.py\n\n > MPLBACKEND=\"module://my_backend\" python simple_plot.py\n\n On Windows, only the former is possible::\n\n > set MPLBACKEND=module://my_backend\n > python simple_plot.py\n\n Setting this environment variable will override the ``backend`` parameter\n in *any* ``matplotlibrc``, even if there is a ``matplotlibrc`` in your\n current working directory. Therefore setting :envvar:`MPLBACKEND`\n globally, e.g. in your ``.bashrc`` or ``.profile``, is discouraged as it\n might lead to counter-intuitive behavior.\n\n#. If your script depends on a specific backend you can use the\n :func:`~matplotlib.use` function::\n\n import matplotlib\n matplotlib.use('PS') # generate postscript output by default\n\n If you use the :func:`~matplotlib.use` function, this must be done before\n importing :mod:`matplotlib.pyplot`. Calling :func:`~matplotlib.use` after\n pyplot has been imported will have no effect. Using\n :func:`~matplotlib.use` will require changes in your code if users want to\n use a different backend. Therefore, you should avoid explicitly calling\n :func:`~matplotlib.use` unless absolutely necessary.\n\n

Note

Backend name specifications are not case-sensitive; e.g., 'GTK3Agg'\n and 'gtk3agg' are equivalent.

\n\nWith a typical installation of matplotlib, such as from a\nbinary installer or a linux distribution package, a good default\nbackend will already be set, allowing both interactive work and\nplotting from scripts, with output to the screen and/or to\na file, so at least initially you will not need to use any of the\nmethods given above.\n\nIf, however, you want to write graphical user interfaces, or a web\napplication server (`howto-webapp`), or need a better\nunderstanding of what is going on, read on. To make things a little\nmore customizable for graphical user interfaces, matplotlib separates\nthe concept of the renderer (the thing that actually does the drawing)\nfrom the canvas (the place where the drawing goes). The canonical\nrenderer for user interfaces is ``Agg`` which uses the `Anti-Grain\nGeometry`_ C++ library to make a raster (pixel) image of the figure.\nAll of the user interfaces except ``macosx`` can be used with\nagg rendering, e.g., ``WXAgg``, ``GTK3Agg``, ``QT4Agg``, ``QT5Agg``,\n``TkAgg``. In addition, some of the user interfaces support other rendering\nengines. For example, with GTK+ 3, you can also select Cairo rendering\n(backend ``GTK3Cairo``).\n\nFor the rendering engines, one can also distinguish between `vector\n`_ or `raster\n`_ renderers. Vector\ngraphics languages issue drawing commands like \"draw a line from this\npoint to this point\" and hence are scale free, and raster backends\ngenerate a pixel representation of the line whose accuracy depends on a\nDPI setting.\n\nHere is a summary of the matplotlib renderers (there is an eponymous\nbackend for each; these are *non-interactive backends*, capable of\nwriting to a file):\n\n============= ============ ================================================\nRenderer Filetypes Description\n============= ============ ================================================\n:term:`AGG` :term:`png` :term:`raster graphics` -- high quality images\n using the `Anti-Grain Geometry`_ engine\nPS :term:`ps` :term:`vector graphics` -- Postscript_ output\n :term:`eps`\nPDF :term:`pdf` :term:`vector graphics` --\n `Portable Document Format`_\nSVG :term:`svg` :term:`vector graphics` --\n `Scalable Vector Graphics`_\n:term:`Cairo` :term:`png` :term:`raster graphics` and\n :term:`ps` :term:`vector graphics` -- using the\n :term:`pdf` `Cairo graphics`_ library\n :term:`svg`\n============= ============ ================================================\n\nAnd here are the user interfaces and renderer combinations supported;\nthese are *interactive backends*, capable of displaying to the screen\nand of using appropriate renderers from the table above to write to\na file:\n\n========= ================================================================\nBackend Description\n========= ================================================================\nQt5Agg Agg rendering in a :term:`Qt5` canvas (requires PyQt5_). This\n backend can be activated in IPython with ``%matplotlib qt5``.\nipympl Agg rendering embedded in a Jupyter widget. (requires ipympl).\n This backend can be enabled in a Jupyter notebook with\n ``%matplotlib ipympl``.\nGTK3Agg Agg rendering to a :term:`GTK` 3.x canvas (requires PyGObject_,\n and pycairo_ or cairocffi_). This backend can be activated in\n IPython with ``%matplotlib gtk3``.\nmacosx Agg rendering into a Cocoa canvas in OSX. This backend can be\n activated in IPython with ``%matplotlib osx``.\nTkAgg Agg rendering to a :term:`Tk` canvas (requires TkInter_). This\n backend can be activated in IPython with ``%matplotlib tk``.\nnbAgg Embed an interactive figure in a Jupyter classic notebook. This\n backend can be enabled in Jupyter notebooks via\n ``%matplotlib notebook``.\nWebAgg On ``show()`` will start a tornado server with an interactive\n figure.\nGTK3Cairo Cairo rendering to a :term:`GTK` 3.x canvas (requires PyGObject_,\n and pycairo_ or cairocffi_).\nQt4Agg Agg rendering to a :term:`Qt4` canvas (requires PyQt4_ or\n ``pyside``). This backend can be activated in IPython with\n ``%matplotlib qt4``.\nWXAgg Agg rendering to a :term:`wxWidgets` canvas (requires wxPython_ 4).\n This backend can be activated in IPython with ``%matplotlib wx``.\n========= ================================================================\n\n\nipympl\n------\n\nThe Jupyter widget ecosystem is moving too fast to support directly in\nMatplotlib. To install ipympl\n\n.. code-block:: bash\n\n pip install ipympl\n jupyter nbextension enable --py --sys-prefix ipympl\n\nor\n\n.. code-block:: bash\n\n conda install ipympl -c conda-forge\n\nSee `jupyter-matplotlib `__\nfor more details.\n\nGTK and Cairo\n-------------\n\n`GTK3` backends (*both* `GTK3Agg` and `GTK3Cairo`) depend on Cairo\n(pycairo>=1.11.0 or cairocffi).\n\nHow do I select PyQt4 or PySide?\n--------------------------------\n\nThe `QT_API` environment variable can be set to either `pyqt` or `pyside`\nto use `PyQt4` or `PySide`, respectively.\n\nSince the default value for the bindings to be used is `PyQt4`,\n:mod:`matplotlib` first tries to import it, if the import fails, it tries to\nimport `PySide`.\n\n\nWhat is interactive mode?\n===================================\n\nUse of an interactive backend (see `what-is-a-backend`)\npermits--but does not by itself require or ensure--plotting\nto the screen. Whether and when plotting to the screen occurs,\nand whether a script or shell session continues after a plot\nis drawn on the screen, depends on the functions and methods\nthat are called, and on a state variable that determines whether\nmatplotlib is in \"interactive mode\". The default Boolean value is set\nby the :file:`matplotlibrc` file, and may be customized like any other\nconfiguration parameter (see :doc:`/tutorials/introductory/customizing`). It\nmay also be set via :func:`matplotlib.interactive`, and its\nvalue may be queried via :func:`matplotlib.is_interactive`. Turning\ninteractive mode on and off in the middle of a stream of plotting\ncommands, whether in a script or in a shell, is rarely needed\nand potentially confusing, so in the following we will assume all\nplotting is done with interactive mode either on or off.\n\n

Note

Major changes related to interactivity, and in particular the\n role and behavior of :func:`~matplotlib.pyplot.show`, were made in the\n transition to matplotlib version 1.0, and bugs were fixed in\n 1.0.1. Here we describe the version 1.0.1 behavior for the\n primary interactive backends, with the partial exception of\n *macosx*.

\n\nInteractive mode may also be turned on via :func:`matplotlib.pyplot.ion`,\nand turned off via :func:`matplotlib.pyplot.ioff`.\n\n

Note

Interactive mode works with suitable backends in ipython and in\n the ordinary python shell, but it does *not* work in the IDLE IDE.\n If the default backend does not support interactivity, an interactive\n backend can be explicitly activated using any of the methods discussed in `What is a backend?`_.

\n\n\nInteractive example\n--------------------\n\nFrom an ordinary python prompt, or after invoking ipython with no options,\ntry this::\n\n import matplotlib.pyplot as plt\n plt.ion()\n plt.plot([1.6, 2.7])\n\nAssuming you are running version 1.0.1 or higher, and you have\nan interactive backend installed and selected by default, you should\nsee a plot, and your terminal prompt should also be active; you\ncan type additional commands such as::\n\n plt.title(\"interactive test\")\n plt.xlabel(\"index\")\n\nand you will see the plot being updated after each line. Since version 1.5,\nmodifying the plot by other means *should* also automatically\nupdate the display on most backends. Get a reference to the :class:`~matplotlib.axes.Axes` instance,\nand call a method of that instance::\n\n ax = plt.gca()\n ax.plot([3.1, 2.2])\n\nIf you are using certain backends (like `macosx`), or an older version\nof matplotlib, you may not see the new line added to the plot immediately.\nIn this case, you need to explicitly call :func:`~matplotlib.pyplot.draw`\nin order to update the plot::\n\n plt.draw()\n\n\nNon-interactive example\n-----------------------\n\nStart a fresh session as in the previous example, but now\nturn interactive mode off::\n\n import matplotlib.pyplot as plt\n plt.ioff()\n plt.plot([1.6, 2.7])\n\nNothing happened--or at least nothing has shown up on the\nscreen (unless you are using *macosx* backend, which is\nanomalous). To make the plot appear, you need to do this::\n\n plt.show()\n\nNow you see the plot, but your terminal command line is\nunresponsive; the :func:`show()` command *blocks* the input\nof additional commands until you manually kill the plot\nwindow.\n\nWhat good is this--being forced to use a blocking function?\nSuppose you need a script that plots the contents of a file\nto the screen. You want to look at that plot, and then end\nthe script. Without some blocking command such as show(), the\nscript would flash up the plot and then end immediately,\nleaving nothing on the screen.\n\nIn addition, non-interactive mode delays all drawing until\nshow() is called; this is more efficient than redrawing\nthe plot each time a line in the script adds a new feature.\n\nPrior to version 1.0, show() generally could not be called\nmore than once in a single script (although sometimes one\ncould get away with it); for version 1.0.1 and above, this\nrestriction is lifted, so one can write a script like this::\n\n import numpy as np\n import matplotlib.pyplot as plt\n\n plt.ioff()\n for i in range(3):\n plt.plot(np.random.rand(10))\n plt.show()\n\nwhich makes three plots, one at a time. I.e. the second plot will show up,\nonce the first plot is closed.\n\nSummary\n-------\n\nIn interactive mode, pyplot functions automatically draw\nto the screen.\n\nWhen plotting interactively, if using\nobject method calls in addition to pyplot functions, then\ncall :func:`~matplotlib.pyplot.draw` whenever you want to\nrefresh the plot.\n\nUse non-interactive mode in scripts in which you want to\ngenerate one or more figures and display them before ending\nor generating a new set of figures. In that case, use\n:func:`~matplotlib.pyplot.show` to display the figure(s) and\nto block execution until you have manually destroyed them.\n\n\nPerformance\n===========\n\nWhether exploring data in interactive mode or programmatically\nsaving lots of plots, rendering performance can be a painful\nbottleneck in your pipeline. Matplotlib provides a couple\nways to greatly reduce rendering time at the cost of a slight\nchange (to a settable tolerance) in your plot's appearance.\nThe methods available to reduce rendering time depend on the\ntype of plot that is being created.\n\nLine segment simplification\n---------------------------\n\nFor plots that have line segments (e.g. typical line plots,\noutlines of polygons, etc.), rendering performance can be\ncontrolled by the ``path.simplify`` and\n``path.simplify_threshold`` parameters in your\n``matplotlibrc`` file (see\n:doc:`/tutorials/introductory/customizing` for\nmore information about the ``matplotlibrc`` file).\nThe ``path.simplify`` parameter is a boolean indicating whether\nor not line segments are simplified at all. The\n``path.simplify_threshold`` parameter controls how much line\nsegments are simplified; higher thresholds result in quicker\nrendering.\n\nThe following script will first display the data without any\nsimplification, and then display the same data with simplification.\nTry interacting with both of them::\n\n import numpy as np\n import matplotlib.pyplot as plt\n import matplotlib as mpl\n\n # Setup, and create the data to plot\n y = np.random.rand(100000)\n y[50000:] *= 2\n y[np.logspace(1, np.log10(50000), 400).astype(int)] = -1\n mpl.rcParams['path.simplify'] = True\n\n mpl.rcParams['path.simplify_threshold'] = 0.0\n plt.plot(y)\n plt.show()\n\n mpl.rcParams['path.simplify_threshold'] = 1.0\n plt.plot(y)\n plt.show()\n\nMatplotlib currently defaults to a conservative simplification\nthreshold of ``1/9``. If you want to change your default settings\nto use a different value, you can change your ``matplotlibrc``\nfile. Alternatively, you could create a new style for\ninteractive plotting (with maximal simplification) and another\nstyle for publication quality plotting (with minimal\nsimplification) and activate them as necessary. See\n:doc:`/tutorials/introductory/customizing` for\ninstructions on how to perform these actions.\n\nThe simplification works by iteratively merging line segments\ninto a single vector until the next line segment's perpendicular\ndistance to the vector (measured in display-coordinate space)\nis greater than the ``path.simplify_threshold`` parameter.\n\n

Note

Changes related to how line segments are simplified were made\n in version 2.1. Rendering time will still be improved by these\n parameters prior to 2.1, but rendering time for some kinds of\n data will be vastly improved in versions 2.1 and greater.

\n\nMarker simplification\n---------------------\n\nMarkers can also be simplified, albeit less robustly than\nline segments. Marker simplification is only available\nto :class:`~matplotlib.lines.Line2D` objects (through the\n``markevery`` property). Wherever\n:class:`~matplotlib.lines.Line2D` construction parameters\nare passed through, such as\n:func:`matplotlib.pyplot.plot` and\n:meth:`matplotlib.axes.Axes.plot`, the ``markevery``\nparameter can be used::\n\n plt.plot(x, y, markevery=10)\n\nThe markevery argument allows for naive subsampling, or an\nattempt at evenly spaced (along the *x* axis) sampling. See the\n:doc:`/gallery/lines_bars_and_markers/markevery_demo`\nfor more information.\n\nSplitting lines into smaller chunks\n-----------------------------------\n\nIf you are using the Agg backend (see `what-is-a-backend`),\nthen you can make use of the ``agg.path.chunksize`` rc parameter.\nThis allows you to specify a chunk size, and any lines with\ngreater than that many vertices will be split into multiple\nlines, each of which has no more than ``agg.path.chunksize``\nmany vertices. (Unless ``agg.path.chunksize`` is zero, in\nwhich case there is no chunking.) For some kind of data,\nchunking the line up into reasonable sizes can greatly\ndecrease rendering time.\n\nThe following script will first display the data without any\nchunk size restriction, and then display the same data with\na chunk size of 10,000. The difference can best be seen when\nthe figures are large, try maximizing the GUI and then\ninteracting with them::\n\n import numpy as np\n import matplotlib.pyplot as plt\n import matplotlib as mpl\n mpl.rcParams['path.simplify_threshold'] = 1.0\n\n # Setup, and create the data to plot\n y = np.random.rand(100000)\n y[50000:] *= 2\n y[np.logspace(1,np.log10(50000), 400).astype(int)] = -1\n mpl.rcParams['path.simplify'] = True\n\n mpl.rcParams['agg.path.chunksize'] = 0\n plt.plot(y)\n plt.show()\n\n mpl.rcParams['agg.path.chunksize'] = 10000\n plt.plot(y)\n plt.show()\n\nLegends\n-------\n\nThe default legend behavior for axes attempts to find the location\nthat covers the fewest data points (`loc='best'`). This can be a\nvery expensive computation if there are lots of data points. In\nthis case, you may want to provide a specific location.\n\nUsing the *fast* style\n----------------------\n\nThe *fast* style can be used to automatically set\nsimplification and chunking parameters to reasonable\nsettings to speed up plotting large amounts of data.\nIt can be used simply by running::\n\n import matplotlib.style as mplstyle\n mplstyle.use('fast')\n\nIt is very light weight, so it plays nicely with other\nstyles, just make sure the fast style is applied last\nso that other styles do not overwrite the settings::\n\n mplstyle.use(['dark_background', 'ggplot', 'fast'])\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/16d69f312cba2bf289b5376ceb51d58c/plotfile_demo.ipynb b/_downloads/16d69f312cba2bf289b5376ceb51d58c/plotfile_demo.ipynb deleted file mode 120000 index b453e8c78bc..00000000000 --- a/_downloads/16d69f312cba2bf289b5376ceb51d58c/plotfile_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/16d69f312cba2bf289b5376ceb51d58c/plotfile_demo.ipynb \ No newline at end of file diff --git a/_downloads/16da32480841b864c92e63b6648f32a7/findobj_demo.ipynb b/_downloads/16da32480841b864c92e63b6648f32a7/findobj_demo.ipynb deleted file mode 120000 index 57add6eae03..00000000000 --- a/_downloads/16da32480841b864c92e63b6648f32a7/findobj_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/16da32480841b864c92e63b6648f32a7/findobj_demo.ipynb \ No newline at end of file diff --git a/_downloads/16ecee4069c51809789e9b795ac7d78b/span_regions.py b/_downloads/16ecee4069c51809789e9b795ac7d78b/span_regions.py deleted file mode 120000 index 39cb096884c..00000000000 --- a/_downloads/16ecee4069c51809789e9b795ac7d78b/span_regions.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/16ecee4069c51809789e9b795ac7d78b/span_regions.py \ No newline at end of file diff --git a/_downloads/16f7a11c03a6edd0b81853fb98dbfc1a/3D.py b/_downloads/16f7a11c03a6edd0b81853fb98dbfc1a/3D.py deleted file mode 100644 index 8c2da0c96f0..00000000000 --- a/_downloads/16f7a11c03a6edd0b81853fb98dbfc1a/3D.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -==================== -Frontpage 3D example -==================== - -This example reproduces the frontpage 3D example. -""" -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib import cbook -from matplotlib import cm -from matplotlib.colors import LightSource -import matplotlib.pyplot as plt -import numpy as np - -with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \ - np.load(file) as dem: - z = dem['elevation'] - nrows, ncols = z.shape - x = np.linspace(dem['xmin'], dem['xmax'], ncols) - y = np.linspace(dem['ymin'], dem['ymax'], nrows) - x, y = np.meshgrid(x, y) - -region = np.s_[5:50, 5:50] -x, y, z = x[region], y[region], z[region] - -fig, ax = plt.subplots(subplot_kw=dict(projection='3d')) - -ls = LightSource(270, 45) -# To use a custom hillshading mode, override the built-in shading and pass -# in the rgb colors of the shaded surface calculated from "shade". -rgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft') -surf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb, - linewidth=0, antialiased=False, shade=False) -ax.set_xticks([]) -ax.set_yticks([]) -ax.set_zticks([]) -fig.savefig("surface3d_frontpage.png", dpi=25) # results in 160x120 px image diff --git a/_downloads/16f80547fd46301cee5c6aee0e2ca160/donut.ipynb b/_downloads/16f80547fd46301cee5c6aee0e2ca160/donut.ipynb deleted file mode 120000 index aaad4908ff5..00000000000 --- a/_downloads/16f80547fd46301cee5c6aee0e2ca160/donut.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/16f80547fd46301cee5c6aee0e2ca160/donut.ipynb \ No newline at end of file diff --git a/_downloads/16f89741758572d640acf437f67da77d/zoom_window.py b/_downloads/16f89741758572d640acf437f67da77d/zoom_window.py deleted file mode 100644 index c2cc1cce556..00000000000 --- a/_downloads/16f89741758572d640acf437f67da77d/zoom_window.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -=========== -Zoom Window -=========== - -This example shows how to connect events in one window, for example, a mouse -press, to another figure window. - -If you click on a point in the first window, the z and y limits of the second -will be adjusted so that the center of the zoom in the second window will be -the x,y coordinates of the clicked point. - -Note the diameter of the circles in the scatter are defined in points**2, so -their size is independent of the zoom. -""" - -import matplotlib.pyplot as plt -import numpy as np - -figsrc, axsrc = plt.subplots() -figzoom, axzoom = plt.subplots() -axsrc.set(xlim=(0, 1), ylim=(0, 1), autoscale_on=False, - title='Click to zoom') -axzoom.set(xlim=(0.45, 0.55), ylim=(0.4, 0.6), autoscale_on=False, - title='Zoom window') - -x, y, s, c = np.random.rand(4, 200) -s *= 200 - -axsrc.scatter(x, y, s, c) -axzoom.scatter(x, y, s, c) - - -def onpress(event): - if event.button != 1: - return - x, y = event.xdata, event.ydata - axzoom.set_xlim(x - 0.1, x + 0.1) - axzoom.set_ylim(y - 0.1, y + 0.1) - figzoom.canvas.draw() - -figsrc.canvas.mpl_connect('button_press_event', onpress) -plt.show() diff --git a/_downloads/16fb1581e147fce049fa5a075ed32f6e/grayscale.py b/_downloads/16fb1581e147fce049fa5a075ed32f6e/grayscale.py deleted file mode 100644 index bbcab02e022..00000000000 --- a/_downloads/16fb1581e147fce049fa5a075ed32f6e/grayscale.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -===================== -Grayscale style sheet -===================== - -This example demonstrates the "grayscale" style sheet, which changes all colors -that are defined as rc parameters to grayscale. Note, however, that not all -plot elements default to colors defined by an rc parameter. - -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def color_cycle_example(ax): - L = 6 - x = np.linspace(0, L) - ncolors = len(plt.rcParams['axes.prop_cycle']) - shift = np.linspace(0, L, ncolors, endpoint=False) - for s in shift: - ax.plot(x, np.sin(x + s), 'o-') - - -def image_and_patch_example(ax): - ax.imshow(np.random.random(size=(20, 20)), interpolation='none') - c = plt.Circle((5, 5), radius=5, label='patch') - ax.add_patch(c) - - -plt.style.use('grayscale') - -fig, (ax1, ax2) = plt.subplots(ncols=2) -fig.suptitle("'grayscale' style sheet") - -color_cycle_example(ax1) -image_and_patch_example(ax2) - -plt.show() diff --git a/_downloads/1700b7548286d280482a943313400cb2/major_minor_demo.py b/_downloads/1700b7548286d280482a943313400cb2/major_minor_demo.py deleted file mode 120000 index 0aae42656a0..00000000000 --- a/_downloads/1700b7548286d280482a943313400cb2/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1700b7548286d280482a943313400cb2/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/17054779ee881ebfa4545fdc39b966ce/multi_image.ipynb b/_downloads/17054779ee881ebfa4545fdc39b966ce/multi_image.ipynb deleted file mode 120000 index 94d38c47e5c..00000000000 --- a/_downloads/17054779ee881ebfa4545fdc39b966ce/multi_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/17054779ee881ebfa4545fdc39b966ce/multi_image.ipynb \ No newline at end of file diff --git a/_downloads/1706c3507893617b0b3a6c9e42935299/units_sample.py b/_downloads/1706c3507893617b0b3a6c9e42935299/units_sample.py deleted file mode 120000 index f54edb50b05..00000000000 --- a/_downloads/1706c3507893617b0b3a6c9e42935299/units_sample.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1706c3507893617b0b3a6c9e42935299/units_sample.py \ No newline at end of file diff --git a/_downloads/170d06c87217e3b6e74c868e1505164f/demo_anchored_direction_arrows.py b/_downloads/170d06c87217e3b6e74c868e1505164f/demo_anchored_direction_arrows.py deleted file mode 120000 index 3c7d9b94a22..00000000000 --- a/_downloads/170d06c87217e3b6e74c868e1505164f/demo_anchored_direction_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/170d06c87217e3b6e74c868e1505164f/demo_anchored_direction_arrows.py \ No newline at end of file diff --git a/_downloads/170e11ac33937704fe158e1aeb8dcf94/annotate_simple01.ipynb b/_downloads/170e11ac33937704fe158e1aeb8dcf94/annotate_simple01.ipynb deleted file mode 100644 index fe3ba5e1f8a..00000000000 --- a/_downloads/170e11ac33937704fe158e1aeb8dcf94/annotate_simple01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nax.annotate(\"\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc3\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/171092f827493713ba8f5c7e914dfe90/demo_parasite_axes.py b/_downloads/171092f827493713ba8f5c7e914dfe90/demo_parasite_axes.py deleted file mode 100644 index 5c877c8d081..00000000000 --- a/_downloads/171092f827493713ba8f5c7e914dfe90/demo_parasite_axes.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -================== -Parasite Axes demo -================== - -Create a parasite axes. Such axes would share the x scale with a host axes, -but show a different scale in y direction. - -This approach uses `mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and -`mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes`. - -An alternative approach using standard Matplotlib subplots is shown in the -:doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example. - -An alternative approach using the :ref:`toolkit_axesgrid1-index` -and :ref:`toolkit_axisartist-index` is found in the -:doc:`/gallery/axisartist/demo_parasite_axes2` example. -""" - -from mpl_toolkits.axisartist.parasite_axes import HostAxes, ParasiteAxes -import matplotlib.pyplot as plt - - -fig = plt.figure() - -host = HostAxes(fig, [0.15, 0.1, 0.65, 0.8]) -par1 = ParasiteAxes(host, sharex=host) -par2 = ParasiteAxes(host, sharex=host) -host.parasites.append(par1) -host.parasites.append(par2) - -host.set_ylabel("Density") -host.set_xlabel("Distance") - -host.axis["right"].set_visible(False) -par1.axis["right"].set_visible(True) -par1.set_ylabel("Temperature") - -par1.axis["right"].major_ticklabels.set_visible(True) -par1.axis["right"].label.set_visible(True) - -par2.set_ylabel("Velocity") -offset = (60, 0) -new_axisline = par2.get_grid_helper().new_fixed_axis -par2.axis["right2"] = new_axisline(loc="right", axes=par2, offset=offset) - -fig.add_axes(host) - -host.set_xlim(0, 2) -host.set_ylim(0, 2) - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par1.set_ylabel("Temperature") - -p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density") -p2, = par1.plot([0, 1, 2], [0, 3, 2], label="Temperature") -p3, = par2.plot([0, 1, 2], [50, 30, 15], label="Velocity") - -par1.set_ylim(0, 4) -par2.set_ylim(1, 65) - -host.legend() - -host.axis["left"].label.set_color(p1.get_color()) -par1.axis["right"].label.set_color(p2.get_color()) -par2.axis["right2"].label.set_color(p3.get_color()) - -plt.show() diff --git a/_downloads/172bd695bdd5fe7b98246229257e1893/mplot3d.py b/_downloads/172bd695bdd5fe7b98246229257e1893/mplot3d.py deleted file mode 120000 index c1121ebe3ba..00000000000 --- a/_downloads/172bd695bdd5fe7b98246229257e1893/mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/172bd695bdd5fe7b98246229257e1893/mplot3d.py \ No newline at end of file diff --git a/_downloads/172bea947b5b7014a1272376e04e4e51/simple_axisartist1.py b/_downloads/172bea947b5b7014a1272376e04e4e51/simple_axisartist1.py deleted file mode 120000 index c3537a57264..00000000000 --- a/_downloads/172bea947b5b7014a1272376e04e4e51/simple_axisartist1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/172bea947b5b7014a1272376e04e4e51/simple_axisartist1.py \ No newline at end of file diff --git a/_downloads/172edccdcedf341bd45b11cbf9d0ae02/font_table_ttf_sgskip.ipynb b/_downloads/172edccdcedf341bd45b11cbf9d0ae02/font_table_ttf_sgskip.ipynb deleted file mode 120000 index ec1a84c4a93..00000000000 --- a/_downloads/172edccdcedf341bd45b11cbf9d0ae02/font_table_ttf_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/172edccdcedf341bd45b11cbf9d0ae02/font_table_ttf_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1756fc1310979046f8f9ab1f24c67a43/images.py b/_downloads/1756fc1310979046f8f9ab1f24c67a43/images.py deleted file mode 120000 index d1862e7aa67..00000000000 --- a/_downloads/1756fc1310979046f8f9ab1f24c67a43/images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1756fc1310979046f8f9ab1f24c67a43/images.py \ No newline at end of file diff --git a/_downloads/1758a7fc88ee155a422ed91d6f6c0403/sankey_basics.py b/_downloads/1758a7fc88ee155a422ed91d6f6c0403/sankey_basics.py deleted file mode 120000 index acada548d52..00000000000 --- a/_downloads/1758a7fc88ee155a422ed91d6f6c0403/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1758a7fc88ee155a422ed91d6f6c0403/sankey_basics.py \ No newline at end of file diff --git a/_downloads/17651ec3ae3d9b506f4e587e62a00168/cohere.py b/_downloads/17651ec3ae3d9b506f4e587e62a00168/cohere.py deleted file mode 120000 index e2c41aab427..00000000000 --- a/_downloads/17651ec3ae3d9b506f4e587e62a00168/cohere.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/17651ec3ae3d9b506f4e587e62a00168/cohere.py \ No newline at end of file diff --git a/_downloads/176cf5f0649fa08a3fceec33a812e487/lasso_selector_demo_sgskip.py b/_downloads/176cf5f0649fa08a3fceec33a812e487/lasso_selector_demo_sgskip.py deleted file mode 120000 index 4ae2143336a..00000000000 --- a/_downloads/176cf5f0649fa08a3fceec33a812e487/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/176cf5f0649fa08a3fceec33a812e487/lasso_selector_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/176dc777a1b21298d60ffe7e0f2b5fb0/usetex_fonteffects.py b/_downloads/176dc777a1b21298d60ffe7e0f2b5fb0/usetex_fonteffects.py deleted file mode 120000 index f798521e258..00000000000 --- a/_downloads/176dc777a1b21298d60ffe7e0f2b5fb0/usetex_fonteffects.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/176dc777a1b21298d60ffe7e0f2b5fb0/usetex_fonteffects.py \ No newline at end of file diff --git a/_downloads/1770a4ff71c5d5009a6106d9b8238a5a/triinterp_demo.ipynb b/_downloads/1770a4ff71c5d5009a6106d9b8238a5a/triinterp_demo.ipynb deleted file mode 120000 index 2d678600a50..00000000000 --- a/_downloads/1770a4ff71c5d5009a6106d9b8238a5a/triinterp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1770a4ff71c5d5009a6106d9b8238a5a/triinterp_demo.ipynb \ No newline at end of file diff --git a/_downloads/1770f52914f3158c6a1c60d52b58b0bf/image_clip_path.py b/_downloads/1770f52914f3158c6a1c60d52b58b0bf/image_clip_path.py deleted file mode 100644 index e8c3d4fe1ab..00000000000 --- a/_downloads/1770f52914f3158c6a1c60d52b58b0bf/image_clip_path.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -============================ -Clipping images with patches -============================ - -Demo of image that's been clipped by a circular patch. -""" -import matplotlib.pyplot as plt -import matplotlib.patches as patches -import matplotlib.cbook as cbook - - -with cbook.get_sample_data('grace_hopper.png') as image_file: - image = plt.imread(image_file) - -fig, ax = plt.subplots() -im = ax.imshow(image) -patch = patches.Circle((260, 200), radius=200, transform=ax.transData) -im.set_clip_path(patch) - -ax.axis('off') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.artist.Artist.set_clip_path diff --git a/_downloads/177344c94444a23f7c178aaca0f880f9/bmh.py b/_downloads/177344c94444a23f7c178aaca0f880f9/bmh.py deleted file mode 100644 index 6d87583da7f..00000000000 --- a/_downloads/177344c94444a23f7c178aaca0f880f9/bmh.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -======================================== -Bayesian Methods for Hackers style sheet -======================================== - -This example demonstrates the style used in the Bayesian Methods for Hackers -[1]_ online book. - -.. [1] http://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/ - -""" -from numpy.random import beta -import matplotlib.pyplot as plt - - -plt.style.use('bmh') - - -def plot_beta_hist(ax, a, b): - ax.hist(beta(a, b, size=10000), histtype="stepfilled", - bins=25, alpha=0.8, density=True) - - -fig, ax = plt.subplots() -plot_beta_hist(ax, 10, 10) -plot_beta_hist(ax, 4, 12) -plot_beta_hist(ax, 50, 12) -plot_beta_hist(ax, 6, 55) -ax.set_title("'bmh' style sheet") - -plt.show() diff --git a/_downloads/1779279d4f641df764ce578996af0165/bar_demo2.py b/_downloads/1779279d4f641df764ce578996af0165/bar_demo2.py deleted file mode 120000 index db05c256b25..00000000000 --- a/_downloads/1779279d4f641df764ce578996af0165/bar_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1779279d4f641df764ce578996af0165/bar_demo2.py \ No newline at end of file diff --git a/_downloads/177c05a61937823a91c54b928b7c6ff2/pathpatch3d.ipynb b/_downloads/177c05a61937823a91c54b928b7c6ff2/pathpatch3d.ipynb deleted file mode 120000 index 7b8f520e4d0..00000000000 --- a/_downloads/177c05a61937823a91c54b928b7c6ff2/pathpatch3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/177c05a61937823a91c54b928b7c6ff2/pathpatch3d.ipynb \ No newline at end of file diff --git a/_downloads/177e5a30a2943032bd6302b22586109b/shared_axis_demo.py b/_downloads/177e5a30a2943032bd6302b22586109b/shared_axis_demo.py deleted file mode 120000 index a8fec3209c1..00000000000 --- a/_downloads/177e5a30a2943032bd6302b22586109b/shared_axis_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/177e5a30a2943032bd6302b22586109b/shared_axis_demo.py \ No newline at end of file diff --git a/_downloads/1788fe9c80b8220f95dc3fbc893e0904/interpolation_methods.ipynb b/_downloads/1788fe9c80b8220f95dc3fbc893e0904/interpolation_methods.ipynb deleted file mode 120000 index f38d6f069be..00000000000 --- a/_downloads/1788fe9c80b8220f95dc3fbc893e0904/interpolation_methods.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1788fe9c80b8220f95dc3fbc893e0904/interpolation_methods.ipynb \ No newline at end of file diff --git a/_downloads/178f06ca969aea38bf85ff7379942f31/spy_demos.ipynb b/_downloads/178f06ca969aea38bf85ff7379942f31/spy_demos.ipynb deleted file mode 120000 index 8d6a2b088bf..00000000000 --- a/_downloads/178f06ca969aea38bf85ff7379942f31/spy_demos.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/178f06ca969aea38bf85ff7379942f31/spy_demos.ipynb \ No newline at end of file diff --git a/_downloads/179017cf40465d2df272485ddba39c5e/contour_label_demo.py b/_downloads/179017cf40465d2df272485ddba39c5e/contour_label_demo.py deleted file mode 120000 index 6ff3458022d..00000000000 --- a/_downloads/179017cf40465d2df272485ddba39c5e/contour_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/179017cf40465d2df272485ddba39c5e/contour_label_demo.py \ No newline at end of file diff --git a/_downloads/179b20f57711a5ca0147d60bd39cd1c2/dynamic_image.ipynb b/_downloads/179b20f57711a5ca0147d60bd39cd1c2/dynamic_image.ipynb deleted file mode 120000 index 84e054291e7..00000000000 --- a/_downloads/179b20f57711a5ca0147d60bd39cd1c2/dynamic_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/179b20f57711a5ca0147d60bd39cd1c2/dynamic_image.ipynb \ No newline at end of file diff --git a/_downloads/17a325282019ef6cdd7a3c23ead414ed/usetex.ipynb b/_downloads/17a325282019ef6cdd7a3c23ead414ed/usetex.ipynb deleted file mode 120000 index 749698e5ba7..00000000000 --- a/_downloads/17a325282019ef6cdd7a3c23ead414ed/usetex.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/17a325282019ef6cdd7a3c23ead414ed/usetex.ipynb \ No newline at end of file diff --git a/_downloads/17b8d188544ec3db0104127a4f228cef/mathtext_wx_sgskip.ipynb b/_downloads/17b8d188544ec3db0104127a4f228cef/mathtext_wx_sgskip.ipynb deleted file mode 120000 index 199db931cfc..00000000000 --- a/_downloads/17b8d188544ec3db0104127a4f228cef/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/17b8d188544ec3db0104127a4f228cef/mathtext_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/17c16039529c742227fd858c33633e85/customize_rc.py b/_downloads/17c16039529c742227fd858c33633e85/customize_rc.py deleted file mode 120000 index 4718e2f4430..00000000000 --- a/_downloads/17c16039529c742227fd858c33633e85/customize_rc.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/17c16039529c742227fd858c33633e85/customize_rc.py \ No newline at end of file diff --git a/_downloads/17c42ed9a5f9691e77242160c51a456c/unchained.py b/_downloads/17c42ed9a5f9691e77242160c51a456c/unchained.py deleted file mode 120000 index 28c0d25b768..00000000000 --- a/_downloads/17c42ed9a5f9691e77242160c51a456c/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/17c42ed9a5f9691e77242160c51a456c/unchained.py \ No newline at end of file diff --git a/_downloads/17d2311c59533684ffb427b00987a1a0/text_commands.py b/_downloads/17d2311c59533684ffb427b00987a1a0/text_commands.py deleted file mode 100644 index 1f6647faede..00000000000 --- a/_downloads/17d2311c59533684ffb427b00987a1a0/text_commands.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -============= -Text Commands -============= - -Plotting text of many different kinds. -""" - -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold') - -ax = fig.add_subplot(111) -fig.subplots_adjust(top=0.85) -ax.set_title('axes title') - -ax.set_xlabel('xlabel') -ax.set_ylabel('ylabel') - -ax.text(3, 8, 'boxed italics text in data coords', style='italic', - bbox={'facecolor':'red', 'alpha':0.5, 'pad':10}) - -ax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15) - -ax.text(3, 2, 'unicode: Institut f\374r Festk\366rperphysik') - -ax.text(0.95, 0.01, 'colored text in axes coords', - verticalalignment='bottom', horizontalalignment='right', - transform=ax.transAxes, - color='green', fontsize=15) - - -ax.plot([2], [1], 'o') -ax.annotate('annotate', xy=(2, 1), xytext=(3, 4), - arrowprops=dict(facecolor='black', shrink=0.05)) - -ax.set(xlim=(0, 10), ylim=(0, 10)) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure.suptitle -matplotlib.figure.Figure.add_subplot -matplotlib.figure.Figure.subplots_adjust -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.text -matplotlib.axes.Axes.annotate diff --git a/_downloads/17d4e609c468b67a79472906fc97bbaa/fill_between_alpha.py b/_downloads/17d4e609c468b67a79472906fc97bbaa/fill_between_alpha.py deleted file mode 120000 index 2531002c5a2..00000000000 --- a/_downloads/17d4e609c468b67a79472906fc97bbaa/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/17d4e609c468b67a79472906fc97bbaa/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/17da98d632b26303b8544e01ff3e8fc7/contour.py b/_downloads/17da98d632b26303b8544e01ff3e8fc7/contour.py deleted file mode 120000 index 55b9d416e5a..00000000000 --- a/_downloads/17da98d632b26303b8544e01ff3e8fc7/contour.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/17da98d632b26303b8544e01ff3e8fc7/contour.py \ No newline at end of file diff --git a/_downloads/17de7f9a68ba5d9ffa31b8c256b171de/demo_axes_rgb.ipynb b/_downloads/17de7f9a68ba5d9ffa31b8c256b171de/demo_axes_rgb.ipynb deleted file mode 120000 index 05f5c1ce551..00000000000 --- a/_downloads/17de7f9a68ba5d9ffa31b8c256b171de/demo_axes_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/17de7f9a68ba5d9ffa31b8c256b171de/demo_axes_rgb.ipynb \ No newline at end of file diff --git a/_downloads/17e99f6698601fec7314859da5c525f4/create_subplots.ipynb b/_downloads/17e99f6698601fec7314859da5c525f4/create_subplots.ipynb deleted file mode 120000 index 5814c59fdf2..00000000000 --- a/_downloads/17e99f6698601fec7314859da5c525f4/create_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/17e99f6698601fec7314859da5c525f4/create_subplots.ipynb \ No newline at end of file diff --git a/_downloads/17f0aa65f9a7dd2ca48fd784137858a0/ticklabels_rotation.ipynb b/_downloads/17f0aa65f9a7dd2ca48fd784137858a0/ticklabels_rotation.ipynb deleted file mode 100644 index 4158e7c0cb1..00000000000 --- a/_downloads/17f0aa65f9a7dd2ca48fd784137858a0/ticklabels_rotation.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rotating custom tick labels\n\n\nDemo of custom tick-labels with user-defined rotation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nx = [1, 2, 3, 4]\ny = [1, 4, 9, 6]\nlabels = ['Frogs', 'Hogs', 'Bogs', 'Slogs']\n\nplt.plot(x, y)\n# You can specify a rotation for the tick labels in degrees or with keywords.\nplt.xticks(x, labels, rotation='vertical')\n# Pad margins so that markers don't get clipped by the axes\nplt.margins(0.2)\n# Tweak spacing to prevent clipping of tick-labels\nplt.subplots_adjust(bottom=0.15)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/17f34a042d24fa8e7f99766ad431f5d0/barchart.py b/_downloads/17f34a042d24fa8e7f99766ad431f5d0/barchart.py deleted file mode 100644 index b72888e4602..00000000000 --- a/_downloads/17f34a042d24fa8e7f99766ad431f5d0/barchart.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -============================= -Grouped bar chart with labels -============================= - -This example shows a how to create a grouped bar chart and how to annotate -bars with labels. -""" - -import matplotlib -import matplotlib.pyplot as plt -import numpy as np - - -labels = ['G1', 'G2', 'G3', 'G4', 'G5'] -men_means = [20, 34, 30, 35, 27] -women_means = [25, 32, 34, 20, 25] - -x = np.arange(len(labels)) # the label locations -width = 0.35 # the width of the bars - -fig, ax = plt.subplots() -rects1 = ax.bar(x - width/2, men_means, width, label='Men') -rects2 = ax.bar(x + width/2, women_means, width, label='Women') - -# Add some text for labels, title and custom x-axis tick labels, etc. -ax.set_ylabel('Scores') -ax.set_title('Scores by group and gender') -ax.set_xticks(x) -ax.set_xticklabels(labels) -ax.legend() - - -def autolabel(rects): - """Attach a text label above each bar in *rects*, displaying its height.""" - for rect in rects: - height = rect.get_height() - ax.annotate('{}'.format(height), - xy=(rect.get_x() + rect.get_width() / 2, height), - xytext=(0, 3), # 3 points vertical offset - textcoords="offset points", - ha='center', va='bottom') - - -autolabel(rects1) -autolabel(rects2) - -fig.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/17fb72cacf8e14e33ea59a2022260cc7/mathtext_wx_sgskip.py b/_downloads/17fb72cacf8e14e33ea59a2022260cc7/mathtext_wx_sgskip.py deleted file mode 100644 index 53a861986c2..00000000000 --- a/_downloads/17fb72cacf8e14e33ea59a2022260cc7/mathtext_wx_sgskip.py +++ /dev/null @@ -1,128 +0,0 @@ -""" -=========== -MathText WX -=========== - -Demonstrates how to convert mathtext to a wx.Bitmap for display in various -controls on wxPython. -""" - -import matplotlib -matplotlib.use("WxAgg") -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wx import NavigationToolbar2Wx -from matplotlib.figure import Figure -import numpy as np - -import wx - -IS_GTK = 'wxGTK' in wx.PlatformInfo -IS_WIN = 'wxMSW' in wx.PlatformInfo - -############################################################ -# This is where the "magic" happens. -from matplotlib.mathtext import MathTextParser -mathtext_parser = MathTextParser("Bitmap") - - -def mathtext_to_wxbitmap(s): - ftimage, depth = mathtext_parser.parse(s, 150) - return wx.Bitmap.FromBufferRGBA( - ftimage.get_width(), ftimage.get_height(), - ftimage.as_rgba_str()) -############################################################ - -functions = [ - (r'$\sin(2 \pi x)$', lambda x: np.sin(2*np.pi*x)), - (r'$\frac{4}{3}\pi x^3$', lambda x: (4.0/3.0)*np.pi*x**3), - (r'$\cos(2 \pi x)$', lambda x: np.cos(2*np.pi*x)), - (r'$\log(x)$', lambda x: np.log(x)) -] - - -class CanvasFrame(wx.Frame): - def __init__(self, parent, title): - wx.Frame.__init__(self, parent, -1, title, size=(550, 350)) - - self.figure = Figure() - self.axes = self.figure.add_subplot(111) - - self.canvas = FigureCanvas(self, -1, self.figure) - - self.change_plot(0) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.add_buttonbar() - self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW) - self.add_toolbar() # comment this out for no toolbar - - menuBar = wx.MenuBar() - - # File Menu - menu = wx.Menu() - m_exit = menu.Append(wx.ID_EXIT, "E&xit\tAlt-X", "Exit this simple sample") - menuBar.Append(menu, "&File") - self.Bind(wx.EVT_MENU, self.OnClose, m_exit) - - if IS_GTK or IS_WIN: - # Equation Menu - menu = wx.Menu() - for i, (mt, func) in enumerate(functions): - bm = mathtext_to_wxbitmap(mt) - item = wx.MenuItem(menu, 1000 + i, " ") - item.SetBitmap(bm) - menu.Append(item) - self.Bind(wx.EVT_MENU, self.OnChangePlot, item) - menuBar.Append(menu, "&Functions") - - self.SetMenuBar(menuBar) - - self.SetSizer(self.sizer) - self.Fit() - - def add_buttonbar(self): - self.button_bar = wx.Panel(self) - self.button_bar_sizer = wx.BoxSizer(wx.HORIZONTAL) - self.sizer.Add(self.button_bar, 0, wx.LEFT | wx.TOP | wx.GROW) - - for i, (mt, func) in enumerate(functions): - bm = mathtext_to_wxbitmap(mt) - button = wx.BitmapButton(self.button_bar, 1000 + i, bm) - self.button_bar_sizer.Add(button, 1, wx.GROW) - self.Bind(wx.EVT_BUTTON, self.OnChangePlot, button) - - self.button_bar.SetSizer(self.button_bar_sizer) - - def add_toolbar(self): - """Copied verbatim from embedding_wx2.py""" - self.toolbar = NavigationToolbar2Wx(self.canvas) - self.toolbar.Realize() - # By adding toolbar in sizer, we are able to put it at the bottom - # of the frame - so appearance is closer to GTK version. - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - # update the axes menu on the toolbar - self.toolbar.update() - - def OnChangePlot(self, event): - self.change_plot(event.GetId() - 1000) - - def change_plot(self, plot_number): - t = np.arange(1.0, 3.0, 0.01) - s = functions[plot_number][1](t) - self.axes.clear() - self.axes.plot(t, s) - self.canvas.draw() - - def OnClose(self, event): - self.Destroy() - - -class MyApp(wx.App): - def OnInit(self): - frame = CanvasFrame(None, "wxPython mathtext demo app") - self.SetTopWindow(frame) - frame.Show(True) - return True - -app = MyApp() -app.MainLoop() diff --git a/_downloads/17fb77eb77557c043de4207ad1f4a337/axis_direction_demo_step03.ipynb b/_downloads/17fb77eb77557c043de4207ad1f4a337/axis_direction_demo_step03.ipynb deleted file mode 100644 index ef344b677b4..00000000000 --- a/_downloads/17fb77eb77557c043de4207ad1f4a337/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n #ax.axis[:].toggle(all=False)\n #ax.axis[:].line.set_visible(False)\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x\"] = ax.new_floating_axis(1, 0.5)\n ax.axis[\"x\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 2.5))\nfig.subplots_adjust(bottom=0.2, top=0.8)\n\nax1 = setup_axes(fig, \"121\")\nax1.axis[\"x\"].label.set_text(\"Label\")\nax1.axis[\"x\"].toggle(ticklabels=False)\nax1.axis[\"x\"].set_axislabel_direction(\"+\")\nax1.annotate(\"label direction=$+$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nax2 = setup_axes(fig, \"122\")\nax2.axis[\"x\"].label.set_text(\"Label\")\nax2.axis[\"x\"].toggle(ticklabels=False)\nax2.axis[\"x\"].set_axislabel_direction(\"-\")\nax2.annotate(\"label direction=$-$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1800402d9327c99904429e3115dd3095/image_zcoord.ipynb b/_downloads/1800402d9327c99904429e3115dd3095/image_zcoord.ipynb deleted file mode 120000 index 0817a121124..00000000000 --- a/_downloads/1800402d9327c99904429e3115dd3095/image_zcoord.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1800402d9327c99904429e3115dd3095/image_zcoord.ipynb \ No newline at end of file diff --git a/_downloads/180c24f87039687088331c048e244ae5/fill_between_demo.ipynb b/_downloads/180c24f87039687088331c048e244ae5/fill_between_demo.ipynb deleted file mode 120000 index ac0e5a6a366..00000000000 --- a/_downloads/180c24f87039687088331c048e244ae5/fill_between_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/180c24f87039687088331c048e244ae5/fill_between_demo.ipynb \ No newline at end of file diff --git a/_downloads/181a223420ed56a9c756c35191e154bc/bar_unit_demo.ipynb b/_downloads/181a223420ed56a9c756c35191e154bc/bar_unit_demo.ipynb deleted file mode 100644 index e7c3b6f89db..00000000000 --- a/_downloads/181a223420ed56a9c756c35191e154bc/bar_unit_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Group barchart with units\n\n\nThis is the same example as\n:doc:`the barchart` in\ncentimeters.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom basic_units import cm, inch\nimport matplotlib.pyplot as plt\n\n\nN = 5\nmenMeans = (150*cm, 160*cm, 146*cm, 172*cm, 155*cm)\nmenStd = (20*cm, 30*cm, 32*cm, 10*cm, 20*cm)\n\nfig, ax = plt.subplots()\n\nind = np.arange(N) # the x locations for the groups\nwidth = 0.35 # the width of the bars\np1 = ax.bar(ind, menMeans, width, bottom=0*cm, yerr=menStd)\n\n\nwomenMeans = (145*cm, 149*cm, 172*cm, 165*cm, 200*cm)\nwomenStd = (30*cm, 25*cm, 20*cm, 31*cm, 22*cm)\np2 = ax.bar(ind + width, womenMeans, width, bottom=0*cm, yerr=womenStd)\n\nax.set_title('Scores by group and gender')\nax.set_xticks(ind + width / 2)\nax.set_xticklabels(('G1', 'G2', 'G3', 'G4', 'G5'))\n\nax.legend((p1[0], p2[0]), ('Men', 'Women'))\nax.yaxis.set_units(inch)\nax.autoscale_view()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/181f69b4c2c1b868ada0b2843a87fb50/tricontour_demo.py b/_downloads/181f69b4c2c1b868ada0b2843a87fb50/tricontour_demo.py deleted file mode 100644 index d657aef01af..00000000000 --- a/_downloads/181f69b4c2c1b868ada0b2843a87fb50/tricontour_demo.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -=============== -Tricontour Demo -=============== - -Contour plots of unstructured triangular grids. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -############################################################################### -# Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points. - -# First create the x and y coordinates of the points. -n_angles = 48 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() -z = (np.cos(radii) * np.cos(3 * angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -############################################################################### -# pcolor plot. - -fig1, ax1 = plt.subplots() -ax1.set_aspect('equal') -tcf = ax1.tricontourf(triang, z) -fig1.colorbar(tcf) -ax1.tricontour(triang, z, colors='k') -ax1.set_title('Contour plot of Delaunay triangulation') - -############################################################################### -# You can specify your own triangulation rather than perform a Delaunay -# triangulation of the points, where each triangle is given by the indices of -# the three points that make up the triangle, ordered in either a clockwise or -# anticlockwise manner. - -xy = np.asarray([ - [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890], - [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898], - [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919], - [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949], - [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959], - [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965], - [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980], - [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996], - [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021], - [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005], - [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987], - [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968], - [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926], - [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905], - [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886], - [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879], - [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872], - [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933], - [-0.077, 0.990], [-0.059, 0.993]]) -x = np.degrees(xy[:, 0]) -y = np.degrees(xy[:, 1]) -x0 = -5 -y0 = 52 -z = np.exp(-0.01 * ((x - x0) ** 2 + (y - y0) ** 2)) - -triangles = np.asarray([ - [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64], - [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63], - [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68], - [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7], - [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9], - [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12], - [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71], - [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71], - [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19], - [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24], - [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28], - [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45], - [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40], - [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40], - [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38], - [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]]) - -############################################################################### -# Rather than create a Triangulation object, can simply pass x, y and triangles -# arrays to tripcolor directly. It would be better to use a Triangulation -# object if the same triangulation was to be used more than once to save -# duplicated calculations. - -fig2, ax2 = plt.subplots() -ax2.set_aspect('equal') -tcf = ax2.tricontourf(x, y, triangles, z) -fig2.colorbar(tcf) -ax2.set_title('Contour plot of user-specified triangulation') -ax2.set_xlabel('Longitude (degrees)') -ax2.set_ylabel('Latitude (degrees)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.tri.Triangulation diff --git a/_downloads/1824bbcdde9e0f01aa89c7d95fa1805b/voxels_torus.py b/_downloads/1824bbcdde9e0f01aa89c7d95fa1805b/voxels_torus.py deleted file mode 120000 index e3d9c7758bd..00000000000 --- a/_downloads/1824bbcdde9e0f01aa89c7d95fa1805b/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1824bbcdde9e0f01aa89c7d95fa1805b/voxels_torus.py \ No newline at end of file diff --git a/_downloads/1841cf2985a8e908a9488d1cfc5e6ba3/simple_axis_direction03.py b/_downloads/1841cf2985a8e908a9488d1cfc5e6ba3/simple_axis_direction03.py deleted file mode 120000 index 7e4383d7861..00000000000 --- a/_downloads/1841cf2985a8e908a9488d1cfc5e6ba3/simple_axis_direction03.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1841cf2985a8e908a9488d1cfc5e6ba3/simple_axis_direction03.py \ No newline at end of file diff --git a/_downloads/184322515543e9d4584b234119c25a2c/agg_buffer.py b/_downloads/184322515543e9d4584b234119c25a2c/agg_buffer.py deleted file mode 100644 index 806495f4cd3..00000000000 --- a/_downloads/184322515543e9d4584b234119c25a2c/agg_buffer.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -========== -Agg Buffer -========== - -Use backend agg to access the figure canvas as an RGB string and then -convert it to an array and pass it to Pillow for rendering. -""" - -import numpy as np - -from matplotlib.backends.backend_agg import FigureCanvasAgg -import matplotlib.pyplot as plt - -plt.plot([1, 2, 3]) - -canvas = plt.get_current_fig_manager().canvas - -agg = canvas.switch_backends(FigureCanvasAgg) -agg.draw() -s, (width, height) = agg.print_to_buffer() - -# Convert to a NumPy array. -X = np.frombuffer(s, np.uint8).reshape((height, width, 4)) - -# Pass off to PIL. -from PIL import Image -im = Image.frombytes("RGBA", (width, height), s) - -# Uncomment this line to display the image using ImageMagick's `display` tool. -# im.show() diff --git a/_downloads/185159453aaa3bad09f356307e36e685/agg_buffer_to_array.ipynb b/_downloads/185159453aaa3bad09f356307e36e685/agg_buffer_to_array.ipynb deleted file mode 120000 index bc1b99b389b..00000000000 --- a/_downloads/185159453aaa3bad09f356307e36e685/agg_buffer_to_array.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/185159453aaa3bad09f356307e36e685/agg_buffer_to_array.ipynb \ No newline at end of file diff --git a/_downloads/1852fd735da625d9540e0f33fa274537/whats_new_98_4_fancy.py b/_downloads/1852fd735da625d9540e0f33fa274537/whats_new_98_4_fancy.py deleted file mode 120000 index c8cf0248c36..00000000000 --- a/_downloads/1852fd735da625d9540e0f33fa274537/whats_new_98_4_fancy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1852fd735da625d9540e0f33fa274537/whats_new_98_4_fancy.py \ No newline at end of file diff --git a/_downloads/1853f2de7ccfd382eda7c9419ff693c7/histogram_histtypes.ipynb b/_downloads/1853f2de7ccfd382eda7c9419ff693c7/histogram_histtypes.ipynb deleted file mode 120000 index d88278af646..00000000000 --- a/_downloads/1853f2de7ccfd382eda7c9419ff693c7/histogram_histtypes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1853f2de7ccfd382eda7c9419ff693c7/histogram_histtypes.ipynb \ No newline at end of file diff --git a/_downloads/1856bf05796e5e2b6ad1941b12f54127/usage.ipynb b/_downloads/1856bf05796e5e2b6ad1941b12f54127/usage.ipynb deleted file mode 120000 index 24ed10a0943..00000000000 --- a/_downloads/1856bf05796e5e2b6ad1941b12f54127/usage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1856bf05796e5e2b6ad1941b12f54127/usage.ipynb \ No newline at end of file diff --git a/_downloads/185ba79fb61d3eb89e28ff864c731e8b/create_subplots.ipynb b/_downloads/185ba79fb61d3eb89e28ff864c731e8b/create_subplots.ipynb deleted file mode 100644 index 722fb2ca019..00000000000 --- a/_downloads/185ba79fb61d3eb89e28ff864c731e8b/create_subplots.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nEasily creating subplots\n========================\n\nIn early versions of matplotlib, if you wanted to use the pythonic API\nand create a figure instance and from that create a grid of subplots,\npossibly with shared axes, it involved a fair amount of boilerplate\ncode. e.g.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.random.randn(50)\n\n# old style\nfig = plt.figure()\nax1 = fig.add_subplot(221)\nax2 = fig.add_subplot(222, sharex=ax1, sharey=ax1)\nax3 = fig.add_subplot(223, sharex=ax1, sharey=ax1)\nax3 = fig.add_subplot(224, sharex=ax1, sharey=ax1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Fernando Perez has provided a nice top level method to create in\n:func:`~matplotlib.pyplots.subplots` (note the \"s\" at the end)\neverything at once, and turn on x and y sharing for the whole bunch.\nYou can either unpack the axes individually...\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# new style method 1; unpack the axes\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, sharex=True, sharey=True)\nax1.plot(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "or get them back as a numrows x numcolumns object array which supports\nnumpy indexing\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# new style method 2; use an axes array\nfig, axs = plt.subplots(2, 2, sharex=True, sharey=True)\naxs[0, 0].plot(x)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/186e7bdd7f6f0e82a3d4c7b30eab546d/pgf_texsystem.ipynb b/_downloads/186e7bdd7f6f0e82a3d4c7b30eab546d/pgf_texsystem.ipynb deleted file mode 120000 index f1e7acf2ffe..00000000000 --- a/_downloads/186e7bdd7f6f0e82a3d4c7b30eab546d/pgf_texsystem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/186e7bdd7f6f0e82a3d4c7b30eab546d/pgf_texsystem.ipynb \ No newline at end of file diff --git a/_downloads/186ec4c1ccf347542ff4c86bd54ff9ba/histogram_features.ipynb b/_downloads/186ec4c1ccf347542ff4c86bd54ff9ba/histogram_features.ipynb deleted file mode 120000 index a803f50e49c..00000000000 --- a/_downloads/186ec4c1ccf347542ff4c86bd54ff9ba/histogram_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/186ec4c1ccf347542ff4c86bd54ff9ba/histogram_features.ipynb \ No newline at end of file diff --git a/_downloads/1889a32acd2085c48f3236d038d7fe00/dolphin.py b/_downloads/1889a32acd2085c48f3236d038d7fe00/dolphin.py deleted file mode 120000 index 85d2df553f0..00000000000 --- a/_downloads/1889a32acd2085c48f3236d038d7fe00/dolphin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1889a32acd2085c48f3236d038d7fe00/dolphin.py \ No newline at end of file diff --git a/_downloads/189a4eebb56a57d534bc4b8e74bf86b6/custom_scale.ipynb b/_downloads/189a4eebb56a57d534bc4b8e74bf86b6/custom_scale.ipynb deleted file mode 100644 index eeb29a10a93..00000000000 --- a/_downloads/189a4eebb56a57d534bc4b8e74bf86b6/custom_scale.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom scale\n\n\nCreate a custom scale, by implementing the scaling use for latitude data in a\nMercator Projection.\n\nUnless you are making special use of the `~.Transform` class, you probably\ndon't need to use this verbose method, and instead can use\n`~.matplotlib.scale.FuncScale` and the ``'function'`` option of\n`~.matplotlib.axes.Axes.set_xscale` and `~.matplotlib.axes.Axes.set_yscale`.\nSee the last example in :doc:`/gallery/scales/scales`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom numpy import ma\nfrom matplotlib import scale as mscale\nfrom matplotlib import transforms as mtransforms\nfrom matplotlib.ticker import Formatter, FixedLocator\nfrom matplotlib import rcParams\n\n\n# BUG: this example fails with any other setting of axisbelow\nrcParams['axes.axisbelow'] = False\n\n\nclass MercatorLatitudeScale(mscale.ScaleBase):\n \"\"\"\n Scales data in range -pi/2 to pi/2 (-90 to 90 degrees) using\n the system used to scale latitudes in a Mercator projection.\n\n The scale function:\n ln(tan(y) + sec(y))\n\n The inverse scale function:\n atan(sinh(y))\n\n Since the Mercator scale tends to infinity at +/- 90 degrees,\n there is user-defined threshold, above and below which nothing\n will be plotted. This defaults to +/- 85 degrees.\n\n source:\n http://en.wikipedia.org/wiki/Mercator_projection\n \"\"\"\n\n # The scale class must have a member ``name`` that defines the string used\n # to select the scale. For example, ``gca().set_yscale(\"mercator\")`` would\n # be used to select this scale.\n name = 'mercator'\n\n def __init__(self, axis, *, thresh=np.deg2rad(85), **kwargs):\n \"\"\"\n Any keyword arguments passed to ``set_xscale`` and ``set_yscale`` will\n be passed along to the scale's constructor.\n\n thresh: The degree above which to crop the data.\n \"\"\"\n super().__init__(axis)\n if thresh >= np.pi / 2:\n raise ValueError(\"thresh must be less than pi/2\")\n self.thresh = thresh\n\n def get_transform(self):\n \"\"\"\n Override this method to return a new instance that does the\n actual transformation of the data.\n\n The MercatorLatitudeTransform class is defined below as a\n nested class of this one.\n \"\"\"\n return self.MercatorLatitudeTransform(self.thresh)\n\n def set_default_locators_and_formatters(self, axis):\n \"\"\"\n Override to set up the locators and formatters to use with the\n scale. This is only required if the scale requires custom\n locators and formatters. Writing custom locators and\n formatters is rather outside the scope of this example, but\n there are many helpful examples in ``ticker.py``.\n\n In our case, the Mercator example uses a fixed locator from\n -90 to 90 degrees and a custom formatter class to put convert\n the radians to degrees and put a degree symbol after the\n value::\n \"\"\"\n class DegreeFormatter(Formatter):\n def __call__(self, x, pos=None):\n return \"%d\\N{DEGREE SIGN}\" % np.degrees(x)\n\n axis.set_major_locator(FixedLocator(\n np.radians(np.arange(-90, 90, 10))))\n axis.set_major_formatter(DegreeFormatter())\n axis.set_minor_formatter(DegreeFormatter())\n\n def limit_range_for_scale(self, vmin, vmax, minpos):\n \"\"\"\n Override to limit the bounds of the axis to the domain of the\n transform. In the case of Mercator, the bounds should be\n limited to the threshold that was passed in. Unlike the\n autoscaling provided by the tick locators, this range limiting\n will always be adhered to, whether the axis range is set\n manually, determined automatically or changed through panning\n and zooming.\n \"\"\"\n return max(vmin, -self.thresh), min(vmax, self.thresh)\n\n class MercatorLatitudeTransform(mtransforms.Transform):\n # There are two value members that must be defined.\n # ``input_dims`` and ``output_dims`` specify number of input\n # dimensions and output dimensions to the transformation.\n # These are used by the transformation framework to do some\n # error checking and prevent incompatible transformations from\n # being connected together. When defining transforms for a\n # scale, which are, by definition, separable and have only one\n # dimension, these members should always be set to 1.\n input_dims = 1\n output_dims = 1\n is_separable = True\n has_inverse = True\n\n def __init__(self, thresh):\n mtransforms.Transform.__init__(self)\n self.thresh = thresh\n\n def transform_non_affine(self, a):\n \"\"\"\n This transform takes an Nx1 ``numpy`` array and returns a\n transformed copy. Since the range of the Mercator scale\n is limited by the user-specified threshold, the input\n array must be masked to contain only valid values.\n ``matplotlib`` will handle masked arrays and remove the\n out-of-range data from the plot. Importantly, the\n ``transform`` method *must* return an array that is the\n same shape as the input array, since these values need to\n remain synchronized with values in the other dimension.\n \"\"\"\n masked = ma.masked_where((a < -self.thresh) | (a > self.thresh), a)\n if masked.mask.any():\n return ma.log(np.abs(ma.tan(masked) + 1.0 / ma.cos(masked)))\n else:\n return np.log(np.abs(np.tan(a) + 1.0 / np.cos(a)))\n\n def inverted(self):\n \"\"\"\n Override this method so matplotlib knows how to get the\n inverse transform for this transform.\n \"\"\"\n return MercatorLatitudeScale.InvertedMercatorLatitudeTransform(\n self.thresh)\n\n class InvertedMercatorLatitudeTransform(mtransforms.Transform):\n input_dims = 1\n output_dims = 1\n is_separable = True\n has_inverse = True\n\n def __init__(self, thresh):\n mtransforms.Transform.__init__(self)\n self.thresh = thresh\n\n def transform_non_affine(self, a):\n return np.arctan(np.sinh(a))\n\n def inverted(self):\n return MercatorLatitudeScale.MercatorLatitudeTransform(self.thresh)\n\n# Now that the Scale class has been defined, it must be registered so\n# that ``matplotlib`` can find it.\nmscale.register_scale(MercatorLatitudeScale)\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n\n t = np.arange(-180.0, 180.0, 0.1)\n s = np.radians(t)/2.\n\n plt.plot(t, s, '-', lw=2)\n plt.gca().set_yscale('mercator')\n\n plt.xlabel('Longitude')\n plt.ylabel('Latitude')\n plt.title('Mercator: Projection of the Oppressor')\n plt.grid(True)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/18a06a91c8c469ace4c6e8765d026503/invert_axes.py b/_downloads/18a06a91c8c469ace4c6e8765d026503/invert_axes.py deleted file mode 120000 index c2b0f6488ab..00000000000 --- a/_downloads/18a06a91c8c469ace4c6e8765d026503/invert_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/18a06a91c8c469ace4c6e8765d026503/invert_axes.py \ No newline at end of file diff --git a/_downloads/18ab3102d589fdc48ad5f0e5254ff51f/tick_xlabel_top.py b/_downloads/18ab3102d589fdc48ad5f0e5254ff51f/tick_xlabel_top.py deleted file mode 120000 index 7b377c9e85e..00000000000 --- a/_downloads/18ab3102d589fdc48ad5f0e5254ff51f/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/18ab3102d589fdc48ad5f0e5254ff51f/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/18b70abfdacda9d5d017e48e9f85f568/axes_props.py b/_downloads/18b70abfdacda9d5d017e48e9f85f568/axes_props.py deleted file mode 120000 index e2787a8188d..00000000000 --- a/_downloads/18b70abfdacda9d5d017e48e9f85f568/axes_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/18b70abfdacda9d5d017e48e9f85f568/axes_props.py \ No newline at end of file diff --git a/_downloads/18bb7b00b6ddd8b19089d613796a5e1c/axes_margins.ipynb b/_downloads/18bb7b00b6ddd8b19089d613796a5e1c/axes_margins.ipynb deleted file mode 100644 index 8e5d46aa253..00000000000 --- a/_downloads/18bb7b00b6ddd8b19089d613796a5e1c/axes_margins.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================================================================\nZooming in and out using Axes.margins and the subject of \"stickiness\"\n=====================================================================\n\nThe first figure in this example shows how to zoom in and out of a\nplot using `~.Axes.margins` instead of `~.Axes.set_xlim` and\n`~.Axes.set_ylim`. The second figure demonstrates the concept of\nedge \"stickiness\" introduced by certain methods and artists and how\nto effectively work around that.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef f(t):\n return np.exp(-t) * np.cos(2*np.pi*t)\n\n\nt1 = np.arange(0.0, 3.0, 0.01)\n\nax1 = plt.subplot(212)\nax1.margins(0.05) # Default margin is 0.05, value 0 means fit\nax1.plot(t1, f(t1))\n\nax2 = plt.subplot(221)\nax2.margins(2, 2) # Values >0.0 zoom out\nax2.plot(t1, f(t1))\nax2.set_title('Zoomed out')\n\nax3 = plt.subplot(222)\nax3.margins(x=0, y=-0.25) # Values in (-0.5, 0.0) zooms in to center\nax3.plot(t1, f(t1))\nax3.set_title('Zoomed in')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "On the \"stickiness\" of certain plotting methods\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nSome plotting functions make the axis limits \"sticky\" or immune to the will\nof the `~.Axes.margins` methods. For instance, `~.Axes.imshow` and\n`~.Axes.pcolor` expect the user to want the limits to be tight around the\npixels shown in the plot. If this behavior is not desired, you need to set\n`~.Axes.use_sticky_edges` to `False`. Consider the following example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "y, x = np.mgrid[:5, 1:6]\npoly_coords = [\n (0.25, 2.75), (3.25, 2.75),\n (2.25, 0.75), (0.25, 0.75)\n]\nfig, (ax1, ax2) = plt.subplots(ncols=2)\n\n# Here we set the stickiness of the axes object...\n# ax1 we'll leave as the default, which uses sticky edges\n# and we'll turn off stickiness for ax2\nax2.use_sticky_edges = False\n\nfor ax, status in zip((ax1, ax2), ('Is', 'Is Not')):\n cells = ax.pcolor(x, y, x+y, cmap='inferno') # sticky\n ax.add_patch(\n plt.Polygon(poly_coords, color='forestgreen', alpha=0.5)\n ) # not sticky\n ax.margins(x=0.1, y=0.05)\n ax.set_aspect('equal')\n ax.set_title('{} Sticky'.format(status))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.margins\nmatplotlib.pyplot.margins\nmatplotlib.axes.Axes.use_sticky_edges\nmatplotlib.axes.Axes.pcolor\nmatplotlib.pyplot.pcolor\nmatplotlib.pyplot.Polygon" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/18bc7cd275a3345685f38107bdd2cf0a/histogram_cumulative.ipynb b/_downloads/18bc7cd275a3345685f38107bdd2cf0a/histogram_cumulative.ipynb deleted file mode 100644 index 5d0db68a762..00000000000 --- a/_downloads/18bc7cd275a3345685f38107bdd2cf0a/histogram_cumulative.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using histograms to plot a cumulative distribution\n\n\nThis shows how to plot a cumulative, normalized histogram as a\nstep function in order to visualize the empirical cumulative\ndistribution function (CDF) of a sample. We also show the theoretical CDF.\n\nA couple of other options to the ``hist`` function are demonstrated.\nNamely, we use the ``normed`` parameter to normalize the histogram and\na couple of different options to the ``cumulative`` parameter.\nThe ``normed`` parameter takes a boolean value. When ``True``, the bin\nheights are scaled such that the total area of the histogram is 1. The\n``cumulative`` kwarg is a little more nuanced. Like ``normed``, you\ncan pass it True or False, but you can also pass it -1 to reverse the\ndistribution.\n\nSince we're showing a normalized and cumulative histogram, these curves\nare effectively the cumulative distribution functions (CDFs) of the\nsamples. In engineering, empirical CDFs are sometimes called\n\"non-exceedance\" curves. In other words, you can look at the\ny-value for a given-x-value to get the probability of and observation\nfrom the sample not exceeding that x-value. For example, the value of\n225 on the x-axis corresponds to about 0.85 on the y-axis, so there's an\n85% chance that an observation in the sample does not exceed 225.\nConversely, setting, ``cumulative`` to -1 as is done in the\nlast series for this example, creates a \"exceedance\" curve.\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nmu = 200\nsigma = 25\nn_bins = 50\nx = np.random.normal(mu, sigma, size=100)\n\nfig, ax = plt.subplots(figsize=(8, 4))\n\n# plot the cumulative histogram\nn, bins, patches = ax.hist(x, n_bins, density=True, histtype='step',\n cumulative=True, label='Empirical')\n\n# Add a line showing the expected distribution.\ny = ((1 / (np.sqrt(2 * np.pi) * sigma)) *\n np.exp(-0.5 * (1 / sigma * (bins - mu))**2))\ny = y.cumsum()\ny /= y[-1]\n\nax.plot(bins, y, 'k--', linewidth=1.5, label='Theoretical')\n\n# Overlay a reversed cumulative histogram.\nax.hist(x, bins=bins, density=True, histtype='step', cumulative=-1,\n label='Reversed emp.')\n\n# tidy up the figure\nax.grid(True)\nax.legend(loc='right')\nax.set_title('Cumulative step histograms')\nax.set_xlabel('Annual rainfall (mm)')\nax.set_ylabel('Likelihood of occurrence')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/18c20888b07ea47c418b389a1ea9c023/subplot.py b/_downloads/18c20888b07ea47c418b389a1ea9c023/subplot.py deleted file mode 120000 index 5e546bd819c..00000000000 --- a/_downloads/18c20888b07ea47c418b389a1ea9c023/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/18c20888b07ea47c418b389a1ea9c023/subplot.py \ No newline at end of file diff --git a/_downloads/18c259d0469940e4a22aa53b7df0902f/power_norm.ipynb b/_downloads/18c259d0469940e4a22aa53b7df0902f/power_norm.ipynb deleted file mode 120000 index 5a768967aa6..00000000000 --- a/_downloads/18c259d0469940e4a22aa53b7df0902f/power_norm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/18c259d0469940e4a22aa53b7df0902f/power_norm.ipynb \ No newline at end of file diff --git a/_downloads/18c93a0f65d8e69598e91057feb11107/sankey_rankine.ipynb b/_downloads/18c93a0f65d8e69598e91057feb11107/sankey_rankine.ipynb deleted file mode 120000 index 9c8c873c612..00000000000 --- a/_downloads/18c93a0f65d8e69598e91057feb11107/sankey_rankine.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/18c93a0f65d8e69598e91057feb11107/sankey_rankine.ipynb \ No newline at end of file diff --git a/_downloads/18cc67cabe78e097a1f973a689e575f5/colorbar_tick_labelling_demo.py b/_downloads/18cc67cabe78e097a1f973a689e575f5/colorbar_tick_labelling_demo.py deleted file mode 120000 index 1ad2fcd6d0b..00000000000 --- a/_downloads/18cc67cabe78e097a1f973a689e575f5/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/18cc67cabe78e097a1f973a689e575f5/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/18cdf19c0e8e7d5b5508cf7fedb2807c/colormap_normalizations_bounds.py b/_downloads/18cdf19c0e8e7d5b5508cf7fedb2807c/colormap_normalizations_bounds.py deleted file mode 100644 index d37113b9dd3..00000000000 --- a/_downloads/18cdf19c0e8e7d5b5508cf7fedb2807c/colormap_normalizations_bounds.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -============================== -Colormap Normalizations Bounds -============================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -''' -BoundaryNorm: For this one you provide the boundaries for your colors, -and the Norm puts the first color in between the first pair, the -second color between the second pair, etc. -''' - -fig, ax = plt.subplots(3, 1, figsize=(8, 8)) -ax = ax.flatten() -# even bounds gives a contour-like effect -bounds = np.linspace(-1, 1, 10) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[0].pcolormesh(X, Y, Z, - norm=norm, - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical') - -# uneven bounds changes the colormapping: -bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical') - -pcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical') - -plt.show() diff --git a/_downloads/18cf6c5b0bbf6c8a141eb3ce7416a75d/3d_bars.ipynb b/_downloads/18cf6c5b0bbf6c8a141eb3ce7416a75d/3d_bars.ipynb deleted file mode 120000 index feaf07e883b..00000000000 --- a/_downloads/18cf6c5b0bbf6c8a141eb3ce7416a75d/3d_bars.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/18cf6c5b0bbf6c8a141eb3ce7416a75d/3d_bars.ipynb \ No newline at end of file diff --git a/_downloads/18d5ff78a7c0a1312056d59343b90b1c/layer_images.ipynb b/_downloads/18d5ff78a7c0a1312056d59343b90b1c/layer_images.ipynb deleted file mode 120000 index 54a1c1530cc..00000000000 --- a/_downloads/18d5ff78a7c0a1312056d59343b90b1c/layer_images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/18d5ff78a7c0a1312056d59343b90b1c/layer_images.ipynb \ No newline at end of file diff --git a/_downloads/18db7e0af966a7e46d535a26291ac501/pie_and_donut_labels.ipynb b/_downloads/18db7e0af966a7e46d535a26291ac501/pie_and_donut_labels.ipynb deleted file mode 120000 index 528957acefc..00000000000 --- a/_downloads/18db7e0af966a7e46d535a26291ac501/pie_and_donut_labels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/18db7e0af966a7e46d535a26291ac501/pie_and_donut_labels.ipynb \ No newline at end of file diff --git a/_downloads/18dbaf5383d3b62b3e087848d56b1b61/image_slices_viewer.ipynb b/_downloads/18dbaf5383d3b62b3e087848d56b1b61/image_slices_viewer.ipynb deleted file mode 120000 index 3baf153f401..00000000000 --- a/_downloads/18dbaf5383d3b62b3e087848d56b1b61/image_slices_viewer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/18dbaf5383d3b62b3e087848d56b1b61/image_slices_viewer.ipynb \ No newline at end of file diff --git a/_downloads/18dc18b5a9e3525dca12a2331ef059ed/mathtext_examples.py b/_downloads/18dc18b5a9e3525dca12a2331ef059ed/mathtext_examples.py deleted file mode 120000 index 8aed1918ba4..00000000000 --- a/_downloads/18dc18b5a9e3525dca12a2331ef059ed/mathtext_examples.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/18dc18b5a9e3525dca12a2331ef059ed/mathtext_examples.py \ No newline at end of file diff --git a/_downloads/18dc6c34db2db3dfbd2c78d7638bc3f2/date_index_formatter2.py b/_downloads/18dc6c34db2db3dfbd2c78d7638bc3f2/date_index_formatter2.py deleted file mode 120000 index e3fb65f4be3..00000000000 --- a/_downloads/18dc6c34db2db3dfbd2c78d7638bc3f2/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/18dc6c34db2db3dfbd2c78d7638bc3f2/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/18de6a9d2abc7c22b483dd99e777bbf7/colormap_normalizations_lognorm.py b/_downloads/18de6a9d2abc7c22b483dd99e777bbf7/colormap_normalizations_lognorm.py deleted file mode 120000 index 3effbeda130..00000000000 --- a/_downloads/18de6a9d2abc7c22b483dd99e777bbf7/colormap_normalizations_lognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/18de6a9d2abc7c22b483dd99e777bbf7/colormap_normalizations_lognorm.py \ No newline at end of file diff --git a/_downloads/18e0f372eeac531c7c26aaba13b3df19/sankey_links.ipynb b/_downloads/18e0f372eeac531c7c26aaba13b3df19/sankey_links.ipynb deleted file mode 100644 index 01d3f552d46..00000000000 --- a/_downloads/18e0f372eeac531c7c26aaba13b3df19/sankey_links.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Long chain of connections using Sankey\n\n\nDemonstrate/test the Sankey class by producing a long chain of connections.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.sankey import Sankey\n\nlinks_per_side = 6\n\n\ndef side(sankey, n=1):\n \"\"\"Generate a side chain.\"\"\"\n prior = len(sankey.diagrams)\n for i in range(0, 2*n, 2):\n sankey.add(flows=[1, -1], orientations=[-1, -1],\n patchlabel=str(prior + i),\n prior=prior + i - 1, connect=(1, 0), alpha=0.5)\n sankey.add(flows=[1, -1], orientations=[1, 1],\n patchlabel=str(prior + i + 1),\n prior=prior + i, connect=(1, 0), alpha=0.5)\n\n\ndef corner(sankey):\n \"\"\"Generate a corner link.\"\"\"\n prior = len(sankey.diagrams)\n sankey.add(flows=[1, -1], orientations=[0, 1],\n patchlabel=str(prior), facecolor='k',\n prior=prior - 1, connect=(1, 0), alpha=0.5)\n\n\nfig = plt.figure()\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[],\n title=\"Why would you want to do this?\\n(But you could.)\")\nsankey = Sankey(ax=ax, unit=None)\nsankey.add(flows=[1, -1], orientations=[0, 1],\n patchlabel=\"0\", facecolor='k',\n rotation=45)\nside(sankey, n=links_per_side)\ncorner(sankey)\nside(sankey, n=links_per_side)\ncorner(sankey)\nside(sankey, n=links_per_side)\ncorner(sankey)\nside(sankey, n=links_per_side)\nsankey.finish()\n# Notice:\n# 1. The alignment doesn't drift significantly (if at all; with 16007\n# subdiagrams there is still closure).\n# 2. The first diagram is rotated 45 deg, so all other diagrams are rotated\n# accordingly.\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.sankey\nmatplotlib.sankey.Sankey\nmatplotlib.sankey.Sankey.add\nmatplotlib.sankey.Sankey.finish" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/18e8fed8eb8fcae32e9df1b8dc9d34f3/bbox_intersect.py b/_downloads/18e8fed8eb8fcae32e9df1b8dc9d34f3/bbox_intersect.py deleted file mode 120000 index c1490416b46..00000000000 --- a/_downloads/18e8fed8eb8fcae32e9df1b8dc9d34f3/bbox_intersect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/18e8fed8eb8fcae32e9df1b8dc9d34f3/bbox_intersect.py \ No newline at end of file diff --git a/_downloads/18f007a0f3dbda838e11b959d3490dc4/scatter_with_legend.ipynb b/_downloads/18f007a0f3dbda838e11b959d3490dc4/scatter_with_legend.ipynb deleted file mode 100644 index fbe8b969625..00000000000 --- a/_downloads/18f007a0f3dbda838e11b959d3490dc4/scatter_with_legend.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plots with a legend\n\n\nTo create a scatter plot with a legend one may use a loop and create one\n`~.Axes.scatter` plot per item to appear in the legend and set the ``label``\naccordingly.\n\nThe following also demonstrates how transparency of the markers\ncan be adjusted by giving ``alpha`` a value between 0 and 1.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nnp.random.seed(19680801)\nimport matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots()\nfor color in ['tab:blue', 'tab:orange', 'tab:green']:\n n = 750\n x, y = np.random.rand(2, n)\n scale = 200.0 * np.random.rand(n)\n ax.scatter(x, y, c=color, s=scale, label=color,\n alpha=0.3, edgecolors='none')\n\nax.legend()\nax.grid(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nAutomated legend creation\n-------------------------\n\nAnother option for creating a legend for a scatter is to use the\n:class:`~matplotlib.collections.PathCollection`'s\n:meth:`~.PathCollection.legend_elements` method.\nIt will automatically try to determine a useful number of legend entries\nto be shown and return a tuple of handles and labels. Those can be passed\nto the call to :meth:`~.axes.Axes.legend`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 45\nx, y = np.random.rand(2, N)\nc = np.random.randint(1, 5, size=N)\ns = np.random.randint(10, 220, size=N)\n\nfig, ax = plt.subplots()\n\nscatter = ax.scatter(x, y, c=c, s=s)\n\n# produce a legend with the unique colors from the scatter\nlegend1 = ax.legend(*scatter.legend_elements(),\n loc=\"lower left\", title=\"Classes\")\nax.add_artist(legend1)\n\n# produce a legend with a cross section of sizes from the scatter\nhandles, labels = scatter.legend_elements(prop=\"sizes\", alpha=0.6)\nlegend2 = ax.legend(handles, labels, loc=\"upper right\", title=\"Sizes\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Further arguments to the :meth:`~.PathCollection.legend_elements` method\ncan be used to steer how many legend entries are to be created and how they\nshould be labeled. The following shows how to use some of them.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "volume = np.random.rayleigh(27, size=40)\namount = np.random.poisson(10, size=40)\nranking = np.random.normal(size=40)\nprice = np.random.uniform(1, 10, size=40)\n\nfig, ax = plt.subplots()\n\n# Because the price is much too small when being provided as size for ``s``,\n# we normalize it to some useful point sizes, s=0.3*(price*3)**2\nscatter = ax.scatter(volume, amount, c=ranking, s=0.3*(price*3)**2,\n vmin=-3, vmax=3, cmap=\"Spectral\")\n\n# Produce a legend for the ranking (colors). Even though there are 40 different\n# rankings, we only want to show 5 of them in the legend.\nlegend1 = ax.legend(*scatter.legend_elements(num=5),\n loc=\"upper left\", title=\"Ranking\")\nax.add_artist(legend1)\n\n# Produce a legend for the price (sizes). Because we want to show the prices\n# in dollars, we use the *func* argument to supply the inverse of the function\n# used to calculate the sizes from above. The *fmt* ensures to show the price\n# in dollars. Note how we target at 5 elements here, but obtain only 4 in the\n# created legend due to the automatic round prices that are chosen for us.\nkw = dict(prop=\"sizes\", num=5, color=scatter.cmap(0.7), fmt=\"$ {x:.2f}\",\n func=lambda s: np.sqrt(s/.3)/3)\nlegend2 = ax.legend(*scatter.legend_elements(**kw),\n loc=\"lower right\", title=\"Price\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe usage of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.scatter\nmatplotlib.pyplot.scatter\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.collections.PathCollection.legend_elements" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/18f19191b0e6e8fb08ef18cea0845fa8/embedding_in_wx3_sgskip.py b/_downloads/18f19191b0e6e8fb08ef18cea0845fa8/embedding_in_wx3_sgskip.py deleted file mode 100644 index a06a82174e2..00000000000 --- a/_downloads/18f19191b0e6e8fb08ef18cea0845fa8/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1,148 +0,0 @@ -""" -================== -Embedding in wx #3 -================== - -Copyright (C) 2003-2004 Andrew Straw, Jeremy O'Donoghue and others - -License: This work is licensed under the PSF. A copy should be included -with this source code, and is also available at -https://docs.python.org/3/license.html - -This is yet another example of using matplotlib with wx. Hopefully -this is pretty full-featured: - - - both matplotlib toolbar and WX buttons manipulate plot - - full wxApp framework, including widget interaction - - XRC (XML wxWidgets resource) file to create GUI (made with XRCed) - -This was derived from embedding_in_wx and dynamic_image_wxagg. - -Thanks to matplotlib and wx teams for creating such great software! -""" - -import matplotlib -import matplotlib.cm as cm -import matplotlib.cbook as cbook -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar -from matplotlib.figure import Figure -import numpy as np - -import wx -import wx.xrc as xrc - -ERR_TOL = 1e-5 # floating point slop for peak-detection - - -matplotlib.rc('image', origin='lower') - - -class PlotPanel(wx.Panel): - def __init__(self, parent): - wx.Panel.__init__(self, parent, -1) - - self.fig = Figure((5, 4), 75) - self.canvas = FigureCanvas(self, -1, self.fig) - self.toolbar = NavigationToolbar(self.canvas) # matplotlib toolbar - self.toolbar.Realize() - # self.toolbar.set_active([0,1]) - - # Now put all into a sizer - sizer = wx.BoxSizer(wx.VERTICAL) - # This way of adding to sizer allows resizing - sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW) - # Best to allow the toolbar to resize! - sizer.Add(self.toolbar, 0, wx.GROW) - self.SetSizer(sizer) - self.Fit() - - def init_plot_data(self): - a = self.fig.add_subplot(111) - - x = np.arange(120.0) * 2 * np.pi / 60.0 - y = np.arange(100.0) * 2 * np.pi / 50.0 - self.x, self.y = np.meshgrid(x, y) - z = np.sin(self.x) + np.cos(self.y) - self.im = a.imshow(z, cmap=cm.RdBu) # , interpolation='nearest') - - zmax = np.max(z) - ERR_TOL - ymax_i, xmax_i = np.nonzero(z >= zmax) - if self.im.origin == 'upper': - ymax_i = z.shape[0] - ymax_i - self.lines = a.plot(xmax_i, ymax_i, 'ko') - - self.toolbar.update() # Not sure why this is needed - ADS - - def GetToolBar(self): - # You will need to override GetToolBar if you are using an - # unmanaged toolbar in your frame - return self.toolbar - - def OnWhiz(self, evt): - self.x += np.pi / 15 - self.y += np.pi / 20 - z = np.sin(self.x) + np.cos(self.y) - self.im.set_array(z) - - zmax = np.max(z) - ERR_TOL - ymax_i, xmax_i = np.nonzero(z >= zmax) - if self.im.origin == 'upper': - ymax_i = z.shape[0] - ymax_i - self.lines[0].set_data(xmax_i, ymax_i) - - self.canvas.draw() - - -class MyApp(wx.App): - def OnInit(self): - xrcfile = cbook.get_sample_data('embedding_in_wx3.xrc', - asfileobj=False) - print('loading', xrcfile) - - self.res = xrc.XmlResource(xrcfile) - - # main frame and panel --------- - - self.frame = self.res.LoadFrame(None, "MainFrame") - self.panel = xrc.XRCCTRL(self.frame, "MainPanel") - - # matplotlib panel ------------- - - # container for matplotlib panel (I like to make a container - # panel for our panel so I know where it'll go when in XRCed.) - plot_container = xrc.XRCCTRL(self.frame, "plot_container_panel") - sizer = wx.BoxSizer(wx.VERTICAL) - - # matplotlib panel itself - self.plotpanel = PlotPanel(plot_container) - self.plotpanel.init_plot_data() - - # wx boilerplate - sizer.Add(self.plotpanel, 1, wx.EXPAND) - plot_container.SetSizer(sizer) - - # whiz button ------------------ - whiz_button = xrc.XRCCTRL(self.frame, "whiz_button") - whiz_button.Bind(wx.EVT_BUTTON, self.plotpanel.OnWhiz) - - # bang button ------------------ - bang_button = xrc.XRCCTRL(self.frame, "bang_button") - bang_button.Bind(wx.EVT_BUTTON, self.OnBang) - - # final setup ------------------ - self.frame.Show(1) - - self.SetTopWindow(self.frame) - - return True - - def OnBang(self, event): - bang_count = xrc.XRCCTRL(self.frame, "bang_count") - bangs = bang_count.GetValue() - bangs = int(bangs) + 1 - bang_count.SetValue(str(bangs)) - -if __name__ == '__main__': - app = MyApp(0) - app.MainLoop() diff --git a/_downloads/18fb3d118caa6ec41de9ce9a2a9e474d/demo_text_rotation_mode.ipynb b/_downloads/18fb3d118caa6ec41de9ce9a2a9e474d/demo_text_rotation_mode.ipynb deleted file mode 100644 index baf6a5f7b3e..00000000000 --- a/_downloads/18fb3d118caa6ec41de9ce9a2a9e474d/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Text Rotation Mode\n\n\nThis example illustrates the effect of ``rotation_mode`` on the positioning\nof rotated text.\n\nRotated `.Text`\\s are created by passing the parameter ``rotation`` to\nthe constructor or the axes' method `~.axes.Axes.text`.\n\nThe actual positioning depends on the additional parameters\n``horizontalalignment``, ``verticalalignment`` and ``rotation_mode``.\n``rotation_mode`` determines the order of rotation and alignment:\n\n- ``roation_mode='default'`` (or None) first rotates the text and then aligns\n the bounding box of the rotated text.\n- ``roation_mode='anchor'`` aligns the unrotated text and then rotates the\n text around the point of alignment.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_grid import ImageGrid\n\n\ndef test_rotation_mode(fig, mode, subplot_location):\n ha_list = [\"left\", \"center\", \"right\"]\n va_list = [\"top\", \"center\", \"baseline\", \"bottom\"]\n grid = ImageGrid(fig, subplot_location,\n nrows_ncols=(len(va_list), len(ha_list)),\n share_all=True, aspect=True, cbar_mode=None)\n\n # labels and title\n for ha, ax in zip(ha_list, grid.axes_row[-1]):\n ax.axis[\"bottom\"].label.set_text(ha)\n for va, ax in zip(va_list, grid.axes_column[0]):\n ax.axis[\"left\"].label.set_text(va)\n grid.axes_row[0][1].set_title(f\"rotation_mode='{mode}'\", size=\"large\")\n\n if mode == \"default\":\n kw = dict()\n else:\n kw = dict(\n bbox=dict(boxstyle=\"square,pad=0.\", ec=\"none\", fc=\"C1\", alpha=0.3))\n\n # use a different text alignment in each axes\n texts = []\n for (va, ha), ax in zip([(x, y) for x in va_list for y in ha_list], grid):\n # prepare axes layout\n for axis in ax.axis.values():\n axis.toggle(ticks=False, ticklabels=False)\n ax.axvline(0.5, color=\"skyblue\", zorder=0)\n ax.axhline(0.5, color=\"skyblue\", zorder=0)\n ax.plot(0.5, 0.5, color=\"C0\", marker=\"o\", zorder=1)\n\n # add text with rotation and alignment settings\n tx = ax.text(0.5, 0.5, \"Tpg\",\n size=\"x-large\", rotation=40,\n horizontalalignment=ha, verticalalignment=va,\n rotation_mode=mode, **kw)\n texts.append(tx)\n\n if mode == \"default\":\n # highlight bbox\n fig.canvas.draw()\n for ax, tx in zip(grid, texts):\n bb = tx.get_window_extent().inverse_transformed(ax.transData)\n rect = plt.Rectangle((bb.x0, bb.y0), bb.width, bb.height,\n facecolor=\"C1\", alpha=0.3, zorder=2)\n ax.add_patch(rect)\n\n\nfig = plt.figure(figsize=(8, 6))\ntest_rotation_mode(fig, \"default\", 121)\ntest_rotation_mode(fig, \"anchor\", 122)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following method is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/19105efcc98a29acf08fa2d2422fd55f/svg_filter_pie.py b/_downloads/19105efcc98a29acf08fa2d2422fd55f/svg_filter_pie.py deleted file mode 120000 index 9c27d1dc500..00000000000 --- a/_downloads/19105efcc98a29acf08fa2d2422fd55f/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/19105efcc98a29acf08fa2d2422fd55f/svg_filter_pie.py \ No newline at end of file diff --git a/_downloads/1913c795a80c8942cd0816da3b338f6a/fill_betweenx_demo.ipynb b/_downloads/1913c795a80c8942cd0816da3b338f6a/fill_betweenx_demo.ipynb deleted file mode 100644 index 7fa8a50fb87..00000000000 --- a/_downloads/1913c795a80c8942cd0816da3b338f6a/fill_betweenx_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fill Betweenx Demo\n\n\nUsing `~.Axes.fill_betweenx` to color along the horizontal direction between\ntwo curves.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ny = np.arange(0.0, 2, 0.01)\nx1 = np.sin(2 * np.pi * y)\nx2 = 1.2 * np.sin(4 * np.pi * y)\n\nfig, [ax1, ax2, ax3] = plt.subplots(1, 3, sharey=True, figsize=(6, 6))\n\nax1.fill_betweenx(y, 0, x1)\nax1.set_title('between (x1, 0)')\n\nax2.fill_betweenx(y, x1, 1)\nax2.set_title('between (x1, 1)')\nax2.set_xlabel('x')\n\nax3.fill_betweenx(y, x1, x2)\nax3.set_title('between (x1, x2)')\n\n# now fill between x1 and x2 where a logical condition is met. Note\n# this is different than calling\n# fill_between(y[where], x1[where], x2[where])\n# because of edge effects over multiple contiguous regions.\n\nfig, [ax, ax1] = plt.subplots(1, 2, sharey=True, figsize=(6, 6))\nax.plot(x1, y, x2, y, color='black')\nax.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green')\nax.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red')\nax.set_title('fill_betweenx where')\n\n# Test support for masked arrays.\nx2 = np.ma.masked_greater(x2, 1.0)\nax1.plot(x1, y, x2, y, color='black')\nax1.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green')\nax1.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red')\nax1.set_title('regions with x2 > 1 are masked')\n\n# This example illustrates a problem; because of the data\n# gridding, there are undesired unfilled triangles at the crossover\n# points. A brute-force solution would be to interpolate all\n# arrays to a very fine grid before plotting.\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/19192cfa361a34568cc6a68f2f109b04/demo_ticklabel_direction.py b/_downloads/19192cfa361a34568cc6a68f2f109b04/demo_ticklabel_direction.py deleted file mode 120000 index 1a39eb0aac9..00000000000 --- a/_downloads/19192cfa361a34568cc6a68f2f109b04/demo_ticklabel_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/19192cfa361a34568cc6a68f2f109b04/demo_ticklabel_direction.py \ No newline at end of file diff --git a/_downloads/1928a31ce5345bcd833219f36dafa906/barb_demo.py b/_downloads/1928a31ce5345bcd833219f36dafa906/barb_demo.py deleted file mode 100644 index b485ba26962..00000000000 --- a/_downloads/1928a31ce5345bcd833219f36dafa906/barb_demo.py +++ /dev/null @@ -1,69 +0,0 @@ -''' -========= -Barb Demo -========= - -Demonstration of wind barb plots -''' -import matplotlib.pyplot as plt -import numpy as np - -x = np.linspace(-5, 5, 5) -X, Y = np.meshgrid(x, x) -U, V = 12 * X, 12 * Y - -data = [(-1.5, .5, -6, -6), - (1, -1, -46, 46), - (-3, -1, 11, -11), - (1, 1.5, 80, 80), - (0.5, 0.25, 25, 15), - (-1.5, -0.5, -5, 40)] - -data = np.array(data, dtype=[('x', np.float32), ('y', np.float32), - ('u', np.float32), ('v', np.float32)]) - -fig1, axs1 = plt.subplots(nrows=2, ncols=2) -# Default parameters, uniform grid -axs1[0, 0].barbs(X, Y, U, V) - -# Arbitrary set of vectors, make them longer and change the pivot point -# (point around which they're rotated) to be the middle -axs1[0, 1].barbs( - data['x'], data['y'], data['u'], data['v'], length=8, pivot='middle') - -# Showing colormapping with uniform grid. Fill the circle for an empty barb, -# don't round the values, and change some of the size parameters -axs1[1, 0].barbs( - X, Y, U, V, np.sqrt(U ** 2 + V ** 2), fill_empty=True, rounding=False, - sizes=dict(emptybarb=0.25, spacing=0.2, height=0.3)) - -# Change colors as well as the increments for parts of the barbs -axs1[1, 1].barbs(data['x'], data['y'], data['u'], data['v'], flagcolor='r', - barbcolor=['b', 'g'], flip_barb=True, - barb_increments=dict(half=10, full=20, flag=100)) - -# Masked arrays are also supported -masked_u = np.ma.masked_array(data['u']) -masked_u[4] = 1000 # Bad value that should not be plotted when masked -masked_u[4] = np.ma.masked - -# Identical plot to panel 2 in the first figure, but with the point at -# (0.5, 0.25) missing (masked) -fig2, ax2 = plt.subplots() -ax2.barbs(data['x'], data['y'], masked_u, data['v'], length=8, pivot='middle') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.barbs -matplotlib.pyplot.barbs diff --git a/_downloads/193a7786308a613f4b3f666b503327e5/annotate_with_units.ipynb b/_downloads/193a7786308a613f4b3f666b503327e5/annotate_with_units.ipynb deleted file mode 120000 index da23d2a567c..00000000000 --- a/_downloads/193a7786308a613f4b3f666b503327e5/annotate_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/193a7786308a613f4b3f666b503327e5/annotate_with_units.ipynb \ No newline at end of file diff --git a/_downloads/193cee48b6829ffe68ac3fecd8d75476/tripcolor_demo.ipynb b/_downloads/193cee48b6829ffe68ac3fecd8d75476/tripcolor_demo.ipynb deleted file mode 120000 index 44de5a31da7..00000000000 --- a/_downloads/193cee48b6829ffe68ac3fecd8d75476/tripcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/193cee48b6829ffe68ac3fecd8d75476/tripcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/193f4aff9346b2bf6c3c273a975bd813/demo_ticklabel_alignment.ipynb b/_downloads/193f4aff9346b2bf6c3c273a975bd813/demo_ticklabel_alignment.ipynb deleted file mode 120000 index 793b10e3a6c..00000000000 --- a/_downloads/193f4aff9346b2bf6c3c273a975bd813/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/193f4aff9346b2bf6c3c273a975bd813/demo_ticklabel_alignment.ipynb \ No newline at end of file diff --git a/_downloads/193fb6276a9046bad62f8e889d89ac8c/mixed_subplots.ipynb b/_downloads/193fb6276a9046bad62f8e889d89ac8c/mixed_subplots.ipynb deleted file mode 120000 index c992c5f97fe..00000000000 --- a/_downloads/193fb6276a9046bad62f8e889d89ac8c/mixed_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/193fb6276a9046bad62f8e889d89ac8c/mixed_subplots.ipynb \ No newline at end of file diff --git a/_downloads/193fe0c9220a5887286fca95160df044/text_alignment.py b/_downloads/193fe0c9220a5887286fca95160df044/text_alignment.py deleted file mode 120000 index e7ab51618f5..00000000000 --- a/_downloads/193fe0c9220a5887286fca95160df044/text_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/193fe0c9220a5887286fca95160df044/text_alignment.py \ No newline at end of file diff --git a/_downloads/19467dbb503cbc3b6039246045020522/demo_colorbar_with_inset_locator.py b/_downloads/19467dbb503cbc3b6039246045020522/demo_colorbar_with_inset_locator.py deleted file mode 120000 index 462ad201d37..00000000000 --- a/_downloads/19467dbb503cbc3b6039246045020522/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/19467dbb503cbc3b6039246045020522/demo_colorbar_with_inset_locator.py \ No newline at end of file diff --git a/_downloads/1949ea848c333e5e20386d877ab687c7/colormap_normalizations_bounds.py b/_downloads/1949ea848c333e5e20386d877ab687c7/colormap_normalizations_bounds.py deleted file mode 120000 index 315c5b07787..00000000000 --- a/_downloads/1949ea848c333e5e20386d877ab687c7/colormap_normalizations_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1949ea848c333e5e20386d877ab687c7/colormap_normalizations_bounds.py \ No newline at end of file diff --git a/_downloads/194ed86b7cdf828dda9a026ec859d6dc/contourf3d.ipynb b/_downloads/194ed86b7cdf828dda9a026ec859d6dc/contourf3d.ipynb deleted file mode 120000 index 9cc5b5a5221..00000000000 --- a/_downloads/194ed86b7cdf828dda9a026ec859d6dc/contourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/194ed86b7cdf828dda9a026ec859d6dc/contourf3d.ipynb \ No newline at end of file diff --git a/_downloads/195298877f645522872ee63594c32fc2/menu.py b/_downloads/195298877f645522872ee63594c32fc2/menu.py deleted file mode 100644 index 326e28fd81a..00000000000 --- a/_downloads/195298877f645522872ee63594c32fc2/menu.py +++ /dev/null @@ -1,179 +0,0 @@ -""" -==== -Menu -==== - -""" -import numpy as np -import matplotlib.colors as colors -import matplotlib.patches as patches -import matplotlib.mathtext as mathtext -import matplotlib.pyplot as plt -import matplotlib.artist as artist -import matplotlib.image as image - - -class ItemProperties(object): - def __init__(self, fontsize=14, labelcolor='black', bgcolor='yellow', - alpha=1.0): - self.fontsize = fontsize - self.labelcolor = labelcolor - self.bgcolor = bgcolor - self.alpha = alpha - - self.labelcolor_rgb = colors.to_rgba(labelcolor)[:3] - self.bgcolor_rgb = colors.to_rgba(bgcolor)[:3] - - -class MenuItem(artist.Artist): - parser = mathtext.MathTextParser("Bitmap") - padx = 5 - pady = 5 - - def __init__(self, fig, labelstr, props=None, hoverprops=None, - on_select=None): - artist.Artist.__init__(self) - - self.set_figure(fig) - self.labelstr = labelstr - - if props is None: - props = ItemProperties() - - if hoverprops is None: - hoverprops = ItemProperties() - - self.props = props - self.hoverprops = hoverprops - - self.on_select = on_select - - x, self.depth = self.parser.to_mask( - labelstr, fontsize=props.fontsize, dpi=fig.dpi) - - if props.fontsize != hoverprops.fontsize: - raise NotImplementedError( - 'support for different font sizes not implemented') - - self.labelwidth = x.shape[1] - self.labelheight = x.shape[0] - - self.labelArray = np.zeros((x.shape[0], x.shape[1], 4)) - self.labelArray[:, :, -1] = x/255. - - self.label = image.FigureImage(fig, origin='upper') - self.label.set_array(self.labelArray) - - # we'll update these later - self.rect = patches.Rectangle((0, 0), 1, 1) - - self.set_hover_props(False) - - fig.canvas.mpl_connect('button_release_event', self.check_select) - - def check_select(self, event): - over, junk = self.rect.contains(event) - if not over: - return - - if self.on_select is not None: - self.on_select(self) - - def set_extent(self, x, y, w, h): - print(x, y, w, h) - self.rect.set_x(x) - self.rect.set_y(y) - self.rect.set_width(w) - self.rect.set_height(h) - - self.label.ox = x + self.padx - self.label.oy = y - self.depth + self.pady/2. - - self.hover = False - - def draw(self, renderer): - self.rect.draw(renderer) - self.label.draw(renderer) - - def set_hover_props(self, b): - if b: - props = self.hoverprops - else: - props = self.props - - r, g, b = props.labelcolor_rgb - self.labelArray[:, :, 0] = r - self.labelArray[:, :, 1] = g - self.labelArray[:, :, 2] = b - self.label.set_array(self.labelArray) - self.rect.set(facecolor=props.bgcolor, alpha=props.alpha) - - def set_hover(self, event): - 'check the hover status of event and return true if status is changed' - b, junk = self.rect.contains(event) - - changed = (b != self.hover) - - if changed: - self.set_hover_props(b) - - self.hover = b - return changed - - -class Menu(object): - def __init__(self, fig, menuitems): - self.figure = fig - fig.suppressComposite = True - - self.menuitems = menuitems - self.numitems = len(menuitems) - - maxw = max(item.labelwidth for item in menuitems) - maxh = max(item.labelheight for item in menuitems) - - totalh = self.numitems*maxh + (self.numitems + 1)*2*MenuItem.pady - - x0 = 100 - y0 = 400 - - width = maxw + 2*MenuItem.padx - height = maxh + MenuItem.pady - - for item in menuitems: - left = x0 - bottom = y0 - maxh - MenuItem.pady - - item.set_extent(left, bottom, width, height) - - fig.artists.append(item) - y0 -= maxh + MenuItem.pady - - fig.canvas.mpl_connect('motion_notify_event', self.on_move) - - def on_move(self, event): - draw = False - for item in self.menuitems: - draw = item.set_hover(event) - if draw: - self.figure.canvas.draw() - break - - -fig = plt.figure() -fig.subplots_adjust(left=0.3) -props = ItemProperties(labelcolor='black', bgcolor='yellow', - fontsize=15, alpha=0.2) -hoverprops = ItemProperties(labelcolor='white', bgcolor='blue', - fontsize=15, alpha=0.2) - -menuitems = [] -for label in ('open', 'close', 'save', 'save as', 'quit'): - def on_select(item): - print('you selected %s' % item.labelstr) - item = MenuItem(fig, label, props=props, hoverprops=hoverprops, - on_select=on_select) - menuitems.append(item) - -menu = Menu(fig, menuitems) -plt.show() diff --git a/_downloads/1954843295aacde20b301cfbb3491c53/tick-formatters.ipynb b/_downloads/1954843295aacde20b301cfbb3491c53/tick-formatters.ipynb deleted file mode 100644 index 2c12ce07e18..00000000000 --- a/_downloads/1954843295aacde20b301cfbb3491c53/tick-formatters.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tick formatters\n\n\nShow the different tick formatters.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\n\n\n# Setup a plot such that only the bottom spine is shown\ndef setup(ax):\n ax.spines['right'].set_color('none')\n ax.spines['left'].set_color('none')\n ax.yaxis.set_major_locator(ticker.NullLocator())\n ax.spines['top'].set_color('none')\n ax.xaxis.set_ticks_position('bottom')\n ax.tick_params(which='major', width=1.00, length=5)\n ax.tick_params(which='minor', width=0.75, length=2.5, labelsize=10)\n ax.set_xlim(0, 5)\n ax.set_ylim(0, 1)\n ax.patch.set_alpha(0.0)\n\n\nfig = plt.figure(figsize=(8, 6))\nn = 7\n\n# Null formatter\nax = fig.add_subplot(n, 1, 1)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.NullFormatter())\nax.xaxis.set_minor_formatter(ticker.NullFormatter())\nax.text(0.0, 0.1, \"NullFormatter()\", fontsize=16, transform=ax.transAxes)\n\n# Fixed formatter\nax = fig.add_subplot(n, 1, 2)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.0))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nmajors = [\"\", \"0\", \"1\", \"2\", \"3\", \"4\", \"5\"]\nax.xaxis.set_major_formatter(ticker.FixedFormatter(majors))\nminors = [\"\"] + [\"%.2f\" % (x-int(x)) if (x-int(x))\n else \"\" for x in np.arange(0, 5, 0.25)]\nax.xaxis.set_minor_formatter(ticker.FixedFormatter(minors))\nax.text(0.0, 0.1, \"FixedFormatter(['', '0', '1', ...])\",\n fontsize=15, transform=ax.transAxes)\n\n\n# FuncFormatter can be used as a decorator\n@ticker.FuncFormatter\ndef major_formatter(x, pos):\n return \"[%.2f]\" % x\n\n\nax = fig.add_subplot(n, 1, 3)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(major_formatter)\nax.text(0.0, 0.1, 'FuncFormatter(lambda x, pos: \"[%.2f]\" % x)',\n fontsize=15, transform=ax.transAxes)\n\n\n# FormatStr formatter\nax = fig.add_subplot(n, 1, 4)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.FormatStrFormatter(\">%d<\"))\nax.text(0.0, 0.1, \"FormatStrFormatter('>%d<')\",\n fontsize=15, transform=ax.transAxes)\n\n# Scalar formatter\nax = fig.add_subplot(n, 1, 5)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.AutoLocator())\nax.xaxis.set_minor_locator(ticker.AutoMinorLocator())\nax.xaxis.set_major_formatter(ticker.ScalarFormatter(useMathText=True))\nax.text(0.0, 0.1, \"ScalarFormatter()\", fontsize=15, transform=ax.transAxes)\n\n# StrMethod formatter\nax = fig.add_subplot(n, 1, 6)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.StrMethodFormatter(\"{x}\"))\nax.text(0.0, 0.1, \"StrMethodFormatter('{x}')\",\n fontsize=15, transform=ax.transAxes)\n\n# Percent formatter\nax = fig.add_subplot(n, 1, 7)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.PercentFormatter(xmax=5))\nax.text(0.0, 0.1, \"PercentFormatter(xmax=5)\",\n fontsize=15, transform=ax.transAxes)\n\n# Push the top of the top axes outside the figure because we only show the\n# bottom spine.\nfig.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/195766dd7b7ea832f25a8cc2eab715c8/image_nonuniform.py b/_downloads/195766dd7b7ea832f25a8cc2eab715c8/image_nonuniform.py deleted file mode 120000 index 99b2b1d82b7..00000000000 --- a/_downloads/195766dd7b7ea832f25a8cc2eab715c8/image_nonuniform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/195766dd7b7ea832f25a8cc2eab715c8/image_nonuniform.py \ No newline at end of file diff --git a/_downloads/19596ed7ab4159a60127261f402d23b9/usetex_demo.py b/_downloads/19596ed7ab4159a60127261f402d23b9/usetex_demo.py deleted file mode 120000 index 6285db8ff61..00000000000 --- a/_downloads/19596ed7ab4159a60127261f402d23b9/usetex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/19596ed7ab4159a60127261f402d23b9/usetex_demo.py \ No newline at end of file diff --git a/_downloads/19696be064d139c0531afec8413494ac/dashpointlabel.ipynb b/_downloads/19696be064d139c0531afec8413494ac/dashpointlabel.ipynb deleted file mode 100644 index 0582cded58e..00000000000 --- a/_downloads/19696be064d139c0531afec8413494ac/dashpointlabel.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dashpoint Label\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import warnings\n\nimport matplotlib.pyplot as plt\n\nwarnings.simplefilter(\"ignore\") # Ignore deprecation of withdash.\n\nDATA = ((1, 3),\n (2, 4),\n (3, 1),\n (4, 2))\n# dash_style =\n# direction, length, (text)rotation, dashrotation, push\n# (The parameters are varied to show their effects, not for visual appeal).\ndash_style = (\n (0, 20, -15, 30, 10),\n (1, 30, 0, 15, 10),\n (0, 40, 15, 15, 10),\n (1, 20, 30, 60, 10))\n\nfig, ax = plt.subplots()\n\n(x, y) = zip(*DATA)\nax.plot(x, y, marker='o')\nfor i in range(len(DATA)):\n (x, y) = DATA[i]\n (dd, dl, r, dr, dp) = dash_style[i]\n t = ax.text(x, y, str((x, y)), withdash=True,\n dashdirection=dd,\n dashlength=dl,\n rotation=r,\n dashrotation=dr,\n dashpush=dp,\n )\n\nax.set_xlim((0, 5))\nax.set_ylim((0, 5))\nax.set(title=\"NOTE: The withdash parameter is deprecated.\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/197a48d2414aabb049ec6cec4466cb1b/inset_locator_demo2.ipynb b/_downloads/197a48d2414aabb049ec6cec4466cb1b/inset_locator_demo2.ipynb deleted file mode 120000 index 1523be9854f..00000000000 --- a/_downloads/197a48d2414aabb049ec6cec4466cb1b/inset_locator_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/197a48d2414aabb049ec6cec4466cb1b/inset_locator_demo2.ipynb \ No newline at end of file diff --git a/_downloads/198a4c01b7766ccdf6cc4b8a415bafc0/text_rotation.py b/_downloads/198a4c01b7766ccdf6cc4b8a415bafc0/text_rotation.py deleted file mode 120000 index 1764a3cdc6f..00000000000 --- a/_downloads/198a4c01b7766ccdf6cc4b8a415bafc0/text_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/198a4c01b7766ccdf6cc4b8a415bafc0/text_rotation.py \ No newline at end of file diff --git a/_downloads/1995eb90ca3090322cbb5cb8ba054d0a/logit_demo.ipynb b/_downloads/1995eb90ca3090322cbb5cb8ba054d0a/logit_demo.ipynb deleted file mode 120000 index 42eeb1204f0..00000000000 --- a/_downloads/1995eb90ca3090322cbb5cb8ba054d0a/logit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1995eb90ca3090322cbb5cb8ba054d0a/logit_demo.ipynb \ No newline at end of file diff --git a/_downloads/199748254bbd846da60f80697ffa3172/transoffset.py b/_downloads/199748254bbd846da60f80697ffa3172/transoffset.py deleted file mode 120000 index 9800aee1dbf..00000000000 --- a/_downloads/199748254bbd846da60f80697ffa3172/transoffset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/199748254bbd846da60f80697ffa3172/transoffset.py \ No newline at end of file diff --git a/_downloads/19992c131be3a7f5a9e5c236975465aa/vline_hline_demo.ipynb b/_downloads/19992c131be3a7f5a9e5c236975465aa/vline_hline_demo.ipynb deleted file mode 100644 index 62958cd4901..00000000000 --- a/_downloads/19992c131be3a7f5a9e5c236975465aa/vline_hline_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# hlines and vlines\n\n\nThis example showcases the functions hlines and vlines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nt = np.arange(0.0, 5.0, 0.1)\ns = np.exp(-t) + np.sin(2 * np.pi * t) + 1\nnse = np.random.normal(0.0, 0.3, t.shape) * s\n\nfig, (vax, hax) = plt.subplots(1, 2, figsize=(12, 6))\n\nvax.plot(t, s + nse, '^')\nvax.vlines(t, [0], s)\n# By using ``transform=vax.get_xaxis_transform()`` the y coordinates are scaled\n# such that 0 maps to the bottom of the axes and 1 to the top.\nvax.vlines([1, 2], 0, 1, transform=vax.get_xaxis_transform(), colors='r')\nvax.set_xlabel('time (s)')\nvax.set_title('Vertical lines demo')\n\nhax.plot(s + nse, t, '^')\nhax.hlines(t, [0], s, lw=2)\nhax.set_xlabel('time (s)')\nhax.set_title('Horizontal lines demo')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/199bbbba1a17195b92f83b75f97fb25a/quiver_simple_demo.py b/_downloads/199bbbba1a17195b92f83b75f97fb25a/quiver_simple_demo.py deleted file mode 100644 index 0393a4857cb..00000000000 --- a/_downloads/199bbbba1a17195b92f83b75f97fb25a/quiver_simple_demo.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -================== -Quiver Simple Demo -================== - -A simple example of a `~.axes.Axes.quiver` plot with a `~.axes.Axes.quiverkey`. - -For more advanced options refer to -:doc:`/gallery/images_contours_and_fields/quiver_demo`. -""" -import matplotlib.pyplot as plt -import numpy as np - -X = np.arange(-10, 10, 1) -Y = np.arange(-10, 10, 1) -U, V = np.meshgrid(X, Y) - -fig, ax = plt.subplots() -q = ax.quiver(X, Y, U, V) -ax.quiverkey(q, X=0.3, Y=1.1, U=10, - label='Quiver key, length = 10', labelpos='E') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.quiver -matplotlib.pyplot.quiver -matplotlib.axes.Axes.quiverkey -matplotlib.pyplot.quiverkey diff --git a/_downloads/199e686d489df87d396818abd4db22c9/contour3d.ipynb b/_downloads/199e686d489df87d396818abd4db22c9/contour3d.ipynb deleted file mode 120000 index fee129ab2dd..00000000000 --- a/_downloads/199e686d489df87d396818abd4db22c9/contour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/199e686d489df87d396818abd4db22c9/contour3d.ipynb \ No newline at end of file diff --git a/_downloads/19a0072d80eefa5dc179a38243c1da91/quiver3d.py b/_downloads/19a0072d80eefa5dc179a38243c1da91/quiver3d.py deleted file mode 120000 index 4beeef0d32b..00000000000 --- a/_downloads/19a0072d80eefa5dc179a38243c1da91/quiver3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/19a0072d80eefa5dc179a38243c1da91/quiver3d.py \ No newline at end of file diff --git a/_downloads/19a6577197602eb23b14773127be4402/image_masked.ipynb b/_downloads/19a6577197602eb23b14773127be4402/image_masked.ipynb deleted file mode 120000 index d4b0caec8ca..00000000000 --- a/_downloads/19a6577197602eb23b14773127be4402/image_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/19a6577197602eb23b14773127be4402/image_masked.ipynb \ No newline at end of file diff --git a/_downloads/19a98f289ebe9836df440a607650fd5c/colorbar_only.ipynb b/_downloads/19a98f289ebe9836df440a607650fd5c/colorbar_only.ipynb deleted file mode 100644 index 1d126eec0e7..00000000000 --- a/_downloads/19a98f289ebe9836df440a607650fd5c/colorbar_only.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customized Colorbars Tutorial\n\n\nThis tutorial shows how to build colorbars without an attached plot.\n\nCustomized Colorbars\n====================\n\n`~matplotlib.colorbar.ColorbarBase` puts a colorbar in a specified axes,\nand can make a colorbar for a given colormap; it does not need a mappable\nobject like an image. In this tutorial we will explore what can be done with\nstandalone colorbar.\n\nBasic continuous colorbar\n-------------------------\n\nSet the colormap and norm to correspond to the data for which the colorbar\nwill be used. Then create the colorbar by calling\n:class:`~matplotlib.colorbar.ColorbarBase` and specify axis, colormap, norm\nand orientation as parameters. Here we create a basic continuous colorbar\nwith ticks and labels. For more information see the\n:mod:`~matplotlib.colorbar` API.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib as mpl\n\nfig, ax = plt.subplots(figsize=(6, 1))\nfig.subplots_adjust(bottom=0.5)\n\ncmap = mpl.cm.cool\nnorm = mpl.colors.Normalize(vmin=5, vmax=10)\n\ncb1 = mpl.colorbar.ColorbarBase(ax, cmap=cmap,\n norm=norm,\n orientation='horizontal')\ncb1.set_label('Some Units')\nfig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Discrete intervals colorbar\n---------------------------\n\nThe second example illustrates the use of a\n:class:`~matplotlib.colors.ListedColormap` which generates a colormap from a\nset of listed colors, :func:`colors.BoundaryNorm` which generates a colormap\nindex based on discrete intervals and extended ends to show the \"over\" and\n\"under\" value colors. Over and under are used to display data outside of the\nnormalized [0,1] range. Here we pass colors as gray shades as a string\nencoding a float in the 0-1 range.\n\nIf a :class:`~matplotlib.colors.ListedColormap` is used, the length of the\nbounds array must be one greater than the length of the color list. The\nbounds must be monotonically increasing.\n\nThis time we pass some more arguments in addition to previous arguments to\n:class:`~matplotlib.colorbar.ColorbarBase`. For the out-of-range values to\ndisplay on the colorbar, we have to use the *extend* keyword argument. To use\n*extend*, you must specify two extra boundaries. Finally spacing argument\nensures that intervals are shown on colorbar proportionally.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 1))\nfig.subplots_adjust(bottom=0.5)\n\ncmap = mpl.colors.ListedColormap(['red', 'green', 'blue', 'cyan'])\ncmap.set_over('0.25')\ncmap.set_under('0.75')\n\nbounds = [1, 2, 4, 7, 8]\nnorm = mpl.colors.BoundaryNorm(bounds, cmap.N)\ncb2 = mpl.colorbar.ColorbarBase(ax, cmap=cmap,\n norm=norm,\n boundaries=[0] + bounds + [13],\n extend='both',\n ticks=bounds,\n spacing='proportional',\n orientation='horizontal')\ncb2.set_label('Discrete intervals, some other units')\nfig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbar with custom extension lengths\n--------------------------------------\n\nHere we illustrate the use of custom length colorbar extensions, used on a\ncolorbar with discrete intervals. To make the length of each extension the\nsame as the length of the interior colors, use ``extendfrac='auto'``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 1))\nfig.subplots_adjust(bottom=0.5)\n\ncmap = mpl.colors.ListedColormap(['royalblue', 'cyan',\n 'yellow', 'orange'])\ncmap.set_over('red')\ncmap.set_under('blue')\n\nbounds = [-1.0, -0.5, 0.0, 0.5, 1.0]\nnorm = mpl.colors.BoundaryNorm(bounds, cmap.N)\ncb3 = mpl.colorbar.ColorbarBase(ax, cmap=cmap,\n norm=norm,\n boundaries=[-10] + bounds + [10],\n extend='both',\n extendfrac='auto',\n ticks=bounds,\n spacing='uniform',\n orientation='horizontal')\ncb3.set_label('Custom extension lengths, some other units')\nfig.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/19aaf9b443b03dd6c6b939544db62a66/voxels_rgb.ipynb b/_downloads/19aaf9b443b03dd6c6b939544db62a66/voxels_rgb.ipynb deleted file mode 120000 index 04cb2abdcd2..00000000000 --- a/_downloads/19aaf9b443b03dd6c6b939544db62a66/voxels_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/19aaf9b443b03dd6c6b939544db62a66/voxels_rgb.ipynb \ No newline at end of file diff --git a/_downloads/19ad54d9547d6bd55b24509f7f4d5675/voxels_rgb.py b/_downloads/19ad54d9547d6bd55b24509f7f4d5675/voxels_rgb.py deleted file mode 100644 index 5b1a87e9551..00000000000 --- a/_downloads/19ad54d9547d6bd55b24509f7f4d5675/voxels_rgb.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -========================================== -3D voxel / volumetric plot with rgb colors -========================================== - -Demonstrates using `Axes3D.voxels` to visualize parts of a color space. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def midpoints(x): - sl = () - for i in range(x.ndim): - x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0 - sl += np.index_exp[:] - return x - -# prepare some coordinates, and attach rgb values to each -r, g, b = np.indices((17, 17, 17)) / 16.0 -rc = midpoints(r) -gc = midpoints(g) -bc = midpoints(b) - -# define a sphere about [0.5, 0.5, 0.5] -sphere = (rc - 0.5)**2 + (gc - 0.5)**2 + (bc - 0.5)**2 < 0.5**2 - -# combine the color components -colors = np.zeros(sphere.shape + (3,)) -colors[..., 0] = rc -colors[..., 1] = gc -colors[..., 2] = bc - -# and plot everything -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(r, g, b, sphere, - facecolors=colors, - edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter - linewidth=0.5) -ax.set(xlabel='r', ylabel='g', zlabel='b') - -plt.show() diff --git a/_downloads/19ae60f6f63ae35c38a8b4e9ef9413c1/transparent_legends.ipynb b/_downloads/19ae60f6f63ae35c38a8b4e9ef9413c1/transparent_legends.ipynb deleted file mode 120000 index 3d32500cdde..00000000000 --- a/_downloads/19ae60f6f63ae35c38a8b4e9ef9413c1/transparent_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/19ae60f6f63ae35c38a8b4e9ef9413c1/transparent_legends.ipynb \ No newline at end of file diff --git a/_downloads/19b2c7e0b24a9fb80bbd31570587d589/invert_axes.py b/_downloads/19b2c7e0b24a9fb80bbd31570587d589/invert_axes.py deleted file mode 120000 index 9c9ee82389d..00000000000 --- a/_downloads/19b2c7e0b24a9fb80bbd31570587d589/invert_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/19b2c7e0b24a9fb80bbd31570587d589/invert_axes.py \ No newline at end of file diff --git a/_downloads/19b860517d7973c4584b95c0addcfa0e/tick-formatters.py b/_downloads/19b860517d7973c4584b95c0addcfa0e/tick-formatters.py deleted file mode 120000 index 0f4e1a5c521..00000000000 --- a/_downloads/19b860517d7973c4584b95c0addcfa0e/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/19b860517d7973c4584b95c0addcfa0e/tick-formatters.py \ No newline at end of file diff --git a/_downloads/19c88ffbdeb94bbb24b32bee0d119caa/svg_filter_pie.py b/_downloads/19c88ffbdeb94bbb24b32bee0d119caa/svg_filter_pie.py deleted file mode 100644 index bcc901028bd..00000000000 --- a/_downloads/19c88ffbdeb94bbb24b32bee0d119caa/svg_filter_pie.py +++ /dev/null @@ -1,95 +0,0 @@ -""" -============== -SVG Filter Pie -============== - -Demonstrate SVG filtering effects which might be used with mpl. -The pie chart drawing code is borrowed from pie_demo.py - -Note that the filtering effects are only effective if your svg renderer -support it. -""" - -import matplotlib.pyplot as plt -from matplotlib.patches import Shadow - -# make a square figure and axes -fig = plt.figure(figsize=(6, 6)) -ax = fig.add_axes([0.1, 0.1, 0.8, 0.8]) - -labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' -fracs = [15, 30, 45, 10] - -explode = (0, 0.05, 0, 0) - -# We want to draw the shadow for each pie but we will not use "shadow" -# option as it does'n save the references to the shadow patches. -pies = ax.pie(fracs, explode=explode, labels=labels, autopct='%1.1f%%') - -for w in pies[0]: - # set the id with the label. - w.set_gid(w.get_label()) - - # we don't want to draw the edge of the pie - w.set_edgecolor("none") - -for w in pies[0]: - # create shadow patch - s = Shadow(w, -0.01, -0.01) - s.set_gid(w.get_gid() + "_shadow") - s.set_zorder(w.get_zorder() - 0.1) - ax.add_patch(s) - - -# save -from io import BytesIO -f = BytesIO() -plt.savefig(f, format="svg") - -import xml.etree.cElementTree as ET - - -# filter definition for shadow using a gaussian blur -# and lightening effect. -# The lightening filter is copied from http://www.w3.org/TR/SVG/filters.html - -# I tested it with Inkscape and Firefox3. "Gaussian blur" is supported -# in both, but the lightening effect only in the Inkscape. Also note -# that, Inkscape's exporting also may not support it. - -filter_def = """ - - - - - - - - - - - - - - - -""" - - -tree, xmlid = ET.XMLID(f.getvalue()) - -# insert the filter definition in the svg dom tree. -tree.insert(0, ET.XML(filter_def)) - -for i, pie_name in enumerate(labels): - pie = xmlid[pie_name] - pie.set("filter", 'url(#MyFilter)') - - shadow = xmlid[pie_name + "_shadow"] - shadow.set("filter", 'url(#dropshadow)') - -fn = "svg_filter_pie.svg" -print("Saving '%s'" % fn) -ET.ElementTree(tree).write(fn) diff --git a/_downloads/19cc0f67bd4989e4f3b0805383f81a76/dolphin.ipynb b/_downloads/19cc0f67bd4989e4f3b0805383f81a76/dolphin.ipynb deleted file mode 120000 index 3d507b8f7bd..00000000000 --- a/_downloads/19cc0f67bd4989e4f3b0805383f81a76/dolphin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/19cc0f67bd4989e4f3b0805383f81a76/dolphin.ipynb \ No newline at end of file diff --git a/_downloads/19d24ef904a65f0110d6bc1fd84528e3/tricontour_smooth_delaunay.ipynb b/_downloads/19d24ef904a65f0110d6bc1fd84528e3/tricontour_smooth_delaunay.ipynb deleted file mode 100644 index b2cab67727f..00000000000 --- a/_downloads/19d24ef904a65f0110d6bc1fd84528e3/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tricontour Smooth Delaunay\n\n\nDemonstrates high-resolution tricontouring of a random set of points;\na `matplotlib.tri.TriAnalyzer` is used to improve the plot quality.\n\nThe initial data points and triangular grid for this demo are:\n\n- a set of random points is instantiated, inside [-1, 1] x [-1, 1] square\n- A Delaunay triangulation of these points is then computed, of which a\n random subset of triangles is masked out by the user (based on\n *init_mask_frac* parameter). This simulates invalidated data.\n\nThe proposed generic procedure to obtain a high resolution contouring of such\na data set is the following:\n\n1. Compute an extended mask with a `matplotlib.tri.TriAnalyzer`, which will\n exclude badly shaped (flat) triangles from the border of the\n triangulation. Apply the mask to the triangulation (using set_mask).\n2. Refine and interpolate the data using a\n `matplotlib.tri.UniformTriRefiner`.\n3. Plot the refined data with `~.axes.Axes.tricontour`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.tri import Triangulation, TriAnalyzer, UniformTriRefiner\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport numpy as np\n\n\n#-----------------------------------------------------------------------------\n# Analytical test function\n#-----------------------------------------------------------------------------\ndef experiment_res(x, y):\n \"\"\"An analytic function representing experiment results.\"\"\"\n x = 2 * x\n r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2)\n theta1 = np.arctan2(0.5 - x, 0.5 - y)\n r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2)\n theta2 = np.arctan2(-x - 0.2, -y - 0.2)\n z = (4 * (np.exp((r1/10)**2) - 1) * 30 * np.cos(3 * theta1) +\n (np.exp((r2/10)**2) - 1) * 30 * np.cos(5 * theta2) +\n 2 * (x**2 + y**2))\n return (np.max(z) - z) / (np.max(z) - np.min(z))\n\n#-----------------------------------------------------------------------------\n# Generating the initial data test points and triangulation for the demo\n#-----------------------------------------------------------------------------\n# User parameters for data test points\nn_test = 200 # Number of test data points, tested from 3 to 5000 for subdiv=3\n\nsubdiv = 3 # Number of recursive subdivisions of the initial mesh for smooth\n # plots. Values >3 might result in a very high number of triangles\n # for the refine mesh: new triangles numbering = (4**subdiv)*ntri\n\ninit_mask_frac = 0.0 # Float > 0. adjusting the proportion of\n # (invalid) initial triangles which will be masked\n # out. Enter 0 for no mask.\n\nmin_circle_ratio = .01 # Minimum circle ratio - border triangles with circle\n # ratio below this will be masked if they touch a\n # border. Suggested value 0.01; use -1 to keep\n # all triangles.\n\n# Random points\nrandom_gen = np.random.RandomState(seed=19680801)\nx_test = random_gen.uniform(-1., 1., size=n_test)\ny_test = random_gen.uniform(-1., 1., size=n_test)\nz_test = experiment_res(x_test, y_test)\n\n# meshing with Delaunay triangulation\ntri = Triangulation(x_test, y_test)\nntri = tri.triangles.shape[0]\n\n# Some invalid data are masked out\nmask_init = np.zeros(ntri, dtype=bool)\nmasked_tri = random_gen.randint(0, ntri, int(ntri * init_mask_frac))\nmask_init[masked_tri] = True\ntri.set_mask(mask_init)\n\n\n#-----------------------------------------------------------------------------\n# Improving the triangulation before high-res plots: removing flat triangles\n#-----------------------------------------------------------------------------\n# masking badly shaped triangles at the border of the triangular mesh.\nmask = TriAnalyzer(tri).get_flat_tri_mask(min_circle_ratio)\ntri.set_mask(mask)\n\n# refining the data\nrefiner = UniformTriRefiner(tri)\ntri_refi, z_test_refi = refiner.refine_field(z_test, subdiv=subdiv)\n\n# analytical 'results' for comparison\nz_expected = experiment_res(tri_refi.x, tri_refi.y)\n\n# for the demo: loading the 'flat' triangles for plot\nflat_tri = Triangulation(x_test, y_test)\nflat_tri.set_mask(~mask)\n\n\n#-----------------------------------------------------------------------------\n# Now the plots\n#-----------------------------------------------------------------------------\n# User options for plots\nplot_tri = True # plot of base triangulation\nplot_masked_tri = True # plot of excessively flat excluded triangles\nplot_refi_tri = False # plot of refined triangulation\nplot_expected = False # plot of analytical function values for comparison\n\n\n# Graphical options for tricontouring\nlevels = np.arange(0., 1., 0.025)\ncmap = cm.get_cmap(name='Blues', lut=None)\n\nfig, ax = plt.subplots()\nax.set_aspect('equal')\nax.set_title(\"Filtering a Delaunay mesh\\n\" +\n \"(application to high-resolution tricontouring)\")\n\n# 1) plot of the refined (computed) data contours:\nax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap,\n linewidths=[2.0, 0.5, 1.0, 0.5])\n# 2) plot of the expected (analytical) data contours (dashed):\nif plot_expected:\n ax.tricontour(tri_refi, z_expected, levels=levels, cmap=cmap,\n linestyles='--')\n# 3) plot of the fine mesh on which interpolation was done:\nif plot_refi_tri:\n ax.triplot(tri_refi, color='0.97')\n# 4) plot of the initial 'coarse' mesh:\nif plot_tri:\n ax.triplot(tri, color='0.7')\n# 4) plot of the unvalidated triangles from naive Delaunay Triangulation:\nif plot_masked_tri:\n ax.triplot(flat_tri, color='red')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.tri\nmatplotlib.tri.Triangulation\nmatplotlib.tri.TriAnalyzer\nmatplotlib.tri.UniformTriRefiner" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/19d48b83d3a0115709ebabb831965308/text_props.ipynb b/_downloads/19d48b83d3a0115709ebabb831965308/text_props.ipynb deleted file mode 120000 index c977e655cd5..00000000000 --- a/_downloads/19d48b83d3a0115709ebabb831965308/text_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/19d48b83d3a0115709ebabb831965308/text_props.ipynb \ No newline at end of file diff --git a/_downloads/19d7f018285e902b172ab2787d7eb1c7/usetex.ipynb b/_downloads/19d7f018285e902b172ab2787d7eb1c7/usetex.ipynb deleted file mode 120000 index bdbe1ccbf86..00000000000 --- a/_downloads/19d7f018285e902b172ab2787d7eb1c7/usetex.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/19d7f018285e902b172ab2787d7eb1c7/usetex.ipynb \ No newline at end of file diff --git a/_downloads/19dcf3e1a66f207041657dd1a6dc9e7e/errorbar_subsample.ipynb b/_downloads/19dcf3e1a66f207041657dd1a6dc9e7e/errorbar_subsample.ipynb deleted file mode 120000 index 6a361e00f03..00000000000 --- a/_downloads/19dcf3e1a66f207041657dd1a6dc9e7e/errorbar_subsample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/19dcf3e1a66f207041657dd1a6dc9e7e/errorbar_subsample.ipynb \ No newline at end of file diff --git a/_downloads/19e830e3793676dff715e60078f0dd91/bxp.py b/_downloads/19e830e3793676dff715e60078f0dd91/bxp.py deleted file mode 120000 index 804ba17ccc2..00000000000 --- a/_downloads/19e830e3793676dff715e60078f0dd91/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/19e830e3793676dff715e60078f0dd91/bxp.py \ No newline at end of file diff --git a/_downloads/19f7fc0e28f2aa4f61c3a75b77ce7a34/units_sample.py b/_downloads/19f7fc0e28f2aa4f61c3a75b77ce7a34/units_sample.py deleted file mode 100644 index 0b99e2609b7..00000000000 --- a/_downloads/19f7fc0e28f2aa4f61c3a75b77ce7a34/units_sample.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -====================== -Inches and Centimeters -====================== - -The example illustrates the ability to override default x and y units (ax1) to -inches and centimeters using the `xunits` and `yunits` parameters for the -`plot` function. Note that conversions are applied to get numbers to correct -units. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` - -""" -from basic_units import cm, inch -import matplotlib.pyplot as plt -import numpy as np - -cms = cm * np.arange(0, 10, 2) - -fig, axs = plt.subplots(2, 2) - -axs[0, 0].plot(cms, cms) - -axs[0, 1].plot(cms, cms, xunits=cm, yunits=inch) - -axs[1, 0].plot(cms, cms, xunits=inch, yunits=cm) -axs[1, 0].set_xlim(3, 6) # scalars are interpreted in current units - -axs[1, 1].plot(cms, cms, xunits=inch, yunits=inch) -axs[1, 1].set_xlim(3*cm, 6*cm) # cm are converted to inches - -plt.show() diff --git a/_downloads/19ff6e5fe2f98e1aa7137d0175555d26/bar_of_pie.py b/_downloads/19ff6e5fe2f98e1aa7137d0175555d26/bar_of_pie.py deleted file mode 100644 index 637092d1b8e..00000000000 --- a/_downloads/19ff6e5fe2f98e1aa7137d0175555d26/bar_of_pie.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -========== -Bar of pie -========== - -Make a "bar of pie" chart where the first slice of the pie is -"exploded" into a bar chart with a further breakdown of said slice's -characteristics. The example demonstrates using a figure with multiple -sets of axes and using the axes patches list to add two ConnectionPatches -to link the subplot charts. -""" - -import matplotlib.pyplot as plt -from matplotlib.patches import ConnectionPatch -import numpy as np - -# make figure and assign axis objects -fig = plt.figure(figsize=(9, 5.0625)) -ax1 = fig.add_subplot(121) -ax2 = fig.add_subplot(122) -fig.subplots_adjust(wspace=0) - -# pie chart parameters -ratios = [.27, .56, .17] -labels = ['Approve', 'Disapprove', 'Undecided'] -explode = [0.1, 0, 0] -# rotate so that first wedge is split by the x-axis -angle = -180 * ratios[0] -ax1.pie(ratios, autopct='%1.1f%%', startangle=angle, - labels=labels, explode=explode) - -# bar chart parameters - -xpos = 0 -bottom = 0 -ratios = [.33, .54, .07, .06] -width = .2 -colors = [[.1, .3, .5], [.1, .3, .3], [.1, .3, .7], [.1, .3, .9]] - -for j in range(len(ratios)): - height = ratios[j] - ax2.bar(xpos, height, width, bottom=bottom, color=colors[j]) - ypos = bottom + ax2.patches[j].get_height() / 2 - bottom += height - ax2.text(xpos, ypos, "%d%%" % (ax2.patches[j].get_height() * 100), - ha='center') - -ax2.set_title('Age of approvers') -ax2.legend(('50-65', 'Over 65', '35-49', 'Under 35')) -ax2.axis('off') -ax2.set_xlim(- 2.5 * width, 2.5 * width) - -# use ConnectionPatch to draw lines between the two plots -# get the wedge data -theta1, theta2 = ax1.patches[0].theta1, ax1.patches[0].theta2 -center, r = ax1.patches[0].center, ax1.patches[0].r -bar_height = sum([item.get_height() for item in ax2.patches]) - -# draw top connecting line -x = r * np.cos(np.pi / 180 * theta2) + center[0] -y = np.sin(np.pi / 180 * theta2) + center[1] -con = ConnectionPatch(xyA=(- width / 2, bar_height), xyB=(x, y), - coordsA="data", coordsB="data", axesA=ax2, axesB=ax1) -con.set_color([0, 0, 0]) -con.set_linewidth(4) -ax2.add_artist(con) - -# draw bottom connecting line -x = r * np.cos(np.pi / 180 * theta1) + center[0] -y = np.sin(np.pi / 180 * theta1) + center[1] -con = ConnectionPatch(xyA=(- width / 2, 0), xyB=(x, y), coordsA="data", - coordsB="data", axesA=ax2, axesB=ax1) -con.set_color([0, 0, 0]) -ax2.add_artist(con) -con.set_linewidth(4) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.axes.Axes.bar -matplotlib.pyplot -matplotlib.patches.ConnectionPatch diff --git a/_downloads/1a05c655645c4b40f3b30ea464c61386/mathtext_wx_sgskip.ipynb b/_downloads/1a05c655645c4b40f3b30ea464c61386/mathtext_wx_sgskip.ipynb deleted file mode 120000 index ca1d066c548..00000000000 --- a/_downloads/1a05c655645c4b40f3b30ea464c61386/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a05c655645c4b40f3b30ea464c61386/mathtext_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1a0fb5e3a6719a0c2995dd8996d7c8b6/axis_direction_demo_step03.py b/_downloads/1a0fb5e3a6719a0c2995dd8996d7c8b6/axis_direction_demo_step03.py deleted file mode 120000 index a05e063077a..00000000000 --- a/_downloads/1a0fb5e3a6719a0c2995dd8996d7c8b6/axis_direction_demo_step03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1a0fb5e3a6719a0c2995dd8996d7c8b6/axis_direction_demo_step03.py \ No newline at end of file diff --git a/_downloads/1a151c430251af93046af4ecc95339e6/subplot.ipynb b/_downloads/1a151c430251af93046af4ecc95339e6/subplot.ipynb deleted file mode 120000 index 62e20ac5b6d..00000000000 --- a/_downloads/1a151c430251af93046af4ecc95339e6/subplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a151c430251af93046af4ecc95339e6/subplot.ipynb \ No newline at end of file diff --git a/_downloads/1a184d5ad8d72d49cd2c9005517feac9/subplot.ipynb b/_downloads/1a184d5ad8d72d49cd2c9005517feac9/subplot.ipynb deleted file mode 120000 index 593b67e759d..00000000000 --- a/_downloads/1a184d5ad8d72d49cd2c9005517feac9/subplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1a184d5ad8d72d49cd2c9005517feac9/subplot.ipynb \ No newline at end of file diff --git a/_downloads/1a1f1e213d13461e78addff798b47eaf/date_index_formatter2.py b/_downloads/1a1f1e213d13461e78addff798b47eaf/date_index_formatter2.py deleted file mode 120000 index 1293c840dca..00000000000 --- a/_downloads/1a1f1e213d13461e78addff798b47eaf/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a1f1e213d13461e78addff798b47eaf/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/1a2e8c841bdf879e6ad0a1187c294c81/demo_tight_layout.ipynb b/_downloads/1a2e8c841bdf879e6ad0a1187c294c81/demo_tight_layout.ipynb deleted file mode 120000 index aec7caae007..00000000000 --- a/_downloads/1a2e8c841bdf879e6ad0a1187c294c81/demo_tight_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1a2e8c841bdf879e6ad0a1187c294c81/demo_tight_layout.ipynb \ No newline at end of file diff --git a/_downloads/1a346846cbc49c6eb3f93fe1870f8774/inset_locator_demo.py b/_downloads/1a346846cbc49c6eb3f93fe1870f8774/inset_locator_demo.py deleted file mode 120000 index c7935265973..00000000000 --- a/_downloads/1a346846cbc49c6eb3f93fe1870f8774/inset_locator_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a346846cbc49c6eb3f93fe1870f8774/inset_locator_demo.py \ No newline at end of file diff --git a/_downloads/1a35cc59e064642723e6f91d55c6f2d6/custom_projection.py b/_downloads/1a35cc59e064642723e6f91d55c6f2d6/custom_projection.py deleted file mode 120000 index 3cc57bcb288..00000000000 --- a/_downloads/1a35cc59e064642723e6f91d55c6f2d6/custom_projection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a35cc59e064642723e6f91d55c6f2d6/custom_projection.py \ No newline at end of file diff --git a/_downloads/1a3a6bbbfec10a4ea97646015daf71f4/hist.py b/_downloads/1a3a6bbbfec10a4ea97646015daf71f4/hist.py deleted file mode 120000 index c3e97cf2a5e..00000000000 --- a/_downloads/1a3a6bbbfec10a4ea97646015daf71f4/hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1a3a6bbbfec10a4ea97646015daf71f4/hist.py \ No newline at end of file diff --git a/_downloads/1a3ecfa262092eb5e8e991172b32d6db/animation_demo.ipynb b/_downloads/1a3ecfa262092eb5e8e991172b32d6db/animation_demo.ipynb deleted file mode 120000 index b929330d84c..00000000000 --- a/_downloads/1a3ecfa262092eb5e8e991172b32d6db/animation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1a3ecfa262092eb5e8e991172b32d6db/animation_demo.ipynb \ No newline at end of file diff --git a/_downloads/1a4c8dd65f4f8fc3e3102a74f1879356/histogram_cumulative.py b/_downloads/1a4c8dd65f4f8fc3e3102a74f1879356/histogram_cumulative.py deleted file mode 100644 index b027cb3066d..00000000000 --- a/_downloads/1a4c8dd65f4f8fc3e3102a74f1879356/histogram_cumulative.py +++ /dev/null @@ -1,72 +0,0 @@ -""" -================================================== -Using histograms to plot a cumulative distribution -================================================== - -This shows how to plot a cumulative, normalized histogram as a -step function in order to visualize the empirical cumulative -distribution function (CDF) of a sample. We also show the theoretical CDF. - -A couple of other options to the ``hist`` function are demonstrated. -Namely, we use the ``normed`` parameter to normalize the histogram and -a couple of different options to the ``cumulative`` parameter. -The ``normed`` parameter takes a boolean value. When ``True``, the bin -heights are scaled such that the total area of the histogram is 1. The -``cumulative`` kwarg is a little more nuanced. Like ``normed``, you -can pass it True or False, but you can also pass it -1 to reverse the -distribution. - -Since we're showing a normalized and cumulative histogram, these curves -are effectively the cumulative distribution functions (CDFs) of the -samples. In engineering, empirical CDFs are sometimes called -"non-exceedance" curves. In other words, you can look at the -y-value for a given-x-value to get the probability of and observation -from the sample not exceeding that x-value. For example, the value of -225 on the x-axis corresponds to about 0.85 on the y-axis, so there's an -85% chance that an observation in the sample does not exceed 225. -Conversely, setting, ``cumulative`` to -1 as is done in the -last series for this example, creates a "exceedance" curve. - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html - -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -mu = 200 -sigma = 25 -n_bins = 50 -x = np.random.normal(mu, sigma, size=100) - -fig, ax = plt.subplots(figsize=(8, 4)) - -# plot the cumulative histogram -n, bins, patches = ax.hist(x, n_bins, density=True, histtype='step', - cumulative=True, label='Empirical') - -# Add a line showing the expected distribution. -y = ((1 / (np.sqrt(2 * np.pi) * sigma)) * - np.exp(-0.5 * (1 / sigma * (bins - mu))**2)) -y = y.cumsum() -y /= y[-1] - -ax.plot(bins, y, 'k--', linewidth=1.5, label='Theoretical') - -# Overlay a reversed cumulative histogram. -ax.hist(x, bins=bins, density=True, histtype='step', cumulative=-1, - label='Reversed emp.') - -# tidy up the figure -ax.grid(True) -ax.legend(loc='right') -ax.set_title('Cumulative step histograms') -ax.set_xlabel('Annual rainfall (mm)') -ax.set_ylabel('Likelihood of occurrence') - -plt.show() diff --git a/_downloads/1a50fabb684f5a96755441461fad1d13/demo_anchored_direction_arrows.py b/_downloads/1a50fabb684f5a96755441461fad1d13/demo_anchored_direction_arrows.py deleted file mode 120000 index fea3b96c7dc..00000000000 --- a/_downloads/1a50fabb684f5a96755441461fad1d13/demo_anchored_direction_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a50fabb684f5a96755441461fad1d13/demo_anchored_direction_arrows.py \ No newline at end of file diff --git a/_downloads/1a58811c8b1c66f9df06320f8671e2c6/spectrum_demo.ipynb b/_downloads/1a58811c8b1c66f9df06320f8671e2c6/spectrum_demo.ipynb deleted file mode 120000 index aff383df718..00000000000 --- a/_downloads/1a58811c8b1c66f9df06320f8671e2c6/spectrum_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1a58811c8b1c66f9df06320f8671e2c6/spectrum_demo.ipynb \ No newline at end of file diff --git a/_downloads/1a5e7a88cbf5f99484e2d966debe57db/figure_title.py b/_downloads/1a5e7a88cbf5f99484e2d966debe57db/figure_title.py deleted file mode 120000 index 3105af3758f..00000000000 --- a/_downloads/1a5e7a88cbf5f99484e2d966debe57db/figure_title.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a5e7a88cbf5f99484e2d966debe57db/figure_title.py \ No newline at end of file diff --git a/_downloads/1a6cec4b272b8da39f7e4dc1506bfdc2/anscombe.py b/_downloads/1a6cec4b272b8da39f7e4dc1506bfdc2/anscombe.py deleted file mode 120000 index 5053fa4b925..00000000000 --- a/_downloads/1a6cec4b272b8da39f7e4dc1506bfdc2/anscombe.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a6cec4b272b8da39f7e4dc1506bfdc2/anscombe.py \ No newline at end of file diff --git a/_downloads/1a6fcaf8c00be8cc7e957bf4191f3fc2/pyplot_formatstr.ipynb b/_downloads/1a6fcaf8c00be8cc7e957bf4191f3fc2/pyplot_formatstr.ipynb deleted file mode 120000 index 3fea8e5b6a3..00000000000 --- a/_downloads/1a6fcaf8c00be8cc7e957bf4191f3fc2/pyplot_formatstr.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a6fcaf8c00be8cc7e957bf4191f3fc2/pyplot_formatstr.ipynb \ No newline at end of file diff --git a/_downloads/1a72f4e3a14b710472dec2d39cda4adf/2dcollections3d.ipynb b/_downloads/1a72f4e3a14b710472dec2d39cda4adf/2dcollections3d.ipynb deleted file mode 120000 index d83f20d5418..00000000000 --- a/_downloads/1a72f4e3a14b710472dec2d39cda4adf/2dcollections3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1a72f4e3a14b710472dec2d39cda4adf/2dcollections3d.ipynb \ No newline at end of file diff --git a/_downloads/1a7b163c926a9bcf8f7c06a9c1213de4/bachelors_degrees_by_gender.ipynb b/_downloads/1a7b163c926a9bcf8f7c06a9c1213de4/bachelors_degrees_by_gender.ipynb deleted file mode 120000 index ae9a9fa3a58..00000000000 --- a/_downloads/1a7b163c926a9bcf8f7c06a9c1213de4/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1a7b163c926a9bcf8f7c06a9c1213de4/bachelors_degrees_by_gender.ipynb \ No newline at end of file diff --git a/_downloads/1a807ceff14dcd2b7a2d0847560e2c80/wire3d_zero_stride.ipynb b/_downloads/1a807ceff14dcd2b7a2d0847560e2c80/wire3d_zero_stride.ipynb deleted file mode 120000 index e81bfaa6ff0..00000000000 --- a/_downloads/1a807ceff14dcd2b7a2d0847560e2c80/wire3d_zero_stride.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1a807ceff14dcd2b7a2d0847560e2c80/wire3d_zero_stride.ipynb \ No newline at end of file diff --git a/_downloads/1aa02651f430c6a5d204d2549949940a/hatch_demo.ipynb b/_downloads/1aa02651f430c6a5d204d2549949940a/hatch_demo.ipynb deleted file mode 120000 index 8da30aab2eb..00000000000 --- a/_downloads/1aa02651f430c6a5d204d2549949940a/hatch_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1aa02651f430c6a5d204d2549949940a/hatch_demo.ipynb \ No newline at end of file diff --git a/_downloads/1aa14c365a4f040c1264e24bfd2f7f89/ftface_props.py b/_downloads/1aa14c365a4f040c1264e24bfd2f7f89/ftface_props.py deleted file mode 120000 index e7867cb77e2..00000000000 --- a/_downloads/1aa14c365a4f040c1264e24bfd2f7f89/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1aa14c365a4f040c1264e24bfd2f7f89/ftface_props.py \ No newline at end of file diff --git a/_downloads/1aa86ccaf52f658f7e12f5f8c88aff5c/grayscale.ipynb b/_downloads/1aa86ccaf52f658f7e12f5f8c88aff5c/grayscale.ipynb deleted file mode 120000 index 59121f4775c..00000000000 --- a/_downloads/1aa86ccaf52f658f7e12f5f8c88aff5c/grayscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1aa86ccaf52f658f7e12f5f8c88aff5c/grayscale.ipynb \ No newline at end of file diff --git a/_downloads/1ac04648416e650cd8b0ffee51ba3f74/quadmesh_demo.py b/_downloads/1ac04648416e650cd8b0ffee51ba3f74/quadmesh_demo.py deleted file mode 100644 index 5488ddd8363..00000000000 --- a/_downloads/1ac04648416e650cd8b0ffee51ba3f74/quadmesh_demo.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -============= -QuadMesh Demo -============= - -`~.axes.Axes.pcolormesh` uses a `~matplotlib.collections.QuadMesh`, -a faster generalization of `~.axes.Axes.pcolor`, but with some restrictions. - -This demo illustrates a bug in quadmesh with masked data. -""" - -import copy - -from matplotlib import cm, pyplot as plt -import numpy as np - -n = 12 -x = np.linspace(-1.5, 1.5, n) -y = np.linspace(-1.5, 1.5, n * 2) -X, Y = np.meshgrid(x, y) -Qx = np.cos(Y) - np.cos(X) -Qz = np.sin(Y) + np.sin(X) -Z = np.sqrt(X**2 + Y**2) / 5 -Z = (Z - Z.min()) / (Z.max() - Z.min()) - -# The color array can include masked values. -Zm = np.ma.masked_where(np.abs(Qz) < 0.5 * np.max(Qz), Z) - -fig, axs = plt.subplots(nrows=1, ncols=3) -axs[0].pcolormesh(Qx, Qz, Z, shading='gouraud') -axs[0].set_title('Without masked values') - -# You can control the color of the masked region. We copy the default colormap -# before modifying it. -cmap = copy.copy(cm.get_cmap(plt.rcParams['image.cmap'])) -cmap.set_bad('y', 1.0) -axs[1].pcolormesh(Qx, Qz, Zm, shading='gouraud', cmap=cmap) -axs[1].set_title('With masked values') - -# Or use the default, which is transparent. -axs[2].pcolormesh(Qx, Qz, Zm, shading='gouraud') -axs[2].set_title('With masked values') - -fig.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.pcolormesh -matplotlib.pyplot.pcolormesh diff --git a/_downloads/1acc97abfafc1409c119045ca8390226/multiprocess_sgskip.py b/_downloads/1acc97abfafc1409c119045ca8390226/multiprocess_sgskip.py deleted file mode 120000 index 47b7e170c7f..00000000000 --- a/_downloads/1acc97abfafc1409c119045ca8390226/multiprocess_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1acc97abfafc1409c119045ca8390226/multiprocess_sgskip.py \ No newline at end of file diff --git a/_downloads/1ad07b03e8a8c30531172c7214a69e73/pie_demo2.py b/_downloads/1ad07b03e8a8c30531172c7214a69e73/pie_demo2.py deleted file mode 100644 index fc173eda78e..00000000000 --- a/_downloads/1ad07b03e8a8c30531172c7214a69e73/pie_demo2.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -========= -Pie Demo2 -========= - -Make a pie charts using :meth:`~.axes.Axes.pie`. - -This example demonstrates some pie chart features like labels, varying size, -autolabeling the percentage, offsetting a slice and adding a shadow. -""" - -import matplotlib.pyplot as plt - -# Some data -labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' -fracs = [15, 30, 45, 10] - -# Make figure and axes -fig, axs = plt.subplots(2, 2) - -# A standard pie plot -axs[0, 0].pie(fracs, labels=labels, autopct='%1.1f%%', shadow=True) - -# Shift the second slice using explode -axs[0, 1].pie(fracs, labels=labels, autopct='%.0f%%', shadow=True, - explode=(0, 0.1, 0, 0)) - -# Adapt radius and text size for a smaller pie -patches, texts, autotexts = axs[1, 0].pie(fracs, labels=labels, - autopct='%.0f%%', - textprops={'size': 'smaller'}, - shadow=True, radius=0.5) -# Make percent texts even smaller -plt.setp(autotexts, size='x-small') -autotexts[0].set_color('white') - -# Use a smaller explode and turn of the shadow for better visibility -patches, texts, autotexts = axs[1, 1].pie(fracs, labels=labels, - autopct='%.0f%%', - textprops={'size': 'smaller'}, - shadow=False, radius=0.5, - explode=(0, 0.05, 0, 0)) -plt.setp(autotexts, size='x-small') -autotexts[0].set_color('white') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie diff --git a/_downloads/1ae3a5bf2634cfb4bfd9b36b9d014c27/barh.py b/_downloads/1ae3a5bf2634cfb4bfd9b36b9d014c27/barh.py deleted file mode 120000 index 254c957b74f..00000000000 --- a/_downloads/1ae3a5bf2634cfb4bfd9b36b9d014c27/barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1ae3a5bf2634cfb4bfd9b36b9d014c27/barh.py \ No newline at end of file diff --git a/_downloads/1aeaec5fd3e165927d50f48c9335ceaa/contourf3d.py b/_downloads/1aeaec5fd3e165927d50f48c9335ceaa/contourf3d.py deleted file mode 100644 index 200cbef792e..00000000000 --- a/_downloads/1aeaec5fd3e165927d50f48c9335ceaa/contourf3d.py +++ /dev/null @@ -1,25 +0,0 @@ -''' -=============== -Filled contours -=============== - -contourf differs from contour in that it creates filled contours, ie. -a discrete number of colours are used to shade the domain. - -This is like a contourf plot in 2D except that the shaded region corresponding -to the level c is graphed on the plane z=c. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -cset = ax.contourf(X, Y, Z, cmap=cm.coolwarm) - -ax.clabel(cset, fontsize=9, inline=1) - -plt.show() diff --git a/_downloads/1afdaca89fa1bf1c6e66183221e3f20b/contour_demo.ipynb b/_downloads/1afdaca89fa1bf1c6e66183221e3f20b/contour_demo.ipynb deleted file mode 120000 index 3252859c9d3..00000000000 --- a/_downloads/1afdaca89fa1bf1c6e66183221e3f20b/contour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1afdaca89fa1bf1c6e66183221e3f20b/contour_demo.ipynb \ No newline at end of file diff --git a/_downloads/1b008ede06e339e417ae294f99d2197f/annotation_basic.py b/_downloads/1b008ede06e339e417ae294f99d2197f/annotation_basic.py deleted file mode 100644 index 1b2e6ec1a09..00000000000 --- a/_downloads/1b008ede06e339e417ae294f99d2197f/annotation_basic.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -================= -Annotating a plot -================= - -This example shows how to annotate a plot with an arrow pointing to provided -coordinates. We modify the defaults of the arrow, to "shrink" it. - -For a complete overview of the annotation capabilities, also see the -:doc:`annotation tutorial`. -""" -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) -line, = ax.plot(t, s, lw=2) - -ax.annotate('local max', xy=(2, 1), xytext=(3, 1.5), - arrowprops=dict(facecolor='black', shrink=0.05), - ) -ax.set_ylim(-2, 2) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/1b058279bc4859b6812682b739436372/hatch_demo.py b/_downloads/1b058279bc4859b6812682b739436372/hatch_demo.py deleted file mode 120000 index aacd70ae870..00000000000 --- a/_downloads/1b058279bc4859b6812682b739436372/hatch_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1b058279bc4859b6812682b739436372/hatch_demo.py \ No newline at end of file diff --git a/_downloads/1b073a3f2fab4eae80964340b65629bc/imshow_extent.py b/_downloads/1b073a3f2fab4eae80964340b65629bc/imshow_extent.py deleted file mode 100644 index 7b52afdcd0f..00000000000 --- a/_downloads/1b073a3f2fab4eae80964340b65629bc/imshow_extent.py +++ /dev/null @@ -1,265 +0,0 @@ -""" -*origin* and *extent* in `~.Axes.imshow` -======================================== - -:meth:`~.Axes.imshow` allows you to render an image (either a 2D array -which will be color-mapped (based on *norm* and *cmap*) or and 3D RGB(A) -array which will be used as-is) to a rectangular region in dataspace. -The orientation of the image in the final rendering is controlled by -the *origin* and *extent* kwargs (and attributes on the resulting -`~.AxesImage` instance) and the data limits of the axes. - -The *extent* kwarg controls the bounding box in data coordinates that -the image will fill specified as ``(left, right, bottom, top)`` in -**data coordinates**, the *origin* kwarg controls how the image fills -that bounding box, and the orientation in the final rendered image is -also affected by the axes limits. - -.. hint:: Most of the code below is used for adding labels and informative - text to the plots. The described effects of *origin* and *extent* can be - seen in the plots without the need to follow all code details. - - For a quick understanding, you may want to skip the code details below and - directly continue with the discussion of the results. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.gridspec import GridSpec - - -def index_to_coordinate(index, extent, origin): - """Return the pixel center of an index.""" - left, right, bottom, top = extent - - hshift = 0.5 * np.sign(right - left) - left, right = left + hshift, right - hshift - vshift = 0.5 * np.sign(top - bottom) - bottom, top = bottom + vshift, top - vshift - - if origin == 'upper': - bottom, top = top, bottom - - return { - "[0, 0]": (left, bottom), - "[M', 0]": (left, top), - "[0, N']": (right, bottom), - "[M', N']": (right, top), - }[index] - - -def get_index_label_pos(index, extent, origin, inverted_xindex): - """ - Return the desired position and horizontal alignment of an index label. - """ - if extent is None: - extent = lookup_extent(origin) - left, right, bottom, top = extent - x, y = index_to_coordinate(index, extent, origin) - - is_x0 = index[-2:] == "0]" - halign = 'left' if is_x0 ^ inverted_xindex else 'right' - hshift = 0.5 * np.sign(left - right) - x += hshift * (1 if is_x0 else -1) - return x, y, halign - - -def get_color(index, data, cmap): - """Return the data color of an index.""" - val = { - "[0, 0]": data[0, 0], - "[0, N']": data[0, -1], - "[M', 0]": data[-1, 0], - "[M', N']": data[-1, -1], - }[index] - return cmap(val / data.max()) - - -def lookup_extent(origin): - """Return extent for label positioning when not given explicitly.""" - if origin == 'lower': - return (-0.5, 6.5, -0.5, 5.5) - else: - return (-0.5, 6.5, 5.5, -0.5) - - -def set_extent_None_text(ax): - ax.text(3, 2.5, 'equals\nextent=None', size='large', - ha='center', va='center', color='w') - - -def plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim): - """Actually run ``imshow()`` and add extent and index labels.""" - im = ax.imshow(data, origin=origin, extent=extent) - - # extent labels (left, right, bottom, top) - left, right, bottom, top = im.get_extent() - if xlim is None or top > bottom: - upper_string, lower_string = 'top', 'bottom' - else: - upper_string, lower_string = 'bottom', 'top' - if ylim is None or left < right: - port_string, starboard_string = 'left', 'right' - inverted_xindex = False - else: - port_string, starboard_string = 'right', 'left' - inverted_xindex = True - bbox_kwargs = {'fc': 'w', 'alpha': .75, 'boxstyle': "round4"} - ann_kwargs = {'xycoords': 'axes fraction', - 'textcoords': 'offset points', - 'bbox': bbox_kwargs} - ax.annotate(upper_string, xy=(.5, 1), xytext=(0, -1), - ha='center', va='top', **ann_kwargs) - ax.annotate(lower_string, xy=(.5, 0), xytext=(0, 1), - ha='center', va='bottom', **ann_kwargs) - ax.annotate(port_string, xy=(0, .5), xytext=(1, 0), - ha='left', va='center', rotation=90, - **ann_kwargs) - ax.annotate(starboard_string, xy=(1, .5), xytext=(-1, 0), - ha='right', va='center', rotation=-90, - **ann_kwargs) - ax.set_title('origin: {origin}'.format(origin=origin)) - - # index labels - for index in ["[0, 0]", "[0, N']", "[M', 0]", "[M', N']"]: - tx, ty, halign = get_index_label_pos(index, extent, origin, - inverted_xindex) - facecolor = get_color(index, data, im.get_cmap()) - ax.text(tx, ty, index, color='white', ha=halign, va='center', - bbox={'boxstyle': 'square', 'facecolor': facecolor}) - if xlim: - ax.set_xlim(*xlim) - if ylim: - ax.set_ylim(*ylim) - - -def generate_imshow_demo_grid(extents, xlim=None, ylim=None): - N = len(extents) - fig = plt.figure(tight_layout=True) - fig.set_size_inches(6, N * (11.25) / 5) - gs = GridSpec(N, 5, figure=fig) - - columns = {'label': [fig.add_subplot(gs[j, 0]) for j in range(N)], - 'upper': [fig.add_subplot(gs[j, 1:3]) for j in range(N)], - 'lower': [fig.add_subplot(gs[j, 3:5]) for j in range(N)]} - x, y = np.ogrid[0:6, 0:7] - data = x + y - - for origin in ['upper', 'lower']: - for ax, extent in zip(columns[origin], extents): - plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim) - - for ax, extent in zip(columns['label'], extents): - text_kwargs = {'ha': 'right', - 'va': 'center', - 'xycoords': 'axes fraction', - 'xy': (1, .5)} - if extent is None: - ax.annotate('None', **text_kwargs) - ax.set_title('extent=') - else: - left, right, bottom, top = extent - text = ('left: {left:0.1f}\nright: {right:0.1f}\n' + - 'bottom: {bottom:0.1f}\ntop: {top:0.1f}\n').format( - left=left, right=right, bottom=bottom, top=top) - - ax.annotate(text, **text_kwargs) - ax.axis('off') - return columns - - -############################################################################### -# -# Default extent -# -------------- -# -# First, let's have a look at the default `extent=None` - -generate_imshow_demo_grid(extents=[None]) - -############################################################################### -# -# Generally, for an array of shape (M, N), the first index runs along the -# vertical, the second index runs along the horizontal. -# The pixel centers are at integer positions ranging from 0 to ``N' = N - 1`` -# horizontally and from 0 to ``M' = M - 1`` vertically. -# *origin* determines how to the data is filled in the bounding box. -# -# For ``origin='lower'``: -# -# - [0, 0] is at (left, bottom) -# - [M', 0] is at (left, top) -# - [0, N'] is at (right, bottom) -# - [M', N'] is at (right, top) -# -# ``origin='upper'`` reverses the vertical axes direction and filling: -# -# - [0, 0] is at (left, top) -# - [M', 0] is at (left, bottom) -# - [0, N'] is at (right, top) -# - [M', N'] is at (right, bottom) -# -# In summary, the position of the [0, 0] index as well as the extent are -# influenced by *origin*: -# -# ====== =============== ========================================== -# origin [0, 0] position extent -# ====== =============== ========================================== -# upper top left ``(-0.5, numcols-0.5, numrows-0.5, -0.5)`` -# lower bottom left ``(-0.5, numcols-0.5, -0.5, numrows-0.5)`` -# ====== =============== ========================================== -# -# The default value of *origin* is set by :rc:`image.origin` which defaults -# to ``'upper'`` to match the matrix indexing conventions in math and -# computer graphics image indexing conventions. -# -# -# Explicit extent -# --------------- -# -# By setting *extent* we define the coordinates of the image area. The -# underlying image data is interpolated/resampled to fill that area. -# -# If the axes is set to autoscale, then the view limits of the axes are set -# to match the *extent* which ensures that the coordinate set by -# ``(left, bottom)`` is at the bottom left of the axes! However, this -# may invert the axis so they do not increase in the 'natural' direction. -# - -extents = [(-0.5, 6.5, -0.5, 5.5), - (-0.5, 6.5, 5.5, -0.5), - (6.5, -0.5, -0.5, 5.5), - (6.5, -0.5, 5.5, -0.5)] - -columns = generate_imshow_demo_grid(extents) -set_extent_None_text(columns['upper'][1]) -set_extent_None_text(columns['lower'][0]) - - -############################################################################### -# -# Explicit extent and axes limits -# ------------------------------- -# -# If we fix the axes limits by explicitly setting `set_xlim` / `set_ylim`, we -# force a certain size and orientation of the axes. -# This can decouple the 'left-right' and 'top-bottom' sense of the image from -# the orientation on the screen. -# -# In the example below we have chosen the limits slightly larger than the -# extent (note the white areas within the Axes). -# -# While we keep the extents as in the examples before, the coordinate (0, 0) -# is now explicitly put at the bottom left and values increase to up and to -# the right (from the viewer point of view). -# We can see that: -# -# - The coordinate ``(left, bottom)`` anchors the image which then fills the -# box going towards the ``(right, top)`` point in data space. -# - The first column is always closest to the 'left'. -# - *origin* controls if the first row is closest to 'top' or 'bottom'. -# - The image may be inverted along either direction. -# - The 'left-right' and 'top-bottom' sense of the image may be uncoupled from -# the orientation on the screen. - -generate_imshow_demo_grid(extents=[None] + extents, - xlim=(-2, 8), ylim=(-1, 6)) diff --git a/_downloads/1b2f66ebb66b7fd10b897ef40b4e5b1c/transoffset.ipynb b/_downloads/1b2f66ebb66b7fd10b897ef40b4e5b1c/transoffset.ipynb deleted file mode 120000 index 5d5a2551300..00000000000 --- a/_downloads/1b2f66ebb66b7fd10b897ef40b4e5b1c/transoffset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1b2f66ebb66b7fd10b897ef40b4e5b1c/transoffset.ipynb \ No newline at end of file diff --git a/_downloads/1b4079171399aa5daa0d9fad1648994b/triplot_demo.py b/_downloads/1b4079171399aa5daa0d9fad1648994b/triplot_demo.py deleted file mode 120000 index 5ad75f5a6fd..00000000000 --- a/_downloads/1b4079171399aa5daa0d9fad1648994b/triplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1b4079171399aa5daa0d9fad1648994b/triplot_demo.py \ No newline at end of file diff --git a/_downloads/1b52704ef539bc7f184618e48051f167/spines_dropped.ipynb b/_downloads/1b52704ef539bc7f184618e48051f167/spines_dropped.ipynb deleted file mode 120000 index a2d1e3e455d..00000000000 --- a/_downloads/1b52704ef539bc7f184618e48051f167/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1b52704ef539bc7f184618e48051f167/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/1b54577ef8ad2ce4cb35399a693647bc/subplot_toolbar.py b/_downloads/1b54577ef8ad2ce4cb35399a693647bc/subplot_toolbar.py deleted file mode 100644 index bd190c05a9b..00000000000 --- a/_downloads/1b54577ef8ad2ce4cb35399a693647bc/subplot_toolbar.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -=============== -Subplot Toolbar -=============== - -Matplotlib has a toolbar available for adjusting subplot spacing. -""" -import matplotlib.pyplot as plt -import numpy as np - -fig, axs = plt.subplots(2, 2) - -axs[0, 0].imshow(np.random.random((100, 100))) - -axs[0, 1].imshow(np.random.random((100, 100))) - -axs[1, 0].imshow(np.random.random((100, 100))) - -axs[1, 1].imshow(np.random.random((100, 100))) - -plt.subplot_tool() -plt.show() diff --git a/_downloads/1b5e0e1e516a3f09169be3be4eb1eaaa/color_cycler.py b/_downloads/1b5e0e1e516a3f09169be3be4eb1eaaa/color_cycler.py deleted file mode 120000 index d95a858d95b..00000000000 --- a/_downloads/1b5e0e1e516a3f09169be3be4eb1eaaa/color_cycler.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/1b5e0e1e516a3f09169be3be4eb1eaaa/color_cycler.py \ No newline at end of file diff --git a/_downloads/1b6163e26a8d177f2315e08e4d5175cc/polys3d.py b/_downloads/1b6163e26a8d177f2315e08e4d5175cc/polys3d.py deleted file mode 120000 index c343de172b3..00000000000 --- a/_downloads/1b6163e26a8d177f2315e08e4d5175cc/polys3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1b6163e26a8d177f2315e08e4d5175cc/polys3d.py \ No newline at end of file diff --git a/_downloads/1b757a996eba3aeb7d6c5e8e472fee59/arrow_guide.py b/_downloads/1b757a996eba3aeb7d6c5e8e472fee59/arrow_guide.py deleted file mode 120000 index a94ee61b725..00000000000 --- a/_downloads/1b757a996eba3aeb7d6c5e8e472fee59/arrow_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1b757a996eba3aeb7d6c5e8e472fee59/arrow_guide.py \ No newline at end of file diff --git a/_downloads/1b781b2fb7fa851d95907bb176d2e65f/mathtext_asarray.ipynb b/_downloads/1b781b2fb7fa851d95907bb176d2e65f/mathtext_asarray.ipynb deleted file mode 120000 index 3feb90f965c..00000000000 --- a/_downloads/1b781b2fb7fa851d95907bb176d2e65f/mathtext_asarray.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1b781b2fb7fa851d95907bb176d2e65f/mathtext_asarray.ipynb \ No newline at end of file diff --git a/_downloads/1b7a83577fbe998fc2f1a84e50c81939/interpolation_methods.py b/_downloads/1b7a83577fbe998fc2f1a84e50c81939/interpolation_methods.py deleted file mode 120000 index af741705bdf..00000000000 --- a/_downloads/1b7a83577fbe998fc2f1a84e50c81939/interpolation_methods.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1b7a83577fbe998fc2f1a84e50c81939/interpolation_methods.py \ No newline at end of file diff --git a/_downloads/1b7ae16e27238ad5d3bce3573455934f/nested_pie.py b/_downloads/1b7ae16e27238ad5d3bce3573455934f/nested_pie.py deleted file mode 120000 index 709800b4ae4..00000000000 --- a/_downloads/1b7ae16e27238ad5d3bce3573455934f/nested_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1b7ae16e27238ad5d3bce3573455934f/nested_pie.py \ No newline at end of file diff --git a/_downloads/1b8796e4bd0df510aac4aa97ba94eac3/simple_rgb.ipynb b/_downloads/1b8796e4bd0df510aac4aa97ba94eac3/simple_rgb.ipynb deleted file mode 120000 index d2d598332f7..00000000000 --- a/_downloads/1b8796e4bd0df510aac4aa97ba94eac3/simple_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1b8796e4bd0df510aac4aa97ba94eac3/simple_rgb.ipynb \ No newline at end of file diff --git a/_downloads/1b880f5940018e052fa3bfb6dd2a3dc2/random_walk.py b/_downloads/1b880f5940018e052fa3bfb6dd2a3dc2/random_walk.py deleted file mode 120000 index f8ff2ac2e25..00000000000 --- a/_downloads/1b880f5940018e052fa3bfb6dd2a3dc2/random_walk.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1b880f5940018e052fa3bfb6dd2a3dc2/random_walk.py \ No newline at end of file diff --git a/_downloads/1b8e46b672976de0cdd156e8007bfe87/demo_colorbar_of_inset_axes.ipynb b/_downloads/1b8e46b672976de0cdd156e8007bfe87/demo_colorbar_of_inset_axes.ipynb deleted file mode 120000 index c3b3bfd7f17..00000000000 --- a/_downloads/1b8e46b672976de0cdd156e8007bfe87/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1b8e46b672976de0cdd156e8007bfe87/demo_colorbar_of_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/1b919f8be12434ed04d79545902790ac/connectionstyle_demo.ipynb b/_downloads/1b919f8be12434ed04d79545902790ac/connectionstyle_demo.ipynb deleted file mode 120000 index 44a5fa07d77..00000000000 --- a/_downloads/1b919f8be12434ed04d79545902790ac/connectionstyle_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1b919f8be12434ed04d79545902790ac/connectionstyle_demo.ipynb \ No newline at end of file diff --git a/_downloads/1b96a5ef3515f6834e910caa053279aa/trisurf3d.py b/_downloads/1b96a5ef3515f6834e910caa053279aa/trisurf3d.py deleted file mode 120000 index ec5ad6cc23e..00000000000 --- a/_downloads/1b96a5ef3515f6834e910caa053279aa/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1b96a5ef3515f6834e910caa053279aa/trisurf3d.py \ No newline at end of file diff --git a/_downloads/1ba08158d3c8eb5129e55948261a4e75/demo_text_rotation_mode.py b/_downloads/1ba08158d3c8eb5129e55948261a4e75/demo_text_rotation_mode.py deleted file mode 100644 index 2cb7fd66afd..00000000000 --- a/_downloads/1ba08158d3c8eb5129e55948261a4e75/demo_text_rotation_mode.py +++ /dev/null @@ -1,89 +0,0 @@ -r""" -======================= -Demo Text Rotation Mode -======================= - -This example illustrates the effect of ``rotation_mode`` on the positioning -of rotated text. - -Rotated `.Text`\s are created by passing the parameter ``rotation`` to -the constructor or the axes' method `~.axes.Axes.text`. - -The actual positioning depends on the additional parameters -``horizontalalignment``, ``verticalalignment`` and ``rotation_mode``. -``rotation_mode`` determines the order of rotation and alignment: - -- ``roation_mode='default'`` (or None) first rotates the text and then aligns - the bounding box of the rotated text. -- ``roation_mode='anchor'`` aligns the unrotated text and then rotates the - text around the point of alignment. - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_grid import ImageGrid - - -def test_rotation_mode(fig, mode, subplot_location): - ha_list = ["left", "center", "right"] - va_list = ["top", "center", "baseline", "bottom"] - grid = ImageGrid(fig, subplot_location, - nrows_ncols=(len(va_list), len(ha_list)), - share_all=True, aspect=True, cbar_mode=None) - - # labels and title - for ha, ax in zip(ha_list, grid.axes_row[-1]): - ax.axis["bottom"].label.set_text(ha) - for va, ax in zip(va_list, grid.axes_column[0]): - ax.axis["left"].label.set_text(va) - grid.axes_row[0][1].set_title(f"rotation_mode='{mode}'", size="large") - - if mode == "default": - kw = dict() - else: - kw = dict( - bbox=dict(boxstyle="square,pad=0.", ec="none", fc="C1", alpha=0.3)) - - # use a different text alignment in each axes - texts = [] - for (va, ha), ax in zip([(x, y) for x in va_list for y in ha_list], grid): - # prepare axes layout - for axis in ax.axis.values(): - axis.toggle(ticks=False, ticklabels=False) - ax.axvline(0.5, color="skyblue", zorder=0) - ax.axhline(0.5, color="skyblue", zorder=0) - ax.plot(0.5, 0.5, color="C0", marker="o", zorder=1) - - # add text with rotation and alignment settings - tx = ax.text(0.5, 0.5, "Tpg", - size="x-large", rotation=40, - horizontalalignment=ha, verticalalignment=va, - rotation_mode=mode, **kw) - texts.append(tx) - - if mode == "default": - # highlight bbox - fig.canvas.draw() - for ax, tx in zip(grid, texts): - bb = tx.get_window_extent().inverse_transformed(ax.transData) - rect = plt.Rectangle((bb.x0, bb.y0), bb.width, bb.height, - facecolor="C1", alpha=0.3, zorder=2) - ax.add_patch(rect) - - -fig = plt.figure(figsize=(8, 6)) -test_rotation_mode(fig, "default", 121) -test_rotation_mode(fig, "anchor", 122) -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following method is shown in this example: - -import matplotlib -matplotlib.axes.Axes.text diff --git a/_downloads/1ba0b1c458b5ef70a3cac30f1304621c/date_concise_formatter.py b/_downloads/1ba0b1c458b5ef70a3cac30f1304621c/date_concise_formatter.py deleted file mode 120000 index 3ca17deb31c..00000000000 --- a/_downloads/1ba0b1c458b5ef70a3cac30f1304621c/date_concise_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1ba0b1c458b5ef70a3cac30f1304621c/date_concise_formatter.py \ No newline at end of file diff --git a/_downloads/1ba17c44f68ce901a7fecb3c7a7148f4/stackplot_demo.ipynb b/_downloads/1ba17c44f68ce901a7fecb3c7a7148f4/stackplot_demo.ipynb deleted file mode 120000 index cdd41108a47..00000000000 --- a/_downloads/1ba17c44f68ce901a7fecb3c7a7148f4/stackplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1ba17c44f68ce901a7fecb3c7a7148f4/stackplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/1ba1b58922a6afe7883846cfd2bc2f62/errorbars_and_boxes.py b/_downloads/1ba1b58922a6afe7883846cfd2bc2f62/errorbars_and_boxes.py deleted file mode 100644 index 2f02643d195..00000000000 --- a/_downloads/1ba1b58922a6afe7883846cfd2bc2f62/errorbars_and_boxes.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -==================================================== -Creating boxes from error bars using PatchCollection -==================================================== - -In this example, we snazz up a pretty standard error bar plot by adding -a rectangle patch defined by the limits of the bars in both the x- and -y- directions. To do this, we have to write our own custom function -called ``make_error_boxes``. Close inspection of this function will -reveal the preferred pattern in writing functions for matplotlib: - - 1. an ``Axes`` object is passed directly to the function - 2. the function operates on the `Axes` methods directly, not through - the ``pyplot`` interface - 3. plotting kwargs that could be abbreviated are spelled out for - better code readability in the future (for example we use - ``facecolor`` instead of ``fc``) - 4. the artists returned by the ``Axes`` plotting methods are then - returned by the function so that, if desired, their styles - can be modified later outside of the function (they are not - modified in this example). -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.collections import PatchCollection -from matplotlib.patches import Rectangle - -# Number of data points -n = 5 - -# Dummy data -np.random.seed(19680801) -x = np.arange(0, n, 1) -y = np.random.rand(n) * 5. - -# Dummy errors (above and below) -xerr = np.random.rand(2, n) + 0.1 -yerr = np.random.rand(2, n) + 0.2 - - -def make_error_boxes(ax, xdata, ydata, xerror, yerror, facecolor='r', - edgecolor='None', alpha=0.5): - - # Create list for all the error patches - errorboxes = [] - - # Loop over data points; create box from errors at each point - for x, y, xe, ye in zip(xdata, ydata, xerror.T, yerror.T): - rect = Rectangle((x - xe[0], y - ye[0]), xe.sum(), ye.sum()) - errorboxes.append(rect) - - # Create patch collection with specified colour/alpha - pc = PatchCollection(errorboxes, facecolor=facecolor, alpha=alpha, - edgecolor=edgecolor) - - # Add collection to axes - ax.add_collection(pc) - - # Plot errorbars - artists = ax.errorbar(xdata, ydata, xerr=xerror, yerr=yerror, - fmt='None', ecolor='k') - - return artists - - -# Create figure and axes -fig, ax = plt.subplots(1) - -# Call function to create error boxes -_ = make_error_boxes(ax, x, y, xerr, yerr) - -plt.show() diff --git a/_downloads/1ba7f4b906559462a6a788c3aa66acf2/mandelbrot.ipynb b/_downloads/1ba7f4b906559462a6a788c3aa66acf2/mandelbrot.ipynb deleted file mode 120000 index 23e9f3f8464..00000000000 --- a/_downloads/1ba7f4b906559462a6a788c3aa66acf2/mandelbrot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1ba7f4b906559462a6a788c3aa66acf2/mandelbrot.ipynb \ No newline at end of file diff --git a/_downloads/1bae505d31403d2d5d1774ea0a5e9eb5/colormap_normalizations.ipynb b/_downloads/1bae505d31403d2d5d1774ea0a5e9eb5/colormap_normalizations.ipynb deleted file mode 120000 index 9bc682582e6..00000000000 --- a/_downloads/1bae505d31403d2d5d1774ea0a5e9eb5/colormap_normalizations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1bae505d31403d2d5d1774ea0a5e9eb5/colormap_normalizations.ipynb \ No newline at end of file diff --git a/_downloads/1bb6433211ea2331867620177466d4a9/colorbar_tick_labelling_demo.py b/_downloads/1bb6433211ea2331867620177466d4a9/colorbar_tick_labelling_demo.py deleted file mode 120000 index 6ff8d26a870..00000000000 --- a/_downloads/1bb6433211ea2331867620177466d4a9/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1bb6433211ea2331867620177466d4a9/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/1bc2615c14bc41266d643e50cee2e28f/animation_demo.ipynb b/_downloads/1bc2615c14bc41266d643e50cee2e28f/animation_demo.ipynb deleted file mode 120000 index 39164d0a3cc..00000000000 --- a/_downloads/1bc2615c14bc41266d643e50cee2e28f/animation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1bc2615c14bc41266d643e50cee2e28f/animation_demo.ipynb \ No newline at end of file diff --git a/_downloads/1bc3d007a9b6d094c84dd783c4a3ef05/animation_demo.ipynb b/_downloads/1bc3d007a9b6d094c84dd783c4a3ef05/animation_demo.ipynb deleted file mode 120000 index 4783d9f2d45..00000000000 --- a/_downloads/1bc3d007a9b6d094c84dd783c4a3ef05/animation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1bc3d007a9b6d094c84dd783c4a3ef05/animation_demo.ipynb \ No newline at end of file diff --git a/_downloads/1bc3e525eff5f851f0e8f9b3ddf8bbc7/wire3d.py b/_downloads/1bc3e525eff5f851f0e8f9b3ddf8bbc7/wire3d.py deleted file mode 120000 index 1180c1b903b..00000000000 --- a/_downloads/1bc3e525eff5f851f0e8f9b3ddf8bbc7/wire3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1bc3e525eff5f851f0e8f9b3ddf8bbc7/wire3d.py \ No newline at end of file diff --git a/_downloads/1bc7225a235c5024c78f3f97a179988f/multicolored_line.py b/_downloads/1bc7225a235c5024c78f3f97a179988f/multicolored_line.py deleted file mode 120000 index 1a5de6d0141..00000000000 --- a/_downloads/1bc7225a235c5024c78f3f97a179988f/multicolored_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1bc7225a235c5024c78f3f97a179988f/multicolored_line.py \ No newline at end of file diff --git a/_downloads/1bc85d47f3eb5c94245f86588b29de05/bar_stacked.ipynb b/_downloads/1bc85d47f3eb5c94245f86588b29de05/bar_stacked.ipynb deleted file mode 120000 index 32ec2524f56..00000000000 --- a/_downloads/1bc85d47f3eb5c94245f86588b29de05/bar_stacked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1bc85d47f3eb5c94245f86588b29de05/bar_stacked.ipynb \ No newline at end of file diff --git a/_downloads/1bca97e129935c44cf532195fbc1d401/fancytextbox_demo.py b/_downloads/1bca97e129935c44cf532195fbc1d401/fancytextbox_demo.py deleted file mode 120000 index 15f1423f428..00000000000 --- a/_downloads/1bca97e129935c44cf532195fbc1d401/fancytextbox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1bca97e129935c44cf532195fbc1d401/fancytextbox_demo.py \ No newline at end of file diff --git a/_downloads/1bd03907c45abbd94263d9dcd299bdb9/timers.ipynb b/_downloads/1bd03907c45abbd94263d9dcd299bdb9/timers.ipynb deleted file mode 120000 index d3450bf98f0..00000000000 --- a/_downloads/1bd03907c45abbd94263d9dcd299bdb9/timers.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1bd03907c45abbd94263d9dcd299bdb9/timers.ipynb \ No newline at end of file diff --git a/_downloads/1bd0558c32ff180e9d3c9c255273fc57/vline_hline_demo.ipynb b/_downloads/1bd0558c32ff180e9d3c9c255273fc57/vline_hline_demo.ipynb deleted file mode 120000 index 407cae43f81..00000000000 --- a/_downloads/1bd0558c32ff180e9d3c9c255273fc57/vline_hline_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1bd0558c32ff180e9d3c9c255273fc57/vline_hline_demo.ipynb \ No newline at end of file diff --git a/_downloads/1bd126271eb045090ef5987bfad790c4/plotfile_demo.py b/_downloads/1bd126271eb045090ef5987bfad790c4/plotfile_demo.py deleted file mode 120000 index e130576db03..00000000000 --- a/_downloads/1bd126271eb045090ef5987bfad790c4/plotfile_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1bd126271eb045090ef5987bfad790c4/plotfile_demo.py \ No newline at end of file diff --git a/_downloads/1bd44229487dba5976942a2732f0b8b9/coords_demo.ipynb b/_downloads/1bd44229487dba5976942a2732f0b8b9/coords_demo.ipynb deleted file mode 120000 index 0235ff9d85a..00000000000 --- a/_downloads/1bd44229487dba5976942a2732f0b8b9/coords_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1bd44229487dba5976942a2732f0b8b9/coords_demo.ipynb \ No newline at end of file diff --git a/_downloads/1bec763a967c83c09e1859b0bc11c70e/masked_demo.py b/_downloads/1bec763a967c83c09e1859b0bc11c70e/masked_demo.py deleted file mode 100644 index 66756847f6f..00000000000 --- a/_downloads/1bec763a967c83c09e1859b0bc11c70e/masked_demo.py +++ /dev/null @@ -1,30 +0,0 @@ -''' -=========== -Masked Demo -=========== - -Plot lines with points masked out. - -This would typically be used with gappy data, to -break the line at the data gaps. -''' - -import matplotlib.pyplot as plt -import numpy as np - -x = np.arange(0, 2*np.pi, 0.02) -y = np.sin(x) -y1 = np.sin(2*x) -y2 = np.sin(3*x) -ym1 = np.ma.masked_where(y1 > 0.5, y1) -ym2 = np.ma.masked_where(y2 < -0.5, y2) - -lines = plt.plot(x, y, x, ym1, x, ym2, 'o') -plt.setp(lines[0], linewidth=4) -plt.setp(lines[1], linewidth=2) -plt.setp(lines[2], markersize=10) - -plt.legend(('No mask', 'Masked if > 0.5', 'Masked if < -0.5'), - loc='upper right') -plt.title('Masked line demo') -plt.show() diff --git a/_downloads/1bee810be120c8f2d100d7ba02445535/pyplot_simple.py b/_downloads/1bee810be120c8f2d100d7ba02445535/pyplot_simple.py deleted file mode 120000 index f2127aa55a1..00000000000 --- a/_downloads/1bee810be120c8f2d100d7ba02445535/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1bee810be120c8f2d100d7ba02445535/pyplot_simple.py \ No newline at end of file diff --git a/_downloads/1bef3363d9965466c33965e25aa564df/fivethirtyeight.py b/_downloads/1bef3363d9965466c33965e25aa564df/fivethirtyeight.py deleted file mode 120000 index 14c1adfdbfd..00000000000 --- a/_downloads/1bef3363d9965466c33965e25aa564df/fivethirtyeight.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1bef3363d9965466c33965e25aa564df/fivethirtyeight.py \ No newline at end of file diff --git a/_downloads/1bfbe2233a5bc2a4d6d04dac9b87083a/figure_axes_enter_leave.ipynb b/_downloads/1bfbe2233a5bc2a4d6d04dac9b87083a/figure_axes_enter_leave.ipynb deleted file mode 120000 index ec61be2a874..00000000000 --- a/_downloads/1bfbe2233a5bc2a4d6d04dac9b87083a/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1bfbe2233a5bc2a4d6d04dac9b87083a/figure_axes_enter_leave.ipynb \ No newline at end of file diff --git a/_downloads/1c02700bb13e6571e774c10ba73db267/line_demo_dash_control.py b/_downloads/1c02700bb13e6571e774c10ba73db267/line_demo_dash_control.py deleted file mode 120000 index b3db96a02eb..00000000000 --- a/_downloads/1c02700bb13e6571e774c10ba73db267/line_demo_dash_control.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1c02700bb13e6571e774c10ba73db267/line_demo_dash_control.py \ No newline at end of file diff --git a/_downloads/1c095836e7214d564c189e626d29da55/autowrap.py b/_downloads/1c095836e7214d564c189e626d29da55/autowrap.py deleted file mode 120000 index ec2aadb68a7..00000000000 --- a/_downloads/1c095836e7214d564c189e626d29da55/autowrap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1c095836e7214d564c189e626d29da55/autowrap.py \ No newline at end of file diff --git a/_downloads/1c0b81da044457106a6f694d01b97cc2/basic_units.ipynb b/_downloads/1c0b81da044457106a6f694d01b97cc2/basic_units.ipynb deleted file mode 120000 index 43231d9aa4b..00000000000 --- a/_downloads/1c0b81da044457106a6f694d01b97cc2/basic_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1c0b81da044457106a6f694d01b97cc2/basic_units.ipynb \ No newline at end of file diff --git a/_downloads/1c0c4a9d4493e31b8d85dbd0561b101b/axes_grid.ipynb b/_downloads/1c0c4a9d4493e31b8d85dbd0561b101b/axes_grid.ipynb deleted file mode 120000 index c6ad1f5e833..00000000000 --- a/_downloads/1c0c4a9d4493e31b8d85dbd0561b101b/axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1c0c4a9d4493e31b8d85dbd0561b101b/axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/1c11b2ba22d72b7dc1792236f93f3362/bmh.ipynb b/_downloads/1c11b2ba22d72b7dc1792236f93f3362/bmh.ipynb deleted file mode 120000 index 9765dc650af..00000000000 --- a/_downloads/1c11b2ba22d72b7dc1792236f93f3362/bmh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1c11b2ba22d72b7dc1792236f93f3362/bmh.ipynb \ No newline at end of file diff --git a/_downloads/1c170bcd7e7a44c198b9edb2a3677e99/wire3d_zero_stride.ipynb b/_downloads/1c170bcd7e7a44c198b9edb2a3677e99/wire3d_zero_stride.ipynb deleted file mode 100644 index 0ceb68570dd..00000000000 --- a/_downloads/1c170bcd7e7a44c198b9edb2a3677e99/wire3d_zero_stride.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D wireframe plots in one direction\n\n\nDemonstrates that setting rstride or cstride to 0 causes wires to not be\ngenerated in the corresponding direction.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\n\n\nfig, [ax1, ax2] = plt.subplots(2, 1, figsize=(8, 12), subplot_kw={'projection': '3d'})\n\n# Get the test data\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Give the first plot only wireframes of the type y = c\nax1.plot_wireframe(X, Y, Z, rstride=10, cstride=0)\nax1.set_title(\"Column (x) stride set to 0\")\n\n# Give the second plot only wireframes of the type x = c\nax2.plot_wireframe(X, Y, Z, rstride=0, cstride=10)\nax2.set_title(\"Row (y) stride set to 0\")\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1c178669fa7845fc12cb2b519ae951fd/hist3d.py b/_downloads/1c178669fa7845fc12cb2b519ae951fd/hist3d.py deleted file mode 120000 index 5bb236cf146..00000000000 --- a/_downloads/1c178669fa7845fc12cb2b519ae951fd/hist3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1c178669fa7845fc12cb2b519ae951fd/hist3d.py \ No newline at end of file diff --git a/_downloads/1c1c7e1e67c978d1286cd15e8614386d/eventplot_demo.ipynb b/_downloads/1c1c7e1e67c978d1286cd15e8614386d/eventplot_demo.ipynb deleted file mode 120000 index 6e0494a8e1a..00000000000 --- a/_downloads/1c1c7e1e67c978d1286cd15e8614386d/eventplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1c1c7e1e67c978d1286cd15e8614386d/eventplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/1c26435b68c87f2ae037fb65bf791c13/rotate_axes3d_sgskip.ipynb b/_downloads/1c26435b68c87f2ae037fb65bf791c13/rotate_axes3d_sgskip.ipynb deleted file mode 120000 index 7cd1f5dfe0e..00000000000 --- a/_downloads/1c26435b68c87f2ae037fb65bf791c13/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1c26435b68c87f2ae037fb65bf791c13/rotate_axes3d_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1c31697528bdd19aee667f5ab1ddb14f/ganged_plots.py b/_downloads/1c31697528bdd19aee667f5ab1ddb14f/ganged_plots.py deleted file mode 120000 index 1e332c23824..00000000000 --- a/_downloads/1c31697528bdd19aee667f5ab1ddb14f/ganged_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1c31697528bdd19aee667f5ab1ddb14f/ganged_plots.py \ No newline at end of file diff --git a/_downloads/1c3a15312497397059636acbe868646d/demo_text_path.ipynb b/_downloads/1c3a15312497397059636acbe868646d/demo_text_path.ipynb deleted file mode 120000 index a8eec3be7dd..00000000000 --- a/_downloads/1c3a15312497397059636acbe868646d/demo_text_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1c3a15312497397059636acbe868646d/demo_text_path.ipynb \ No newline at end of file diff --git a/_downloads/1c43cf6d47ffc58578387658e4a321ac/mathtext_demo.ipynb b/_downloads/1c43cf6d47ffc58578387658e4a321ac/mathtext_demo.ipynb deleted file mode 120000 index a0f63189427..00000000000 --- a/_downloads/1c43cf6d47ffc58578387658e4a321ac/mathtext_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1c43cf6d47ffc58578387658e4a321ac/mathtext_demo.ipynb \ No newline at end of file diff --git a/_downloads/1c5200c0f941bb7df64b7649f5846f08/usage.ipynb b/_downloads/1c5200c0f941bb7df64b7649f5846f08/usage.ipynb deleted file mode 120000 index 5314f27cce2..00000000000 --- a/_downloads/1c5200c0f941bb7df64b7649f5846f08/usage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1c5200c0f941bb7df64b7649f5846f08/usage.ipynb \ No newline at end of file diff --git a/_downloads/1c6058a34ff6115eb1f817fc5a7cb806/annotate_simple03.py b/_downloads/1c6058a34ff6115eb1f817fc5a7cb806/annotate_simple03.py deleted file mode 120000 index bfb6383ecfb..00000000000 --- a/_downloads/1c6058a34ff6115eb1f817fc5a7cb806/annotate_simple03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1c6058a34ff6115eb1f817fc5a7cb806/annotate_simple03.py \ No newline at end of file diff --git a/_downloads/1c65b20cba3b1e61c5050dac2745529f/hist2d.py b/_downloads/1c65b20cba3b1e61c5050dac2745529f/hist2d.py deleted file mode 120000 index 3825d8305f5..00000000000 --- a/_downloads/1c65b20cba3b1e61c5050dac2745529f/hist2d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1c65b20cba3b1e61c5050dac2745529f/hist2d.py \ No newline at end of file diff --git a/_downloads/1c6b1fbe33b9aa34a09e5efacc9c6fcb/colormaps.py b/_downloads/1c6b1fbe33b9aa34a09e5efacc9c6fcb/colormaps.py deleted file mode 120000 index e486f8b548e..00000000000 --- a/_downloads/1c6b1fbe33b9aa34a09e5efacc9c6fcb/colormaps.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1c6b1fbe33b9aa34a09e5efacc9c6fcb/colormaps.py \ No newline at end of file diff --git a/_downloads/1c74043182aac4db3b40b7fcbcdb1ff6/stem_plot.ipynb b/_downloads/1c74043182aac4db3b40b7fcbcdb1ff6/stem_plot.ipynb deleted file mode 120000 index 40ca3555f9e..00000000000 --- a/_downloads/1c74043182aac4db3b40b7fcbcdb1ff6/stem_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1c74043182aac4db3b40b7fcbcdb1ff6/stem_plot.ipynb \ No newline at end of file diff --git a/_downloads/1c7e5c5509798bc12135057d04958b13/pyplot_scales.py b/_downloads/1c7e5c5509798bc12135057d04958b13/pyplot_scales.py deleted file mode 120000 index 03e6c06df28..00000000000 --- a/_downloads/1c7e5c5509798bc12135057d04958b13/pyplot_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1c7e5c5509798bc12135057d04958b13/pyplot_scales.py \ No newline at end of file diff --git a/_downloads/1c7e805ff1deb5f088502ef073d06a07/trisurf3d_2.py b/_downloads/1c7e805ff1deb5f088502ef073d06a07/trisurf3d_2.py deleted file mode 100644 index 35994b39b2a..00000000000 --- a/_downloads/1c7e805ff1deb5f088502ef073d06a07/trisurf3d_2.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -=========================== -More triangular 3D surfaces -=========================== - -Two additional examples of plotting surfaces with triangular mesh. - -The first demonstrates use of plot_trisurf's triangles argument, and the -second sets a Triangulation object's mask and passes the object directly -to plot_trisurf. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.tri as mtri - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -fig = plt.figure(figsize=plt.figaspect(0.5)) - -#============ -# First plot -#============ - -# Make a mesh in the space of parameterisation variables u and v -u = np.linspace(0, 2.0 * np.pi, endpoint=True, num=50) -v = np.linspace(-0.5, 0.5, endpoint=True, num=10) -u, v = np.meshgrid(u, v) -u, v = u.flatten(), v.flatten() - -# This is the Mobius mapping, taking a u, v pair and returning an x, y, z -# triple -x = (1 + 0.5 * v * np.cos(u / 2.0)) * np.cos(u) -y = (1 + 0.5 * v * np.cos(u / 2.0)) * np.sin(u) -z = 0.5 * v * np.sin(u / 2.0) - -# Triangulate parameter space to determine the triangles -tri = mtri.Triangulation(u, v) - -# Plot the surface. The triangles in parameter space determine which x, y, z -# points are connected by an edge. -ax = fig.add_subplot(1, 2, 1, projection='3d') -ax.plot_trisurf(x, y, z, triangles=tri.triangles, cmap=plt.cm.Spectral) -ax.set_zlim(-1, 1) - - -#============ -# Second plot -#============ - -# Make parameter spaces radii and angles. -n_angles = 36 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi/n_angles - -# Map radius, angle pairs to x, y, z points. -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -z = (np.cos(radii)*np.cos(3*angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = mtri.Triangulation(x, y) - -# Mask off unwanted triangles. -xmid = x[triang.triangles].mean(axis=1) -ymid = y[triang.triangles].mean(axis=1) -mask = xmid**2 + ymid**2 < min_radius**2 -triang.set_mask(mask) - -# Plot the surface. -ax = fig.add_subplot(1, 2, 2, projection='3d') -ax.plot_trisurf(triang, z, cmap=plt.cm.CMRmap) - - -plt.show() diff --git a/_downloads/1c8aa63823d71ae42077944aadaaf8a6/radio_buttons.py b/_downloads/1c8aa63823d71ae42077944aadaaf8a6/radio_buttons.py deleted file mode 120000 index de71a1f5717..00000000000 --- a/_downloads/1c8aa63823d71ae42077944aadaaf8a6/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1c8aa63823d71ae42077944aadaaf8a6/radio_buttons.py \ No newline at end of file diff --git a/_downloads/1c90e776d7b59df446c3848b11c0dc82/pyplot.py b/_downloads/1c90e776d7b59df446c3848b11c0dc82/pyplot.py deleted file mode 120000 index 1ffb53052df..00000000000 --- a/_downloads/1c90e776d7b59df446c3848b11c0dc82/pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1c90e776d7b59df446c3848b11c0dc82/pyplot.py \ No newline at end of file diff --git a/_downloads/1c98a8b6318d7aa1ac3ec3e693519e56/named_colors.ipynb b/_downloads/1c98a8b6318d7aa1ac3ec3e693519e56/named_colors.ipynb deleted file mode 100644 index 5c6132c4f9f..00000000000 --- a/_downloads/1c98a8b6318d7aa1ac3ec3e693519e56/named_colors.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# List of named colors\n\n\nThis plots a list of the named colors supported in matplotlib. Note that\n`xkcd colors ` are supported as well, but are not listed here\nfor brevity.\n\nFor more information on colors in matplotlib see\n\n* the :doc:`/tutorials/colors/colors` tutorial;\n* the `matplotlib.colors` API;\n* the :doc:`/gallery/color/color_demo`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.colors as mcolors\n\n\ndef plot_colortable(colors, title, sort_colors=True, emptycols=0):\n\n cell_width = 212\n cell_height = 22\n swatch_width = 48\n margin = 12\n topmargin = 40\n\n # Sort colors by hue, saturation, value and name.\n if sort_colors is True:\n by_hsv = sorted((tuple(mcolors.rgb_to_hsv(mcolors.to_rgb(color))),\n name)\n for name, color in colors.items())\n names = [name for hsv, name in by_hsv]\n else:\n names = list(colors)\n\n n = len(names)\n ncols = 4 - emptycols\n nrows = n // ncols + int(n % ncols > 0)\n\n width = cell_width * 4 + 2 * margin\n height = cell_height * nrows + margin + topmargin\n dpi = 72\n\n fig, ax = plt.subplots(figsize=(width / dpi, height / dpi), dpi=dpi)\n fig.subplots_adjust(margin/width, margin/height,\n (width-margin)/width, (height-topmargin)/height)\n ax.set_xlim(0, cell_width * 4)\n ax.set_ylim(cell_height * (nrows-0.5), -cell_height/2.)\n ax.yaxis.set_visible(False)\n ax.xaxis.set_visible(False)\n ax.set_axis_off()\n ax.set_title(title, fontsize=24, loc=\"left\", pad=10)\n\n for i, name in enumerate(names):\n row = i % nrows\n col = i // nrows\n y = row * cell_height\n\n swatch_start_x = cell_width * col\n swatch_end_x = cell_width * col + swatch_width\n text_pos_x = cell_width * col + swatch_width + 7\n\n ax.text(text_pos_x, y, name, fontsize=14,\n horizontalalignment='left',\n verticalalignment='center')\n\n ax.hlines(y, swatch_start_x, swatch_end_x,\n color=colors[name], linewidth=18)\n\n return fig\n\nplot_colortable(mcolors.BASE_COLORS, \"Base Colors\",\n sort_colors=False, emptycols=1)\nplot_colortable(mcolors.TABLEAU_COLORS, \"Tableau Palette\",\n sort_colors=False, emptycols=2)\n\n#sphinx_gallery_thumbnail_number = 3\nplot_colortable(mcolors.CSS4_COLORS, \"CSS Colors\")\n\n# Optionally plot the XKCD colors (Caution: will produce large figure)\n#xkcd_fig = plot_colortable(mcolors.XKCD_COLORS, \"XKCD Colors\")\n#xkcd_fig.savefig(\"XKCD_Colors.png\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.colors.rgb_to_hsv\nmatplotlib.colors.to_rgba\nmatplotlib.figure.Figure.get_size_inches\nmatplotlib.figure.Figure.subplots_adjust\nmatplotlib.axes.Axes.text\nmatplotlib.axes.Axes.hlines" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1c9b8f0c24dbbe9987210bc9f1d4e1ff/units_scatter.ipynb b/_downloads/1c9b8f0c24dbbe9987210bc9f1d4e1ff/units_scatter.ipynb deleted file mode 120000 index 452395bf7f1..00000000000 --- a/_downloads/1c9b8f0c24dbbe9987210bc9f1d4e1ff/units_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1c9b8f0c24dbbe9987210bc9f1d4e1ff/units_scatter.ipynb \ No newline at end of file diff --git a/_downloads/1caf2be3b1e4184fbb87a728012b627c/fig_axes_customize_simple.py b/_downloads/1caf2be3b1e4184fbb87a728012b627c/fig_axes_customize_simple.py deleted file mode 120000 index dc8f618a996..00000000000 --- a/_downloads/1caf2be3b1e4184fbb87a728012b627c/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1caf2be3b1e4184fbb87a728012b627c/fig_axes_customize_simple.py \ No newline at end of file diff --git a/_downloads/1cc5fb7f909aac16e93f47a2cea160fd/gridspec_multicolumn.ipynb b/_downloads/1cc5fb7f909aac16e93f47a2cea160fd/gridspec_multicolumn.ipynb deleted file mode 100644 index 22ba6c0d2a0..00000000000 --- a/_downloads/1cc5fb7f909aac16e93f47a2cea160fd/gridspec_multicolumn.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=======================================================\nUsing Gridspec to make multi-column/row subplot layouts\n=======================================================\n\n`.GridSpec` is a flexible way to layout\nsubplot grids. Here is an example with a 3x3 grid, and\naxes spanning all three columns, two columns, and two rows.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.gridspec import GridSpec\n\n\ndef format_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\nfig = plt.figure(constrained_layout=True)\n\ngs = GridSpec(3, 3, figure=fig)\nax1 = fig.add_subplot(gs[0, :])\n# identical to ax1 = plt.subplot(gs.new_subplotspec((0, 0), colspan=3))\nax2 = fig.add_subplot(gs[1, :-1])\nax3 = fig.add_subplot(gs[1:, -1])\nax4 = fig.add_subplot(gs[-1, 0])\nax5 = fig.add_subplot(gs[-1, -2])\n\nfig.suptitle(\"GridSpec\")\nformat_axes(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1cc86b473da6f11af5bdbe313230289a/text_commands.ipynb b/_downloads/1cc86b473da6f11af5bdbe313230289a/text_commands.ipynb deleted file mode 120000 index 1124cce5358..00000000000 --- a/_downloads/1cc86b473da6f11af5bdbe313230289a/text_commands.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1cc86b473da6f11af5bdbe313230289a/text_commands.ipynb \ No newline at end of file diff --git a/_downloads/1cc8bb64b1096fb1e3ec808440820f7b/line_demo_dash_control.py b/_downloads/1cc8bb64b1096fb1e3ec808440820f7b/line_demo_dash_control.py deleted file mode 120000 index 5cfd19f7d12..00000000000 --- a/_downloads/1cc8bb64b1096fb1e3ec808440820f7b/line_demo_dash_control.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1cc8bb64b1096fb1e3ec808440820f7b/line_demo_dash_control.py \ No newline at end of file diff --git a/_downloads/1cca3eedfb7940413267d0c7ae15d169/categorical_variables.py b/_downloads/1cca3eedfb7940413267d0c7ae15d169/categorical_variables.py deleted file mode 120000 index c9663aac8c4..00000000000 --- a/_downloads/1cca3eedfb7940413267d0c7ae15d169/categorical_variables.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1cca3eedfb7940413267d0c7ae15d169/categorical_variables.py \ No newline at end of file diff --git a/_downloads/1ccec5fa34dd03a0a94d94be23e3e1d4/anscombe.ipynb b/_downloads/1ccec5fa34dd03a0a94d94be23e3e1d4/anscombe.ipynb deleted file mode 120000 index ea83e5a4c9b..00000000000 --- a/_downloads/1ccec5fa34dd03a0a94d94be23e3e1d4/anscombe.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1ccec5fa34dd03a0a94d94be23e3e1d4/anscombe.ipynb \ No newline at end of file diff --git a/_downloads/1cd4ce90fff712aecb98987003878a5f/connect_simple01.ipynb b/_downloads/1cd4ce90fff712aecb98987003878a5f/connect_simple01.ipynb deleted file mode 120000 index 315fe5235e7..00000000000 --- a/_downloads/1cd4ce90fff712aecb98987003878a5f/connect_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1cd4ce90fff712aecb98987003878a5f/connect_simple01.ipynb \ No newline at end of file diff --git a/_downloads/1ce347be5b2e8bbb629546b49121374f/image_nonuniform.ipynb b/_downloads/1ce347be5b2e8bbb629546b49121374f/image_nonuniform.ipynb deleted file mode 120000 index 874056c33c8..00000000000 --- a/_downloads/1ce347be5b2e8bbb629546b49121374f/image_nonuniform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1ce347be5b2e8bbb629546b49121374f/image_nonuniform.ipynb \ No newline at end of file diff --git a/_downloads/1ce402f326703a3b97fd62dc731bb942/line_demo_dash_control.ipynb b/_downloads/1ce402f326703a3b97fd62dc731bb942/line_demo_dash_control.ipynb deleted file mode 120000 index 7ad0610b05a..00000000000 --- a/_downloads/1ce402f326703a3b97fd62dc731bb942/line_demo_dash_control.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1ce402f326703a3b97fd62dc731bb942/line_demo_dash_control.ipynb \ No newline at end of file diff --git a/_downloads/1ce7897c12da9c034f8b70cdb17fbb3c/errorbar.ipynb b/_downloads/1ce7897c12da9c034f8b70cdb17fbb3c/errorbar.ipynb deleted file mode 120000 index 35412688888..00000000000 --- a/_downloads/1ce7897c12da9c034f8b70cdb17fbb3c/errorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1ce7897c12da9c034f8b70cdb17fbb3c/errorbar.ipynb \ No newline at end of file diff --git a/_downloads/1cf377e08410fb7aeb9e60faef3254d0/donut.py b/_downloads/1cf377e08410fb7aeb9e60faef3254d0/donut.py deleted file mode 120000 index eb171462c6c..00000000000 --- a/_downloads/1cf377e08410fb7aeb9e60faef3254d0/donut.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1cf377e08410fb7aeb9e60faef3254d0/donut.py \ No newline at end of file diff --git a/_downloads/1cf7a05bdd151c3f6067af6d8e07f09e/tight_layout_guide.py b/_downloads/1cf7a05bdd151c3f6067af6d8e07f09e/tight_layout_guide.py deleted file mode 100644 index 1c1efc694a3..00000000000 --- a/_downloads/1cf7a05bdd151c3f6067af6d8e07f09e/tight_layout_guide.py +++ /dev/null @@ -1,368 +0,0 @@ -""" -================== -Tight Layout guide -================== - -How to use tight-layout to fit plots within your figure cleanly. - -*tight_layout* automatically adjusts subplot params so that the -subplot(s) fits in to the figure area. This is an experimental -feature and may not work for some cases. It only checks the extents -of ticklabels, axis labels, and titles. - -An alternative to *tight_layout* is :doc:`constrained_layout -`. - - -Simple Example -============== - -In matplotlib, the location of axes (including subplots) are specified in -normalized figure coordinates. It can happen that your axis labels or -titles (or sometimes even ticklabels) go outside the figure area, and are thus -clipped. - -""" - -# sphinx_gallery_thumbnail_number = 7 - -import matplotlib.pyplot as plt -import numpy as np - -plt.rcParams['savefig.facecolor'] = "0.8" - - -def example_plot(ax, fontsize=12): - ax.plot([1, 2]) - - ax.locator_params(nbins=3) - ax.set_xlabel('x-label', fontsize=fontsize) - ax.set_ylabel('y-label', fontsize=fontsize) - ax.set_title('Title', fontsize=fontsize) - -plt.close('all') -fig, ax = plt.subplots() -example_plot(ax, fontsize=24) - -############################################################################### -# To prevent this, the location of axes needs to be adjusted. For -# subplots, this can be done by adjusting the subplot params -# (:ref:`howto-subplots-adjust`). Matplotlib v1.1 introduces a new -# command :func:`~matplotlib.pyplot.tight_layout` that does this -# automatically for you. - -fig, ax = plt.subplots() -example_plot(ax, fontsize=24) -plt.tight_layout() - -############################################################################### -# Note that :func:`matplotlib.pyplot.tight_layout` will only adjust the -# subplot params when it is called. In order to perform this adjustment each -# time the figure is redrawn, you can call ``fig.set_tight_layout(True)``, or, -# equivalently, set the ``figure.autolayout`` rcParam to ``True``. -# -# When you have multiple subplots, often you see labels of different -# axes overlapping each other. - -plt.close('all') - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -############################################################################### -# :func:`~matplotlib.pyplot.tight_layout` will also adjust spacing between -# subplots to minimize the overlaps. - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) -plt.tight_layout() - -############################################################################### -# :func:`~matplotlib.pyplot.tight_layout` can take keyword arguments of -# *pad*, *w_pad* and *h_pad*. These control the extra padding around the -# figure border and between subplots. The pads are specified in fraction -# of fontsize. - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) -plt.tight_layout(pad=0.4, w_pad=0.5, h_pad=1.0) - -############################################################################### -# :func:`~matplotlib.pyplot.tight_layout` will work even if the sizes of -# subplots are different as far as their grid specification is -# compatible. In the example below, *ax1* and *ax2* are subplots of a 2x2 -# grid, while *ax3* is of a 1x2 grid. - -plt.close('all') -fig = plt.figure() - -ax1 = plt.subplot(221) -ax2 = plt.subplot(223) -ax3 = plt.subplot(122) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -plt.tight_layout() - -############################################################################### -# It works with subplots created with -# :func:`~matplotlib.pyplot.subplot2grid`. In general, subplots created -# from the gridspec (:doc:`/tutorials/intermediate/gridspec`) will work. - -plt.close('all') -fig = plt.figure() - -ax1 = plt.subplot2grid((3, 3), (0, 0)) -ax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2) -ax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -plt.tight_layout() - -############################################################################### -# Although not thoroughly tested, it seems to work for subplots with -# aspect != "auto" (e.g., axes with images). - -arr = np.arange(100).reshape((10, 10)) - -plt.close('all') -fig = plt.figure(figsize=(5, 4)) - -ax = plt.subplot(111) -im = ax.imshow(arr, interpolation="none") - -plt.tight_layout() - -############################################################################### -# Caveats -# ======= -# -# * :func:`~matplotlib.pyplot.tight_layout` only considers ticklabels, axis -# labels, and titles. Thus, other artists may be clipped and also may -# overlap. -# -# * It assumes that the extra space needed for ticklabels, axis labels, -# and titles is independent of original location of axes. This is -# often true, but there are rare cases where it is not. -# -# * pad=0 clips some of the texts by a few pixels. This may be a bug or -# a limitation of the current algorithm and it is not clear why it -# happens. Meanwhile, use of pad at least larger than 0.3 is -# recommended. -# -# Use with GridSpec -# ================= -# -# GridSpec has its own :func:`~matplotlib.gridspec.GridSpec.tight_layout` method -# (the pyplot api :func:`~matplotlib.pyplot.tight_layout` also works). - -import matplotlib.gridspec as gridspec - -plt.close('all') -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig) - -############################################################################### -# You may provide an optional *rect* parameter, which specifies the bounding box -# that the subplots will be fit inside. The coordinates must be in normalized -# figure coordinates and the default is (0, 0, 1, 1). - -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig, rect=[0, 0, 0.5, 1]) - -############################################################################### -# For example, this can be used for a figure with multiple gridspecs. - -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig, rect=[0, 0, 0.5, 1]) - -gs2 = gridspec.GridSpec(3, 1) - -for ss in gs2: - ax = fig.add_subplot(ss) - example_plot(ax) - ax.set_title("") - ax.set_xlabel("") - -ax.set_xlabel("x-label", fontsize=12) - -gs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5) - -# We may try to match the top and bottom of two grids :: -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.update(top=top, bottom=bottom) -gs2.update(top=top, bottom=bottom) -plt.show() - -############################################################################### -# While this should be mostly good enough, adjusting top and bottom -# may require adjustment of hspace also. To update hspace & vspace, we -# call :func:`~matplotlib.gridspec.GridSpec.tight_layout` again with updated -# rect argument. Note that the rect argument specifies the area including the -# ticklabels, etc. Thus, we will increase the bottom (which is 0 for the normal -# case) by the difference between the *bottom* from above and the bottom of each -# gridspec. Same thing for the top. - -fig = plt.gcf() - -gs1 = gridspec.GridSpec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs1.tight_layout(fig, rect=[0, 0, 0.5, 1]) - -gs2 = gridspec.GridSpec(3, 1) - -for ss in gs2: - ax = fig.add_subplot(ss) - example_plot(ax) - ax.set_title("") - ax.set_xlabel("") - -ax.set_xlabel("x-label", fontsize=12) - -gs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5) - -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.update(top=top, bottom=bottom) -gs2.update(top=top, bottom=bottom) - -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.tight_layout(fig, rect=[None, 0 + (bottom-gs1.bottom), - 0.5, 1 - (gs1.top-top)]) -gs2.tight_layout(fig, rect=[0.5, 0 + (bottom-gs2.bottom), - None, 1 - (gs2.top-top)], - h_pad=0.5) - -############################################################################### -# Legends and Annotations -# ======================= -# -# Pre Matplotlib 2.2, legends and annotations were excluded from the bounding -# box calculations that decide the layout. Subsequently these artists were -# added to the calculation, but sometimes it is undesirable to include them. -# For instance in this case it might be good to have the axes shring a bit -# to make room for the legend: - -fig, ax = plt.subplots(figsize=(4, 3)) -lines = ax.plot(range(10), label='A simple plot') -ax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',) -fig.tight_layout() -plt.show() - -############################################################################### -# However, sometimes this is not desired (quite often when using -# ``fig.savefig('outname.png', bbox_inches='tight')``). In order to -# remove the legend from the bounding box calculation, we simply set its -# bounding ``leg.set_in_layout(False)`` and the legend will be ignored. - -fig, ax = plt.subplots(figsize=(4, 3)) -lines = ax.plot(range(10), label='B simple plot') -leg = ax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',) -leg.set_in_layout(False) -fig.tight_layout() -plt.show() - -############################################################################### -# Use with AxesGrid1 -# ================== -# -# While limited, the axes_grid1 toolkit is also supported. - -from mpl_toolkits.axes_grid1 import Grid - -plt.close('all') -fig = plt.figure() -grid = Grid(fig, rect=111, nrows_ncols=(2, 2), - axes_pad=0.25, label_mode='L', - ) - -for ax in grid: - example_plot(ax) -ax.title.set_visible(False) - -plt.tight_layout() - -############################################################################### -# Colorbar -# ======== -# -# If you create a colorbar with the :func:`~matplotlib.pyplot.colorbar` -# command, the created colorbar is an instance of Axes, *not* Subplot, so -# tight_layout does not work. With Matplotlib v1.1, you may create a -# colorbar as a subplot using the gridspec. - -plt.close('all') -arr = np.arange(100).reshape((10, 10)) -fig = plt.figure(figsize=(4, 4)) -im = plt.imshow(arr, interpolation="none") - -plt.colorbar(im, use_gridspec=True) - -plt.tight_layout() - -############################################################################### -# Another option is to use AxesGrid1 toolkit to -# explicitly create an axes for colorbar. - -from mpl_toolkits.axes_grid1 import make_axes_locatable - -plt.close('all') -arr = np.arange(100).reshape((10, 10)) -fig = plt.figure(figsize=(4, 4)) -im = plt.imshow(arr, interpolation="none") - -divider = make_axes_locatable(plt.gca()) -cax = divider.append_axes("right", "5%", pad="3%") -plt.colorbar(im, cax=cax) - -plt.tight_layout() diff --git a/_downloads/1d009f06f961d0c5bcb5d9a9ff347732/whats_new_98_4_fancy.ipynb b/_downloads/1d009f06f961d0c5bcb5d9a9ff347732/whats_new_98_4_fancy.ipynb deleted file mode 120000 index c7856037880..00000000000 --- a/_downloads/1d009f06f961d0c5bcb5d9a9ff347732/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1d009f06f961d0c5bcb5d9a9ff347732/whats_new_98_4_fancy.ipynb \ No newline at end of file diff --git a/_downloads/1d0adf0caf9022365686306c66b8437e/tricontour_demo.ipynb b/_downloads/1d0adf0caf9022365686306c66b8437e/tricontour_demo.ipynb deleted file mode 120000 index c575074565d..00000000000 --- a/_downloads/1d0adf0caf9022365686306c66b8437e/tricontour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1d0adf0caf9022365686306c66b8437e/tricontour_demo.ipynb \ No newline at end of file diff --git a/_downloads/1d1075da6c45abfa10a4925be6d13606/fig_axes_labels_simple.ipynb b/_downloads/1d1075da6c45abfa10a4925be6d13606/fig_axes_labels_simple.ipynb deleted file mode 120000 index 34fcebc286e..00000000000 --- a/_downloads/1d1075da6c45abfa10a4925be6d13606/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d1075da6c45abfa10a4925be6d13606/fig_axes_labels_simple.ipynb \ No newline at end of file diff --git a/_downloads/1d150c905a8963efcfbaaece8250f138/simple_axisline.ipynb b/_downloads/1d150c905a8963efcfbaaece8250f138/simple_axisline.ipynb deleted file mode 100644 index 9c76f1feebe..00000000000 --- a/_downloads/1d150c905a8963efcfbaaece8250f138/simple_axisline.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axisartist.axislines import SubplotZero\n\n\nfig = plt.figure()\nfig.subplots_adjust(right=0.85)\nax = SubplotZero(fig, 1, 1, 1)\nfig.add_subplot(ax)\n\n# make right and top axis invisible\nax.axis[\"right\"].set_visible(False)\nax.axis[\"top\"].set_visible(False)\n\n# make xzero axis (horizontal axis line through y=0) visible.\nax.axis[\"xzero\"].set_visible(True)\nax.axis[\"xzero\"].label.set_text(\"Axis Zero\")\n\nax.set_ylim(-2, 4)\nax.set_xlabel(\"Label X\")\nax.set_ylabel(\"Label Y\")\n# or\n#ax.axis[\"bottom\"].label.set_text(\"Label X\")\n#ax.axis[\"left\"].label.set_text(\"Label Y\")\n\n# make new (right-side) yaxis, but with some offset\noffset = (20, 0)\nnew_axisline = ax.get_grid_helper().new_fixed_axis\n\nax.axis[\"right2\"] = new_axisline(loc=\"right\", offset=offset, axes=ax)\nax.axis[\"right2\"].label.set_text(\"Label Y2\")\n\nax.plot([-2, 3, 2])\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1d17e71bdceda94cbeaf34fc12b7043f/wxcursor_demo_sgskip.py b/_downloads/1d17e71bdceda94cbeaf34fc12b7043f/wxcursor_demo_sgskip.py deleted file mode 120000 index 8985ae14bf2..00000000000 --- a/_downloads/1d17e71bdceda94cbeaf34fc12b7043f/wxcursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1d17e71bdceda94cbeaf34fc12b7043f/wxcursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/1d1cbe402c27746a189c99d41f9c7d30/multiple_yaxis_with_spines.py b/_downloads/1d1cbe402c27746a189c99d41f9c7d30/multiple_yaxis_with_spines.py deleted file mode 120000 index 08a2b89ed5e..00000000000 --- a/_downloads/1d1cbe402c27746a189c99d41f9c7d30/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1d1cbe402c27746a189c99d41f9c7d30/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/1d1cf62db33a4554c487470c01670fe5/transforms_tutorial.py b/_downloads/1d1cf62db33a4554c487470c01670fe5/transforms_tutorial.py deleted file mode 100644 index de12aeec7e0..00000000000 --- a/_downloads/1d1cf62db33a4554c487470c01670fe5/transforms_tutorial.py +++ /dev/null @@ -1,556 +0,0 @@ -""" -======================== -Transformations Tutorial -======================== - -Like any graphics packages, Matplotlib is built on top of a -transformation framework to easily move between coordinate systems, -the userland `data` coordinate system, the `axes` coordinate system, -the `figure` coordinate system, and the `display` coordinate system. -In 95% of your plotting, you won't need to think about this, as it -happens under the hood, but as you push the limits of custom figure -generation, it helps to have an understanding of these objects so you -can reuse the existing transformations Matplotlib makes available to -you, or create your own (see :mod:`matplotlib.transforms`). The table -below summarizes the some useful coordinate systems, the transformation -object you should use to work in that coordinate system, and the -description of that system. In the `Transformation Object` column, -``ax`` is a :class:`~matplotlib.axes.Axes` instance, and ``fig`` is a -:class:`~matplotlib.figure.Figure` instance. - -+----------------+-----------------------------+-----------------------------------+ -|Coordinates |Transformation object |Description | -+================+=============================+===================================+ -|"data" |``ax.transData`` |The coordinate system for the data,| -| | |controlled by xlim and ylim. | -+----------------+-----------------------------+-----------------------------------+ -|"axes" |``ax.transAxes`` |The coordinate system of the | -| | |`~matplotlib.axes.Axes`; (0, 0) | -| | |is bottom left of the axes, and | -| | |(1, 1) is top right of the axes. | -+----------------+-----------------------------+-----------------------------------+ -|"figure" |``fig.transFigure`` |The coordinate system of the | -| | |`.Figure`; (0, 0) is bottom left | -| | |of the figure, and (1, 1) is top | -| | |right of the figure. | -+----------------+-----------------------------+-----------------------------------+ -|"figure-inches" |``fig.dpi_scale_trans`` |The coordinate system of the | -| | |`.Figure` in inches; (0, 0) is | -| | |bottom left of the figure, and | -| | |(width, height) is the top right | -| | |of the figure in inches. | -+----------------+-----------------------------+-----------------------------------+ -|"display" |``None``, or |The pixel coordinate system of the | -| |``IdentityTransform()`` |display window; (0, 0) is bottom | -| | |left of the window, and (width, | -| | |height) is top right of the | -| | |display window in pixels. | -+----------------+-----------------------------+-----------------------------------+ -|"xaxis", |``ax.get_xaxis_transform()``,|Blended coordinate systems; use | -|"yaxis" |``ax.get_yaxis_transform()`` |data coordinates on one of the axis| -| | |and axes coordinates on the other. | -+----------------+-----------------------------+-----------------------------------+ - -All of the transformation objects in the table above take inputs in -their coordinate system, and transform the input to the ``display`` -coordinate system. That is why the ``display`` coordinate system has -``None`` for the ``Transformation Object`` column -- it already is in -display coordinates. The transformations also know how to invert -themselves, to go from ``display`` back to the native coordinate system. -This is particularly useful when processing events from the user -interface, which typically occur in display space, and you want to -know where the mouse click or key-press occurred in your data -coordinate system. - -Note that specifying objects in ``display`` coordinates will change their -location if the ``dpi`` of the figure changes. This can cause confusion when -printing or changing screen resolution, because the object can change location -and size. Therefore it is most common -for artists placed in an axes or figure to have their transform set to -something *other* than the `~.transforms.IdentityTransform()`; the default when -an artist is placed on an axes using `~.Axes.axes.add_artist` is for the -transform to be ``ax.transData``. - -.. _data-coords: - -Data coordinates -================ - -Let's start with the most commonly used coordinate, the `data` -coordinate system. Whenever you add data to the axes, Matplotlib -updates the datalimits, most commonly updated with the -:meth:`~matplotlib.axes.Axes.set_xlim` and -:meth:`~matplotlib.axes.Axes.set_ylim` methods. For example, in the -figure below, the data limits stretch from 0 to 10 on the x-axis, and --1 to 1 on the y-axis. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.patches as mpatches - -x = np.arange(0, 10, 0.005) -y = np.exp(-x/2.) * np.sin(2*np.pi*x) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_xlim(0, 10) -ax.set_ylim(-1, 1) - -plt.show() - -############################################################################### -# You can use the ``ax.transData`` instance to transform from your -# `data` to your `display` coordinate system, either a single point or a -# sequence of points as shown below: -# -# .. sourcecode:: ipython -# -# In [14]: type(ax.transData) -# Out[14]: -# -# In [15]: ax.transData.transform((5, 0)) -# Out[15]: array([ 335.175, 247. ]) -# -# In [16]: ax.transData.transform([(5, 0), (1, 2)]) -# Out[16]: -# array([[ 335.175, 247. ], -# [ 132.435, 642.2 ]]) -# -# You can use the :meth:`~matplotlib.transforms.Transform.inverted` -# method to create a transform which will take you from display to data -# coordinates: -# -# .. sourcecode:: ipython -# -# In [41]: inv = ax.transData.inverted() -# -# In [42]: type(inv) -# Out[42]: -# -# In [43]: inv.transform((335.175, 247.)) -# Out[43]: array([ 5., 0.]) -# -# If your are typing along with this tutorial, the exact values of the -# display coordinates may differ if you have a different window size or -# dpi setting. Likewise, in the figure below, the display labeled -# points are probably not the same as in the ipython session because the -# documentation figure size defaults are different. - -x = np.arange(0, 10, 0.005) -y = np.exp(-x/2.) * np.sin(2*np.pi*x) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_xlim(0, 10) -ax.set_ylim(-1, 1) - -xdata, ydata = 5, 0 -xdisplay, ydisplay = ax.transData.transform_point((xdata, ydata)) - -bbox = dict(boxstyle="round", fc="0.8") -arrowprops = dict( - arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=10") - -offset = 72 -ax.annotate('data = (%.1f, %.1f)' % (xdata, ydata), - (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - -disp = ax.annotate('display = (%.1f, %.1f)' % (xdisplay, ydisplay), - (xdisplay, ydisplay), xytext=(0.5*offset, -offset), - xycoords='figure pixels', - textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - -plt.show() - -############################################################################### -# .. note:: -# -# If you run the source code in the example above in a GUI backend, -# you may also find that the two arrows for the `data` and `display` -# annotations do not point to exactly the same point. This is because -# the display point was computed before the figure was displayed, and -# the GUI backend may slightly resize the figure when it is created. -# The effect is more pronounced if you resize the figure yourself. -# This is one good reason why you rarely want to work in display -# space, but you can connect to the ``'on_draw'`` -# :class:`~matplotlib.backend_bases.Event` to update figure -# coordinates on figure draws; see :ref:`event-handling-tutorial`. -# -# When you change the x or y limits of your axes, the data limits are -# updated so the transformation yields a new display point. Note that -# when we just change the ylim, only the y-display coordinate is -# altered, and when we change the xlim too, both are altered. More on -# this later when we talk about the -# :class:`~matplotlib.transforms.Bbox`. -# -# .. sourcecode:: ipython -# -# In [54]: ax.transData.transform((5, 0)) -# Out[54]: array([ 335.175, 247. ]) -# -# In [55]: ax.set_ylim(-1, 2) -# Out[55]: (-1, 2) -# -# In [56]: ax.transData.transform((5, 0)) -# Out[56]: array([ 335.175 , 181.13333333]) -# -# In [57]: ax.set_xlim(10, 20) -# Out[57]: (10, 20) -# -# In [58]: ax.transData.transform((5, 0)) -# Out[58]: array([-171.675 , 181.13333333]) -# -# -# .. _axes-coords: -# -# Axes coordinates -# ================ -# -# After the `data` coordinate system, `axes` is probably the second most -# useful coordinate system. Here the point (0, 0) is the bottom left of -# your axes or subplot, (0.5, 0.5) is the center, and (1.0, 1.0) is the -# top right. You can also refer to points outside the range, so (-0.1, -# 1.1) is to the left and above your axes. This coordinate system is -# extremely useful when placing text in your axes, because you often -# want a text bubble in a fixed, location, e.g., the upper left of the axes -# pane, and have that location remain fixed when you pan or zoom. Here -# is a simple example that creates four panels and labels them 'A', 'B', -# 'C', 'D' as you often see in journals. - -fig = plt.figure() -for i, label in enumerate(('A', 'B', 'C', 'D')): - ax = fig.add_subplot(2, 2, i+1) - ax.text(0.05, 0.95, label, transform=ax.transAxes, - fontsize=16, fontweight='bold', va='top') - -plt.show() - -############################################################################### -# You can also make lines or patches in the axes coordinate system, but -# this is less useful in my experience than using ``ax.transAxes`` for -# placing text. Nonetheless, here is a silly example which plots some -# random dots in `data` space, and overlays a semi-transparent -# :class:`~matplotlib.patches.Circle` centered in the middle of the axes -# with a radius one quarter of the axes -- if your axes does not -# preserve aspect ratio (see :meth:`~matplotlib.axes.Axes.set_aspect`), -# this will look like an ellipse. Use the pan/zoom tool to move around, -# or manually change the data xlim and ylim, and you will see the data -# move, but the circle will remain fixed because it is not in `data` -# coordinates and will always remain at the center of the axes. - -fig, ax = plt.subplots() -x, y = 10*np.random.rand(2, 1000) -ax.plot(x, y, 'go', alpha=0.2) # plot some data in data coordinates - -circ = mpatches.Circle((0.5, 0.5), 0.25, transform=ax.transAxes, - facecolor='blue', alpha=0.75) -ax.add_patch(circ) -plt.show() - -############################################################################### -# .. _blended_transformations: -# -# Blended transformations -# ======================= -# -# Drawing in `blended` coordinate spaces which mix `axes` with `data` -# coordinates is extremely useful, for example to create a horizontal -# span which highlights some region of the y-data but spans across the -# x-axis regardless of the data limits, pan or zoom level, etc. In fact -# these blended lines and spans are so useful, we have built in -# functions to make them easy to plot (see -# :meth:`~matplotlib.axes.Axes.axhline`, -# :meth:`~matplotlib.axes.Axes.axvline`, -# :meth:`~matplotlib.axes.Axes.axhspan`, -# :meth:`~matplotlib.axes.Axes.axvspan`) but for didactic purposes we -# will implement the horizontal span here using a blended -# transformation. This trick only works for separable transformations, -# like you see in normal Cartesian coordinate systems, but not on -# inseparable transformations like the -# :class:`~matplotlib.projections.polar.PolarAxes.PolarTransform`. - -import matplotlib.transforms as transforms - -fig, ax = plt.subplots() -x = np.random.randn(1000) - -ax.hist(x, 30) -ax.set_title(r'$\sigma=1 \/ \dots \/ \sigma=2$', fontsize=16) - -# the x coords of this transformation are data, and the -# y coord are axes -trans = transforms.blended_transform_factory( - ax.transData, ax.transAxes) - -# highlight the 1..2 stddev region with a span. -# We want x to be in data coordinates and y to -# span from 0..1 in axes coords -rect = mpatches.Rectangle((1, 0), width=1, height=1, - transform=trans, color='yellow', - alpha=0.5) - -ax.add_patch(rect) - -plt.show() - -############################################################################### -# .. note:: -# -# The blended transformations where x is in data coords and y in axes -# coordinates is so useful that we have helper methods to return the -# versions mpl uses internally for drawing ticks, ticklabels, etc. -# The methods are :meth:`matplotlib.axes.Axes.get_xaxis_transform` and -# :meth:`matplotlib.axes.Axes.get_yaxis_transform`. So in the example -# above, the call to -# :meth:`~matplotlib.transforms.blended_transform_factory` can be -# replaced by ``get_xaxis_transform``:: -# -# trans = ax.get_xaxis_transform() -# -# .. _transforms-fig-scale-dpi: -# -# Plotting in physical units -# ========================== -# -# Sometimes we want an object to be a certain physical size on the plot. -# Here we draw the same circle as above, but in physical units. If done -# interactively, you can see that changing the size of the figure does -# not change the offset of the circle from the lower-left corner, -# does not change its size, and the circle remains a circle regardless of -# the aspect ratio of the axes. - -fig, ax = plt.subplots(figsize=(5, 4)) -x, y = 10*np.random.rand(2, 1000) -ax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates -# add a circle in fixed-units -circ = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans, - facecolor='blue', alpha=0.75) -ax.add_patch(circ) -plt.show() - -############################################################################### -# If we change the figure size, the circle does not change its absolute -# position and is cropped. - -fig, ax = plt.subplots(figsize=(7, 2)) -x, y = 10*np.random.rand(2, 1000) -ax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates -# add a circle in fixed-units -circ = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans, - facecolor='blue', alpha=0.75) -ax.add_patch(circ) -plt.show() - -############################################################################### -# Another use is putting a patch with a set physical dimension around a -# data point on the axes. Here we add together two transforms. The -# first sets the scaling of how large the ellipse should be and the second -# sets its position. The ellipse is then placed at the origin, and then -# we use the helper transform :class:`~matplotlib.transforms.ScaledTranslation` -# to move it -# to the right place in the ``ax.transData`` coordinate system. -# This helper is instantiated with:: -# -# trans = ScaledTranslation(xt, yt, scale_trans) -# -# where `xt` and `yt` are the translation offsets, and `scale_trans` is -# a transformation which scales `xt` and `yt` at transformation time -# before applying the offsets. -# -# Note the use of the plus operator on the transforms below. -# This code says: first apply the scale transformation ``fig.dpi_scale_trans`` -# to make the ellipse the proper size, but still centered at (0, 0), -# and then translate the data to `xdata[0]` and `ydata[0]` in data space. -# -# In interactive use, the ellipse stays the same size even if the -# axes limits are changed via zoom. -# - -fig, ax = plt.subplots() -xdata, ydata = (0.2, 0.7), (0.5, 0.5) -ax.plot(xdata, ydata, "o") -ax.set_xlim((0, 1)) - -trans = (fig.dpi_scale_trans + - transforms.ScaledTranslation(xdata[0], ydata[0], ax.transData)) - -# plot an ellipse around the point that is 150 x 130 points in diameter... -circle = mpatches.Ellipse((0, 0), 150/72, 130/72, angle=40, - fill=None, transform=trans) -ax.add_patch(circle) -plt.show() - -############################################################################### -# .. note:: -# -# The order of transformation matters. Here the ellipse -# is given the right dimensions in display space *first* and then moved -# in data space to the correct spot. -# If we had done the ``ScaledTranslation`` first, then -# ``xdata[0]`` and ``ydata[0]`` would -# first be transformed to ``display`` coordinates (``[ 358.4 475.2]`` on -# a 200-dpi monitor) and then those coordinates -# would be scaled by ``fig.dpi_scale_trans`` pushing the center of -# the ellipse well off the screen (i.e. ``[ 71680. 95040.]``). -# -# .. _offset-transforms-shadow: -# -# Using offset transforms to create a shadow effect -# ================================================= -# -# Another use of :class:`~matplotlib.transforms.ScaledTranslation` is to create -# a new transformation that is -# offset from another transformation, e.g., to place one object shifted a -# bit relative to another object. Typically you want the shift to be in -# some physical dimension, like points or inches rather than in data -# coordinates, so that the shift effect is constant at different zoom -# levels and dpi settings. -# -# One use for an offset is to create a shadow effect, where you draw one -# object identical to the first just to the right of it, and just below -# it, adjusting the zorder to make sure the shadow is drawn first and -# then the object it is shadowing above it. -# -# Here we apply the transforms in the *opposite* order to the use of -# :class:`~matplotlib.transforms.ScaledTranslation` above. The plot is -# first made in data units (``ax.transData``) and then shifted by -# ``dx`` and ``dy`` points using `fig.dpi_scale_trans`. (In typography, -# a`point `_ is -# 1/72 inches, and by specifying your offsets in points, your figure -# will look the same regardless of the dpi resolution it is saved in.) - -fig, ax = plt.subplots() - -# make a simple sine wave -x = np.arange(0., 2., 0.01) -y = np.sin(2*np.pi*x) -line, = ax.plot(x, y, lw=3, color='blue') - -# shift the object over 2 points, and down 2 points -dx, dy = 2/72., -2/72. -offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans) -shadow_transform = ax.transData + offset - -# now plot the same data with our offset transform; -# use the zorder to make sure we are below the line -ax.plot(x, y, lw=3, color='gray', - transform=shadow_transform, - zorder=0.5*line.get_zorder()) - -ax.set_title('creating a shadow effect with an offset transform') -plt.show() - - -############################################################################### -# .. note:: -# -# The dpi and inches offset is a -# common-enough use case that we have a special helper function to -# create it in :func:`matplotlib.transforms.offset_copy`, which returns -# a new transform with an added offset. So above we could have done:: -# -# shadow_transform = transforms.offset_copy(ax.transData, -# fig=fig, dx, dy, units='inches') -# -# -# .. _transformation-pipeline: -# -# The transformation pipeline -# =========================== -# -# The ``ax.transData`` transform we have been working with in this -# tutorial is a composite of three different transformations that -# comprise the transformation pipeline from `data` -> `display` -# coordinates. Michael Droettboom implemented the transformations -# framework, taking care to provide a clean API that segregated the -# nonlinear projections and scales that happen in polar and logarithmic -# plots, from the linear affine transformations that happen when you pan -# and zoom. There is an efficiency here, because you can pan and zoom -# in your axes which affects the affine transformation, but you may not -# need to compute the potentially expensive nonlinear scales or -# projections on simple navigation events. It is also possible to -# multiply affine transformation matrices together, and then apply them -# to coordinates in one step. This is not true of all possible -# transformations. -# -# -# Here is how the ``ax.transData`` instance is defined in the basic -# separable axis :class:`~matplotlib.axes.Axes` class:: -# -# self.transData = self.transScale + (self.transLimits + self.transAxes) -# -# We've been introduced to the ``transAxes`` instance above in -# :ref:`axes-coords`, which maps the (0, 0), (1, 1) corners of the -# axes or subplot bounding box to `display` space, so let's look at -# these other two pieces. -# -# ``self.transLimits`` is the transformation that takes you from -# ``data`` to ``axes`` coordinates; i.e., it maps your view xlim and ylim -# to the unit space of the axes (and ``transAxes`` then takes that unit -# space to display space). We can see this in action here -# -# .. sourcecode:: ipython -# -# In [80]: ax = subplot(111) -# -# In [81]: ax.set_xlim(0, 10) -# Out[81]: (0, 10) -# -# In [82]: ax.set_ylim(-1, 1) -# Out[82]: (-1, 1) -# -# In [84]: ax.transLimits.transform((0, -1)) -# Out[84]: array([ 0., 0.]) -# -# In [85]: ax.transLimits.transform((10, -1)) -# Out[85]: array([ 1., 0.]) -# -# In [86]: ax.transLimits.transform((10, 1)) -# Out[86]: array([ 1., 1.]) -# -# In [87]: ax.transLimits.transform((5, 0)) -# Out[87]: array([ 0.5, 0.5]) -# -# and we can use this same inverted transformation to go from the unit -# `axes` coordinates back to `data` coordinates. -# -# .. sourcecode:: ipython -# -# In [90]: inv.transform((0.25, 0.25)) -# Out[90]: array([ 2.5, -0.5]) -# -# The final piece is the ``self.transScale`` attribute, which is -# responsible for the optional non-linear scaling of the data, e.g., for -# logarithmic axes. When an Axes is initially setup, this is just set to -# the identity transform, since the basic Matplotlib axes has linear -# scale, but when you call a logarithmic scaling function like -# :meth:`~matplotlib.axes.Axes.semilogx` or explicitly set the scale to -# logarithmic with :meth:`~matplotlib.axes.Axes.set_xscale`, then the -# ``ax.transScale`` attribute is set to handle the nonlinear projection. -# The scales transforms are properties of the respective ``xaxis`` and -# ``yaxis`` :class:`~matplotlib.axis.Axis` instances. For example, when -# you call ``ax.set_xscale('log')``, the xaxis updates its scale to a -# :class:`matplotlib.scale.LogScale` instance. -# -# For non-separable axes the PolarAxes, there is one more piece to -# consider, the projection transformation. The ``transData`` -# :class:`matplotlib.projections.polar.PolarAxes` is similar to that for -# the typical separable matplotlib Axes, with one additional piece -# ``transProjection``:: -# -# self.transData = self.transScale + self.transProjection + \ -# (self.transProjectionAffine + self.transAxes) -# -# ``transProjection`` handles the projection from the space, -# e.g., latitude and longitude for map data, or radius and theta for polar -# data, to a separable Cartesian coordinate system. There are several -# projection examples in the ``matplotlib.projections`` package, and the -# best way to learn more is to open the source for those packages and -# see how to make your own, since Matplotlib supports extensible axes -# and projections. Michael Droettboom has provided a nice tutorial -# example of creating a Hammer projection axes; see -# :doc:`/gallery/misc/custom_projection`. diff --git a/_downloads/1d1f7bc261aeeccbc0c8adbbdf751d21/errorbar_limits_simple.ipynb b/_downloads/1d1f7bc261aeeccbc0c8adbbdf751d21/errorbar_limits_simple.ipynb deleted file mode 120000 index f91d9cac838..00000000000 --- a/_downloads/1d1f7bc261aeeccbc0c8adbbdf751d21/errorbar_limits_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1d1f7bc261aeeccbc0c8adbbdf751d21/errorbar_limits_simple.ipynb \ No newline at end of file diff --git a/_downloads/1d23e783e288c78d1fa0752ad1fa8e77/zoom_window.py b/_downloads/1d23e783e288c78d1fa0752ad1fa8e77/zoom_window.py deleted file mode 120000 index 07914de4c18..00000000000 --- a/_downloads/1d23e783e288c78d1fa0752ad1fa8e77/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1d23e783e288c78d1fa0752ad1fa8e77/zoom_window.py \ No newline at end of file diff --git a/_downloads/1d24b53366570acc12e410cf24b1bea1/colormap_normalizations_power.py b/_downloads/1d24b53366570acc12e410cf24b1bea1/colormap_normalizations_power.py deleted file mode 120000 index b43b6243628..00000000000 --- a/_downloads/1d24b53366570acc12e410cf24b1bea1/colormap_normalizations_power.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/1d24b53366570acc12e410cf24b1bea1/colormap_normalizations_power.py \ No newline at end of file diff --git a/_downloads/1d2865e7d856eee9b4320222855abe0a/mathtext_wx_sgskip.ipynb b/_downloads/1d2865e7d856eee9b4320222855abe0a/mathtext_wx_sgskip.ipynb deleted file mode 100644 index ba90e0f6af3..00000000000 --- a/_downloads/1d2865e7d856eee9b4320222855abe0a/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1,83 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# MathText WX\n\n\nDemonstrates how to convert mathtext to a wx.Bitmap for display in various\ncontrols on wxPython.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.use(\"WxAgg\")\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wx import NavigationToolbar2Wx\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nimport wx\n\nIS_GTK = 'wxGTK' in wx.PlatformInfo\nIS_WIN = 'wxMSW' in wx.PlatformInfo" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is where the \"magic\" happens.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.mathtext import MathTextParser\nmathtext_parser = MathTextParser(\"Bitmap\")\n\n\ndef mathtext_to_wxbitmap(s):\n ftimage, depth = mathtext_parser.parse(s, 150)\n return wx.Bitmap.FromBufferRGBA(\n ftimage.get_width(), ftimage.get_height(),\n ftimage.as_rgba_str())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "functions = [\n (r'$\\sin(2 \\pi x)$', lambda x: np.sin(2*np.pi*x)),\n (r'$\\frac{4}{3}\\pi x^3$', lambda x: (4.0/3.0)*np.pi*x**3),\n (r'$\\cos(2 \\pi x)$', lambda x: np.cos(2*np.pi*x)),\n (r'$\\log(x)$', lambda x: np.log(x))\n]\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self, parent, title):\n wx.Frame.__init__(self, parent, -1, title, size=(550, 350))\n\n self.figure = Figure()\n self.axes = self.figure.add_subplot(111)\n\n self.canvas = FigureCanvas(self, -1, self.figure)\n\n self.change_plot(0)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.add_buttonbar()\n self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW)\n self.add_toolbar() # comment this out for no toolbar\n\n menuBar = wx.MenuBar()\n\n # File Menu\n menu = wx.Menu()\n m_exit = menu.Append(wx.ID_EXIT, \"E&xit\\tAlt-X\", \"Exit this simple sample\")\n menuBar.Append(menu, \"&File\")\n self.Bind(wx.EVT_MENU, self.OnClose, m_exit)\n\n if IS_GTK or IS_WIN:\n # Equation Menu\n menu = wx.Menu()\n for i, (mt, func) in enumerate(functions):\n bm = mathtext_to_wxbitmap(mt)\n item = wx.MenuItem(menu, 1000 + i, \" \")\n item.SetBitmap(bm)\n menu.Append(item)\n self.Bind(wx.EVT_MENU, self.OnChangePlot, item)\n menuBar.Append(menu, \"&Functions\")\n\n self.SetMenuBar(menuBar)\n\n self.SetSizer(self.sizer)\n self.Fit()\n\n def add_buttonbar(self):\n self.button_bar = wx.Panel(self)\n self.button_bar_sizer = wx.BoxSizer(wx.HORIZONTAL)\n self.sizer.Add(self.button_bar, 0, wx.LEFT | wx.TOP | wx.GROW)\n\n for i, (mt, func) in enumerate(functions):\n bm = mathtext_to_wxbitmap(mt)\n button = wx.BitmapButton(self.button_bar, 1000 + i, bm)\n self.button_bar_sizer.Add(button, 1, wx.GROW)\n self.Bind(wx.EVT_BUTTON, self.OnChangePlot, button)\n\n self.button_bar.SetSizer(self.button_bar_sizer)\n\n def add_toolbar(self):\n \"\"\"Copied verbatim from embedding_wx2.py\"\"\"\n self.toolbar = NavigationToolbar2Wx(self.canvas)\n self.toolbar.Realize()\n # By adding toolbar in sizer, we are able to put it at the bottom\n # of the frame - so appearance is closer to GTK version.\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n # update the axes menu on the toolbar\n self.toolbar.update()\n\n def OnChangePlot(self, event):\n self.change_plot(event.GetId() - 1000)\n\n def change_plot(self, plot_number):\n t = np.arange(1.0, 3.0, 0.01)\n s = functions[plot_number][1](t)\n self.axes.clear()\n self.axes.plot(t, s)\n self.canvas.draw()\n\n def OnClose(self, event):\n self.Destroy()\n\n\nclass MyApp(wx.App):\n def OnInit(self):\n frame = CanvasFrame(None, \"wxPython mathtext demo app\")\n self.SetTopWindow(frame)\n frame.Show(True)\n return True\n\napp = MyApp()\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1d2d31ccceccbd46c952995968b70656/fahrenheit_celsius_scales.py b/_downloads/1d2d31ccceccbd46c952995968b70656/fahrenheit_celsius_scales.py deleted file mode 120000 index 679f92ef611..00000000000 --- a/_downloads/1d2d31ccceccbd46c952995968b70656/fahrenheit_celsius_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d2d31ccceccbd46c952995968b70656/fahrenheit_celsius_scales.py \ No newline at end of file diff --git a/_downloads/1d331009de758a9c8636c405c93eb768/simple_anchored_artists.ipynb b/_downloads/1d331009de758a9c8636c405c93eb768/simple_anchored_artists.ipynb deleted file mode 120000 index 8d4d0f28e0a..00000000000 --- a/_downloads/1d331009de758a9c8636c405c93eb768/simple_anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d331009de758a9c8636c405c93eb768/simple_anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/1d3347afc92e8a9ae3b129139f2003d7/strip_chart.py b/_downloads/1d3347afc92e8a9ae3b129139f2003d7/strip_chart.py deleted file mode 100644 index 8e9bf2dad65..00000000000 --- a/_downloads/1d3347afc92e8a9ae3b129139f2003d7/strip_chart.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -============ -Oscilloscope -============ - -Emulates an oscilloscope. -""" - -import numpy as np -from matplotlib.lines import Line2D -import matplotlib.pyplot as plt -import matplotlib.animation as animation - - -class Scope(object): - def __init__(self, ax, maxt=2, dt=0.02): - self.ax = ax - self.dt = dt - self.maxt = maxt - self.tdata = [0] - self.ydata = [0] - self.line = Line2D(self.tdata, self.ydata) - self.ax.add_line(self.line) - self.ax.set_ylim(-.1, 1.1) - self.ax.set_xlim(0, self.maxt) - - def update(self, y): - lastt = self.tdata[-1] - if lastt > self.tdata[0] + self.maxt: # reset the arrays - self.tdata = [self.tdata[-1]] - self.ydata = [self.ydata[-1]] - self.ax.set_xlim(self.tdata[0], self.tdata[0] + self.maxt) - self.ax.figure.canvas.draw() - - t = self.tdata[-1] + self.dt - self.tdata.append(t) - self.ydata.append(y) - self.line.set_data(self.tdata, self.ydata) - return self.line, - - -def emitter(p=0.03): - 'return a random value with probability p, else 0' - while True: - v = np.random.rand(1) - if v > p: - yield 0. - else: - yield np.random.rand(1) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -scope = Scope(ax) - -# pass a generator in "emitter" to produce data for the update func -ani = animation.FuncAnimation(fig, scope.update, emitter, interval=10, - blit=True) - -plt.show() diff --git a/_downloads/1d3bb5bcba5cde11fdb2813d96333712/simple_annotate01.ipynb b/_downloads/1d3bb5bcba5cde11fdb2813d96333712/simple_annotate01.ipynb deleted file mode 120000 index 500d8bb92c3..00000000000 --- a/_downloads/1d3bb5bcba5cde11fdb2813d96333712/simple_annotate01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1d3bb5bcba5cde11fdb2813d96333712/simple_annotate01.ipynb \ No newline at end of file diff --git a/_downloads/1d3cd65f5c5762509a2e70640192e758/colormap-manipulation.py b/_downloads/1d3cd65f5c5762509a2e70640192e758/colormap-manipulation.py deleted file mode 120000 index 4e1045fda55..00000000000 --- a/_downloads/1d3cd65f5c5762509a2e70640192e758/colormap-manipulation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d3cd65f5c5762509a2e70640192e758/colormap-manipulation.py \ No newline at end of file diff --git a/_downloads/1d5a541042c2ba92490a587d0cd56797/text_intro.py b/_downloads/1d5a541042c2ba92490a587d0cd56797/text_intro.py deleted file mode 120000 index cd821cc9a17..00000000000 --- a/_downloads/1d5a541042c2ba92490a587d0cd56797/text_intro.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1d5a541042c2ba92490a587d0cd56797/text_intro.py \ No newline at end of file diff --git a/_downloads/1d5ba6c8397c756709be1157f5156542/simple_annotate01.py b/_downloads/1d5ba6c8397c756709be1157f5156542/simple_annotate01.py deleted file mode 120000 index 4fc7a570aa5..00000000000 --- a/_downloads/1d5ba6c8397c756709be1157f5156542/simple_annotate01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d5ba6c8397c756709be1157f5156542/simple_annotate01.py \ No newline at end of file diff --git a/_downloads/1d61bd192d822b54c18358742278ee79/radio_buttons.py b/_downloads/1d61bd192d822b54c18358742278ee79/radio_buttons.py deleted file mode 100644 index 41cde39bdfb..00000000000 --- a/_downloads/1d61bd192d822b54c18358742278ee79/radio_buttons.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -============= -Radio Buttons -============= - -Using radio buttons to choose properties of your plot. - -Radio buttons let you choose between multiple options in a visualization. -In this case, the buttons let the user choose one of the three different sine -waves to be shown in the plot. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import RadioButtons - -t = np.arange(0.0, 2.0, 0.01) -s0 = np.sin(2*np.pi*t) -s1 = np.sin(4*np.pi*t) -s2 = np.sin(8*np.pi*t) - -fig, ax = plt.subplots() -l, = ax.plot(t, s0, lw=2, color='red') -plt.subplots_adjust(left=0.3) - -axcolor = 'lightgoldenrodyellow' -rax = plt.axes([0.05, 0.7, 0.15, 0.15], facecolor=axcolor) -radio = RadioButtons(rax, ('2 Hz', '4 Hz', '8 Hz')) - - -def hzfunc(label): - hzdict = {'2 Hz': s0, '4 Hz': s1, '8 Hz': s2} - ydata = hzdict[label] - l.set_ydata(ydata) - plt.draw() -radio.on_clicked(hzfunc) - -rax = plt.axes([0.05, 0.4, 0.15, 0.15], facecolor=axcolor) -radio2 = RadioButtons(rax, ('red', 'blue', 'green')) - - -def colorfunc(label): - l.set_color(label) - plt.draw() -radio2.on_clicked(colorfunc) - -rax = plt.axes([0.05, 0.1, 0.15, 0.15], facecolor=axcolor) -radio3 = RadioButtons(rax, ('-', '--', '-.', 'steps', ':')) - - -def stylefunc(label): - l.set_linestyle(label) - plt.draw() -radio3.on_clicked(stylefunc) - -plt.show() diff --git a/_downloads/1d62c53b6bea64611f3a993c6cb54503/resample.ipynb b/_downloads/1d62c53b6bea64611f3a993c6cb54503/resample.ipynb deleted file mode 120000 index 0a41cf39bf6..00000000000 --- a/_downloads/1d62c53b6bea64611f3a993c6cb54503/resample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1d62c53b6bea64611f3a993c6cb54503/resample.ipynb \ No newline at end of file diff --git a/_downloads/1d632c097e2b807e29543ed2348ed988/simple_axis_direction03.ipynb b/_downloads/1d632c097e2b807e29543ed2348ed988/simple_axis_direction03.ipynb deleted file mode 120000 index 17e9474901d..00000000000 --- a/_downloads/1d632c097e2b807e29543ed2348ed988/simple_axis_direction03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1d632c097e2b807e29543ed2348ed988/simple_axis_direction03.ipynb \ No newline at end of file diff --git a/_downloads/1d64766b0166695e81eb4a85f87b668d/axis_direction_demo_step01.ipynb b/_downloads/1d64766b0166695e81eb4a85f87b668d/axis_direction_demo_step01.ipynb deleted file mode 120000 index 1b1e8dbb528..00000000000 --- a/_downloads/1d64766b0166695e81eb4a85f87b668d/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1d64766b0166695e81eb4a85f87b668d/axis_direction_demo_step01.ipynb \ No newline at end of file diff --git a/_downloads/1d650c6848214069e5827390116ed7c9/gtk_spreadsheet_sgskip.ipynb b/_downloads/1d650c6848214069e5827390116ed7c9/gtk_spreadsheet_sgskip.ipynb deleted file mode 120000 index 5eb4eb1d37c..00000000000 --- a/_downloads/1d650c6848214069e5827390116ed7c9/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/1d650c6848214069e5827390116ed7c9/gtk_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1d66867e5ee3ef172e01e783d9e998c7/log_bar.py b/_downloads/1d66867e5ee3ef172e01e783d9e998c7/log_bar.py deleted file mode 120000 index 90a4b83e4a6..00000000000 --- a/_downloads/1d66867e5ee3ef172e01e783d9e998c7/log_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1d66867e5ee3ef172e01e783d9e998c7/log_bar.py \ No newline at end of file diff --git a/_downloads/1d66cca6e19249098f50ee6e6b0f256c/3d_bars.ipynb b/_downloads/1d66cca6e19249098f50ee6e6b0f256c/3d_bars.ipynb deleted file mode 100644 index 3722828f7e0..00000000000 --- a/_downloads/1d66cca6e19249098f50ee6e6b0f256c/3d_bars.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo of 3D bar charts\n\n\nA basic demo of how to plot 3D bars with and without shading.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\n# setup the figure and axes\nfig = plt.figure(figsize=(8, 3))\nax1 = fig.add_subplot(121, projection='3d')\nax2 = fig.add_subplot(122, projection='3d')\n\n# fake data\n_x = np.arange(4)\n_y = np.arange(5)\n_xx, _yy = np.meshgrid(_x, _y)\nx, y = _xx.ravel(), _yy.ravel()\n\ntop = x + y\nbottom = np.zeros_like(top)\nwidth = depth = 1\n\nax1.bar3d(x, y, bottom, width, depth, top, shade=True)\nax1.set_title('Shaded')\n\nax2.bar3d(x, y, bottom, width, depth, top, shade=False)\nax2.set_title('Not Shaded')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1d67a648c96f2fe3883c38a6c4518284/annotation_polar.ipynb b/_downloads/1d67a648c96f2fe3883c38a6c4518284/annotation_polar.ipynb deleted file mode 120000 index b413eaf8f28..00000000000 --- a/_downloads/1d67a648c96f2fe3883c38a6c4518284/annotation_polar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d67a648c96f2fe3883c38a6c4518284/annotation_polar.ipynb \ No newline at end of file diff --git a/_downloads/1d74707d804b61072f7674ff1bd15b7d/contour.py b/_downloads/1d74707d804b61072f7674ff1bd15b7d/contour.py deleted file mode 120000 index a51109be13c..00000000000 --- a/_downloads/1d74707d804b61072f7674ff1bd15b7d/contour.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/1d74707d804b61072f7674ff1bd15b7d/contour.py \ No newline at end of file diff --git a/_downloads/1d795d2dbb3742249ef04dbbdc524568/menu.py b/_downloads/1d795d2dbb3742249ef04dbbdc524568/menu.py deleted file mode 120000 index 5e01c87c20e..00000000000 --- a/_downloads/1d795d2dbb3742249ef04dbbdc524568/menu.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1d795d2dbb3742249ef04dbbdc524568/menu.py \ No newline at end of file diff --git a/_downloads/1d8586078ec5ac90a9f4a8d20750168c/log_bar.py b/_downloads/1d8586078ec5ac90a9f4a8d20750168c/log_bar.py deleted file mode 100644 index 77110b3620b..00000000000 --- a/_downloads/1d8586078ec5ac90a9f4a8d20750168c/log_bar.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -======= -Log Bar -======= - -Plotting a bar chart with a logarithmic y-axis. -""" -import matplotlib.pyplot as plt -import numpy as np - -data = ((3, 1000), (10, 3), (100, 30), (500, 800), (50, 1)) - -dim = len(data[0]) -w = 0.75 -dimw = w / dim - -fig, ax = plt.subplots() -x = np.arange(len(data)) -for i in range(len(data[0])): - y = [d[i] for d in data] - b = ax.bar(x + i * dimw, y, dimw, bottom=0.001) - -ax.set_xticks(x + dimw / 2, map(str, x)) -ax.set_yscale('log') - -ax.set_xlabel('x') -ax.set_ylabel('y') - -plt.show() diff --git a/_downloads/1d897f606ba6af9378e4bcdebaad87fa/colormap_reference.py b/_downloads/1d897f606ba6af9378e4bcdebaad87fa/colormap_reference.py deleted file mode 100644 index afb578ffad1..00000000000 --- a/_downloads/1d897f606ba6af9378e4bcdebaad87fa/colormap_reference.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -================== -Colormap reference -================== - -Reference for colormaps included with Matplotlib. - -A reversed version of each of these colormaps is available by appending -``_r`` to the name, e.g., ``viridis_r``. - -See :doc:`/tutorials/colors/colormaps` for an in-depth discussion about -colormaps, including colorblind-friendliness. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -cmaps = [('Perceptually Uniform Sequential', [ - 'viridis', 'plasma', 'inferno', 'magma', 'cividis']), - ('Sequential', [ - 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds', - 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu', - 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn']), - ('Sequential (2)', [ - 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink', - 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia', - 'hot', 'afmhot', 'gist_heat', 'copper']), - ('Diverging', [ - 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu', - 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic']), - ('Cyclic', ['twilight', 'twilight_shifted', 'hsv']), - ('Qualitative', [ - 'Pastel1', 'Pastel2', 'Paired', 'Accent', - 'Dark2', 'Set1', 'Set2', 'Set3', - 'tab10', 'tab20', 'tab20b', 'tab20c']), - ('Miscellaneous', [ - 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern', - 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg', - 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar'])] - - -gradient = np.linspace(0, 1, 256) -gradient = np.vstack((gradient, gradient)) - - -def plot_color_gradients(cmap_category, cmap_list): - # Create figure and adjust figure height to number of colormaps - nrows = len(cmap_list) - figh = 0.35 + 0.15 + (nrows + (nrows-1)*0.1)*0.22 - fig, axes = plt.subplots(nrows=nrows, figsize=(6.4, figh)) - fig.subplots_adjust(top=1-.35/figh, bottom=.15/figh, left=0.2, right=0.99) - - axes[0].set_title(cmap_category + ' colormaps', fontsize=14) - - for ax, name in zip(axes, cmap_list): - ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name)) - ax.text(-.01, .5, name, va='center', ha='right', fontsize=10, - transform=ax.transAxes) - - # Turn off *all* ticks & spines, not just the ones with colormaps. - for ax in axes: - ax.set_axis_off() - - -for cmap_category, cmap_list in cmaps: - plot_color_gradients(cmap_category, cmap_list) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.axes.Axes.imshow -matplotlib.figure.Figure.text -matplotlib.axes.Axes.set_axis_off diff --git a/_downloads/1d973a26cd7bad7e37d486b0930f597e/annotations.ipynb b/_downloads/1d973a26cd7bad7e37d486b0930f597e/annotations.ipynb deleted file mode 120000 index 8c247ca56c5..00000000000 --- a/_downloads/1d973a26cd7bad7e37d486b0930f597e/annotations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d973a26cd7bad7e37d486b0930f597e/annotations.ipynb \ No newline at end of file diff --git a/_downloads/1d9a6a300390ff9c8c219ec19752715e/mathtext_asarray.py b/_downloads/1d9a6a300390ff9c8c219ec19752715e/mathtext_asarray.py deleted file mode 120000 index 4195582c0d3..00000000000 --- a/_downloads/1d9a6a300390ff9c8c219ec19752715e/mathtext_asarray.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1d9a6a300390ff9c8c219ec19752715e/mathtext_asarray.py \ No newline at end of file diff --git a/_downloads/1da0a0625797b693185b197ccc53178d/specgram_demo.ipynb b/_downloads/1da0a0625797b693185b197ccc53178d/specgram_demo.ipynb deleted file mode 100644 index 5163177d3ef..00000000000 --- a/_downloads/1da0a0625797b693185b197ccc53178d/specgram_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spectrogram Demo\n\n\nDemo of a spectrogram plot (`~.axes.Axes.specgram`).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ndt = 0.0005\nt = np.arange(0.0, 20.0, dt)\ns1 = np.sin(2 * np.pi * 100 * t)\ns2 = 2 * np.sin(2 * np.pi * 400 * t)\n\n# create a transient \"chirp\"\ns2[t <= 10] = s2[12 <= t] = 0\n\n# add some noise into the mix\nnse = 0.01 * np.random.random(size=len(t))\n\nx = s1 + s2 + nse # the signal\nNFFT = 1024 # the length of the windowing segments\nFs = int(1.0 / dt) # the sampling frequency\n\nfig, (ax1, ax2) = plt.subplots(nrows=2)\nax1.plot(t, x)\nPxx, freqs, bins, im = ax2.specgram(x, NFFT=NFFT, Fs=Fs, noverlap=900)\n# The `specgram` method returns 4 objects. They are:\n# - Pxx: the periodogram\n# - freqs: the frequency vector\n# - bins: the centers of the time bins\n# - im: the matplotlib.image.AxesImage instance representing the data in the plot\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.specgram\nmatplotlib.pyplot.specgram" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1db25c8033d259cd93f458e50ca7c6c5/pie_and_donut_labels.py b/_downloads/1db25c8033d259cd93f458e50ca7c6c5/pie_and_donut_labels.py deleted file mode 120000 index 88498fed212..00000000000 --- a/_downloads/1db25c8033d259cd93f458e50ca7c6c5/pie_and_donut_labels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1db25c8033d259cd93f458e50ca7c6c5/pie_and_donut_labels.py \ No newline at end of file diff --git a/_downloads/1db3c58dfd210f2ee8df672441110d7f/donut.ipynb b/_downloads/1db3c58dfd210f2ee8df672441110d7f/donut.ipynb deleted file mode 120000 index 4abe52b06be..00000000000 --- a/_downloads/1db3c58dfd210f2ee8df672441110d7f/donut.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1db3c58dfd210f2ee8df672441110d7f/donut.ipynb \ No newline at end of file diff --git a/_downloads/1dbc17bc6a55e486a146751868b47e12/pause_resume.ipynb b/_downloads/1dbc17bc6a55e486a146751868b47e12/pause_resume.ipynb deleted file mode 120000 index 06e4b5c2f71..00000000000 --- a/_downloads/1dbc17bc6a55e486a146751868b47e12/pause_resume.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1dbc17bc6a55e486a146751868b47e12/pause_resume.ipynb \ No newline at end of file diff --git a/_downloads/1dc9ba8dd428b842b1b2a8bf9cf73d82/demo_colorbar_with_inset_locator.py b/_downloads/1dc9ba8dd428b842b1b2a8bf9cf73d82/demo_colorbar_with_inset_locator.py deleted file mode 120000 index 55346ed7e24..00000000000 --- a/_downloads/1dc9ba8dd428b842b1b2a8bf9cf73d82/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1dc9ba8dd428b842b1b2a8bf9cf73d82/demo_colorbar_with_inset_locator.py \ No newline at end of file diff --git a/_downloads/1dcb38ab867ba56b0bea868c45b84b1c/pyplot_simple.py b/_downloads/1dcb38ab867ba56b0bea868c45b84b1c/pyplot_simple.py deleted file mode 100644 index 6ad0483ebe2..00000000000 --- a/_downloads/1dcb38ab867ba56b0bea868c45b84b1c/pyplot_simple.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============= -Pyplot Simple -============= - -A most simple plot, where a list of numbers is plotted against their index. -""" -import matplotlib.pyplot as plt -plt.plot([1,2,3,4]) -plt.ylabel('some numbers') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.plot -matplotlib.pyplot.ylabel -matplotlib.pyplot.show diff --git a/_downloads/1dcd345bac64cdc2f6ccd2b061fe450e/barcode_demo.py b/_downloads/1dcd345bac64cdc2f6ccd2b061fe450e/barcode_demo.py deleted file mode 120000 index 6eb265765c6..00000000000 --- a/_downloads/1dcd345bac64cdc2f6ccd2b061fe450e/barcode_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1dcd345bac64cdc2f6ccd2b061fe450e/barcode_demo.py \ No newline at end of file diff --git a/_downloads/1dd055e6fdd49e2926f9b98f941f994e/simple_axisline.py b/_downloads/1dd055e6fdd49e2926f9b98f941f994e/simple_axisline.py deleted file mode 120000 index 5a38f1bafa0..00000000000 --- a/_downloads/1dd055e6fdd49e2926f9b98f941f994e/simple_axisline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1dd055e6fdd49e2926f9b98f941f994e/simple_axisline.py \ No newline at end of file diff --git a/_downloads/1dd8aa4641d7d037c79c31406a1b8267/usetex_baseline_test.py b/_downloads/1dd8aa4641d7d037c79c31406a1b8267/usetex_baseline_test.py deleted file mode 120000 index 462b68d883c..00000000000 --- a/_downloads/1dd8aa4641d7d037c79c31406a1b8267/usetex_baseline_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1dd8aa4641d7d037c79c31406a1b8267/usetex_baseline_test.py \ No newline at end of file diff --git a/_downloads/1dd9a95a6108511528a5f703b6a638b6/tricontourf3d.py b/_downloads/1dd9a95a6108511528a5f703b6a638b6/tricontourf3d.py deleted file mode 120000 index af8de3957c4..00000000000 --- a/_downloads/1dd9a95a6108511528a5f703b6a638b6/tricontourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1dd9a95a6108511528a5f703b6a638b6/tricontourf3d.py \ No newline at end of file diff --git a/_downloads/1dddd0711716ca588ff651b1920f7609/axis_direction_demo_step02.py b/_downloads/1dddd0711716ca588ff651b1920f7609/axis_direction_demo_step02.py deleted file mode 120000 index 07b68759948..00000000000 --- a/_downloads/1dddd0711716ca588ff651b1920f7609/axis_direction_demo_step02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1dddd0711716ca588ff651b1920f7609/axis_direction_demo_step02.py \ No newline at end of file diff --git a/_downloads/1ddf1e541edd95a2fcfcd6df6c9ac95a/polar_demo.ipynb b/_downloads/1ddf1e541edd95a2fcfcd6df6c9ac95a/polar_demo.ipynb deleted file mode 120000 index de365e860a6..00000000000 --- a/_downloads/1ddf1e541edd95a2fcfcd6df6c9ac95a/polar_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1ddf1e541edd95a2fcfcd6df6c9ac95a/polar_demo.ipynb \ No newline at end of file diff --git a/_downloads/1de33fc529723fed94a95e7a9c69b0da/text_props.ipynb b/_downloads/1de33fc529723fed94a95e7a9c69b0da/text_props.ipynb deleted file mode 120000 index c657ec83635..00000000000 --- a/_downloads/1de33fc529723fed94a95e7a9c69b0da/text_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1de33fc529723fed94a95e7a9c69b0da/text_props.ipynb \ No newline at end of file diff --git a/_downloads/1de56ece22257bf09d521748f8833b8e/csd_demo.ipynb b/_downloads/1de56ece22257bf09d521748f8833b8e/csd_demo.ipynb deleted file mode 120000 index 4bbd020df21..00000000000 --- a/_downloads/1de56ece22257bf09d521748f8833b8e/csd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1de56ece22257bf09d521748f8833b8e/csd_demo.ipynb \ No newline at end of file diff --git a/_downloads/1e01451841b499da6640677973bcab50/gridspec_and_subplots.py b/_downloads/1e01451841b499da6640677973bcab50/gridspec_and_subplots.py deleted file mode 120000 index c7fbdf81637..00000000000 --- a/_downloads/1e01451841b499da6640677973bcab50/gridspec_and_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1e01451841b499da6640677973bcab50/gridspec_and_subplots.py \ No newline at end of file diff --git a/_downloads/1e1ae1237d5d34e5a263f186eefcd358/dfrac_demo.py b/_downloads/1e1ae1237d5d34e5a263f186eefcd358/dfrac_demo.py deleted file mode 100644 index 4ffd7767c5b..00000000000 --- a/_downloads/1e1ae1237d5d34e5a263f186eefcd358/dfrac_demo.py +++ /dev/null @@ -1,28 +0,0 @@ -r""" -========================================= -The difference between \\dfrac and \\frac -========================================= - -In this example, the differences between the \\dfrac and \\frac TeX macros are -illustrated; in particular, the difference between display style and text style -fractions when using Mathtex. - -.. versionadded:: 2.1 - -.. note:: - To use \\dfrac with the LaTeX engine (text.usetex : True), you need to - import the amsmath package with the text.latex.preamble rc, which is - an unsupported feature; therefore, it is probably a better idea to just - use the \\displaystyle option before the \\frac macro to get this behavior - with the LaTeX engine. - -""" - -import matplotlib.pyplot as plt - -fig = plt.figure(figsize=(5.25, 0.75)) -fig.text(0.5, 0.3, r'\dfrac: $\dfrac{a}{b}$', - horizontalalignment='center', verticalalignment='center') -fig.text(0.5, 0.7, r'\frac: $\frac{a}{b}$', - horizontalalignment='center', verticalalignment='center') -plt.show() diff --git a/_downloads/1e2030898fb1f4161a7bb9e1e41430bf/date_concise_formatter.py b/_downloads/1e2030898fb1f4161a7bb9e1e41430bf/date_concise_formatter.py deleted file mode 100644 index da172c597cf..00000000000 --- a/_downloads/1e2030898fb1f4161a7bb9e1e41430bf/date_concise_formatter.py +++ /dev/null @@ -1,183 +0,0 @@ -""" -================================================ -Formatting date ticks using ConciseDateFormatter -================================================ - -Finding good tick values and formatting the ticks for an axis that -has date data is often a challenge. `~.dates.ConciseDateFormatter` is -meant to improve the strings chosen for the ticklabels, and to minimize -the strings used in those tick labels as much as possible. - -.. note:: - - This formatter is a candidate to become the default date tick formatter - in future versions of Matplotlib. Please report any issues or - suggestions for improvement to the github repository or mailing list. - -""" -import datetime -import matplotlib.pyplot as plt -import matplotlib.dates as mdates -import numpy as np - -############################################################################# -# First, the default formatter. - -base = datetime.datetime(2005, 2, 1) -dates = np.array([base + datetime.timedelta(hours=(2 * i)) - for i in range(732)]) -N = len(dates) -np.random.seed(19680801) -y = np.cumsum(np.random.randn(N)) - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) -lims = [(np.datetime64('2005-02'), np.datetime64('2005-04')), - (np.datetime64('2005-02-03'), np.datetime64('2005-02-15')), - (np.datetime64('2005-02-03 11:00'), np.datetime64('2005-02-04 13:20'))] -for nn, ax in enumerate(axs): - ax.plot(dates, y) - ax.set_xlim(lims[nn]) - # rotate_labels... - for label in ax.get_xticklabels(): - label.set_rotation(40) - label.set_horizontalalignment('right') -axs[0].set_title('Default Date Formatter') -plt.show() - -############################################################################# -# The default date formater is quite verbose, so we have the option of -# using `~.dates.ConciseDateFormatter`, as shown below. Note that -# for this example the labels do not need to be rotated as they do for the -# default formatter because the labels are as small as possible. - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) -for nn, ax in enumerate(axs): - locator = mdates.AutoDateLocator(minticks=3, maxticks=7) - formatter = mdates.ConciseDateFormatter(locator) - ax.xaxis.set_major_locator(locator) - ax.xaxis.set_major_formatter(formatter) - - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter') - -plt.show() - -############################################################################# -# If all calls to axes that have dates are to be made using this converter, -# it is probably most convenient to use the units registry where you do -# imports: - -import matplotlib.units as munits -converter = mdates.ConciseDateConverter() -munits.registry[np.datetime64] = converter -munits.registry[datetime.date] = converter -munits.registry[datetime.datetime] = converter - -fig, axs = plt.subplots(3, 1, figsize=(6, 6), constrained_layout=True) -for nn, ax in enumerate(axs): - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter') - -plt.show() - -############################################################################# -# Localization of date formats -# ============================ -# -# Dates formats can be localized if the default formats are not desirable by -# manipulating one of three lists of strings. -# -# The ``formatter.formats`` list of formats is for the normal tick labels, -# There are six levels: years, months, days, hours, minutes, seconds. -# The ``formatter.offset_formats`` is how the "offset" string on the right -# of the axis is formatted. This is usually much more verbose than the tick -# labels. Finally, the ``formatter.zero_formats`` are the formats of the -# ticks that are "zeros". These are tick values that are either the first of -# the year, month, or day of month, or the zeroth hour, minute, or second. -# These are usually the same as the format of -# the ticks a level above. For example if the axis limits mean the ticks are -# mostly days, then we label 1 Mar 2005 simply with a "Mar". If the axis -# limits are mostly hours, we label Feb 4 00:00 as simply "Feb-4". -# -# Note that these format lists can also be passed to `.ConciseDateFormatter` -# as optional kwargs. -# -# Here we modify the labels to be "day month year", instead of the ISO -# "year month day": - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) - -for nn, ax in enumerate(axs): - locator = mdates.AutoDateLocator() - formatter = mdates.ConciseDateFormatter(locator) - formatter.formats = ['%y', # ticks are mostly years - '%b', # ticks are mostly months - '%d', # ticks are mostly days - '%H:%M', # hrs - '%H:%M', # min - '%S.%f', ] # secs - # these are mostly just the level above... - formatter.zero_formats = [''] + formatter.formats[:-1] - # ...except for ticks that are mostly hours, then it is nice to have - # month-day: - formatter.zero_formats[3] = '%d-%b' - - formatter.offset_formats = ['', - '%Y', - '%b %Y', - '%d %b %Y', - '%d %b %Y', - '%d %b %Y %H:%M', ] - ax.xaxis.set_major_locator(locator) - ax.xaxis.set_major_formatter(formatter) - - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter') - -plt.show() - -############################################################################# -# Registering a converter with localization -# ========================================= -# -# `.ConciseDateFormatter` doesn't have rcParams entries, but localization -# can be accomplished by passing kwargs to `~.ConciseDateConverter` and -# registering the datatypes you will use with the units registry: - -import datetime - -formats = ['%y', # ticks are mostly years - '%b', # ticks are mostly months - '%d', # ticks are mostly days - '%H:%M', # hrs - '%H:%M', # min - '%S.%f', ] # secs -# these can be the same, except offset by one level.... -zero_formats = [''] + formats[:-1] -# ...except for ticks that are mostly hours, then its nice to have month-day -zero_formats[3] = '%d-%b' -offset_formats = ['', - '%Y', - '%b %Y', - '%d %b %Y', - '%d %b %Y', - '%d %b %Y %H:%M', ] - -converter = mdates.ConciseDateConverter(formats=formats, - zero_formats=zero_formats, - offset_formats=offset_formats) - -munits.registry[np.datetime64] = converter -munits.registry[datetime.date] = converter -munits.registry[datetime.datetime] = converter - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) -for nn, ax in enumerate(axs): - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter registered non-default') - -plt.show() diff --git a/_downloads/1e213ff4bcc6ccf3128b453a862c04d2/tutorials_python.zip b/_downloads/1e213ff4bcc6ccf3128b453a862c04d2/tutorials_python.zip deleted file mode 120000 index 07865b26dcc..00000000000 --- a/_downloads/1e213ff4bcc6ccf3128b453a862c04d2/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e213ff4bcc6ccf3128b453a862c04d2/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/1e2dbd73396bfa8279925e5dcc05d145/tick_label_right.py b/_downloads/1e2dbd73396bfa8279925e5dcc05d145/tick_label_right.py deleted file mode 100644 index f49492e93bf..00000000000 --- a/_downloads/1e2dbd73396bfa8279925e5dcc05d145/tick_label_right.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -============================================ -Set default y-axis tick labels on the right -============================================ - -We can use :rc:`ytick.labelright` (default False) and :rc:`ytick.right` -(default False) and :rc:`ytick.labelleft` (default True) and :rc:`ytick.left` -(default True) to control where on the axes ticks and their labels appear. -These properties can also be set in the ``.matplotlib/matplotlibrc``. - -""" -import matplotlib.pyplot as plt -import numpy as np - -plt.rcParams['ytick.right'] = plt.rcParams['ytick.labelright'] = True -plt.rcParams['ytick.left'] = plt.rcParams['ytick.labelleft'] = False - -x = np.arange(10) - -fig, (ax0, ax1) = plt.subplots(2, 1, sharex=True, figsize=(6, 6)) - -ax0.plot(x) -ax0.yaxis.tick_left() - -# use default parameter in rcParams, not calling tick_right() -ax1.plot(x) - -plt.show() diff --git a/_downloads/1e2f5621dee653a0399262592181dd9d/demo_ticklabel_alignment.py b/_downloads/1e2f5621dee653a0399262592181dd9d/demo_ticklabel_alignment.py deleted file mode 120000 index 5302d462fdb..00000000000 --- a/_downloads/1e2f5621dee653a0399262592181dd9d/demo_ticklabel_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e2f5621dee653a0399262592181dd9d/demo_ticklabel_alignment.py \ No newline at end of file diff --git a/_downloads/1e31bef9bdec3e8308a8066825f7a42b/barchart.py b/_downloads/1e31bef9bdec3e8308a8066825f7a42b/barchart.py deleted file mode 100644 index b72888e4602..00000000000 --- a/_downloads/1e31bef9bdec3e8308a8066825f7a42b/barchart.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -============================= -Grouped bar chart with labels -============================= - -This example shows a how to create a grouped bar chart and how to annotate -bars with labels. -""" - -import matplotlib -import matplotlib.pyplot as plt -import numpy as np - - -labels = ['G1', 'G2', 'G3', 'G4', 'G5'] -men_means = [20, 34, 30, 35, 27] -women_means = [25, 32, 34, 20, 25] - -x = np.arange(len(labels)) # the label locations -width = 0.35 # the width of the bars - -fig, ax = plt.subplots() -rects1 = ax.bar(x - width/2, men_means, width, label='Men') -rects2 = ax.bar(x + width/2, women_means, width, label='Women') - -# Add some text for labels, title and custom x-axis tick labels, etc. -ax.set_ylabel('Scores') -ax.set_title('Scores by group and gender') -ax.set_xticks(x) -ax.set_xticklabels(labels) -ax.legend() - - -def autolabel(rects): - """Attach a text label above each bar in *rects*, displaying its height.""" - for rect in rects: - height = rect.get_height() - ax.annotate('{}'.format(height), - xy=(rect.get_x() + rect.get_width() / 2, height), - xytext=(0, 3), # 3 points vertical offset - textcoords="offset points", - ha='center', va='bottom') - - -autolabel(rects1) -autolabel(rects2) - -fig.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/1e36112caf56708b1e9ad875271448dd/span_selector.py b/_downloads/1e36112caf56708b1e9ad875271448dd/span_selector.py deleted file mode 120000 index 774c997c03c..00000000000 --- a/_downloads/1e36112caf56708b1e9ad875271448dd/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e36112caf56708b1e9ad875271448dd/span_selector.py \ No newline at end of file diff --git a/_downloads/1e373bf6680e08df56cd78a596917814/font_table.ipynb b/_downloads/1e373bf6680e08df56cd78a596917814/font_table.ipynb deleted file mode 120000 index 6d1c58bfd74..00000000000 --- a/_downloads/1e373bf6680e08df56cd78a596917814/font_table.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e373bf6680e08df56cd78a596917814/font_table.ipynb \ No newline at end of file diff --git a/_downloads/1e377a5ef1b03930553009349aeae1f4/demo_ticklabel_direction.py b/_downloads/1e377a5ef1b03930553009349aeae1f4/demo_ticklabel_direction.py deleted file mode 120000 index e7ac764d921..00000000000 --- a/_downloads/1e377a5ef1b03930553009349aeae1f4/demo_ticklabel_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e377a5ef1b03930553009349aeae1f4/demo_ticklabel_direction.py \ No newline at end of file diff --git a/_downloads/1e6097f23e058f0812d346341ea24fbc/pgf_fonts.ipynb b/_downloads/1e6097f23e058f0812d346341ea24fbc/pgf_fonts.ipynb deleted file mode 100644 index c586b873899..00000000000 --- a/_downloads/1e6097f23e058f0812d346341ea24fbc/pgf_fonts.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pgf Fonts\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.rcParams.update({\n \"font.family\": \"serif\",\n \"font.serif\": [], # use latex default serif font\n \"font.sans-serif\": [\"DejaVu Sans\"], # use a specific sans-serif font\n})\n\nplt.figure(figsize=(4.5, 2.5))\nplt.plot(range(5))\nplt.text(0.5, 3., \"serif\")\nplt.text(0.5, 2., \"monospace\", family=\"monospace\")\nplt.text(2.5, 2., \"sans-serif\", family=\"sans-serif\")\nplt.text(2.5, 1., \"comic sans\", family=\"Comic Sans MS\")\nplt.xlabel(\"\u00b5 is not $\\\\mu$\")\nplt.tight_layout(.5)\n\nplt.savefig(\"pgf_fonts.pdf\")\nplt.savefig(\"pgf_fonts.png\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1e62f75b014f95af18b9a6547fef48c0/simple_axes_divider1.ipynb b/_downloads/1e62f75b014f95af18b9a6547fef48c0/simple_axes_divider1.ipynb deleted file mode 120000 index e0582f3c97d..00000000000 --- a/_downloads/1e62f75b014f95af18b9a6547fef48c0/simple_axes_divider1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e62f75b014f95af18b9a6547fef48c0/simple_axes_divider1.ipynb \ No newline at end of file diff --git a/_downloads/1e63f6d6d52e6106fe321303550ea5e7/anatomy.ipynb b/_downloads/1e63f6d6d52e6106fe321303550ea5e7/anatomy.ipynb deleted file mode 120000 index 89a58c9a304..00000000000 --- a/_downloads/1e63f6d6d52e6106fe321303550ea5e7/anatomy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e63f6d6d52e6106fe321303550ea5e7/anatomy.ipynb \ No newline at end of file diff --git a/_downloads/1e6656a4109c1f3e84f6585d6493aca3/histogram_path.ipynb b/_downloads/1e6656a4109c1f3e84f6585d6493aca3/histogram_path.ipynb deleted file mode 120000 index c34e12b5be8..00000000000 --- a/_downloads/1e6656a4109c1f3e84f6585d6493aca3/histogram_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e6656a4109c1f3e84f6585d6493aca3/histogram_path.ipynb \ No newline at end of file diff --git a/_downloads/1e6db8af19c1edba2cc57d797c35bc28/slider_demo.ipynb b/_downloads/1e6db8af19c1edba2cc57d797c35bc28/slider_demo.ipynb deleted file mode 120000 index 0a7ff029479..00000000000 --- a/_downloads/1e6db8af19c1edba2cc57d797c35bc28/slider_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1e6db8af19c1edba2cc57d797c35bc28/slider_demo.ipynb \ No newline at end of file diff --git a/_downloads/1e71a49030b4febcda6d39439cc99b32/tick_xlabel_top.ipynb b/_downloads/1e71a49030b4febcda6d39439cc99b32/tick_xlabel_top.ipynb deleted file mode 120000 index 6aee29df2ce..00000000000 --- a/_downloads/1e71a49030b4febcda6d39439cc99b32/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e71a49030b4febcda6d39439cc99b32/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/1e73d0c3a4831a9d5e3ad2432e116318/broken_axis.py b/_downloads/1e73d0c3a4831a9d5e3ad2432e116318/broken_axis.py deleted file mode 100644 index 61395537879..00000000000 --- a/_downloads/1e73d0c3a4831a9d5e3ad2432e116318/broken_axis.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -=========== -Broken Axis -=========== - -Broken axis example, where the y-axis will have a portion cut out. -""" -import matplotlib.pyplot as plt -import numpy as np - - -# 30 points between [0, 0.2) originally made using np.random.rand(30)*.2 -pts = np.array([ - 0.015, 0.166, 0.133, 0.159, 0.041, 0.024, 0.195, 0.039, 0.161, 0.018, - 0.143, 0.056, 0.125, 0.096, 0.094, 0.051, 0.043, 0.021, 0.138, 0.075, - 0.109, 0.195, 0.050, 0.074, 0.079, 0.155, 0.020, 0.010, 0.061, 0.008]) - -# Now let's make two outlier points which are far away from everything. -pts[[3, 14]] += .8 - -# If we were to simply plot pts, we'd lose most of the interesting -# details due to the outliers. So let's 'break' or 'cut-out' the y-axis -# into two portions - use the top (ax) for the outliers, and the bottom -# (ax2) for the details of the majority of our data -f, (ax, ax2) = plt.subplots(2, 1, sharex=True) - -# plot the same data on both axes -ax.plot(pts) -ax2.plot(pts) - -# zoom-in / limit the view to different portions of the data -ax.set_ylim(.78, 1.) # outliers only -ax2.set_ylim(0, .22) # most of the data - -# hide the spines between ax and ax2 -ax.spines['bottom'].set_visible(False) -ax2.spines['top'].set_visible(False) -ax.xaxis.tick_top() -ax.tick_params(labeltop=False) # don't put tick labels at the top -ax2.xaxis.tick_bottom() - -# This looks pretty good, and was fairly painless, but you can get that -# cut-out diagonal lines look with just a bit more work. The important -# thing to know here is that in axes coordinates, which are always -# between 0-1, spine endpoints are at these locations (0,0), (0,1), -# (1,0), and (1,1). Thus, we just need to put the diagonals in the -# appropriate corners of each of our axes, and so long as we use the -# right transform and disable clipping. - -d = .015 # how big to make the diagonal lines in axes coordinates -# arguments to pass to plot, just so we don't keep repeating them -kwargs = dict(transform=ax.transAxes, color='k', clip_on=False) -ax.plot((-d, +d), (-d, +d), **kwargs) # top-left diagonal -ax.plot((1 - d, 1 + d), (-d, +d), **kwargs) # top-right diagonal - -kwargs.update(transform=ax2.transAxes) # switch to the bottom axes -ax2.plot((-d, +d), (1 - d, 1 + d), **kwargs) # bottom-left diagonal -ax2.plot((1 - d, 1 + d), (1 - d, 1 + d), **kwargs) # bottom-right diagonal - -# What's cool about this is that now if we vary the distance between -# ax and ax2 via f.subplots_adjust(hspace=...) or plt.subplot_tool(), -# the diagonal lines will move accordingly, and stay right at the tips -# of the spines they are 'breaking' - -plt.show() diff --git a/_downloads/1e7b45e79c54590c7dc045f170952cb5/colormap_normalizations_power.py b/_downloads/1e7b45e79c54590c7dc045f170952cb5/colormap_normalizations_power.py deleted file mode 120000 index d3b0e4b9169..00000000000 --- a/_downloads/1e7b45e79c54590c7dc045f170952cb5/colormap_normalizations_power.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1e7b45e79c54590c7dc045f170952cb5/colormap_normalizations_power.py \ No newline at end of file diff --git a/_downloads/1e828a87e882fd6b301dcf5eab8e93d1/pgf_preamble_sgskip.py b/_downloads/1e828a87e882fd6b301dcf5eab8e93d1/pgf_preamble_sgskip.py deleted file mode 120000 index df0df30bc14..00000000000 --- a/_downloads/1e828a87e882fd6b301dcf5eab8e93d1/pgf_preamble_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1e828a87e882fd6b301dcf5eab8e93d1/pgf_preamble_sgskip.py \ No newline at end of file diff --git a/_downloads/1e84ab770f509f4e95a1f116f4d5c574/simple_axis_direction01.ipynb b/_downloads/1e84ab770f509f4e95a1f116f4d5c574/simple_axis_direction01.ipynb deleted file mode 120000 index 3f52335760c..00000000000 --- a/_downloads/1e84ab770f509f4e95a1f116f4d5c574/simple_axis_direction01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1e84ab770f509f4e95a1f116f4d5c574/simple_axis_direction01.ipynb \ No newline at end of file diff --git a/_downloads/1e8fbd98728f6cd6ffab3ba557bfb7c2/wxcursor_demo_sgskip.py b/_downloads/1e8fbd98728f6cd6ffab3ba557bfb7c2/wxcursor_demo_sgskip.py deleted file mode 120000 index f2b087fd672..00000000000 --- a/_downloads/1e8fbd98728f6cd6ffab3ba557bfb7c2/wxcursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1e8fbd98728f6cd6ffab3ba557bfb7c2/wxcursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/1ea445d0d52f1d212f9e2934af61380f/annotate_simple_coord02.ipynb b/_downloads/1ea445d0d52f1d212f9e2934af61380f/annotate_simple_coord02.ipynb deleted file mode 120000 index 30c9677a829..00000000000 --- a/_downloads/1ea445d0d52f1d212f9e2934af61380f/annotate_simple_coord02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1ea445d0d52f1d212f9e2934af61380f/annotate_simple_coord02.ipynb \ No newline at end of file diff --git a/_downloads/1ec68e0176b4bf83af75fb837f9250e4/annotate_simple04.ipynb b/_downloads/1ec68e0176b4bf83af75fb837f9250e4/annotate_simple04.ipynb deleted file mode 120000 index 10d792c8c82..00000000000 --- a/_downloads/1ec68e0176b4bf83af75fb837f9250e4/annotate_simple04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1ec68e0176b4bf83af75fb837f9250e4/annotate_simple04.ipynb \ No newline at end of file diff --git a/_downloads/1edc91c03fb795f7f6f76885ddcf093b/span_selector.ipynb b/_downloads/1edc91c03fb795f7f6f76885ddcf093b/span_selector.ipynb deleted file mode 120000 index 85b01eec77b..00000000000 --- a/_downloads/1edc91c03fb795f7f6f76885ddcf093b/span_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1edc91c03fb795f7f6f76885ddcf093b/span_selector.ipynb \ No newline at end of file diff --git a/_downloads/1eeaa9459c431272ae5ecdccd109a8e4/violinplot.py b/_downloads/1eeaa9459c431272ae5ecdccd109a8e4/violinplot.py deleted file mode 120000 index 5e9ffa245fe..00000000000 --- a/_downloads/1eeaa9459c431272ae5ecdccd109a8e4/violinplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1eeaa9459c431272ae5ecdccd109a8e4/violinplot.py \ No newline at end of file diff --git a/_downloads/1ef2888bcd4d6a165ee7a27e922fe3b1/ellipse_collection.ipynb b/_downloads/1ef2888bcd4d6a165ee7a27e922fe3b1/ellipse_collection.ipynb deleted file mode 120000 index d25392ebb6d..00000000000 --- a/_downloads/1ef2888bcd4d6a165ee7a27e922fe3b1/ellipse_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1ef2888bcd4d6a165ee7a27e922fe3b1/ellipse_collection.ipynb \ No newline at end of file diff --git a/_downloads/1ef3d8d533bb63a92ffa1e82e39d76c0/contour_label_demo.ipynb b/_downloads/1ef3d8d533bb63a92ffa1e82e39d76c0/contour_label_demo.ipynb deleted file mode 120000 index 0c13f9a5cf8..00000000000 --- a/_downloads/1ef3d8d533bb63a92ffa1e82e39d76c0/contour_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1ef3d8d533bb63a92ffa1e82e39d76c0/contour_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/1ef998d6cd5affb4f5b72b6cbbfe717a/figimage_demo.ipynb b/_downloads/1ef998d6cd5affb4f5b72b6cbbfe717a/figimage_demo.ipynb deleted file mode 100644 index 5e8c3d22382..00000000000 --- a/_downloads/1ef998d6cd5affb4f5b72b6cbbfe717a/figimage_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Figimage Demo\n\n\nThis illustrates placing images directly in the figure, with no Axes objects.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\nZ = np.arange(10000).reshape((100, 100))\nZ[:, 50:] = 1\n\nim1 = fig.figimage(Z, xo=50, yo=0, origin='lower')\nim2 = fig.figimage(Z, xo=100, yo=100, alpha=.8, origin='lower')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.figure.Figure\nmatplotlib.figure.Figure.figimage\nmatplotlib.pyplot.figimage" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1efdbda5a7e710babff25cb708ed644c/multiple_yaxis_with_spines.ipynb b/_downloads/1efdbda5a7e710babff25cb708ed644c/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index 7de9271f6fb..00000000000 --- a/_downloads/1efdbda5a7e710babff25cb708ed644c/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1efdbda5a7e710babff25cb708ed644c/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/1f02663b3cd068bb492c8c7344ba012f/lines3d.ipynb b/_downloads/1f02663b3cd068bb492c8c7344ba012f/lines3d.ipynb deleted file mode 120000 index d0dab8b6de9..00000000000 --- a/_downloads/1f02663b3cd068bb492c8c7344ba012f/lines3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1f02663b3cd068bb492c8c7344ba012f/lines3d.ipynb \ No newline at end of file diff --git a/_downloads/1f02f170eb9fdcc9174920dead89fcca/nested_pie.py b/_downloads/1f02f170eb9fdcc9174920dead89fcca/nested_pie.py deleted file mode 120000 index 6a701619350..00000000000 --- a/_downloads/1f02f170eb9fdcc9174920dead89fcca/nested_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1f02f170eb9fdcc9174920dead89fcca/nested_pie.py \ No newline at end of file diff --git a/_downloads/1f05b3ffb4c9547638831cc78a3d46d8/lifecycle.ipynb b/_downloads/1f05b3ffb4c9547638831cc78a3d46d8/lifecycle.ipynb deleted file mode 120000 index 22795ffbb28..00000000000 --- a/_downloads/1f05b3ffb4c9547638831cc78a3d46d8/lifecycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1f05b3ffb4c9547638831cc78a3d46d8/lifecycle.ipynb \ No newline at end of file diff --git a/_downloads/1f0b0e2378c6bffe8d19d57b9fdb809d/axes_margins.ipynb b/_downloads/1f0b0e2378c6bffe8d19d57b9fdb809d/axes_margins.ipynb deleted file mode 120000 index 6ba4baf9695..00000000000 --- a/_downloads/1f0b0e2378c6bffe8d19d57b9fdb809d/axes_margins.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1f0b0e2378c6bffe8d19d57b9fdb809d/axes_margins.ipynb \ No newline at end of file diff --git a/_downloads/1f1a46f2ea1378ec00b200a2daafb2fd/pipong.py b/_downloads/1f1a46f2ea1378ec00b200a2daafb2fd/pipong.py deleted file mode 120000 index b158f8619e4..00000000000 --- a/_downloads/1f1a46f2ea1378ec00b200a2daafb2fd/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/1f1a46f2ea1378ec00b200a2daafb2fd/pipong.py \ No newline at end of file diff --git a/_downloads/1f344c9dd636b1dcecefe712ee122e4f/wxcursor_demo_sgskip.ipynb b/_downloads/1f344c9dd636b1dcecefe712ee122e4f/wxcursor_demo_sgskip.ipynb deleted file mode 120000 index 1570452873d..00000000000 --- a/_downloads/1f344c9dd636b1dcecefe712ee122e4f/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1f344c9dd636b1dcecefe712ee122e4f/wxcursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1f3485190b01056334052d73c5f2d690/common_date_problems.ipynb b/_downloads/1f3485190b01056334052d73c5f2d690/common_date_problems.ipynb deleted file mode 120000 index baed0924d52..00000000000 --- a/_downloads/1f3485190b01056334052d73c5f2d690/common_date_problems.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1f3485190b01056334052d73c5f2d690/common_date_problems.ipynb \ No newline at end of file diff --git a/_downloads/1f3835aefda3bd4f236d497eb3c144a7/color_cycle.py b/_downloads/1f3835aefda3bd4f236d497eb3c144a7/color_cycle.py deleted file mode 120000 index f6aa53e3483..00000000000 --- a/_downloads/1f3835aefda3bd4f236d497eb3c144a7/color_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1f3835aefda3bd4f236d497eb3c144a7/color_cycle.py \ No newline at end of file diff --git a/_downloads/1f40f1ac65a501182fb53283151d506f/whats_new_98_4_fill_between.ipynb b/_downloads/1f40f1ac65a501182fb53283151d506f/whats_new_98_4_fill_between.ipynb deleted file mode 100644 index 90b6f26fb38..00000000000 --- a/_downloads/1f40f1ac65a501182fb53283151d506f/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fill Between\n\n\nFill the area between two curves.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(-5, 5, 0.01)\ny1 = -5*x*x + x + 10\ny2 = 5*x*x + x\n\nfig, ax = plt.subplots()\nax.plot(x, y1, x, y2, color='black')\nax.fill_between(x, y1, y2, where=y2 >y1, facecolor='yellow', alpha=0.5)\nax.fill_between(x, y1, y2, where=y2 <=y1, facecolor='red', alpha=0.5)\nax.set_title('Fill Between')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.fill_between" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1f4791bba724c99831286952afae946f/rotate_axes3d_sgskip.py b/_downloads/1f4791bba724c99831286952afae946f/rotate_axes3d_sgskip.py deleted file mode 100644 index 666bb68f6cd..00000000000 --- a/_downloads/1f4791bba724c99831286952afae946f/rotate_axes3d_sgskip.py +++ /dev/null @@ -1,28 +0,0 @@ -''' -================== -Rotating a 3D plot -================== - -A very simple animation of a rotating 3D plot. - -See wire3d_animation_demo for another simple example of animating a 3D plot. - -(This example is skipped when building the documentation gallery because it -intentionally takes a long time to run) -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# load some test data for demonstration and plot a wireframe -X, Y, Z = axes3d.get_test_data(0.1) -ax.plot_wireframe(X, Y, Z, rstride=5, cstride=5) - -# rotate the axes and update -for angle in range(0, 360): - ax.view_init(30, angle) - plt.draw() - plt.pause(.001) diff --git a/_downloads/1f4a4f8f03a3659eae3a1eef84fc1439/whats_new_1_subplot3d.ipynb b/_downloads/1f4a4f8f03a3659eae3a1eef84fc1439/whats_new_1_subplot3d.ipynb deleted file mode 120000 index 14b63245570..00000000000 --- a/_downloads/1f4a4f8f03a3659eae3a1eef84fc1439/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1f4a4f8f03a3659eae3a1eef84fc1439/whats_new_1_subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/1f4ae0798e037bc02c5b3ed79be315f3/custom_figure_class.ipynb b/_downloads/1f4ae0798e037bc02c5b3ed79be315f3/custom_figure_class.ipynb deleted file mode 120000 index b5c1b65f184..00000000000 --- a/_downloads/1f4ae0798e037bc02c5b3ed79be315f3/custom_figure_class.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1f4ae0798e037bc02c5b3ed79be315f3/custom_figure_class.ipynb \ No newline at end of file diff --git a/_downloads/1f4f44849a1567258d91e59ef827f417/histogram_cumulative.py b/_downloads/1f4f44849a1567258d91e59ef827f417/histogram_cumulative.py deleted file mode 120000 index 73beaf29ca7..00000000000 --- a/_downloads/1f4f44849a1567258d91e59ef827f417/histogram_cumulative.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1f4f44849a1567258d91e59ef827f417/histogram_cumulative.py \ No newline at end of file diff --git a/_downloads/1f573e76544733470b40b7cc1018cdb9/zorder_demo.py b/_downloads/1f573e76544733470b40b7cc1018cdb9/zorder_demo.py deleted file mode 120000 index 69b8028e8ed..00000000000 --- a/_downloads/1f573e76544733470b40b7cc1018cdb9/zorder_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1f573e76544733470b40b7cc1018cdb9/zorder_demo.py \ No newline at end of file diff --git a/_downloads/1f5e210451fef240bd504364ffdfe7a2/coords_report.ipynb b/_downloads/1f5e210451fef240bd504364ffdfe7a2/coords_report.ipynb deleted file mode 120000 index 073d5e074b7..00000000000 --- a/_downloads/1f5e210451fef240bd504364ffdfe7a2/coords_report.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1f5e210451fef240bd504364ffdfe7a2/coords_report.ipynb \ No newline at end of file diff --git a/_downloads/1f6216b7df3edc5399345edd74e0d353/horizontal_barchart_distribution.py b/_downloads/1f6216b7df3edc5399345edd74e0d353/horizontal_barchart_distribution.py deleted file mode 120000 index 7d2789a97ab..00000000000 --- a/_downloads/1f6216b7df3edc5399345edd74e0d353/horizontal_barchart_distribution.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1f6216b7df3edc5399345edd74e0d353/horizontal_barchart_distribution.py \ No newline at end of file diff --git a/_downloads/1f7367db2693a167313f34b53c4013fc/units_scatter.py b/_downloads/1f7367db2693a167313f34b53c4013fc/units_scatter.py deleted file mode 120000 index 2883e6a571a..00000000000 --- a/_downloads/1f7367db2693a167313f34b53c4013fc/units_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1f7367db2693a167313f34b53c4013fc/units_scatter.py \ No newline at end of file diff --git a/_downloads/1f787985e777d792e34fedfafeb5cb96/watermark_text.ipynb b/_downloads/1f787985e777d792e34fedfafeb5cb96/watermark_text.ipynb deleted file mode 120000 index 0346e02062a..00000000000 --- a/_downloads/1f787985e777d792e34fedfafeb5cb96/watermark_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1f787985e777d792e34fedfafeb5cb96/watermark_text.ipynb \ No newline at end of file diff --git a/_downloads/1f7f54b8b0813598a494a0dd2988e1d9/colormap_normalizations_symlognorm.ipynb b/_downloads/1f7f54b8b0813598a494a0dd2988e1d9/colormap_normalizations_symlognorm.ipynb deleted file mode 100644 index c603b16a010..00000000000 --- a/_downloads/1f7f54b8b0813598a494a0dd2988e1d9/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Symlognorm\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\n\"\"\"\nSymLogNorm: two humps, one negative and one positive, The positive\nwith 5-times the amplitude. Linearly, you cannot see detail in the\nnegative hump. Here we logarithmically scale the positive and\nnegative data separately.\n\nNote that colorbar labels do not come out looking very good.\n\"\"\"\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03,\n vmin=-1.0, vmax=1.0),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1f8d67781b13e3d266ac4223a25f853c/arrow_simple_demo.py b/_downloads/1f8d67781b13e3d266ac4223a25f853c/arrow_simple_demo.py deleted file mode 100644 index c8a07ee204d..00000000000 --- a/_downloads/1f8d67781b13e3d266ac4223a25f853c/arrow_simple_demo.py +++ /dev/null @@ -1,11 +0,0 @@ -""" -================= -Arrow Simple Demo -================= - -""" -import matplotlib.pyplot as plt - -ax = plt.axes() -ax.arrow(0, 0, 0.5, 0.5, head_width=0.05, head_length=0.1, fc='k', ec='k') -plt.show() diff --git a/_downloads/1f8dc2f4b98bd2c9d109f3adad142d1b/date_concise_formatter.ipynb b/_downloads/1f8dc2f4b98bd2c9d109f3adad142d1b/date_concise_formatter.ipynb deleted file mode 120000 index ac2ba892cec..00000000000 --- a/_downloads/1f8dc2f4b98bd2c9d109f3adad142d1b/date_concise_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1f8dc2f4b98bd2c9d109f3adad142d1b/date_concise_formatter.ipynb \ No newline at end of file diff --git a/_downloads/1f945111cdf0ce00cea4577719fb8135/custom_ticker1.ipynb b/_downloads/1f945111cdf0ce00cea4577719fb8135/custom_ticker1.ipynb deleted file mode 120000 index f6e033f7671..00000000000 --- a/_downloads/1f945111cdf0ce00cea4577719fb8135/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1f945111cdf0ce00cea4577719fb8135/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/1f9685f500c107a8bf835ce72377fd50/custom_shaded_3d_surface.py b/_downloads/1f9685f500c107a8bf835ce72377fd50/custom_shaded_3d_surface.py deleted file mode 100644 index e165c59ef28..00000000000 --- a/_downloads/1f9685f500c107a8bf835ce72377fd50/custom_shaded_3d_surface.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -======================================= -Custom hillshading in a 3D surface plot -======================================= - -Demonstrates using custom hillshading in a 3D surface plot. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib import cbook -from matplotlib import cm -from matplotlib.colors import LightSource -import matplotlib.pyplot as plt -import numpy as np - -# Load and format data -with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \ - np.load(file) as dem: - z = dem['elevation'] - nrows, ncols = z.shape - x = np.linspace(dem['xmin'], dem['xmax'], ncols) - y = np.linspace(dem['ymin'], dem['ymax'], nrows) - x, y = np.meshgrid(x, y) - -region = np.s_[5:50, 5:50] -x, y, z = x[region], y[region], z[region] - -# Set up plot -fig, ax = plt.subplots(subplot_kw=dict(projection='3d')) - -ls = LightSource(270, 45) -# To use a custom hillshading mode, override the built-in shading and pass -# in the rgb colors of the shaded surface calculated from "shade". -rgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft') -surf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb, - linewidth=0, antialiased=False, shade=False) - -plt.show() diff --git a/_downloads/1f97d2e38dabe0e52436cc6648b958a8/axes_demo.py b/_downloads/1f97d2e38dabe0e52436cc6648b958a8/axes_demo.py deleted file mode 120000 index 28e75d498b1..00000000000 --- a/_downloads/1f97d2e38dabe0e52436cc6648b958a8/axes_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1f97d2e38dabe0e52436cc6648b958a8/axes_demo.py \ No newline at end of file diff --git a/_downloads/1f9c6f744e3cfc740d48122eeca18f62/pie_demo2.ipynb b/_downloads/1f9c6f744e3cfc740d48122eeca18f62/pie_demo2.ipynb deleted file mode 120000 index 15bc2768c4a..00000000000 --- a/_downloads/1f9c6f744e3cfc740d48122eeca18f62/pie_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1f9c6f744e3cfc740d48122eeca18f62/pie_demo2.ipynb \ No newline at end of file diff --git a/_downloads/1fad0163989a71e30dc20878bbf11d2d/vline_hline_demo.ipynb b/_downloads/1fad0163989a71e30dc20878bbf11d2d/vline_hline_demo.ipynb deleted file mode 120000 index ee67dfaef8b..00000000000 --- a/_downloads/1fad0163989a71e30dc20878bbf11d2d/vline_hline_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1fad0163989a71e30dc20878bbf11d2d/vline_hline_demo.ipynb \ No newline at end of file diff --git a/_downloads/1fb505214e3ac2eb3ef8d8fe62f8a95c/font_table_ttf_sgskip.ipynb b/_downloads/1fb505214e3ac2eb3ef8d8fe62f8a95c/font_table_ttf_sgskip.ipynb deleted file mode 120000 index 24c7ba2f198..00000000000 --- a/_downloads/1fb505214e3ac2eb3ef8d8fe62f8a95c/font_table_ttf_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1fb505214e3ac2eb3ef8d8fe62f8a95c/font_table_ttf_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1fd333a64a0449f4ebbf79de712eec76/annotation_basic.ipynb b/_downloads/1fd333a64a0449f4ebbf79de712eec76/annotation_basic.ipynb deleted file mode 100644 index bd6f79f7f93..00000000000 --- a/_downloads/1fd333a64a0449f4ebbf79de712eec76/annotation_basic.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotating a plot\n\n\nThis example shows how to annotate a plot with an arrow pointing to provided\ncoordinates. We modify the defaults of the arrow, to \"shrink\" it.\n\nFor a complete overview of the annotation capabilities, also see the\n:doc:`annotation tutorial`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\nline, = ax.plot(t, s, lw=2)\n\nax.annotate('local max', xy=(2, 1), xytext=(3, 1.5),\n arrowprops=dict(facecolor='black', shrink=0.05),\n )\nax.set_ylim(-2, 2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/1fe3cc7d9677d3a9857d4d390b2be6e4/image_masked.py b/_downloads/1fe3cc7d9677d3a9857d4d390b2be6e4/image_masked.py deleted file mode 120000 index 2a8a5759e53..00000000000 --- a/_downloads/1fe3cc7d9677d3a9857d4d390b2be6e4/image_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1fe3cc7d9677d3a9857d4d390b2be6e4/image_masked.py \ No newline at end of file diff --git a/_downloads/1ff0e3d0c0dd4ca756de31cd8269e75c/scatter.py b/_downloads/1ff0e3d0c0dd4ca756de31cd8269e75c/scatter.py deleted file mode 120000 index ae3f4a71807..00000000000 --- a/_downloads/1ff0e3d0c0dd4ca756de31cd8269e75c/scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/1ff0e3d0c0dd4ca756de31cd8269e75c/scatter.py \ No newline at end of file diff --git a/_downloads/1ff43081856721aa77f09ac104f9df30/contourf_hatching.py b/_downloads/1ff43081856721aa77f09ac104f9df30/contourf_hatching.py deleted file mode 120000 index ff5a6fd1ec8..00000000000 --- a/_downloads/1ff43081856721aa77f09ac104f9df30/contourf_hatching.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/1ff43081856721aa77f09ac104f9df30/contourf_hatching.py \ No newline at end of file diff --git a/_downloads/1ff676a94f492088b89beb4f56a0c9ce/image_thumbnail_sgskip.ipynb b/_downloads/1ff676a94f492088b89beb4f56a0c9ce/image_thumbnail_sgskip.ipynb deleted file mode 120000 index 78141fd1af8..00000000000 --- a/_downloads/1ff676a94f492088b89beb4f56a0c9ce/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/1ff676a94f492088b89beb4f56a0c9ce/image_thumbnail_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/1ffc3ba610c81977bb5cfbfb4f978e38/text_layout.ipynb b/_downloads/1ffc3ba610c81977bb5cfbfb4f978e38/text_layout.ipynb deleted file mode 120000 index 799725e54cb..00000000000 --- a/_downloads/1ffc3ba610c81977bb5cfbfb4f978e38/text_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/1ffc3ba610c81977bb5cfbfb4f978e38/text_layout.ipynb \ No newline at end of file diff --git a/_downloads/1ffed333626c7d15f806e6ccc2e30e74/demo_floating_axes.py b/_downloads/1ffed333626c7d15f806e6ccc2e30e74/demo_floating_axes.py deleted file mode 120000 index f5ee17cea53..00000000000 --- a/_downloads/1ffed333626c7d15f806e6ccc2e30e74/demo_floating_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/1ffed333626c7d15f806e6ccc2e30e74/demo_floating_axes.py \ No newline at end of file diff --git a/_downloads/20097d997d38e5efae9d8a811056462f/artist_tests.py b/_downloads/20097d997d38e5efae9d8a811056462f/artist_tests.py deleted file mode 120000 index 64ccfbfe76d..00000000000 --- a/_downloads/20097d997d38e5efae9d8a811056462f/artist_tests.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/20097d997d38e5efae9d8a811056462f/artist_tests.py \ No newline at end of file diff --git a/_downloads/200ba268e01b6604e4feddd466d2f399/polar_demo.py b/_downloads/200ba268e01b6604e4feddd466d2f399/polar_demo.py deleted file mode 120000 index 977d3e262dc..00000000000 --- a/_downloads/200ba268e01b6604e4feddd466d2f399/polar_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/200ba268e01b6604e4feddd466d2f399/polar_demo.py \ No newline at end of file diff --git a/_downloads/200c2952728f69e14489850fd0010e5b/svg_filter_pie.ipynb b/_downloads/200c2952728f69e14489850fd0010e5b/svg_filter_pie.ipynb deleted file mode 120000 index a917ccc675d..00000000000 --- a/_downloads/200c2952728f69e14489850fd0010e5b/svg_filter_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/200c2952728f69e14489850fd0010e5b/svg_filter_pie.ipynb \ No newline at end of file diff --git a/_downloads/200d68918b37aa03b22bc756bb2ff184/simple_axes_divider2.ipynb b/_downloads/200d68918b37aa03b22bc756bb2ff184/simple_axes_divider2.ipynb deleted file mode 100644 index e15ce311fee..00000000000 --- a/_downloads/200d68918b37aa03b22bc756bb2ff184/simple_axes_divider2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axes Divider 2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits.axes_grid1.axes_size as Size\nfrom mpl_toolkits.axes_grid1 import Divider\nimport matplotlib.pyplot as plt\n\nfig = plt.figure(figsize=(5.5, 4.))\n\n# the rect parameter will be ignore as we will set axes_locator\nrect = (0.1, 0.1, 0.8, 0.8)\nax = [fig.add_axes(rect, label=\"%d\" % i) for i in range(4)]\n\nhoriz = [Size.Scaled(1.5), Size.Fixed(.5), Size.Scaled(1.),\n Size.Scaled(.5)]\n\nvert = [Size.Scaled(1.), Size.Fixed(.5), Size.Scaled(1.5)]\n\n# divide the axes rectangle into grid whose size is specified by horiz * vert\ndivider = Divider(fig, rect, horiz, vert, aspect=False)\n\nax[0].set_axes_locator(divider.new_locator(nx=0, ny=0))\nax[1].set_axes_locator(divider.new_locator(nx=0, ny=2))\nax[2].set_axes_locator(divider.new_locator(nx=2, ny=2))\nax[3].set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0))\n\nfor ax1 in ax:\n ax1.tick_params(labelbottom=False, labelleft=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/200f89a97624bd3fd9674cf3835ae412/bars3d.py b/_downloads/200f89a97624bd3fd9674cf3835ae412/bars3d.py deleted file mode 120000 index e36bb5d46c7..00000000000 --- a/_downloads/200f89a97624bd3fd9674cf3835ae412/bars3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/200f89a97624bd3fd9674cf3835ae412/bars3d.py \ No newline at end of file diff --git a/_downloads/2012043364656c2489f91dccce3cf067/demo_axes_rgb.ipynb b/_downloads/2012043364656c2489f91dccce3cf067/demo_axes_rgb.ipynb deleted file mode 100644 index 8070997fc70..00000000000 --- a/_downloads/2012043364656c2489f91dccce3cf067/demo_axes_rgb.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes RGB\n\n\nRGBAxes to show RGB composite images.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.axes_rgb import make_rgb_axes, RGBAxes\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef get_rgb():\n Z, extent = get_demo_image()\n\n Z[Z < 0] = 0.\n Z = Z / Z.max()\n\n R = Z[:13, :13]\n G = Z[2:, 2:]\n B = Z[:13, 2:]\n\n return R, G, B\n\n\ndef make_cube(r, g, b):\n ny, nx = r.shape\n R = np.zeros([ny, nx, 3], dtype=\"d\")\n R[:, :, 0] = r\n G = np.zeros_like(R)\n G[:, :, 1] = g\n B = np.zeros_like(R)\n B[:, :, 2] = b\n\n RGB = R + G + B\n\n return R, G, B, RGB\n\n\ndef demo_rgb():\n fig, ax = plt.subplots()\n ax_r, ax_g, ax_b = make_rgb_axes(ax, pad=0.02)\n\n r, g, b = get_rgb()\n im_r, im_g, im_b, im_rgb = make_cube(r, g, b)\n kwargs = dict(origin=\"lower\", interpolation=\"nearest\")\n ax.imshow(im_rgb, **kwargs)\n ax_r.imshow(im_r, **kwargs)\n ax_g.imshow(im_g, **kwargs)\n ax_b.imshow(im_b, **kwargs)\n\n\ndef demo_rgb2():\n fig = plt.figure()\n ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8], pad=0.0)\n\n r, g, b = get_rgb()\n kwargs = dict(origin=\"lower\", interpolation=\"nearest\")\n ax.imshow_rgb(r, g, b, **kwargs)\n\n ax.RGB.set_xlim(0., 9.5)\n ax.RGB.set_ylim(0.9, 10.6)\n\n for ax1 in [ax.RGB, ax.R, ax.G, ax.B]:\n ax1.tick_params(axis='both', direction='in')\n for sp1 in ax1.spines.values():\n sp1.set_color(\"w\")\n for tick in ax1.xaxis.get_major_ticks() + ax1.yaxis.get_major_ticks():\n tick.tick1line.set_markeredgecolor(\"w\")\n tick.tick2line.set_markeredgecolor(\"w\")\n\n return ax\n\n\ndemo_rgb()\ndemo_rgb2()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/201501ef1714f6f71b3f2fe0dd7ddeae/mandelbrot.py b/_downloads/201501ef1714f6f71b3f2fe0dd7ddeae/mandelbrot.py deleted file mode 120000 index 82fb0433a64..00000000000 --- a/_downloads/201501ef1714f6f71b3f2fe0dd7ddeae/mandelbrot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/201501ef1714f6f71b3f2fe0dd7ddeae/mandelbrot.py \ No newline at end of file diff --git a/_downloads/2018481c7f104b447e00b9df2654b4e0/multiple_histograms_side_by_side.ipynb b/_downloads/2018481c7f104b447e00b9df2654b4e0/multiple_histograms_side_by_side.ipynb deleted file mode 120000 index 5690047d812..00000000000 --- a/_downloads/2018481c7f104b447e00b9df2654b4e0/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2018481c7f104b447e00b9df2654b4e0/multiple_histograms_side_by_side.ipynb \ No newline at end of file diff --git a/_downloads/202888dc0b7b983ff7f5605ff6243d12/custom_projection.ipynb b/_downloads/202888dc0b7b983ff7f5605ff6243d12/custom_projection.ipynb deleted file mode 120000 index 85fabdc67fc..00000000000 --- a/_downloads/202888dc0b7b983ff7f5605ff6243d12/custom_projection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/202888dc0b7b983ff7f5605ff6243d12/custom_projection.ipynb \ No newline at end of file diff --git a/_downloads/2041e61a72da71996aea06d3adecfac2/figimage_demo.py b/_downloads/2041e61a72da71996aea06d3adecfac2/figimage_demo.py deleted file mode 120000 index 498e8456418..00000000000 --- a/_downloads/2041e61a72da71996aea06d3adecfac2/figimage_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2041e61a72da71996aea06d3adecfac2/figimage_demo.py \ No newline at end of file diff --git a/_downloads/2044bb03230c06ca0923472f3832cb80/topographic_hillshading.py b/_downloads/2044bb03230c06ca0923472f3832cb80/topographic_hillshading.py deleted file mode 120000 index d7e87793442..00000000000 --- a/_downloads/2044bb03230c06ca0923472f3832cb80/topographic_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2044bb03230c06ca0923472f3832cb80/topographic_hillshading.py \ No newline at end of file diff --git a/_downloads/2055b59bde812e9b46515e774fc0cdb9/bmh.ipynb b/_downloads/2055b59bde812e9b46515e774fc0cdb9/bmh.ipynb deleted file mode 100644 index 90912b30c05..00000000000 --- a/_downloads/2055b59bde812e9b46515e774fc0cdb9/bmh.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bayesian Methods for Hackers style sheet\n\n\nThis example demonstrates the style used in the Bayesian Methods for Hackers\n[1]_ online book.\n\n.. [1] http://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from numpy.random import beta\nimport matplotlib.pyplot as plt\n\n\nplt.style.use('bmh')\n\n\ndef plot_beta_hist(ax, a, b):\n ax.hist(beta(a, b, size=10000), histtype=\"stepfilled\",\n bins=25, alpha=0.8, density=True)\n\n\nfig, ax = plt.subplots()\nplot_beta_hist(ax, 10, 10)\nplot_beta_hist(ax, 4, 12)\nplot_beta_hist(ax, 50, 12)\nplot_beta_hist(ax, 6, 55)\nax.set_title(\"'bmh' style sheet\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/205f660d776754a4593085dce76fce3b/embedding_in_wx5_sgskip.ipynb b/_downloads/205f660d776754a4593085dce76fce3b/embedding_in_wx5_sgskip.ipynb deleted file mode 120000 index 2a77481b85e..00000000000 --- a/_downloads/205f660d776754a4593085dce76fce3b/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/205f660d776754a4593085dce76fce3b/embedding_in_wx5_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/2061eb87138461ce7aae94d62ea5dda1/voxels_numpy_logo.py b/_downloads/2061eb87138461ce7aae94d62ea5dda1/voxels_numpy_logo.py deleted file mode 100644 index 38b00b49f4d..00000000000 --- a/_downloads/2061eb87138461ce7aae94d62ea5dda1/voxels_numpy_logo.py +++ /dev/null @@ -1,49 +0,0 @@ -''' -=============================== -3D voxel plot of the numpy logo -=============================== - -Demonstrates using ``ax.voxels`` with uneven coordinates -''' -import matplotlib.pyplot as plt -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def explode(data): - size = np.array(data.shape)*2 - data_e = np.zeros(size - 1, dtype=data.dtype) - data_e[::2, ::2, ::2] = data - return data_e - -# build up the numpy logo -n_voxels = np.zeros((4, 3, 4), dtype=bool) -n_voxels[0, 0, :] = True -n_voxels[-1, 0, :] = True -n_voxels[1, 0, 2] = True -n_voxels[2, 0, 1] = True -facecolors = np.where(n_voxels, '#FFD65DC0', '#7A88CCC0') -edgecolors = np.where(n_voxels, '#BFAB6E', '#7D84A6') -filled = np.ones(n_voxels.shape) - -# upscale the above voxel image, leaving gaps -filled_2 = explode(filled) -fcolors_2 = explode(facecolors) -ecolors_2 = explode(edgecolors) - -# Shrink the gaps -x, y, z = np.indices(np.array(filled_2.shape) + 1).astype(float) // 2 -x[0::2, :, :] += 0.05 -y[:, 0::2, :] += 0.05 -z[:, :, 0::2] += 0.05 -x[1::2, :, :] += 0.95 -y[:, 1::2, :] += 0.95 -z[:, :, 1::2] += 0.95 - -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(x, y, z, filled_2, facecolors=fcolors_2, edgecolors=ecolors_2) - -plt.show() diff --git a/_downloads/2062828a694619357886351a050739bf/ftface_props.ipynb b/_downloads/2062828a694619357886351a050739bf/ftface_props.ipynb deleted file mode 120000 index e2d669f15ec..00000000000 --- a/_downloads/2062828a694619357886351a050739bf/ftface_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2062828a694619357886351a050739bf/ftface_props.ipynb \ No newline at end of file diff --git a/_downloads/20666be039c3b1d512a6e7b201feea39/subplot3d.ipynb b/_downloads/20666be039c3b1d512a6e7b201feea39/subplot3d.ipynb deleted file mode 100644 index 3a88ea9e85f..00000000000 --- a/_downloads/20666be039c3b1d512a6e7b201feea39/subplot3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D plots as subplots\n\n\nDemonstrate including 3D plots as subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib import cm\nimport numpy as np\n\nfrom mpl_toolkits.mplot3d.axes3d import get_test_data\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\n# set up a figure twice as wide as it is tall\nfig = plt.figure(figsize=plt.figaspect(0.5))\n\n#===============\n# First subplot\n#===============\n# set up the axes for the first plot\nax = fig.add_subplot(1, 2, 1, projection='3d')\n\n# plot a 3D surface like in the example mplot3d/surface3d_demo\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\nsurf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm,\n linewidth=0, antialiased=False)\nax.set_zlim(-1.01, 1.01)\nfig.colorbar(surf, shrink=0.5, aspect=10)\n\n#===============\n# Second subplot\n#===============\n# set up the axes for the second plot\nax = fig.add_subplot(1, 2, 2, projection='3d')\n\n# plot a 3D wireframe like in the example mplot3d/wire3d_demo\nX, Y, Z = get_test_data(0.05)\nax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/206712680e8ff6d54ef8e2c5eca7ec62/barh.ipynb b/_downloads/206712680e8ff6d54ef8e2c5eca7ec62/barh.ipynb deleted file mode 120000 index 18c90748f5e..00000000000 --- a/_downloads/206712680e8ff6d54ef8e2c5eca7ec62/barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/206712680e8ff6d54ef8e2c5eca7ec62/barh.ipynb \ No newline at end of file diff --git a/_downloads/206f30862fe6dd73212822d5faa45e05/multi_image.py b/_downloads/206f30862fe6dd73212822d5faa45e05/multi_image.py deleted file mode 120000 index c27d8806a2e..00000000000 --- a/_downloads/206f30862fe6dd73212822d5faa45e05/multi_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/206f30862fe6dd73212822d5faa45e05/multi_image.py \ No newline at end of file diff --git a/_downloads/2078ca98f20a1d7e5ed6d49032de7935/colormap_normalizations_custom.py b/_downloads/2078ca98f20a1d7e5ed6d49032de7935/colormap_normalizations_custom.py deleted file mode 120000 index 0e434fb3a61..00000000000 --- a/_downloads/2078ca98f20a1d7e5ed6d49032de7935/colormap_normalizations_custom.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/2078ca98f20a1d7e5ed6d49032de7935/colormap_normalizations_custom.py \ No newline at end of file diff --git a/_downloads/207fe94ae5c42022ad65d9ca7897d375/tick_labels_from_values.ipynb b/_downloads/207fe94ae5c42022ad65d9ca7897d375/tick_labels_from_values.ipynb deleted file mode 120000 index f5fb1b891b0..00000000000 --- a/_downloads/207fe94ae5c42022ad65d9ca7897d375/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/207fe94ae5c42022ad65d9ca7897d375/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/2093d89024338e445161580da8e68837/compound_path.py b/_downloads/2093d89024338e445161580da8e68837/compound_path.py deleted file mode 120000 index d0357500d45..00000000000 --- a/_downloads/2093d89024338e445161580da8e68837/compound_path.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2093d89024338e445161580da8e68837/compound_path.py \ No newline at end of file diff --git a/_downloads/2094089585f6205dadeea65702287a01/demo_parasite_axes.py b/_downloads/2094089585f6205dadeea65702287a01/demo_parasite_axes.py deleted file mode 100644 index 5c877c8d081..00000000000 --- a/_downloads/2094089585f6205dadeea65702287a01/demo_parasite_axes.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -================== -Parasite Axes demo -================== - -Create a parasite axes. Such axes would share the x scale with a host axes, -but show a different scale in y direction. - -This approach uses `mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and -`mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes`. - -An alternative approach using standard Matplotlib subplots is shown in the -:doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example. - -An alternative approach using the :ref:`toolkit_axesgrid1-index` -and :ref:`toolkit_axisartist-index` is found in the -:doc:`/gallery/axisartist/demo_parasite_axes2` example. -""" - -from mpl_toolkits.axisartist.parasite_axes import HostAxes, ParasiteAxes -import matplotlib.pyplot as plt - - -fig = plt.figure() - -host = HostAxes(fig, [0.15, 0.1, 0.65, 0.8]) -par1 = ParasiteAxes(host, sharex=host) -par2 = ParasiteAxes(host, sharex=host) -host.parasites.append(par1) -host.parasites.append(par2) - -host.set_ylabel("Density") -host.set_xlabel("Distance") - -host.axis["right"].set_visible(False) -par1.axis["right"].set_visible(True) -par1.set_ylabel("Temperature") - -par1.axis["right"].major_ticklabels.set_visible(True) -par1.axis["right"].label.set_visible(True) - -par2.set_ylabel("Velocity") -offset = (60, 0) -new_axisline = par2.get_grid_helper().new_fixed_axis -par2.axis["right2"] = new_axisline(loc="right", axes=par2, offset=offset) - -fig.add_axes(host) - -host.set_xlim(0, 2) -host.set_ylim(0, 2) - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par1.set_ylabel("Temperature") - -p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density") -p2, = par1.plot([0, 1, 2], [0, 3, 2], label="Temperature") -p3, = par2.plot([0, 1, 2], [50, 30, 15], label="Velocity") - -par1.set_ylim(0, 4) -par2.set_ylim(1, 65) - -host.legend() - -host.axis["left"].label.set_color(p1.get_color()) -par1.axis["right"].label.set_color(p2.get_color()) -par2.axis["right2"].label.set_color(p3.get_color()) - -plt.show() diff --git a/_downloads/20967733723ab2c5e07f0f3e09842182/align_labels_demo.ipynb b/_downloads/20967733723ab2c5e07f0f3e09842182/align_labels_demo.ipynb deleted file mode 120000 index 9969850054e..00000000000 --- a/_downloads/20967733723ab2c5e07f0f3e09842182/align_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/20967733723ab2c5e07f0f3e09842182/align_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/209af0e5f55a6328e71ab231158297ac/axis_direction_demo_step03.py b/_downloads/209af0e5f55a6328e71ab231158297ac/axis_direction_demo_step03.py deleted file mode 120000 index 7ae1117fa72..00000000000 --- a/_downloads/209af0e5f55a6328e71ab231158297ac/axis_direction_demo_step03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/209af0e5f55a6328e71ab231158297ac/axis_direction_demo_step03.py \ No newline at end of file diff --git a/_downloads/20a4ed9ddc1c74743dae724f90cd584e/barchart_demo.py b/_downloads/20a4ed9ddc1c74743dae724f90cd584e/barchart_demo.py deleted file mode 120000 index c5b6e54d8b2..00000000000 --- a/_downloads/20a4ed9ddc1c74743dae724f90cd584e/barchart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/20a4ed9ddc1c74743dae724f90cd584e/barchart_demo.py \ No newline at end of file diff --git a/_downloads/20a7c3ca643ae22827c9b3647fdea956/contourf3d_2.py b/_downloads/20a7c3ca643ae22827c9b3647fdea956/contourf3d_2.py deleted file mode 100644 index b76c77d57b9..00000000000 --- a/_downloads/20a7c3ca643ae22827c9b3647fdea956/contourf3d_2.py +++ /dev/null @@ -1,38 +0,0 @@ -''' -====================================== -Projecting filled contour onto a graph -====================================== - -Demonstrates displaying a 3D surface while also projecting filled contour -'profiles' onto the 'walls' of the graph. - -See contour3d_demo2 for the unfilled version. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot the 3D surface -ax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3) - -# Plot projections of the contours for each dimension. By choosing offsets -# that match the appropriate axes limits, the projected contours will sit on -# the 'walls' of the graph -cset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm) -cset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm) -cset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm) - -ax.set_xlim(-40, 40) -ax.set_ylim(-40, 40) -ax.set_zlim(-100, 100) - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -plt.show() diff --git a/_downloads/20aa0167662b33566c674edea77e42ca/tick-locators.py b/_downloads/20aa0167662b33566c674edea77e42ca/tick-locators.py deleted file mode 120000 index 6d818e57018..00000000000 --- a/_downloads/20aa0167662b33566c674edea77e42ca/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/20aa0167662b33566c674edea77e42ca/tick-locators.py \ No newline at end of file diff --git a/_downloads/20c062573409255a5dd59ad319699ade/ticklabels_rotation.py b/_downloads/20c062573409255a5dd59ad319699ade/ticklabels_rotation.py deleted file mode 100644 index 3a2fd07442e..00000000000 --- a/_downloads/20c062573409255a5dd59ad319699ade/ticklabels_rotation.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -=========================== -Rotating custom tick labels -=========================== - -Demo of custom tick-labels with user-defined rotation. -""" -import matplotlib.pyplot as plt - - -x = [1, 2, 3, 4] -y = [1, 4, 9, 6] -labels = ['Frogs', 'Hogs', 'Bogs', 'Slogs'] - -plt.plot(x, y) -# You can specify a rotation for the tick labels in degrees or with keywords. -plt.xticks(x, labels, rotation='vertical') -# Pad margins so that markers don't get clipped by the axes -plt.margins(0.2) -# Tweak spacing to prevent clipping of tick-labels -plt.subplots_adjust(bottom=0.15) -plt.show() diff --git a/_downloads/20c23a26d89a6845f66e46e91a897db8/irregulardatagrid.py b/_downloads/20c23a26d89a6845f66e46e91a897db8/irregulardatagrid.py deleted file mode 100644 index 643e3a911c7..00000000000 --- a/_downloads/20c23a26d89a6845f66e46e91a897db8/irregulardatagrid.py +++ /dev/null @@ -1,104 +0,0 @@ -""" -======================================= -Contour plot of irregularly spaced data -======================================= - -Comparison of a contour plot of irregularly spaced data interpolated -on a regular grid versus a tricontour plot for an unstructured triangular grid. - -Since `~.axes.Axes.contour` and `~.axes.Axes.contourf` expect the data to live -on a regular grid, plotting a contour plot of irregularly spaced data requires -different methods. The two options are: - -* Interpolate the data to a regular grid first. This can be done with on-board - means, e.g. via `~.tri.LinearTriInterpolator` or using external functionality - e.g. via `scipy.interpolate.griddata`. Then plot the interpolated data with - the usual `~.axes.Axes.contour`. -* Directly use `~.axes.Axes.tricontour` or `~.axes.Axes.tricontourf` which will - perform a triangulation internally. - -This example shows both methods in action. -""" - -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -np.random.seed(19680801) -npts = 200 -ngridx = 100 -ngridy = 200 -x = np.random.uniform(-2, 2, npts) -y = np.random.uniform(-2, 2, npts) -z = x * np.exp(-x**2 - y**2) - -fig, (ax1, ax2) = plt.subplots(nrows=2) - -# ----------------------- -# Interpolation on a grid -# ----------------------- -# A contour plot of irregularly spaced data coordinates -# via interpolation on a grid. - -# Create grid values first. -xi = np.linspace(-2.1, 2.1, ngridx) -yi = np.linspace(-2.1, 2.1, ngridy) - -# Perform linear interpolation of the data (x,y) -# on a grid defined by (xi,yi) -triang = tri.Triangulation(x, y) -interpolator = tri.LinearTriInterpolator(triang, z) -Xi, Yi = np.meshgrid(xi, yi) -zi = interpolator(Xi, Yi) - -# Note that scipy.interpolate provides means to interpolate data on a grid -# as well. The following would be an alternative to the four lines above: -#from scipy.interpolate import griddata -#zi = griddata((x, y), z, (xi[None,:], yi[:,None]), method='linear') - - -ax1.contour(xi, yi, zi, levels=14, linewidths=0.5, colors='k') -cntr1 = ax1.contourf(xi, yi, zi, levels=14, cmap="RdBu_r") - -fig.colorbar(cntr1, ax=ax1) -ax1.plot(x, y, 'ko', ms=3) -ax1.set(xlim=(-2, 2), ylim=(-2, 2)) -ax1.set_title('grid and contour (%d points, %d grid points)' % - (npts, ngridx * ngridy)) - - -# ---------- -# Tricontour -# ---------- -# Directly supply the unordered, irregularly spaced coordinates -# to tricontour. - -ax2.tricontour(x, y, z, levels=14, linewidths=0.5, colors='k') -cntr2 = ax2.tricontourf(x, y, z, levels=14, cmap="RdBu_r") - -fig.colorbar(cntr2, ax=ax2) -ax2.plot(x, y, 'ko', ms=3) -ax2.set(xlim=(-2, 2), ylim=(-2, 2)) -ax2.set_title('tricontour (%d points)' % npts) - -plt.subplots_adjust(hspace=0.5) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf diff --git a/_downloads/20c2bbfa20d7ccf7d7f6e691ef4ce1e6/pgf_fonts.py b/_downloads/20c2bbfa20d7ccf7d7f6e691ef4ce1e6/pgf_fonts.py deleted file mode 120000 index 3372416e1ca..00000000000 --- a/_downloads/20c2bbfa20d7ccf7d7f6e691ef4ce1e6/pgf_fonts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/20c2bbfa20d7ccf7d7f6e691ef4ce1e6/pgf_fonts.py \ No newline at end of file diff --git a/_downloads/20c8c7ca5d3f0cb7e8b987de6ba60f84/simple_annotate01.ipynb b/_downloads/20c8c7ca5d3f0cb7e8b987de6ba60f84/simple_annotate01.ipynb deleted file mode 120000 index 0029df76bed..00000000000 --- a/_downloads/20c8c7ca5d3f0cb7e8b987de6ba60f84/simple_annotate01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/20c8c7ca5d3f0cb7e8b987de6ba60f84/simple_annotate01.ipynb \ No newline at end of file diff --git a/_downloads/20c8f2633e6ed203be908b120e2aa677/contour3d_3.py b/_downloads/20c8f2633e6ed203be908b120e2aa677/contour3d_3.py deleted file mode 120000 index a33c8f96c87..00000000000 --- a/_downloads/20c8f2633e6ed203be908b120e2aa677/contour3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/20c8f2633e6ed203be908b120e2aa677/contour3d_3.py \ No newline at end of file diff --git a/_downloads/20caf3e16062ef31a72819e3c03c1072/spines_bounds.py b/_downloads/20caf3e16062ef31a72819e3c03c1072/spines_bounds.py deleted file mode 120000 index 38581345fcf..00000000000 --- a/_downloads/20caf3e16062ef31a72819e3c03c1072/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/20caf3e16062ef31a72819e3c03c1072/spines_bounds.py \ No newline at end of file diff --git a/_downloads/20cdf5d6a41b563e2ad7f13d2f8eb742/constrainedlayout_guide.py b/_downloads/20cdf5d6a41b563e2ad7f13d2f8eb742/constrainedlayout_guide.py deleted file mode 100644 index 621a0dbe33f..00000000000 --- a/_downloads/20cdf5d6a41b563e2ad7f13d2f8eb742/constrainedlayout_guide.py +++ /dev/null @@ -1,826 +0,0 @@ -""" -================================ -Constrained Layout Guide -================================ - -How to use constrained-layout to fit plots within your figure cleanly. - -*constrained_layout* automatically adjusts subplots and decorations like -legends and colorbars so that they fit in the figure window while still -preserving, as best they can, the logical layout requested by the user. - -*constrained_layout* is similar to -:doc:`tight_layout`, -but uses a constraint solver to determine the size of axes that allows -them to fit. - -*constrained_layout* needs to be activated before any axes are added to -a figure. Two ways of doing so are - -* using the respective argument to :func:`~.pyplot.subplots` or - :func:`~.pyplot.figure`, e.g.:: - - plt.subplots(constrained_layout=True) - -* activate it via :ref:`rcParams`, like:: - - plt.rcParams['figure.constrained_layout.use'] = True - -Those are described in detail throughout the following sections. - -.. warning:: - - Currently Constrained Layout is **experimental**. The - behaviour and API are subject to change, or the whole functionality - may be removed without a deprecation period. If you *require* your - plots to be absolutely reproducible, get the Axes positions after - running Constrained Layout and use ``ax.set_position()`` in your code - with ``constrained_layout=False``. - -Simple Example -============== - -In Matplotlib, the location of axes (including subplots) are specified in -normalized figure coordinates. It can happen that your axis labels or -titles (or sometimes even ticklabels) go outside the figure area, and are thus -clipped. - -""" - -# sphinx_gallery_thumbnail_number = 18 - - -import matplotlib.pyplot as plt -import matplotlib.colors as mcolors -import matplotlib.gridspec as gridspec -import numpy as np - - -plt.rcParams['savefig.facecolor'] = "0.8" -plt.rcParams['figure.figsize'] = 4.5, 4. - - -def example_plot(ax, fontsize=12, nodec=False): - ax.plot([1, 2]) - - ax.locator_params(nbins=3) - if not nodec: - ax.set_xlabel('x-label', fontsize=fontsize) - ax.set_ylabel('y-label', fontsize=fontsize) - ax.set_title('Title', fontsize=fontsize) - else: - ax.set_xticklabels('') - ax.set_yticklabels('') - - -fig, ax = plt.subplots(constrained_layout=False) -example_plot(ax, fontsize=24) - -############################################################################### -# To prevent this, the location of axes needs to be adjusted. For -# subplots, this can be done by adjusting the subplot params -# (:ref:`howto-subplots-adjust`). However, specifying your figure with the -# ``constrained_layout=True`` kwarg will do the adjusting automatically. - -fig, ax = plt.subplots(constrained_layout=True) -example_plot(ax, fontsize=24) - -############################################################################### -# When you have multiple subplots, often you see labels of different -# axes overlapping each other. - -fig, axs = plt.subplots(2, 2, constrained_layout=False) -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# Specifying ``constrained_layout=True`` in the call to ``plt.subplots`` -# causes the layout to be properly constrained. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# Colorbars -# ========= -# -# If you create a colorbar with the :func:`~matplotlib.pyplot.colorbar` -# command you need to make room for it. ``constrained_layout`` does this -# automatically. Note that if you specify ``use_gridspec=True`` it will be -# ignored because this option is made for improving the layout via -# ``tight_layout``. -# -# .. note:: -# -# For the `~.axes.Axes.pcolormesh` kwargs (``pc_kwargs``) we use a -# dictionary. Below we will assign one colorbar to a number of axes each -# containing a `~.cm.ScalarMappable`; specifying the norm and colormap -# ensures the colorbar is accurate for all the axes. - -arr = np.arange(100).reshape((10, 10)) -norm = mcolors.Normalize(vmin=0., vmax=100.) -# see note above: this makes all pcolormesh calls consistent: -pc_kwargs = {'rasterized': True, 'cmap': 'viridis', 'norm': norm} -fig, ax = plt.subplots(figsize=(4, 4), constrained_layout=True) -im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=ax, shrink=0.6) - -############################################################################ -# If you specify a list of axes (or other iterable container) to the -# ``ax`` argument of ``colorbar``, constrained_layout will take space from -# the specified axes. - -fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs, shrink=0.6) - -############################################################################ -# If you specify a list of axes from inside a grid of axes, the colorbar -# will steal space appropriately, and leave a gap, but all subplots will -# still be the same size. - -fig, axs = plt.subplots(3, 3, figsize=(4, 4), constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[1:, ][:, 1], shrink=0.8) -fig.colorbar(im, ax=axs[:, -1], shrink=0.6) - -############################################################################ -# Note that there is a bit of a subtlety when specifying a single axes -# as the parent. In the following, it might be desirable and expected -# for the colorbars to line up, but they don't because the colorbar paired -# with the bottom axes is tied to the subplotspec of the axes, and hence -# shrinks when the gridspec-level colorbar is added. - -fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True) -for ax in axs[:2]: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[:2], shrink=0.6) -im = axs[2].pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[2], shrink=0.6) - -############################################################################ -# The API to make a single-axes behave like a list of axes is to specify -# it as a list (or other iterable container), as below: - -fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True) -for ax in axs[:2]: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[:2], shrink=0.6) -im = axs[2].pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=[axs[2]], shrink=0.6) - -#################################################### -# Suptitle -# ========= -# -# ``constrained_layout`` can also make room for `~.figure.Figure.suptitle`. - -fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs, shrink=0.6) -fig.suptitle('Big Suptitle') - -#################################################### -# Legends -# ======= -# -# Legends can be placed outside of their parent axis. -# Constrained-layout is designed to handle this for :meth:`.Axes.legend`. -# However, constrained-layout does *not* handle legends being created via -# :meth:`.Figure.legend` (yet). - -fig, ax = plt.subplots(constrained_layout=True) -ax.plot(np.arange(10), label='This is a plot') -ax.legend(loc='center left', bbox_to_anchor=(0.8, 0.5)) - -############################################# -# However, this will steal space from a subplot layout: - -fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True) -axs[0].plot(np.arange(10)) -axs[1].plot(np.arange(10), label='This is a plot') -axs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5)) - -############################################# -# In order for a legend or other artist to *not* steal space -# from the subplot layout, we can ``leg.set_in_layout(False)``. -# Of course this can mean the legend ends up -# cropped, but can be useful if the plot is subsequently called -# with ``fig.savefig('outname.png', bbox_inches='tight')``. Note, -# however, that the legend's ``get_in_layout`` status will have to be -# toggled again to make the saved file work, and we must manually -# trigger a draw if we want constrained_layout to adjust the size -# of the axes before printing. - -fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True) - -axs[0].plot(np.arange(10)) -axs[1].plot(np.arange(10), label='This is a plot') -leg = axs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5)) -leg.set_in_layout(False) -# trigger a draw so that constrained_layout is executed once -# before we turn it off when printing.... -fig.canvas.draw() -# we want the legend included in the bbox_inches='tight' calcs. -leg.set_in_layout(True) -# we don't want the layout to change at this point. -fig.set_constrained_layout(False) -fig.savefig('CL01.png', bbox_inches='tight', dpi=100) - -############################################# -# The saved file looks like: -# -# .. image:: /_static/constrained_layout/CL01.png -# :align: center -# -# A better way to get around this awkwardness is to simply -# use the legend method provided by `.Figure.legend`: -fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True) -axs[0].plot(np.arange(10)) -lines = axs[1].plot(np.arange(10), label='This is a plot') -labels = [l.get_label() for l in lines] -leg = fig.legend(lines, labels, loc='center left', - bbox_to_anchor=(0.8, 0.5), bbox_transform=axs[1].transAxes) -fig.savefig('CL02.png', bbox_inches='tight', dpi=100) - -############################################# -# The saved file looks like: -# -# .. image:: /_static/constrained_layout/CL02.png -# :align: center -# - -############################################################################### -# Padding and Spacing -# =================== -# -# For constrained_layout, we have implemented a padding around the edge of -# each axes. This padding sets the distance from the edge of the plot, -# and the minimum distance between adjacent plots. It is specified in -# inches by the keyword arguments ``w_pad`` and ``h_pad`` to the function -# `~.figure.Figure.set_constrained_layout_pads`: - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax, nodec=True) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=4./72., h_pad=4./72., - hspace=0., wspace=0.) - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax, nodec=True) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0., wspace=0.) - -########################################## -# Spacing between subplots is set by ``wspace`` and ``hspace``. There are -# specified as a fraction of the size of the subplot group as a whole. -# If the size of the figure is changed, then these spaces change in -# proportion. Note in the blow how the space at the edges doesn't change from -# the above, but the space between subplots does. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax, nodec=True) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0.2, wspace=0.2) - - -########################################## -# Spacing with colorbars -# ----------------------- -# -# Colorbars will be placed ``wspace`` and ``hsapce`` apart from other -# subplots. The padding between the colorbar and the axis it is -# attached to will never be less than ``w_pad`` (for a vertical colorbar) -# or ``h_pad`` (for a horizontal colorbar). Note the use of the ``pad`` kwarg -# here in the ``colorbar`` call. It defaults to 0.02 of the size -# of the axis it is attached to. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - pc = ax.pcolormesh(arr, **pc_kwargs) - fig.colorbar(pc, ax=ax, shrink=0.6, pad=0) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0.2, wspace=0.2) - -########################################## -# In the above example, the colorbar will not ever be closer than 2 pts to -# the plot, but if we want it a bit further away, we can specify its value -# for ``pad`` to be non-zero. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - pc = ax.pcolormesh(arr, **pc_kwargs) - fig.colorbar(im, ax=ax, shrink=0.6, pad=0.05) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0.2, wspace=0.2) - -########################################## -# rcParams -# ======== -# -# There are five :ref:`rcParams` that can be set, -# either in a script or in the `matplotlibrc` file. -# They all have the prefix ``figure.constrained_layout``: -# -# - ``use``: Whether to use constrained_layout. Default is False -# - ``w_pad``, ``h_pad``: Padding around axes objects. -# Float representing inches. Default is 3./72. inches (3 pts) -# - ``wspace``, ``hspace``: Space between subplot groups. -# Float representing a fraction of the subplot widths being separated. -# Default is 0.02. - -plt.rcParams['figure.constrained_layout.use'] = True -fig, axs = plt.subplots(2, 2, figsize=(3, 3)) -for ax in axs.flat: - example_plot(ax) - -############################# -# Use with GridSpec -# ================= -# -# constrained_layout is meant to be used -# with :func:`~matplotlib.figure.Figure.subplots` or -# :func:`~matplotlib.gridspec.GridSpec` and -# :func:`~matplotlib.figure.Figure.add_subplot`. -# -# Note that in what follows ``constrained_layout=True`` - -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1, figure=fig) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -############################################################################### -# More complicated gridspec layouts are possible. Note here we use the -# convenience functions ``add_gridspec`` and ``subgridspec``. - -fig = plt.figure() - -gs0 = fig.add_gridspec(1, 2) - -gs1 = gs0[0].subgridspec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs2 = gs0[1].subgridspec(3, 1) - -for ss in gs2: - ax = fig.add_subplot(ss) - example_plot(ax) - ax.set_title("") - ax.set_xlabel("") - -ax.set_xlabel("x-label", fontsize=12) - -############################################################################ -# Note that in the above the left and columns don't have the same vertical -# extent. If we want the top and bottom of the two grids to line up then -# they need to be in the same gridspec: - -fig = plt.figure() - -gs0 = fig.add_gridspec(6, 2) - -ax1 = fig.add_subplot(gs0[:3, 0]) -ax2 = fig.add_subplot(gs0[3:, 0]) - -example_plot(ax1) -example_plot(ax2) - -ax = fig.add_subplot(gs0[0:2, 1]) -example_plot(ax) -ax = fig.add_subplot(gs0[2:4, 1]) -example_plot(ax) -ax = fig.add_subplot(gs0[4:, 1]) -example_plot(ax) - -############################################################################ -# This example uses two gridspecs to have the colorbar only pertain to -# one set of pcolors. Note how the left column is wider than the -# two right-hand columns because of this. Of course, if you wanted the -# subplots to be the same size you only needed one gridspec. - - -def docomplicated(suptitle=None): - fig = plt.figure() - gs0 = fig.add_gridspec(1, 2, figure=fig, width_ratios=[1., 2.]) - gsl = gs0[0].subgridspec(2, 1) - gsr = gs0[1].subgridspec(2, 2) - - for gs in gsl: - ax = fig.add_subplot(gs) - example_plot(ax) - axs = [] - for gs in gsr: - ax = fig.add_subplot(gs) - pcm = ax.pcolormesh(arr, **pc_kwargs) - ax.set_xlabel('x-label') - ax.set_ylabel('y-label') - ax.set_title('title') - - axs += [ax] - fig.colorbar(pcm, ax=axs) - if suptitle is not None: - fig.suptitle(suptitle) - -docomplicated() - -############################################################################### -# Manually setting axes positions -# ================================ -# -# There can be good reasons to manually set an axes position. A manual call -# to `~.axes.Axes.set_position` will set the axes so constrained_layout has -# no effect on it anymore. (Note that constrained_layout still leaves the -# space for the axes that is moved). - -fig, axs = plt.subplots(1, 2) -example_plot(axs[0], fontsize=12) -axs[1].set_position([0.2, 0.2, 0.4, 0.4]) - -############################################################################### -# If you want an inset axes in data-space, you need to manually execute the -# layout using ``fig.execute_constrained_layout()`` call. The inset figure -# will then be properly positioned. However, it will not be properly -# positioned if the size of the figure is subsequently changed. Similarly, -# if the figure is printed to another backend, there may be slight changes -# of location due to small differences in how the backends render fonts. - -from matplotlib.transforms import Bbox - -fig, axs = plt.subplots(1, 2) -example_plot(axs[0], fontsize=12) -fig.execute_constrained_layout() -# put into data-space: -bb_data_ax2 = Bbox.from_bounds(0.5, 1., 0.2, 0.4) -disp_coords = axs[0].transData.transform(bb_data_ax2) -fig_coords_ax2 = fig.transFigure.inverted().transform(disp_coords) -bb_ax2 = Bbox(fig_coords_ax2) -ax2 = fig.add_axes(bb_ax2) - -############################################################################### -# Manually turning off ``constrained_layout`` -# =========================================== -# -# ``constrained_layout`` usually adjusts the axes positions on each draw -# of the figure. If you want to get the spacing provided by -# ``constrained_layout`` but not have it update, then do the initial -# draw and then call ``fig.set_constrained_layout(False)``. -# This is potentially useful for animations where the tick labels may -# change length. -# -# Note that ``constrained_layout`` is turned off for ``ZOOM`` and ``PAN`` -# GUI events for the backends that use the toolbar. This prevents the -# axes from changing position during zooming and panning. -# -# -# Limitations -# ======================== -# -# Incompatible functions -# ---------------------- -# -# ``constrained_layout`` will not work on subplots -# created via the `subplot` command. The reason is that each of these -# commands creates a separate `GridSpec` instance and ``constrained_layout`` -# uses (nested) gridspecs to carry out the layout. So the following fails -# to yield a nice layout: - - -fig = plt.figure() - -ax1 = plt.subplot(221) -ax2 = plt.subplot(223) -ax3 = plt.subplot(122) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -############################################################################### -# Of course that layout is possible using a gridspec: - -fig = plt.figure() -gs = fig.add_gridspec(2, 2) - -ax1 = fig.add_subplot(gs[0, 0]) -ax2 = fig.add_subplot(gs[1, 0]) -ax3 = fig.add_subplot(gs[:, 1]) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -############################################################################### -# Similarly, -# :func:`~matplotlib.pyplot.subplot2grid` doesn't work for the same reason: -# each call creates a different parent gridspec. - -fig = plt.figure() - -ax1 = plt.subplot2grid((3, 3), (0, 0)) -ax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2) -ax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -############################################################################### -# The way to make this plot compatible with ``constrained_layout`` is again -# to use ``gridspec`` directly - -fig = plt.figure() -gs = fig.add_gridspec(3, 3) - -ax1 = fig.add_subplot(gs[0, 0]) -ax2 = fig.add_subplot(gs[0, 1:]) -ax3 = fig.add_subplot(gs[1:, 0:2]) -ax4 = fig.add_subplot(gs[1:, -1]) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -############################################################################### -# Other Caveats -# ------------- -# -# * ``constrained_layout`` only considers ticklabels, axis labels, titles, and -# legends. Thus, other artists may be clipped and also may overlap. -# -# * It assumes that the extra space needed for ticklabels, axis labels, -# and titles is independent of original location of axes. This is -# often true, but there are rare cases where it is not. -# -# * There are small differences in how the backends handle rendering fonts, -# so the results will not be pixel-identical. - -########################################################### -# Debugging -# ========= -# -# Constrained-layout can fail in somewhat unexpected ways. Because it uses -# a constraint solver the solver can find solutions that are mathematically -# correct, but that aren't at all what the user wants. The usual failure -# mode is for all sizes to collapse to their smallest allowable value. If -# this happens, it is for one of two reasons: -# -# 1. There was not enough room for the elements you were requesting to draw. -# 2. There is a bug - in which case open an issue at -# https://github.com/matplotlib/matplotlib/issues. -# -# If there is a bug, please report with a self-contained example that does -# not require outside data or dependencies (other than numpy). - -########################################################### -# Notes on the algorithm -# ====================== -# -# The algorithm for the constraint is relatively straightforward, but -# has some complexity due to the complex ways we can layout a figure. -# -# Figure layout -# ------------- -# -# Figures are laid out in a hierarchy: -# -# 1. Figure: ``fig = plt.figure()`` -# -# a. Gridspec ``gs0 = gridspec.GridSpec(1, 2, figure=fig)`` -# -# i. Subplotspec: ``ss = gs[0, 0]`` -# -# 1. Axes: ``ax0 = fig.add_subplot(ss)`` -# -# ii. Subplotspec: ``ss = gs[0, 1]`` -# -# 1. Gridspec: ``gsR = gridspec.GridSpecFromSubplotSpec(2, 1, ss)`` -# -# - Subplotspec: ``ss = gsR[0, 0]`` -# -# - Axes: ``axR0 = fig.add_subplot(ss)`` -# -# - Subplotspec: ``ss = gsR[1, 0]`` -# -# - Axes: ``axR1 = fig.add_subplot(ss)`` -# -# Each item has a layoutbox associated with it. The nesting of gridspecs -# created with `.GridSpecFromSubplotSpec` can be arbitrarily deep. -# -# Each `~matplotlib.axes.Axes` has *two* layoutboxes. The first one, -# ``ax._layoutbox`` represents the outside of the Axes and all its -# decorations (i.e. ticklabels,axis labels, etc.). -# The second layoutbox corresponds to the Axes' ``ax.position``, which sets -# where in the figure the spines are placed. -# -# Why so many stacked containers? Ideally, all that would be needed are the -# Axes layout boxes. For the Gridspec case, a container is -# needed if the Gridspec is nested via `.GridSpecFromSubplotSpec`. At the -# top level, it is desirable for symmetry, but it also makes room for -# `~.Figure.suptitle`. -# -# For the Subplotspec/Axes case, Axes often have colorbars or other -# annotations that need to be packaged inside the Subplotspec, hence the -# need for the outer layer. -# -# -# Simple case: one Axes -# --------------------- -# -# For a single Axes the layout is straight forward. The Figure and -# outer Gridspec layoutboxes coincide. The Subplotspec and Axes -# boxes also coincide because the Axes has no colorbar. Note -# the difference between the red ``pos`` box and the green ``ax`` box -# is set by the size of the decorations around the Axes. -# -# In the code, this is accomplished by the entries in -# ``do_constrained_layout()`` like:: -# -# ax._poslayoutbox.edit_left_margin_min(-bbox.x0 + pos.x0 + w_padt) -# - -from matplotlib._layoutbox import plot_children - -fig, ax = plt.subplots(constrained_layout=True) -example_plot(ax, fontsize=24) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Simple case: two Axes -# --------------------- -# For this case, the Axes layoutboxes and the Subplotspec boxes still -# co-incide. However, because the decorations in the right-hand plot are so -# much smaller than the left-hand, so the right-hand layoutboxes are smaller. -# -# The Subplotspec boxes are laid out in the code in the subroutine -# ``arange_subplotspecs()``, which simply checks the subplotspecs in the code -# against one another and stacks them appropriately. -# -# The two ``pos`` axes are lined up. Because they have the same -# minimum row, they are lined up at the top. Because -# they have the same maximum row they are lined up at the bottom. In the -# code this is accomplished via the calls to ``layoutbox.align``. If -# there was more than one row, then the same horizontal alignment would -# occur between the rows. -# -# The two ``pos`` axes are given the same width because the subplotspecs -# occupy the same number of columns. This is accomplished in the code where -# ``dcols0`` is compared to ``dcolsC``. If they are equal, then their widths -# are constrained to be equal. -# -# While it is a bit subtle in this case, note that the division between the -# Subplotspecs is *not* centered, but has been moved to the right to make -# space for the larger labels on the left-hand plot. - -fig, ax = plt.subplots(1, 2, constrained_layout=True) -example_plot(ax[0], fontsize=32) -example_plot(ax[1], fontsize=8) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Two Axes and colorbar -# --------------------- -# -# Adding a colorbar makes it clear why the Subplotspec layoutboxes must -# be different from the axes layoutboxes. Here we see the left-hand -# subplotspec has more room to accommodate the `~.Figure.colorbar`, and -# that there are two green ``ax`` boxes inside the ``ss`` box. -# -# Note that the width of the ``pos`` boxes is still the same because of the -# constraint on their widths because their subplotspecs occupy the same -# number of columns (one in this example). -# -# The colorbar layout logic is contained in `~matplotlib.colorbar.make_axes` -# which calls ``_constrained_layout.layoutcolorbarsingle()`` -# for cbars attached to a single axes, and -# ``_constrained_layout.layoutcolorbargridspec()`` if the colorbar is -# associated with a gridspec. - -fig, ax = plt.subplots(1, 2, constrained_layout=True) -im = ax[0].pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=ax[0], shrink=0.6) -im = ax[1].pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Colorbar associated with a Gridspec -# ----------------------------------- -# -# This example shows the Subplotspec layoutboxes being made smaller by -# a colorbar layoutbox. The size of the colorbar layoutbox is -# set to be ``shrink`` smaller than the vertical extent of the ``pos`` -# layoutboxes in the gridspec, and it is made to be centered between -# those two points. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs, shrink=0.6) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Uneven sized Axes -# ----------------- -# -# There are two ways to make axes have an uneven size in a -# Gridspec layout, either by specifying them to cross Gridspecs rows -# or columns, or by specifying width and height ratios. -# -# The first method is used here. The constraint that makes the heights -# be correct is in the code where ``drowsC < drows0`` which in -# this case would be 1 is less than 2. So we constrain the -# height of the 1-row Axes to be less than half the height of the -# 2-row Axes. -# -# .. note:: -# -# This algorithm can be wrong if the decorations attached to the smaller -# axes are very large, so there is an unaccounted-for edge case. - - -fig = plt.figure(constrained_layout=True) -gs = gridspec.GridSpec(2, 2, figure=fig) -ax = fig.add_subplot(gs[:, 0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[0, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[1, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Height and width ratios are accommodated with the same part of -# the code with the smaller axes always constrained to be less in size -# than the larger. - -fig = plt.figure(constrained_layout=True) -gs = gridspec.GridSpec(3, 2, figure=fig, - height_ratios=[1., 0.5, 1.5], - width_ratios=[1.2, 0.8]) -ax = fig.add_subplot(gs[:2, 0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[2, 0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[0, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[1:, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) - -######################################################################## -# Empty gridspec slots -# -------------------- -# -# The final piece of the code that has not been explained is what happens if -# there is an empty gridspec opening. In that case a fake invisible axes is -# added and we proceed as before. The empty gridspec has no decorations, but -# the axes position in made the same size as the occupied Axes positions. -# -# This is done at the start of -# ``_constrained_layout.do_constrained_layout()`` (``hassubplotspec``). - -fig = plt.figure(constrained_layout=True) -gs = gridspec.GridSpec(1, 3, figure=fig) -ax = fig.add_subplot(gs[0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[-1]) -im = ax.pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) -plt.show() - -######################################################################## -# Other notes -# ----------- -# -# The layout is called only once. This is OK if the original layout was -# pretty close (which it should be in most cases). However, if the layout -# changes a lot from the default layout then the decorators can change size. -# In particular the x and ytick labels can change. If this happens, then -# we should probably call the whole routine twice. diff --git a/_downloads/20d6f403df4b7e675dea9b948e33e6ca/dark_background.ipynb b/_downloads/20d6f403df4b7e675dea9b948e33e6ca/dark_background.ipynb deleted file mode 120000 index 21df559daaf..00000000000 --- a/_downloads/20d6f403df4b7e675dea9b948e33e6ca/dark_background.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/20d6f403df4b7e675dea9b948e33e6ca/dark_background.ipynb \ No newline at end of file diff --git a/_downloads/20e84fc11e66588e36a858548f571e2d/auto_ticks.ipynb b/_downloads/20e84fc11e66588e36a858548f571e2d/auto_ticks.ipynb deleted file mode 120000 index b5dd84656ae..00000000000 --- a/_downloads/20e84fc11e66588e36a858548f571e2d/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/20e84fc11e66588e36a858548f571e2d/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/20ed2261f5fbd996d01d053030893d48/3d_bars.ipynb b/_downloads/20ed2261f5fbd996d01d053030893d48/3d_bars.ipynb deleted file mode 120000 index e3d7f9ce588..00000000000 --- a/_downloads/20ed2261f5fbd996d01d053030893d48/3d_bars.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/20ed2261f5fbd996d01d053030893d48/3d_bars.ipynb \ No newline at end of file diff --git a/_downloads/20ee1d86d68fb04294d5e405bdb20eb2/legend_picking.py b/_downloads/20ee1d86d68fb04294d5e405bdb20eb2/legend_picking.py deleted file mode 120000 index 5cff645961f..00000000000 --- a/_downloads/20ee1d86d68fb04294d5e405bdb20eb2/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/20ee1d86d68fb04294d5e405bdb20eb2/legend_picking.py \ No newline at end of file diff --git a/_downloads/210021ff118a667d0bea86dcb158be37/fancybox_demo.ipynb b/_downloads/210021ff118a667d0bea86dcb158be37/fancybox_demo.ipynb deleted file mode 120000 index 2d74eb96884..00000000000 --- a/_downloads/210021ff118a667d0bea86dcb158be37/fancybox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/210021ff118a667d0bea86dcb158be37/fancybox_demo.ipynb \ No newline at end of file diff --git a/_downloads/2101691966fe8de9942a9ab5353a855d/bbox_intersect.ipynb b/_downloads/2101691966fe8de9942a9ab5353a855d/bbox_intersect.ipynb deleted file mode 120000 index 3355de0a2ab..00000000000 --- a/_downloads/2101691966fe8de9942a9ab5353a855d/bbox_intersect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2101691966fe8de9942a9ab5353a855d/bbox_intersect.ipynb \ No newline at end of file diff --git a/_downloads/2101e52090d86c05593d176637d1fdd2/subplot_toolbar.ipynb b/_downloads/2101e52090d86c05593d176637d1fdd2/subplot_toolbar.ipynb deleted file mode 120000 index 0d0263676b5..00000000000 --- a/_downloads/2101e52090d86c05593d176637d1fdd2/subplot_toolbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2101e52090d86c05593d176637d1fdd2/subplot_toolbar.ipynb \ No newline at end of file diff --git a/_downloads/2106add5ffc54fe452f405fd9d780791/contourf3d.py b/_downloads/2106add5ffc54fe452f405fd9d780791/contourf3d.py deleted file mode 120000 index 5b4e5c511e1..00000000000 --- a/_downloads/2106add5ffc54fe452f405fd9d780791/contourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2106add5ffc54fe452f405fd9d780791/contourf3d.py \ No newline at end of file diff --git a/_downloads/210f7bca2ada1ba5622b1dcc0be60e70/rasterization_demo.ipynb b/_downloads/210f7bca2ada1ba5622b1dcc0be60e70/rasterization_demo.ipynb deleted file mode 120000 index 220d178ce22..00000000000 --- a/_downloads/210f7bca2ada1ba5622b1dcc0be60e70/rasterization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/210f7bca2ada1ba5622b1dcc0be60e70/rasterization_demo.ipynb \ No newline at end of file diff --git a/_downloads/211d506e71d526e8c4acb785ea8725d0/color_demo.ipynb b/_downloads/211d506e71d526e8c4acb785ea8725d0/color_demo.ipynb deleted file mode 120000 index fbf4c12dd78..00000000000 --- a/_downloads/211d506e71d526e8c4acb785ea8725d0/color_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/211d506e71d526e8c4acb785ea8725d0/color_demo.ipynb \ No newline at end of file diff --git a/_downloads/212abb4afad592d55d72f0512550f310/common_date_problems.ipynb b/_downloads/212abb4afad592d55d72f0512550f310/common_date_problems.ipynb deleted file mode 120000 index cb1410da7ab..00000000000 --- a/_downloads/212abb4afad592d55d72f0512550f310/common_date_problems.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/212abb4afad592d55d72f0512550f310/common_date_problems.ipynb \ No newline at end of file diff --git a/_downloads/212b4f059ce02f8591510c6c7381120d/demo_floating_axes.py b/_downloads/212b4f059ce02f8591510c6c7381120d/demo_floating_axes.py deleted file mode 120000 index d342bf31590..00000000000 --- a/_downloads/212b4f059ce02f8591510c6c7381120d/demo_floating_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/212b4f059ce02f8591510c6c7381120d/demo_floating_axes.py \ No newline at end of file diff --git a/_downloads/213eab15623c543bb0f4f92df68aa268/annotate_transform.ipynb b/_downloads/213eab15623c543bb0f4f92df68aa268/annotate_transform.ipynb deleted file mode 120000 index bdb3b7b625d..00000000000 --- a/_downloads/213eab15623c543bb0f4f92df68aa268/annotate_transform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/213eab15623c543bb0f4f92df68aa268/annotate_transform.ipynb \ No newline at end of file diff --git a/_downloads/21413629f9a805c745066c43bb4c1b35/demo_gridspec06.ipynb b/_downloads/21413629f9a805c745066c43bb4c1b35/demo_gridspec06.ipynb deleted file mode 120000 index c36f8201c8f..00000000000 --- a/_downloads/21413629f9a805c745066c43bb4c1b35/demo_gridspec06.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/21413629f9a805c745066c43bb4c1b35/demo_gridspec06.ipynb \ No newline at end of file diff --git a/_downloads/2151b23a6a2abadf999c2b68d97c2fba/resample.py b/_downloads/2151b23a6a2abadf999c2b68d97c2fba/resample.py deleted file mode 100644 index b9811942b85..00000000000 --- a/_downloads/2151b23a6a2abadf999c2b68d97c2fba/resample.py +++ /dev/null @@ -1,70 +0,0 @@ -""" -=============== -Resampling Data -=============== - -Downsampling lowers the sample rate or sample size of a signal. In -this tutorial, the signal is downsampled when the plot is adjusted -through dragging and zooming. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -# A class that will downsample the data and recompute when zoomed. -class DataDisplayDownsampler(object): - def __init__(self, xdata, ydata): - self.origYData = ydata - self.origXData = xdata - self.max_points = 50 - self.delta = xdata[-1] - xdata[0] - - def downsample(self, xstart, xend): - # get the points in the view range - mask = (self.origXData > xstart) & (self.origXData < xend) - # dilate the mask by one to catch the points just outside - # of the view range to not truncate the line - mask = np.convolve([1, 1], mask, mode='same').astype(bool) - # sort out how many points to drop - ratio = max(np.sum(mask) // self.max_points, 1) - - # mask data - xdata = self.origXData[mask] - ydata = self.origYData[mask] - - # downsample data - xdata = xdata[::ratio] - ydata = ydata[::ratio] - - print("using {} of {} visible points".format( - len(ydata), np.sum(mask))) - - return xdata, ydata - - def update(self, ax): - # Update the line - lims = ax.viewLim - if np.abs(lims.width - self.delta) > 1e-8: - self.delta = lims.width - xstart, xend = lims.intervalx - self.line.set_data(*self.downsample(xstart, xend)) - ax.figure.canvas.draw_idle() - - -# Create a signal -xdata = np.linspace(16, 365, (365-16)*4) -ydata = np.sin(2*np.pi*xdata/153) + np.cos(2*np.pi*xdata/127) - -d = DataDisplayDownsampler(xdata, ydata) - -fig, ax = plt.subplots() - -# Hook up the line -d.line, = ax.plot(xdata, ydata, 'o-') -ax.set_autoscale_on(False) # Otherwise, infinite loop - -# Connect for changing the view limits -ax.callbacks.connect('xlim_changed', d.update) -ax.set_xlim(16, 365) -plt.show() diff --git a/_downloads/2156bfd108a6eedcd0ca6dc8ec484f62/contourf_demo.ipynb b/_downloads/2156bfd108a6eedcd0ca6dc8ec484f62/contourf_demo.ipynb deleted file mode 120000 index 63bec97269a..00000000000 --- a/_downloads/2156bfd108a6eedcd0ca6dc8ec484f62/contourf_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2156bfd108a6eedcd0ca6dc8ec484f62/contourf_demo.ipynb \ No newline at end of file diff --git a/_downloads/216a4d9bdb6721e8ad7fda0b85a793ae/pgf.ipynb b/_downloads/216a4d9bdb6721e8ad7fda0b85a793ae/pgf.ipynb deleted file mode 100644 index 3b839a414e5..00000000000 --- a/_downloads/216a4d9bdb6721e8ad7fda0b85a793ae/pgf.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*********************************\nTypesetting With XeLaTeX/LuaLaTeX\n*********************************\n\nHow to typeset text with the ``pgf`` backend in Matplotlib.\n\nUsing the ``pgf`` backend, matplotlib can export figures as pgf drawing commands\nthat can be processed with pdflatex, xelatex or lualatex. XeLaTeX and LuaLaTeX\nhave full unicode support and can use any font that is installed in the operating\nsystem, making use of advanced typographic features of OpenType, AAT and\nGraphite. Pgf pictures created by ``plt.savefig('figure.pgf')`` can be\nembedded as raw commands in LaTeX documents. Figures can also be directly\ncompiled and saved to PDF with ``plt.savefig('figure.pdf')`` by either\nswitching to the backend\n\n.. code-block:: python\n\n matplotlib.use('pgf')\n\nor registering it for handling pdf output\n\n.. code-block:: python\n\n from matplotlib.backends.backend_pgf import FigureCanvasPgf\n matplotlib.backend_bases.register_backend('pdf', FigureCanvasPgf)\n\nThe second method allows you to keep using regular interactive backends and to\nsave xelatex, lualatex or pdflatex compiled PDF files from the graphical user interface.\n\nMatplotlib's pgf support requires a recent LaTeX_ installation that includes\nthe TikZ/PGF packages (such as TeXLive_), preferably with XeLaTeX or LuaLaTeX\ninstalled. If either pdftocairo or ghostscript is present on your system,\nfigures can optionally be saved to PNG images as well. The executables\nfor all applications must be located on your :envvar:`PATH`.\n\nRc parameters that control the behavior of the pgf backend:\n\n ================= =====================================================\n Parameter Documentation\n ================= =====================================================\n pgf.preamble Lines to be included in the LaTeX preamble\n pgf.rcfonts Setup fonts from rc params using the fontspec package\n pgf.texsystem Either \"xelatex\" (default), \"lualatex\" or \"pdflatex\"\n ================= =====================================================\n\n

Note

TeX defines a set of special characters, such as::\n\n # $ % & ~ _ ^ \\ { }\n\n Generally, these characters must be escaped correctly. For convenience,\n some characters (_,^,%) are automatically escaped outside of math\n environments.

\n\n\n\nMulti-Page PDF Files\n====================\n\nThe pgf backend also supports multipage pdf files using ``PdfPages``\n\n.. code-block:: python\n\n from matplotlib.backends.backend_pgf import PdfPages\n import matplotlib.pyplot as plt\n\n with PdfPages('multipage.pdf', metadata={'author': 'Me'}) as pdf:\n\n fig1, ax1 = plt.subplots()\n ax1.plot([1, 5, 3])\n pdf.savefig(fig1)\n\n fig2, ax2 = plt.subplots()\n ax2.plot([1, 5, 3])\n pdf.savefig(fig2)\n\n\nFont specification\n==================\n\nThe fonts used for obtaining the size of text elements or when compiling\nfigures to PDF are usually defined in the matplotlib rc parameters. You can\nalso use the LaTeX default Computer Modern fonts by clearing the lists for\n``font.serif``, ``font.sans-serif`` or ``font.monospace``. Please note that\nthe glyph coverage of these fonts is very limited. If you want to keep the\nComputer Modern font face but require extended unicode support, consider\ninstalling the `Computer Modern Unicode `_\nfonts *CMU Serif*, *CMU Sans Serif*, etc.\n\nWhen saving to ``.pgf``, the font configuration matplotlib used for the\nlayout of the figure is included in the header of the text file.\n\n.. literalinclude:: ../../gallery/userdemo/pgf_fonts.py\n :end-before: plt.savefig\n\n\n\nCustom preamble\n===============\n\nFull customization is possible by adding your own commands to the preamble.\nUse the ``pgf.preamble`` parameter if you want to configure the math fonts,\nusing ``unicode-math`` for example, or for loading additional packages. Also,\nif you want to do the font configuration yourself instead of using the fonts\nspecified in the rc parameters, make sure to disable ``pgf.rcfonts``.\n\n.. only:: html\n\n .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py\n :end-before: plt.savefig\n\n.. only:: latex\n\n .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py\n :end-before: import matplotlib.pyplot as plt\n\n\n\nChoosing the TeX system\n=======================\n\nThe TeX system to be used by matplotlib is chosen by the ``pgf.texsystem``\nparameter. Possible values are ``'xelatex'`` (default), ``'lualatex'`` and\n``'pdflatex'``. Please note that when selecting pdflatex the fonts and\nunicode handling must be configured in the preamble.\n\n.. literalinclude:: ../../gallery/userdemo/pgf_texsystem.py\n :end-before: plt.savefig\n\n\n\nTroubleshooting\n===============\n\n* Please note that the TeX packages found in some Linux distributions and\n MiKTeX installations are dramatically outdated. Make sure to update your\n package catalog and upgrade or install a recent TeX distribution.\n\n* On Windows, the :envvar:`PATH` environment variable may need to be modified\n to include the directories containing the latex, dvipng and ghostscript\n executables. See `environment-variables` and\n `setting-windows-environment-variables` for details.\n\n* A limitation on Windows causes the backend to keep file handles that have\n been opened by your application open. As a result, it may not be possible\n to delete the corresponding files until the application closes (see\n `#1324 `_).\n\n* Sometimes the font rendering in figures that are saved to png images is\n very bad. This happens when the pdftocairo tool is not available and\n ghostscript is used for the pdf to png conversion.\n\n* Make sure what you are trying to do is possible in a LaTeX document,\n that your LaTeX syntax is valid and that you are using raw strings\n if necessary to avoid unintended escape sequences.\n\n* The ``pgf.preamble`` rc setting provides lots of flexibility, and lots of\n ways to cause problems. When experiencing problems, try to minimalize or\n disable the custom preamble.\n\n* Configuring an ``unicode-math`` environment can be a bit tricky. The\n TeXLive distribution for example provides a set of math fonts which are\n usually not installed system-wide. XeTeX, unlike LuaLatex, cannot find\n these fonts by their name, which is why you might have to specify\n ``\\setmathfont{xits-math.otf}`` instead of ``\\setmathfont{XITS Math}`` or\n alternatively make the fonts available to your OS. See this\n `tex.stackexchange.com question `_\n for more details.\n\n* If the font configuration used by matplotlib differs from the font setting\n in yout LaTeX document, the alignment of text elements in imported figures\n may be off. Check the header of your ``.pgf`` file if you are unsure about\n the fonts matplotlib used for the layout.\n\n* Vector images and hence ``.pgf`` files can become bloated if there are a lot\n of objects in the graph. This can be the case for image processing or very\n big scatter graphs. In an extreme case this can cause TeX to run out of\n memory: \"TeX capacity exceeded, sorry\" You can configure latex to increase\n the amount of memory available to generate the ``.pdf`` image as discussed on\n `tex.stackexchange.com `_.\n Another way would be to \"rasterize\" parts of the graph causing problems\n using either the ``rasterized=True`` keyword, or ``.set_rasterized(True)`` as per\n :doc:`this example `.\n\n* If you still need help, please see `reporting-problems`\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/216ba4dc0d9d0f4ac34630b46110df59/horizontal_barchart_distribution.py b/_downloads/216ba4dc0d9d0f4ac34630b46110df59/horizontal_barchart_distribution.py deleted file mode 100644 index 73367e4b1d6..00000000000 --- a/_downloads/216ba4dc0d9d0f4ac34630b46110df59/horizontal_barchart_distribution.py +++ /dev/null @@ -1,90 +0,0 @@ -""" -============================================= -Discrete distribution as horizontal bar chart -============================================= - -Stacked bar charts can be used to visualize discrete distributions. - -This example visualizes the result of a survey in which people could rate -their agreement to questions on a five-element scale. - -The horizontal stacking is achieved by calling `~.Axes.barh()` for each -category and passing the starting point as the cumulative sum of the -already drawn bars via the parameter ``left``. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -category_names = ['Strongly disagree', 'Disagree', - 'Neither agree nor disagree', 'Agree', 'Strongly agree'] -results = { - 'Question 1': [10, 15, 17, 32, 26], - 'Question 2': [26, 22, 29, 10, 13], - 'Question 3': [35, 37, 7, 2, 19], - 'Question 4': [32, 11, 9, 15, 33], - 'Question 5': [21, 29, 5, 5, 40], - 'Question 6': [8, 19, 5, 30, 38] -} - - -def survey(results, category_names): - """ - Parameters - ---------- - results : dict - A mapping from question labels to a list of answers per category. - It is assumed all lists contain the same number of entries and that - it matches the length of *category_names*. - category_names : list of str - The category labels. - """ - labels = list(results.keys()) - data = np.array(list(results.values())) - data_cum = data.cumsum(axis=1) - category_colors = plt.get_cmap('RdYlGn')( - np.linspace(0.15, 0.85, data.shape[1])) - - fig, ax = plt.subplots(figsize=(9.2, 5)) - ax.invert_yaxis() - ax.xaxis.set_visible(False) - ax.set_xlim(0, np.sum(data, axis=1).max()) - - for i, (colname, color) in enumerate(zip(category_names, category_colors)): - widths = data[:, i] - starts = data_cum[:, i] - widths - ax.barh(labels, widths, left=starts, height=0.5, - label=colname, color=color) - xcenters = starts + widths / 2 - - r, g, b, _ = color - text_color = 'white' if r * g * b < 0.5 else 'darkgrey' - for y, (x, c) in enumerate(zip(xcenters, widths)): - ax.text(x, y, str(int(c)), ha='center', va='center', - color=text_color) - ax.legend(ncol=len(category_names), bbox_to_anchor=(0, 1), - loc='lower left', fontsize='small') - - return fig, ax - - -survey(results, category_names) - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.barh -matplotlib.pyplot.barh -matplotlib.axes.Axes.text -matplotlib.pyplot.text -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend diff --git a/_downloads/217c4bc9c44335f99da3e22114244916/contourf_log.ipynb b/_downloads/217c4bc9c44335f99da3e22114244916/contourf_log.ipynb deleted file mode 120000 index 8a37c4e9975..00000000000 --- a/_downloads/217c4bc9c44335f99da3e22114244916/contourf_log.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/217c4bc9c44335f99da3e22114244916/contourf_log.ipynb \ No newline at end of file diff --git a/_downloads/2188391ac7210589a47609de0499ae3f/annotations.ipynb b/_downloads/2188391ac7210589a47609de0499ae3f/annotations.ipynb deleted file mode 120000 index 7360f74cbb8..00000000000 --- a/_downloads/2188391ac7210589a47609de0499ae3f/annotations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2188391ac7210589a47609de0499ae3f/annotations.ipynb \ No newline at end of file diff --git a/_downloads/218aed6a0e977ec28b5f561523900660/patheffects_guide.py b/_downloads/218aed6a0e977ec28b5f561523900660/patheffects_guide.py deleted file mode 100644 index 4f2c89cf331..00000000000 --- a/_downloads/218aed6a0e977ec28b5f561523900660/patheffects_guide.py +++ /dev/null @@ -1,119 +0,0 @@ -""" -================== -Path effects guide -================== - -Defining paths that objects follow on a canvas. - -.. py:module:: matplotlib.patheffects - - -Matplotlib's :mod:`~matplotlib.patheffects` module provides functionality to -apply a multiple draw stage to any Artist which can be rendered via a -:class:`~matplotlib.path.Path`. - -Artists which can have a path effect applied to them include :class:`~matplotlib.patches.Patch`, -:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.collections.Collection` and even -:class:`~matplotlib.text.Text`. Each artist's path effects can be controlled via the -``set_path_effects`` method (:class:`~matplotlib.artist.Artist.set_path_effects`), which takes -an iterable of :class:`AbstractPathEffect` instances. - -The simplest path effect is the :class:`Normal` effect, which simply -draws the artist without any effect: -""" - -import matplotlib.pyplot as plt -import matplotlib.patheffects as path_effects - -fig = plt.figure(figsize=(5, 1.5)) -text = fig.text(0.5, 0.5, 'Hello path effects world!\nThis is the normal ' - 'path effect.\nPretty dull, huh?', - ha='center', va='center', size=20) -text.set_path_effects([path_effects.Normal()]) -plt.show() - -############################################################################### -# Whilst the plot doesn't look any different to what you would expect without any path -# effects, the drawing of the text now been changed to use the path effects -# framework, opening up the possibilities for more interesting examples. -# -# Adding a shadow -# --------------- -# -# A far more interesting path effect than :class:`Normal` is the -# drop-shadow, which we can apply to any of our path based artists. The classes -# :class:`SimplePatchShadow` and -# :class:`SimpleLineShadow` do precisely this by drawing either a filled -# patch or a line patch below the original artist: - -import matplotlib.patheffects as path_effects - -text = plt.text(0.5, 0.5, 'Hello path effects world!', - path_effects=[path_effects.withSimplePatchShadow()]) - -plt.plot([0, 3, 2, 5], linewidth=5, color='blue', - path_effects=[path_effects.SimpleLineShadow(), - path_effects.Normal()]) -plt.show() - -############################################################################### -# Notice the two approaches to setting the path effects in this example. The -# first uses the ``with*`` classes to include the desired functionality automatically -# followed with the "normal" effect, whereas the latter explicitly defines the two path -# effects to draw. -# -# Making an artist stand out -# -------------------------- -# -# One nice way of making artists visually stand out is to draw an outline in a bold -# color below the actual artist. The :class:`Stroke` path effect -# makes this a relatively simple task: - -fig = plt.figure(figsize=(7, 1)) -text = fig.text(0.5, 0.5, 'This text stands out because of\n' - 'its black border.', color='white', - ha='center', va='center', size=30) -text.set_path_effects([path_effects.Stroke(linewidth=3, foreground='black'), - path_effects.Normal()]) -plt.show() - -############################################################################### -# It is important to note that this effect only works because we have drawn the text -# path twice; once with a thick black line, and then once with the original text -# path on top. -# -# You may have noticed that the keywords to :class:`Stroke` and -# :class:`SimplePatchShadow` and :class:`SimpleLineShadow` are not the usual Artist -# keywords (such as ``facecolor`` and ``edgecolor`` etc.). This is because with these -# path effects we are operating at lower level of matplotlib. In fact, the keywords -# which are accepted are those for a :class:`matplotlib.backend_bases.GraphicsContextBase` -# instance, which have been designed for making it easy to create new backends - and not -# for its user interface. -# -# -# Greater control of the path effect artist -# ----------------------------------------- -# -# As already mentioned, some of the path effects operate at a lower level than most users -# will be used to, meaning that setting keywords such as ``facecolor`` and ``edgecolor`` -# raise an AttributeError. Luckily there is a generic :class:`PathPatchEffect` path effect -# which creates a :class:`~matplotlib.patches.PathPatch` class with the original path. -# The keywords to this effect are identical to those of :class:`~matplotlib.patches.PathPatch`: - -fig = plt.figure(figsize=(8, 1)) -t = fig.text(0.02, 0.5, 'Hatch shadow', fontsize=75, weight=1000, va='center') -t.set_path_effects([path_effects.PathPatchEffect(offset=(4, -4), hatch='xxxx', - facecolor='gray'), - path_effects.PathPatchEffect(edgecolor='white', linewidth=1.1, - facecolor='black')]) -plt.show() - -############################################################################### -# .. -# Headings for future consideration: -# -# Implementing a custom path effect -# --------------------------------- -# -# What is going on under the hood -# -------------------------------- diff --git a/_downloads/21b0760f74862e3d00dadd5c2bd45aaa/artist_tests.ipynb b/_downloads/21b0760f74862e3d00dadd5c2bd45aaa/artist_tests.ipynb deleted file mode 120000 index 02fa2547efd..00000000000 --- a/_downloads/21b0760f74862e3d00dadd5c2bd45aaa/artist_tests.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/21b0760f74862e3d00dadd5c2bd45aaa/artist_tests.ipynb \ No newline at end of file diff --git a/_downloads/21b8006313c2e84fcce8bdaef292367f/mplot3d.py b/_downloads/21b8006313c2e84fcce8bdaef292367f/mplot3d.py deleted file mode 100644 index 212481ee9fe..00000000000 --- a/_downloads/21b8006313c2e84fcce8bdaef292367f/mplot3d.py +++ /dev/null @@ -1,228 +0,0 @@ -""" -=================== -The mplot3d Toolkit -=================== - -Generating 3D plots using the mplot3d toolkit. - -.. currentmodule:: mpl_toolkits.mplot3d - -.. contents:: - :backlinks: none - -.. _toolkit_mplot3d-tutorial: - -Getting started ---------------- -An Axes3D object is created just like any other axes using -the projection='3d' keyword. -Create a new :class:`matplotlib.figure.Figure` and -add a new axes to it of type :class:`~mpl_toolkits.mplot3d.Axes3D`:: - - import matplotlib.pyplot as plt - from mpl_toolkits.mplot3d import Axes3D - fig = plt.figure() - ax = fig.add_subplot(111, projection='3d') - -.. versionadded:: 1.0.0 - This approach is the preferred method of creating a 3D axes. - -.. note:: - Prior to version 1.0.0, the method of creating a 3D axes was - different. For those using older versions of matplotlib, change - ``ax = fig.add_subplot(111, projection='3d')`` - to ``ax = Axes3D(fig)``. - -See the :ref:`toolkit_mplot3d-faq` for more information about the mplot3d -toolkit. - -.. _plot3d: - -Line plots -==================== -.. automethod:: Axes3D.plot - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_lines3d_001.png - :target: ../../gallery/mplot3d/lines3d.html - :align: center - :scale: 50 - - Lines3d - -.. _scatter3d: - -Scatter plots -============= -.. automethod:: Axes3D.scatter - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_scatter3d_001.png - :target: ../../gallery/mplot3d/scatter3d.html - :align: center - :scale: 50 - - Scatter3d - -.. _wireframe: - -Wireframe plots -=============== -.. automethod:: Axes3D.plot_wireframe - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_wire3d_001.png - :target: ../../gallery/mplot3d/wire3d.html - :align: center - :scale: 50 - - Wire3d - -.. _surface: - -Surface plots -============= -.. automethod:: Axes3D.plot_surface - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png - :target: ../../gallery/mplot3d/surface3d.html - :align: center - :scale: 50 - - Surface3d - - Surface3d 2 - - Surface3d 3 - -.. _trisurface: - -Tri-Surface plots -================= -.. automethod:: Axes3D.plot_trisurf - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_trisurf3d_001.png - :target: ../../gallery/mplot3d/trisurf3d.html - :align: center - :scale: 50 - - Trisurf3d - - -.. _contour3d: - -Contour plots -============= -.. automethod:: Axes3D.contour - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_contour3d_001.png - :target: ../../gallery/mplot3d/contour3d.html - :align: center - :scale: 50 - - Contour3d - - Contour3d 2 - - Contour3d 3 - -.. _contourf3d: - -Filled contour plots -==================== -.. automethod:: Axes3D.contourf - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_contourf3d_001.png - :target: ../../gallery/mplot3d/contourf3d.html - :align: center - :scale: 50 - - Contourf3d - - Contourf3d 2 - -.. versionadded:: 1.1.0 - The feature demoed in the second contourf3d example was enabled as a - result of a bugfix for version 1.1.0. - -.. _polygon3d: - -Polygon plots -==================== -.. automethod:: Axes3D.add_collection3d - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_polys3d_001.png - :target: ../../gallery/mplot3d/polys3d.html - :align: center - :scale: 50 - - Polys3d - -.. _bar3d: - -Bar plots -==================== -.. automethod:: Axes3D.bar - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_bars3d_001.png - :target: ../../gallery/mplot3d/bars3d.html - :align: center - :scale: 50 - - Bars3d - -.. _quiver3d: - -Quiver -==================== -.. automethod:: Axes3D.quiver - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_quiver3d_001.png - :target: ../../gallery/mplot3d/quiver3d.html - :align: center - :scale: 50 - - Quiver3d - -.. _2dcollections3d: - -2D plots in 3D -==================== -.. figure:: ../../gallery/mplot3d/images/sphx_glr_2dcollections3d_001.png - :target: ../../gallery/mplot3d/2dcollections3d.html - :align: center - :scale: 50 - - 2dcollections3d - -.. _text3d: - -Text -==================== -.. automethod:: Axes3D.text - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_text3d_001.png - :target: ../../gallery/mplot3d/text3d.html - :align: center - :scale: 50 - - Text3d - -.. _3dsubplots: - -Subplotting -==================== -Having multiple 3D plots in a single figure is the same -as it is for 2D plots. Also, you can have both 2D and 3D plots -in the same figure. - -.. versionadded:: 1.0.0 - Subplotting 3D plots was added in v1.0.0. Earlier version can not - do this. - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_subplot3d_001.png - :target: ../../gallery/mplot3d/subplot3d.html - :align: center - :scale: 50 - - Subplot3d - - Mixed Subplots -""" diff --git a/_downloads/21babd98e57247d14be374cd7c87afea/connectionstyle_demo.ipynb b/_downloads/21babd98e57247d14be374cd7c87afea/connectionstyle_demo.ipynb deleted file mode 100644 index 9e6ed1a4986..00000000000 --- a/_downloads/21babd98e57247d14be374cd7c87afea/connectionstyle_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Connectionstyle Demo\n\n\nWhen creating an annotation using `~.Axes.annotate`, the arrow shape can be\ncontrolled via the *connectionstyle* parameter of *arrowprops*. For further\ndetails see the description of `.FancyArrowPatch`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef demo_con_style(ax, connectionstyle):\n x1, y1 = 0.3, 0.2\n x2, y2 = 0.8, 0.6\n\n ax.plot([x1, x2], [y1, y2], \".\")\n ax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", color=\"0.5\",\n shrinkA=5, shrinkB=5,\n patchA=None, patchB=None,\n connectionstyle=connectionstyle,\n ),\n )\n\n ax.text(.05, .95, connectionstyle.replace(\",\", \",\\n\"),\n transform=ax.transAxes, ha=\"left\", va=\"top\")\n\n\nfig, axs = plt.subplots(3, 5, figsize=(8, 4.8))\ndemo_con_style(axs[0, 0], \"angle3,angleA=90,angleB=0\")\ndemo_con_style(axs[1, 0], \"angle3,angleA=0,angleB=90\")\ndemo_con_style(axs[0, 1], \"arc3,rad=0.\")\ndemo_con_style(axs[1, 1], \"arc3,rad=0.3\")\ndemo_con_style(axs[2, 1], \"arc3,rad=-0.3\")\ndemo_con_style(axs[0, 2], \"angle,angleA=-90,angleB=180,rad=0\")\ndemo_con_style(axs[1, 2], \"angle,angleA=-90,angleB=180,rad=5\")\ndemo_con_style(axs[2, 2], \"angle,angleA=-90,angleB=10,rad=5\")\ndemo_con_style(axs[0, 3], \"arc,angleA=-90,angleB=0,armA=30,armB=30,rad=0\")\ndemo_con_style(axs[1, 3], \"arc,angleA=-90,angleB=0,armA=30,armB=30,rad=5\")\ndemo_con_style(axs[2, 3], \"arc,angleA=-90,angleB=0,armA=0,armB=40,rad=0\")\ndemo_con_style(axs[0, 4], \"bar,fraction=0.3\")\ndemo_con_style(axs[1, 4], \"bar,fraction=-0.3\")\ndemo_con_style(axs[2, 4], \"bar,angle=180,fraction=-0.2\")\n\nfor ax in axs.flat:\n ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1)\nfig.tight_layout(pad=0.2)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.annotate\nmatplotlib.patches.FancyArrowPatch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/21be058f59d51236dc441a45c2b0735c/pyplot_simple.py b/_downloads/21be058f59d51236dc441a45c2b0735c/pyplot_simple.py deleted file mode 120000 index 4e7d2e0cc4a..00000000000 --- a/_downloads/21be058f59d51236dc441a45c2b0735c/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/21be058f59d51236dc441a45c2b0735c/pyplot_simple.py \ No newline at end of file diff --git a/_downloads/21c1bf8fd4562850296e5b8b8cc1b487/titles_demo.py b/_downloads/21c1bf8fd4562850296e5b8b8cc1b487/titles_demo.py deleted file mode 120000 index f1cf2ec02a9..00000000000 --- a/_downloads/21c1bf8fd4562850296e5b8b8cc1b487/titles_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/21c1bf8fd4562850296e5b8b8cc1b487/titles_demo.py \ No newline at end of file diff --git a/_downloads/21c616e459c0eedd1e7565e223f26105/affine_image.ipynb b/_downloads/21c616e459c0eedd1e7565e223f26105/affine_image.ipynb deleted file mode 120000 index 2e43872b14c..00000000000 --- a/_downloads/21c616e459c0eedd1e7565e223f26105/affine_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/21c616e459c0eedd1e7565e223f26105/affine_image.ipynb \ No newline at end of file diff --git a/_downloads/21ceb9b6e79b3bb3eda08d5b60c04d2f/coords_demo.py b/_downloads/21ceb9b6e79b3bb3eda08d5b60c04d2f/coords_demo.py deleted file mode 120000 index 2d0c77704ef..00000000000 --- a/_downloads/21ceb9b6e79b3bb3eda08d5b60c04d2f/coords_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/21ceb9b6e79b3bb3eda08d5b60c04d2f/coords_demo.py \ No newline at end of file diff --git a/_downloads/21d1b9b52fb3d6ba0f4de44cc5ed9c20/demo_axes_hbox_divider.ipynb b/_downloads/21d1b9b52fb3d6ba0f4de44cc5ed9c20/demo_axes_hbox_divider.ipynb deleted file mode 120000 index 8e2b3f21d03..00000000000 --- a/_downloads/21d1b9b52fb3d6ba0f4de44cc5ed9c20/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/21d1b9b52fb3d6ba0f4de44cc5ed9c20/demo_axes_hbox_divider.ipynb \ No newline at end of file diff --git a/_downloads/21d36f0b62d28defa5d8ae003decf58f/rotate_axes3d_sgskip.py b/_downloads/21d36f0b62d28defa5d8ae003decf58f/rotate_axes3d_sgskip.py deleted file mode 120000 index 128521be8aa..00000000000 --- a/_downloads/21d36f0b62d28defa5d8ae003decf58f/rotate_axes3d_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/21d36f0b62d28defa5d8ae003decf58f/rotate_axes3d_sgskip.py \ No newline at end of file diff --git a/_downloads/21d8ee22ee349956af371690a5d55865/make_room_for_ylabel_using_axesgrid.py b/_downloads/21d8ee22ee349956af371690a5d55865/make_room_for_ylabel_using_axesgrid.py deleted file mode 120000 index fd7a5b31fc7..00000000000 --- a/_downloads/21d8ee22ee349956af371690a5d55865/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/21d8ee22ee349956af371690a5d55865/make_room_for_ylabel_using_axesgrid.py \ No newline at end of file diff --git a/_downloads/21d98d6cc2a5c69d315a3e9e626a682c/colormap_reference.ipynb b/_downloads/21d98d6cc2a5c69d315a3e9e626a682c/colormap_reference.ipynb deleted file mode 100644 index 899362b3b70..00000000000 --- a/_downloads/21d98d6cc2a5c69d315a3e9e626a682c/colormap_reference.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap reference\n\n\nReference for colormaps included with Matplotlib.\n\nA reversed version of each of these colormaps is available by appending\n``_r`` to the name, e.g., ``viridis_r``.\n\nSee :doc:`/tutorials/colors/colormaps` for an in-depth discussion about\ncolormaps, including colorblind-friendliness.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ncmaps = [('Perceptually Uniform Sequential', [\n 'viridis', 'plasma', 'inferno', 'magma', 'cividis']),\n ('Sequential', [\n 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds',\n 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu',\n 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn']),\n ('Sequential (2)', [\n 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink',\n 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia',\n 'hot', 'afmhot', 'gist_heat', 'copper']),\n ('Diverging', [\n 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu',\n 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic']),\n ('Cyclic', ['twilight', 'twilight_shifted', 'hsv']),\n ('Qualitative', [\n 'Pastel1', 'Pastel2', 'Paired', 'Accent',\n 'Dark2', 'Set1', 'Set2', 'Set3',\n 'tab10', 'tab20', 'tab20b', 'tab20c']),\n ('Miscellaneous', [\n 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern',\n 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg',\n 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar'])]\n\n\ngradient = np.linspace(0, 1, 256)\ngradient = np.vstack((gradient, gradient))\n\n\ndef plot_color_gradients(cmap_category, cmap_list):\n # Create figure and adjust figure height to number of colormaps\n nrows = len(cmap_list)\n figh = 0.35 + 0.15 + (nrows + (nrows-1)*0.1)*0.22\n fig, axes = plt.subplots(nrows=nrows, figsize=(6.4, figh))\n fig.subplots_adjust(top=1-.35/figh, bottom=.15/figh, left=0.2, right=0.99)\n\n axes[0].set_title(cmap_category + ' colormaps', fontsize=14)\n\n for ax, name in zip(axes, cmap_list):\n ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name))\n ax.text(-.01, .5, name, va='center', ha='right', fontsize=10,\n transform=ax.transAxes)\n\n # Turn off *all* ticks & spines, not just the ones with colormaps.\n for ax in axes:\n ax.set_axis_off()\n\n\nfor cmap_category, cmap_list in cmaps:\n plot_color_gradients(cmap_category, cmap_list)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.axes.Axes.imshow\nmatplotlib.figure.Figure.text\nmatplotlib.axes.Axes.set_axis_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/21de72d50ee04bbf0e72bef5d235277f/custom_scale.ipynb b/_downloads/21de72d50ee04bbf0e72bef5d235277f/custom_scale.ipynb deleted file mode 120000 index 6d875e9cc76..00000000000 --- a/_downloads/21de72d50ee04bbf0e72bef5d235277f/custom_scale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/21de72d50ee04bbf0e72bef5d235277f/custom_scale.ipynb \ No newline at end of file diff --git a/_downloads/21e723ef0feeaabe6aa6010082f5df43/pgf.py b/_downloads/21e723ef0feeaabe6aa6010082f5df43/pgf.py deleted file mode 120000 index 49edffe05f5..00000000000 --- a/_downloads/21e723ef0feeaabe6aa6010082f5df43/pgf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/21e723ef0feeaabe6aa6010082f5df43/pgf.py \ No newline at end of file diff --git a/_downloads/21fc3dc98f8533ecca8330d988136741/masked_demo.ipynb b/_downloads/21fc3dc98f8533ecca8330d988136741/masked_demo.ipynb deleted file mode 120000 index 1609b5e57d1..00000000000 --- a/_downloads/21fc3dc98f8533ecca8330d988136741/masked_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/21fc3dc98f8533ecca8330d988136741/masked_demo.ipynb \ No newline at end of file diff --git a/_downloads/21fd81bf0d3c75e151ee71fcb993e4d2/fonts_demo.py b/_downloads/21fd81bf0d3c75e151ee71fcb993e4d2/fonts_demo.py deleted file mode 120000 index 9bea8f2de30..00000000000 --- a/_downloads/21fd81bf0d3c75e151ee71fcb993e4d2/fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/21fd81bf0d3c75e151ee71fcb993e4d2/fonts_demo.py \ No newline at end of file diff --git a/_downloads/21fddb5ee02038935ec016701127408e/multiprocess_sgskip.ipynb b/_downloads/21fddb5ee02038935ec016701127408e/multiprocess_sgskip.ipynb deleted file mode 120000 index 63ce39feadf..00000000000 --- a/_downloads/21fddb5ee02038935ec016701127408e/multiprocess_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/21fddb5ee02038935ec016701127408e/multiprocess_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/22019e42b41c162d92fc99c448a03ba6/annotation_basic.ipynb b/_downloads/22019e42b41c162d92fc99c448a03ba6/annotation_basic.ipynb deleted file mode 100644 index f31ef622531..00000000000 --- a/_downloads/22019e42b41c162d92fc99c448a03ba6/annotation_basic.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotating a plot\n\n\nThis example shows how to annotate a plot with an arrow pointing to provided\ncoordinates. We modify the defaults of the arrow, to \"shrink\" it.\n\nFor a complete overview of the annotation capabilities, also see the\n:doc:`annotation tutorial`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\nline, = ax.plot(t, s, lw=2)\n\nax.annotate('local max', xy=(2, 1), xytext=(3, 1.5),\n arrowprops=dict(facecolor='black', shrink=0.05),\n )\nax.set_ylim(-2, 2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/220541d9063775d07526a1c218905c41/stackplot_demo.py b/_downloads/220541d9063775d07526a1c218905c41/stackplot_demo.py deleted file mode 120000 index 74acc0d540a..00000000000 --- a/_downloads/220541d9063775d07526a1c218905c41/stackplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/220541d9063775d07526a1c218905c41/stackplot_demo.py \ No newline at end of file diff --git a/_downloads/220bef2d72d9fa41e9cc4563c16d5b33/fahrenheit_celsius_scales.ipynb b/_downloads/220bef2d72d9fa41e9cc4563c16d5b33/fahrenheit_celsius_scales.ipynb deleted file mode 100644 index 8fcc70d586c..00000000000 --- a/_downloads/220bef2d72d9fa41e9cc4563c16d5b33/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Different scales on the same axes\n\n\nDemo of how to display two scales on the left and right y axis.\n\nThis example uses the Fahrenheit and Celsius scales.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef fahrenheit2celsius(temp):\n \"\"\"\n Returns temperature in Celsius.\n \"\"\"\n return (5. / 9.) * (temp - 32)\n\n\ndef convert_ax_c_to_celsius(ax_f):\n \"\"\"\n Update second axis according with first axis.\n \"\"\"\n y1, y2 = ax_f.get_ylim()\n ax_c.set_ylim(fahrenheit2celsius(y1), fahrenheit2celsius(y2))\n ax_c.figure.canvas.draw()\n\nfig, ax_f = plt.subplots()\nax_c = ax_f.twinx()\n\n# automatically update ylim of ax2 when ylim of ax1 changes.\nax_f.callbacks.connect(\"ylim_changed\", convert_ax_c_to_celsius)\nax_f.plot(np.linspace(-40, 120, 100))\nax_f.set_xlim(0, 100)\n\nax_f.set_title('Two scales: Fahrenheit and Celsius')\nax_f.set_ylabel('Fahrenheit')\nax_c.set_ylabel('Celsius')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2224e11a6df6bf8af40499fe6462a98c/dark_background.ipynb b/_downloads/2224e11a6df6bf8af40499fe6462a98c/dark_background.ipynb deleted file mode 120000 index 35b0de5fb33..00000000000 --- a/_downloads/2224e11a6df6bf8af40499fe6462a98c/dark_background.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2224e11a6df6bf8af40499fe6462a98c/dark_background.ipynb \ No newline at end of file diff --git a/_downloads/22287c485163775e53a8e3e3e1cbcea7/multiline.py b/_downloads/22287c485163775e53a8e3e3e1cbcea7/multiline.py deleted file mode 120000 index 4285e75a3e8..00000000000 --- a/_downloads/22287c485163775e53a8e3e3e1cbcea7/multiline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/22287c485163775e53a8e3e3e1cbcea7/multiline.py \ No newline at end of file diff --git a/_downloads/2229c49b6a958eb25c4a5a5d75174549/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/2229c49b6a958eb25c4a5a5d75174549/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 120000 index 736de6bc8e3..00000000000 --- a/_downloads/2229c49b6a958eb25c4a5a5d75174549/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2229c49b6a958eb25c4a5a5d75174549/embedding_in_gtk3_panzoom_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/222a2781dd2ff81219e63a88162c5b95/polygon_selector_demo.ipynb b/_downloads/222a2781dd2ff81219e63a88162c5b95/polygon_selector_demo.ipynb deleted file mode 120000 index 8659602ee83..00000000000 --- a/_downloads/222a2781dd2ff81219e63a88162c5b95/polygon_selector_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/222a2781dd2ff81219e63a88162c5b95/polygon_selector_demo.ipynb \ No newline at end of file diff --git a/_downloads/222bbfe20d1de0e07a87a2e88250571e/custom_scale.ipynb b/_downloads/222bbfe20d1de0e07a87a2e88250571e/custom_scale.ipynb deleted file mode 120000 index 1b967c0a829..00000000000 --- a/_downloads/222bbfe20d1de0e07a87a2e88250571e/custom_scale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/222bbfe20d1de0e07a87a2e88250571e/custom_scale.ipynb \ No newline at end of file diff --git a/_downloads/2232a75a44daa24993d4f80bafe61b4e/ellipse_collection.py b/_downloads/2232a75a44daa24993d4f80bafe61b4e/ellipse_collection.py deleted file mode 120000 index ca828165cb1..00000000000 --- a/_downloads/2232a75a44daa24993d4f80bafe61b4e/ellipse_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2232a75a44daa24993d4f80bafe61b4e/ellipse_collection.py \ No newline at end of file diff --git a/_downloads/2234c2590eaa694e5a6771d925763f01/boxplot_vs_violin.py b/_downloads/2234c2590eaa694e5a6771d925763f01/boxplot_vs_violin.py deleted file mode 100644 index 0a89ce55fc1..00000000000 --- a/_downloads/2234c2590eaa694e5a6771d925763f01/boxplot_vs_violin.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -=================================== -Box plot vs. violin plot comparison -=================================== - -Note that although violin plots are closely related to Tukey's (1977) -box plots, they add useful information such as the distribution of the -sample data (density trace). - -By default, box plots show data points outside 1.5 * the inter-quartile -range as outliers above or below the whiskers whereas violin plots show -the whole range of the data. - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf - -Violin plots require matplotlib >= 1.4. - -For more information on violin plots, the scikit-learn docs have a great -section: http://scikit-learn.org/stable/modules/density.html -""" - -import matplotlib.pyplot as plt -import numpy as np - -fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4)) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# generate some random test data -all_data = [np.random.normal(0, std, 100) for std in range(6, 10)] - -# plot violin plot -axes[0].violinplot(all_data, - showmeans=False, - showmedians=True) -axes[0].set_title('Violin plot') - -# plot box plot -axes[1].boxplot(all_data) -axes[1].set_title('Box plot') - -# adding horizontal grid lines -for ax in axes: - ax.yaxis.grid(True) - ax.set_xticks([y + 1 for y in range(len(all_data))]) - ax.set_xlabel('Four separate samples') - ax.set_ylabel('Observed values') - -# add x-tick labels -plt.setp(axes, xticks=[y + 1 for y in range(len(all_data))], - xticklabels=['x1', 'x2', 'x3', 'x4']) -plt.show() diff --git a/_downloads/223870dcdfd105fbf6d9682f7f3e5598/fill_spiral.ipynb b/_downloads/223870dcdfd105fbf6d9682f7f3e5598/fill_spiral.ipynb deleted file mode 100644 index ee51105dfbd..00000000000 --- a/_downloads/223870dcdfd105fbf6d9682f7f3e5598/fill_spiral.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fill Spiral\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\ntheta = np.arange(0, 8*np.pi, 0.1)\na = 1\nb = .2\n\nfor dt in np.arange(0, 2*np.pi, np.pi/2.0):\n\n x = a*np.cos(theta + dt)*np.exp(b*theta)\n y = a*np.sin(theta + dt)*np.exp(b*theta)\n\n dt = dt + np.pi/4.0\n\n x2 = a*np.cos(theta + dt)*np.exp(b*theta)\n y2 = a*np.sin(theta + dt)*np.exp(b*theta)\n\n xf = np.concatenate((x, x2[::-1]))\n yf = np.concatenate((y, y2[::-1]))\n\n p1 = plt.fill(xf, yf)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/22388b460faf82d96cdc5fb3f9af0830/zoom_window.ipynb b/_downloads/22388b460faf82d96cdc5fb3f9af0830/zoom_window.ipynb deleted file mode 100644 index f5e4795dd58..00000000000 --- a/_downloads/22388b460faf82d96cdc5fb3f9af0830/zoom_window.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Zoom Window\n\n\nThis example shows how to connect events in one window, for example, a mouse\npress, to another figure window.\n\nIf you click on a point in the first window, the z and y limits of the second\nwill be adjusted so that the center of the zoom in the second window will be\nthe x,y coordinates of the clicked point.\n\nNote the diameter of the circles in the scatter are defined in points**2, so\ntheir size is independent of the zoom.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfigsrc, axsrc = plt.subplots()\nfigzoom, axzoom = plt.subplots()\naxsrc.set(xlim=(0, 1), ylim=(0, 1), autoscale_on=False,\n title='Click to zoom')\naxzoom.set(xlim=(0.45, 0.55), ylim=(0.4, 0.6), autoscale_on=False,\n title='Zoom window')\n\nx, y, s, c = np.random.rand(4, 200)\ns *= 200\n\naxsrc.scatter(x, y, s, c)\naxzoom.scatter(x, y, s, c)\n\n\ndef onpress(event):\n if event.button != 1:\n return\n x, y = event.xdata, event.ydata\n axzoom.set_xlim(x - 0.1, x + 0.1)\n axzoom.set_ylim(y - 0.1, y + 0.1)\n figzoom.canvas.draw()\n\nfigsrc.canvas.mpl_connect('button_press_event', onpress)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2239e60083e90876eaa89f67694359b6/random_walk.py b/_downloads/2239e60083e90876eaa89f67694359b6/random_walk.py deleted file mode 120000 index 25e3d02819c..00000000000 --- a/_downloads/2239e60083e90876eaa89f67694359b6/random_walk.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2239e60083e90876eaa89f67694359b6/random_walk.py \ No newline at end of file diff --git a/_downloads/223c735123fe1d8c0614c33e2a509ea6/errorbar_features.py b/_downloads/223c735123fe1d8c0614c33e2a509ea6/errorbar_features.py deleted file mode 120000 index a6db6d65195..00000000000 --- a/_downloads/223c735123fe1d8c0614c33e2a509ea6/errorbar_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/223c735123fe1d8c0614c33e2a509ea6/errorbar_features.py \ No newline at end of file diff --git a/_downloads/223d0ce4ba736655460d820a667aed65/anchored_box03.ipynb b/_downloads/223d0ce4ba736655460d820a667aed65/anchored_box03.ipynb deleted file mode 120000 index 382aa639b2a..00000000000 --- a/_downloads/223d0ce4ba736655460d820a667aed65/anchored_box03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/223d0ce4ba736655460d820a667aed65/anchored_box03.ipynb \ No newline at end of file diff --git a/_downloads/2244c1b12c3fdcc0fe43b70a1e1bdacf/mri_demo.py b/_downloads/2244c1b12c3fdcc0fe43b70a1e1bdacf/mri_demo.py deleted file mode 120000 index 4b7219bdc55..00000000000 --- a/_downloads/2244c1b12c3fdcc0fe43b70a1e1bdacf/mri_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2244c1b12c3fdcc0fe43b70a1e1bdacf/mri_demo.py \ No newline at end of file diff --git a/_downloads/225945ce174206aee85cf1895534f495/scatter3d.ipynb b/_downloads/225945ce174206aee85cf1895534f495/scatter3d.ipynb deleted file mode 120000 index 4f5ed30b8cf..00000000000 --- a/_downloads/225945ce174206aee85cf1895534f495/scatter3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/225945ce174206aee85cf1895534f495/scatter3d.ipynb \ No newline at end of file diff --git a/_downloads/226318a148b5b994213335dc9bda2b29/colormap_normalizations_symlognorm.py b/_downloads/226318a148b5b994213335dc9bda2b29/colormap_normalizations_symlognorm.py deleted file mode 120000 index ab38dfea206..00000000000 --- a/_downloads/226318a148b5b994213335dc9bda2b29/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/226318a148b5b994213335dc9bda2b29/colormap_normalizations_symlognorm.py \ No newline at end of file diff --git a/_downloads/2265b217177eb70311750bcc8c3c0026/triinterp_demo.ipynb b/_downloads/2265b217177eb70311750bcc8c3c0026/triinterp_demo.ipynb deleted file mode 120000 index fcd033431ff..00000000000 --- a/_downloads/2265b217177eb70311750bcc8c3c0026/triinterp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2265b217177eb70311750bcc8c3c0026/triinterp_demo.ipynb \ No newline at end of file diff --git a/_downloads/22660c8f98d24578240b5f6de8d3990e/barchart_demo.ipynb b/_downloads/22660c8f98d24578240b5f6de8d3990e/barchart_demo.ipynb deleted file mode 120000 index e8c376fc17a..00000000000 --- a/_downloads/22660c8f98d24578240b5f6de8d3990e/barchart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/22660c8f98d24578240b5f6de8d3990e/barchart_demo.ipynb \ No newline at end of file diff --git a/_downloads/2268ef3104d0cf95d0ee3638f5adb5ed/markevery_demo.ipynb b/_downloads/2268ef3104d0cf95d0ee3638f5adb5ed/markevery_demo.ipynb deleted file mode 100644 index 59f611a46a9..00000000000 --- a/_downloads/2268ef3104d0cf95d0ee3638f5adb5ed/markevery_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Markevery Demo\n\n\nThis example demonstrates the various options for showing a marker at a\nsubset of data points using the ``markevery`` property of a Line2D object.\n\nInteger arguments are fairly intuitive. e.g. ``markevery=5`` will plot every\n5th marker starting from the first data point.\n\nFloat arguments allow markers to be spaced at approximately equal distances\nalong the line. The theoretical distance along the line between markers is\ndetermined by multiplying the display-coordinate distance of the axes\nbounding-box diagonal by the value of ``markevery``. The data points closest\nto the theoretical distances will be shown.\n\nA slice or list/array can also be used with ``markevery`` to specify the\nmarkers to show.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\n\n# define a list of markevery cases to plot\ncases = [None,\n 8,\n (30, 8),\n [16, 24, 30], [0, -1],\n slice(100, 200, 3),\n 0.1, 0.3, 1.5,\n (0.0, 0.1), (0.45, 0.1)]\n\n# define the figure size and grid layout properties\nfigsize = (10, 8)\ncols = 3\nrows = len(cases) // cols + 1\n# define the data for cartesian plots\ndelta = 0.11\nx = np.linspace(0, 10 - 2 * delta, 200) + delta\ny = np.sin(x) + 1.0 + delta\n\n\ndef trim_axs(axs, N):\n \"\"\"little helper to massage the axs list to have correct length...\"\"\"\n axs = axs.flat\n for ax in axs[N:]:\n ax.remove()\n return axs[:N]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for linear x and y scales\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.plot(x, y, 'o', ls='-', ms=4, markevery=case)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for log x and y scales\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.set_xscale('log')\n ax.set_yscale('log')\n ax.plot(x, y, 'o', ls='-', ms=4, markevery=case)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for linear x and y scales but zoomed in\nnote the behaviour when zoomed in. When a start marker offset is specified\nit is always interpreted with respect to the first data point which might be\ndifferent to the first visible data point.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig3, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.plot(x, y, 'o', ls='-', ms=4, markevery=case)\n ax.set_xlim((6, 6.7))\n ax.set_ylim((1.1, 1.7))\n\n# define data for polar plots\nr = np.linspace(0, 3.0, 200)\ntheta = 2 * np.pi * r" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for polar plots\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig4, axs = plt.subplots(rows, cols, figsize=figsize,\n subplot_kw={'projection': 'polar'}, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.plot(theta, r, 'o', ls='-', ms=4, markevery=case)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2273dfd045c55c2952a6c9e763cee1ca/multiprocess_sgskip.ipynb b/_downloads/2273dfd045c55c2952a6c9e763cee1ca/multiprocess_sgskip.ipynb deleted file mode 120000 index d53ae9fac57..00000000000 --- a/_downloads/2273dfd045c55c2952a6c9e763cee1ca/multiprocess_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2273dfd045c55c2952a6c9e763cee1ca/multiprocess_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/22752bc720de70bac3b5a818e368883f/leftventricle_bulleye.py b/_downloads/22752bc720de70bac3b5a818e368883f/leftventricle_bulleye.py deleted file mode 120000 index c033fbc4125..00000000000 --- a/_downloads/22752bc720de70bac3b5a818e368883f/leftventricle_bulleye.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/22752bc720de70bac3b5a818e368883f/leftventricle_bulleye.py \ No newline at end of file diff --git a/_downloads/227d94f23b2b74ae3d3a466190214ebe/lifecycle.ipynb b/_downloads/227d94f23b2b74ae3d3a466190214ebe/lifecycle.ipynb deleted file mode 100644 index c0e89716db0..00000000000 --- a/_downloads/227d94f23b2b74ae3d3a466190214ebe/lifecycle.ipynb +++ /dev/null @@ -1,324 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The Lifecycle of a Plot\n\n\nThis tutorial aims to show the beginning, middle, and end of a single\nvisualization using Matplotlib. We'll begin with some raw data and\nend by saving a figure of a customized visualization. Along the way we'll try\nto highlight some neat features and best-practices using Matplotlib.\n\n.. currentmodule:: matplotlib\n\n

Note

This tutorial is based off of\n `this excellent blog post `_\n by Chris Moffitt. It was transformed into this tutorial by Chris Holdgraf.

\n\nA note on the Object-Oriented API vs Pyplot\n===========================================\n\nMatplotlib has two interfaces. The first is an object-oriented (OO)\ninterface. In this case, we utilize an instance of :class:`axes.Axes`\nin order to render visualizations on an instance of :class:`figure.Figure`.\n\nThe second is based on MATLAB and uses a state-based interface. This is\nencapsulated in the :mod:`pyplot` module. See the :doc:`pyplot tutorials\n` for a more in-depth look at the pyplot\ninterface.\n\nMost of the terms are straightforward but the main thing to remember\nis that:\n\n* The Figure is the final image that may contain 1 or more Axes.\n* The Axes represent an individual plot (don't confuse this with the word\n \"axis\", which refers to the x/y axis of a plot).\n\nWe call methods that do the plotting directly from the Axes, which gives\nus much more flexibility and power in customizing our plot.\n\n

Note

In general, try to use the object-oriented interface over the pyplot\n interface.

\n\nOur data\n========\n\nWe'll use the data from the post from which this tutorial was derived.\nIt contains sales information for a number of companies.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 10\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import FuncFormatter\n\ndata = {'Barton LLC': 109438.50,\n 'Frami, Hills and Schmidt': 103569.59,\n 'Fritsch, Russel and Anderson': 112214.71,\n 'Jerde-Hilpert': 112591.43,\n 'Keeling LLC': 100934.30,\n 'Koepp Ltd': 103660.54,\n 'Kulas Inc': 137351.96,\n 'Trantow-Barrows': 123381.38,\n 'White-Trantow': 135841.99,\n 'Will LLC': 104437.60}\ngroup_data = list(data.values())\ngroup_names = list(data.keys())\ngroup_mean = np.mean(group_data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Getting started\n===============\n\nThis data is naturally visualized as a barplot, with one bar per\ngroup. To do this with the object-oriented approach, we'll first generate\nan instance of :class:`figure.Figure` and\n:class:`axes.Axes`. The Figure is like a canvas, and the Axes\nis a part of that canvas on which we will make a particular visualization.\n\n

Note

Figures can have multiple axes on them. For information on how to do this,\n see the :doc:`Tight Layout tutorial\n `.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now that we have an Axes instance, we can plot on top of it.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Controlling the style\n=====================\n\nThere are many styles available in Matplotlib in order to let you tailor\nyour visualization to your needs. To see a list of styles, we can use\n:mod:`pyplot.style`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(plt.style.available)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can activate a style with the following:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.style.use('fivethirtyeight')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now let's remake the above plot to see how it looks:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The style controls many things, such as color, linewidths, backgrounds,\netc.\n\nCustomizing the plot\n====================\n\nNow we've got a plot with the general look that we want, so let's fine-tune\nit so that it's ready for print. First let's rotate the labels on the x-axis\nso that they show up more clearly. We can gain access to these labels\nwith the :meth:`axes.Axes.get_xticklabels` method:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If we'd like to set the property of many items at once, it's useful to use\nthe :func:`pyplot.setp` function. This will take a list (or many lists) of\nMatplotlib objects, and attempt to set some style element of each one.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It looks like this cut off some of the labels on the bottom. We can\ntell Matplotlib to automatically make room for elements in the figures\nthat we create. To do this we'll set the ``autolayout`` value of our\nrcParams. For more information on controlling the style, layout, and\nother features of plots with rcParams, see\n:doc:`/tutorials/introductory/customizing`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.rcParams.update({'figure.autolayout': True})\n\nfig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next, we'll add labels to the plot. To do this with the OO interface,\nwe can use the :meth:`axes.Axes.set` method to set properties of this\nAxes object.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can also adjust the size of this plot using the :func:`pyplot.subplots`\nfunction. We can do this with the ``figsize`` kwarg.\n\n

Note

While indexing in NumPy follows the form (row, column), the figsize\n kwarg follows the form (width, height). This follows conventions in\n visualization, which unfortunately are different from those of linear\n algebra.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 4))\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For labels, we can specify custom formatting guidelines in the form of\nfunctions by using the :class:`ticker.FuncFormatter` class. Below we'll\ndefine a function that takes an integer as input, and returns a string\nas an output.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def currency(x, pos):\n \"\"\"The two args are the value and tick position\"\"\"\n if x >= 1e6:\n s = '${:1.1f}M'.format(x*1e-6)\n else:\n s = '${:1.0f}K'.format(x*1e-3)\n return s\n\nformatter = FuncFormatter(currency)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can then apply this formatter to the labels on our plot. To do this,\nwe'll use the ``xaxis`` attribute of our axis. This lets you perform\nactions on a specific axis on our plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 8))\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\n\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')\nax.xaxis.set_major_formatter(formatter)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Combining multiple visualizations\n=================================\n\nIt is possible to draw multiple plot elements on the same instance of\n:class:`axes.Axes`. To do this we simply need to call another one of\nthe plot methods on that axes object.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 8))\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\n\n# Add a vertical line, here we set the style in the function call\nax.axvline(group_mean, ls='--', color='r')\n\n# Annotate new companies\nfor group in [3, 5, 8]:\n ax.text(145000, group, \"New Company\", fontsize=10,\n verticalalignment=\"center\")\n\n# Now we'll move our title up since it's getting a little cramped\nax.title.set(y=1.05)\n\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')\nax.xaxis.set_major_formatter(formatter)\nax.set_xticks([0, 25e3, 50e3, 75e3, 100e3, 125e3])\nfig.subplots_adjust(right=.1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Saving our plot\n===============\n\nNow that we're happy with the outcome of our plot, we want to save it to\ndisk. There are many file formats we can save to in Matplotlib. To see\na list of available options, use:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(fig.canvas.get_supported_filetypes())" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can then use the :meth:`figure.Figure.savefig` in order to save the figure\nto disk. Note that there are several useful flags we'll show below:\n\n* ``transparent=True`` makes the background of the saved figure transparent\n if the format supports it.\n* ``dpi=80`` controls the resolution (dots per square inch) of the output.\n* ``bbox_inches=\"tight\"`` fits the bounds of the figure to our plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Uncomment this line to save the figure.\n# fig.savefig('sales.png', transparent=False, dpi=80, bbox_inches=\"tight\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/227f4a278db10374134251119514ddf8/radian_demo.py b/_downloads/227f4a278db10374134251119514ddf8/radian_demo.py deleted file mode 120000 index 660a53550d6..00000000000 --- a/_downloads/227f4a278db10374134251119514ddf8/radian_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/227f4a278db10374134251119514ddf8/radian_demo.py \ No newline at end of file diff --git a/_downloads/228209eb11e5713d1e5226967dc3e5e9/arrow_guide.py b/_downloads/228209eb11e5713d1e5226967dc3e5e9/arrow_guide.py deleted file mode 120000 index 3ffe2741328..00000000000 --- a/_downloads/228209eb11e5713d1e5226967dc3e5e9/arrow_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/228209eb11e5713d1e5226967dc3e5e9/arrow_guide.py \ No newline at end of file diff --git a/_downloads/22848ff0cedd59cf1b11199ffb810e4f/align_labels_demo.py b/_downloads/22848ff0cedd59cf1b11199ffb810e4f/align_labels_demo.py deleted file mode 100644 index bd574156a50..00000000000 --- a/_downloads/22848ff0cedd59cf1b11199ffb810e4f/align_labels_demo.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -=============== -Aligning Labels -=============== - -Aligning xlabel and ylabel using `Figure.align_xlabels` and -`Figure.align_ylabels` - -`Figure.align_labels` wraps these two functions. - -Note that the xlabel "XLabel1 1" would normally be much closer to the -x-axis, and "YLabel1 0" would be much closer to the y-axis of their -respective axes. -""" -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.gridspec as gridspec - -fig = plt.figure(tight_layout=True) -gs = gridspec.GridSpec(2, 2) - -ax = fig.add_subplot(gs[0, :]) -ax.plot(np.arange(0, 1e6, 1000)) -ax.set_ylabel('YLabel0') -ax.set_xlabel('XLabel0') - -for i in range(2): - ax = fig.add_subplot(gs[1, i]) - ax.plot(np.arange(1., 0., -0.1) * 2000., np.arange(1., 0., -0.1)) - ax.set_ylabel('YLabel1 %d' % i) - ax.set_xlabel('XLabel1 %d' % i) - if i == 0: - for tick in ax.get_xticklabels(): - tick.set_rotation(55) -fig.align_labels() # same as fig.align_xlabels(); fig.align_ylabels() - -plt.show() diff --git a/_downloads/229613cd175982db5e3f68ab8a826153/bar_unit_demo.py b/_downloads/229613cd175982db5e3f68ab8a826153/bar_unit_demo.py deleted file mode 120000 index 1707ac17b4e..00000000000 --- a/_downloads/229613cd175982db5e3f68ab8a826153/bar_unit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/229613cd175982db5e3f68ab8a826153/bar_unit_demo.py \ No newline at end of file diff --git a/_downloads/229cd698fe8e9d258837b097080a4aa9/span_selector.ipynb b/_downloads/229cd698fe8e9d258837b097080a4aa9/span_selector.ipynb deleted file mode 100644 index 9ed4dc3d28f..00000000000 --- a/_downloads/229cd698fe8e9d258837b097080a4aa9/span_selector.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Span Selector\n\n\nThe SpanSelector is a mouse widget to select a xmin/xmax range and plot the\ndetail view of the selected region in the lower axes\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import SpanSelector\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, (ax1, ax2) = plt.subplots(2, figsize=(8, 6))\nax1.set(facecolor='#FFFFCC')\n\nx = np.arange(0.0, 5.0, 0.01)\ny = np.sin(2*np.pi*x) + 0.5*np.random.randn(len(x))\n\nax1.plot(x, y, '-')\nax1.set_ylim(-2, 2)\nax1.set_title('Press left mouse button and drag to test')\n\nax2.set(facecolor='#FFFFCC')\nline2, = ax2.plot(x, y, '-')\n\n\ndef onselect(xmin, xmax):\n indmin, indmax = np.searchsorted(x, (xmin, xmax))\n indmax = min(len(x) - 1, indmax)\n\n thisx = x[indmin:indmax]\n thisy = y[indmin:indmax]\n line2.set_data(thisx, thisy)\n ax2.set_xlim(thisx[0], thisx[-1])\n ax2.set_ylim(thisy.min(), thisy.max())\n fig.canvas.draw()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

If the SpanSelector object is garbage collected you will lose the\n interactivity. You must keep a hard reference to it to prevent this.

\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "span = SpanSelector(ax1, onselect, 'horizontal', useblit=True,\n rectprops=dict(alpha=0.5, facecolor='red'))\n# Set useblit=True on most backends for enhanced performance.\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/229f622bd9d2e08c26b91fbe22538b4c/anchored_box02.py b/_downloads/229f622bd9d2e08c26b91fbe22538b4c/anchored_box02.py deleted file mode 120000 index 22685b5eda6..00000000000 --- a/_downloads/229f622bd9d2e08c26b91fbe22538b4c/anchored_box02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/229f622bd9d2e08c26b91fbe22538b4c/anchored_box02.py \ No newline at end of file diff --git a/_downloads/22a17aa1af3e54e170414697df40062a/agg_buffer.py b/_downloads/22a17aa1af3e54e170414697df40062a/agg_buffer.py deleted file mode 120000 index 76939e75d01..00000000000 --- a/_downloads/22a17aa1af3e54e170414697df40062a/agg_buffer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/22a17aa1af3e54e170414697df40062a/agg_buffer.py \ No newline at end of file diff --git a/_downloads/22a7753b33a9a0612ae401e763f4ed14/embedding_in_gtk4_sgskip.ipynb b/_downloads/22a7753b33a9a0612ae401e763f4ed14/embedding_in_gtk4_sgskip.ipynb deleted file mode 120000 index 51cc1380b28..00000000000 --- a/_downloads/22a7753b33a9a0612ae401e763f4ed14/embedding_in_gtk4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/22a7753b33a9a0612ae401e763f4ed14/embedding_in_gtk4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/22a972a2488baa4beeff3427ff2f068c/print_stdout_sgskip.py b/_downloads/22a972a2488baa4beeff3427ff2f068c/print_stdout_sgskip.py deleted file mode 120000 index 2e838e3899a..00000000000 --- a/_downloads/22a972a2488baa4beeff3427ff2f068c/print_stdout_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/22a972a2488baa4beeff3427ff2f068c/print_stdout_sgskip.py \ No newline at end of file diff --git a/_downloads/22c35e1bd4ce4ebd73a502b7ae46ed65/fahrenheit_celsius_scales.py b/_downloads/22c35e1bd4ce4ebd73a502b7ae46ed65/fahrenheit_celsius_scales.py deleted file mode 120000 index 1127639ed15..00000000000 --- a/_downloads/22c35e1bd4ce4ebd73a502b7ae46ed65/fahrenheit_celsius_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/22c35e1bd4ce4ebd73a502b7ae46ed65/fahrenheit_celsius_scales.py \ No newline at end of file diff --git a/_downloads/22c8dab5e01ac86969997bd2bd02d491/figure_title.py b/_downloads/22c8dab5e01ac86969997bd2bd02d491/figure_title.py deleted file mode 120000 index f7742cc9611..00000000000 --- a/_downloads/22c8dab5e01ac86969997bd2bd02d491/figure_title.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/22c8dab5e01ac86969997bd2bd02d491/figure_title.py \ No newline at end of file diff --git a/_downloads/22ccd4f3bc732d75c894166e4657bde7/fonts_demo_kw.py b/_downloads/22ccd4f3bc732d75c894166e4657bde7/fonts_demo_kw.py deleted file mode 100644 index afbdf150443..00000000000 --- a/_downloads/22ccd4f3bc732d75c894166e4657bde7/fonts_demo_kw.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -=================== -Fonts demo (kwargs) -=================== - -Set font properties using kwargs. - -See :doc:`fonts_demo` to achieve the same effect using setters. -""" - -import matplotlib.pyplot as plt - -alignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'} - -# Show family options - -families = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace'] - -t = plt.figtext(0.1, 0.9, 'family', size='large', **alignment) - -yp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2] - -for k, family in enumerate(families): - t = plt.figtext(0.1, yp[k], family, family=family, **alignment) - -# Show style options - -styles = ['normal', 'italic', 'oblique'] - -t = plt.figtext(0.3, 0.9, 'style', **alignment) - -for k, style in enumerate(styles): - t = plt.figtext(0.3, yp[k], style, family='sans-serif', style=style, - **alignment) - -# Show variant options - -variants = ['normal', 'small-caps'] - -t = plt.figtext(0.5, 0.9, 'variant', **alignment) - -for k, variant in enumerate(variants): - t = plt.figtext(0.5, yp[k], variant, family='serif', variant=variant, - **alignment) - -# Show weight options - -weights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black'] - -t = plt.figtext(0.7, 0.9, 'weight', **alignment) - -for k, weight in enumerate(weights): - t = plt.figtext(0.7, yp[k], weight, weight=weight, **alignment) - -# Show size options - -sizes = ['xx-small', 'x-small', 'small', 'medium', 'large', - 'x-large', 'xx-large'] - -t = plt.figtext(0.9, 0.9, 'size', **alignment) - -for k, size in enumerate(sizes): - t = plt.figtext(0.9, yp[k], size, size=size, **alignment) - -# Show bold italic -t = plt.figtext(0.3, 0.1, 'bold italic', style='italic', - weight='bold', size='x-small', - **alignment) -t = plt.figtext(0.3, 0.2, 'bold italic', - style='italic', weight='bold', size='medium', - **alignment) -t = plt.figtext(0.3, 0.3, 'bold italic', - style='italic', weight='bold', size='x-large', - **alignment) - -plt.show() diff --git a/_downloads/22cde94340e840c3e2f1ba20c23df8fd/spectrum_demo.ipynb b/_downloads/22cde94340e840c3e2f1ba20c23df8fd/spectrum_demo.ipynb deleted file mode 120000 index df017a91334..00000000000 --- a/_downloads/22cde94340e840c3e2f1ba20c23df8fd/spectrum_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/22cde94340e840c3e2f1ba20c23df8fd/spectrum_demo.ipynb \ No newline at end of file diff --git a/_downloads/22ce43a75276b90214fabb728eb53dd5/mandelbrot.ipynb b/_downloads/22ce43a75276b90214fabb728eb53dd5/mandelbrot.ipynb deleted file mode 100644 index 67f6e5def79..00000000000 --- a/_downloads/22ce43a75276b90214fabb728eb53dd5/mandelbrot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===================================\nShaded & power normalized rendering\n===================================\n\nThe Mandelbrot set rendering can be improved by using a normalized recount\nassociated with a power normalized colormap (gamma=0.3). Rendering can be\nfurther enhanced thanks to shading.\n\nThe `maxiter` gives the precision of the computation. `maxiter=200` should\ntake a few seconds on most modern laptops.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\n\ndef mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon=2.0):\n X = np.linspace(xmin, xmax, xn).astype(np.float32)\n Y = np.linspace(ymin, ymax, yn).astype(np.float32)\n C = X + Y[:, None] * 1j\n N = np.zeros_like(C, dtype=int)\n Z = np.zeros_like(C)\n for n in range(maxiter):\n I = abs(Z) < horizon\n N[I] = n\n Z[I] = Z[I]**2 + C[I]\n N[N == maxiter-1] = 0\n return Z, N\n\n\nif __name__ == '__main__':\n import time\n import matplotlib\n from matplotlib import colors\n import matplotlib.pyplot as plt\n\n xmin, xmax, xn = -2.25, +0.75, 3000 // 2\n ymin, ymax, yn = -1.25, +1.25, 2500 // 2\n maxiter = 200\n horizon = 2.0 ** 40\n log_horizon = np.log2(np.log(horizon))\n Z, N = mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon)\n\n # Normalized recount as explained in:\n # https://linas.org/art-gallery/escape/smooth.html\n # https://www.ibm.com/developerworks/community/blogs/jfp/entry/My_Christmas_Gift\n\n # This line will generate warnings for null values but it is faster to\n # process them afterwards using the nan_to_num\n with np.errstate(invalid='ignore'):\n M = np.nan_to_num(N + 1 - np.log2(np.log(abs(Z))) + log_horizon)\n\n dpi = 72\n width = 10\n height = 10*yn/xn\n fig = plt.figure(figsize=(width, height), dpi=dpi)\n ax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1)\n\n # Shaded rendering\n light = colors.LightSource(azdeg=315, altdeg=10)\n M = light.shade(M, cmap=plt.cm.hot, vert_exag=1.5,\n norm=colors.PowerNorm(0.3), blend_mode='hsv')\n ax.imshow(M, extent=[xmin, xmax, ymin, ymax], interpolation=\"bicubic\")\n ax.set_xticks([])\n ax.set_yticks([])\n\n # Some advertisement for matplotlib\n year = time.strftime(\"%Y\")\n text = (\"The Mandelbrot fractal set\\n\"\n \"Rendered with matplotlib %s, %s - http://matplotlib.org\"\n % (matplotlib.__version__, year))\n ax.text(xmin+.025, ymin+.025, text, color=\"white\", fontsize=12, alpha=0.5)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/22d1cbb6b1f0c36199c6f145d6bd4d8c/demo_agg_filter.py b/_downloads/22d1cbb6b1f0c36199c6f145d6bd4d8c/demo_agg_filter.py deleted file mode 120000 index 8b28db6988c..00000000000 --- a/_downloads/22d1cbb6b1f0c36199c6f145d6bd4d8c/demo_agg_filter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/22d1cbb6b1f0c36199c6f145d6bd4d8c/demo_agg_filter.py \ No newline at end of file diff --git a/_downloads/22d2eb5ead9931bb24ff8d06a13715f7/unicode_minus.ipynb b/_downloads/22d2eb5ead9931bb24ff8d06a13715f7/unicode_minus.ipynb deleted file mode 100644 index 2af5f403624..00000000000 --- a/_downloads/22d2eb5ead9931bb24ff8d06a13715f7/unicode_minus.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Unicode minus\n\n\nYou can use the proper typesetting `Unicode minus`__ or the ASCII hyphen for\nminus, which some people prefer. :rc:`axes.unicode_minus` controls the default\nbehavior.\n\n__ https://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes\n\nThe default is to use the Unicode minus.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nmatplotlib.rcParams['axes.unicode_minus'] = False\nfig, ax = plt.subplots()\nax.plot(10*np.random.randn(100), 10*np.random.randn(100), 'o')\nax.set_title('Using hyphen instead of Unicode minus')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/22d30c834b4daa658f6e1e5cc94e64f3/colormap_normalizations_symlognorm.py b/_downloads/22d30c834b4daa658f6e1e5cc94e64f3/colormap_normalizations_symlognorm.py deleted file mode 120000 index 643b4a126e3..00000000000 --- a/_downloads/22d30c834b4daa658f6e1e5cc94e64f3/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/22d30c834b4daa658f6e1e5cc94e64f3/colormap_normalizations_symlognorm.py \ No newline at end of file diff --git a/_downloads/22d50728da073680f6e422203353e995/ginput_manual_clabel_sgskip.ipynb b/_downloads/22d50728da073680f6e422203353e995/ginput_manual_clabel_sgskip.ipynb deleted file mode 100644 index ab7dce09346..00000000000 --- a/_downloads/22d50728da073680f6e422203353e995/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Interactive functions\n\n\nThis provides examples of uses of interactive functions, such as ginput,\nwaitforbuttonpress and manual clabel placement.\n\nThis script must be run interactively using a backend that has a\ngraphical user interface (for example, using GTK3Agg backend, but not\nPS backend).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import time\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef tellme(s):\n print(s)\n plt.title(s, fontsize=16)\n plt.draw()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define a triangle by clicking three points\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.clf()\nplt.setp(plt.gca(), autoscale_on=False)\n\ntellme('You will define a triangle, click to begin')\n\nplt.waitforbuttonpress()\n\nwhile True:\n pts = []\n while len(pts) < 3:\n tellme('Select 3 corners with mouse')\n pts = np.asarray(plt.ginput(3, timeout=-1))\n if len(pts) < 3:\n tellme('Too few points, starting over')\n time.sleep(1) # Wait a second\n\n ph = plt.fill(pts[:, 0], pts[:, 1], 'r', lw=2)\n\n tellme('Happy? Key click for yes, mouse click for no')\n\n if plt.waitforbuttonpress():\n break\n\n # Get rid of fill\n for p in ph:\n p.remove()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now contour according to distance from triangle\ncorners - just an example\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Define a nice function of distance from individual pts\ndef f(x, y, pts):\n z = np.zeros_like(x)\n for p in pts:\n z = z + 1/(np.sqrt((x - p[0])**2 + (y - p[1])**2))\n return 1/z\n\n\nX, Y = np.meshgrid(np.linspace(-1, 1, 51), np.linspace(-1, 1, 51))\nZ = f(X, Y, pts)\n\nCS = plt.contour(X, Y, Z, 20)\n\ntellme('Use mouse to select contour label locations, middle button to finish')\nCL = plt.clabel(CS, manual=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now do a zoom\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "tellme('Now do a nested zoom, click to begin')\nplt.waitforbuttonpress()\n\nwhile True:\n tellme('Select two corners of zoom, middle mouse button to finish')\n pts = plt.ginput(2, timeout=-1)\n if len(pts) < 2:\n break\n (x0, y0), (x1, y1) = pts\n xmin, xmax = sorted([x0, x1])\n ymin, ymax = sorted([y0, y1])\n plt.xlim(xmin, xmax)\n plt.ylim(ymin, ymax)\n\ntellme('All Done!')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/22d57b5ff690950502e071d423750e4a/constrainedlayout_guide.ipynb b/_downloads/22d57b5ff690950502e071d423750e4a/constrainedlayout_guide.ipynb deleted file mode 100644 index 792a2e71e59..00000000000 --- a/_downloads/22d57b5ff690950502e071d423750e4a/constrainedlayout_guide.ipynb +++ /dev/null @@ -1,712 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Constrained Layout Guide\n\n\nHow to use constrained-layout to fit plots within your figure cleanly.\n\n*constrained_layout* automatically adjusts subplots and decorations like\nlegends and colorbars so that they fit in the figure window while still\npreserving, as best they can, the logical layout requested by the user.\n\n*constrained_layout* is similar to\n:doc:`tight_layout`,\nbut uses a constraint solver to determine the size of axes that allows\nthem to fit.\n\n*constrained_layout* needs to be activated before any axes are added to\na figure. Two ways of doing so are\n\n* using the respective argument to :func:`~.pyplot.subplots` or\n :func:`~.pyplot.figure`, e.g.::\n\n plt.subplots(constrained_layout=True)\n\n* activate it via `rcParams`, like::\n\n plt.rcParams['figure.constrained_layout.use'] = True\n\nThose are described in detail throughout the following sections.\n\n

Warning

Currently Constrained Layout is **experimental**. The\n behaviour and API are subject to change, or the whole functionality\n may be removed without a deprecation period. If you *require* your\n plots to be absolutely reproducible, get the Axes positions after\n running Constrained Layout and use ``ax.set_position()`` in your code\n with ``constrained_layout=False``.

\n\nSimple Example\n==============\n\nIn Matplotlib, the location of axes (including subplots) are specified in\nnormalized figure coordinates. It can happen that your axis labels or\ntitles (or sometimes even ticklabels) go outside the figure area, and are thus\nclipped.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 18\n\n\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as mcolors\nimport matplotlib.gridspec as gridspec\nimport numpy as np\n\n\nplt.rcParams['savefig.facecolor'] = \"0.8\"\nplt.rcParams['figure.figsize'] = 4.5, 4.\n\n\ndef example_plot(ax, fontsize=12, nodec=False):\n ax.plot([1, 2])\n\n ax.locator_params(nbins=3)\n if not nodec:\n ax.set_xlabel('x-label', fontsize=fontsize)\n ax.set_ylabel('y-label', fontsize=fontsize)\n ax.set_title('Title', fontsize=fontsize)\n else:\n ax.set_xticklabels('')\n ax.set_yticklabels('')\n\n\nfig, ax = plt.subplots(constrained_layout=False)\nexample_plot(ax, fontsize=24)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To prevent this, the location of axes needs to be adjusted. For\nsubplots, this can be done by adjusting the subplot params\n(`howto-subplots-adjust`). However, specifying your figure with the\n``constrained_layout=True`` kwarg will do the adjusting automatically.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nexample_plot(ax, fontsize=24)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When you have multiple subplots, often you see labels of different\naxes overlapping each other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=False)\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Specifying ``constrained_layout=True`` in the call to ``plt.subplots``\ncauses the layout to be properly constrained.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbars\n=========\n\nIf you create a colorbar with the :func:`~matplotlib.pyplot.colorbar`\ncommand you need to make room for it. ``constrained_layout`` does this\nautomatically. Note that if you specify ``use_gridspec=True`` it will be\nignored because this option is made for improving the layout via\n``tight_layout``.\n\n

Note

For the `~.axes.Axes.pcolormesh` kwargs (``pc_kwargs``) we use a\n dictionary. Below we will assign one colorbar to a number of axes each\n containing a `~.cm.ScalarMappable`; specifying the norm and colormap\n ensures the colorbar is accurate for all the axes.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "arr = np.arange(100).reshape((10, 10))\nnorm = mcolors.Normalize(vmin=0., vmax=100.)\n# see note above: this makes all pcolormesh calls consistent:\npc_kwargs = {'rasterized': True, 'cmap': 'viridis', 'norm': norm}\nfig, ax = plt.subplots(figsize=(4, 4), constrained_layout=True)\nim = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=ax, shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you specify a list of axes (or other iterable container) to the\n``ax`` argument of ``colorbar``, constrained_layout will take space from\nthe specified axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs, shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you specify a list of axes from inside a grid of axes, the colorbar\nwill steal space appropriately, and leave a gap, but all subplots will\nstill be the same size.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 3, figsize=(4, 4), constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[1:, ][:, 1], shrink=0.8)\nfig.colorbar(im, ax=axs[:, -1], shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that there is a bit of a subtlety when specifying a single axes\nas the parent. In the following, it might be desirable and expected\nfor the colorbars to line up, but they don't because the colorbar paired\nwith the bottom axes is tied to the subplotspec of the axes, and hence\nshrinks when the gridspec-level colorbar is added.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True)\nfor ax in axs[:2]:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[:2], shrink=0.6)\nim = axs[2].pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[2], shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The API to make a single-axes behave like a list of axes is to specify\nit as a list (or other iterable container), as below:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True)\nfor ax in axs[:2]:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[:2], shrink=0.6)\nim = axs[2].pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=[axs[2]], shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Suptitle\n=========\n\n``constrained_layout`` can also make room for `~.figure.Figure.suptitle`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs, shrink=0.6)\nfig.suptitle('Big Suptitle')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legends\n=======\n\nLegends can be placed outside of their parent axis.\nConstrained-layout is designed to handle this for :meth:`.Axes.legend`.\nHowever, constrained-layout does *not* handle legends being created via\n:meth:`.Figure.legend` (yet).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nax.plot(np.arange(10), label='This is a plot')\nax.legend(loc='center left', bbox_to_anchor=(0.8, 0.5))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "However, this will steal space from a subplot layout:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True)\naxs[0].plot(np.arange(10))\naxs[1].plot(np.arange(10), label='This is a plot')\naxs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In order for a legend or other artist to *not* steal space\nfrom the subplot layout, we can ``leg.set_in_layout(False)``.\nOf course this can mean the legend ends up\ncropped, but can be useful if the plot is subsequently called\nwith ``fig.savefig('outname.png', bbox_inches='tight')``. Note,\nhowever, that the legend's ``get_in_layout`` status will have to be\ntoggled again to make the saved file work, and we must manually\ntrigger a draw if we want constrained_layout to adjust the size\nof the axes before printing.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True)\n\naxs[0].plot(np.arange(10))\naxs[1].plot(np.arange(10), label='This is a plot')\nleg = axs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5))\nleg.set_in_layout(False)\n# trigger a draw so that constrained_layout is executed once\n# before we turn it off when printing....\nfig.canvas.draw()\n# we want the legend included in the bbox_inches='tight' calcs.\nleg.set_in_layout(True)\n# we don't want the layout to change at this point.\nfig.set_constrained_layout(False)\nfig.savefig('CL01.png', bbox_inches='tight', dpi=100)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The saved file looks like:\n\n![](/_static/constrained_layout/CL01.png)\n\n :align: center\n\nA better way to get around this awkwardness is to simply\nuse the legend method provided by `.Figure.legend`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True)\naxs[0].plot(np.arange(10))\nlines = axs[1].plot(np.arange(10), label='This is a plot')\nlabels = [l.get_label() for l in lines]\nleg = fig.legend(lines, labels, loc='center left',\n bbox_to_anchor=(0.8, 0.5), bbox_transform=axs[1].transAxes)\nfig.savefig('CL02.png', bbox_inches='tight', dpi=100)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The saved file looks like:\n\n![](/_static/constrained_layout/CL02.png)\n\n :align: center\n\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Padding and Spacing\n===================\n\nFor constrained_layout, we have implemented a padding around the edge of\neach axes. This padding sets the distance from the edge of the plot,\nand the minimum distance between adjacent plots. It is specified in\ninches by the keyword arguments ``w_pad`` and ``h_pad`` to the function\n`~.figure.Figure.set_constrained_layout_pads`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax, nodec=True)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=4./72., h_pad=4./72.,\n hspace=0., wspace=0.)\n\nfig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax, nodec=True)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0., wspace=0.)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Spacing between subplots is set by ``wspace`` and ``hspace``. There are\nspecified as a fraction of the size of the subplot group as a whole.\nIf the size of the figure is changed, then these spaces change in\nproportion. Note in the blow how the space at the edges doesn't change from\nthe above, but the space between subplots does.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax, nodec=True)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0.2, wspace=0.2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Spacing with colorbars\n-----------------------\n\nColorbars will be placed ``wspace`` and ``hsapce`` apart from other\nsubplots. The padding between the colorbar and the axis it is\nattached to will never be less than ``w_pad`` (for a vertical colorbar)\nor ``h_pad`` (for a horizontal colorbar). Note the use of the ``pad`` kwarg\nhere in the ``colorbar`` call. It defaults to 0.02 of the size\nof the axis it is attached to.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n pc = ax.pcolormesh(arr, **pc_kwargs)\n fig.colorbar(pc, ax=ax, shrink=0.6, pad=0)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0.2, wspace=0.2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the above example, the colorbar will not ever be closer than 2 pts to\nthe plot, but if we want it a bit further away, we can specify its value\nfor ``pad`` to be non-zero.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n pc = ax.pcolormesh(arr, **pc_kwargs)\n fig.colorbar(im, ax=ax, shrink=0.6, pad=0.05)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0.2, wspace=0.2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "rcParams\n========\n\nThere are five `rcParams` that can be set,\neither in a script or in the `matplotlibrc` file.\nThey all have the prefix ``figure.constrained_layout``:\n\n- ``use``: Whether to use constrained_layout. Default is False\n- ``w_pad``, ``h_pad``: Padding around axes objects.\n Float representing inches. Default is 3./72. inches (3 pts)\n- ``wspace``, ``hspace``: Space between subplot groups.\n Float representing a fraction of the subplot widths being separated.\n Default is 0.02.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.rcParams['figure.constrained_layout.use'] = True\nfig, axs = plt.subplots(2, 2, figsize=(3, 3))\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use with GridSpec\n=================\n\nconstrained_layout is meant to be used\nwith :func:`~matplotlib.figure.Figure.subplots` or\n:func:`~matplotlib.gridspec.GridSpec` and\n:func:`~matplotlib.figure.Figure.add_subplot`.\n\nNote that in what follows ``constrained_layout=True``\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1, figure=fig)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "More complicated gridspec layouts are possible. Note here we use the\nconvenience functions ``add_gridspec`` and ``subgridspec``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs0 = fig.add_gridspec(1, 2)\n\ngs1 = gs0[0].subgridspec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs2 = gs0[1].subgridspec(3, 1)\n\nfor ss in gs2:\n ax = fig.add_subplot(ss)\n example_plot(ax)\n ax.set_title(\"\")\n ax.set_xlabel(\"\")\n\nax.set_xlabel(\"x-label\", fontsize=12)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that in the above the left and columns don't have the same vertical\nextent. If we want the top and bottom of the two grids to line up then\nthey need to be in the same gridspec:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs0 = fig.add_gridspec(6, 2)\n\nax1 = fig.add_subplot(gs0[:3, 0])\nax2 = fig.add_subplot(gs0[3:, 0])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\nax = fig.add_subplot(gs0[0:2, 1])\nexample_plot(ax)\nax = fig.add_subplot(gs0[2:4, 1])\nexample_plot(ax)\nax = fig.add_subplot(gs0[4:, 1])\nexample_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This example uses two gridspecs to have the colorbar only pertain to\none set of pcolors. Note how the left column is wider than the\ntwo right-hand columns because of this. Of course, if you wanted the\nsubplots to be the same size you only needed one gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def docomplicated(suptitle=None):\n fig = plt.figure()\n gs0 = fig.add_gridspec(1, 2, figure=fig, width_ratios=[1., 2.])\n gsl = gs0[0].subgridspec(2, 1)\n gsr = gs0[1].subgridspec(2, 2)\n\n for gs in gsl:\n ax = fig.add_subplot(gs)\n example_plot(ax)\n axs = []\n for gs in gsr:\n ax = fig.add_subplot(gs)\n pcm = ax.pcolormesh(arr, **pc_kwargs)\n ax.set_xlabel('x-label')\n ax.set_ylabel('y-label')\n ax.set_title('title')\n\n axs += [ax]\n fig.colorbar(pcm, ax=axs)\n if suptitle is not None:\n fig.suptitle(suptitle)\n\ndocomplicated()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Manually setting axes positions\n================================\n\nThere can be good reasons to manually set an axes position. A manual call\nto `~.axes.Axes.set_position` will set the axes so constrained_layout has\nno effect on it anymore. (Note that constrained_layout still leaves the\nspace for the axes that is moved).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2)\nexample_plot(axs[0], fontsize=12)\naxs[1].set_position([0.2, 0.2, 0.4, 0.4])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you want an inset axes in data-space, you need to manually execute the\nlayout using ``fig.execute_constrained_layout()`` call. The inset figure\nwill then be properly positioned. However, it will not be properly\npositioned if the size of the figure is subsequently changed. Similarly,\nif the figure is printed to another backend, there may be slight changes\nof location due to small differences in how the backends render fonts.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.transforms import Bbox\n\nfig, axs = plt.subplots(1, 2)\nexample_plot(axs[0], fontsize=12)\nfig.execute_constrained_layout()\n# put into data-space:\nbb_data_ax2 = Bbox.from_bounds(0.5, 1., 0.2, 0.4)\ndisp_coords = axs[0].transData.transform(bb_data_ax2)\nfig_coords_ax2 = fig.transFigure.inverted().transform(disp_coords)\nbb_ax2 = Bbox(fig_coords_ax2)\nax2 = fig.add_axes(bb_ax2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Manually turning off ``constrained_layout``\n===========================================\n\n``constrained_layout`` usually adjusts the axes positions on each draw\nof the figure. If you want to get the spacing provided by\n``constrained_layout`` but not have it update, then do the initial\ndraw and then call ``fig.set_constrained_layout(False)``.\nThis is potentially useful for animations where the tick labels may\nchange length.\n\nNote that ``constrained_layout`` is turned off for ``ZOOM`` and ``PAN``\nGUI events for the backends that use the toolbar. This prevents the\naxes from changing position during zooming and panning.\n\n\nLimitations\n========================\n\nIncompatible functions\n----------------------\n\n``constrained_layout`` will not work on subplots\ncreated via the `subplot` command. The reason is that each of these\ncommands creates a separate `GridSpec` instance and ``constrained_layout``\nuses (nested) gridspecs to carry out the layout. So the following fails\nto yield a nice layout:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot(221)\nax2 = plt.subplot(223)\nax3 = plt.subplot(122)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Of course that layout is possible using a gridspec:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\ngs = fig.add_gridspec(2, 2)\n\nax1 = fig.add_subplot(gs[0, 0])\nax2 = fig.add_subplot(gs[1, 0])\nax3 = fig.add_subplot(gs[:, 1])\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Similarly,\n:func:`~matplotlib.pyplot.subplot2grid` doesn't work for the same reason:\neach call creates a different parent gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot2grid((3, 3), (0, 0))\nax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2)\nax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The way to make this plot compatible with ``constrained_layout`` is again\nto use ``gridspec`` directly\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\ngs = fig.add_gridspec(3, 3)\n\nax1 = fig.add_subplot(gs[0, 0])\nax2 = fig.add_subplot(gs[0, 1:])\nax3 = fig.add_subplot(gs[1:, 0:2])\nax4 = fig.add_subplot(gs[1:, -1])\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Other Caveats\n-------------\n\n* ``constrained_layout`` only considers ticklabels, axis labels, titles, and\n legends. Thus, other artists may be clipped and also may overlap.\n\n* It assumes that the extra space needed for ticklabels, axis labels,\n and titles is independent of original location of axes. This is\n often true, but there are rare cases where it is not.\n\n* There are small differences in how the backends handle rendering fonts,\n so the results will not be pixel-identical.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Debugging\n=========\n\nConstrained-layout can fail in somewhat unexpected ways. Because it uses\na constraint solver the solver can find solutions that are mathematically\ncorrect, but that aren't at all what the user wants. The usual failure\nmode is for all sizes to collapse to their smallest allowable value. If\nthis happens, it is for one of two reasons:\n\n1. There was not enough room for the elements you were requesting to draw.\n2. There is a bug - in which case open an issue at\n https://github.com/matplotlib/matplotlib/issues.\n\nIf there is a bug, please report with a self-contained example that does\nnot require outside data or dependencies (other than numpy).\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notes on the algorithm\n======================\n\nThe algorithm for the constraint is relatively straightforward, but\nhas some complexity due to the complex ways we can layout a figure.\n\nFigure layout\n-------------\n\nFigures are laid out in a hierarchy:\n\n1. Figure: ``fig = plt.figure()``\n\n a. Gridspec ``gs0 = gridspec.GridSpec(1, 2, figure=fig)``\n\n i. Subplotspec: ``ss = gs[0, 0]``\n\n 1. Axes: ``ax0 = fig.add_subplot(ss)``\n\n ii. Subplotspec: ``ss = gs[0, 1]``\n\n 1. Gridspec: ``gsR = gridspec.GridSpecFromSubplotSpec(2, 1, ss)``\n\n - Subplotspec: ``ss = gsR[0, 0]``\n\n - Axes: ``axR0 = fig.add_subplot(ss)``\n\n - Subplotspec: ``ss = gsR[1, 0]``\n\n - Axes: ``axR1 = fig.add_subplot(ss)``\n\nEach item has a layoutbox associated with it. The nesting of gridspecs\ncreated with `.GridSpecFromSubplotSpec` can be arbitrarily deep.\n\nEach `~matplotlib.axes.Axes` has *two* layoutboxes. The first one,\n``ax._layoutbox`` represents the outside of the Axes and all its\ndecorations (i.e. ticklabels,axis labels, etc.).\nThe second layoutbox corresponds to the Axes' ``ax.position``, which sets\nwhere in the figure the spines are placed.\n\nWhy so many stacked containers? Ideally, all that would be needed are the\nAxes layout boxes. For the Gridspec case, a container is\nneeded if the Gridspec is nested via `.GridSpecFromSubplotSpec`. At the\ntop level, it is desirable for symmetry, but it also makes room for\n`~.Figure.suptitle`.\n\nFor the Subplotspec/Axes case, Axes often have colorbars or other\nannotations that need to be packaged inside the Subplotspec, hence the\nneed for the outer layer.\n\n\nSimple case: one Axes\n---------------------\n\nFor a single Axes the layout is straight forward. The Figure and\nouter Gridspec layoutboxes coincide. The Subplotspec and Axes\nboxes also coincide because the Axes has no colorbar. Note\nthe difference between the red ``pos`` box and the green ``ax`` box\nis set by the size of the decorations around the Axes.\n\nIn the code, this is accomplished by the entries in\n``do_constrained_layout()`` like::\n\n ax._poslayoutbox.edit_left_margin_min(-bbox.x0 + pos.x0 + w_padt)\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib._layoutbox import plot_children\n\nfig, ax = plt.subplots(constrained_layout=True)\nexample_plot(ax, fontsize=24)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Simple case: two Axes\n---------------------\nFor this case, the Axes layoutboxes and the Subplotspec boxes still\nco-incide. However, because the decorations in the right-hand plot are so\nmuch smaller than the left-hand, so the right-hand layoutboxes are smaller.\n\nThe Subplotspec boxes are laid out in the code in the subroutine\n``arange_subplotspecs()``, which simply checks the subplotspecs in the code\nagainst one another and stacks them appropriately.\n\nThe two ``pos`` axes are lined up. Because they have the same\nminimum row, they are lined up at the top. Because\nthey have the same maximum row they are lined up at the bottom. In the\ncode this is accomplished via the calls to ``layoutbox.align``. If\nthere was more than one row, then the same horizontal alignment would\noccur between the rows.\n\nThe two ``pos`` axes are given the same width because the subplotspecs\noccupy the same number of columns. This is accomplished in the code where\n``dcols0`` is compared to ``dcolsC``. If they are equal, then their widths\nare constrained to be equal.\n\nWhile it is a bit subtle in this case, note that the division between the\nSubplotspecs is *not* centered, but has been moved to the right to make\nspace for the larger labels on the left-hand plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(1, 2, constrained_layout=True)\nexample_plot(ax[0], fontsize=32)\nexample_plot(ax[1], fontsize=8)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Two Axes and colorbar\n---------------------\n\nAdding a colorbar makes it clear why the Subplotspec layoutboxes must\nbe different from the axes layoutboxes. Here we see the left-hand\nsubplotspec has more room to accommodate the `~.Figure.colorbar`, and\nthat there are two green ``ax`` boxes inside the ``ss`` box.\n\nNote that the width of the ``pos`` boxes is still the same because of the\nconstraint on their widths because their subplotspecs occupy the same\nnumber of columns (one in this example).\n\nThe colorbar layout logic is contained in `~matplotlib.colorbar.make_axes`\nwhich calls ``_constrained_layout.layoutcolorbarsingle()``\nfor cbars attached to a single axes, and\n``_constrained_layout.layoutcolorbargridspec()`` if the colorbar is\nassociated with a gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(1, 2, constrained_layout=True)\nim = ax[0].pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=ax[0], shrink=0.6)\nim = ax[1].pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbar associated with a Gridspec\n-----------------------------------\n\nThis example shows the Subplotspec layoutboxes being made smaller by\na colorbar layoutbox. The size of the colorbar layoutbox is\nset to be ``shrink`` smaller than the vertical extent of the ``pos``\nlayoutboxes in the gridspec, and it is made to be centered between\nthose two points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs, shrink=0.6)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Uneven sized Axes\n-----------------\n\nThere are two ways to make axes have an uneven size in a\nGridspec layout, either by specifying them to cross Gridspecs rows\nor columns, or by specifying width and height ratios.\n\nThe first method is used here. The constraint that makes the heights\nbe correct is in the code where ``drowsC < drows0`` which in\nthis case would be 1 is less than 2. So we constrain the\nheight of the 1-row Axes to be less than half the height of the\n2-row Axes.\n\n

Note

This algorithm can be wrong if the decorations attached to the smaller\n axes are very large, so there is an unaccounted-for edge case.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(2, 2, figure=fig)\nax = fig.add_subplot(gs[:, 0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[0, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[1, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Height and width ratios are accommodated with the same part of\nthe code with the smaller axes always constrained to be less in size\nthan the larger.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(3, 2, figure=fig,\n height_ratios=[1., 0.5, 1.5],\n width_ratios=[1.2, 0.8])\nax = fig.add_subplot(gs[:2, 0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[2, 0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[0, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[1:, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Empty gridspec slots\n--------------------\n\nThe final piece of the code that has not been explained is what happens if\nthere is an empty gridspec opening. In that case a fake invisible axes is\nadded and we proceed as before. The empty gridspec has no decorations, but\nthe axes position in made the same size as the occupied Axes positions.\n\nThis is done at the start of\n``_constrained_layout.do_constrained_layout()`` (``hassubplotspec``).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(1, 3, figure=fig)\nax = fig.add_subplot(gs[0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[-1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Other notes\n-----------\n\nThe layout is called only once. This is OK if the original layout was\npretty close (which it should be in most cases). However, if the layout\nchanges a lot from the default layout then the decorators can change size.\nIn particular the x and ytick labels can change. If this happens, then\nwe should probably call the whole routine twice.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/22ed244295c6d8b8d920f63dbffa6aff/contour.ipynb b/_downloads/22ed244295c6d8b8d920f63dbffa6aff/contour.ipynb deleted file mode 100644 index b79be09283b..00000000000 --- a/_downloads/22ed244295c6d8b8d920f63dbffa6aff/contour.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage contour example\n\n\nThis example reproduces the frontpage contour example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import cm\n\nextent = (-3, 3, -3, 3)\n\ndelta = 0.5\nx = np.arange(-3.0, 4.001, delta)\ny = np.arange(-4.0, 3.001, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = Z1 - Z2\n\nnorm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max())\n\nfig, ax = plt.subplots()\ncset1 = ax.contourf(\n X, Y, Z, 40,\n norm=norm)\nax.set_xlim(-2, 2)\nax.set_ylim(-2, 2)\nax.set_xticks([])\nax.set_yticks([])\nfig.savefig(\"contour_frontpage.png\", dpi=25) # results in 160x120 px image\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/22eda27f645838fd80c749be793ce061/simple_annotate01.ipynb b/_downloads/22eda27f645838fd80c749be793ce061/simple_annotate01.ipynb deleted file mode 120000 index 8210ce78673..00000000000 --- a/_downloads/22eda27f645838fd80c749be793ce061/simple_annotate01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/22eda27f645838fd80c749be793ce061/simple_annotate01.ipynb \ No newline at end of file diff --git a/_downloads/230862400cbe9c364e32aef2432e4921/gridspec_multicolumn.ipynb b/_downloads/230862400cbe9c364e32aef2432e4921/gridspec_multicolumn.ipynb deleted file mode 120000 index 037aa2680f0..00000000000 --- a/_downloads/230862400cbe9c364e32aef2432e4921/gridspec_multicolumn.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/230862400cbe9c364e32aef2432e4921/gridspec_multicolumn.ipynb \ No newline at end of file diff --git a/_downloads/2308c08a00c5e7b60c8b3132b38fb862/wire3d.py b/_downloads/2308c08a00c5e7b60c8b3132b38fb862/wire3d.py deleted file mode 120000 index ccf112ba8fb..00000000000 --- a/_downloads/2308c08a00c5e7b60c8b3132b38fb862/wire3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2308c08a00c5e7b60c8b3132b38fb862/wire3d.py \ No newline at end of file diff --git a/_downloads/2309640334f7b4a998ee4f3793b79881/pick_event_demo.py b/_downloads/2309640334f7b4a998ee4f3793b79881/pick_event_demo.py deleted file mode 120000 index 6e71d821bba..00000000000 --- a/_downloads/2309640334f7b4a998ee4f3793b79881/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2309640334f7b4a998ee4f3793b79881/pick_event_demo.py \ No newline at end of file diff --git a/_downloads/2313d5491bc146dc32a3b58f2eb7047f/cursor_demo_sgskip.py b/_downloads/2313d5491bc146dc32a3b58f2eb7047f/cursor_demo_sgskip.py deleted file mode 120000 index 6b68cf3e270..00000000000 --- a/_downloads/2313d5491bc146dc32a3b58f2eb7047f/cursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2313d5491bc146dc32a3b58f2eb7047f/cursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/231960af6bb673450b2acbd6eef93170/demo_imagegrid_aspect.py b/_downloads/231960af6bb673450b2acbd6eef93170/demo_imagegrid_aspect.py deleted file mode 120000 index 20dbfc68eba..00000000000 --- a/_downloads/231960af6bb673450b2acbd6eef93170/demo_imagegrid_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/231960af6bb673450b2acbd6eef93170/demo_imagegrid_aspect.py \ No newline at end of file diff --git a/_downloads/231a863eabdb031f377a53c7684fdf5b/integral.ipynb b/_downloads/231a863eabdb031f377a53c7684fdf5b/integral.ipynb deleted file mode 120000 index 05cd646b784..00000000000 --- a/_downloads/231a863eabdb031f377a53c7684fdf5b/integral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/231a863eabdb031f377a53c7684fdf5b/integral.ipynb \ No newline at end of file diff --git a/_downloads/231ba087782bb0198c00d84df257edcb/ggplot.ipynb b/_downloads/231ba087782bb0198c00d84df257edcb/ggplot.ipynb deleted file mode 100644 index 02b56a427d2..00000000000 --- a/_downloads/231ba087782bb0198c00d84df257edcb/ggplot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# ggplot style sheet\n\n\nThis example demonstrates the \"ggplot\" style, which adjusts the style to\nemulate ggplot_ (a popular plotting package for R_).\n\nThese settings were shamelessly stolen from [1]_ (with permission).\n\n.. [1] https://web.archive.org/web/20111215111010/http://www.huyng.com/archives/sane-color-scheme-for-matplotlib/691/\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nplt.style.use('ggplot')\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, axes = plt.subplots(ncols=2, nrows=2)\nax1, ax2, ax3, ax4 = axes.ravel()\n\n# scatter plot (Note: `plt.scatter` doesn't use default colors)\nx, y = np.random.normal(size=(2, 200))\nax1.plot(x, y, 'o')\n\n# sinusoidal lines with colors from default color cycle\nL = 2*np.pi\nx = np.linspace(0, L)\nncolors = len(plt.rcParams['axes.prop_cycle'])\nshift = np.linspace(0, L, ncolors, endpoint=False)\nfor s in shift:\n ax2.plot(x, np.sin(x + s), '-')\nax2.margins(0)\n\n# bar graphs\nx = np.arange(5)\ny1, y2 = np.random.randint(1, 25, size=(2, 5))\nwidth = 0.25\nax3.bar(x, y1, width)\nax3.bar(x + width, y2, width,\n color=list(plt.rcParams['axes.prop_cycle'])[2]['color'])\nax3.set_xticks(x + width)\nax3.set_xticklabels(['a', 'b', 'c', 'd', 'e'])\n\n# circles with colors from default color cycle\nfor i, color in enumerate(plt.rcParams['axes.prop_cycle']):\n xy = np.random.normal(size=2)\n ax4.add_patch(plt.Circle(xy, radius=0.3, color=color['color']))\nax4.axis('equal')\nax4.margins(0)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/231d2c045a9140a10793cac62033c3a2/demo_floating_axis.ipynb b/_downloads/231d2c045a9140a10793cac62033c3a2/demo_floating_axis.ipynb deleted file mode 120000 index b48d3e7d70d..00000000000 --- a/_downloads/231d2c045a9140a10793cac62033c3a2/demo_floating_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/231d2c045a9140a10793cac62033c3a2/demo_floating_axis.ipynb \ No newline at end of file diff --git a/_downloads/2320c5bbd4f392d8ed0b09e3e1a95547/pipong.ipynb b/_downloads/2320c5bbd4f392d8ed0b09e3e1a95547/pipong.ipynb deleted file mode 120000 index 0c938853048..00000000000 --- a/_downloads/2320c5bbd4f392d8ed0b09e3e1a95547/pipong.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2320c5bbd4f392d8ed0b09e3e1a95547/pipong.ipynb \ No newline at end of file diff --git a/_downloads/2321f9a7dd25fb72eec790ec6e7a4c5e/advanced_hillshading.ipynb b/_downloads/2321f9a7dd25fb72eec790ec6e7a4c5e/advanced_hillshading.ipynb deleted file mode 120000 index 2d53386ac35..00000000000 --- a/_downloads/2321f9a7dd25fb72eec790ec6e7a4c5e/advanced_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2321f9a7dd25fb72eec790ec6e7a4c5e/advanced_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/232b3a1693a8781f86fcc1443859e0c6/annotations.py b/_downloads/232b3a1693a8781f86fcc1443859e0c6/annotations.py deleted file mode 120000 index 4c013b63c2f..00000000000 --- a/_downloads/232b3a1693a8781f86fcc1443859e0c6/annotations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/232b3a1693a8781f86fcc1443859e0c6/annotations.py \ No newline at end of file diff --git a/_downloads/232e1ede3d1afb31af9e68a02e23abb8/broken_barh.py b/_downloads/232e1ede3d1afb31af9e68a02e23abb8/broken_barh.py deleted file mode 120000 index 96f7ec9372f..00000000000 --- a/_downloads/232e1ede3d1afb31af9e68a02e23abb8/broken_barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/232e1ede3d1afb31af9e68a02e23abb8/broken_barh.py \ No newline at end of file diff --git a/_downloads/233af54bee28814ae4bb34817226f0ea/color_cycle_default.py b/_downloads/233af54bee28814ae4bb34817226f0ea/color_cycle_default.py deleted file mode 120000 index 7862a026698..00000000000 --- a/_downloads/233af54bee28814ae4bb34817226f0ea/color_cycle_default.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/233af54bee28814ae4bb34817226f0ea/color_cycle_default.py \ No newline at end of file diff --git a/_downloads/2348fec89e22587ceb8504e87361cf2d/trigradient_demo.ipynb b/_downloads/2348fec89e22587ceb8504e87361cf2d/trigradient_demo.ipynb deleted file mode 120000 index 45189bac456..00000000000 --- a/_downloads/2348fec89e22587ceb8504e87361cf2d/trigradient_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2348fec89e22587ceb8504e87361cf2d/trigradient_demo.ipynb \ No newline at end of file diff --git a/_downloads/234a4f2d2a8fb4f34f94250872487392/skewt.ipynb b/_downloads/234a4f2d2a8fb4f34f94250872487392/skewt.ipynb deleted file mode 120000 index 6be851056aa..00000000000 --- a/_downloads/234a4f2d2a8fb4f34f94250872487392/skewt.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/234a4f2d2a8fb4f34f94250872487392/skewt.ipynb \ No newline at end of file diff --git a/_downloads/234b8c2ef5d0cda4398ef49c90092309/annotate_simple02.py b/_downloads/234b8c2ef5d0cda4398ef49c90092309/annotate_simple02.py deleted file mode 100644 index 8ba7f51a194..00000000000 --- a/_downloads/234b8c2ef5d0cda4398ef49c90092309/annotate_simple02.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -================= -Annotate Simple02 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - arrowprops=dict(arrowstyle="simple", - connectionstyle="arc3,rad=-0.2"), - ) - -plt.show() diff --git a/_downloads/2350d3cf1ff9f2b03e79505d2e7a4e6c/custom_cmap.py b/_downloads/2350d3cf1ff9f2b03e79505d2e7a4e6c/custom_cmap.py deleted file mode 100644 index eb3727d9278..00000000000 --- a/_downloads/2350d3cf1ff9f2b03e79505d2e7a4e6c/custom_cmap.py +++ /dev/null @@ -1,253 +0,0 @@ -""" -========================================= -Creating a colormap from a list of colors -========================================= - -For more detail on creating and manipulating colormaps see -:doc:`/tutorials/colors/colormap-manipulation`. - -Creating a :doc:`colormap ` -from a list of colors can be done with the -:meth:`~.colors.LinearSegmentedColormap.from_list` method of -`LinearSegmentedColormap`. You must pass a list of RGB tuples that define the -mixture of colors from 0 to 1. - - -Creating custom colormaps -------------------------- -It is also possible to create a custom mapping for a colormap. This is -accomplished by creating dictionary that specifies how the RGB channels -change from one end of the cmap to the other. - -Example: suppose you want red to increase from 0 to 1 over the bottom -half, green to do the same over the middle half, and blue over the top -half. Then you would use:: - - cdict = {'red': ((0.0, 0.0, 0.0), - (0.5, 1.0, 1.0), - (1.0, 1.0, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (0.25, 0.0, 0.0), - (0.75, 1.0, 1.0), - (1.0, 1.0, 1.0)), - - 'blue': ((0.0, 0.0, 0.0), - (0.5, 0.0, 0.0), - (1.0, 1.0, 1.0))} - -If, as in this example, there are no discontinuities in the r, g, and b -components, then it is quite simple: the second and third element of -each tuple, above, is the same--call it "y". The first element ("x") -defines interpolation intervals over the full range of 0 to 1, and it -must span that whole range. In other words, the values of x divide the -0-to-1 range into a set of segments, and y gives the end-point color -values for each segment. - -Now consider the green. cdict['green'] is saying that for -0 <= x <= 0.25, y is zero; no green. -0.25 < x <= 0.75, y varies linearly from 0 to 1. -x > 0.75, y remains at 1, full green. - -If there are discontinuities, then it is a little more complicated. -Label the 3 elements in each row in the cdict entry for a given color as -(x, y0, y1). Then for values of x between x[i] and x[i+1] the color -value is interpolated between y1[i] and y0[i+1]. - -Going back to the cookbook example, look at cdict['red']; because y0 != -y1, it is saying that for x from 0 to 0.5, red increases from 0 to 1, -but then it jumps down, so that for x from 0.5 to 1, red increases from -0.7 to 1. Green ramps from 0 to 1 as x goes from 0 to 0.5, then jumps -back to 0, and ramps back to 1 as x goes from 0.5 to 1.:: - - row i: x y0 y1 - / - / - row i+1: x y0 y1 - -Above is an attempt to show that for x in the range x[i] to x[i+1], the -interpolation is between y1[i] and y0[i+1]. So, y0[0] and y1[-1] are -never used. - -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.colors import LinearSegmentedColormap - -# Make some illustrative fake data: - -x = np.arange(0, np.pi, 0.1) -y = np.arange(0, 2 * np.pi, 0.1) -X, Y = np.meshgrid(x, y) -Z = np.cos(X) * np.sin(Y) * 10 - - -############################################################################### -# --- Colormaps from a list --- - -colors = [(1, 0, 0), (0, 1, 0), (0, 0, 1)] # R -> G -> B -n_bins = [3, 6, 10, 100] # Discretizes the interpolation into bins -cmap_name = 'my_list' -fig, axs = plt.subplots(2, 2, figsize=(6, 9)) -fig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05) -for n_bin, ax in zip(n_bins, axs.ravel()): - # Create the colormap - cm = LinearSegmentedColormap.from_list( - cmap_name, colors, N=n_bin) - # Fewer bins will result in "coarser" colomap interpolation - im = ax.imshow(Z, interpolation='nearest', origin='lower', cmap=cm) - ax.set_title("N bins: %s" % n_bin) - fig.colorbar(im, ax=ax) - - -############################################################################### -# --- Custom colormaps --- - -cdict1 = {'red': ((0.0, 0.0, 0.0), - (0.5, 0.0, 0.1), - (1.0, 1.0, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (1.0, 0.0, 0.0)), - - 'blue': ((0.0, 0.0, 1.0), - (0.5, 0.1, 0.0), - (1.0, 0.0, 0.0)) - } - -cdict2 = {'red': ((0.0, 0.0, 0.0), - (0.5, 0.0, 1.0), - (1.0, 0.1, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (1.0, 0.0, 0.0)), - - 'blue': ((0.0, 0.0, 0.1), - (0.5, 1.0, 0.0), - (1.0, 0.0, 0.0)) - } - -cdict3 = {'red': ((0.0, 0.0, 0.0), - (0.25, 0.0, 0.0), - (0.5, 0.8, 1.0), - (0.75, 1.0, 1.0), - (1.0, 0.4, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (0.25, 0.0, 0.0), - (0.5, 0.9, 0.9), - (0.75, 0.0, 0.0), - (1.0, 0.0, 0.0)), - - 'blue': ((0.0, 0.0, 0.4), - (0.25, 1.0, 1.0), - (0.5, 1.0, 0.8), - (0.75, 0.0, 0.0), - (1.0, 0.0, 0.0)) - } - -# Make a modified version of cdict3 with some transparency -# in the middle of the range. -cdict4 = {**cdict3, - 'alpha': ((0.0, 1.0, 1.0), - # (0.25,1.0, 1.0), - (0.5, 0.3, 0.3), - # (0.75,1.0, 1.0), - (1.0, 1.0, 1.0)), - } - - -############################################################################### -# Now we will use this example to illustrate 3 ways of -# handling custom colormaps. -# First, the most direct and explicit: - -blue_red1 = LinearSegmentedColormap('BlueRed1', cdict1) - -############################################################################### -# Second, create the map explicitly and register it. -# Like the first method, this method works with any kind -# of Colormap, not just -# a LinearSegmentedColormap: - -blue_red2 = LinearSegmentedColormap('BlueRed2', cdict2) -plt.register_cmap(cmap=blue_red2) - -############################################################################### -# Third, for LinearSegmentedColormap only, -# leave everything to register_cmap: - -plt.register_cmap(name='BlueRed3', data=cdict3) # optional lut kwarg -plt.register_cmap(name='BlueRedAlpha', data=cdict4) - -############################################################################### -# Make the figure: - -fig, axs = plt.subplots(2, 2, figsize=(6, 9)) -fig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05) - -# Make 4 subplots: - -im1 = axs[0, 0].imshow(Z, interpolation='nearest', cmap=blue_red1) -fig.colorbar(im1, ax=axs[0, 0]) - -cmap = plt.get_cmap('BlueRed2') -im2 = axs[1, 0].imshow(Z, interpolation='nearest', cmap=cmap) -fig.colorbar(im2, ax=axs[1, 0]) - -# Now we will set the third cmap as the default. One would -# not normally do this in the middle of a script like this; -# it is done here just to illustrate the method. - -plt.rcParams['image.cmap'] = 'BlueRed3' - -im3 = axs[0, 1].imshow(Z, interpolation='nearest') -fig.colorbar(im3, ax=axs[0, 1]) -axs[0, 1].set_title("Alpha = 1") - -# Or as yet another variation, we can replace the rcParams -# specification *before* the imshow with the following *after* -# imshow. -# This sets the new default *and* sets the colormap of the last -# image-like item plotted via pyplot, if any. -# - -# Draw a line with low zorder so it will be behind the image. -axs[1, 1].plot([0, 10 * np.pi], [0, 20 * np.pi], color='c', lw=20, zorder=-1) - -im4 = axs[1, 1].imshow(Z, interpolation='nearest') -fig.colorbar(im4, ax=axs[1, 1]) - -# Here it is: changing the colormap for the current image and its -# colorbar after they have been plotted. -im4.set_cmap('BlueRedAlpha') -axs[1, 1].set_title("Varying alpha") -# - -fig.suptitle('Custom Blue-Red colormaps', fontsize=16) -fig.subplots_adjust(top=0.9) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors -matplotlib.colors.LinearSegmentedColormap -matplotlib.colors.LinearSegmentedColormap.from_list -matplotlib.cm -matplotlib.cm.ScalarMappable.set_cmap -matplotlib.pyplot.register_cmap -matplotlib.cm.register_cmap diff --git a/_downloads/235312c600bad08b784d874d59a7cc8c/polys3d.ipynb b/_downloads/235312c600bad08b784d874d59a7cc8c/polys3d.ipynb deleted file mode 120000 index d4e6e212067..00000000000 --- a/_downloads/235312c600bad08b784d874d59a7cc8c/polys3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/235312c600bad08b784d874d59a7cc8c/polys3d.ipynb \ No newline at end of file diff --git a/_downloads/235fc76f2d612f3e7fb35ebfbdf801f8/annotate_simple_coord03.py b/_downloads/235fc76f2d612f3e7fb35ebfbdf801f8/annotate_simple_coord03.py deleted file mode 100644 index 88f8668ebef..00000000000 --- a/_downloads/235fc76f2d612f3e7fb35ebfbdf801f8/annotate_simple_coord03.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -======================= -Annotate Simple Coord03 -======================= - -""" - -import matplotlib.pyplot as plt -from matplotlib.text import OffsetFrom - - -fig, ax = plt.subplots(figsize=(3, 2)) -an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) - -offset_from = OffsetFrom(an1, (0.5, 0)) -an2 = ax.annotate("Test 2", xy=(0.1, 0.1), xycoords="data", - xytext=(0, -10), textcoords=offset_from, - # xytext is offset points from "xy=(0.5, 0), xycoords=an1" - va="top", ha="center", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) -plt.show() diff --git a/_downloads/235ffbef9f082ec8f386cc387f906ccc/bmh.ipynb b/_downloads/235ffbef9f082ec8f386cc387f906ccc/bmh.ipynb deleted file mode 120000 index d9d212b52a3..00000000000 --- a/_downloads/235ffbef9f082ec8f386cc387f906ccc/bmh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/235ffbef9f082ec8f386cc387f906ccc/bmh.ipynb \ No newline at end of file diff --git a/_downloads/23685cc0cf832294891561792b1eab92/subplot_toolbar.py b/_downloads/23685cc0cf832294891561792b1eab92/subplot_toolbar.py deleted file mode 120000 index 8b1de5cbd38..00000000000 --- a/_downloads/23685cc0cf832294891561792b1eab92/subplot_toolbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/23685cc0cf832294891561792b1eab92/subplot_toolbar.py \ No newline at end of file diff --git a/_downloads/23690f47313380b801750e3adc4c317e/colorbar_only.py b/_downloads/23690f47313380b801750e3adc4c317e/colorbar_only.py deleted file mode 100644 index 9f9f3e948ec..00000000000 --- a/_downloads/23690f47313380b801750e3adc4c317e/colorbar_only.py +++ /dev/null @@ -1,110 +0,0 @@ -""" -============================= -Customized Colorbars Tutorial -============================= - -This tutorial shows how to build colorbars without an attached plot. - -Customized Colorbars -==================== - -`~matplotlib.colorbar.ColorbarBase` puts a colorbar in a specified axes, -and can make a colorbar for a given colormap; it does not need a mappable -object like an image. In this tutorial we will explore what can be done with -standalone colorbar. - -Basic continuous colorbar -------------------------- - -Set the colormap and norm to correspond to the data for which the colorbar -will be used. Then create the colorbar by calling -:class:`~matplotlib.colorbar.ColorbarBase` and specify axis, colormap, norm -and orientation as parameters. Here we create a basic continuous colorbar -with ticks and labels. For more information see the -:mod:`~matplotlib.colorbar` API. -""" - -import matplotlib.pyplot as plt -import matplotlib as mpl - -fig, ax = plt.subplots(figsize=(6, 1)) -fig.subplots_adjust(bottom=0.5) - -cmap = mpl.cm.cool -norm = mpl.colors.Normalize(vmin=5, vmax=10) - -cb1 = mpl.colorbar.ColorbarBase(ax, cmap=cmap, - norm=norm, - orientation='horizontal') -cb1.set_label('Some Units') -fig.show() - -############################################################################### -# Discrete intervals colorbar -# --------------------------- -# -# The second example illustrates the use of a -# :class:`~matplotlib.colors.ListedColormap` which generates a colormap from a -# set of listed colors, :func:`colors.BoundaryNorm` which generates a colormap -# index based on discrete intervals and extended ends to show the "over" and -# "under" value colors. Over and under are used to display data outside of the -# normalized [0,1] range. Here we pass colors as gray shades as a string -# encoding a float in the 0-1 range. -# -# If a :class:`~matplotlib.colors.ListedColormap` is used, the length of the -# bounds array must be one greater than the length of the color list. The -# bounds must be monotonically increasing. -# -# This time we pass some more arguments in addition to previous arguments to -# :class:`~matplotlib.colorbar.ColorbarBase`. For the out-of-range values to -# display on the colorbar, we have to use the *extend* keyword argument. To use -# *extend*, you must specify two extra boundaries. Finally spacing argument -# ensures that intervals are shown on colorbar proportionally. - -fig, ax = plt.subplots(figsize=(6, 1)) -fig.subplots_adjust(bottom=0.5) - -cmap = mpl.colors.ListedColormap(['red', 'green', 'blue', 'cyan']) -cmap.set_over('0.25') -cmap.set_under('0.75') - -bounds = [1, 2, 4, 7, 8] -norm = mpl.colors.BoundaryNorm(bounds, cmap.N) -cb2 = mpl.colorbar.ColorbarBase(ax, cmap=cmap, - norm=norm, - boundaries=[0] + bounds + [13], - extend='both', - ticks=bounds, - spacing='proportional', - orientation='horizontal') -cb2.set_label('Discrete intervals, some other units') -fig.show() - -############################################################################### -# Colorbar with custom extension lengths -# -------------------------------------- -# -# Here we illustrate the use of custom length colorbar extensions, used on a -# colorbar with discrete intervals. To make the length of each extension the -# same as the length of the interior colors, use ``extendfrac='auto'``. - -fig, ax = plt.subplots(figsize=(6, 1)) -fig.subplots_adjust(bottom=0.5) - -cmap = mpl.colors.ListedColormap(['royalblue', 'cyan', - 'yellow', 'orange']) -cmap.set_over('red') -cmap.set_under('blue') - -bounds = [-1.0, -0.5, 0.0, 0.5, 1.0] -norm = mpl.colors.BoundaryNorm(bounds, cmap.N) -cb3 = mpl.colorbar.ColorbarBase(ax, cmap=cmap, - norm=norm, - boundaries=[-10] + bounds + [10], - extend='both', - extendfrac='auto', - ticks=bounds, - spacing='uniform', - orientation='horizontal') -cb3.set_label('Custom extension lengths, some other units') -fig.show() diff --git a/_downloads/2375e2e05c022fe742fc585e77e2ba1d/pgf_texsystem.ipynb b/_downloads/2375e2e05c022fe742fc585e77e2ba1d/pgf_texsystem.ipynb deleted file mode 120000 index e97c9244647..00000000000 --- a/_downloads/2375e2e05c022fe742fc585e77e2ba1d/pgf_texsystem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2375e2e05c022fe742fc585e77e2ba1d/pgf_texsystem.ipynb \ No newline at end of file diff --git a/_downloads/2379fcb5098a17499fc7ed3bc5232152/usetex_baseline_test.ipynb b/_downloads/2379fcb5098a17499fc7ed3bc5232152/usetex_baseline_test.ipynb deleted file mode 120000 index e09e6f3055d..00000000000 --- a/_downloads/2379fcb5098a17499fc7ed3bc5232152/usetex_baseline_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2379fcb5098a17499fc7ed3bc5232152/usetex_baseline_test.ipynb \ No newline at end of file diff --git a/_downloads/2386ac698bd035bf81cea76fb25a0be8/pyplot_scales.ipynb b/_downloads/2386ac698bd035bf81cea76fb25a0be8/pyplot_scales.ipynb deleted file mode 120000 index f9fa0bbebbf..00000000000 --- a/_downloads/2386ac698bd035bf81cea76fb25a0be8/pyplot_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2386ac698bd035bf81cea76fb25a0be8/pyplot_scales.ipynb \ No newline at end of file diff --git a/_downloads/238ff4572804361b6f44c084fb361b80/colormap_normalizations_custom.py b/_downloads/238ff4572804361b6f44c084fb361b80/colormap_normalizations_custom.py deleted file mode 120000 index 42b27a66e22..00000000000 --- a/_downloads/238ff4572804361b6f44c084fb361b80/colormap_normalizations_custom.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/238ff4572804361b6f44c084fb361b80/colormap_normalizations_custom.py \ No newline at end of file diff --git a/_downloads/23ab755716d61de16e37cb2c219347b1/stix_fonts_demo.py b/_downloads/23ab755716d61de16e37cb2c219347b1/stix_fonts_demo.py deleted file mode 120000 index af9c4a4a821..00000000000 --- a/_downloads/23ab755716d61de16e37cb2c219347b1/stix_fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/23ab755716d61de16e37cb2c219347b1/stix_fonts_demo.py \ No newline at end of file diff --git a/_downloads/23c4b3b2c0c33ccd4d35595f6cd76607/fonts_demo_kw.py b/_downloads/23c4b3b2c0c33ccd4d35595f6cd76607/fonts_demo_kw.py deleted file mode 120000 index f32df90d764..00000000000 --- a/_downloads/23c4b3b2c0c33ccd4d35595f6cd76607/fonts_demo_kw.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/23c4b3b2c0c33ccd4d35595f6cd76607/fonts_demo_kw.py \ No newline at end of file diff --git a/_downloads/23c4b54685e4c7879699704101e60b61/pyplot_scales.py b/_downloads/23c4b54685e4c7879699704101e60b61/pyplot_scales.py deleted file mode 120000 index 2ab4472bba4..00000000000 --- a/_downloads/23c4b54685e4c7879699704101e60b61/pyplot_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/23c4b54685e4c7879699704101e60b61/pyplot_scales.py \ No newline at end of file diff --git a/_downloads/23d75451a37924b32c54e539f877c8c8/subplots_demo.ipynb b/_downloads/23d75451a37924b32c54e539f877c8c8/subplots_demo.ipynb deleted file mode 120000 index c62ae9b41e4..00000000000 --- a/_downloads/23d75451a37924b32c54e539f877c8c8/subplots_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/23d75451a37924b32c54e539f877c8c8/subplots_demo.ipynb \ No newline at end of file diff --git a/_downloads/23e93ca4f1885ec0ba14ed81895aa82f/demo_axes_divider.py b/_downloads/23e93ca4f1885ec0ba14ed81895aa82f/demo_axes_divider.py deleted file mode 120000 index 45116793365..00000000000 --- a/_downloads/23e93ca4f1885ec0ba14ed81895aa82f/demo_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/23e93ca4f1885ec0ba14ed81895aa82f/demo_axes_divider.py \ No newline at end of file diff --git a/_downloads/23eac6456b32a7aa35c13776e6b555a4/mathtext_examples.py b/_downloads/23eac6456b32a7aa35c13776e6b555a4/mathtext_examples.py deleted file mode 120000 index 9ae032f0221..00000000000 --- a/_downloads/23eac6456b32a7aa35c13776e6b555a4/mathtext_examples.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/23eac6456b32a7aa35c13776e6b555a4/mathtext_examples.py \ No newline at end of file diff --git a/_downloads/23f466cd6dce74b4e50eb04e59fd8454/symlog_demo.ipynb b/_downloads/23f466cd6dce74b4e50eb04e59fd8454/symlog_demo.ipynb deleted file mode 120000 index 8bb57d3bf37..00000000000 --- a/_downloads/23f466cd6dce74b4e50eb04e59fd8454/symlog_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/23f466cd6dce74b4e50eb04e59fd8454/symlog_demo.ipynb \ No newline at end of file diff --git a/_downloads/23f960a062b8449ca2aece206e3f63a8/histogram.ipynb b/_downloads/23f960a062b8449ca2aece206e3f63a8/histogram.ipynb deleted file mode 120000 index 12846f878fb..00000000000 --- a/_downloads/23f960a062b8449ca2aece206e3f63a8/histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/23f960a062b8449ca2aece206e3f63a8/histogram.ipynb \ No newline at end of file diff --git a/_downloads/23fa9152058e4b5f18533354f4d8ff5e/tricontourf3d.py b/_downloads/23fa9152058e4b5f18533354f4d8ff5e/tricontourf3d.py deleted file mode 120000 index 3b77363b29e..00000000000 --- a/_downloads/23fa9152058e4b5f18533354f4d8ff5e/tricontourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/23fa9152058e4b5f18533354f4d8ff5e/tricontourf3d.py \ No newline at end of file diff --git a/_downloads/2405d81d172d3fc7042b14d0aa12f928/spines_dropped.ipynb b/_downloads/2405d81d172d3fc7042b14d0aa12f928/spines_dropped.ipynb deleted file mode 120000 index 30b815a1cea..00000000000 --- a/_downloads/2405d81d172d3fc7042b14d0aa12f928/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2405d81d172d3fc7042b14d0aa12f928/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/241668d5ed607d13de1128c11367c413/text_fontdict.py b/_downloads/241668d5ed607d13de1128c11367c413/text_fontdict.py deleted file mode 100644 index ad6fa8cc972..00000000000 --- a/_downloads/241668d5ed607d13de1128c11367c413/text_fontdict.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -======================================================= -Controlling style of text and labels using a dictionary -======================================================= - -This example shows how to share parameters across many text objects and labels -by creating a dictionary of options passed across several functions. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -font = {'family': 'serif', - 'color': 'darkred', - 'weight': 'normal', - 'size': 16, - } - -x = np.linspace(0.0, 5.0, 100) -y = np.cos(2*np.pi*x) * np.exp(-x) - -plt.plot(x, y, 'k') -plt.title('Damped exponential decay', fontdict=font) -plt.text(2, 0.65, r'$\cos(2 \pi t) \exp(-t)$', fontdict=font) -plt.xlabel('time (s)', fontdict=font) -plt.ylabel('voltage (mV)', fontdict=font) - -# Tweak spacing to prevent clipping of ylabel -plt.subplots_adjust(left=0.15) -plt.show() diff --git a/_downloads/24166cc7a4ed9bb7c9dc61e08989f279/quadmesh_demo.ipynb b/_downloads/24166cc7a4ed9bb7c9dc61e08989f279/quadmesh_demo.ipynb deleted file mode 120000 index f2b4cd3496f..00000000000 --- a/_downloads/24166cc7a4ed9bb7c9dc61e08989f279/quadmesh_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/24166cc7a4ed9bb7c9dc61e08989f279/quadmesh_demo.ipynb \ No newline at end of file diff --git a/_downloads/241966d639f91864c34fef9ee1e63dd4/gtk_spreadsheet_sgskip.ipynb b/_downloads/241966d639f91864c34fef9ee1e63dd4/gtk_spreadsheet_sgskip.ipynb deleted file mode 120000 index 6388debfc26..00000000000 --- a/_downloads/241966d639f91864c34fef9ee1e63dd4/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/241966d639f91864c34fef9ee1e63dd4/gtk_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/242255db3b1f33ed153c2feb880241ec/multiple_yaxis_with_spines.py b/_downloads/242255db3b1f33ed153c2feb880241ec/multiple_yaxis_with_spines.py deleted file mode 120000 index 57a5780fa39..00000000000 --- a/_downloads/242255db3b1f33ed153c2feb880241ec/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/242255db3b1f33ed153c2feb880241ec/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/2425c0b30071a234ffab5e308e0660d6/eventplot_demo.ipynb b/_downloads/2425c0b30071a234ffab5e308e0660d6/eventplot_demo.ipynb deleted file mode 120000 index 5edbcb8858a..00000000000 --- a/_downloads/2425c0b30071a234ffab5e308e0660d6/eventplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2425c0b30071a234ffab5e308e0660d6/eventplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/242cd98c84f531adf05ca19d2775cde2/animate_decay.ipynb b/_downloads/242cd98c84f531adf05ca19d2775cde2/animate_decay.ipynb deleted file mode 120000 index 3a9e11ca547..00000000000 --- a/_downloads/242cd98c84f531adf05ca19d2775cde2/animate_decay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/242cd98c84f531adf05ca19d2775cde2/animate_decay.ipynb \ No newline at end of file diff --git a/_downloads/243ec175e13f94e515c16550ca37519f/marker_path.py b/_downloads/243ec175e13f94e515c16550ca37519f/marker_path.py deleted file mode 120000 index 7267a6390cf..00000000000 --- a/_downloads/243ec175e13f94e515c16550ca37519f/marker_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/243ec175e13f94e515c16550ca37519f/marker_path.py \ No newline at end of file diff --git a/_downloads/2445015e3008651d5de8412905963aec/tex_demo.ipynb b/_downloads/2445015e3008651d5de8412905963aec/tex_demo.ipynb deleted file mode 120000 index 87b94e6ca67..00000000000 --- a/_downloads/2445015e3008651d5de8412905963aec/tex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2445015e3008651d5de8412905963aec/tex_demo.ipynb \ No newline at end of file diff --git a/_downloads/2445448589977c17993439741b206361/zoom_inset_axes.ipynb b/_downloads/2445448589977c17993439741b206361/zoom_inset_axes.ipynb deleted file mode 100644 index 6b6bf1f060a..00000000000 --- a/_downloads/2445448589977c17993439741b206361/zoom_inset_axes.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Zoom region inset axes\n\n\nExample of an inset axes and a rectangle showing where the zoom is located.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n import numpy as np\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\nfig, ax = plt.subplots(figsize=[5, 4])\n\n# make data\nZ, extent = get_demo_image()\nZ2 = np.zeros([150, 150], dtype=\"d\")\nny, nx = Z.shape\nZ2[30:30 + ny, 30:30 + nx] = Z\n\nax.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\n# inset axes....\naxins = ax.inset_axes([0.5, 0.5, 0.47, 0.47])\naxins.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n# sub region of the original image\nx1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9\naxins.set_xlim(x1, x2)\naxins.set_ylim(y1, y2)\naxins.set_xticklabels('')\naxins.set_yticklabels('')\n\nax.indicate_inset_zoom(axins)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.inset_axes\nmatplotlib.axes.Axes.indicate_inset_zoom\nmatplotlib.axes.Axes.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/244e0cb4bead5cfd5f8e9d6aeca0ba31/double_pendulum.py b/_downloads/244e0cb4bead5cfd5f8e9d6aeca0ba31/double_pendulum.py deleted file mode 120000 index 7c21555b74b..00000000000 --- a/_downloads/244e0cb4bead5cfd5f8e9d6aeca0ba31/double_pendulum.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/244e0cb4bead5cfd5f8e9d6aeca0ba31/double_pendulum.py \ No newline at end of file diff --git a/_downloads/244e302b0481e594f2629de15f294bc1/interp_demo.ipynb b/_downloads/244e302b0481e594f2629de15f294bc1/interp_demo.ipynb deleted file mode 120000 index 5a482d132ed..00000000000 --- a/_downloads/244e302b0481e594f2629de15f294bc1/interp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/244e302b0481e594f2629de15f294bc1/interp_demo.ipynb \ No newline at end of file diff --git a/_downloads/2453985ac5e8d35d1b5aa5221c795469/strip_chart.ipynb b/_downloads/2453985ac5e8d35d1b5aa5221c795469/strip_chart.ipynb deleted file mode 120000 index 385cac7af22..00000000000 --- a/_downloads/2453985ac5e8d35d1b5aa5221c795469/strip_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2453985ac5e8d35d1b5aa5221c795469/strip_chart.ipynb \ No newline at end of file diff --git a/_downloads/245778ed5aa952f14ec3833cb0fa96cc/simple_colorbar.ipynb b/_downloads/245778ed5aa952f14ec3833cb0fa96cc/simple_colorbar.ipynb deleted file mode 100644 index e820e75b9a6..00000000000 --- a/_downloads/245778ed5aa952f14ec3833cb0fa96cc/simple_colorbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import make_axes_locatable\nimport numpy as np\n\nax = plt.subplot(111)\nim = ax.imshow(np.arange(100).reshape((10, 10)))\n\n# create an axes on the right side of ax. The width of cax will be 5%\n# of ax and the padding between cax and ax will be fixed at 0.05 inch.\ndivider = make_axes_locatable(ax)\ncax = divider.append_axes(\"right\", size=\"5%\", pad=0.05)\n\nplt.colorbar(im, cax=cax)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2457b1994d91b4a1bd36cc88d6026ae9/pong_sgskip.py b/_downloads/2457b1994d91b4a1bd36cc88d6026ae9/pong_sgskip.py deleted file mode 100644 index e25153e826a..00000000000 --- a/_downloads/2457b1994d91b4a1bd36cc88d6026ae9/pong_sgskip.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -==== -Pong -==== - -A small game demo using Matplotlib. - -.. only:: builder_html - - This example requires :download:`pipong.py ` - -""" -import time - - -import matplotlib.pyplot as plt -import pipong - - -fig, ax = plt.subplots() -canvas = ax.figure.canvas -animation = pipong.Game(ax) - -# disable the default key bindings -if fig.canvas.manager.key_press_handler_id is not None: - canvas.mpl_disconnect(fig.canvas.manager.key_press_handler_id) - - -# reset the blitting background on redraw -def handle_redraw(event): - animation.background = None - - -# bootstrap after the first draw -def start_anim(event): - canvas.mpl_disconnect(start_anim.cid) - - def local_draw(): - if animation.ax.get_renderer_cache(): - animation.draw(None) - start_anim.timer.add_callback(local_draw) - start_anim.timer.start() - canvas.mpl_connect('draw_event', handle_redraw) - - -start_anim.cid = canvas.mpl_connect('draw_event', start_anim) -start_anim.timer = animation.canvas.new_timer() -start_anim.timer.interval = 1 - -tstart = time.time() - -plt.show() -print('FPS: %f' % (animation.cnt/(time.time() - tstart))) diff --git a/_downloads/24583568247d0236b40c49a3a9ac0722/patch_collection.py b/_downloads/24583568247d0236b40c49a3a9ac0722/patch_collection.py deleted file mode 120000 index 6da5151f3d8..00000000000 --- a/_downloads/24583568247d0236b40c49a3a9ac0722/patch_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/24583568247d0236b40c49a3a9ac0722/patch_collection.py \ No newline at end of file diff --git a/_downloads/2471b80a3d5a8c3cef4f00360385bef6/surface3d.ipynb b/_downloads/2471b80a3d5a8c3cef4f00360385bef6/surface3d.ipynb deleted file mode 120000 index 0998b2c2a87..00000000000 --- a/_downloads/2471b80a3d5a8c3cef4f00360385bef6/surface3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2471b80a3d5a8c3cef4f00360385bef6/surface3d.ipynb \ No newline at end of file diff --git a/_downloads/2486d37a18eb2379fb377a92e41cfa23/eventcollection_demo.ipynb b/_downloads/2486d37a18eb2379fb377a92e41cfa23/eventcollection_demo.ipynb deleted file mode 100644 index a40cd2d31c9..00000000000 --- a/_downloads/2486d37a18eb2379fb377a92e41cfa23/eventcollection_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# EventCollection Demo\n\n\nPlot two curves, then use EventCollections to mark the locations of the x\nand y data points on the respective axes for each curve\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.collections import EventCollection\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# create random data\nxdata = np.random.random([2, 10])\n\n# split the data into two parts\nxdata1 = xdata[0, :]\nxdata2 = xdata[1, :]\n\n# sort the data so it makes clean curves\nxdata1.sort()\nxdata2.sort()\n\n# create some y data points\nydata1 = xdata1 ** 2\nydata2 = 1 - xdata2 ** 3\n\n# plot the data\nfig = plt.figure()\nax = fig.add_subplot(1, 1, 1)\nax.plot(xdata1, ydata1, color='tab:blue')\nax.plot(xdata2, ydata2, color='tab:orange')\n\n# create the events marking the x data points\nxevents1 = EventCollection(xdata1, color='tab:blue', linelength=0.05)\nxevents2 = EventCollection(xdata2, color='tab:orange', linelength=0.05)\n\n# create the events marking the y data points\nyevents1 = EventCollection(ydata1, color='tab:blue', linelength=0.05,\n orientation='vertical')\nyevents2 = EventCollection(ydata2, color='tab:orange', linelength=0.05,\n orientation='vertical')\n\n# add the events to the axis\nax.add_collection(xevents1)\nax.add_collection(xevents2)\nax.add_collection(yevents1)\nax.add_collection(yevents2)\n\n# set the limits\nax.set_xlim([0, 1])\nax.set_ylim([0, 1])\n\nax.set_title('line plot with data points')\n\n# display the plot\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2488fa170f211c6d0f8dabb214010122/close_event.py b/_downloads/2488fa170f211c6d0f8dabb214010122/close_event.py deleted file mode 120000 index c3791883886..00000000000 --- a/_downloads/2488fa170f211c6d0f8dabb214010122/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2488fa170f211c6d0f8dabb214010122/close_event.py \ No newline at end of file diff --git a/_downloads/24c9e466df7143b4fef62cf1d5eec7e7/triinterp_demo.ipynb b/_downloads/24c9e466df7143b4fef62cf1d5eec7e7/triinterp_demo.ipynb deleted file mode 100644 index db38c7fd90d..00000000000 --- a/_downloads/24c9e466df7143b4fef62cf1d5eec7e7/triinterp_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triinterp Demo\n\n\nInterpolation from triangular grid to quad grid.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as mtri\nimport numpy as np\n\n# Create triangulation.\nx = np.asarray([0, 1, 2, 3, 0.5, 1.5, 2.5, 1, 2, 1.5])\ny = np.asarray([0, 0, 0, 0, 1.0, 1.0, 1.0, 2, 2, 3.0])\ntriangles = [[0, 1, 4], [1, 2, 5], [2, 3, 6], [1, 5, 4], [2, 6, 5], [4, 5, 7],\n [5, 6, 8], [5, 8, 7], [7, 8, 9]]\ntriang = mtri.Triangulation(x, y, triangles)\n\n# Interpolate to regularly-spaced quad grid.\nz = np.cos(1.5 * x) * np.cos(1.5 * y)\nxi, yi = np.meshgrid(np.linspace(0, 3, 20), np.linspace(0, 3, 20))\n\ninterp_lin = mtri.LinearTriInterpolator(triang, z)\nzi_lin = interp_lin(xi, yi)\n\ninterp_cubic_geom = mtri.CubicTriInterpolator(triang, z, kind='geom')\nzi_cubic_geom = interp_cubic_geom(xi, yi)\n\ninterp_cubic_min_E = mtri.CubicTriInterpolator(triang, z, kind='min_E')\nzi_cubic_min_E = interp_cubic_min_E(xi, yi)\n\n# Set up the figure\nfig, axs = plt.subplots(nrows=2, ncols=2)\naxs = axs.flatten()\n\n# Plot the triangulation.\naxs[0].tricontourf(triang, z)\naxs[0].triplot(triang, 'ko-')\naxs[0].set_title('Triangular grid')\n\n# Plot linear interpolation to quad grid.\naxs[1].contourf(xi, yi, zi_lin)\naxs[1].plot(xi, yi, 'k-', lw=0.5, alpha=0.5)\naxs[1].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5)\naxs[1].set_title(\"Linear interpolation\")\n\n# Plot cubic interpolation to quad grid, kind=geom\naxs[2].contourf(xi, yi, zi_cubic_geom)\naxs[2].plot(xi, yi, 'k-', lw=0.5, alpha=0.5)\naxs[2].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5)\naxs[2].set_title(\"Cubic interpolation,\\nkind='geom'\")\n\n# Plot cubic interpolation to quad grid, kind=min_E\naxs[3].contourf(xi, yi, zi_cubic_min_E)\naxs[3].plot(xi, yi, 'k-', lw=0.5, alpha=0.5)\naxs[3].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5)\naxs[3].set_title(\"Cubic interpolation,\\nkind='min_E'\")\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.tri\nmatplotlib.tri.LinearTriInterpolator\nmatplotlib.tri.CubicTriInterpolator\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/24c9ef4ca6573550268e3e15352be752/transforms_tutorial.py b/_downloads/24c9ef4ca6573550268e3e15352be752/transforms_tutorial.py deleted file mode 100644 index de12aeec7e0..00000000000 --- a/_downloads/24c9ef4ca6573550268e3e15352be752/transforms_tutorial.py +++ /dev/null @@ -1,556 +0,0 @@ -""" -======================== -Transformations Tutorial -======================== - -Like any graphics packages, Matplotlib is built on top of a -transformation framework to easily move between coordinate systems, -the userland `data` coordinate system, the `axes` coordinate system, -the `figure` coordinate system, and the `display` coordinate system. -In 95% of your plotting, you won't need to think about this, as it -happens under the hood, but as you push the limits of custom figure -generation, it helps to have an understanding of these objects so you -can reuse the existing transformations Matplotlib makes available to -you, or create your own (see :mod:`matplotlib.transforms`). The table -below summarizes the some useful coordinate systems, the transformation -object you should use to work in that coordinate system, and the -description of that system. In the `Transformation Object` column, -``ax`` is a :class:`~matplotlib.axes.Axes` instance, and ``fig`` is a -:class:`~matplotlib.figure.Figure` instance. - -+----------------+-----------------------------+-----------------------------------+ -|Coordinates |Transformation object |Description | -+================+=============================+===================================+ -|"data" |``ax.transData`` |The coordinate system for the data,| -| | |controlled by xlim and ylim. | -+----------------+-----------------------------+-----------------------------------+ -|"axes" |``ax.transAxes`` |The coordinate system of the | -| | |`~matplotlib.axes.Axes`; (0, 0) | -| | |is bottom left of the axes, and | -| | |(1, 1) is top right of the axes. | -+----------------+-----------------------------+-----------------------------------+ -|"figure" |``fig.transFigure`` |The coordinate system of the | -| | |`.Figure`; (0, 0) is bottom left | -| | |of the figure, and (1, 1) is top | -| | |right of the figure. | -+----------------+-----------------------------+-----------------------------------+ -|"figure-inches" |``fig.dpi_scale_trans`` |The coordinate system of the | -| | |`.Figure` in inches; (0, 0) is | -| | |bottom left of the figure, and | -| | |(width, height) is the top right | -| | |of the figure in inches. | -+----------------+-----------------------------+-----------------------------------+ -|"display" |``None``, or |The pixel coordinate system of the | -| |``IdentityTransform()`` |display window; (0, 0) is bottom | -| | |left of the window, and (width, | -| | |height) is top right of the | -| | |display window in pixels. | -+----------------+-----------------------------+-----------------------------------+ -|"xaxis", |``ax.get_xaxis_transform()``,|Blended coordinate systems; use | -|"yaxis" |``ax.get_yaxis_transform()`` |data coordinates on one of the axis| -| | |and axes coordinates on the other. | -+----------------+-----------------------------+-----------------------------------+ - -All of the transformation objects in the table above take inputs in -their coordinate system, and transform the input to the ``display`` -coordinate system. That is why the ``display`` coordinate system has -``None`` for the ``Transformation Object`` column -- it already is in -display coordinates. The transformations also know how to invert -themselves, to go from ``display`` back to the native coordinate system. -This is particularly useful when processing events from the user -interface, which typically occur in display space, and you want to -know where the mouse click or key-press occurred in your data -coordinate system. - -Note that specifying objects in ``display`` coordinates will change their -location if the ``dpi`` of the figure changes. This can cause confusion when -printing or changing screen resolution, because the object can change location -and size. Therefore it is most common -for artists placed in an axes or figure to have their transform set to -something *other* than the `~.transforms.IdentityTransform()`; the default when -an artist is placed on an axes using `~.Axes.axes.add_artist` is for the -transform to be ``ax.transData``. - -.. _data-coords: - -Data coordinates -================ - -Let's start with the most commonly used coordinate, the `data` -coordinate system. Whenever you add data to the axes, Matplotlib -updates the datalimits, most commonly updated with the -:meth:`~matplotlib.axes.Axes.set_xlim` and -:meth:`~matplotlib.axes.Axes.set_ylim` methods. For example, in the -figure below, the data limits stretch from 0 to 10 on the x-axis, and --1 to 1 on the y-axis. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.patches as mpatches - -x = np.arange(0, 10, 0.005) -y = np.exp(-x/2.) * np.sin(2*np.pi*x) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_xlim(0, 10) -ax.set_ylim(-1, 1) - -plt.show() - -############################################################################### -# You can use the ``ax.transData`` instance to transform from your -# `data` to your `display` coordinate system, either a single point or a -# sequence of points as shown below: -# -# .. sourcecode:: ipython -# -# In [14]: type(ax.transData) -# Out[14]: -# -# In [15]: ax.transData.transform((5, 0)) -# Out[15]: array([ 335.175, 247. ]) -# -# In [16]: ax.transData.transform([(5, 0), (1, 2)]) -# Out[16]: -# array([[ 335.175, 247. ], -# [ 132.435, 642.2 ]]) -# -# You can use the :meth:`~matplotlib.transforms.Transform.inverted` -# method to create a transform which will take you from display to data -# coordinates: -# -# .. sourcecode:: ipython -# -# In [41]: inv = ax.transData.inverted() -# -# In [42]: type(inv) -# Out[42]: -# -# In [43]: inv.transform((335.175, 247.)) -# Out[43]: array([ 5., 0.]) -# -# If your are typing along with this tutorial, the exact values of the -# display coordinates may differ if you have a different window size or -# dpi setting. Likewise, in the figure below, the display labeled -# points are probably not the same as in the ipython session because the -# documentation figure size defaults are different. - -x = np.arange(0, 10, 0.005) -y = np.exp(-x/2.) * np.sin(2*np.pi*x) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_xlim(0, 10) -ax.set_ylim(-1, 1) - -xdata, ydata = 5, 0 -xdisplay, ydisplay = ax.transData.transform_point((xdata, ydata)) - -bbox = dict(boxstyle="round", fc="0.8") -arrowprops = dict( - arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=10") - -offset = 72 -ax.annotate('data = (%.1f, %.1f)' % (xdata, ydata), - (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - -disp = ax.annotate('display = (%.1f, %.1f)' % (xdisplay, ydisplay), - (xdisplay, ydisplay), xytext=(0.5*offset, -offset), - xycoords='figure pixels', - textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - -plt.show() - -############################################################################### -# .. note:: -# -# If you run the source code in the example above in a GUI backend, -# you may also find that the two arrows for the `data` and `display` -# annotations do not point to exactly the same point. This is because -# the display point was computed before the figure was displayed, and -# the GUI backend may slightly resize the figure when it is created. -# The effect is more pronounced if you resize the figure yourself. -# This is one good reason why you rarely want to work in display -# space, but you can connect to the ``'on_draw'`` -# :class:`~matplotlib.backend_bases.Event` to update figure -# coordinates on figure draws; see :ref:`event-handling-tutorial`. -# -# When you change the x or y limits of your axes, the data limits are -# updated so the transformation yields a new display point. Note that -# when we just change the ylim, only the y-display coordinate is -# altered, and when we change the xlim too, both are altered. More on -# this later when we talk about the -# :class:`~matplotlib.transforms.Bbox`. -# -# .. sourcecode:: ipython -# -# In [54]: ax.transData.transform((5, 0)) -# Out[54]: array([ 335.175, 247. ]) -# -# In [55]: ax.set_ylim(-1, 2) -# Out[55]: (-1, 2) -# -# In [56]: ax.transData.transform((5, 0)) -# Out[56]: array([ 335.175 , 181.13333333]) -# -# In [57]: ax.set_xlim(10, 20) -# Out[57]: (10, 20) -# -# In [58]: ax.transData.transform((5, 0)) -# Out[58]: array([-171.675 , 181.13333333]) -# -# -# .. _axes-coords: -# -# Axes coordinates -# ================ -# -# After the `data` coordinate system, `axes` is probably the second most -# useful coordinate system. Here the point (0, 0) is the bottom left of -# your axes or subplot, (0.5, 0.5) is the center, and (1.0, 1.0) is the -# top right. You can also refer to points outside the range, so (-0.1, -# 1.1) is to the left and above your axes. This coordinate system is -# extremely useful when placing text in your axes, because you often -# want a text bubble in a fixed, location, e.g., the upper left of the axes -# pane, and have that location remain fixed when you pan or zoom. Here -# is a simple example that creates four panels and labels them 'A', 'B', -# 'C', 'D' as you often see in journals. - -fig = plt.figure() -for i, label in enumerate(('A', 'B', 'C', 'D')): - ax = fig.add_subplot(2, 2, i+1) - ax.text(0.05, 0.95, label, transform=ax.transAxes, - fontsize=16, fontweight='bold', va='top') - -plt.show() - -############################################################################### -# You can also make lines or patches in the axes coordinate system, but -# this is less useful in my experience than using ``ax.transAxes`` for -# placing text. Nonetheless, here is a silly example which plots some -# random dots in `data` space, and overlays a semi-transparent -# :class:`~matplotlib.patches.Circle` centered in the middle of the axes -# with a radius one quarter of the axes -- if your axes does not -# preserve aspect ratio (see :meth:`~matplotlib.axes.Axes.set_aspect`), -# this will look like an ellipse. Use the pan/zoom tool to move around, -# or manually change the data xlim and ylim, and you will see the data -# move, but the circle will remain fixed because it is not in `data` -# coordinates and will always remain at the center of the axes. - -fig, ax = plt.subplots() -x, y = 10*np.random.rand(2, 1000) -ax.plot(x, y, 'go', alpha=0.2) # plot some data in data coordinates - -circ = mpatches.Circle((0.5, 0.5), 0.25, transform=ax.transAxes, - facecolor='blue', alpha=0.75) -ax.add_patch(circ) -plt.show() - -############################################################################### -# .. _blended_transformations: -# -# Blended transformations -# ======================= -# -# Drawing in `blended` coordinate spaces which mix `axes` with `data` -# coordinates is extremely useful, for example to create a horizontal -# span which highlights some region of the y-data but spans across the -# x-axis regardless of the data limits, pan or zoom level, etc. In fact -# these blended lines and spans are so useful, we have built in -# functions to make them easy to plot (see -# :meth:`~matplotlib.axes.Axes.axhline`, -# :meth:`~matplotlib.axes.Axes.axvline`, -# :meth:`~matplotlib.axes.Axes.axhspan`, -# :meth:`~matplotlib.axes.Axes.axvspan`) but for didactic purposes we -# will implement the horizontal span here using a blended -# transformation. This trick only works for separable transformations, -# like you see in normal Cartesian coordinate systems, but not on -# inseparable transformations like the -# :class:`~matplotlib.projections.polar.PolarAxes.PolarTransform`. - -import matplotlib.transforms as transforms - -fig, ax = plt.subplots() -x = np.random.randn(1000) - -ax.hist(x, 30) -ax.set_title(r'$\sigma=1 \/ \dots \/ \sigma=2$', fontsize=16) - -# the x coords of this transformation are data, and the -# y coord are axes -trans = transforms.blended_transform_factory( - ax.transData, ax.transAxes) - -# highlight the 1..2 stddev region with a span. -# We want x to be in data coordinates and y to -# span from 0..1 in axes coords -rect = mpatches.Rectangle((1, 0), width=1, height=1, - transform=trans, color='yellow', - alpha=0.5) - -ax.add_patch(rect) - -plt.show() - -############################################################################### -# .. note:: -# -# The blended transformations where x is in data coords and y in axes -# coordinates is so useful that we have helper methods to return the -# versions mpl uses internally for drawing ticks, ticklabels, etc. -# The methods are :meth:`matplotlib.axes.Axes.get_xaxis_transform` and -# :meth:`matplotlib.axes.Axes.get_yaxis_transform`. So in the example -# above, the call to -# :meth:`~matplotlib.transforms.blended_transform_factory` can be -# replaced by ``get_xaxis_transform``:: -# -# trans = ax.get_xaxis_transform() -# -# .. _transforms-fig-scale-dpi: -# -# Plotting in physical units -# ========================== -# -# Sometimes we want an object to be a certain physical size on the plot. -# Here we draw the same circle as above, but in physical units. If done -# interactively, you can see that changing the size of the figure does -# not change the offset of the circle from the lower-left corner, -# does not change its size, and the circle remains a circle regardless of -# the aspect ratio of the axes. - -fig, ax = plt.subplots(figsize=(5, 4)) -x, y = 10*np.random.rand(2, 1000) -ax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates -# add a circle in fixed-units -circ = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans, - facecolor='blue', alpha=0.75) -ax.add_patch(circ) -plt.show() - -############################################################################### -# If we change the figure size, the circle does not change its absolute -# position and is cropped. - -fig, ax = plt.subplots(figsize=(7, 2)) -x, y = 10*np.random.rand(2, 1000) -ax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates -# add a circle in fixed-units -circ = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans, - facecolor='blue', alpha=0.75) -ax.add_patch(circ) -plt.show() - -############################################################################### -# Another use is putting a patch with a set physical dimension around a -# data point on the axes. Here we add together two transforms. The -# first sets the scaling of how large the ellipse should be and the second -# sets its position. The ellipse is then placed at the origin, and then -# we use the helper transform :class:`~matplotlib.transforms.ScaledTranslation` -# to move it -# to the right place in the ``ax.transData`` coordinate system. -# This helper is instantiated with:: -# -# trans = ScaledTranslation(xt, yt, scale_trans) -# -# where `xt` and `yt` are the translation offsets, and `scale_trans` is -# a transformation which scales `xt` and `yt` at transformation time -# before applying the offsets. -# -# Note the use of the plus operator on the transforms below. -# This code says: first apply the scale transformation ``fig.dpi_scale_trans`` -# to make the ellipse the proper size, but still centered at (0, 0), -# and then translate the data to `xdata[0]` and `ydata[0]` in data space. -# -# In interactive use, the ellipse stays the same size even if the -# axes limits are changed via zoom. -# - -fig, ax = plt.subplots() -xdata, ydata = (0.2, 0.7), (0.5, 0.5) -ax.plot(xdata, ydata, "o") -ax.set_xlim((0, 1)) - -trans = (fig.dpi_scale_trans + - transforms.ScaledTranslation(xdata[0], ydata[0], ax.transData)) - -# plot an ellipse around the point that is 150 x 130 points in diameter... -circle = mpatches.Ellipse((0, 0), 150/72, 130/72, angle=40, - fill=None, transform=trans) -ax.add_patch(circle) -plt.show() - -############################################################################### -# .. note:: -# -# The order of transformation matters. Here the ellipse -# is given the right dimensions in display space *first* and then moved -# in data space to the correct spot. -# If we had done the ``ScaledTranslation`` first, then -# ``xdata[0]`` and ``ydata[0]`` would -# first be transformed to ``display`` coordinates (``[ 358.4 475.2]`` on -# a 200-dpi monitor) and then those coordinates -# would be scaled by ``fig.dpi_scale_trans`` pushing the center of -# the ellipse well off the screen (i.e. ``[ 71680. 95040.]``). -# -# .. _offset-transforms-shadow: -# -# Using offset transforms to create a shadow effect -# ================================================= -# -# Another use of :class:`~matplotlib.transforms.ScaledTranslation` is to create -# a new transformation that is -# offset from another transformation, e.g., to place one object shifted a -# bit relative to another object. Typically you want the shift to be in -# some physical dimension, like points or inches rather than in data -# coordinates, so that the shift effect is constant at different zoom -# levels and dpi settings. -# -# One use for an offset is to create a shadow effect, where you draw one -# object identical to the first just to the right of it, and just below -# it, adjusting the zorder to make sure the shadow is drawn first and -# then the object it is shadowing above it. -# -# Here we apply the transforms in the *opposite* order to the use of -# :class:`~matplotlib.transforms.ScaledTranslation` above. The plot is -# first made in data units (``ax.transData``) and then shifted by -# ``dx`` and ``dy`` points using `fig.dpi_scale_trans`. (In typography, -# a`point `_ is -# 1/72 inches, and by specifying your offsets in points, your figure -# will look the same regardless of the dpi resolution it is saved in.) - -fig, ax = plt.subplots() - -# make a simple sine wave -x = np.arange(0., 2., 0.01) -y = np.sin(2*np.pi*x) -line, = ax.plot(x, y, lw=3, color='blue') - -# shift the object over 2 points, and down 2 points -dx, dy = 2/72., -2/72. -offset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans) -shadow_transform = ax.transData + offset - -# now plot the same data with our offset transform; -# use the zorder to make sure we are below the line -ax.plot(x, y, lw=3, color='gray', - transform=shadow_transform, - zorder=0.5*line.get_zorder()) - -ax.set_title('creating a shadow effect with an offset transform') -plt.show() - - -############################################################################### -# .. note:: -# -# The dpi and inches offset is a -# common-enough use case that we have a special helper function to -# create it in :func:`matplotlib.transforms.offset_copy`, which returns -# a new transform with an added offset. So above we could have done:: -# -# shadow_transform = transforms.offset_copy(ax.transData, -# fig=fig, dx, dy, units='inches') -# -# -# .. _transformation-pipeline: -# -# The transformation pipeline -# =========================== -# -# The ``ax.transData`` transform we have been working with in this -# tutorial is a composite of three different transformations that -# comprise the transformation pipeline from `data` -> `display` -# coordinates. Michael Droettboom implemented the transformations -# framework, taking care to provide a clean API that segregated the -# nonlinear projections and scales that happen in polar and logarithmic -# plots, from the linear affine transformations that happen when you pan -# and zoom. There is an efficiency here, because you can pan and zoom -# in your axes which affects the affine transformation, but you may not -# need to compute the potentially expensive nonlinear scales or -# projections on simple navigation events. It is also possible to -# multiply affine transformation matrices together, and then apply them -# to coordinates in one step. This is not true of all possible -# transformations. -# -# -# Here is how the ``ax.transData`` instance is defined in the basic -# separable axis :class:`~matplotlib.axes.Axes` class:: -# -# self.transData = self.transScale + (self.transLimits + self.transAxes) -# -# We've been introduced to the ``transAxes`` instance above in -# :ref:`axes-coords`, which maps the (0, 0), (1, 1) corners of the -# axes or subplot bounding box to `display` space, so let's look at -# these other two pieces. -# -# ``self.transLimits`` is the transformation that takes you from -# ``data`` to ``axes`` coordinates; i.e., it maps your view xlim and ylim -# to the unit space of the axes (and ``transAxes`` then takes that unit -# space to display space). We can see this in action here -# -# .. sourcecode:: ipython -# -# In [80]: ax = subplot(111) -# -# In [81]: ax.set_xlim(0, 10) -# Out[81]: (0, 10) -# -# In [82]: ax.set_ylim(-1, 1) -# Out[82]: (-1, 1) -# -# In [84]: ax.transLimits.transform((0, -1)) -# Out[84]: array([ 0., 0.]) -# -# In [85]: ax.transLimits.transform((10, -1)) -# Out[85]: array([ 1., 0.]) -# -# In [86]: ax.transLimits.transform((10, 1)) -# Out[86]: array([ 1., 1.]) -# -# In [87]: ax.transLimits.transform((5, 0)) -# Out[87]: array([ 0.5, 0.5]) -# -# and we can use this same inverted transformation to go from the unit -# `axes` coordinates back to `data` coordinates. -# -# .. sourcecode:: ipython -# -# In [90]: inv.transform((0.25, 0.25)) -# Out[90]: array([ 2.5, -0.5]) -# -# The final piece is the ``self.transScale`` attribute, which is -# responsible for the optional non-linear scaling of the data, e.g., for -# logarithmic axes. When an Axes is initially setup, this is just set to -# the identity transform, since the basic Matplotlib axes has linear -# scale, but when you call a logarithmic scaling function like -# :meth:`~matplotlib.axes.Axes.semilogx` or explicitly set the scale to -# logarithmic with :meth:`~matplotlib.axes.Axes.set_xscale`, then the -# ``ax.transScale`` attribute is set to handle the nonlinear projection. -# The scales transforms are properties of the respective ``xaxis`` and -# ``yaxis`` :class:`~matplotlib.axis.Axis` instances. For example, when -# you call ``ax.set_xscale('log')``, the xaxis updates its scale to a -# :class:`matplotlib.scale.LogScale` instance. -# -# For non-separable axes the PolarAxes, there is one more piece to -# consider, the projection transformation. The ``transData`` -# :class:`matplotlib.projections.polar.PolarAxes` is similar to that for -# the typical separable matplotlib Axes, with one additional piece -# ``transProjection``:: -# -# self.transData = self.transScale + self.transProjection + \ -# (self.transProjectionAffine + self.transAxes) -# -# ``transProjection`` handles the projection from the space, -# e.g., latitude and longitude for map data, or radius and theta for polar -# data, to a separable Cartesian coordinate system. There are several -# projection examples in the ``matplotlib.projections`` package, and the -# best way to learn more is to open the source for those packages and -# see how to make your own, since Matplotlib supports extensible axes -# and projections. Michael Droettboom has provided a nice tutorial -# example of creating a Hammer projection axes; see -# :doc:`/gallery/misc/custom_projection`. diff --git a/_downloads/24cc60bd7dbf036005c2b65929c41d04/nan_test.ipynb b/_downloads/24cc60bd7dbf036005c2b65929c41d04/nan_test.ipynb deleted file mode 100644 index a08844c93d4..00000000000 --- a/_downloads/24cc60bd7dbf036005c2b65929c41d04/nan_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nan Test\n\n\nExample: simple line plots with NaNs inserted.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0.0, 1.0 + 0.01, 0.01)\ns = np.cos(2 * 2*np.pi * t)\nt[41:60] = np.nan\n\nplt.subplot(2, 1, 1)\nplt.plot(t, s, '-', lw=2)\n\nplt.xlabel('time (s)')\nplt.ylabel('voltage (mV)')\nplt.title('A sine wave with a gap of NaNs between 0.4 and 0.6')\nplt.grid(True)\n\nplt.subplot(2, 1, 2)\nt[0] = np.nan\nt[-1] = np.nan\nplt.plot(t, s, '-', lw=2)\nplt.title('Also with NaN in first and last point')\n\nplt.xlabel('time (s)')\nplt.ylabel('more nans')\nplt.grid(True)\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/24d357f015306c54178a09af9bf632f8/psd_demo.ipynb b/_downloads/24d357f015306c54178a09af9bf632f8/psd_demo.ipynb deleted file mode 120000 index c20ff38b237..00000000000 --- a/_downloads/24d357f015306c54178a09af9bf632f8/psd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/24d357f015306c54178a09af9bf632f8/psd_demo.ipynb \ No newline at end of file diff --git a/_downloads/24db5c72af33c1693371c953b24462ee/trisurf3d_2.py b/_downloads/24db5c72af33c1693371c953b24462ee/trisurf3d_2.py deleted file mode 100644 index 35994b39b2a..00000000000 --- a/_downloads/24db5c72af33c1693371c953b24462ee/trisurf3d_2.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -=========================== -More triangular 3D surfaces -=========================== - -Two additional examples of plotting surfaces with triangular mesh. - -The first demonstrates use of plot_trisurf's triangles argument, and the -second sets a Triangulation object's mask and passes the object directly -to plot_trisurf. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.tri as mtri - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -fig = plt.figure(figsize=plt.figaspect(0.5)) - -#============ -# First plot -#============ - -# Make a mesh in the space of parameterisation variables u and v -u = np.linspace(0, 2.0 * np.pi, endpoint=True, num=50) -v = np.linspace(-0.5, 0.5, endpoint=True, num=10) -u, v = np.meshgrid(u, v) -u, v = u.flatten(), v.flatten() - -# This is the Mobius mapping, taking a u, v pair and returning an x, y, z -# triple -x = (1 + 0.5 * v * np.cos(u / 2.0)) * np.cos(u) -y = (1 + 0.5 * v * np.cos(u / 2.0)) * np.sin(u) -z = 0.5 * v * np.sin(u / 2.0) - -# Triangulate parameter space to determine the triangles -tri = mtri.Triangulation(u, v) - -# Plot the surface. The triangles in parameter space determine which x, y, z -# points are connected by an edge. -ax = fig.add_subplot(1, 2, 1, projection='3d') -ax.plot_trisurf(x, y, z, triangles=tri.triangles, cmap=plt.cm.Spectral) -ax.set_zlim(-1, 1) - - -#============ -# Second plot -#============ - -# Make parameter spaces radii and angles. -n_angles = 36 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi/n_angles - -# Map radius, angle pairs to x, y, z points. -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -z = (np.cos(radii)*np.cos(3*angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = mtri.Triangulation(x, y) - -# Mask off unwanted triangles. -xmid = x[triang.triangles].mean(axis=1) -ymid = y[triang.triangles].mean(axis=1) -mask = xmid**2 + ymid**2 < min_radius**2 -triang.set_mask(mask) - -# Plot the surface. -ax = fig.add_subplot(1, 2, 2, projection='3d') -ax.plot_trisurf(triang, z, cmap=plt.cm.CMRmap) - - -plt.show() diff --git a/_downloads/24ea90789d9d864310f0acd4cd18b3be/annotate_simple_coord03.py b/_downloads/24ea90789d9d864310f0acd4cd18b3be/annotate_simple_coord03.py deleted file mode 120000 index b1ba5ed46d8..00000000000 --- a/_downloads/24ea90789d9d864310f0acd4cd18b3be/annotate_simple_coord03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/24ea90789d9d864310f0acd4cd18b3be/annotate_simple_coord03.py \ No newline at end of file diff --git a/_downloads/24f9ea6e6c86518bcdc77699fffc02bd/gridspec_and_subplots.ipynb b/_downloads/24f9ea6e6c86518bcdc77699fffc02bd/gridspec_and_subplots.ipynb deleted file mode 120000 index d6797474962..00000000000 --- a/_downloads/24f9ea6e6c86518bcdc77699fffc02bd/gridspec_and_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/24f9ea6e6c86518bcdc77699fffc02bd/gridspec_and_subplots.ipynb \ No newline at end of file diff --git a/_downloads/24fe69b7841a0ea8f32fc09936029fdd/mandelbrot.ipynb b/_downloads/24fe69b7841a0ea8f32fc09936029fdd/mandelbrot.ipynb deleted file mode 120000 index 6f4e7f067da..00000000000 --- a/_downloads/24fe69b7841a0ea8f32fc09936029fdd/mandelbrot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/24fe69b7841a0ea8f32fc09936029fdd/mandelbrot.ipynb \ No newline at end of file diff --git a/_downloads/250093bb0ec3f8c0b653bd908e7dc612/simple_plot.ipynb b/_downloads/250093bb0ec3f8c0b653bd908e7dc612/simple_plot.ipynb deleted file mode 100644 index 5423f0e5f58..00000000000 --- a/_downloads/250093bb0ec3f8c0b653bd908e7dc612/simple_plot.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Plot\n\n\nCreate a simple plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Data for plotting\nt = np.arange(0.0, 2.0, 0.01)\ns = 1 + np.sin(2 * np.pi * t)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\nax.set(xlabel='time (s)', ylabel='voltage (mV)',\n title='About as simple as it gets, folks')\nax.grid()\n\nfig.savefig(\"test.png\")\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.pyplot.subplots\nmatplotlib.figure.Figure.savefig" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/250a765bdbbf8239771ca7c6b61ac825/simple_axisline4.ipynb b/_downloads/250a765bdbbf8239771ca7c6b61ac825/simple_axisline4.ipynb deleted file mode 120000 index 2e89d93035d..00000000000 --- a/_downloads/250a765bdbbf8239771ca7c6b61ac825/simple_axisline4.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/250a765bdbbf8239771ca7c6b61ac825/simple_axisline4.ipynb \ No newline at end of file diff --git a/_downloads/252554de998905f7078256fcb77bc9fd/demo_constrained_layout.ipynb b/_downloads/252554de998905f7078256fcb77bc9fd/demo_constrained_layout.ipynb deleted file mode 120000 index 9c884d398f4..00000000000 --- a/_downloads/252554de998905f7078256fcb77bc9fd/demo_constrained_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/252554de998905f7078256fcb77bc9fd/demo_constrained_layout.ipynb \ No newline at end of file diff --git a/_downloads/2526d04f2fc8c621d629a1550b571363/demo_annotation_box.ipynb b/_downloads/2526d04f2fc8c621d629a1550b571363/demo_annotation_box.ipynb deleted file mode 120000 index 8f8d869eb68..00000000000 --- a/_downloads/2526d04f2fc8c621d629a1550b571363/demo_annotation_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2526d04f2fc8c621d629a1550b571363/demo_annotation_box.ipynb \ No newline at end of file diff --git a/_downloads/25334b1324ebbea655e5cf16ac6dac95/image_demo.ipynb b/_downloads/25334b1324ebbea655e5cf16ac6dac95/image_demo.ipynb deleted file mode 120000 index 5ca3a3c5c27..00000000000 --- a/_downloads/25334b1324ebbea655e5cf16ac6dac95/image_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/25334b1324ebbea655e5cf16ac6dac95/image_demo.ipynb \ No newline at end of file diff --git a/_downloads/25355ce38a45a536c36e547ebf57fdf3/2dcollections3d.py b/_downloads/25355ce38a45a536c36e547ebf57fdf3/2dcollections3d.py deleted file mode 100644 index 589e1083f7f..00000000000 --- a/_downloads/25355ce38a45a536c36e547ebf57fdf3/2dcollections3d.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -======================= -Plot 2D data on 3D plot -======================= - -Demonstrates using ax.plot's zdir keyword to plot 2D data on -selective axes of a 3D plot. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Plot a sin curve using the x and y axes. -x = np.linspace(0, 1, 100) -y = np.sin(x * 2 * np.pi) / 2 + 0.5 -ax.plot(x, y, zs=0, zdir='z', label='curve in (x,y)') - -# Plot scatterplot data (20 2D points per colour) on the x and z axes. -colors = ('r', 'g', 'b', 'k') - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x = np.random.sample(20 * len(colors)) -y = np.random.sample(20 * len(colors)) -c_list = [] -for c in colors: - c_list.extend([c] * 20) -# By using zdir='y', the y value of these points is fixed to the zs value 0 -# and the (x,y) points are plotted on the x and z axes. -ax.scatter(x, y, zs=0, zdir='y', c=c_list, label='points in (x,z)') - -# Make legend, set axes limits and labels -ax.legend() -ax.set_xlim(0, 1) -ax.set_ylim(0, 1) -ax.set_zlim(0, 1) -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -# Customize the view angle so it's easier to see that the scatter points lie -# on the plane y=0 -ax.view_init(elev=20., azim=-35) - -plt.show() diff --git a/_downloads/253f9f753be909d9a9cf42e87ff810a1/colorbar_basics.ipynb b/_downloads/253f9f753be909d9a9cf42e87ff810a1/colorbar_basics.ipynb deleted file mode 100644 index 14413025f15..00000000000 --- a/_downloads/253f9f753be909d9a9cf42e87ff810a1/colorbar_basics.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colorbar\n\n\nUse `~.figure.Figure.colorbar` by specifying the mappable object (here\nthe `~.matplotlib.image.AxesImage` returned by `~.axes.Axes.imshow`)\nand the axes to attach the colorbar to.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# setup some generic data\nN = 37\nx, y = np.mgrid[:N, :N]\nZ = (np.cos(x*0.2) + np.sin(y*0.3))\n\n# mask out the negative and positive values, respectively\nZpos = np.ma.masked_less(Z, 0)\nZneg = np.ma.masked_greater(Z, 0)\n\nfig, (ax1, ax2, ax3) = plt.subplots(figsize=(13, 3), ncols=3)\n\n# plot just the positive data and save the\n# color \"mappable\" object returned by ax1.imshow\npos = ax1.imshow(Zpos, cmap='Blues', interpolation='none')\n\n# add the colorbar using the figure's method,\n# telling which mappable we're talking about and\n# which axes object it should be near\nfig.colorbar(pos, ax=ax1)\n\n# repeat everything above for the negative data\nneg = ax2.imshow(Zneg, cmap='Reds_r', interpolation='none')\nfig.colorbar(neg, ax=ax2)\n\n# Plot both positive and negative values between +/- 1.2\npos_neg_clipped = ax3.imshow(Z, cmap='RdBu', vmin=-1.2, vmax=1.2,\n interpolation='none')\n# Add minorticks on the colorbar to make it easy to read the\n# values off the colorbar.\ncbar = fig.colorbar(pos_neg_clipped, ax=ax3, extend='both')\ncbar.minorticks_on()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.colorbar\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colorbar.Colorbar.minorticks_on\nmatplotlib.colorbar.Colorbar.minorticks_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/25436d50dae3ce2bba2488034e123a3e/pyplot_mathtext.py b/_downloads/25436d50dae3ce2bba2488034e123a3e/pyplot_mathtext.py deleted file mode 120000 index d0ef6f0426e..00000000000 --- a/_downloads/25436d50dae3ce2bba2488034e123a3e/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25436d50dae3ce2bba2488034e123a3e/pyplot_mathtext.py \ No newline at end of file diff --git a/_downloads/254698730c028cc982520e86770389ae/wire3d.py b/_downloads/254698730c028cc982520e86770389ae/wire3d.py deleted file mode 100644 index cd91cc57ac2..00000000000 --- a/_downloads/254698730c028cc982520e86770389ae/wire3d.py +++ /dev/null @@ -1,22 +0,0 @@ -''' -================= -3D wireframe plot -================= - -A very basic demonstration of a wireframe plot. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Grab some test data. -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot a basic wireframe. -ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) - -plt.show() diff --git a/_downloads/2551cfaa267f1ea31a991e3a02fc6ced/contourf_hatching.py b/_downloads/2551cfaa267f1ea31a991e3a02fc6ced/contourf_hatching.py deleted file mode 100644 index ca76e7338f2..00000000000 --- a/_downloads/2551cfaa267f1ea31a991e3a02fc6ced/contourf_hatching.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -================= -Contourf Hatching -================= - -Demo filled contour plots with hatched patterns. -""" -import matplotlib.pyplot as plt -import numpy as np - -# invent some numbers, turning the x and y arrays into simple -# 2d arrays, which make combining them together easier. -x = np.linspace(-3, 5, 150).reshape(1, -1) -y = np.linspace(-3, 5, 120).reshape(-1, 1) -z = np.cos(x) + np.sin(y) - -# we no longer need x and y to be 2 dimensional, so flatten them. -x, y = x.flatten(), y.flatten() - -############################################################################### -# Plot 1: the simplest hatched plot with a colorbar - -fig1, ax1 = plt.subplots() -cs = ax1.contourf(x, y, z, hatches=['-', '/', '\\', '//'], - cmap='gray', extend='both', alpha=0.5) -fig1.colorbar(cs) - -############################################################################### -# Plot 2: a plot of hatches without color with a legend - -fig2, ax2 = plt.subplots() -n_levels = 6 -ax2.contour(x, y, z, n_levels, colors='black', linestyles='-') -cs = ax2.contourf(x, y, z, n_levels, colors='none', - hatches=['.', '/', '\\', None, '\\\\', '*'], - extend='lower') - -# create a legend for the contour set -artists, labels = cs.legend_elements() -ax2.legend(artists, labels, handleheight=2) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.contour.ContourSet -matplotlib.contour.ContourSet.legend_elements diff --git a/_downloads/25520da3172b0ab1766f2f0bd31a49f6/fill_betweenx_demo.py b/_downloads/25520da3172b0ab1766f2f0bd31a49f6/fill_betweenx_demo.py deleted file mode 120000 index 64656e17fbf..00000000000 --- a/_downloads/25520da3172b0ab1766f2f0bd31a49f6/fill_betweenx_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/25520da3172b0ab1766f2f0bd31a49f6/fill_betweenx_demo.py \ No newline at end of file diff --git a/_downloads/25632896dfae1e4bd9ebc3d26bf13397/font_file.py b/_downloads/25632896dfae1e4bd9ebc3d26bf13397/font_file.py deleted file mode 120000 index d99b8c52028..00000000000 --- a/_downloads/25632896dfae1e4bd9ebc3d26bf13397/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25632896dfae1e4bd9ebc3d26bf13397/font_file.py \ No newline at end of file diff --git a/_downloads/256c73b9fd878b439963a95f6848982f/scatter_hist.ipynb b/_downloads/256c73b9fd878b439963a95f6848982f/scatter_hist.ipynb deleted file mode 100644 index f644de4fe27..00000000000 --- a/_downloads/256c73b9fd878b439963a95f6848982f/scatter_hist.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plot with histograms\n\n\nCreate a scatter plot with histograms to its sides.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# the random data\nx = np.random.randn(1000)\ny = np.random.randn(1000)\n\n# definitions for the axes\nleft, width = 0.1, 0.65\nbottom, height = 0.1, 0.65\nspacing = 0.005\n\n\nrect_scatter = [left, bottom, width, height]\nrect_histx = [left, bottom + height + spacing, width, 0.2]\nrect_histy = [left + width + spacing, bottom, 0.2, height]\n\n# start with a rectangular Figure\nplt.figure(figsize=(8, 8))\n\nax_scatter = plt.axes(rect_scatter)\nax_scatter.tick_params(direction='in', top=True, right=True)\nax_histx = plt.axes(rect_histx)\nax_histx.tick_params(direction='in', labelbottom=False)\nax_histy = plt.axes(rect_histy)\nax_histy.tick_params(direction='in', labelleft=False)\n\n# the scatter plot:\nax_scatter.scatter(x, y)\n\n# now determine nice limits by hand:\nbinwidth = 0.25\nlim = np.ceil(np.abs([x, y]).max() / binwidth) * binwidth\nax_scatter.set_xlim((-lim, lim))\nax_scatter.set_ylim((-lim, lim))\n\nbins = np.arange(-lim, lim + binwidth, binwidth)\nax_histx.hist(x, bins=bins)\nax_histy.hist(y, bins=bins, orientation='horizontal')\n\nax_histx.set_xlim(ax_scatter.get_xlim())\nax_histy.set_ylim(ax_scatter.get_ylim())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2572e53c965ab09360d7fc2191b24260/scatter_symbol.py b/_downloads/2572e53c965ab09360d7fc2191b24260/scatter_symbol.py deleted file mode 120000 index 8664dccb226..00000000000 --- a/_downloads/2572e53c965ab09360d7fc2191b24260/scatter_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2572e53c965ab09360d7fc2191b24260/scatter_symbol.py \ No newline at end of file diff --git a/_downloads/25745a6a7685ed2d04d0bca3397a6dd5/simple_axes_divider1.ipynb b/_downloads/25745a6a7685ed2d04d0bca3397a6dd5/simple_axes_divider1.ipynb deleted file mode 120000 index 631e381e74a..00000000000 --- a/_downloads/25745a6a7685ed2d04d0bca3397a6dd5/simple_axes_divider1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/25745a6a7685ed2d04d0bca3397a6dd5/simple_axes_divider1.ipynb \ No newline at end of file diff --git a/_downloads/2576e5c0a8ece161ba4dccace97fbb27/image_masked.py b/_downloads/2576e5c0a8ece161ba4dccace97fbb27/image_masked.py deleted file mode 120000 index b93db403d3b..00000000000 --- a/_downloads/2576e5c0a8ece161ba4dccace97fbb27/image_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2576e5c0a8ece161ba4dccace97fbb27/image_masked.py \ No newline at end of file diff --git a/_downloads/257ff671f4157ba8ed2d591f18ff06a8/demo_annotation_box.py b/_downloads/257ff671f4157ba8ed2d591f18ff06a8/demo_annotation_box.py deleted file mode 100644 index 9fa69dd7762..00000000000 --- a/_downloads/257ff671f4157ba8ed2d591f18ff06a8/demo_annotation_box.py +++ /dev/null @@ -1,122 +0,0 @@ -"""=================== -Demo Annotation Box -=================== - -The AnnotationBbox Artist creates an annotation using an OffsetBox. This -example demonstrates three different OffsetBoxes: TextArea, DrawingArea and -OffsetImage. AnnotationBbox gives more fine-grained control than using the axes -method annotate. - -""" - -import matplotlib.pyplot as plt -import numpy as np - -from matplotlib.patches import Circle -from matplotlib.offsetbox import (TextArea, DrawingArea, OffsetImage, - AnnotationBbox) -from matplotlib.cbook import get_sample_data - - -fig, ax = plt.subplots() - -# Define a 1st position to annotate (display it with a marker) -xy = (0.5, 0.7) -ax.plot(xy[0], xy[1], ".r") - -# Annotate the 1st position with a text box ('Test 1') -offsetbox = TextArea("Test 1", minimumdescent=False) - -ab = AnnotationBbox(offsetbox, xy, - xybox=(-20, 40), - xycoords='data', - boxcoords="offset points", - arrowprops=dict(arrowstyle="->")) -ax.add_artist(ab) - -# Annotate the 1st position with another text box ('Test') -offsetbox = TextArea("Test", minimumdescent=False) - -ab = AnnotationBbox(offsetbox, xy, - xybox=(1.02, xy[1]), - xycoords='data', - boxcoords=("axes fraction", "data"), - box_alignment=(0., 0.5), - arrowprops=dict(arrowstyle="->")) -ax.add_artist(ab) - -# Define a 2nd position to annotate (don't display with a marker this time) -xy = [0.3, 0.55] - -# Annotate the 2nd position with a circle patch -da = DrawingArea(20, 20, 0, 0) -p = Circle((10, 10), 10) -da.add_artist(p) - -ab = AnnotationBbox(da, xy, - xybox=(1.02, xy[1]), - xycoords='data', - boxcoords=("axes fraction", "data"), - box_alignment=(0., 0.5), - arrowprops=dict(arrowstyle="->")) - -ax.add_artist(ab) - -# Annotate the 2nd position with an image (a generated array of pixels) -arr = np.arange(100).reshape((10, 10)) -im = OffsetImage(arr, zoom=2) -im.image.axes = ax - -ab = AnnotationBbox(im, xy, - xybox=(-50., 50.), - xycoords='data', - boxcoords="offset points", - pad=0.3, - arrowprops=dict(arrowstyle="->")) - -ax.add_artist(ab) - -# Annotate the 2nd position with another image (a Grace Hopper portrait) -with get_sample_data("grace_hopper.png") as file: - arr_img = plt.imread(file, format='png') - -imagebox = OffsetImage(arr_img, zoom=0.2) -imagebox.image.axes = ax - -ab = AnnotationBbox(imagebox, xy, - xybox=(120., -80.), - xycoords='data', - boxcoords="offset points", - pad=0.5, - arrowprops=dict( - arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=3") - ) - -ax.add_artist(ab) - -# Fix the display limits to see everything -ax.set_xlim(0, 1) -ax.set_ylim(0, 1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown in this -# example: - -Circle -TextArea -DrawingArea -OffsetImage -AnnotationBbox -get_sample_data -plt.subplots -plt.imread -plt.show diff --git a/_downloads/25827fc654b3d0e513970fb3d5471095/fig_axes_labels_simple.ipynb b/_downloads/25827fc654b3d0e513970fb3d5471095/fig_axes_labels_simple.ipynb deleted file mode 120000 index 512ba319bc9..00000000000 --- a/_downloads/25827fc654b3d0e513970fb3d5471095/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/25827fc654b3d0e513970fb3d5471095/fig_axes_labels_simple.ipynb \ No newline at end of file diff --git a/_downloads/259234ba5e452f87e82c0c68f3f6327f/pythonic_matplotlib.py b/_downloads/259234ba5e452f87e82c0c68f3f6327f/pythonic_matplotlib.py deleted file mode 100644 index b04d931264f..00000000000 --- a/_downloads/259234ba5e452f87e82c0c68f3f6327f/pythonic_matplotlib.py +++ /dev/null @@ -1,79 +0,0 @@ -""" -=================== -Pythonic Matplotlib -=================== - -Some people prefer to write more pythonic, object-oriented code -rather than use the pyplot interface to matplotlib. This example shows -you how. - -Unless you are an application developer, I recommend using part of the -pyplot interface, particularly the figure, close, subplot, axes, and -show commands. These hide a lot of complexity from you that you don't -need to see in normal figure creation, like instantiating DPI -instances, managing the bounding boxes of the figure elements, -creating and realizing GUI windows and embedding figures in them. - -If you are an application developer and want to embed matplotlib in -your application, follow the lead of examples/embedding_in_wx.py, -examples/embedding_in_gtk.py or examples/embedding_in_tk.py. In this -case you will want to control the creation of all your figures, -embedding them in application windows, etc. - -If you are a web application developer, you may want to use the -example in webapp_demo.py, which shows how to use the backend agg -figure canvas directly, with none of the globals (current figure, -current axes) that are present in the pyplot interface. Note that -there is no reason why the pyplot interface won't work for web -application developers, however. - -If you see an example in the examples dir written in pyplot interface, -and you want to emulate that using the true python method calls, there -is an easy mapping. Many of those examples use 'set' to control -figure properties. Here's how to map those commands onto instance -methods - -The syntax of set is:: - - plt.setp(object or sequence, somestring, attribute) - -if called with an object, set calls:: - - object.set_somestring(attribute) - -if called with a sequence, set does:: - - for object in sequence: - object.set_somestring(attribute) - -So for your example, if a is your axes object, you can do:: - - a.set_xticklabels([]) - a.set_yticklabels([]) - a.set_xticks([]) - a.set_yticks([]) -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 1.0, 0.01) - -fig, (ax1, ax2) = plt.subplots(2) - -ax1.plot(t, np.sin(2*np.pi * t)) -ax1.grid(True) -ax1.set_ylim((-2, 2)) -ax1.set_ylabel('1 Hz') -ax1.set_title('A sine wave or two') - -ax1.xaxis.set_tick_params(labelcolor='r') - -ax2.plot(t, np.sin(2 * 2*np.pi * t)) -ax2.grid(True) -ax2.set_ylim((-2, 2)) -l = ax2.set_xlabel('Hi mom') -l.set_color('g') -l.set_fontsize('large') - -plt.show() diff --git a/_downloads/259756dde590db0cbeb5b975d5139de6/text_props.ipynb b/_downloads/259756dde590db0cbeb5b975d5139de6/text_props.ipynb deleted file mode 120000 index 69eabdf5963..00000000000 --- a/_downloads/259756dde590db0cbeb5b975d5139de6/text_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/259756dde590db0cbeb5b975d5139de6/text_props.ipynb \ No newline at end of file diff --git a/_downloads/2599ded1c75112d1a607d6b406ce25ab/demo_colorbar_with_inset_locator.py b/_downloads/2599ded1c75112d1a607d6b406ce25ab/demo_colorbar_with_inset_locator.py deleted file mode 100644 index 0133da3f22b..00000000000 --- a/_downloads/2599ded1c75112d1a607d6b406ce25ab/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -============================================================== -Controlling the position and size of colorbars with Inset Axes -============================================================== - -This example shows how to control the position, height, and width of -colorbars using `~mpl_toolkits.axes_grid1.inset_axes`. - -Controlling the placement of the inset axes is done similarly as that of the -legend: either by providing a location option ("upper right", "best", ...), or -by providing a locator with respect to the parent bbox. - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.inset_locator import inset_axes - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=[6, 3]) - -axins1 = inset_axes(ax1, - width="50%", # width = 50% of parent_bbox width - height="5%", # height : 5% - loc='upper right') - -im1 = ax1.imshow([[1, 2], [2, 3]]) -fig.colorbar(im1, cax=axins1, orientation="horizontal", ticks=[1, 2, 3]) -axins1.xaxis.set_ticks_position("bottom") - -axins = inset_axes(ax2, - width="5%", # width = 5% of parent_bbox width - height="50%", # height : 50% - loc='lower left', - bbox_to_anchor=(1.05, 0., 1, 1), - bbox_transform=ax2.transAxes, - borderpad=0, - ) - -# Controlling the placement of the inset axes is basically same as that -# of the legend. you may want to play with the borderpad value and -# the bbox_to_anchor coordinate. - -im = ax2.imshow([[1, 2], [2, 3]]) -fig.colorbar(im, cax=axins, ticks=[1, 2, 3]) - -plt.show() diff --git a/_downloads/259a7a6810981f15e30693029aad3677/annotate_explain.py b/_downloads/259a7a6810981f15e30693029aad3677/annotate_explain.py deleted file mode 120000 index d97eb1d35fb..00000000000 --- a/_downloads/259a7a6810981f15e30693029aad3677/annotate_explain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/259a7a6810981f15e30693029aad3677/annotate_explain.py \ No newline at end of file diff --git a/_downloads/25a4206800182fa0e1594070d8ae42bd/demo_ticklabel_direction.ipynb b/_downloads/25a4206800182fa0e1594070d8ae42bd/demo_ticklabel_direction.ipynb deleted file mode 120000 index eba0a91e6b4..00000000000 --- a/_downloads/25a4206800182fa0e1594070d8ae42bd/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25a4206800182fa0e1594070d8ae42bd/demo_ticklabel_direction.ipynb \ No newline at end of file diff --git a/_downloads/25a6fc25199cf8660b8887a9d02d640d/tex_demo.ipynb b/_downloads/25a6fc25199cf8660b8887a9d02d640d/tex_demo.ipynb deleted file mode 120000 index 968497ca260..00000000000 --- a/_downloads/25a6fc25199cf8660b8887a9d02d640d/tex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25a6fc25199cf8660b8887a9d02d640d/tex_demo.ipynb \ No newline at end of file diff --git a/_downloads/25a961f8bd52db709423a045d62be3cb/categorical_variables.ipynb b/_downloads/25a961f8bd52db709423a045d62be3cb/categorical_variables.ipynb deleted file mode 100644 index 2579ec232df..00000000000 --- a/_downloads/25a961f8bd52db709423a045d62be3cb/categorical_variables.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotting categorical variables\n\n\nHow to use categorical variables in Matplotlib.\n\nMany times you want to create a plot that uses categorical variables\nin Matplotlib. Matplotlib allows you to pass categorical variables directly to\nmany plotting functions, which we demonstrate below.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\ndata = {'apples': 10, 'oranges': 15, 'lemons': 5, 'limes': 20}\nnames = list(data.keys())\nvalues = list(data.values())\n\nfig, axs = plt.subplots(1, 3, figsize=(9, 3), sharey=True)\naxs[0].bar(names, values)\naxs[1].scatter(names, values)\naxs[2].plot(names, values)\nfig.suptitle('Categorical Plotting')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This works on both axes:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cat = [\"bored\", \"happy\", \"bored\", \"bored\", \"happy\", \"bored\"]\ndog = [\"happy\", \"happy\", \"happy\", \"happy\", \"bored\", \"bored\"]\nactivity = [\"combing\", \"drinking\", \"feeding\", \"napping\", \"playing\", \"washing\"]\n\nfig, ax = plt.subplots()\nax.plot(activity, dog, label=\"dog\")\nax.plot(activity, cat, label=\"cat\")\nax.legend()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/25b0a5c06009597a715420b26698d44f/demo_axes_grid2.py b/_downloads/25b0a5c06009597a715420b26698d44f/demo_axes_grid2.py deleted file mode 120000 index f6ca20aad1e..00000000000 --- a/_downloads/25b0a5c06009597a715420b26698d44f/demo_axes_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25b0a5c06009597a715420b26698d44f/demo_axes_grid2.py \ No newline at end of file diff --git a/_downloads/25b27fb14d6a03c4ed6d97477f05ebb9/patheffects_guide.py b/_downloads/25b27fb14d6a03c4ed6d97477f05ebb9/patheffects_guide.py deleted file mode 120000 index a2640d06c3b..00000000000 --- a/_downloads/25b27fb14d6a03c4ed6d97477f05ebb9/patheffects_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/25b27fb14d6a03c4ed6d97477f05ebb9/patheffects_guide.py \ No newline at end of file diff --git a/_downloads/25cf233de9442636a5b42e9e0442e086/tick_labels_from_values.py b/_downloads/25cf233de9442636a5b42e9e0442e086/tick_labels_from_values.py deleted file mode 120000 index 92c89bd75ff..00000000000 --- a/_downloads/25cf233de9442636a5b42e9e0442e086/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/25cf233de9442636a5b42e9e0442e086/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/25d3717e4af6596f66eeceb3566e8091/polar_legend.ipynb b/_downloads/25d3717e4af6596f66eeceb3566e8091/polar_legend.ipynb deleted file mode 100644 index af596889fa4..00000000000 --- a/_downloads/25d3717e4af6596f66eeceb3566e8091/polar_legend.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Polar Legend\n\n\nDemo of a legend on a polar-axis plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# radar green, solid grid lines\nplt.rc('grid', color='#316931', linewidth=1, linestyle='-')\nplt.rc('xtick', labelsize=15)\nplt.rc('ytick', labelsize=15)\n\n# force square figure and square axes looks better for polar, IMO\nfig = plt.figure(figsize=(8, 8))\nax = fig.add_axes([0.1, 0.1, 0.8, 0.8],\n projection='polar', facecolor='#d5de9c')\n\nr = np.arange(0, 3.0, 0.01)\ntheta = 2 * np.pi * r\nax.plot(theta, r, color='#ee8d18', lw=3, label='a line')\nax.plot(0.5 * theta, r, color='blue', ls='--', lw=3, label='another line')\nax.legend()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.legend\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/25d67df24430864089939d66fdd6fb2d/pgf.py b/_downloads/25d67df24430864089939d66fdd6fb2d/pgf.py deleted file mode 120000 index 739f737474e..00000000000 --- a/_downloads/25d67df24430864089939d66fdd6fb2d/pgf.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/25d67df24430864089939d66fdd6fb2d/pgf.py \ No newline at end of file diff --git a/_downloads/25dcc2d5c60c43619104e138720a4578/gallery_python.zip b/_downloads/25dcc2d5c60c43619104e138720a4578/gallery_python.zip deleted file mode 120000 index 44e971ac64c..00000000000 --- a/_downloads/25dcc2d5c60c43619104e138720a4578/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.0/_downloads/25dcc2d5c60c43619104e138720a4578/gallery_python.zip \ No newline at end of file diff --git a/_downloads/25e33319638f2e3971829d70fb305d42/figlegend_demo.ipynb b/_downloads/25e33319638f2e3971829d70fb305d42/figlegend_demo.ipynb deleted file mode 120000 index 38ef1579d95..00000000000 --- a/_downloads/25e33319638f2e3971829d70fb305d42/figlegend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/25e33319638f2e3971829d70fb305d42/figlegend_demo.ipynb \ No newline at end of file diff --git a/_downloads/25e817552ac95c29be410dbc7ba850f2/sankey_links.py b/_downloads/25e817552ac95c29be410dbc7ba850f2/sankey_links.py deleted file mode 120000 index 17a81ae50f1..00000000000 --- a/_downloads/25e817552ac95c29be410dbc7ba850f2/sankey_links.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25e817552ac95c29be410dbc7ba850f2/sankey_links.py \ No newline at end of file diff --git a/_downloads/25e8a65dc5917bca00a73bcad495cd75/watermark_image.ipynb b/_downloads/25e8a65dc5917bca00a73bcad495cd75/watermark_image.ipynb deleted file mode 120000 index 645c06ab804..00000000000 --- a/_downloads/25e8a65dc5917bca00a73bcad495cd75/watermark_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/25e8a65dc5917bca00a73bcad495cd75/watermark_image.ipynb \ No newline at end of file diff --git a/_downloads/25e8adadde1a8b6fff9aa1e29de74d92/errorbar.ipynb b/_downloads/25e8adadde1a8b6fff9aa1e29de74d92/errorbar.ipynb deleted file mode 120000 index 65132536d1d..00000000000 --- a/_downloads/25e8adadde1a8b6fff9aa1e29de74d92/errorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25e8adadde1a8b6fff9aa1e29de74d92/errorbar.ipynb \ No newline at end of file diff --git a/_downloads/25ec06d689560a694c883835e8dd8aa8/usetex_fonteffects.py b/_downloads/25ec06d689560a694c883835e8dd8aa8/usetex_fonteffects.py deleted file mode 120000 index 0be06ef99db..00000000000 --- a/_downloads/25ec06d689560a694c883835e8dd8aa8/usetex_fonteffects.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25ec06d689560a694c883835e8dd8aa8/usetex_fonteffects.py \ No newline at end of file diff --git a/_downloads/25ec477201be3f02132884028c3ca483/demo_axes_rgb.py b/_downloads/25ec477201be3f02132884028c3ca483/demo_axes_rgb.py deleted file mode 120000 index 7c8ada12e67..00000000000 --- a/_downloads/25ec477201be3f02132884028c3ca483/demo_axes_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/25ec477201be3f02132884028c3ca483/demo_axes_rgb.py \ No newline at end of file diff --git a/_downloads/25ed4f71dfefbef9ce4eb0bb2419d436/fonts_demo_kw.ipynb b/_downloads/25ed4f71dfefbef9ce4eb0bb2419d436/fonts_demo_kw.ipynb deleted file mode 120000 index ee1abf2ffd8..00000000000 --- a/_downloads/25ed4f71dfefbef9ce4eb0bb2419d436/fonts_demo_kw.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/25ed4f71dfefbef9ce4eb0bb2419d436/fonts_demo_kw.ipynb \ No newline at end of file diff --git a/_downloads/25f5c32ae1210d5f368794b32b120dfc/set_and_get.ipynb b/_downloads/25f5c32ae1210d5f368794b32b120dfc/set_and_get.ipynb deleted file mode 120000 index b6694545dd5..00000000000 --- a/_downloads/25f5c32ae1210d5f368794b32b120dfc/set_and_get.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/25f5c32ae1210d5f368794b32b120dfc/set_and_get.ipynb \ No newline at end of file diff --git a/_downloads/260403253df8ea5deda0c22caa0f1ab2/simple_legend02.py b/_downloads/260403253df8ea5deda0c22caa0f1ab2/simple_legend02.py deleted file mode 100644 index 2f9be117257..00000000000 --- a/_downloads/260403253df8ea5deda0c22caa0f1ab2/simple_legend02.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -=============== -Simple Legend02 -=============== - -""" -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -line1, = ax.plot([1, 2, 3], label="Line 1", linestyle='--') -line2, = ax.plot([3, 2, 1], label="Line 2", linewidth=4) - -# Create a legend for the first line. -first_legend = ax.legend(handles=[line1], loc='upper right') - -# Add the legend manually to the current Axes. -ax.add_artist(first_legend) - -# Create another legend for the second line. -ax.legend(handles=[line2], loc='lower right') - -plt.show() diff --git a/_downloads/260970134c7d3117a127c0fcdc5ad168/axes_grid.ipynb b/_downloads/260970134c7d3117a127c0fcdc5ad168/axes_grid.ipynb deleted file mode 120000 index 7428c98c7a3..00000000000 --- a/_downloads/260970134c7d3117a127c0fcdc5ad168/axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/260970134c7d3117a127c0fcdc5ad168/axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/261728ce22652d241be1fc8d6544276f/text_rotation_relative_to_line.py b/_downloads/261728ce22652d241be1fc8d6544276f/text_rotation_relative_to_line.py deleted file mode 120000 index 4b213e21a51..00000000000 --- a/_downloads/261728ce22652d241be1fc8d6544276f/text_rotation_relative_to_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/261728ce22652d241be1fc8d6544276f/text_rotation_relative_to_line.py \ No newline at end of file diff --git a/_downloads/26182e43ff9bdde98b4715fbe899a302/joinstyle.py b/_downloads/26182e43ff9bdde98b4715fbe899a302/joinstyle.py deleted file mode 100644 index 3c12053d3eb..00000000000 --- a/_downloads/26182e43ff9bdde98b4715fbe899a302/joinstyle.py +++ /dev/null @@ -1,94 +0,0 @@ -""" -========================== -Join styles and cap styles -========================== - -This example demonstrates the available join styles and cap styles. - -Both are used in `.Line2D` and various ``Collections`` from -`matplotlib.collections` as well as some functions that create these, e.g. -`~matplotlib.pyplot.plot`. - -""" - -############################################################################# -# -# Join styles -# """"""""""" -# -# Join styles define how the connection between two line segments is drawn. -# -# See the respective ``solid_joinstyle``, ``dash_joinstyle`` or ``joinstyle`` -# parameters. - -import numpy as np -import matplotlib.pyplot as plt - - -def plot_angle(ax, x, y, angle, style): - phi = np.radians(angle) - xx = [x + .5, x, x + .5*np.cos(phi)] - yy = [y, y, y + .5*np.sin(phi)] - ax.plot(xx, yy, lw=12, color='tab:blue', solid_joinstyle=style) - ax.plot(xx, yy, lw=1, color='black') - ax.plot(xx[1], yy[1], 'o', color='tab:red', markersize=3) - - -fig, ax = plt.subplots(figsize=(8, 6)) -ax.set_title('Join style') - -for x, style in enumerate(['miter', 'round', 'bevel']): - ax.text(x, 5, style) - for y, angle in enumerate([20, 45, 60, 90, 120]): - plot_angle(ax, x, y, angle, style) - if x == 0: - ax.text(-1.3, y, f'{angle} degrees') -ax.text(1, 4.7, '(default)') - -ax.set_xlim(-1.5, 2.75) -ax.set_ylim(-.5, 5.5) -ax.xaxis.set_visible(False) -ax.yaxis.set_visible(False) -plt.show() - - -############################################################################# -# -# Cap styles -# """""""""" -# -# Cap styles define how the the end of a line is drawn. -# -# See the respective ``solid_capstyle``, ``dash_capstyle`` or ``capstyle`` -# parameters. - -fig, ax = plt.subplots(figsize=(8, 2)) -ax.set_title('Cap style') - -for x, style in enumerate(['butt', 'round', 'projecting']): - ax.text(x, 1, style) - xx = [x, x+0.5] - yy = [0, 0] - ax.plot(xx, yy, lw=12, color='tab:blue', solid_capstyle=style) - ax.plot(xx, yy, lw=1, color='black') - ax.plot(xx, yy, 'o', color='tab:red', markersize=3) -ax.text(2, 0.7, '(default)') - -ax.set_ylim(-.5, 1.5) -ax.xaxis.set_visible(False) -ax.yaxis.set_visible(False) - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot diff --git a/_downloads/261c0105a3bb5adfc96b6f2e4486a5c1/dark_background.ipynb b/_downloads/261c0105a3bb5adfc96b6f2e4486a5c1/dark_background.ipynb deleted file mode 120000 index 91c17715413..00000000000 --- a/_downloads/261c0105a3bb5adfc96b6f2e4486a5c1/dark_background.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/261c0105a3bb5adfc96b6f2e4486a5c1/dark_background.ipynb \ No newline at end of file diff --git a/_downloads/26217c4473de44985babfe2e37d1d431/text_fontdict.py b/_downloads/26217c4473de44985babfe2e37d1d431/text_fontdict.py deleted file mode 120000 index c3e45fffdfe..00000000000 --- a/_downloads/26217c4473de44985babfe2e37d1d431/text_fontdict.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/26217c4473de44985babfe2e37d1d431/text_fontdict.py \ No newline at end of file diff --git a/_downloads/2622363044b907ad48501673b1fed0a3/axisartist.py b/_downloads/2622363044b907ad48501673b1fed0a3/axisartist.py deleted file mode 120000 index f9def5fc757..00000000000 --- a/_downloads/2622363044b907ad48501673b1fed0a3/axisartist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2622363044b907ad48501673b1fed0a3/axisartist.py \ No newline at end of file diff --git a/_downloads/2627ceaf8735be8c05365dd89f38d7eb/pyplot_three.ipynb b/_downloads/2627ceaf8735be8c05365dd89f38d7eb/pyplot_three.ipynb deleted file mode 100644 index 1ccb2803ba8..00000000000 --- a/_downloads/2627ceaf8735be8c05365dd89f38d7eb/pyplot_three.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Three\n\n\nPlot three line plots in a single call to `~matplotlib.pyplot.plot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# evenly sampled time at 200ms intervals\nt = np.arange(0., 5., 0.2)\n\n# red dashes, blue squares and green triangles\nplt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/262dc8684033902725e92cde9d868d76/wire3d_animation_sgskip.ipynb b/_downloads/262dc8684033902725e92cde9d868d76/wire3d_animation_sgskip.ipynb deleted file mode 100644 index 24322637b28..00000000000 --- a/_downloads/262dc8684033902725e92cde9d868d76/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rotating 3D wireframe plot\n\n\nA very simple 'animation' of a 3D plot. See also rotate_axes3d_demo.\n\n(This example is skipped when building the documentation gallery because it\nintentionally takes a long time to run)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport 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(111, 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)))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2634e6928ebd03cce3f662fa45a3d460/align_ylabels.ipynb b/_downloads/2634e6928ebd03cce3f662fa45a3d460/align_ylabels.ipynb deleted file mode 100644 index 6702c9441cb..00000000000 --- a/_downloads/2634e6928ebd03cce3f662fa45a3d460/align_ylabels.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Align y-labels\n\n\nTwo methods are shown here, one using a short call to `.Figure.align_ylabels`\nand the second a manual way to align the labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef make_plot(axs):\n box = dict(facecolor='yellow', pad=5, alpha=0.2)\n\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n ax1 = axs[0, 0]\n ax1.plot(2000*np.random.rand(10))\n ax1.set_title('ylabels not aligned')\n ax1.set_ylabel('misaligned 1', bbox=box)\n ax1.set_ylim(0, 2000)\n\n ax3 = axs[1, 0]\n ax3.set_ylabel('misaligned 2', bbox=box)\n ax3.plot(np.random.rand(10))\n\n ax2 = axs[0, 1]\n ax2.set_title('ylabels aligned')\n ax2.plot(2000*np.random.rand(10))\n ax2.set_ylabel('aligned 1', bbox=box)\n ax2.set_ylim(0, 2000)\n\n ax4 = axs[1, 1]\n ax4.plot(np.random.rand(10))\n ax4.set_ylabel('aligned 2', bbox=box)\n\n\n# Plot 1:\nfig, axs = plt.subplots(2, 2)\nfig.subplots_adjust(left=0.2, wspace=0.6)\nmake_plot(axs)\n\n# just align the last column of axes:\nfig.align_ylabels(axs[:, 1])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ".. seealso::\n `.Figure.align_ylabels` and `.Figure.align_labels` for a direct method\n of doing the same thing.\n Also :doc:`/gallery/subplots_axes_and_figures/align_labels_demo`\n\n\nOr we can manually align the axis labels between subplots manually using the\n`set_label_coords` method of the y-axis object. Note this requires we know\na good offset value which is hardcoded.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2)\nfig.subplots_adjust(left=0.2, wspace=0.6)\n\nmake_plot(axs)\n\nlabelx = -0.3 # axes coords\n\nfor j in range(2):\n axs[j, 1].yaxis.set_label_coords(labelx, 0.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure.align_ylabels\nmatplotlib.axis.Axis.set_label_coords\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.set_ylim" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2634f479526702d6adaab6d52c701706/keyword_plotting.ipynb b/_downloads/2634f479526702d6adaab6d52c701706/keyword_plotting.ipynb deleted file mode 120000 index 91dc149e042..00000000000 --- a/_downloads/2634f479526702d6adaab6d52c701706/keyword_plotting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2634f479526702d6adaab6d52c701706/keyword_plotting.ipynb \ No newline at end of file diff --git a/_downloads/2638d98121633e295bf0164b3e2dcfd6/simple_rgb.py b/_downloads/2638d98121633e295bf0164b3e2dcfd6/simple_rgb.py deleted file mode 120000 index 6f999f62c82..00000000000 --- a/_downloads/2638d98121633e295bf0164b3e2dcfd6/simple_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2638d98121633e295bf0164b3e2dcfd6/simple_rgb.py \ No newline at end of file diff --git a/_downloads/263c03883b4bd17a4d9671be445a87e2/marker_reference.py b/_downloads/263c03883b4bd17a4d9671be445a87e2/marker_reference.py deleted file mode 100644 index b0c2cdca6f8..00000000000 --- a/_downloads/263c03883b4bd17a4d9671be445a87e2/marker_reference.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -================ -Marker Reference -================ - -Reference for filled-, unfilled- and custom marker types with Matplotlib. - -For a list of all markers see the `matplotlib.markers` documentation. Also -refer to the :doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference` -and :doc:`/gallery/shapes_and_collections/marker_path` examples. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.lines import Line2D - - -points = np.ones(3) # Draw 3 points for each line -text_style = dict(horizontalalignment='right', verticalalignment='center', - fontsize=12, fontdict={'family': 'monospace'}) -marker_style = dict(linestyle=':', color='0.8', markersize=10, - mfc="C0", mec="C0") - - -def format_axes(ax): - ax.margins(0.2) - ax.set_axis_off() - ax.invert_yaxis() - - -def split_list(a_list): - i_half = len(a_list) // 2 - return (a_list[:i_half], a_list[i_half:]) - - -############################################################################### -# Filled and unfilled-marker types -# ================================ -# -# Plot all un-filled markers - -fig, axes = plt.subplots(ncols=2) -fig.suptitle('un-filled markers', fontsize=14) - -# Filter out filled markers and marker settings that do nothing. -unfilled_markers = [m for m, func in Line2D.markers.items() - if func != 'nothing' and m not in Line2D.filled_markers] - -for ax, markers in zip(axes, split_list(unfilled_markers)): - for y, marker in enumerate(markers): - ax.text(-0.5, y, repr(marker), **text_style) - ax.plot(y * points, marker=marker, **marker_style) - format_axes(ax) - -plt.show() - - -############################################################################### -# Plot all filled markers. - -fig, axes = plt.subplots(ncols=2) -for ax, markers in zip(axes, split_list(Line2D.filled_markers)): - for y, marker in enumerate(markers): - ax.text(-0.5, y, repr(marker), **text_style) - ax.plot(y * points, marker=marker, **marker_style) - format_axes(ax) -fig.suptitle('filled markers', fontsize=14) - -plt.show() - - -############################################################################### -# Custom Markers with MathText -# ============================ -# -# Use :doc:`MathText `, to use custom marker symbols, -# like e.g. ``"$\u266B$"``. For an overview over the STIX font symbols refer -# to the `STIX font table `_. -# Also see the :doc:`/gallery/text_labels_and_annotations/stix_fonts_demo`. - - -fig, ax = plt.subplots() -fig.subplots_adjust(left=0.4) - -marker_style.update(mec="None", markersize=15) -markers = ["$1$", r"$\frac{1}{2}$", "$f$", "$\u266B$", r"$\mathcal{A}$"] - - -for y, marker in enumerate(markers): - # Escape dollars so that the text is written "as is", not as mathtext. - ax.text(-0.5, y, repr(marker).replace("$", r"\$"), **text_style) - ax.plot(y * points, marker=marker, **marker_style) -format_axes(ax) -fig.suptitle('mathtext markers', fontsize=14) - -plt.show() diff --git a/_downloads/263e3129d9e8a216464900c524b47bd9/style_sheets_reference.ipynb b/_downloads/263e3129d9e8a216464900c524b47bd9/style_sheets_reference.ipynb deleted file mode 100644 index 47b39853a67..00000000000 --- a/_downloads/263e3129d9e8a216464900c524b47bd9/style_sheets_reference.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Style sheets reference\n\n\nThis script demonstrates the different available style sheets on a\ncommon set of example plots: scatter plot, image, bar graph, patches,\nline plot and histogram,\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef plot_scatter(ax, prng, nb_samples=100):\n \"\"\"Scatter plot.\n \"\"\"\n for mu, sigma, marker in [(-.5, 0.75, 'o'), (0.75, 1., 's')]:\n x, y = prng.normal(loc=mu, scale=sigma, size=(2, nb_samples))\n ax.plot(x, y, ls='none', marker=marker)\n ax.set_xlabel('X-label')\n return ax\n\n\ndef plot_colored_sinusoidal_lines(ax):\n \"\"\"Plot sinusoidal lines with colors following the style color cycle.\n \"\"\"\n L = 2 * np.pi\n x = np.linspace(0, L)\n nb_colors = len(plt.rcParams['axes.prop_cycle'])\n shift = np.linspace(0, L, nb_colors, endpoint=False)\n for s in shift:\n ax.plot(x, np.sin(x + s), '-')\n ax.set_xlim([x[0], x[-1]])\n return ax\n\n\ndef plot_bar_graphs(ax, prng, min_value=5, max_value=25, nb_samples=5):\n \"\"\"Plot two bar graphs side by side, with letters as x-tick labels.\n \"\"\"\n x = np.arange(nb_samples)\n ya, yb = prng.randint(min_value, max_value, size=(2, nb_samples))\n width = 0.25\n ax.bar(x, ya, width)\n ax.bar(x + width, yb, width, color='C2')\n ax.set_xticks(x + width)\n ax.set_xticklabels(['a', 'b', 'c', 'd', 'e'])\n return ax\n\n\ndef plot_colored_circles(ax, prng, nb_samples=15):\n \"\"\"Plot circle patches.\n\n NB: draws a fixed amount of samples, rather than using the length of\n the color cycle, because different styles may have different numbers\n of colors.\n \"\"\"\n for sty_dict, j in zip(plt.rcParams['axes.prop_cycle'], range(nb_samples)):\n ax.add_patch(plt.Circle(prng.normal(scale=3, size=2),\n radius=1.0, color=sty_dict['color']))\n # Force the limits to be the same across the styles (because different\n # styles may have different numbers of available colors).\n ax.set_xlim([-4, 8])\n ax.set_ylim([-5, 6])\n ax.set_aspect('equal', adjustable='box') # to plot circles as circles\n return ax\n\n\ndef plot_image_and_patch(ax, prng, size=(20, 20)):\n \"\"\"Plot an image with random values and superimpose a circular patch.\n \"\"\"\n values = prng.random_sample(size=size)\n ax.imshow(values, interpolation='none')\n c = plt.Circle((5, 5), radius=5, label='patch')\n ax.add_patch(c)\n # Remove ticks\n ax.set_xticks([])\n ax.set_yticks([])\n\n\ndef plot_histograms(ax, prng, nb_samples=10000):\n \"\"\"Plot 4 histograms and a text annotation.\n \"\"\"\n params = ((10, 10), (4, 12), (50, 12), (6, 55))\n for a, b in params:\n values = prng.beta(a, b, size=nb_samples)\n ax.hist(values, histtype=\"stepfilled\", bins=30,\n alpha=0.8, density=True)\n # Add a small annotation.\n ax.annotate('Annotation', xy=(0.25, 4.25),\n xytext=(0.9, 0.9), textcoords=ax.transAxes,\n va=\"top\", ha=\"right\",\n bbox=dict(boxstyle=\"round\", alpha=0.2),\n arrowprops=dict(\n arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=-95,angleB=35,rad=10\"),\n )\n return ax\n\n\ndef plot_figure(style_label=\"\"):\n \"\"\"Setup and plot the demonstration figure with a given style.\n \"\"\"\n # Use a dedicated RandomState instance to draw the same \"random\" values\n # across the different figures.\n prng = np.random.RandomState(96917002)\n\n # Tweak the figure size to be better suited for a row of numerous plots:\n # double the width and halve the height. NB: use relative changes because\n # some styles may have a figure size different from the default one.\n (fig_width, fig_height) = plt.rcParams['figure.figsize']\n fig_size = [fig_width * 2, fig_height / 2]\n\n fig, axes = plt.subplots(ncols=6, nrows=1, num=style_label,\n figsize=fig_size, squeeze=True)\n axes[0].set_ylabel(style_label)\n\n plot_scatter(axes[0], prng)\n plot_image_and_patch(axes[1], prng)\n plot_bar_graphs(axes[2], prng)\n plot_colored_circles(axes[3], prng)\n plot_colored_sinusoidal_lines(axes[4])\n plot_histograms(axes[5], prng)\n\n fig.tight_layout()\n\n return fig\n\n\nif __name__ == \"__main__\":\n\n # Setup a list of all available styles, in alphabetical order but\n # the `default` and `classic` ones, which will be forced resp. in\n # first and second position.\n style_list = ['default', 'classic'] + sorted(\n style for style in plt.style.available if style != 'classic')\n\n # Plot a demonstration figure for every available style sheet.\n for style_label in style_list:\n with plt.style.context(style_label):\n fig = plot_figure(style_label=style_label)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/264a8be4de96930763e780682bdaba2d/fill_between_demo.py b/_downloads/264a8be4de96930763e780682bdaba2d/fill_between_demo.py deleted file mode 120000 index 243f4ff81f9..00000000000 --- a/_downloads/264a8be4de96930763e780682bdaba2d/fill_between_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/264a8be4de96930763e780682bdaba2d/fill_between_demo.py \ No newline at end of file diff --git a/_downloads/26504c1ac545427aa22403646a92c129/demo_axes_rgb.ipynb b/_downloads/26504c1ac545427aa22403646a92c129/demo_axes_rgb.ipynb deleted file mode 120000 index fb687ea8c19..00000000000 --- a/_downloads/26504c1ac545427aa22403646a92c129/demo_axes_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/26504c1ac545427aa22403646a92c129/demo_axes_rgb.ipynb \ No newline at end of file diff --git a/_downloads/26629649d6860f0748129333e94ebad5/scatter_custom_symbol.ipynb b/_downloads/26629649d6860f0748129333e94ebad5/scatter_custom_symbol.ipynb deleted file mode 120000 index 6d624f2ae1a..00000000000 --- a/_downloads/26629649d6860f0748129333e94ebad5/scatter_custom_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/26629649d6860f0748129333e94ebad5/scatter_custom_symbol.ipynb \ No newline at end of file diff --git a/_downloads/2662a8e8dcfcdc2149d038813f3773df/axis_direction_demo_step03.py b/_downloads/2662a8e8dcfcdc2149d038813f3773df/axis_direction_demo_step03.py deleted file mode 120000 index dd37ce6d5e6..00000000000 --- a/_downloads/2662a8e8dcfcdc2149d038813f3773df/axis_direction_demo_step03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2662a8e8dcfcdc2149d038813f3773df/axis_direction_demo_step03.py \ No newline at end of file diff --git a/_downloads/2669cb1680a58bf6e4bfb9fe5a5d60a8/eventplot_demo.py b/_downloads/2669cb1680a58bf6e4bfb9fe5a5d60a8/eventplot_demo.py deleted file mode 120000 index 23d2b615633..00000000000 --- a/_downloads/2669cb1680a58bf6e4bfb9fe5a5d60a8/eventplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2669cb1680a58bf6e4bfb9fe5a5d60a8/eventplot_demo.py \ No newline at end of file diff --git a/_downloads/266c634177141fb6b6bf2761e0e9c9b7/parasite_simple2.ipynb b/_downloads/266c634177141fb6b6bf2761e0e9c9b7/parasite_simple2.ipynb deleted file mode 120000 index 7cd81ee36c7..00000000000 --- a/_downloads/266c634177141fb6b6bf2761e0e9c9b7/parasite_simple2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/266c634177141fb6b6bf2761e0e9c9b7/parasite_simple2.ipynb \ No newline at end of file diff --git a/_downloads/266d2897c3215629dd3bc2e65d9085a1/barb_demo.py b/_downloads/266d2897c3215629dd3bc2e65d9085a1/barb_demo.py deleted file mode 120000 index 681e860f637..00000000000 --- a/_downloads/266d2897c3215629dd3bc2e65d9085a1/barb_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/266d2897c3215629dd3bc2e65d9085a1/barb_demo.py \ No newline at end of file diff --git a/_downloads/266e57da8b5c5bbe28f0916d7a0cd683/parasite_simple2.py b/_downloads/266e57da8b5c5bbe28f0916d7a0cd683/parasite_simple2.py deleted file mode 120000 index eadfc1d79de..00000000000 --- a/_downloads/266e57da8b5c5bbe28f0916d7a0cd683/parasite_simple2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/266e57da8b5c5bbe28f0916d7a0cd683/parasite_simple2.py \ No newline at end of file diff --git a/_downloads/26754d7e2fe7dae58f24aa9d1e5d7bcf/style_sheets_reference.ipynb b/_downloads/26754d7e2fe7dae58f24aa9d1e5d7bcf/style_sheets_reference.ipynb deleted file mode 120000 index c31aac0d307..00000000000 --- a/_downloads/26754d7e2fe7dae58f24aa9d1e5d7bcf/style_sheets_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/26754d7e2fe7dae58f24aa9d1e5d7bcf/style_sheets_reference.ipynb \ No newline at end of file diff --git a/_downloads/268ae4a6ffa284efad4a6fd0b1c63614/simple_legend02.ipynb b/_downloads/268ae4a6ffa284efad4a6fd0b1c63614/simple_legend02.ipynb deleted file mode 120000 index e6a28fe6d18..00000000000 --- a/_downloads/268ae4a6ffa284efad4a6fd0b1c63614/simple_legend02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/268ae4a6ffa284efad4a6fd0b1c63614/simple_legend02.ipynb \ No newline at end of file diff --git a/_downloads/268bf2a830c1140e907940f9c32a672b/shared_axis_demo.py b/_downloads/268bf2a830c1140e907940f9c32a672b/shared_axis_demo.py deleted file mode 120000 index 0bced4b7b8d..00000000000 --- a/_downloads/268bf2a830c1140e907940f9c32a672b/shared_axis_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/268bf2a830c1140e907940f9c32a672b/shared_axis_demo.py \ No newline at end of file diff --git a/_downloads/269adc9b56d1be04e7244bfb8603452d/fivethirtyeight.py b/_downloads/269adc9b56d1be04e7244bfb8603452d/fivethirtyeight.py deleted file mode 100644 index 64b7ab07b6a..00000000000 --- a/_downloads/269adc9b56d1be04e7244bfb8603452d/fivethirtyeight.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -=========================== -FiveThirtyEight style sheet -=========================== - -This shows an example of the "fivethirtyeight" styling, which -tries to replicate the styles from FiveThirtyEight.com. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -plt.style.use('fivethirtyeight') - -x = np.linspace(0, 10) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() - -ax.plot(x, np.sin(x) + x + np.random.randn(50)) -ax.plot(x, np.sin(x) + 0.5 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) + 2 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) - 0.5 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) - 2 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) + np.random.randn(50)) -ax.set_title("'fivethirtyeight' style sheet") - -plt.show() diff --git a/_downloads/269b2363a327c4fa1d45dd20a022852c/tripcolor_demo.ipynb b/_downloads/269b2363a327c4fa1d45dd20a022852c/tripcolor_demo.ipynb deleted file mode 120000 index 00528f5bac5..00000000000 --- a/_downloads/269b2363a327c4fa1d45dd20a022852c/tripcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/269b2363a327c4fa1d45dd20a022852c/tripcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/269ba3f01b65ddc538b452e13c4321ce/figure_axes_enter_leave.ipynb b/_downloads/269ba3f01b65ddc538b452e13c4321ce/figure_axes_enter_leave.ipynb deleted file mode 120000 index a04d86971e2..00000000000 --- a/_downloads/269ba3f01b65ddc538b452e13c4321ce/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/269ba3f01b65ddc538b452e13c4321ce/figure_axes_enter_leave.ipynb \ No newline at end of file diff --git a/_downloads/269bb8686ac8905d4247ec5f6ba23cd7/anchored_box04.py b/_downloads/269bb8686ac8905d4247ec5f6ba23cd7/anchored_box04.py deleted file mode 120000 index a3b19c8e002..00000000000 --- a/_downloads/269bb8686ac8905d4247ec5f6ba23cd7/anchored_box04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/269bb8686ac8905d4247ec5f6ba23cd7/anchored_box04.py \ No newline at end of file diff --git a/_downloads/26a1ab688a871871fa587201ab789e20/timeline.py b/_downloads/26a1ab688a871871fa587201ab789e20/timeline.py deleted file mode 120000 index f1025b7f63b..00000000000 --- a/_downloads/26a1ab688a871871fa587201ab789e20/timeline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/26a1ab688a871871fa587201ab789e20/timeline.py \ No newline at end of file diff --git a/_downloads/26ad5205c448e6759c358ba25c7d949a/artist_tests.py b/_downloads/26ad5205c448e6759c358ba25c7d949a/artist_tests.py deleted file mode 120000 index facc95f9274..00000000000 --- a/_downloads/26ad5205c448e6759c358ba25c7d949a/artist_tests.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/26ad5205c448e6759c358ba25c7d949a/artist_tests.py \ No newline at end of file diff --git a/_downloads/26c1a8dd065fdc9a1acc067f2c86fca4/log_test.ipynb b/_downloads/26c1a8dd065fdc9a1acc067f2c86fca4/log_test.ipynb deleted file mode 120000 index 975b6a0bbf2..00000000000 --- a/_downloads/26c1a8dd065fdc9a1acc067f2c86fca4/log_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/26c1a8dd065fdc9a1acc067f2c86fca4/log_test.ipynb \ No newline at end of file diff --git a/_downloads/26c80261419ab6a7bcf3318019ea575f/anchored_box04.ipynb b/_downloads/26c80261419ab6a7bcf3318019ea575f/anchored_box04.ipynb deleted file mode 120000 index 60da11a4972..00000000000 --- a/_downloads/26c80261419ab6a7bcf3318019ea575f/anchored_box04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/26c80261419ab6a7bcf3318019ea575f/anchored_box04.ipynb \ No newline at end of file diff --git a/_downloads/26c8e83164e20464128eee77d40958f5/demo_floating_axes.py b/_downloads/26c8e83164e20464128eee77d40958f5/demo_floating_axes.py deleted file mode 100644 index db133fcd89f..00000000000 --- a/_downloads/26c8e83164e20464128eee77d40958f5/demo_floating_axes.py +++ /dev/null @@ -1,160 +0,0 @@ -""" -===================================================== -:mod:`mpl_toolkits.axisartist.floating_axes` features -===================================================== - -Demonstration of features of the :mod:`.floating_axes` module: - -* Using `scatter` and `bar` with changing the shape of the plot. -* Using `GridHelperCurveLinear` to rotate the plot and set the plot boundary. -* Using `FloatingSubplot` to create a subplot using the return value from - `GridHelperCurveLinear`. -* Making a sector plot by adding more features to `GridHelperCurveLinear`. -""" - -from matplotlib.transforms import Affine2D -import mpl_toolkits.axisartist.floating_axes as floating_axes -import numpy as np -import mpl_toolkits.axisartist.angle_helper as angle_helper -from matplotlib.projections import PolarAxes -from mpl_toolkits.axisartist.grid_finder import (FixedLocator, MaxNLocator, - DictFormatter) -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def setup_axes1(fig, rect): - """ - A simple one. - """ - tr = Affine2D().scale(2, 1).rotate_deg(30) - - grid_helper = floating_axes.GridHelperCurveLinear( - tr, extremes=(-0.5, 3.5, 0, 4), - grid_locator1=MaxNLocator(nbins=4), - grid_locator2=MaxNLocator(nbins=4)) - - ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper) - fig.add_subplot(ax1) - - aux_ax = ax1.get_aux_axes(tr) - - return ax1, aux_ax - - -def setup_axes2(fig, rect): - """ - With custom locator and formatter. - Note that the extreme values are swapped. - """ - tr = PolarAxes.PolarTransform() - - pi = np.pi - angle_ticks = [(0, r"$0$"), - (.25*pi, r"$\frac{1}{4}\pi$"), - (.5*pi, r"$\frac{1}{2}\pi$")] - grid_locator1 = FixedLocator([v for v, s in angle_ticks]) - tick_formatter1 = DictFormatter(dict(angle_ticks)) - - grid_locator2 = MaxNLocator(2) - - grid_helper = floating_axes.GridHelperCurveLinear( - tr, extremes=(.5*pi, 0, 2, 1), - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1, - tick_formatter2=None) - - ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper) - fig.add_subplot(ax1) - - # create a parasite axes whose transData in RA, cz - aux_ax = ax1.get_aux_axes(tr) - - aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax - ax1.patch.zorder = 0.9 # but this has a side effect that the patch is - # drawn twice, and possibly over some other - # artists. So, we decrease the zorder a bit to - # prevent this. - - return ax1, aux_ax - - -def setup_axes3(fig, rect): - """ - Sometimes, things like axis_direction need to be adjusted. - """ - - # rotate a bit for better orientation - tr_rotate = Affine2D().translate(-95, 0) - - # scale degree to radians - tr_scale = Affine2D().scale(np.pi/180., 1.) - - tr = tr_rotate + tr_scale + PolarAxes.PolarTransform() - - grid_locator1 = angle_helper.LocatorHMS(4) - tick_formatter1 = angle_helper.FormatterHMS() - - grid_locator2 = MaxNLocator(3) - - # Specify theta limits in degrees - ra0, ra1 = 8.*15, 14.*15 - # Specify radial limits - cz0, cz1 = 0, 14000 - grid_helper = floating_axes.GridHelperCurveLinear( - tr, extremes=(ra0, ra1, cz0, cz1), - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1, - tick_formatter2=None) - - ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper) - fig.add_subplot(ax1) - - # adjust axis - ax1.axis["left"].set_axis_direction("bottom") - ax1.axis["right"].set_axis_direction("top") - - ax1.axis["bottom"].set_visible(False) - ax1.axis["top"].set_axis_direction("bottom") - ax1.axis["top"].toggle(ticklabels=True, label=True) - ax1.axis["top"].major_ticklabels.set_axis_direction("top") - ax1.axis["top"].label.set_axis_direction("top") - - ax1.axis["left"].label.set_text(r"cz [km$^{-1}$]") - ax1.axis["top"].label.set_text(r"$\alpha_{1950}$") - - # create a parasite axes whose transData in RA, cz - aux_ax = ax1.get_aux_axes(tr) - - aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax - ax1.patch.zorder = 0.9 # but this has a side effect that the patch is - # drawn twice, and possibly over some other - # artists. So, we decrease the zorder a bit to - # prevent this. - - return ax1, aux_ax - - -########################################################## -fig = plt.figure(figsize=(8, 4)) -fig.subplots_adjust(wspace=0.3, left=0.05, right=0.95) - -ax1, aux_ax1 = setup_axes1(fig, 131) -aux_ax1.bar([0, 1, 2, 3], [3, 2, 1, 3]) - -ax2, aux_ax2 = setup_axes2(fig, 132) -theta = np.random.rand(10)*.5*np.pi -radius = np.random.rand(10) + 1. -aux_ax2.scatter(theta, radius) - -ax3, aux_ax3 = setup_axes3(fig, 133) - -theta = (8 + np.random.rand(10)*(14 - 8))*15. # in degrees -radius = np.random.rand(10)*14000. -aux_ax3.scatter(theta, radius) - -plt.show() diff --git a/_downloads/26dd75d958753b0dc3d58b734bcb6c14/pyplot_two_subplots.py b/_downloads/26dd75d958753b0dc3d58b734bcb6c14/pyplot_two_subplots.py deleted file mode 120000 index 6054450dd09..00000000000 --- a/_downloads/26dd75d958753b0dc3d58b734bcb6c14/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/26dd75d958753b0dc3d58b734bcb6c14/pyplot_two_subplots.py \ No newline at end of file diff --git a/_downloads/26de97db41b3644f87b28dde8cae1d70/image_transparency_blend.ipynb b/_downloads/26de97db41b3644f87b28dde8cae1d70/image_transparency_blend.ipynb deleted file mode 120000 index 4a74c01d10c..00000000000 --- a/_downloads/26de97db41b3644f87b28dde8cae1d70/image_transparency_blend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/26de97db41b3644f87b28dde8cae1d70/image_transparency_blend.ipynb \ No newline at end of file diff --git a/_downloads/26e2714af601ebda28df72c882a2e384/simple_axes_divider3.ipynb b/_downloads/26e2714af601ebda28df72c882a2e384/simple_axes_divider3.ipynb deleted file mode 120000 index 2a77e4d0ed2..00000000000 --- a/_downloads/26e2714af601ebda28df72c882a2e384/simple_axes_divider3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/26e2714af601ebda28df72c882a2e384/simple_axes_divider3.ipynb \ No newline at end of file diff --git a/_downloads/26eb282906dcf4ad03493a83660dc263/polar_demo.ipynb b/_downloads/26eb282906dcf4ad03493a83660dc263/polar_demo.ipynb deleted file mode 100644 index 834dfc6c535..00000000000 --- a/_downloads/26eb282906dcf4ad03493a83660dc263/polar_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Polar Demo\n\n\nDemo of a line plot on a polar axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nr = np.arange(0, 2, 0.01)\ntheta = 2 * np.pi * r\n\nax = plt.subplot(111, projection='polar')\nax.plot(theta, r)\nax.set_rmax(2)\nax.set_rticks([0.5, 1, 1.5, 2]) # Less radial ticks\nax.set_rlabel_position(-22.5) # Move radial labels away from plotted line\nax.grid(True)\n\nax.set_title(\"A line plot on a polar axis\", va='bottom')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes\nmatplotlib.projections.polar.PolarAxes.set_rticks\nmatplotlib.projections.polar.PolarAxes.set_rmax\nmatplotlib.projections.polar.PolarAxes.set_rlabel_position" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/26f0a6c6d144618fe2415bff892c124c/surface3d_2.ipynb b/_downloads/26f0a6c6d144618fe2415bff892c124c/surface3d_2.ipynb deleted file mode 100644 index edeba149262..00000000000 --- a/_downloads/26f0a6c6d144618fe2415bff892c124c/surface3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n========================\n3D surface (solid color)\n========================\n\nDemonstrates a very basic plot of a 3D surface using a solid color.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Make data\nu = np.linspace(0, 2 * np.pi, 100)\nv = np.linspace(0, np.pi, 100)\nx = 10 * np.outer(np.cos(u), np.sin(v))\ny = 10 * np.outer(np.sin(u), np.sin(v))\nz = 10 * np.outer(np.ones(np.size(u)), np.cos(v))\n\n# Plot the surface\nax.plot_surface(x, y, z)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/26f42d80fa5e0747dd3d534272a38b68/pcolor_demo.ipynb b/_downloads/26f42d80fa5e0747dd3d534272a38b68/pcolor_demo.ipynb deleted file mode 100644 index 1e8c5442b9b..00000000000 --- a/_downloads/26f42d80fa5e0747dd3d534272a38b68/pcolor_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pcolor Demo\n\n\nGenerating images with :meth:`~.axes.Axes.pcolor`.\n\nPcolor allows you to generate 2-D image-style plots. Below we will show how\nto do so in Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.colors import LogNorm" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A simple pcolor demo\n--------------------\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Z = np.random.rand(6, 10)\n\nfig, (ax0, ax1) = plt.subplots(2, 1)\n\nc = ax0.pcolor(Z)\nax0.set_title('default: no edges')\n\nc = ax1.pcolor(Z, edgecolors='k', linewidths=4)\nax1.set_title('thick edges')\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Comparing pcolor with similar functions\n---------------------------------------\n\nDemonstrates similarities between :meth:`~.axes.Axes.pcolor`,\n:meth:`~.axes.Axes.pcolormesh`, :meth:`~.axes.Axes.imshow` and\n:meth:`~.axes.Axes.pcolorfast` for drawing quadrilateral grids.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# make these smaller to increase the resolution\ndx, dy = 0.15, 0.05\n\n# generate 2 2d grids for the x & y bounds\ny, x = np.mgrid[slice(-3, 3 + dy, dy),\n slice(-3, 3 + dx, dx)]\nz = (1 - x / 2. + x ** 5 + y ** 3) * np.exp(-x ** 2 - y ** 2)\n# x and y are bounds, so z should be the value *inside* those bounds.\n# Therefore, remove the last value from the z array.\nz = z[:-1, :-1]\nz_min, z_max = -np.abs(z).max(), np.abs(z).max()\n\nfig, axs = plt.subplots(2, 2)\n\nax = axs[0, 0]\nc = ax.pcolor(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max)\nax.set_title('pcolor')\nfig.colorbar(c, ax=ax)\n\nax = axs[0, 1]\nc = ax.pcolormesh(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max)\nax.set_title('pcolormesh')\nfig.colorbar(c, ax=ax)\n\nax = axs[1, 0]\nc = ax.imshow(z, cmap='RdBu', vmin=z_min, vmax=z_max,\n extent=[x.min(), x.max(), y.min(), y.max()],\n interpolation='nearest', origin='lower')\nax.set_title('image (nearest)')\nfig.colorbar(c, ax=ax)\n\nax = axs[1, 1]\nc = ax.pcolorfast(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max)\nax.set_title('pcolorfast')\nfig.colorbar(c, ax=ax)\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Pcolor with a log scale\n-----------------------\n\nThe following shows pcolor plots with a log scale.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out.\n# Needs to have z/colour axis on a log scale so we see both hump and spike.\n# linear scale only shows the spike.\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nZ = Z1 + 50 * Z2\n\nfig, (ax0, ax1) = plt.subplots(2, 1)\n\nc = ax0.pcolor(X, Y, Z,\n norm=LogNorm(vmin=Z.min(), vmax=Z.max()), cmap='PuBu_r')\nfig.colorbar(c, ax=ax0)\n\nc = ax1.pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(c, ax=ax1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pcolor\nmatplotlib.pyplot.pcolor\nmatplotlib.axes.Axes.pcolormesh\nmatplotlib.pyplot.pcolormesh\nmatplotlib.axes.Axes.pcolorfast\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.LogNorm" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/26f5b5c2451ffd373350d617a08d2e7d/custom_cmap.ipynb b/_downloads/26f5b5c2451ffd373350d617a08d2e7d/custom_cmap.ipynb deleted file mode 120000 index 984380bee57..00000000000 --- a/_downloads/26f5b5c2451ffd373350d617a08d2e7d/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/26f5b5c2451ffd373350d617a08d2e7d/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/26f898956cbcfdc3d321d69d2e7f424d/images.py b/_downloads/26f898956cbcfdc3d321d69d2e7f424d/images.py deleted file mode 120000 index 1413f84a84c..00000000000 --- a/_downloads/26f898956cbcfdc3d321d69d2e7f424d/images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/26f898956cbcfdc3d321d69d2e7f424d/images.py \ No newline at end of file diff --git a/_downloads/270c7ea3dfb96d8e4193dc9340f93fb4/violinplot.py b/_downloads/270c7ea3dfb96d8e4193dc9340f93fb4/violinplot.py deleted file mode 100644 index 19d80b494fb..00000000000 --- a/_downloads/270c7ea3dfb96d8e4193dc9340f93fb4/violinplot.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -================== -Violin plot basics -================== - -Violin plots are similar to histograms and box plots in that they show -an abstract representation of the probability distribution of the -sample. Rather than showing counts of data points that fall into bins -or order statistics, violin plots use kernel density estimation (KDE) to -compute an empirical distribution of the sample. That computation -is controlled by several parameters. This example demonstrates how to -modify the number of points at which the KDE is evaluated (``points``) -and how to modify the band-width of the KDE (``bw_method``). - -For more information on violin plots and KDE, the scikit-learn docs -have a great section: http://scikit-learn.org/stable/modules/density.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# fake data -fs = 10 # fontsize -pos = [1, 2, 4, 5, 7, 8] -data = [np.random.normal(0, std, size=100) for std in pos] - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6)) - -axes[0, 0].violinplot(data, pos, points=20, widths=0.3, - showmeans=True, showextrema=True, showmedians=True) -axes[0, 0].set_title('Custom violinplot 1', fontsize=fs) - -axes[0, 1].violinplot(data, pos, points=40, widths=0.5, - showmeans=True, showextrema=True, showmedians=True, - bw_method='silverman') -axes[0, 1].set_title('Custom violinplot 2', fontsize=fs) - -axes[0, 2].violinplot(data, pos, points=60, widths=0.7, showmeans=True, - showextrema=True, showmedians=True, bw_method=0.5) -axes[0, 2].set_title('Custom violinplot 3', fontsize=fs) - -axes[1, 0].violinplot(data, pos, points=80, vert=False, widths=0.7, - showmeans=True, showextrema=True, showmedians=True) -axes[1, 0].set_title('Custom violinplot 4', fontsize=fs) - -axes[1, 1].violinplot(data, pos, points=100, vert=False, widths=0.9, - showmeans=True, showextrema=True, showmedians=True, - bw_method='silverman') -axes[1, 1].set_title('Custom violinplot 5', fontsize=fs) - -axes[1, 2].violinplot(data, pos, points=200, vert=False, widths=1.1, - showmeans=True, showextrema=True, showmedians=True, - bw_method=0.5) -axes[1, 2].set_title('Custom violinplot 6', fontsize=fs) - -for ax in axes.flat: - ax.set_yticklabels([]) - -fig.suptitle("Violin Plotting Examples") -fig.subplots_adjust(hspace=0.4) -plt.show() diff --git a/_downloads/271dd693ed964053a00542e4f030c00b/fig_axes_labels_simple.py b/_downloads/271dd693ed964053a00542e4f030c00b/fig_axes_labels_simple.py deleted file mode 120000 index 28d4af99876..00000000000 --- a/_downloads/271dd693ed964053a00542e4f030c00b/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/271dd693ed964053a00542e4f030c00b/fig_axes_labels_simple.py \ No newline at end of file diff --git a/_downloads/2720d53afe1847a67df4cab73c055882/histogram_histtypes.py b/_downloads/2720d53afe1847a67df4cab73c055882/histogram_histtypes.py deleted file mode 120000 index f0b89e01cb9..00000000000 --- a/_downloads/2720d53afe1847a67df4cab73c055882/histogram_histtypes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2720d53afe1847a67df4cab73c055882/histogram_histtypes.py \ No newline at end of file diff --git a/_downloads/27223eec9a6b8844361367ecaa00328c/image_zcoord.py b/_downloads/27223eec9a6b8844361367ecaa00328c/image_zcoord.py deleted file mode 100644 index 3036bd59c7d..00000000000 --- a/_downloads/27223eec9a6b8844361367ecaa00328c/image_zcoord.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -================================== -Modifying the coordinate formatter -================================== - -Modify the coordinate formatter to report the image "z" -value of the nearest pixel given x and y. -This functionality is built in by default, but it -is still useful to show how to customize the -`~.axes.Axes.format_coord` function. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -X = 10*np.random.rand(5, 3) - -fig, ax = plt.subplots() -ax.imshow(X, interpolation='nearest') - -numrows, numcols = X.shape - - -def format_coord(x, y): - col = int(x + 0.5) - row = int(y + 0.5) - if col >= 0 and col < numcols and row >= 0 and row < numrows: - z = X[row, col] - return 'x=%1.4f, y=%1.4f, z=%1.4f' % (x, y, z) - else: - return 'x=%1.4f, y=%1.4f' % (x, y) - -ax.format_coord = format_coord -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.format_coord -matplotlib.axes.Axes.imshow diff --git a/_downloads/2723827da48c33ed31980089a08d00ec/spy_demos.py b/_downloads/2723827da48c33ed31980089a08d00ec/spy_demos.py deleted file mode 120000 index b88726d35a7..00000000000 --- a/_downloads/2723827da48c33ed31980089a08d00ec/spy_demos.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2723827da48c33ed31980089a08d00ec/spy_demos.py \ No newline at end of file diff --git a/_downloads/272ce8a30c319fdce215233f28bcf2aa/whats_new_98_4_legend.py b/_downloads/272ce8a30c319fdce215233f28bcf2aa/whats_new_98_4_legend.py deleted file mode 120000 index 5ca0b92e8ae..00000000000 --- a/_downloads/272ce8a30c319fdce215233f28bcf2aa/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/272ce8a30c319fdce215233f28bcf2aa/whats_new_98_4_legend.py \ No newline at end of file diff --git a/_downloads/2745425b983648ea0a1cad8da0ed58a6/filled_step.ipynb b/_downloads/2745425b983648ea0a1cad8da0ed58a6/filled_step.ipynb deleted file mode 120000 index 59c1cd901fd..00000000000 --- a/_downloads/2745425b983648ea0a1cad8da0ed58a6/filled_step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2745425b983648ea0a1cad8da0ed58a6/filled_step.ipynb \ No newline at end of file diff --git a/_downloads/27504e85ccf1b28ab220f2cd1bd4c9ee/whats_new_99_spines.ipynb b/_downloads/27504e85ccf1b28ab220f2cd1bd4c9ee/whats_new_99_spines.ipynb deleted file mode 100644 index 4ecedfb4b4b..00000000000 --- a/_downloads/27504e85ccf1b28ab220f2cd1bd4c9ee/whats_new_99_spines.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================\nWhats New 0.99 Spines\n=====================\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef adjust_spines(ax,spines):\n for loc, spine in ax.spines.items():\n if loc in spines:\n spine.set_position(('outward', 10)) # outward by 10 points\n else:\n spine.set_color('none') # don't draw spine\n\n # turn off ticks where there is no spine\n if 'left' in spines:\n ax.yaxis.set_ticks_position('left')\n else:\n # no yaxis ticks\n ax.yaxis.set_ticks([])\n\n if 'bottom' in spines:\n ax.xaxis.set_ticks_position('bottom')\n else:\n # no xaxis ticks\n ax.xaxis.set_ticks([])\n\nfig = plt.figure()\n\nx = np.linspace(0,2*np.pi,100)\ny = 2*np.sin(x)\n\nax = fig.add_subplot(2,2,1)\nax.plot(x,y)\nadjust_spines(ax,['left'])\n\nax = fig.add_subplot(2,2,2)\nax.plot(x,y)\nadjust_spines(ax,[])\n\nax = fig.add_subplot(2,2,3)\nax.plot(x,y)\nadjust_spines(ax,['left','bottom'])\n\nax = fig.add_subplot(2,2,4)\nax.plot(x,y)\nadjust_spines(ax,['bottom'])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axis.Axis.set_ticks\nmatplotlib.axis.XAxis.set_ticks_position\nmatplotlib.axis.YAxis.set_ticks_position\nmatplotlib.spines\nmatplotlib.spines.Spine\nmatplotlib.spines.Spine.set_color\nmatplotlib.spines.Spine.set_position" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2756942ca44063c93fa7fbec9ec083e9/power_norm.ipynb b/_downloads/2756942ca44063c93fa7fbec9ec083e9/power_norm.ipynb deleted file mode 100644 index 96a35f83b05..00000000000 --- a/_downloads/2756942ca44063c93fa7fbec9ec083e9/power_norm.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Exploring normalizations\n\n\nVarious normalization on a multivariate normal distribution.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.colors as mcolors\nimport numpy as np\nfrom numpy.random import multivariate_normal\n\ndata = np.vstack([\n multivariate_normal([10, 10], [[3, 2], [2, 3]], size=100000),\n multivariate_normal([30, 20], [[2, 3], [1, 3]], size=1000)\n])\n\ngammas = [0.8, 0.5, 0.3]\n\nfig, axes = plt.subplots(nrows=2, ncols=2)\n\naxes[0, 0].set_title('Linear normalization')\naxes[0, 0].hist2d(data[:, 0], data[:, 1], bins=100)\n\nfor ax, gamma in zip(axes.flat[1:], gammas):\n ax.set_title(r'Power law $(\\gamma=%1.1f)$' % gamma)\n ax.hist2d(data[:, 0], data[:, 1],\n bins=100, norm=mcolors.PowerNorm(gamma))\n\nfig.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.colors.PowerNorm\nmatplotlib.axes.Axes.hist2d\nmatplotlib.pyplot.hist2d" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/27572c566e7b355ba2a5835ded22b66e/polar_scatter.py b/_downloads/27572c566e7b355ba2a5835ded22b66e/polar_scatter.py deleted file mode 120000 index e6cb2d83b42..00000000000 --- a/_downloads/27572c566e7b355ba2a5835ded22b66e/polar_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/27572c566e7b355ba2a5835ded22b66e/polar_scatter.py \ No newline at end of file diff --git a/_downloads/2767736130105fde587c3ee4b911b9e1/compound_path.py b/_downloads/2767736130105fde587c3ee4b911b9e1/compound_path.py deleted file mode 120000 index 4e1a053c0f3..00000000000 --- a/_downloads/2767736130105fde587c3ee4b911b9e1/compound_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2767736130105fde587c3ee4b911b9e1/compound_path.py \ No newline at end of file diff --git a/_downloads/276c26a4f91c01d7734be1ecf652b53b/system_monitor.ipynb b/_downloads/276c26a4f91c01d7734be1ecf652b53b/system_monitor.ipynb deleted file mode 120000 index a6ece7c1083..00000000000 --- a/_downloads/276c26a4f91c01d7734be1ecf652b53b/system_monitor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/276c26a4f91c01d7734be1ecf652b53b/system_monitor.ipynb \ No newline at end of file diff --git a/_downloads/276cba38067f5e8f94d0c992c96c485e/image_masked.py b/_downloads/276cba38067f5e8f94d0c992c96c485e/image_masked.py deleted file mode 100644 index 15a78f7123c..00000000000 --- a/_downloads/276cba38067f5e8f94d0c992c96c485e/image_masked.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -============ -Image Masked -============ - -imshow with masked array input and out-of-range colors. - -The second subplot illustrates the use of BoundaryNorm to -get a filled contour effect. -""" -from copy import copy - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -# compute some interesting data -x0, x1 = -5, 5 -y0, y1 = -3, 3 -x = np.linspace(x0, x1, 500) -y = np.linspace(y0, y1, 500) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -# Set up a colormap: -# use copy so that we do not mutate the global colormap instance -palette = copy(plt.cm.gray) -palette.set_over('r', 1.0) -palette.set_under('g', 1.0) -palette.set_bad('b', 1.0) -# Alternatively, we could use -# palette.set_bad(alpha = 0.0) -# to make the bad region transparent. This is the default. -# If you comment out all the palette.set* lines, you will see -# all the defaults; under and over will be colored with the -# first and last colors in the palette, respectively. -Zm = np.ma.masked_where(Z > 1.2, Z) - -# By setting vmin and vmax in the norm, we establish the -# range to which the regular palette color scale is applied. -# Anything above that range is colored based on palette.set_over, etc. - -# set up the Axes objects -fig, (ax1, ax2) = plt.subplots(nrows=2, figsize=(6, 5.4)) - -# plot using 'continuous' color map -im = ax1.imshow(Zm, interpolation='bilinear', - cmap=palette, - norm=colors.Normalize(vmin=-1.0, vmax=1.0), - aspect='auto', - origin='lower', - extent=[x0, x1, y0, y1]) -ax1.set_title('Green=low, Red=high, Blue=masked') -cbar = fig.colorbar(im, extend='both', shrink=0.9, ax=ax1) -cbar.set_label('uniform') -for ticklabel in ax1.xaxis.get_ticklabels(): - ticklabel.set_visible(False) - -# Plot using a small number of colors, with unevenly spaced boundaries. -im = ax2.imshow(Zm, interpolation='nearest', - cmap=palette, - norm=colors.BoundaryNorm([-1, -0.5, -0.2, 0, 0.2, 0.5, 1], - ncolors=palette.N), - aspect='auto', - origin='lower', - extent=[x0, x1, y0, y1]) -ax2.set_title('With BoundaryNorm') -cbar = fig.colorbar(im, extend='both', spacing='proportional', - shrink=0.9, ax=ax2) -cbar.set_label('proportional') - -fig.suptitle('imshow, with out-of-range and masked data') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.BoundaryNorm -matplotlib.colorbar.ColorbarBase.set_label diff --git a/_downloads/278515d9c2a629ad4012ff59a0296a89/mixed_subplots.ipynb b/_downloads/278515d9c2a629ad4012ff59a0296a89/mixed_subplots.ipynb deleted file mode 120000 index b827a3d2cab..00000000000 --- a/_downloads/278515d9c2a629ad4012ff59a0296a89/mixed_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/278515d9c2a629ad4012ff59a0296a89/mixed_subplots.ipynb \ No newline at end of file diff --git a/_downloads/2786bd84bcc7443ba693e931f96c0eff/customize_rc.ipynb b/_downloads/2786bd84bcc7443ba693e931f96c0eff/customize_rc.ipynb deleted file mode 120000 index 1628f74168d..00000000000 --- a/_downloads/2786bd84bcc7443ba693e931f96c0eff/customize_rc.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2786bd84bcc7443ba693e931f96c0eff/customize_rc.ipynb \ No newline at end of file diff --git a/_downloads/2790d17276df153bae7b45dbc62e02fc/animated_histogram.py b/_downloads/2790d17276df153bae7b45dbc62e02fc/animated_histogram.py deleted file mode 100644 index 2556708dd7e..00000000000 --- a/_downloads/2790d17276df153bae7b45dbc62e02fc/animated_histogram.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -================== -Animated histogram -================== - -Use a path patch to draw a bunch of rectangles for an animated histogram. -""" - -import numpy as np - -import matplotlib.pyplot as plt -import matplotlib.patches as patches -import matplotlib.path as path -import matplotlib.animation as animation - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# histogram our data with numpy -data = np.random.randn(1000) -n, bins = np.histogram(data, 100) - -# get the corners of the rectangles for the histogram -left = np.array(bins[:-1]) -right = np.array(bins[1:]) -bottom = np.zeros(len(left)) -top = bottom + n -nrects = len(left) - -############################################################################### -# Here comes the tricky part -- we have to set up the vertex and path codes -# arrays using ``plt.Path.MOVETO``, ``plt.Path.LINETO`` and -# ``plt.Path.CLOSEPOLY`` for each rect. -# -# * We need 1 ``MOVETO`` per rectangle, which sets the initial point. -# * We need 3 ``LINETO``'s, which tell Matplotlib to draw lines from -# vertex 1 to vertex 2, v2 to v3, and v3 to v4. -# * We then need one ``CLOSEPOLY`` which tells Matplotlib to draw a line from -# the v4 to our initial vertex (the ``MOVETO`` vertex), in order to close the -# polygon. -# -# .. note:: -# -# The vertex for ``CLOSEPOLY`` is ignored, but we still need a placeholder -# in the ``verts`` array to keep the codes aligned with the vertices. -nverts = nrects * (1 + 3 + 1) -verts = np.zeros((nverts, 2)) -codes = np.ones(nverts, int) * path.Path.LINETO -codes[0::5] = path.Path.MOVETO -codes[4::5] = path.Path.CLOSEPOLY -verts[0::5, 0] = left -verts[0::5, 1] = bottom -verts[1::5, 0] = left -verts[1::5, 1] = top -verts[2::5, 0] = right -verts[2::5, 1] = top -verts[3::5, 0] = right -verts[3::5, 1] = bottom - -############################################################################### -# To animate the histogram, we need an ``animate`` function, which generates -# a random set of numbers and updates the locations of the vertices for the -# histogram (in this case, only the heights of each rectangle). ``patch`` will -# eventually be a ``Patch`` object. -patch = None - - -def animate(i): - # simulate new data coming in - data = np.random.randn(1000) - n, bins = np.histogram(data, 100) - top = bottom + n - verts[1::5, 1] = top - verts[2::5, 1] = top - return [patch, ] - -############################################################################### -# And now we build the `Path` and `Patch` instances for the histogram using -# our vertices and codes. We add the patch to the `Axes` instance, and setup -# the `FuncAnimation` with our animate function. -fig, ax = plt.subplots() -barpath = path.Path(verts, codes) -patch = patches.PathPatch( - barpath, facecolor='green', edgecolor='yellow', alpha=0.5) -ax.add_patch(patch) - -ax.set_xlim(left[0], right[-1]) -ax.set_ylim(bottom.min(), top.max()) - -ani = animation.FuncAnimation(fig, animate, 100, repeat=False, blit=True) -plt.show() diff --git a/_downloads/27c3fe73d22fef773cb5165758f0315b/pgf_texsystem.py b/_downloads/27c3fe73d22fef773cb5165758f0315b/pgf_texsystem.py deleted file mode 120000 index e28232d77a1..00000000000 --- a/_downloads/27c3fe73d22fef773cb5165758f0315b/pgf_texsystem.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/27c3fe73d22fef773cb5165758f0315b/pgf_texsystem.py \ No newline at end of file diff --git a/_downloads/27c4a2e603153cf2d938a6e85ec3e133/errorbar_limits_simple.py b/_downloads/27c4a2e603153cf2d938a6e85ec3e133/errorbar_limits_simple.py deleted file mode 120000 index 16901fefc44..00000000000 --- a/_downloads/27c4a2e603153cf2d938a6e85ec3e133/errorbar_limits_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/27c4a2e603153cf2d938a6e85ec3e133/errorbar_limits_simple.py \ No newline at end of file diff --git a/_downloads/27e4d6e7ab5e71de778f086b49ccf153/simple_axisartist1.ipynb b/_downloads/27e4d6e7ab5e71de778f086b49ccf153/simple_axisartist1.ipynb deleted file mode 100644 index 5b13039c767..00000000000 --- a/_downloads/27e4d6e7ab5e71de778f086b49ccf153/simple_axisartist1.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisartist1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as AA\n\nfig = plt.figure()\nfig.subplots_adjust(right=0.85)\nax = AA.Subplot(fig, 1, 1, 1)\nfig.add_subplot(ax)\n\n# make some axis invisible\nax.axis[\"bottom\", \"top\", \"right\"].set_visible(False)\n\n# make an new axis along the first axis axis (x-axis) which pass\n# through y=0.\nax.axis[\"y=0\"] = ax.new_floating_axis(nth_coord=0, value=0,\n axis_direction=\"bottom\")\nax.axis[\"y=0\"].toggle(all=True)\nax.axis[\"y=0\"].label.set_text(\"y = 0\")\n\nax.set_ylim(-2, 4)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/27ee9dee23ed55773802b5e9dc502f3e/geo_demo.ipynb b/_downloads/27ee9dee23ed55773802b5e9dc502f3e/geo_demo.ipynb deleted file mode 120000 index 8d3fe13e7c1..00000000000 --- a/_downloads/27ee9dee23ed55773802b5e9dc502f3e/geo_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/27ee9dee23ed55773802b5e9dc502f3e/geo_demo.ipynb \ No newline at end of file diff --git a/_downloads/27efbe0ba3d7a6ab8f824add7e7bc774/quiver.ipynb b/_downloads/27efbe0ba3d7a6ab8f824add7e7bc774/quiver.ipynb deleted file mode 120000 index 14edc9d3725..00000000000 --- a/_downloads/27efbe0ba3d7a6ab8f824add7e7bc774/quiver.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/27efbe0ba3d7a6ab8f824add7e7bc774/quiver.ipynb \ No newline at end of file diff --git a/_downloads/27fa2b1dc910df7b51578461589ab026/demo_gridspec01.py b/_downloads/27fa2b1dc910df7b51578461589ab026/demo_gridspec01.py deleted file mode 100644 index 404fe771b6e..00000000000 --- a/_downloads/27fa2b1dc910df7b51578461589ab026/demo_gridspec01.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -================= -subplot2grid demo -================= - -This example demonstrates the use of `plt.subplot2grid` to generate subplots. -Using `GridSpec`, as demonstrated in :doc:`/gallery/userdemo/demo_gridspec03` -is generally preferred. -""" - -import matplotlib.pyplot as plt - - -def annotate_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - - -fig = plt.figure() -ax1 = plt.subplot2grid((3, 3), (0, 0), colspan=3) -ax2 = plt.subplot2grid((3, 3), (1, 0), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) -ax4 = plt.subplot2grid((3, 3), (2, 0)) -ax5 = plt.subplot2grid((3, 3), (2, 1)) - -annotate_axes(fig) - -plt.show() diff --git a/_downloads/280162fd457e9a0e7b346d9e88e8e6f5/keyword_plotting.ipynb b/_downloads/280162fd457e9a0e7b346d9e88e8e6f5/keyword_plotting.ipynb deleted file mode 120000 index 61bc342fc59..00000000000 --- a/_downloads/280162fd457e9a0e7b346d9e88e8e6f5/keyword_plotting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/280162fd457e9a0e7b346d9e88e8e6f5/keyword_plotting.ipynb \ No newline at end of file diff --git a/_downloads/28023a9b4aab6715236156f86ff44a74/pong_sgskip.py b/_downloads/28023a9b4aab6715236156f86ff44a74/pong_sgskip.py deleted file mode 120000 index a9a158da207..00000000000 --- a/_downloads/28023a9b4aab6715236156f86ff44a74/pong_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/28023a9b4aab6715236156f86ff44a74/pong_sgskip.py \ No newline at end of file diff --git a/_downloads/280a0f2462061a897df70a418466c112/transoffset.ipynb b/_downloads/280a0f2462061a897df70a418466c112/transoffset.ipynb deleted file mode 120000 index 7c606582f13..00000000000 --- a/_downloads/280a0f2462061a897df70a418466c112/transoffset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/280a0f2462061a897df70a418466c112/transoffset.ipynb \ No newline at end of file diff --git a/_downloads/280feb2f6cfa08a2b6045cb230e68b46/fancytextbox_demo.py b/_downloads/280feb2f6cfa08a2b6045cb230e68b46/fancytextbox_demo.py deleted file mode 120000 index 40bcfb1d027..00000000000 --- a/_downloads/280feb2f6cfa08a2b6045cb230e68b46/fancytextbox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/280feb2f6cfa08a2b6045cb230e68b46/fancytextbox_demo.py \ No newline at end of file diff --git a/_downloads/2813dba5ed32473e8fdb82af03eac3d6/mathtext_demo.py b/_downloads/2813dba5ed32473e8fdb82af03eac3d6/mathtext_demo.py deleted file mode 120000 index aad9cb4750b..00000000000 --- a/_downloads/2813dba5ed32473e8fdb82af03eac3d6/mathtext_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2813dba5ed32473e8fdb82af03eac3d6/mathtext_demo.py \ No newline at end of file diff --git a/_downloads/281415fde1799150b37759b596e5f3b8/tight_layout_guide.ipynb b/_downloads/281415fde1799150b37759b596e5f3b8/tight_layout_guide.ipynb deleted file mode 120000 index 8d2d1bbce5d..00000000000 --- a/_downloads/281415fde1799150b37759b596e5f3b8/tight_layout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/281415fde1799150b37759b596e5f3b8/tight_layout_guide.ipynb \ No newline at end of file diff --git a/_downloads/281ae00407df8a9c0b793ce3c97a466e/pyplot_text.py b/_downloads/281ae00407df8a9c0b793ce3c97a466e/pyplot_text.py deleted file mode 120000 index 03357382e06..00000000000 --- a/_downloads/281ae00407df8a9c0b793ce3c97a466e/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/281ae00407df8a9c0b793ce3c97a466e/pyplot_text.py \ No newline at end of file diff --git a/_downloads/281c20cef2f2a742284015cda38ce27d/slider_demo.py b/_downloads/281c20cef2f2a742284015cda38ce27d/slider_demo.py deleted file mode 100644 index 40a1f1c9d52..00000000000 --- a/_downloads/281c20cef2f2a742284015cda38ce27d/slider_demo.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -=========== -Slider Demo -=========== - -Using the slider widget to control visual properties of your plot. - -In this example, a slider is used to choose the frequency of a sine -wave. You can control many continuously-varying properties of your plot in -this way. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import Slider, Button, RadioButtons - -fig, ax = plt.subplots() -plt.subplots_adjust(left=0.25, bottom=0.25) -t = np.arange(0.0, 1.0, 0.001) -a0 = 5 -f0 = 3 -delta_f = 5.0 -s = a0 * np.sin(2 * np.pi * f0 * t) -l, = plt.plot(t, s, lw=2) -ax.margins(x=0) - -axcolor = 'lightgoldenrodyellow' -axfreq = plt.axes([0.25, 0.1, 0.65, 0.03], facecolor=axcolor) -axamp = plt.axes([0.25, 0.15, 0.65, 0.03], facecolor=axcolor) - -sfreq = Slider(axfreq, 'Freq', 0.1, 30.0, valinit=f0, valstep=delta_f) -samp = Slider(axamp, 'Amp', 0.1, 10.0, valinit=a0) - - -def update(val): - amp = samp.val - freq = sfreq.val - l.set_ydata(amp*np.sin(2*np.pi*freq*t)) - fig.canvas.draw_idle() - - -sfreq.on_changed(update) -samp.on_changed(update) - -resetax = plt.axes([0.8, 0.025, 0.1, 0.04]) -button = Button(resetax, 'Reset', color=axcolor, hovercolor='0.975') - - -def reset(event): - sfreq.reset() - samp.reset() -button.on_clicked(reset) - -rax = plt.axes([0.025, 0.5, 0.15, 0.15], facecolor=axcolor) -radio = RadioButtons(rax, ('red', 'blue', 'green'), active=0) - - -def colorfunc(label): - l.set_color(label) - fig.canvas.draw_idle() -radio.on_clicked(colorfunc) - -plt.show() diff --git a/_downloads/28343cc9ab9ad6d0cb1a85db1c78a548/colormap_reference.ipynb b/_downloads/28343cc9ab9ad6d0cb1a85db1c78a548/colormap_reference.ipynb deleted file mode 120000 index 147f3f36d46..00000000000 --- a/_downloads/28343cc9ab9ad6d0cb1a85db1c78a548/colormap_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/28343cc9ab9ad6d0cb1a85db1c78a548/colormap_reference.ipynb \ No newline at end of file diff --git a/_downloads/283db1124cbb3f4175f176ab37f6667a/color_cycle_default.py b/_downloads/283db1124cbb3f4175f176ab37f6667a/color_cycle_default.py deleted file mode 100644 index 8de0048b54a..00000000000 --- a/_downloads/283db1124cbb3f4175f176ab37f6667a/color_cycle_default.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -==================================== -Colors in the default property cycle -==================================== - -Display the colors from the default prop_cycle, which is obtained from the -:doc:`rc parameters`. -""" -import numpy as np -import matplotlib.pyplot as plt - - -prop_cycle = plt.rcParams['axes.prop_cycle'] -colors = prop_cycle.by_key()['color'] - -lwbase = plt.rcParams['lines.linewidth'] -thin = lwbase / 2 -thick = lwbase * 3 - -fig, axs = plt.subplots(nrows=2, ncols=2, sharex=True, sharey=True) -for icol in range(2): - if icol == 0: - lwx, lwy = thin, lwbase - else: - lwx, lwy = lwbase, thick - for irow in range(2): - for i, color in enumerate(colors): - axs[irow, icol].axhline(i, color=color, lw=lwx) - axs[irow, icol].axvline(i, color=color, lw=lwy) - - axs[1, icol].set_facecolor('k') - axs[1, icol].xaxis.set_ticks(np.arange(0, 10, 2)) - axs[0, icol].set_title('line widths (pts): %g, %g' % (lwx, lwy), - fontsize='medium') - -for irow in range(2): - axs[irow, 0].yaxis.set_ticks(np.arange(0, 10, 2)) - -fig.suptitle('Colors in the default prop_cycle', fontsize='large') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.axhline -matplotlib.axes.Axes.axvline -matplotlib.pyplot.axhline -matplotlib.pyplot.axvline -matplotlib.axes.Axes.set_facecolor -matplotlib.figure.Figure.suptitle diff --git a/_downloads/283dbda270fba3fb180452727951bbc0/demo_axes_divider.ipynb b/_downloads/283dbda270fba3fb180452727951bbc0/demo_axes_divider.ipynb deleted file mode 120000 index d48d653d116..00000000000 --- a/_downloads/283dbda270fba3fb180452727951bbc0/demo_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/283dbda270fba3fb180452727951bbc0/demo_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/2850522401ae7de8b9a3cf1634811c1f/pgf_preamble_sgskip.py b/_downloads/2850522401ae7de8b9a3cf1634811c1f/pgf_preamble_sgskip.py deleted file mode 100644 index eccdefa0d6e..00000000000 --- a/_downloads/2850522401ae7de8b9a3cf1634811c1f/pgf_preamble_sgskip.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============ -Pgf Preamble -============ - -""" - -import matplotlib as mpl -mpl.use("pgf") -import matplotlib.pyplot as plt -plt.rcParams.update({ - "font.family": "serif", # use serif/main font for text elements - "text.usetex": True, # use inline math for ticks - "pgf.rcfonts": False, # don't setup fonts from rc parameters - "pgf.preamble": [ - "\\usepackage{units}", # load additional packages - "\\usepackage{metalogo}", - "\\usepackage{unicode-math}", # unicode math setup - r"\setmathfont{xits-math.otf}", - r"\setmainfont{DejaVu Serif}", # serif font via preamble - ] -}) - -plt.figure(figsize=(4.5, 2.5)) -plt.plot(range(5)) -plt.xlabel("unicode text: я, ψ, €, ü, \\unitfrac[10]{°}{µm}") -plt.ylabel("\\XeLaTeX") -plt.legend(["unicode math: $λ=∑_i^∞ μ_i^2$"]) -plt.tight_layout(.5) - -plt.savefig("pgf_preamble.pdf") -plt.savefig("pgf_preamble.png") diff --git a/_downloads/2857bb158c97a310195d43954528d295/pyplot_formatstr.py b/_downloads/2857bb158c97a310195d43954528d295/pyplot_formatstr.py deleted file mode 120000 index 3ecf3d4e37d..00000000000 --- a/_downloads/2857bb158c97a310195d43954528d295/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2857bb158c97a310195d43954528d295/pyplot_formatstr.py \ No newline at end of file diff --git a/_downloads/285943856878325a641ec32fdb87d071/buttons.ipynb b/_downloads/285943856878325a641ec32fdb87d071/buttons.ipynb deleted file mode 100644 index 3a5af04070c..00000000000 --- a/_downloads/285943856878325a641ec32fdb87d071/buttons.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Buttons\n\n\nConstructing a simple button GUI to modify a sine wave.\n\nThe ``next`` and ``previous`` button widget helps visualize the wave with\nnew frequencies.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import Button\n\nfreqs = np.arange(2, 20, 3)\n\nfig, ax = plt.subplots()\nplt.subplots_adjust(bottom=0.2)\nt = np.arange(0.0, 1.0, 0.001)\ns = np.sin(2*np.pi*freqs[0]*t)\nl, = plt.plot(t, s, lw=2)\n\n\nclass Index(object):\n ind = 0\n\n def next(self, event):\n self.ind += 1\n i = self.ind % len(freqs)\n ydata = np.sin(2*np.pi*freqs[i]*t)\n l.set_ydata(ydata)\n plt.draw()\n\n def prev(self, event):\n self.ind -= 1\n i = self.ind % len(freqs)\n ydata = np.sin(2*np.pi*freqs[i]*t)\n l.set_ydata(ydata)\n plt.draw()\n\ncallback = Index()\naxprev = plt.axes([0.7, 0.05, 0.1, 0.075])\naxnext = plt.axes([0.81, 0.05, 0.1, 0.075])\nbnext = Button(axnext, 'Next')\nbnext.on_clicked(callback.next)\nbprev = Button(axprev, 'Previous')\nbprev.on_clicked(callback.prev)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2859bd0fe146222be8dc858acda329c7/boxplot_demo_pyplot.ipynb b/_downloads/2859bd0fe146222be8dc858acda329c7/boxplot_demo_pyplot.ipynb deleted file mode 100644 index 12d5e87dbe5..00000000000 --- a/_downloads/2859bd0fe146222be8dc858acda329c7/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1,174 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Boxplot Demo\n\n\nExample boxplot code\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# fake up some data\nspread = np.random.rand(50) * 100\ncenter = np.ones(25) * 50\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\ndata = np.concatenate((spread, center, flier_high, flier_low))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_title('Basic Plot')\nax1.boxplot(data)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_title('Notched boxes')\nax2.boxplot(data, notch=True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "green_diamond = dict(markerfacecolor='g', marker='D')\nfig3, ax3 = plt.subplots()\nax3.set_title('Changed Outlier Symbols')\nax3.boxplot(data, flierprops=green_diamond)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig4, ax4 = plt.subplots()\nax4.set_title('Hide Outlier Points')\nax4.boxplot(data, showfliers=False)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "red_square = dict(markerfacecolor='r', marker='s')\nfig5, ax5 = plt.subplots()\nax5.set_title('Horizontal Boxes')\nax5.boxplot(data, vert=False, flierprops=red_square)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig6, ax6 = plt.subplots()\nax6.set_title('Shorter Whisker Length')\nax6.boxplot(data, flierprops=red_square, vert=False, whis=0.75)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Fake up some more data\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "spread = np.random.rand(50) * 100\ncenter = np.ones(25) * 40\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\nd2 = np.concatenate((spread, center, flier_high, flier_low))\ndata.shape = (-1, 1)\nd2.shape = (-1, 1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Making a 2-D array only works if all the columns are the\nsame length. If they are not, then use a list instead.\nThis is actually more efficient because boxplot converts\na 2-D array into a list of vectors internally anyway.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "data = [data, d2, d2[::2,0]]\nfig7, ax7 = plt.subplots()\nax7.set_title('Multiple Samples with Different sizes')\nax7.boxplot(data)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.boxplot\nmatplotlib.pyplot.boxplot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/285a3f69d38bb6272cce5ccd17e56b4f/simple_axis_direction01.py b/_downloads/285a3f69d38bb6272cce5ccd17e56b4f/simple_axis_direction01.py deleted file mode 100644 index 79d074b2d86..00000000000 --- a/_downloads/285a3f69d38bb6272cce5ccd17e56b4f/simple_axis_direction01.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -======================= -Simple Axis Direction01 -======================= - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - -fig = plt.figure(figsize=(4, 2.5)) -ax1 = fig.add_subplot(axisartist.Subplot(fig, "111")) -fig.subplots_adjust(right=0.8) - -ax1.axis["left"].major_ticklabels.set_axis_direction("top") -ax1.axis["left"].label.set_text("Label") - -ax1.axis["right"].label.set_visible(True) -ax1.axis["right"].label.set_text("Label") -ax1.axis["right"].label.set_axis_direction("left") - -plt.show() diff --git a/_downloads/285cf9001b13973e75842eb0b810371f/masked_demo.py b/_downloads/285cf9001b13973e75842eb0b810371f/masked_demo.py deleted file mode 120000 index 68378598651..00000000000 --- a/_downloads/285cf9001b13973e75842eb0b810371f/masked_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/285cf9001b13973e75842eb0b810371f/masked_demo.py \ No newline at end of file diff --git a/_downloads/285ebd0895f01abd16120616f765e89b/advanced_hillshading.ipynb b/_downloads/285ebd0895f01abd16120616f765e89b/advanced_hillshading.ipynb deleted file mode 100644 index c7d7d26a1ee..00000000000 --- a/_downloads/285ebd0895f01abd16120616f765e89b/advanced_hillshading.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hillshading\n\n\nDemonstrates a few common tricks with shaded plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import LightSource, Normalize\n\n\ndef display_colorbar():\n \"\"\"Display a correct numeric colorbar for a shaded plot.\"\"\"\n y, x = np.mgrid[-4:2:200j, -4:2:200j]\n z = 10 * np.cos(x**2 + y**2)\n\n cmap = plt.cm.copper\n ls = LightSource(315, 45)\n rgb = ls.shade(z, cmap)\n\n fig, ax = plt.subplots()\n ax.imshow(rgb, interpolation='bilinear')\n\n # Use a proxy artist for the colorbar...\n im = ax.imshow(z, cmap=cmap)\n im.remove()\n fig.colorbar(im)\n\n ax.set_title('Using a colorbar with a shaded plot', size='x-large')\n\n\ndef avoid_outliers():\n \"\"\"Use a custom norm to control the displayed z-range of a shaded plot.\"\"\"\n y, x = np.mgrid[-4:2:200j, -4:2:200j]\n z = 10 * np.cos(x**2 + y**2)\n\n # Add some outliers...\n z[100, 105] = 2000\n z[120, 110] = -9000\n\n ls = LightSource(315, 45)\n fig, (ax1, ax2) = plt.subplots(ncols=2, figsize=(8, 4.5))\n\n rgb = ls.shade(z, plt.cm.copper)\n ax1.imshow(rgb, interpolation='bilinear')\n ax1.set_title('Full range of data')\n\n rgb = ls.shade(z, plt.cm.copper, vmin=-10, vmax=10)\n ax2.imshow(rgb, interpolation='bilinear')\n ax2.set_title('Manually set range')\n\n fig.suptitle('Avoiding Outliers in Shaded Plots', size='x-large')\n\n\ndef shade_other_data():\n \"\"\"Demonstrates displaying different variables through shade and color.\"\"\"\n y, x = np.mgrid[-4:2:200j, -4:2:200j]\n z1 = np.sin(x**2) # Data to hillshade\n z2 = np.cos(x**2 + y**2) # Data to color\n\n norm = Normalize(z2.min(), z2.max())\n cmap = plt.cm.RdBu\n\n ls = LightSource(315, 45)\n rgb = ls.shade_rgb(cmap(norm(z2)), z1)\n\n fig, ax = plt.subplots()\n ax.imshow(rgb, interpolation='bilinear')\n ax.set_title('Shade by one variable, color by another', size='x-large')\n\ndisplay_colorbar()\navoid_outliers()\nshade_other_data()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2862a5e6c88033beba5c7c46836f0d46/contourf_hatching.ipynb b/_downloads/2862a5e6c88033beba5c7c46836f0d46/contourf_hatching.ipynb deleted file mode 120000 index b434cf3c34d..00000000000 --- a/_downloads/2862a5e6c88033beba5c7c46836f0d46/contourf_hatching.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2862a5e6c88033beba5c7c46836f0d46/contourf_hatching.ipynb \ No newline at end of file diff --git a/_downloads/286bee0c24806c88b96bda92b35872db/multiple_histograms_side_by_side.ipynb b/_downloads/286bee0c24806c88b96bda92b35872db/multiple_histograms_side_by_side.ipynb deleted file mode 120000 index 22e3ef3df0b..00000000000 --- a/_downloads/286bee0c24806c88b96bda92b35872db/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/286bee0c24806c88b96bda92b35872db/multiple_histograms_side_by_side.ipynb \ No newline at end of file diff --git a/_downloads/289069dbce6881ef19100facbf1cb884/embedding_in_wx3_sgskip.ipynb b/_downloads/289069dbce6881ef19100facbf1cb884/embedding_in_wx3_sgskip.ipynb deleted file mode 100644 index 83ef1f3dfb7..00000000000 --- a/_downloads/289069dbce6881ef19100facbf1cb884/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #3\n==================\n\nCopyright (C) 2003-2004 Andrew Straw, Jeremy O'Donoghue and others\n\nLicense: This work is licensed under the PSF. A copy should be included\nwith this source code, and is also available at\nhttps://docs.python.org/3/license.html\n\nThis is yet another example of using matplotlib with wx. Hopefully\nthis is pretty full-featured:\n\n - both matplotlib toolbar and WX buttons manipulate plot\n - full wxApp framework, including widget interaction\n - XRC (XML wxWidgets resource) file to create GUI (made with XRCed)\n\nThis was derived from embedding_in_wx and dynamic_image_wxagg.\n\nThanks to matplotlib and wx teams for creating such great software!\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.cm as cm\nimport matplotlib.cbook as cbook\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nimport wx\nimport wx.xrc as xrc\n\nERR_TOL = 1e-5 # floating point slop for peak-detection\n\n\nmatplotlib.rc('image', origin='lower')\n\n\nclass PlotPanel(wx.Panel):\n def __init__(self, parent):\n wx.Panel.__init__(self, parent, -1)\n\n self.fig = Figure((5, 4), 75)\n self.canvas = FigureCanvas(self, -1, self.fig)\n self.toolbar = NavigationToolbar(self.canvas) # matplotlib toolbar\n self.toolbar.Realize()\n # self.toolbar.set_active([0,1])\n\n # Now put all into a sizer\n sizer = wx.BoxSizer(wx.VERTICAL)\n # This way of adding to sizer allows resizing\n sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW)\n # Best to allow the toolbar to resize!\n sizer.Add(self.toolbar, 0, wx.GROW)\n self.SetSizer(sizer)\n self.Fit()\n\n def init_plot_data(self):\n a = self.fig.add_subplot(111)\n\n x = np.arange(120.0) * 2 * np.pi / 60.0\n y = np.arange(100.0) * 2 * np.pi / 50.0\n self.x, self.y = np.meshgrid(x, y)\n z = np.sin(self.x) + np.cos(self.y)\n self.im = a.imshow(z, cmap=cm.RdBu) # , interpolation='nearest')\n\n zmax = np.max(z) - ERR_TOL\n ymax_i, xmax_i = np.nonzero(z >= zmax)\n if self.im.origin == 'upper':\n ymax_i = z.shape[0] - ymax_i\n self.lines = a.plot(xmax_i, ymax_i, 'ko')\n\n self.toolbar.update() # Not sure why this is needed - ADS\n\n def GetToolBar(self):\n # You will need to override GetToolBar if you are using an\n # unmanaged toolbar in your frame\n return self.toolbar\n\n def OnWhiz(self, evt):\n self.x += np.pi / 15\n self.y += np.pi / 20\n z = np.sin(self.x) + np.cos(self.y)\n self.im.set_array(z)\n\n zmax = np.max(z) - ERR_TOL\n ymax_i, xmax_i = np.nonzero(z >= zmax)\n if self.im.origin == 'upper':\n ymax_i = z.shape[0] - ymax_i\n self.lines[0].set_data(xmax_i, ymax_i)\n\n self.canvas.draw()\n\n\nclass MyApp(wx.App):\n def OnInit(self):\n xrcfile = cbook.get_sample_data('embedding_in_wx3.xrc',\n asfileobj=False)\n print('loading', xrcfile)\n\n self.res = xrc.XmlResource(xrcfile)\n\n # main frame and panel ---------\n\n self.frame = self.res.LoadFrame(None, \"MainFrame\")\n self.panel = xrc.XRCCTRL(self.frame, \"MainPanel\")\n\n # matplotlib panel -------------\n\n # container for matplotlib panel (I like to make a container\n # panel for our panel so I know where it'll go when in XRCed.)\n plot_container = xrc.XRCCTRL(self.frame, \"plot_container_panel\")\n sizer = wx.BoxSizer(wx.VERTICAL)\n\n # matplotlib panel itself\n self.plotpanel = PlotPanel(plot_container)\n self.plotpanel.init_plot_data()\n\n # wx boilerplate\n sizer.Add(self.plotpanel, 1, wx.EXPAND)\n plot_container.SetSizer(sizer)\n\n # whiz button ------------------\n whiz_button = xrc.XRCCTRL(self.frame, \"whiz_button\")\n whiz_button.Bind(wx.EVT_BUTTON, self.plotpanel.OnWhiz)\n\n # bang button ------------------\n bang_button = xrc.XRCCTRL(self.frame, \"bang_button\")\n bang_button.Bind(wx.EVT_BUTTON, self.OnBang)\n\n # final setup ------------------\n self.frame.Show(1)\n\n self.SetTopWindow(self.frame)\n\n return True\n\n def OnBang(self, event):\n bang_count = xrc.XRCCTRL(self.frame, \"bang_count\")\n bangs = bang_count.GetValue()\n bangs = int(bangs) + 1\n bang_count.SetValue(str(bangs))\n\nif __name__ == '__main__':\n app = MyApp(0)\n app.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2896e44d625d9018b7f5111ef31ab173/contour_image.ipynb b/_downloads/2896e44d625d9018b7f5111ef31ab173/contour_image.ipynb deleted file mode 100644 index fbaa4ea8e71..00000000000 --- a/_downloads/2896e44d625d9018b7f5111ef31ab173/contour_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Image\n\n\nTest combinations of contouring, filled contouring, and image plotting.\nFor contour labelling, see also the :doc:`contour demo example\n`.\n\nThe emphasis in this demo is on showing how to make contours register\ncorrectly on images, and on how to get both of them oriented as desired.\nIn particular, note the usage of the :doc:`\"origin\" and \"extent\"\n` keyword arguments to imshow and\ncontour.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import cm\n\n# Default delta is large because that makes it fast, and it illustrates\n# the correct registration between image and contours.\ndelta = 0.5\n\nextent = (-3, 4, -4, 3)\n\nx = np.arange(-3.0, 4.001, delta)\ny = np.arange(-4.0, 3.001, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n# Boost the upper limit to avoid truncation errors.\nlevels = np.arange(-2.0, 1.601, 0.4)\n\nnorm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max())\ncmap = cm.PRGn\n\nfig, _axs = plt.subplots(nrows=2, ncols=2)\nfig.subplots_adjust(hspace=0.3)\naxs = _axs.flatten()\n\ncset1 = axs[0].contourf(X, Y, Z, levels, norm=norm,\n cmap=cm.get_cmap(cmap, len(levels) - 1))\n# It is not necessary, but for the colormap, we need only the\n# number of levels minus 1. To avoid discretization error, use\n# either this number or a large number such as the default (256).\n\n# If we want lines as well as filled regions, we need to call\n# contour separately; don't try to change the edgecolor or edgewidth\n# of the polygons in the collections returned by contourf.\n# Use levels output from previous call to guarantee they are the same.\n\ncset2 = axs[0].contour(X, Y, Z, cset1.levels, colors='k')\n\n# We don't really need dashed contour lines to indicate negative\n# regions, so let's turn them off.\n\nfor c in cset2.collections:\n c.set_linestyle('solid')\n\n# It is easier here to make a separate call to contour than\n# to set up an array of colors and linewidths.\n# We are making a thick green line as a zero contour.\n# Specify the zero level as a tuple with only 0 in it.\n\ncset3 = axs[0].contour(X, Y, Z, (0,), colors='g', linewidths=2)\naxs[0].set_title('Filled contours')\nfig.colorbar(cset1, ax=axs[0])\n\n\naxs[1].imshow(Z, extent=extent, cmap=cmap, norm=norm)\naxs[1].contour(Z, levels, colors='k', origin='upper', extent=extent)\naxs[1].set_title(\"Image, origin 'upper'\")\n\naxs[2].imshow(Z, origin='lower', extent=extent, cmap=cmap, norm=norm)\naxs[2].contour(Z, levels, colors='k', origin='lower', extent=extent)\naxs[2].set_title(\"Image, origin 'lower'\")\n\n# We will use the interpolation \"nearest\" here to show the actual\n# image pixels.\n# Note that the contour lines don't extend to the edge of the box.\n# This is intentional. The Z values are defined at the center of each\n# image pixel (each color block on the following subplot), so the\n# domain that is contoured does not extend beyond these pixel centers.\nim = axs[3].imshow(Z, interpolation='nearest', extent=extent,\n cmap=cmap, norm=norm)\naxs[3].contour(Z, levels, colors='k', origin='image', extent=extent)\nylim = axs[3].get_ylim()\naxs[3].set_ylim(ylim[::-1])\naxs[3].set_title(\"Origin from rc, reversed y-axis\")\nfig.colorbar(im, ax=axs[3])\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.Normalize" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/289dd693ea03a09e4b4046c542e3bbbb/simple_colorbar.ipynb b/_downloads/289dd693ea03a09e4b4046c542e3bbbb/simple_colorbar.ipynb deleted file mode 120000 index 31ffe1bfde9..00000000000 --- a/_downloads/289dd693ea03a09e4b4046c542e3bbbb/simple_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/289dd693ea03a09e4b4046c542e3bbbb/simple_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/28a3f42fcb062f7b773c51f617e4bf7d/fancyarrow_demo.ipynb b/_downloads/28a3f42fcb062f7b773c51f617e4bf7d/fancyarrow_demo.ipynb deleted file mode 120000 index cc8d1cf0d14..00000000000 --- a/_downloads/28a3f42fcb062f7b773c51f617e4bf7d/fancyarrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/28a3f42fcb062f7b773c51f617e4bf7d/fancyarrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/28a60fe0b8aca9c5e8a4abf1eea25255/subplot_toolbar.py b/_downloads/28a60fe0b8aca9c5e8a4abf1eea25255/subplot_toolbar.py deleted file mode 100644 index bd190c05a9b..00000000000 --- a/_downloads/28a60fe0b8aca9c5e8a4abf1eea25255/subplot_toolbar.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -=============== -Subplot Toolbar -=============== - -Matplotlib has a toolbar available for adjusting subplot spacing. -""" -import matplotlib.pyplot as plt -import numpy as np - -fig, axs = plt.subplots(2, 2) - -axs[0, 0].imshow(np.random.random((100, 100))) - -axs[0, 1].imshow(np.random.random((100, 100))) - -axs[1, 0].imshow(np.random.random((100, 100))) - -axs[1, 1].imshow(np.random.random((100, 100))) - -plt.subplot_tool() -plt.show() diff --git a/_downloads/28bc1bb56b537876c7dfd0fa1e81f2bd/eventcollection_demo.py b/_downloads/28bc1bb56b537876c7dfd0fa1e81f2bd/eventcollection_demo.py deleted file mode 120000 index b3627b718bb..00000000000 --- a/_downloads/28bc1bb56b537876c7dfd0fa1e81f2bd/eventcollection_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/28bc1bb56b537876c7dfd0fa1e81f2bd/eventcollection_demo.py \ No newline at end of file diff --git a/_downloads/28c5038d0040fa28d3441e7dbce86305/span_regions.ipynb b/_downloads/28c5038d0040fa28d3441e7dbce86305/span_regions.ipynb deleted file mode 120000 index d819f466829..00000000000 --- a/_downloads/28c5038d0040fa28d3441e7dbce86305/span_regions.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/28c5038d0040fa28d3441e7dbce86305/span_regions.ipynb \ No newline at end of file diff --git a/_downloads/28ce2cc1cae9a1e4aef8cdda4abb6232/pick_event_demo.ipynb b/_downloads/28ce2cc1cae9a1e4aef8cdda4abb6232/pick_event_demo.ipynb deleted file mode 120000 index 50110d18667..00000000000 --- a/_downloads/28ce2cc1cae9a1e4aef8cdda4abb6232/pick_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/28ce2cc1cae9a1e4aef8cdda4abb6232/pick_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/28cf256f69b49a502a6c4d6491110199/colorbar_basics.ipynb b/_downloads/28cf256f69b49a502a6c4d6491110199/colorbar_basics.ipynb deleted file mode 120000 index 4ab698b1ebb..00000000000 --- a/_downloads/28cf256f69b49a502a6c4d6491110199/colorbar_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/28cf256f69b49a502a6c4d6491110199/colorbar_basics.ipynb \ No newline at end of file diff --git a/_downloads/28d0db6941360ded2842dea087c19bc3/date_demo_rrule.ipynb b/_downloads/28d0db6941360ded2842dea087c19bc3/date_demo_rrule.ipynb deleted file mode 120000 index 12d5361544f..00000000000 --- a/_downloads/28d0db6941360ded2842dea087c19bc3/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/28d0db6941360ded2842dea087c19bc3/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/28d48140ed4f9305b778da04c1d0b6c1/pgf_texsystem.py b/_downloads/28d48140ed4f9305b778da04c1d0b6c1/pgf_texsystem.py deleted file mode 100644 index d3e53518353..00000000000 --- a/_downloads/28d48140ed4f9305b778da04c1d0b6c1/pgf_texsystem.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -============= -Pgf Texsystem -============= - -""" - -import matplotlib.pyplot as plt -plt.rcParams.update({ - "pgf.texsystem": "pdflatex", - "pgf.preamble": [ - r"\usepackage[utf8x]{inputenc}", - r"\usepackage[T1]{fontenc}", - r"\usepackage{cmbright}", - ] -}) - -plt.figure(figsize=(4.5, 2.5)) -plt.plot(range(5)) -plt.text(0.5, 3., "serif", family="serif") -plt.text(0.5, 2., "monospace", family="monospace") -plt.text(2.5, 2., "sans-serif", family="sans-serif") -plt.xlabel(r"µ is not $\mu$") -plt.tight_layout(.5) - -plt.savefig("pgf_texsystem.pdf") -plt.savefig("pgf_texsystem.png") diff --git a/_downloads/28d5ab153586d48cc859317980c33ea2/hist2d.ipynb b/_downloads/28d5ab153586d48cc859317980c33ea2/hist2d.ipynb deleted file mode 120000 index e2bee7e768e..00000000000 --- a/_downloads/28d5ab153586d48cc859317980c33ea2/hist2d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/28d5ab153586d48cc859317980c33ea2/hist2d.ipynb \ No newline at end of file diff --git a/_downloads/28d6bc21005ed61bf3cb6c1423637680/trisurf3d_2.py b/_downloads/28d6bc21005ed61bf3cb6c1423637680/trisurf3d_2.py deleted file mode 120000 index 5d06151bc82..00000000000 --- a/_downloads/28d6bc21005ed61bf3cb6c1423637680/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/28d6bc21005ed61bf3cb6c1423637680/trisurf3d_2.py \ No newline at end of file diff --git a/_downloads/28d949c0d06f2ed62eb1d10112c36bc5/demo_axes_divider.ipynb b/_downloads/28d949c0d06f2ed62eb1d10112c36bc5/demo_axes_divider.ipynb deleted file mode 120000 index c2483bafa11..00000000000 --- a/_downloads/28d949c0d06f2ed62eb1d10112c36bc5/demo_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/28d949c0d06f2ed62eb1d10112c36bc5/demo_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/28dbdf3582e805097e617b6ab0c21120/menu.py b/_downloads/28dbdf3582e805097e617b6ab0c21120/menu.py deleted file mode 120000 index 869a44e475e..00000000000 --- a/_downloads/28dbdf3582e805097e617b6ab0c21120/menu.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/28dbdf3582e805097e617b6ab0c21120/menu.py \ No newline at end of file diff --git a/_downloads/28e26a4064e511eef4c4db16b8aea3ac/specgram_demo.py b/_downloads/28e26a4064e511eef4c4db16b8aea3ac/specgram_demo.py deleted file mode 120000 index 5c17d0d999a..00000000000 --- a/_downloads/28e26a4064e511eef4c4db16b8aea3ac/specgram_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/28e26a4064e511eef4c4db16b8aea3ac/specgram_demo.py \ No newline at end of file diff --git a/_downloads/28e5cad364c75d3efd3a8bc3ae6ed3a2/annotation_demo.py b/_downloads/28e5cad364c75d3efd3a8bc3ae6ed3a2/annotation_demo.py deleted file mode 120000 index f7f49ff46b7..00000000000 --- a/_downloads/28e5cad364c75d3efd3a8bc3ae6ed3a2/annotation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/28e5cad364c75d3efd3a8bc3ae6ed3a2/annotation_demo.py \ No newline at end of file diff --git a/_downloads/28ebf8fac2526ded2712274d800ce391/tricontour_smooth_user.ipynb b/_downloads/28ebf8fac2526ded2712274d800ce391/tricontour_smooth_user.ipynb deleted file mode 120000 index 33be16c365a..00000000000 --- a/_downloads/28ebf8fac2526ded2712274d800ce391/tricontour_smooth_user.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/28ebf8fac2526ded2712274d800ce391/tricontour_smooth_user.ipynb \ No newline at end of file diff --git a/_downloads/29127e6172225f304d4bcf91dfde939d/subplots_demo.ipynb b/_downloads/29127e6172225f304d4bcf91dfde939d/subplots_demo.ipynb deleted file mode 120000 index 8084e7b684e..00000000000 --- a/_downloads/29127e6172225f304d4bcf91dfde939d/subplots_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/29127e6172225f304d4bcf91dfde939d/subplots_demo.ipynb \ No newline at end of file diff --git a/_downloads/29134f2c27722c4508b98dcb299e3ef5/horizontal_barchart_distribution.ipynb b/_downloads/29134f2c27722c4508b98dcb299e3ef5/horizontal_barchart_distribution.ipynb deleted file mode 100644 index c972fc01c0e..00000000000 --- a/_downloads/29134f2c27722c4508b98dcb299e3ef5/horizontal_barchart_distribution.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Discrete distribution as horizontal bar chart\n\n\nStacked bar charts can be used to visualize discrete distributions.\n\nThis example visualizes the result of a survey in which people could rate\ntheir agreement to questions on a five-element scale.\n\nThe horizontal stacking is achieved by calling `~.Axes.barh()` for each\ncategory and passing the starting point as the cumulative sum of the\nalready drawn bars via the parameter ``left``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ncategory_names = ['Strongly disagree', 'Disagree',\n 'Neither agree nor disagree', 'Agree', 'Strongly agree']\nresults = {\n 'Question 1': [10, 15, 17, 32, 26],\n 'Question 2': [26, 22, 29, 10, 13],\n 'Question 3': [35, 37, 7, 2, 19],\n 'Question 4': [32, 11, 9, 15, 33],\n 'Question 5': [21, 29, 5, 5, 40],\n 'Question 6': [8, 19, 5, 30, 38]\n}\n\n\ndef survey(results, category_names):\n \"\"\"\n Parameters\n ----------\n results : dict\n A mapping from question labels to a list of answers per category.\n It is assumed all lists contain the same number of entries and that\n it matches the length of *category_names*.\n category_names : list of str\n The category labels.\n \"\"\"\n labels = list(results.keys())\n data = np.array(list(results.values()))\n data_cum = data.cumsum(axis=1)\n category_colors = plt.get_cmap('RdYlGn')(\n np.linspace(0.15, 0.85, data.shape[1]))\n\n fig, ax = plt.subplots(figsize=(9.2, 5))\n ax.invert_yaxis()\n ax.xaxis.set_visible(False)\n ax.set_xlim(0, np.sum(data, axis=1).max())\n\n for i, (colname, color) in enumerate(zip(category_names, category_colors)):\n widths = data[:, i]\n starts = data_cum[:, i] - widths\n ax.barh(labels, widths, left=starts, height=0.5,\n label=colname, color=color)\n xcenters = starts + widths / 2\n\n r, g, b, _ = color\n text_color = 'white' if r * g * b < 0.5 else 'darkgrey'\n for y, (x, c) in enumerate(zip(xcenters, widths)):\n ax.text(x, y, str(int(c)), ha='center', va='center',\n color=text_color)\n ax.legend(ncol=len(category_names), bbox_to_anchor=(0, 1),\n loc='lower left', fontsize='small')\n\n return fig, ax\n\n\nsurvey(results, category_names)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.barh\nmatplotlib.pyplot.barh\nmatplotlib.axes.Axes.text\nmatplotlib.pyplot.text\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2917de341a5e37ad8b89539998f3f715/svg_filter_line.ipynb b/_downloads/2917de341a5e37ad8b89539998f3f715/svg_filter_line.ipynb deleted file mode 120000 index 53a642a19f9..00000000000 --- a/_downloads/2917de341a5e37ad8b89539998f3f715/svg_filter_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2917de341a5e37ad8b89539998f3f715/svg_filter_line.ipynb \ No newline at end of file diff --git a/_downloads/29188fe2543442cecf89bc887a652972/bars3d.py b/_downloads/29188fe2543442cecf89bc887a652972/bars3d.py deleted file mode 100644 index e30175ffac4..00000000000 --- a/_downloads/29188fe2543442cecf89bc887a652972/bars3d.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -======================================== -Create 2D bar graphs in different planes -======================================== - -Demonstrates making a 3D plot which has 2D bar graphs projected onto -planes y=0, y=1, etc. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -colors = ['r', 'g', 'b', 'y'] -yticks = [3, 2, 1, 0] -for c, k in zip(colors, yticks): - # Generate the random data for the y=k 'layer'. - xs = np.arange(20) - ys = np.random.rand(20) - - # You can provide either a single color or an array with the same length as - # xs and ys. To demonstrate this, we color the first bar of each set cyan. - cs = [c] * len(xs) - cs[0] = 'c' - - # Plot the bar graph given by xs and ys on the plane y=k with 80% opacity. - ax.bar(xs, ys, zs=k, zdir='y', color=cs, alpha=0.8) - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -# On the y axis let's only label the discrete values that we have data for. -ax.set_yticks(yticks) - -plt.show() diff --git a/_downloads/2919c74ddd42b6b048fde4f8b92b796b/auto_ticks.ipynb b/_downloads/2919c74ddd42b6b048fde4f8b92b796b/auto_ticks.ipynb deleted file mode 100644 index e6844ad1362..00000000000 --- a/_downloads/2919c74ddd42b6b048fde4f8b92b796b/auto_ticks.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Automatically setting tick labels\n\n\nSetting the behavior of tick auto-placement.\n\nIf you don't explicitly set tick positions / labels, Matplotlib will attempt\nto choose them both automatically based on the displayed data and its limits.\n\nBy default, this attempts to choose tick positions that are distributed\nalong the axis:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\ndots = np.arange(10) / 100. + .03\nx, y = np.meshgrid(dots, dots)\ndata = [x.ravel(), y.ravel()]\nax.scatter(*data, c=data[1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sometimes choosing evenly-distributed ticks results in strange tick numbers.\nIf you'd like Matplotlib to keep ticks located at round numbers, you can\nchange this behavior with the following rcParams value:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(plt.rcParams['axes.autolimit_mode'])\n\n# Now change this value and see the results\nwith plt.rc_context({'axes.autolimit_mode': 'round_numbers'}):\n fig, ax = plt.subplots()\n ax.scatter(*data, c=data[1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also alter the margins of the axes around the data by\nwith ``axes.(x,y)margin``:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.rc_context({'axes.autolimit_mode': 'round_numbers',\n 'axes.xmargin': .8,\n 'axes.ymargin': .8}):\n fig, ax = plt.subplots()\n ax.scatter(*data, c=data[1])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/291c0f02eba05a513c86ee529dce85cb/sample_plots.ipynb b/_downloads/291c0f02eba05a513c86ee529dce85cb/sample_plots.ipynb deleted file mode 120000 index e913f06fb97..00000000000 --- a/_downloads/291c0f02eba05a513c86ee529dce85cb/sample_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/291c0f02eba05a513c86ee529dce85cb/sample_plots.ipynb \ No newline at end of file diff --git a/_downloads/29315e90068e9f7929656847e441c0e0/stix_fonts_demo.py b/_downloads/29315e90068e9f7929656847e441c0e0/stix_fonts_demo.py deleted file mode 120000 index 8a3178228e4..00000000000 --- a/_downloads/29315e90068e9f7929656847e441c0e0/stix_fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/29315e90068e9f7929656847e441c0e0/stix_fonts_demo.py \ No newline at end of file diff --git a/_downloads/293e9c38138d4672d73f46b3a518cc45/demo_parasite_axes.py b/_downloads/293e9c38138d4672d73f46b3a518cc45/demo_parasite_axes.py deleted file mode 120000 index cbbd1ea8439..00000000000 --- a/_downloads/293e9c38138d4672d73f46b3a518cc45/demo_parasite_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/293e9c38138d4672d73f46b3a518cc45/demo_parasite_axes.py \ No newline at end of file diff --git a/_downloads/293f355b37d3ebab0eb6c3432575f06d/customize_rc.py b/_downloads/293f355b37d3ebab0eb6c3432575f06d/customize_rc.py deleted file mode 120000 index d2424f11035..00000000000 --- a/_downloads/293f355b37d3ebab0eb6c3432575f06d/customize_rc.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/293f355b37d3ebab0eb6c3432575f06d/customize_rc.py \ No newline at end of file diff --git a/_downloads/294bcbfb2819b3f8f730ec582e64975d/offset.ipynb b/_downloads/294bcbfb2819b3f8f730ec582e64975d/offset.ipynb deleted file mode 120000 index 4ae2f83e806..00000000000 --- a/_downloads/294bcbfb2819b3f8f730ec582e64975d/offset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/294bcbfb2819b3f8f730ec582e64975d/offset.ipynb \ No newline at end of file diff --git a/_downloads/2950f15478ad3ce7a85bbaf4cb6f0b7c/fonts_demo.py b/_downloads/2950f15478ad3ce7a85bbaf4cb6f0b7c/fonts_demo.py deleted file mode 120000 index 9941ede3f5f..00000000000 --- a/_downloads/2950f15478ad3ce7a85bbaf4cb6f0b7c/fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2950f15478ad3ce7a85bbaf4cb6f0b7c/fonts_demo.py \ No newline at end of file diff --git a/_downloads/29525cfdd67d4cdfb6ee09d64f9db7b5/rain.py b/_downloads/29525cfdd67d4cdfb6ee09d64f9db7b5/rain.py deleted file mode 120000 index 7470fcd7ab7..00000000000 --- a/_downloads/29525cfdd67d4cdfb6ee09d64f9db7b5/rain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/29525cfdd67d4cdfb6ee09d64f9db7b5/rain.py \ No newline at end of file diff --git a/_downloads/295c7ecee531ea763cfd7772b4e2eeaa/fill.py b/_downloads/295c7ecee531ea763cfd7772b4e2eeaa/fill.py deleted file mode 120000 index 86d01eebf1a..00000000000 --- a/_downloads/295c7ecee531ea763cfd7772b4e2eeaa/fill.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/295c7ecee531ea763cfd7772b4e2eeaa/fill.py \ No newline at end of file diff --git a/_downloads/295cdf7724324392ab3bc43c6ca618cc/pyplot_simple.py b/_downloads/295cdf7724324392ab3bc43c6ca618cc/pyplot_simple.py deleted file mode 120000 index 9375e68d99b..00000000000 --- a/_downloads/295cdf7724324392ab3bc43c6ca618cc/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/295cdf7724324392ab3bc43c6ca618cc/pyplot_simple.py \ No newline at end of file diff --git a/_downloads/296762be8feb600deae3a83309b7ec7d/demo_bboximage.ipynb b/_downloads/296762be8feb600deae3a83309b7ec7d/demo_bboximage.ipynb deleted file mode 120000 index 6858d7a0332..00000000000 --- a/_downloads/296762be8feb600deae3a83309b7ec7d/demo_bboximage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/296762be8feb600deae3a83309b7ec7d/demo_bboximage.ipynb \ No newline at end of file diff --git a/_downloads/2967f070b1c84f59d3129a80fc66dce8/colormap_reference.ipynb b/_downloads/2967f070b1c84f59d3129a80fc66dce8/colormap_reference.ipynb deleted file mode 120000 index 8fa260a19cd..00000000000 --- a/_downloads/2967f070b1c84f59d3129a80fc66dce8/colormap_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2967f070b1c84f59d3129a80fc66dce8/colormap_reference.ipynb \ No newline at end of file diff --git a/_downloads/297458832e8b8c344ec059ab72a1a48e/marker_reference.py b/_downloads/297458832e8b8c344ec059ab72a1a48e/marker_reference.py deleted file mode 120000 index 70743d684e7..00000000000 --- a/_downloads/297458832e8b8c344ec059ab72a1a48e/marker_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/297458832e8b8c344ec059ab72a1a48e/marker_reference.py \ No newline at end of file diff --git a/_downloads/297e9c6503a3a555caa9b17f3fe80c79/parasite_simple.py b/_downloads/297e9c6503a3a555caa9b17f3fe80c79/parasite_simple.py deleted file mode 100644 index c76f70ee9d7..00000000000 --- a/_downloads/297e9c6503a3a555caa9b17f3fe80c79/parasite_simple.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -=============== -Parasite Simple -=============== - -""" -from mpl_toolkits.axes_grid1 import host_subplot -import matplotlib.pyplot as plt - -host = host_subplot(111) - -par = host.twinx() - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par.set_ylabel("Temperature") - -p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density") -p2, = par.plot([0, 1, 2], [0, 3, 2], label="Temperature") - -leg = plt.legend() - -host.yaxis.get_label().set_color(p1.get_color()) -leg.texts[0].set_color(p1.get_color()) - -par.yaxis.get_label().set_color(p2.get_color()) -leg.texts[1].set_color(p2.get_color()) - -plt.show() diff --git a/_downloads/29862da4055ca9c358bf8d1dfce01bf6/annotate_simple03.ipynb b/_downloads/29862da4055ca9c358bf8d1dfce01bf6/annotate_simple03.ipynb deleted file mode 100644 index ee9767b13ac..00000000000 --- a/_downloads/29862da4055ca9c358bf8d1dfce01bf6/annotate_simple03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nann = ax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round4\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"-|>\",\n connectionstyle=\"arc3,rad=-0.2\",\n fc=\"w\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/29930349dae1a858dc5d279d7a15d2e7/simple_axes_divider3.py b/_downloads/29930349dae1a858dc5d279d7a15d2e7/simple_axes_divider3.py deleted file mode 120000 index 9c2079084f5..00000000000 --- a/_downloads/29930349dae1a858dc5d279d7a15d2e7/simple_axes_divider3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/29930349dae1a858dc5d279d7a15d2e7/simple_axes_divider3.py \ No newline at end of file diff --git a/_downloads/299f98279ec4c5e1a5b4c3616f467512/contour3d_2.ipynb b/_downloads/299f98279ec4c5e1a5b4c3616f467512/contour3d_2.ipynb deleted file mode 120000 index cfb45c6cfbd..00000000000 --- a/_downloads/299f98279ec4c5e1a5b4c3616f467512/contour3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/299f98279ec4c5e1a5b4c3616f467512/contour3d_2.ipynb \ No newline at end of file diff --git a/_downloads/29ab3d9fc06c3c3253f8ac4e28014aee/ticklabels_rotation.ipynb b/_downloads/29ab3d9fc06c3c3253f8ac4e28014aee/ticklabels_rotation.ipynb deleted file mode 120000 index 14659c70981..00000000000 --- a/_downloads/29ab3d9fc06c3c3253f8ac4e28014aee/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/29ab3d9fc06c3c3253f8ac4e28014aee/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/29ad26f23516af4f30a419431c3f8502/simple_axesgrid.ipynb b/_downloads/29ad26f23516af4f30a419431c3f8502/simple_axesgrid.ipynb deleted file mode 100644 index 8d2cad27c43..00000000000 --- a/_downloads/29ad26f23516af4f30a419431c3f8502/simple_axesgrid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple ImageGrid\n\n\nAlign multiple images using `~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\nimport numpy as np\n\nim1 = np.arange(100).reshape((10, 10))\nim2 = im1.T\nim3 = np.flipud(im1)\nim4 = np.fliplr(im2)\n\nfig = plt.figure(figsize=(4., 4.))\ngrid = ImageGrid(fig, 111, # similar to subplot(111)\n nrows_ncols=(2, 2), # creates 2x2 grid of axes\n axes_pad=0.1, # pad between axes in inch.\n )\n\nfor ax, im in zip(grid, [im1, im2, im3, im4]):\n # Iterating over the grid returns the Axes.\n ax.imshow(im)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/29be5a96b9cd01a756e85e408af86e06/demo_colorbar_with_axes_divider.ipynb b/_downloads/29be5a96b9cd01a756e85e408af86e06/demo_colorbar_with_axes_divider.ipynb deleted file mode 120000 index 4a93c9819ef..00000000000 --- a/_downloads/29be5a96b9cd01a756e85e408af86e06/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/29be5a96b9cd01a756e85e408af86e06/demo_colorbar_with_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/29c1caeb03524cbb26a4b70c900184b1/tricontour3d.ipynb b/_downloads/29c1caeb03524cbb26a4b70c900184b1/tricontour3d.ipynb deleted file mode 100644 index 6e717f3d79d..00000000000 --- a/_downloads/29c1caeb03524cbb26a4b70c900184b1/tricontour3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triangular 3D contour plot\n\n\nContour plots of unstructured triangular grids.\n\nThe data used is the same as in the second plot of trisurf3d_demo2.\ntricontourf3d_demo shows the filled version of this example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np\n\nn_angles = 48\nn_radii = 8\nmin_radius = 0.25\n\n# Create the mesh in polar coordinates and compute x, y, z.\nradii = np.linspace(min_radius, 0.95, n_radii)\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi/n_angles\n\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nz = (np.cos(radii)*np.cos(3*angles)).flatten()\n\n# Create a custom triangulation.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.tricontour(triang, z, cmap=plt.cm.CMRmap)\n\n# Customize the view angle so it's easier to understand the plot.\nax.view_init(elev=45.)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/29c5f82da1f11b3116125d161207a7c0/common_date_problems.py b/_downloads/29c5f82da1f11b3116125d161207a7c0/common_date_problems.py deleted file mode 120000 index 3d46a5d372e..00000000000 --- a/_downloads/29c5f82da1f11b3116125d161207a7c0/common_date_problems.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/29c5f82da1f11b3116125d161207a7c0/common_date_problems.py \ No newline at end of file diff --git a/_downloads/29d3fe60682f3548ed06f96bd004de02/scatter_symbol.py b/_downloads/29d3fe60682f3548ed06f96bd004de02/scatter_symbol.py deleted file mode 100644 index d99b6a80a74..00000000000 --- a/_downloads/29d3fe60682f3548ed06f96bd004de02/scatter_symbol.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -============== -Scatter Symbol -============== - -Scatter plot with clover symbols. - -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x = np.arange(0.0, 50.0, 2.0) -y = x ** 1.3 + np.random.rand(*x.shape) * 30.0 -s = np.random.rand(*x.shape) * 800 + 500 - -plt.scatter(x, y, s, c="g", alpha=0.5, marker=r'$\clubsuit$', - label="Luck") -plt.xlabel("Leprechauns") -plt.ylabel("Gold") -plt.legend(loc='upper left') -plt.show() diff --git a/_downloads/29d5bdfe7ab9a900097faae745c7df3f/mpl_with_glade3_sgskip.py b/_downloads/29d5bdfe7ab9a900097faae745c7df3f/mpl_with_glade3_sgskip.py deleted file mode 100644 index 3329bc342da..00000000000 --- a/_downloads/29d5bdfe7ab9a900097faae745c7df3f/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -======================= -Matplotlib With Glade 3 -======================= - -""" - -import os - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - -from matplotlib.figure import Figure -from matplotlib.backends.backend_gtk3agg import ( - FigureCanvasGTK3Agg as FigureCanvas) -import numpy as np - - -class Window1Signals(object): - def on_window1_destroy(self, widget): - Gtk.main_quit() - - -def main(): - builder = Gtk.Builder() - builder.add_objects_from_file(os.path.join(os.path.dirname(__file__), - "mpl_with_glade3.glade"), - ("window1", "")) - builder.connect_signals(Window1Signals()) - window = builder.get_object("window1") - sw = builder.get_object("scrolledwindow1") - - # Start of Matplotlib specific code - figure = Figure(figsize=(8, 6), dpi=71) - axis = figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2*np.pi*t) - axis.plot(t, s) - - axis.set_xlabel('time [s]') - axis.set_ylabel('voltage [V]') - - canvas = FigureCanvas(figure) # a Gtk.DrawingArea - canvas.set_size_request(800, 600) - sw.add_with_viewport(canvas) - # End of Matplotlib specific code - - window.show_all() - Gtk.main() - -if __name__ == "__main__": - main() diff --git a/_downloads/29db83cb3ce02e77eb67dc19edc6831f/pie_features.py b/_downloads/29db83cb3ce02e77eb67dc19edc6831f/pie_features.py deleted file mode 120000 index 890f2857f0b..00000000000 --- a/_downloads/29db83cb3ce02e77eb67dc19edc6831f/pie_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/29db83cb3ce02e77eb67dc19edc6831f/pie_features.py \ No newline at end of file diff --git a/_downloads/29e61c6df8780062d859de816c34df3b/date_index_formatter2.ipynb b/_downloads/29e61c6df8780062d859de816c34df3b/date_index_formatter2.ipynb deleted file mode 120000 index d3334c3a4dd..00000000000 --- a/_downloads/29e61c6df8780062d859de816c34df3b/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/29e61c6df8780062d859de816c34df3b/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/29fb9cd22cf13f76343a637457cacddf/radian_demo.py b/_downloads/29fb9cd22cf13f76343a637457cacddf/radian_demo.py deleted file mode 120000 index d36b9562d1d..00000000000 --- a/_downloads/29fb9cd22cf13f76343a637457cacddf/radian_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/29fb9cd22cf13f76343a637457cacddf/radian_demo.py \ No newline at end of file diff --git a/_downloads/2a0d05327aa002f09c6e90e9155ebc90/anchored_artists.ipynb b/_downloads/2a0d05327aa002f09c6e90e9155ebc90/anchored_artists.ipynb deleted file mode 100644 index f7e19cf9095..00000000000 --- a/_downloads/2a0d05327aa002f09c6e90e9155ebc90/anchored_artists.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Artists\n\n\nThis example illustrates the use of the anchored objects without the\nhelper classes found in the `toolkit_axesgrid1-index`. This version\nof the figure is similar to the one found in\n:doc:`/gallery/axes_grid1/simple_anchored_artists`, but it is\nimplemented using only the matplotlib namespace, without the help\nof additional toolkits.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import pyplot as plt\nfrom matplotlib.patches import Rectangle, Ellipse\nfrom matplotlib.offsetbox import (\n AnchoredOffsetbox, AuxTransformBox, DrawingArea, TextArea, VPacker)\n\n\nclass AnchoredText(AnchoredOffsetbox):\n def __init__(self, s, loc, pad=0.4, borderpad=0.5,\n prop=None, frameon=True):\n self.txt = TextArea(s, minimumdescent=False)\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self.txt, prop=prop, frameon=frameon)\n\n\ndef draw_text(ax):\n \"\"\"\n Draw a text-box anchored to the upper-left corner of the figure.\n \"\"\"\n at = AnchoredText(\"Figure 1a\", loc='upper left', frameon=True)\n at.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at)\n\n\nclass AnchoredDrawingArea(AnchoredOffsetbox):\n def __init__(self, width, height, xdescent, ydescent,\n loc, pad=0.4, borderpad=0.5, prop=None, frameon=True):\n self.da = DrawingArea(width, height, xdescent, ydescent)\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self.da, prop=None, frameon=frameon)\n\n\ndef draw_circle(ax):\n \"\"\"\n Draw a circle in axis coordinates\n \"\"\"\n from matplotlib.patches import Circle\n ada = AnchoredDrawingArea(20, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\n p = Circle((10, 10), 10)\n ada.da.add_artist(p)\n ax.add_artist(ada)\n\n\nclass AnchoredEllipse(AnchoredOffsetbox):\n def __init__(self, transform, width, height, angle, loc,\n pad=0.1, borderpad=0.1, prop=None, frameon=True):\n \"\"\"\n Draw an ellipse the size in data coordinate of the give axes.\n\n pad, borderpad in fraction of the legend font size (or prop)\n \"\"\"\n self._box = AuxTransformBox(transform)\n self.ellipse = Ellipse((0, 0), width, height, angle)\n self._box.add_artist(self.ellipse)\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self._box, prop=prop, frameon=frameon)\n\n\ndef draw_ellipse(ax):\n \"\"\"\n Draw an ellipse of width=0.1, height=0.15 in data coordinates\n \"\"\"\n ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0.,\n loc='lower left', pad=0.5, borderpad=0.4,\n frameon=True)\n\n ax.add_artist(ae)\n\n\nclass AnchoredSizeBar(AnchoredOffsetbox):\n def __init__(self, transform, size, label, loc,\n pad=0.1, borderpad=0.1, sep=2, prop=None, frameon=True):\n \"\"\"\n Draw a horizontal bar with the size in data coordinate of the given\n axes. A label will be drawn underneath (center-aligned).\n\n pad, borderpad in fraction of the legend font size (or prop)\n sep in points.\n \"\"\"\n self.size_bar = AuxTransformBox(transform)\n self.size_bar.add_artist(Rectangle((0, 0), size, 0, ec=\"black\", lw=1.0))\n\n self.txt_label = TextArea(label, minimumdescent=False)\n\n self._box = VPacker(children=[self.size_bar, self.txt_label],\n align=\"center\",\n pad=0, sep=sep)\n\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self._box, prop=prop, frameon=frameon)\n\n\ndef draw_sizebar(ax):\n \"\"\"\n Draw a horizontal bar with length of 0.1 in data coordinates,\n with a fixed label underneath.\n \"\"\"\n asb = AnchoredSizeBar(ax.transData,\n 0.1,\n r\"1$^{\\prime}$\",\n loc='lower center',\n pad=0.1, borderpad=0.5, sep=5,\n frameon=False)\n ax.add_artist(asb)\n\n\nax = plt.gca()\nax.set_aspect(1.)\n\ndraw_text(ax)\ndraw_circle(ax)\ndraw_ellipse(ax)\ndraw_sizebar(ax)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2a1546a6e0f3ce3734cafdfa34700ca3/path_patch.ipynb b/_downloads/2a1546a6e0f3ce3734cafdfa34700ca3/path_patch.ipynb deleted file mode 120000 index b4ee9e20b5a..00000000000 --- a/_downloads/2a1546a6e0f3ce3734cafdfa34700ca3/path_patch.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2a1546a6e0f3ce3734cafdfa34700ca3/path_patch.ipynb \ No newline at end of file diff --git a/_downloads/2a1860d75e574f7bad964b548809ddb4/polar_demo.ipynb b/_downloads/2a1860d75e574f7bad964b548809ddb4/polar_demo.ipynb deleted file mode 100644 index fe65d512d5e..00000000000 --- a/_downloads/2a1860d75e574f7bad964b548809ddb4/polar_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Polar Demo\n\n\nDemo of a line plot on a polar axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nr = np.arange(0, 2, 0.01)\ntheta = 2 * np.pi * r\n\nax = plt.subplot(111, projection='polar')\nax.plot(theta, r)\nax.set_rmax(2)\nax.set_rticks([0.5, 1, 1.5, 2]) # Less radial ticks\nax.set_rlabel_position(-22.5) # Move radial labels away from plotted line\nax.grid(True)\n\nax.set_title(\"A line plot on a polar axis\", va='bottom')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes\nmatplotlib.projections.polar.PolarAxes.set_rticks\nmatplotlib.projections.polar.PolarAxes.set_rmax\nmatplotlib.projections.polar.PolarAxes.set_rlabel_position" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2a3f8bbfe81de85b867549ef428ff08e/whats_new_98_4_fancy.py b/_downloads/2a3f8bbfe81de85b867549ef428ff08e/whats_new_98_4_fancy.py deleted file mode 120000 index 85ba315a807..00000000000 --- a/_downloads/2a3f8bbfe81de85b867549ef428ff08e/whats_new_98_4_fancy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2a3f8bbfe81de85b867549ef428ff08e/whats_new_98_4_fancy.py \ No newline at end of file diff --git a/_downloads/2a4106cd64223a61b7e1b6c86769ed3b/parasite_simple2.py b/_downloads/2a4106cd64223a61b7e1b6c86769ed3b/parasite_simple2.py deleted file mode 120000 index 905e477e214..00000000000 --- a/_downloads/2a4106cd64223a61b7e1b6c86769ed3b/parasite_simple2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2a4106cd64223a61b7e1b6c86769ed3b/parasite_simple2.py \ No newline at end of file diff --git a/_downloads/2a442c53a2a5807aa52e00553b406f8f/demo_tight_layout.py b/_downloads/2a442c53a2a5807aa52e00553b406f8f/demo_tight_layout.py deleted file mode 120000 index c5268db0fbd..00000000000 --- a/_downloads/2a442c53a2a5807aa52e00553b406f8f/demo_tight_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2a442c53a2a5807aa52e00553b406f8f/demo_tight_layout.py \ No newline at end of file diff --git a/_downloads/2a4f30a13647f86707d4362dde771e24/categorical_variables.py b/_downloads/2a4f30a13647f86707d4362dde771e24/categorical_variables.py deleted file mode 120000 index ce91b69f649..00000000000 --- a/_downloads/2a4f30a13647f86707d4362dde771e24/categorical_variables.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2a4f30a13647f86707d4362dde771e24/categorical_variables.py \ No newline at end of file diff --git a/_downloads/2a50eb05dd9dded2826ba9dec28e5827/joinstyle.py b/_downloads/2a50eb05dd9dded2826ba9dec28e5827/joinstyle.py deleted file mode 120000 index f5543c4a80a..00000000000 --- a/_downloads/2a50eb05dd9dded2826ba9dec28e5827/joinstyle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2a50eb05dd9dded2826ba9dec28e5827/joinstyle.py \ No newline at end of file diff --git a/_downloads/2a53e82e1e5fed6f51fab8ebf7b10a9d/compound_path.py b/_downloads/2a53e82e1e5fed6f51fab8ebf7b10a9d/compound_path.py deleted file mode 100644 index 5667f494001..00000000000 --- a/_downloads/2a53e82e1e5fed6f51fab8ebf7b10a9d/compound_path.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============= -Compound path -============= - -Make a compound path -- in this case two simple polygons, a rectangle -and a triangle. Use ``CLOSEPOLY`` and ``MOVETO`` for the different parts of -the compound path -""" -import numpy as np -from matplotlib.path import Path -from matplotlib.patches import PathPatch -import matplotlib.pyplot as plt - - -vertices = [] -codes = [] - -codes = [Path.MOVETO] + [Path.LINETO]*3 + [Path.CLOSEPOLY] -vertices = [(1, 1), (1, 2), (2, 2), (2, 1), (0, 0)] - -codes += [Path.MOVETO] + [Path.LINETO]*2 + [Path.CLOSEPOLY] -vertices += [(4, 4), (5, 5), (5, 4), (0, 0)] - -vertices = np.array(vertices, float) -path = Path(vertices, codes) - -pathpatch = PathPatch(path, facecolor='None', edgecolor='green') - -fig, ax = plt.subplots() -ax.add_patch(pathpatch) -ax.set_title('A compound path') - -ax.autoscale_view() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.axes.Axes.add_patch -matplotlib.axes.Axes.autoscale_view diff --git a/_downloads/2a59c44af8125821136299cfd0956b22/whats_new_99_axes_grid.py b/_downloads/2a59c44af8125821136299cfd0956b22/whats_new_99_axes_grid.py deleted file mode 100644 index 7a9666f8e9e..00000000000 --- a/_downloads/2a59c44af8125821136299cfd0956b22/whats_new_99_axes_grid.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -======================== -Whats New 0.99 Axes Grid -======================== - -Create RGB composite images. -""" -import numpy as np -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes - - -def get_demo_image(): - # prepare image - delta = 0.5 - - extent = (-3, 4, -4, 3) - x = np.arange(-3.0, 4.001, delta) - y = np.arange(-4.0, 3.001, delta) - X, Y = np.meshgrid(x, y) - Z1 = np.exp(-X**2 - Y**2) - Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) - Z = (Z1 - Z2) * 2 - - return Z, extent - - -def get_rgb(): - Z, extent = get_demo_image() - - Z[Z < 0] = 0. - Z = Z / Z.max() - - R = Z[:13, :13] - G = Z[2:, 2:] - B = Z[:13, 2:] - - return R, G, B - - -fig = plt.figure() -ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8]) - -r, g, b = get_rgb() -kwargs = dict(origin="lower", interpolation="nearest") -ax.imshow_rgb(r, g, b, **kwargs) - -ax.RGB.set_xlim(0., 9.5) -ax.RGB.set_ylim(0.9, 10.6) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import mpl_toolkits -mpl_toolkits.axes_grid1.axes_rgb.RGBAxes -mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.imshow_rgb diff --git a/_downloads/2a6e378876b46846fdf9cb5b17b8867a/pie_and_donut_labels.ipynb b/_downloads/2a6e378876b46846fdf9cb5b17b8867a/pie_and_donut_labels.ipynb deleted file mode 100644 index 718f287e16e..00000000000 --- a/_downloads/2a6e378876b46846fdf9cb5b17b8867a/pie_and_donut_labels.ipynb +++ /dev/null @@ -1,104 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Labeling a pie and a donut\n\n\nWelcome to the matplotlib bakery. We will create a pie and a donut\nchart through the :meth:`pie method ` and\nshow how to label them with a :meth:`legend `\nas well as with :meth:`annotations `.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "As usual we would start by defining the imports and create a figure with\nsubplots.\nNow it's time for the pie. Starting with a pie recipe, we create the data\nand a list of labels from it.\n\nWe can provide a function to the ``autopct`` argument, which will expand\nautomatic percentage labeling by showing absolute values; we calculate\nthe latter back from relative data and the known sum of all values.\n\nWe then create the pie and store the returned objects for later.\nThe first returned element of the returned tuple is a list of the wedges.\nThose are\n:class:`matplotlib.patches.Wedge ` patches, which\ncan directly be used as the handles for a legend. We can use the\nlegend's ``bbox_to_anchor`` argument to position the legend outside of\nthe pie. Here we use the axes coordinates ``(1, 0, 0.5, 1)`` together\nwith the location ``\"center left\"``; i.e.\nthe left central point of the legend will be at the left central point of the\nbounding box, spanning from ``(1,0)`` to ``(1.5,1)`` in axes coordinates.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect=\"equal\"))\n\nrecipe = [\"375 g flour\",\n \"75 g sugar\",\n \"250 g butter\",\n \"300 g berries\"]\n\ndata = [float(x.split()[0]) for x in recipe]\ningredients = [x.split()[-1] for x in recipe]\n\n\ndef func(pct, allvals):\n absolute = int(pct/100.*np.sum(allvals))\n return \"{:.1f}%\\n({:d} g)\".format(pct, absolute)\n\n\nwedges, texts, autotexts = ax.pie(data, autopct=lambda pct: func(pct, data),\n textprops=dict(color=\"w\"))\n\nax.legend(wedges, ingredients,\n title=\"Ingredients\",\n loc=\"center left\",\n bbox_to_anchor=(1, 0, 0.5, 1))\n\nplt.setp(autotexts, size=8, weight=\"bold\")\n\nax.set_title(\"Matplotlib bakery: A pie\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now it's time for the donut. Starting with a donut recipe, we transcribe\nthe data to numbers (converting 1 egg to 50 g), and directly plot the pie.\nThe pie? Wait... it's going to be donut, is it not?\nWell, as we see here, the donut is a pie, having a certain ``width`` set to\nthe wedges, which is different from its radius. It's as easy as it gets.\nThis is done via the ``wedgeprops`` argument.\n\nWe then want to label the wedges via\n:meth:`annotations `. We first create some\ndictionaries of common properties, which we can later pass as keyword\nargument. We then iterate over all wedges and for each\n\n* calculate the angle of the wedge's center,\n* from that obtain the coordinates of the point at that angle on the\n circumference,\n* determine the horizontal alignment of the text, depending on which side\n of the circle the point lies,\n* update the connection style with the obtained angle to have the annotation\n arrow point outwards from the donut,\n* finally, create the annotation with all the previously\n determined parameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect=\"equal\"))\n\nrecipe = [\"225 g flour\",\n \"90 g sugar\",\n \"1 egg\",\n \"60 g butter\",\n \"100 ml milk\",\n \"1/2 package of yeast\"]\n\ndata = [225, 90, 50, 60, 100, 5]\n\nwedges, texts = ax.pie(data, wedgeprops=dict(width=0.5), startangle=-40)\n\nbbox_props = dict(boxstyle=\"square,pad=0.3\", fc=\"w\", ec=\"k\", lw=0.72)\nkw = dict(arrowprops=dict(arrowstyle=\"-\"),\n bbox=bbox_props, zorder=0, va=\"center\")\n\nfor i, p in enumerate(wedges):\n ang = (p.theta2 - p.theta1)/2. + p.theta1\n y = np.sin(np.deg2rad(ang))\n x = np.cos(np.deg2rad(ang))\n horizontalalignment = {-1: \"right\", 1: \"left\"}[int(np.sign(x))]\n connectionstyle = \"angle,angleA=0,angleB={}\".format(ang)\n kw[\"arrowprops\"].update({\"connectionstyle\": connectionstyle})\n ax.annotate(recipe[i], xy=(x, y), xytext=(1.35*np.sign(x), 1.4*y),\n horizontalalignment=horizontalalignment, **kw)\n\nax.set_title(\"Matplotlib bakery: A donut\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And here it is, the donut. Note however, that if we were to use this recipe,\nthe ingredients would suffice for around 6 donuts - producing one huge\ndonut is untested and might result in kitchen errors.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2a7859b63e836fc2ac097f870affdae3/subplot3d.py b/_downloads/2a7859b63e836fc2ac097f870affdae3/subplot3d.py deleted file mode 120000 index d462a048418..00000000000 --- a/_downloads/2a7859b63e836fc2ac097f870affdae3/subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2a7859b63e836fc2ac097f870affdae3/subplot3d.py \ No newline at end of file diff --git a/_downloads/2a787d9050183d63e0b5fa83a361524b/contourf3d_2.ipynb b/_downloads/2a787d9050183d63e0b5fa83a361524b/contourf3d_2.ipynb deleted file mode 120000 index 667f1caedfa..00000000000 --- a/_downloads/2a787d9050183d63e0b5fa83a361524b/contourf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2a787d9050183d63e0b5fa83a361524b/contourf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/2a7b13c059456984288f5b84b4b73f45/colors.ipynb b/_downloads/2a7b13c059456984288f5b84b4b73f45/colors.ipynb deleted file mode 120000 index bef128965ac..00000000000 --- a/_downloads/2a7b13c059456984288f5b84b4b73f45/colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2a7b13c059456984288f5b84b4b73f45/colors.ipynb \ No newline at end of file diff --git a/_downloads/2a7c80a6b06c68b292bcf8d452743b0b/pyplot_three.py b/_downloads/2a7c80a6b06c68b292bcf8d452743b0b/pyplot_three.py deleted file mode 100644 index 9026e4acae1..00000000000 --- a/_downloads/2a7c80a6b06c68b292bcf8d452743b0b/pyplot_three.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============ -Pyplot Three -============ - -Plot three line plots in a single call to `~matplotlib.pyplot.plot`. -""" -import numpy as np -import matplotlib.pyplot as plt - -# evenly sampled time at 200ms intervals -t = np.arange(0., 5., 0.2) - -# red dashes, blue squares and green triangles -plt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.plot -matplotlib.axes.Axes.plot diff --git a/_downloads/2a7cc03b9ea712af5456fc1f93ce22ee/colors.py b/_downloads/2a7cc03b9ea712af5456fc1f93ce22ee/colors.py deleted file mode 120000 index 160a92d0515..00000000000 --- a/_downloads/2a7cc03b9ea712af5456fc1f93ce22ee/colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2a7cc03b9ea712af5456fc1f93ce22ee/colors.py \ No newline at end of file diff --git a/_downloads/2a7f5caf51ff3cd7bacacd33c7f284a6/broken_barh.ipynb b/_downloads/2a7f5caf51ff3cd7bacacd33c7f284a6/broken_barh.ipynb deleted file mode 120000 index bfe45537f5b..00000000000 --- a/_downloads/2a7f5caf51ff3cd7bacacd33c7f284a6/broken_barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2a7f5caf51ff3cd7bacacd33c7f284a6/broken_barh.ipynb \ No newline at end of file diff --git a/_downloads/2a8cdf9fb0bc06974edac28c3de3c0a4/step_demo.ipynb b/_downloads/2a8cdf9fb0bc06974edac28c3de3c0a4/step_demo.ipynb deleted file mode 120000 index 78015ebcba4..00000000000 --- a/_downloads/2a8cdf9fb0bc06974edac28c3de3c0a4/step_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2a8cdf9fb0bc06974edac28c3de3c0a4/step_demo.ipynb \ No newline at end of file diff --git a/_downloads/2a8e2d186fdc5171d92466696da01f56/annotations.py b/_downloads/2a8e2d186fdc5171d92466696da01f56/annotations.py deleted file mode 120000 index 636113ef1db..00000000000 --- a/_downloads/2a8e2d186fdc5171d92466696da01f56/annotations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2a8e2d186fdc5171d92466696da01f56/annotations.py \ No newline at end of file diff --git a/_downloads/2a8eb74e039ed7cd390fd2e4ddd28e26/fill_between_alpha.py b/_downloads/2a8eb74e039ed7cd390fd2e4ddd28e26/fill_between_alpha.py deleted file mode 120000 index 2e54067be6c..00000000000 --- a/_downloads/2a8eb74e039ed7cd390fd2e4ddd28e26/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2a8eb74e039ed7cd390fd2e4ddd28e26/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/2a8fc1c07d71db55298cebb54140eb96/annotation_polar.ipynb b/_downloads/2a8fc1c07d71db55298cebb54140eb96/annotation_polar.ipynb deleted file mode 120000 index 44b4f425f1f..00000000000 --- a/_downloads/2a8fc1c07d71db55298cebb54140eb96/annotation_polar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2a8fc1c07d71db55298cebb54140eb96/annotation_polar.ipynb \ No newline at end of file diff --git a/_downloads/2a9a8f1ee8711db42be6018458987d46/colormap_normalizations_bounds.py b/_downloads/2a9a8f1ee8711db42be6018458987d46/colormap_normalizations_bounds.py deleted file mode 100644 index d37113b9dd3..00000000000 --- a/_downloads/2a9a8f1ee8711db42be6018458987d46/colormap_normalizations_bounds.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -============================== -Colormap Normalizations Bounds -============================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -''' -BoundaryNorm: For this one you provide the boundaries for your colors, -and the Norm puts the first color in between the first pair, the -second color between the second pair, etc. -''' - -fig, ax = plt.subplots(3, 1, figsize=(8, 8)) -ax = ax.flatten() -# even bounds gives a contour-like effect -bounds = np.linspace(-1, 1, 10) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[0].pcolormesh(X, Y, Z, - norm=norm, - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical') - -# uneven bounds changes the colormapping: -bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical') - -pcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical') - -plt.show() diff --git a/_downloads/2a9da84fa2cf4493e8a63f0ad1e01631/embedding_in_tk_sgskip.py b/_downloads/2a9da84fa2cf4493e8a63f0ad1e01631/embedding_in_tk_sgskip.py deleted file mode 120000 index 929f3a60167..00000000000 --- a/_downloads/2a9da84fa2cf4493e8a63f0ad1e01631/embedding_in_tk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2a9da84fa2cf4493e8a63f0ad1e01631/embedding_in_tk_sgskip.py \ No newline at end of file diff --git a/_downloads/2aa784448b72ac6cbd2503e2eabaf11b/color_cycle.ipynb b/_downloads/2aa784448b72ac6cbd2503e2eabaf11b/color_cycle.ipynb deleted file mode 100644 index fc5b2f80e04..00000000000 --- a/_downloads/2aa784448b72ac6cbd2503e2eabaf11b/color_cycle.ipynb +++ /dev/null @@ -1,133 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Styling with cycler\n\n\nDemo of custom property-cycle settings to control colors and other style\nproperties for multi-line plots.\n\n

Note

More complete documentation of the ``cycler`` API can be found\n `here `_.

\n\nThis example demonstrates two different APIs:\n\n1. Setting the default rc parameter specifying the property cycle.\n This affects all subsequent axes (but not axes already created).\n2. Setting the property cycle for a single pair of axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from cycler import cycler\nimport numpy as np\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First we'll generate some sample data, in this case, four offset sine\ncurves.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 2 * np.pi, 50)\noffsets = np.linspace(0, 2 * np.pi, 4, endpoint=False)\nyy = np.transpose([np.sin(x + phi) for phi in offsets])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now ``yy`` has shape\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(yy.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "So ``yy[:, i]`` will give you the ``i``-th offset sine curve. Let's set the\ndefault prop_cycle using :func:`matplotlib.pyplot.rc`. We'll combine a color\ncycler and a linestyle cycler by adding (``+``) two ``cycler``'s together.\nSee the bottom of this tutorial for more information about combining\ndifferent cyclers.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "default_cycler = (cycler(color=['r', 'g', 'b', 'y']) +\n cycler(linestyle=['-', '--', ':', '-.']))\n\nplt.rc('lines', linewidth=4)\nplt.rc('axes', prop_cycle=default_cycler)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we'll generate a figure with two axes, one on top of the other. On the\nfirst axis, we'll plot with the default cycler. On the second axis, we'll\nset the prop_cycler using :func:`matplotlib.axes.Axes.set_prop_cycle`\nwhich will only set the ``prop_cycle`` for this :mod:`matplotlib.axes.Axes`\ninstance. We'll use a second ``cycler`` that combines a color cycler and a\nlinewidth cycler.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "custom_cycler = (cycler(color=['c', 'm', 'y', 'k']) +\n cycler(lw=[1, 2, 3, 4]))\n\nfig, (ax0, ax1) = plt.subplots(nrows=2)\nax0.plot(yy)\nax0.set_title('Set default color cycle to rgby')\nax1.set_prop_cycle(custom_cycler)\nax1.plot(yy)\nax1.set_title('Set axes color cycle to cmyk')\n\n# Add a bit more space between the two plots.\nfig.subplots_adjust(hspace=0.3)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Setting ``prop_cycler`` in the ``matplotlibrc`` file or style files\n-------------------------------------------------------------------\n\nRemember, if you want to set a custom ``prop_cycler`` in your\n``.matplotlibrc`` file or a style file (``style.mplstyle``), you can set the\n``axes.prop_cycle`` property:\n\n.. code-block:: python\n\n axes.prop_cycle : cycler(color='bgrcmyk')\n\nCycling through multiple properties\n-----------------------------------\n\nYou can add cyclers:\n\n.. code-block:: python\n\n from cycler import cycler\n cc = (cycler(color=list('rgb')) +\n cycler(linestyle=['-', '--', '-.']))\n for d in cc:\n print(d)\n\nResults in:\n\n.. code-block:: python\n\n {'color': 'r', 'linestyle': '-'}\n {'color': 'g', 'linestyle': '--'}\n {'color': 'b', 'linestyle': '-.'}\n\n\nYou can multiply cyclers:\n\n.. code-block:: python\n\n from cycler import cycler\n cc = (cycler(color=list('rgb')) *\n cycler(linestyle=['-', '--', '-.']))\n for d in cc:\n print(d)\n\nResults in:\n\n.. code-block:: python\n\n {'color': 'r', 'linestyle': '-'}\n {'color': 'r', 'linestyle': '--'}\n {'color': 'r', 'linestyle': '-.'}\n {'color': 'g', 'linestyle': '-'}\n {'color': 'g', 'linestyle': '--'}\n {'color': 'g', 'linestyle': '-.'}\n {'color': 'b', 'linestyle': '-'}\n {'color': 'b', 'linestyle': '--'}\n {'color': 'b', 'linestyle': '-.'}\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2aab6f88ed83c5d16fe735bb20a2bfc5/spy_demos.ipynb b/_downloads/2aab6f88ed83c5d16fe735bb20a2bfc5/spy_demos.ipynb deleted file mode 120000 index 53419bee204..00000000000 --- a/_downloads/2aab6f88ed83c5d16fe735bb20a2bfc5/spy_demos.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2aab6f88ed83c5d16fe735bb20a2bfc5/spy_demos.ipynb \ No newline at end of file diff --git a/_downloads/2ab355865d97db86bd404f788fc594e6/set_and_get.ipynb b/_downloads/2ab355865d97db86bd404f788fc594e6/set_and_get.ipynb deleted file mode 120000 index 74806cfc4c4..00000000000 --- a/_downloads/2ab355865d97db86bd404f788fc594e6/set_and_get.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2ab355865d97db86bd404f788fc594e6/set_and_get.ipynb \ No newline at end of file diff --git a/_downloads/2ab393dc70c94c23741f6a25070974fe/colorbar_basics.ipynb b/_downloads/2ab393dc70c94c23741f6a25070974fe/colorbar_basics.ipynb deleted file mode 120000 index c0dea0ca145..00000000000 --- a/_downloads/2ab393dc70c94c23741f6a25070974fe/colorbar_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2ab393dc70c94c23741f6a25070974fe/colorbar_basics.ipynb \ No newline at end of file diff --git a/_downloads/2ab3a7d5d2f949c467929f8b82fddca1/scatter_demo2.ipynb b/_downloads/2ab3a7d5d2f949c467929f8b82fddca1/scatter_demo2.ipynb deleted file mode 100644 index 38841071f19..00000000000 --- a/_downloads/2ab3a7d5d2f949c467929f8b82fddca1/scatter_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Demo2\n\n\nDemo of scatter plot with varying marker colors and sizes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\n\n# Load a numpy record array from yahoo csv data with fields date, open, close,\n# volume, adj_close from the mpl-data/example directory. The record array\n# stores the date as an np.datetime64 with a day unit ('D') in the date column.\nwith cbook.get_sample_data('goog.npz') as datafile:\n price_data = np.load(datafile)['price_data'].view(np.recarray)\nprice_data = price_data[-250:] # get the most recent 250 trading days\n\ndelta1 = np.diff(price_data.adj_close) / price_data.adj_close[:-1]\n\n# Marker size in units of points^2\nvolume = (15 * price_data.volume[:-2] / price_data.volume[0])**2\nclose = 0.003 * price_data.close[:-2] / 0.003 * price_data.open[:-2]\n\nfig, ax = plt.subplots()\nax.scatter(delta1[:-1], delta1[1:], c=close, s=volume, alpha=0.5)\n\nax.set_xlabel(r'$\\Delta_i$', fontsize=15)\nax.set_ylabel(r'$\\Delta_{i+1}$', fontsize=15)\nax.set_title('Volume and percent change')\n\nax.grid(True)\nfig.tight_layout()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2ab421781d3ccba8bfd1476b9b30ce2b/looking_glass.py b/_downloads/2ab421781d3ccba8bfd1476b9b30ce2b/looking_glass.py deleted file mode 120000 index 6f8d30d517f..00000000000 --- a/_downloads/2ab421781d3ccba8bfd1476b9b30ce2b/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ab421781d3ccba8bfd1476b9b30ce2b/looking_glass.py \ No newline at end of file diff --git a/_downloads/2abd976999b6ff9b6f6be6f2d63813cc/custom_scale.py b/_downloads/2abd976999b6ff9b6f6be6f2d63813cc/custom_scale.py deleted file mode 100644 index b4a4ea24352..00000000000 --- a/_downloads/2abd976999b6ff9b6f6be6f2d63813cc/custom_scale.py +++ /dev/null @@ -1,187 +0,0 @@ -""" -============ -Custom scale -============ - -Create a custom scale, by implementing the scaling use for latitude data in a -Mercator Projection. - -Unless you are making special use of the `~.Transform` class, you probably -don't need to use this verbose method, and instead can use -`~.matplotlib.scale.FuncScale` and the ``'function'`` option of -`~.matplotlib.axes.Axes.set_xscale` and `~.matplotlib.axes.Axes.set_yscale`. -See the last example in :doc:`/gallery/scales/scales`. -""" - -import numpy as np -from numpy import ma -from matplotlib import scale as mscale -from matplotlib import transforms as mtransforms -from matplotlib.ticker import Formatter, FixedLocator -from matplotlib import rcParams - - -# BUG: this example fails with any other setting of axisbelow -rcParams['axes.axisbelow'] = False - - -class MercatorLatitudeScale(mscale.ScaleBase): - """ - Scales data in range -pi/2 to pi/2 (-90 to 90 degrees) using - the system used to scale latitudes in a Mercator projection. - - The scale function: - ln(tan(y) + sec(y)) - - The inverse scale function: - atan(sinh(y)) - - Since the Mercator scale tends to infinity at +/- 90 degrees, - there is user-defined threshold, above and below which nothing - will be plotted. This defaults to +/- 85 degrees. - - source: - http://en.wikipedia.org/wiki/Mercator_projection - """ - - # The scale class must have a member ``name`` that defines the string used - # to select the scale. For example, ``gca().set_yscale("mercator")`` would - # be used to select this scale. - name = 'mercator' - - def __init__(self, axis, *, thresh=np.deg2rad(85), **kwargs): - """ - Any keyword arguments passed to ``set_xscale`` and ``set_yscale`` will - be passed along to the scale's constructor. - - thresh: The degree above which to crop the data. - """ - super().__init__(axis) - if thresh >= np.pi / 2: - raise ValueError("thresh must be less than pi/2") - self.thresh = thresh - - def get_transform(self): - """ - Override this method to return a new instance that does the - actual transformation of the data. - - The MercatorLatitudeTransform class is defined below as a - nested class of this one. - """ - return self.MercatorLatitudeTransform(self.thresh) - - def set_default_locators_and_formatters(self, axis): - """ - Override to set up the locators and formatters to use with the - scale. This is only required if the scale requires custom - locators and formatters. Writing custom locators and - formatters is rather outside the scope of this example, but - there are many helpful examples in ``ticker.py``. - - In our case, the Mercator example uses a fixed locator from - -90 to 90 degrees and a custom formatter class to put convert - the radians to degrees and put a degree symbol after the - value:: - """ - class DegreeFormatter(Formatter): - def __call__(self, x, pos=None): - return "%d\N{DEGREE SIGN}" % np.degrees(x) - - axis.set_major_locator(FixedLocator( - np.radians(np.arange(-90, 90, 10)))) - axis.set_major_formatter(DegreeFormatter()) - axis.set_minor_formatter(DegreeFormatter()) - - def limit_range_for_scale(self, vmin, vmax, minpos): - """ - Override to limit the bounds of the axis to the domain of the - transform. In the case of Mercator, the bounds should be - limited to the threshold that was passed in. Unlike the - autoscaling provided by the tick locators, this range limiting - will always be adhered to, whether the axis range is set - manually, determined automatically or changed through panning - and zooming. - """ - return max(vmin, -self.thresh), min(vmax, self.thresh) - - class MercatorLatitudeTransform(mtransforms.Transform): - # There are two value members that must be defined. - # ``input_dims`` and ``output_dims`` specify number of input - # dimensions and output dimensions to the transformation. - # These are used by the transformation framework to do some - # error checking and prevent incompatible transformations from - # being connected together. When defining transforms for a - # scale, which are, by definition, separable and have only one - # dimension, these members should always be set to 1. - input_dims = 1 - output_dims = 1 - is_separable = True - has_inverse = True - - def __init__(self, thresh): - mtransforms.Transform.__init__(self) - self.thresh = thresh - - def transform_non_affine(self, a): - """ - This transform takes an Nx1 ``numpy`` array and returns a - transformed copy. Since the range of the Mercator scale - is limited by the user-specified threshold, the input - array must be masked to contain only valid values. - ``matplotlib`` will handle masked arrays and remove the - out-of-range data from the plot. Importantly, the - ``transform`` method *must* return an array that is the - same shape as the input array, since these values need to - remain synchronized with values in the other dimension. - """ - masked = ma.masked_where((a < -self.thresh) | (a > self.thresh), a) - if masked.mask.any(): - return ma.log(np.abs(ma.tan(masked) + 1.0 / ma.cos(masked))) - else: - return np.log(np.abs(np.tan(a) + 1.0 / np.cos(a))) - - def inverted(self): - """ - Override this method so matplotlib knows how to get the - inverse transform for this transform. - """ - return MercatorLatitudeScale.InvertedMercatorLatitudeTransform( - self.thresh) - - class InvertedMercatorLatitudeTransform(mtransforms.Transform): - input_dims = 1 - output_dims = 1 - is_separable = True - has_inverse = True - - def __init__(self, thresh): - mtransforms.Transform.__init__(self) - self.thresh = thresh - - def transform_non_affine(self, a): - return np.arctan(np.sinh(a)) - - def inverted(self): - return MercatorLatitudeScale.MercatorLatitudeTransform(self.thresh) - -# Now that the Scale class has been defined, it must be registered so -# that ``matplotlib`` can find it. -mscale.register_scale(MercatorLatitudeScale) - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - - t = np.arange(-180.0, 180.0, 0.1) - s = np.radians(t)/2. - - plt.plot(t, s, '-', lw=2) - plt.gca().set_yscale('mercator') - - plt.xlabel('Longitude') - plt.ylabel('Latitude') - plt.title('Mercator: Projection of the Oppressor') - plt.grid(True) - - plt.show() diff --git a/_downloads/2abdb0db4362ff805ed364701babd589/colorbar_only.ipynb b/_downloads/2abdb0db4362ff805ed364701babd589/colorbar_only.ipynb deleted file mode 120000 index e13d68c22f2..00000000000 --- a/_downloads/2abdb0db4362ff805ed364701babd589/colorbar_only.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2abdb0db4362ff805ed364701babd589/colorbar_only.ipynb \ No newline at end of file diff --git a/_downloads/2abf158295e16f565fcb09c51c9e82cf/font_family_rc_sgskip.ipynb b/_downloads/2abf158295e16f565fcb09c51c9e82cf/font_family_rc_sgskip.ipynb deleted file mode 100644 index 5274e9f396c..00000000000 --- a/_downloads/2abf158295e16f565fcb09c51c9e82cf/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Configuring the font family\n\n\nYou can explicitly set which font family is picked up for a given font\nstyle (e.g., 'serif', 'sans-serif', or 'monospace').\n\nIn the example below, we only allow one font family (Tahoma) for the\nsans-serif font style. You the default family with the font.family rc\nparam, e.g.,::\n\n rcParams['font.family'] = 'sans-serif'\n\nand for the font.family you set a list of font styles to try to find\nin order::\n\n rcParams['font.sans-serif'] = ['Tahoma', 'DejaVu Sans',\n 'Lucida Grande', 'Verdana']\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import rcParams\nrcParams['font.family'] = 'sans-serif'\nrcParams['font.sans-serif'] = ['Tahoma']\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\nax.plot([1, 2, 3], label='test')\n\nax.legend()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2abff75c7d5b7683b4b3246fb3d41d44/hist.py b/_downloads/2abff75c7d5b7683b4b3246fb3d41d44/hist.py deleted file mode 120000 index 7d74c690b5f..00000000000 --- a/_downloads/2abff75c7d5b7683b4b3246fb3d41d44/hist.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2abff75c7d5b7683b4b3246fb3d41d44/hist.py \ No newline at end of file diff --git a/_downloads/2ac44e1a957d59695149df2bfa94a20f/boxplot.ipynb b/_downloads/2ac44e1a957d59695149df2bfa94a20f/boxplot.ipynb deleted file mode 120000 index b17fe963634..00000000000 --- a/_downloads/2ac44e1a957d59695149df2bfa94a20f/boxplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ac44e1a957d59695149df2bfa94a20f/boxplot.ipynb \ No newline at end of file diff --git a/_downloads/2ac4693735c4aebb76bfed6126ef6220/contour_label_demo.py b/_downloads/2ac4693735c4aebb76bfed6126ef6220/contour_label_demo.py deleted file mode 100644 index 2d6aa760418..00000000000 --- a/_downloads/2ac4693735c4aebb76bfed6126ef6220/contour_label_demo.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -================== -Contour Label Demo -================== - -Illustrate some of the more advanced things that one can do with -contour labels. - -See also the :doc:`contour demo example -`. -""" - -import matplotlib -import numpy as np -import matplotlib.ticker as ticker -import matplotlib.pyplot as plt - -############################################################################### -# Define our surface - -delta = 0.025 -x = np.arange(-3.0, 3.0, delta) -y = np.arange(-2.0, 2.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -############################################################################### -# Make contour labels using creative float classes -# Follows suggestion of Manuel Metz - -# Define a class that forces representation of float to look a certain way -# This remove trailing zero so '1.0' becomes '1' - - -class nf(float): - def __repr__(self): - s = f'{self:.1f}' - return f'{self:.0f}' if s[-1] == '0' else s - - -# Basic contour plot -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z) - -# Recast levels to new class -CS.levels = [nf(val) for val in CS.levels] - -# Label levels with specially formatted floats -if plt.rcParams["text.usetex"]: - fmt = r'%r \%%' -else: - fmt = '%r %%' - -ax.clabel(CS, CS.levels, inline=True, fmt=fmt, fontsize=10) - -############################################################################### -# Label contours with arbitrary strings using a dictionary - -fig1, ax1 = plt.subplots() - -# Basic contour plot -CS1 = ax1.contour(X, Y, Z) - -fmt = {} -strs = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh'] -for l, s in zip(CS1.levels, strs): - fmt[l] = s - -# Label every other level using strings -ax1.clabel(CS1, CS1.levels[::2], inline=True, fmt=fmt, fontsize=10) - -############################################################################### -# Use a Formatter - -fig2, ax2 = plt.subplots() - -CS2 = ax2.contour(X, Y, 100**Z, locator=plt.LogLocator()) -fmt = ticker.LogFormatterMathtext() -fmt.create_dummy_axis() -ax2.clabel(CS2, CS2.levels, fmt=fmt) -ax2.set_title("$100^Z$") - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.clabel -matplotlib.pyplot.clabel -matplotlib.ticker.LogFormatterMathtext -matplotlib.ticker.TickHelper.create_dummy_axis diff --git a/_downloads/2ac62a2edbb00a99e8a853b17387ef14/bar_stacked.py b/_downloads/2ac62a2edbb00a99e8a853b17387ef14/bar_stacked.py deleted file mode 120000 index 0685b5c1420..00000000000 --- a/_downloads/2ac62a2edbb00a99e8a853b17387ef14/bar_stacked.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2ac62a2edbb00a99e8a853b17387ef14/bar_stacked.py \ No newline at end of file diff --git a/_downloads/2ad2cac026a436d968d3cc28b53d5bc3/date.py b/_downloads/2ad2cac026a436d968d3cc28b53d5bc3/date.py deleted file mode 120000 index d4b47546011..00000000000 --- a/_downloads/2ad2cac026a436d968d3cc28b53d5bc3/date.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2ad2cac026a436d968d3cc28b53d5bc3/date.py \ No newline at end of file diff --git a/_downloads/2ae2936bb683f1cea1d4e0f6dc09980e/tricontour_smooth_delaunay.py b/_downloads/2ae2936bb683f1cea1d4e0f6dc09980e/tricontour_smooth_delaunay.py deleted file mode 120000 index a265fb54662..00000000000 --- a/_downloads/2ae2936bb683f1cea1d4e0f6dc09980e/tricontour_smooth_delaunay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ae2936bb683f1cea1d4e0f6dc09980e/tricontour_smooth_delaunay.py \ No newline at end of file diff --git a/_downloads/2ae377f1c7044d9de8c159b487f96d32/text3d.py b/_downloads/2ae377f1c7044d9de8c159b487f96d32/text3d.py deleted file mode 120000 index 3e624e1bf98..00000000000 --- a/_downloads/2ae377f1c7044d9de8c159b487f96d32/text3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ae377f1c7044d9de8c159b487f96d32/text3d.py \ No newline at end of file diff --git a/_downloads/2ae3f0a13ac28f9a969e1969243a1804/boxplot.py b/_downloads/2ae3f0a13ac28f9a969e1969243a1804/boxplot.py deleted file mode 120000 index a6d61d945e4..00000000000 --- a/_downloads/2ae3f0a13ac28f9a969e1969243a1804/boxplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2ae3f0a13ac28f9a969e1969243a1804/boxplot.py \ No newline at end of file diff --git a/_downloads/2aeb943be4d78b5dfa3511a89adf3ebb/annotate_simple_coord02.py b/_downloads/2aeb943be4d78b5dfa3511a89adf3ebb/annotate_simple_coord02.py deleted file mode 100644 index 869b5a63ba0..00000000000 --- a/_downloads/2aeb943be4d78b5dfa3511a89adf3ebb/annotate_simple_coord02.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -======================= -Annotate Simple Coord02 -======================= - -""" - -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 2)) -an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) - -an2 = ax.annotate("Test 2", xy=(0.5, 1.), xycoords=an1, - xytext=(0.5, 1.1), textcoords=(an1, "axes fraction"), - va="bottom", ha="center", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) - -fig.subplots_adjust(top=0.83) -plt.show() diff --git a/_downloads/2aef3663b0f35ca539c583555d4a6d51/looking_glass.py b/_downloads/2aef3663b0f35ca539c583555d4a6d51/looking_glass.py deleted file mode 120000 index 8e2fce3df1f..00000000000 --- a/_downloads/2aef3663b0f35ca539c583555d4a6d51/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2aef3663b0f35ca539c583555d4a6d51/looking_glass.py \ No newline at end of file diff --git a/_downloads/2aef87a388d0e9db1dad6e471d467117/customize_rc.py b/_downloads/2aef87a388d0e9db1dad6e471d467117/customize_rc.py deleted file mode 100644 index 37bc5b8d4bc..00000000000 --- a/_downloads/2aef87a388d0e9db1dad6e471d467117/customize_rc.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -============ -Customize Rc -============ - -I'm not trying to make a good looking figure here, but just to show -some examples of customizing rc params on the fly - -If you like to work interactively, and need to create different sets -of defaults for figures (e.g., one set of defaults for publication, one -set for interactive exploration), you may want to define some -functions in a custom module that set the defaults, e.g.,:: - - def set_pub(): - rc('font', weight='bold') # bold fonts are easier to see - rc('tick', labelsize=15) # tick labels bigger - rc('lines', lw=1, color='k') # thicker black lines - rc('grid', c='0.5', ls='-', lw=0.5) # solid gray grid lines - rc('savefig', dpi=300) # higher res outputs - -Then as you are working interactively, you just need to do:: - - >>> set_pub() - >>> subplot(111) - >>> plot([1,2,3]) - >>> savefig('myfig') - >>> rcdefaults() # restore the defaults - -""" -import matplotlib.pyplot as plt - -plt.subplot(311) -plt.plot([1, 2, 3]) - -# the axes attributes need to be set before the call to subplot -plt.rc('font', weight='bold') -plt.rc('xtick.major', size=5, pad=7) -plt.rc('xtick', labelsize=15) - -# using aliases for color, linestyle and linewidth; gray, solid, thick -plt.rc('grid', c='0.5', ls='-', lw=5) -plt.rc('lines', lw=2, color='g') -plt.subplot(312) - -plt.plot([1, 2, 3]) -plt.grid(True) - -plt.rcdefaults() -plt.subplot(313) -plt.plot([1, 2, 3]) -plt.grid(True) -plt.show() diff --git a/_downloads/2af1d5773a23907424226d96ba2cef85/hist3d.ipynb b/_downloads/2af1d5773a23907424226d96ba2cef85/hist3d.ipynb deleted file mode 120000 index 7b6d53f6a32..00000000000 --- a/_downloads/2af1d5773a23907424226d96ba2cef85/hist3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2af1d5773a23907424226d96ba2cef85/hist3d.ipynb \ No newline at end of file diff --git a/_downloads/2af4f9fb0e9de8ab7a1445f6c5896089/demo_ticklabel_direction.py b/_downloads/2af4f9fb0e9de8ab7a1445f6c5896089/demo_ticklabel_direction.py deleted file mode 120000 index e35cbc184c6..00000000000 --- a/_downloads/2af4f9fb0e9de8ab7a1445f6c5896089/demo_ticklabel_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2af4f9fb0e9de8ab7a1445f6c5896089/demo_ticklabel_direction.py \ No newline at end of file diff --git a/_downloads/2af7b9374ad4adfbe2f9f8c5319e3dc1/plotfile_demo.py b/_downloads/2af7b9374ad4adfbe2f9f8c5319e3dc1/plotfile_demo.py deleted file mode 120000 index 41a3064f13e..00000000000 --- a/_downloads/2af7b9374ad4adfbe2f9f8c5319e3dc1/plotfile_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2af7b9374ad4adfbe2f9f8c5319e3dc1/plotfile_demo.py \ No newline at end of file diff --git a/_downloads/2af98726fc9f8cd8539c1e4a7ede2c25/trigradient_demo.py b/_downloads/2af98726fc9f8cd8539c1e4a7ede2c25/trigradient_demo.py deleted file mode 120000 index a65b758869b..00000000000 --- a/_downloads/2af98726fc9f8cd8539c1e4a7ede2c25/trigradient_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2af98726fc9f8cd8539c1e4a7ede2c25/trigradient_demo.py \ No newline at end of file diff --git a/_downloads/2afab31909665bc7081865389813e3ef/trigradient_demo.ipynb b/_downloads/2afab31909665bc7081865389813e3ef/trigradient_demo.ipynb deleted file mode 120000 index b5616966394..00000000000 --- a/_downloads/2afab31909665bc7081865389813e3ef/trigradient_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2afab31909665bc7081865389813e3ef/trigradient_demo.ipynb \ No newline at end of file diff --git a/_downloads/2b0047695071c81461403ab364310f08/mathtext_examples.py b/_downloads/2b0047695071c81461403ab364310f08/mathtext_examples.py deleted file mode 120000 index bd32059d068..00000000000 --- a/_downloads/2b0047695071c81461403ab364310f08/mathtext_examples.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2b0047695071c81461403ab364310f08/mathtext_examples.py \ No newline at end of file diff --git a/_downloads/2b072ea346f552f1d4e4cab8f3eeef72/path_editor.py b/_downloads/2b072ea346f552f1d4e4cab8f3eeef72/path_editor.py deleted file mode 120000 index ea71b216c76..00000000000 --- a/_downloads/2b072ea346f552f1d4e4cab8f3eeef72/path_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2b072ea346f552f1d4e4cab8f3eeef72/path_editor.py \ No newline at end of file diff --git a/_downloads/2b17635df730dfa7ed4d9708982e1470/axes_grid.py b/_downloads/2b17635df730dfa7ed4d9708982e1470/axes_grid.py deleted file mode 120000 index 2b921b3bc7b..00000000000 --- a/_downloads/2b17635df730dfa7ed4d9708982e1470/axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2b17635df730dfa7ed4d9708982e1470/axes_grid.py \ No newline at end of file diff --git a/_downloads/2b21c44a0889d4f66eb81efb3e73f91d/load_converter.ipynb b/_downloads/2b21c44a0889d4f66eb81efb3e73f91d/load_converter.ipynb deleted file mode 120000 index 954ec8e011a..00000000000 --- a/_downloads/2b21c44a0889d4f66eb81efb3e73f91d/load_converter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2b21c44a0889d4f66eb81efb3e73f91d/load_converter.ipynb \ No newline at end of file diff --git a/_downloads/2b27807fd43d90bc64e88f8934069535/tricontour_smooth_delaunay.ipynb b/_downloads/2b27807fd43d90bc64e88f8934069535/tricontour_smooth_delaunay.ipynb deleted file mode 120000 index 74b2baf25e8..00000000000 --- a/_downloads/2b27807fd43d90bc64e88f8934069535/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2b27807fd43d90bc64e88f8934069535/tricontour_smooth_delaunay.ipynb \ No newline at end of file diff --git a/_downloads/2b3373cf850a1bf91c717d3056c04dea/2dcollections3d.ipynb b/_downloads/2b3373cf850a1bf91c717d3056c04dea/2dcollections3d.ipynb deleted file mode 120000 index d4465e7023e..00000000000 --- a/_downloads/2b3373cf850a1bf91c717d3056c04dea/2dcollections3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2b3373cf850a1bf91c717d3056c04dea/2dcollections3d.ipynb \ No newline at end of file diff --git a/_downloads/2b33b8b81981c22ee4870a8946898064/offset.ipynb b/_downloads/2b33b8b81981c22ee4870a8946898064/offset.ipynb deleted file mode 100644 index 1d157f9fc92..00000000000 --- a/_downloads/2b33b8b81981c22ee4870a8946898064/offset.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Automatic Text Offsetting\n\n\nThis example demonstrates mplot3d's offset text display.\nAs one rotates the 3D figure, the offsets should remain oriented the\nsame way as the axis label, and should also be located \"away\"\nfrom the center of the plot.\n\nThis demo triggers the display of the offset text for the x and\ny axis by adding 1e5 to X and Y. Anything less would not\nautomatically trigger it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\nX, Y = np.mgrid[0:6*np.pi:0.25, 0:4*np.pi:0.25]\nZ = np.sqrt(np.abs(np.cos(X) + np.cos(Y)))\n\nax.plot_surface(X + 1e5, Y + 1e5, Z, cmap='autumn', cstride=2, rstride=2)\n\nax.set_xlabel(\"X label\")\nax.set_ylabel(\"Y label\")\nax.set_zlabel(\"Z label\")\nax.set_zlim(0, 2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2b3574816410d214096ca2251f9f3964/quiver_simple_demo.py b/_downloads/2b3574816410d214096ca2251f9f3964/quiver_simple_demo.py deleted file mode 100644 index 0393a4857cb..00000000000 --- a/_downloads/2b3574816410d214096ca2251f9f3964/quiver_simple_demo.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -================== -Quiver Simple Demo -================== - -A simple example of a `~.axes.Axes.quiver` plot with a `~.axes.Axes.quiverkey`. - -For more advanced options refer to -:doc:`/gallery/images_contours_and_fields/quiver_demo`. -""" -import matplotlib.pyplot as plt -import numpy as np - -X = np.arange(-10, 10, 1) -Y = np.arange(-10, 10, 1) -U, V = np.meshgrid(X, Y) - -fig, ax = plt.subplots() -q = ax.quiver(X, Y, U, V) -ax.quiverkey(q, X=0.3, Y=1.1, U=10, - label='Quiver key, length = 10', labelpos='E') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.quiver -matplotlib.pyplot.quiver -matplotlib.axes.Axes.quiverkey -matplotlib.pyplot.quiverkey diff --git a/_downloads/2b3cf8662cb7c6ca05cb03b8fe35f5eb/set_and_get.py b/_downloads/2b3cf8662cb7c6ca05cb03b8fe35f5eb/set_and_get.py deleted file mode 100644 index 3239d39518b..00000000000 --- a/_downloads/2b3cf8662cb7c6ca05cb03b8fe35f5eb/set_and_get.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -=========== -Set And Get -=========== - -The pyplot interface allows you to use setp and getp to set and get -object properties, as well as to do introspection on the object - -set -=== - -To set the linestyle of a line to be dashed, you can do:: - - >>> line, = plt.plot([1,2,3]) - >>> plt.setp(line, linestyle='--') - -If you want to know the valid types of arguments, you can provide the -name of the property you want to set without a value:: - - >>> plt.setp(line, 'linestyle') - linestyle: [ '-' | '--' | '-.' | ':' | 'steps' | 'None' ] - -If you want to see all the properties that can be set, and their -possible values, you can do:: - - >>> plt.setp(line) - -set operates on a single instance or a list of instances. If you are -in query mode introspecting the possible values, only the first -instance in the sequence is used. When actually setting values, all -the instances will be set. e.g., suppose you have a list of two lines, -the following will make both lines thicker and red:: - - >>> x = np.arange(0,1.0,0.01) - >>> y1 = np.sin(2*np.pi*x) - >>> y2 = np.sin(4*np.pi*x) - >>> lines = plt.plot(x, y1, x, y2) - >>> plt.setp(lines, linewidth=2, color='r') - - -get -=== - -get returns the value of a given attribute. You can use get to query -the value of a single attribute:: - - >>> plt.getp(line, 'linewidth') - 0.5 - -or all the attribute/value pairs:: - - >>> plt.getp(line) - aa = True - alpha = 1.0 - antialiased = True - c = b - clip_on = True - color = b - ... long listing skipped ... - -Aliases -======= - -To reduce keystrokes in interactive mode, a number of properties -have short aliases, e.g., 'lw' for 'linewidth' and 'mec' for -'markeredgecolor'. When calling set or get in introspection mode, -these properties will be listed as 'fullname or aliasname'. -""" - - -import matplotlib.pyplot as plt -import numpy as np - - -x = np.arange(0, 1.0, 0.01) -y1 = np.sin(2*np.pi*x) -y2 = np.sin(4*np.pi*x) -lines = plt.plot(x, y1, x, y2) -l1, l2 = lines -plt.setp(lines, linestyle='--') # set both to dashed -plt.setp(l1, linewidth=2, color='r') # line1 is thick and red -plt.setp(l2, linewidth=1, color='g') # line2 is thinner and green - - -print('Line setters') -plt.setp(l1) -print('Line getters') -plt.getp(l1) - -print('Rectangle setters') -plt.setp(plt.gca().patch) -print('Rectangle getters') -plt.getp(plt.gca().patch) - -t = plt.title('Hi mom') -print('Text setters') -plt.setp(t) -print('Text getters') -plt.getp(t) - -plt.show() diff --git a/_downloads/2b3e0b7fee4a5802b33a15253937a2cb/donut.ipynb b/_downloads/2b3e0b7fee4a5802b33a15253937a2cb/donut.ipynb deleted file mode 120000 index 9ca6a2a63ef..00000000000 --- a/_downloads/2b3e0b7fee4a5802b33a15253937a2cb/donut.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2b3e0b7fee4a5802b33a15253937a2cb/donut.ipynb \ No newline at end of file diff --git a/_downloads/2b3e93e9a05170ec388ee34095e1f497/embedding_in_qt_sgskip.ipynb b/_downloads/2b3e93e9a05170ec388ee34095e1f497/embedding_in_qt_sgskip.ipynb deleted file mode 120000 index 403534e8404..00000000000 --- a/_downloads/2b3e93e9a05170ec388ee34095e1f497/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2b3e93e9a05170ec388ee34095e1f497/embedding_in_qt_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/2b42d62572247e62cf4903638db42a49/animated_histogram.py b/_downloads/2b42d62572247e62cf4903638db42a49/animated_histogram.py deleted file mode 120000 index af0d8064b35..00000000000 --- a/_downloads/2b42d62572247e62cf4903638db42a49/animated_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2b42d62572247e62cf4903638db42a49/animated_histogram.py \ No newline at end of file diff --git a/_downloads/2b4d9835a7436f4408846607d9279dd8/eventcollection_demo.ipynb b/_downloads/2b4d9835a7436f4408846607d9279dd8/eventcollection_demo.ipynb deleted file mode 120000 index c6b3bd68094..00000000000 --- a/_downloads/2b4d9835a7436f4408846607d9279dd8/eventcollection_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2b4d9835a7436f4408846607d9279dd8/eventcollection_demo.ipynb \ No newline at end of file diff --git a/_downloads/2b51ef23251ef0c05de78f40adbdd607/demo_tight_layout.ipynb b/_downloads/2b51ef23251ef0c05de78f40adbdd607/demo_tight_layout.ipynb deleted file mode 120000 index c3f7decbafb..00000000000 --- a/_downloads/2b51ef23251ef0c05de78f40adbdd607/demo_tight_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2b51ef23251ef0c05de78f40adbdd607/demo_tight_layout.ipynb \ No newline at end of file diff --git a/_downloads/2b536a56f346a5b641585b5cdf6a28e6/create_subplots.py b/_downloads/2b536a56f346a5b641585b5cdf6a28e6/create_subplots.py deleted file mode 120000 index 7583dbeba08..00000000000 --- a/_downloads/2b536a56f346a5b641585b5cdf6a28e6/create_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/2b536a56f346a5b641585b5cdf6a28e6/create_subplots.py \ No newline at end of file diff --git a/_downloads/2b5682f2d846a8535c5999a8d92c36fe/marker_reference.ipynb b/_downloads/2b5682f2d846a8535c5999a8d92c36fe/marker_reference.ipynb deleted file mode 120000 index 69ebf0e94a7..00000000000 --- a/_downloads/2b5682f2d846a8535c5999a8d92c36fe/marker_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2b5682f2d846a8535c5999a8d92c36fe/marker_reference.ipynb \ No newline at end of file diff --git a/_downloads/2b5c070eac0047842f7f0f1b6c7eeea0/multipage_pdf.py b/_downloads/2b5c070eac0047842f7f0f1b6c7eeea0/multipage_pdf.py deleted file mode 120000 index 5bcff3dffc8..00000000000 --- a/_downloads/2b5c070eac0047842f7f0f1b6c7eeea0/multipage_pdf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2b5c070eac0047842f7f0f1b6c7eeea0/multipage_pdf.py \ No newline at end of file diff --git a/_downloads/2b71b779b06a8980b92485983cc9ec6b/inset_locator_demo.py b/_downloads/2b71b779b06a8980b92485983cc9ec6b/inset_locator_demo.py deleted file mode 120000 index 7370103b2e4..00000000000 --- a/_downloads/2b71b779b06a8980b92485983cc9ec6b/inset_locator_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2b71b779b06a8980b92485983cc9ec6b/inset_locator_demo.py \ No newline at end of file diff --git a/_downloads/2b75e789a43c1ed558afd13ddf32a34f/close_event.py b/_downloads/2b75e789a43c1ed558afd13ddf32a34f/close_event.py deleted file mode 100644 index 7613ec45bec..00000000000 --- a/_downloads/2b75e789a43c1ed558afd13ddf32a34f/close_event.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -=========== -Close Event -=========== - -Example to show connecting events that occur when the figure closes. -""" -import matplotlib.pyplot as plt - - -def handle_close(evt): - print('Closed Figure!') - -fig = plt.figure() -fig.canvas.mpl_connect('close_event', handle_close) - -plt.text(0.35, 0.5, 'Close Me!', dict(size=30)) -plt.show() diff --git a/_downloads/2b77537038f98cafc785c8f6f7e69d1d/annotation_polar.py b/_downloads/2b77537038f98cafc785c8f6f7e69d1d/annotation_polar.py deleted file mode 120000 index 5666707f0d8..00000000000 --- a/_downloads/2b77537038f98cafc785c8f6f7e69d1d/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2b77537038f98cafc785c8f6f7e69d1d/annotation_polar.py \ No newline at end of file diff --git a/_downloads/2b7917f5efd95d93b11c49f7a421baeb/tick_labels_from_values.py b/_downloads/2b7917f5efd95d93b11c49f7a421baeb/tick_labels_from_values.py deleted file mode 120000 index c15f9340a0b..00000000000 --- a/_downloads/2b7917f5efd95d93b11c49f7a421baeb/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2b7917f5efd95d93b11c49f7a421baeb/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/2b7c13dd98221f3ad070834d6e41d6b4/evans_test.ipynb b/_downloads/2b7c13dd98221f3ad070834d6e41d6b4/evans_test.ipynb deleted file mode 120000 index df5910c8896..00000000000 --- a/_downloads/2b7c13dd98221f3ad070834d6e41d6b4/evans_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2b7c13dd98221f3ad070834d6e41d6b4/evans_test.ipynb \ No newline at end of file diff --git a/_downloads/2b7d38f1cacd66c4a574a49da8c9b184/pcolormesh_levels.py b/_downloads/2b7d38f1cacd66c4a574a49da8c9b184/pcolormesh_levels.py deleted file mode 100644 index f5554a3d464..00000000000 --- a/_downloads/2b7d38f1cacd66c4a574a49da8c9b184/pcolormesh_levels.py +++ /dev/null @@ -1,77 +0,0 @@ -""" -========== -pcolormesh -========== - -Shows how to combine Normalization and Colormap instances to draw -"levels" in :meth:`~.axes.Axes.pcolor`, :meth:`~.axes.Axes.pcolormesh` -and :meth:`~.axes.Axes.imshow` type plots in a similar -way to the levels keyword argument to contour/contourf. - -""" - -import matplotlib -import matplotlib.pyplot as plt -from matplotlib.colors import BoundaryNorm -from matplotlib.ticker import MaxNLocator -import numpy as np - - -# make these smaller to increase the resolution -dx, dy = 0.05, 0.05 - -# generate 2 2d grids for the x & y bounds -y, x = np.mgrid[slice(1, 5 + dy, dy), - slice(1, 5 + dx, dx)] - -z = np.sin(x)**10 + np.cos(10 + y*x) * np.cos(x) - -# x and y are bounds, so z should be the value *inside* those bounds. -# Therefore, remove the last value from the z array. -z = z[:-1, :-1] -levels = MaxNLocator(nbins=15).tick_values(z.min(), z.max()) - - -# pick the desired colormap, sensible levels, and define a normalization -# instance which takes data values and translates those into levels. -cmap = plt.get_cmap('PiYG') -norm = BoundaryNorm(levels, ncolors=cmap.N, clip=True) - -fig, (ax0, ax1) = plt.subplots(nrows=2) - -im = ax0.pcolormesh(x, y, z, cmap=cmap, norm=norm) -fig.colorbar(im, ax=ax0) -ax0.set_title('pcolormesh with levels') - - -# contours are *point* based plots, so convert our bound into point -# centers -cf = ax1.contourf(x[:-1, :-1] + dx/2., - y[:-1, :-1] + dy/2., z, levels=levels, - cmap=cmap) -fig.colorbar(cf, ax=ax1) -ax1.set_title('contourf with levels') - -# adjust spacing between subplots so `ax1` title and `ax0` tick labels -# don't overlap -fig.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -matplotlib.axes.Axes.pcolormesh -matplotlib.pyplot.pcolormesh -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.BoundaryNorm -matplotlib.ticker.MaxNLocator diff --git a/_downloads/2b84cf5462fa29a41e1ce7e0918252ea/pick_event_demo.ipynb b/_downloads/2b84cf5462fa29a41e1ce7e0918252ea/pick_event_demo.ipynb deleted file mode 120000 index deedd16401c..00000000000 --- a/_downloads/2b84cf5462fa29a41e1ce7e0918252ea/pick_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2b84cf5462fa29a41e1ce7e0918252ea/pick_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/2b8686c30ce6bcda15c2e17de950c17c/customizing.py b/_downloads/2b8686c30ce6bcda15c2e17de950c17c/customizing.py deleted file mode 120000 index d697e336dff..00000000000 --- a/_downloads/2b8686c30ce6bcda15c2e17de950c17c/customizing.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2b8686c30ce6bcda15c2e17de950c17c/customizing.py \ No newline at end of file diff --git a/_downloads/2b873c4c6994af73b869e0d7913cab12/demo_gridspec06.py b/_downloads/2b873c4c6994af73b869e0d7913cab12/demo_gridspec06.py deleted file mode 120000 index 1f1b7b58f97..00000000000 --- a/_downloads/2b873c4c6994af73b869e0d7913cab12/demo_gridspec06.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2b873c4c6994af73b869e0d7913cab12/demo_gridspec06.py \ No newline at end of file diff --git a/_downloads/2b8a8458d23f0c7e2ab390a23d1a02d7/figure_size_units.ipynb b/_downloads/2b8a8458d23f0c7e2ab390a23d1a02d7/figure_size_units.ipynb deleted file mode 120000 index a4e2e93e299..00000000000 --- a/_downloads/2b8a8458d23f0c7e2ab390a23d1a02d7/figure_size_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2b8a8458d23f0c7e2ab390a23d1a02d7/figure_size_units.ipynb \ No newline at end of file diff --git a/_downloads/2b8ab845a3b0fa385bb614f88bd3ebed/accented_text.ipynb b/_downloads/2b8ab845a3b0fa385bb614f88bd3ebed/accented_text.ipynb deleted file mode 120000 index 13c026ced65..00000000000 --- a/_downloads/2b8ab845a3b0fa385bb614f88bd3ebed/accented_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2b8ab845a3b0fa385bb614f88bd3ebed/accented_text.ipynb \ No newline at end of file diff --git a/_downloads/2b8cf7a7ea455bec0f4db03b3364d8ce/eventcollection_demo.py b/_downloads/2b8cf7a7ea455bec0f4db03b3364d8ce/eventcollection_demo.py deleted file mode 100644 index abdb6e6c05f..00000000000 --- a/_downloads/2b8cf7a7ea455bec0f4db03b3364d8ce/eventcollection_demo.py +++ /dev/null @@ -1,61 +0,0 @@ -""" -==================== -EventCollection Demo -==================== - -Plot two curves, then use EventCollections to mark the locations of the x -and y data points on the respective axes for each curve -""" - -import matplotlib.pyplot as plt -from matplotlib.collections import EventCollection -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# create random data -xdata = np.random.random([2, 10]) - -# split the data into two parts -xdata1 = xdata[0, :] -xdata2 = xdata[1, :] - -# sort the data so it makes clean curves -xdata1.sort() -xdata2.sort() - -# create some y data points -ydata1 = xdata1 ** 2 -ydata2 = 1 - xdata2 ** 3 - -# plot the data -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1) -ax.plot(xdata1, ydata1, color='tab:blue') -ax.plot(xdata2, ydata2, color='tab:orange') - -# create the events marking the x data points -xevents1 = EventCollection(xdata1, color='tab:blue', linelength=0.05) -xevents2 = EventCollection(xdata2, color='tab:orange', linelength=0.05) - -# create the events marking the y data points -yevents1 = EventCollection(ydata1, color='tab:blue', linelength=0.05, - orientation='vertical') -yevents2 = EventCollection(ydata2, color='tab:orange', linelength=0.05, - orientation='vertical') - -# add the events to the axis -ax.add_collection(xevents1) -ax.add_collection(xevents2) -ax.add_collection(yevents1) -ax.add_collection(yevents2) - -# set the limits -ax.set_xlim([0, 1]) -ax.set_ylim([0, 1]) - -ax.set_title('line plot with data points') - -# display the plot -plt.show() diff --git a/_downloads/2b8e9968f1835aacef0b8ca08acda3c5/span_selector.ipynb b/_downloads/2b8e9968f1835aacef0b8ca08acda3c5/span_selector.ipynb deleted file mode 120000 index 6d966c71d80..00000000000 --- a/_downloads/2b8e9968f1835aacef0b8ca08acda3c5/span_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2b8e9968f1835aacef0b8ca08acda3c5/span_selector.ipynb \ No newline at end of file diff --git a/_downloads/2b93e48080eb301667cb3721a4b01409/date.ipynb b/_downloads/2b93e48080eb301667cb3721a4b01409/date.ipynb deleted file mode 120000 index 35b30c03b2f..00000000000 --- a/_downloads/2b93e48080eb301667cb3721a4b01409/date.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2b93e48080eb301667cb3721a4b01409/date.ipynb \ No newline at end of file diff --git a/_downloads/2b952b3692cc36f8f7a9f261042efeec/dolphin.py b/_downloads/2b952b3692cc36f8f7a9f261042efeec/dolphin.py deleted file mode 120000 index d291e1240ee..00000000000 --- a/_downloads/2b952b3692cc36f8f7a9f261042efeec/dolphin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2b952b3692cc36f8f7a9f261042efeec/dolphin.py \ No newline at end of file diff --git a/_downloads/2b970afb9db79f8cad438d6ec9b417c3/axis_equal_demo.ipynb b/_downloads/2b970afb9db79f8cad438d6ec9b417c3/axis_equal_demo.ipynb deleted file mode 120000 index 0a4c990fa82..00000000000 --- a/_downloads/2b970afb9db79f8cad438d6ec9b417c3/axis_equal_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2b970afb9db79f8cad438d6ec9b417c3/axis_equal_demo.ipynb \ No newline at end of file diff --git a/_downloads/2ba11644de127bf7a45e1cebb33ad691/contour_image.ipynb b/_downloads/2ba11644de127bf7a45e1cebb33ad691/contour_image.ipynb deleted file mode 120000 index c372effa4d0..00000000000 --- a/_downloads/2ba11644de127bf7a45e1cebb33ad691/contour_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2ba11644de127bf7a45e1cebb33ad691/contour_image.ipynb \ No newline at end of file diff --git a/_downloads/2ba253c9f99b01a0eab41739b6f62780/interpolation_methods.py b/_downloads/2ba253c9f99b01a0eab41739b6f62780/interpolation_methods.py deleted file mode 120000 index 9eed957c9d4..00000000000 --- a/_downloads/2ba253c9f99b01a0eab41739b6f62780/interpolation_methods.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2ba253c9f99b01a0eab41739b6f62780/interpolation_methods.py \ No newline at end of file diff --git a/_downloads/2bc2304732251ce053cbfabc79ded8ed/spy_demos.py b/_downloads/2bc2304732251ce053cbfabc79ded8ed/spy_demos.py deleted file mode 120000 index d16cc8faf10..00000000000 --- a/_downloads/2bc2304732251ce053cbfabc79ded8ed/spy_demos.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2bc2304732251ce053cbfabc79ded8ed/spy_demos.py \ No newline at end of file diff --git a/_downloads/2bcae304e5cdc2c64e46d2bf60b0bfb1/demo_ticklabel_alignment.ipynb b/_downloads/2bcae304e5cdc2c64e46d2bf60b0bfb1/demo_ticklabel_alignment.ipynb deleted file mode 100644 index 8b9ecb83c44..00000000000 --- a/_downloads/2bcae304e5cdc2c64e46d2bf60b0bfb1/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Ticklabel Alignment\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_subplot(ax)\n\n ax.set_yticks([0.2, 0.8])\n ax.set_yticklabels([\"short\", \"loooong\"])\n ax.set_xticks([0.2, 0.8])\n ax.set_xticklabels([r\"$\\frac{1}{2}\\pi$\", r\"$\\pi$\"])\n\n return ax\n\n\nfig = plt.figure(figsize=(3, 5))\nfig.subplots_adjust(left=0.5, hspace=0.7)\n\nax = setup_axes(fig, 311)\nax.set_ylabel(\"ha=right\")\nax.set_xlabel(\"va=baseline\")\n\nax = setup_axes(fig, 312)\nax.axis[\"left\"].major_ticklabels.set_ha(\"center\")\nax.axis[\"bottom\"].major_ticklabels.set_va(\"top\")\nax.set_ylabel(\"ha=center\")\nax.set_xlabel(\"va=top\")\n\nax = setup_axes(fig, 313)\nax.axis[\"left\"].major_ticklabels.set_ha(\"left\")\nax.axis[\"bottom\"].major_ticklabels.set_va(\"bottom\")\nax.set_ylabel(\"ha=left\")\nax.set_xlabel(\"va=bottom\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2bd525fa01746a5a0b17c8ce020d7643/dolphin.ipynb b/_downloads/2bd525fa01746a5a0b17c8ce020d7643/dolphin.ipynb deleted file mode 100644 index d00394c409f..00000000000 --- a/_downloads/2bd525fa01746a5a0b17c8ce020d7643/dolphin.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dolphins\n\n\nThis example shows how to draw, and manipulate shapes given vertices\nand nodes using the `~.path.Path`, `~.patches.PathPatch` and\n`~matplotlib.transforms` classes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.cm as cm\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Circle, PathPatch\nfrom matplotlib.path import Path\nfrom matplotlib.transforms import Affine2D\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nr = np.random.rand(50)\nt = np.random.rand(50) * np.pi * 2.0\nx = r * np.cos(t)\ny = r * np.sin(t)\n\nfig, ax = plt.subplots(figsize=(6, 6))\ncircle = Circle((0, 0), 1, facecolor='none',\n edgecolor=(0, 0.8, 0.8), linewidth=3, alpha=0.5)\nax.add_patch(circle)\n\nim = plt.imshow(np.random.random((100, 100)),\n origin='lower', cmap=cm.winter,\n interpolation='spline36',\n extent=([-1, 1, -1, 1]))\nim.set_clip_path(circle)\n\nplt.plot(x, y, 'o', color=(0.9, 0.9, 1.0), alpha=0.8)\n\n# Dolphin from OpenClipart library by Andy Fitzsimon\n# \n# \n# \n# \n# \n\ndolphin = \"\"\"\nM -0.59739425,160.18173 C -0.62740401,160.18885 -0.57867129,160.11183\n-0.57867129,160.11183 C -0.57867129,160.11183 -0.5438361,159.89315\n-0.39514638,159.81496 C -0.24645668,159.73678 -0.18316813,159.71981\n-0.18316813,159.71981 C -0.18316813,159.71981 -0.10322971,159.58124\n-0.057804323,159.58725 C -0.029723983,159.58913 -0.061841603,159.60356\n-0.071265813,159.62815 C -0.080250183,159.65325 -0.082918513,159.70554\n-0.061841203,159.71248 C -0.040763903,159.7194 -0.0066711426,159.71091\n0.077336307,159.73612 C 0.16879567,159.76377 0.28380306,159.86448\n0.31516668,159.91533 C 0.3465303,159.96618 0.5011127,160.1771\n0.5011127,160.1771 C 0.63668998,160.19238 0.67763022,160.31259\n0.66556395,160.32668 C 0.65339985,160.34212 0.66350443,160.33642\n0.64907098,160.33088 C 0.63463742,160.32533 0.61309688,160.297\n0.5789627,160.29339 C 0.54348657,160.28968 0.52329693,160.27674\n0.50728856,160.27737 C 0.49060916,160.27795 0.48965803,160.31565\n0.46114204,160.33673 C 0.43329696,160.35786 0.4570711,160.39871\n0.43309565,160.40685 C 0.4105108,160.41442 0.39416631,160.33027\n0.3954995,160.2935 C 0.39683269,160.25672 0.43807996,160.21522\n0.44567915,160.19734 C 0.45327833,160.17946 0.27946869,159.9424\n-0.061852613,159.99845 C -0.083965233,160.0427 -0.26176109,160.06683\n-0.26176109,160.06683 C -0.30127962,160.07028 -0.21167141,160.09731\n-0.24649368,160.1011 C -0.32642366,160.11569 -0.34521187,160.06895\n-0.40622293,160.0819 C -0.467234,160.09485 -0.56738444,160.17461\n-0.59739425,160.18173\n\"\"\"\n\nvertices = []\ncodes = []\nparts = dolphin.split()\ni = 0\ncode_map = {\n 'M': (Path.MOVETO, 1),\n 'C': (Path.CURVE4, 3),\n 'L': (Path.LINETO, 1)}\n\nwhile i < len(parts):\n code = parts[i]\n path_code, npoints = code_map[code]\n codes.extend([path_code] * npoints)\n vertices.extend([[float(x) for x in y.split(',')] for y in\n parts[i + 1:i + npoints + 1]])\n i += npoints + 1\nvertices = np.array(vertices, float)\nvertices[:, 1] -= 160\n\ndolphin_path = Path(vertices, codes)\ndolphin_patch = PathPatch(dolphin_path, facecolor=(0.6, 0.6, 0.6),\n edgecolor=(0.0, 0.0, 0.0))\nax.add_patch(dolphin_patch)\n\nvertices = Affine2D().rotate_deg(60).transform(vertices)\ndolphin_path2 = Path(vertices, codes)\ndolphin_patch2 = PathPatch(dolphin_path2, facecolor=(0.5, 0.5, 0.5),\n edgecolor=(0.0, 0.0, 0.0))\nax.add_patch(dolphin_patch2)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.patches.Circle\nmatplotlib.axes.Axes.add_patch\nmatplotlib.transforms\nmatplotlib.transforms.Affine2D\nmatplotlib.transforms.Affine2D.rotate_deg" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2bda8e0076f8e37b468b5ea1bfa7e4fd/rainbow_text.ipynb b/_downloads/2bda8e0076f8e37b468b5ea1bfa7e4fd/rainbow_text.ipynb deleted file mode 100644 index 6aa2c3766b8..00000000000 --- a/_downloads/2bda8e0076f8e37b468b5ea1bfa7e4fd/rainbow_text.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rainbow text\n\n\nThe example shows how to string together several text objects.\n\nHistory\n-------\nOn the matplotlib-users list back in February 2012, G\u00f6khan Sever asked the\nfollowing question:\n\n Is there a way in matplotlib to partially specify the color of a string?\n\n Example:\n\n plt.ylabel(\"Today is cloudy.\")\n\n How can I show \"today\" as red, \"is\" as green and \"cloudy.\" as blue?\n\n Thanks.\n\nPaul Ivanov responded with this answer:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib import transforms\n\n\ndef rainbow_text(x, y, strings, colors, orientation='horizontal',\n ax=None, **kwargs):\n \"\"\"\n Take a list of *strings* and *colors* and place them next to each\n other, with text strings[i] being shown in colors[i].\n\n Parameters\n ----------\n x, y : float\n Text position in data coordinates.\n strings : list of str\n The strings to draw.\n colors : list of color\n The colors to use.\n orientation : {'horizontal', 'vertical'}\n ax : Axes, optional\n The Axes to draw into. If None, the current axes will be used.\n **kwargs\n All other keyword arguments are passed to plt.text(), so you can\n set the font size, family, etc.\n \"\"\"\n if ax is None:\n ax = plt.gca()\n t = ax.transData\n canvas = ax.figure.canvas\n\n assert orientation in ['horizontal', 'vertical']\n if orientation == 'vertical':\n kwargs.update(rotation=90, verticalalignment='bottom')\n\n for s, c in zip(strings, colors):\n text = ax.text(x, y, s + \" \", color=c, transform=t, **kwargs)\n\n # Need to draw to update the text position.\n text.draw(canvas.get_renderer())\n ex = text.get_window_extent()\n if orientation == 'horizontal':\n t = transforms.offset_copy(\n text.get_transform(), x=ex.width, units='dots')\n else:\n t = transforms.offset_copy(\n text.get_transform(), y=ex.height, units='dots')\n\n\nwords = \"all unicorns poop rainbows ! ! !\".split()\ncolors = ['red', 'orange', 'gold', 'lawngreen', 'lightseagreen', 'royalblue',\n 'blueviolet']\nplt.figure(figsize=(6, 6))\nrainbow_text(0.1, 0.05, words, colors, size=18)\nrainbow_text(0.05, 0.1, words, colors, orientation='vertical', size=18)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2be34436bc73ccd36dd620a960768918/bar_unit_demo.py b/_downloads/2be34436bc73ccd36dd620a960768918/bar_unit_demo.py deleted file mode 120000 index 50ea53cfc63..00000000000 --- a/_downloads/2be34436bc73ccd36dd620a960768918/bar_unit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2be34436bc73ccd36dd620a960768918/bar_unit_demo.py \ No newline at end of file diff --git a/_downloads/2be95ec42c5bcc880df3197895632b81/embedding_webagg_sgskip.ipynb b/_downloads/2be95ec42c5bcc880df3197895632b81/embedding_webagg_sgskip.ipynb deleted file mode 120000 index 748cdbc555c..00000000000 --- a/_downloads/2be95ec42c5bcc880df3197895632b81/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2be95ec42c5bcc880df3197895632b81/embedding_webagg_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/2bf79c7e2187857ebef5ea2234cb9492/scatter_hist_locatable_axes.py b/_downloads/2bf79c7e2187857ebef5ea2234cb9492/scatter_hist_locatable_axes.py deleted file mode 120000 index 94e17256c0b..00000000000 --- a/_downloads/2bf79c7e2187857ebef5ea2234cb9492/scatter_hist_locatable_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2bf79c7e2187857ebef5ea2234cb9492/scatter_hist_locatable_axes.py \ No newline at end of file diff --git a/_downloads/2bfc521c2f267453f2f012eb4be7136d/lasso_selector_demo_sgskip.py b/_downloads/2bfc521c2f267453f2f012eb4be7136d/lasso_selector_demo_sgskip.py deleted file mode 120000 index f0ca779168f..00000000000 --- a/_downloads/2bfc521c2f267453f2f012eb4be7136d/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2bfc521c2f267453f2f012eb4be7136d/lasso_selector_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/2c0b8d7dc0dff05d371850f4ef1b83ca/legend_picking.py b/_downloads/2c0b8d7dc0dff05d371850f4ef1b83ca/legend_picking.py deleted file mode 100644 index 0fca59b1593..00000000000 --- a/_downloads/2c0b8d7dc0dff05d371850f4ef1b83ca/legend_picking.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -============== -Legend Picking -============== - -Enable picking on the legend to toggle the original line on and off -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0.0, 0.2, 0.1) -y1 = 2*np.sin(2*np.pi*t) -y2 = 4*np.sin(2*np.pi*2*t) - -fig, ax = plt.subplots() -ax.set_title('Click on legend line to toggle line on/off') -line1, = ax.plot(t, y1, lw=2, label='1 HZ') -line2, = ax.plot(t, y2, lw=2, label='2 HZ') -leg = ax.legend(loc='upper left', fancybox=True, shadow=True) -leg.get_frame().set_alpha(0.4) - - -# we will set up a dict mapping legend line to orig line, and enable -# picking on the legend line -lines = [line1, line2] -lined = dict() -for legline, origline in zip(leg.get_lines(), lines): - legline.set_picker(5) # 5 pts tolerance - lined[legline] = origline - - -def onpick(event): - # on the pick event, find the orig line corresponding to the - # legend proxy line, and toggle the visibility - legline = event.artist - origline = lined[legline] - vis = not origline.get_visible() - origline.set_visible(vis) - # Change the alpha on the line in the legend so we can see what lines - # have been toggled - if vis: - legline.set_alpha(1.0) - else: - legline.set_alpha(0.2) - fig.canvas.draw() - -fig.canvas.mpl_connect('pick_event', onpick) - -plt.show() diff --git a/_downloads/2c1357257538d5a652d7c7efda853fb4/boxplot_vs_violin.py b/_downloads/2c1357257538d5a652d7c7efda853fb4/boxplot_vs_violin.py deleted file mode 120000 index b7c0dbad252..00000000000 --- a/_downloads/2c1357257538d5a652d7c7efda853fb4/boxplot_vs_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2c1357257538d5a652d7c7efda853fb4/boxplot_vs_violin.py \ No newline at end of file diff --git a/_downloads/2c2b377a264793bdf0511226dbbae3ef/axes_grid.py b/_downloads/2c2b377a264793bdf0511226dbbae3ef/axes_grid.py deleted file mode 120000 index 8e48e27205c..00000000000 --- a/_downloads/2c2b377a264793bdf0511226dbbae3ef/axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2c2b377a264793bdf0511226dbbae3ef/axes_grid.py \ No newline at end of file diff --git a/_downloads/2c53ba3f5c909ff04f63abf961bd0af8/bars3d.py b/_downloads/2c53ba3f5c909ff04f63abf961bd0af8/bars3d.py deleted file mode 100644 index e30175ffac4..00000000000 --- a/_downloads/2c53ba3f5c909ff04f63abf961bd0af8/bars3d.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -======================================== -Create 2D bar graphs in different planes -======================================== - -Demonstrates making a 3D plot which has 2D bar graphs projected onto -planes y=0, y=1, etc. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -colors = ['r', 'g', 'b', 'y'] -yticks = [3, 2, 1, 0] -for c, k in zip(colors, yticks): - # Generate the random data for the y=k 'layer'. - xs = np.arange(20) - ys = np.random.rand(20) - - # You can provide either a single color or an array with the same length as - # xs and ys. To demonstrate this, we color the first bar of each set cyan. - cs = [c] * len(xs) - cs[0] = 'c' - - # Plot the bar graph given by xs and ys on the plane y=k with 80% opacity. - ax.bar(xs, ys, zs=k, zdir='y', color=cs, alpha=0.8) - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -# On the y axis let's only label the discrete values that we have data for. -ax.set_yticks(yticks) - -plt.show() diff --git a/_downloads/2c5910bc86494ac198bc9235400c2ca6/confidence_ellipse.ipynb b/_downloads/2c5910bc86494ac198bc9235400c2ca6/confidence_ellipse.ipynb deleted file mode 100644 index 17c53c70e45..00000000000 --- a/_downloads/2c5910bc86494ac198bc9235400c2ca6/confidence_ellipse.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plot a confidence ellipse of a two-dimensional dataset\n\n\nThis example shows how to plot a confidence ellipse of a\ntwo-dimensional dataset, using its pearson correlation coefficient.\n\nThe approach that is used to obtain the correct geometry is\nexplained and proved here:\n\nhttps://carstenschelp.github.io/2018/09/14/Plot_Confidence_Ellipse_001.html\n\nThe method avoids the use of an iterative eigen decomposition algorithm\nand makes use of the fact that a normalized covariance matrix (composed of\npearson correlation coefficients and ones) is particularly easy to handle.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Ellipse\nimport matplotlib.transforms as transforms" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The plotting function itself\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThis function plots the confidence ellipse of the covariance of the given\narray-like variables x and y. The ellipse is plotted into the given\naxes-object ax.\n\nThe radiuses of the ellipse can be controlled by n_std which is the number\nof standard deviations. The default value is 3 which makes the ellipse\nenclose 99.7% of the points (given the data is normally distributed\nlike in these examples).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def confidence_ellipse(x, y, ax, n_std=3.0, facecolor='none', **kwargs):\n \"\"\"\n Create a plot of the covariance confidence ellipse of `x` and `y`\n\n Parameters\n ----------\n x, y : array_like, shape (n, )\n Input data.\n\n ax : matplotlib.axes.Axes\n The axes object to draw the ellipse into.\n\n n_std : float\n The number of standard deviations to determine the ellipse's radiuses.\n\n Returns\n -------\n matplotlib.patches.Ellipse\n\n Other parameters\n ----------------\n kwargs : `~matplotlib.patches.Patch` properties\n \"\"\"\n if x.size != y.size:\n raise ValueError(\"x and y must be the same size\")\n\n cov = np.cov(x, y)\n pearson = cov[0, 1]/np.sqrt(cov[0, 0] * cov[1, 1])\n # Using a special case to obtain the eigenvalues of this\n # two-dimensionl dataset.\n ell_radius_x = np.sqrt(1 + pearson)\n ell_radius_y = np.sqrt(1 - pearson)\n ellipse = Ellipse((0, 0),\n width=ell_radius_x * 2,\n height=ell_radius_y * 2,\n facecolor=facecolor,\n **kwargs)\n\n # Calculating the stdandard deviation of x from\n # the squareroot of the variance and multiplying\n # with the given number of standard deviations.\n scale_x = np.sqrt(cov[0, 0]) * n_std\n mean_x = np.mean(x)\n\n # calculating the stdandard deviation of y ...\n scale_y = np.sqrt(cov[1, 1]) * n_std\n mean_y = np.mean(y)\n\n transf = transforms.Affine2D() \\\n .rotate_deg(45) \\\n .scale(scale_x, scale_y) \\\n .translate(mean_x, mean_y)\n\n ellipse.set_transform(transf + ax.transData)\n return ax.add_patch(ellipse)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A helper function to create a correlated dataset\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nCreates a random two-dimesional dataset with the specified\ntwo-dimensional mean (mu) and dimensions (scale).\nThe correlation can be controlled by the param 'dependency',\na 2x2 matrix.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def get_correlated_dataset(n, dependency, mu, scale):\n latent = np.random.randn(n, 2)\n dependent = latent.dot(dependency)\n scaled = dependent * scale\n scaled_with_offset = scaled + mu\n # return x and y of the new, correlated dataset\n return scaled_with_offset[:, 0], scaled_with_offset[:, 1]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Positive, negative and weak correlation\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nNote that the shape for the weak correlation (right) is an ellipse,\nnot a circle because x and y are differently scaled.\nHowever, the fact that x and y are uncorrelated is shown by\nthe axes of the ellipse being aligned with the x- and y-axis\nof the coordinate system.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "np.random.seed(0)\n\nPARAMETERS = {\n 'Positive correlation': np.array([[0.85, 0.35],\n [0.15, -0.65]]),\n 'Negative correlation': np.array([[0.9, -0.4],\n [0.1, -0.6]]),\n 'Weak correlation': np.array([[1, 0],\n [0, 1]]),\n}\n\nmu = 2, 4\nscale = 3, 5\n\nfig, axs = plt.subplots(1, 3, figsize=(9, 3))\nfor ax, (title, dependency) in zip(axs, PARAMETERS.items()):\n x, y = get_correlated_dataset(800, dependency, mu, scale)\n ax.scatter(x, y, s=0.5)\n\n ax.axvline(c='grey', lw=1)\n ax.axhline(c='grey', lw=1)\n\n confidence_ellipse(x, y, ax, edgecolor='red')\n\n ax.scatter(mu[0], mu[1], c='red', s=3)\n ax.set_title(title)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Different number of standard deviations\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nA plot with n_std = 3 (blue), 2 (purple) and 1 (red)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax_nstd = plt.subplots(figsize=(6, 6))\n\ndependency_nstd = np.array([\n [0.8, 0.75],\n [-0.2, 0.35]\n])\nmu = 0, 0\nscale = 8, 5\n\nax_nstd.axvline(c='grey', lw=1)\nax_nstd.axhline(c='grey', lw=1)\n\nx, y = get_correlated_dataset(500, dependency_nstd, mu, scale)\nax_nstd.scatter(x, y, s=0.5)\n\nconfidence_ellipse(x, y, ax_nstd, n_std=1,\n label=r'$1\\sigma$', edgecolor='firebrick')\nconfidence_ellipse(x, y, ax_nstd, n_std=2,\n label=r'$2\\sigma$', edgecolor='fuchsia', linestyle='--')\nconfidence_ellipse(x, y, ax_nstd, n_std=3,\n label=r'$3\\sigma$', edgecolor='blue', linestyle=':')\n\nax_nstd.scatter(mu[0], mu[1], c='red', s=3)\nax_nstd.set_title('Different standard deviations')\nax_nstd.legend()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using the keyword arguments\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nUse the kwargs specified for matplotlib.patches.Patch in order\nto have the ellipse rendered in different ways.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax_kwargs = plt.subplots(figsize=(6, 6))\ndependency_kwargs = np.array([\n [-0.8, 0.5],\n [-0.2, 0.5]\n])\nmu = 2, -3\nscale = 6, 5\n\nax_kwargs.axvline(c='grey', lw=1)\nax_kwargs.axhline(c='grey', lw=1)\n\nx, y = get_correlated_dataset(500, dependency_kwargs, mu, scale)\n# Plot the ellipse with zorder=0 in order to demonstrate\n# its transparency (caused by the use of alpha).\nconfidence_ellipse(x, y, ax_kwargs,\n alpha=0.5, facecolor='pink', edgecolor='purple', zorder=0)\n\nax_kwargs.scatter(x, y, s=0.5)\nax_kwargs.scatter(mu[0], mu[1], c='red', s=3)\nax_kwargs.set_title(f'Using kwargs')\n\nfig.subplots_adjust(hspace=0.25)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2c5bd8cfd98b4759ccc4d34f427cdcfe/animation_demo.py b/_downloads/2c5bd8cfd98b4759ccc4d34f427cdcfe/animation_demo.py deleted file mode 100644 index d83d634b48e..00000000000 --- a/_downloads/2c5bd8cfd98b4759ccc4d34f427cdcfe/animation_demo.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -================ -pyplot animation -================ - -Generating an animation by calling `~.pyplot.pause` between plotting commands. - -The method shown here is only suitable for simple, low-performance use. For -more demanding applications, look at the :mod:`animation` module and the -examples that use it. - -Note that calling `time.sleep` instead of `~.pyplot.pause` would *not* work. -""" - -import matplotlib.pyplot as plt -import numpy as np - -np.random.seed(19680801) -data = np.random.random((50, 50, 50)) - -fig, ax = plt.subplots() - -for i in range(len(data)): - ax.cla() - ax.imshow(data[i]) - ax.set_title("frame {}".format(i)) - # Note that using time.sleep does *not* work here! - plt.pause(0.1) diff --git a/_downloads/2c5e458e6c6b88c8b39432f73cb6d0c3/simple_legend01.py b/_downloads/2c5e458e6c6b88c8b39432f73cb6d0c3/simple_legend01.py deleted file mode 120000 index 674265d7a91..00000000000 --- a/_downloads/2c5e458e6c6b88c8b39432f73cb6d0c3/simple_legend01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2c5e458e6c6b88c8b39432f73cb6d0c3/simple_legend01.py \ No newline at end of file diff --git a/_downloads/2c66dce03334bfb1c3844f8135ce0376/colormap_normalizations_diverging.py b/_downloads/2c66dce03334bfb1c3844f8135ce0376/colormap_normalizations_diverging.py deleted file mode 120000 index 9650d9ca69c..00000000000 --- a/_downloads/2c66dce03334bfb1c3844f8135ce0376/colormap_normalizations_diverging.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2c66dce03334bfb1c3844f8135ce0376/colormap_normalizations_diverging.py \ No newline at end of file diff --git a/_downloads/2c67ccfb4aac11a7eb5f6b2f50fd0576/demo_colorbar_with_inset_locator.ipynb b/_downloads/2c67ccfb4aac11a7eb5f6b2f50fd0576/demo_colorbar_with_inset_locator.ipynb deleted file mode 120000 index 3068136aeca..00000000000 --- a/_downloads/2c67ccfb4aac11a7eb5f6b2f50fd0576/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2c67ccfb4aac11a7eb5f6b2f50fd0576/demo_colorbar_with_inset_locator.ipynb \ No newline at end of file diff --git a/_downloads/2c6b52049544b2d0130ba63309ca09b8/units_sample.py b/_downloads/2c6b52049544b2d0130ba63309ca09b8/units_sample.py deleted file mode 100644 index 0b99e2609b7..00000000000 --- a/_downloads/2c6b52049544b2d0130ba63309ca09b8/units_sample.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -====================== -Inches and Centimeters -====================== - -The example illustrates the ability to override default x and y units (ax1) to -inches and centimeters using the `xunits` and `yunits` parameters for the -`plot` function. Note that conversions are applied to get numbers to correct -units. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` - -""" -from basic_units import cm, inch -import matplotlib.pyplot as plt -import numpy as np - -cms = cm * np.arange(0, 10, 2) - -fig, axs = plt.subplots(2, 2) - -axs[0, 0].plot(cms, cms) - -axs[0, 1].plot(cms, cms, xunits=cm, yunits=inch) - -axs[1, 0].plot(cms, cms, xunits=inch, yunits=cm) -axs[1, 0].set_xlim(3, 6) # scalars are interpreted in current units - -axs[1, 1].plot(cms, cms, xunits=inch, yunits=inch) -axs[1, 1].set_xlim(3*cm, 6*cm) # cm are converted to inches - -plt.show() diff --git a/_downloads/2c6d242b6d95f856b145c00d8bf43a4b/simple_axisline4.py b/_downloads/2c6d242b6d95f856b145c00d8bf43a4b/simple_axisline4.py deleted file mode 120000 index 62486d2ff1b..00000000000 --- a/_downloads/2c6d242b6d95f856b145c00d8bf43a4b/simple_axisline4.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2c6d242b6d95f856b145c00d8bf43a4b/simple_axisline4.py \ No newline at end of file diff --git a/_downloads/2c6e9720d8a524103dac445099b0b133/gridspec_and_subplots.py b/_downloads/2c6e9720d8a524103dac445099b0b133/gridspec_and_subplots.py deleted file mode 100644 index fbb7ebd013a..00000000000 --- a/_downloads/2c6e9720d8a524103dac445099b0b133/gridspec_and_subplots.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -================================================== -Combining two subplots using subplots and GridSpec -================================================== - -Sometimes we want to combine two subplots in an axes layout created with -`~.Figure.subplots`. We can get the `~.gridspec.GridSpec` from the axes -and then remove the covered axes and fill the gap with a new bigger axes. -Here we create a layout with the bottom two axes in the last column combined. - -See also :doc:`/tutorials/intermediate/gridspec`. -""" - -import matplotlib.pyplot as plt - -fig, axs = plt.subplots(ncols=3, nrows=3) -gs = axs[1, 2].get_gridspec() -# remove the underlying axes -for ax in axs[1:, -1]: - ax.remove() -axbig = fig.add_subplot(gs[1:, -1]) -axbig.annotate('Big Axes \nGridSpec[1:, -1]', (0.1, 0.5), - xycoords='axes fraction', va='center') - -fig.tight_layout() - -plt.show() diff --git a/_downloads/2c732fa15c704599a5d571461e7833fa/rasterization_demo.ipynb b/_downloads/2c732fa15c704599a5d571461e7833fa/rasterization_demo.ipynb deleted file mode 120000 index 14e8ba1da4f..00000000000 --- a/_downloads/2c732fa15c704599a5d571461e7833fa/rasterization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2c732fa15c704599a5d571461e7833fa/rasterization_demo.ipynb \ No newline at end of file diff --git a/_downloads/2c7e13ff6dd9d7418de214bcbf773ff8/spine_placement_demo.ipynb b/_downloads/2c7e13ff6dd9d7418de214bcbf773ff8/spine_placement_demo.ipynb deleted file mode 100644 index 343dec99e9f..00000000000 --- a/_downloads/2c7e13ff6dd9d7418de214bcbf773ff8/spine_placement_demo.ipynb +++ /dev/null @@ -1,101 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spine Placement Demo\n\n\nAdjusting the location and appearance of axis spines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nx = np.linspace(-np.pi, np.pi, 100)\ny = 2 * np.sin(x)\n\nax = fig.add_subplot(2, 2, 1)\nax.set_title('centered spines')\nax.plot(x, y)\nax.spines['left'].set_position('center')\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position('center')\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')\n\nax = fig.add_subplot(2, 2, 2)\nax.set_title('zeroed spines')\nax.plot(x, y)\nax.spines['left'].set_position('zero')\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position('zero')\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')\n\nax = fig.add_subplot(2, 2, 3)\nax.set_title('spines at axes (0.6, 0.1)')\nax.plot(x, y)\nax.spines['left'].set_position(('axes', 0.6))\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position(('axes', 0.1))\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')\n\nax = fig.add_subplot(2, 2, 4)\nax.set_title('spines at data (1, 2)')\nax.plot(x, y)\nax.spines['left'].set_position(('data', 1))\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position(('data', 2))\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define a method that adjusts the location of the axis spines\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def adjust_spines(ax, spines):\n for loc, spine in ax.spines.items():\n if loc in spines:\n spine.set_position(('outward', 10)) # outward by 10 points\n spine.set_smart_bounds(True)\n else:\n spine.set_color('none') # don't draw spine\n\n # turn off ticks where there is no spine\n if 'left' in spines:\n ax.yaxis.set_ticks_position('left')\n else:\n # no yaxis ticks\n ax.yaxis.set_ticks([])\n\n if 'bottom' in spines:\n ax.xaxis.set_ticks_position('bottom')\n else:\n # no xaxis ticks\n ax.xaxis.set_ticks([])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create another figure using our new ``adjust_spines`` method\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nx = np.linspace(0, 2 * np.pi, 100)\ny = 2 * np.sin(x)\n\nax = fig.add_subplot(2, 2, 1)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, ['left'])\n\nax = fig.add_subplot(2, 2, 2)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, [])\n\nax = fig.add_subplot(2, 2, 3)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, ['left', 'bottom'])\n\nax = fig.add_subplot(2, 2, 4)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, ['bottom'])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2c840603c9fd2df8e5bbcc1c9f72d121/usetex_fonteffects.ipynb b/_downloads/2c840603c9fd2df8e5bbcc1c9f72d121/usetex_fonteffects.ipynb deleted file mode 120000 index 6fd459a2fc5..00000000000 --- a/_downloads/2c840603c9fd2df8e5bbcc1c9f72d121/usetex_fonteffects.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2c840603c9fd2df8e5bbcc1c9f72d121/usetex_fonteffects.ipynb \ No newline at end of file diff --git a/_downloads/2c866deddf29af67b119d18eb6cecbb2/interpolation_methods.py b/_downloads/2c866deddf29af67b119d18eb6cecbb2/interpolation_methods.py deleted file mode 120000 index 5a4842d75b1..00000000000 --- a/_downloads/2c866deddf29af67b119d18eb6cecbb2/interpolation_methods.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2c866deddf29af67b119d18eb6cecbb2/interpolation_methods.py \ No newline at end of file diff --git a/_downloads/2c892628cd1b60893c558ad9cfc8c194/titles_demo.ipynb b/_downloads/2c892628cd1b60893c558ad9cfc8c194/titles_demo.ipynb deleted file mode 120000 index 6d43f914d4e..00000000000 --- a/_downloads/2c892628cd1b60893c558ad9cfc8c194/titles_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2c892628cd1b60893c558ad9cfc8c194/titles_demo.ipynb \ No newline at end of file diff --git a/_downloads/2cad84cc4f2d241d8d59f1feb7076fb8/voxels_torus.ipynb b/_downloads/2cad84cc4f2d241d8d59f1feb7076fb8/voxels_torus.ipynb deleted file mode 120000 index d12aa3175c8..00000000000 --- a/_downloads/2cad84cc4f2d241d8d59f1feb7076fb8/voxels_torus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2cad84cc4f2d241d8d59f1feb7076fb8/voxels_torus.ipynb \ No newline at end of file diff --git a/_downloads/2cb0b5bfd5702a8cce7888cd6265db2f/simple_axisartist1.py b/_downloads/2cb0b5bfd5702a8cce7888cd6265db2f/simple_axisartist1.py deleted file mode 120000 index ccaf09b5260..00000000000 --- a/_downloads/2cb0b5bfd5702a8cce7888cd6265db2f/simple_axisartist1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2cb0b5bfd5702a8cce7888cd6265db2f/simple_axisartist1.py \ No newline at end of file diff --git a/_downloads/2cb7d3843bb32698441e5dd6aa1b637b/bar_stacked.py b/_downloads/2cb7d3843bb32698441e5dd6aa1b637b/bar_stacked.py deleted file mode 100644 index d5bb2eca958..00000000000 --- a/_downloads/2cb7d3843bb32698441e5dd6aa1b637b/bar_stacked.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -================= -Stacked Bar Graph -================= - -This is an example of creating a stacked bar plot with error bars -using `~matplotlib.pyplot.bar`. Note the parameters *yerr* used for -error bars, and *bottom* to stack the women's bars on top of the men's -bars. - -""" - -import numpy as np -import matplotlib.pyplot as plt - - -N = 5 -menMeans = (20, 35, 30, 35, 27) -womenMeans = (25, 32, 34, 20, 25) -menStd = (2, 3, 4, 1, 2) -womenStd = (3, 5, 2, 3, 3) -ind = np.arange(N) # the x locations for the groups -width = 0.35 # the width of the bars: can also be len(x) sequence - -p1 = plt.bar(ind, menMeans, width, yerr=menStd) -p2 = plt.bar(ind, womenMeans, width, - bottom=menMeans, yerr=womenStd) - -plt.ylabel('Scores') -plt.title('Scores by group and gender') -plt.xticks(ind, ('G1', 'G2', 'G3', 'G4', 'G5')) -plt.yticks(np.arange(0, 81, 10)) -plt.legend((p1[0], p2[0]), ('Men', 'Women')) - -plt.show() diff --git a/_downloads/2cb81f1511d1262aef4f0a62b3d857d9/dollar_ticks.py b/_downloads/2cb81f1511d1262aef4f0a62b3d857d9/dollar_ticks.py deleted file mode 120000 index 6572f88f5bc..00000000000 --- a/_downloads/2cb81f1511d1262aef4f0a62b3d857d9/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2cb81f1511d1262aef4f0a62b3d857d9/dollar_ticks.py \ No newline at end of file diff --git a/_downloads/2cbe951a3887f32c1e3d4bf832e1b900/demo_imagegrid_aspect.py b/_downloads/2cbe951a3887f32c1e3d4bf832e1b900/demo_imagegrid_aspect.py deleted file mode 100644 index 3369777460a..00000000000 --- a/_downloads/2cbe951a3887f32c1e3d4bf832e1b900/demo_imagegrid_aspect.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -===================== -Demo Imagegrid Aspect -===================== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1 import ImageGrid -fig = plt.figure() - -grid1 = ImageGrid(fig, 121, (2, 2), axes_pad=0.1, - aspect=True, share_all=True) - -for i in [0, 1]: - grid1[i].set_aspect(2) - - -grid2 = ImageGrid(fig, 122, (2, 2), axes_pad=0.1, - aspect=True, share_all=True) - - -for i in [1, 3]: - grid2[i].set_aspect(2) - -plt.show() diff --git a/_downloads/2cc35e13e4333906ac8e688f65cf1dda/set_and_get.ipynb b/_downloads/2cc35e13e4333906ac8e688f65cf1dda/set_and_get.ipynb deleted file mode 120000 index 95b8e88d483..00000000000 --- a/_downloads/2cc35e13e4333906ac8e688f65cf1dda/set_and_get.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2cc35e13e4333906ac8e688f65cf1dda/set_and_get.ipynb \ No newline at end of file diff --git a/_downloads/2cd32cbc3df6f6b3b3eddeac6700f3ed/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/2cd32cbc3df6f6b3b3eddeac6700f3ed/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 100644 index e41fc71b958..00000000000 --- a/_downloads/2cd32cbc3df6f6b3b3eddeac6700f3ed/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Make Room For Ylabel Using Axesgrid\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import make_axes_locatable\nfrom mpl_toolkits.axes_grid1.axes_divider import make_axes_area_auto_adjustable\n\n\nif __name__ == \"__main__\":\n\n import matplotlib.pyplot as plt\n\n def ex1():\n plt.figure(1)\n ax = plt.axes([0, 0, 1, 1])\n #ax = plt.subplot(111)\n\n ax.set_yticks([0.5])\n ax.set_yticklabels([\"very long label\"])\n\n make_axes_area_auto_adjustable(ax)\n\n def ex2():\n\n plt.figure(2)\n ax1 = plt.axes([0, 0, 1, 0.5])\n ax2 = plt.axes([0, 0.5, 1, 0.5])\n\n ax1.set_yticks([0.5])\n ax1.set_yticklabels([\"very long label\"])\n ax1.set_ylabel(\"Y label\")\n\n ax2.set_title(\"Title\")\n\n make_axes_area_auto_adjustable(ax1, pad=0.1, use_axes=[ax1, ax2])\n make_axes_area_auto_adjustable(ax2, pad=0.1, use_axes=[ax1, ax2])\n\n def ex3():\n\n fig = plt.figure(3)\n ax1 = plt.axes([0, 0, 1, 1])\n divider = make_axes_locatable(ax1)\n\n ax2 = divider.new_horizontal(\"100%\", pad=0.3, sharey=ax1)\n ax2.tick_params(labelleft=False)\n fig.add_axes(ax2)\n\n divider.add_auto_adjustable_area(use_axes=[ax1], pad=0.1,\n adjust_dirs=[\"left\"])\n divider.add_auto_adjustable_area(use_axes=[ax2], pad=0.1,\n adjust_dirs=[\"right\"])\n divider.add_auto_adjustable_area(use_axes=[ax1, ax2], pad=0.1,\n adjust_dirs=[\"top\", \"bottom\"])\n\n ax1.set_yticks([0.5])\n ax1.set_yticklabels([\"very long label\"])\n\n ax2.set_title(\"Title\")\n ax2.set_xlabel(\"X - Label\")\n\n ex1()\n ex2()\n ex3()\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2cd38b3088cb656db96587c1083766e8/grayscale.ipynb b/_downloads/2cd38b3088cb656db96587c1083766e8/grayscale.ipynb deleted file mode 120000 index 78ee79501e6..00000000000 --- a/_downloads/2cd38b3088cb656db96587c1083766e8/grayscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2cd38b3088cb656db96587c1083766e8/grayscale.ipynb \ No newline at end of file diff --git a/_downloads/2cdac52f3199fe36b5469ca6c986a28d/tutorials_jupyter.zip b/_downloads/2cdac52f3199fe36b5469ca6c986a28d/tutorials_jupyter.zip deleted file mode 120000 index 96fc49fa207..00000000000 --- a/_downloads/2cdac52f3199fe36b5469ca6c986a28d/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.0/_downloads/2cdac52f3199fe36b5469ca6c986a28d/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/2cdbba89823de351d865c667a9dfa070/print_stdout_sgskip.py b/_downloads/2cdbba89823de351d865c667a9dfa070/print_stdout_sgskip.py deleted file mode 120000 index f4b47db1b66..00000000000 --- a/_downloads/2cdbba89823de351d865c667a9dfa070/print_stdout_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2cdbba89823de351d865c667a9dfa070/print_stdout_sgskip.py \ No newline at end of file diff --git a/_downloads/2ce781705c7b4f3ef1b2523e649a3bcc/bar_demo2.ipynb b/_downloads/2ce781705c7b4f3ef1b2523e649a3bcc/bar_demo2.ipynb deleted file mode 120000 index c77fe0e3ad5..00000000000 --- a/_downloads/2ce781705c7b4f3ef1b2523e649a3bcc/bar_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2ce781705c7b4f3ef1b2523e649a3bcc/bar_demo2.ipynb \ No newline at end of file diff --git a/_downloads/2ce916f23ef7d2ee79a69801e4c430aa/svg_filter_pie.ipynb b/_downloads/2ce916f23ef7d2ee79a69801e4c430aa/svg_filter_pie.ipynb deleted file mode 100644 index a1e1f1314d9..00000000000 --- a/_downloads/2ce916f23ef7d2ee79a69801e4c430aa/svg_filter_pie.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Filter Pie\n\n\nDemonstrate SVG filtering effects which might be used with mpl.\nThe pie chart drawing code is borrowed from pie_demo.py\n\nNote that the filtering effects are only effective if your svg renderer\nsupport it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import Shadow\n\n# make a square figure and axes\nfig = plt.figure(figsize=(6, 6))\nax = fig.add_axes([0.1, 0.1, 0.8, 0.8])\n\nlabels = 'Frogs', 'Hogs', 'Dogs', 'Logs'\nfracs = [15, 30, 45, 10]\n\nexplode = (0, 0.05, 0, 0)\n\n# We want to draw the shadow for each pie but we will not use \"shadow\"\n# option as it does'n save the references to the shadow patches.\npies = ax.pie(fracs, explode=explode, labels=labels, autopct='%1.1f%%')\n\nfor w in pies[0]:\n # set the id with the label.\n w.set_gid(w.get_label())\n\n # we don't want to draw the edge of the pie\n w.set_edgecolor(\"none\")\n\nfor w in pies[0]:\n # create shadow patch\n s = Shadow(w, -0.01, -0.01)\n s.set_gid(w.get_gid() + \"_shadow\")\n s.set_zorder(w.get_zorder() - 0.1)\n ax.add_patch(s)\n\n\n# save\nfrom io import BytesIO\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\nimport xml.etree.cElementTree as ET\n\n\n# filter definition for shadow using a gaussian blur\n# and lightening effect.\n# The lightening filter is copied from http://www.w3.org/TR/SVG/filters.html\n\n# I tested it with Inkscape and Firefox3. \"Gaussian blur\" is supported\n# in both, but the lightening effect only in the Inkscape. Also note\n# that, Inkscape's exporting also may not support it.\n\nfilter_def = \"\"\"\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\"\"\"\n\n\ntree, xmlid = ET.XMLID(f.getvalue())\n\n# insert the filter definition in the svg dom tree.\ntree.insert(0, ET.XML(filter_def))\n\nfor i, pie_name in enumerate(labels):\n pie = xmlid[pie_name]\n pie.set(\"filter\", 'url(#MyFilter)')\n\n shadow = xmlid[pie_name + \"_shadow\"]\n shadow.set(\"filter\", 'url(#dropshadow)')\n\nfn = \"svg_filter_pie.svg\"\nprint(\"Saving '%s'\" % fn)\nET.ElementTree(tree).write(fn)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2d002a308527bd2c773b940d2aaaedce/marker_path.py b/_downloads/2d002a308527bd2c773b940d2aaaedce/marker_path.py deleted file mode 120000 index 973a8ff9597..00000000000 --- a/_downloads/2d002a308527bd2c773b940d2aaaedce/marker_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2d002a308527bd2c773b940d2aaaedce/marker_path.py \ No newline at end of file diff --git a/_downloads/2d00e50fdcfdd4e451515013bc524501/set_and_get.py b/_downloads/2d00e50fdcfdd4e451515013bc524501/set_and_get.py deleted file mode 120000 index ed48a350cc7..00000000000 --- a/_downloads/2d00e50fdcfdd4e451515013bc524501/set_and_get.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2d00e50fdcfdd4e451515013bc524501/set_and_get.py \ No newline at end of file diff --git a/_downloads/2d0407d475dbd08bc13e70bc3701bff9/trisurf3d.ipynb b/_downloads/2d0407d475dbd08bc13e70bc3701bff9/trisurf3d.ipynb deleted file mode 120000 index 93787eb332f..00000000000 --- a/_downloads/2d0407d475dbd08bc13e70bc3701bff9/trisurf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2d0407d475dbd08bc13e70bc3701bff9/trisurf3d.ipynb \ No newline at end of file diff --git a/_downloads/2d11facc4b72d8cc8353ad24ad7a23a6/axis_direction_demo_step04.ipynb b/_downloads/2d11facc4b72d8cc8353ad24ad7a23a6/axis_direction_demo_step04.ipynb deleted file mode 120000 index 390ba92dce0..00000000000 --- a/_downloads/2d11facc4b72d8cc8353ad24ad7a23a6/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d11facc4b72d8cc8353ad24ad7a23a6/axis_direction_demo_step04.ipynb \ No newline at end of file diff --git a/_downloads/2d1731cddf83588a42fbd25115cadc7e/colormap-manipulation.ipynb b/_downloads/2d1731cddf83588a42fbd25115cadc7e/colormap-manipulation.ipynb deleted file mode 120000 index bbd7c3b2069..00000000000 --- a/_downloads/2d1731cddf83588a42fbd25115cadc7e/colormap-manipulation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2d1731cddf83588a42fbd25115cadc7e/colormap-manipulation.ipynb \ No newline at end of file diff --git a/_downloads/2d200009774ea8bb5f677ee91da8f735/tex_demo.py b/_downloads/2d200009774ea8bb5f677ee91da8f735/tex_demo.py deleted file mode 120000 index ea0db9748d7..00000000000 --- a/_downloads/2d200009774ea8bb5f677ee91da8f735/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d200009774ea8bb5f677ee91da8f735/tex_demo.py \ No newline at end of file diff --git a/_downloads/2d213ab03c791bc8d0541a42d9187486/text_props.py b/_downloads/2d213ab03c791bc8d0541a42d9187486/text_props.py deleted file mode 120000 index 7d78be927ae..00000000000 --- a/_downloads/2d213ab03c791bc8d0541a42d9187486/text_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2d213ab03c791bc8d0541a42d9187486/text_props.py \ No newline at end of file diff --git a/_downloads/2d25ba7d218519de8ef90b5a821aa526/topographic_hillshading.py b/_downloads/2d25ba7d218519de8ef90b5a821aa526/topographic_hillshading.py deleted file mode 120000 index 6e93ef146b1..00000000000 --- a/_downloads/2d25ba7d218519de8ef90b5a821aa526/topographic_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2d25ba7d218519de8ef90b5a821aa526/topographic_hillshading.py \ No newline at end of file diff --git a/_downloads/2d38e5b0dadc9ad9d2343f5dd91eed6a/aspect_loglog.ipynb b/_downloads/2d38e5b0dadc9ad9d2343f5dd91eed6a/aspect_loglog.ipynb deleted file mode 120000 index dde4d2bffaf..00000000000 --- a/_downloads/2d38e5b0dadc9ad9d2343f5dd91eed6a/aspect_loglog.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d38e5b0dadc9ad9d2343f5dd91eed6a/aspect_loglog.ipynb \ No newline at end of file diff --git a/_downloads/2d54336bf25f6049605f13d8b058845b/violinplot.ipynb b/_downloads/2d54336bf25f6049605f13d8b058845b/violinplot.ipynb deleted file mode 100644 index 97518cc6749..00000000000 --- a/_downloads/2d54336bf25f6049605f13d8b058845b/violinplot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Violin plot basics\n\n\nViolin plots are similar to histograms and box plots in that they show\nan abstract representation of the probability distribution of the\nsample. Rather than showing counts of data points that fall into bins\nor order statistics, violin plots use kernel density estimation (KDE) to\ncompute an empirical distribution of the sample. That computation\nis controlled by several parameters. This example demonstrates how to\nmodify the number of points at which the KDE is evaluated (``points``)\nand how to modify the band-width of the KDE (``bw_method``).\n\nFor more information on violin plots and KDE, the scikit-learn docs\nhave a great section: http://scikit-learn.org/stable/modules/density.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# fake data\nfs = 10 # fontsize\npos = [1, 2, 4, 5, 7, 8]\ndata = [np.random.normal(0, std, size=100) for std in pos]\n\nfig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6))\n\naxes[0, 0].violinplot(data, pos, points=20, widths=0.3,\n showmeans=True, showextrema=True, showmedians=True)\naxes[0, 0].set_title('Custom violinplot 1', fontsize=fs)\n\naxes[0, 1].violinplot(data, pos, points=40, widths=0.5,\n showmeans=True, showextrema=True, showmedians=True,\n bw_method='silverman')\naxes[0, 1].set_title('Custom violinplot 2', fontsize=fs)\n\naxes[0, 2].violinplot(data, pos, points=60, widths=0.7, showmeans=True,\n showextrema=True, showmedians=True, bw_method=0.5)\naxes[0, 2].set_title('Custom violinplot 3', fontsize=fs)\n\naxes[1, 0].violinplot(data, pos, points=80, vert=False, widths=0.7,\n showmeans=True, showextrema=True, showmedians=True)\naxes[1, 0].set_title('Custom violinplot 4', fontsize=fs)\n\naxes[1, 1].violinplot(data, pos, points=100, vert=False, widths=0.9,\n showmeans=True, showextrema=True, showmedians=True,\n bw_method='silverman')\naxes[1, 1].set_title('Custom violinplot 5', fontsize=fs)\n\naxes[1, 2].violinplot(data, pos, points=200, vert=False, widths=1.1,\n showmeans=True, showextrema=True, showmedians=True,\n bw_method=0.5)\naxes[1, 2].set_title('Custom violinplot 6', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yticklabels([])\n\nfig.suptitle(\"Violin Plotting Examples\")\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2d5797387674ad541d7f4cf064beb432/whats_new_99_spines.py b/_downloads/2d5797387674ad541d7f4cf064beb432/whats_new_99_spines.py deleted file mode 100644 index a4050836c7c..00000000000 --- a/_downloads/2d5797387674ad541d7f4cf064beb432/whats_new_99_spines.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -===================== -Whats New 0.99 Spines -===================== - -""" -import matplotlib.pyplot as plt -import numpy as np - - -def adjust_spines(ax,spines): - for loc, spine in ax.spines.items(): - if loc in spines: - spine.set_position(('outward', 10)) # outward by 10 points - else: - spine.set_color('none') # don't draw spine - - # turn off ticks where there is no spine - if 'left' in spines: - ax.yaxis.set_ticks_position('left') - else: - # no yaxis ticks - ax.yaxis.set_ticks([]) - - if 'bottom' in spines: - ax.xaxis.set_ticks_position('bottom') - else: - # no xaxis ticks - ax.xaxis.set_ticks([]) - -fig = plt.figure() - -x = np.linspace(0,2*np.pi,100) -y = 2*np.sin(x) - -ax = fig.add_subplot(2,2,1) -ax.plot(x,y) -adjust_spines(ax,['left']) - -ax = fig.add_subplot(2,2,2) -ax.plot(x,y) -adjust_spines(ax,[]) - -ax = fig.add_subplot(2,2,3) -ax.plot(x,y) -adjust_spines(ax,['left','bottom']) - -ax = fig.add_subplot(2,2,4) -ax.plot(x,y) -adjust_spines(ax,['bottom']) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axis.Axis.set_ticks -matplotlib.axis.XAxis.set_ticks_position -matplotlib.axis.YAxis.set_ticks_position -matplotlib.spines -matplotlib.spines.Spine -matplotlib.spines.Spine.set_color -matplotlib.spines.Spine.set_position diff --git a/_downloads/2d606a62e1d303beffd41fb8bf3bfb35/text_props.ipynb b/_downloads/2d606a62e1d303beffd41fb8bf3bfb35/text_props.ipynb deleted file mode 120000 index 346ee039457..00000000000 --- a/_downloads/2d606a62e1d303beffd41fb8bf3bfb35/text_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d606a62e1d303beffd41fb8bf3bfb35/text_props.ipynb \ No newline at end of file diff --git a/_downloads/2d636f361d6c4d193b00e03241a15176/arrow_demo.py b/_downloads/2d636f361d6c4d193b00e03241a15176/arrow_demo.py deleted file mode 120000 index 4a9a6cdfb0f..00000000000 --- a/_downloads/2d636f361d6c4d193b00e03241a15176/arrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2d636f361d6c4d193b00e03241a15176/arrow_demo.py \ No newline at end of file diff --git a/_downloads/2d69341ec2ec88cd66e3c1183fa8ac3e/text_commands.py b/_downloads/2d69341ec2ec88cd66e3c1183fa8ac3e/text_commands.py deleted file mode 120000 index 4214071eb3c..00000000000 --- a/_downloads/2d69341ec2ec88cd66e3c1183fa8ac3e/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2d69341ec2ec88cd66e3c1183fa8ac3e/text_commands.py \ No newline at end of file diff --git a/_downloads/2d69c88042df90ff712382498d30ee57/custom_cmap.ipynb b/_downloads/2d69c88042df90ff712382498d30ee57/custom_cmap.ipynb deleted file mode 120000 index 107cda376da..00000000000 --- a/_downloads/2d69c88042df90ff712382498d30ee57/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d69c88042df90ff712382498d30ee57/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/2d6b8e81608ecb4383d20d5637cff5f8/arctest.py b/_downloads/2d6b8e81608ecb4383d20d5637cff5f8/arctest.py deleted file mode 120000 index 09925770bac..00000000000 --- a/_downloads/2d6b8e81608ecb4383d20d5637cff5f8/arctest.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/2d6b8e81608ecb4383d20d5637cff5f8/arctest.py \ No newline at end of file diff --git a/_downloads/2d6dce2e26e0b1a2089573bd3c098e28/barcode_demo.py b/_downloads/2d6dce2e26e0b1a2089573bd3c098e28/barcode_demo.py deleted file mode 100644 index 9c71084ca49..00000000000 --- a/_downloads/2d6dce2e26e0b1a2089573bd3c098e28/barcode_demo.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -============ -Barcode Demo -============ - -This demo shows how to produce a one-dimensional image, or "bar code". -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# the bar -x = np.random.rand(500) > 0.7 - -barprops = dict(aspect='auto', cmap='binary', interpolation='nearest') - -fig = plt.figure() - -# a vertical barcode -ax1 = fig.add_axes([0.1, 0.1, 0.1, 0.8]) -ax1.set_axis_off() -ax1.imshow(x.reshape((-1, 1)), **barprops) - -# a horizontal barcode -ax2 = fig.add_axes([0.3, 0.4, 0.6, 0.2]) -ax2.set_axis_off() -ax2.imshow(x.reshape((1, -1)), **barprops) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/2d720906eef8bccd34efb03134c8b59e/zoom_inset_axes.ipynb b/_downloads/2d720906eef8bccd34efb03134c8b59e/zoom_inset_axes.ipynb deleted file mode 120000 index f4619ae47d1..00000000000 --- a/_downloads/2d720906eef8bccd34efb03134c8b59e/zoom_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2d720906eef8bccd34efb03134c8b59e/zoom_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/2d7a0d697b65d7f49b08fba26b5fe109/voxels_numpy_logo.py b/_downloads/2d7a0d697b65d7f49b08fba26b5fe109/voxels_numpy_logo.py deleted file mode 120000 index 350dace8e11..00000000000 --- a/_downloads/2d7a0d697b65d7f49b08fba26b5fe109/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d7a0d697b65d7f49b08fba26b5fe109/voxels_numpy_logo.py \ No newline at end of file diff --git a/_downloads/2d7ca340cac7b02f13377298664af47e/plot_streamplot.py b/_downloads/2d7ca340cac7b02f13377298664af47e/plot_streamplot.py deleted file mode 120000 index 2f214015e73..00000000000 --- a/_downloads/2d7ca340cac7b02f13377298664af47e/plot_streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d7ca340cac7b02f13377298664af47e/plot_streamplot.py \ No newline at end of file diff --git a/_downloads/2d85d9a9bcf3c30fe3ca28c1daa99ea1/annotate_transform.ipynb b/_downloads/2d85d9a9bcf3c30fe3ca28c1daa99ea1/annotate_transform.ipynb deleted file mode 100644 index 236481b662e..00000000000 --- a/_downloads/2d85d9a9bcf3c30fe3ca28c1daa99ea1/annotate_transform.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Transform\n\n\nThis example shows how to use different coordinate systems for annotations.\nFor a complete overview of the annotation capabilities, also see the\n:doc:`annotation tutorial`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = np.arange(0, 10, 0.005)\ny = np.exp(-x/2.) * np.sin(2*np.pi*x)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.set_xlim(0, 10)\nax.set_ylim(-1, 1)\n\nxdata, ydata = 5, 0\nxdisplay, ydisplay = ax.transData.transform_point((xdata, ydata))\n\nbbox = dict(boxstyle=\"round\", fc=\"0.8\")\narrowprops = dict(\n arrowstyle = \"->\",\n connectionstyle = \"angle,angleA=0,angleB=90,rad=10\")\n\noffset = 72\nax.annotate('data = (%.1f, %.1f)'%(xdata, ydata),\n (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\n\ndisp = ax.annotate('display = (%.1f, %.1f)'%(xdisplay, ydisplay),\n (xdisplay, ydisplay), xytext=(0.5*offset, -offset),\n xycoords='figure pixels',\n textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.transforms.Transform.transform_point\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2d93c172a0e3842ed12e6211628fe0f5/fancytextbox_demo.py b/_downloads/2d93c172a0e3842ed12e6211628fe0f5/fancytextbox_demo.py deleted file mode 120000 index c0c24c3b68e..00000000000 --- a/_downloads/2d93c172a0e3842ed12e6211628fe0f5/fancytextbox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2d93c172a0e3842ed12e6211628fe0f5/fancytextbox_demo.py \ No newline at end of file diff --git a/_downloads/2d9437c073bf0dee55fa8c611b763326/image_transparency_blend.py b/_downloads/2d9437c073bf0dee55fa8c611b763326/image_transparency_blend.py deleted file mode 120000 index b5c293c4106..00000000000 --- a/_downloads/2d9437c073bf0dee55fa8c611b763326/image_transparency_blend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d9437c073bf0dee55fa8c611b763326/image_transparency_blend.py \ No newline at end of file diff --git a/_downloads/2d962e0e74d3b2c6d0281afae906bd4c/pick_event_demo2.ipynb b/_downloads/2d962e0e74d3b2c6d0281afae906bd4c/pick_event_demo2.ipynb deleted file mode 120000 index dd35167021c..00000000000 --- a/_downloads/2d962e0e74d3b2c6d0281afae906bd4c/pick_event_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2d962e0e74d3b2c6d0281afae906bd4c/pick_event_demo2.ipynb \ No newline at end of file diff --git a/_downloads/2d9cfa13c32d1c42c7c8afa1f29c6702/embedding_in_qt_sgskip.ipynb b/_downloads/2d9cfa13c32d1c42c7c8afa1f29c6702/embedding_in_qt_sgskip.ipynb deleted file mode 120000 index fa3c37e70bc..00000000000 --- a/_downloads/2d9cfa13c32d1c42c7c8afa1f29c6702/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2d9cfa13c32d1c42c7c8afa1f29c6702/embedding_in_qt_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/2da1b8bcbdce03ff25d01ccf6ada39b9/demo_ribbon_box.ipynb b/_downloads/2da1b8bcbdce03ff25d01ccf6ada39b9/demo_ribbon_box.ipynb deleted file mode 120000 index 086e9eb5284..00000000000 --- a/_downloads/2da1b8bcbdce03ff25d01ccf6ada39b9/demo_ribbon_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2da1b8bcbdce03ff25d01ccf6ada39b9/demo_ribbon_box.ipynb \ No newline at end of file diff --git a/_downloads/2dc0b600c5a44dd0a9ee2d1b44a67235/pyplot.py b/_downloads/2dc0b600c5a44dd0a9ee2d1b44a67235/pyplot.py deleted file mode 100644 index f9661f5d40e..00000000000 --- a/_downloads/2dc0b600c5a44dd0a9ee2d1b44a67235/pyplot.py +++ /dev/null @@ -1,478 +0,0 @@ -""" -=============== -Pyplot tutorial -=============== - -An introduction to the pyplot interface. - -""" - -############################################################################### -# Intro to pyplot -# =============== -# -# :mod:`matplotlib.pyplot` is a collection of command style functions -# that make matplotlib work like MATLAB. -# Each ``pyplot`` function makes -# some change to a figure: e.g., creates a figure, creates a plotting area -# in a figure, plots some lines in a plotting area, decorates the plot -# with labels, etc. -# -# In :mod:`matplotlib.pyplot` various states are preserved -# across function calls, so that it keeps track of things like -# the current figure and plotting area, and the plotting -# functions are directed to the current axes (please note that "axes" here -# and in most places in the documentation refers to the *axes* -# :ref:`part of a figure ` -# and not the strict mathematical term for more than one axis). -# -# .. note:: -# -# the pyplot API is generally less-flexible than the object-oriented API. -# Most of the function calls you see here can also be called as methods -# from an ``Axes`` object. We recommend browsing the tutorials and -# examples to see how this works. -# -# Generating visualizations with pyplot is very quick: - -import matplotlib.pyplot as plt -plt.plot([1, 2, 3, 4]) -plt.ylabel('some numbers') -plt.show() - -############################################################################### -# You may be wondering why the x-axis ranges from 0-3 and the y-axis -# from 1-4. If you provide a single list or array to the -# :func:`~matplotlib.pyplot.plot` command, matplotlib assumes it is a -# sequence of y values, and automatically generates the x values for -# you. Since python ranges start with 0, the default x vector has the -# same length as y but starts with 0. Hence the x data are -# ``[0,1,2,3]``. -# -# :func:`~matplotlib.pyplot.plot` is a versatile command, and will take -# an arbitrary number of arguments. For example, to plot x versus y, -# you can issue the command: - -plt.plot([1, 2, 3, 4], [1, 4, 9, 16]) - -############################################################################### -# Formatting the style of your plot -# --------------------------------- -# -# For every x, y pair of arguments, there is an optional third argument -# which is the format string that indicates the color and line type of -# the plot. The letters and symbols of the format string are from -# MATLAB, and you concatenate a color string with a line style string. -# The default format string is 'b-', which is a solid blue line. For -# example, to plot the above with red circles, you would issue - -plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro') -plt.axis([0, 6, 0, 20]) -plt.show() - -############################################################################### -# See the :func:`~matplotlib.pyplot.plot` documentation for a complete -# list of line styles and format strings. The -# :func:`~matplotlib.pyplot.axis` command in the example above takes a -# list of ``[xmin, xmax, ymin, ymax]`` and specifies the viewport of the -# axes. -# -# If matplotlib were limited to working with lists, it would be fairly -# useless for numeric processing. Generally, you will use `numpy -# `_ arrays. In fact, all sequences are -# converted to numpy arrays internally. The example below illustrates a -# plotting several lines with different format styles in one command -# using arrays. - -import numpy as np - -# evenly sampled time at 200ms intervals -t = np.arange(0., 5., 0.2) - -# red dashes, blue squares and green triangles -plt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^') -plt.show() - -############################################################################### -# .. _plotting-with-keywords: -# -# Plotting with keyword strings -# ============================= -# -# There are some instances where you have data in a format that lets you -# access particular variables with strings. For example, with -# :class:`numpy.recarray` or :class:`pandas.DataFrame`. -# -# Matplotlib allows you provide such an object with -# the ``data`` keyword argument. If provided, then you may generate plots with -# the strings corresponding to these variables. - -data = {'a': np.arange(50), - 'c': np.random.randint(0, 50, 50), - 'd': np.random.randn(50)} -data['b'] = data['a'] + 10 * np.random.randn(50) -data['d'] = np.abs(data['d']) * 100 - -plt.scatter('a', 'b', c='c', s='d', data=data) -plt.xlabel('entry a') -plt.ylabel('entry b') -plt.show() - -############################################################################### -# .. _plotting-with-categorical-vars: -# -# Plotting with categorical variables -# =================================== -# -# It is also possible to create a plot using categorical variables. -# Matplotlib allows you to pass categorical variables directly to -# many plotting functions. For example: - -names = ['group_a', 'group_b', 'group_c'] -values = [1, 10, 100] - -plt.figure(figsize=(9, 3)) - -plt.subplot(131) -plt.bar(names, values) -plt.subplot(132) -plt.scatter(names, values) -plt.subplot(133) -plt.plot(names, values) -plt.suptitle('Categorical Plotting') -plt.show() - -############################################################################### -# .. _controlling-line-properties: -# -# Controlling line properties -# =========================== -# -# Lines have many attributes that you can set: linewidth, dash style, -# antialiased, etc; see :class:`matplotlib.lines.Line2D`. There are -# several ways to set line properties -# -# * Use keyword args:: -# -# plt.plot(x, y, linewidth=2.0) -# -# -# * Use the setter methods of a ``Line2D`` instance. ``plot`` returns a list -# of ``Line2D`` objects; e.g., ``line1, line2 = plot(x1, y1, x2, y2)``. In the code -# below we will suppose that we have only -# one line so that the list returned is of length 1. We use tuple unpacking with -# ``line,`` to get the first element of that list:: -# -# line, = plt.plot(x, y, '-') -# line.set_antialiased(False) # turn off antialiasing -# -# * Use the :func:`~matplotlib.pyplot.setp` command. The example below -# uses a MATLAB-style command to set multiple properties -# on a list of lines. ``setp`` works transparently with a list of objects -# or a single object. You can either use python keyword arguments or -# MATLAB-style string/value pairs:: -# -# lines = plt.plot(x1, y1, x2, y2) -# # use keyword args -# plt.setp(lines, color='r', linewidth=2.0) -# # or MATLAB style string value pairs -# plt.setp(lines, 'color', 'r', 'linewidth', 2.0) -# -# -# Here are the available :class:`~matplotlib.lines.Line2D` properties. -# -# ====================== ================================================== -# Property Value Type -# ====================== ================================================== -# alpha float -# animated [True | False] -# antialiased or aa [True | False] -# clip_box a matplotlib.transform.Bbox instance -# clip_on [True | False] -# clip_path a Path instance and a Transform instance, a Patch -# color or c any matplotlib color -# contains the hit testing function -# dash_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``] -# dash_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``] -# dashes sequence of on/off ink in points -# data (np.array xdata, np.array ydata) -# figure a matplotlib.figure.Figure instance -# label any string -# linestyle or ls [ ``'-'`` | ``'--'`` | ``'-.'`` | ``':'`` | ``'steps'`` | ...] -# linewidth or lw float value in points -# marker [ ``'+'`` | ``','`` | ``'.'`` | ``'1'`` | ``'2'`` | ``'3'`` | ``'4'`` ] -# markeredgecolor or mec any matplotlib color -# markeredgewidth or mew float value in points -# markerfacecolor or mfc any matplotlib color -# markersize or ms float -# markevery [ None | integer | (startind, stride) ] -# picker used in interactive line selection -# pickradius the line pick selection radius -# solid_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``] -# solid_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``] -# transform a matplotlib.transforms.Transform instance -# visible [True | False] -# xdata np.array -# ydata np.array -# zorder any number -# ====================== ================================================== -# -# To get a list of settable line properties, call the -# :func:`~matplotlib.pyplot.setp` function with a line or lines -# as argument -# -# .. sourcecode:: ipython -# -# In [69]: lines = plt.plot([1, 2, 3]) -# -# In [70]: plt.setp(lines) -# alpha: float -# animated: [True | False] -# antialiased or aa: [True | False] -# ...snip -# -# .. _multiple-figs-axes: -# -# -# Working with multiple figures and axes -# ====================================== -# -# MATLAB, and :mod:`~matplotlib.pyplot`, have the concept of the current -# figure and the current axes. All plotting commands apply to the -# current axes. The function :func:`~matplotlib.pyplot.gca` returns the -# current axes (a :class:`matplotlib.axes.Axes` instance), and -# :func:`~matplotlib.pyplot.gcf` returns the current figure -# (:class:`matplotlib.figure.Figure` instance). Normally, you don't have -# to worry about this, because it is all taken care of behind the -# scenes. Below is a script to create two subplots. - - -def f(t): - return np.exp(-t) * np.cos(2*np.pi*t) - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) - -plt.figure() -plt.subplot(211) -plt.plot(t1, f(t1), 'bo', t2, f(t2), 'k') - -plt.subplot(212) -plt.plot(t2, np.cos(2*np.pi*t2), 'r--') -plt.show() - -############################################################################### -# The :func:`~matplotlib.pyplot.figure` command here is optional because -# ``figure(1)`` will be created by default, just as a ``subplot(111)`` -# will be created by default if you don't manually specify any axes. The -# :func:`~matplotlib.pyplot.subplot` command specifies ``numrows, -# numcols, plot_number`` where ``plot_number`` ranges from 1 to -# ``numrows*numcols``. The commas in the ``subplot`` command are -# optional if ``numrows*numcols<10``. So ``subplot(211)`` is identical -# to ``subplot(2, 1, 1)``. -# -# You can create an arbitrary number of subplots -# and axes. If you want to place an axes manually, i.e., not on a -# rectangular grid, use the :func:`~matplotlib.pyplot.axes` command, -# which allows you to specify the location as ``axes([left, bottom, -# width, height])`` where all values are in fractional (0 to 1) -# coordinates. See :doc:`/gallery/subplots_axes_and_figures/axes_demo` for an example of -# placing axes manually and :doc:`/gallery/subplots_axes_and_figures/subplot_demo` for an -# example with lots of subplots. -# -# -# You can create multiple figures by using multiple -# :func:`~matplotlib.pyplot.figure` calls with an increasing figure -# number. Of course, each figure can contain as many axes and subplots -# as your heart desires:: -# -# import matplotlib.pyplot as plt -# plt.figure(1) # the first figure -# plt.subplot(211) # the first subplot in the first figure -# plt.plot([1, 2, 3]) -# plt.subplot(212) # the second subplot in the first figure -# plt.plot([4, 5, 6]) -# -# -# plt.figure(2) # a second figure -# plt.plot([4, 5, 6]) # creates a subplot(111) by default -# -# plt.figure(1) # figure 1 current; subplot(212) still current -# plt.subplot(211) # make subplot(211) in figure1 current -# plt.title('Easy as 1, 2, 3') # subplot 211 title -# -# You can clear the current figure with :func:`~matplotlib.pyplot.clf` -# and the current axes with :func:`~matplotlib.pyplot.cla`. If you find -# it annoying that states (specifically the current image, figure and axes) -# are being maintained for you behind the scenes, don't despair: this is just a thin -# stateful wrapper around an object oriented API, which you can use -# instead (see :doc:`/tutorials/intermediate/artists`) -# -# If you are making lots of figures, you need to be aware of one -# more thing: the memory required for a figure is not completely -# released until the figure is explicitly closed with -# :func:`~matplotlib.pyplot.close`. Deleting all references to the -# figure, and/or using the window manager to kill the window in which -# the figure appears on the screen, is not enough, because pyplot -# maintains internal references until :func:`~matplotlib.pyplot.close` -# is called. -# -# .. _working-with-text: -# -# Working with text -# ================= -# -# The :func:`~matplotlib.pyplot.text` command can be used to add text in -# an arbitrary location, and the :func:`~matplotlib.pyplot.xlabel`, -# :func:`~matplotlib.pyplot.ylabel` and :func:`~matplotlib.pyplot.title` -# are used to add text in the indicated locations (see :doc:`/tutorials/text/text_intro` -# for a more detailed example) - -mu, sigma = 100, 15 -x = mu + sigma * np.random.randn(10000) - -# the histogram of the data -n, bins, patches = plt.hist(x, 50, density=1, facecolor='g', alpha=0.75) - - -plt.xlabel('Smarts') -plt.ylabel('Probability') -plt.title('Histogram of IQ') -plt.text(60, .025, r'$\mu=100,\ \sigma=15$') -plt.axis([40, 160, 0, 0.03]) -plt.grid(True) -plt.show() - -############################################################################### -# All of the :func:`~matplotlib.pyplot.text` commands return an -# :class:`matplotlib.text.Text` instance. Just as with with lines -# above, you can customize the properties by passing keyword arguments -# into the text functions or using :func:`~matplotlib.pyplot.setp`:: -# -# t = plt.xlabel('my data', fontsize=14, color='red') -# -# These properties are covered in more detail in :doc:`/tutorials/text/text_props`. -# -# -# Using mathematical expressions in text -# -------------------------------------- -# -# matplotlib accepts TeX equation expressions in any text expression. -# For example to write the expression :math:`\sigma_i=15` in the title, -# you can write a TeX expression surrounded by dollar signs:: -# -# plt.title(r'$\sigma_i=15$') -# -# The ``r`` preceding the title string is important -- it signifies -# that the string is a *raw* string and not to treat backslashes as -# python escapes. matplotlib has a built-in TeX expression parser and -# layout engine, and ships its own math fonts -- for details see -# :doc:`/tutorials/text/mathtext`. Thus you can use mathematical text across platforms -# without requiring a TeX installation. For those who have LaTeX and -# dvipng installed, you can also use LaTeX to format your text and -# incorporate the output directly into your display figures or saved -# postscript -- see :doc:`/tutorials/text/usetex`. -# -# -# Annotating text -# --------------- -# -# The uses of the basic :func:`~matplotlib.pyplot.text` command above -# place text at an arbitrary position on the Axes. A common use for -# text is to annotate some feature of the plot, and the -# :func:`~matplotlib.pyplot.annotate` method provides helper -# functionality to make annotations easy. In an annotation, there are -# two points to consider: the location being annotated represented by -# the argument ``xy`` and the location of the text ``xytext``. Both of -# these arguments are ``(x,y)`` tuples. - -ax = plt.subplot(111) - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) -line, = plt.plot(t, s, lw=2) - -plt.annotate('local max', xy=(2, 1), xytext=(3, 1.5), - arrowprops=dict(facecolor='black', shrink=0.05), - ) - -plt.ylim(-2, 2) -plt.show() - -############################################################################### -# In this basic example, both the ``xy`` (arrow tip) and ``xytext`` -# locations (text location) are in data coordinates. There are a -# variety of other coordinate systems one can choose -- see -# :ref:`annotations-tutorial` and :ref:`plotting-guide-annotation` for -# details. More examples can be found in -# :doc:`/gallery/text_labels_and_annotations/annotation_demo`. -# -# -# Logarithmic and other nonlinear axes -# ==================================== -# -# :mod:`matplotlib.pyplot` supports not only linear axis scales, but also -# logarithmic and logit scales. This is commonly used if data spans many orders -# of magnitude. Changing the scale of an axis is easy: -# -# plt.xscale('log') -# -# An example of four plots with the same data and different scales for the y axis -# is shown below. - -from matplotlib.ticker import NullFormatter # useful for `logit` scale - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# make up some data in the interval ]0, 1[ -y = np.random.normal(loc=0.5, scale=0.4, size=1000) -y = y[(y > 0) & (y < 1)] -y.sort() -x = np.arange(len(y)) - -# plot with various axes scales -plt.figure() - -# linear -plt.subplot(221) -plt.plot(x, y) -plt.yscale('linear') -plt.title('linear') -plt.grid(True) - - -# log -plt.subplot(222) -plt.plot(x, y) -plt.yscale('log') -plt.title('log') -plt.grid(True) - - -# symmetric log -plt.subplot(223) -plt.plot(x, y - y.mean()) -plt.yscale('symlog', linthreshy=0.01) -plt.title('symlog') -plt.grid(True) - -# logit -plt.subplot(224) -plt.plot(x, y) -plt.yscale('logit') -plt.title('logit') -plt.grid(True) -# Format the minor tick labels of the y-axis into empty strings with -# `NullFormatter`, to avoid cumbering the axis with too many labels. -plt.gca().yaxis.set_minor_formatter(NullFormatter()) -# Adjust the subplot layout, because the logit one may take more space -# than usual, due to y-tick labels like "1 - 10^{-3}" -plt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25, - wspace=0.35) - -plt.show() - -############################################################################### -# It is also possible to add your own scale, see :ref:`adding-new-scales` for -# details. diff --git a/_downloads/2dc82257c50de29f11d9dd54fd620b8e/pyplot_formatstr.ipynb b/_downloads/2dc82257c50de29f11d9dd54fd620b8e/pyplot_formatstr.ipynb deleted file mode 120000 index f3986f6fded..00000000000 --- a/_downloads/2dc82257c50de29f11d9dd54fd620b8e/pyplot_formatstr.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2dc82257c50de29f11d9dd54fd620b8e/pyplot_formatstr.ipynb \ No newline at end of file diff --git a/_downloads/2dcollections3d.ipynb b/_downloads/2dcollections3d.ipynb deleted file mode 120000 index 00eea37422d..00000000000 --- a/_downloads/2dcollections3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/2dcollections3d.ipynb \ No newline at end of file diff --git a/_downloads/2dcollections3d.py b/_downloads/2dcollections3d.py deleted file mode 120000 index 656734fd0e0..00000000000 --- a/_downloads/2dcollections3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/2dcollections3d.py \ No newline at end of file diff --git a/_downloads/2dd328b49ddd190be8c93b399a5fb7f5/zoom_window.py b/_downloads/2dd328b49ddd190be8c93b399a5fb7f5/zoom_window.py deleted file mode 120000 index e43a9fbe1d3..00000000000 --- a/_downloads/2dd328b49ddd190be8c93b399a5fb7f5/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2dd328b49ddd190be8c93b399a5fb7f5/zoom_window.py \ No newline at end of file diff --git a/_downloads/2dd335cde1c05d34bbb32fb402fbe549/embedding_in_wx2_sgskip.ipynb b/_downloads/2dd335cde1c05d34bbb32fb402fbe549/embedding_in_wx2_sgskip.ipynb deleted file mode 120000 index efc73a113f3..00000000000 --- a/_downloads/2dd335cde1c05d34bbb32fb402fbe549/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2dd335cde1c05d34bbb32fb402fbe549/embedding_in_wx2_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/2dd4061bb47f987bc7a21ac7adbb5290/rectangle_selector.ipynb b/_downloads/2dd4061bb47f987bc7a21ac7adbb5290/rectangle_selector.ipynb deleted file mode 100644 index 152db6c225b..00000000000 --- a/_downloads/2dd4061bb47f987bc7a21ac7adbb5290/rectangle_selector.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rectangle Selector\n\n\nDo a mouseclick somewhere, move the mouse to some destination, release\nthe button. This class gives click- and release-events and also draws\na line or a box from the click-point to the actual mouseposition\n(within the same axes) until the button is released. Within the\nmethod 'self.ignore()' it is checked whether the button from eventpress\nand eventrelease are the same.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.widgets import RectangleSelector\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef line_select_callback(eclick, erelease):\n 'eclick and erelease are the press and release events'\n x1, y1 = eclick.xdata, eclick.ydata\n x2, y2 = erelease.xdata, erelease.ydata\n print(\"(%3.2f, %3.2f) --> (%3.2f, %3.2f)\" % (x1, y1, x2, y2))\n print(\" The button you used were: %s %s\" % (eclick.button, erelease.button))\n\n\ndef toggle_selector(event):\n print(' Key pressed.')\n if event.key in ['Q', 'q'] and toggle_selector.RS.active:\n print(' RectangleSelector deactivated.')\n toggle_selector.RS.set_active(False)\n if event.key in ['A', 'a'] and not toggle_selector.RS.active:\n print(' RectangleSelector activated.')\n toggle_selector.RS.set_active(True)\n\n\nfig, current_ax = plt.subplots() # make a new plotting range\nN = 100000 # If N is large one can see\nx = np.linspace(0.0, 10.0, N) # improvement by use blitting!\n\nplt.plot(x, +np.sin(.2*np.pi*x), lw=3.5, c='b', alpha=.7) # plot something\nplt.plot(x, +np.cos(.2*np.pi*x), lw=3.5, c='r', alpha=.5)\nplt.plot(x, -np.sin(.2*np.pi*x), lw=3.5, c='g', alpha=.3)\n\nprint(\"\\n click --> release\")\n\n# drawtype is 'box' or 'line' or 'none'\ntoggle_selector.RS = RectangleSelector(current_ax, line_select_callback,\n drawtype='box', useblit=True,\n button=[1, 3], # don't use middle button\n minspanx=5, minspany=5,\n spancoords='pixels',\n interactive=True)\nplt.connect('key_press_event', toggle_selector)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2dd5ed8c58041fd20aae17fd6f5c81aa/bachelors_degrees_by_gender.py b/_downloads/2dd5ed8c58041fd20aae17fd6f5c81aa/bachelors_degrees_by_gender.py deleted file mode 120000 index 0373a325677..00000000000 --- a/_downloads/2dd5ed8c58041fd20aae17fd6f5c81aa/bachelors_degrees_by_gender.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/2dd5ed8c58041fd20aae17fd6f5c81aa/bachelors_degrees_by_gender.py \ No newline at end of file diff --git a/_downloads/2dd9aadca894fbcbd34c755a5f3e043f/parasite_simple2.py b/_downloads/2dd9aadca894fbcbd34c755a5f3e043f/parasite_simple2.py deleted file mode 120000 index 392d806bd21..00000000000 --- a/_downloads/2dd9aadca894fbcbd34c755a5f3e043f/parasite_simple2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2dd9aadca894fbcbd34c755a5f3e043f/parasite_simple2.py \ No newline at end of file diff --git a/_downloads/2de02c4cef4e1f7f6c72a2ec1bc3fe97/date.ipynb b/_downloads/2de02c4cef4e1f7f6c72a2ec1bc3fe97/date.ipynb deleted file mode 100644 index eb763cc57c6..00000000000 --- a/_downloads/2de02c4cef4e1f7f6c72a2ec1bc3fe97/date.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date tick labels\n\n\nShow how to make date plots in Matplotlib using date tick locators and\nformatters. See :doc:`/gallery/ticks_and_spines/major_minor_demo` for more\ninformation on controlling major and minor ticks.\n\nAll matplotlib date plotting is done by converting date instances into days\nsince 0001-01-01 00:00:00 UTC plus one day (for historical reasons). The\nconversion, tick locating and formatting is done behind the scenes so this\nis most transparent to you. The dates module provides several converter\nfunctions `matplotlib.dates.date2num` and `matplotlib.dates.num2date`.\nThese can convert between `datetime.datetime` objects and\n:class:`numpy.datetime64` objects.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.dates as mdates\nimport matplotlib.cbook as cbook\n\nyears = mdates.YearLocator() # every year\nmonths = mdates.MonthLocator() # every month\nyears_fmt = mdates.DateFormatter('%Y')\n\n# Load a numpy structured array from yahoo csv data with fields date, open,\n# close, volume, adj_close from the mpl-data/example directory. This array\n# stores the date as an np.datetime64 with a day unit ('D') in the 'date'\n# column.\nwith cbook.get_sample_data('goog.npz') as datafile:\n data = np.load(datafile)['price_data']\n\nfig, ax = plt.subplots()\nax.plot('date', 'adj_close', data=data)\n\n# format the ticks\nax.xaxis.set_major_locator(years)\nax.xaxis.set_major_formatter(years_fmt)\nax.xaxis.set_minor_locator(months)\n\n# round to nearest years.\ndatemin = np.datetime64(data['date'][0], 'Y')\ndatemax = np.datetime64(data['date'][-1], 'Y') + np.timedelta64(1, 'Y')\nax.set_xlim(datemin, datemax)\n\n# format the coords message box\nax.format_xdata = mdates.DateFormatter('%Y-%m-%d')\nax.format_ydata = lambda x: '$%1.2f' % x # format the price.\nax.grid(True)\n\n# rotates and right aligns the x labels, and moves the bottom of the\n# axes up to make room for them\nfig.autofmt_xdate()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2de405f42fa90874f11d71f4c9cff2ca/colormap_normalizations.py b/_downloads/2de405f42fa90874f11d71f4c9cff2ca/colormap_normalizations.py deleted file mode 100644 index b13d7f213cf..00000000000 --- a/_downloads/2de405f42fa90874f11d71f4c9cff2ca/colormap_normalizations.py +++ /dev/null @@ -1,141 +0,0 @@ -""" -======================= -Colormap Normalizations -======================= - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -############################################################################### -# Lognorm: Instead of pcolor log10(Z1) you can have colorbars that have -# the exponential labels using a norm. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out of the top. Needs to have -# z/colour axis on a log scale so we see both hump and spike. linear -# scale only shows the spike. - -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -Z = Z1 + 50 * Z2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolor(X, Y, Z, - norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - - -############################################################################### -# PowerNorm: Here a power-law trend in X partially obscures a rectified -# sine wave in Y. We can remove the power law using a PowerNorm. - -X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)] -Z1 = (1 + np.sin(Y * 10.)) * X**(2.) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1. / 2.), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - -############################################################################### -# SymLogNorm: two humps, one negative and one positive, The positive -# with 5-times the amplitude. Linearly, you cannot see detail in the -# negative hump. Here we logarithmically scale the positive and -# negative data separately. -# -# Note that colorbar labels do not come out looking very good. - -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = 5 * np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, - norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03, - vmin=-1.0, vmax=1.0), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='RdBu_r', vmin=-np.max(Z1)) -fig.colorbar(pcm, ax=ax[1], extend='both') - - -############################################################################### -# Custom Norm: An example with a customized normalization. This one -# uses the example above, and normalizes the negative data differently -# from the positive. - -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -# Example of making your own norm. Also see matplotlib.colors. -# From Joe Kington: This one gives two different linear ramps: - - -class MidpointNormalize(colors.Normalize): - def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False): - self.midpoint = midpoint - colors.Normalize.__init__(self, vmin, vmax, clip) - - def __call__(self, value, clip=None): - # I'm ignoring masked values and all kinds of edge cases to make a - # simple example... - x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1] - return np.ma.masked_array(np.interp(value, x, y)) - - -##### -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=MidpointNormalize(midpoint=0.), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') - -############################################################################### -# BoundaryNorm: For this one you provide the boundaries for your colors, -# and the Norm puts the first color in between the first pair, the -# second color between the second pair, etc. - -fig, ax = plt.subplots(3, 1, figsize=(8, 8)) -ax = ax.flatten() -# even bounds gives a contour-like effect -bounds = np.linspace(-1, 1, 10) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[0].pcolormesh(X, Y, Z, - norm=norm, - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical') - -# uneven bounds changes the colormapping: -bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical') - -pcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z1)) -fig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical') - -plt.show() diff --git a/_downloads/2de7d801cc807aadc92f195e3402760b/custom_projection.py b/_downloads/2de7d801cc807aadc92f195e3402760b/custom_projection.py deleted file mode 120000 index c2147574a0a..00000000000 --- a/_downloads/2de7d801cc807aadc92f195e3402760b/custom_projection.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2de7d801cc807aadc92f195e3402760b/custom_projection.py \ No newline at end of file diff --git a/_downloads/2deb8ee83eba0df42eed38fe9edaa20a/demo_axes_grid.ipynb b/_downloads/2deb8ee83eba0df42eed38fe9edaa20a/demo_axes_grid.ipynb deleted file mode 100644 index d794579a0dd..00000000000 --- a/_downloads/2deb8ee83eba0df42eed38fe9edaa20a/demo_axes_grid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Grid\n\n\nGrid of 2x2 images with single or own colorbar.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef demo_simple_grid(fig):\n \"\"\"\n A grid of 2x2 images with 0.05 inch pad between images and only\n the lower-left axes is labeled.\n \"\"\"\n grid = ImageGrid(fig, 141, # similar to subplot(141)\n nrows_ncols=(2, 2),\n axes_pad=0.05,\n label_mode=\"1\",\n )\n\n Z, extent = get_demo_image()\n for ax in grid:\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n\n # This only affects axes in first column and second row as share_all =\n # False.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_grid_with_single_cbar(fig):\n \"\"\"\n A grid of 2x2 images with a single colorbar\n \"\"\"\n grid = ImageGrid(fig, 142, # similar to subplot(142)\n nrows_ncols=(2, 2),\n axes_pad=0.0,\n share_all=True,\n label_mode=\"L\",\n cbar_location=\"top\",\n cbar_mode=\"single\",\n )\n\n Z, extent = get_demo_image()\n for ax in grid:\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n grid.cbar_axes[0].colorbar(im)\n\n for cax in grid.cbar_axes:\n cax.toggle_label(False)\n\n # This affects all axes as share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_grid_with_each_cbar(fig):\n \"\"\"\n A grid of 2x2 images. Each image has its own colorbar.\n \"\"\"\n grid = ImageGrid(fig, 143, # similar to subplot(143)\n nrows_ncols=(2, 2),\n axes_pad=0.1,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"top\",\n cbar_mode=\"each\",\n cbar_size=\"7%\",\n cbar_pad=\"2%\",\n )\n Z, extent = get_demo_image()\n for ax, cax in zip(grid, grid.cbar_axes):\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n cax.colorbar(im)\n cax.toggle_label(False)\n\n # This affects all axes because we set share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_grid_with_each_cbar_labelled(fig):\n \"\"\"\n A grid of 2x2 images. Each image has its own colorbar.\n \"\"\"\n grid = ImageGrid(fig, 144, # similar to subplot(144)\n nrows_ncols=(2, 2),\n axes_pad=(0.45, 0.15),\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"right\",\n cbar_mode=\"each\",\n cbar_size=\"7%\",\n cbar_pad=\"2%\",\n )\n Z, extent = get_demo_image()\n\n # Use a different colorbar range every time\n limits = ((0, 1), (-2, 2), (-1.7, 1.4), (-1.5, 1))\n for ax, cax, vlim in zip(grid, grid.cbar_axes, limits):\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\",\n vmin=vlim[0], vmax=vlim[1])\n cax.colorbar(im)\n cax.set_yticks((vlim[0], vlim[1]))\n\n # This affects all axes because we set share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\nfig = plt.figure(figsize=(10.5, 2.5))\nfig.subplots_adjust(left=0.05, right=0.95)\n\ndemo_simple_grid(fig)\ndemo_grid_with_single_cbar(fig)\ndemo_grid_with_each_cbar(fig)\ndemo_grid_with_each_cbar_labelled(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2deebf3a2d74b62b566d55a64fea09ad/radio_buttons.py b/_downloads/2deebf3a2d74b62b566d55a64fea09ad/radio_buttons.py deleted file mode 120000 index f513af9024e..00000000000 --- a/_downloads/2deebf3a2d74b62b566d55a64fea09ad/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2deebf3a2d74b62b566d55a64fea09ad/radio_buttons.py \ No newline at end of file diff --git a/_downloads/2df6b5aa6ec5d98a942189e800543f67/font_family_rc_sgskip.py b/_downloads/2df6b5aa6ec5d98a942189e800543f67/font_family_rc_sgskip.py deleted file mode 120000 index 80f12b25a53..00000000000 --- a/_downloads/2df6b5aa6ec5d98a942189e800543f67/font_family_rc_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/2df6b5aa6ec5d98a942189e800543f67/font_family_rc_sgskip.py \ No newline at end of file diff --git a/_downloads/2dfba2019830d43bb05a563df43ee836/spines_dropped.py b/_downloads/2dfba2019830d43bb05a563df43ee836/spines_dropped.py deleted file mode 120000 index ac5209419f1..00000000000 --- a/_downloads/2dfba2019830d43bb05a563df43ee836/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2dfba2019830d43bb05a563df43ee836/spines_dropped.py \ No newline at end of file diff --git a/_downloads/2e01c101d76e462eb1898a4de6f90e7f/bmh.py b/_downloads/2e01c101d76e462eb1898a4de6f90e7f/bmh.py deleted file mode 100644 index 6d87583da7f..00000000000 --- a/_downloads/2e01c101d76e462eb1898a4de6f90e7f/bmh.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -======================================== -Bayesian Methods for Hackers style sheet -======================================== - -This example demonstrates the style used in the Bayesian Methods for Hackers -[1]_ online book. - -.. [1] http://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/ - -""" -from numpy.random import beta -import matplotlib.pyplot as plt - - -plt.style.use('bmh') - - -def plot_beta_hist(ax, a, b): - ax.hist(beta(a, b, size=10000), histtype="stepfilled", - bins=25, alpha=0.8, density=True) - - -fig, ax = plt.subplots() -plot_beta_hist(ax, 10, 10) -plot_beta_hist(ax, 4, 12) -plot_beta_hist(ax, 50, 12) -plot_beta_hist(ax, 6, 55) -ax.set_title("'bmh' style sheet") - -plt.show() diff --git a/_downloads/2e02c8162575a6fa1fb9676df1bbaa93/pick_event_demo2.ipynb b/_downloads/2e02c8162575a6fa1fb9676df1bbaa93/pick_event_demo2.ipynb deleted file mode 120000 index d2b924e4046..00000000000 --- a/_downloads/2e02c8162575a6fa1fb9676df1bbaa93/pick_event_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e02c8162575a6fa1fb9676df1bbaa93/pick_event_demo2.ipynb \ No newline at end of file diff --git a/_downloads/2e0d96ae8cbad2ae97608a39835b8b20/scatter_with_legend.ipynb b/_downloads/2e0d96ae8cbad2ae97608a39835b8b20/scatter_with_legend.ipynb deleted file mode 120000 index e65aaa41816..00000000000 --- a/_downloads/2e0d96ae8cbad2ae97608a39835b8b20/scatter_with_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e0d96ae8cbad2ae97608a39835b8b20/scatter_with_legend.ipynb \ No newline at end of file diff --git a/_downloads/2e1efe6ec45742a58dd10dd70f799cd9/polys3d.ipynb b/_downloads/2e1efe6ec45742a58dd10dd70f799cd9/polys3d.ipynb deleted file mode 120000 index 1cfda3f6458..00000000000 --- a/_downloads/2e1efe6ec45742a58dd10dd70f799cd9/polys3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2e1efe6ec45742a58dd10dd70f799cd9/polys3d.ipynb \ No newline at end of file diff --git a/_downloads/2e2f9b9e3dba1f70cfca84fbe8606e92/firefox.ipynb b/_downloads/2e2f9b9e3dba1f70cfca84fbe8606e92/firefox.ipynb deleted file mode 120000 index 2dd5f4d4893..00000000000 --- a/_downloads/2e2f9b9e3dba1f70cfca84fbe8606e92/firefox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e2f9b9e3dba1f70cfca84fbe8606e92/firefox.ipynb \ No newline at end of file diff --git a/_downloads/2e309644ccd557aada4afb564bdde6ed/gallery_jupyter.zip b/_downloads/2e309644ccd557aada4afb564bdde6ed/gallery_jupyter.zip deleted file mode 120000 index 9dfa72c2e92..00000000000 --- a/_downloads/2e309644ccd557aada4afb564bdde6ed/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.3/_downloads/2e309644ccd557aada4afb564bdde6ed/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/2e3454ee778a170b5bdd152c2fc9e500/axis_direction_demo_step04.ipynb b/_downloads/2e3454ee778a170b5bdd152c2fc9e500/axis_direction_demo_step04.ipynb deleted file mode 120000 index 92f02c30d01..00000000000 --- a/_downloads/2e3454ee778a170b5bdd152c2fc9e500/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e3454ee778a170b5bdd152c2fc9e500/axis_direction_demo_step04.ipynb \ No newline at end of file diff --git a/_downloads/2e357ac39cf608eee4b2d4deffb9a468/demo_colorbar_of_inset_axes.ipynb b/_downloads/2e357ac39cf608eee4b2d4deffb9a468/demo_colorbar_of_inset_axes.ipynb deleted file mode 120000 index de6f373c631..00000000000 --- a/_downloads/2e357ac39cf608eee4b2d4deffb9a468/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2e357ac39cf608eee4b2d4deffb9a468/demo_colorbar_of_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/2e507c5873a4d658ec14308538a16dea/anchored_box03.ipynb b/_downloads/2e507c5873a4d658ec14308538a16dea/anchored_box03.ipynb deleted file mode 100644 index 34127bea5c8..00000000000 --- a/_downloads/2e507c5873a4d658ec14308538a16dea/anchored_box03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Ellipse\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nbox = AnchoredAuxTransformBox(ax.transData, loc='upper left')\nel = Ellipse((0, 0), width=0.1, height=0.4, angle=30) # in data coordinates!\nbox.drawing_area.add_artist(el)\n\nax.add_artist(box)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2e562ffd7819c68a54426ce2ff3ddc87/date_demo_convert.py b/_downloads/2e562ffd7819c68a54426ce2ff3ddc87/date_demo_convert.py deleted file mode 100644 index e1f266cbe09..00000000000 --- a/_downloads/2e562ffd7819c68a54426ce2ff3ddc87/date_demo_convert.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -================= -Date Demo Convert -================= - -""" -import datetime -import matplotlib.pyplot as plt -from matplotlib.dates import DayLocator, HourLocator, DateFormatter, drange -import numpy as np - -date1 = datetime.datetime(2000, 3, 2) -date2 = datetime.datetime(2000, 3, 6) -delta = datetime.timedelta(hours=6) -dates = drange(date1, date2, delta) - -y = np.arange(len(dates)) - -fig, ax = plt.subplots() -ax.plot_date(dates, y ** 2) - -# this is superfluous, since the autoscaler should get it right, but -# use date2num and num2date to convert between dates and floats if -# you want; both date2num and num2date convert an instance or sequence -ax.set_xlim(dates[0], dates[-1]) - -# The hour locator takes the hour or sequence of hours you want to -# tick, not the base multiple - -ax.xaxis.set_major_locator(DayLocator()) -ax.xaxis.set_minor_locator(HourLocator(range(0, 25, 6))) -ax.xaxis.set_major_formatter(DateFormatter('%Y-%m-%d')) - -ax.fmt_xdata = DateFormatter('%Y-%m-%d %H:%M:%S') -fig.autofmt_xdate() - -plt.show() diff --git a/_downloads/2e5c4aa2ef9b4b5a95069c892947d9e4/annotation_demo.ipynb b/_downloads/2e5c4aa2ef9b4b5a95069c892947d9e4/annotation_demo.ipynb deleted file mode 120000 index be12aa4de8b..00000000000 --- a/_downloads/2e5c4aa2ef9b4b5a95069c892947d9e4/annotation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2e5c4aa2ef9b4b5a95069c892947d9e4/annotation_demo.ipynb \ No newline at end of file diff --git a/_downloads/2e6ce1485678b31af1e6ad172824e3a6/surface3d_3.py b/_downloads/2e6ce1485678b31af1e6ad172824e3a6/surface3d_3.py deleted file mode 100644 index d75dc668015..00000000000 --- a/_downloads/2e6ce1485678b31af1e6ad172824e3a6/surface3d_3.py +++ /dev/null @@ -1,44 +0,0 @@ -''' -========================= -3D surface (checkerboard) -========================= - -Demonstrates plotting a 3D surface colored in a checkerboard pattern. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -from matplotlib.ticker import LinearLocator -import numpy as np - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make data. -X = np.arange(-5, 5, 0.25) -xlen = len(X) -Y = np.arange(-5, 5, 0.25) -ylen = len(Y) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -# Create an empty array of strings with the same shape as the meshgrid, and -# populate it with two colors in a checkerboard pattern. -colortuple = ('y', 'b') -colors = np.empty(X.shape, dtype=str) -for y in range(ylen): - for x in range(xlen): - colors[x, y] = colortuple[(x + y) % len(colortuple)] - -# Plot the surface with face colors taken from the array we made. -surf = ax.plot_surface(X, Y, Z, facecolors=colors, linewidth=0) - -# Customize the z axis. -ax.set_zlim(-1, 1) -ax.w_zaxis.set_major_locator(LinearLocator(6)) - -plt.show() diff --git a/_downloads/2e70560a5136bc9ac6cc89bb31cc0fe9/interp_demo.py b/_downloads/2e70560a5136bc9ac6cc89bb31cc0fe9/interp_demo.py deleted file mode 120000 index 3c62e392c9a..00000000000 --- a/_downloads/2e70560a5136bc9ac6cc89bb31cc0fe9/interp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2e70560a5136bc9ac6cc89bb31cc0fe9/interp_demo.py \ No newline at end of file diff --git a/_downloads/2e714b85af748e6163139d2e4e173d78/image_demo.py b/_downloads/2e714b85af748e6163139d2e4e173d78/image_demo.py deleted file mode 120000 index 649e4a57235..00000000000 --- a/_downloads/2e714b85af748e6163139d2e4e173d78/image_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2e714b85af748e6163139d2e4e173d78/image_demo.py \ No newline at end of file diff --git a/_downloads/2e73e580ebd152110e1775281f45c672/errorbars_and_boxes.ipynb b/_downloads/2e73e580ebd152110e1775281f45c672/errorbars_and_boxes.ipynb deleted file mode 120000 index 665429929a2..00000000000 --- a/_downloads/2e73e580ebd152110e1775281f45c672/errorbars_and_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2e73e580ebd152110e1775281f45c672/errorbars_and_boxes.ipynb \ No newline at end of file diff --git a/_downloads/2e7ac2468f5855121108bc279b6a5b2e/canvasagg.ipynb b/_downloads/2e7ac2468f5855121108bc279b6a5b2e/canvasagg.ipynb deleted file mode 120000 index b4d1e0647ef..00000000000 --- a/_downloads/2e7ac2468f5855121108bc279b6a5b2e/canvasagg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2e7ac2468f5855121108bc279b6a5b2e/canvasagg.ipynb \ No newline at end of file diff --git a/_downloads/2e827dbefb6a1478f127ad4e8b05ff1c/viewlims.ipynb b/_downloads/2e827dbefb6a1478f127ad4e8b05ff1c/viewlims.ipynb deleted file mode 120000 index d2162d874d8..00000000000 --- a/_downloads/2e827dbefb6a1478f127ad4e8b05ff1c/viewlims.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e827dbefb6a1478f127ad4e8b05ff1c/viewlims.ipynb \ No newline at end of file diff --git a/_downloads/2e90977c7e1db9bc2fb2af681cba960d/sankey_links.ipynb b/_downloads/2e90977c7e1db9bc2fb2af681cba960d/sankey_links.ipynb deleted file mode 120000 index fcee9998dcb..00000000000 --- a/_downloads/2e90977c7e1db9bc2fb2af681cba960d/sankey_links.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e90977c7e1db9bc2fb2af681cba960d/sankey_links.ipynb \ No newline at end of file diff --git a/_downloads/2e93e6251c9c9a1ae0b8ee43967f36d3/gtk_spreadsheet_sgskip.ipynb b/_downloads/2e93e6251c9c9a1ae0b8ee43967f36d3/gtk_spreadsheet_sgskip.ipynb deleted file mode 120000 index a8f26df90f7..00000000000 --- a/_downloads/2e93e6251c9c9a1ae0b8ee43967f36d3/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e93e6251c9c9a1ae0b8ee43967f36d3/gtk_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/2e9940848d4645551b0b15eafecf911e/colormap_normalizations_symlognorm.ipynb b/_downloads/2e9940848d4645551b0b15eafecf911e/colormap_normalizations_symlognorm.ipynb deleted file mode 120000 index 6995012795b..00000000000 --- a/_downloads/2e9940848d4645551b0b15eafecf911e/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2e9940848d4645551b0b15eafecf911e/colormap_normalizations_symlognorm.ipynb \ No newline at end of file diff --git a/_downloads/2e9a6dcb4b2857b0c81dda1d48d0855f/markevery_prop_cycle.ipynb b/_downloads/2e9a6dcb4b2857b0c81dda1d48d0855f/markevery_prop_cycle.ipynb deleted file mode 100644 index 74092d0a203..00000000000 --- a/_downloads/2e9a6dcb4b2857b0c81dda1d48d0855f/markevery_prop_cycle.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# prop_cycle property markevery in rcParams\n\n\nThis example demonstrates a working solution to issue #8576, providing full\nsupport of the markevery property for axes.prop_cycle assignments through\nrcParams. Makes use of the same list of markevery cases from the\n:doc:`markevery demo\n`.\n\nRenders a plot with shifted-sine curves along each column with\na unique markevery value for each sine curve.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from cycler import cycler\nimport numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\n\n# Define a list of markevery cases and color cases to plot\ncases = [None,\n 8,\n (30, 8),\n [16, 24, 30],\n [0, -1],\n slice(100, 200, 3),\n 0.1,\n 0.3,\n 1.5,\n (0.0, 0.1),\n (0.45, 0.1)]\n\ncolors = ['#1f77b4',\n '#ff7f0e',\n '#2ca02c',\n '#d62728',\n '#9467bd',\n '#8c564b',\n '#e377c2',\n '#7f7f7f',\n '#bcbd22',\n '#17becf',\n '#1a55FF']\n\n# Configure rcParams axes.prop_cycle to simultaneously cycle cases and colors.\nmpl.rcParams['axes.prop_cycle'] = cycler(markevery=cases, color=colors)\n\n# Create data points and offsets\nx = np.linspace(0, 2 * np.pi)\noffsets = np.linspace(0, 2 * np.pi, 11, endpoint=False)\nyy = np.transpose([np.sin(x + phi) for phi in offsets])\n\n# Set the plot curve with markers and a title\nfig = plt.figure()\nax = fig.add_axes([0.1, 0.1, 0.6, 0.75])\n\nfor i in range(len(cases)):\n ax.plot(yy[:, i], marker='o', label=str(cases[i]))\n ax.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)\n\nplt.title('Support for axes.prop_cycle cycler with markevery')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2e9a7fa3acabe04307104bb0222f2f30/sankey_rankine.py b/_downloads/2e9a7fa3acabe04307104bb0222f2f30/sankey_rankine.py deleted file mode 120000 index c26642ae628..00000000000 --- a/_downloads/2e9a7fa3acabe04307104bb0222f2f30/sankey_rankine.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2e9a7fa3acabe04307104bb0222f2f30/sankey_rankine.py \ No newline at end of file diff --git a/_downloads/2e9a9acf9367f6286d7354a3a3032d49/triinterp_demo.py b/_downloads/2e9a9acf9367f6286d7354a3a3032d49/triinterp_demo.py deleted file mode 120000 index b2dc78baa1d..00000000000 --- a/_downloads/2e9a9acf9367f6286d7354a3a3032d49/triinterp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2e9a9acf9367f6286d7354a3a3032d49/triinterp_demo.py \ No newline at end of file diff --git a/_downloads/2ea195342930a1e5249a2af06d7def66/span_regions.ipynb b/_downloads/2ea195342930a1e5249a2af06d7def66/span_regions.ipynb deleted file mode 120000 index 643f4b0d2ce..00000000000 --- a/_downloads/2ea195342930a1e5249a2af06d7def66/span_regions.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ea195342930a1e5249a2af06d7def66/span_regions.ipynb \ No newline at end of file diff --git a/_downloads/2eaccdf0eff9438a82426b6246231d10/spines_dropped.ipynb b/_downloads/2eaccdf0eff9438a82426b6246231d10/spines_dropped.ipynb deleted file mode 120000 index 408db9e435b..00000000000 --- a/_downloads/2eaccdf0eff9438a82426b6246231d10/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2eaccdf0eff9438a82426b6246231d10/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/2eaee3a0125e173641a09a8322c2b021/figure_axes_enter_leave.ipynb b/_downloads/2eaee3a0125e173641a09a8322c2b021/figure_axes_enter_leave.ipynb deleted file mode 120000 index 0863164414e..00000000000 --- a/_downloads/2eaee3a0125e173641a09a8322c2b021/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2eaee3a0125e173641a09a8322c2b021/figure_axes_enter_leave.ipynb \ No newline at end of file diff --git a/_downloads/2eaff3b5c511cc8a62e6a33ac333c912/demo_parasite_axes.ipynb b/_downloads/2eaff3b5c511cc8a62e6a33ac333c912/demo_parasite_axes.ipynb deleted file mode 120000 index 821fc0413e2..00000000000 --- a/_downloads/2eaff3b5c511cc8a62e6a33ac333c912/demo_parasite_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2eaff3b5c511cc8a62e6a33ac333c912/demo_parasite_axes.ipynb \ No newline at end of file diff --git a/_downloads/2eb25975718f312371d6eefa92250393/polygon_selector_demo.py b/_downloads/2eb25975718f312371d6eefa92250393/polygon_selector_demo.py deleted file mode 120000 index 5b6d55a2658..00000000000 --- a/_downloads/2eb25975718f312371d6eefa92250393/polygon_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2eb25975718f312371d6eefa92250393/polygon_selector_demo.py \ No newline at end of file diff --git a/_downloads/2eb27c40eb708cc04e982a57c071e0f1/demo_edge_colorbar.py b/_downloads/2eb27c40eb708cc04e982a57c071e0f1/demo_edge_colorbar.py deleted file mode 120000 index 9d489c5b925..00000000000 --- a/_downloads/2eb27c40eb708cc04e982a57c071e0f1/demo_edge_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2eb27c40eb708cc04e982a57c071e0f1/demo_edge_colorbar.py \ No newline at end of file diff --git a/_downloads/2eb46638d2591e6c26927451abb96e7d/rainbow_text.ipynb b/_downloads/2eb46638d2591e6c26927451abb96e7d/rainbow_text.ipynb deleted file mode 120000 index 728e3d020e3..00000000000 --- a/_downloads/2eb46638d2591e6c26927451abb96e7d/rainbow_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2eb46638d2591e6c26927451abb96e7d/rainbow_text.ipynb \ No newline at end of file diff --git a/_downloads/2ec19b3760ca20d840b858dc68d0f27d/surface3d.py b/_downloads/2ec19b3760ca20d840b858dc68d0f27d/surface3d.py deleted file mode 100644 index eac122b6aa1..00000000000 --- a/_downloads/2ec19b3760ca20d840b858dc68d0f27d/surface3d.py +++ /dev/null @@ -1,44 +0,0 @@ -''' -====================== -3D surface (color map) -====================== - -Demonstrates plotting a 3D surface colored with the coolwarm color map. -The surface is made opaque by using antialiased=False. - -Also demonstrates using the LinearLocator and custom formatting for the -z axis tick labels. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -from matplotlib import cm -from matplotlib.ticker import LinearLocator, FormatStrFormatter -import numpy as np - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make data. -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -# Plot the surface. -surf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm, - linewidth=0, antialiased=False) - -# Customize the z axis. -ax.set_zlim(-1.01, 1.01) -ax.zaxis.set_major_locator(LinearLocator(10)) -ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f')) - -# Add a color bar which maps values to colors. -fig.colorbar(surf, shrink=0.5, aspect=5) - -plt.show() diff --git a/_downloads/2ec47bb33cc7f212ff77f8704ccbb97f/agg_buffer.ipynb b/_downloads/2ec47bb33cc7f212ff77f8704ccbb97f/agg_buffer.ipynb deleted file mode 120000 index 504d037b496..00000000000 --- a/_downloads/2ec47bb33cc7f212ff77f8704ccbb97f/agg_buffer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ec47bb33cc7f212ff77f8704ccbb97f/agg_buffer.ipynb \ No newline at end of file diff --git a/_downloads/2eca63fec0c8b94b15680081d4d7d1d9/parasite_simple.py b/_downloads/2eca63fec0c8b94b15680081d4d7d1d9/parasite_simple.py deleted file mode 120000 index 8d59548dce9..00000000000 --- a/_downloads/2eca63fec0c8b94b15680081d4d7d1d9/parasite_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2eca63fec0c8b94b15680081d4d7d1d9/parasite_simple.py \ No newline at end of file diff --git a/_downloads/2eca8aa786af3298673f9d4a753247ef/mri_demo.ipynb b/_downloads/2eca8aa786af3298673f9d4a753247ef/mri_demo.ipynb deleted file mode 120000 index 7c429ff2699..00000000000 --- a/_downloads/2eca8aa786af3298673f9d4a753247ef/mri_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2eca8aa786af3298673f9d4a753247ef/mri_demo.ipynb \ No newline at end of file diff --git a/_downloads/2ecd616b422d3e9b9b407b3b4322b709/interp_demo.ipynb b/_downloads/2ecd616b422d3e9b9b407b3b4322b709/interp_demo.ipynb deleted file mode 120000 index 14a54ec5880..00000000000 --- a/_downloads/2ecd616b422d3e9b9b407b3b4322b709/interp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2ecd616b422d3e9b9b407b3b4322b709/interp_demo.ipynb \ No newline at end of file diff --git a/_downloads/2ed4baf3786ed8757b4fc67624e35d2b/vline_hline_demo.ipynb b/_downloads/2ed4baf3786ed8757b4fc67624e35d2b/vline_hline_demo.ipynb deleted file mode 120000 index 5a1c1eb72a4..00000000000 --- a/_downloads/2ed4baf3786ed8757b4fc67624e35d2b/vline_hline_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ed4baf3786ed8757b4fc67624e35d2b/vline_hline_demo.ipynb \ No newline at end of file diff --git a/_downloads/2ed52947fc5764b32c6ce000d1a1e3c0/psd_demo.py b/_downloads/2ed52947fc5764b32c6ce000d1a1e3c0/psd_demo.py deleted file mode 120000 index f1d549030d6..00000000000 --- a/_downloads/2ed52947fc5764b32c6ce000d1a1e3c0/psd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ed52947fc5764b32c6ce000d1a1e3c0/psd_demo.py \ No newline at end of file diff --git a/_downloads/2ed5f548cdb449505f1509de60e03a27/buttons.py b/_downloads/2ed5f548cdb449505f1509de60e03a27/buttons.py deleted file mode 120000 index 7dd5727056f..00000000000 --- a/_downloads/2ed5f548cdb449505f1509de60e03a27/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2ed5f548cdb449505f1509de60e03a27/buttons.py \ No newline at end of file diff --git a/_downloads/2ed72bd8a89b7ec0f25c70585832cf22/histogram_cumulative.ipynb b/_downloads/2ed72bd8a89b7ec0f25c70585832cf22/histogram_cumulative.ipynb deleted file mode 100644 index ffd8c1e2e76..00000000000 --- a/_downloads/2ed72bd8a89b7ec0f25c70585832cf22/histogram_cumulative.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using histograms to plot a cumulative distribution\n\n\nThis shows how to plot a cumulative, normalized histogram as a\nstep function in order to visualize the empirical cumulative\ndistribution function (CDF) of a sample. We also show the theoretical CDF.\n\nA couple of other options to the ``hist`` function are demonstrated.\nNamely, we use the ``normed`` parameter to normalize the histogram and\na couple of different options to the ``cumulative`` parameter.\nThe ``normed`` parameter takes a boolean value. When ``True``, the bin\nheights are scaled such that the total area of the histogram is 1. The\n``cumulative`` kwarg is a little more nuanced. Like ``normed``, you\ncan pass it True or False, but you can also pass it -1 to reverse the\ndistribution.\n\nSince we're showing a normalized and cumulative histogram, these curves\nare effectively the cumulative distribution functions (CDFs) of the\nsamples. In engineering, empirical CDFs are sometimes called\n\"non-exceedance\" curves. In other words, you can look at the\ny-value for a given-x-value to get the probability of and observation\nfrom the sample not exceeding that x-value. For example, the value of\n225 on the x-axis corresponds to about 0.85 on the y-axis, so there's an\n85% chance that an observation in the sample does not exceed 225.\nConversely, setting, ``cumulative`` to -1 as is done in the\nlast series for this example, creates a \"exceedance\" curve.\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nmu = 200\nsigma = 25\nn_bins = 50\nx = np.random.normal(mu, sigma, size=100)\n\nfig, ax = plt.subplots(figsize=(8, 4))\n\n# plot the cumulative histogram\nn, bins, patches = ax.hist(x, n_bins, density=True, histtype='step',\n cumulative=True, label='Empirical')\n\n# Add a line showing the expected distribution.\ny = ((1 / (np.sqrt(2 * np.pi) * sigma)) *\n np.exp(-0.5 * (1 / sigma * (bins - mu))**2))\ny = y.cumsum()\ny /= y[-1]\n\nax.plot(bins, y, 'k--', linewidth=1.5, label='Theoretical')\n\n# Overlay a reversed cumulative histogram.\nax.hist(x, bins=bins, density=True, histtype='step', cumulative=-1,\n label='Reversed emp.')\n\n# tidy up the figure\nax.grid(True)\nax.legend(loc='right')\nax.set_title('Cumulative step histograms')\nax.set_xlabel('Annual rainfall (mm)')\nax.set_ylabel('Likelihood of occurrence')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2ed90f6680cbb2f05dc89d4e11900e58/colormap_normalizations_diverging.py b/_downloads/2ed90f6680cbb2f05dc89d4e11900e58/colormap_normalizations_diverging.py deleted file mode 120000 index 071b570e4ba..00000000000 --- a/_downloads/2ed90f6680cbb2f05dc89d4e11900e58/colormap_normalizations_diverging.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ed90f6680cbb2f05dc89d4e11900e58/colormap_normalizations_diverging.py \ No newline at end of file diff --git a/_downloads/2edc444470185a66a2ac93d514db050b/scatter_masked.ipynb b/_downloads/2edc444470185a66a2ac93d514db050b/scatter_masked.ipynb deleted file mode 100644 index 8a80f885162..00000000000 --- a/_downloads/2edc444470185a66a2ac93d514db050b/scatter_masked.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Masked\n\n\nMask some data points and add a line demarking\nmasked regions.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nN = 100\nr0 = 0.6\nx = 0.9 * np.random.rand(N)\ny = 0.9 * np.random.rand(N)\narea = (20 * np.random.rand(N))**2 # 0 to 10 point radii\nc = np.sqrt(area)\nr = np.sqrt(x ** 2 + y ** 2)\narea1 = np.ma.masked_where(r < r0, area)\narea2 = np.ma.masked_where(r >= r0, area)\nplt.scatter(x, y, s=area1, marker='^', c=c)\nplt.scatter(x, y, s=area2, marker='o', c=c)\n# Show the boundary between the regions:\ntheta = np.arange(0, np.pi / 2, 0.01)\nplt.plot(r0 * np.cos(theta), r0 * np.sin(theta))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2ef0d74731c9953a4e2181db524dea72/image_transparency_blend.py b/_downloads/2ef0d74731c9953a4e2181db524dea72/image_transparency_blend.py deleted file mode 100644 index d21992aa57a..00000000000 --- a/_downloads/2ef0d74731c9953a4e2181db524dea72/image_transparency_blend.py +++ /dev/null @@ -1,143 +0,0 @@ -""" -=========================================== -Blend transparency with color in 2-D images -=========================================== - -Blend transparency with color to highlight parts of data with imshow. - -A common use for :func:`matplotlib.pyplot.imshow` is to plot a 2-D statistical -map. While ``imshow`` makes it easy to visualize a 2-D matrix as an image, -it doesn't easily let you add transparency to the output. For example, one can -plot a statistic (such as a t-statistic) and color the transparency of -each pixel according to its p-value. This example demonstrates how you can -achieve this effect using :class:`matplotlib.colors.Normalize`. Note that it is -not possible to directly pass alpha values to :func:`matplotlib.pyplot.imshow`. - -First we will generate some data, in this case, we'll create two 2-D "blobs" -in a 2-D grid. One blob will be positive, and the other negative. -""" -# sphinx_gallery_thumbnail_number = 3 -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.colors import Normalize - - -def normal_pdf(x, mean, var): - return np.exp(-(x - mean)**2 / (2*var)) - - -# Generate the space in which the blobs will live -xmin, xmax, ymin, ymax = (0, 100, 0, 100) -n_bins = 100 -xx = np.linspace(xmin, xmax, n_bins) -yy = np.linspace(ymin, ymax, n_bins) - -# Generate the blobs. The range of the values is roughly -.0002 to .0002 -means_high = [20, 50] -means_low = [50, 60] -var = [150, 200] - -gauss_x_high = normal_pdf(xx, means_high[0], var[0]) -gauss_y_high = normal_pdf(yy, means_high[1], var[0]) - -gauss_x_low = normal_pdf(xx, means_low[0], var[1]) -gauss_y_low = normal_pdf(yy, means_low[1], var[1]) - -weights_high = np.array(np.meshgrid(gauss_x_high, gauss_y_high)).prod(0) -weights_low = -1 * np.array(np.meshgrid(gauss_x_low, gauss_y_low)).prod(0) -weights = weights_high + weights_low - -# We'll also create a grey background into which the pixels will fade -greys = np.full((*weights.shape, 3), 70, dtype=np.uint8) - -# First we'll plot these blobs using only ``imshow``. -vmax = np.abs(weights).max() -vmin = -vmax -cmap = plt.cm.RdYlBu - -fig, ax = plt.subplots() -ax.imshow(greys) -ax.imshow(weights, extent=(xmin, xmax, ymin, ymax), cmap=cmap) -ax.set_axis_off() - -############################################################################### -# Blending in transparency -# ======================== -# -# The simplest way to include transparency when plotting data with -# :func:`matplotlib.pyplot.imshow` is to convert the 2-D data array to a -# 3-D image array of rgba values. This can be done with -# :class:`matplotlib.colors.Normalize`. For example, we'll create a gradient -# moving from left to right below. - -# Create an alpha channel of linearly increasing values moving to the right. -alphas = np.ones(weights.shape) -alphas[:, 30:] = np.linspace(1, 0, 70) - -# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow -colors = Normalize(vmin, vmax, clip=True)(weights) -colors = cmap(colors) - -# Now set the alpha channel to the one we created above -colors[..., -1] = alphas - -# Create the figure and image -# Note that the absolute values may be slightly different -fig, ax = plt.subplots() -ax.imshow(greys) -ax.imshow(colors, extent=(xmin, xmax, ymin, ymax)) -ax.set_axis_off() - -############################################################################### -# Using transparency to highlight values with high amplitude -# ========================================================== -# -# Finally, we'll recreate the same plot, but this time we'll use transparency -# to highlight the extreme values in the data. This is often used to highlight -# data points with smaller p-values. We'll also add in contour lines to -# highlight the image values. - -# Create an alpha channel based on weight values -# Any value whose absolute value is > .0001 will have zero transparency -alphas = Normalize(0, .3, clip=True)(np.abs(weights)) -alphas = np.clip(alphas, .4, 1) # alpha value clipped at the bottom at .4 - -# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow -colors = Normalize(vmin, vmax)(weights) -colors = cmap(colors) - -# Now set the alpha channel to the one we created above -colors[..., -1] = alphas - -# Create the figure and image -# Note that the absolute values may be slightly different -fig, ax = plt.subplots() -ax.imshow(greys) -ax.imshow(colors, extent=(xmin, xmax, ymin, ymax)) - -# Add contour lines to further highlight different levels. -ax.contour(weights[::-1], levels=[-.1, .1], colors='k', linestyles='-') -ax.set_axis_off() -plt.show() - -ax.contour(weights[::-1], levels=[-.0001, .0001], colors='k', linestyles='-') -ax.set_axis_off() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.colors.Normalize -matplotlib.axes.Axes.set_axis_off diff --git a/_downloads/2ef616b3808fa6859ab08c0b05116214/axes_zoom_effect.py b/_downloads/2ef616b3808fa6859ab08c0b05116214/axes_zoom_effect.py deleted file mode 120000 index 9659cc71c8d..00000000000 --- a/_downloads/2ef616b3808fa6859ab08c0b05116214/axes_zoom_effect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2ef616b3808fa6859ab08c0b05116214/axes_zoom_effect.py \ No newline at end of file diff --git a/_downloads/2efbf158321b6ee9b59fa6e4e5367de6/demo_axisline_style.py b/_downloads/2efbf158321b6ee9b59fa6e4e5367de6/demo_axisline_style.py deleted file mode 120000 index 7bc9debb4d6..00000000000 --- a/_downloads/2efbf158321b6ee9b59fa6e4e5367de6/demo_axisline_style.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2efbf158321b6ee9b59fa6e4e5367de6/demo_axisline_style.py \ No newline at end of file diff --git a/_downloads/2efd75df26fc33b443d911988ae1ebce/fig_axes_customize_simple.ipynb b/_downloads/2efd75df26fc33b443d911988ae1ebce/fig_axes_customize_simple.ipynb deleted file mode 120000 index 24bcb57325b..00000000000 --- a/_downloads/2efd75df26fc33b443d911988ae1ebce/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2efd75df26fc33b443d911988ae1ebce/fig_axes_customize_simple.ipynb \ No newline at end of file diff --git a/_downloads/2f04b7f833b724b343a1b13f31d15aaf/pyplot_three.ipynb b/_downloads/2f04b7f833b724b343a1b13f31d15aaf/pyplot_three.ipynb deleted file mode 100644 index 774c6869ccb..00000000000 --- a/_downloads/2f04b7f833b724b343a1b13f31d15aaf/pyplot_three.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Three\n\n\nPlot three line plots in a single call to `~matplotlib.pyplot.plot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# evenly sampled time at 200ms intervals\nt = np.arange(0., 5., 0.2)\n\n# red dashes, blue squares and green triangles\nplt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2f0a2c3fbbb1541ce143add28b8d5029/3D.ipynb b/_downloads/2f0a2c3fbbb1541ce143add28b8d5029/3D.ipynb deleted file mode 100644 index 10e268eec0d..00000000000 --- a/_downloads/2f0a2c3fbbb1541ce143add28b8d5029/3D.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage 3D example\n\n\nThis example reproduces the frontpage 3D example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib import cbook\nfrom matplotlib import cm\nfrom matplotlib.colors import LightSource\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nwith cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \\\n np.load(file) as dem:\n z = dem['elevation']\n nrows, ncols = z.shape\n x = np.linspace(dem['xmin'], dem['xmax'], ncols)\n y = np.linspace(dem['ymin'], dem['ymax'], nrows)\n x, y = np.meshgrid(x, y)\n\nregion = np.s_[5:50, 5:50]\nx, y, z = x[region], y[region], z[region]\n\nfig, ax = plt.subplots(subplot_kw=dict(projection='3d'))\n\nls = LightSource(270, 45)\n# To use a custom hillshading mode, override the built-in shading and pass\n# in the rgb colors of the shaded surface calculated from \"shade\".\nrgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft')\nsurf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb,\n linewidth=0, antialiased=False, shade=False)\nax.set_xticks([])\nax.set_yticks([])\nax.set_zticks([])\nfig.savefig(\"surface3d_frontpage.png\", dpi=25) # results in 160x120 px image" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2f0e5368bbf8f488b1494a2041b1d9a8/triplot_demo.py b/_downloads/2f0e5368bbf8f488b1494a2041b1d9a8/triplot_demo.py deleted file mode 120000 index 83c4559b74b..00000000000 --- a/_downloads/2f0e5368bbf8f488b1494a2041b1d9a8/triplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2f0e5368bbf8f488b1494a2041b1d9a8/triplot_demo.py \ No newline at end of file diff --git a/_downloads/2f1b68c7a7fcd59735df21eee6db38ab/autowrap.ipynb b/_downloads/2f1b68c7a7fcd59735df21eee6db38ab/autowrap.ipynb deleted file mode 100644 index 1a703b500cb..00000000000 --- a/_downloads/2f1b68c7a7fcd59735df21eee6db38ab/autowrap.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Auto-wrapping text\n\n\nMatplotlib can wrap text automatically, but if it's too long, the text will be\ndisplayed slightly outside of the boundaries of the axis anyways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig = plt.figure()\nplt.axis([0, 10, 0, 10])\nt = (\"This is a really long string that I'd rather have wrapped so that it \"\n \"doesn't go outside of the figure, but if it's long enough it will go \"\n \"off the top or bottom!\")\nplt.text(4, 1, t, ha='left', rotation=15, wrap=True)\nplt.text(6, 5, t, ha='left', rotation=15, wrap=True)\nplt.text(5, 5, t, ha='right', rotation=-15, wrap=True)\nplt.text(5, 10, t, fontsize=18, style='oblique', ha='center',\n va='top', wrap=True)\nplt.text(3, 4, t, family='serif', style='italic', ha='right', wrap=True)\nplt.text(-1, 0, t, ha='left', rotation=-15, wrap=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2f1d59bec65cb5f22e1a009a9a92ab9e/membrane.ipynb b/_downloads/2f1d59bec65cb5f22e1a009a9a92ab9e/membrane.ipynb deleted file mode 120000 index b254f309a74..00000000000 --- a/_downloads/2f1d59bec65cb5f22e1a009a9a92ab9e/membrane.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2f1d59bec65cb5f22e1a009a9a92ab9e/membrane.ipynb \ No newline at end of file diff --git a/_downloads/2f20518c2f2267494849117fcee2add5/axes_demo.ipynb b/_downloads/2f20518c2f2267494849117fcee2add5/axes_demo.ipynb deleted file mode 120000 index e19a69a5cc5..00000000000 --- a/_downloads/2f20518c2f2267494849117fcee2add5/axes_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2f20518c2f2267494849117fcee2add5/axes_demo.ipynb \ No newline at end of file diff --git a/_downloads/2f21895093276e7b77ea4cdb58983fe0/multicursor.ipynb b/_downloads/2f21895093276e7b77ea4cdb58983fe0/multicursor.ipynb deleted file mode 120000 index 5c8a019d6af..00000000000 --- a/_downloads/2f21895093276e7b77ea4cdb58983fe0/multicursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2f21895093276e7b77ea4cdb58983fe0/multicursor.ipynb \ No newline at end of file diff --git a/_downloads/2f340fbc5b7f4f88eac7a13fd620fe82/artist_reference.py b/_downloads/2f340fbc5b7f4f88eac7a13fd620fe82/artist_reference.py deleted file mode 100644 index 7a3385b9dbc..00000000000 --- a/_downloads/2f340fbc5b7f4f88eac7a13fd620fe82/artist_reference.py +++ /dev/null @@ -1,133 +0,0 @@ -""" -================================ -Reference for Matplotlib artists -================================ - -This example displays several of Matplotlib's graphics primitives (artists) -drawn using matplotlib API. A full list of artists and the documentation is -available at :ref:`the artist API `. - -Copyright (c) 2010, Bartosz Telenczuk -BSD License -""" -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.path as mpath -import matplotlib.lines as mlines -import matplotlib.patches as mpatches -from matplotlib.collections import PatchCollection - - -def label(xy, text): - y = xy[1] - 0.15 # shift y-value for label so that it's below the artist - plt.text(xy[0], y, text, ha="center", family='sans-serif', size=14) - - -fig, ax = plt.subplots() -# create 3x3 grid to plot the artists -grid = np.mgrid[0.2:0.8:3j, 0.2:0.8:3j].reshape(2, -1).T - -patches = [] - -# add a circle -circle = mpatches.Circle(grid[0], 0.1, ec="none") -patches.append(circle) -label(grid[0], "Circle") - -# add a rectangle -rect = mpatches.Rectangle(grid[1] - [0.025, 0.05], 0.05, 0.1, ec="none") -patches.append(rect) -label(grid[1], "Rectangle") - -# add a wedge -wedge = mpatches.Wedge(grid[2], 0.1, 30, 270, ec="none") -patches.append(wedge) -label(grid[2], "Wedge") - -# add a Polygon -polygon = mpatches.RegularPolygon(grid[3], 5, 0.1) -patches.append(polygon) -label(grid[3], "Polygon") - -# add an ellipse -ellipse = mpatches.Ellipse(grid[4], 0.2, 0.1) -patches.append(ellipse) -label(grid[4], "Ellipse") - -# add an arrow -arrow = mpatches.Arrow(grid[5, 0] - 0.05, grid[5, 1] - 0.05, 0.1, 0.1, - width=0.1) -patches.append(arrow) -label(grid[5], "Arrow") - -# add a path patch -Path = mpath.Path -path_data = [ - (Path.MOVETO, [0.018, -0.11]), - (Path.CURVE4, [-0.031, -0.051]), - (Path.CURVE4, [-0.115, 0.073]), - (Path.CURVE4, [-0.03, 0.073]), - (Path.LINETO, [-0.011, 0.039]), - (Path.CURVE4, [0.043, 0.121]), - (Path.CURVE4, [0.075, -0.005]), - (Path.CURVE4, [0.035, -0.027]), - (Path.CLOSEPOLY, [0.018, -0.11])] -codes, verts = zip(*path_data) -path = mpath.Path(verts + grid[6], codes) -patch = mpatches.PathPatch(path) -patches.append(patch) -label(grid[6], "PathPatch") - -# add a fancy box -fancybox = mpatches.FancyBboxPatch( - grid[7] - [0.025, 0.05], 0.05, 0.1, - boxstyle=mpatches.BoxStyle("Round", pad=0.02)) -patches.append(fancybox) -label(grid[7], "FancyBboxPatch") - -# add a line -x, y = np.array([[-0.06, 0.0, 0.1], [0.05, -0.05, 0.05]]) -line = mlines.Line2D(x + grid[8, 0], y + grid[8, 1], lw=5., alpha=0.3) -label(grid[8], "Line2D") - -colors = np.linspace(0, 1, len(patches)) -collection = PatchCollection(patches, cmap=plt.cm.hsv, alpha=0.3) -collection.set_array(np.array(colors)) -ax.add_collection(collection) -ax.add_line(line) - -plt.axis('equal') -plt.axis('off') -plt.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.lines -matplotlib.lines.Line2D -matplotlib.patches -matplotlib.patches.Circle -matplotlib.patches.Ellipse -matplotlib.patches.Wedge -matplotlib.patches.Rectangle -matplotlib.patches.Arrow -matplotlib.patches.PathPatch -matplotlib.patches.FancyBboxPatch -matplotlib.patches.RegularPolygon -matplotlib.collections -matplotlib.collections.PatchCollection -matplotlib.cm.ScalarMappable.set_array -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.add_line diff --git a/_downloads/2f350cc3d27096728668e15f21c44289/broken_barh.py b/_downloads/2f350cc3d27096728668e15f21c44289/broken_barh.py deleted file mode 120000 index 2d344433e3b..00000000000 --- a/_downloads/2f350cc3d27096728668e15f21c44289/broken_barh.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2f350cc3d27096728668e15f21c44289/broken_barh.py \ No newline at end of file diff --git a/_downloads/2f4517c1f692506a761c8175b710240d/simple_axesgrid.py b/_downloads/2f4517c1f692506a761c8175b710240d/simple_axesgrid.py deleted file mode 120000 index a08d631237d..00000000000 --- a/_downloads/2f4517c1f692506a761c8175b710240d/simple_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2f4517c1f692506a761c8175b710240d/simple_axesgrid.py \ No newline at end of file diff --git a/_downloads/2f5245f79f88480e0e62eb7f0b5dcd63/mathtext_demo.ipynb b/_downloads/2f5245f79f88480e0e62eb7f0b5dcd63/mathtext_demo.ipynb deleted file mode 120000 index a9e69df2e6b..00000000000 --- a/_downloads/2f5245f79f88480e0e62eb7f0b5dcd63/mathtext_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2f5245f79f88480e0e62eb7f0b5dcd63/mathtext_demo.ipynb \ No newline at end of file diff --git a/_downloads/2f55e7d3c6f1f46dcc05e217087e84df/box3d.py b/_downloads/2f55e7d3c6f1f46dcc05e217087e84df/box3d.py deleted file mode 120000 index 4b8d4deb503..00000000000 --- a/_downloads/2f55e7d3c6f1f46dcc05e217087e84df/box3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2f55e7d3c6f1f46dcc05e217087e84df/box3d.py \ No newline at end of file diff --git a/_downloads/2f5d56fce4fc456db0a1f4716b7920b9/categorical_variables.ipynb b/_downloads/2f5d56fce4fc456db0a1f4716b7920b9/categorical_variables.ipynb deleted file mode 120000 index 72f803d346d..00000000000 --- a/_downloads/2f5d56fce4fc456db0a1f4716b7920b9/categorical_variables.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2f5d56fce4fc456db0a1f4716b7920b9/categorical_variables.ipynb \ No newline at end of file diff --git a/_downloads/2f666629cf347d013a517a92ea8dca06/hyperlinks_sgskip.ipynb b/_downloads/2f666629cf347d013a517a92ea8dca06/hyperlinks_sgskip.ipynb deleted file mode 120000 index 9c63494871c..00000000000 --- a/_downloads/2f666629cf347d013a517a92ea8dca06/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2f666629cf347d013a517a92ea8dca06/hyperlinks_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/2f6e22c5f0dbcf5e7b461fcc905783c5/patch_collection.py b/_downloads/2f6e22c5f0dbcf5e7b461fcc905783c5/patch_collection.py deleted file mode 120000 index a24c0187cb1..00000000000 --- a/_downloads/2f6e22c5f0dbcf5e7b461fcc905783c5/patch_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2f6e22c5f0dbcf5e7b461fcc905783c5/patch_collection.py \ No newline at end of file diff --git a/_downloads/2f7057b932f4a0b68f0caeb5848238b7/connect_simple01.ipynb b/_downloads/2f7057b932f4a0b68f0caeb5848238b7/connect_simple01.ipynb deleted file mode 120000 index 9927f822437..00000000000 --- a/_downloads/2f7057b932f4a0b68f0caeb5848238b7/connect_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2f7057b932f4a0b68f0caeb5848238b7/connect_simple01.ipynb \ No newline at end of file diff --git a/_downloads/2f73a834ce912f590a8cb055753ad149/style_sheets_reference.py b/_downloads/2f73a834ce912f590a8cb055753ad149/style_sheets_reference.py deleted file mode 120000 index 4c1cc58b234..00000000000 --- a/_downloads/2f73a834ce912f590a8cb055753ad149/style_sheets_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2f73a834ce912f590a8cb055753ad149/style_sheets_reference.py \ No newline at end of file diff --git a/_downloads/2f764dc710d85c9be10213ee05944997/trisurf3d.ipynb b/_downloads/2f764dc710d85c9be10213ee05944997/trisurf3d.ipynb deleted file mode 100644 index 7c3431d1bde..00000000000 --- a/_downloads/2f764dc710d85c9be10213ee05944997/trisurf3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triangular 3D surfaces\n\n\nPlot a 3D surface with a triangular mesh.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nn_radii = 8\nn_angles = 36\n\n# Make radii and angles spaces (radius r=0 omitted to eliminate duplication).\nradii = np.linspace(0.125, 1.0, n_radii)\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)[..., np.newaxis]\n\n# Convert polar (radii, angles) coords to cartesian (x, y) coords.\n# (0, 0) is manually added at this stage, so there will be no duplicate\n# points in the (x, y) plane.\nx = np.append(0, (radii*np.cos(angles)).flatten())\ny = np.append(0, (radii*np.sin(angles)).flatten())\n\n# Compute z to make the pringle surface.\nz = np.sin(-x*y)\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\nax.plot_trisurf(x, y, z, linewidth=0.2, antialiased=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/2f77e792f88bec41127cf8dbcab7f8c4/trifinder_event_demo.ipynb b/_downloads/2f77e792f88bec41127cf8dbcab7f8c4/trifinder_event_demo.ipynb deleted file mode 120000 index 6305ba68898..00000000000 --- a/_downloads/2f77e792f88bec41127cf8dbcab7f8c4/trifinder_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/2f77e792f88bec41127cf8dbcab7f8c4/trifinder_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/2f7aa3d763174318d0306c2dbca75e3b/image_thumbnail_sgskip.py b/_downloads/2f7aa3d763174318d0306c2dbca75e3b/image_thumbnail_sgskip.py deleted file mode 120000 index 43317f81e00..00000000000 --- a/_downloads/2f7aa3d763174318d0306c2dbca75e3b/image_thumbnail_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/2f7aa3d763174318d0306c2dbca75e3b/image_thumbnail_sgskip.py \ No newline at end of file diff --git a/_downloads/2f8bcedae36fb0081ec07974378ebc83/histogram_features.py b/_downloads/2f8bcedae36fb0081ec07974378ebc83/histogram_features.py deleted file mode 120000 index c258c1ff148..00000000000 --- a/_downloads/2f8bcedae36fb0081ec07974378ebc83/histogram_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/2f8bcedae36fb0081ec07974378ebc83/histogram_features.py \ No newline at end of file diff --git a/_downloads/2f94416f00fbb6d7f558c3bfd4aafc2a/anchored_artists.py b/_downloads/2f94416f00fbb6d7f558c3bfd4aafc2a/anchored_artists.py deleted file mode 120000 index a154c2fca5a..00000000000 --- a/_downloads/2f94416f00fbb6d7f558c3bfd4aafc2a/anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2f94416f00fbb6d7f558c3bfd4aafc2a/anchored_artists.py \ No newline at end of file diff --git a/_downloads/2fa20d04c4fbe9b7d334fcfd7c507390/pie.ipynb b/_downloads/2fa20d04c4fbe9b7d334fcfd7c507390/pie.ipynb deleted file mode 120000 index 69a161f7620..00000000000 --- a/_downloads/2fa20d04c4fbe9b7d334fcfd7c507390/pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2fa20d04c4fbe9b7d334fcfd7c507390/pie.ipynb \ No newline at end of file diff --git a/_downloads/2fa4b84465925224840a2670e8f2a48b/simple_legend02.py b/_downloads/2fa4b84465925224840a2670e8f2a48b/simple_legend02.py deleted file mode 100644 index 2f9be117257..00000000000 --- a/_downloads/2fa4b84465925224840a2670e8f2a48b/simple_legend02.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -=============== -Simple Legend02 -=============== - -""" -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -line1, = ax.plot([1, 2, 3], label="Line 1", linestyle='--') -line2, = ax.plot([3, 2, 1], label="Line 2", linewidth=4) - -# Create a legend for the first line. -first_legend = ax.legend(handles=[line1], loc='upper right') - -# Add the legend manually to the current Axes. -ax.add_artist(first_legend) - -# Create another legend for the second line. -ax.legend(handles=[line2], loc='lower right') - -plt.show() diff --git a/_downloads/2faa2cb97ea84e6129ad0113e333e2bd/annotate_simple_coord01.py b/_downloads/2faa2cb97ea84e6129ad0113e333e2bd/annotate_simple_coord01.py deleted file mode 100644 index 71f2642ccaf..00000000000 --- a/_downloads/2faa2cb97ea84e6129ad0113e333e2bd/annotate_simple_coord01.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -======================= -Annotate Simple Coord01 -======================= - -""" - -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(3, 2)) -an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) -an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1, - xytext=(30, 0), textcoords="offset points", - va="center", ha="left", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) -plt.show() diff --git a/_downloads/2fbe4413b0e026535c43cbc125dcdd6c/image_antialiasing.ipynb b/_downloads/2fbe4413b0e026535c43cbc125dcdd6c/image_antialiasing.ipynb deleted file mode 120000 index 8288b459a79..00000000000 --- a/_downloads/2fbe4413b0e026535c43cbc125dcdd6c/image_antialiasing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2fbe4413b0e026535c43cbc125dcdd6c/image_antialiasing.ipynb \ No newline at end of file diff --git a/_downloads/2fc26af9780ab6df9084fcf9d56c509f/demo_ticklabel_alignment.ipynb b/_downloads/2fc26af9780ab6df9084fcf9d56c509f/demo_ticklabel_alignment.ipynb deleted file mode 120000 index 3f54b1efbd0..00000000000 --- a/_downloads/2fc26af9780ab6df9084fcf9d56c509f/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2fc26af9780ab6df9084fcf9d56c509f/demo_ticklabel_alignment.ipynb \ No newline at end of file diff --git a/_downloads/2fc6411f21d70449facf2a679da940b3/pyplot_text.py b/_downloads/2fc6411f21d70449facf2a679da940b3/pyplot_text.py deleted file mode 100644 index b5952ba0070..00000000000 --- a/_downloads/2fc6411f21d70449facf2a679da940b3/pyplot_text.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=========== -Pyplot Text -=========== - -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -mu, sigma = 100, 15 -x = mu + sigma * np.random.randn(10000) - -# the histogram of the data -n, bins, patches = plt.hist(x, 50, density=True, facecolor='g', alpha=0.75) - - -plt.xlabel('Smarts') -plt.ylabel('Probability') -plt.title('Histogram of IQ') -plt.text(60, .025, r'$\mu=100,\ \sigma=15$') -plt.xlim(40, 160) -plt.ylim(0, 0.03) -plt.grid(True) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.hist -matplotlib.pyplot.xlabel -matplotlib.pyplot.ylabel -matplotlib.pyplot.text -matplotlib.pyplot.grid -matplotlib.pyplot.show diff --git a/_downloads/2fdab858ab7887ca2acedffe8e105dd1/font_table.py b/_downloads/2fdab858ab7887ca2acedffe8e105dd1/font_table.py deleted file mode 100644 index 2cfbd366f65..00000000000 --- a/_downloads/2fdab858ab7887ca2acedffe8e105dd1/font_table.py +++ /dev/null @@ -1,120 +0,0 @@ -""" -========== -Font table -========== - -Matplotlib's font support is provided by the FreeType library. - -Here, we use `~.Axes.table` to draw a table that shows the glyphs by Unicode -codepoint. For brevity, the table only contains the first 256 glyphs. - -The example is a full working script. You can download it and use it to -investigate a font by running :: - - python font_table.py /path/to/font/file -""" - -import unicodedata - -import matplotlib.font_manager as fm -from matplotlib.ft2font import FT2Font -import matplotlib.pyplot as plt - - -def print_glyphs(path): - """ - Print the all glyphs in the given font file to stdout. - - Parameters - ---------- - path : str or None - The path to the font file. If None, use Matplotlib's default font. - """ - if path is None: - path = fm.findfont(fm.FontProperties()) # The default font. - - font = FT2Font(path) - - charmap = font.get_charmap() - max_indices_len = len(str(max(charmap.values()))) - - print("The font face contains the following glyphs:") - for char_code, glyph_index in charmap.items(): - char = chr(char_code) - name = unicodedata.name( - char, - f"{char_code:#x} ({font.get_glyph_name(glyph_index)})") - print(f"{glyph_index:>{max_indices_len}} {char} {name}") - - -def draw_font_table(path): - """ - Draw a font table of the first 255 chars of the given font. - - Parameters - ---------- - path : str or None - The path to the font file. If None, use Matplotlib's default font. - """ - if path is None: - path = fm.findfont(fm.FontProperties()) # The default font. - - font = FT2Font(path) - # A charmap is a mapping of "character codes" (in the sense of a character - # encoding, e.g. latin-1) to glyph indices (i.e. the internal storage table - # of the font face). - # In FreeType>=2.1, a Unicode charmap (i.e. mapping Unicode codepoints) - # is selected by default. Moreover, recent versions of FreeType will - # automatically synthesize such a charmap if the font does not include one - # (this behavior depends on the font format; for example it is present - # since FreeType 2.0 for Type 1 fonts but only since FreeType 2.8 for - # TrueType (actually, SFNT) fonts). - # The code below (specifically, the ``chr(char_code)`` call) assumes that - # we have indeed selected a Unicode charmap. - codes = font.get_charmap().items() - - labelc = ["{:X}".format(i) for i in range(16)] - labelr = ["{:02X}".format(16 * i) for i in range(16)] - chars = [["" for c in range(16)] for r in range(16)] - - for char_code, glyph_index in codes: - if char_code >= 256: - continue - row, col = divmod(char_code, 16) - chars[row][col] = chr(char_code) - - fig, ax = plt.subplots(figsize=(8, 4)) - ax.set_title(path) - ax.set_axis_off() - - table = ax.table( - cellText=chars, - rowLabels=labelr, - colLabels=labelc, - rowColours=["palegreen"] * 16, - colColours=["palegreen"] * 16, - cellColours=[[".95" for c in range(16)] for r in range(16)], - cellLoc='center', - loc='upper left', - ) - for key, cell in table.get_celld().items(): - row, col = key - if row > 0 and col > -1: # Beware of table's idiosyncratic indexing... - cell.set_text_props(fontproperties=fm.FontProperties(fname=path)) - - fig.tight_layout() - plt.show() - - -if __name__ == "__main__": - from argparse import ArgumentParser - - parser = ArgumentParser(description="Display a font table.") - parser.add_argument("path", nargs="?", help="Path to the font file.") - parser.add_argument("--print-all", action="store_true", - help="Additionally, print all chars to stdout.") - args = parser.parse_args() - - if args.print_all: - print_glyphs(args.path) - draw_font_table(args.path) diff --git a/_downloads/2fdd8f8dd00b94d7a17116fcea9d8d15/annotate_text_arrow.py b/_downloads/2fdd8f8dd00b94d7a17116fcea9d8d15/annotate_text_arrow.py deleted file mode 120000 index 808a446b186..00000000000 --- a/_downloads/2fdd8f8dd00b94d7a17116fcea9d8d15/annotate_text_arrow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2fdd8f8dd00b94d7a17116fcea9d8d15/annotate_text_arrow.py \ No newline at end of file diff --git a/_downloads/2fecba2ed0dd6dcfbcd45d87a2b279c4/simple_colorbar.ipynb b/_downloads/2fecba2ed0dd6dcfbcd45d87a2b279c4/simple_colorbar.ipynb deleted file mode 120000 index 6312b0d2310..00000000000 --- a/_downloads/2fecba2ed0dd6dcfbcd45d87a2b279c4/simple_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2fecba2ed0dd6dcfbcd45d87a2b279c4/simple_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/2fef89d7c897e246454d9884dd6f01c5/auto_subplots_adjust.ipynb b/_downloads/2fef89d7c897e246454d9884dd6f01c5/auto_subplots_adjust.ipynb deleted file mode 120000 index 99e92ef8088..00000000000 --- a/_downloads/2fef89d7c897e246454d9884dd6f01c5/auto_subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2fef89d7c897e246454d9884dd6f01c5/auto_subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/2ff24e32e325e455d65a638a75d1a2ab/text3d.ipynb b/_downloads/2ff24e32e325e455d65a638a75d1a2ab/text3d.ipynb deleted file mode 120000 index f191f05d572..00000000000 --- a/_downloads/2ff24e32e325e455d65a638a75d1a2ab/text3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/2ff24e32e325e455d65a638a75d1a2ab/text3d.ipynb \ No newline at end of file diff --git a/_downloads/2ff9ce47261bba5919c0ab3619d1a291/boxplot.ipynb b/_downloads/2ff9ce47261bba5919c0ab3619d1a291/boxplot.ipynb deleted file mode 120000 index 76fe5dbd83e..00000000000 --- a/_downloads/2ff9ce47261bba5919c0ab3619d1a291/boxplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ff9ce47261bba5919c0ab3619d1a291/boxplot.ipynb \ No newline at end of file diff --git a/_downloads/2ffec15cb83658720a022992b92ccc6c/dark_background.py b/_downloads/2ffec15cb83658720a022992b92ccc6c/dark_background.py deleted file mode 120000 index 52de17a7147..00000000000 --- a/_downloads/2ffec15cb83658720a022992b92ccc6c/dark_background.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/2ffec15cb83658720a022992b92ccc6c/dark_background.py \ No newline at end of file diff --git a/_downloads/3007e5c4d78a27825e0a085a74165674/demo_gridspec05.ipynb b/_downloads/3007e5c4d78a27825e0a085a74165674/demo_gridspec05.ipynb deleted file mode 120000 index 23abfc0a715..00000000000 --- a/_downloads/3007e5c4d78a27825e0a085a74165674/demo_gridspec05.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/3007e5c4d78a27825e0a085a74165674/demo_gridspec05.ipynb \ No newline at end of file diff --git a/_downloads/3010acd04924cbb3be67fdb16c8db5a7/log_demo.ipynb b/_downloads/3010acd04924cbb3be67fdb16c8db5a7/log_demo.ipynb deleted file mode 100644 index 2895579651f..00000000000 --- a/_downloads/3010acd04924cbb3be67fdb16c8db5a7/log_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Log Demo\n\n\nExamples of plots with logarithmic axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Data for plotting\nt = np.arange(0.01, 20.0, 0.01)\n\n# Create figure\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\n\n# log y axis\nax1.semilogy(t, np.exp(-t / 5.0))\nax1.set(title='semilogy')\nax1.grid()\n\n# log x axis\nax2.semilogx(t, np.sin(2 * np.pi * t))\nax2.set(title='semilogx')\nax2.grid()\n\n# log x and y axis\nax3.loglog(t, 20 * np.exp(-t / 10.0), basex=2)\nax3.set(title='loglog base 2 on x')\nax3.grid()\n\n# With errorbars: clip non-positive values\n# Use new data for plotting\nx = 10.0**np.linspace(0.0, 2.0, 20)\ny = x**2.0\n\nax4.set_xscale(\"log\", nonposx='clip')\nax4.set_yscale(\"log\", nonposy='clip')\nax4.set(title='Errorbars go negative')\nax4.errorbar(x, y, xerr=0.1 * x, yerr=5.0 + 0.75 * y)\n# ylim must be set after errorbar to allow errorbar to autoscale limits\nax4.set_ylim(bottom=0.1)\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3027b9331499bec8db83e595708c433a/mixed_subplots.py b/_downloads/3027b9331499bec8db83e595708c433a/mixed_subplots.py deleted file mode 120000 index 71f4f85153a..00000000000 --- a/_downloads/3027b9331499bec8db83e595708c433a/mixed_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3027b9331499bec8db83e595708c433a/mixed_subplots.py \ No newline at end of file diff --git a/_downloads/3028a747eba6252a53f2dd1ebbdeb8f0/bmh.py b/_downloads/3028a747eba6252a53f2dd1ebbdeb8f0/bmh.py deleted file mode 120000 index 9b9daeaae2e..00000000000 --- a/_downloads/3028a747eba6252a53f2dd1ebbdeb8f0/bmh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3028a747eba6252a53f2dd1ebbdeb8f0/bmh.py \ No newline at end of file diff --git a/_downloads/302e480a33fbc96f07a52954c9937454/timeline.ipynb b/_downloads/302e480a33fbc96f07a52954c9937454/timeline.ipynb deleted file mode 100644 index 01073f4abb4..00000000000 --- a/_downloads/302e480a33fbc96f07a52954c9937454/timeline.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===============================================\nCreating a timeline with lines, dates, and text\n===============================================\n\nHow to create a simple timeline using Matplotlib release dates.\n\nTimelines can be created with a collection of dates and text. In this example,\nwe show how to create a simple timeline using the dates for recent releases\nof Matplotlib. First, we'll pull the data from GitHub.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.dates as mdates\nfrom datetime import datetime\n\ntry:\n # Try to fetch a list of Matplotlib releases and their dates\n # from https://api.github.com/repos/matplotlib/matplotlib/releases\n import urllib.request\n import json\n\n url = 'https://api.github.com/repos/matplotlib/matplotlib/releases'\n url += '?per_page=100'\n data = json.loads(urllib.request.urlopen(url, timeout=.4).read().decode())\n\n dates = []\n names = []\n for item in data:\n if 'rc' not in item['tag_name'] and 'b' not in item['tag_name']:\n dates.append(item['published_at'].split(\"T\")[0])\n names.append(item['tag_name'])\n # Convert date strings (e.g. 2014-10-18) to datetime\n dates = [datetime.strptime(d, \"%Y-%m-%d\") for d in dates]\n\nexcept Exception:\n # In case the above fails, e.g. because of missing internet connection\n # use the following lists as fallback.\n names = ['v2.2.4', 'v3.0.3', 'v3.0.2', 'v3.0.1', 'v3.0.0', 'v2.2.3',\n 'v2.2.2', 'v2.2.1', 'v2.2.0', 'v2.1.2', 'v2.1.1', 'v2.1.0',\n 'v2.0.2', 'v2.0.1', 'v2.0.0', 'v1.5.3', 'v1.5.2', 'v1.5.1',\n 'v1.5.0', 'v1.4.3', 'v1.4.2', 'v1.4.1', 'v1.4.0']\n\n dates = ['2019-02-26', '2019-02-26', '2018-11-10', '2018-11-10',\n '2018-09-18', '2018-08-10', '2018-03-17', '2018-03-16',\n '2018-03-06', '2018-01-18', '2017-12-10', '2017-10-07',\n '2017-05-10', '2017-05-02', '2017-01-17', '2016-09-09',\n '2016-07-03', '2016-01-10', '2015-10-29', '2015-02-16',\n '2014-10-26', '2014-10-18', '2014-08-26']\n\n # Convert date strings (e.g. 2014-10-18) to datetime\n dates = [datetime.strptime(d, \"%Y-%m-%d\") for d in dates]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next, we'll create a `~.Axes.stem` plot with some variation in levels as to\ndistinguish even close-by events. In contrast to a usual stem plot, we will\nshift the markers to the baseline for visual emphasis on the one-dimensional\nnature of the time line.\nFor each event, we add a text label via `~.Axes.annotate`, which is offset\nin units of points from the tip of the event line.\n\nNote that Matplotlib will automatically plot datetime inputs.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Choose some nice levels\nlevels = np.tile([-5, 5, -3, 3, -1, 1],\n int(np.ceil(len(dates)/6)))[:len(dates)]\n\n# Create figure and plot a stem plot with the date\nfig, ax = plt.subplots(figsize=(8.8, 4), constrained_layout=True)\nax.set(title=\"Matplotlib release dates\")\n\nmarkerline, stemline, baseline = ax.stem(dates, levels,\n linefmt=\"C3-\", basefmt=\"k-\",\n use_line_collection=True)\n\nplt.setp(markerline, mec=\"k\", mfc=\"w\", zorder=3)\n\n# Shift the markers to the baseline by replacing the y-data by zeros.\nmarkerline.set_ydata(np.zeros(len(dates)))\n\n# annotate lines\nvert = np.array(['top', 'bottom'])[(levels > 0).astype(int)]\nfor d, l, r, va in zip(dates, levels, names, vert):\n ax.annotate(r, xy=(d, l), xytext=(-3, np.sign(l)*3),\n textcoords=\"offset points\", va=va, ha=\"right\")\n\n# format xaxis with 4 month intervals\nax.get_xaxis().set_major_locator(mdates.MonthLocator(interval=4))\nax.get_xaxis().set_major_formatter(mdates.DateFormatter(\"%b %Y\"))\nplt.setp(ax.get_xticklabels(), rotation=30, ha=\"right\")\n\n# remove y axis and spines\nax.get_yaxis().set_visible(False)\nfor spine in [\"left\", \"top\", \"right\"]:\n ax.spines[spine].set_visible(False)\n\nax.margins(y=0.1)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.stem\nmatplotlib.axes.Axes.annotate\nmatplotlib.axis.Axis.set_major_locator\nmatplotlib.axis.Axis.set_major_formatter\nmatplotlib.dates.MonthLocator\nmatplotlib.dates.DateFormatter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/30304bb8492477e296e102df785fe36f/trigradient_demo.py b/_downloads/30304bb8492477e296e102df785fe36f/trigradient_demo.py deleted file mode 120000 index 5b60ee1202f..00000000000 --- a/_downloads/30304bb8492477e296e102df785fe36f/trigradient_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/30304bb8492477e296e102df785fe36f/trigradient_demo.py \ No newline at end of file diff --git a/_downloads/304266e8a32f48bb6464986d6925ed23/auto_subplots_adjust.ipynb b/_downloads/304266e8a32f48bb6464986d6925ed23/auto_subplots_adjust.ipynb deleted file mode 120000 index c376704e3fc..00000000000 --- a/_downloads/304266e8a32f48bb6464986d6925ed23/auto_subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/304266e8a32f48bb6464986d6925ed23/auto_subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/305210950d9ea6b6ac57330bcc204174/slider_demo.ipynb b/_downloads/305210950d9ea6b6ac57330bcc204174/slider_demo.ipynb deleted file mode 120000 index 505d52c07c7..00000000000 --- a/_downloads/305210950d9ea6b6ac57330bcc204174/slider_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/305210950d9ea6b6ac57330bcc204174/slider_demo.ipynb \ No newline at end of file diff --git a/_downloads/306697558f5a4592262c90b4db80c57d/shading_example.py b/_downloads/306697558f5a4592262c90b4db80c57d/shading_example.py deleted file mode 120000 index 47512521764..00000000000 --- a/_downloads/306697558f5a4592262c90b4db80c57d/shading_example.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/306697558f5a4592262c90b4db80c57d/shading_example.py \ No newline at end of file diff --git a/_downloads/30705d6ca09bd94ca7873082938277cb/simple_axisline3.ipynb b/_downloads/30705d6ca09bd94ca7873082938277cb/simple_axisline3.ipynb deleted file mode 120000 index 66951cd05df..00000000000 --- a/_downloads/30705d6ca09bd94ca7873082938277cb/simple_axisline3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/30705d6ca09bd94ca7873082938277cb/simple_axisline3.ipynb \ No newline at end of file diff --git a/_downloads/307694bad3a3d5439721bc6ec0bac0b2/mathtext_demo.py b/_downloads/307694bad3a3d5439721bc6ec0bac0b2/mathtext_demo.py deleted file mode 120000 index 9ea3dda1dfe..00000000000 --- a/_downloads/307694bad3a3d5439721bc6ec0bac0b2/mathtext_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/307694bad3a3d5439721bc6ec0bac0b2/mathtext_demo.py \ No newline at end of file diff --git a/_downloads/3079c73df2d870898b2e64efb38ac89a/pick_event_demo2.ipynb b/_downloads/3079c73df2d870898b2e64efb38ac89a/pick_event_demo2.ipynb deleted file mode 120000 index 976b7dcd532..00000000000 --- a/_downloads/3079c73df2d870898b2e64efb38ac89a/pick_event_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3079c73df2d870898b2e64efb38ac89a/pick_event_demo2.ipynb \ No newline at end of file diff --git a/_downloads/307a5ea07e772278597fb7131c0de8ce/embedding_in_gtk3_sgskip.py b/_downloads/307a5ea07e772278597fb7131c0de8ce/embedding_in_gtk3_sgskip.py deleted file mode 100644 index eae425e520a..00000000000 --- a/_downloads/307a5ea07e772278597fb7131c0de8ce/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -================= -Embedding in GTK3 -================= - -Demonstrate adding a FigureCanvasGTK3Agg widget to a Gtk.ScrolledWindow using -GTK3 accessed via pygobject. -""" - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - -from matplotlib.backends.backend_gtk3agg import ( - FigureCanvasGTK3Agg as FigureCanvas) -from matplotlib.figure import Figure -import numpy as np - -win = Gtk.Window() -win.connect("delete-event", Gtk.main_quit) -win.set_default_size(400, 300) -win.set_title("Embedding in GTK") - -f = Figure(figsize=(5, 4), dpi=100) -a = f.add_subplot(111) -t = np.arange(0.0, 3.0, 0.01) -s = np.sin(2*np.pi*t) -a.plot(t, s) - -sw = Gtk.ScrolledWindow() -win.add(sw) -# A scrolled window border goes outside the scrollbars and viewport -sw.set_border_width(10) - -canvas = FigureCanvas(f) # a Gtk.DrawingArea -canvas.set_size_request(800, 600) -sw.add_with_viewport(canvas) - -win.show_all() -Gtk.main() diff --git a/_downloads/30844224cef27410c2de9a16fd6f1651/table_demo.ipynb b/_downloads/30844224cef27410c2de9a16fd6f1651/table_demo.ipynb deleted file mode 100644 index 8933fb963e3..00000000000 --- a/_downloads/30844224cef27410c2de9a16fd6f1651/table_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Table Demo\n\n\nDemo of table function to display a table within a plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndata = [[ 66386, 174296, 75131, 577908, 32015],\n [ 58230, 381139, 78045, 99308, 160454],\n [ 89135, 80552, 152558, 497981, 603535],\n [ 78415, 81858, 150656, 193263, 69638],\n [139361, 331509, 343164, 781380, 52269]]\n\ncolumns = ('Freeze', 'Wind', 'Flood', 'Quake', 'Hail')\nrows = ['%d year' % x for x in (100, 50, 20, 10, 5)]\n\nvalues = np.arange(0, 2500, 500)\nvalue_increment = 1000\n\n# Get some pastel shades for the colors\ncolors = plt.cm.BuPu(np.linspace(0, 0.5, len(rows)))\nn_rows = len(data)\n\nindex = np.arange(len(columns)) + 0.3\nbar_width = 0.4\n\n# Initialize the vertical-offset for the stacked bar chart.\ny_offset = np.zeros(len(columns))\n\n# Plot bars and create text labels for the table\ncell_text = []\nfor row in range(n_rows):\n plt.bar(index, data[row], bar_width, bottom=y_offset, color=colors[row])\n y_offset = y_offset + data[row]\n cell_text.append(['%1.1f' % (x / 1000.0) for x in y_offset])\n# Reverse colors and text labels to display the last value at the top.\ncolors = colors[::-1]\ncell_text.reverse()\n\n# Add a table at the bottom of the axes\nthe_table = plt.table(cellText=cell_text,\n rowLabels=rows,\n rowColours=colors,\n colLabels=columns,\n loc='bottom')\n\n# Adjust layout to make room for the table:\nplt.subplots_adjust(left=0.2, bottom=0.2)\n\nplt.ylabel(\"Loss in ${0}'s\".format(value_increment))\nplt.yticks(values * value_increment, ['%d' % val for val in values])\nplt.xticks([])\nplt.title('Loss by Disaster')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3087a511212bd361b276bf30041db47d/symlog_demo.py b/_downloads/3087a511212bd361b276bf30041db47d/symlog_demo.py deleted file mode 120000 index 60ebc9c8070..00000000000 --- a/_downloads/3087a511212bd361b276bf30041db47d/symlog_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3087a511212bd361b276bf30041db47d/symlog_demo.py \ No newline at end of file diff --git a/_downloads/30880830cd1f825880070d0f9541ea52/pylab_with_gtk_sgskip.ipynb b/_downloads/30880830cd1f825880070d0f9541ea52/pylab_with_gtk_sgskip.ipynb deleted file mode 120000 index bf3a45cb6fd..00000000000 --- a/_downloads/30880830cd1f825880070d0f9541ea52/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/30880830cd1f825880070d0f9541ea52/pylab_with_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/308c0f6e14d5ed6d3475e5e88c95ccb4/text_layout.py b/_downloads/308c0f6e14d5ed6d3475e5e88c95ccb4/text_layout.py deleted file mode 100644 index 4e28cf98904..00000000000 --- a/_downloads/308c0f6e14d5ed6d3475e5e88c95ccb4/text_layout.py +++ /dev/null @@ -1,98 +0,0 @@ -""" -=========== -Text Layout -=========== - -Create text with different alignment and rotation. -""" -import matplotlib.pyplot as plt -import matplotlib.patches as patches - -# build a rectangle in axes coords -left, width = .25, .5 -bottom, height = .25, .5 -right = left + width -top = bottom + height - -fig = plt.figure() -ax = fig.add_axes([0,0,1,1]) - -# axes coordinates are 0,0 is bottom left and 1,1 is upper right -p = patches.Rectangle( - (left, bottom), width, height, - fill=False, transform=ax.transAxes, clip_on=False - ) - -ax.add_patch(p) - -ax.text(left, bottom, 'left top', - horizontalalignment='left', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, bottom, 'left bottom', - horizontalalignment='left', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right bottom', - horizontalalignment='right', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right top', - horizontalalignment='right', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(right, bottom, 'center top', - horizontalalignment='center', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'right center', - horizontalalignment='right', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'left center', - horizontalalignment='left', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(0.5*(left+right), 0.5*(bottom+top), 'middle', - horizontalalignment='center', - verticalalignment='center', - fontsize=20, color='red', - transform=ax.transAxes) - -ax.text(right, 0.5*(bottom+top), 'centered', - horizontalalignment='center', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, top, 'rotated\nwith newlines', - horizontalalignment='center', - verticalalignment='center', - rotation=45, - transform=ax.transAxes) - -ax.set_axis_off() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.text -matplotlib.pyplot.text diff --git a/_downloads/309362d41bbde0ec3ac28e1b6b8fc350/mathtext_asarray.ipynb b/_downloads/309362d41bbde0ec3ac28e1b6b8fc350/mathtext_asarray.ipynb deleted file mode 100644 index c727fd76394..00000000000 --- a/_downloads/309362d41bbde0ec3ac28e1b6b8fc350/mathtext_asarray.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# A mathtext image as numpy array\n\n\nMake images from LaTeX strings.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.mathtext as mathtext\nimport matplotlib.pyplot as plt\nimport matplotlib\nmatplotlib.rc('image', origin='upper')\n\nparser = mathtext.MathTextParser(\"Bitmap\")\nparser.to_png('test2.png',\n r'$\\left[\\left\\lfloor\\frac{5}{\\frac{\\left(3\\right)}{4}} '\n r'y\\right)\\right]$', color='green', fontsize=14, dpi=100)\n\nrgba1, depth1 = parser.to_rgba(\n r'IQ: $\\sigma_i=15$', color='blue', fontsize=20, dpi=200)\nrgba2, depth2 = parser.to_rgba(\n r'some other string', color='red', fontsize=20, dpi=200)\n\nfig = plt.figure()\nfig.figimage(rgba1, 100, 100)\nfig.figimage(rgba2, 100, 300)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.mathtext\nmatplotlib.mathtext.MathTextParser\nmatplotlib.mathtext.MathTextParser.to_png\nmatplotlib.mathtext.MathTextParser.to_rgba\nmatplotlib.figure.Figure.figimage" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3099f141485ec319910ec66b45a6e6b5/advanced_hillshading.ipynb b/_downloads/3099f141485ec319910ec66b45a6e6b5/advanced_hillshading.ipynb deleted file mode 120000 index 65f6df28118..00000000000 --- a/_downloads/3099f141485ec319910ec66b45a6e6b5/advanced_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3099f141485ec319910ec66b45a6e6b5/advanced_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/30ac4ce8d01845a9ee11aba4f961cb85/filled_step.ipynb b/_downloads/30ac4ce8d01845a9ee11aba4f961cb85/filled_step.ipynb deleted file mode 120000 index e1e2983eafd..00000000000 --- a/_downloads/30ac4ce8d01845a9ee11aba4f961cb85/filled_step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/30ac4ce8d01845a9ee11aba4f961cb85/filled_step.ipynb \ No newline at end of file diff --git a/_downloads/30aed3527c05c146b4ffc6c6456ceb95/two_scales.py b/_downloads/30aed3527c05c146b4ffc6c6456ceb95/two_scales.py deleted file mode 120000 index 1d90c8b60e2..00000000000 --- a/_downloads/30aed3527c05c146b4ffc6c6456ceb95/two_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/30aed3527c05c146b4ffc6c6456ceb95/two_scales.py \ No newline at end of file diff --git a/_downloads/30bd12047fe024c266b7b78ca3079fc9/legend_picking.ipynb b/_downloads/30bd12047fe024c266b7b78ca3079fc9/legend_picking.ipynb deleted file mode 100644 index 32a680ddbae..00000000000 --- a/_downloads/30bd12047fe024c266b7b78ca3079fc9/legend_picking.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend Picking\n\n\nEnable picking on the legend to toggle the original line on and off\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0.0, 0.2, 0.1)\ny1 = 2*np.sin(2*np.pi*t)\ny2 = 4*np.sin(2*np.pi*2*t)\n\nfig, ax = plt.subplots()\nax.set_title('Click on legend line to toggle line on/off')\nline1, = ax.plot(t, y1, lw=2, label='1 HZ')\nline2, = ax.plot(t, y2, lw=2, label='2 HZ')\nleg = ax.legend(loc='upper left', fancybox=True, shadow=True)\nleg.get_frame().set_alpha(0.4)\n\n\n# we will set up a dict mapping legend line to orig line, and enable\n# picking on the legend line\nlines = [line1, line2]\nlined = dict()\nfor legline, origline in zip(leg.get_lines(), lines):\n legline.set_picker(5) # 5 pts tolerance\n lined[legline] = origline\n\n\ndef onpick(event):\n # on the pick event, find the orig line corresponding to the\n # legend proxy line, and toggle the visibility\n legline = event.artist\n origline = lined[legline]\n vis = not origline.get_visible()\n origline.set_visible(vis)\n # Change the alpha on the line in the legend so we can see what lines\n # have been toggled\n if vis:\n legline.set_alpha(1.0)\n else:\n legline.set_alpha(0.2)\n fig.canvas.draw()\n\nfig.canvas.mpl_connect('pick_event', onpick)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/30c0e76a2332b897b75e7418f6ab7681/scatter_masked.py b/_downloads/30c0e76a2332b897b75e7418f6ab7681/scatter_masked.py deleted file mode 120000 index 960e5f75bdf..00000000000 --- a/_downloads/30c0e76a2332b897b75e7418f6ab7681/scatter_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/30c0e76a2332b897b75e7418f6ab7681/scatter_masked.py \ No newline at end of file diff --git a/_downloads/30c2ffcc8f6ebff9f1ceeccab55b2819/axis_equal_demo.py b/_downloads/30c2ffcc8f6ebff9f1ceeccab55b2819/axis_equal_demo.py deleted file mode 100644 index 002a2bb62b4..00000000000 --- a/_downloads/30c2ffcc8f6ebff9f1ceeccab55b2819/axis_equal_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=============== -Axis Equal Demo -=============== - -How to set and adjust plots with equal axis ratios. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Plot circle of radius 3. - -an = np.linspace(0, 2 * np.pi, 100) -fig, axs = plt.subplots(2, 2) - -axs[0, 0].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[0, 0].set_title('not equal, looks like ellipse', fontsize=10) - -axs[0, 1].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[0, 1].axis('equal') -axs[0, 1].set_title('equal, looks like circle', fontsize=10) - -axs[1, 0].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[1, 0].axis('equal') -axs[1, 0].set(xlim=(-3, 3), ylim=(-3, 3)) -axs[1, 0].set_title('still a circle, even after changing limits', fontsize=10) - -axs[1, 1].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[1, 1].set_aspect('equal', 'box') -axs[1, 1].set_title('still a circle, auto-adjusted data limits', fontsize=10) - -fig.tight_layout() - -plt.show() diff --git a/_downloads/30c363f65325562b4373a0070f0d06ce/axhspan_demo.py b/_downloads/30c363f65325562b4373a0070f0d06ce/axhspan_demo.py deleted file mode 120000 index 54e61ba1339..00000000000 --- a/_downloads/30c363f65325562b4373a0070f0d06ce/axhspan_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/30c363f65325562b4373a0070f0d06ce/axhspan_demo.py \ No newline at end of file diff --git a/_downloads/30c68ab20ce8891210840e6d0877eb37/simple_axisline3.py b/_downloads/30c68ab20ce8891210840e6d0877eb37/simple_axisline3.py deleted file mode 120000 index 85eebd7b06b..00000000000 --- a/_downloads/30c68ab20ce8891210840e6d0877eb37/simple_axisline3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/30c68ab20ce8891210840e6d0877eb37/simple_axisline3.py \ No newline at end of file diff --git a/_downloads/30c7c01efac863ba51d270eb1b48a8c7/contour_demo.ipynb b/_downloads/30c7c01efac863ba51d270eb1b48a8c7/contour_demo.ipynb deleted file mode 120000 index ddf87bcea79..00000000000 --- a/_downloads/30c7c01efac863ba51d270eb1b48a8c7/contour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/30c7c01efac863ba51d270eb1b48a8c7/contour_demo.ipynb \ No newline at end of file diff --git a/_downloads/30d01b834a6badb63a526140baa53607/triplot_demo.ipynb b/_downloads/30d01b834a6badb63a526140baa53607/triplot_demo.ipynb deleted file mode 120000 index 6db6b82e17d..00000000000 --- a/_downloads/30d01b834a6badb63a526140baa53607/triplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/30d01b834a6badb63a526140baa53607/triplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/30d265280c944e920e35d16a47dbc6ee/unchained.py b/_downloads/30d265280c944e920e35d16a47dbc6ee/unchained.py deleted file mode 120000 index 33751a0233e..00000000000 --- a/_downloads/30d265280c944e920e35d16a47dbc6ee/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/30d265280c944e920e35d16a47dbc6ee/unchained.py \ No newline at end of file diff --git a/_downloads/30ddb66882595e70f8388a8770b50226/demo_ribbon_box.ipynb b/_downloads/30ddb66882595e70f8388a8770b50226/demo_ribbon_box.ipynb deleted file mode 120000 index 85468c5c799..00000000000 --- a/_downloads/30ddb66882595e70f8388a8770b50226/demo_ribbon_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/30ddb66882595e70f8388a8770b50226/demo_ribbon_box.ipynb \ No newline at end of file diff --git a/_downloads/30e2c0998a24a0b4ee1efbd9a3ce8369/pythonic_matplotlib.ipynb b/_downloads/30e2c0998a24a0b4ee1efbd9a3ce8369/pythonic_matplotlib.ipynb deleted file mode 100644 index 543bf1aba37..00000000000 --- a/_downloads/30e2c0998a24a0b4ee1efbd9a3ce8369/pythonic_matplotlib.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pythonic Matplotlib\n\n\nSome people prefer to write more pythonic, object-oriented code\nrather than use the pyplot interface to matplotlib. This example shows\nyou how.\n\nUnless you are an application developer, I recommend using part of the\npyplot interface, particularly the figure, close, subplot, axes, and\nshow commands. These hide a lot of complexity from you that you don't\nneed to see in normal figure creation, like instantiating DPI\ninstances, managing the bounding boxes of the figure elements,\ncreating and realizing GUI windows and embedding figures in them.\n\nIf you are an application developer and want to embed matplotlib in\nyour application, follow the lead of examples/embedding_in_wx.py,\nexamples/embedding_in_gtk.py or examples/embedding_in_tk.py. In this\ncase you will want to control the creation of all your figures,\nembedding them in application windows, etc.\n\nIf you are a web application developer, you may want to use the\nexample in webapp_demo.py, which shows how to use the backend agg\nfigure canvas directly, with none of the globals (current figure,\ncurrent axes) that are present in the pyplot interface. Note that\nthere is no reason why the pyplot interface won't work for web\napplication developers, however.\n\nIf you see an example in the examples dir written in pyplot interface,\nand you want to emulate that using the true python method calls, there\nis an easy mapping. Many of those examples use 'set' to control\nfigure properties. Here's how to map those commands onto instance\nmethods\n\nThe syntax of set is::\n\n plt.setp(object or sequence, somestring, attribute)\n\nif called with an object, set calls::\n\n object.set_somestring(attribute)\n\nif called with a sequence, set does::\n\n for object in sequence:\n object.set_somestring(attribute)\n\nSo for your example, if a is your axes object, you can do::\n\n a.set_xticklabels([])\n a.set_yticklabels([])\n a.set_xticks([])\n a.set_yticks([])\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 1.0, 0.01)\n\nfig, (ax1, ax2) = plt.subplots(2)\n\nax1.plot(t, np.sin(2*np.pi * t))\nax1.grid(True)\nax1.set_ylim((-2, 2))\nax1.set_ylabel('1 Hz')\nax1.set_title('A sine wave or two')\n\nax1.xaxis.set_tick_params(labelcolor='r')\n\nax2.plot(t, np.sin(2 * 2*np.pi * t))\nax2.grid(True)\nax2.set_ylim((-2, 2))\nl = ax2.set_xlabel('Hi mom')\nl.set_color('g')\nl.set_fontsize('large')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/30e49bc716f8977e6fcbadd395b6240f/quadmesh_demo.py b/_downloads/30e49bc716f8977e6fcbadd395b6240f/quadmesh_demo.py deleted file mode 120000 index c525bf2eb5d..00000000000 --- a/_downloads/30e49bc716f8977e6fcbadd395b6240f/quadmesh_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/30e49bc716f8977e6fcbadd395b6240f/quadmesh_demo.py \ No newline at end of file diff --git a/_downloads/30e6e1fb75f141e2c9223a55c96ca3c5/custom_figure_class.ipynb b/_downloads/30e6e1fb75f141e2c9223a55c96ca3c5/custom_figure_class.ipynb deleted file mode 100644 index 76999fa54fc..00000000000 --- a/_downloads/30e6e1fb75f141e2c9223a55c96ca3c5/custom_figure_class.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Figure Class\n\n\nYou can pass a custom Figure constructor to figure if you want to derive from\nthe default Figure. This simple example creates a figure with a figure title.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.figure import Figure\n\n\nclass MyFigure(Figure):\n def __init__(self, *args, figtitle='hi mom', **kwargs):\n \"\"\"\n custom kwarg figtitle is a figure title\n \"\"\"\n super().__init__(*args, **kwargs)\n self.text(0.5, 0.95, figtitle, ha='center')\n\n\nfig = plt.figure(FigureClass=MyFigure, figtitle='my title')\nax = fig.subplots()\nax.plot([1, 2, 3])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3105d34f3acb688e5a321e1254d0173e/pick_event_demo2.ipynb b/_downloads/3105d34f3acb688e5a321e1254d0173e/pick_event_demo2.ipynb deleted file mode 100644 index 3b2c539218c..00000000000 --- a/_downloads/3105d34f3acb688e5a321e1254d0173e/pick_event_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pick Event Demo2\n\n\ncompute the mean and standard deviation (stddev) of 100 data sets and plot\nmean vs stddev. When you click on one of the mu, sigma points, plot the raw\ndata from the dataset that generated the mean and stddev.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nX = np.random.rand(100, 1000)\nxs = np.mean(X, axis=1)\nys = np.std(X, axis=1)\n\nfig, ax = plt.subplots()\nax.set_title('click on point to plot time series')\nline, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance\n\n\ndef onpick(event):\n\n if event.artist != line:\n return True\n\n N = len(event.ind)\n if not N:\n return True\n\n figi, axs = plt.subplots(N, squeeze=False)\n for ax, dataind in zip(axs.flat, event.ind):\n ax.plot(X[dataind])\n ax.text(.05, .9, 'mu=%1.3f\\nsigma=%1.3f' % (xs[dataind], ys[dataind]),\n transform=ax.transAxes, va='top')\n ax.set_ylim(-0.5, 1.5)\n figi.show()\n return True\n\nfig.canvas.mpl_connect('pick_event', onpick)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3117b83d10de27103ab2f24e601c3158/transoffset.py b/_downloads/3117b83d10de27103ab2f24e601c3158/transoffset.py deleted file mode 100644 index d9acf0aa6cf..00000000000 --- a/_downloads/3117b83d10de27103ab2f24e601c3158/transoffset.py +++ /dev/null @@ -1,58 +0,0 @@ -''' -=========== -Transoffset -=========== - -This illustrates the use of transforms.offset_copy to -make a transform that positions a drawing element such as -a text string at a specified offset in screen coordinates -(dots or inches) relative to a location given in any -coordinates. - -Every Artist--the mpl class from which classes such as -Text and Line are derived--has a transform that can be -set when the Artist is created, such as by the corresponding -pyplot command. By default this is usually the Axes.transData -transform, going from data units to screen dots. We can -use the offset_copy function to make a modified copy of -this transform, where the modification consists of an -offset. -''' - -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms -import numpy as np - - -xs = np.arange(7) -ys = xs**2 - -fig = plt.figure(figsize=(5, 10)) -ax = plt.subplot(2, 1, 1) - -# If we want the same offset for each text instance, -# we only need to make one transform. To get the -# transform argument to offset_copy, we need to make the axes -# first; the subplot command above is one way to do this. -trans_offset = mtransforms.offset_copy(ax.transData, fig=fig, - x=0.05, y=0.10, units='inches') - -for x, y in zip(xs, ys): - plt.plot(x, y, 'ro') - plt.text(x, y, '%d, %d' % (int(x), int(y)), transform=trans_offset) - - -# offset_copy works for polar plots also. -ax = plt.subplot(2, 1, 2, projection='polar') - -trans_offset = mtransforms.offset_copy(ax.transData, fig=fig, - y=6, units='dots') - -for x, y in zip(xs, ys): - plt.polar(x, y, 'ro') - plt.text(x, y, '%d, %d' % (int(x), int(y)), - transform=trans_offset, - horizontalalignment='center', - verticalalignment='bottom') - -plt.show() diff --git a/_downloads/311f10272beb4919dd1e167d470b0df6/image_zcoord.py b/_downloads/311f10272beb4919dd1e167d470b0df6/image_zcoord.py deleted file mode 120000 index 71ff9fc97ce..00000000000 --- a/_downloads/311f10272beb4919dd1e167d470b0df6/image_zcoord.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/311f10272beb4919dd1e167d470b0df6/image_zcoord.py \ No newline at end of file diff --git a/_downloads/31255d89ae162028285848b454629d11/demo_ticklabel_alignment.py b/_downloads/31255d89ae162028285848b454629d11/demo_ticklabel_alignment.py deleted file mode 120000 index 67590553ad9..00000000000 --- a/_downloads/31255d89ae162028285848b454629d11/demo_ticklabel_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/31255d89ae162028285848b454629d11/demo_ticklabel_alignment.py \ No newline at end of file diff --git a/_downloads/3132d5e9fb8916e278944f5cce55f9f4/scatter.ipynb b/_downloads/3132d5e9fb8916e278944f5cce55f9f4/scatter.ipynb deleted file mode 120000 index c442b0189e2..00000000000 --- a/_downloads/3132d5e9fb8916e278944f5cce55f9f4/scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3132d5e9fb8916e278944f5cce55f9f4/scatter.ipynb \ No newline at end of file diff --git a/_downloads/313b2e985951ec4df5b1082bf6a18493/custom_boxstyle02.py b/_downloads/313b2e985951ec4df5b1082bf6a18493/custom_boxstyle02.py deleted file mode 100644 index 5b2ef39d7a7..00000000000 --- a/_downloads/313b2e985951ec4df5b1082bf6a18493/custom_boxstyle02.py +++ /dev/null @@ -1,79 +0,0 @@ -""" -================= -Custom Boxstyle02 -================= - -""" -from matplotlib.path import Path -from matplotlib.patches import BoxStyle -import matplotlib.pyplot as plt - - -# we may derive from matplotlib.patches.BoxStyle._Base class. -# You need to override transmute method in this case. -class MyStyle(BoxStyle._Base): - """ - A simple box. - """ - - def __init__(self, pad=0.3): - """ - The arguments need to be floating numbers and need to have - default values. - - *pad* - amount of padding - """ - - self.pad = pad - super().__init__() - - def transmute(self, x0, y0, width, height, mutation_size): - """ - Given the location and size of the box, return the path of - the box around it. - - - *x0*, *y0*, *width*, *height* : location and size of the box - - *mutation_size* : a reference scale for the mutation. - - Often, the *mutation_size* is the font size of the text. - You don't need to worry about the rotation as it is - automatically taken care of. - """ - - # padding - pad = mutation_size * self.pad - - # width and height with padding added. - width, height = width + 2.*pad, \ - height + 2.*pad, - - # boundary of the padded box - x0, y0 = x0-pad, y0-pad, - x1, y1 = x0+width, y0 + height - - cp = [(x0, y0), - (x1, y0), (x1, y1), (x0, y1), - (x0-pad, (y0+y1)/2.), (x0, y0), - (x0, y0)] - - com = [Path.MOVETO, - Path.LINETO, Path.LINETO, Path.LINETO, - Path.LINETO, Path.LINETO, - Path.CLOSEPOLY] - - path = Path(cp, com) - - return path - - -# register the custom style -BoxStyle._style_list["angled"] = MyStyle - -fig, ax = plt.subplots(figsize=(3, 3)) -ax.text(0.5, 0.5, "Test", size=30, va="center", ha="center", rotation=30, - bbox=dict(boxstyle="angled,pad=0.5", alpha=0.2)) - -del BoxStyle._style_list["angled"] - -plt.show() diff --git a/_downloads/314dfaca9b98c29a32db01f63ac445c8/hist3d.py b/_downloads/314dfaca9b98c29a32db01f63ac445c8/hist3d.py deleted file mode 120000 index 81b25fcd22a..00000000000 --- a/_downloads/314dfaca9b98c29a32db01f63ac445c8/hist3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/314dfaca9b98c29a32db01f63ac445c8/hist3d.py \ No newline at end of file diff --git a/_downloads/3155ba19c0dc0c04500ea25773718b5f/mri_demo.py b/_downloads/3155ba19c0dc0c04500ea25773718b5f/mri_demo.py deleted file mode 120000 index 66449a9c049..00000000000 --- a/_downloads/3155ba19c0dc0c04500ea25773718b5f/mri_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3155ba19c0dc0c04500ea25773718b5f/mri_demo.py \ No newline at end of file diff --git a/_downloads/315b7dec4359698e1f64a60e12f6ec22/masked_demo.ipynb b/_downloads/315b7dec4359698e1f64a60e12f6ec22/masked_demo.ipynb deleted file mode 120000 index 5642d630c26..00000000000 --- a/_downloads/315b7dec4359698e1f64a60e12f6ec22/masked_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/315b7dec4359698e1f64a60e12f6ec22/masked_demo.ipynb \ No newline at end of file diff --git a/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip b/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip deleted file mode 120000 index 858ef608c12..00000000000 --- a/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/315f3bb5ad5c872c94cccd7b62244a95/quad_bezier.py b/_downloads/315f3bb5ad5c872c94cccd7b62244a95/quad_bezier.py deleted file mode 100644 index 0aacd26c55f..00000000000 --- a/_downloads/315f3bb5ad5c872c94cccd7b62244a95/quad_bezier.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============ -Bezier Curve -============ - -This example showcases the `~.patches.PathPatch` object to create a Bezier -polycurve path patch. -""" - -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -Path = mpath.Path - -fig, ax = plt.subplots() -pp1 = mpatches.PathPatch( - Path([(0, 0), (1, 0), (1, 1), (0, 0)], - [Path.MOVETO, Path.CURVE3, Path.CURVE3, Path.CLOSEPOLY]), - fc="none", transform=ax.transData) - -ax.add_patch(pp1) -ax.plot([0.75], [0.25], "ro") -ax.set_title('The red point should be on the path') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.axes.Axes.add_patch diff --git a/_downloads/3162f1c23cafbec9f9c6165f58f7bb44/affine_image.py b/_downloads/3162f1c23cafbec9f9c6165f58f7bb44/affine_image.py deleted file mode 120000 index 1177c308020..00000000000 --- a/_downloads/3162f1c23cafbec9f9c6165f58f7bb44/affine_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3162f1c23cafbec9f9c6165f58f7bb44/affine_image.py \ No newline at end of file diff --git a/_downloads/316ccf36c50e19d18c5c8f6c5e15d954/gridspec_and_subplots.ipynb b/_downloads/316ccf36c50e19d18c5c8f6c5e15d954/gridspec_and_subplots.ipynb deleted file mode 120000 index 3dc6ba7666c..00000000000 --- a/_downloads/316ccf36c50e19d18c5c8f6c5e15d954/gridspec_and_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/316ccf36c50e19d18c5c8f6c5e15d954/gridspec_and_subplots.ipynb \ No newline at end of file diff --git a/_downloads/3176fbac0610315c57dfbe77c4669ba0/annotate_with_units.ipynb b/_downloads/3176fbac0610315c57dfbe77c4669ba0/annotate_with_units.ipynb deleted file mode 120000 index 030d03156c9..00000000000 --- a/_downloads/3176fbac0610315c57dfbe77c4669ba0/annotate_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3176fbac0610315c57dfbe77c4669ba0/annotate_with_units.ipynb \ No newline at end of file diff --git a/_downloads/31791f4165cb5d6c8f39df6b2329b30b/image_masked.ipynb b/_downloads/31791f4165cb5d6c8f39df6b2329b30b/image_masked.ipynb deleted file mode 100644 index 8f06c486068..00000000000 --- a/_downloads/31791f4165cb5d6c8f39df6b2329b30b/image_masked.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Masked\n\n\nimshow with masked array input and out-of-range colors.\n\nThe second subplot illustrates the use of BoundaryNorm to\nget a filled contour effect.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from copy import copy\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\n# compute some interesting data\nx0, x1 = -5, 5\ny0, y1 = -3, 3\nx = np.linspace(x0, x1, 500)\ny = np.linspace(y0, y1, 500)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n# Set up a colormap:\n# use copy so that we do not mutate the global colormap instance\npalette = copy(plt.cm.gray)\npalette.set_over('r', 1.0)\npalette.set_under('g', 1.0)\npalette.set_bad('b', 1.0)\n# Alternatively, we could use\n# palette.set_bad(alpha = 0.0)\n# to make the bad region transparent. This is the default.\n# If you comment out all the palette.set* lines, you will see\n# all the defaults; under and over will be colored with the\n# first and last colors in the palette, respectively.\nZm = np.ma.masked_where(Z > 1.2, Z)\n\n# By setting vmin and vmax in the norm, we establish the\n# range to which the regular palette color scale is applied.\n# Anything above that range is colored based on palette.set_over, etc.\n\n# set up the Axes objects\nfig, (ax1, ax2) = plt.subplots(nrows=2, figsize=(6, 5.4))\n\n# plot using 'continuous' color map\nim = ax1.imshow(Zm, interpolation='bilinear',\n cmap=palette,\n norm=colors.Normalize(vmin=-1.0, vmax=1.0),\n aspect='auto',\n origin='lower',\n extent=[x0, x1, y0, y1])\nax1.set_title('Green=low, Red=high, Blue=masked')\ncbar = fig.colorbar(im, extend='both', shrink=0.9, ax=ax1)\ncbar.set_label('uniform')\nfor ticklabel in ax1.xaxis.get_ticklabels():\n ticklabel.set_visible(False)\n\n# Plot using a small number of colors, with unevenly spaced boundaries.\nim = ax2.imshow(Zm, interpolation='nearest',\n cmap=palette,\n norm=colors.BoundaryNorm([-1, -0.5, -0.2, 0, 0.2, 0.5, 1],\n ncolors=palette.N),\n aspect='auto',\n origin='lower',\n extent=[x0, x1, y0, y1])\nax2.set_title('With BoundaryNorm')\ncbar = fig.colorbar(im, extend='both', spacing='proportional',\n shrink=0.9, ax=ax2)\ncbar.set_label('proportional')\n\nfig.suptitle('imshow, with out-of-range and masked data')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.BoundaryNorm\nmatplotlib.colorbar.ColorbarBase.set_label" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/317e58a8ca4f3cfc78c1bcc63c6de2f8/subplot3d.py b/_downloads/317e58a8ca4f3cfc78c1bcc63c6de2f8/subplot3d.py deleted file mode 100644 index e9c1c3f2d71..00000000000 --- a/_downloads/317e58a8ca4f3cfc78c1bcc63c6de2f8/subplot3d.py +++ /dev/null @@ -1,48 +0,0 @@ -''' -==================== -3D plots as subplots -==================== - -Demonstrate including 3D plots as subplots. -''' - -import matplotlib.pyplot as plt -from matplotlib import cm -import numpy as np - -from mpl_toolkits.mplot3d.axes3d import get_test_data -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -# set up a figure twice as wide as it is tall -fig = plt.figure(figsize=plt.figaspect(0.5)) - -#=============== -# First subplot -#=============== -# set up the axes for the first plot -ax = fig.add_subplot(1, 2, 1, projection='3d') - -# plot a 3D surface like in the example mplot3d/surface3d_demo -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) -surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm, - linewidth=0, antialiased=False) -ax.set_zlim(-1.01, 1.01) -fig.colorbar(surf, shrink=0.5, aspect=10) - -#=============== -# Second subplot -#=============== -# set up the axes for the second plot -ax = fig.add_subplot(1, 2, 2, projection='3d') - -# plot a 3D wireframe like in the example mplot3d/wire3d_demo -X, Y, Z = get_test_data(0.05) -ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) - -plt.show() diff --git a/_downloads/31931e64f688324768b5092cca3e45c4/histogram_histtypes.py b/_downloads/31931e64f688324768b5092cca3e45c4/histogram_histtypes.py deleted file mode 100644 index 9ea875617f2..00000000000 --- a/_downloads/31931e64f688324768b5092cca3e45c4/histogram_histtypes.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -================================================================ -Demo of the histogram function's different ``histtype`` settings -================================================================ - -* Histogram with step curve that has a color fill. -* Histogram with custom and unequal bin widths. - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -mu = 200 -sigma = 25 -x = np.random.normal(mu, sigma, size=100) - -fig, (ax0, ax1) = plt.subplots(ncols=2, figsize=(8, 4)) - -ax0.hist(x, 20, density=True, histtype='stepfilled', facecolor='g', alpha=0.75) -ax0.set_title('stepfilled') - -# Create a histogram by providing the bin edges (unequally spaced). -bins = [100, 150, 180, 195, 205, 220, 250, 300] -ax1.hist(x, bins, density=True, histtype='bar', rwidth=0.8) -ax1.set_title('unequal bins') - -fig.tight_layout() -plt.show() diff --git a/_downloads/31960c6c4669dd7003bf13365feb608b/log_test.ipynb b/_downloads/31960c6c4669dd7003bf13365feb608b/log_test.ipynb deleted file mode 120000 index d787b33e2bf..00000000000 --- a/_downloads/31960c6c4669dd7003bf13365feb608b/log_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/31960c6c4669dd7003bf13365feb608b/log_test.ipynb \ No newline at end of file diff --git a/_downloads/319b2b9027c123790a024608ef1578e7/images.py b/_downloads/319b2b9027c123790a024608ef1578e7/images.py deleted file mode 120000 index 8d91bd1247c..00000000000 --- a/_downloads/319b2b9027c123790a024608ef1578e7/images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/319b2b9027c123790a024608ef1578e7/images.py \ No newline at end of file diff --git a/_downloads/31a74c6c206fccda62ec3ea0c588dab8/wire3d_animation_sgskip.ipynb b/_downloads/31a74c6c206fccda62ec3ea0c588dab8/wire3d_animation_sgskip.ipynb deleted file mode 120000 index 01bfc163dd5..00000000000 --- a/_downloads/31a74c6c206fccda62ec3ea0c588dab8/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/31a74c6c206fccda62ec3ea0c588dab8/wire3d_animation_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/31aa8791db3384cd69701c000fb2a17e/images.ipynb b/_downloads/31aa8791db3384cd69701c000fb2a17e/images.ipynb deleted file mode 120000 index 01f384369c3..00000000000 --- a/_downloads/31aa8791db3384cd69701c000fb2a17e/images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/31aa8791db3384cd69701c000fb2a17e/images.ipynb \ No newline at end of file diff --git a/_downloads/31b31bc49deeea7b6a33d49e30dad958/auto_ticks.py b/_downloads/31b31bc49deeea7b6a33d49e30dad958/auto_ticks.py deleted file mode 120000 index 037cf7c1156..00000000000 --- a/_downloads/31b31bc49deeea7b6a33d49e30dad958/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/31b31bc49deeea7b6a33d49e30dad958/auto_ticks.py \ No newline at end of file diff --git a/_downloads/31be1ae7326cb2d5910b7a3544201a2e/date_index_formatter.py b/_downloads/31be1ae7326cb2d5910b7a3544201a2e/date_index_formatter.py deleted file mode 120000 index 9244d1c492a..00000000000 --- a/_downloads/31be1ae7326cb2d5910b7a3544201a2e/date_index_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/31be1ae7326cb2d5910b7a3544201a2e/date_index_formatter.py \ No newline at end of file diff --git a/_downloads/31c17248741bc7280d3e6900776a2fc2/log_test.py b/_downloads/31c17248741bc7280d3e6900776a2fc2/log_test.py deleted file mode 120000 index d174f5b8dec..00000000000 --- a/_downloads/31c17248741bc7280d3e6900776a2fc2/log_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/31c17248741bc7280d3e6900776a2fc2/log_test.py \ No newline at end of file diff --git a/_downloads/31c5575abc152a89dd97079ff1e2f646/wire3d_zero_stride.py b/_downloads/31c5575abc152a89dd97079ff1e2f646/wire3d_zero_stride.py deleted file mode 120000 index 0dcf35291f4..00000000000 --- a/_downloads/31c5575abc152a89dd97079ff1e2f646/wire3d_zero_stride.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/31c5575abc152a89dd97079ff1e2f646/wire3d_zero_stride.py \ No newline at end of file diff --git a/_downloads/31ca0c35984b64899c9ae58b31771f43/contourf_demo.ipynb b/_downloads/31ca0c35984b64899c9ae58b31771f43/contourf_demo.ipynb deleted file mode 120000 index bbaf08b602b..00000000000 --- a/_downloads/31ca0c35984b64899c9ae58b31771f43/contourf_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/31ca0c35984b64899c9ae58b31771f43/contourf_demo.ipynb \ No newline at end of file diff --git a/_downloads/31d01ceacac0ad14b1163cf6633fba0b/xkcd.py b/_downloads/31d01ceacac0ad14b1163cf6633fba0b/xkcd.py deleted file mode 120000 index 3a4348fbbf4..00000000000 --- a/_downloads/31d01ceacac0ad14b1163cf6633fba0b/xkcd.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/31d01ceacac0ad14b1163cf6633fba0b/xkcd.py \ No newline at end of file diff --git a/_downloads/31d312b3fca8102ce334ea92d3b3c448/broken_axis.ipynb b/_downloads/31d312b3fca8102ce334ea92d3b3c448/broken_axis.ipynb deleted file mode 120000 index 06fd5cb65bf..00000000000 --- a/_downloads/31d312b3fca8102ce334ea92d3b3c448/broken_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/31d312b3fca8102ce334ea92d3b3c448/broken_axis.ipynb \ No newline at end of file diff --git a/_downloads/31d93907b49c67cfeabb526b10f5a83c/stackplot_demo.py b/_downloads/31d93907b49c67cfeabb526b10f5a83c/stackplot_demo.py deleted file mode 120000 index 8c0e9275ccd..00000000000 --- a/_downloads/31d93907b49c67cfeabb526b10f5a83c/stackplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/31d93907b49c67cfeabb526b10f5a83c/stackplot_demo.py \ No newline at end of file diff --git a/_downloads/31e4a3d2f12b23415af1af371c9baed4/tight_bbox_test.ipynb b/_downloads/31e4a3d2f12b23415af1af371c9baed4/tight_bbox_test.ipynb deleted file mode 120000 index 0812d895831..00000000000 --- a/_downloads/31e4a3d2f12b23415af1af371c9baed4/tight_bbox_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/31e4a3d2f12b23415af1af371c9baed4/tight_bbox_test.ipynb \ No newline at end of file diff --git a/_downloads/31e7df2a64024f41868c0a858fdfa19b/demo_axes_divider.py b/_downloads/31e7df2a64024f41868c0a858fdfa19b/demo_axes_divider.py deleted file mode 100644 index 62d94a8d478..00000000000 --- a/_downloads/31e7df2a64024f41868c0a858fdfa19b/demo_axes_divider.py +++ /dev/null @@ -1,131 +0,0 @@ -""" -================= -Demo Axes Divider -================= - -Axes divider to calculate location of axes and -create a divider for them using existing axes instances. -""" -import matplotlib.pyplot as plt - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def demo_simple_image(ax): - Z, extent = get_demo_image() - - im = ax.imshow(Z, extent=extent, interpolation="nearest") - cb = plt.colorbar(im) - plt.setp(cb.ax.get_yticklabels(), visible=False) - - -def demo_locatable_axes_hard(fig): - - from mpl_toolkits.axes_grid1 import SubplotDivider, Size - from mpl_toolkits.axes_grid1.mpl_axes import Axes - - divider = SubplotDivider(fig, 2, 2, 2, aspect=True) - - # axes for image - ax = Axes(fig, divider.get_position()) - - # axes for colorbar - ax_cb = Axes(fig, divider.get_position()) - - h = [Size.AxesX(ax), # main axes - Size.Fixed(0.05), # padding, 0.1 inch - Size.Fixed(0.2), # colorbar, 0.3 inch - ] - - v = [Size.AxesY(ax)] - - divider.set_horizontal(h) - divider.set_vertical(v) - - ax.set_axes_locator(divider.new_locator(nx=0, ny=0)) - ax_cb.set_axes_locator(divider.new_locator(nx=2, ny=0)) - - fig.add_axes(ax) - fig.add_axes(ax_cb) - - ax_cb.axis["left"].toggle(all=False) - ax_cb.axis["right"].toggle(ticks=True) - - Z, extent = get_demo_image() - - im = ax.imshow(Z, extent=extent, interpolation="nearest") - plt.colorbar(im, cax=ax_cb) - plt.setp(ax_cb.get_yticklabels(), visible=False) - - -def demo_locatable_axes_easy(ax): - from mpl_toolkits.axes_grid1 import make_axes_locatable - - divider = make_axes_locatable(ax) - - ax_cb = divider.new_horizontal(size="5%", pad=0.05) - fig = ax.get_figure() - fig.add_axes(ax_cb) - - Z, extent = get_demo_image() - im = ax.imshow(Z, extent=extent, interpolation="nearest") - - plt.colorbar(im, cax=ax_cb) - ax_cb.yaxis.tick_right() - ax_cb.yaxis.set_tick_params(labelright=False) - - -def demo_images_side_by_side(ax): - from mpl_toolkits.axes_grid1 import make_axes_locatable - - divider = make_axes_locatable(ax) - - Z, extent = get_demo_image() - ax2 = divider.new_horizontal(size="100%", pad=0.05) - fig1 = ax.get_figure() - fig1.add_axes(ax2) - - ax.imshow(Z, extent=extent, interpolation="nearest") - ax2.imshow(Z, extent=extent, interpolation="nearest") - ax2.yaxis.set_tick_params(labelleft=False) - - -def demo(): - - fig = plt.figure(figsize=(6, 6)) - - # PLOT 1 - # simple image & colorbar - ax = fig.add_subplot(2, 2, 1) - demo_simple_image(ax) - - # PLOT 2 - # image and colorbar whose location is adjusted in the drawing time. - # a hard way - - demo_locatable_axes_hard(fig) - - # PLOT 3 - # image and colorbar whose location is adjusted in the drawing time. - # a easy way - - ax = fig.add_subplot(2, 2, 3) - demo_locatable_axes_easy(ax) - - # PLOT 4 - # two images side by side with fixed padding. - - ax = fig.add_subplot(2, 2, 4) - demo_images_side_by_side(ax) - - plt.show() - - -demo() diff --git a/_downloads/31f14bc17fc71c40b617576ab32ddfca/color_by_yvalue.py b/_downloads/31f14bc17fc71c40b617576ab32ddfca/color_by_yvalue.py deleted file mode 120000 index b82eab2578e..00000000000 --- a/_downloads/31f14bc17fc71c40b617576ab32ddfca/color_by_yvalue.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/31f14bc17fc71c40b617576ab32ddfca/color_by_yvalue.py \ No newline at end of file diff --git a/_downloads/31fa58ec8d6c8fd749693c492182e91e/ellipse_demo.py b/_downloads/31fa58ec8d6c8fd749693c492182e91e/ellipse_demo.py deleted file mode 120000 index 9127b20c961..00000000000 --- a/_downloads/31fa58ec8d6c8fd749693c492182e91e/ellipse_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/31fa58ec8d6c8fd749693c492182e91e/ellipse_demo.py \ No newline at end of file diff --git a/_downloads/31fce1bb2f08dc467e617b3041bede83/axes_demo.py b/_downloads/31fce1bb2f08dc467e617b3041bede83/axes_demo.py deleted file mode 120000 index 2586def4472..00000000000 --- a/_downloads/31fce1bb2f08dc467e617b3041bede83/axes_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/31fce1bb2f08dc467e617b3041bede83/axes_demo.py \ No newline at end of file diff --git a/_downloads/31ffcf983a1e6ef07154cbd5eb12eeef/contour3d_2.ipynb b/_downloads/31ffcf983a1e6ef07154cbd5eb12eeef/contour3d_2.ipynb deleted file mode 120000 index 86643a32cc7..00000000000 --- a/_downloads/31ffcf983a1e6ef07154cbd5eb12eeef/contour3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/31ffcf983a1e6ef07154cbd5eb12eeef/contour3d_2.ipynb \ No newline at end of file diff --git a/_downloads/3201e6eef0a42b9299f49b94559f93a9/demo_ticklabel_alignment.ipynb b/_downloads/3201e6eef0a42b9299f49b94559f93a9/demo_ticklabel_alignment.ipynb deleted file mode 120000 index 36551997768..00000000000 --- a/_downloads/3201e6eef0a42b9299f49b94559f93a9/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3201e6eef0a42b9299f49b94559f93a9/demo_ticklabel_alignment.ipynb \ No newline at end of file diff --git a/_downloads/320292e732ccf4585e6048cb7ede3eab/simple_plot.py b/_downloads/320292e732ccf4585e6048cb7ede3eab/simple_plot.py deleted file mode 120000 index 2d6d0e0abef..00000000000 --- a/_downloads/320292e732ccf4585e6048cb7ede3eab/simple_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/320292e732ccf4585e6048cb7ede3eab/simple_plot.py \ No newline at end of file diff --git a/_downloads/320c1bb7d3723325b89059c22de7fa7c/figimage_demo.ipynb b/_downloads/320c1bb7d3723325b89059c22de7fa7c/figimage_demo.ipynb deleted file mode 120000 index 9af13b88b3d..00000000000 --- a/_downloads/320c1bb7d3723325b89059c22de7fa7c/figimage_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/320c1bb7d3723325b89059c22de7fa7c/figimage_demo.ipynb \ No newline at end of file diff --git a/_downloads/320cff53ea5b53fcba353c60eecc77b0/agg_buffer.py b/_downloads/320cff53ea5b53fcba353c60eecc77b0/agg_buffer.py deleted file mode 120000 index a2e3e665771..00000000000 --- a/_downloads/320cff53ea5b53fcba353c60eecc77b0/agg_buffer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/320cff53ea5b53fcba353c60eecc77b0/agg_buffer.py \ No newline at end of file diff --git a/_downloads/32112423985ea838ac76e5e2f1c56444/scatter_piecharts.ipynb b/_downloads/32112423985ea838ac76e5e2f1c56444/scatter_piecharts.ipynb deleted file mode 120000 index 69f2d3ed0fc..00000000000 --- a/_downloads/32112423985ea838ac76e5e2f1c56444/scatter_piecharts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/32112423985ea838ac76e5e2f1c56444/scatter_piecharts.ipynb \ No newline at end of file diff --git a/_downloads/321b254a6c306d759efa93cafcee9011/colormap_normalizations_custom.ipynb b/_downloads/321b254a6c306d759efa93cafcee9011/colormap_normalizations_custom.ipynb deleted file mode 120000 index ce25d39a1b6..00000000000 --- a/_downloads/321b254a6c306d759efa93cafcee9011/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/321b254a6c306d759efa93cafcee9011/colormap_normalizations_custom.ipynb \ No newline at end of file diff --git a/_downloads/321d1e5061dc4abb709be4a5d2fee399/tight_layout_guide.py b/_downloads/321d1e5061dc4abb709be4a5d2fee399/tight_layout_guide.py deleted file mode 120000 index 0963cd80d06..00000000000 --- a/_downloads/321d1e5061dc4abb709be4a5d2fee399/tight_layout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/321d1e5061dc4abb709be4a5d2fee399/tight_layout_guide.py \ No newline at end of file diff --git a/_downloads/321ef5dd347b3b8620ee7bbe50d4178d/path_editor.ipynb b/_downloads/321ef5dd347b3b8620ee7bbe50d4178d/path_editor.ipynb deleted file mode 100644 index 5e9c9fa46af..00000000000 --- a/_downloads/321ef5dd347b3b8620ee7bbe50d4178d/path_editor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Path Editor\n\n\nSharing events across GUIs.\n\nThis example demonstrates a cross-GUI application using Matplotlib event\nhandling to interact with and modify objects on the canvas.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nPath = mpath.Path\n\nfig, ax = plt.subplots()\n\npathdata = [\n (Path.MOVETO, (1.58, -2.57)),\n (Path.CURVE4, (0.35, -1.1)),\n (Path.CURVE4, (-1.75, 2.0)),\n (Path.CURVE4, (0.375, 2.0)),\n (Path.LINETO, (0.85, 1.15)),\n (Path.CURVE4, (2.2, 3.2)),\n (Path.CURVE4, (3, 0.05)),\n (Path.CURVE4, (2.0, -0.5)),\n (Path.CLOSEPOLY, (1.58, -2.57)),\n ]\n\ncodes, verts = zip(*pathdata)\npath = mpath.Path(verts, codes)\npatch = mpatches.PathPatch(path, facecolor='green', edgecolor='yellow', alpha=0.5)\nax.add_patch(patch)\n\n\nclass PathInteractor(object):\n \"\"\"\n An path editor.\n\n Key-bindings\n\n 't' toggle vertex markers on and off. When vertex markers are on,\n you can move them, delete them\n\n\n \"\"\"\n\n showverts = True\n epsilon = 5 # max pixel distance to count as a vertex hit\n\n def __init__(self, pathpatch):\n\n self.ax = pathpatch.axes\n canvas = self.ax.figure.canvas\n self.pathpatch = pathpatch\n self.pathpatch.set_animated(True)\n\n x, y = zip(*self.pathpatch.get_path().vertices)\n\n self.line, = ax.plot(x, y, marker='o', markerfacecolor='r', animated=True)\n\n self._ind = None # the active vert\n\n canvas.mpl_connect('draw_event', self.draw_callback)\n canvas.mpl_connect('button_press_event', self.button_press_callback)\n canvas.mpl_connect('key_press_event', self.key_press_callback)\n canvas.mpl_connect('button_release_event', self.button_release_callback)\n canvas.mpl_connect('motion_notify_event', self.motion_notify_callback)\n self.canvas = canvas\n\n def draw_callback(self, event):\n self.background = self.canvas.copy_from_bbox(self.ax.bbox)\n self.ax.draw_artist(self.pathpatch)\n self.ax.draw_artist(self.line)\n self.canvas.blit(self.ax.bbox)\n\n def pathpatch_changed(self, pathpatch):\n 'this method is called whenever the pathpatchgon object is called'\n # only copy the artist props to the line (except visibility)\n vis = self.line.get_visible()\n plt.Artist.update_from(self.line, pathpatch)\n self.line.set_visible(vis) # don't use the pathpatch visibility state\n\n def get_ind_under_point(self, event):\n 'get the index of the vertex under point if within epsilon tolerance'\n\n # display coords\n xy = np.asarray(self.pathpatch.get_path().vertices)\n xyt = self.pathpatch.get_transform().transform(xy)\n xt, yt = xyt[:, 0], xyt[:, 1]\n d = np.sqrt((xt - event.x)**2 + (yt - event.y)**2)\n ind = d.argmin()\n\n if d[ind] >= self.epsilon:\n ind = None\n\n return ind\n\n def button_press_callback(self, event):\n 'whenever a mouse button is pressed'\n if not self.showverts:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n self._ind = self.get_ind_under_point(event)\n\n def button_release_callback(self, event):\n 'whenever a mouse button is released'\n if not self.showverts:\n return\n if event.button != 1:\n return\n self._ind = None\n\n def key_press_callback(self, event):\n 'whenever a key is pressed'\n if not event.inaxes:\n return\n if event.key == 't':\n self.showverts = not self.showverts\n self.line.set_visible(self.showverts)\n if not self.showverts:\n self._ind = None\n\n self.canvas.draw()\n\n def motion_notify_callback(self, event):\n 'on mouse movement'\n if not self.showverts:\n return\n if self._ind is None:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n x, y = event.xdata, event.ydata\n\n vertices = self.pathpatch.get_path().vertices\n\n vertices[self._ind] = x, y\n self.line.set_data(zip(*vertices))\n\n self.canvas.restore_region(self.background)\n self.ax.draw_artist(self.pathpatch)\n self.ax.draw_artist(self.line)\n self.canvas.blit(self.ax.bbox)\n\n\ninteractor = PathInteractor(patch)\nax.set_title('drag vertices to update path')\nax.set_xlim(-3, 4)\nax.set_ylim(-3, 4)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/322219545d51bdb877c240d09052b3e0/parasite_simple2.ipynb b/_downloads/322219545d51bdb877c240d09052b3e0/parasite_simple2.ipynb deleted file mode 120000 index 338f7beddf4..00000000000 --- a/_downloads/322219545d51bdb877c240d09052b3e0/parasite_simple2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/322219545d51bdb877c240d09052b3e0/parasite_simple2.ipynb \ No newline at end of file diff --git a/_downloads/3224f5e3c48a7734fa374b72f2745bd4/whats_new_99_spines.py b/_downloads/3224f5e3c48a7734fa374b72f2745bd4/whats_new_99_spines.py deleted file mode 120000 index 9e312da9087..00000000000 --- a/_downloads/3224f5e3c48a7734fa374b72f2745bd4/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/3224f5e3c48a7734fa374b72f2745bd4/whats_new_99_spines.py \ No newline at end of file diff --git a/_downloads/3227f29a1f1a9db7dd710eac0e54c41e/mplot3d.py b/_downloads/3227f29a1f1a9db7dd710eac0e54c41e/mplot3d.py deleted file mode 100644 index 212481ee9fe..00000000000 --- a/_downloads/3227f29a1f1a9db7dd710eac0e54c41e/mplot3d.py +++ /dev/null @@ -1,228 +0,0 @@ -""" -=================== -The mplot3d Toolkit -=================== - -Generating 3D plots using the mplot3d toolkit. - -.. currentmodule:: mpl_toolkits.mplot3d - -.. contents:: - :backlinks: none - -.. _toolkit_mplot3d-tutorial: - -Getting started ---------------- -An Axes3D object is created just like any other axes using -the projection='3d' keyword. -Create a new :class:`matplotlib.figure.Figure` and -add a new axes to it of type :class:`~mpl_toolkits.mplot3d.Axes3D`:: - - import matplotlib.pyplot as plt - from mpl_toolkits.mplot3d import Axes3D - fig = plt.figure() - ax = fig.add_subplot(111, projection='3d') - -.. versionadded:: 1.0.0 - This approach is the preferred method of creating a 3D axes. - -.. note:: - Prior to version 1.0.0, the method of creating a 3D axes was - different. For those using older versions of matplotlib, change - ``ax = fig.add_subplot(111, projection='3d')`` - to ``ax = Axes3D(fig)``. - -See the :ref:`toolkit_mplot3d-faq` for more information about the mplot3d -toolkit. - -.. _plot3d: - -Line plots -==================== -.. automethod:: Axes3D.plot - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_lines3d_001.png - :target: ../../gallery/mplot3d/lines3d.html - :align: center - :scale: 50 - - Lines3d - -.. _scatter3d: - -Scatter plots -============= -.. automethod:: Axes3D.scatter - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_scatter3d_001.png - :target: ../../gallery/mplot3d/scatter3d.html - :align: center - :scale: 50 - - Scatter3d - -.. _wireframe: - -Wireframe plots -=============== -.. automethod:: Axes3D.plot_wireframe - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_wire3d_001.png - :target: ../../gallery/mplot3d/wire3d.html - :align: center - :scale: 50 - - Wire3d - -.. _surface: - -Surface plots -============= -.. automethod:: Axes3D.plot_surface - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png - :target: ../../gallery/mplot3d/surface3d.html - :align: center - :scale: 50 - - Surface3d - - Surface3d 2 - - Surface3d 3 - -.. _trisurface: - -Tri-Surface plots -================= -.. automethod:: Axes3D.plot_trisurf - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_trisurf3d_001.png - :target: ../../gallery/mplot3d/trisurf3d.html - :align: center - :scale: 50 - - Trisurf3d - - -.. _contour3d: - -Contour plots -============= -.. automethod:: Axes3D.contour - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_contour3d_001.png - :target: ../../gallery/mplot3d/contour3d.html - :align: center - :scale: 50 - - Contour3d - - Contour3d 2 - - Contour3d 3 - -.. _contourf3d: - -Filled contour plots -==================== -.. automethod:: Axes3D.contourf - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_contourf3d_001.png - :target: ../../gallery/mplot3d/contourf3d.html - :align: center - :scale: 50 - - Contourf3d - - Contourf3d 2 - -.. versionadded:: 1.1.0 - The feature demoed in the second contourf3d example was enabled as a - result of a bugfix for version 1.1.0. - -.. _polygon3d: - -Polygon plots -==================== -.. automethod:: Axes3D.add_collection3d - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_polys3d_001.png - :target: ../../gallery/mplot3d/polys3d.html - :align: center - :scale: 50 - - Polys3d - -.. _bar3d: - -Bar plots -==================== -.. automethod:: Axes3D.bar - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_bars3d_001.png - :target: ../../gallery/mplot3d/bars3d.html - :align: center - :scale: 50 - - Bars3d - -.. _quiver3d: - -Quiver -==================== -.. automethod:: Axes3D.quiver - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_quiver3d_001.png - :target: ../../gallery/mplot3d/quiver3d.html - :align: center - :scale: 50 - - Quiver3d - -.. _2dcollections3d: - -2D plots in 3D -==================== -.. figure:: ../../gallery/mplot3d/images/sphx_glr_2dcollections3d_001.png - :target: ../../gallery/mplot3d/2dcollections3d.html - :align: center - :scale: 50 - - 2dcollections3d - -.. _text3d: - -Text -==================== -.. automethod:: Axes3D.text - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_text3d_001.png - :target: ../../gallery/mplot3d/text3d.html - :align: center - :scale: 50 - - Text3d - -.. _3dsubplots: - -Subplotting -==================== -Having multiple 3D plots in a single figure is the same -as it is for 2D plots. Also, you can have both 2D and 3D plots -in the same figure. - -.. versionadded:: 1.0.0 - Subplotting 3D plots was added in v1.0.0. Earlier version can not - do this. - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_subplot3d_001.png - :target: ../../gallery/mplot3d/subplot3d.html - :align: center - :scale: 50 - - Subplot3d - - Mixed Subplots -""" diff --git a/_downloads/3230ae54ecc8af7d31f814076057faaa/custom_boxstyle01.ipynb b/_downloads/3230ae54ecc8af7d31f814076057faaa/custom_boxstyle01.ipynb deleted file mode 120000 index e7affad10bf..00000000000 --- a/_downloads/3230ae54ecc8af7d31f814076057faaa/custom_boxstyle01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3230ae54ecc8af7d31f814076057faaa/custom_boxstyle01.ipynb \ No newline at end of file diff --git a/_downloads/3232dd22d79f910a15d7457669f22b0a/contour3d.ipynb b/_downloads/3232dd22d79f910a15d7457669f22b0a/contour3d.ipynb deleted file mode 120000 index 7462cf487c0..00000000000 --- a/_downloads/3232dd22d79f910a15d7457669f22b0a/contour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3232dd22d79f910a15d7457669f22b0a/contour3d.ipynb \ No newline at end of file diff --git a/_downloads/324d2220b5972c62e045c006d84fad06/plot_streamplot.py b/_downloads/324d2220b5972c62e045c006d84fad06/plot_streamplot.py deleted file mode 120000 index 4c8715ec1a3..00000000000 --- a/_downloads/324d2220b5972c62e045c006d84fad06/plot_streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/324d2220b5972c62e045c006d84fad06/plot_streamplot.py \ No newline at end of file diff --git a/_downloads/3259c25d10152faceafa6e1b4f59876b/imshow_extent.ipynb b/_downloads/3259c25d10152faceafa6e1b4f59876b/imshow_extent.ipynb deleted file mode 120000 index 4805c267025..00000000000 --- a/_downloads/3259c25d10152faceafa6e1b4f59876b/imshow_extent.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3259c25d10152faceafa6e1b4f59876b/imshow_extent.ipynb \ No newline at end of file diff --git a/_downloads/32692f6160c1c402e084acaba1e041dc/accented_text.ipynb b/_downloads/32692f6160c1c402e084acaba1e041dc/accented_text.ipynb deleted file mode 120000 index 3d1e135d88c..00000000000 --- a/_downloads/32692f6160c1c402e084acaba1e041dc/accented_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/32692f6160c1c402e084acaba1e041dc/accented_text.ipynb \ No newline at end of file diff --git a/_downloads/3269caad4b186ff2ba73f725b2cb5a12/lines_with_ticks_demo.py b/_downloads/3269caad4b186ff2ba73f725b2cb5a12/lines_with_ticks_demo.py deleted file mode 120000 index b72d7992c53..00000000000 --- a/_downloads/3269caad4b186ff2ba73f725b2cb5a12/lines_with_ticks_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3269caad4b186ff2ba73f725b2cb5a12/lines_with_ticks_demo.py \ No newline at end of file diff --git a/_downloads/326cbebbeee37892d960b6161e86e1c9/errorbar_features.ipynb b/_downloads/326cbebbeee37892d960b6161e86e1c9/errorbar_features.ipynb deleted file mode 120000 index 459f58c13b5..00000000000 --- a/_downloads/326cbebbeee37892d960b6161e86e1c9/errorbar_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/326cbebbeee37892d960b6161e86e1c9/errorbar_features.ipynb \ No newline at end of file diff --git a/_downloads/326da5da8922ddb91c943c1f8ea6ed1b/colormap_normalizations_power.ipynb b/_downloads/326da5da8922ddb91c943c1f8ea6ed1b/colormap_normalizations_power.ipynb deleted file mode 120000 index a5bf1568edd..00000000000 --- a/_downloads/326da5da8922ddb91c943c1f8ea6ed1b/colormap_normalizations_power.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/326da5da8922ddb91c943c1f8ea6ed1b/colormap_normalizations_power.ipynb \ No newline at end of file diff --git a/_downloads/3272d945a2bea3150ae356d71c8d00d6/color_cycle.py b/_downloads/3272d945a2bea3150ae356d71c8d00d6/color_cycle.py deleted file mode 100644 index 9adbdbcd734..00000000000 --- a/_downloads/3272d945a2bea3150ae356d71c8d00d6/color_cycle.py +++ /dev/null @@ -1,125 +0,0 @@ -""" -=================== -Styling with cycler -=================== - -Demo of custom property-cycle settings to control colors and other style -properties for multi-line plots. - -.. note:: - - More complete documentation of the ``cycler`` API can be found - `here `_. - -This example demonstrates two different APIs: - -1. Setting the default rc parameter specifying the property cycle. - This affects all subsequent axes (but not axes already created). -2. Setting the property cycle for a single pair of axes. - -""" -from cycler import cycler -import numpy as np -import matplotlib.pyplot as plt - -############################################################################### -# First we'll generate some sample data, in this case, four offset sine -# curves. -x = np.linspace(0, 2 * np.pi, 50) -offsets = np.linspace(0, 2 * np.pi, 4, endpoint=False) -yy = np.transpose([np.sin(x + phi) for phi in offsets]) - -############################################################################### -# Now ``yy`` has shape -print(yy.shape) - -############################################################################### -# So ``yy[:, i]`` will give you the ``i``-th offset sine curve. Let's set the -# default prop_cycle using :func:`matplotlib.pyplot.rc`. We'll combine a color -# cycler and a linestyle cycler by adding (``+``) two ``cycler``'s together. -# See the bottom of this tutorial for more information about combining -# different cyclers. -default_cycler = (cycler(color=['r', 'g', 'b', 'y']) + - cycler(linestyle=['-', '--', ':', '-.'])) - -plt.rc('lines', linewidth=4) -plt.rc('axes', prop_cycle=default_cycler) - -############################################################################### -# Now we'll generate a figure with two axes, one on top of the other. On the -# first axis, we'll plot with the default cycler. On the second axis, we'll -# set the prop_cycler using :func:`matplotlib.axes.Axes.set_prop_cycle` -# which will only set the ``prop_cycle`` for this :mod:`matplotlib.axes.Axes` -# instance. We'll use a second ``cycler`` that combines a color cycler and a -# linewidth cycler. -custom_cycler = (cycler(color=['c', 'm', 'y', 'k']) + - cycler(lw=[1, 2, 3, 4])) - -fig, (ax0, ax1) = plt.subplots(nrows=2) -ax0.plot(yy) -ax0.set_title('Set default color cycle to rgby') -ax1.set_prop_cycle(custom_cycler) -ax1.plot(yy) -ax1.set_title('Set axes color cycle to cmyk') - -# Add a bit more space between the two plots. -fig.subplots_adjust(hspace=0.3) -plt.show() - -############################################################################### -# Setting ``prop_cycler`` in the ``matplotlibrc`` file or style files -# ------------------------------------------------------------------- -# -# Remember, if you want to set a custom ``prop_cycler`` in your -# ``.matplotlibrc`` file or a style file (``style.mplstyle``), you can set the -# ``axes.prop_cycle`` property: -# -# .. code-block:: python -# -# axes.prop_cycle : cycler(color='bgrcmyk') -# -# Cycling through multiple properties -# ----------------------------------- -# -# You can add cyclers: -# -# .. code-block:: python -# -# from cycler import cycler -# cc = (cycler(color=list('rgb')) + -# cycler(linestyle=['-', '--', '-.'])) -# for d in cc: -# print(d) -# -# Results in: -# -# .. code-block:: python -# -# {'color': 'r', 'linestyle': '-'} -# {'color': 'g', 'linestyle': '--'} -# {'color': 'b', 'linestyle': '-.'} -# -# -# You can multiply cyclers: -# -# .. code-block:: python -# -# from cycler import cycler -# cc = (cycler(color=list('rgb')) * -# cycler(linestyle=['-', '--', '-.'])) -# for d in cc: -# print(d) -# -# Results in: -# -# .. code-block:: python -# -# {'color': 'r', 'linestyle': '-'} -# {'color': 'r', 'linestyle': '--'} -# {'color': 'r', 'linestyle': '-.'} -# {'color': 'g', 'linestyle': '-'} -# {'color': 'g', 'linestyle': '--'} -# {'color': 'g', 'linestyle': '-.'} -# {'color': 'b', 'linestyle': '-'} -# {'color': 'b', 'linestyle': '--'} -# {'color': 'b', 'linestyle': '-.'} diff --git a/_downloads/3276eb42ad321e6547ab855a551323a5/gridspec_multicolumn.ipynb b/_downloads/3276eb42ad321e6547ab855a551323a5/gridspec_multicolumn.ipynb deleted file mode 120000 index 4980eeee7c4..00000000000 --- a/_downloads/3276eb42ad321e6547ab855a551323a5/gridspec_multicolumn.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3276eb42ad321e6547ab855a551323a5/gridspec_multicolumn.ipynb \ No newline at end of file diff --git a/_downloads/3276f925ce7cf91df325d5e4f60d54e5/text_props.py b/_downloads/3276f925ce7cf91df325d5e4f60d54e5/text_props.py deleted file mode 120000 index d5ef2626836..00000000000 --- a/_downloads/3276f925ce7cf91df325d5e4f60d54e5/text_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3276f925ce7cf91df325d5e4f60d54e5/text_props.py \ No newline at end of file diff --git a/_downloads/32824cb57ad9790b62b585d0e9faf85f/stem_plot.ipynb b/_downloads/32824cb57ad9790b62b585d0e9faf85f/stem_plot.ipynb deleted file mode 120000 index 7807cf20f84..00000000000 --- a/_downloads/32824cb57ad9790b62b585d0e9faf85f/stem_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/32824cb57ad9790b62b585d0e9faf85f/stem_plot.ipynb \ No newline at end of file diff --git a/_downloads/32833989079807f0945bd0295698a88e/usetex_baseline_test.py b/_downloads/32833989079807f0945bd0295698a88e/usetex_baseline_test.py deleted file mode 120000 index 7cc01bdd686..00000000000 --- a/_downloads/32833989079807f0945bd0295698a88e/usetex_baseline_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/32833989079807f0945bd0295698a88e/usetex_baseline_test.py \ No newline at end of file diff --git a/_downloads/32846f9fdca6c6291727b5f86c91106f/tick_labels_from_values.py b/_downloads/32846f9fdca6c6291727b5f86c91106f/tick_labels_from_values.py deleted file mode 120000 index 69ff0b4f1ee..00000000000 --- a/_downloads/32846f9fdca6c6291727b5f86c91106f/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/32846f9fdca6c6291727b5f86c91106f/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/328586a8c02c6a73d3417cbcf43ca3a5/annotate_simple_coord03.py b/_downloads/328586a8c02c6a73d3417cbcf43ca3a5/annotate_simple_coord03.py deleted file mode 120000 index e4f8312fb1c..00000000000 --- a/_downloads/328586a8c02c6a73d3417cbcf43ca3a5/annotate_simple_coord03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/328586a8c02c6a73d3417cbcf43ca3a5/annotate_simple_coord03.py \ No newline at end of file diff --git a/_downloads/3286a36cce427a7871b9f16f24fb063d/constrainedlayout_guide.py b/_downloads/3286a36cce427a7871b9f16f24fb063d/constrainedlayout_guide.py deleted file mode 120000 index 914b3239636..00000000000 --- a/_downloads/3286a36cce427a7871b9f16f24fb063d/constrainedlayout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3286a36cce427a7871b9f16f24fb063d/constrainedlayout_guide.py \ No newline at end of file diff --git a/_downloads/3296791a92216ea71cc057325042bdca/subplots_adjust.py b/_downloads/3296791a92216ea71cc057325042bdca/subplots_adjust.py deleted file mode 120000 index 86cff7f208a..00000000000 --- a/_downloads/3296791a92216ea71cc057325042bdca/subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3296791a92216ea71cc057325042bdca/subplots_adjust.py \ No newline at end of file diff --git a/_downloads/329693a7abd578dec6c6a6e45787d7dc/fonts_demo_kw.ipynb b/_downloads/329693a7abd578dec6c6a6e45787d7dc/fonts_demo_kw.ipynb deleted file mode 120000 index 3138343d417..00000000000 --- a/_downloads/329693a7abd578dec6c6a6e45787d7dc/fonts_demo_kw.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/329693a7abd578dec6c6a6e45787d7dc/fonts_demo_kw.ipynb \ No newline at end of file diff --git a/_downloads/32995b3b86686a871ec7262381464e5e/fig_x.py b/_downloads/32995b3b86686a871ec7262381464e5e/fig_x.py deleted file mode 120000 index 22cf577d4d9..00000000000 --- a/_downloads/32995b3b86686a871ec7262381464e5e/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/32995b3b86686a871ec7262381464e5e/fig_x.py \ No newline at end of file diff --git a/_downloads/32b8c73e3c99ff00acb57a6bd487429b/span_selector.ipynb b/_downloads/32b8c73e3c99ff00acb57a6bd487429b/span_selector.ipynb deleted file mode 120000 index ee1b0afeefa..00000000000 --- a/_downloads/32b8c73e3c99ff00acb57a6bd487429b/span_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/32b8c73e3c99ff00acb57a6bd487429b/span_selector.ipynb \ No newline at end of file diff --git a/_downloads/32ba8a99f7313978d2c52686d3a893a6/multicursor.py b/_downloads/32ba8a99f7313978d2c52686d3a893a6/multicursor.py deleted file mode 120000 index 378bfd7c2ac..00000000000 --- a/_downloads/32ba8a99f7313978d2c52686d3a893a6/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/32ba8a99f7313978d2c52686d3a893a6/multicursor.py \ No newline at end of file diff --git a/_downloads/32c85219c5fecdd2f759c77ae6bc6f70/radio_buttons.ipynb b/_downloads/32c85219c5fecdd2f759c77ae6bc6f70/radio_buttons.ipynb deleted file mode 100644 index 361d47472f2..00000000000 --- a/_downloads/32c85219c5fecdd2f759c77ae6bc6f70/radio_buttons.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Radio Buttons\n\n\nUsing radio buttons to choose properties of your plot.\n\nRadio buttons let you choose between multiple options in a visualization.\nIn this case, the buttons let the user choose one of the three different sine\nwaves to be shown in the plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import RadioButtons\n\nt = np.arange(0.0, 2.0, 0.01)\ns0 = np.sin(2*np.pi*t)\ns1 = np.sin(4*np.pi*t)\ns2 = np.sin(8*np.pi*t)\n\nfig, ax = plt.subplots()\nl, = ax.plot(t, s0, lw=2, color='red')\nplt.subplots_adjust(left=0.3)\n\naxcolor = 'lightgoldenrodyellow'\nrax = plt.axes([0.05, 0.7, 0.15, 0.15], facecolor=axcolor)\nradio = RadioButtons(rax, ('2 Hz', '4 Hz', '8 Hz'))\n\n\ndef hzfunc(label):\n hzdict = {'2 Hz': s0, '4 Hz': s1, '8 Hz': s2}\n ydata = hzdict[label]\n l.set_ydata(ydata)\n plt.draw()\nradio.on_clicked(hzfunc)\n\nrax = plt.axes([0.05, 0.4, 0.15, 0.15], facecolor=axcolor)\nradio2 = RadioButtons(rax, ('red', 'blue', 'green'))\n\n\ndef colorfunc(label):\n l.set_color(label)\n plt.draw()\nradio2.on_clicked(colorfunc)\n\nrax = plt.axes([0.05, 0.1, 0.15, 0.15], facecolor=axcolor)\nradio3 = RadioButtons(rax, ('-', '--', '-.', 'steps', ':'))\n\n\ndef stylefunc(label):\n l.set_linestyle(label)\n plt.draw()\nradio3.on_clicked(stylefunc)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/32c9aec023e9c18d843fd5bd2efbc67b/fill_between_alpha.ipynb b/_downloads/32c9aec023e9c18d843fd5bd2efbc67b/fill_between_alpha.ipynb deleted file mode 120000 index c7e82cc1148..00000000000 --- a/_downloads/32c9aec023e9c18d843fd5bd2efbc67b/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/32c9aec023e9c18d843fd5bd2efbc67b/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/32d2885ce2fc33549a738846e940650a/tex_demo.ipynb b/_downloads/32d2885ce2fc33549a738846e940650a/tex_demo.ipynb deleted file mode 100644 index 3d1ba62fa9a..00000000000 --- a/_downloads/32d2885ce2fc33549a738846e940650a/tex_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rendering math equation using TeX\n\n\nYou can use TeX to render all of your matplotlib text if the rc\nparameter ``text.usetex`` is set. This works currently on the agg and ps\nbackends, and requires that you have tex and the other dependencies\ndescribed in the :doc:`/tutorials/text/usetex` tutorial\nproperly installed on your system. The first time you run a script\nyou will see a lot of output from tex and associated tools. The next\ntime, the run may be silent, as a lot of the information is cached.\n\nNotice how the label for the y axis is provided using unicode!\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nmatplotlib.rcParams['text.usetex'] = True\nimport matplotlib.pyplot as plt\n\n\nt = np.linspace(0.0, 1.0, 100)\ns = np.cos(4 * np.pi * t) + 2\n\nfig, ax = plt.subplots(figsize=(6, 4), tight_layout=True)\nax.plot(t, s)\n\nax.set_xlabel(r'\\textbf{time (s)}')\nax.set_ylabel('\\\\textit{Velocity (\\N{DEGREE SIGN}/sec)}', fontsize=16)\nax.set_title(r'\\TeX\\ is Number $\\displaystyle\\sum_{n=1}^\\infty'\n r'\\frac{-e^{i\\pi}}{2^n}$!', fontsize=16, color='r')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/32da3aac06c76eace52613d70abc1ed7/trisurf3d.ipynb b/_downloads/32da3aac06c76eace52613d70abc1ed7/trisurf3d.ipynb deleted file mode 100644 index c47f4c621d4..00000000000 --- a/_downloads/32da3aac06c76eace52613d70abc1ed7/trisurf3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triangular 3D surfaces\n\n\nPlot a 3D surface with a triangular mesh.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nn_radii = 8\nn_angles = 36\n\n# Make radii and angles spaces (radius r=0 omitted to eliminate duplication).\nradii = np.linspace(0.125, 1.0, n_radii)\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)[..., np.newaxis]\n\n# Convert polar (radii, angles) coords to cartesian (x, y) coords.\n# (0, 0) is manually added at this stage, so there will be no duplicate\n# points in the (x, y) plane.\nx = np.append(0, (radii*np.cos(angles)).flatten())\ny = np.append(0, (radii*np.sin(angles)).flatten())\n\n# Compute z to make the pringle surface.\nz = np.sin(-x*y)\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\nax.plot_trisurf(x, y, z, linewidth=0.2, antialiased=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/32da914ddd98af4ba8a7768adebfda71/eventplot_demo.ipynb b/_downloads/32da914ddd98af4ba8a7768adebfda71/eventplot_demo.ipynb deleted file mode 100644 index b27d12a07da..00000000000 --- a/_downloads/32da914ddd98af4ba8a7768adebfda71/eventplot_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Eventplot Demo\n\n\nAn eventplot showing sequences of events with various line properties.\nThe plot is shown in both horizontal and vertical orientations.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib\nmatplotlib.rcParams['font.size'] = 8.0\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# create random data\ndata1 = np.random.random([6, 50])\n\n# set different colors for each set of positions\ncolors1 = ['C{}'.format(i) for i in range(6)]\n\n# set different line properties for each set of positions\n# note that some overlap\nlineoffsets1 = np.array([-15, -3, 1, 1.5, 6, 10])\nlinelengths1 = [5, 2, 1, 1, 3, 1.5]\n\nfig, axs = plt.subplots(2, 2)\n\n# create a horizontal plot\naxs[0, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1,\n linelengths=linelengths1)\n\n# create a vertical plot\naxs[1, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1,\n linelengths=linelengths1, orientation='vertical')\n\n# create another set of random data.\n# the gamma distribution is only used fo aesthetic purposes\ndata2 = np.random.gamma(4, size=[60, 50])\n\n# use individual values for the parameters this time\n# these values will be used for all data sets (except lineoffsets2, which\n# sets the increment between each data set in this usage)\ncolors2 = 'black'\nlineoffsets2 = 1\nlinelengths2 = 1\n\n# create a horizontal plot\naxs[0, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2,\n linelengths=linelengths2)\n\n\n# create a vertical plot\naxs[1, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2,\n linelengths=linelengths2, orientation='vertical')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/32f5ad35c394ae8e45f97d5d39791cae/simple_axes_divider2.py b/_downloads/32f5ad35c394ae8e45f97d5d39791cae/simple_axes_divider2.py deleted file mode 120000 index f46b4433437..00000000000 --- a/_downloads/32f5ad35c394ae8e45f97d5d39791cae/simple_axes_divider2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/32f5ad35c394ae8e45f97d5d39791cae/simple_axes_divider2.py \ No newline at end of file diff --git a/_downloads/32f5ee13b93f29d3b29655eb66998534/keypress_demo.ipynb b/_downloads/32f5ee13b93f29d3b29655eb66998534/keypress_demo.ipynb deleted file mode 100644 index 3cafc2fa6dc..00000000000 --- a/_downloads/32f5ee13b93f29d3b29655eb66998534/keypress_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Keypress Demo\n\n\nShow how to connect to keypress events\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import sys\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef press(event):\n print('press', event.key)\n sys.stdout.flush()\n if event.key == 'x':\n visible = xl.get_visible()\n xl.set_visible(not visible)\n fig.canvas.draw()\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\n\nfig.canvas.mpl_connect('key_press_event', press)\n\nax.plot(np.random.rand(12), np.random.rand(12), 'go')\nxl = ax.set_xlabel('easy come, easy go')\nax.set_title('Press a key')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/32fcc8f0d9cbd12eb150eeaa1feaf80a/date_concise_formatter.ipynb b/_downloads/32fcc8f0d9cbd12eb150eeaa1feaf80a/date_concise_formatter.ipynb deleted file mode 120000 index ab5cec70c51..00000000000 --- a/_downloads/32fcc8f0d9cbd12eb150eeaa1feaf80a/date_concise_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/32fcc8f0d9cbd12eb150eeaa1feaf80a/date_concise_formatter.ipynb \ No newline at end of file diff --git a/_downloads/330721f62b546becce5c40078b01c18f/demo_colorbar_with_axes_divider.py b/_downloads/330721f62b546becce5c40078b01c18f/demo_colorbar_with_axes_divider.py deleted file mode 120000 index e549e33fdd6..00000000000 --- a/_downloads/330721f62b546becce5c40078b01c18f/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/330721f62b546becce5c40078b01c18f/demo_colorbar_with_axes_divider.py \ No newline at end of file diff --git a/_downloads/33099b401e2f4d0361488c8be61460d8/hist3d.py b/_downloads/33099b401e2f4d0361488c8be61460d8/hist3d.py deleted file mode 120000 index 5d13e8ef396..00000000000 --- a/_downloads/33099b401e2f4d0361488c8be61460d8/hist3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/33099b401e2f4d0361488c8be61460d8/hist3d.py \ No newline at end of file diff --git a/_downloads/330f1d6a11f1f4baddf7fdd10f1ba589/demo_colorbar_with_axes_divider.ipynb b/_downloads/330f1d6a11f1f4baddf7fdd10f1ba589/demo_colorbar_with_axes_divider.ipynb deleted file mode 120000 index bc8101cae5d..00000000000 --- a/_downloads/330f1d6a11f1f4baddf7fdd10f1ba589/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/330f1d6a11f1f4baddf7fdd10f1ba589/demo_colorbar_with_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/331009823759c7fe32c6f64a859fd843/bar_stacked.ipynb b/_downloads/331009823759c7fe32c6f64a859fd843/bar_stacked.ipynb deleted file mode 120000 index 479bf4db93e..00000000000 --- a/_downloads/331009823759c7fe32c6f64a859fd843/bar_stacked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/331009823759c7fe32c6f64a859fd843/bar_stacked.ipynb \ No newline at end of file diff --git a/_downloads/331a8f0ed4f8c08eecd40b9703eb70a5/confidence_ellipse.py b/_downloads/331a8f0ed4f8c08eecd40b9703eb70a5/confidence_ellipse.py deleted file mode 120000 index f32840501e4..00000000000 --- a/_downloads/331a8f0ed4f8c08eecd40b9703eb70a5/confidence_ellipse.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/331a8f0ed4f8c08eecd40b9703eb70a5/confidence_ellipse.py \ No newline at end of file diff --git a/_downloads/331abf81fa43472629373e5674e91e0e/custom_ticker1.ipynb b/_downloads/331abf81fa43472629373e5674e91e0e/custom_ticker1.ipynb deleted file mode 100644 index bc16da6b2e0..00000000000 --- a/_downloads/331abf81fa43472629373e5674e91e0e/custom_ticker1.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Ticker1\n\n\nThe new ticker code was designed to explicitly support user customized\nticking. The documentation of :mod:`matplotlib.ticker` details this\nprocess. That code defines a lot of preset tickers but was primarily\ndesigned to be user extensible.\n\nIn this example a user defined function is used to format the ticks in\nmillions of dollars on the y axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.ticker import FuncFormatter\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(4)\nmoney = [1.5e5, 2.5e6, 5.5e6, 2.0e7]\n\n\ndef millions(x, pos):\n 'The two args are the value and tick position'\n return '$%1.1fM' % (x * 1e-6)\n\n\nformatter = FuncFormatter(millions)\n\nfig, ax = plt.subplots()\nax.yaxis.set_major_formatter(formatter)\nplt.bar(x, money)\nplt.xticks(x, ('Bill', 'Fred', 'Mary', 'Sue'))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/331c714d5caa25a382450281d047f65b/ganged_plots.ipynb b/_downloads/331c714d5caa25a382450281d047f65b/ganged_plots.ipynb deleted file mode 120000 index e3a542ab966..00000000000 --- a/_downloads/331c714d5caa25a382450281d047f65b/ganged_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/331c714d5caa25a382450281d047f65b/ganged_plots.ipynb \ No newline at end of file diff --git a/_downloads/33207d0d80dd6615d54b393c7b1b2398/rotate_axes3d_sgskip.ipynb b/_downloads/33207d0d80dd6615d54b393c7b1b2398/rotate_axes3d_sgskip.ipynb deleted file mode 100644 index fe5dafc3f9a..00000000000 --- a/_downloads/33207d0d80dd6615d54b393c7b1b2398/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rotating a 3D plot\n\n\nA very simple animation of a rotating 3D plot.\n\nSee wire3d_animation_demo for another simple example of animating a 3D plot.\n\n(This example is skipped when building the documentation gallery because it\nintentionally takes a long time to run)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# load some test data for demonstration and plot a wireframe\nX, Y, Z = axes3d.get_test_data(0.1)\nax.plot_wireframe(X, Y, Z, rstride=5, cstride=5)\n\n# rotate the axes and update\nfor angle in range(0, 360):\n ax.view_init(30, angle)\n plt.draw()\n plt.pause(.001)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3320abc475de1f72576f05685d72d799/custom_cmap.py b/_downloads/3320abc475de1f72576f05685d72d799/custom_cmap.py deleted file mode 120000 index 570c071e368..00000000000 --- a/_downloads/3320abc475de1f72576f05685d72d799/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3320abc475de1f72576f05685d72d799/custom_cmap.py \ No newline at end of file diff --git a/_downloads/3322d03428de62e3f97e308f403e40e7/parasite_simple2.ipynb b/_downloads/3322d03428de62e3f97e308f403e40e7/parasite_simple2.ipynb deleted file mode 120000 index b157feb24df..00000000000 --- a/_downloads/3322d03428de62e3f97e308f403e40e7/parasite_simple2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3322d03428de62e3f97e308f403e40e7/parasite_simple2.ipynb \ No newline at end of file diff --git a/_downloads/332e7df7ed3c0aec9141e9393d104a81/tutorials_python.zip b/_downloads/332e7df7ed3c0aec9141e9393d104a81/tutorials_python.zip deleted file mode 120000 index 172ed93c578..00000000000 --- a/_downloads/332e7df7ed3c0aec9141e9393d104a81/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.2/_downloads/332e7df7ed3c0aec9141e9393d104a81/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/333058a2ad996cd48da4dde7daa833f8/date_demo_rrule.py b/_downloads/333058a2ad996cd48da4dde7daa833f8/date_demo_rrule.py deleted file mode 120000 index 2bda93027ea..00000000000 --- a/_downloads/333058a2ad996cd48da4dde7daa833f8/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/333058a2ad996cd48da4dde7daa833f8/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/3331f1a6a09f145b7a90c15cced9cf96/fourier_demo_wx_sgskip.py b/_downloads/3331f1a6a09f145b7a90c15cced9cf96/fourier_demo_wx_sgskip.py deleted file mode 100644 index b00cd01d698..00000000000 --- a/_downloads/3331f1a6a09f145b7a90c15cced9cf96/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1,235 +0,0 @@ -""" -=============== -Fourier Demo WX -=============== - -""" - -import numpy as np - -import wx -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.figure import Figure - - -class Knob(object): - """ - Knob - simple class with a "setKnob" method. - A Knob instance is attached to a Param instance, e.g., param.attach(knob) - Base class is for documentation purposes. - """ - - def setKnob(self, value): - pass - - -class Param(object): - """ - The idea of the "Param" class is that some parameter in the GUI may have - several knobs that both control it and reflect the parameter's state, e.g. - a slider, text, and dragging can all change the value of the frequency in - the waveform of this example. - The class allows a cleaner way to update/"feedback" to the other knobs when - one is being changed. Also, this class handles min/max constraints for all - the knobs. - Idea - knob list - in "set" method, knob object is passed as well - - the other knobs in the knob list have a "set" method which gets - called for the others. - """ - - def __init__(self, initialValue=None, minimum=0., maximum=1.): - self.minimum = minimum - self.maximum = maximum - if initialValue != self.constrain(initialValue): - raise ValueError('illegal initial value') - self.value = initialValue - self.knobs = [] - - def attach(self, knob): - self.knobs += [knob] - - def set(self, value, knob=None): - self.value = value - self.value = self.constrain(value) - for feedbackKnob in self.knobs: - if feedbackKnob != knob: - feedbackKnob.setKnob(self.value) - return self.value - - def constrain(self, value): - if value <= self.minimum: - value = self.minimum - if value >= self.maximum: - value = self.maximum - return value - - -class SliderGroup(Knob): - def __init__(self, parent, label, param): - self.sliderLabel = wx.StaticText(parent, label=label) - self.sliderText = wx.TextCtrl(parent, -1, style=wx.TE_PROCESS_ENTER) - self.slider = wx.Slider(parent, -1) - # self.slider.SetMax(param.maximum*1000) - self.slider.SetRange(0, param.maximum * 1000) - self.setKnob(param.value) - - sizer = wx.BoxSizer(wx.HORIZONTAL) - sizer.Add(self.sliderLabel, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, - border=2) - sizer.Add(self.sliderText, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, - border=2) - sizer.Add(self.slider, 1, wx.EXPAND) - self.sizer = sizer - - self.slider.Bind(wx.EVT_SLIDER, self.sliderHandler) - self.sliderText.Bind(wx.EVT_TEXT_ENTER, self.sliderTextHandler) - - self.param = param - self.param.attach(self) - - def sliderHandler(self, evt): - value = evt.GetInt() / 1000. - self.param.set(value) - - def sliderTextHandler(self, evt): - value = float(self.sliderText.GetValue()) - self.param.set(value) - - def setKnob(self, value): - self.sliderText.SetValue('%g' % value) - self.slider.SetValue(value * 1000) - - -class FourierDemoFrame(wx.Frame): - def __init__(self, *args, **kwargs): - wx.Frame.__init__(self, *args, **kwargs) - panel = wx.Panel(self) - - # create the GUI elements - self.createCanvas(panel) - self.createSliders(panel) - - # place them in a sizer for the Layout - sizer = wx.BoxSizer(wx.VERTICAL) - sizer.Add(self.canvas, 1, wx.EXPAND) - sizer.Add(self.frequencySliderGroup.sizer, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5) - sizer.Add(self.amplitudeSliderGroup.sizer, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5) - panel.SetSizer(sizer) - - def createCanvas(self, parent): - self.lines = [] - self.figure = Figure() - self.canvas = FigureCanvas(parent, -1, self.figure) - self.canvas.callbacks.connect('button_press_event', self.mouseDown) - self.canvas.callbacks.connect('motion_notify_event', self.mouseMotion) - self.canvas.callbacks.connect('button_release_event', self.mouseUp) - self.state = '' - self.mouseInfo = (None, None, None, None) - self.f0 = Param(2., minimum=0., maximum=6.) - self.A = Param(1., minimum=0.01, maximum=2.) - self.createPlots() - - # Not sure I like having two params attached to the same Knob, - # but that is what we have here... it works but feels kludgy - - # although maybe it's not too bad since the knob changes both params - # at the same time (both f0 and A are affected during a drag) - self.f0.attach(self) - self.A.attach(self) - - def createSliders(self, panel): - self.frequencySliderGroup = SliderGroup( - panel, - label='Frequency f0:', - param=self.f0) - self.amplitudeSliderGroup = SliderGroup(panel, label=' Amplitude a:', - param=self.A) - - def mouseDown(self, evt): - if self.lines[0].contains(evt)[0]: - self.state = 'frequency' - elif self.lines[1].contains(evt)[0]: - self.state = 'time' - else: - self.state = '' - self.mouseInfo = (evt.xdata, evt.ydata, - max(self.f0.value, .1), - self.A.value) - - def mouseMotion(self, evt): - if self.state == '': - return - x, y = evt.xdata, evt.ydata - if x is None: # outside the axes - return - x0, y0, f0Init, AInit = self.mouseInfo - self.A.set(AInit + (AInit * (y - y0) / y0), self) - if self.state == 'frequency': - self.f0.set(f0Init + (f0Init * (x - x0) / x0)) - elif self.state == 'time': - if (x - x0) / x0 != -1.: - self.f0.set(1. / (1. / f0Init + (1. / f0Init * (x - x0) / x0))) - - def mouseUp(self, evt): - self.state = '' - - def createPlots(self): - # This method creates the subplots, waveforms and labels. - # Later, when the waveforms or sliders are dragged, only the - # waveform data will be updated (not here, but below in setKnob). - self.subplot1, self.subplot2 = self.figure.subplots(2) - x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value) - color = (1., 0., 0.) - self.lines += self.subplot1.plot(x1, y1, color=color, linewidth=2) - self.lines += self.subplot2.plot(x2, y2, color=color, linewidth=2) - # Set some plot attributes - self.subplot1.set_title( - "Click and drag waveforms to change frequency and amplitude", - fontsize=12) - self.subplot1.set_ylabel("Frequency Domain Waveform X(f)", fontsize=8) - self.subplot1.set_xlabel("frequency f", fontsize=8) - self.subplot2.set_ylabel("Time Domain Waveform x(t)", fontsize=8) - self.subplot2.set_xlabel("time t", fontsize=8) - self.subplot1.set_xlim([-6, 6]) - self.subplot1.set_ylim([0, 1]) - self.subplot2.set_xlim([-2, 2]) - self.subplot2.set_ylim([-2, 2]) - self.subplot1.text(0.05, .95, - r'$X(f) = \mathcal{F}\{x(t)\}$', - verticalalignment='top', - transform=self.subplot1.transAxes) - self.subplot2.text(0.05, .95, - r'$x(t) = a \cdot \cos(2\pi f_0 t) e^{-\pi t^2}$', - verticalalignment='top', - transform=self.subplot2.transAxes) - - def compute(self, f0, A): - f = np.arange(-6., 6., 0.02) - t = np.arange(-2., 2., 0.01) - x = A * np.cos(2 * np.pi * f0 * t) * np.exp(-np.pi * t ** 2) - X = A / 2 * \ - (np.exp(-np.pi * (f - f0) ** 2) + np.exp(-np.pi * (f + f0) ** 2)) - return f, X, t, x - - def setKnob(self, value): - # Note, we ignore value arg here and just go by state of the params - x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value) - # update the data of the two waveforms - self.lines[0].set(xdata=x1, ydata=y1) - self.lines[1].set(xdata=x2, ydata=y2) - # make the canvas draw its contents again with the new data - self.canvas.draw() - - -class App(wx.App): - def OnInit(self): - self.frame1 = FourierDemoFrame(parent=None, title="Fourier Demo", - size=(640, 480)) - self.frame1.Show() - return True - -app = App() -app.MainLoop() diff --git a/_downloads/333307aae380f8ba98a2136aa2d0aa2a/geo_demo.ipynb b/_downloads/333307aae380f8ba98a2136aa2d0aa2a/geo_demo.ipynb deleted file mode 120000 index a97fd7a9577..00000000000 --- a/_downloads/333307aae380f8ba98a2136aa2d0aa2a/geo_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/333307aae380f8ba98a2136aa2d0aa2a/geo_demo.ipynb \ No newline at end of file diff --git a/_downloads/33338c90ee98f2e2aad2d758b5d2a8d3/wire3d.ipynb b/_downloads/33338c90ee98f2e2aad2d758b5d2a8d3/wire3d.ipynb deleted file mode 120000 index 2cb74911696..00000000000 --- a/_downloads/33338c90ee98f2e2aad2d758b5d2a8d3/wire3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/33338c90ee98f2e2aad2d758b5d2a8d3/wire3d.ipynb \ No newline at end of file diff --git a/_downloads/333b8370ba4b534f707f1ddc546403a7/font_table_ttf_sgskip.py b/_downloads/333b8370ba4b534f707f1ddc546403a7/font_table_ttf_sgskip.py deleted file mode 120000 index a99d943772e..00000000000 --- a/_downloads/333b8370ba4b534f707f1ddc546403a7/font_table_ttf_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/333b8370ba4b534f707f1ddc546403a7/font_table_ttf_sgskip.py \ No newline at end of file diff --git a/_downloads/334d04236e239b1747c199ddc9924459/barcode_demo.py b/_downloads/334d04236e239b1747c199ddc9924459/barcode_demo.py deleted file mode 120000 index 9cd037c87c1..00000000000 --- a/_downloads/334d04236e239b1747c199ddc9924459/barcode_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/334d04236e239b1747c199ddc9924459/barcode_demo.py \ No newline at end of file diff --git a/_downloads/335ba595dd405bffd4eb465efe40e394/barchart.ipynb b/_downloads/335ba595dd405bffd4eb465efe40e394/barchart.ipynb deleted file mode 120000 index 29270e497d4..00000000000 --- a/_downloads/335ba595dd405bffd4eb465efe40e394/barchart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/335ba595dd405bffd4eb465efe40e394/barchart.ipynb \ No newline at end of file diff --git a/_downloads/33618e5946569f09d6d05a6462fb6a50/voxels_numpy_logo.ipynb b/_downloads/33618e5946569f09d6d05a6462fb6a50/voxels_numpy_logo.ipynb deleted file mode 120000 index 8e4fa0b6c72..00000000000 --- a/_downloads/33618e5946569f09d6d05a6462fb6a50/voxels_numpy_logo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/33618e5946569f09d6d05a6462fb6a50/voxels_numpy_logo.ipynb \ No newline at end of file diff --git a/_downloads/33662a2edd4fa3e06b12cad0f97893aa/demo_constrained_layout.py b/_downloads/33662a2edd4fa3e06b12cad0f97893aa/demo_constrained_layout.py deleted file mode 120000 index 32d78423ae0..00000000000 --- a/_downloads/33662a2edd4fa3e06b12cad0f97893aa/demo_constrained_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/33662a2edd4fa3e06b12cad0f97893aa/demo_constrained_layout.py \ No newline at end of file diff --git a/_downloads/336970df5f11510597d368cf3b485fec/cursor_demo_sgskip.py b/_downloads/336970df5f11510597d368cf3b485fec/cursor_demo_sgskip.py deleted file mode 120000 index 04ea79ac90f..00000000000 --- a/_downloads/336970df5f11510597d368cf3b485fec/cursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/336970df5f11510597d368cf3b485fec/cursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/336df8401d39a02df5e50a546a75a08f/errorbar.ipynb b/_downloads/336df8401d39a02df5e50a546a75a08f/errorbar.ipynb deleted file mode 120000 index 3b5c1e5fcfa..00000000000 --- a/_downloads/336df8401d39a02df5e50a546a75a08f/errorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/336df8401d39a02df5e50a546a75a08f/errorbar.ipynb \ No newline at end of file diff --git a/_downloads/3374f9252e17309da1993166cc19994f/arrow_demo.ipynb b/_downloads/3374f9252e17309da1993166cc19994f/arrow_demo.ipynb deleted file mode 120000 index 4094ace4a4b..00000000000 --- a/_downloads/3374f9252e17309da1993166cc19994f/arrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3374f9252e17309da1993166cc19994f/arrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/337ce577ed0988f6690d7a260537a65d/errorbar.py b/_downloads/337ce577ed0988f6690d7a260537a65d/errorbar.py deleted file mode 120000 index 3da8e97f98d..00000000000 --- a/_downloads/337ce577ed0988f6690d7a260537a65d/errorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/337ce577ed0988f6690d7a260537a65d/errorbar.py \ No newline at end of file diff --git a/_downloads/33855f409c28096235fba74bbe92acc5/quadmesh_demo.ipynb b/_downloads/33855f409c28096235fba74bbe92acc5/quadmesh_demo.ipynb deleted file mode 100644 index faca88cbda6..00000000000 --- a/_downloads/33855f409c28096235fba74bbe92acc5/quadmesh_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# QuadMesh Demo\n\n\n`~.axes.Axes.pcolormesh` uses a `~matplotlib.collections.QuadMesh`,\na faster generalization of `~.axes.Axes.pcolor`, but with some restrictions.\n\nThis demo illustrates a bug in quadmesh with masked data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import copy\n\nfrom matplotlib import cm, pyplot as plt\nimport numpy as np\n\nn = 12\nx = np.linspace(-1.5, 1.5, n)\ny = np.linspace(-1.5, 1.5, n * 2)\nX, Y = np.meshgrid(x, y)\nQx = np.cos(Y) - np.cos(X)\nQz = np.sin(Y) + np.sin(X)\nZ = np.sqrt(X**2 + Y**2) / 5\nZ = (Z - Z.min()) / (Z.max() - Z.min())\n\n# The color array can include masked values.\nZm = np.ma.masked_where(np.abs(Qz) < 0.5 * np.max(Qz), Z)\n\nfig, axs = plt.subplots(nrows=1, ncols=3)\naxs[0].pcolormesh(Qx, Qz, Z, shading='gouraud')\naxs[0].set_title('Without masked values')\n\n# You can control the color of the masked region. We copy the default colormap\n# before modifying it.\ncmap = copy.copy(cm.get_cmap(plt.rcParams['image.cmap']))\ncmap.set_bad('y', 1.0)\naxs[1].pcolormesh(Qx, Qz, Zm, shading='gouraud', cmap=cmap)\naxs[1].set_title('With masked values')\n\n# Or use the default, which is transparent.\naxs[2].pcolormesh(Qx, Qz, Zm, shading='gouraud')\naxs[2].set_title('With masked values')\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pcolormesh\nmatplotlib.pyplot.pcolormesh" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/338e6c17e40dff696f5781e4c5f306db/colormap_normalizations_symlognorm.py b/_downloads/338e6c17e40dff696f5781e4c5f306db/colormap_normalizations_symlognorm.py deleted file mode 120000 index ffe4b8ff9cd..00000000000 --- a/_downloads/338e6c17e40dff696f5781e4c5f306db/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/338e6c17e40dff696f5781e4c5f306db/colormap_normalizations_symlognorm.py \ No newline at end of file diff --git a/_downloads/3392f74aca89a4b7a51d35186ab88c86/bar_unit_demo.py b/_downloads/3392f74aca89a4b7a51d35186ab88c86/bar_unit_demo.py deleted file mode 100644 index e6a6a7687a6..00000000000 --- a/_downloads/3392f74aca89a4b7a51d35186ab88c86/bar_unit_demo.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -========================= -Group barchart with units -========================= - -This is the same example as -:doc:`the barchart` in -centimeters. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" - -import numpy as np -from basic_units import cm, inch -import matplotlib.pyplot as plt - - -N = 5 -menMeans = (150*cm, 160*cm, 146*cm, 172*cm, 155*cm) -menStd = (20*cm, 30*cm, 32*cm, 10*cm, 20*cm) - -fig, ax = plt.subplots() - -ind = np.arange(N) # the x locations for the groups -width = 0.35 # the width of the bars -p1 = ax.bar(ind, menMeans, width, bottom=0*cm, yerr=menStd) - - -womenMeans = (145*cm, 149*cm, 172*cm, 165*cm, 200*cm) -womenStd = (30*cm, 25*cm, 20*cm, 31*cm, 22*cm) -p2 = ax.bar(ind + width, womenMeans, width, bottom=0*cm, yerr=womenStd) - -ax.set_title('Scores by group and gender') -ax.set_xticks(ind + width / 2) -ax.set_xticklabels(('G1', 'G2', 'G3', 'G4', 'G5')) - -ax.legend((p1[0], p2[0]), ('Men', 'Women')) -ax.yaxis.set_units(inch) -ax.autoscale_view() - -plt.show() diff --git a/_downloads/3394f224feba6592c31a7e4f47d34451/trisurf3d.py b/_downloads/3394f224feba6592c31a7e4f47d34451/trisurf3d.py deleted file mode 120000 index 8efcd237380..00000000000 --- a/_downloads/3394f224feba6592c31a7e4f47d34451/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3394f224feba6592c31a7e4f47d34451/trisurf3d.py \ No newline at end of file diff --git a/_downloads/33965d4ad379cfb16dd9693f601c1496/ginput_manual_clabel_sgskip.ipynb b/_downloads/33965d4ad379cfb16dd9693f601c1496/ginput_manual_clabel_sgskip.ipynb deleted file mode 100644 index 5dae57a35ee..00000000000 --- a/_downloads/33965d4ad379cfb16dd9693f601c1496/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Interactive functions\n\n\nThis provides examples of uses of interactive functions, such as ginput,\nwaitforbuttonpress and manual clabel placement.\n\nThis script must be run interactively using a backend that has a\ngraphical user interface (for example, using GTK3Agg backend, but not\nPS backend).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import time\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef tellme(s):\n print(s)\n plt.title(s, fontsize=16)\n plt.draw()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define a triangle by clicking three points\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.clf()\nplt.setp(plt.gca(), autoscale_on=False)\n\ntellme('You will define a triangle, click to begin')\n\nplt.waitforbuttonpress()\n\nwhile True:\n pts = []\n while len(pts) < 3:\n tellme('Select 3 corners with mouse')\n pts = np.asarray(plt.ginput(3, timeout=-1))\n if len(pts) < 3:\n tellme('Too few points, starting over')\n time.sleep(1) # Wait a second\n\n ph = plt.fill(pts[:, 0], pts[:, 1], 'r', lw=2)\n\n tellme('Happy? Key click for yes, mouse click for no')\n\n if plt.waitforbuttonpress():\n break\n\n # Get rid of fill\n for p in ph:\n p.remove()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now contour according to distance from triangle\ncorners - just an example\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Define a nice function of distance from individual pts\ndef f(x, y, pts):\n z = np.zeros_like(x)\n for p in pts:\n z = z + 1/(np.sqrt((x - p[0])**2 + (y - p[1])**2))\n return 1/z\n\n\nX, Y = np.meshgrid(np.linspace(-1, 1, 51), np.linspace(-1, 1, 51))\nZ = f(X, Y, pts)\n\nCS = plt.contour(X, Y, Z, 20)\n\ntellme('Use mouse to select contour label locations, middle button to finish')\nCL = plt.clabel(CS, manual=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now do a zoom\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "tellme('Now do a nested zoom, click to begin')\nplt.waitforbuttonpress()\n\nwhile True:\n tellme('Select two corners of zoom, middle mouse button to finish')\n pts = plt.ginput(2, timeout=-1)\n if len(pts) < 2:\n break\n (x0, y0), (x1, y1) = pts\n xmin, xmax = sorted([x0, x1])\n ymin, ymax = sorted([y0, y1])\n plt.xlim(xmin, xmax)\n plt.ylim(ymin, ymax)\n\ntellme('All Done!')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/33a3f578947ba2d938117078e5c159ea/date_demo_convert.ipynb b/_downloads/33a3f578947ba2d938117078e5c159ea/date_demo_convert.ipynb deleted file mode 120000 index 75adcee4edf..00000000000 --- a/_downloads/33a3f578947ba2d938117078e5c159ea/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/33a3f578947ba2d938117078e5c159ea/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/33a7beb4d544a262d270e1ed737abe6c/rasterization_demo.ipynb b/_downloads/33a7beb4d544a262d270e1ed737abe6c/rasterization_demo.ipynb deleted file mode 120000 index a38bae5e666..00000000000 --- a/_downloads/33a7beb4d544a262d270e1ed737abe6c/rasterization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/33a7beb4d544a262d270e1ed737abe6c/rasterization_demo.ipynb \ No newline at end of file diff --git a/_downloads/33a848f50fc8bab935ba373dd6d78b2d/arctest.ipynb b/_downloads/33a848f50fc8bab935ba373dd6d78b2d/arctest.ipynb deleted file mode 120000 index 5a55090a804..00000000000 --- a/_downloads/33a848f50fc8bab935ba373dd6d78b2d/arctest.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/33a848f50fc8bab935ba373dd6d78b2d/arctest.ipynb \ No newline at end of file diff --git a/_downloads/33afb12cc8627dba1bc2540f3e949b70/pythonic_matplotlib.py b/_downloads/33afb12cc8627dba1bc2540f3e949b70/pythonic_matplotlib.py deleted file mode 120000 index 49f9a8cac62..00000000000 --- a/_downloads/33afb12cc8627dba1bc2540f3e949b70/pythonic_matplotlib.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/33afb12cc8627dba1bc2540f3e949b70/pythonic_matplotlib.py \ No newline at end of file diff --git a/_downloads/33b2d144f11a03d7c27e28b9df3e607d/fill_between_demo.ipynb b/_downloads/33b2d144f11a03d7c27e28b9df3e607d/fill_between_demo.ipynb deleted file mode 100644 index 0d798b9684a..00000000000 --- a/_downloads/33b2d144f11a03d7c27e28b9df3e607d/fill_between_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Filling the area between lines\n\n\nThis example shows how to use ``fill_between`` to color between lines based on\nuser-defined logic.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(0.0, 2, 0.01)\ny1 = np.sin(2 * np.pi * x)\ny2 = 1.2 * np.sin(4 * np.pi * x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2, ax3) = plt.subplots(3, 1, sharex=True)\n\nax1.fill_between(x, 0, y1)\nax1.set_ylabel('between y1 and 0')\n\nax2.fill_between(x, y1, 1)\nax2.set_ylabel('between y1 and 1')\n\nax3.fill_between(x, y1, y2)\nax3.set_ylabel('between y1 and y2')\nax3.set_xlabel('x')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now fill between y1 and y2 where a logical condition is met. Note\nthis is different than calling\n``fill_between(x[where], y1[where], y2[where] ...)``\nbecause of edge effects over multiple contiguous regions.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax, ax1) = plt.subplots(2, 1, sharex=True)\nax.plot(x, y1, x, y2, color='black')\nax.fill_between(x, y1, y2, where=y2 >= y1, facecolor='green', interpolate=True)\nax.fill_between(x, y1, y2, where=y2 <= y1, facecolor='red', interpolate=True)\nax.set_title('fill between where')\n\n# Test support for masked arrays.\ny2 = np.ma.masked_greater(y2, 1.0)\nax1.plot(x, y1, x, y2, color='black')\nax1.fill_between(x, y1, y2, where=y2 >= y1,\n facecolor='green', interpolate=True)\nax1.fill_between(x, y1, y2, where=y2 <= y1,\n facecolor='red', interpolate=True)\nax1.set_title('Now regions with y2>1 are masked')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This example illustrates a problem; because of the data\ngridding, there are undesired unfilled triangles at the crossover\npoints. A brute-force solution would be to interpolate all\narrays to a very fine grid before plotting.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use transforms to create axes spans where a certain condition is satisfied:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\ny = np.sin(4 * np.pi * x)\nax.plot(x, y, color='black')\n\n# use data coordinates for the x-axis and the axes coordinates for the y-axis\nimport matplotlib.transforms as mtransforms\ntrans = mtransforms.blended_transform_factory(ax.transData, ax.transAxes)\ntheta = 0.9\nax.axhline(theta, color='green', lw=2, alpha=0.5)\nax.axhline(-theta, color='red', lw=2, alpha=0.5)\nax.fill_between(x, 0, 1, where=y > theta,\n facecolor='green', alpha=0.5, transform=trans)\nax.fill_between(x, 0, 1, where=y < -theta,\n facecolor='red', alpha=0.5, transform=trans)\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/33b697de2bccda390cee22c0d7965fe5/keyword_plotting.ipynb b/_downloads/33b697de2bccda390cee22c0d7965fe5/keyword_plotting.ipynb deleted file mode 120000 index a011694b525..00000000000 --- a/_downloads/33b697de2bccda390cee22c0d7965fe5/keyword_plotting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/33b697de2bccda390cee22c0d7965fe5/keyword_plotting.ipynb \ No newline at end of file diff --git a/_downloads/33c3825d593aa80f6ed43a1592a84acc/colormap_reference.py b/_downloads/33c3825d593aa80f6ed43a1592a84acc/colormap_reference.py deleted file mode 120000 index 483893466da..00000000000 --- a/_downloads/33c3825d593aa80f6ed43a1592a84acc/colormap_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/33c3825d593aa80f6ed43a1592a84acc/colormap_reference.py \ No newline at end of file diff --git a/_downloads/33c57cdb935b0436624e8a3471dedc5e/pgf.py b/_downloads/33c57cdb935b0436624e8a3471dedc5e/pgf.py deleted file mode 100644 index 31b413d065a..00000000000 --- a/_downloads/33c57cdb935b0436624e8a3471dedc5e/pgf.py +++ /dev/null @@ -1,195 +0,0 @@ -r""" -********************************* -Typesetting With XeLaTeX/LuaLaTeX -********************************* - -How to typeset text with the ``pgf`` backend in Matplotlib. - -Using the ``pgf`` backend, matplotlib can export figures as pgf drawing commands -that can be processed with pdflatex, xelatex or lualatex. XeLaTeX and LuaLaTeX -have full unicode support and can use any font that is installed in the operating -system, making use of advanced typographic features of OpenType, AAT and -Graphite. Pgf pictures created by ``plt.savefig('figure.pgf')`` can be -embedded as raw commands in LaTeX documents. Figures can also be directly -compiled and saved to PDF with ``plt.savefig('figure.pdf')`` by either -switching to the backend - -.. code-block:: python - - matplotlib.use('pgf') - -or registering it for handling pdf output - -.. code-block:: python - - from matplotlib.backends.backend_pgf import FigureCanvasPgf - matplotlib.backend_bases.register_backend('pdf', FigureCanvasPgf) - -The second method allows you to keep using regular interactive backends and to -save xelatex, lualatex or pdflatex compiled PDF files from the graphical user interface. - -Matplotlib's pgf support requires a recent LaTeX_ installation that includes -the TikZ/PGF packages (such as TeXLive_), preferably with XeLaTeX or LuaLaTeX -installed. If either pdftocairo or ghostscript is present on your system, -figures can optionally be saved to PNG images as well. The executables -for all applications must be located on your :envvar:`PATH`. - -Rc parameters that control the behavior of the pgf backend: - - ================= ===================================================== - Parameter Documentation - ================= ===================================================== - pgf.preamble Lines to be included in the LaTeX preamble - pgf.rcfonts Setup fonts from rc params using the fontspec package - pgf.texsystem Either "xelatex" (default), "lualatex" or "pdflatex" - ================= ===================================================== - -.. note:: - - TeX defines a set of special characters, such as:: - - # $ % & ~ _ ^ \ { } - - Generally, these characters must be escaped correctly. For convenience, - some characters (_,^,%) are automatically escaped outside of math - environments. - -.. _pgf-rcfonts: - - -Multi-Page PDF Files -==================== - -The pgf backend also supports multipage pdf files using ``PdfPages`` - -.. code-block:: python - - from matplotlib.backends.backend_pgf import PdfPages - import matplotlib.pyplot as plt - - with PdfPages('multipage.pdf', metadata={'author': 'Me'}) as pdf: - - fig1, ax1 = plt.subplots() - ax1.plot([1, 5, 3]) - pdf.savefig(fig1) - - fig2, ax2 = plt.subplots() - ax2.plot([1, 5, 3]) - pdf.savefig(fig2) - - -Font specification -================== - -The fonts used for obtaining the size of text elements or when compiling -figures to PDF are usually defined in the matplotlib rc parameters. You can -also use the LaTeX default Computer Modern fonts by clearing the lists for -``font.serif``, ``font.sans-serif`` or ``font.monospace``. Please note that -the glyph coverage of these fonts is very limited. If you want to keep the -Computer Modern font face but require extended unicode support, consider -installing the `Computer Modern Unicode `_ -fonts *CMU Serif*, *CMU Sans Serif*, etc. - -When saving to ``.pgf``, the font configuration matplotlib used for the -layout of the figure is included in the header of the text file. - -.. literalinclude:: ../../gallery/userdemo/pgf_fonts.py - :end-before: plt.savefig - - -.. _pgf-preamble: - -Custom preamble -=============== - -Full customization is possible by adding your own commands to the preamble. -Use the ``pgf.preamble`` parameter if you want to configure the math fonts, -using ``unicode-math`` for example, or for loading additional packages. Also, -if you want to do the font configuration yourself instead of using the fonts -specified in the rc parameters, make sure to disable ``pgf.rcfonts``. - -.. only:: html - - .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py - :end-before: plt.savefig - -.. only:: latex - - .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py - :end-before: import matplotlib.pyplot as plt - - -.. _pgf-texsystem: - -Choosing the TeX system -======================= - -The TeX system to be used by matplotlib is chosen by the ``pgf.texsystem`` -parameter. Possible values are ``'xelatex'`` (default), ``'lualatex'`` and -``'pdflatex'``. Please note that when selecting pdflatex the fonts and -unicode handling must be configured in the preamble. - -.. literalinclude:: ../../gallery/userdemo/pgf_texsystem.py - :end-before: plt.savefig - - -.. _pgf-troubleshooting: - -Troubleshooting -=============== - -* Please note that the TeX packages found in some Linux distributions and - MiKTeX installations are dramatically outdated. Make sure to update your - package catalog and upgrade or install a recent TeX distribution. - -* On Windows, the :envvar:`PATH` environment variable may need to be modified - to include the directories containing the latex, dvipng and ghostscript - executables. See :ref:`environment-variables` and - :ref:`setting-windows-environment-variables` for details. - -* A limitation on Windows causes the backend to keep file handles that have - been opened by your application open. As a result, it may not be possible - to delete the corresponding files until the application closes (see - `#1324 `_). - -* Sometimes the font rendering in figures that are saved to png images is - very bad. This happens when the pdftocairo tool is not available and - ghostscript is used for the pdf to png conversion. - -* Make sure what you are trying to do is possible in a LaTeX document, - that your LaTeX syntax is valid and that you are using raw strings - if necessary to avoid unintended escape sequences. - -* The ``pgf.preamble`` rc setting provides lots of flexibility, and lots of - ways to cause problems. When experiencing problems, try to minimalize or - disable the custom preamble. - -* Configuring an ``unicode-math`` environment can be a bit tricky. The - TeXLive distribution for example provides a set of math fonts which are - usually not installed system-wide. XeTeX, unlike LuaLatex, cannot find - these fonts by their name, which is why you might have to specify - ``\setmathfont{xits-math.otf}`` instead of ``\setmathfont{XITS Math}`` or - alternatively make the fonts available to your OS. See this - `tex.stackexchange.com question `_ - for more details. - -* If the font configuration used by matplotlib differs from the font setting - in yout LaTeX document, the alignment of text elements in imported figures - may be off. Check the header of your ``.pgf`` file if you are unsure about - the fonts matplotlib used for the layout. - -* Vector images and hence ``.pgf`` files can become bloated if there are a lot - of objects in the graph. This can be the case for image processing or very - big scatter graphs. In an extreme case this can cause TeX to run out of - memory: "TeX capacity exceeded, sorry" You can configure latex to increase - the amount of memory available to generate the ``.pdf`` image as discussed on - `tex.stackexchange.com `_. - Another way would be to "rasterize" parts of the graph causing problems - using either the ``rasterized=True`` keyword, or ``.set_rasterized(True)`` as per - :doc:`this example `. - -* If you still need help, please see :ref:`reporting-problems` - -.. _LaTeX: http://www.tug.org -.. _TeXLive: http://www.tug.org/texlive/ -""" diff --git a/_downloads/33cab6ee2aabd3af8aae3897eefe5c06/custom_figure_class.ipynb b/_downloads/33cab6ee2aabd3af8aae3897eefe5c06/custom_figure_class.ipynb deleted file mode 120000 index 5b4fe5dbf1d..00000000000 --- a/_downloads/33cab6ee2aabd3af8aae3897eefe5c06/custom_figure_class.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/33cab6ee2aabd3af8aae3897eefe5c06/custom_figure_class.ipynb \ No newline at end of file diff --git a/_downloads/33d7a1e39451a62dbcfd9f0f576ac1f8/text_commands.ipynb b/_downloads/33d7a1e39451a62dbcfd9f0f576ac1f8/text_commands.ipynb deleted file mode 100644 index 7fef032f014..00000000000 --- a/_downloads/33d7a1e39451a62dbcfd9f0f576ac1f8/text_commands.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text Commands\n\n\nPlotting text of many different kinds.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold')\n\nax = fig.add_subplot(111)\nfig.subplots_adjust(top=0.85)\nax.set_title('axes title')\n\nax.set_xlabel('xlabel')\nax.set_ylabel('ylabel')\n\nax.text(3, 8, 'boxed italics text in data coords', style='italic',\n bbox={'facecolor':'red', 'alpha':0.5, 'pad':10})\n\nax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15)\n\nax.text(3, 2, 'unicode: Institut f\\374r Festk\\366rperphysik')\n\nax.text(0.95, 0.01, 'colored text in axes coords',\n verticalalignment='bottom', horizontalalignment='right',\n transform=ax.transAxes,\n color='green', fontsize=15)\n\n\nax.plot([2], [1], 'o')\nax.annotate('annotate', xy=(2, 1), xytext=(3, 4),\n arrowprops=dict(facecolor='black', shrink=0.05))\n\nax.set(xlim=(0, 10), ylim=(0, 10))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure.suptitle\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.figure.Figure.subplots_adjust\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.text\nmatplotlib.axes.Axes.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/33d8645139dbe4e42fcb7efa0738107b/pong_sgskip.py b/_downloads/33d8645139dbe4e42fcb7efa0738107b/pong_sgskip.py deleted file mode 120000 index 8d7e18a441b..00000000000 --- a/_downloads/33d8645139dbe4e42fcb7efa0738107b/pong_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/33d8645139dbe4e42fcb7efa0738107b/pong_sgskip.py \ No newline at end of file diff --git a/_downloads/33dd0fc0452081dd3f658bc34d44156e/line_collection.ipynb b/_downloads/33dd0fc0452081dd3f658bc34d44156e/line_collection.ipynb deleted file mode 120000 index db700ad5f6c..00000000000 --- a/_downloads/33dd0fc0452081dd3f658bc34d44156e/line_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/33dd0fc0452081dd3f658bc34d44156e/line_collection.ipynb \ No newline at end of file diff --git a/_downloads/33e311c60c4933a6a0d197f755ce9ef2/scatter_demo2.py b/_downloads/33e311c60c4933a6a0d197f755ce9ef2/scatter_demo2.py deleted file mode 120000 index ff25baa29af..00000000000 --- a/_downloads/33e311c60c4933a6a0d197f755ce9ef2/scatter_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/33e311c60c4933a6a0d197f755ce9ef2/scatter_demo2.py \ No newline at end of file diff --git a/_downloads/33e6572e0be1b2c8c9dbcb23daf04dd4/pyplot_two_subplots.ipynb b/_downloads/33e6572e0be1b2c8c9dbcb23daf04dd4/pyplot_two_subplots.ipynb deleted file mode 120000 index e16e1f1c18e..00000000000 --- a/_downloads/33e6572e0be1b2c8c9dbcb23daf04dd4/pyplot_two_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/33e6572e0be1b2c8c9dbcb23daf04dd4/pyplot_two_subplots.ipynb \ No newline at end of file diff --git a/_downloads/33e9e63a8ae362ca719df5cfd81d735e/demo_axes_grid2.ipynb b/_downloads/33e9e63a8ae362ca719df5cfd81d735e/demo_axes_grid2.ipynb deleted file mode 120000 index fde27bba08f..00000000000 --- a/_downloads/33e9e63a8ae362ca719df5cfd81d735e/demo_axes_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/33e9e63a8ae362ca719df5cfd81d735e/demo_axes_grid2.ipynb \ No newline at end of file diff --git a/_downloads/33eca71f905d15b8429e0d4f56c7649f/irregulardatagrid.py b/_downloads/33eca71f905d15b8429e0d4f56c7649f/irregulardatagrid.py deleted file mode 120000 index afe499d1794..00000000000 --- a/_downloads/33eca71f905d15b8429e0d4f56c7649f/irregulardatagrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/33eca71f905d15b8429e0d4f56c7649f/irregulardatagrid.py \ No newline at end of file diff --git a/_downloads/33fa6dfa3d4f9acd1109987e84c8ca13/topographic_hillshading.ipynb b/_downloads/33fa6dfa3d4f9acd1109987e84c8ca13/topographic_hillshading.ipynb deleted file mode 120000 index 124467ae331..00000000000 --- a/_downloads/33fa6dfa3d4f9acd1109987e84c8ca13/topographic_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/33fa6dfa3d4f9acd1109987e84c8ca13/topographic_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/34134a7222dee7203113bf1a698e5ab2/print_stdout_sgskip.ipynb b/_downloads/34134a7222dee7203113bf1a698e5ab2/print_stdout_sgskip.ipynb deleted file mode 120000 index 9d4b8d68ba6..00000000000 --- a/_downloads/34134a7222dee7203113bf1a698e5ab2/print_stdout_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/34134a7222dee7203113bf1a698e5ab2/print_stdout_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/341405fc147c918197f4a970e32de402/scatter_hist.py b/_downloads/341405fc147c918197f4a970e32de402/scatter_hist.py deleted file mode 120000 index eaf72ed950c..00000000000 --- a/_downloads/341405fc147c918197f4a970e32de402/scatter_hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/341405fc147c918197f4a970e32de402/scatter_hist.py \ No newline at end of file diff --git a/_downloads/3416d7cc3aba18a2c18cbe48e5e2159e/simple_axisline3.ipynb b/_downloads/3416d7cc3aba18a2c18cbe48e5e2159e/simple_axisline3.ipynb deleted file mode 100644 index ca44650d6f3..00000000000 --- a/_downloads/3416d7cc3aba18a2c18cbe48e5e2159e/simple_axisline3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axisartist.axislines import Subplot\n\nfig = plt.figure(figsize=(3, 3))\n\nax = Subplot(fig, 111)\nfig.add_subplot(ax)\n\nax.axis[\"right\"].set_visible(False)\nax.axis[\"top\"].set_visible(False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/34237249bb73a3f6916d29d42755c958/simple_rgb.ipynb b/_downloads/34237249bb73a3f6916d29d42755c958/simple_rgb.ipynb deleted file mode 120000 index d58e8fb3f08..00000000000 --- a/_downloads/34237249bb73a3f6916d29d42755c958/simple_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/34237249bb73a3f6916d29d42755c958/simple_rgb.ipynb \ No newline at end of file diff --git a/_downloads/342496330c044d4f0836958e87c3c88e/tick_label_right.ipynb b/_downloads/342496330c044d4f0836958e87c3c88e/tick_label_right.ipynb deleted file mode 120000 index 27f05ed7df7..00000000000 --- a/_downloads/342496330c044d4f0836958e87c3c88e/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/342496330c044d4f0836958e87c3c88e/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/3430e515788f715e49324fa6a32ca747/hinton_demo.ipynb b/_downloads/3430e515788f715e49324fa6a32ca747/hinton_demo.ipynb deleted file mode 120000 index 023421b9798..00000000000 --- a/_downloads/3430e515788f715e49324fa6a32ca747/hinton_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3430e515788f715e49324fa6a32ca747/hinton_demo.ipynb \ No newline at end of file diff --git a/_downloads/3432a2da257788fe726074a6460fb237/fill_between_alpha.ipynb b/_downloads/3432a2da257788fe726074a6460fb237/fill_between_alpha.ipynb deleted file mode 120000 index fc3583b4cd3..00000000000 --- a/_downloads/3432a2da257788fe726074a6460fb237/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3432a2da257788fe726074a6460fb237/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/343e4b59a7e62f2ed74e54b91790b6ad/mathtext.ipynb b/_downloads/343e4b59a7e62f2ed74e54b91790b6ad/mathtext.ipynb deleted file mode 120000 index b6f06749426..00000000000 --- a/_downloads/343e4b59a7e62f2ed74e54b91790b6ad/mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/343e4b59a7e62f2ed74e54b91790b6ad/mathtext.ipynb \ No newline at end of file diff --git a/_downloads/344a2f61a9ca1a8aa978d1c0dfaa9fb1/buttons.py b/_downloads/344a2f61a9ca1a8aa978d1c0dfaa9fb1/buttons.py deleted file mode 120000 index 01060c085c5..00000000000 --- a/_downloads/344a2f61a9ca1a8aa978d1c0dfaa9fb1/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/344a2f61a9ca1a8aa978d1c0dfaa9fb1/buttons.py \ No newline at end of file diff --git a/_downloads/344aecb5f38f01287493e1005d3b481f/scatter_symbol.py b/_downloads/344aecb5f38f01287493e1005d3b481f/scatter_symbol.py deleted file mode 120000 index e244a7d4f89..00000000000 --- a/_downloads/344aecb5f38f01287493e1005d3b481f/scatter_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/344aecb5f38f01287493e1005d3b481f/scatter_symbol.py \ No newline at end of file diff --git a/_downloads/3452d8aa9f51f387dfe7f83ed3b94e2c/fancyarrow_demo.py b/_downloads/3452d8aa9f51f387dfe7f83ed3b94e2c/fancyarrow_demo.py deleted file mode 100644 index 59262c81917..00000000000 --- a/_downloads/3452d8aa9f51f387dfe7f83ed3b94e2c/fancyarrow_demo.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -=============== -Fancyarrow Demo -=============== - -""" -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -styles = mpatches.ArrowStyle.get_styles() - -ncol = 2 -nrow = (len(styles) + 1) // ncol -figheight = (nrow + 0.5) -fig = plt.figure(figsize=(4 * ncol / 1.5, figheight / 1.5)) -fontsize = 0.2 * 70 - - -ax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1.) - -ax.set_xlim(0, 4 * ncol) -ax.set_ylim(0, figheight) - - -def to_texstring(s): - s = s.replace("<", r"$<$") - s = s.replace(">", r"$>$") - s = s.replace("|", r"$|$") - return s - - -for i, (stylename, styleclass) in enumerate(sorted(styles.items())): - x = 3.2 + (i // nrow) * 4 - y = (figheight - 0.7 - i % nrow) # /figheight - p = mpatches.Circle((x, y), 0.2) - ax.add_patch(p) - - ax.annotate(to_texstring(stylename), (x, y), - (x - 1.2, y), - ha="right", va="center", - size=fontsize, - arrowprops=dict(arrowstyle=stylename, - patchB=p, - shrinkA=5, - shrinkB=5, - fc="k", ec="k", - connectionstyle="arc3,rad=-0.05", - ), - bbox=dict(boxstyle="square", fc="w")) - -ax.xaxis.set_visible(False) -ax.yaxis.set_visible(False) - -plt.show() diff --git a/_downloads/345b1cd4bf998b6746bd42f25b2d1454/multi_image.ipynb b/_downloads/345b1cd4bf998b6746bd42f25b2d1454/multi_image.ipynb deleted file mode 120000 index 05c1322546d..00000000000 --- a/_downloads/345b1cd4bf998b6746bd42f25b2d1454/multi_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/345b1cd4bf998b6746bd42f25b2d1454/multi_image.ipynb \ No newline at end of file diff --git a/_downloads/34643e08ad560a250024ab1ab42fe976/path_editor.py b/_downloads/34643e08ad560a250024ab1ab42fe976/path_editor.py deleted file mode 100644 index 727712609d3..00000000000 --- a/_downloads/34643e08ad560a250024ab1ab42fe976/path_editor.py +++ /dev/null @@ -1,159 +0,0 @@ -""" -=========== -Path Editor -=========== - -Sharing events across GUIs. - -This example demonstrates a cross-GUI application using Matplotlib event -handling to interact with and modify objects on the canvas. -""" -import numpy as np -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -Path = mpath.Path - -fig, ax = plt.subplots() - -pathdata = [ - (Path.MOVETO, (1.58, -2.57)), - (Path.CURVE4, (0.35, -1.1)), - (Path.CURVE4, (-1.75, 2.0)), - (Path.CURVE4, (0.375, 2.0)), - (Path.LINETO, (0.85, 1.15)), - (Path.CURVE4, (2.2, 3.2)), - (Path.CURVE4, (3, 0.05)), - (Path.CURVE4, (2.0, -0.5)), - (Path.CLOSEPOLY, (1.58, -2.57)), - ] - -codes, verts = zip(*pathdata) -path = mpath.Path(verts, codes) -patch = mpatches.PathPatch(path, facecolor='green', edgecolor='yellow', alpha=0.5) -ax.add_patch(patch) - - -class PathInteractor(object): - """ - An path editor. - - Key-bindings - - 't' toggle vertex markers on and off. When vertex markers are on, - you can move them, delete them - - - """ - - showverts = True - epsilon = 5 # max pixel distance to count as a vertex hit - - def __init__(self, pathpatch): - - self.ax = pathpatch.axes - canvas = self.ax.figure.canvas - self.pathpatch = pathpatch - self.pathpatch.set_animated(True) - - x, y = zip(*self.pathpatch.get_path().vertices) - - self.line, = ax.plot(x, y, marker='o', markerfacecolor='r', animated=True) - - self._ind = None # the active vert - - canvas.mpl_connect('draw_event', self.draw_callback) - canvas.mpl_connect('button_press_event', self.button_press_callback) - canvas.mpl_connect('key_press_event', self.key_press_callback) - canvas.mpl_connect('button_release_event', self.button_release_callback) - canvas.mpl_connect('motion_notify_event', self.motion_notify_callback) - self.canvas = canvas - - def draw_callback(self, event): - self.background = self.canvas.copy_from_bbox(self.ax.bbox) - self.ax.draw_artist(self.pathpatch) - self.ax.draw_artist(self.line) - self.canvas.blit(self.ax.bbox) - - def pathpatch_changed(self, pathpatch): - 'this method is called whenever the pathpatchgon object is called' - # only copy the artist props to the line (except visibility) - vis = self.line.get_visible() - plt.Artist.update_from(self.line, pathpatch) - self.line.set_visible(vis) # don't use the pathpatch visibility state - - def get_ind_under_point(self, event): - 'get the index of the vertex under point if within epsilon tolerance' - - # display coords - xy = np.asarray(self.pathpatch.get_path().vertices) - xyt = self.pathpatch.get_transform().transform(xy) - xt, yt = xyt[:, 0], xyt[:, 1] - d = np.sqrt((xt - event.x)**2 + (yt - event.y)**2) - ind = d.argmin() - - if d[ind] >= self.epsilon: - ind = None - - return ind - - def button_press_callback(self, event): - 'whenever a mouse button is pressed' - if not self.showverts: - return - if event.inaxes is None: - return - if event.button != 1: - return - self._ind = self.get_ind_under_point(event) - - def button_release_callback(self, event): - 'whenever a mouse button is released' - if not self.showverts: - return - if event.button != 1: - return - self._ind = None - - def key_press_callback(self, event): - 'whenever a key is pressed' - if not event.inaxes: - return - if event.key == 't': - self.showverts = not self.showverts - self.line.set_visible(self.showverts) - if not self.showverts: - self._ind = None - - self.canvas.draw() - - def motion_notify_callback(self, event): - 'on mouse movement' - if not self.showverts: - return - if self._ind is None: - return - if event.inaxes is None: - return - if event.button != 1: - return - x, y = event.xdata, event.ydata - - vertices = self.pathpatch.get_path().vertices - - vertices[self._ind] = x, y - self.line.set_data(zip(*vertices)) - - self.canvas.restore_region(self.background) - self.ax.draw_artist(self.pathpatch) - self.ax.draw_artist(self.line) - self.canvas.blit(self.ax.bbox) - - -interactor = PathInteractor(patch) -ax.set_title('drag vertices to update path') -ax.set_xlim(-3, 4) -ax.set_ylim(-3, 4) - -plt.show() diff --git a/_downloads/346f32664a9eae79e234182eb5375954/tricontour_smooth_user.ipynb b/_downloads/346f32664a9eae79e234182eb5375954/tricontour_smooth_user.ipynb deleted file mode 120000 index a4dc042bae3..00000000000 --- a/_downloads/346f32664a9eae79e234182eb5375954/tricontour_smooth_user.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/346f32664a9eae79e234182eb5375954/tricontour_smooth_user.ipynb \ No newline at end of file diff --git a/_downloads/34732fd34dd5168ec4b04020919e4de8/triplot_demo.py b/_downloads/34732fd34dd5168ec4b04020919e4de8/triplot_demo.py deleted file mode 120000 index d4424cb9435..00000000000 --- a/_downloads/34732fd34dd5168ec4b04020919e4de8/triplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/34732fd34dd5168ec4b04020919e4de8/triplot_demo.py \ No newline at end of file diff --git a/_downloads/34827ebbd80a7be269c66280f4b258ee/slider_demo.py b/_downloads/34827ebbd80a7be269c66280f4b258ee/slider_demo.py deleted file mode 120000 index 702613cc1d4..00000000000 --- a/_downloads/34827ebbd80a7be269c66280f4b258ee/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/34827ebbd80a7be269c66280f4b258ee/slider_demo.py \ No newline at end of file diff --git a/_downloads/3482c94a24f4dd45ae74a1644f45f2a8/lines3d.ipynb b/_downloads/3482c94a24f4dd45ae74a1644f45f2a8/lines3d.ipynb deleted file mode 120000 index a0b685f54c1..00000000000 --- a/_downloads/3482c94a24f4dd45ae74a1644f45f2a8/lines3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3482c94a24f4dd45ae74a1644f45f2a8/lines3d.ipynb \ No newline at end of file diff --git a/_downloads/348505ede3724c964fced713ea1f811e/demo_ribbon_box.ipynb b/_downloads/348505ede3724c964fced713ea1f811e/demo_ribbon_box.ipynb deleted file mode 120000 index 560ef28c572..00000000000 --- a/_downloads/348505ede3724c964fced713ea1f811e/demo_ribbon_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/348505ede3724c964fced713ea1f811e/demo_ribbon_box.ipynb \ No newline at end of file diff --git a/_downloads/3489fad3687efb8cb6be6899a39135b4/fancyarrow_demo.py b/_downloads/3489fad3687efb8cb6be6899a39135b4/fancyarrow_demo.py deleted file mode 120000 index 52d8fbc1b09..00000000000 --- a/_downloads/3489fad3687efb8cb6be6899a39135b4/fancyarrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3489fad3687efb8cb6be6899a39135b4/fancyarrow_demo.py \ No newline at end of file diff --git a/_downloads/348dfe24223a36f8c71f279acc8a7dfa/set_and_get.ipynb b/_downloads/348dfe24223a36f8c71f279acc8a7dfa/set_and_get.ipynb deleted file mode 100644 index 810f3252d1b..00000000000 --- a/_downloads/348dfe24223a36f8c71f279acc8a7dfa/set_and_get.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Set And Get\n\n\nThe pyplot interface allows you to use setp and getp to set and get\nobject properties, as well as to do introspection on the object\n\nset\n===\n\nTo set the linestyle of a line to be dashed, you can do::\n\n >>> line, = plt.plot([1,2,3])\n >>> plt.setp(line, linestyle='--')\n\nIf you want to know the valid types of arguments, you can provide the\nname of the property you want to set without a value::\n\n >>> plt.setp(line, 'linestyle')\n linestyle: [ '-' | '--' | '-.' | ':' | 'steps' | 'None' ]\n\nIf you want to see all the properties that can be set, and their\npossible values, you can do::\n\n >>> plt.setp(line)\n\nset operates on a single instance or a list of instances. If you are\nin query mode introspecting the possible values, only the first\ninstance in the sequence is used. When actually setting values, all\nthe instances will be set. e.g., suppose you have a list of two lines,\nthe following will make both lines thicker and red::\n\n >>> x = np.arange(0,1.0,0.01)\n >>> y1 = np.sin(2*np.pi*x)\n >>> y2 = np.sin(4*np.pi*x)\n >>> lines = plt.plot(x, y1, x, y2)\n >>> plt.setp(lines, linewidth=2, color='r')\n\n\nget\n===\n\nget returns the value of a given attribute. You can use get to query\nthe value of a single attribute::\n\n >>> plt.getp(line, 'linewidth')\n 0.5\n\nor all the attribute/value pairs::\n\n >>> plt.getp(line)\n aa = True\n alpha = 1.0\n antialiased = True\n c = b\n clip_on = True\n color = b\n ... long listing skipped ...\n\nAliases\n=======\n\nTo reduce keystrokes in interactive mode, a number of properties\nhave short aliases, e.g., 'lw' for 'linewidth' and 'mec' for\n'markeredgecolor'. When calling set or get in introspection mode,\nthese properties will be listed as 'fullname or aliasname'.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nx = np.arange(0, 1.0, 0.01)\ny1 = np.sin(2*np.pi*x)\ny2 = np.sin(4*np.pi*x)\nlines = plt.plot(x, y1, x, y2)\nl1, l2 = lines\nplt.setp(lines, linestyle='--') # set both to dashed\nplt.setp(l1, linewidth=2, color='r') # line1 is thick and red\nplt.setp(l2, linewidth=1, color='g') # line2 is thinner and green\n\n\nprint('Line setters')\nplt.setp(l1)\nprint('Line getters')\nplt.getp(l1)\n\nprint('Rectangle setters')\nplt.setp(plt.gca().patch)\nprint('Rectangle getters')\nplt.getp(plt.gca().patch)\n\nt = plt.title('Hi mom')\nprint('Text setters')\nplt.setp(t)\nprint('Text getters')\nplt.getp(t)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/349599d69cdf952766ebe31b7a7fd80e/sample_plots.py b/_downloads/349599d69cdf952766ebe31b7a7fd80e/sample_plots.py deleted file mode 120000 index 236df3461ab..00000000000 --- a/_downloads/349599d69cdf952766ebe31b7a7fd80e/sample_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/349599d69cdf952766ebe31b7a7fd80e/sample_plots.py \ No newline at end of file diff --git a/_downloads/349867d88f511719d190e768cf0af0c4/pylab_with_gtk_sgskip.py b/_downloads/349867d88f511719d190e768cf0af0c4/pylab_with_gtk_sgskip.py deleted file mode 100644 index 82cb3d3e82b..00000000000 --- a/_downloads/349867d88f511719d190e768cf0af0c4/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -=============== -pyplot with GTK -=============== - -An example of how to use pyplot to manage your figure windows, but modify the -GUI by accessing the underlying GTK widgets. -""" - -import matplotlib -matplotlib.use('GTK3Agg') # or 'GTK3Cairo' -import matplotlib.pyplot as plt - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - - -fig, ax = plt.subplots() -ax.plot([1, 2, 3], 'ro-', label='easy as 1 2 3') -ax.plot([1, 4, 9], 'gs--', label='easy as 1 2 3 squared') -ax.legend() - -manager = fig.canvas.manager -# you can access the window or vbox attributes this way -toolbar = manager.toolbar -vbox = manager.vbox - -# now let's add a button to the toolbar -button = Gtk.Button(label='Click me') -button.show() -button.connect('clicked', lambda button: print('hi mom')) - -toolitem = Gtk.ToolItem() -toolitem.show() -toolitem.set_tooltip_text('Click me for fun and profit') -toolitem.add(button) - -pos = 8 # where to insert this in the mpl toolbar -toolbar.insert(toolitem, pos) - -# now let's add a widget to the vbox -label = Gtk.Label() -label.set_markup('Drag mouse over axes for position') -label.show() -vbox.pack_start(label, False, False, 0) -vbox.reorder_child(toolbar, -1) - -def update(event): - if event.xdata is None: - label.set_markup('Drag mouse over axes for position') - else: - label.set_markup( - f'x,y=({event.xdata}, {event.ydata})') - -fig.canvas.mpl_connect('motion_notify_event', update) - -plt.show() diff --git a/_downloads/349b674125ef8a5e2ce5129b1ed4f99a/timeline.py b/_downloads/349b674125ef8a5e2ce5129b1ed4f99a/timeline.py deleted file mode 120000 index d348ed73f39..00000000000 --- a/_downloads/349b674125ef8a5e2ce5129b1ed4f99a/timeline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/349b674125ef8a5e2ce5129b1ed4f99a/timeline.py \ No newline at end of file diff --git a/_downloads/34b1df4e7d3b11f81f7362aea6250404/contour_image.py b/_downloads/34b1df4e7d3b11f81f7362aea6250404/contour_image.py deleted file mode 100644 index df2cc7c381f..00000000000 --- a/_downloads/34b1df4e7d3b11f81f7362aea6250404/contour_image.py +++ /dev/null @@ -1,115 +0,0 @@ -""" -============= -Contour Image -============= - -Test combinations of contouring, filled contouring, and image plotting. -For contour labelling, see also the :doc:`contour demo example -`. - -The emphasis in this demo is on showing how to make contours register -correctly on images, and on how to get both of them oriented as desired. -In particular, note the usage of the :doc:`"origin" and "extent" -` keyword arguments to imshow and -contour. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import cm - -# Default delta is large because that makes it fast, and it illustrates -# the correct registration between image and contours. -delta = 0.5 - -extent = (-3, 4, -4, 3) - -x = np.arange(-3.0, 4.001, delta) -y = np.arange(-4.0, 3.001, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -# Boost the upper limit to avoid truncation errors. -levels = np.arange(-2.0, 1.601, 0.4) - -norm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max()) -cmap = cm.PRGn - -fig, _axs = plt.subplots(nrows=2, ncols=2) -fig.subplots_adjust(hspace=0.3) -axs = _axs.flatten() - -cset1 = axs[0].contourf(X, Y, Z, levels, norm=norm, - cmap=cm.get_cmap(cmap, len(levels) - 1)) -# It is not necessary, but for the colormap, we need only the -# number of levels minus 1. To avoid discretization error, use -# either this number or a large number such as the default (256). - -# If we want lines as well as filled regions, we need to call -# contour separately; don't try to change the edgecolor or edgewidth -# of the polygons in the collections returned by contourf. -# Use levels output from previous call to guarantee they are the same. - -cset2 = axs[0].contour(X, Y, Z, cset1.levels, colors='k') - -# We don't really need dashed contour lines to indicate negative -# regions, so let's turn them off. - -for c in cset2.collections: - c.set_linestyle('solid') - -# It is easier here to make a separate call to contour than -# to set up an array of colors and linewidths. -# We are making a thick green line as a zero contour. -# Specify the zero level as a tuple with only 0 in it. - -cset3 = axs[0].contour(X, Y, Z, (0,), colors='g', linewidths=2) -axs[0].set_title('Filled contours') -fig.colorbar(cset1, ax=axs[0]) - - -axs[1].imshow(Z, extent=extent, cmap=cmap, norm=norm) -axs[1].contour(Z, levels, colors='k', origin='upper', extent=extent) -axs[1].set_title("Image, origin 'upper'") - -axs[2].imshow(Z, origin='lower', extent=extent, cmap=cmap, norm=norm) -axs[2].contour(Z, levels, colors='k', origin='lower', extent=extent) -axs[2].set_title("Image, origin 'lower'") - -# We will use the interpolation "nearest" here to show the actual -# image pixels. -# Note that the contour lines don't extend to the edge of the box. -# This is intentional. The Z values are defined at the center of each -# image pixel (each color block on the following subplot), so the -# domain that is contoured does not extend beyond these pixel centers. -im = axs[3].imshow(Z, interpolation='nearest', extent=extent, - cmap=cmap, norm=norm) -axs[3].contour(Z, levels, colors='k', origin='image', extent=extent) -ylim = axs[3].get_ylim() -axs[3].set_ylim(ylim[::-1]) -axs[3].set_title("Origin from rc, reversed y-axis") -fig.colorbar(im, ax=axs[3]) - -fig.tight_layout() -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.Normalize diff --git a/_downloads/34ba920e763363ea23a5cf75fc54f230/multiple_yaxis_with_spines.ipynb b/_downloads/34ba920e763363ea23a5cf75fc54f230/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index 2d213d7e1f2..00000000000 --- a/_downloads/34ba920e763363ea23a5cf75fc54f230/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/34ba920e763363ea23a5cf75fc54f230/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/34bbc2cb27ad3128c8b1765b1b63ff9d/spines.ipynb b/_downloads/34bbc2cb27ad3128c8b1765b1b63ff9d/spines.ipynb deleted file mode 100644 index 03b3d72a782..00000000000 --- a/_downloads/34bbc2cb27ad3128c8b1765b1b63ff9d/spines.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spines\n\n\nThis demo compares:\n - normal axes, with spines on all four sides;\n - an axes with spines only on the left and bottom;\n - an axes using custom bounds to limit the extent of the spine.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nx = np.linspace(0, 2 * np.pi, 100)\ny = 2 * np.sin(x)\n\nfig, (ax0, ax1, ax2) = plt.subplots(nrows=3)\n\nax0.plot(x, y)\nax0.set_title('normal spines')\n\nax1.plot(x, y)\nax1.set_title('bottom-left spines')\n\n# Hide the right and top spines\nax1.spines['right'].set_visible(False)\nax1.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax1.yaxis.set_ticks_position('left')\nax1.xaxis.set_ticks_position('bottom')\n\nax2.plot(x, y)\n\n# Only draw spine between the y-ticks\nax2.spines['left'].set_bounds(-1, 1)\n# Hide the right and top spines\nax2.spines['right'].set_visible(False)\nax2.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax2.yaxis.set_ticks_position('left')\nax2.xaxis.set_ticks_position('bottom')\n\n# Tweak spacing between subplots to prevent labels from overlapping\nplt.subplots_adjust(hspace=0.5)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/34c27267d721a39f74bcc3b505629bf5/simple_anim.py b/_downloads/34c27267d721a39f74bcc3b505629bf5/simple_anim.py deleted file mode 120000 index 3fb37d6a868..00000000000 --- a/_downloads/34c27267d721a39f74bcc3b505629bf5/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/34c27267d721a39f74bcc3b505629bf5/simple_anim.py \ No newline at end of file diff --git a/_downloads/34cb8a042b06742f29a5327afd71fffc/simple_plot.ipynb b/_downloads/34cb8a042b06742f29a5327afd71fffc/simple_plot.ipynb deleted file mode 120000 index d0cf9018a63..00000000000 --- a/_downloads/34cb8a042b06742f29a5327afd71fffc/simple_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/34cb8a042b06742f29a5327afd71fffc/simple_plot.ipynb \ No newline at end of file diff --git a/_downloads/34cf8b7669116e63dab5c4f7bb5aa776/annotate_simple01.ipynb b/_downloads/34cf8b7669116e63dab5c4f7bb5aa776/annotate_simple01.ipynb deleted file mode 120000 index ba98f74caee..00000000000 --- a/_downloads/34cf8b7669116e63dab5c4f7bb5aa776/annotate_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/34cf8b7669116e63dab5c4f7bb5aa776/annotate_simple01.ipynb \ No newline at end of file diff --git a/_downloads/34d2f3239f35b68e0994f52b11ebe225/2dcollections3d.py b/_downloads/34d2f3239f35b68e0994f52b11ebe225/2dcollections3d.py deleted file mode 120000 index 5b803eccc0f..00000000000 --- a/_downloads/34d2f3239f35b68e0994f52b11ebe225/2dcollections3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/34d2f3239f35b68e0994f52b11ebe225/2dcollections3d.py \ No newline at end of file diff --git a/_downloads/34d35231a3ba7e1b9993d698b1b5bcd2/multiprocess_sgskip.ipynb b/_downloads/34d35231a3ba7e1b9993d698b1b5bcd2/multiprocess_sgskip.ipynb deleted file mode 100644 index 4a79ea06e3e..00000000000 --- a/_downloads/34d35231a3ba7e1b9993d698b1b5bcd2/multiprocess_sgskip.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiprocess\n\n\nDemo of using multiprocessing for generating data in one process and\nplotting in another.\n\nWritten by Robert Cimrman\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import multiprocessing as mp\nimport time\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Processing Class\n================\n\nThis class plots data it receives from a pipe.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class ProcessPlotter(object):\n def __init__(self):\n self.x = []\n self.y = []\n\n def terminate(self):\n plt.close('all')\n\n def call_back(self):\n while self.pipe.poll():\n command = self.pipe.recv()\n if command is None:\n self.terminate()\n return False\n else:\n self.x.append(command[0])\n self.y.append(command[1])\n self.ax.plot(self.x, self.y, 'ro')\n self.fig.canvas.draw()\n return True\n\n def __call__(self, pipe):\n print('starting plotter...')\n\n self.pipe = pipe\n self.fig, self.ax = plt.subplots()\n timer = self.fig.canvas.new_timer(interval=1000)\n timer.add_callback(self.call_back)\n timer.start()\n\n print('...done')\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plotting class\n==============\n\nThis class uses multiprocessing to spawn a process to run code from the\nclass above. When initialized, it creates a pipe and an instance of\n``ProcessPlotter`` which will be run in a separate process.\n\nWhen run from the command line, the parent process sends data to the spawned\nprocess which is then plotted via the callback function specified in\n``ProcessPlotter:__call__``.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class NBPlot(object):\n def __init__(self):\n self.plot_pipe, plotter_pipe = mp.Pipe()\n self.plotter = ProcessPlotter()\n self.plot_process = mp.Process(\n target=self.plotter, args=(plotter_pipe,), daemon=True)\n self.plot_process.start()\n\n def plot(self, finished=False):\n send = self.plot_pipe.send\n if finished:\n send(None)\n else:\n data = np.random.random(2)\n send(data)\n\n\ndef main():\n pl = NBPlot()\n for ii in range(10):\n pl.plot()\n time.sleep(0.5)\n pl.plot(finished=True)\n\n\nif __name__ == '__main__':\n if plt.get_backend() == \"MacOSX\":\n mp.set_start_method(\"forkserver\")\n main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/34dbaef1dc51348bd7f185906807353d/affine_image.ipynb b/_downloads/34dbaef1dc51348bd7f185906807353d/affine_image.ipynb deleted file mode 120000 index dea3d95c232..00000000000 --- a/_downloads/34dbaef1dc51348bd7f185906807353d/affine_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/34dbaef1dc51348bd7f185906807353d/affine_image.ipynb \ No newline at end of file diff --git a/_downloads/34e3acf3c96c0800518b49db8cdcc07b/svg_tooltip_sgskip.ipynb b/_downloads/34e3acf3c96c0800518b49db8cdcc07b/svg_tooltip_sgskip.ipynb deleted file mode 120000 index 8167a0e88d9..00000000000 --- a/_downloads/34e3acf3c96c0800518b49db8cdcc07b/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/34e3acf3c96c0800518b49db8cdcc07b/svg_tooltip_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/34ee1c9aa60ac2cfa221baf1bc976135/rotate_axes3d_sgskip.ipynb b/_downloads/34ee1c9aa60ac2cfa221baf1bc976135/rotate_axes3d_sgskip.ipynb deleted file mode 120000 index 6536f3ed744..00000000000 --- a/_downloads/34ee1c9aa60ac2cfa221baf1bc976135/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/34ee1c9aa60ac2cfa221baf1bc976135/rotate_axes3d_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/34ee24b8cc35dedf7a417af98f1c16d7/broken_barh.ipynb b/_downloads/34ee24b8cc35dedf7a417af98f1c16d7/broken_barh.ipynb deleted file mode 120000 index 7973be3f4f2..00000000000 --- a/_downloads/34ee24b8cc35dedf7a417af98f1c16d7/broken_barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/34ee24b8cc35dedf7a417af98f1c16d7/broken_barh.ipynb \ No newline at end of file diff --git a/_downloads/34f054a91b423745c2c65cef05e63a85/wxcursor_demo_sgskip.ipynb b/_downloads/34f054a91b423745c2c65cef05e63a85/wxcursor_demo_sgskip.ipynb deleted file mode 120000 index 02fb077ce37..00000000000 --- a/_downloads/34f054a91b423745c2c65cef05e63a85/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/34f054a91b423745c2c65cef05e63a85/wxcursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/34f40b6fdac202b8fceaae74e172889e/irregulardatagrid.py b/_downloads/34f40b6fdac202b8fceaae74e172889e/irregulardatagrid.py deleted file mode 120000 index 640f397cabc..00000000000 --- a/_downloads/34f40b6fdac202b8fceaae74e172889e/irregulardatagrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/34f40b6fdac202b8fceaae74e172889e/irregulardatagrid.py \ No newline at end of file diff --git a/_downloads/34f8b19c205f891275a63a5f2c7f2d4d/embedding_in_wx4_sgskip.ipynb b/_downloads/34f8b19c205f891275a63a5f2c7f2d4d/embedding_in_wx4_sgskip.ipynb deleted file mode 120000 index 3eb19c9ef11..00000000000 --- a/_downloads/34f8b19c205f891275a63a5f2c7f2d4d/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/34f8b19c205f891275a63a5f2c7f2d4d/embedding_in_wx4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/34f8d7e2994bb546d83ec8de206003f2/contour.py b/_downloads/34f8d7e2994bb546d83ec8de206003f2/contour.py deleted file mode 120000 index 28e1f9d1752..00000000000 --- a/_downloads/34f8d7e2994bb546d83ec8de206003f2/contour.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/34f8d7e2994bb546d83ec8de206003f2/contour.py \ No newline at end of file diff --git a/_downloads/34f9fced19c2afe636a1267c8eab0ba8/animated_histogram.ipynb b/_downloads/34f9fced19c2afe636a1267c8eab0ba8/animated_histogram.ipynb deleted file mode 120000 index ad46e560dd4..00000000000 --- a/_downloads/34f9fced19c2afe636a1267c8eab0ba8/animated_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/34f9fced19c2afe636a1267c8eab0ba8/animated_histogram.ipynb \ No newline at end of file diff --git a/_downloads/350c1b7c78e613a7a35b354987274aa0/demo_gridspec01.ipynb b/_downloads/350c1b7c78e613a7a35b354987274aa0/demo_gridspec01.ipynb deleted file mode 100644 index 42014a6882a..00000000000 --- a/_downloads/350c1b7c78e613a7a35b354987274aa0/demo_gridspec01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# subplot2grid demo\n\n\nThis example demonstrates the use of `plt.subplot2grid` to generate subplots.\nUsing `GridSpec`, as demonstrated in :doc:`/gallery/userdemo/demo_gridspec03`\nis generally preferred.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef annotate_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\n\nfig = plt.figure()\nax1 = plt.subplot2grid((3, 3), (0, 0), colspan=3)\nax2 = plt.subplot2grid((3, 3), (1, 0), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\nax4 = plt.subplot2grid((3, 3), (2, 0))\nax5 = plt.subplot2grid((3, 3), (2, 1))\n\nannotate_axes(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/350e02a3fdee7c87dd3bfa77b0ec499f/spines.py b/_downloads/350e02a3fdee7c87dd3bfa77b0ec499f/spines.py deleted file mode 120000 index 6d9f8235ffd..00000000000 --- a/_downloads/350e02a3fdee7c87dd3bfa77b0ec499f/spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/350e02a3fdee7c87dd3bfa77b0ec499f/spines.py \ No newline at end of file diff --git a/_downloads/3514500406aff7059aae3b5fb5000744/multiple_yaxis_with_spines.ipynb b/_downloads/3514500406aff7059aae3b5fb5000744/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index 09dadb4de9a..00000000000 --- a/_downloads/3514500406aff7059aae3b5fb5000744/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3514500406aff7059aae3b5fb5000744/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/351e8891cc51b0c7e3cfc853e74e25b5/demo_floating_axis.ipynb b/_downloads/351e8891cc51b0c7e3cfc853e74e25b5/demo_floating_axis.ipynb deleted file mode 120000 index bc82ba43e1f..00000000000 --- a/_downloads/351e8891cc51b0c7e3cfc853e74e25b5/demo_floating_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/351e8891cc51b0c7e3cfc853e74e25b5/demo_floating_axis.ipynb \ No newline at end of file diff --git a/_downloads/351f192407c503f76f600860bf502d25/spines.ipynb b/_downloads/351f192407c503f76f600860bf502d25/spines.ipynb deleted file mode 120000 index 825d835d0b5..00000000000 --- a/_downloads/351f192407c503f76f600860bf502d25/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/351f192407c503f76f600860bf502d25/spines.ipynb \ No newline at end of file diff --git a/_downloads/3521362dc0e73684626f9a6f0a9ec8a0/hist.ipynb b/_downloads/3521362dc0e73684626f9a6f0a9ec8a0/hist.ipynb deleted file mode 120000 index e16cb1a8dce..00000000000 --- a/_downloads/3521362dc0e73684626f9a6f0a9ec8a0/hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3521362dc0e73684626f9a6f0a9ec8a0/hist.ipynb \ No newline at end of file diff --git a/_downloads/35215cedac3ec66ce22e2117a5f02720/pgf_texsystem.ipynb b/_downloads/35215cedac3ec66ce22e2117a5f02720/pgf_texsystem.ipynb deleted file mode 120000 index a94c08c5a38..00000000000 --- a/_downloads/35215cedac3ec66ce22e2117a5f02720/pgf_texsystem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/35215cedac3ec66ce22e2117a5f02720/pgf_texsystem.ipynb \ No newline at end of file diff --git a/_downloads/352cd3e315f17d504c9677a0dc5ba123/agg_buffer_to_array.py b/_downloads/352cd3e315f17d504c9677a0dc5ba123/agg_buffer_to_array.py deleted file mode 120000 index 0b593e188f1..00000000000 --- a/_downloads/352cd3e315f17d504c9677a0dc5ba123/agg_buffer_to_array.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/352cd3e315f17d504c9677a0dc5ba123/agg_buffer_to_array.py \ No newline at end of file diff --git a/_downloads/3542b0799e2b933eeea76877127a2ff6/share_axis_lims_views.ipynb b/_downloads/3542b0799e2b933eeea76877127a2ff6/share_axis_lims_views.ipynb deleted file mode 120000 index ea69f54cebf..00000000000 --- a/_downloads/3542b0799e2b933eeea76877127a2ff6/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3542b0799e2b933eeea76877127a2ff6/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/354b03f29d97ae1d22e5f0f3f743886e/barchart_demo.py b/_downloads/354b03f29d97ae1d22e5f0f3f743886e/barchart_demo.py deleted file mode 120000 index 6774696c2d2..00000000000 --- a/_downloads/354b03f29d97ae1d22e5f0f3f743886e/barchart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/354b03f29d97ae1d22e5f0f3f743886e/barchart_demo.py \ No newline at end of file diff --git a/_downloads/354b8746eef182bfb6921a239dbe15d0/cursor_demo_sgskip.py b/_downloads/354b8746eef182bfb6921a239dbe15d0/cursor_demo_sgskip.py deleted file mode 120000 index c390ceeb91a..00000000000 --- a/_downloads/354b8746eef182bfb6921a239dbe15d0/cursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/354b8746eef182bfb6921a239dbe15d0/cursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/3550061d5afe70e08dd0570c9d63725d/connect_simple01.py b/_downloads/3550061d5afe70e08dd0570c9d63725d/connect_simple01.py deleted file mode 120000 index 2bac7ad413c..00000000000 --- a/_downloads/3550061d5afe70e08dd0570c9d63725d/connect_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3550061d5afe70e08dd0570c9d63725d/connect_simple01.py \ No newline at end of file diff --git a/_downloads/35576552c9cf1e6f879742f75aae79e9/check_buttons.py b/_downloads/35576552c9cf1e6f879742f75aae79e9/check_buttons.py deleted file mode 120000 index e8242b6f156..00000000000 --- a/_downloads/35576552c9cf1e6f879742f75aae79e9/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/35576552c9cf1e6f879742f75aae79e9/check_buttons.py \ No newline at end of file diff --git a/_downloads/3562f68c3362add108dcec000be48f29/agg_buffer.ipynb b/_downloads/3562f68c3362add108dcec000be48f29/agg_buffer.ipynb deleted file mode 120000 index 50ddf518f67..00000000000 --- a/_downloads/3562f68c3362add108dcec000be48f29/agg_buffer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3562f68c3362add108dcec000be48f29/agg_buffer.ipynb \ No newline at end of file diff --git a/_downloads/3570afe9336c8e3f34d98fba5cdb0765/rasterization_demo.py b/_downloads/3570afe9336c8e3f34d98fba5cdb0765/rasterization_demo.py deleted file mode 120000 index 1d6e9e98056..00000000000 --- a/_downloads/3570afe9336c8e3f34d98fba5cdb0765/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3570afe9336c8e3f34d98fba5cdb0765/rasterization_demo.py \ No newline at end of file diff --git a/_downloads/35723cd8a750dd2fc6faae40a8cb3985/skewt.ipynb b/_downloads/35723cd8a750dd2fc6faae40a8cb3985/skewt.ipynb deleted file mode 120000 index b60d910ad32..00000000000 --- a/_downloads/35723cd8a750dd2fc6faae40a8cb3985/skewt.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/35723cd8a750dd2fc6faae40a8cb3985/skewt.ipynb \ No newline at end of file diff --git a/_downloads/357ebafb00ab091880972eeb6732f5b2/quiver3d.py b/_downloads/357ebafb00ab091880972eeb6732f5b2/quiver3d.py deleted file mode 120000 index cb48bd43e82..00000000000 --- a/_downloads/357ebafb00ab091880972eeb6732f5b2/quiver3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/357ebafb00ab091880972eeb6732f5b2/quiver3d.py \ No newline at end of file diff --git a/_downloads/358216b46f6f6241bf9ab59190e2dc84/figimage_demo.py b/_downloads/358216b46f6f6241bf9ab59190e2dc84/figimage_demo.py deleted file mode 100644 index ef805576cae..00000000000 --- a/_downloads/358216b46f6f6241bf9ab59190e2dc84/figimage_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============= -Figimage Demo -============= - -This illustrates placing images directly in the figure, with no Axes objects. - -""" -import numpy as np -import matplotlib -import matplotlib.pyplot as plt - - -fig = plt.figure() -Z = np.arange(10000).reshape((100, 100)) -Z[:, 50:] = 1 - -im1 = fig.figimage(Z, xo=50, yo=0, origin='lower') -im2 = fig.figimage(Z, xo=100, yo=100, alpha=.8, origin='lower') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -matplotlib.figure.Figure -matplotlib.figure.Figure.figimage -matplotlib.pyplot.figimage diff --git a/_downloads/35b7e45f74059bcf4c5db7dd426f8cf4/simple_annotate01.ipynb b/_downloads/35b7e45f74059bcf4c5db7dd426f8cf4/simple_annotate01.ipynb deleted file mode 120000 index bc7c6b8cd48..00000000000 --- a/_downloads/35b7e45f74059bcf4c5db7dd426f8cf4/simple_annotate01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/35b7e45f74059bcf4c5db7dd426f8cf4/simple_annotate01.ipynb \ No newline at end of file diff --git a/_downloads/35c18c01dd70f93fa27360964263645f/radar_chart.ipynb b/_downloads/35c18c01dd70f93fa27360964263645f/radar_chart.ipynb deleted file mode 120000 index 72a2594d805..00000000000 --- a/_downloads/35c18c01dd70f93fa27360964263645f/radar_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/35c18c01dd70f93fa27360964263645f/radar_chart.ipynb \ No newline at end of file diff --git a/_downloads/35f40d7a2a337e0a56c35e596b92571b/text_layout.ipynb b/_downloads/35f40d7a2a337e0a56c35e596b92571b/text_layout.ipynb deleted file mode 120000 index dd2a693015d..00000000000 --- a/_downloads/35f40d7a2a337e0a56c35e596b92571b/text_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/35f40d7a2a337e0a56c35e596b92571b/text_layout.ipynb \ No newline at end of file diff --git a/_downloads/35f64c40cfe9a86dabd74f8b438397f5/polar_bar.ipynb b/_downloads/35f64c40cfe9a86dabd74f8b438397f5/polar_bar.ipynb deleted file mode 100644 index d7acac314c4..00000000000 --- a/_downloads/35f64c40cfe9a86dabd74f8b438397f5/polar_bar.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bar chart on polar axis\n\n\nDemo of bar plot on a polar axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# Compute pie slices\nN = 20\ntheta = np.linspace(0.0, 2 * np.pi, N, endpoint=False)\nradii = 10 * np.random.rand(N)\nwidth = np.pi / 4 * np.random.rand(N)\ncolors = plt.cm.viridis(radii / 10.)\n\nax = plt.subplot(111, projection='polar')\nax.bar(theta, radii, width=width, bottom=0.0, color=colors, alpha=0.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.projections.polar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/35fa91e8d0c829c32ce53393cdef1b35/polar_legend.ipynb b/_downloads/35fa91e8d0c829c32ce53393cdef1b35/polar_legend.ipynb deleted file mode 120000 index 69d9b53f758..00000000000 --- a/_downloads/35fa91e8d0c829c32ce53393cdef1b35/polar_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/35fa91e8d0c829c32ce53393cdef1b35/polar_legend.ipynb \ No newline at end of file diff --git a/_downloads/35fd10b2d514d9d630c94ccc6a80589f/broken_barh.ipynb b/_downloads/35fd10b2d514d9d630c94ccc6a80589f/broken_barh.ipynb deleted file mode 100644 index 64b57a71b86..00000000000 --- a/_downloads/35fd10b2d514d9d630c94ccc6a80589f/broken_barh.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Broken Barh\n\n\nMake a \"broken\" horizontal bar plot, i.e., one with gaps\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\nax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue')\nax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9),\n facecolors=('tab:orange', 'tab:green', 'tab:red'))\nax.set_ylim(5, 35)\nax.set_xlim(0, 200)\nax.set_xlabel('seconds since start')\nax.set_yticks([15, 25])\nax.set_yticklabels(['Bill', 'Jim'])\nax.grid(True)\nax.annotate('race interrupted', (61, 25),\n xytext=(0.8, 0.9), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n fontsize=16,\n horizontalalignment='right', verticalalignment='top')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/360921a185324cb3b26877e8dfc70576/demo_floating_axis.ipynb b/_downloads/360921a185324cb3b26877e8dfc70576/demo_floating_axis.ipynb deleted file mode 120000 index 7efe99fc861..00000000000 --- a/_downloads/360921a185324cb3b26877e8dfc70576/demo_floating_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/360921a185324cb3b26877e8dfc70576/demo_floating_axis.ipynb \ No newline at end of file diff --git a/_downloads/360c315692f8bfb96084a37bd585fa65/mplot3d.ipynb b/_downloads/360c315692f8bfb96084a37bd585fa65/mplot3d.ipynb deleted file mode 120000 index f4ee395f524..00000000000 --- a/_downloads/360c315692f8bfb96084a37bd585fa65/mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/360c315692f8bfb96084a37bd585fa65/mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/361464e852885e960f0a6106bea50541/cohere.ipynb b/_downloads/361464e852885e960f0a6106bea50541/cohere.ipynb deleted file mode 120000 index 13a4b549b9f..00000000000 --- a/_downloads/361464e852885e960f0a6106bea50541/cohere.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/361464e852885e960f0a6106bea50541/cohere.ipynb \ No newline at end of file diff --git a/_downloads/361aba6dfcdc72919013a5c7520af2e2/triinterp_demo.py b/_downloads/361aba6dfcdc72919013a5c7520af2e2/triinterp_demo.py deleted file mode 120000 index bec73ddfc08..00000000000 --- a/_downloads/361aba6dfcdc72919013a5c7520af2e2/triinterp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/361aba6dfcdc72919013a5c7520af2e2/triinterp_demo.py \ No newline at end of file diff --git a/_downloads/361bc2757d408bd6cc677a742dce652b/pyplot_three.py b/_downloads/361bc2757d408bd6cc677a742dce652b/pyplot_three.py deleted file mode 120000 index 99b027c482a..00000000000 --- a/_downloads/361bc2757d408bd6cc677a742dce652b/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/361bc2757d408bd6cc677a742dce652b/pyplot_three.py \ No newline at end of file diff --git a/_downloads/3639a51e936cb26e6ed98d0347f0d719/whats_new_99_spines.py b/_downloads/3639a51e936cb26e6ed98d0347f0d719/whats_new_99_spines.py deleted file mode 120000 index 54975472616..00000000000 --- a/_downloads/3639a51e936cb26e6ed98d0347f0d719/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3639a51e936cb26e6ed98d0347f0d719/whats_new_99_spines.py \ No newline at end of file diff --git a/_downloads/363e301368ccdda24e764397089dda10/spines_dropped.py b/_downloads/363e301368ccdda24e764397089dda10/spines_dropped.py deleted file mode 120000 index 0bdcbb07ffa..00000000000 --- a/_downloads/363e301368ccdda24e764397089dda10/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/363e301368ccdda24e764397089dda10/spines_dropped.py \ No newline at end of file diff --git a/_downloads/3647ba1d3fc6673d269ebeaadb7b2061/whats_new_99_spines.ipynb b/_downloads/3647ba1d3fc6673d269ebeaadb7b2061/whats_new_99_spines.ipynb deleted file mode 120000 index 5a8d46bcdcc..00000000000 --- a/_downloads/3647ba1d3fc6673d269ebeaadb7b2061/whats_new_99_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3647ba1d3fc6673d269ebeaadb7b2061/whats_new_99_spines.ipynb \ No newline at end of file diff --git a/_downloads/364e7f571a4fb87e2fc9de904066c64a/simple_axisline3.py b/_downloads/364e7f571a4fb87e2fc9de904066c64a/simple_axisline3.py deleted file mode 120000 index f26413f5aba..00000000000 --- a/_downloads/364e7f571a4fb87e2fc9de904066c64a/simple_axisline3.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/364e7f571a4fb87e2fc9de904066c64a/simple_axisline3.py \ No newline at end of file diff --git a/_downloads/3656038dc4a093172c379d0bb8abc467/multicolored_line.ipynb b/_downloads/3656038dc4a093172c379d0bb8abc467/multicolored_line.ipynb deleted file mode 120000 index 62ea5800144..00000000000 --- a/_downloads/3656038dc4a093172c379d0bb8abc467/multicolored_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3656038dc4a093172c379d0bb8abc467/multicolored_line.ipynb \ No newline at end of file diff --git a/_downloads/366c4f131b2fb542711385aeac27fed2/demo_axes_hbox_divider.py b/_downloads/366c4f131b2fb542711385aeac27fed2/demo_axes_hbox_divider.py deleted file mode 100644 index 31dbfe4f1d9..00000000000 --- a/_downloads/366c4f131b2fb542711385aeac27fed2/demo_axes_hbox_divider.py +++ /dev/null @@ -1,56 +0,0 @@ -""" -====================== -Demo Axes Hbox Divider -====================== - -Hbox Divider to arrange subplots. -""" -import numpy as np -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_divider import HBoxDivider -import mpl_toolkits.axes_grid1.axes_size as Size - - -def make_heights_equal(fig, rect, ax1, ax2, pad): - # pad in inches - - h1, v1 = Size.AxesX(ax1), Size.AxesY(ax1) - h2, v2 = Size.AxesX(ax2), Size.AxesY(ax2) - - pad_v = Size.Scaled(1) - pad_h = Size.Fixed(pad) - - my_divider = HBoxDivider(fig, rect, - horizontal=[h1, pad_h, h2], - vertical=[v1, pad_v, v2]) - - ax1.set_axes_locator(my_divider.new_locator(0)) - ax2.set_axes_locator(my_divider.new_locator(2)) - - -if __name__ == "__main__": - - arr1 = np.arange(20).reshape((4, 5)) - arr2 = np.arange(20).reshape((5, 4)) - - fig, (ax1, ax2) = plt.subplots(1, 2) - ax1.imshow(arr1, interpolation="nearest") - ax2.imshow(arr2, interpolation="nearest") - - rect = 111 # subplot param for combined axes - make_heights_equal(fig, rect, ax1, ax2, pad=0.5) # pad in inches - - for ax in [ax1, ax2]: - ax.locator_params(nbins=4) - - # annotate - ax3 = plt.axes([0.5, 0.5, 0.001, 0.001], frameon=False) - ax3.xaxis.set_visible(False) - ax3.yaxis.set_visible(False) - ax3.annotate("Location of two axes are adjusted\n" - "so that they have equal heights\n" - "while maintaining their aspect ratios", (0.5, 0.5), - xycoords="axes fraction", va="center", ha="center", - bbox=dict(boxstyle="round, pad=1", fc="w")) - - plt.show() diff --git a/_downloads/367970b763ef4860f8081ade8803851e/polar_demo.ipynb b/_downloads/367970b763ef4860f8081ade8803851e/polar_demo.ipynb deleted file mode 120000 index 287c29b3bcc..00000000000 --- a/_downloads/367970b763ef4860f8081ade8803851e/polar_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/367970b763ef4860f8081ade8803851e/polar_demo.ipynb \ No newline at end of file diff --git a/_downloads/367ebf979d4f7564e1538286880ca930/plot_solarizedlight2.py b/_downloads/367ebf979d4f7564e1538286880ca930/plot_solarizedlight2.py deleted file mode 120000 index d6e64ab0e60..00000000000 --- a/_downloads/367ebf979d4f7564e1538286880ca930/plot_solarizedlight2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/367ebf979d4f7564e1538286880ca930/plot_solarizedlight2.py \ No newline at end of file diff --git a/_downloads/3681218cfc802c03cac3c96a16b715e7/rotate_axes3d_sgskip.ipynb b/_downloads/3681218cfc802c03cac3c96a16b715e7/rotate_axes3d_sgskip.ipynb deleted file mode 120000 index c34da265ca8..00000000000 --- a/_downloads/3681218cfc802c03cac3c96a16b715e7/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3681218cfc802c03cac3c96a16b715e7/rotate_axes3d_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/3681252eb05e114624a04b43af06e5b1/spines_bounds.py b/_downloads/3681252eb05e114624a04b43af06e5b1/spines_bounds.py deleted file mode 120000 index 70fa2fe93fa..00000000000 --- a/_downloads/3681252eb05e114624a04b43af06e5b1/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3681252eb05e114624a04b43af06e5b1/spines_bounds.py \ No newline at end of file diff --git a/_downloads/368c00f90cbb0a577b40eddb4b45e2d6/patheffect_demo.ipynb b/_downloads/368c00f90cbb0a577b40eddb4b45e2d6/patheffect_demo.ipynb deleted file mode 120000 index f7505d3a5ae..00000000000 --- a/_downloads/368c00f90cbb0a577b40eddb4b45e2d6/patheffect_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/368c00f90cbb0a577b40eddb4b45e2d6/patheffect_demo.ipynb \ No newline at end of file diff --git a/_downloads/369627324ebed1ec54cf0bd602759a86/make_room_for_ylabel_using_axesgrid.py b/_downloads/369627324ebed1ec54cf0bd602759a86/make_room_for_ylabel_using_axesgrid.py deleted file mode 120000 index 25df0d0e20a..00000000000 --- a/_downloads/369627324ebed1ec54cf0bd602759a86/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/369627324ebed1ec54cf0bd602759a86/make_room_for_ylabel_using_axesgrid.py \ No newline at end of file diff --git a/_downloads/36a5c3960fdb309b098795e7222235d5/layer_images.py b/_downloads/36a5c3960fdb309b098795e7222235d5/layer_images.py deleted file mode 120000 index d4b0f6a8946..00000000000 --- a/_downloads/36a5c3960fdb309b098795e7222235d5/layer_images.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/36a5c3960fdb309b098795e7222235d5/layer_images.py \ No newline at end of file diff --git a/_downloads/36a65c0e2c374077e3ed3cc2d6b226bf/date_index_formatter.py b/_downloads/36a65c0e2c374077e3ed3cc2d6b226bf/date_index_formatter.py deleted file mode 120000 index c888ad485d3..00000000000 --- a/_downloads/36a65c0e2c374077e3ed3cc2d6b226bf/date_index_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/36a65c0e2c374077e3ed3cc2d6b226bf/date_index_formatter.py \ No newline at end of file diff --git a/_downloads/36ac9dd1191bb773ca286a7d55fd72bc/annotations.ipynb b/_downloads/36ac9dd1191bb773ca286a7d55fd72bc/annotations.ipynb deleted file mode 120000 index 6024ed779e3..00000000000 --- a/_downloads/36ac9dd1191bb773ca286a7d55fd72bc/annotations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/36ac9dd1191bb773ca286a7d55fd72bc/annotations.ipynb \ No newline at end of file diff --git a/_downloads/36b7941182e5d255435b53dc79679cc3/demo_floating_axes.ipynb b/_downloads/36b7941182e5d255435b53dc79679cc3/demo_floating_axes.ipynb deleted file mode 120000 index f6ba930a441..00000000000 --- a/_downloads/36b7941182e5d255435b53dc79679cc3/demo_floating_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/36b7941182e5d255435b53dc79679cc3/demo_floating_axes.ipynb \ No newline at end of file diff --git a/_downloads/36b96438c083f6ad9b7491463a4f7dda/aspect_loglog.py b/_downloads/36b96438c083f6ad9b7491463a4f7dda/aspect_loglog.py deleted file mode 120000 index f027e3313c3..00000000000 --- a/_downloads/36b96438c083f6ad9b7491463a4f7dda/aspect_loglog.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/36b96438c083f6ad9b7491463a4f7dda/aspect_loglog.py \ No newline at end of file diff --git a/_downloads/36cb345f1916a1fdb160517520fac330/polys3d.py b/_downloads/36cb345f1916a1fdb160517520fac330/polys3d.py deleted file mode 100644 index 58724a2dc46..00000000000 --- a/_downloads/36cb345f1916a1fdb160517520fac330/polys3d.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -============================================= -Generate polygons to fill under 3D line graph -============================================= - -Demonstrate how to create polygons which fill the space under a line -graph. In this example polygons are semi-transparent, creating a sort -of 'jagged stained glass' effect. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib.collections import PolyCollection -import matplotlib.pyplot as plt -from matplotlib import colors as mcolors -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def polygon_under_graph(xlist, ylist): - """ - Construct the vertex list which defines the polygon filling the space under - the (xlist, ylist) line graph. Assumes the xs are in ascending order. - """ - return [(xlist[0], 0.), *zip(xlist, ylist), (xlist[-1], 0.)] - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make verts a list, verts[i] will be a list of (x,y) pairs defining polygon i -verts = [] - -# Set up the x sequence -xs = np.linspace(0., 10., 26) - -# The ith polygon will appear on the plane y = zs[i] -zs = range(4) - -for i in zs: - ys = np.random.rand(len(xs)) - verts.append(polygon_under_graph(xs, ys)) - -poly = PolyCollection(verts, facecolors=['r', 'g', 'b', 'y'], alpha=.6) -ax.add_collection3d(poly, zs=zs, zdir='y') - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') -ax.set_xlim(0, 10) -ax.set_ylim(-1, 4) -ax.set_zlim(0, 1) - -plt.show() diff --git a/_downloads/36cb4e69d0f26ec57deb54cb77bc624a/connectionstyle_demo.py b/_downloads/36cb4e69d0f26ec57deb54cb77bc624a/connectionstyle_demo.py deleted file mode 120000 index 16fda3cb9dc..00000000000 --- a/_downloads/36cb4e69d0f26ec57deb54cb77bc624a/connectionstyle_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/36cb4e69d0f26ec57deb54cb77bc624a/connectionstyle_demo.py \ No newline at end of file diff --git a/_downloads/36d2a349ba26ec6b02edae36d2148310/hatch_demo.ipynb b/_downloads/36d2a349ba26ec6b02edae36d2148310/hatch_demo.ipynb deleted file mode 120000 index 22b8c081d8a..00000000000 --- a/_downloads/36d2a349ba26ec6b02edae36d2148310/hatch_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/36d2a349ba26ec6b02edae36d2148310/hatch_demo.ipynb \ No newline at end of file diff --git a/_downloads/36d72124bb3e4f3d1ccd8e8c9329d817/transoffset.ipynb b/_downloads/36d72124bb3e4f3d1ccd8e8c9329d817/transoffset.ipynb deleted file mode 100644 index c0f8639f806..00000000000 --- a/_downloads/36d72124bb3e4f3d1ccd8e8c9329d817/transoffset.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Transoffset\n\n\nThis illustrates the use of transforms.offset_copy to\nmake a transform that positions a drawing element such as\na text string at a specified offset in screen coordinates\n(dots or inches) relative to a location given in any\ncoordinates.\n\nEvery Artist--the mpl class from which classes such as\nText and Line are derived--has a transform that can be\nset when the Artist is created, such as by the corresponding\npyplot command. By default this is usually the Axes.transData\ntransform, going from data units to screen dots. We can\nuse the offset_copy function to make a modified copy of\nthis transform, where the modification consists of an\noffset.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\nimport numpy as np\n\n\nxs = np.arange(7)\nys = xs**2\n\nfig = plt.figure(figsize=(5, 10))\nax = plt.subplot(2, 1, 1)\n\n# If we want the same offset for each text instance,\n# we only need to make one transform. To get the\n# transform argument to offset_copy, we need to make the axes\n# first; the subplot command above is one way to do this.\ntrans_offset = mtransforms.offset_copy(ax.transData, fig=fig,\n x=0.05, y=0.10, units='inches')\n\nfor x, y in zip(xs, ys):\n plt.plot(x, y, 'ro')\n plt.text(x, y, '%d, %d' % (int(x), int(y)), transform=trans_offset)\n\n\n# offset_copy works for polar plots also.\nax = plt.subplot(2, 1, 2, projection='polar')\n\ntrans_offset = mtransforms.offset_copy(ax.transData, fig=fig,\n y=6, units='dots')\n\nfor x, y in zip(xs, ys):\n plt.polar(x, y, 'ro')\n plt.text(x, y, '%d, %d' % (int(x), int(y)),\n transform=trans_offset,\n horizontalalignment='center',\n verticalalignment='bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/36d7dd05ca3f878e98715be25a9c4d68/scales.ipynb b/_downloads/36d7dd05ca3f878e98715be25a9c4d68/scales.ipynb deleted file mode 120000 index 037b2bbd4cf..00000000000 --- a/_downloads/36d7dd05ca3f878e98715be25a9c4d68/scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/36d7dd05ca3f878e98715be25a9c4d68/scales.ipynb \ No newline at end of file diff --git a/_downloads/36daaa5e329be5f3322ea2ab80cdf642/fourier_demo_wx_sgskip.ipynb b/_downloads/36daaa5e329be5f3322ea2ab80cdf642/fourier_demo_wx_sgskip.ipynb deleted file mode 100644 index 97ab514c9d5..00000000000 --- a/_downloads/36daaa5e329be5f3322ea2ab80cdf642/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fourier Demo WX\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport wx\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.figure import Figure\n\n\nclass Knob(object):\n \"\"\"\n Knob - simple class with a \"setKnob\" method.\n A Knob instance is attached to a Param instance, e.g., param.attach(knob)\n Base class is for documentation purposes.\n \"\"\"\n\n def setKnob(self, value):\n pass\n\n\nclass Param(object):\n \"\"\"\n The idea of the \"Param\" class is that some parameter in the GUI may have\n several knobs that both control it and reflect the parameter's state, e.g.\n a slider, text, and dragging can all change the value of the frequency in\n the waveform of this example.\n The class allows a cleaner way to update/\"feedback\" to the other knobs when\n one is being changed. Also, this class handles min/max constraints for all\n the knobs.\n Idea - knob list - in \"set\" method, knob object is passed as well\n - the other knobs in the knob list have a \"set\" method which gets\n called for the others.\n \"\"\"\n\n def __init__(self, initialValue=None, minimum=0., maximum=1.):\n self.minimum = minimum\n self.maximum = maximum\n if initialValue != self.constrain(initialValue):\n raise ValueError('illegal initial value')\n self.value = initialValue\n self.knobs = []\n\n def attach(self, knob):\n self.knobs += [knob]\n\n def set(self, value, knob=None):\n self.value = value\n self.value = self.constrain(value)\n for feedbackKnob in self.knobs:\n if feedbackKnob != knob:\n feedbackKnob.setKnob(self.value)\n return self.value\n\n def constrain(self, value):\n if value <= self.minimum:\n value = self.minimum\n if value >= self.maximum:\n value = self.maximum\n return value\n\n\nclass SliderGroup(Knob):\n def __init__(self, parent, label, param):\n self.sliderLabel = wx.StaticText(parent, label=label)\n self.sliderText = wx.TextCtrl(parent, -1, style=wx.TE_PROCESS_ENTER)\n self.slider = wx.Slider(parent, -1)\n # self.slider.SetMax(param.maximum*1000)\n self.slider.SetRange(0, param.maximum * 1000)\n self.setKnob(param.value)\n\n sizer = wx.BoxSizer(wx.HORIZONTAL)\n sizer.Add(self.sliderLabel, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL,\n border=2)\n sizer.Add(self.sliderText, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL,\n border=2)\n sizer.Add(self.slider, 1, wx.EXPAND)\n self.sizer = sizer\n\n self.slider.Bind(wx.EVT_SLIDER, self.sliderHandler)\n self.sliderText.Bind(wx.EVT_TEXT_ENTER, self.sliderTextHandler)\n\n self.param = param\n self.param.attach(self)\n\n def sliderHandler(self, evt):\n value = evt.GetInt() / 1000.\n self.param.set(value)\n\n def sliderTextHandler(self, evt):\n value = float(self.sliderText.GetValue())\n self.param.set(value)\n\n def setKnob(self, value):\n self.sliderText.SetValue('%g' % value)\n self.slider.SetValue(value * 1000)\n\n\nclass FourierDemoFrame(wx.Frame):\n def __init__(self, *args, **kwargs):\n wx.Frame.__init__(self, *args, **kwargs)\n panel = wx.Panel(self)\n\n # create the GUI elements\n self.createCanvas(panel)\n self.createSliders(panel)\n\n # place them in a sizer for the Layout\n sizer = wx.BoxSizer(wx.VERTICAL)\n sizer.Add(self.canvas, 1, wx.EXPAND)\n sizer.Add(self.frequencySliderGroup.sizer, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5)\n sizer.Add(self.amplitudeSliderGroup.sizer, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5)\n panel.SetSizer(sizer)\n\n def createCanvas(self, parent):\n self.lines = []\n self.figure = Figure()\n self.canvas = FigureCanvas(parent, -1, self.figure)\n self.canvas.callbacks.connect('button_press_event', self.mouseDown)\n self.canvas.callbacks.connect('motion_notify_event', self.mouseMotion)\n self.canvas.callbacks.connect('button_release_event', self.mouseUp)\n self.state = ''\n self.mouseInfo = (None, None, None, None)\n self.f0 = Param(2., minimum=0., maximum=6.)\n self.A = Param(1., minimum=0.01, maximum=2.)\n self.createPlots()\n\n # Not sure I like having two params attached to the same Knob,\n # but that is what we have here... it works but feels kludgy -\n # although maybe it's not too bad since the knob changes both params\n # at the same time (both f0 and A are affected during a drag)\n self.f0.attach(self)\n self.A.attach(self)\n\n def createSliders(self, panel):\n self.frequencySliderGroup = SliderGroup(\n panel,\n label='Frequency f0:',\n param=self.f0)\n self.amplitudeSliderGroup = SliderGroup(panel, label=' Amplitude a:',\n param=self.A)\n\n def mouseDown(self, evt):\n if self.lines[0].contains(evt)[0]:\n self.state = 'frequency'\n elif self.lines[1].contains(evt)[0]:\n self.state = 'time'\n else:\n self.state = ''\n self.mouseInfo = (evt.xdata, evt.ydata,\n max(self.f0.value, .1),\n self.A.value)\n\n def mouseMotion(self, evt):\n if self.state == '':\n return\n x, y = evt.xdata, evt.ydata\n if x is None: # outside the axes\n return\n x0, y0, f0Init, AInit = self.mouseInfo\n self.A.set(AInit + (AInit * (y - y0) / y0), self)\n if self.state == 'frequency':\n self.f0.set(f0Init + (f0Init * (x - x0) / x0))\n elif self.state == 'time':\n if (x - x0) / x0 != -1.:\n self.f0.set(1. / (1. / f0Init + (1. / f0Init * (x - x0) / x0)))\n\n def mouseUp(self, evt):\n self.state = ''\n\n def createPlots(self):\n # This method creates the subplots, waveforms and labels.\n # Later, when the waveforms or sliders are dragged, only the\n # waveform data will be updated (not here, but below in setKnob).\n self.subplot1, self.subplot2 = self.figure.subplots(2)\n x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value)\n color = (1., 0., 0.)\n self.lines += self.subplot1.plot(x1, y1, color=color, linewidth=2)\n self.lines += self.subplot2.plot(x2, y2, color=color, linewidth=2)\n # Set some plot attributes\n self.subplot1.set_title(\n \"Click and drag waveforms to change frequency and amplitude\",\n fontsize=12)\n self.subplot1.set_ylabel(\"Frequency Domain Waveform X(f)\", fontsize=8)\n self.subplot1.set_xlabel(\"frequency f\", fontsize=8)\n self.subplot2.set_ylabel(\"Time Domain Waveform x(t)\", fontsize=8)\n self.subplot2.set_xlabel(\"time t\", fontsize=8)\n self.subplot1.set_xlim([-6, 6])\n self.subplot1.set_ylim([0, 1])\n self.subplot2.set_xlim([-2, 2])\n self.subplot2.set_ylim([-2, 2])\n self.subplot1.text(0.05, .95,\n r'$X(f) = \\mathcal{F}\\{x(t)\\}$',\n verticalalignment='top',\n transform=self.subplot1.transAxes)\n self.subplot2.text(0.05, .95,\n r'$x(t) = a \\cdot \\cos(2\\pi f_0 t) e^{-\\pi t^2}$',\n verticalalignment='top',\n transform=self.subplot2.transAxes)\n\n def compute(self, f0, A):\n f = np.arange(-6., 6., 0.02)\n t = np.arange(-2., 2., 0.01)\n x = A * np.cos(2 * np.pi * f0 * t) * np.exp(-np.pi * t ** 2)\n X = A / 2 * \\\n (np.exp(-np.pi * (f - f0) ** 2) + np.exp(-np.pi * (f + f0) ** 2))\n return f, X, t, x\n\n def setKnob(self, value):\n # Note, we ignore value arg here and just go by state of the params\n x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value)\n # update the data of the two waveforms\n self.lines[0].set(xdata=x1, ydata=y1)\n self.lines[1].set(xdata=x2, ydata=y2)\n # make the canvas draw its contents again with the new data\n self.canvas.draw()\n\n\nclass App(wx.App):\n def OnInit(self):\n self.frame1 = FourierDemoFrame(parent=None, title=\"Fourier Demo\",\n size=(640, 480))\n self.frame1.Show()\n return True\n\napp = App()\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/36dd65d7bac3d82b46521012367ef1b4/barh.py b/_downloads/36dd65d7bac3d82b46521012367ef1b4/barh.py deleted file mode 120000 index 9c16a1e3c7f..00000000000 --- a/_downloads/36dd65d7bac3d82b46521012367ef1b4/barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/36dd65d7bac3d82b46521012367ef1b4/barh.py \ No newline at end of file diff --git a/_downloads/36e6c68c23c3b92050f0fe5a0b4348bd/violinplot.py b/_downloads/36e6c68c23c3b92050f0fe5a0b4348bd/violinplot.py deleted file mode 120000 index 95465fc618b..00000000000 --- a/_downloads/36e6c68c23c3b92050f0fe5a0b4348bd/violinplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/36e6c68c23c3b92050f0fe5a0b4348bd/violinplot.py \ No newline at end of file diff --git a/_downloads/36ebd713b4ea20da966ccfabbbe710ef/radar_chart.py b/_downloads/36ebd713b4ea20da966ccfabbbe710ef/radar_chart.py deleted file mode 120000 index 1bfebf6a480..00000000000 --- a/_downloads/36ebd713b4ea20da966ccfabbbe710ef/radar_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/36ebd713b4ea20da966ccfabbbe710ef/radar_chart.py \ No newline at end of file diff --git a/_downloads/36ffabb0e0ca828169d205a9ce85a479/scatter_masked.ipynb b/_downloads/36ffabb0e0ca828169d205a9ce85a479/scatter_masked.ipynb deleted file mode 120000 index 9bacca7db81..00000000000 --- a/_downloads/36ffabb0e0ca828169d205a9ce85a479/scatter_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/36ffabb0e0ca828169d205a9ce85a479/scatter_masked.ipynb \ No newline at end of file diff --git a/_downloads/372bf867d8be13b0fcc110d75abd1782/font_family_rc_sgskip.ipynb b/_downloads/372bf867d8be13b0fcc110d75abd1782/font_family_rc_sgskip.ipynb deleted file mode 120000 index b01c6162e6c..00000000000 --- a/_downloads/372bf867d8be13b0fcc110d75abd1782/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/372bf867d8be13b0fcc110d75abd1782/font_family_rc_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/37349a0bb2d5e034a71f23dc4044e944/annotate_text_arrow.ipynb b/_downloads/37349a0bb2d5e034a71f23dc4044e944/annotate_text_arrow.ipynb deleted file mode 120000 index d1883c0d190..00000000000 --- a/_downloads/37349a0bb2d5e034a71f23dc4044e944/annotate_text_arrow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/37349a0bb2d5e034a71f23dc4044e944/annotate_text_arrow.ipynb \ No newline at end of file diff --git a/_downloads/373ee748385e9681cffb2c834449e940/inset_locator_demo.ipynb b/_downloads/373ee748385e9681cffb2c834449e940/inset_locator_demo.ipynb deleted file mode 120000 index 787343b3833..00000000000 --- a/_downloads/373ee748385e9681cffb2c834449e940/inset_locator_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/373ee748385e9681cffb2c834449e940/inset_locator_demo.ipynb \ No newline at end of file diff --git a/_downloads/37478c66d1e6fdaa3866e02070a96354/gridspec.ipynb b/_downloads/37478c66d1e6fdaa3866e02070a96354/gridspec.ipynb deleted file mode 120000 index 1b3b1973ae8..00000000000 --- a/_downloads/37478c66d1e6fdaa3866e02070a96354/gridspec.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/37478c66d1e6fdaa3866e02070a96354/gridspec.ipynb \ No newline at end of file diff --git a/_downloads/375657414971f9a69fecb5cfd62fb1fb/scales.ipynb b/_downloads/375657414971f9a69fecb5cfd62fb1fb/scales.ipynb deleted file mode 120000 index e4c2100686c..00000000000 --- a/_downloads/375657414971f9a69fecb5cfd62fb1fb/scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/375657414971f9a69fecb5cfd62fb1fb/scales.ipynb \ No newline at end of file diff --git a/_downloads/376b4149d752b31668a1d662bf52fc25/cohere.py b/_downloads/376b4149d752b31668a1d662bf52fc25/cohere.py deleted file mode 120000 index 5ab1c473a22..00000000000 --- a/_downloads/376b4149d752b31668a1d662bf52fc25/cohere.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/376b4149d752b31668a1d662bf52fc25/cohere.py \ No newline at end of file diff --git a/_downloads/3777a3d4709f515eccaf48740ef25e7f/buttons.ipynb b/_downloads/3777a3d4709f515eccaf48740ef25e7f/buttons.ipynb deleted file mode 120000 index f628e204d4c..00000000000 --- a/_downloads/3777a3d4709f515eccaf48740ef25e7f/buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3777a3d4709f515eccaf48740ef25e7f/buttons.ipynb \ No newline at end of file diff --git a/_downloads/3786188bae617f8a5f8d7443decb1417/date_concise_formatter.py b/_downloads/3786188bae617f8a5f8d7443decb1417/date_concise_formatter.py deleted file mode 120000 index fce0e73ce1f..00000000000 --- a/_downloads/3786188bae617f8a5f8d7443decb1417/date_concise_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3786188bae617f8a5f8d7443decb1417/date_concise_formatter.py \ No newline at end of file diff --git a/_downloads/3787cff80291b2bcf9557568f1a518c4/annotations.ipynb b/_downloads/3787cff80291b2bcf9557568f1a518c4/annotations.ipynb deleted file mode 100644 index 3172466ac6c..00000000000 --- a/_downloads/3787cff80291b2bcf9557568f1a518c4/annotations.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nAnnotations\n===========\n\nAnnotating text with Matplotlib.\n :depth: 3\n\n\nBasic annotation\n================\n\nThe uses of the basic :func:`~matplotlib.pyplot.text` will place text\nat an arbitrary position on the Axes. A common use case of text is to\nannotate some feature of the plot, and the\n:func:`~matplotlib.Axes.annotate` method provides helper functionality\nto make annotations easy. In an annotation, there are two points to\nconsider: the location being annotated represented by the argument\n``xy`` and the location of the text ``xytext``. Both of these\narguments are ``(x,y)`` tuples.\n\n.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_basic_001.png\n :target: ../../gallery/pyplots/annotation_basic.html\n :align: center\n :scale: 50\n\n Annotation Basic\n\nIn this example, both the ``xy`` (arrow tip) and ``xytext`` locations\n(text location) are in data coordinates. There are a variety of other\ncoordinate systems one can choose -- you can specify the coordinate\nsystem of ``xy`` and ``xytext`` with one of the following strings for\n``xycoords`` and ``textcoords`` (default is 'data')\n\n==================== ====================================================\nargument coordinate system\n==================== ====================================================\n 'figure points' points from the lower left corner of the figure\n 'figure pixels' pixels from the lower left corner of the figure\n 'figure fraction' 0,0 is lower left of figure and 1,1 is upper right\n 'axes points' points from lower left corner of axes\n 'axes pixels' pixels from lower left corner of axes\n 'axes fraction' 0,0 is lower left of axes and 1,1 is upper right\n 'data' use the axes data coordinate system\n==================== ====================================================\n\nFor example to place the text coordinates in fractional axes\ncoordinates, one could do::\n\n ax.annotate('local max', xy=(3, 1), xycoords='data',\n xytext=(0.8, 0.95), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top',\n )\n\nFor physical coordinate systems (points or pixels) the origin is the\nbottom-left of the figure or axes.\n\nOptionally, you can enable drawing of an arrow from the text to the annotated\npoint by giving a dictionary of arrow properties in the optional keyword\nargument ``arrowprops``.\n\n\n==================== =====================================================\n``arrowprops`` key description\n==================== =====================================================\nwidth the width of the arrow in points\nfrac the fraction of the arrow length occupied by the head\nheadwidth the width of the base of the arrow head in points\nshrink move the tip and base some percent away from\n the annotated point and text\n\n\\*\\*kwargs any key for :class:`matplotlib.patches.Polygon`,\n e.g., ``facecolor``\n==================== =====================================================\n\n\nIn the example below, the ``xy`` point is in native coordinates\n(``xycoords`` defaults to 'data'). For a polar axes, this is in\n(theta, radius) space. The text in this example is placed in the\nfractional figure coordinate system. :class:`matplotlib.text.Text`\nkeyword args like ``horizontalalignment``, ``verticalalignment`` and\n``fontsize`` are passed from `~matplotlib.Axes.annotate` to the\n``Text`` instance.\n\n.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_polar_001.png\n :target: ../../gallery/pyplots/annotation_polar.html\n :align: center\n :scale: 50\n\n Annotation Polar\n\nFor more on all the wild and wonderful things you can do with\nannotations, including fancy arrows, see `plotting-guide-annotation`\nand :doc:`/gallery/text_labels_and_annotations/annotation_demo`.\n\n\nDo not proceed unless you have already read `annotations-tutorial`,\n:func:`~matplotlib.pyplot.text` and :func:`~matplotlib.pyplot.annotate`!\n\n\n\nAdvanced Annotation\n===================\n\n\nAnnotating with Text with Box\n-----------------------------\n\nLet's start with a simple example.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_text_arrow_001.png\n :target: ../../gallery/userdemo/annotate_text_arrow.html\n :align: center\n :scale: 50\n\n Annotate Text Arrow\n\n\nThe :func:`~matplotlib.pyplot.text` function in the pyplot module (or\ntext method of the Axes class) takes bbox keyword argument, and when\ngiven, a box around the text is drawn. ::\n\n bbox_props = dict(boxstyle=\"rarrow,pad=0.3\", fc=\"cyan\", ec=\"b\", lw=2)\n t = ax.text(0, 0, \"Direction\", ha=\"center\", va=\"center\", rotation=45,\n size=15,\n bbox=bbox_props)\n\n\nThe patch object associated with the text can be accessed by::\n\n bb = t.get_bbox_patch()\n\nThe return value is an instance of FancyBboxPatch and the patch\nproperties like facecolor, edgewidth, etc. can be accessed and\nmodified as usual. To change the shape of the box, use the *set_boxstyle*\nmethod. ::\n\n bb.set_boxstyle(\"rarrow\", pad=0.6)\n\nThe arguments are the name of the box style with its attributes as\nkeyword arguments. Currently, following box styles are implemented.\n\n ========== ============== ==========================\n Class Name Attrs\n ========== ============== ==========================\n Circle ``circle`` pad=0.3\n DArrow ``darrow`` pad=0.3\n LArrow ``larrow`` pad=0.3\n RArrow ``rarrow`` pad=0.3\n Round ``round`` pad=0.3,rounding_size=None\n Round4 ``round4`` pad=0.3,rounding_size=None\n Roundtooth ``roundtooth`` pad=0.3,tooth_size=None\n Sawtooth ``sawtooth`` pad=0.3,tooth_size=None\n Square ``square`` pad=0.3\n ========== ============== ==========================\n\n.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_fancybox_demo_001.png\n :target: ../../gallery/shapes_and_collections/fancybox_demo.html\n :align: center\n :scale: 50\n\n Fancybox Demo\n\n\nNote that the attribute arguments can be specified within the style\nname with separating comma (this form can be used as \"boxstyle\" value\nof bbox argument when initializing the text instance) ::\n\n bb.set_boxstyle(\"rarrow,pad=0.6\")\n\n\n\n\nAnnotating with Arrow\n---------------------\n\nThe :func:`~matplotlib.pyplot.annotate` function in the pyplot module\n(or annotate method of the Axes class) is used to draw an arrow\nconnecting two points on the plot. ::\n\n ax.annotate(\"Annotation\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='offset points',\n )\n\nThis annotates a point at ``xy`` in the given coordinate (``xycoords``)\nwith the text at ``xytext`` given in ``textcoords``. Often, the\nannotated point is specified in the *data* coordinate and the annotating\ntext in *offset points*.\nSee :func:`~matplotlib.pyplot.annotate` for available coordinate systems.\n\nAn arrow connecting two points (xy & xytext) can be optionally drawn by\nspecifying the ``arrowprops`` argument. To draw only an arrow, use\nempty string as the first argument. ::\n\n ax.annotate(\"\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc3\"),\n )\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple01_001.png\n :target: ../../gallery/userdemo/annotate_simple01.html\n :align: center\n :scale: 50\n\n Annotate Simple01\n\nThe arrow drawing takes a few steps.\n\n1. a connecting path between two points are created. This is\n controlled by ``connectionstyle`` key value.\n\n2. If patch object is given (*patchA* & *patchB*), the path is clipped to\n avoid the patch.\n\n3. The path is further shrunk by given amount of pixels (*shrinkA*\n & *shrinkB*)\n\n4. The path is transmuted to arrow patch, which is controlled by the\n ``arrowstyle`` key value.\n\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_explain_001.png\n :target: ../../gallery/userdemo/annotate_explain.html\n :align: center\n :scale: 50\n\n Annotate Explain\n\n\nThe creation of the connecting path between two points is controlled by\n``connectionstyle`` key and the following styles are available.\n\n ========== =============================================\n Name Attrs\n ========== =============================================\n ``angle`` angleA=90,angleB=0,rad=0.0\n ``angle3`` angleA=90,angleB=0\n ``arc`` angleA=0,angleB=0,armA=None,armB=None,rad=0.0\n ``arc3`` rad=0.0\n ``bar`` armA=0.0,armB=0.0,fraction=0.3,angle=None\n ========== =============================================\n\nNote that \"3\" in ``angle3`` and ``arc3`` is meant to indicate that the\nresulting path is a quadratic spline segment (three control\npoints). As will be discussed below, some arrow style options can only\nbe used when the connecting path is a quadratic spline.\n\nThe behavior of each connection style is (limitedly) demonstrated in the\nexample below. (Warning : The behavior of the ``bar`` style is currently not\nwell defined, it may be changed in the future).\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_connectionstyle_demo_001.png\n :target: ../../gallery/userdemo/connectionstyle_demo.html\n :align: center\n :scale: 50\n\n Connectionstyle Demo\n\n\nThe connecting path (after clipping and shrinking) is then mutated to\nan arrow patch, according to the given ``arrowstyle``.\n\n ========== =============================================\n Name Attrs\n ========== =============================================\n ``-`` None\n ``->`` head_length=0.4,head_width=0.2\n ``-[`` widthB=1.0,lengthB=0.2,angleB=None\n ``|-|`` widthA=1.0,widthB=1.0\n ``-|>`` head_length=0.4,head_width=0.2\n ``<-`` head_length=0.4,head_width=0.2\n ``<->`` head_length=0.4,head_width=0.2\n ``<|-`` head_length=0.4,head_width=0.2\n ``<|-|>`` head_length=0.4,head_width=0.2\n ``fancy`` head_length=0.4,head_width=0.4,tail_width=0.4\n ``simple`` head_length=0.5,head_width=0.5,tail_width=0.2\n ``wedge`` tail_width=0.3,shrink_factor=0.5\n ========== =============================================\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_fancyarrow_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/fancyarrow_demo.html\n :align: center\n :scale: 50\n\n Fancyarrow Demo\n\nSome arrowstyles only work with connection styles that generate a\nquadratic-spline segment. They are ``fancy``, ``simple``, and ``wedge``.\nFor these arrow styles, you must use the \"angle3\" or \"arc3\" connection\nstyle.\n\nIf the annotation string is given, the patchA is set to the bbox patch\nof the text by default.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple02_001.png\n :target: ../../gallery/userdemo/annotate_simple02.html\n :align: center\n :scale: 50\n\n Annotate Simple02\n\nAs in the text command, a box around the text can be drawn using\nthe ``bbox`` argument.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple03_001.png\n :target: ../../gallery/userdemo/annotate_simple03.html\n :align: center\n :scale: 50\n\n Annotate Simple03\n\nBy default, the starting point is set to the center of the text\nextent. This can be adjusted with ``relpos`` key value. The values\nare normalized to the extent of the text. For example, (0,0) means\nlower-left corner and (1,1) means top-right.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple04_001.png\n :target: ../../gallery/userdemo/annotate_simple04.html\n :align: center\n :scale: 50\n\n Annotate Simple04\n\n\nPlacing Artist at the anchored location of the Axes\n---------------------------------------------------\n\nThere are classes of artists that can be placed at an anchored location\nin the Axes. A common example is the legend. This type of artist can\nbe created by using the OffsetBox class. A few predefined classes are\navailable in ``mpl_toolkits.axes_grid1.anchored_artists`` others in\n``matplotlib.offsetbox`` ::\n\n from matplotlib.offsetbox import AnchoredText\n at = AnchoredText(\"Figure 1a\",\n prop=dict(size=15), frameon=True,\n loc='upper left',\n )\n at.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at)\n\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box01_001.png\n :target: ../../gallery/userdemo/anchored_box01.html\n :align: center\n :scale: 50\n\n Anchored Box01\n\n\nThe *loc* keyword has same meaning as in the legend command.\n\nA simple application is when the size of the artist (or collection of\nartists) is known in pixel size during the time of creation. For\nexample, If you want to draw a circle with fixed size of 20 pixel x 20\npixel (radius = 10 pixel), you can utilize\n``AnchoredDrawingArea``. The instance is created with a size of the\ndrawing area (in pixels), and arbitrary artists can added to the\ndrawing area. Note that the extents of the artists that are added to\nthe drawing area are not related to the placement of the drawing\narea itself. Only the initial size matters. ::\n\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea\n\n ada = AnchoredDrawingArea(20, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\n p1 = Circle((10, 10), 10)\n ada.drawing_area.add_artist(p1)\n p2 = Circle((30, 10), 5, fc=\"r\")\n ada.drawing_area.add_artist(p2)\n\nThe artists that are added to the drawing area should not have a\ntransform set (it will be overridden) and the dimensions of those\nartists are interpreted as a pixel coordinate, i.e., the radius of the\ncircles in above example are 10 pixels and 5 pixels, respectively.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box02_001.png\n :target: ../../gallery/userdemo/anchored_box02.html\n :align: center\n :scale: 50\n\n Anchored Box02\n\nSometimes, you want your artists to scale with the data coordinate (or\ncoordinates other than canvas pixels). You can use\n``AnchoredAuxTransformBox`` class. This is similar to\n``AnchoredDrawingArea`` except that the extent of the artist is\ndetermined during the drawing time respecting the specified transform. ::\n\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox\n\n box = AnchoredAuxTransformBox(ax.transData, loc='upper left')\n el = Ellipse((0,0), width=0.1, height=0.4, angle=30) # in data coordinates!\n box.drawing_area.add_artist(el)\n\nThe ellipse in the above example will have width and height\ncorresponding to 0.1 and 0.4 in data coordinates and will be\nautomatically scaled when the view limits of the axes change.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box03_001.png\n :target: ../../gallery/userdemo/anchored_box03.html\n :align: center\n :scale: 50\n\n Anchored Box03\n\nAs in the legend, the bbox_to_anchor argument can be set. Using the\nHPacker and VPacker, you can have an arrangement(?) of artist as in the\nlegend (as a matter of fact, this is how the legend is created).\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box04_001.png\n :target: ../../gallery/userdemo/anchored_box04.html\n :align: center\n :scale: 50\n\n Anchored Box04\n\nNote that unlike the legend, the ``bbox_transform`` is set\nto IdentityTransform by default.\n\nUsing Complex Coordinates with Annotations\n------------------------------------------\n\nThe Annotation in matplotlib supports several types of coordinates as\ndescribed in `annotations-tutorial`. For an advanced user who wants\nmore control, it supports a few other options.\n\n 1. :class:`~matplotlib.transforms.Transform` instance. For example, ::\n\n ax.annotate(\"Test\", xy=(0.5, 0.5), xycoords=ax.transAxes)\n\n is identical to ::\n\n ax.annotate(\"Test\", xy=(0.5, 0.5), xycoords=\"axes fraction\")\n\n With this, you can annotate a point in other axes. ::\n\n ax1, ax2 = subplot(121), subplot(122)\n ax2.annotate(\"Test\", xy=(0.5, 0.5), xycoords=ax1.transData,\n xytext=(0.5, 0.5), textcoords=ax2.transData,\n arrowprops=dict(arrowstyle=\"->\"))\n\n 2. :class:`~matplotlib.artist.Artist` instance. The xy value (or\n xytext) is interpreted as a fractional coordinate of the bbox\n (return value of *get_window_extent*) of the artist. ::\n\n an1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\n an2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1, # (1,0.5) of the an1's bbox\n xytext=(30,0), textcoords=\"offset points\",\n va=\"center\", ha=\"left\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\n\n .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord01_001.png\n :target: ../../gallery/userdemo/annotate_simple_coord01.html\n :align: center\n :scale: 50\n\n Annotation with Simple Coordinates\n\n Note that it is your responsibility that the extent of the\n coordinate artist (*an1* in above example) is determined before *an2*\n gets drawn. In most cases, it means that *an2* needs to be drawn\n later than *an1*.\n\n\n 3. A callable object that returns an instance of either\n :class:`~matplotlib.transforms.BboxBase` or\n :class:`~matplotlib.transforms.Transform`. If a transform is\n returned, it is the same as 1 and if a bbox is returned, it is the same\n as 2. The callable object should take a single argument of the\n renderer instance. For example, the following two commands give\n identical results ::\n\n an2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1,\n xytext=(30,0), textcoords=\"offset points\")\n an2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1.get_window_extent,\n xytext=(30,0), textcoords=\"offset points\")\n\n\n 4. A tuple of two coordinate specifications. The first item is for the\n x-coordinate and the second is for the y-coordinate. For example, ::\n\n annotate(\"Test\", xy=(0.5, 1), xycoords=(\"data\", \"axes fraction\"))\n\n 0.5 is in data coordinates, and 1 is in normalized axes coordinates.\n You may use an artist or transform as with a tuple. For example,\n\n .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord02_001.png\n :target: ../../gallery/userdemo/annotate_simple_coord02.html\n :align: center\n :scale: 50\n\n Annotation with Simple Coordinates 2\n\n 5. Sometimes, you want your annotation with some \"offset points\", not from the\n annotated point but from some other point.\n :class:`~matplotlib.text.OffsetFrom` is a helper class for such cases.\n\n .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord03_001.png\n :target: ../../gallery/userdemo/annotate_simple_coord03.html\n :align: center\n :scale: 50\n\n Annotation with Simple Coordinates 3\n\n You may take a look at this example\n :doc:`/gallery/text_labels_and_annotations/annotation_demo`.\n\nUsing ConnectionPatch\n---------------------\n\nThe ConnectionPatch is like an annotation without text. While the annotate\nfunction is recommended in most situations, the ConnectionPatch is useful when\nyou want to connect points in different axes. ::\n\n from matplotlib.patches import ConnectionPatch\n xy = (0.2, 0.2)\n con = ConnectionPatch(xyA=xy, xyB=xy, coordsA=\"data\", coordsB=\"data\",\n axesA=ax1, axesB=ax2)\n ax2.add_artist(con)\n\nThe above code connects point xy in the data coordinates of ``ax1`` to\npoint xy in the data coordinates of ``ax2``. Here is a simple example.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_connect_simple01_001.png\n :target: ../../gallery/userdemo/connect_simple01.html\n :align: center\n :scale: 50\n\n Connect Simple01\n\n\nWhile the ConnectionPatch instance can be added to any axes, you may want to add\nit to the axes that is latest in drawing order to prevent overlap by other\naxes.\n\n\nAdvanced Topics\n~~~~~~~~~~~~~~~\n\nZoom effect between Axes\n------------------------\n\n``mpl_toolkits.axes_grid1.inset_locator`` defines some patch classes useful\nfor interconnecting two axes. Understanding the code requires some\nknowledge of how mpl's transform works. But, utilizing it will be\nstraight forward.\n\n\n.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_axes_zoom_effect_001.png\n :target: ../../gallery/subplots_axes_and_figures/axes_zoom_effect.html\n :align: center\n :scale: 50\n\n Axes Zoom Effect\n\n\nDefine Custom BoxStyle\n----------------------\n\nYou can use a custom box style. The value for the ``boxstyle`` can be a\ncallable object in the following forms.::\n\n def __call__(self, x0, y0, width, height, mutation_size,\n aspect_ratio=1.):\n '''\n Given the location and size of the box, return the path of\n the box around it.\n\n - *x0*, *y0*, *width*, *height* : location and size of the box\n - *mutation_size* : a reference scale for the mutation.\n - *aspect_ratio* : aspect-ratio for the mutation.\n '''\n path = ...\n return path\n\nHere is a complete example.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle01_001.png\n :target: ../../gallery/userdemo/custom_boxstyle01.html\n :align: center\n :scale: 50\n\n Custom Boxstyle01\n\nHowever, it is recommended that you derive from the\nmatplotlib.patches.BoxStyle._Base as demonstrated below.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle02_001.png\n :target: ../../gallery/userdemo/custom_boxstyle02.html\n :align: center\n :scale: 50\n\n Custom Boxstyle02\n\n\nSimilarly, you can define a custom ConnectionStyle and a custom ArrowStyle.\nSee the source code of ``lib/matplotlib/patches.py`` and check\nhow each style class is defined.\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/379388c5a6ce979cdc78447225e06c4f/secondary_axis.ipynb b/_downloads/379388c5a6ce979cdc78447225e06c4f/secondary_axis.ipynb deleted file mode 120000 index 32bda3f01be..00000000000 --- a/_downloads/379388c5a6ce979cdc78447225e06c4f/secondary_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/379388c5a6ce979cdc78447225e06c4f/secondary_axis.ipynb \ No newline at end of file diff --git a/_downloads/3798fb39f6a505d2e695485ebd923fcb/figimage_demo.py b/_downloads/3798fb39f6a505d2e695485ebd923fcb/figimage_demo.py deleted file mode 120000 index 97c9110ed9b..00000000000 --- a/_downloads/3798fb39f6a505d2e695485ebd923fcb/figimage_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3798fb39f6a505d2e695485ebd923fcb/figimage_demo.py \ No newline at end of file diff --git a/_downloads/379fa79f3129305c232f72c3f223a5e2/multiprocess_sgskip.py b/_downloads/379fa79f3129305c232f72c3f223a5e2/multiprocess_sgskip.py deleted file mode 120000 index b14a1c7e42e..00000000000 --- a/_downloads/379fa79f3129305c232f72c3f223a5e2/multiprocess_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/379fa79f3129305c232f72c3f223a5e2/multiprocess_sgskip.py \ No newline at end of file diff --git a/_downloads/37a1fa6ef954790538f33e8e21c2d600/annotate_explain.ipynb b/_downloads/37a1fa6ef954790538f33e8e21c2d600/annotate_explain.ipynb deleted file mode 100644 index ef82ce95066..00000000000 --- a/_downloads/37a1fa6ef954790538f33e8e21c2d600/annotate_explain.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Explain\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as mpatches\n\n\nfig, axs = plt.subplots(2, 2)\nx1, y1 = 0.3, 0.3\nx2, y2 = 0.7, 0.7\n\nax = axs.flat[0]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"-\",\n color=\"0.5\",\n patchB=None,\n shrinkB=0,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"connect\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[1]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"-\",\n color=\"0.5\",\n patchB=el,\n shrinkB=0,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"clip\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[2]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"-\",\n color=\"0.5\",\n patchB=el,\n shrinkB=5,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"shrink\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[3]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"fancy\",\n color=\"0.5\",\n patchB=el,\n shrinkB=5,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"mutate\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nfor ax in axs.flat:\n ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/37abb4a85ffcd007e8f7cbf2f4d24d67/histogram_histtypes.ipynb b/_downloads/37abb4a85ffcd007e8f7cbf2f4d24d67/histogram_histtypes.ipynb deleted file mode 120000 index 932a66b7b84..00000000000 --- a/_downloads/37abb4a85ffcd007e8f7cbf2f4d24d67/histogram_histtypes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/37abb4a85ffcd007e8f7cbf2f4d24d67/histogram_histtypes.ipynb \ No newline at end of file diff --git a/_downloads/37b0ac2e098b5547a9cfb84c9054b38f/colormap_normalizations_custom.py b/_downloads/37b0ac2e098b5547a9cfb84c9054b38f/colormap_normalizations_custom.py deleted file mode 120000 index b2fff7a7a2c..00000000000 --- a/_downloads/37b0ac2e098b5547a9cfb84c9054b38f/colormap_normalizations_custom.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/37b0ac2e098b5547a9cfb84c9054b38f/colormap_normalizations_custom.py \ No newline at end of file diff --git a/_downloads/37b2648b5002dead5584e84ee1eaf5bc/axis_direction_demo_step03.py b/_downloads/37b2648b5002dead5584e84ee1eaf5bc/axis_direction_demo_step03.py deleted file mode 120000 index 36aa21c8b85..00000000000 --- a/_downloads/37b2648b5002dead5584e84ee1eaf5bc/axis_direction_demo_step03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/37b2648b5002dead5584e84ee1eaf5bc/axis_direction_demo_step03.py \ No newline at end of file diff --git a/_downloads/37b66ce5574c98a4b0de78054826f18c/errorbars_and_boxes.ipynb b/_downloads/37b66ce5574c98a4b0de78054826f18c/errorbars_and_boxes.ipynb deleted file mode 120000 index ff23ec38f54..00000000000 --- a/_downloads/37b66ce5574c98a4b0de78054826f18c/errorbars_and_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/37b66ce5574c98a4b0de78054826f18c/errorbars_and_boxes.ipynb \ No newline at end of file diff --git a/_downloads/37bb8195ac71e6a7f640bcd97f4db6b5/axis_direction_demo_step03.ipynb b/_downloads/37bb8195ac71e6a7f640bcd97f4db6b5/axis_direction_demo_step03.ipynb deleted file mode 120000 index e4b92f1b861..00000000000 --- a/_downloads/37bb8195ac71e6a7f640bcd97f4db6b5/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/37bb8195ac71e6a7f640bcd97f4db6b5/axis_direction_demo_step03.ipynb \ No newline at end of file diff --git a/_downloads/37bd9dfcdea0bdfee34de4dd4b265fc0/simple_axisline3.py b/_downloads/37bd9dfcdea0bdfee34de4dd4b265fc0/simple_axisline3.py deleted file mode 120000 index 47f5f1f572a..00000000000 --- a/_downloads/37bd9dfcdea0bdfee34de4dd4b265fc0/simple_axisline3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/37bd9dfcdea0bdfee34de4dd4b265fc0/simple_axisline3.py \ No newline at end of file diff --git a/_downloads/37be0935124b6bdb048c7d9c4bed0fa3/surface3d_3.ipynb b/_downloads/37be0935124b6bdb048c7d9c4bed0fa3/surface3d_3.ipynb deleted file mode 120000 index c4fe08f23d8..00000000000 --- a/_downloads/37be0935124b6bdb048c7d9c4bed0fa3/surface3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/37be0935124b6bdb048c7d9c4bed0fa3/surface3d_3.ipynb \ No newline at end of file diff --git a/_downloads/37be725e6cb23a3bb9b658e497967984/demo_curvelinear_grid2.ipynb b/_downloads/37be725e6cb23a3bb9b658e497967984/demo_curvelinear_grid2.ipynb deleted file mode 120000 index 16a98d5b82b..00000000000 --- a/_downloads/37be725e6cb23a3bb9b658e497967984/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/37be725e6cb23a3bb9b658e497967984/demo_curvelinear_grid2.ipynb \ No newline at end of file diff --git a/_downloads/37cc01e8344095e1b2d8d7f144bbbdc6/keyword_plotting.ipynb b/_downloads/37cc01e8344095e1b2d8d7f144bbbdc6/keyword_plotting.ipynb deleted file mode 100644 index f63b30ffe83..00000000000 --- a/_downloads/37cc01e8344095e1b2d8d7f144bbbdc6/keyword_plotting.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotting with keywords\n\n\nThere are some instances where you have data in a format that lets you\naccess particular variables with strings. For example, with\n:class:`numpy.recarray` or :class:`pandas.DataFrame`.\n\nMatplotlib allows you provide such an object with the ``data`` keyword\nargument. If provided, then you may generate plots with the strings\ncorresponding to these variables.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nnp.random.seed(19680801)\n\ndata = {'a': np.arange(50),\n 'c': np.random.randint(0, 50, 50),\n 'd': np.random.randn(50)}\ndata['b'] = data['a'] + 10 * np.random.randn(50)\ndata['d'] = np.abs(data['d']) * 100\n\nfig, ax = plt.subplots()\nax.scatter('a', 'b', c='c', s='d', data=data)\nax.set(xlabel='entry a', ylabel='entry b')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/37cc55ee22254c47386b9311a1790db6/text_rotation_relative_to_line.ipynb b/_downloads/37cc55ee22254c47386b9311a1790db6/text_rotation_relative_to_line.ipynb deleted file mode 120000 index 233a4ae76fe..00000000000 --- a/_downloads/37cc55ee22254c47386b9311a1790db6/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/37cc55ee22254c47386b9311a1790db6/text_rotation_relative_to_line.ipynb \ No newline at end of file diff --git a/_downloads/37d0e96cf73677bf12d73bf3e90c533b/vline_hline_demo.py b/_downloads/37d0e96cf73677bf12d73bf3e90c533b/vline_hline_demo.py deleted file mode 120000 index 4f6a8cc1db9..00000000000 --- a/_downloads/37d0e96cf73677bf12d73bf3e90c533b/vline_hline_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/37d0e96cf73677bf12d73bf3e90c533b/vline_hline_demo.py \ No newline at end of file diff --git a/_downloads/37d38302b94556ecbd983805c2cc9e18/dolphin.ipynb b/_downloads/37d38302b94556ecbd983805c2cc9e18/dolphin.ipynb deleted file mode 120000 index 2c8bf56d573..00000000000 --- a/_downloads/37d38302b94556ecbd983805c2cc9e18/dolphin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/37d38302b94556ecbd983805c2cc9e18/dolphin.ipynb \ No newline at end of file diff --git a/_downloads/37da9ed87bdec9ff8bf428ee7ff8f209/gridspec_multicolumn.py b/_downloads/37da9ed87bdec9ff8bf428ee7ff8f209/gridspec_multicolumn.py deleted file mode 120000 index e79f1c735ae..00000000000 --- a/_downloads/37da9ed87bdec9ff8bf428ee7ff8f209/gridspec_multicolumn.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/37da9ed87bdec9ff8bf428ee7ff8f209/gridspec_multicolumn.py \ No newline at end of file diff --git a/_downloads/37db5037f42b404a4779b8794eb3fa38/custom_cmap.py b/_downloads/37db5037f42b404a4779b8794eb3fa38/custom_cmap.py deleted file mode 120000 index a64dbde344b..00000000000 --- a/_downloads/37db5037f42b404a4779b8794eb3fa38/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/37db5037f42b404a4779b8794eb3fa38/custom_cmap.py \ No newline at end of file diff --git a/_downloads/37e29eac7c1ac9690bce74756407e07b/path_editor.py b/_downloads/37e29eac7c1ac9690bce74756407e07b/path_editor.py deleted file mode 120000 index 0aa679e166b..00000000000 --- a/_downloads/37e29eac7c1ac9690bce74756407e07b/path_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/37e29eac7c1ac9690bce74756407e07b/path_editor.py \ No newline at end of file diff --git a/_downloads/37e4a04cefe1e372ce19afe76d517baa/set_and_get.ipynb b/_downloads/37e4a04cefe1e372ce19afe76d517baa/set_and_get.ipynb deleted file mode 120000 index a6a012bc984..00000000000 --- a/_downloads/37e4a04cefe1e372ce19afe76d517baa/set_and_get.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/37e4a04cefe1e372ce19afe76d517baa/set_and_get.ipynb \ No newline at end of file diff --git a/_downloads/37e56a0c90574e7fb48cb11c856fc768/custom_figure_class.ipynb b/_downloads/37e56a0c90574e7fb48cb11c856fc768/custom_figure_class.ipynb deleted file mode 120000 index c234ae10b81..00000000000 --- a/_downloads/37e56a0c90574e7fb48cb11c856fc768/custom_figure_class.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/37e56a0c90574e7fb48cb11c856fc768/custom_figure_class.ipynb \ No newline at end of file diff --git a/_downloads/37e9193d606a03853917b15ecbeb1b87/ticklabels_rotation.ipynb b/_downloads/37e9193d606a03853917b15ecbeb1b87/ticklabels_rotation.ipynb deleted file mode 100644 index 22339868d69..00000000000 --- a/_downloads/37e9193d606a03853917b15ecbeb1b87/ticklabels_rotation.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rotating custom tick labels\n\n\nDemo of custom tick-labels with user-defined rotation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nx = [1, 2, 3, 4]\ny = [1, 4, 9, 6]\nlabels = ['Frogs', 'Hogs', 'Bogs', 'Slogs']\n\nplt.plot(x, y)\n# You can specify a rotation for the tick labels in degrees or with keywords.\nplt.xticks(x, labels, rotation='vertical')\n# Pad margins so that markers don't get clipped by the axes\nplt.margins(0.2)\n# Tweak spacing to prevent clipping of tick-labels\nplt.subplots_adjust(bottom=0.15)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/37fba3d12181a3aae2e437954ce280d2/pyplot_simple.py b/_downloads/37fba3d12181a3aae2e437954ce280d2/pyplot_simple.py deleted file mode 120000 index 902039e709b..00000000000 --- a/_downloads/37fba3d12181a3aae2e437954ce280d2/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/37fba3d12181a3aae2e437954ce280d2/pyplot_simple.py \ No newline at end of file diff --git a/_downloads/37fe59ce801277e78678a8d810c548f4/font_family_rc_sgskip.py b/_downloads/37fe59ce801277e78678a8d810c548f4/font_family_rc_sgskip.py deleted file mode 120000 index 0af3c8b0345..00000000000 --- a/_downloads/37fe59ce801277e78678a8d810c548f4/font_family_rc_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/37fe59ce801277e78678a8d810c548f4/font_family_rc_sgskip.py \ No newline at end of file diff --git a/_downloads/380985f6602f4e14b013028d8c1ad7b2/embedding_in_wx4_sgskip.py b/_downloads/380985f6602f4e14b013028d8c1ad7b2/embedding_in_wx4_sgskip.py deleted file mode 120000 index b640cb1bc2c..00000000000 --- a/_downloads/380985f6602f4e14b013028d8c1ad7b2/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/380985f6602f4e14b013028d8c1ad7b2/embedding_in_wx4_sgskip.py \ No newline at end of file diff --git a/_downloads/380f624e5b985c5dce223e4b4e6747b2/figure_title.py b/_downloads/380f624e5b985c5dce223e4b4e6747b2/figure_title.py deleted file mode 120000 index 626076ea68c..00000000000 --- a/_downloads/380f624e5b985c5dce223e4b4e6747b2/figure_title.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/380f624e5b985c5dce223e4b4e6747b2/figure_title.py \ No newline at end of file diff --git a/_downloads/3813823ddbde0444afca353ecb1e48e9/tricontourf3d.ipynb b/_downloads/3813823ddbde0444afca353ecb1e48e9/tricontourf3d.ipynb deleted file mode 100644 index 8d3b79cca67..00000000000 --- a/_downloads/3813823ddbde0444afca353ecb1e48e9/tricontourf3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triangular 3D filled contour plot\n\n\nFilled contour plots of unstructured triangular grids.\n\nThe data used is the same as in the second plot of trisurf3d_demo2.\ntricontour3d_demo shows the unfilled version of this example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np\n\n# First create the x, y, z coordinates of the points.\nn_angles = 48\nn_radii = 8\nmin_radius = 0.25\n\n# Create the mesh in polar coordinates and compute x, y, z.\nradii = np.linspace(min_radius, 0.95, n_radii)\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi/n_angles\n\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nz = (np.cos(radii)*np.cos(3*angles)).flatten()\n\n# Create a custom triangulation.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.tricontourf(triang, z, cmap=plt.cm.CMRmap)\n\n# Customize the view angle so it's easier to understand the plot.\nax.view_init(elev=45.)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/381a999e1dbeede09b40aabf52f9bea1/annotate_simple03.py b/_downloads/381a999e1dbeede09b40aabf52f9bea1/annotate_simple03.py deleted file mode 120000 index f2013d1ddea..00000000000 --- a/_downloads/381a999e1dbeede09b40aabf52f9bea1/annotate_simple03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/381a999e1dbeede09b40aabf52f9bea1/annotate_simple03.py \ No newline at end of file diff --git a/_downloads/382114f56a437c824dce3a104012a253/svg_histogram_sgskip.py b/_downloads/382114f56a437c824dce3a104012a253/svg_histogram_sgskip.py deleted file mode 120000 index 389b4b55491..00000000000 --- a/_downloads/382114f56a437c824dce3a104012a253/svg_histogram_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/382114f56a437c824dce3a104012a253/svg_histogram_sgskip.py \ No newline at end of file diff --git a/_downloads/382ac2c7cee670af795334e8f93a7f77/check_buttons.ipynb b/_downloads/382ac2c7cee670af795334e8f93a7f77/check_buttons.ipynb deleted file mode 100644 index 4ba6d2ce55b..00000000000 --- a/_downloads/382ac2c7cee670af795334e8f93a7f77/check_buttons.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Check Buttons\n\n\nTurning visual elements on and off with check buttons.\n\nThis program shows the use of 'Check Buttons' which is similar to\ncheck boxes. There are 3 different sine waves shown and we can choose which\nwaves are displayed with the check buttons.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import CheckButtons\n\nt = np.arange(0.0, 2.0, 0.01)\ns0 = np.sin(2*np.pi*t)\ns1 = np.sin(4*np.pi*t)\ns2 = np.sin(6*np.pi*t)\n\nfig, ax = plt.subplots()\nl0, = ax.plot(t, s0, visible=False, lw=2, color='k', label='2 Hz')\nl1, = ax.plot(t, s1, lw=2, color='r', label='4 Hz')\nl2, = ax.plot(t, s2, lw=2, color='g', label='6 Hz')\nplt.subplots_adjust(left=0.2)\n\nlines = [l0, l1, l2]\n\n# Make checkbuttons with all plotted lines with correct visibility\nrax = plt.axes([0.05, 0.4, 0.1, 0.15])\nlabels = [str(line.get_label()) for line in lines]\nvisibility = [line.get_visible() for line in lines]\ncheck = CheckButtons(rax, labels, visibility)\n\n\ndef func(label):\n index = labels.index(label)\n lines[index].set_visible(not lines[index].get_visible())\n plt.draw()\n\ncheck.on_clicked(func)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3831d027b2cbbcb0d21fc4e5c0e56efa/pyplot_simple.ipynb b/_downloads/3831d027b2cbbcb0d21fc4e5c0e56efa/pyplot_simple.ipynb deleted file mode 120000 index 85318078957..00000000000 --- a/_downloads/3831d027b2cbbcb0d21fc4e5c0e56efa/pyplot_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3831d027b2cbbcb0d21fc4e5c0e56efa/pyplot_simple.ipynb \ No newline at end of file diff --git a/_downloads/38332fbadd30bb523fbc4020f777d5eb/colormapnorms.py b/_downloads/38332fbadd30bb523fbc4020f777d5eb/colormapnorms.py deleted file mode 120000 index 95aa8c4c311..00000000000 --- a/_downloads/38332fbadd30bb523fbc4020f777d5eb/colormapnorms.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/38332fbadd30bb523fbc4020f777d5eb/colormapnorms.py \ No newline at end of file diff --git a/_downloads/383a5706d9cb4b650affdd2e5d16d73d/demo_ribbon_box.ipynb b/_downloads/383a5706d9cb4b650affdd2e5d16d73d/demo_ribbon_box.ipynb deleted file mode 120000 index 087994a3f20..00000000000 --- a/_downloads/383a5706d9cb4b650affdd2e5d16d73d/demo_ribbon_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/383a5706d9cb4b650affdd2e5d16d73d/demo_ribbon_box.ipynb \ No newline at end of file diff --git a/_downloads/383bac9969a9e9b24257d4217b559725/errorbar_limits_simple.ipynb b/_downloads/383bac9969a9e9b24257d4217b559725/errorbar_limits_simple.ipynb deleted file mode 120000 index 3b281866b49..00000000000 --- a/_downloads/383bac9969a9e9b24257d4217b559725/errorbar_limits_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/383bac9969a9e9b24257d4217b559725/errorbar_limits_simple.ipynb \ No newline at end of file diff --git a/_downloads/3858e1b4fd8e1889f2a04bbb0e2243a1/pgf_fonts.py b/_downloads/3858e1b4fd8e1889f2a04bbb0e2243a1/pgf_fonts.py deleted file mode 100644 index 463d5c7e688..00000000000 --- a/_downloads/3858e1b4fd8e1889f2a04bbb0e2243a1/pgf_fonts.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -========= -Pgf Fonts -========= - -""" - -import matplotlib.pyplot as plt -plt.rcParams.update({ - "font.family": "serif", - "font.serif": [], # use latex default serif font - "font.sans-serif": ["DejaVu Sans"], # use a specific sans-serif font -}) - -plt.figure(figsize=(4.5, 2.5)) -plt.plot(range(5)) -plt.text(0.5, 3., "serif") -plt.text(0.5, 2., "monospace", family="monospace") -plt.text(2.5, 2., "sans-serif", family="sans-serif") -plt.text(2.5, 1., "comic sans", family="Comic Sans MS") -plt.xlabel("µ is not $\\mu$") -plt.tight_layout(.5) - -plt.savefig("pgf_fonts.pdf") -plt.savefig("pgf_fonts.png") diff --git a/_downloads/385cea3bbe7af0de50057d4b42ab0af9/plot_streamplot.py b/_downloads/385cea3bbe7af0de50057d4b42ab0af9/plot_streamplot.py deleted file mode 120000 index 9fc8b996208..00000000000 --- a/_downloads/385cea3bbe7af0de50057d4b42ab0af9/plot_streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/385cea3bbe7af0de50057d4b42ab0af9/plot_streamplot.py \ No newline at end of file diff --git a/_downloads/3860e67dc0e356c3f5f53e4494b070df/cursor.ipynb b/_downloads/3860e67dc0e356c3f5f53e4494b070df/cursor.ipynb deleted file mode 120000 index c89effb2baf..00000000000 --- a/_downloads/3860e67dc0e356c3f5f53e4494b070df/cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3860e67dc0e356c3f5f53e4494b070df/cursor.ipynb \ No newline at end of file diff --git a/_downloads/386ec8013446da94f19b5be725c546ad/units_sample.py b/_downloads/386ec8013446da94f19b5be725c546ad/units_sample.py deleted file mode 120000 index 901fd22fa55..00000000000 --- a/_downloads/386ec8013446da94f19b5be725c546ad/units_sample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/386ec8013446da94f19b5be725c546ad/units_sample.py \ No newline at end of file diff --git a/_downloads/387366293b20174db561e37f2f7cf1d2/xcorr_acorr_demo.ipynb b/_downloads/387366293b20174db561e37f2f7cf1d2/xcorr_acorr_demo.ipynb deleted file mode 120000 index 223c51ec0df..00000000000 --- a/_downloads/387366293b20174db561e37f2f7cf1d2/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/387366293b20174db561e37f2f7cf1d2/xcorr_acorr_demo.ipynb \ No newline at end of file diff --git a/_downloads/38761f6a99c4cb7b7f91b79f2d3cbea4/boxplot_color.py b/_downloads/38761f6a99c4cb7b7f91b79f2d3cbea4/boxplot_color.py deleted file mode 120000 index 80de830bbae..00000000000 --- a/_downloads/38761f6a99c4cb7b7f91b79f2d3cbea4/boxplot_color.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/38761f6a99c4cb7b7f91b79f2d3cbea4/boxplot_color.py \ No newline at end of file diff --git a/_downloads/38763e74e4be29673cefc7d0594c063c/ellipse_with_units.py b/_downloads/38763e74e4be29673cefc7d0594c063c/ellipse_with_units.py deleted file mode 120000 index cce3aebddb6..00000000000 --- a/_downloads/38763e74e4be29673cefc7d0594c063c/ellipse_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/38763e74e4be29673cefc7d0594c063c/ellipse_with_units.py \ No newline at end of file diff --git a/_downloads/387a44088413c41b59c70a54d4d947e1/hexbin_demo.ipynb b/_downloads/387a44088413c41b59c70a54d4d947e1/hexbin_demo.ipynb deleted file mode 100644 index c6cba7079de..00000000000 --- a/_downloads/387a44088413c41b59c70a54d4d947e1/hexbin_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hexbin Demo\n\n\nPlotting hexbins with Matplotlib.\n\nHexbin is an axes method or pyplot function that is essentially\na pcolor of a 2-D histogram with hexagonal cells. It can be\nmuch more informative than a scatter plot. In the first plot\nbelow, try substituting 'scatter' for 'hexbin'.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nn = 100000\nx = np.random.standard_normal(n)\ny = 2.0 + 3.0 * x + 4.0 * np.random.standard_normal(n)\nxmin = x.min()\nxmax = x.max()\nymin = y.min()\nymax = y.max()\n\nfig, axs = plt.subplots(ncols=2, sharey=True, figsize=(7, 4))\nfig.subplots_adjust(hspace=0.5, left=0.07, right=0.93)\nax = axs[0]\nhb = ax.hexbin(x, y, gridsize=50, cmap='inferno')\nax.set(xlim=(xmin, xmax), ylim=(ymin, ymax))\nax.set_title(\"Hexagon binning\")\ncb = fig.colorbar(hb, ax=ax)\ncb.set_label('counts')\n\nax = axs[1]\nhb = ax.hexbin(x, y, gridsize=50, bins='log', cmap='inferno')\nax.set(xlim=(xmin, xmax), ylim=(ymin, ymax))\nax.set_title(\"With a log color scale\")\ncb = fig.colorbar(hb, ax=ax)\ncb.set_label('log10(N)')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/387ee48f5d11e04fc3f6b46e7c1dcca3/surface3d.ipynb b/_downloads/387ee48f5d11e04fc3f6b46e7c1dcca3/surface3d.ipynb deleted file mode 100644 index 606cba5dec2..00000000000 --- a/_downloads/387ee48f5d11e04fc3f6b46e7c1dcca3/surface3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================\n3D surface (color map)\n======================\n\nDemonstrates plotting a 3D surface colored with the coolwarm color map.\nThe surface is made opaque by using antialiased=False.\n\nAlso demonstrates using the LinearLocator and custom formatting for the\nz axis tick labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom matplotlib.ticker import LinearLocator, FormatStrFormatter\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make data.\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\n# Plot the surface.\nsurf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm,\n linewidth=0, antialiased=False)\n\n# Customize the z axis.\nax.set_zlim(-1.01, 1.01)\nax.zaxis.set_major_locator(LinearLocator(10))\nax.zaxis.set_major_formatter(FormatStrFormatter('%.02f'))\n\n# Add a color bar which maps values to colors.\nfig.colorbar(surf, shrink=0.5, aspect=5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3883bb199e081bd733d4b2c9c117643c/arrow_demo.ipynb b/_downloads/3883bb199e081bd733d4b2c9c117643c/arrow_demo.ipynb deleted file mode 120000 index fecadf956ff..00000000000 --- a/_downloads/3883bb199e081bd733d4b2c9c117643c/arrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3883bb199e081bd733d4b2c9c117643c/arrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/389a9361792b437b8304bb8b06e73cca/text_props.py b/_downloads/389a9361792b437b8304bb8b06e73cca/text_props.py deleted file mode 120000 index 4a01fec8e0c..00000000000 --- a/_downloads/389a9361792b437b8304bb8b06e73cca/text_props.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/389a9361792b437b8304bb8b06e73cca/text_props.py \ No newline at end of file diff --git a/_downloads/38b4c8718ada168d619b9946a11b38a6/anchored_box02.py b/_downloads/38b4c8718ada168d619b9946a11b38a6/anchored_box02.py deleted file mode 100644 index 59db0a4180a..00000000000 --- a/_downloads/38b4c8718ada168d619b9946a11b38a6/anchored_box02.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -============== -Anchored Box02 -============== - -""" -from matplotlib.patches import Circle -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ada = AnchoredDrawingArea(40, 20, 0, 0, - loc='upper right', pad=0., frameon=False) -p1 = Circle((10, 10), 10) -ada.drawing_area.add_artist(p1) -p2 = Circle((30, 10), 5, fc="r") -ada.drawing_area.add_artist(p2) - -ax.add_artist(ada) - -plt.show() diff --git a/_downloads/38b7575b355d5b3e3d25510bf6098d25/eventcollection_demo.ipynb b/_downloads/38b7575b355d5b3e3d25510bf6098d25/eventcollection_demo.ipynb deleted file mode 100644 index 5e8ad16786b..00000000000 --- a/_downloads/38b7575b355d5b3e3d25510bf6098d25/eventcollection_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# EventCollection Demo\n\n\nPlot two curves, then use EventCollections to mark the locations of the x\nand y data points on the respective axes for each curve\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.collections import EventCollection\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# create random data\nxdata = np.random.random([2, 10])\n\n# split the data into two parts\nxdata1 = xdata[0, :]\nxdata2 = xdata[1, :]\n\n# sort the data so it makes clean curves\nxdata1.sort()\nxdata2.sort()\n\n# create some y data points\nydata1 = xdata1 ** 2\nydata2 = 1 - xdata2 ** 3\n\n# plot the data\nfig = plt.figure()\nax = fig.add_subplot(1, 1, 1)\nax.plot(xdata1, ydata1, color='tab:blue')\nax.plot(xdata2, ydata2, color='tab:orange')\n\n# create the events marking the x data points\nxevents1 = EventCollection(xdata1, color='tab:blue', linelength=0.05)\nxevents2 = EventCollection(xdata2, color='tab:orange', linelength=0.05)\n\n# create the events marking the y data points\nyevents1 = EventCollection(ydata1, color='tab:blue', linelength=0.05,\n orientation='vertical')\nyevents2 = EventCollection(ydata2, color='tab:orange', linelength=0.05,\n orientation='vertical')\n\n# add the events to the axis\nax.add_collection(xevents1)\nax.add_collection(xevents2)\nax.add_collection(yevents1)\nax.add_collection(yevents2)\n\n# set the limits\nax.set_xlim([0, 1])\nax.set_ylim([0, 1])\n\nax.set_title('line plot with data points')\n\n# display the plot\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/38bb1ee1aaffd4090d0468201e3866d2/keyword_plotting.py b/_downloads/38bb1ee1aaffd4090d0468201e3866d2/keyword_plotting.py deleted file mode 120000 index bc4f7aa37ae..00000000000 --- a/_downloads/38bb1ee1aaffd4090d0468201e3866d2/keyword_plotting.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/38bb1ee1aaffd4090d0468201e3866d2/keyword_plotting.py \ No newline at end of file diff --git a/_downloads/38c4bd2ce17258232a60de4e1b526a3f/violinplot.ipynb b/_downloads/38c4bd2ce17258232a60de4e1b526a3f/violinplot.ipynb deleted file mode 120000 index cdf62de391f..00000000000 --- a/_downloads/38c4bd2ce17258232a60de4e1b526a3f/violinplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/38c4bd2ce17258232a60de4e1b526a3f/violinplot.ipynb \ No newline at end of file diff --git a/_downloads/38c86fb634d411a5e9f7d229012040b2/arrow_guide.py b/_downloads/38c86fb634d411a5e9f7d229012040b2/arrow_guide.py deleted file mode 120000 index 7e64b87543f..00000000000 --- a/_downloads/38c86fb634d411a5e9f7d229012040b2/arrow_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/38c86fb634d411a5e9f7d229012040b2/arrow_guide.py \ No newline at end of file diff --git a/_downloads/38cded9c6ed7cbc64c6a7df255965065/zorder_demo.ipynb b/_downloads/38cded9c6ed7cbc64c6a7df255965065/zorder_demo.ipynb deleted file mode 120000 index 665ef7d2337..00000000000 --- a/_downloads/38cded9c6ed7cbc64c6a7df255965065/zorder_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/38cded9c6ed7cbc64c6a7df255965065/zorder_demo.ipynb \ No newline at end of file diff --git a/_downloads/38d07bdf9a4f5342c0f463c1f5171e58/bar_unit_demo.py b/_downloads/38d07bdf9a4f5342c0f463c1f5171e58/bar_unit_demo.py deleted file mode 120000 index 7589e103b53..00000000000 --- a/_downloads/38d07bdf9a4f5342c0f463c1f5171e58/bar_unit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/38d07bdf9a4f5342c0f463c1f5171e58/bar_unit_demo.py \ No newline at end of file diff --git a/_downloads/38e37772c9c2cb37296068ca1e07b12b/line_demo_dash_control.ipynb b/_downloads/38e37772c9c2cb37296068ca1e07b12b/line_demo_dash_control.ipynb deleted file mode 120000 index d7b55df0edb..00000000000 --- a/_downloads/38e37772c9c2cb37296068ca1e07b12b/line_demo_dash_control.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/38e37772c9c2cb37296068ca1e07b12b/line_demo_dash_control.ipynb \ No newline at end of file diff --git a/_downloads/38f6ffe87b1360242d991d91971f4a37/marker_fillstyle_reference.ipynb b/_downloads/38f6ffe87b1360242d991d91971f4a37/marker_fillstyle_reference.ipynb deleted file mode 120000 index 905da6751c7..00000000000 --- a/_downloads/38f6ffe87b1360242d991d91971f4a37/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/38f6ffe87b1360242d991d91971f4a37/marker_fillstyle_reference.ipynb \ No newline at end of file diff --git a/_downloads/38f88abea9c3e7e8a9e772ab11b51c20/demo_curvelinear_grid2.py b/_downloads/38f88abea9c3e7e8a9e772ab11b51c20/demo_curvelinear_grid2.py deleted file mode 120000 index 56121523e84..00000000000 --- a/_downloads/38f88abea9c3e7e8a9e772ab11b51c20/demo_curvelinear_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/38f88abea9c3e7e8a9e772ab11b51c20/demo_curvelinear_grid2.py \ No newline at end of file diff --git a/_downloads/38fb1f5db9c178672754fa70520dfe04/quiver3d.ipynb b/_downloads/38fb1f5db9c178672754fa70520dfe04/quiver3d.ipynb deleted file mode 120000 index 1be3380d1ae..00000000000 --- a/_downloads/38fb1f5db9c178672754fa70520dfe04/quiver3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/38fb1f5db9c178672754fa70520dfe04/quiver3d.ipynb \ No newline at end of file diff --git a/_downloads/38fe10d0b05a13e49d34877a41eabf58/annotate_simple04.ipynb b/_downloads/38fe10d0b05a13e49d34877a41eabf58/annotate_simple04.ipynb deleted file mode 100644 index ebd24665850..00000000000 --- a/_downloads/38fe10d0b05a13e49d34877a41eabf58/annotate_simple04.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple04\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nann = ax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round4\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"-|>\",\n connectionstyle=\"arc3,rad=0.2\",\n relpos=(0., 0.),\n fc=\"w\"),\n )\n\nann = ax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round4\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"-|>\",\n connectionstyle=\"arc3,rad=-0.2\",\n relpos=(1., 0.),\n fc=\"w\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/38ff5a2e57016f8834004573b7d1fc20/dynamic_image.py b/_downloads/38ff5a2e57016f8834004573b7d1fc20/dynamic_image.py deleted file mode 120000 index c37fae3e8d3..00000000000 --- a/_downloads/38ff5a2e57016f8834004573b7d1fc20/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/38ff5a2e57016f8834004573b7d1fc20/dynamic_image.py \ No newline at end of file diff --git a/_downloads/390c174b032efe5cc31c722becca59a7/whats_new_99_mplot3d.ipynb b/_downloads/390c174b032efe5cc31c722becca59a7/whats_new_99_mplot3d.ipynb deleted file mode 120000 index f31ae31e461..00000000000 --- a/_downloads/390c174b032efe5cc31c722becca59a7/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/390c174b032efe5cc31c722becca59a7/whats_new_99_mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/390c2cfa1ad16ec0a4e7338381cb1d7b/log_test.ipynb b/_downloads/390c2cfa1ad16ec0a4e7338381cb1d7b/log_test.ipynb deleted file mode 120000 index 0c08b575dd5..00000000000 --- a/_downloads/390c2cfa1ad16ec0a4e7338381cb1d7b/log_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/390c2cfa1ad16ec0a4e7338381cb1d7b/log_test.ipynb \ No newline at end of file diff --git a/_downloads/390fddf642ba869aada8e4fb8cdd6969/parasite_simple2.ipynb b/_downloads/390fddf642ba869aada8e4fb8cdd6969/parasite_simple2.ipynb deleted file mode 120000 index 47a9c180976..00000000000 --- a/_downloads/390fddf642ba869aada8e4fb8cdd6969/parasite_simple2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/390fddf642ba869aada8e4fb8cdd6969/parasite_simple2.ipynb \ No newline at end of file diff --git a/_downloads/39103da83ce818049b0773851ad31a31/mri_with_eeg.ipynb b/_downloads/39103da83ce818049b0773851ad31a31/mri_with_eeg.ipynb deleted file mode 120000 index a0639f4a53f..00000000000 --- a/_downloads/39103da83ce818049b0773851ad31a31/mri_with_eeg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/39103da83ce818049b0773851ad31a31/mri_with_eeg.ipynb \ No newline at end of file diff --git a/_downloads/3919813fc59fe5196122f864d099dec3/pyplot_three.ipynb b/_downloads/3919813fc59fe5196122f864d099dec3/pyplot_three.ipynb deleted file mode 120000 index 4b8561525a7..00000000000 --- a/_downloads/3919813fc59fe5196122f864d099dec3/pyplot_three.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3919813fc59fe5196122f864d099dec3/pyplot_three.ipynb \ No newline at end of file diff --git a/_downloads/392c2c1663693a62d3e8fec9c8b3de15/integral.py b/_downloads/392c2c1663693a62d3e8fec9c8b3de15/integral.py deleted file mode 120000 index b44ba46bf8e..00000000000 --- a/_downloads/392c2c1663693a62d3e8fec9c8b3de15/integral.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/392c2c1663693a62d3e8fec9c8b3de15/integral.py \ No newline at end of file diff --git a/_downloads/393228418e73bff75ee97e985b628459/errorbar_limits.ipynb b/_downloads/393228418e73bff75ee97e985b628459/errorbar_limits.ipynb deleted file mode 100644 index 0e2932b168e..00000000000 --- a/_downloads/393228418e73bff75ee97e985b628459/errorbar_limits.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Including upper and lower limits in error bars\n\n\nIn matplotlib, errors bars can have \"limits\". Applying limits to the\nerror bars essentially makes the error unidirectional. Because of that,\nupper and lower limits can be applied in both the y- and x-directions\nvia the ``uplims``, ``lolims``, ``xuplims``, and ``xlolims`` parameters,\nrespectively. These parameters can be scalar or boolean arrays.\n\nFor example, if ``xlolims`` is ``True``, the x-error bars will only\nextend from the data towards increasing values. If ``uplims`` is an\narray filled with ``False`` except for the 4th and 7th values, all of the\ny-error bars will be bidirectional, except the 4th and 7th bars, which\nwill extend from the data towards decreasing y-values.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.array([0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0])\ny = np.exp(-x)\nxerr = 0.1\nyerr = 0.2\n\n# lower & upper limits of the error\nlolims = np.array([0, 0, 1, 0, 1, 0, 0, 0, 1, 0], dtype=bool)\nuplims = np.array([0, 1, 0, 0, 0, 1, 0, 0, 0, 1], dtype=bool)\nls = 'dotted'\n\nfig, ax = plt.subplots(figsize=(7, 4))\n\n# standard error bars\nax.errorbar(x, y, xerr=xerr, yerr=yerr, linestyle=ls)\n\n# including upper limits\nax.errorbar(x, y + 0.5, xerr=xerr, yerr=yerr, uplims=uplims,\n linestyle=ls)\n\n# including lower limits\nax.errorbar(x, y + 1.0, xerr=xerr, yerr=yerr, lolims=lolims,\n linestyle=ls)\n\n# including upper and lower limits\nax.errorbar(x, y + 1.5, xerr=xerr, yerr=yerr,\n lolims=lolims, uplims=uplims,\n marker='o', markersize=8,\n linestyle=ls)\n\n# Plot a series with lower and upper limits in both x & y\n# constant x-error with varying y-error\nxerr = 0.2\nyerr = np.zeros_like(x) + 0.2\nyerr[[3, 6]] = 0.3\n\n# mock up some limits by modifying previous data\nxlolims = lolims\nxuplims = uplims\nlolims = np.zeros(x.shape)\nuplims = np.zeros(x.shape)\nlolims[[6]] = True # only limited at this index\nuplims[[3]] = True # only limited at this index\n\n# do the plotting\nax.errorbar(x, y + 2.1, xerr=xerr, yerr=yerr,\n xlolims=xlolims, xuplims=xuplims,\n uplims=uplims, lolims=lolims,\n marker='o', markersize=8,\n linestyle='none')\n\n# tidy up the figure\nax.set_xlim((0, 5.5))\nax.set_title('Errorbar upper and lower limits')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3944f81918200cd7288045b893cd8a02/table_demo.ipynb b/_downloads/3944f81918200cd7288045b893cd8a02/table_demo.ipynb deleted file mode 100644 index e918f5f704e..00000000000 --- a/_downloads/3944f81918200cd7288045b893cd8a02/table_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Table Demo\n\n\nDemo of table function to display a table within a plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndata = [[ 66386, 174296, 75131, 577908, 32015],\n [ 58230, 381139, 78045, 99308, 160454],\n [ 89135, 80552, 152558, 497981, 603535],\n [ 78415, 81858, 150656, 193263, 69638],\n [139361, 331509, 343164, 781380, 52269]]\n\ncolumns = ('Freeze', 'Wind', 'Flood', 'Quake', 'Hail')\nrows = ['%d year' % x for x in (100, 50, 20, 10, 5)]\n\nvalues = np.arange(0, 2500, 500)\nvalue_increment = 1000\n\n# Get some pastel shades for the colors\ncolors = plt.cm.BuPu(np.linspace(0, 0.5, len(rows)))\nn_rows = len(data)\n\nindex = np.arange(len(columns)) + 0.3\nbar_width = 0.4\n\n# Initialize the vertical-offset for the stacked bar chart.\ny_offset = np.zeros(len(columns))\n\n# Plot bars and create text labels for the table\ncell_text = []\nfor row in range(n_rows):\n plt.bar(index, data[row], bar_width, bottom=y_offset, color=colors[row])\n y_offset = y_offset + data[row]\n cell_text.append(['%1.1f' % (x / 1000.0) for x in y_offset])\n# Reverse colors and text labels to display the last value at the top.\ncolors = colors[::-1]\ncell_text.reverse()\n\n# Add a table at the bottom of the axes\nthe_table = plt.table(cellText=cell_text,\n rowLabels=rows,\n rowColours=colors,\n colLabels=columns,\n loc='bottom')\n\n# Adjust layout to make room for the table:\nplt.subplots_adjust(left=0.2, bottom=0.2)\n\nplt.ylabel(\"Loss in ${0}'s\".format(value_increment))\nplt.yticks(values * value_increment, ['%d' % val for val in values])\nplt.xticks([])\nplt.title('Loss by Disaster')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/394dafea3b9cd2c1950fe67234bc5f0b/demo_constrained_layout.py b/_downloads/394dafea3b9cd2c1950fe67234bc5f0b/demo_constrained_layout.py deleted file mode 120000 index 1a451dda0bf..00000000000 --- a/_downloads/394dafea3b9cd2c1950fe67234bc5f0b/demo_constrained_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/394dafea3b9cd2c1950fe67234bc5f0b/demo_constrained_layout.py \ No newline at end of file diff --git a/_downloads/3954e59069509192a33379e96df13317/demo_colorbar_with_axes_divider.ipynb b/_downloads/3954e59069509192a33379e96df13317/demo_colorbar_with_axes_divider.ipynb deleted file mode 100644 index 5772a115800..00000000000 --- a/_downloads/3954e59069509192a33379e96df13317/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Colorbar with Axes Divider\n\n\nThe make_axes_locatable function (part of the axes_divider module) takes an\nexisting axes, creates a divider for it and returns an instance of the\nAxesLocator class. The append_axes method of this AxesLocator can then be used\nto create a new axes on a given side (\"top\", \"right\", \"bottom\", or \"left\") of\nthe original axes. This example uses Axes Divider to add colorbars next to\naxes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_divider import make_axes_locatable\nfrom mpl_toolkits.axes_grid1.colorbar import colorbar\n\nfig, (ax1, ax2) = plt.subplots(1, 2)\nfig.subplots_adjust(wspace=0.5)\n\nim1 = ax1.imshow([[1, 2], [3, 4]])\nax1_divider = make_axes_locatable(ax1)\n# add an axes to the right of the main axes.\ncax1 = ax1_divider.append_axes(\"right\", size=\"7%\", pad=\"2%\")\ncb1 = colorbar(im1, cax=cax1)\n\nim2 = ax2.imshow([[1, 2], [3, 4]])\nax2_divider = make_axes_locatable(ax2)\n# add an axes above the main axes.\ncax2 = ax2_divider.append_axes(\"top\", size=\"7%\", pad=\"2%\")\ncb2 = colorbar(im2, cax=cax2, orientation=\"horizontal\")\n# change tick position to top. Tick position defaults to bottom and overlaps\n# the image.\ncax2.xaxis.set_ticks_position(\"top\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3958e02c30f3c9f9ed7a1cf34bfcf4ad/cohere.py b/_downloads/3958e02c30f3c9f9ed7a1cf34bfcf4ad/cohere.py deleted file mode 120000 index 7e7d7e771af..00000000000 --- a/_downloads/3958e02c30f3c9f9ed7a1cf34bfcf4ad/cohere.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3958e02c30f3c9f9ed7a1cf34bfcf4ad/cohere.py \ No newline at end of file diff --git a/_downloads/3963661c0214fe8afa4aa8c5aa77218e/tick_xlabel_top.py b/_downloads/3963661c0214fe8afa4aa8c5aa77218e/tick_xlabel_top.py deleted file mode 120000 index ccfe1a9dce6..00000000000 --- a/_downloads/3963661c0214fe8afa4aa8c5aa77218e/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3963661c0214fe8afa4aa8c5aa77218e/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/39690c8d7da67a68f1f6c87cd977a03a/figure_title.py b/_downloads/39690c8d7da67a68f1f6c87cd977a03a/figure_title.py deleted file mode 120000 index 9a8c768c1a0..00000000000 --- a/_downloads/39690c8d7da67a68f1f6c87cd977a03a/figure_title.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/39690c8d7da67a68f1f6c87cd977a03a/figure_title.py \ No newline at end of file diff --git a/_downloads/396aa59e13e3e9da8ee1c6f7c6325d41/scatter_with_legend.py b/_downloads/396aa59e13e3e9da8ee1c6f7c6325d41/scatter_with_legend.py deleted file mode 120000 index dc9c666be0e..00000000000 --- a/_downloads/396aa59e13e3e9da8ee1c6f7c6325d41/scatter_with_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/396aa59e13e3e9da8ee1c6f7c6325d41/scatter_with_legend.py \ No newline at end of file diff --git a/_downloads/396d87504c2942153090f98f357fb998/pythonic_matplotlib.py b/_downloads/396d87504c2942153090f98f357fb998/pythonic_matplotlib.py deleted file mode 120000 index 29693063816..00000000000 --- a/_downloads/396d87504c2942153090f98f357fb998/pythonic_matplotlib.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/396d87504c2942153090f98f357fb998/pythonic_matplotlib.py \ No newline at end of file diff --git a/_downloads/39702943e00ca5fd78cba125b2b0ba86/axis_direction.ipynb b/_downloads/39702943e00ca5fd78cba125b2b0ba86/axis_direction.ipynb deleted file mode 120000 index 980d0270952..00000000000 --- a/_downloads/39702943e00ca5fd78cba125b2b0ba86/axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/39702943e00ca5fd78cba125b2b0ba86/axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/397b17cf2519a92a655f3435344af305/simple_plot.ipynb b/_downloads/397b17cf2519a92a655f3435344af305/simple_plot.ipynb deleted file mode 120000 index 2487c683195..00000000000 --- a/_downloads/397b17cf2519a92a655f3435344af305/simple_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/397b17cf2519a92a655f3435344af305/simple_plot.ipynb \ No newline at end of file diff --git a/_downloads/397c15d5008710bca03d5708217557c0/contourf3d_2.py b/_downloads/397c15d5008710bca03d5708217557c0/contourf3d_2.py deleted file mode 120000 index ed2b45227bd..00000000000 --- a/_downloads/397c15d5008710bca03d5708217557c0/contourf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/397c15d5008710bca03d5708217557c0/contourf3d_2.py \ No newline at end of file diff --git a/_downloads/3980ff515b7ea248290a4e011ee4c6a6/rain.ipynb b/_downloads/3980ff515b7ea248290a4e011ee4c6a6/rain.ipynb deleted file mode 120000 index 9cf20a4e64b..00000000000 --- a/_downloads/3980ff515b7ea248290a4e011ee4c6a6/rain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3980ff515b7ea248290a4e011ee4c6a6/rain.ipynb \ No newline at end of file diff --git a/_downloads/398ea76fac932d03b010bc5183b543b7/two_scales.ipynb b/_downloads/398ea76fac932d03b010bc5183b543b7/two_scales.ipynb deleted file mode 120000 index e205c28e57b..00000000000 --- a/_downloads/398ea76fac932d03b010bc5183b543b7/two_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/398ea76fac932d03b010bc5183b543b7/two_scales.ipynb \ No newline at end of file diff --git a/_downloads/398f7037f0dd6de361fec53864701a88/findobj_demo.ipynb b/_downloads/398f7037f0dd6de361fec53864701a88/findobj_demo.ipynb deleted file mode 100644 index cc59b19ebb2..00000000000 --- a/_downloads/398f7037f0dd6de361fec53864701a88/findobj_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Findobj Demo\n\n\nRecursively find all objects that match some criteria\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.text as text\n\na = np.arange(0, 3, .02)\nb = np.arange(0, 3, .02)\nc = np.exp(a)\nd = c[::-1]\n\nfig, ax = plt.subplots()\nplt.plot(a, c, 'k--', a, d, 'k:', a, c + d, 'k')\nplt.legend(('Model length', 'Data length', 'Total message length'),\n loc='upper center', shadow=True)\nplt.ylim([-1, 20])\nplt.grid(False)\nplt.xlabel('Model complexity --->')\nplt.ylabel('Message length --->')\nplt.title('Minimum Message Length')\n\n\n# match on arbitrary function\ndef myfunc(x):\n return hasattr(x, 'set_color') and not hasattr(x, 'set_facecolor')\n\n\nfor o in fig.findobj(myfunc):\n o.set_color('blue')\n\n# match on class instances\nfor o in fig.findobj(text.Text):\n o.set_fontstyle('italic')\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/39a74cf93d549a5500539aae54f0a730/histogram_path.ipynb b/_downloads/39a74cf93d549a5500539aae54f0a730/histogram_path.ipynb deleted file mode 120000 index 9aa2101dbf5..00000000000 --- a/_downloads/39a74cf93d549a5500539aae54f0a730/histogram_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/39a74cf93d549a5500539aae54f0a730/histogram_path.ipynb \ No newline at end of file diff --git a/_downloads/39b0481f0b40e4666b45523e3bd5433e/compound_path.ipynb b/_downloads/39b0481f0b40e4666b45523e3bd5433e/compound_path.ipynb deleted file mode 120000 index ce33c39dfb0..00000000000 --- a/_downloads/39b0481f0b40e4666b45523e3bd5433e/compound_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/39b0481f0b40e4666b45523e3bd5433e/compound_path.ipynb \ No newline at end of file diff --git a/_downloads/39bdc2c1a53a75c199d42f690e34493c/nan_test.py b/_downloads/39bdc2c1a53a75c199d42f690e34493c/nan_test.py deleted file mode 120000 index 7444b0726eb..00000000000 --- a/_downloads/39bdc2c1a53a75c199d42f690e34493c/nan_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/39bdc2c1a53a75c199d42f690e34493c/nan_test.py \ No newline at end of file diff --git a/_downloads/39c8a0d3ed2e9575e411ea18b16b766d/hist.ipynb b/_downloads/39c8a0d3ed2e9575e411ea18b16b766d/hist.ipynb deleted file mode 120000 index bf43c23ff4f..00000000000 --- a/_downloads/39c8a0d3ed2e9575e411ea18b16b766d/hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/39c8a0d3ed2e9575e411ea18b16b766d/hist.ipynb \ No newline at end of file diff --git a/_downloads/39ce532f51ea6f0ffe1f16747dcb93ca/bar_demo2.ipynb b/_downloads/39ce532f51ea6f0ffe1f16747dcb93ca/bar_demo2.ipynb deleted file mode 120000 index b4b9b514508..00000000000 --- a/_downloads/39ce532f51ea6f0ffe1f16747dcb93ca/bar_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/39ce532f51ea6f0ffe1f16747dcb93ca/bar_demo2.ipynb \ No newline at end of file diff --git a/_downloads/39d02aff9092a952a25941f7c14cc556/image_nonuniform.py b/_downloads/39d02aff9092a952a25941f7c14cc556/image_nonuniform.py deleted file mode 120000 index 0c9fd23ba35..00000000000 --- a/_downloads/39d02aff9092a952a25941f7c14cc556/image_nonuniform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/39d02aff9092a952a25941f7c14cc556/image_nonuniform.py \ No newline at end of file diff --git a/_downloads/39d3e482c05773f2c45e7cd15cd09128/3d_bars.py b/_downloads/39d3e482c05773f2c45e7cd15cd09128/3d_bars.py deleted file mode 100644 index 7a9508d1430..00000000000 --- a/_downloads/39d3e482c05773f2c45e7cd15cd09128/3d_bars.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -===================== -Demo of 3D bar charts -===================== - -A basic demo of how to plot 3D bars with and without shading. -""" - -import numpy as np -import matplotlib.pyplot as plt -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -# setup the figure and axes -fig = plt.figure(figsize=(8, 3)) -ax1 = fig.add_subplot(121, projection='3d') -ax2 = fig.add_subplot(122, projection='3d') - -# fake data -_x = np.arange(4) -_y = np.arange(5) -_xx, _yy = np.meshgrid(_x, _y) -x, y = _xx.ravel(), _yy.ravel() - -top = x + y -bottom = np.zeros_like(top) -width = depth = 1 - -ax1.bar3d(x, y, bottom, width, depth, top, shade=True) -ax1.set_title('Shaded') - -ax2.bar3d(x, y, bottom, width, depth, top, shade=False) -ax2.set_title('Not Shaded') - -plt.show() diff --git a/_downloads/39e397f34b1222404da5a2352da0a67d/system_monitor.ipynb b/_downloads/39e397f34b1222404da5a2352da0a67d/system_monitor.ipynb deleted file mode 120000 index d22e1df773b..00000000000 --- a/_downloads/39e397f34b1222404da5a2352da0a67d/system_monitor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/39e397f34b1222404da5a2352da0a67d/system_monitor.ipynb \ No newline at end of file diff --git a/_downloads/39e3fc053b71a560ee888ce3e06068e6/compound_path.ipynb b/_downloads/39e3fc053b71a560ee888ce3e06068e6/compound_path.ipynb deleted file mode 100644 index d5fb016f12c..00000000000 --- a/_downloads/39e3fc053b71a560ee888ce3e06068e6/compound_path.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Compound path\n\n\nMake a compound path -- in this case two simple polygons, a rectangle\nand a triangle. Use ``CLOSEPOLY`` and ``MOVETO`` for the different parts of\nthe compound path\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.path import Path\nfrom matplotlib.patches import PathPatch\nimport matplotlib.pyplot as plt\n\n\nvertices = []\ncodes = []\n\ncodes = [Path.MOVETO] + [Path.LINETO]*3 + [Path.CLOSEPOLY]\nvertices = [(1, 1), (1, 2), (2, 2), (2, 1), (0, 0)]\n\ncodes += [Path.MOVETO] + [Path.LINETO]*2 + [Path.CLOSEPOLY]\nvertices += [(4, 4), (5, 5), (5, 4), (0, 0)]\n\nvertices = np.array(vertices, float)\npath = Path(vertices, codes)\n\npathpatch = PathPatch(path, facecolor='None', edgecolor='green')\n\nfig, ax = plt.subplots()\nax.add_patch(pathpatch)\nax.set_title('A compound path')\n\nax.autoscale_view()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.axes.Axes.add_patch\nmatplotlib.axes.Axes.autoscale_view" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/39eab39c6c287b6201632f9ce17197d4/image_nonuniform.py b/_downloads/39eab39c6c287b6201632f9ce17197d4/image_nonuniform.py deleted file mode 120000 index 2e2c42c99df..00000000000 --- a/_downloads/39eab39c6c287b6201632f9ce17197d4/image_nonuniform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/39eab39c6c287b6201632f9ce17197d4/image_nonuniform.py \ No newline at end of file diff --git a/_downloads/39ee10057e9eab9f1278d22dfb25c8fb/inset_locator_demo.py b/_downloads/39ee10057e9eab9f1278d22dfb25c8fb/inset_locator_demo.py deleted file mode 100644 index fa2b100d024..00000000000 --- a/_downloads/39ee10057e9eab9f1278d22dfb25c8fb/inset_locator_demo.py +++ /dev/null @@ -1,144 +0,0 @@ -""" -================== -Inset Locator Demo -================== - -""" - -############################################################################### -# The `.inset_locator`'s `~.inset_locator.inset_axes` allows -# easily placing insets in the corners of the axes by specifying a width and -# height and optionally a location (loc) that accepts locations as codes, -# similar to `~matplotlib.axes.Axes.legend`. -# By default, the inset is offset by some points from the axes, -# controlled via the `borderpad` parameter. - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.inset_locator import inset_axes - - -fig, (ax, ax2) = plt.subplots(1, 2, figsize=[5.5, 2.8]) - -# Create inset of width 1.3 inches and height 0.9 inches -# at the default upper right location -axins = inset_axes(ax, width=1.3, height=0.9) - -# Create inset of width 30% and height 40% of the parent axes' bounding box -# at the lower left corner (loc=3) -axins2 = inset_axes(ax, width="30%", height="40%", loc=3) - -# Create inset of mixed specifications in the second subplot; -# width is 30% of parent axes' bounding box and -# height is 1 inch at the upper left corner (loc=2) -axins3 = inset_axes(ax2, width="30%", height=1., loc=2) - -# Create an inset in the lower right corner (loc=4) with borderpad=1, i.e. -# 10 points padding (as 10pt is the default fontsize) to the parent axes -axins4 = inset_axes(ax2, width="20%", height="20%", loc=4, borderpad=1) - -# Turn ticklabels of insets off -for axi in [axins, axins2, axins3, axins4]: - axi.tick_params(labelleft=False, labelbottom=False) - -plt.show() - - -############################################################################### -# The arguments `bbox_to_anchor` and `bbox_transfrom` can be used for a more -# fine grained control over the inset position and size or even to position -# the inset at completely arbitrary positions. -# The `bbox_to_anchor` sets the bounding box in coordinates according to the -# `bbox_transform`. -# - -fig = plt.figure(figsize=[5.5, 2.8]) -ax = fig.add_subplot(121) - -# We use the axes transform as bbox_transform. Therefore the bounding box -# needs to be specified in axes coordinates ((0,0) is the lower left corner -# of the axes, (1,1) is the upper right corner). -# The bounding box (.2, .4, .6, .5) starts at (.2,.4) and ranges to (.8,.9) -# in those coordinates. -# Inside of this bounding box an inset of half the bounding box' width and -# three quarters of the bounding box' height is created. The lower left corner -# of the inset is aligned to the lower left corner of the bounding box (loc=3). -# The inset is then offset by the default 0.5 in units of the font size. - -axins = inset_axes(ax, width="50%", height="75%", - bbox_to_anchor=(.2, .4, .6, .5), - bbox_transform=ax.transAxes, loc=3) - -# For visualization purposes we mark the bounding box by a rectangle -ax.add_patch(plt.Rectangle((.2, .4), .6, .5, ls="--", ec="c", fc="None", - transform=ax.transAxes)) - -# We set the axis limits to something other than the default, in order to not -# distract from the fact that axes coordinates are used here. -ax.set(xlim=(0, 10), ylim=(0, 10)) - - -# Note how the two following insets are created at the same positions, one by -# use of the default parent axes' bbox and the other via a bbox in axes -# coordinates and the respective transform. -ax2 = fig.add_subplot(222) -axins2 = inset_axes(ax2, width="30%", height="50%") - -ax3 = fig.add_subplot(224) -axins3 = inset_axes(ax3, width="100%", height="100%", - bbox_to_anchor=(.7, .5, .3, .5), - bbox_transform=ax3.transAxes) - -# For visualization purposes we mark the bounding box by a rectangle -ax2.add_patch(plt.Rectangle((0, 0), 1, 1, ls="--", lw=2, ec="c", fc="None")) -ax3.add_patch(plt.Rectangle((.7, .5), .3, .5, ls="--", lw=2, - ec="c", fc="None")) - -# Turn ticklabels off -for axi in [axins2, axins3, ax2, ax3]: - axi.tick_params(labelleft=False, labelbottom=False) - -plt.show() - - -############################################################################### -# In the above the axes transform together with 4-tuple bounding boxes has been -# used as it mostly is useful to specify an inset relative to the axes it is -# an inset to. However other use cases are equally possible. The following -# example examines some of those. -# - -fig = plt.figure(figsize=[5.5, 2.8]) -ax = fig.add_subplot(131) - -# Create an inset outside the axes -axins = inset_axes(ax, width="100%", height="100%", - bbox_to_anchor=(1.05, .6, .5, .4), - bbox_transform=ax.transAxes, loc=2, borderpad=0) -axins.tick_params(left=False, right=True, labelleft=False, labelright=True) - -# Create an inset with a 2-tuple bounding box. Note that this creates a -# bbox without extent. This hence only makes sense when specifying -# width and height in absolute units (inches). -axins2 = inset_axes(ax, width=0.5, height=0.4, - bbox_to_anchor=(0.33, 0.25), - bbox_transform=ax.transAxes, loc=3, borderpad=0) - - -ax2 = fig.add_subplot(133) -ax2.set_xscale("log") -ax2.set(xlim=(1e-6, 1e6), ylim=(-2, 6)) - -# Create inset in data coordinates using ax.transData as transform -axins3 = inset_axes(ax2, width="100%", height="100%", - bbox_to_anchor=(1e-2, 2, 1e3, 3), - bbox_transform=ax2.transData, loc=2, borderpad=0) - -# Create an inset horizontally centered in figure coordinates and vertically -# bound to line up with the axes. -from matplotlib.transforms import blended_transform_factory -transform = blended_transform_factory(fig.transFigure, ax2.transAxes) -axins4 = inset_axes(ax2, width="16%", height="34%", - bbox_to_anchor=(0, 0, 1, 1), - bbox_transform=transform, loc=8, borderpad=0) - -plt.show() diff --git a/_downloads/39ee2e3a42d1e78a2fca0602c57b0d74/axis_direction_demo_step02.py b/_downloads/39ee2e3a42d1e78a2fca0602c57b0d74/axis_direction_demo_step02.py deleted file mode 120000 index e1dbde698f8..00000000000 --- a/_downloads/39ee2e3a42d1e78a2fca0602c57b0d74/axis_direction_demo_step02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/39ee2e3a42d1e78a2fca0602c57b0d74/axis_direction_demo_step02.py \ No newline at end of file diff --git a/_downloads/39fd3a7ffa4901b18e87e235f0c63fea/surface3d_3.py b/_downloads/39fd3a7ffa4901b18e87e235f0c63fea/surface3d_3.py deleted file mode 120000 index ed5cb843150..00000000000 --- a/_downloads/39fd3a7ffa4901b18e87e235f0c63fea/surface3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/39fd3a7ffa4901b18e87e235f0c63fea/surface3d_3.py \ No newline at end of file diff --git a/_downloads/39ff2361e22b81b426fe59a87a875e4b/cohere.py b/_downloads/39ff2361e22b81b426fe59a87a875e4b/cohere.py deleted file mode 100644 index 37014969539..00000000000 --- a/_downloads/39ff2361e22b81b426fe59a87a875e4b/cohere.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -===================================== -Plotting the coherence of two signals -===================================== - -An example showing how to plot the coherence of two signals. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -dt = 0.01 -t = np.arange(0, 30, dt) -nse1 = np.random.randn(len(t)) # white noise 1 -nse2 = np.random.randn(len(t)) # white noise 2 - -# Two signals with a coherent part at 10Hz and a random part -s1 = np.sin(2 * np.pi * 10 * t) + nse1 -s2 = np.sin(2 * np.pi * 10 * t) + nse2 - -fig, axs = plt.subplots(2, 1) -axs[0].plot(t, s1, t, s2) -axs[0].set_xlim(0, 2) -axs[0].set_xlabel('time') -axs[0].set_ylabel('s1 and s2') -axs[0].grid(True) - -cxy, f = axs[1].cohere(s1, s2, 256, 1. / dt) -axs[1].set_ylabel('coherence') - -fig.tight_layout() -plt.show() diff --git a/_downloads/3D.ipynb b/_downloads/3D.ipynb deleted file mode 120000 index cc5bf3624aa..00000000000 --- a/_downloads/3D.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/3D.ipynb \ No newline at end of file diff --git a/_downloads/3D.py b/_downloads/3D.py deleted file mode 120000 index 0558e0028e3..00000000000 --- a/_downloads/3D.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/3D.py \ No newline at end of file diff --git a/_downloads/3a059e194b9f7b25d02950a719c01831/anscombe.ipynb b/_downloads/3a059e194b9f7b25d02950a719c01831/anscombe.ipynb deleted file mode 120000 index 03b23bc8cc2..00000000000 --- a/_downloads/3a059e194b9f7b25d02950a719c01831/anscombe.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3a059e194b9f7b25d02950a719c01831/anscombe.ipynb \ No newline at end of file diff --git a/_downloads/3a14633ebbfe074b91c3a523c2cc8c2e/align_labels_demo.py b/_downloads/3a14633ebbfe074b91c3a523c2cc8c2e/align_labels_demo.py deleted file mode 120000 index be6b0b40d49..00000000000 --- a/_downloads/3a14633ebbfe074b91c3a523c2cc8c2e/align_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3a14633ebbfe074b91c3a523c2cc8c2e/align_labels_demo.py \ No newline at end of file diff --git a/_downloads/3a1a39f7ab9c03a552af1771f52c1f58/colormap_normalizations_lognorm.ipynb b/_downloads/3a1a39f7ab9c03a552af1771f52c1f58/colormap_normalizations_lognorm.ipynb deleted file mode 100644 index fd260141b36..00000000000 --- a/_downloads/3a1a39f7ab9c03a552af1771f52c1f58/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Lognorm\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\n'''\nLognorm: Instead of pcolor log10(Z1) you can have colorbars that have\nthe exponential labels using a norm.\n'''\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out of the top right. Needs to have\n# z/colour axis on a log scale so we see both hump and spike. linear\n# scale only shows the spike.\nZ = np.exp(-X**2 - Y**2)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolor(X, Y, Z,\n norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3a1abc957ff4c3d1a2d11d75c438eb3a/annotate_simple_coord02.py b/_downloads/3a1abc957ff4c3d1a2d11d75c438eb3a/annotate_simple_coord02.py deleted file mode 120000 index cb352879e4d..00000000000 --- a/_downloads/3a1abc957ff4c3d1a2d11d75c438eb3a/annotate_simple_coord02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3a1abc957ff4c3d1a2d11d75c438eb3a/annotate_simple_coord02.py \ No newline at end of file diff --git a/_downloads/3a1da1a4714dcbac04ff645c4ec3e7ce/shading_example.py b/_downloads/3a1da1a4714dcbac04ff645c4ec3e7ce/shading_example.py deleted file mode 120000 index 4301e224348..00000000000 --- a/_downloads/3a1da1a4714dcbac04ff645c4ec3e7ce/shading_example.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3a1da1a4714dcbac04ff645c4ec3e7ce/shading_example.py \ No newline at end of file diff --git a/_downloads/3a21baecaba245749401000d0222938f/voxels_torus.py b/_downloads/3a21baecaba245749401000d0222938f/voxels_torus.py deleted file mode 120000 index 3bf7321dcaf..00000000000 --- a/_downloads/3a21baecaba245749401000d0222938f/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a21baecaba245749401000d0222938f/voxels_torus.py \ No newline at end of file diff --git a/_downloads/3a2363f88acea1c651f56b6345f918f8/contour3d_3.ipynb b/_downloads/3a2363f88acea1c651f56b6345f918f8/contour3d_3.ipynb deleted file mode 120000 index 0487cc4eed5..00000000000 --- a/_downloads/3a2363f88acea1c651f56b6345f918f8/contour3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a2363f88acea1c651f56b6345f918f8/contour3d_3.ipynb \ No newline at end of file diff --git a/_downloads/3a239986bec96b537beeb8ce86738c4e/agg_buffer_to_array.py b/_downloads/3a239986bec96b537beeb8ce86738c4e/agg_buffer_to_array.py deleted file mode 120000 index 63df849999f..00000000000 --- a/_downloads/3a239986bec96b537beeb8ce86738c4e/agg_buffer_to_array.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3a239986bec96b537beeb8ce86738c4e/agg_buffer_to_array.py \ No newline at end of file diff --git a/_downloads/3a27fb51b6758bf69f6dc1133adcd439/annotate_simple02.ipynb b/_downloads/3a27fb51b6758bf69f6dc1133adcd439/annotate_simple02.ipynb deleted file mode 120000 index b391e9a8741..00000000000 --- a/_downloads/3a27fb51b6758bf69f6dc1133adcd439/annotate_simple02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a27fb51b6758bf69f6dc1133adcd439/annotate_simple02.ipynb \ No newline at end of file diff --git a/_downloads/3a2b8dcbcaa325d5cfbf93766d9f6f5b/simple_axesgrid.py b/_downloads/3a2b8dcbcaa325d5cfbf93766d9f6f5b/simple_axesgrid.py deleted file mode 120000 index a48d720e0cd..00000000000 --- a/_downloads/3a2b8dcbcaa325d5cfbf93766d9f6f5b/simple_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3a2b8dcbcaa325d5cfbf93766d9f6f5b/simple_axesgrid.py \ No newline at end of file diff --git a/_downloads/3a350a1a1d067c3ae020d62a69ef1bc1/embedding_in_tk_sgskip.py b/_downloads/3a350a1a1d067c3ae020d62a69ef1bc1/embedding_in_tk_sgskip.py deleted file mode 120000 index 1f550d4b3ec..00000000000 --- a/_downloads/3a350a1a1d067c3ae020d62a69ef1bc1/embedding_in_tk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a350a1a1d067c3ae020d62a69ef1bc1/embedding_in_tk_sgskip.py \ No newline at end of file diff --git a/_downloads/3a38879e4839b3c484aea43d3e6505bb/watermark_text.py b/_downloads/3a38879e4839b3c484aea43d3e6505bb/watermark_text.py deleted file mode 100644 index a4909b9696e..00000000000 --- a/_downloads/3a38879e4839b3c484aea43d3e6505bb/watermark_text.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -============== -Text watermark -============== - -Adding a text watermark. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -ax.plot(np.random.rand(20), '-o', ms=20, lw=2, alpha=0.7, mfc='orange') -ax.grid() - -fig.text(0.95, 0.05, 'Property of MPL', - fontsize=50, color='gray', - ha='right', va='bottom', alpha=0.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure.text diff --git a/_downloads/3a3ca8aa3c9ee9de77993d31126a9371/boxplot_demo_pyplot.ipynb b/_downloads/3a3ca8aa3c9ee9de77993d31126a9371/boxplot_demo_pyplot.ipynb deleted file mode 120000 index deeb3ab7595..00000000000 --- a/_downloads/3a3ca8aa3c9ee9de77993d31126a9371/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3a3ca8aa3c9ee9de77993d31126a9371/boxplot_demo_pyplot.ipynb \ No newline at end of file diff --git a/_downloads/3a44508b2b165238b667e9f3dd9fd48f/axis_direction_demo_step01.ipynb b/_downloads/3a44508b2b165238b667e9f3dd9fd48f/axis_direction_demo_step01.ipynb deleted file mode 120000 index 6b4d801021d..00000000000 --- a/_downloads/3a44508b2b165238b667e9f3dd9fd48f/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a44508b2b165238b667e9f3dd9fd48f/axis_direction_demo_step01.ipynb \ No newline at end of file diff --git a/_downloads/3a44f2d986d083dcb9a4f873d6e2daf8/fill_betweenx_demo.py b/_downloads/3a44f2d986d083dcb9a4f873d6e2daf8/fill_betweenx_demo.py deleted file mode 100644 index 1f449c37234..00000000000 --- a/_downloads/3a44f2d986d083dcb9a4f873d6e2daf8/fill_betweenx_demo.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -================== -Fill Betweenx Demo -================== - -Using `~.Axes.fill_betweenx` to color along the horizontal direction between -two curves. -""" -import matplotlib.pyplot as plt -import numpy as np - - -y = np.arange(0.0, 2, 0.01) -x1 = np.sin(2 * np.pi * y) -x2 = 1.2 * np.sin(4 * np.pi * y) - -fig, [ax1, ax2, ax3] = plt.subplots(1, 3, sharey=True, figsize=(6, 6)) - -ax1.fill_betweenx(y, 0, x1) -ax1.set_title('between (x1, 0)') - -ax2.fill_betweenx(y, x1, 1) -ax2.set_title('between (x1, 1)') -ax2.set_xlabel('x') - -ax3.fill_betweenx(y, x1, x2) -ax3.set_title('between (x1, x2)') - -# now fill between x1 and x2 where a logical condition is met. Note -# this is different than calling -# fill_between(y[where], x1[where], x2[where]) -# because of edge effects over multiple contiguous regions. - -fig, [ax, ax1] = plt.subplots(1, 2, sharey=True, figsize=(6, 6)) -ax.plot(x1, y, x2, y, color='black') -ax.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') -ax.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red') -ax.set_title('fill_betweenx where') - -# Test support for masked arrays. -x2 = np.ma.masked_greater(x2, 1.0) -ax1.plot(x1, y, x2, y, color='black') -ax1.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green') -ax1.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red') -ax1.set_title('regions with x2 > 1 are masked') - -# This example illustrates a problem; because of the data -# gridding, there are undesired unfilled triangles at the crossover -# points. A brute-force solution would be to interpolate all -# arrays to a very fine grid before plotting. - -plt.show() diff --git a/_downloads/3a450b68146f47a7ca2da08d9f6a0fb4/triplot_demo.ipynb b/_downloads/3a450b68146f47a7ca2da08d9f6a0fb4/triplot_demo.ipynb deleted file mode 100644 index 851d09603be..00000000000 --- a/_downloads/3a450b68146f47a7ca2da08d9f6a0fb4/triplot_demo.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triplot Demo\n\n\nCreating and plotting unstructured triangular grids.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating a Triangulation without specifying the triangles results in the\nDelaunay triangulation of the points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# First create the x and y coordinates of the points.\nn_angles = 36\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the triangulation.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_aspect('equal')\nax1.triplot(triang, 'bo-', lw=1)\nax1.set_title('triplot of Delaunay triangulation')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify your own triangulation rather than perform a Delaunay\ntriangulation of the points, where each triangle is given by the indices of\nthe three points that make up the triangle, ordered in either a clockwise or\nanticlockwise manner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xy = np.asarray([\n [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890],\n [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898],\n [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919],\n [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949],\n [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959],\n [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965],\n [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980],\n [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996],\n [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021],\n [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005],\n [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987],\n [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968],\n [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926],\n [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905],\n [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886],\n [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879],\n [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872],\n [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933],\n [-0.077, 0.990], [-0.059, 0.993]])\nx = np.degrees(xy[:, 0])\ny = np.degrees(xy[:, 1])\n\ntriangles = np.asarray([\n [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64],\n [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63],\n [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68],\n [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7],\n [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9],\n [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12],\n [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71],\n [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71],\n [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19],\n [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24],\n [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28],\n [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45],\n [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40],\n [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40],\n [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38],\n [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Rather than create a Triangulation object, can simply pass x, y and triangles\narrays to triplot directly. It would be better to use a Triangulation object\nif the same triangulation was to be used more than once to save duplicated\ncalculations.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_aspect('equal')\nax2.triplot(x, y, triangles, 'go-', lw=1.0)\nax2.set_title('triplot of user-specified triangulation')\nax2.set_xlabel('Longitude (degrees)')\nax2.set_ylabel('Latitude (degrees)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.tri\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3a4925535b60d07a97fad6e64fae4704/custom_figure_class.ipynb b/_downloads/3a4925535b60d07a97fad6e64fae4704/custom_figure_class.ipynb deleted file mode 120000 index bf3d58f5912..00000000000 --- a/_downloads/3a4925535b60d07a97fad6e64fae4704/custom_figure_class.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3a4925535b60d07a97fad6e64fae4704/custom_figure_class.ipynb \ No newline at end of file diff --git a/_downloads/3a4b3adfc0ca1514566dd4276dcb07dc/buttons.ipynb b/_downloads/3a4b3adfc0ca1514566dd4276dcb07dc/buttons.ipynb deleted file mode 120000 index 7e0e4718340..00000000000 --- a/_downloads/3a4b3adfc0ca1514566dd4276dcb07dc/buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3a4b3adfc0ca1514566dd4276dcb07dc/buttons.ipynb \ No newline at end of file diff --git a/_downloads/3a4c421f18528380eeb1594b3467a6b9/patheffects_guide.py b/_downloads/3a4c421f18528380eeb1594b3467a6b9/patheffects_guide.py deleted file mode 120000 index 233076b956e..00000000000 --- a/_downloads/3a4c421f18528380eeb1594b3467a6b9/patheffects_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a4c421f18528380eeb1594b3467a6b9/patheffects_guide.py \ No newline at end of file diff --git a/_downloads/3a52fd9cff7633ce146d32c36a8a783f/tick-locators.py b/_downloads/3a52fd9cff7633ce146d32c36a8a783f/tick-locators.py deleted file mode 120000 index db72eaea117..00000000000 --- a/_downloads/3a52fd9cff7633ce146d32c36a8a783f/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a52fd9cff7633ce146d32c36a8a783f/tick-locators.py \ No newline at end of file diff --git a/_downloads/3a5c630811dc4d361bb680f9dc12878f/patheffect_demo.ipynb b/_downloads/3a5c630811dc4d361bb680f9dc12878f/patheffect_demo.ipynb deleted file mode 100644 index 53f6ca91d7e..00000000000 --- a/_downloads/3a5c630811dc4d361bb680f9dc12878f/patheffect_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Patheffect Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patheffects as PathEffects\nimport numpy as np\n\nplt.figure(figsize=(8, 3))\nax1 = plt.subplot(131)\nax1.imshow([[1, 2], [2, 3]])\ntxt = ax1.annotate(\"test\", (1., 1.), (0., 0),\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle3\", lw=2),\n size=20, ha=\"center\",\n path_effects=[PathEffects.withStroke(linewidth=3,\n foreground=\"w\")])\ntxt.arrow_patch.set_path_effects([\n PathEffects.Stroke(linewidth=5, foreground=\"w\"),\n PathEffects.Normal()])\n\npe = [PathEffects.withStroke(linewidth=3,\n foreground=\"w\")]\nax1.grid(True, linestyle=\"-\", path_effects=pe)\n\nax2 = plt.subplot(132)\narr = np.arange(25).reshape((5, 5))\nax2.imshow(arr)\ncntr = ax2.contour(arr, colors=\"k\")\n\nplt.setp(cntr.collections, path_effects=[\n PathEffects.withStroke(linewidth=3, foreground=\"w\")])\n\nclbls = ax2.clabel(cntr, fmt=\"%2.0f\", use_clabeltext=True)\nplt.setp(clbls, path_effects=[\n PathEffects.withStroke(linewidth=3, foreground=\"w\")])\n\n# shadow as a path effect\nax3 = plt.subplot(133)\np1, = ax3.plot([0, 1], [0, 1])\nleg = ax3.legend([p1], [\"Line 1\"], fancybox=True, loc='upper left')\nleg.legendPatch.set_path_effects([PathEffects.withSimplePatchShadow()])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3a5caed24d9feb6be8829434cf0a76fb/centered_spines_with_arrows.py b/_downloads/3a5caed24d9feb6be8829434cf0a76fb/centered_spines_with_arrows.py deleted file mode 120000 index 734ca75d5c8..00000000000 --- a/_downloads/3a5caed24d9feb6be8829434cf0a76fb/centered_spines_with_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/3a5caed24d9feb6be8829434cf0a76fb/centered_spines_with_arrows.py \ No newline at end of file diff --git a/_downloads/3a5dc6a985b2f4fbe2a701603ada91b7/centered_ticklabels.ipynb b/_downloads/3a5dc6a985b2f4fbe2a701603ada91b7/centered_ticklabels.ipynb deleted file mode 100644 index 5e0afb413fc..00000000000 --- a/_downloads/3a5dc6a985b2f4fbe2a701603ada91b7/centered_ticklabels.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Centering labels between ticks\n\n\nTicklabels are aligned relative to their associated tick. The alignment\n'center', 'left', or 'right' can be controlled using the horizontal alignment\nproperty::\n\n for label in ax.xaxis.get_xticklabels():\n label.set_horizontalalignment('right')\n\nHowever there is no direct way to center the labels between ticks. To fake\nthis behavior, one can place a label on the minor ticks in between the major\nticks, and hide the major tick labels and minor ticks.\n\nHere is an example that labels the months, centered between the ticks.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cbook as cbook\nimport matplotlib.dates as dates\nimport matplotlib.ticker as ticker\nimport matplotlib.pyplot as plt\n\n# load some financial data; apple's stock price\nwith cbook.get_sample_data('aapl.npz') as fh:\n r = np.load(fh)['price_data'].view(np.recarray)\nr = r[-250:] # get the last 250 days\n# Matplotlib works better with datetime.datetime than np.datetime64, but the\n# latter is more portable.\ndate = r.date.astype('O')\n\nfig, ax = plt.subplots()\nax.plot(date, r.adj_close)\n\nax.xaxis.set_major_locator(dates.MonthLocator())\n# 16 is a slight approximation since months differ in number of days.\nax.xaxis.set_minor_locator(dates.MonthLocator(bymonthday=16))\n\nax.xaxis.set_major_formatter(ticker.NullFormatter())\nax.xaxis.set_minor_formatter(dates.DateFormatter('%b'))\n\nfor tick in ax.xaxis.get_minor_ticks():\n tick.tick1line.set_markersize(0)\n tick.tick2line.set_markersize(0)\n tick.label1.set_horizontalalignment('center')\n\nimid = len(r) // 2\nax.set_xlabel(str(date[imid].year))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3a6b858eb3bfa2d72c652a368067bc19/pipong.ipynb b/_downloads/3a6b858eb3bfa2d72c652a368067bc19/pipong.ipynb deleted file mode 120000 index 622ca8b47e3..00000000000 --- a/_downloads/3a6b858eb3bfa2d72c652a368067bc19/pipong.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3a6b858eb3bfa2d72c652a368067bc19/pipong.ipynb \ No newline at end of file diff --git a/_downloads/3a6f570fc3e03452fc1998020ebfb4ab/span_selector.ipynb b/_downloads/3a6f570fc3e03452fc1998020ebfb4ab/span_selector.ipynb deleted file mode 120000 index f74dea1403a..00000000000 --- a/_downloads/3a6f570fc3e03452fc1998020ebfb4ab/span_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3a6f570fc3e03452fc1998020ebfb4ab/span_selector.ipynb \ No newline at end of file diff --git a/_downloads/3a6f6486866435730d4d066001139811/layer_images.ipynb b/_downloads/3a6f6486866435730d4d066001139811/layer_images.ipynb deleted file mode 100644 index afdd8be0abf..00000000000 --- a/_downloads/3a6f6486866435730d4d066001139811/layer_images.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Layer Images\n\n\nLayer images above one another using alpha blending\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef func3(x, y):\n return (1 - x / 2 + x**5 + y**3) * np.exp(-(x**2 + y**2))\n\n\n# make these smaller to increase the resolution\ndx, dy = 0.05, 0.05\n\nx = np.arange(-3.0, 3.0, dx)\ny = np.arange(-3.0, 3.0, dy)\nX, Y = np.meshgrid(x, y)\n\n# when layering multiple images, the images need to have the same\n# extent. This does not mean they need to have the same shape, but\n# they both need to render to the same coordinate system determined by\n# xmin, xmax, ymin, ymax. Note if you use different interpolations\n# for the images their apparent extent could be different due to\n# interpolation edge effects\n\nextent = np.min(x), np.max(x), np.min(y), np.max(y)\nfig = plt.figure(frameon=False)\n\nZ1 = np.add.outer(range(8), range(8)) % 2 # chessboard\nim1 = plt.imshow(Z1, cmap=plt.cm.gray, interpolation='nearest',\n extent=extent)\n\nZ2 = func3(X, Y)\n\nim2 = plt.imshow(Z2, cmap=plt.cm.viridis, alpha=.9, interpolation='bilinear',\n extent=extent)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3a73b4cd6e12aa53ff277b1b80d631c1/basic_units.py b/_downloads/3a73b4cd6e12aa53ff277b1b80d631c1/basic_units.py deleted file mode 120000 index 62861d8a14e..00000000000 --- a/_downloads/3a73b4cd6e12aa53ff277b1b80d631c1/basic_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a73b4cd6e12aa53ff277b1b80d631c1/basic_units.py \ No newline at end of file diff --git a/_downloads/3a73c13c6535f3cab875523ddae53804/simple_axis_direction01.ipynb b/_downloads/3a73c13c6535f3cab875523ddae53804/simple_axis_direction01.ipynb deleted file mode 120000 index c8c2514858f..00000000000 --- a/_downloads/3a73c13c6535f3cab875523ddae53804/simple_axis_direction01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a73c13c6535f3cab875523ddae53804/simple_axis_direction01.ipynb \ No newline at end of file diff --git a/_downloads/3a76596dc00c933fde2a08a8ed1aca07/rotate_axes3d_sgskip.ipynb b/_downloads/3a76596dc00c933fde2a08a8ed1aca07/rotate_axes3d_sgskip.ipynb deleted file mode 120000 index a4e2ddb8809..00000000000 --- a/_downloads/3a76596dc00c933fde2a08a8ed1aca07/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3a76596dc00c933fde2a08a8ed1aca07/rotate_axes3d_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/3a7e03a1f8acd7bc5051d41a7c4204a7/line_with_text.ipynb b/_downloads/3a7e03a1f8acd7bc5051d41a7c4204a7/line_with_text.ipynb deleted file mode 120000 index f198bd10134..00000000000 --- a/_downloads/3a7e03a1f8acd7bc5051d41a7c4204a7/line_with_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3a7e03a1f8acd7bc5051d41a7c4204a7/line_with_text.ipynb \ No newline at end of file diff --git a/_downloads/3ab1e7714d4a84507191590692ac197c/shared_axis_demo.ipynb b/_downloads/3ab1e7714d4a84507191590692ac197c/shared_axis_demo.ipynb deleted file mode 120000 index f7813f0b976..00000000000 --- a/_downloads/3ab1e7714d4a84507191590692ac197c/shared_axis_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3ab1e7714d4a84507191590692ac197c/shared_axis_demo.ipynb \ No newline at end of file diff --git a/_downloads/3ab37b2b33143cbb37ad551b0bed0d7a/barb_demo.ipynb b/_downloads/3ab37b2b33143cbb37ad551b0bed0d7a/barb_demo.ipynb deleted file mode 120000 index fad726ebed9..00000000000 --- a/_downloads/3ab37b2b33143cbb37ad551b0bed0d7a/barb_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3ab37b2b33143cbb37ad551b0bed0d7a/barb_demo.ipynb \ No newline at end of file diff --git a/_downloads/3ab600b908954fe986b0cb6c5b3fca2a/whats_new_1_subplot3d.ipynb b/_downloads/3ab600b908954fe986b0cb6c5b3fca2a/whats_new_1_subplot3d.ipynb deleted file mode 100644 index 15bdf18ba24..00000000000 --- a/_downloads/3ab600b908954fe986b0cb6c5b3fca2a/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Whats New 1 Subplot3d\n\n\nCreate two three-dimensional plots in the same figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib import cm\n#from matplotlib.ticker import LinearLocator, FixedLocator, FormatStrFormatter\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nfig = plt.figure()\n\nax = fig.add_subplot(1, 2, 1, projection='3d')\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\nsurf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis,\n linewidth=0, antialiased=False)\nax.set_zlim3d(-1.01, 1.01)\n\n#ax.w_zaxis.set_major_locator(LinearLocator(10))\n#ax.w_zaxis.set_major_formatter(FormatStrFormatter('%.03f'))\n\nfig.colorbar(surf, shrink=0.5, aspect=5)\n\nfrom mpl_toolkits.mplot3d.axes3d import get_test_data\nax = fig.add_subplot(1, 2, 2, projection='3d')\nX, Y, Z = get_test_data(0.05)\nax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport mpl_toolkits\nmatplotlib.figure.Figure.add_subplot\nmpl_toolkits.mplot3d.axes3d.Axes3D.plot_surface\nmpl_toolkits.mplot3d.axes3d.Axes3D.plot_wireframe\nmpl_toolkits.mplot3d.axes3d.Axes3D.set_zlim3d" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3abbe64fb24838be3d08515cc4fb5ce6/centered_ticklabels.ipynb b/_downloads/3abbe64fb24838be3d08515cc4fb5ce6/centered_ticklabels.ipynb deleted file mode 100644 index 45aed20109b..00000000000 --- a/_downloads/3abbe64fb24838be3d08515cc4fb5ce6/centered_ticklabels.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Centering labels between ticks\n\n\nTicklabels are aligned relative to their associated tick. The alignment\n'center', 'left', or 'right' can be controlled using the horizontal alignment\nproperty::\n\n for label in ax.xaxis.get_xticklabels():\n label.set_horizontalalignment('right')\n\nHowever there is no direct way to center the labels between ticks. To fake\nthis behavior, one can place a label on the minor ticks in between the major\nticks, and hide the major tick labels and minor ticks.\n\nHere is an example that labels the months, centered between the ticks.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cbook as cbook\nimport matplotlib.dates as dates\nimport matplotlib.ticker as ticker\nimport matplotlib.pyplot as plt\n\n# load some financial data; apple's stock price\nwith cbook.get_sample_data('aapl.npz') as fh:\n r = np.load(fh)['price_data'].view(np.recarray)\nr = r[-250:] # get the last 250 days\n# Matplotlib works better with datetime.datetime than np.datetime64, but the\n# latter is more portable.\ndate = r.date.astype('O')\n\nfig, ax = plt.subplots()\nax.plot(date, r.adj_close)\n\nax.xaxis.set_major_locator(dates.MonthLocator())\n# 16 is a slight approximation since months differ in number of days.\nax.xaxis.set_minor_locator(dates.MonthLocator(bymonthday=16))\n\nax.xaxis.set_major_formatter(ticker.NullFormatter())\nax.xaxis.set_minor_formatter(dates.DateFormatter('%b'))\n\nfor tick in ax.xaxis.get_minor_ticks():\n tick.tick1line.set_markersize(0)\n tick.tick2line.set_markersize(0)\n tick.label1.set_horizontalalignment('center')\n\nimid = len(r) // 2\nax.set_xlabel(str(date[imid].year))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3abd560a71cfedb417a54dbdbc713056/date_demo_convert.ipynb b/_downloads/3abd560a71cfedb417a54dbdbc713056/date_demo_convert.ipynb deleted file mode 120000 index 4bf177480bb..00000000000 --- a/_downloads/3abd560a71cfedb417a54dbdbc713056/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3abd560a71cfedb417a54dbdbc713056/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/3abf854d082000a5866a2400621b1e86/colormap_normalizations_diverging.py b/_downloads/3abf854d082000a5866a2400621b1e86/colormap_normalizations_diverging.py deleted file mode 120000 index 3d85448ae3a..00000000000 --- a/_downloads/3abf854d082000a5866a2400621b1e86/colormap_normalizations_diverging.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/3abf854d082000a5866a2400621b1e86/colormap_normalizations_diverging.py \ No newline at end of file diff --git a/_downloads/3ac4d16969d07d8e88df1b6b11a4a671/agg_buffer_to_array.ipynb b/_downloads/3ac4d16969d07d8e88df1b6b11a4a671/agg_buffer_to_array.ipynb deleted file mode 120000 index 31960031d17..00000000000 --- a/_downloads/3ac4d16969d07d8e88df1b6b11a4a671/agg_buffer_to_array.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3ac4d16969d07d8e88df1b6b11a4a671/agg_buffer_to_array.ipynb \ No newline at end of file diff --git a/_downloads/3ad24beb1e8226db0727aabd2c0bbe39/radio_buttons.ipynb b/_downloads/3ad24beb1e8226db0727aabd2c0bbe39/radio_buttons.ipynb deleted file mode 120000 index 8cca08cabcc..00000000000 --- a/_downloads/3ad24beb1e8226db0727aabd2c0bbe39/radio_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3ad24beb1e8226db0727aabd2c0bbe39/radio_buttons.ipynb \ No newline at end of file diff --git a/_downloads/3adcb9f3ef1eabb4e66a7aab7f6d4590/span_regions.ipynb b/_downloads/3adcb9f3ef1eabb4e66a7aab7f6d4590/span_regions.ipynb deleted file mode 120000 index 8a7b5d4032a..00000000000 --- a/_downloads/3adcb9f3ef1eabb4e66a7aab7f6d4590/span_regions.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3adcb9f3ef1eabb4e66a7aab7f6d4590/span_regions.ipynb \ No newline at end of file diff --git a/_downloads/3ae7b17d518b0a247e30dc543c88005d/color_cycler.ipynb b/_downloads/3ae7b17d518b0a247e30dc543c88005d/color_cycler.ipynb deleted file mode 120000 index 27680e46431..00000000000 --- a/_downloads/3ae7b17d518b0a247e30dc543c88005d/color_cycler.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ae7b17d518b0a247e30dc543c88005d/color_cycler.ipynb \ No newline at end of file diff --git a/_downloads/3ae945eb678b23a1d99c29c2c137a19f/advanced_hillshading.ipynb b/_downloads/3ae945eb678b23a1d99c29c2c137a19f/advanced_hillshading.ipynb deleted file mode 120000 index 65a4c711e68..00000000000 --- a/_downloads/3ae945eb678b23a1d99c29c2c137a19f/advanced_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ae945eb678b23a1d99c29c2c137a19f/advanced_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/3aeda2c353cd00cb937799d0228518cb/ellipse_with_units.ipynb b/_downloads/3aeda2c353cd00cb937799d0228518cb/ellipse_with_units.ipynb deleted file mode 100644 index ece0a13f26d..00000000000 --- a/_downloads/3aeda2c353cd00cb937799d0228518cb/ellipse_with_units.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ellipse With Units\n\n\nCompare the ellipse generated with arcs versus a polygonal approximation\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from basic_units import cm\nimport numpy as np\nfrom matplotlib import patches\nimport matplotlib.pyplot as plt\n\n\nxcenter, ycenter = 0.38*cm, 0.52*cm\nwidth, height = 1e-1*cm, 3e-1*cm\nangle = -30\n\ntheta = np.deg2rad(np.arange(0.0, 360.0, 1.0))\nx = 0.5 * width * np.cos(theta)\ny = 0.5 * height * np.sin(theta)\n\nrtheta = np.radians(angle)\nR = np.array([\n [np.cos(rtheta), -np.sin(rtheta)],\n [np.sin(rtheta), np.cos(rtheta)],\n ])\n\n\nx, y = np.dot(R, np.array([x, y]))\nx += xcenter\ny += ycenter" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(211, aspect='auto')\nax.fill(x, y, alpha=0.2, facecolor='yellow',\n edgecolor='yellow', linewidth=1, zorder=1)\n\ne1 = patches.Ellipse((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\nax.add_patch(e1)\n\nax = fig.add_subplot(212, aspect='equal')\nax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1)\ne2 = patches.Ellipse((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\n\nax.add_patch(e2)\nfig.savefig('ellipse_compare')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(211, aspect='auto')\nax.fill(x, y, alpha=0.2, facecolor='yellow',\n edgecolor='yellow', linewidth=1, zorder=1)\n\ne1 = patches.Arc((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\nax.add_patch(e1)\n\nax = fig.add_subplot(212, aspect='equal')\nax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1)\ne2 = patches.Arc((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\n\nax.add_patch(e2)\nfig.savefig('arc_compare')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3af0619ee6519f150a94a04ef1bf635a/image_clip_path.py b/_downloads/3af0619ee6519f150a94a04ef1bf635a/image_clip_path.py deleted file mode 120000 index 629b872037c..00000000000 --- a/_downloads/3af0619ee6519f150a94a04ef1bf635a/image_clip_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3af0619ee6519f150a94a04ef1bf635a/image_clip_path.py \ No newline at end of file diff --git a/_downloads/3af859347caf638fb848699b90bcda8f/contour3d_2.ipynb b/_downloads/3af859347caf638fb848699b90bcda8f/contour3d_2.ipynb deleted file mode 120000 index f66f68be472..00000000000 --- a/_downloads/3af859347caf638fb848699b90bcda8f/contour3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3af859347caf638fb848699b90bcda8f/contour3d_2.ipynb \ No newline at end of file diff --git a/_downloads/3afbcb8cc9dea9fb8ba0ca9782ee4716/scatter_hist.ipynb b/_downloads/3afbcb8cc9dea9fb8ba0ca9782ee4716/scatter_hist.ipynb deleted file mode 120000 index 789e7be25a2..00000000000 --- a/_downloads/3afbcb8cc9dea9fb8ba0ca9782ee4716/scatter_hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3afbcb8cc9dea9fb8ba0ca9782ee4716/scatter_hist.ipynb \ No newline at end of file diff --git a/_downloads/3aff62bd33182e946c147569c6d533f2/axis_direction_demo_step02.ipynb b/_downloads/3aff62bd33182e946c147569c6d533f2/axis_direction_demo_step02.ipynb deleted file mode 120000 index 377a6bf90d4..00000000000 --- a/_downloads/3aff62bd33182e946c147569c6d533f2/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3aff62bd33182e946c147569c6d533f2/axis_direction_demo_step02.ipynb \ No newline at end of file diff --git a/_downloads/3b020e7083120e6ef28f820b090ae01c/frame_grabbing_sgskip.ipynb b/_downloads/3b020e7083120e6ef28f820b090ae01c/frame_grabbing_sgskip.ipynb deleted file mode 100644 index 41994061152..00000000000 --- a/_downloads/3b020e7083120e6ef28f820b090ae01c/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frame grabbing\n\n\nUse a MovieWriter directly to grab individual frames and write them to a\nfile. This avoids any event loop integration, and thus works even with the Agg\nbackend. This is not recommended for use in an interactive setting.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nmatplotlib.use(\"Agg\")\nimport matplotlib.pyplot as plt\nfrom matplotlib.animation import FFMpegWriter\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nmetadata = dict(title='Movie Test', artist='Matplotlib',\n comment='Movie support!')\nwriter = FFMpegWriter(fps=15, metadata=metadata)\n\nfig = plt.figure()\nl, = plt.plot([], [], 'k-o')\n\nplt.xlim(-5, 5)\nplt.ylim(-5, 5)\n\nx0, y0 = 0, 0\n\nwith writer.saving(fig, \"writer_test.mp4\", 100):\n for i in range(100):\n x0 += 0.1 * np.random.randn()\n y0 += 0.1 * np.random.randn()\n l.set_data(x0, y0)\n writer.grab_frame()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3b14097d039da3a9a4a3475936add56d/inset_locator_demo2.ipynb b/_downloads/3b14097d039da3a9a4a3475936add56d/inset_locator_demo2.ipynb deleted file mode 100644 index 0dcc48bae9e..00000000000 --- a/_downloads/3b14097d039da3a9a4a3475936add56d/inset_locator_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Inset Locator Demo2\n\n\nThis Demo shows how to create a zoomed inset via `~.zoomed_inset_axes`.\nIn the first subplot an `~.AnchoredSizeBar` shows the zoom effect.\nIn the second subplot a connection to the region of interest is\ncreated via `~.mark_inset`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes, mark_inset\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar\n\nimport numpy as np\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n import numpy as np\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\nfig, (ax, ax2) = plt.subplots(ncols=2, figsize=[6, 3])\n\n\n# First subplot, showing an inset with a size bar.\nax.set_aspect(1)\n\naxins = zoomed_inset_axes(ax, zoom=0.5, loc='upper right')\n# fix the number of ticks on the inset axes\naxins.yaxis.get_major_locator().set_params(nbins=7)\naxins.xaxis.get_major_locator().set_params(nbins=7)\n\nplt.setp(axins.get_xticklabels(), visible=False)\nplt.setp(axins.get_yticklabels(), visible=False)\n\n\ndef add_sizebar(ax, size):\n asb = AnchoredSizeBar(ax.transData,\n size,\n str(size),\n loc=8,\n pad=0.1, borderpad=0.5, sep=5,\n frameon=False)\n ax.add_artist(asb)\n\nadd_sizebar(ax, 0.5)\nadd_sizebar(axins, 0.5)\n\n\n# Second subplot, showing an image with an inset zoom\n# and a marked inset\nZ, extent = get_demo_image()\nZ2 = np.zeros([150, 150], dtype=\"d\")\nny, nx = Z.shape\nZ2[30:30 + ny, 30:30 + nx] = Z\n\n# extent = [-3, 4, -4, 3]\nax2.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\n\naxins2 = zoomed_inset_axes(ax2, 6, loc=1) # zoom = 6\naxins2.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\n# sub region of the original image\nx1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9\naxins2.set_xlim(x1, x2)\naxins2.set_ylim(y1, y2)\n# fix the number of ticks on the inset axes\naxins2.yaxis.get_major_locator().set_params(nbins=7)\naxins2.xaxis.get_major_locator().set_params(nbins=7)\n\nplt.setp(axins2.get_xticklabels(), visible=False)\nplt.setp(axins2.get_yticklabels(), visible=False)\n\n# draw a bbox of the region of the inset axes in the parent axes and\n# connecting lines between the bbox and the inset axes area\nmark_inset(ax2, axins2, loc1=2, loc2=4, fc=\"none\", ec=\"0.5\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3b1ad3d5d34ddd380dfc3ea049057e6e/text_rotation.ipynb b/_downloads/3b1ad3d5d34ddd380dfc3ea049057e6e/text_rotation.ipynb deleted file mode 120000 index 30db75230ed..00000000000 --- a/_downloads/3b1ad3d5d34ddd380dfc3ea049057e6e/text_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3b1ad3d5d34ddd380dfc3ea049057e6e/text_rotation.ipynb \ No newline at end of file diff --git a/_downloads/3b26737ec500008de58ba03ce0714ea4/scalarformatter.ipynb b/_downloads/3b26737ec500008de58ba03ce0714ea4/scalarformatter.ipynb deleted file mode 120000 index 88bc554f230..00000000000 --- a/_downloads/3b26737ec500008de58ba03ce0714ea4/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3b26737ec500008de58ba03ce0714ea4/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/3b3334edee2ee0c33431f04f071d5c82/animate_decay.py b/_downloads/3b3334edee2ee0c33431f04f071d5c82/animate_decay.py deleted file mode 120000 index 42d1aa5488d..00000000000 --- a/_downloads/3b3334edee2ee0c33431f04f071d5c82/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3b3334edee2ee0c33431f04f071d5c82/animate_decay.py \ No newline at end of file diff --git a/_downloads/3b445f30fa702ff55f1547368707c820/simple_axis_direction01.py b/_downloads/3b445f30fa702ff55f1547368707c820/simple_axis_direction01.py deleted file mode 120000 index 464096e11e4..00000000000 --- a/_downloads/3b445f30fa702ff55f1547368707c820/simple_axis_direction01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3b445f30fa702ff55f1547368707c820/simple_axis_direction01.py \ No newline at end of file diff --git a/_downloads/3b4528950b540ff9fc3c5a4f7cb9fbde/rectangle_selector.ipynb b/_downloads/3b4528950b540ff9fc3c5a4f7cb9fbde/rectangle_selector.ipynb deleted file mode 100644 index b7b6e515976..00000000000 --- a/_downloads/3b4528950b540ff9fc3c5a4f7cb9fbde/rectangle_selector.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rectangle Selector\n\n\nDo a mouseclick somewhere, move the mouse to some destination, release\nthe button. This class gives click- and release-events and also draws\na line or a box from the click-point to the actual mouseposition\n(within the same axes) until the button is released. Within the\nmethod 'self.ignore()' it is checked whether the button from eventpress\nand eventrelease are the same.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.widgets import RectangleSelector\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef line_select_callback(eclick, erelease):\n 'eclick and erelease are the press and release events'\n x1, y1 = eclick.xdata, eclick.ydata\n x2, y2 = erelease.xdata, erelease.ydata\n print(\"(%3.2f, %3.2f) --> (%3.2f, %3.2f)\" % (x1, y1, x2, y2))\n print(\" The button you used were: %s %s\" % (eclick.button, erelease.button))\n\n\ndef toggle_selector(event):\n print(' Key pressed.')\n if event.key in ['Q', 'q'] and toggle_selector.RS.active:\n print(' RectangleSelector deactivated.')\n toggle_selector.RS.set_active(False)\n if event.key in ['A', 'a'] and not toggle_selector.RS.active:\n print(' RectangleSelector activated.')\n toggle_selector.RS.set_active(True)\n\n\nfig, current_ax = plt.subplots() # make a new plotting range\nN = 100000 # If N is large one can see\nx = np.linspace(0.0, 10.0, N) # improvement by use blitting!\n\nplt.plot(x, +np.sin(.2*np.pi*x), lw=3.5, c='b', alpha=.7) # plot something\nplt.plot(x, +np.cos(.2*np.pi*x), lw=3.5, c='r', alpha=.5)\nplt.plot(x, -np.sin(.2*np.pi*x), lw=3.5, c='g', alpha=.3)\n\nprint(\"\\n click --> release\")\n\n# drawtype is 'box' or 'line' or 'none'\ntoggle_selector.RS = RectangleSelector(current_ax, line_select_callback,\n drawtype='box', useblit=True,\n button=[1, 3], # don't use middle button\n minspanx=5, minspany=5,\n spancoords='pixels',\n interactive=True)\nplt.connect('key_press_event', toggle_selector)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3b552637d4ba5ddf6d4dd78bc105a149/cursor.ipynb b/_downloads/3b552637d4ba5ddf6d4dd78bc105a149/cursor.ipynb deleted file mode 100644 index e716d130937..00000000000 --- a/_downloads/3b552637d4ba5ddf6d4dd78bc105a149/cursor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Cursor\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.widgets import Cursor\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig = plt.figure(figsize=(8, 6))\nax = fig.add_subplot(111, facecolor='#FFFFCC')\n\nx, y = 4*(np.random.rand(2, 100) - .5)\nax.plot(x, y, 'o')\nax.set_xlim(-2, 2)\nax.set_ylim(-2, 2)\n\n# Set useblit=True on most backends for enhanced performance.\ncursor = Cursor(ax, useblit=True, color='red', linewidth=2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3b5b3f87fe299ff67b9d08805e43e891/text_rotation.ipynb b/_downloads/3b5b3f87fe299ff67b9d08805e43e891/text_rotation.ipynb deleted file mode 120000 index 32dae1f9974..00000000000 --- a/_downloads/3b5b3f87fe299ff67b9d08805e43e891/text_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3b5b3f87fe299ff67b9d08805e43e891/text_rotation.ipynb \ No newline at end of file diff --git a/_downloads/3b7005916768e4ce647cb16c59d482d5/ellipse_collection.py b/_downloads/3b7005916768e4ce647cb16c59d482d5/ellipse_collection.py deleted file mode 120000 index a2b04eb18e7..00000000000 --- a/_downloads/3b7005916768e4ce647cb16c59d482d5/ellipse_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3b7005916768e4ce647cb16c59d482d5/ellipse_collection.py \ No newline at end of file diff --git a/_downloads/3b75de00a8237adf0d90a7cf5354f8ae/arrow_simple_demo.ipynb b/_downloads/3b75de00a8237adf0d90a7cf5354f8ae/arrow_simple_demo.ipynb deleted file mode 120000 index f64018a92d7..00000000000 --- a/_downloads/3b75de00a8237adf0d90a7cf5354f8ae/arrow_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3b75de00a8237adf0d90a7cf5354f8ae/arrow_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/3b7ea448148148348599a28851f73dc5/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/3b7ea448148148348599a28851f73dc5/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 100644 index 2f3e0d9af74..00000000000 --- a/_downloads/3b7ea448148148348599a28851f73dc5/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in GTK3 with a navigation toolbar\n\n\nDemonstrate NavigationToolbar with GTK3 accessed via pygobject.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\nfrom matplotlib.backends.backend_gtk3 import (\n NavigationToolbar2GTK3 as NavigationToolbar)\nfrom matplotlib.backends.backend_gtk3agg import (\n FigureCanvasGTK3Agg as FigureCanvas)\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nwin = Gtk.Window()\nwin.connect(\"delete-event\", Gtk.main_quit)\nwin.set_default_size(400, 300)\nwin.set_title(\"Embedding in GTK\")\n\nf = Figure(figsize=(5, 4), dpi=100)\na = f.add_subplot(1, 1, 1)\nt = np.arange(0.0, 3.0, 0.01)\ns = np.sin(2*np.pi*t)\na.plot(t, s)\n\nvbox = Gtk.VBox()\nwin.add(vbox)\n\n# Add canvas to vbox\ncanvas = FigureCanvas(f) # a Gtk.DrawingArea\nvbox.pack_start(canvas, True, True, 0)\n\n# Create toolbar\ntoolbar = NavigationToolbar(canvas, win)\nvbox.pack_start(toolbar, False, False, 0)\n\nwin.show_all()\nGtk.main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3b8638526d6f09e07d6f2914f17daed1/style_sheets_reference.py b/_downloads/3b8638526d6f09e07d6f2914f17daed1/style_sheets_reference.py deleted file mode 120000 index 6f90395cbb5..00000000000 --- a/_downloads/3b8638526d6f09e07d6f2914f17daed1/style_sheets_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3b8638526d6f09e07d6f2914f17daed1/style_sheets_reference.py \ No newline at end of file diff --git a/_downloads/3b931beadc4e85b764f76b11ee27ad07/errorbar_subsample.ipynb b/_downloads/3b931beadc4e85b764f76b11ee27ad07/errorbar_subsample.ipynb deleted file mode 120000 index 24fecfd2ada..00000000000 --- a/_downloads/3b931beadc4e85b764f76b11ee27ad07/errorbar_subsample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3b931beadc4e85b764f76b11ee27ad07/errorbar_subsample.ipynb \ No newline at end of file diff --git a/_downloads/3b9ac21ecf6a0b30550b0fb236dcec5a/custom_shaded_3d_surface.py b/_downloads/3b9ac21ecf6a0b30550b0fb236dcec5a/custom_shaded_3d_surface.py deleted file mode 120000 index f235b4a5c61..00000000000 --- a/_downloads/3b9ac21ecf6a0b30550b0fb236dcec5a/custom_shaded_3d_surface.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3b9ac21ecf6a0b30550b0fb236dcec5a/custom_shaded_3d_surface.py \ No newline at end of file diff --git a/_downloads/3ba3c9310a0fd29d58ccd6b67b90b270/color_by_yvalue.ipynb b/_downloads/3ba3c9310a0fd29d58ccd6b67b90b270/color_by_yvalue.ipynb deleted file mode 100644 index b1a67782a88..00000000000 --- a/_downloads/3ba3c9310a0fd29d58ccd6b67b90b270/color_by_yvalue.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Color by y-value\n\n\nUse masked arrays to plot a line with different colors by y-value.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0.0, 2.0, 0.01)\ns = np.sin(2 * np.pi * t)\n\nupper = 0.77\nlower = -0.77\n\nsupper = np.ma.masked_where(s < upper, s)\nslower = np.ma.masked_where(s > lower, s)\nsmiddle = np.ma.masked_where((s < lower) | (s > upper), s)\n\nfig, ax = plt.subplots()\nax.plot(t, smiddle, t, slower, t, supper)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3ba617d1bf0907b8a4bc005aa802188d/auto_ticks.ipynb b/_downloads/3ba617d1bf0907b8a4bc005aa802188d/auto_ticks.ipynb deleted file mode 120000 index 42ed4b44d92..00000000000 --- a/_downloads/3ba617d1bf0907b8a4bc005aa802188d/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3ba617d1bf0907b8a4bc005aa802188d/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/3ba7759c8d143a94f0bdced8f0119bf2/make_room_for_ylabel_using_axesgrid.py b/_downloads/3ba7759c8d143a94f0bdced8f0119bf2/make_room_for_ylabel_using_axesgrid.py deleted file mode 100644 index 28424264ba6..00000000000 --- a/_downloads/3ba7759c8d143a94f0bdced8f0119bf2/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -=================================== -Make Room For Ylabel Using Axesgrid -=================================== - -""" -from mpl_toolkits.axes_grid1 import make_axes_locatable -from mpl_toolkits.axes_grid1.axes_divider import make_axes_area_auto_adjustable - - -if __name__ == "__main__": - - import matplotlib.pyplot as plt - - def ex1(): - plt.figure(1) - ax = plt.axes([0, 0, 1, 1]) - #ax = plt.subplot(111) - - ax.set_yticks([0.5]) - ax.set_yticklabels(["very long label"]) - - make_axes_area_auto_adjustable(ax) - - def ex2(): - - plt.figure(2) - ax1 = plt.axes([0, 0, 1, 0.5]) - ax2 = plt.axes([0, 0.5, 1, 0.5]) - - ax1.set_yticks([0.5]) - ax1.set_yticklabels(["very long label"]) - ax1.set_ylabel("Y label") - - ax2.set_title("Title") - - make_axes_area_auto_adjustable(ax1, pad=0.1, use_axes=[ax1, ax2]) - make_axes_area_auto_adjustable(ax2, pad=0.1, use_axes=[ax1, ax2]) - - def ex3(): - - fig = plt.figure(3) - ax1 = plt.axes([0, 0, 1, 1]) - divider = make_axes_locatable(ax1) - - ax2 = divider.new_horizontal("100%", pad=0.3, sharey=ax1) - ax2.tick_params(labelleft=False) - fig.add_axes(ax2) - - divider.add_auto_adjustable_area(use_axes=[ax1], pad=0.1, - adjust_dirs=["left"]) - divider.add_auto_adjustable_area(use_axes=[ax2], pad=0.1, - adjust_dirs=["right"]) - divider.add_auto_adjustable_area(use_axes=[ax1, ax2], pad=0.1, - adjust_dirs=["top", "bottom"]) - - ax1.set_yticks([0.5]) - ax1.set_yticklabels(["very long label"]) - - ax2.set_title("Title") - ax2.set_xlabel("X - Label") - - ex1() - ex2() - ex3() - - plt.show() diff --git a/_downloads/3bbbe9abd1c06a7dbd313fb99e609698/quiver_demo.ipynb b/_downloads/3bbbe9abd1c06a7dbd313fb99e609698/quiver_demo.ipynb deleted file mode 120000 index 5e696be7815..00000000000 --- a/_downloads/3bbbe9abd1c06a7dbd313fb99e609698/quiver_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3bbbe9abd1c06a7dbd313fb99e609698/quiver_demo.ipynb \ No newline at end of file diff --git a/_downloads/3bbf4af27f1331a3cb933f5087b4adc9/contourf_hatching.py b/_downloads/3bbf4af27f1331a3cb933f5087b4adc9/contourf_hatching.py deleted file mode 120000 index 96b3ca7fd2a..00000000000 --- a/_downloads/3bbf4af27f1331a3cb933f5087b4adc9/contourf_hatching.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3bbf4af27f1331a3cb933f5087b4adc9/contourf_hatching.py \ No newline at end of file diff --git a/_downloads/3bd5dcc965005f3b4b8b885feb254d2e/polar_scatter.py b/_downloads/3bd5dcc965005f3b4b8b885feb254d2e/polar_scatter.py deleted file mode 100644 index 350369ed355..00000000000 --- a/_downloads/3bd5dcc965005f3b4b8b885feb254d2e/polar_scatter.py +++ /dev/null @@ -1,75 +0,0 @@ -""" -========================== -Scatter plot on polar axis -========================== - -Size increases radially in this example and color increases with angle -(just to verify the symbols are being scattered correctly). -""" -import numpy as np -import matplotlib.pyplot as plt - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# Compute areas and colors -N = 150 -r = 2 * np.random.rand(N) -theta = 2 * np.pi * np.random.rand(N) -area = 200 * r**2 -colors = theta - -fig = plt.figure() -ax = fig.add_subplot(111, projection='polar') -c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75) - -############################################################################### -# Scatter plot on polar axis, with offset origin -# ---------------------------------------------- -# -# The main difference with the previous plot is the configuration of the origin -# radius, producing an annulus. Additionally, the theta zero location is set to -# rotate the plot. - -fig = plt.figure() -ax = fig.add_subplot(111, polar=True) -c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75) - -ax.set_rorigin(-2.5) -ax.set_theta_zero_location('W', offset=10) - -############################################################################### -# Scatter plot on polar axis confined to a sector -# ----------------------------------------------- -# -# The main difference with the previous plots is the configuration of the -# theta start and end limits, producing a sector instead of a full circle. - -fig = plt.figure() -ax = fig.add_subplot(111, polar=True) -c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75) - -ax.set_thetamin(45) -ax.set_thetamax(135) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes.set_rorigin -matplotlib.projections.polar.PolarAxes.set_theta_zero_location -matplotlib.projections.polar.PolarAxes.set_thetamin -matplotlib.projections.polar.PolarAxes.set_thetamax diff --git a/_downloads/3beae0da665a18edbc1a8fd78a95e9ef/matshow.ipynb b/_downloads/3beae0da665a18edbc1a8fd78a95e9ef/matshow.ipynb deleted file mode 120000 index ad028ec4ec7..00000000000 --- a/_downloads/3beae0da665a18edbc1a8fd78a95e9ef/matshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3beae0da665a18edbc1a8fd78a95e9ef/matshow.ipynb \ No newline at end of file diff --git a/_downloads/3bf8201877bd167364e3c27dc07ba95e/mathtext_wx_sgskip.ipynb b/_downloads/3bf8201877bd167364e3c27dc07ba95e/mathtext_wx_sgskip.ipynb deleted file mode 100644 index b9e752d50b3..00000000000 --- a/_downloads/3bf8201877bd167364e3c27dc07ba95e/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1,83 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# MathText WX\n\n\nDemonstrates how to convert mathtext to a wx.Bitmap for display in various\ncontrols on wxPython.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.use(\"WxAgg\")\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wx import NavigationToolbar2Wx\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nimport wx\n\nIS_GTK = 'wxGTK' in wx.PlatformInfo\nIS_WIN = 'wxMSW' in wx.PlatformInfo" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is where the \"magic\" happens.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.mathtext import MathTextParser\nmathtext_parser = MathTextParser(\"Bitmap\")\n\n\ndef mathtext_to_wxbitmap(s):\n ftimage, depth = mathtext_parser.parse(s, 150)\n return wx.Bitmap.FromBufferRGBA(\n ftimage.get_width(), ftimage.get_height(),\n ftimage.as_rgba_str())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "functions = [\n (r'$\\sin(2 \\pi x)$', lambda x: np.sin(2*np.pi*x)),\n (r'$\\frac{4}{3}\\pi x^3$', lambda x: (4.0/3.0)*np.pi*x**3),\n (r'$\\cos(2 \\pi x)$', lambda x: np.cos(2*np.pi*x)),\n (r'$\\log(x)$', lambda x: np.log(x))\n]\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self, parent, title):\n wx.Frame.__init__(self, parent, -1, title, size=(550, 350))\n\n self.figure = Figure()\n self.axes = self.figure.add_subplot(111)\n\n self.canvas = FigureCanvas(self, -1, self.figure)\n\n self.change_plot(0)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.add_buttonbar()\n self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW)\n self.add_toolbar() # comment this out for no toolbar\n\n menuBar = wx.MenuBar()\n\n # File Menu\n menu = wx.Menu()\n m_exit = menu.Append(wx.ID_EXIT, \"E&xit\\tAlt-X\", \"Exit this simple sample\")\n menuBar.Append(menu, \"&File\")\n self.Bind(wx.EVT_MENU, self.OnClose, m_exit)\n\n if IS_GTK or IS_WIN:\n # Equation Menu\n menu = wx.Menu()\n for i, (mt, func) in enumerate(functions):\n bm = mathtext_to_wxbitmap(mt)\n item = wx.MenuItem(menu, 1000 + i, \" \")\n item.SetBitmap(bm)\n menu.Append(item)\n self.Bind(wx.EVT_MENU, self.OnChangePlot, item)\n menuBar.Append(menu, \"&Functions\")\n\n self.SetMenuBar(menuBar)\n\n self.SetSizer(self.sizer)\n self.Fit()\n\n def add_buttonbar(self):\n self.button_bar = wx.Panel(self)\n self.button_bar_sizer = wx.BoxSizer(wx.HORIZONTAL)\n self.sizer.Add(self.button_bar, 0, wx.LEFT | wx.TOP | wx.GROW)\n\n for i, (mt, func) in enumerate(functions):\n bm = mathtext_to_wxbitmap(mt)\n button = wx.BitmapButton(self.button_bar, 1000 + i, bm)\n self.button_bar_sizer.Add(button, 1, wx.GROW)\n self.Bind(wx.EVT_BUTTON, self.OnChangePlot, button)\n\n self.button_bar.SetSizer(self.button_bar_sizer)\n\n def add_toolbar(self):\n \"\"\"Copied verbatim from embedding_wx2.py\"\"\"\n self.toolbar = NavigationToolbar2Wx(self.canvas)\n self.toolbar.Realize()\n # By adding toolbar in sizer, we are able to put it at the bottom\n # of the frame - so appearance is closer to GTK version.\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n # update the axes menu on the toolbar\n self.toolbar.update()\n\n def OnChangePlot(self, event):\n self.change_plot(event.GetId() - 1000)\n\n def change_plot(self, plot_number):\n t = np.arange(1.0, 3.0, 0.01)\n s = functions[plot_number][1](t)\n self.axes.clear()\n self.axes.plot(t, s)\n self.canvas.draw()\n\n def OnClose(self, event):\n self.Destroy()\n\n\nclass MyApp(wx.App):\n def OnInit(self):\n frame = CanvasFrame(None, \"wxPython mathtext demo app\")\n self.SetTopWindow(frame)\n frame.Show(True)\n return True\n\napp = MyApp()\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3bf83efd031f2d42c3ae7bf84a613b4b/font_table.ipynb b/_downloads/3bf83efd031f2d42c3ae7bf84a613b4b/font_table.ipynb deleted file mode 120000 index 48566399e6f..00000000000 --- a/_downloads/3bf83efd031f2d42c3ae7bf84a613b4b/font_table.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3bf83efd031f2d42c3ae7bf84a613b4b/font_table.ipynb \ No newline at end of file diff --git a/_downloads/3bfe045d68742c9304615bb41ee6a58b/scatter_hist_locatable_axes.py b/_downloads/3bfe045d68742c9304615bb41ee6a58b/scatter_hist_locatable_axes.py deleted file mode 120000 index fcf4f5a39d8..00000000000 --- a/_downloads/3bfe045d68742c9304615bb41ee6a58b/scatter_hist_locatable_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3bfe045d68742c9304615bb41ee6a58b/scatter_hist_locatable_axes.py \ No newline at end of file diff --git a/_downloads/3c03345543f277be0139d9530090a4c8/ftface_props.ipynb b/_downloads/3c03345543f277be0139d9530090a4c8/ftface_props.ipynb deleted file mode 120000 index 688a389d9d2..00000000000 --- a/_downloads/3c03345543f277be0139d9530090a4c8/ftface_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3c03345543f277be0139d9530090a4c8/ftface_props.ipynb \ No newline at end of file diff --git a/_downloads/3c04d56f377bcadfaa1abae57ccb7172/lorenz_attractor.ipynb b/_downloads/3c04d56f377bcadfaa1abae57ccb7172/lorenz_attractor.ipynb deleted file mode 120000 index bfd8a395596..00000000000 --- a/_downloads/3c04d56f377bcadfaa1abae57ccb7172/lorenz_attractor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3c04d56f377bcadfaa1abae57ccb7172/lorenz_attractor.ipynb \ No newline at end of file diff --git a/_downloads/3c0a7d19525358a2363659301056efef/pcolormesh_levels.py b/_downloads/3c0a7d19525358a2363659301056efef/pcolormesh_levels.py deleted file mode 120000 index 08c72c3eec7..00000000000 --- a/_downloads/3c0a7d19525358a2363659301056efef/pcolormesh_levels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3c0a7d19525358a2363659301056efef/pcolormesh_levels.py \ No newline at end of file diff --git a/_downloads/3c0cff36c5903a1703c55e74d6edb846/boxplot_demo.ipynb b/_downloads/3c0cff36c5903a1703c55e74d6edb846/boxplot_demo.ipynb deleted file mode 120000 index a6bdef5c004..00000000000 --- a/_downloads/3c0cff36c5903a1703c55e74d6edb846/boxplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3c0cff36c5903a1703c55e74d6edb846/boxplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/3c0e4cf741d49049db210724a6bcc0da/demo_colorbar_with_inset_locator.ipynb b/_downloads/3c0e4cf741d49049db210724a6bcc0da/demo_colorbar_with_inset_locator.ipynb deleted file mode 120000 index 59a978f7ceb..00000000000 --- a/_downloads/3c0e4cf741d49049db210724a6bcc0da/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3c0e4cf741d49049db210724a6bcc0da/demo_colorbar_with_inset_locator.ipynb \ No newline at end of file diff --git a/_downloads/3c1701376207930a236bd1fe6b92f3fa/check_buttons.ipynb b/_downloads/3c1701376207930a236bd1fe6b92f3fa/check_buttons.ipynb deleted file mode 120000 index 78b3ea37ba5..00000000000 --- a/_downloads/3c1701376207930a236bd1fe6b92f3fa/check_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3c1701376207930a236bd1fe6b92f3fa/check_buttons.ipynb \ No newline at end of file diff --git a/_downloads/3c21c9c541c0b7e1f653bd86239d8132/demo_bboximage.ipynb b/_downloads/3c21c9c541c0b7e1f653bd86239d8132/demo_bboximage.ipynb deleted file mode 100644 index e5966c3c4c5..00000000000 --- a/_downloads/3c21c9c541c0b7e1f653bd86239d8132/demo_bboximage.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# BboxImage Demo\n\n\nA :class:`~matplotlib.image.BboxImage` can be used to position\nan image according to a bounding box. This demo shows how to\nshow an image inside a `text.Text`'s bounding box as well as\nhow to manually create a bounding box for the image.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.image import BboxImage\nfrom matplotlib.transforms import Bbox, TransformedBbox\n\n\nfig, (ax1, ax2) = plt.subplots(ncols=2)\n\n# ----------------------------\n# Create a BboxImage with Text\n# ----------------------------\ntxt = ax1.text(0.5, 0.5, \"test\", size=30, ha=\"center\", color=\"w\")\nkwargs = dict()\n\nbbox_image = BboxImage(txt.get_window_extent,\n norm=None,\n origin=None,\n clip_on=False,\n **kwargs\n )\na = np.arange(256).reshape(1, 256)/256.\nbbox_image.set_data(a)\nax1.add_artist(bbox_image)\n\n# ------------------------------------\n# Create a BboxImage for each colormap\n# ------------------------------------\na = np.linspace(0, 1, 256).reshape(1, -1)\na = np.vstack((a, a))\n\n# List of all colormaps; skip reversed colormaps.\nmaps = sorted(m for m in plt.cm.cmap_d if not m.endswith(\"_r\"))\n\nncol = 2\nnrow = len(maps)//ncol + 1\n\nxpad_fraction = 0.3\ndx = 1./(ncol + xpad_fraction*(ncol - 1))\n\nypad_fraction = 0.3\ndy = 1./(nrow + ypad_fraction*(nrow - 1))\n\nfor i, m in enumerate(maps):\n ix, iy = divmod(i, nrow)\n\n bbox0 = Bbox.from_bounds(ix*dx*(1 + xpad_fraction),\n 1. - iy*dy*(1 + ypad_fraction) - dy,\n dx, dy)\n bbox = TransformedBbox(bbox0, ax2.transAxes)\n\n bbox_image = BboxImage(bbox,\n cmap=plt.get_cmap(m),\n norm=None,\n origin=None,\n **kwargs\n )\n\n bbox_image.set_data(a)\n ax2.add_artist(bbox_image)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.image.BboxImage\nmatplotlib.transforms.Bbox\nmatplotlib.transforms.TransformedBbox\nmatplotlib.text.Text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3c23bda903c8990d71d1dee898a5daff/radar_chart.ipynb b/_downloads/3c23bda903c8990d71d1dee898a5daff/radar_chart.ipynb deleted file mode 120000 index dea0dc54a2b..00000000000 --- a/_downloads/3c23bda903c8990d71d1dee898a5daff/radar_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3c23bda903c8990d71d1dee898a5daff/radar_chart.ipynb \ No newline at end of file diff --git a/_downloads/3c40b45aa79f78da08fca5836d270508/annotate_simple_coord03.py b/_downloads/3c40b45aa79f78da08fca5836d270508/annotate_simple_coord03.py deleted file mode 100644 index 88f8668ebef..00000000000 --- a/_downloads/3c40b45aa79f78da08fca5836d270508/annotate_simple_coord03.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -======================= -Annotate Simple Coord03 -======================= - -""" - -import matplotlib.pyplot as plt -from matplotlib.text import OffsetFrom - - -fig, ax = plt.subplots(figsize=(3, 2)) -an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) - -offset_from = OffsetFrom(an1, (0.5, 0)) -an2 = ax.annotate("Test 2", xy=(0.1, 0.1), xycoords="data", - xytext=(0, -10), textcoords=offset_from, - # xytext is offset points from "xy=(0.5, 0), xycoords=an1" - va="top", ha="center", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) -plt.show() diff --git a/_downloads/3c457f1b4405a3d5a4e54b5c67fd89b4/axisartist.ipynb b/_downloads/3c457f1b4405a3d5a4e54b5c67fd89b4/axisartist.ipynb deleted file mode 120000 index 9c4c108f305..00000000000 --- a/_downloads/3c457f1b4405a3d5a4e54b5c67fd89b4/axisartist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3c457f1b4405a3d5a4e54b5c67fd89b4/axisartist.ipynb \ No newline at end of file diff --git a/_downloads/3c48f557f84fa2bcfabca998a81fa804/annotate_text_arrow.py b/_downloads/3c48f557f84fa2bcfabca998a81fa804/annotate_text_arrow.py deleted file mode 100644 index 193fe52efbb..00000000000 --- a/_downloads/3c48f557f84fa2bcfabca998a81fa804/annotate_text_arrow.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=================== -Annotate Text Arrow -=================== - -""" - -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(5, 5)) -ax.set_aspect(1) - -x1 = -1 + np.random.randn(100) -y1 = -1 + np.random.randn(100) -x2 = 1. + np.random.randn(100) -y2 = 1. + np.random.randn(100) - -ax.scatter(x1, y1, color="r") -ax.scatter(x2, y2, color="g") - -bbox_props = dict(boxstyle="round", fc="w", ec="0.5", alpha=0.9) -ax.text(-2, -2, "Sample A", ha="center", va="center", size=20, - bbox=bbox_props) -ax.text(2, 2, "Sample B", ha="center", va="center", size=20, - bbox=bbox_props) - - -bbox_props = dict(boxstyle="rarrow", fc=(0.8, 0.9, 0.9), ec="b", lw=2) -t = ax.text(0, 0, "Direction", ha="center", va="center", rotation=45, - size=15, - bbox=bbox_props) - -bb = t.get_bbox_patch() -bb.set_boxstyle("rarrow", pad=0.6) - -ax.set_xlim(-4, 4) -ax.set_ylim(-4, 4) - -plt.show() diff --git a/_downloads/3c51efd043d2ff7b3b4a1c6be6ef23d8/colormap_reference.ipynb b/_downloads/3c51efd043d2ff7b3b4a1c6be6ef23d8/colormap_reference.ipynb deleted file mode 100644 index 6e0a65f69db..00000000000 --- a/_downloads/3c51efd043d2ff7b3b4a1c6be6ef23d8/colormap_reference.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap reference\n\n\nReference for colormaps included with Matplotlib.\n\nA reversed version of each of these colormaps is available by appending\n``_r`` to the name, e.g., ``viridis_r``.\n\nSee :doc:`/tutorials/colors/colormaps` for an in-depth discussion about\ncolormaps, including colorblind-friendliness.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ncmaps = [('Perceptually Uniform Sequential', [\n 'viridis', 'plasma', 'inferno', 'magma', 'cividis']),\n ('Sequential', [\n 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds',\n 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu',\n 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn']),\n ('Sequential (2)', [\n 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink',\n 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia',\n 'hot', 'afmhot', 'gist_heat', 'copper']),\n ('Diverging', [\n 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu',\n 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic']),\n ('Cyclic', ['twilight', 'twilight_shifted', 'hsv']),\n ('Qualitative', [\n 'Pastel1', 'Pastel2', 'Paired', 'Accent',\n 'Dark2', 'Set1', 'Set2', 'Set3',\n 'tab10', 'tab20', 'tab20b', 'tab20c']),\n ('Miscellaneous', [\n 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern',\n 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg',\n 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar'])]\n\n\ngradient = np.linspace(0, 1, 256)\ngradient = np.vstack((gradient, gradient))\n\n\ndef plot_color_gradients(cmap_category, cmap_list):\n # Create figure and adjust figure height to number of colormaps\n nrows = len(cmap_list)\n figh = 0.35 + 0.15 + (nrows + (nrows-1)*0.1)*0.22\n fig, axes = plt.subplots(nrows=nrows, figsize=(6.4, figh))\n fig.subplots_adjust(top=1-.35/figh, bottom=.15/figh, left=0.2, right=0.99)\n\n axes[0].set_title(cmap_category + ' colormaps', fontsize=14)\n\n for ax, name in zip(axes, cmap_list):\n ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name))\n ax.text(-.01, .5, name, va='center', ha='right', fontsize=10,\n transform=ax.transAxes)\n\n # Turn off *all* ticks & spines, not just the ones with colormaps.\n for ax in axes:\n ax.set_axis_off()\n\n\nfor cmap_category, cmap_list in cmaps:\n plot_color_gradients(cmap_category, cmap_list)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.axes.Axes.imshow\nmatplotlib.figure.Figure.text\nmatplotlib.axes.Axes.set_axis_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3c5b4af7f815cc5a3cf3d24e847a393c/bmh.py b/_downloads/3c5b4af7f815cc5a3cf3d24e847a393c/bmh.py deleted file mode 120000 index aa186be8d8a..00000000000 --- a/_downloads/3c5b4af7f815cc5a3cf3d24e847a393c/bmh.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3c5b4af7f815cc5a3cf3d24e847a393c/bmh.py \ No newline at end of file diff --git a/_downloads/3c6f906dd944e44084223c1430b430c5/voxels_rgb.ipynb b/_downloads/3c6f906dd944e44084223c1430b430c5/voxels_rgb.ipynb deleted file mode 120000 index af2c5b6471e..00000000000 --- a/_downloads/3c6f906dd944e44084223c1430b430c5/voxels_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3c6f906dd944e44084223c1430b430c5/voxels_rgb.ipynb \ No newline at end of file diff --git a/_downloads/3c70239ca296fbd6f0e0258d94b81620/image_masked.ipynb b/_downloads/3c70239ca296fbd6f0e0258d94b81620/image_masked.ipynb deleted file mode 120000 index 0fbdac9ea10..00000000000 --- a/_downloads/3c70239ca296fbd6f0e0258d94b81620/image_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3c70239ca296fbd6f0e0258d94b81620/image_masked.ipynb \ No newline at end of file diff --git a/_downloads/3c7216eef6cb1e2d5af30a629599e96c/legend_picking.ipynb b/_downloads/3c7216eef6cb1e2d5af30a629599e96c/legend_picking.ipynb deleted file mode 120000 index aaf8b8c1aa9..00000000000 --- a/_downloads/3c7216eef6cb1e2d5af30a629599e96c/legend_picking.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3c7216eef6cb1e2d5af30a629599e96c/legend_picking.ipynb \ No newline at end of file diff --git a/_downloads/3c72e5c030d9a8c672de466fc91c26af/mixed_subplots.ipynb b/_downloads/3c72e5c030d9a8c672de466fc91c26af/mixed_subplots.ipynb deleted file mode 100644 index 6567a9948d6..00000000000 --- a/_downloads/3c72e5c030d9a8c672de466fc91c26af/mixed_subplots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=================================\n2D and 3D *Axes* in same *Figure*\n=================================\n\nThis example shows a how to plot a 2D and 3D plot on the same figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef f(t):\n return np.cos(2*np.pi*t) * np.exp(-t)\n\n\n# Set up a figure twice as tall as it is wide\nfig = plt.figure(figsize=plt.figaspect(2.))\nfig.suptitle('A tale of 2 subplots')\n\n# First subplot\nax = fig.add_subplot(2, 1, 1)\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\nt3 = np.arange(0.0, 2.0, 0.01)\n\nax.plot(t1, f(t1), 'bo',\n t2, f(t2), 'k--', markerfacecolor='green')\nax.grid(True)\nax.set_ylabel('Damped oscillation')\n\n# Second subplot\nax = fig.add_subplot(2, 1, 2, projection='3d')\n\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\nsurf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1,\n linewidth=0, antialiased=False)\nax.set_zlim(-1, 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3c75099836d268fdfdc3ba5e79d4529b/marker_reference.ipynb b/_downloads/3c75099836d268fdfdc3ba5e79d4529b/marker_reference.ipynb deleted file mode 120000 index 8a4d985195c..00000000000 --- a/_downloads/3c75099836d268fdfdc3ba5e79d4529b/marker_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3c75099836d268fdfdc3ba5e79d4529b/marker_reference.ipynb \ No newline at end of file diff --git a/_downloads/3c7d117bdccfcd5e4e5bb1f03fa974ae/bars3d.ipynb b/_downloads/3c7d117bdccfcd5e4e5bb1f03fa974ae/bars3d.ipynb deleted file mode 120000 index 60ce5501d5f..00000000000 --- a/_downloads/3c7d117bdccfcd5e4e5bb1f03fa974ae/bars3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3c7d117bdccfcd5e4e5bb1f03fa974ae/bars3d.ipynb \ No newline at end of file diff --git a/_downloads/3c9ad5685b40d89fad9d4d7fcab996d8/zoom_window.ipynb b/_downloads/3c9ad5685b40d89fad9d4d7fcab996d8/zoom_window.ipynb deleted file mode 120000 index 12a4a8ceb96..00000000000 --- a/_downloads/3c9ad5685b40d89fad9d4d7fcab996d8/zoom_window.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3c9ad5685b40d89fad9d4d7fcab996d8/zoom_window.ipynb \ No newline at end of file diff --git a/_downloads/3c9b7bc861cca4996d19c1e1ae1a1e49/connectionstyle_demo.ipynb b/_downloads/3c9b7bc861cca4996d19c1e1ae1a1e49/connectionstyle_demo.ipynb deleted file mode 120000 index 75052bc4b5c..00000000000 --- a/_downloads/3c9b7bc861cca4996d19c1e1ae1a1e49/connectionstyle_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3c9b7bc861cca4996d19c1e1ae1a1e49/connectionstyle_demo.ipynb \ No newline at end of file diff --git a/_downloads/3ca00d327976425ddb4d04222f2821d0/anchored_box02.ipynb b/_downloads/3ca00d327976425ddb4d04222f2821d0/anchored_box02.ipynb deleted file mode 120000 index 17f92d1858a..00000000000 --- a/_downloads/3ca00d327976425ddb4d04222f2821d0/anchored_box02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/3ca00d327976425ddb4d04222f2821d0/anchored_box02.ipynb \ No newline at end of file diff --git a/_downloads/3ca46a06b1d3b9f7319e6e644a556594/lasso_selector_demo_sgskip.ipynb b/_downloads/3ca46a06b1d3b9f7319e6e644a556594/lasso_selector_demo_sgskip.ipynb deleted file mode 120000 index 659182fbdbc..00000000000 --- a/_downloads/3ca46a06b1d3b9f7319e6e644a556594/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ca46a06b1d3b9f7319e6e644a556594/lasso_selector_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/3cb4d59b555da75ae841a765b41e5156/tick_xlabel_top.ipynb b/_downloads/3cb4d59b555da75ae841a765b41e5156/tick_xlabel_top.ipynb deleted file mode 120000 index acc15989fdd..00000000000 --- a/_downloads/3cb4d59b555da75ae841a765b41e5156/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3cb4d59b555da75ae841a765b41e5156/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/3cb59af9521715bc2c4ba915b8c3d9a2/embedding_in_tk_sgskip.ipynb b/_downloads/3cb59af9521715bc2c4ba915b8c3d9a2/embedding_in_tk_sgskip.ipynb deleted file mode 100644 index 01be0f63dcc..00000000000 --- a/_downloads/3cb59af9521715bc2c4ba915b8c3d9a2/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in Tk\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import tkinter\n\nfrom matplotlib.backends.backend_tkagg import (\n FigureCanvasTkAgg, NavigationToolbar2Tk)\n# Implement the default Matplotlib key bindings.\nfrom matplotlib.backend_bases import key_press_handler\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\n\nroot = tkinter.Tk()\nroot.wm_title(\"Embedding in Tk\")\n\nfig = Figure(figsize=(5, 4), dpi=100)\nt = np.arange(0, 3, .01)\nfig.add_subplot(111).plot(t, 2 * np.sin(2 * np.pi * t))\n\ncanvas = FigureCanvasTkAgg(fig, master=root) # A tk.DrawingArea.\ncanvas.draw()\ncanvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1)\n\ntoolbar = NavigationToolbar2Tk(canvas, root)\ntoolbar.update()\ncanvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1)\n\n\ndef on_key_press(event):\n print(\"you pressed {}\".format(event.key))\n key_press_handler(event, canvas, toolbar)\n\n\ncanvas.mpl_connect(\"key_press_event\", on_key_press)\n\n\ndef _quit():\n root.quit() # stops mainloop\n root.destroy() # this is necessary on Windows to prevent\n # Fatal Python Error: PyEval_RestoreThread: NULL tstate\n\n\nbutton = tkinter.Button(master=root, text=\"Quit\", command=_quit)\nbutton.pack(side=tkinter.BOTTOM)\n\ntkinter.mainloop()\n# If you put root.destroy() here, it will cause an error if the window is\n# closed with the window manager." - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3cb7ebdf43f5df6fb1617eba35c50b05/demo_ribbon_box.ipynb b/_downloads/3cb7ebdf43f5df6fb1617eba35c50b05/demo_ribbon_box.ipynb deleted file mode 100644 index fb3c73a6b93..00000000000 --- a/_downloads/3cb7ebdf43f5df6fb1617eba35c50b05/demo_ribbon_box.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ribbon Box\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib import cbook, colors as mcolors\nfrom matplotlib.image import AxesImage\nimport matplotlib.pyplot as plt\nfrom matplotlib.transforms import Bbox, TransformedBbox, BboxTransformTo\n\n\nclass RibbonBox:\n\n original_image = plt.imread(\n cbook.get_sample_data(\"Minduka_Present_Blue_Pack.png\"))\n cut_location = 70\n b_and_h = original_image[:, :, 2:3]\n color = original_image[:, :, 2:3] - original_image[:, :, 0:1]\n alpha = original_image[:, :, 3:4]\n nx = original_image.shape[1]\n\n def __init__(self, color):\n rgb = mcolors.to_rgba(color)[:3]\n self.im = np.dstack(\n [self.b_and_h - self.color * (1 - np.array(rgb)), self.alpha])\n\n def get_stretched_image(self, stretch_factor):\n stretch_factor = max(stretch_factor, 1)\n ny, nx, nch = self.im.shape\n ny2 = int(ny*stretch_factor)\n return np.vstack(\n [self.im[:self.cut_location],\n np.broadcast_to(\n self.im[self.cut_location], (ny2 - ny, nx, nch)),\n self.im[self.cut_location:]])\n\n\nclass RibbonBoxImage(AxesImage):\n zorder = 1\n\n def __init__(self, ax, bbox, color, *, extent=(0, 1, 0, 1), **kwargs):\n super().__init__(ax, extent=extent, **kwargs)\n self._bbox = bbox\n self._ribbonbox = RibbonBox(color)\n self.set_transform(BboxTransformTo(bbox))\n\n def draw(self, renderer, *args, **kwargs):\n stretch_factor = self._bbox.height / self._bbox.width\n\n ny = int(stretch_factor*self._ribbonbox.nx)\n if self.get_array() is None or self.get_array().shape[0] != ny:\n arr = self._ribbonbox.get_stretched_image(stretch_factor)\n self.set_array(arr)\n\n super().draw(renderer, *args, **kwargs)\n\n\ndef main():\n fig, ax = plt.subplots()\n\n years = np.arange(2004, 2009)\n heights = [7900, 8100, 7900, 6900, 2800]\n box_colors = [\n (0.8, 0.2, 0.2),\n (0.2, 0.8, 0.2),\n (0.2, 0.2, 0.8),\n (0.7, 0.5, 0.8),\n (0.3, 0.8, 0.7),\n ]\n\n for year, h, bc in zip(years, heights, box_colors):\n bbox0 = Bbox.from_extents(year - 0.4, 0., year + 0.4, h)\n bbox = TransformedBbox(bbox0, ax.transData)\n ax.add_artist(RibbonBoxImage(ax, bbox, bc, interpolation=\"bicubic\"))\n ax.annotate(str(h), (year, h), va=\"bottom\", ha=\"center\")\n\n ax.set_xlim(years[0] - 0.5, years[-1] + 0.5)\n ax.set_ylim(0, 10000)\n\n background_gradient = np.zeros((2, 2, 4))\n background_gradient[:, :, :3] = [1, 1, 0]\n background_gradient[:, :, 3] = [[0.1, 0.3], [0.3, 0.5]] # alpha channel\n ax.imshow(background_gradient, interpolation=\"bicubic\", zorder=0.1,\n extent=(0, 1, 0, 1), transform=ax.transAxes, aspect=\"auto\")\n\n plt.show()\n\n\nmain()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3cb85c1fe314cb686796ccb17908e208/line_collection.ipynb b/_downloads/3cb85c1fe314cb686796ccb17908e208/line_collection.ipynb deleted file mode 100644 index 1132efe1107..00000000000 --- a/_downloads/3cb85c1fe314cb686796ccb17908e208/line_collection.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Line Collection\n\n\nPlotting lines with Matplotlib.\n\n:class:`~matplotlib.collections.LineCollection` allows one to plot multiple\nlines on a figure. Below we show off some of its properties.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.collections import LineCollection\nfrom matplotlib import colors as mcolors\n\nimport numpy as np\n\n# In order to efficiently plot many lines in a single set of axes,\n# Matplotlib has the ability to add the lines all at once. Here is a\n# simple example showing how it is done.\n\nx = np.arange(100)\n# Here are many sets of y to plot vs x\nys = x[:50, np.newaxis] + x[np.newaxis, :]\n\nsegs = np.zeros((50, 100, 2))\nsegs[:, :, 1] = ys\nsegs[:, :, 0] = x\n\n# Mask some values to test masked array support:\nsegs = np.ma.masked_where((segs > 50) & (segs < 60), segs)\n\n# We need to set the plot limits.\nfig, ax = plt.subplots()\nax.set_xlim(x.min(), x.max())\nax.set_ylim(ys.min(), ys.max())\n\n# colors is sequence of rgba tuples\n# linestyle is a string or dash tuple. Legal string values are\n# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq)\n# where onoffseq is an even length tuple of on and off ink in points.\n# If linestyle is omitted, 'solid' is used\n# See :class:`matplotlib.collections.LineCollection` for more information\ncolors = [mcolors.to_rgba(c)\n for c in plt.rcParams['axes.prop_cycle'].by_key()['color']]\n\nline_segments = LineCollection(segs, linewidths=(0.5, 1, 1.5, 2),\n colors=colors, linestyle='solid')\nax.add_collection(line_segments)\nax.set_title('Line collection with masked arrays')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In order to efficiently plot many lines in a single set of axes,\nMatplotlib has the ability to add the lines all at once. Here is a\nsimple example showing how it is done.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 50\nx = np.arange(N)\n# Here are many sets of y to plot vs x\nys = [x + i for i in x]\n\n# We need to set the plot limits, they will not autoscale\nfig, ax = plt.subplots()\nax.set_xlim(np.min(x), np.max(x))\nax.set_ylim(np.min(ys), np.max(ys))\n\n# colors is sequence of rgba tuples\n# linestyle is a string or dash tuple. Legal string values are\n# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq)\n# where onoffseq is an even length tuple of on and off ink in points.\n# If linestyle is omitted, 'solid' is used\n# See :class:`matplotlib.collections.LineCollection` for more information\n\n# Make a sequence of x,y pairs\nline_segments = LineCollection([np.column_stack([x, y]) for y in ys],\n linewidths=(0.5, 1, 1.5, 2),\n linestyles='solid')\nline_segments.set_array(x)\nax.add_collection(line_segments)\naxcb = fig.colorbar(line_segments)\naxcb.set_label('Line Number')\nax.set_title('Line Collection with mapped colors')\nplt.sci(line_segments) # This allows interactive changing of the colormap.\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.collections\nmatplotlib.collections.LineCollection\nmatplotlib.cm.ScalarMappable.set_array\nmatplotlib.axes.Axes.add_collection\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.pyplot.sci" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3cbfbe90bbb63a5d34d1a8551ef76500/simple_legend01.ipynb b/_downloads/3cbfbe90bbb63a5d34d1a8551ef76500/simple_legend01.ipynb deleted file mode 120000 index 1da05bac453..00000000000 --- a/_downloads/3cbfbe90bbb63a5d34d1a8551ef76500/simple_legend01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3cbfbe90bbb63a5d34d1a8551ef76500/simple_legend01.ipynb \ No newline at end of file diff --git a/_downloads/3cc51ae27d69e7bdf3896545580435f0/rasterization_demo.py b/_downloads/3cc51ae27d69e7bdf3896545580435f0/rasterization_demo.py deleted file mode 120000 index 8e0814deb16..00000000000 --- a/_downloads/3cc51ae27d69e7bdf3896545580435f0/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3cc51ae27d69e7bdf3896545580435f0/rasterization_demo.py \ No newline at end of file diff --git a/_downloads/3cc6fec5c2863ce9fad2f17b352c0da5/agg_buffer.py b/_downloads/3cc6fec5c2863ce9fad2f17b352c0da5/agg_buffer.py deleted file mode 120000 index 2018f1a1c8b..00000000000 --- a/_downloads/3cc6fec5c2863ce9fad2f17b352c0da5/agg_buffer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/3cc6fec5c2863ce9fad2f17b352c0da5/agg_buffer.py \ No newline at end of file diff --git a/_downloads/3cc767d7ed9885b8bcd7107128533e48/integral.ipynb b/_downloads/3cc767d7ed9885b8bcd7107128533e48/integral.ipynb deleted file mode 120000 index fb0322f5464..00000000000 --- a/_downloads/3cc767d7ed9885b8bcd7107128533e48/integral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3cc767d7ed9885b8bcd7107128533e48/integral.ipynb \ No newline at end of file diff --git a/_downloads/3cc81765acaf3ef31dfcea1a673675a2/colormap_normalizations_bounds.ipynb b/_downloads/3cc81765acaf3ef31dfcea1a673675a2/colormap_normalizations_bounds.ipynb deleted file mode 100644 index e1dc6f1759f..00000000000 --- a/_downloads/3cc81765acaf3ef31dfcea1a673675a2/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Bounds\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n'''\nBoundaryNorm: For this one you provide the boundaries for your colors,\nand the Norm puts the first color in between the first pair, the\nsecond color between the second pair, etc.\n'''\n\nfig, ax = plt.subplots(3, 1, figsize=(8, 8))\nax = ax.flatten()\n# even bounds gives a contour-like effect\nbounds = np.linspace(-1, 1, 10)\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=norm,\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical')\n\n# uneven bounds changes the colormapping:\nbounds = np.array([-0.25, -0.125, 0, 0.5, 1])\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical')\n\npcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3cce71e0693a21efebb16112b9101a2b/confidence_ellipse.ipynb b/_downloads/3cce71e0693a21efebb16112b9101a2b/confidence_ellipse.ipynb deleted file mode 120000 index 89c90e311aa..00000000000 --- a/_downloads/3cce71e0693a21efebb16112b9101a2b/confidence_ellipse.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3cce71e0693a21efebb16112b9101a2b/confidence_ellipse.ipynb \ No newline at end of file diff --git a/_downloads/3cd2d02d2cc6801f344b34006db2a792/contourf_hatching.ipynb b/_downloads/3cd2d02d2cc6801f344b34006db2a792/contourf_hatching.ipynb deleted file mode 120000 index 30deb020de7..00000000000 --- a/_downloads/3cd2d02d2cc6801f344b34006db2a792/contourf_hatching.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3cd2d02d2cc6801f344b34006db2a792/contourf_hatching.ipynb \ No newline at end of file diff --git a/_downloads/3cdb1b9ce14dd9db1580024923c2f393/custom_shaded_3d_surface.ipynb b/_downloads/3cdb1b9ce14dd9db1580024923c2f393/custom_shaded_3d_surface.ipynb deleted file mode 120000 index 5104af5c4a5..00000000000 --- a/_downloads/3cdb1b9ce14dd9db1580024923c2f393/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3cdb1b9ce14dd9db1580024923c2f393/custom_shaded_3d_surface.ipynb \ No newline at end of file diff --git a/_downloads/3cdbd14599f230a6190721e989dba4b1/demo_imagegrid_aspect.ipynb b/_downloads/3cdbd14599f230a6190721e989dba4b1/demo_imagegrid_aspect.ipynb deleted file mode 120000 index e42e9636938..00000000000 --- a/_downloads/3cdbd14599f230a6190721e989dba4b1/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3cdbd14599f230a6190721e989dba4b1/demo_imagegrid_aspect.ipynb \ No newline at end of file diff --git a/_downloads/3ce2ccf3156263946fee9ae6a434efda/shared_axis_demo.py b/_downloads/3ce2ccf3156263946fee9ae6a434efda/shared_axis_demo.py deleted file mode 120000 index be688de8ba4..00000000000 --- a/_downloads/3ce2ccf3156263946fee9ae6a434efda/shared_axis_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3ce2ccf3156263946fee9ae6a434efda/shared_axis_demo.py \ No newline at end of file diff --git a/_downloads/3ce8e15b65a3bc406a12d5cd35b6f8f5/contour_manual.ipynb b/_downloads/3ce8e15b65a3bc406a12d5cd35b6f8f5/contour_manual.ipynb deleted file mode 120000 index 98bcfb71e66..00000000000 --- a/_downloads/3ce8e15b65a3bc406a12d5cd35b6f8f5/contour_manual.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3ce8e15b65a3bc406a12d5cd35b6f8f5/contour_manual.ipynb \ No newline at end of file diff --git a/_downloads/3cec2b947bb49e42886353c3476363c4/image_slices_viewer.py b/_downloads/3cec2b947bb49e42886353c3476363c4/image_slices_viewer.py deleted file mode 100644 index c4f653ccfa5..00000000000 --- a/_downloads/3cec2b947bb49e42886353c3476363c4/image_slices_viewer.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -=================== -Image Slices Viewer -=================== - -Scroll through 2D image slices of a 3D array. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -class IndexTracker(object): - def __init__(self, ax, X): - self.ax = ax - ax.set_title('use scroll wheel to navigate images') - - self.X = X - rows, cols, self.slices = X.shape - self.ind = self.slices//2 - - self.im = ax.imshow(self.X[:, :, self.ind]) - self.update() - - def onscroll(self, event): - print("%s %s" % (event.button, event.step)) - if event.button == 'up': - self.ind = (self.ind + 1) % self.slices - else: - self.ind = (self.ind - 1) % self.slices - self.update() - - def update(self): - self.im.set_data(self.X[:, :, self.ind]) - self.ax.set_ylabel('slice %s' % self.ind) - self.im.axes.figure.canvas.draw() - - -fig, ax = plt.subplots(1, 1) - -X = np.random.rand(20, 20, 40) - -tracker = IndexTracker(ax, X) - - -fig.canvas.mpl_connect('scroll_event', tracker.onscroll) -plt.show() diff --git a/_downloads/3cf31abf6af4976f29bb9a5205dcc7d1/integral.ipynb b/_downloads/3cf31abf6af4976f29bb9a5205dcc7d1/integral.ipynb deleted file mode 100644 index 08977fb78d1..00000000000 --- a/_downloads/3cf31abf6af4976f29bb9a5205dcc7d1/integral.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Integral as the area under a curve\n\n\nAlthough this is a simple example, it demonstrates some important tweaks:\n\n * A simple line plot with custom color and line width.\n * A shaded region created using a Polygon patch.\n * A text label with mathtext rendering.\n * figtext calls to label the x- and y-axes.\n * Use of axis spines to hide the top and right spines.\n * Custom tick placement and labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Polygon\n\n\ndef func(x):\n return (x - 3) * (x - 5) * (x - 7) + 85\n\n\na, b = 2, 9 # integral limits\nx = np.linspace(0, 10)\ny = func(x)\n\nfig, ax = plt.subplots()\nax.plot(x, y, 'r', linewidth=2)\nax.set_ylim(bottom=0)\n\n# Make the shaded region\nix = np.linspace(a, b)\niy = func(ix)\nverts = [(a, 0), *zip(ix, iy), (b, 0)]\npoly = Polygon(verts, facecolor='0.9', edgecolor='0.5')\nax.add_patch(poly)\n\nax.text(0.5 * (a + b), 30, r\"$\\int_a^b f(x)\\mathrm{d}x$\",\n horizontalalignment='center', fontsize=20)\n\nfig.text(0.9, 0.05, '$x$')\nfig.text(0.1, 0.9, '$y$')\n\nax.spines['right'].set_visible(False)\nax.spines['top'].set_visible(False)\nax.xaxis.set_ticks_position('bottom')\n\nax.set_xticks((a, b))\nax.set_xticklabels(('$a$', '$b$'))\nax.set_yticks([])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3cf562cde19e200420cb83f024dd891a/coords_report.py b/_downloads/3cf562cde19e200420cb83f024dd891a/coords_report.py deleted file mode 120000 index 3bcf1b0495a..00000000000 --- a/_downloads/3cf562cde19e200420cb83f024dd891a/coords_report.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3cf562cde19e200420cb83f024dd891a/coords_report.py \ No newline at end of file diff --git a/_downloads/3d028d2dba8235ea0ae7d65d8b7c588b/pcolormesh_levels.ipynb b/_downloads/3d028d2dba8235ea0ae7d65d8b7c588b/pcolormesh_levels.ipynb deleted file mode 100644 index d0e19623e84..00000000000 --- a/_downloads/3d028d2dba8235ea0ae7d65d8b7c588b/pcolormesh_levels.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# pcolormesh\n\n\nShows how to combine Normalization and Colormap instances to draw\n\"levels\" in :meth:`~.axes.Axes.pcolor`, :meth:`~.axes.Axes.pcolormesh`\nand :meth:`~.axes.Axes.imshow` type plots in a similar\nway to the levels keyword argument to contour/contourf.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import BoundaryNorm\nfrom matplotlib.ticker import MaxNLocator\nimport numpy as np\n\n\n# make these smaller to increase the resolution\ndx, dy = 0.05, 0.05\n\n# generate 2 2d grids for the x & y bounds\ny, x = np.mgrid[slice(1, 5 + dy, dy),\n slice(1, 5 + dx, dx)]\n\nz = np.sin(x)**10 + np.cos(10 + y*x) * np.cos(x)\n\n# x and y are bounds, so z should be the value *inside* those bounds.\n# Therefore, remove the last value from the z array.\nz = z[:-1, :-1]\nlevels = MaxNLocator(nbins=15).tick_values(z.min(), z.max())\n\n\n# pick the desired colormap, sensible levels, and define a normalization\n# instance which takes data values and translates those into levels.\ncmap = plt.get_cmap('PiYG')\nnorm = BoundaryNorm(levels, ncolors=cmap.N, clip=True)\n\nfig, (ax0, ax1) = plt.subplots(nrows=2)\n\nim = ax0.pcolormesh(x, y, z, cmap=cmap, norm=norm)\nfig.colorbar(im, ax=ax0)\nax0.set_title('pcolormesh with levels')\n\n\n# contours are *point* based plots, so convert our bound into point\n# centers\ncf = ax1.contourf(x[:-1, :-1] + dx/2.,\n y[:-1, :-1] + dy/2., z, levels=levels,\n cmap=cmap)\nfig.colorbar(cf, ax=ax1)\nax1.set_title('contourf with levels')\n\n# adjust spacing between subplots so `ax1` title and `ax0` tick labels\n# don't overlap\nfig.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.pcolormesh\nmatplotlib.pyplot.pcolormesh\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.BoundaryNorm\nmatplotlib.ticker.MaxNLocator" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3d0316ef2496185a1998e3412329ebed/csd_demo.ipynb b/_downloads/3d0316ef2496185a1998e3412329ebed/csd_demo.ipynb deleted file mode 120000 index 589b14486e2..00000000000 --- a/_downloads/3d0316ef2496185a1998e3412329ebed/csd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3d0316ef2496185a1998e3412329ebed/csd_demo.ipynb \ No newline at end of file diff --git a/_downloads/3d032922ef40235b44f46ad7266b794e/cohere.ipynb b/_downloads/3d032922ef40235b44f46ad7266b794e/cohere.ipynb deleted file mode 120000 index 61b9d89270f..00000000000 --- a/_downloads/3d032922ef40235b44f46ad7266b794e/cohere.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3d032922ef40235b44f46ad7266b794e/cohere.ipynb \ No newline at end of file diff --git a/_downloads/3d06d80ee19b2068099e77d4a1fc635a/date_demo_rrule.ipynb b/_downloads/3d06d80ee19b2068099e77d4a1fc635a/date_demo_rrule.ipynb deleted file mode 120000 index aac09c23785..00000000000 --- a/_downloads/3d06d80ee19b2068099e77d4a1fc635a/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3d06d80ee19b2068099e77d4a1fc635a/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/3d15664633bcfb22e41345a8cab88716/demo_parasite_axes.py b/_downloads/3d15664633bcfb22e41345a8cab88716/demo_parasite_axes.py deleted file mode 120000 index 81bc498e897..00000000000 --- a/_downloads/3d15664633bcfb22e41345a8cab88716/demo_parasite_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3d15664633bcfb22e41345a8cab88716/demo_parasite_axes.py \ No newline at end of file diff --git a/_downloads/3d15fb27a5481710589e81be2ba342ff/poly_editor.ipynb b/_downloads/3d15fb27a5481710589e81be2ba342ff/poly_editor.ipynb deleted file mode 120000 index 5631af724af..00000000000 --- a/_downloads/3d15fb27a5481710589e81be2ba342ff/poly_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3d15fb27a5481710589e81be2ba342ff/poly_editor.ipynb \ No newline at end of file diff --git a/_downloads/3d1afa05be7ed05878a894481e51f382/tick_label_right.py b/_downloads/3d1afa05be7ed05878a894481e51f382/tick_label_right.py deleted file mode 120000 index 531b3d9b48d..00000000000 --- a/_downloads/3d1afa05be7ed05878a894481e51f382/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3d1afa05be7ed05878a894481e51f382/tick_label_right.py \ No newline at end of file diff --git a/_downloads/3d3c34f18d113f9ac7231ed16b9c314c/font_indexing.py b/_downloads/3d3c34f18d113f9ac7231ed16b9c314c/font_indexing.py deleted file mode 100644 index 5599eb31370..00000000000 --- a/_downloads/3d3c34f18d113f9ac7231ed16b9c314c/font_indexing.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -============= -Font indexing -============= - -This example shows how the font tables relate to one another. -""" - -import os - -import matplotlib -from matplotlib.ft2font import ( - FT2Font, KERNING_DEFAULT, KERNING_UNFITTED, KERNING_UNSCALED) - - -font = FT2Font( - os.path.join(matplotlib.get_data_path(), 'fonts/ttf/DejaVuSans.ttf')) -font.set_charmap(0) - -codes = font.get_charmap().items() - -# make a charname to charcode and glyphind dictionary -coded = {} -glyphd = {} -for ccode, glyphind in codes: - name = font.get_glyph_name(glyphind) - coded[name] = ccode - glyphd[name] = glyphind - # print(glyphind, ccode, hex(int(ccode)), name) - -code = coded['A'] -glyph = font.load_char(code) -print(glyph.bbox) -print(glyphd['A'], glyphd['V'], coded['A'], coded['V']) -print('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_DEFAULT)) -print('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNFITTED)) -print('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNSCALED)) -print('AV', font.get_kerning(glyphd['A'], glyphd['T'], KERNING_UNSCALED)) diff --git a/_downloads/3d3f87ad87c2d7227c8696498b23cdac/ellipse_with_units.ipynb b/_downloads/3d3f87ad87c2d7227c8696498b23cdac/ellipse_with_units.ipynb deleted file mode 120000 index f0aa5662ae8..00000000000 --- a/_downloads/3d3f87ad87c2d7227c8696498b23cdac/ellipse_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3d3f87ad87c2d7227c8696498b23cdac/ellipse_with_units.ipynb \ No newline at end of file diff --git a/_downloads/3d4a03ed51914bd9404edf0eb2eb131b/text_layout.ipynb b/_downloads/3d4a03ed51914bd9404edf0eb2eb131b/text_layout.ipynb deleted file mode 100644 index 5e7b30cc740..00000000000 --- a/_downloads/3d4a03ed51914bd9404edf0eb2eb131b/text_layout.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text Layout\n\n\nCreate text with different alignment and rotation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as patches\n\n# build a rectangle in axes coords\nleft, width = .25, .5\nbottom, height = .25, .5\nright = left + width\ntop = bottom + height\n\nfig = plt.figure()\nax = fig.add_axes([0,0,1,1])\n\n# axes coordinates are 0,0 is bottom left and 1,1 is upper right\np = patches.Rectangle(\n (left, bottom), width, height,\n fill=False, transform=ax.transAxes, clip_on=False\n )\n\nax.add_patch(p)\n\nax.text(left, bottom, 'left top',\n horizontalalignment='left',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, bottom, 'left bottom',\n horizontalalignment='left',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right bottom',\n horizontalalignment='right',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right top',\n horizontalalignment='right',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(right, bottom, 'center top',\n horizontalalignment='center',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'right center',\n horizontalalignment='right',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'left center',\n horizontalalignment='left',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(0.5*(left+right), 0.5*(bottom+top), 'middle',\n horizontalalignment='center',\n verticalalignment='center',\n fontsize=20, color='red',\n transform=ax.transAxes)\n\nax.text(right, 0.5*(bottom+top), 'centered',\n horizontalalignment='center',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, top, 'rotated\\nwith newlines',\n horizontalalignment='center',\n verticalalignment='center',\n rotation=45,\n transform=ax.transAxes)\n\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.text\nmatplotlib.pyplot.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3d4cbcaafaa4025a8787772e531bbd5e/hyperlinks_sgskip.py b/_downloads/3d4cbcaafaa4025a8787772e531bbd5e/hyperlinks_sgskip.py deleted file mode 120000 index 23836b3b784..00000000000 --- a/_downloads/3d4cbcaafaa4025a8787772e531bbd5e/hyperlinks_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3d4cbcaafaa4025a8787772e531bbd5e/hyperlinks_sgskip.py \ No newline at end of file diff --git a/_downloads/3d522a9a9cba70655c974270c3c9aeea/polar_bar.py b/_downloads/3d522a9a9cba70655c974270c3c9aeea/polar_bar.py deleted file mode 120000 index 3d70445cec8..00000000000 --- a/_downloads/3d522a9a9cba70655c974270c3c9aeea/polar_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3d522a9a9cba70655c974270c3c9aeea/polar_bar.py \ No newline at end of file diff --git a/_downloads/3d61ececcc624c55bdc6c4aef1af46ae/annotate_simple_coord03.py b/_downloads/3d61ececcc624c55bdc6c4aef1af46ae/annotate_simple_coord03.py deleted file mode 120000 index 81b60ba198d..00000000000 --- a/_downloads/3d61ececcc624c55bdc6c4aef1af46ae/annotate_simple_coord03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3d61ececcc624c55bdc6c4aef1af46ae/annotate_simple_coord03.py \ No newline at end of file diff --git a/_downloads/3d6bba3b9ec27336f8b3d42f8d095bef/buttons.ipynb b/_downloads/3d6bba3b9ec27336f8b3d42f8d095bef/buttons.ipynb deleted file mode 120000 index a1138539acf..00000000000 --- a/_downloads/3d6bba3b9ec27336f8b3d42f8d095bef/buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3d6bba3b9ec27336f8b3d42f8d095bef/buttons.ipynb \ No newline at end of file diff --git a/_downloads/3d702b92ef9cc720f90bd385604a070c/demo_colorbar_with_axes_divider.py b/_downloads/3d702b92ef9cc720f90bd385604a070c/demo_colorbar_with_axes_divider.py deleted file mode 120000 index f4c2c0200cf..00000000000 --- a/_downloads/3d702b92ef9cc720f90bd385604a070c/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3d702b92ef9cc720f90bd385604a070c/demo_colorbar_with_axes_divider.py \ No newline at end of file diff --git a/_downloads/3d73d1a9d9ca509bc349ff771104950c/quiver_demo.py b/_downloads/3d73d1a9d9ca509bc349ff771104950c/quiver_demo.py deleted file mode 120000 index dd6852e95b2..00000000000 --- a/_downloads/3d73d1a9d9ca509bc349ff771104950c/quiver_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3d73d1a9d9ca509bc349ff771104950c/quiver_demo.py \ No newline at end of file diff --git a/_downloads/3d8125065415e7722e62573de9ae1073/axis_direction.py b/_downloads/3d8125065415e7722e62573de9ae1073/axis_direction.py deleted file mode 120000 index b19d20b4924..00000000000 --- a/_downloads/3d8125065415e7722e62573de9ae1073/axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3d8125065415e7722e62573de9ae1073/axis_direction.py \ No newline at end of file diff --git a/_downloads/3d8bf24019a68e4b4129d91842b24e45/auto_subplots_adjust.py b/_downloads/3d8bf24019a68e4b4129d91842b24e45/auto_subplots_adjust.py deleted file mode 120000 index 1bf53db9cad..00000000000 --- a/_downloads/3d8bf24019a68e4b4129d91842b24e45/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3d8bf24019a68e4b4129d91842b24e45/auto_subplots_adjust.py \ No newline at end of file diff --git a/_downloads/3d8fa10068287a7a2d4caa379afac359/contour_image.ipynb b/_downloads/3d8fa10068287a7a2d4caa379afac359/contour_image.ipynb deleted file mode 120000 index 45071709f8b..00000000000 --- a/_downloads/3d8fa10068287a7a2d4caa379afac359/contour_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3d8fa10068287a7a2d4caa379afac359/contour_image.ipynb \ No newline at end of file diff --git a/_downloads/3d99151cb3333403e6781e635cd04154/subplots_adjust.ipynb b/_downloads/3d99151cb3333403e6781e635cd04154/subplots_adjust.ipynb deleted file mode 120000 index 4bd5489fc79..00000000000 --- a/_downloads/3d99151cb3333403e6781e635cd04154/subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3d99151cb3333403e6781e635cd04154/subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/3d9ed4bd74fec2fd15978e0cd1497919/multi_image.py b/_downloads/3d9ed4bd74fec2fd15978e0cd1497919/multi_image.py deleted file mode 120000 index c715187d990..00000000000 --- a/_downloads/3d9ed4bd74fec2fd15978e0cd1497919/multi_image.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3d9ed4bd74fec2fd15978e0cd1497919/multi_image.py \ No newline at end of file diff --git a/_downloads/3d_bars.ipynb b/_downloads/3d_bars.ipynb deleted file mode 120000 index 78a4d2c2fc8..00000000000 --- a/_downloads/3d_bars.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/3d_bars.ipynb \ No newline at end of file diff --git a/_downloads/3d_bars.py b/_downloads/3d_bars.py deleted file mode 120000 index fb57c86c176..00000000000 --- a/_downloads/3d_bars.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/3d_bars.py \ No newline at end of file diff --git a/_downloads/3da0b207f844b56c05fc165a091f3b67/mixed_subplots.py b/_downloads/3da0b207f844b56c05fc165a091f3b67/mixed_subplots.py deleted file mode 120000 index 1ded8940b1b..00000000000 --- a/_downloads/3da0b207f844b56c05fc165a091f3b67/mixed_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3da0b207f844b56c05fc165a091f3b67/mixed_subplots.py \ No newline at end of file diff --git a/_downloads/3db11d884633a883e85929a2484e4de5/double_pendulum_sgskip.py b/_downloads/3db11d884633a883e85929a2484e4de5/double_pendulum_sgskip.py deleted file mode 120000 index f3aa68b6ca5..00000000000 --- a/_downloads/3db11d884633a883e85929a2484e4de5/double_pendulum_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3db11d884633a883e85929a2484e4de5/double_pendulum_sgskip.py \ No newline at end of file diff --git a/_downloads/3db6d54d3a30900cecb780fcc33a3554/blitting.py b/_downloads/3db6d54d3a30900cecb780fcc33a3554/blitting.py deleted file mode 120000 index 60ff29bdfa8..00000000000 --- a/_downloads/3db6d54d3a30900cecb780fcc33a3554/blitting.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3db6d54d3a30900cecb780fcc33a3554/blitting.py \ No newline at end of file diff --git a/_downloads/3dbcdb33310e2c3a9a0841cf3cf375f7/text_commands.ipynb b/_downloads/3dbcdb33310e2c3a9a0841cf3cf375f7/text_commands.ipynb deleted file mode 100644 index 07c7366ab3f..00000000000 --- a/_downloads/3dbcdb33310e2c3a9a0841cf3cf375f7/text_commands.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text Commands\n\n\nPlotting text of many different kinds.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold')\n\nax = fig.add_subplot(111)\nfig.subplots_adjust(top=0.85)\nax.set_title('axes title')\n\nax.set_xlabel('xlabel')\nax.set_ylabel('ylabel')\n\nax.text(3, 8, 'boxed italics text in data coords', style='italic',\n bbox={'facecolor':'red', 'alpha':0.5, 'pad':10})\n\nax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15)\n\nax.text(3, 2, 'unicode: Institut f\\374r Festk\\366rperphysik')\n\nax.text(0.95, 0.01, 'colored text in axes coords',\n verticalalignment='bottom', horizontalalignment='right',\n transform=ax.transAxes,\n color='green', fontsize=15)\n\n\nax.plot([2], [1], 'o')\nax.annotate('annotate', xy=(2, 1), xytext=(3, 4),\n arrowprops=dict(facecolor='black', shrink=0.05))\n\nax.set(xlim=(0, 10), ylim=(0, 10))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure.suptitle\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.figure.Figure.subplots_adjust\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.text\nmatplotlib.axes.Axes.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3dc279735f1cf702e081b2e9ff700956/mri_with_eeg.ipynb b/_downloads/3dc279735f1cf702e081b2e9ff700956/mri_with_eeg.ipynb deleted file mode 120000 index 4e448c09bd5..00000000000 --- a/_downloads/3dc279735f1cf702e081b2e9ff700956/mri_with_eeg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3dc279735f1cf702e081b2e9ff700956/mri_with_eeg.ipynb \ No newline at end of file diff --git a/_downloads/3dc4e869afff9ea4e083cc074ffc5881/simple_axes_divider1.ipynb b/_downloads/3dc4e869afff9ea4e083cc074ffc5881/simple_axes_divider1.ipynb deleted file mode 120000 index b7f95ae4f61..00000000000 --- a/_downloads/3dc4e869afff9ea4e083cc074ffc5881/simple_axes_divider1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3dc4e869afff9ea4e083cc074ffc5881/simple_axes_divider1.ipynb \ No newline at end of file diff --git a/_downloads/3dc88c562de73f85d87e1851e2afa1db/eventcollection_demo.py b/_downloads/3dc88c562de73f85d87e1851e2afa1db/eventcollection_demo.py deleted file mode 120000 index 71f4ccd5aa3..00000000000 --- a/_downloads/3dc88c562de73f85d87e1851e2afa1db/eventcollection_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3dc88c562de73f85d87e1851e2afa1db/eventcollection_demo.py \ No newline at end of file diff --git a/_downloads/3dcb707062dad865dd965e8b03b92dc6/spines.ipynb b/_downloads/3dcb707062dad865dd965e8b03b92dc6/spines.ipynb deleted file mode 120000 index de4d6546c61..00000000000 --- a/_downloads/3dcb707062dad865dd965e8b03b92dc6/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/3dcb707062dad865dd965e8b03b92dc6/spines.ipynb \ No newline at end of file diff --git a/_downloads/3dcf591ef799d6d69fb24883b9dde31e/scatter.ipynb b/_downloads/3dcf591ef799d6d69fb24883b9dde31e/scatter.ipynb deleted file mode 120000 index 5d4a4899014..00000000000 --- a/_downloads/3dcf591ef799d6d69fb24883b9dde31e/scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3dcf591ef799d6d69fb24883b9dde31e/scatter.ipynb \ No newline at end of file diff --git a/_downloads/3dd8f05288de72fa7294d91ebe1e262f/contourf3d_2.py b/_downloads/3dd8f05288de72fa7294d91ebe1e262f/contourf3d_2.py deleted file mode 120000 index 02163eb55d5..00000000000 --- a/_downloads/3dd8f05288de72fa7294d91ebe1e262f/contourf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3dd8f05288de72fa7294d91ebe1e262f/contourf3d_2.py \ No newline at end of file diff --git a/_downloads/3ddb50584cc890658076bff6e5e3ccca/eventcollection_demo.ipynb b/_downloads/3ddb50584cc890658076bff6e5e3ccca/eventcollection_demo.ipynb deleted file mode 120000 index fe06fceea6b..00000000000 --- a/_downloads/3ddb50584cc890658076bff6e5e3ccca/eventcollection_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3ddb50584cc890658076bff6e5e3ccca/eventcollection_demo.ipynb \ No newline at end of file diff --git a/_downloads/3dea05f6f9e86ce7ee2ab378b530e3bc/anchored_box02.ipynb b/_downloads/3dea05f6f9e86ce7ee2ab378b530e3bc/anchored_box02.ipynb deleted file mode 120000 index 5838ed92ec8..00000000000 --- a/_downloads/3dea05f6f9e86ce7ee2ab378b530e3bc/anchored_box02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3dea05f6f9e86ce7ee2ab378b530e3bc/anchored_box02.ipynb \ No newline at end of file diff --git a/_downloads/3defb395b778057f666118596c01d450/date.py b/_downloads/3defb395b778057f666118596c01d450/date.py deleted file mode 120000 index 08832f5c6fe..00000000000 --- a/_downloads/3defb395b778057f666118596c01d450/date.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3defb395b778057f666118596c01d450/date.py \ No newline at end of file diff --git a/_downloads/3df28a3c8ff5be58c4e114559ebb6ac7/triplot_demo.py b/_downloads/3df28a3c8ff5be58c4e114559ebb6ac7/triplot_demo.py deleted file mode 120000 index d49b62ecaaf..00000000000 --- a/_downloads/3df28a3c8ff5be58c4e114559ebb6ac7/triplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3df28a3c8ff5be58c4e114559ebb6ac7/triplot_demo.py \ No newline at end of file diff --git a/_downloads/3dfc308139a73a1d73866f14aa0fa853/image_annotated_heatmap.ipynb b/_downloads/3dfc308139a73a1d73866f14aa0fa853/image_annotated_heatmap.ipynb deleted file mode 100644 index d94c91379e3..00000000000 --- a/_downloads/3dfc308139a73a1d73866f14aa0fa853/image_annotated_heatmap.ipynb +++ /dev/null @@ -1,133 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating annotated heatmaps\n\n\nIt is often desirable to show data which depends on two independent\nvariables as a color coded image plot. This is often referred to as a\nheatmap. If the data is categorical, this would be called a categorical\nheatmap.\nMatplotlib's :meth:`imshow ` function makes\nproduction of such plots particularly easy.\n\nThe following examples show how to create a heatmap with annotations.\nWe will start with an easy example and expand it to be usable as a\nuniversal function.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A simple categorical heatmap\n----------------------------\n\nWe may start by defining some data. What we need is a 2D list or array\nwhich defines the data to color code. We then also need two lists or arrays\nof categories; of course the number of elements in those lists\nneed to match the data along the respective axes.\nThe heatmap itself is an :meth:`imshow ` plot\nwith the labels set to the categories we have.\nNote that it is important to set both, the tick locations\n(:meth:`set_xticks`) as well as the\ntick labels (:meth:`set_xticklabels`),\notherwise they would become out of sync. The locations are just\nthe ascending integer numbers, while the ticklabels are the labels to show.\nFinally we can label the data itself by creating a\n:class:`~matplotlib.text.Text` within each cell showing the value of\nthat cell.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nimport matplotlib.pyplot as plt\n# sphinx_gallery_thumbnail_number = 2\n\nvegetables = [\"cucumber\", \"tomato\", \"lettuce\", \"asparagus\",\n \"potato\", \"wheat\", \"barley\"]\nfarmers = [\"Farmer Joe\", \"Upland Bros.\", \"Smith Gardening\",\n \"Agrifun\", \"Organiculture\", \"BioGoods Ltd.\", \"Cornylee Corp.\"]\n\nharvest = np.array([[0.8, 2.4, 2.5, 3.9, 0.0, 4.0, 0.0],\n [2.4, 0.0, 4.0, 1.0, 2.7, 0.0, 0.0],\n [1.1, 2.4, 0.8, 4.3, 1.9, 4.4, 0.0],\n [0.6, 0.0, 0.3, 0.0, 3.1, 0.0, 0.0],\n [0.7, 1.7, 0.6, 2.6, 2.2, 6.2, 0.0],\n [1.3, 1.2, 0.0, 0.0, 0.0, 3.2, 5.1],\n [0.1, 2.0, 0.0, 1.4, 0.0, 1.9, 6.3]])\n\n\nfig, ax = plt.subplots()\nim = ax.imshow(harvest)\n\n# We want to show all ticks...\nax.set_xticks(np.arange(len(farmers)))\nax.set_yticks(np.arange(len(vegetables)))\n# ... and label them with the respective list entries\nax.set_xticklabels(farmers)\nax.set_yticklabels(vegetables)\n\n# Rotate the tick labels and set their alignment.\nplt.setp(ax.get_xticklabels(), rotation=45, ha=\"right\",\n rotation_mode=\"anchor\")\n\n# Loop over data dimensions and create text annotations.\nfor i in range(len(vegetables)):\n for j in range(len(farmers)):\n text = ax.text(j, i, harvest[i, j],\n ha=\"center\", va=\"center\", color=\"w\")\n\nax.set_title(\"Harvest of local farmers (in tons/year)\")\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using the helper function code style\n------------------------------------\n\nAs discussed in the `Coding styles `\none might want to reuse such code to create some kind of heatmap\nfor different input data and/or on different axes.\nWe create a function that takes the data and the row and column labels as\ninput, and allows arguments that are used to customize the plot\n\nHere, in addition to the above we also want to create a colorbar and\nposition the labels above of the heatmap instead of below it.\nThe annotations shall get different colors depending on a threshold\nfor better contrast against the pixel color.\nFinally, we turn the surrounding axes spines off and create\na grid of white lines to separate the cells.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def heatmap(data, row_labels, col_labels, ax=None,\n cbar_kw={}, cbarlabel=\"\", **kwargs):\n \"\"\"\n Create a heatmap from a numpy array and two lists of labels.\n\n Parameters\n ----------\n data\n A 2D numpy array of shape (N, M).\n row_labels\n A list or array of length N with the labels for the rows.\n col_labels\n A list or array of length M with the labels for the columns.\n ax\n A `matplotlib.axes.Axes` instance to which the heatmap is plotted. If\n not provided, use current axes or create a new one. Optional.\n cbar_kw\n A dictionary with arguments to `matplotlib.Figure.colorbar`. Optional.\n cbarlabel\n The label for the colorbar. Optional.\n **kwargs\n All other arguments are forwarded to `imshow`.\n \"\"\"\n\n if not ax:\n ax = plt.gca()\n\n # Plot the heatmap\n im = ax.imshow(data, **kwargs)\n\n # Create colorbar\n cbar = ax.figure.colorbar(im, ax=ax, **cbar_kw)\n cbar.ax.set_ylabel(cbarlabel, rotation=-90, va=\"bottom\")\n\n # We want to show all ticks...\n ax.set_xticks(np.arange(data.shape[1]))\n ax.set_yticks(np.arange(data.shape[0]))\n # ... and label them with the respective list entries.\n ax.set_xticklabels(col_labels)\n ax.set_yticklabels(row_labels)\n\n # Let the horizontal axes labeling appear on top.\n ax.tick_params(top=True, bottom=False,\n labeltop=True, labelbottom=False)\n\n # Rotate the tick labels and set their alignment.\n plt.setp(ax.get_xticklabels(), rotation=-30, ha=\"right\",\n rotation_mode=\"anchor\")\n\n # Turn spines off and create white grid.\n for edge, spine in ax.spines.items():\n spine.set_visible(False)\n\n ax.set_xticks(np.arange(data.shape[1]+1)-.5, minor=True)\n ax.set_yticks(np.arange(data.shape[0]+1)-.5, minor=True)\n ax.grid(which=\"minor\", color=\"w\", linestyle='-', linewidth=3)\n ax.tick_params(which=\"minor\", bottom=False, left=False)\n\n return im, cbar\n\n\ndef annotate_heatmap(im, data=None, valfmt=\"{x:.2f}\",\n textcolors=[\"black\", \"white\"],\n threshold=None, **textkw):\n \"\"\"\n A function to annotate a heatmap.\n\n Parameters\n ----------\n im\n The AxesImage to be labeled.\n data\n Data used to annotate. If None, the image's data is used. Optional.\n valfmt\n The format of the annotations inside the heatmap. This should either\n use the string format method, e.g. \"$ {x:.2f}\", or be a\n `matplotlib.ticker.Formatter`. Optional.\n textcolors\n A list or array of two color specifications. The first is used for\n values below a threshold, the second for those above. Optional.\n threshold\n Value in data units according to which the colors from textcolors are\n applied. If None (the default) uses the middle of the colormap as\n separation. Optional.\n **kwargs\n All other arguments are forwarded to each call to `text` used to create\n the text labels.\n \"\"\"\n\n if not isinstance(data, (list, np.ndarray)):\n data = im.get_array()\n\n # Normalize the threshold to the images color range.\n if threshold is not None:\n threshold = im.norm(threshold)\n else:\n threshold = im.norm(data.max())/2.\n\n # Set default alignment to center, but allow it to be\n # overwritten by textkw.\n kw = dict(horizontalalignment=\"center\",\n verticalalignment=\"center\")\n kw.update(textkw)\n\n # Get the formatter in case a string is supplied\n if isinstance(valfmt, str):\n valfmt = matplotlib.ticker.StrMethodFormatter(valfmt)\n\n # Loop over the data and create a `Text` for each \"pixel\".\n # Change the text's color depending on the data.\n texts = []\n for i in range(data.shape[0]):\n for j in range(data.shape[1]):\n kw.update(color=textcolors[int(im.norm(data[i, j]) > threshold)])\n text = im.axes.text(j, i, valfmt(data[i, j], None), **kw)\n texts.append(text)\n\n return texts" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The above now allows us to keep the actual plot creation pretty compact.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\nim, cbar = heatmap(harvest, vegetables, farmers, ax=ax,\n cmap=\"YlGn\", cbarlabel=\"harvest [t/year]\")\ntexts = annotate_heatmap(im, valfmt=\"{x:.1f} t\")\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Some more complex heatmap examples\n----------------------------------\n\nIn the following we show the versatility of the previously created\nfunctions by applying it in different cases and using different arguments.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "np.random.seed(19680801)\n\nfig, ((ax, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(8, 6))\n\n# Replicate the above example with a different font size and colormap.\n\nim, _ = heatmap(harvest, vegetables, farmers, ax=ax,\n cmap=\"Wistia\", cbarlabel=\"harvest [t/year]\")\nannotate_heatmap(im, valfmt=\"{x:.1f}\", size=7)\n\n# Create some new data, give further arguments to imshow (vmin),\n# use an integer format on the annotations and provide some colors.\n\ndata = np.random.randint(2, 100, size=(7, 7))\ny = [\"Book {}\".format(i) for i in range(1, 8)]\nx = [\"Store {}\".format(i) for i in list(\"ABCDEFG\")]\nim, _ = heatmap(data, y, x, ax=ax2, vmin=0,\n cmap=\"magma_r\", cbarlabel=\"weekly sold copies\")\nannotate_heatmap(im, valfmt=\"{x:d}\", size=7, threshold=20,\n textcolors=[\"red\", \"white\"])\n\n# Sometimes even the data itself is categorical. Here we use a\n# :class:`matplotlib.colors.BoundaryNorm` to get the data into classes\n# and use this to colorize the plot, but also to obtain the class\n# labels from an array of classes.\n\ndata = np.random.randn(6, 6)\ny = [\"Prod. {}\".format(i) for i in range(10, 70, 10)]\nx = [\"Cycle {}\".format(i) for i in range(1, 7)]\n\nqrates = np.array(list(\"ABCDEFG\"))\nnorm = matplotlib.colors.BoundaryNorm(np.linspace(-3.5, 3.5, 8), 7)\nfmt = matplotlib.ticker.FuncFormatter(lambda x, pos: qrates[::-1][norm(x)])\n\nim, _ = heatmap(data, y, x, ax=ax3,\n cmap=plt.get_cmap(\"PiYG\", 7), norm=norm,\n cbar_kw=dict(ticks=np.arange(-3, 4), format=fmt),\n cbarlabel=\"Quality Rating\")\n\nannotate_heatmap(im, valfmt=fmt, size=9, fontweight=\"bold\", threshold=-1,\n textcolors=[\"red\", \"black\"])\n\n# We can nicely plot a correlation matrix. Since this is bound by -1 and 1,\n# we use those as vmin and vmax. We may also remove leading zeros and hide\n# the diagonal elements (which are all 1) by using a\n# :class:`matplotlib.ticker.FuncFormatter`.\n\ncorr_matrix = np.corrcoef(np.random.rand(6, 5))\nim, _ = heatmap(corr_matrix, vegetables, vegetables, ax=ax4,\n cmap=\"PuOr\", vmin=-1, vmax=1,\n cbarlabel=\"correlation coeff.\")\n\n\ndef func(x, pos):\n return \"{:.2f}\".format(x).replace(\"0.\", \".\").replace(\"1.00\", \"\")\n\nannotate_heatmap(im, valfmt=matplotlib.ticker.FuncFormatter(func), size=7)\n\n\nplt.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe usage of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3e0213408ba03a173ecf0c7d0aeb82dc/demo_text_rotation_mode.ipynb b/_downloads/3e0213408ba03a173ecf0c7d0aeb82dc/demo_text_rotation_mode.ipynb deleted file mode 120000 index feab89c719c..00000000000 --- a/_downloads/3e0213408ba03a173ecf0c7d0aeb82dc/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3e0213408ba03a173ecf0c7d0aeb82dc/demo_text_rotation_mode.ipynb \ No newline at end of file diff --git a/_downloads/3e0dd812ad4d72c85aa2ab2426e015b1/titles_demo.py b/_downloads/3e0dd812ad4d72c85aa2ab2426e015b1/titles_demo.py deleted file mode 120000 index 1d46db57a71..00000000000 --- a/_downloads/3e0dd812ad4d72c85aa2ab2426e015b1/titles_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3e0dd812ad4d72c85aa2ab2426e015b1/titles_demo.py \ No newline at end of file diff --git a/_downloads/3e1134ffd2662d0ad0c453c6dfb7882d/scatter_hist.py b/_downloads/3e1134ffd2662d0ad0c453c6dfb7882d/scatter_hist.py deleted file mode 120000 index d626da7c0f1..00000000000 --- a/_downloads/3e1134ffd2662d0ad0c453c6dfb7882d/scatter_hist.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3e1134ffd2662d0ad0c453c6dfb7882d/scatter_hist.py \ No newline at end of file diff --git a/_downloads/3e11cd1327632b05067755615ae87ede/whats_new_99_axes_grid.ipynb b/_downloads/3e11cd1327632b05067755615ae87ede/whats_new_99_axes_grid.ipynb deleted file mode 100644 index 690b6628658..00000000000 --- a/_downloads/3e11cd1327632b05067755615ae87ede/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n========================\nWhats New 0.99 Axes Grid\n========================\n\nCreate RGB composite images.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_rgb import RGBAxes\n\n\ndef get_demo_image():\n # prepare image\n delta = 0.5\n\n extent = (-3, 4, -4, 3)\n x = np.arange(-3.0, 4.001, delta)\n y = np.arange(-4.0, 3.001, delta)\n X, Y = np.meshgrid(x, y)\n Z1 = np.exp(-X**2 - Y**2)\n Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\n Z = (Z1 - Z2) * 2\n\n return Z, extent\n\n\ndef get_rgb():\n Z, extent = get_demo_image()\n\n Z[Z < 0] = 0.\n Z = Z / Z.max()\n\n R = Z[:13, :13]\n G = Z[2:, 2:]\n B = Z[:13, 2:]\n\n return R, G, B\n\n\nfig = plt.figure()\nax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8])\n\nr, g, b = get_rgb()\nkwargs = dict(origin=\"lower\", interpolation=\"nearest\")\nax.imshow_rgb(r, g, b, **kwargs)\n\nax.RGB.set_xlim(0., 9.5)\nax.RGB.set_ylim(0.9, 10.6)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits\nmpl_toolkits.axes_grid1.axes_rgb.RGBAxes\nmpl_toolkits.axes_grid1.axes_rgb.RGBAxes.imshow_rgb" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3e11ebf56dd4f181ec0ed7b2d2e8fe9b/spines_bounds.py b/_downloads/3e11ebf56dd4f181ec0ed7b2d2e8fe9b/spines_bounds.py deleted file mode 100644 index d38f5f450a7..00000000000 --- a/_downloads/3e11ebf56dd4f181ec0ed7b2d2e8fe9b/spines_bounds.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -=================== -Custom spine bounds -=================== - -Demo of spines using custom bounds to limit the extent of the spine. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x = np.linspace(0, 2*np.pi, 50) -y = np.sin(x) -y2 = y + 0.1 * np.random.normal(size=x.shape) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.plot(x, y2) - -# set ticks and tick labels -ax.set_xlim((0, 2*np.pi)) -ax.set_xticks([0, np.pi, 2*np.pi]) -ax.set_xticklabels(['0', r'$\pi$', r'2$\pi$']) -ax.set_ylim((-1.5, 1.5)) -ax.set_yticks([-1, 0, 1]) - -# Only draw spine between the y-ticks -ax.spines['left'].set_bounds(-1, 1) -# Hide the right and top spines -ax.spines['right'].set_visible(False) -ax.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax.yaxis.set_ticks_position('left') -ax.xaxis.set_ticks_position('bottom') - -plt.show() diff --git a/_downloads/3e2d956885c639cda96f22a17319812a/pie_demo2.py b/_downloads/3e2d956885c639cda96f22a17319812a/pie_demo2.py deleted file mode 120000 index 5528e77dc12..00000000000 --- a/_downloads/3e2d956885c639cda96f22a17319812a/pie_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3e2d956885c639cda96f22a17319812a/pie_demo2.py \ No newline at end of file diff --git a/_downloads/3e2e2f2807f06183108be8feac1d2587/marker_fillstyle_reference.py b/_downloads/3e2e2f2807f06183108be8feac1d2587/marker_fillstyle_reference.py deleted file mode 100644 index 512bc4c5da5..00000000000 --- a/_downloads/3e2e2f2807f06183108be8feac1d2587/marker_fillstyle_reference.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -===================== -Marker filling-styles -===================== - -Reference for marker fill-styles included with Matplotlib. - -Also refer to the -:doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference` -and :doc:`/gallery/shapes_and_collections/marker_path` examples. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.lines import Line2D - - -points = np.ones(5) # Draw 5 points for each line -marker_style = dict(color='tab:blue', linestyle=':', marker='o', - markersize=15, markerfacecoloralt='tab:red') - -fig, ax = plt.subplots() - -# Plot all fill styles. -for y, fill_style in enumerate(Line2D.fillStyles): - ax.text(-0.5, y, repr(fill_style), - horizontalalignment='center', verticalalignment='center') - ax.plot(y * points, fillstyle=fill_style, **marker_style) - -ax.set_axis_off() -ax.set_title('fill style') - -plt.show() diff --git a/_downloads/3e31c8401cd35be41872a69a0d97421f/simple_anim.ipynb b/_downloads/3e31c8401cd35be41872a69a0d97421f/simple_anim.ipynb deleted file mode 120000 index c756d3a2baf..00000000000 --- a/_downloads/3e31c8401cd35be41872a69a0d97421f/simple_anim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3e31c8401cd35be41872a69a0d97421f/simple_anim.ipynb \ No newline at end of file diff --git a/_downloads/3e355833e552e4a0f4734e0a28a103ec/plotfile_demo.ipynb b/_downloads/3e355833e552e4a0f4734e0a28a103ec/plotfile_demo.ipynb deleted file mode 100644 index 94b4451a15a..00000000000 --- a/_downloads/3e355833e552e4a0f4734e0a28a103ec/plotfile_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotfile Demo\n\n\nExample use of ``plotfile`` to plot data directly from a file.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\n\nfname = cbook.get_sample_data('msft.csv', asfileobj=False)\nfname2 = cbook.get_sample_data('data_x_x2_x3.csv', asfileobj=False)\n\n# test 1; use ints\nplt.plotfile(fname, (0, 5, 6))\n\n# test 2; use names\nplt.plotfile(fname, ('date', 'volume', 'adj_close'))\n\n# test 3; use semilogy for volume\nplt.plotfile(fname, ('date', 'volume', 'adj_close'),\n plotfuncs={'volume': 'semilogy'})\n\n# test 4; use semilogy for volume\nplt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'semilogy'})\n\n# test 5; single subplot\nplt.plotfile(fname, ('date', 'open', 'high', 'low', 'close'), subplots=False)\n\n# test 6; labeling, if no names in csv-file\nplt.plotfile(fname2, cols=(0, 1, 2), delimiter=' ',\n names=['$x$', '$f(x)=x^2$', '$f(x)=x^3$'])\n\n# test 7; more than one file per figure--illustrated here with a single file\nplt.plotfile(fname2, cols=(0, 1), delimiter=' ')\nplt.plotfile(fname2, cols=(0, 2), newfig=False,\n delimiter=' ') # use current figure\nplt.xlabel(r'$x$')\nplt.ylabel(r'$f(x) = x^2, x^3$')\n\n# test 8; use bar for volume\nplt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'bar'})\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3e3ceb2ab7af601ff65eca2b0eeba5eb/axes_margins.ipynb b/_downloads/3e3ceb2ab7af601ff65eca2b0eeba5eb/axes_margins.ipynb deleted file mode 120000 index 9999243a88d..00000000000 --- a/_downloads/3e3ceb2ab7af601ff65eca2b0eeba5eb/axes_margins.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3e3ceb2ab7af601ff65eca2b0eeba5eb/axes_margins.ipynb \ No newline at end of file diff --git a/_downloads/3e48e6759aa6c96054d5bcad0017d485/demo_anchored_direction_arrows.ipynb b/_downloads/3e48e6759aa6c96054d5bcad0017d485/demo_anchored_direction_arrows.ipynb deleted file mode 120000 index 52ba8c39bb4..00000000000 --- a/_downloads/3e48e6759aa6c96054d5bcad0017d485/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3e48e6759aa6c96054d5bcad0017d485/demo_anchored_direction_arrows.ipynb \ No newline at end of file diff --git a/_downloads/3e49b41bad58a5fe4ed136d033412e7c/tex_demo.py b/_downloads/3e49b41bad58a5fe4ed136d033412e7c/tex_demo.py deleted file mode 120000 index ad7294c0a8f..00000000000 --- a/_downloads/3e49b41bad58a5fe4ed136d033412e7c/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3e49b41bad58a5fe4ed136d033412e7c/tex_demo.py \ No newline at end of file diff --git a/_downloads/3e4ad33fda09221c65cc8811dbe11439/errorbar_limits_simple.ipynb b/_downloads/3e4ad33fda09221c65cc8811dbe11439/errorbar_limits_simple.ipynb deleted file mode 100644 index e24b306a51f..00000000000 --- a/_downloads/3e4ad33fda09221c65cc8811dbe11439/errorbar_limits_simple.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Errorbar limit selection\n\n\nIllustration of selectively drawing lower and/or upper limit symbols on\nerrorbars using the parameters ``uplims``, ``lolims`` of `~.pyplot.errorbar`.\n\nAlternatively, you can use 2xN values to draw errorbars in only one direction.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\nx = np.arange(10)\ny = 2.5 * np.sin(x / 20 * np.pi)\nyerr = np.linspace(0.05, 0.2, 10)\n\nplt.errorbar(x, y + 3, yerr=yerr, label='both limits (default)')\n\nplt.errorbar(x, y + 2, yerr=yerr, uplims=True, label='uplims=True')\n\nplt.errorbar(x, y + 1, yerr=yerr, uplims=True, lolims=True,\n label='uplims=True, lolims=True')\n\nupperlimits = [True, False] * 5\nlowerlimits = [False, True] * 5\nplt.errorbar(x, y, yerr=yerr, uplims=upperlimits, lolims=lowerlimits,\n label='subsets of uplims and lolims')\n\nplt.legend(loc='lower right')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Similarly ``xuplims``and ``xlolims`` can be used on the horizontal ``xerr``\nerrorbars.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nx = np.arange(10) / 10\ny = (x + 0.1)**2\n\nplt.errorbar(x, y, xerr=0.1, xlolims=True, label='xlolims=True')\ny = (x + 0.1)**3\n\nplt.errorbar(x + 0.6, y, xerr=0.1, xuplims=upperlimits, xlolims=lowerlimits,\n label='subsets of xuplims and xlolims')\n\ny = (x + 0.1)**4\nplt.errorbar(x + 1.2, y, xerr=0.1, xuplims=True, label='xuplims=True')\n\nplt.legend()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.errorbar\nmatplotlib.pyplot.errorbar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3e5b6c2bd45aafa596b0c132c3152f4f/fivethirtyeight.py b/_downloads/3e5b6c2bd45aafa596b0c132c3152f4f/fivethirtyeight.py deleted file mode 120000 index 861ec3a945c..00000000000 --- a/_downloads/3e5b6c2bd45aafa596b0c132c3152f4f/fivethirtyeight.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3e5b6c2bd45aafa596b0c132c3152f4f/fivethirtyeight.py \ No newline at end of file diff --git a/_downloads/3e6c719f7d1fe721c72d931dc8a96f38/histogram_multihist.ipynb b/_downloads/3e6c719f7d1fe721c72d931dc8a96f38/histogram_multihist.ipynb deleted file mode 120000 index 4c2b6f36fda..00000000000 --- a/_downloads/3e6c719f7d1fe721c72d931dc8a96f38/histogram_multihist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3e6c719f7d1fe721c72d931dc8a96f38/histogram_multihist.ipynb \ No newline at end of file diff --git a/_downloads/3e6efa88bf8dc0f7ac226cb194fc72d1/autowrap.py b/_downloads/3e6efa88bf8dc0f7ac226cb194fc72d1/autowrap.py deleted file mode 100644 index cfd583d1d07..00000000000 --- a/_downloads/3e6efa88bf8dc0f7ac226cb194fc72d1/autowrap.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -================== -Auto-wrapping text -================== - -Matplotlib can wrap text automatically, but if it's too long, the text will be -displayed slightly outside of the boundaries of the axis anyways. -""" - -import matplotlib.pyplot as plt - -fig = plt.figure() -plt.axis([0, 10, 0, 10]) -t = ("This is a really long string that I'd rather have wrapped so that it " - "doesn't go outside of the figure, but if it's long enough it will go " - "off the top or bottom!") -plt.text(4, 1, t, ha='left', rotation=15, wrap=True) -plt.text(6, 5, t, ha='left', rotation=15, wrap=True) -plt.text(5, 5, t, ha='right', rotation=-15, wrap=True) -plt.text(5, 10, t, fontsize=18, style='oblique', ha='center', - va='top', wrap=True) -plt.text(3, 4, t, family='serif', style='italic', ha='right', wrap=True) -plt.text(-1, 0, t, ha='left', rotation=-15, wrap=True) - -plt.show() diff --git a/_downloads/3e798eb219c54436a924c8d696b374ee/symlog_demo.py b/_downloads/3e798eb219c54436a924c8d696b374ee/symlog_demo.py deleted file mode 120000 index 1ad90ccf3e8..00000000000 --- a/_downloads/3e798eb219c54436a924c8d696b374ee/symlog_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3e798eb219c54436a924c8d696b374ee/symlog_demo.py \ No newline at end of file diff --git a/_downloads/3e7cab583862ca15a7ab35587237b70c/demo_curvelinear_grid2.ipynb b/_downloads/3e7cab583862ca15a7ab35587237b70c/demo_curvelinear_grid2.ipynb deleted file mode 100644 index 2d61a3dec49..00000000000 --- a/_downloads/3e7cab583862ca15a7ab35587237b70c/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Curvelinear Grid2\n\n\nCustom grid and ticklines.\n\nThis example demonstrates how to use GridHelperCurveLinear to define\ncustom grids and ticklines by applying a transformation on the grid.\nAs showcase on the plot, a 5x5 matrix is displayed on the axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import \\\n GridHelperCurveLinear\nfrom mpl_toolkits.axisartist.grid_finder import MaxNLocator\nfrom mpl_toolkits.axisartist.axislines import Subplot\n\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\n\n\ndef curvelinear_test1(fig):\n \"\"\"\n grid for custom transform.\n \"\"\"\n\n def tr(x, y):\n sgn = np.sign(x)\n x, y = np.abs(np.asarray(x)), np.asarray(y)\n return sgn*x**.5, y\n\n def inv_tr(x, y):\n sgn = np.sign(x)\n x, y = np.asarray(x), np.asarray(y)\n return sgn*x**2, y\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle=None,\n lat_cycle=None,\n # (0, np.inf),\n lon_minmax=None,\n lat_minmax=None,\n )\n\n grid_helper = GridHelperCurveLinear((tr, inv_tr),\n extreme_finder=extreme_finder,\n # better tick density\n grid_locator1=MaxNLocator(nbins=6),\n grid_locator2=MaxNLocator(nbins=6))\n\n ax1 = Subplot(fig, 111, grid_helper=grid_helper)\n # ax1 will have a ticks and gridlines defined by the given\n # transform (+ transData of the Axes). Note that the transform of\n # the Axes itself (i.e., transData) is not affected by the given\n # transform.\n\n fig.add_subplot(ax1)\n\n ax1.imshow(np.arange(25).reshape(5, 5),\n vmax=50, cmap=plt.cm.gray_r,\n interpolation=\"nearest\",\n origin=\"lower\")\n\n\nif __name__ == \"__main__\":\n fig = plt.figure(figsize=(7, 4))\n curvelinear_test1(fig)\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3e80b04d28d4b66d8223956e2f38613e/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/3e80b04d28d4b66d8223956e2f38613e/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 120000 index 479602ffc4c..00000000000 --- a/_downloads/3e80b04d28d4b66d8223956e2f38613e/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3e80b04d28d4b66d8223956e2f38613e/make_room_for_ylabel_using_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/3e83cad76c0541ce7694bbe09a3d3b04/scatter.py b/_downloads/3e83cad76c0541ce7694bbe09a3d3b04/scatter.py deleted file mode 120000 index f9d3681d79c..00000000000 --- a/_downloads/3e83cad76c0541ce7694bbe09a3d3b04/scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3e83cad76c0541ce7694bbe09a3d3b04/scatter.py \ No newline at end of file diff --git a/_downloads/3e8617987b0df6e0c86730ff2421c4f5/geo_demo.ipynb b/_downloads/3e8617987b0df6e0c86730ff2421c4f5/geo_demo.ipynb deleted file mode 100644 index 4b7eba080aa..00000000000 --- a/_downloads/3e8617987b0df6e0c86730ff2421c4f5/geo_demo.ipynb +++ /dev/null @@ -1,98 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Geographic Projections\n\n\nThis shows 4 possible projections using subplot. Matplotlib also\nsupports `Basemaps Toolkit `_ and\n`Cartopy `_ for geographic projections.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"aitoff\")\nplt.title(\"Aitoff\")\nplt.grid(True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"hammer\")\nplt.title(\"Hammer\")\nplt.grid(True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"lambert\")\nplt.title(\"Lambert\")\nplt.grid(True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"mollweide\")\nplt.title(\"Mollweide\")\nplt.grid(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3e8fc3024eeed0113a7f7c08e5c2cb3c/xcorr_acorr_demo.py b/_downloads/3e8fc3024eeed0113a7f7c08e5c2cb3c/xcorr_acorr_demo.py deleted file mode 120000 index 2d1b88d17de..00000000000 --- a/_downloads/3e8fc3024eeed0113a7f7c08e5c2cb3c/xcorr_acorr_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3e8fc3024eeed0113a7f7c08e5c2cb3c/xcorr_acorr_demo.py \ No newline at end of file diff --git a/_downloads/3e94949f0b66134ada83a45891061bf9/histogram_path.ipynb b/_downloads/3e94949f0b66134ada83a45891061bf9/histogram_path.ipynb deleted file mode 100644 index 96a66523213..00000000000 --- a/_downloads/3e94949f0b66134ada83a45891061bf9/histogram_path.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Building histograms using Rectangles and PolyCollections\n\n\nUsing a path patch to draw rectangles.\nThe technique of using lots of Rectangle instances, or\nthe faster method of using PolyCollections, were implemented before we\nhad proper paths with moveto/lineto, closepoly etc in mpl. Now that\nwe have them, we can draw collections of regularly shaped objects with\nhomogeneous properties more efficiently with a PathCollection. This\nexample makes a histogram -- it's more work to set up the vertex arrays\nat the outset, but it should be much faster for large numbers of\nobjects.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nimport matplotlib.path as path\n\nfig, ax = plt.subplots()\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# histogram our data with numpy\n\ndata = np.random.randn(1000)\nn, bins = np.histogram(data, 50)\n\n# get the corners of the rectangles for the histogram\nleft = np.array(bins[:-1])\nright = np.array(bins[1:])\nbottom = np.zeros(len(left))\ntop = bottom + n\n\n\n# we need a (numrects x numsides x 2) numpy array for the path helper\n# function to build a compound path\nXY = np.array([[left, left, right, right], [bottom, top, top, bottom]]).T\n\n# get the Path object\nbarpath = path.Path.make_compound_path_from_polys(XY)\n\n# make a patch out of it\npatch = patches.PathPatch(barpath)\nax.add_patch(patch)\n\n# update the view limits\nax.set_xlim(left[0], right[-1])\nax.set_ylim(bottom.min(), top.max())\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It should be noted that instead of creating a three-dimensional array and\nusing `~.path.Path.make_compound_path_from_polys`, we could as well create\nthe compound path directly using vertices and codes as shown below\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "nrects = len(left)\nnverts = nrects*(1+3+1)\nverts = np.zeros((nverts, 2))\ncodes = np.ones(nverts, int) * path.Path.LINETO\ncodes[0::5] = path.Path.MOVETO\ncodes[4::5] = path.Path.CLOSEPOLY\nverts[0::5, 0] = left\nverts[0::5, 1] = bottom\nverts[1::5, 0] = left\nverts[1::5, 1] = top\nverts[2::5, 0] = right\nverts[2::5, 1] = top\nverts[3::5, 0] = right\nverts[3::5, 1] = bottom\n\nbarpath = path.Path(verts, codes)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.path.Path.make_compound_path_from_polys\nmatplotlib.axes.Axes.add_patch\nmatplotlib.collections.PathCollection\n\n# This example shows an alternative to\nmatplotlib.collections.PolyCollection\nmatplotlib.axes.Axes.hist" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3ea9efb944be8595c39f4187007543f8/polar_bar.ipynb b/_downloads/3ea9efb944be8595c39f4187007543f8/polar_bar.ipynb deleted file mode 120000 index 3470b9e6eec..00000000000 --- a/_downloads/3ea9efb944be8595c39f4187007543f8/polar_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ea9efb944be8595c39f4187007543f8/polar_bar.ipynb \ No newline at end of file diff --git a/_downloads/3eab74592381ccbac81877e9f1cd2c2f/shading_example.ipynb b/_downloads/3eab74592381ccbac81877e9f1cd2c2f/shading_example.ipynb deleted file mode 120000 index 7be66375bed..00000000000 --- a/_downloads/3eab74592381ccbac81877e9f1cd2c2f/shading_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3eab74592381ccbac81877e9f1cd2c2f/shading_example.ipynb \ No newline at end of file diff --git a/_downloads/3eac51e66605a0d17ce37411e127f44c/annotate_simple_coord01.ipynb b/_downloads/3eac51e66605a0d17ce37411e127f44c/annotate_simple_coord01.ipynb deleted file mode 120000 index ad99cacd44b..00000000000 --- a/_downloads/3eac51e66605a0d17ce37411e127f44c/annotate_simple_coord01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3eac51e66605a0d17ce37411e127f44c/annotate_simple_coord01.ipynb \ No newline at end of file diff --git a/_downloads/3eacc0c842121680235dbf15c169063b/two_scales.ipynb b/_downloads/3eacc0c842121680235dbf15c169063b/two_scales.ipynb deleted file mode 120000 index f1a43dc6130..00000000000 --- a/_downloads/3eacc0c842121680235dbf15c169063b/two_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3eacc0c842121680235dbf15c169063b/two_scales.ipynb \ No newline at end of file diff --git a/_downloads/3eb0e23979e86f96f4c9e9795cef3f67/plot_solarizedlight2.ipynb b/_downloads/3eb0e23979e86f96f4c9e9795cef3f67/plot_solarizedlight2.ipynb deleted file mode 100644 index 8f69c1e4424..00000000000 --- a/_downloads/3eb0e23979e86f96f4c9e9795cef3f67/plot_solarizedlight2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Solarized Light stylesheet\n\n\nThis shows an example of \"Solarized_Light\" styling, which\ntries to replicate the styles of:\n\n - ``__\n - ``__\n - ``__\n\nand work of:\n\n - ``__\n\nusing all 8 accents of the color palette - starting with blue\n\nToDo:\n - Create alpha values for bar and stacked charts. .33 or .5\n - Apply Layout Rules\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nx = np.linspace(0, 10)\nwith plt.style.context('Solarize_Light2'):\n plt.plot(x, np.sin(x) + x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 2 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 3 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 4 + np.random.randn(50))\n plt.plot(x, np.sin(x) + 5 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 6 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 7 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 8 * x + np.random.randn(50))\n # Number of accent colors in the color scheme\n plt.title('8 Random Lines - Line')\n plt.xlabel('x label', fontsize=14)\n plt.ylabel('y label', fontsize=14)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3ec238733fe18e0db6b1c4d750c37512/demo_axisline_style.ipynb b/_downloads/3ec238733fe18e0db6b1c4d750c37512/demo_axisline_style.ipynb deleted file mode 120000 index 22eb82bf514..00000000000 --- a/_downloads/3ec238733fe18e0db6b1c4d750c37512/demo_axisline_style.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3ec238733fe18e0db6b1c4d750c37512/demo_axisline_style.ipynb \ No newline at end of file diff --git a/_downloads/3ec2a76384696eced72e02a03d383b61/date.ipynb b/_downloads/3ec2a76384696eced72e02a03d383b61/date.ipynb deleted file mode 120000 index 70f558d13da..00000000000 --- a/_downloads/3ec2a76384696eced72e02a03d383b61/date.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ec2a76384696eced72e02a03d383b61/date.ipynb \ No newline at end of file diff --git a/_downloads/3ec857c89332502ee76fd1561316ef46/agg_buffer.ipynb b/_downloads/3ec857c89332502ee76fd1561316ef46/agg_buffer.ipynb deleted file mode 100644 index e25e8c8a361..00000000000 --- a/_downloads/3ec857c89332502ee76fd1561316ef46/agg_buffer.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Agg Buffer\n\n\nUse backend agg to access the figure canvas as an RGB string and then\nconvert it to an array and pass it to Pillow for rendering.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib.backends.backend_agg import FigureCanvasAgg\nimport matplotlib.pyplot as plt\n\nplt.plot([1, 2, 3])\n\ncanvas = plt.get_current_fig_manager().canvas\n\nagg = canvas.switch_backends(FigureCanvasAgg)\nagg.draw()\ns, (width, height) = agg.print_to_buffer()\n\n# Convert to a NumPy array.\nX = np.frombuffer(s, np.uint8).reshape((height, width, 4))\n\n# Pass off to PIL.\nfrom PIL import Image\nim = Image.frombytes(\"RGBA\", (width, height), s)\n\n# Uncomment this line to display the image using ImageMagick's `display` tool.\n# im.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3eca74493de455df42ddf20999039eb4/figure_title.py b/_downloads/3eca74493de455df42ddf20999039eb4/figure_title.py deleted file mode 120000 index 2f7bae73d84..00000000000 --- a/_downloads/3eca74493de455df42ddf20999039eb4/figure_title.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3eca74493de455df42ddf20999039eb4/figure_title.py \ No newline at end of file diff --git a/_downloads/3ed72779b8257cc7d6edab5165934ed9/wxcursor_demo_sgskip.py b/_downloads/3ed72779b8257cc7d6edab5165934ed9/wxcursor_demo_sgskip.py deleted file mode 120000 index d3b6cdb4e5e..00000000000 --- a/_downloads/3ed72779b8257cc7d6edab5165934ed9/wxcursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3ed72779b8257cc7d6edab5165934ed9/wxcursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/3ed774a7613d3f91ae29d10d7eba4184/viewlims.py b/_downloads/3ed774a7613d3f91ae29d10d7eba4184/viewlims.py deleted file mode 120000 index ec84eac13ac..00000000000 --- a/_downloads/3ed774a7613d3f91ae29d10d7eba4184/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3ed774a7613d3f91ae29d10d7eba4184/viewlims.py \ No newline at end of file diff --git a/_downloads/3ed814ff913d49763e2a960f30362f8c/lines3d.ipynb b/_downloads/3ed814ff913d49763e2a960f30362f8c/lines3d.ipynb deleted file mode 120000 index 9bd5bb4acf5..00000000000 --- a/_downloads/3ed814ff913d49763e2a960f30362f8c/lines3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ed814ff913d49763e2a960f30362f8c/lines3d.ipynb \ No newline at end of file diff --git a/_downloads/3eda9ce6281b0223d3d065c96dd3271f/image_annotated_heatmap.ipynb b/_downloads/3eda9ce6281b0223d3d065c96dd3271f/image_annotated_heatmap.ipynb deleted file mode 100644 index ef63250fb37..00000000000 --- a/_downloads/3eda9ce6281b0223d3d065c96dd3271f/image_annotated_heatmap.ipynb +++ /dev/null @@ -1,133 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating annotated heatmaps\n\n\nIt is often desirable to show data which depends on two independent\nvariables as a color coded image plot. This is often referred to as a\nheatmap. If the data is categorical, this would be called a categorical\nheatmap.\nMatplotlib's :meth:`imshow ` function makes\nproduction of such plots particularly easy.\n\nThe following examples show how to create a heatmap with annotations.\nWe will start with an easy example and expand it to be usable as a\nuniversal function.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A simple categorical heatmap\n----------------------------\n\nWe may start by defining some data. What we need is a 2D list or array\nwhich defines the data to color code. We then also need two lists or arrays\nof categories; of course the number of elements in those lists\nneed to match the data along the respective axes.\nThe heatmap itself is an :meth:`imshow ` plot\nwith the labels set to the categories we have.\nNote that it is important to set both, the tick locations\n(:meth:`set_xticks`) as well as the\ntick labels (:meth:`set_xticklabels`),\notherwise they would become out of sync. The locations are just\nthe ascending integer numbers, while the ticklabels are the labels to show.\nFinally we can label the data itself by creating a\n:class:`~matplotlib.text.Text` within each cell showing the value of\nthat cell.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nimport matplotlib.pyplot as plt\n# sphinx_gallery_thumbnail_number = 2\n\nvegetables = [\"cucumber\", \"tomato\", \"lettuce\", \"asparagus\",\n \"potato\", \"wheat\", \"barley\"]\nfarmers = [\"Farmer Joe\", \"Upland Bros.\", \"Smith Gardening\",\n \"Agrifun\", \"Organiculture\", \"BioGoods Ltd.\", \"Cornylee Corp.\"]\n\nharvest = np.array([[0.8, 2.4, 2.5, 3.9, 0.0, 4.0, 0.0],\n [2.4, 0.0, 4.0, 1.0, 2.7, 0.0, 0.0],\n [1.1, 2.4, 0.8, 4.3, 1.9, 4.4, 0.0],\n [0.6, 0.0, 0.3, 0.0, 3.1, 0.0, 0.0],\n [0.7, 1.7, 0.6, 2.6, 2.2, 6.2, 0.0],\n [1.3, 1.2, 0.0, 0.0, 0.0, 3.2, 5.1],\n [0.1, 2.0, 0.0, 1.4, 0.0, 1.9, 6.3]])\n\n\nfig, ax = plt.subplots()\nim = ax.imshow(harvest)\n\n# We want to show all ticks...\nax.set_xticks(np.arange(len(farmers)))\nax.set_yticks(np.arange(len(vegetables)))\n# ... and label them with the respective list entries\nax.set_xticklabels(farmers)\nax.set_yticklabels(vegetables)\n\n# Rotate the tick labels and set their alignment.\nplt.setp(ax.get_xticklabels(), rotation=45, ha=\"right\",\n rotation_mode=\"anchor\")\n\n# Loop over data dimensions and create text annotations.\nfor i in range(len(vegetables)):\n for j in range(len(farmers)):\n text = ax.text(j, i, harvest[i, j],\n ha=\"center\", va=\"center\", color=\"w\")\n\nax.set_title(\"Harvest of local farmers (in tons/year)\")\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using the helper function code style\n------------------------------------\n\nAs discussed in the `Coding styles `\none might want to reuse such code to create some kind of heatmap\nfor different input data and/or on different axes.\nWe create a function that takes the data and the row and column labels as\ninput, and allows arguments that are used to customize the plot\n\nHere, in addition to the above we also want to create a colorbar and\nposition the labels above of the heatmap instead of below it.\nThe annotations shall get different colors depending on a threshold\nfor better contrast against the pixel color.\nFinally, we turn the surrounding axes spines off and create\na grid of white lines to separate the cells.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def heatmap(data, row_labels, col_labels, ax=None,\n cbar_kw={}, cbarlabel=\"\", **kwargs):\n \"\"\"\n Create a heatmap from a numpy array and two lists of labels.\n\n Parameters\n ----------\n data\n A 2D numpy array of shape (N, M).\n row_labels\n A list or array of length N with the labels for the rows.\n col_labels\n A list or array of length M with the labels for the columns.\n ax\n A `matplotlib.axes.Axes` instance to which the heatmap is plotted. If\n not provided, use current axes or create a new one. Optional.\n cbar_kw\n A dictionary with arguments to `matplotlib.Figure.colorbar`. Optional.\n cbarlabel\n The label for the colorbar. Optional.\n **kwargs\n All other arguments are forwarded to `imshow`.\n \"\"\"\n\n if not ax:\n ax = plt.gca()\n\n # Plot the heatmap\n im = ax.imshow(data, **kwargs)\n\n # Create colorbar\n cbar = ax.figure.colorbar(im, ax=ax, **cbar_kw)\n cbar.ax.set_ylabel(cbarlabel, rotation=-90, va=\"bottom\")\n\n # We want to show all ticks...\n ax.set_xticks(np.arange(data.shape[1]))\n ax.set_yticks(np.arange(data.shape[0]))\n # ... and label them with the respective list entries.\n ax.set_xticklabels(col_labels)\n ax.set_yticklabels(row_labels)\n\n # Let the horizontal axes labeling appear on top.\n ax.tick_params(top=True, bottom=False,\n labeltop=True, labelbottom=False)\n\n # Rotate the tick labels and set their alignment.\n plt.setp(ax.get_xticklabels(), rotation=-30, ha=\"right\",\n rotation_mode=\"anchor\")\n\n # Turn spines off and create white grid.\n for edge, spine in ax.spines.items():\n spine.set_visible(False)\n\n ax.set_xticks(np.arange(data.shape[1]+1)-.5, minor=True)\n ax.set_yticks(np.arange(data.shape[0]+1)-.5, minor=True)\n ax.grid(which=\"minor\", color=\"w\", linestyle='-', linewidth=3)\n ax.tick_params(which=\"minor\", bottom=False, left=False)\n\n return im, cbar\n\n\ndef annotate_heatmap(im, data=None, valfmt=\"{x:.2f}\",\n textcolors=[\"black\", \"white\"],\n threshold=None, **textkw):\n \"\"\"\n A function to annotate a heatmap.\n\n Parameters\n ----------\n im\n The AxesImage to be labeled.\n data\n Data used to annotate. If None, the image's data is used. Optional.\n valfmt\n The format of the annotations inside the heatmap. This should either\n use the string format method, e.g. \"$ {x:.2f}\", or be a\n `matplotlib.ticker.Formatter`. Optional.\n textcolors\n A list or array of two color specifications. The first is used for\n values below a threshold, the second for those above. Optional.\n threshold\n Value in data units according to which the colors from textcolors are\n applied. If None (the default) uses the middle of the colormap as\n separation. Optional.\n **kwargs\n All other arguments are forwarded to each call to `text` used to create\n the text labels.\n \"\"\"\n\n if not isinstance(data, (list, np.ndarray)):\n data = im.get_array()\n\n # Normalize the threshold to the images color range.\n if threshold is not None:\n threshold = im.norm(threshold)\n else:\n threshold = im.norm(data.max())/2.\n\n # Set default alignment to center, but allow it to be\n # overwritten by textkw.\n kw = dict(horizontalalignment=\"center\",\n verticalalignment=\"center\")\n kw.update(textkw)\n\n # Get the formatter in case a string is supplied\n if isinstance(valfmt, str):\n valfmt = matplotlib.ticker.StrMethodFormatter(valfmt)\n\n # Loop over the data and create a `Text` for each \"pixel\".\n # Change the text's color depending on the data.\n texts = []\n for i in range(data.shape[0]):\n for j in range(data.shape[1]):\n kw.update(color=textcolors[int(im.norm(data[i, j]) > threshold)])\n text = im.axes.text(j, i, valfmt(data[i, j], None), **kw)\n texts.append(text)\n\n return texts" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The above now allows us to keep the actual plot creation pretty compact.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\nim, cbar = heatmap(harvest, vegetables, farmers, ax=ax,\n cmap=\"YlGn\", cbarlabel=\"harvest [t/year]\")\ntexts = annotate_heatmap(im, valfmt=\"{x:.1f} t\")\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Some more complex heatmap examples\n----------------------------------\n\nIn the following we show the versatility of the previously created\nfunctions by applying it in different cases and using different arguments.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "np.random.seed(19680801)\n\nfig, ((ax, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(8, 6))\n\n# Replicate the above example with a different font size and colormap.\n\nim, _ = heatmap(harvest, vegetables, farmers, ax=ax,\n cmap=\"Wistia\", cbarlabel=\"harvest [t/year]\")\nannotate_heatmap(im, valfmt=\"{x:.1f}\", size=7)\n\n# Create some new data, give further arguments to imshow (vmin),\n# use an integer format on the annotations and provide some colors.\n\ndata = np.random.randint(2, 100, size=(7, 7))\ny = [\"Book {}\".format(i) for i in range(1, 8)]\nx = [\"Store {}\".format(i) for i in list(\"ABCDEFG\")]\nim, _ = heatmap(data, y, x, ax=ax2, vmin=0,\n cmap=\"magma_r\", cbarlabel=\"weekly sold copies\")\nannotate_heatmap(im, valfmt=\"{x:d}\", size=7, threshold=20,\n textcolors=[\"red\", \"white\"])\n\n# Sometimes even the data itself is categorical. Here we use a\n# :class:`matplotlib.colors.BoundaryNorm` to get the data into classes\n# and use this to colorize the plot, but also to obtain the class\n# labels from an array of classes.\n\ndata = np.random.randn(6, 6)\ny = [\"Prod. {}\".format(i) for i in range(10, 70, 10)]\nx = [\"Cycle {}\".format(i) for i in range(1, 7)]\n\nqrates = np.array(list(\"ABCDEFG\"))\nnorm = matplotlib.colors.BoundaryNorm(np.linspace(-3.5, 3.5, 8), 7)\nfmt = matplotlib.ticker.FuncFormatter(lambda x, pos: qrates[::-1][norm(x)])\n\nim, _ = heatmap(data, y, x, ax=ax3,\n cmap=plt.get_cmap(\"PiYG\", 7), norm=norm,\n cbar_kw=dict(ticks=np.arange(-3, 4), format=fmt),\n cbarlabel=\"Quality Rating\")\n\nannotate_heatmap(im, valfmt=fmt, size=9, fontweight=\"bold\", threshold=-1,\n textcolors=[\"red\", \"black\"])\n\n# We can nicely plot a correlation matrix. Since this is bound by -1 and 1,\n# we use those as vmin and vmax. We may also remove leading zeros and hide\n# the diagonal elements (which are all 1) by using a\n# :class:`matplotlib.ticker.FuncFormatter`.\n\ncorr_matrix = np.corrcoef(np.random.rand(6, 5))\nim, _ = heatmap(corr_matrix, vegetables, vegetables, ax=ax4,\n cmap=\"PuOr\", vmin=-1, vmax=1,\n cbarlabel=\"correlation coeff.\")\n\n\ndef func(x, pos):\n return \"{:.2f}\".format(x).replace(\"0.\", \".\").replace(\"1.00\", \"\")\n\nannotate_heatmap(im, valfmt=matplotlib.ticker.FuncFormatter(func), size=7)\n\n\nplt.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe usage of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3ee3ae2fa4b0ec90eb8d42a349485fe3/scatter_star_poly.py b/_downloads/3ee3ae2fa4b0ec90eb8d42a349485fe3/scatter_star_poly.py deleted file mode 120000 index f2a7a4e5b95..00000000000 --- a/_downloads/3ee3ae2fa4b0ec90eb8d42a349485fe3/scatter_star_poly.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3ee3ae2fa4b0ec90eb8d42a349485fe3/scatter_star_poly.py \ No newline at end of file diff --git a/_downloads/3ef1285a8098381b7e493a856f786eaa/custom_projection.ipynb b/_downloads/3ef1285a8098381b7e493a856f786eaa/custom_projection.ipynb deleted file mode 120000 index 730a3f859f3..00000000000 --- a/_downloads/3ef1285a8098381b7e493a856f786eaa/custom_projection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ef1285a8098381b7e493a856f786eaa/custom_projection.ipynb \ No newline at end of file diff --git a/_downloads/3f00827998b6984a744509eca414f222/anatomy.py b/_downloads/3f00827998b6984a744509eca414f222/anatomy.py deleted file mode 120000 index 815968d5635..00000000000 --- a/_downloads/3f00827998b6984a744509eca414f222/anatomy.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3f00827998b6984a744509eca414f222/anatomy.py \ No newline at end of file diff --git a/_downloads/3f030655329edfc2ea105815b7870636/hatch_demo.ipynb b/_downloads/3f030655329edfc2ea105815b7870636/hatch_demo.ipynb deleted file mode 120000 index ebc8a9e7baf..00000000000 --- a/_downloads/3f030655329edfc2ea105815b7870636/hatch_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3f030655329edfc2ea105815b7870636/hatch_demo.ipynb \ No newline at end of file diff --git a/_downloads/3f0934cdd9852b477c36af9eae4ad510/invert_axes.ipynb b/_downloads/3f0934cdd9852b477c36af9eae4ad510/invert_axes.ipynb deleted file mode 120000 index 67c0676f5ca..00000000000 --- a/_downloads/3f0934cdd9852b477c36af9eae4ad510/invert_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3f0934cdd9852b477c36af9eae4ad510/invert_axes.ipynb \ No newline at end of file diff --git a/_downloads/3f0acc7bd67373e60fe099ee18789b49/zoom_inset_axes.py b/_downloads/3f0acc7bd67373e60fe099ee18789b49/zoom_inset_axes.py deleted file mode 120000 index a0d30884174..00000000000 --- a/_downloads/3f0acc7bd67373e60fe099ee18789b49/zoom_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3f0acc7bd67373e60fe099ee18789b49/zoom_inset_axes.py \ No newline at end of file diff --git a/_downloads/3f13471a2442f22543ed6a69bd388c33/color_demo.py b/_downloads/3f13471a2442f22543ed6a69bd388c33/color_demo.py deleted file mode 120000 index cbad790ed61..00000000000 --- a/_downloads/3f13471a2442f22543ed6a69bd388c33/color_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3f13471a2442f22543ed6a69bd388c33/color_demo.py \ No newline at end of file diff --git a/_downloads/3f147f90cd5b55a6dc34500a403d407d/bar_stacked.py b/_downloads/3f147f90cd5b55a6dc34500a403d407d/bar_stacked.py deleted file mode 120000 index c3b2ce5a2b2..00000000000 --- a/_downloads/3f147f90cd5b55a6dc34500a403d407d/bar_stacked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3f147f90cd5b55a6dc34500a403d407d/bar_stacked.py \ No newline at end of file diff --git a/_downloads/3f1ba1eb1f626daa0dc783e73b51d9b8/pylab_with_gtk_sgskip.py b/_downloads/3f1ba1eb1f626daa0dc783e73b51d9b8/pylab_with_gtk_sgskip.py deleted file mode 120000 index 2999e2e453a..00000000000 --- a/_downloads/3f1ba1eb1f626daa0dc783e73b51d9b8/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/3f1ba1eb1f626daa0dc783e73b51d9b8/pylab_with_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/3f1ecbb039cffe24c51d1499214bb495/looking_glass.py b/_downloads/3f1ecbb039cffe24c51d1499214bb495/looking_glass.py deleted file mode 120000 index 2a8c1f07cd2..00000000000 --- a/_downloads/3f1ecbb039cffe24c51d1499214bb495/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3f1ecbb039cffe24c51d1499214bb495/looking_glass.py \ No newline at end of file diff --git a/_downloads/3f224491dab3ca7da93ccbc6f5583706/linestyles.ipynb b/_downloads/3f224491dab3ca7da93ccbc6f5583706/linestyles.ipynb deleted file mode 120000 index 3d0a3b2f88f..00000000000 --- a/_downloads/3f224491dab3ca7da93ccbc6f5583706/linestyles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3f224491dab3ca7da93ccbc6f5583706/linestyles.ipynb \ No newline at end of file diff --git a/_downloads/3f22cbeb3d4e5b2d8f0cb5dd634d871b/shared_axis_demo.py b/_downloads/3f22cbeb3d4e5b2d8f0cb5dd634d871b/shared_axis_demo.py deleted file mode 100644 index 9f22872f645..00000000000 --- a/_downloads/3f22cbeb3d4e5b2d8f0cb5dd634d871b/shared_axis_demo.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -================ -Shared Axis Demo -================ - -You can share the x or y axis limits for one axis with another by -passing an axes instance as a sharex or sharey kwarg. - -Changing the axis limits on one axes will be reflected automatically -in the other, and vice-versa, so when you navigate with the toolbar -the axes will follow each other on their shared axes. Ditto for -changes in the axis scaling (e.g., log vs linear). However, it is -possible to have differences in tick labeling, e.g., you can selectively -turn off the tick labels on one axes. - -The example below shows how to customize the tick labels on the -various axes. Shared axes share the tick locator, tick formatter, -view limits, and transformation (e.g., log, linear). But the ticklabels -themselves do not share properties. This is a feature and not a bug, -because you may want to make the tick labels smaller on the upper -axes, e.g., in the example below. - -If you want to turn off the ticklabels for a given axes (e.g., on -subplot(211) or subplot(212), you cannot do the standard trick:: - - setp(ax2, xticklabels=[]) - -because this changes the tick Formatter, which is shared among all -axes. But you can alter the visibility of the labels, which is a -property:: - - setp(ax2.get_xticklabels(), visible=False) - -""" -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.01, 5.0, 0.01) -s1 = np.sin(2 * np.pi * t) -s2 = np.exp(-t) -s3 = np.sin(4 * np.pi * t) - -ax1 = plt.subplot(311) -plt.plot(t, s1) -plt.setp(ax1.get_xticklabels(), fontsize=6) - -# share x only -ax2 = plt.subplot(312, sharex=ax1) -plt.plot(t, s2) -# make these tick labels invisible -plt.setp(ax2.get_xticklabels(), visible=False) - -# share x and y -ax3 = plt.subplot(313, sharex=ax1, sharey=ax1) -plt.plot(t, s3) -plt.xlim(0.01, 5.0) -plt.show() diff --git a/_downloads/3f28d5215b81baa4a0b549df359928b8/agg_buffer_to_array.py b/_downloads/3f28d5215b81baa4a0b549df359928b8/agg_buffer_to_array.py deleted file mode 120000 index 2c43c938a4f..00000000000 --- a/_downloads/3f28d5215b81baa4a0b549df359928b8/agg_buffer_to_array.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3f28d5215b81baa4a0b549df359928b8/agg_buffer_to_array.py \ No newline at end of file diff --git a/_downloads/3f3afd46ba306b5bbaf64cfe912c01cb/toolmanager_sgskip.ipynb b/_downloads/3f3afd46ba306b5bbaf64cfe912c01cb/toolmanager_sgskip.ipynb deleted file mode 120000 index 7f81599a13b..00000000000 --- a/_downloads/3f3afd46ba306b5bbaf64cfe912c01cb/toolmanager_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3f3afd46ba306b5bbaf64cfe912c01cb/toolmanager_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/3f3c86f135d635ffbb5e2c568e66dcd1/date_index_formatter2.ipynb b/_downloads/3f3c86f135d635ffbb5e2c568e66dcd1/date_index_formatter2.ipynb deleted file mode 120000 index 9da4ca7b1a8..00000000000 --- a/_downloads/3f3c86f135d635ffbb5e2c568e66dcd1/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3f3c86f135d635ffbb5e2c568e66dcd1/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/3f40e65850ff754e3dca04a158507b23/eventplot_demo.py b/_downloads/3f40e65850ff754e3dca04a158507b23/eventplot_demo.py deleted file mode 100644 index d1be2fbe91f..00000000000 --- a/_downloads/3f40e65850ff754e3dca04a158507b23/eventplot_demo.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -============== -Eventplot Demo -============== - -An eventplot showing sequences of events with various line properties. -The plot is shown in both horizontal and vertical orientations. -""" - -import matplotlib.pyplot as plt -import numpy as np -import matplotlib -matplotlib.rcParams['font.size'] = 8.0 - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# create random data -data1 = np.random.random([6, 50]) - -# set different colors for each set of positions -colors1 = ['C{}'.format(i) for i in range(6)] - -# set different line properties for each set of positions -# note that some overlap -lineoffsets1 = np.array([-15, -3, 1, 1.5, 6, 10]) -linelengths1 = [5, 2, 1, 1, 3, 1.5] - -fig, axs = plt.subplots(2, 2) - -# create a horizontal plot -axs[0, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1, - linelengths=linelengths1) - -# create a vertical plot -axs[1, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1, - linelengths=linelengths1, orientation='vertical') - -# create another set of random data. -# the gamma distribution is only used fo aesthetic purposes -data2 = np.random.gamma(4, size=[60, 50]) - -# use individual values for the parameters this time -# these values will be used for all data sets (except lineoffsets2, which -# sets the increment between each data set in this usage) -colors2 = 'black' -lineoffsets2 = 1 -linelengths2 = 1 - -# create a horizontal plot -axs[0, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2, - linelengths=linelengths2) - - -# create a vertical plot -axs[1, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2, - linelengths=linelengths2, orientation='vertical') - -plt.show() diff --git a/_downloads/3f44342c02833f1cc06737b416d37e1b/histogram_features.py b/_downloads/3f44342c02833f1cc06737b416d37e1b/histogram_features.py deleted file mode 100644 index 5baf7e4b1ef..00000000000 --- a/_downloads/3f44342c02833f1cc06737b416d37e1b/histogram_features.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -========================================================= -Demo of the histogram (hist) function with a few features -========================================================= - -In addition to the basic histogram, this demo shows a few optional features: - -* Setting the number of data bins. -* The ``normed`` flag, which normalizes bin heights so that the integral of - the histogram is 1. The resulting histogram is an approximation of the - probability density function. -* Setting the face color of the bars. -* Setting the opacity (alpha value). - -Selecting different bin counts and sizes can significantly affect the shape -of a histogram. The Astropy docs have a great section_ on how to select these -parameters. - -.. _section: http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import matplotlib -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -# example data -mu = 100 # mean of distribution -sigma = 15 # standard deviation of distribution -x = mu + sigma * np.random.randn(437) - -num_bins = 50 - -fig, ax = plt.subplots() - -# the histogram of the data -n, bins, patches = ax.hist(x, num_bins, density=1) - -# add a 'best fit' line -y = ((1 / (np.sqrt(2 * np.pi) * sigma)) * - np.exp(-0.5 * (1 / sigma * (bins - mu))**2)) -ax.plot(bins, y, '--') -ax.set_xlabel('Smarts') -ax.set_ylabel('Probability density') -ax.set_title(r'Histogram of IQ: $\mu=100$, $\sigma=15$') - -# Tweak spacing to prevent clipping of ylabel -fig.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -matplotlib.axes.Axes.hist -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel diff --git a/_downloads/3f4498908832ccb235c7bb7d9118ab29/lifecycle.py b/_downloads/3f4498908832ccb235c7bb7d9118ab29/lifecycle.py deleted file mode 120000 index a875da614e9..00000000000 --- a/_downloads/3f4498908832ccb235c7bb7d9118ab29/lifecycle.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3f4498908832ccb235c7bb7d9118ab29/lifecycle.py \ No newline at end of file diff --git a/_downloads/3f45aaef3e52e5e18d34adf3752c1c81/slider_demo.ipynb b/_downloads/3f45aaef3e52e5e18d34adf3752c1c81/slider_demo.ipynb deleted file mode 120000 index 515e0358259..00000000000 --- a/_downloads/3f45aaef3e52e5e18d34adf3752c1c81/slider_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3f45aaef3e52e5e18d34adf3752c1c81/slider_demo.ipynb \ No newline at end of file diff --git a/_downloads/3f476b8e76c80759e9c450180407872e/irregulardatagrid.ipynb b/_downloads/3f476b8e76c80759e9c450180407872e/irregulardatagrid.ipynb deleted file mode 120000 index 8f83c2ef57b..00000000000 --- a/_downloads/3f476b8e76c80759e9c450180407872e/irregulardatagrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3f476b8e76c80759e9c450180407872e/irregulardatagrid.ipynb \ No newline at end of file diff --git a/_downloads/3f576886cce3b98cb7f41ffdf7614625/donut.py b/_downloads/3f576886cce3b98cb7f41ffdf7614625/donut.py deleted file mode 120000 index 1fc755f0560..00000000000 --- a/_downloads/3f576886cce3b98cb7f41ffdf7614625/donut.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3f576886cce3b98cb7f41ffdf7614625/donut.py \ No newline at end of file diff --git a/_downloads/3f5cf6deaf1bb10dd964ed1dbb386e68/colorbar_placement.py b/_downloads/3f5cf6deaf1bb10dd964ed1dbb386e68/colorbar_placement.py deleted file mode 100644 index eee99acbea0..00000000000 --- a/_downloads/3f5cf6deaf1bb10dd964ed1dbb386e68/colorbar_placement.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -================= -Placing Colorbars -================= - -Colorbars indicate the quantitative extent of image data. Placing in -a figure is non-trivial because room needs to be made for them. - -The simplest case is just attaching a colorbar to each axes: -""" -import matplotlib.pyplot as plt -import numpy as np - -fig, axs = plt.subplots(2, 2) -cm = ['RdBu_r', 'viridis'] -for col in range(2): - for row in range(2): - ax = axs[row, col] - pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1), - cmap=cm[col]) - fig.colorbar(pcm, ax=ax) -plt.show() - -###################################################################### -# The first column has the same type of data in both rows, so it may -# be desirable to combine the colorbar which we do by calling -# `.Figure.colorbar` with a list of axes instead of a single axes. - -fig, axs = plt.subplots(2, 2) -cm = ['RdBu_r', 'viridis'] -for col in range(2): - for row in range(2): - ax = axs[row, col] - pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1), - cmap=cm[col]) - fig.colorbar(pcm, ax=axs[:, col], shrink=0.6) -plt.show() - -###################################################################### -# Relatively complicated colorbar layouts are possible using this -# paradigm. Note that this example works far better with -# ``constrained_layout=True`` - -fig, axs = plt.subplots(3, 3, constrained_layout=True) -for ax in axs.flat: - pcm = ax.pcolormesh(np.random.random((20, 20))) - -fig.colorbar(pcm, ax=axs[0, :2], shrink=0.6, location='bottom') -fig.colorbar(pcm, ax=[axs[0, 2]], location='bottom') -fig.colorbar(pcm, ax=axs[1:, :], location='right', shrink=0.6) -fig.colorbar(pcm, ax=[axs[2, 1]], location='left') - - -plt.show() diff --git a/_downloads/3f5e03673c2a21802770caad0e0682b3/axis_direction_demo_step02.ipynb b/_downloads/3f5e03673c2a21802770caad0e0682b3/axis_direction_demo_step02.ipynb deleted file mode 120000 index d0e59f6c755..00000000000 --- a/_downloads/3f5e03673c2a21802770caad0e0682b3/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3f5e03673c2a21802770caad0e0682b3/axis_direction_demo_step02.ipynb \ No newline at end of file diff --git a/_downloads/3f686dade022886b0d919519edbef74e/scatter_hist_locatable_axes.ipynb b/_downloads/3f686dade022886b0d919519edbef74e/scatter_hist_locatable_axes.ipynb deleted file mode 100644 index 01243a52d09..00000000000 --- a/_downloads/3f686dade022886b0d919519edbef74e/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Hist\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import make_axes_locatable\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# the random data\nx = np.random.randn(1000)\ny = np.random.randn(1000)\n\n\nfig, axScatter = plt.subplots(figsize=(5.5, 5.5))\n\n# the scatter plot:\naxScatter.scatter(x, y)\naxScatter.set_aspect(1.)\n\n# create new axes on the right and on the top of the current axes\n# The first argument of the new_vertical(new_horizontal) method is\n# the height (width) of the axes to be created in inches.\ndivider = make_axes_locatable(axScatter)\naxHistx = divider.append_axes(\"top\", 1.2, pad=0.1, sharex=axScatter)\naxHisty = divider.append_axes(\"right\", 1.2, pad=0.1, sharey=axScatter)\n\n# make some labels invisible\naxHistx.xaxis.set_tick_params(labelbottom=False)\naxHisty.yaxis.set_tick_params(labelleft=False)\n\n# now determine nice limits by hand:\nbinwidth = 0.25\nxymax = max(np.max(np.abs(x)), np.max(np.abs(y)))\nlim = (int(xymax/binwidth) + 1)*binwidth\n\nbins = np.arange(-lim, lim + binwidth, binwidth)\naxHistx.hist(x, bins=bins)\naxHisty.hist(y, bins=bins, orientation='horizontal')\n\n# the xaxis of axHistx and yaxis of axHisty are shared with axScatter,\n# thus there is no need to manually adjust the xlim and ylim of these\n# axis.\n\naxHistx.set_yticks([0, 50, 100])\n\naxHisty.set_xticks([0, 50, 100])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3f68bab15a2ff3586a236902689dd9e0/demo_axisline_style.py b/_downloads/3f68bab15a2ff3586a236902689dd9e0/demo_axisline_style.py deleted file mode 100644 index fc61375147e..00000000000 --- a/_downloads/3f68bab15a2ff3586a236902689dd9e0/demo_axisline_style.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -================ -Axis line styles -================ - -This example shows some configurations for axis style. -""" - -from mpl_toolkits.axisartist.axislines import SubplotZero -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = SubplotZero(fig, 111) -fig.add_subplot(ax) - -for direction in ["xzero", "yzero"]: - # adds arrows at the ends of each axis - ax.axis[direction].set_axisline_style("-|>") - - # adds X and Y-axis from the origin - ax.axis[direction].set_visible(True) - -for direction in ["left", "right", "bottom", "top"]: - # hides borders - ax.axis[direction].set_visible(False) - -x = np.linspace(-0.5, 1., 100) -ax.plot(x, np.sin(x*np.pi)) - -plt.show() diff --git a/_downloads/3f6da2ee8a941fbaaec3e71df503b429/hist3d.ipynb b/_downloads/3f6da2ee8a941fbaaec3e71df503b429/hist3d.ipynb deleted file mode 120000 index 30a8bee539e..00000000000 --- a/_downloads/3f6da2ee8a941fbaaec3e71df503b429/hist3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3f6da2ee8a941fbaaec3e71df503b429/hist3d.ipynb \ No newline at end of file diff --git a/_downloads/3f6e481d1c36c4a47bb085b87ed08d8d/scatter_custom_symbol.py b/_downloads/3f6e481d1c36c4a47bb085b87ed08d8d/scatter_custom_symbol.py deleted file mode 100644 index a66410c31ca..00000000000 --- a/_downloads/3f6e481d1c36c4a47bb085b87ed08d8d/scatter_custom_symbol.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -===================== -Scatter Custom Symbol -===================== - -Creating a custom ellipse symbol in scatter plot. - -""" -import matplotlib.pyplot as plt -import numpy as np - -# unit area ellipse -rx, ry = 3., 1. -area = rx * ry * np.pi -theta = np.arange(0, 2 * np.pi + 0.01, 0.1) -verts = np.column_stack([rx / area * np.cos(theta), ry / area * np.sin(theta)]) - -x, y, s, c = np.random.rand(4, 30) -s *= 10**2. - -fig, ax = plt.subplots() -ax.scatter(x, y, s, c, marker=verts) - -plt.show() diff --git a/_downloads/3f6f83882b13d7594b12c5868530ce0f/titles_demo.py b/_downloads/3f6f83882b13d7594b12c5868530ce0f/titles_demo.py deleted file mode 120000 index 8ddda4a77fb..00000000000 --- a/_downloads/3f6f83882b13d7594b12c5868530ce0f/titles_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3f6f83882b13d7594b12c5868530ce0f/titles_demo.py \ No newline at end of file diff --git a/_downloads/3f72f5a9255535db873b968eb63a8b85/anchored_box03.py b/_downloads/3f72f5a9255535db873b968eb63a8b85/anchored_box03.py deleted file mode 120000 index 2bf6a2164c2..00000000000 --- a/_downloads/3f72f5a9255535db873b968eb63a8b85/anchored_box03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3f72f5a9255535db873b968eb63a8b85/anchored_box03.py \ No newline at end of file diff --git a/_downloads/3f7328131a0667c47dfab966e84991df/scatter_custom_symbol.ipynb b/_downloads/3f7328131a0667c47dfab966e84991df/scatter_custom_symbol.ipynb deleted file mode 120000 index bc3a3646dcc..00000000000 --- a/_downloads/3f7328131a0667c47dfab966e84991df/scatter_custom_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3f7328131a0667c47dfab966e84991df/scatter_custom_symbol.ipynb \ No newline at end of file diff --git a/_downloads/3f74d0fb23daf4af906d8de534659489/axes_demo.py b/_downloads/3f74d0fb23daf4af906d8de534659489/axes_demo.py deleted file mode 120000 index 3c8fbdfe113..00000000000 --- a/_downloads/3f74d0fb23daf4af906d8de534659489/axes_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3f74d0fb23daf4af906d8de534659489/axes_demo.py \ No newline at end of file diff --git a/_downloads/3f8ce7386373c28fa348a4182b0e06dc/embedding_in_qt_sgskip.py b/_downloads/3f8ce7386373c28fa348a4182b0e06dc/embedding_in_qt_sgskip.py deleted file mode 100644 index 54059c62147..00000000000 --- a/_downloads/3f8ce7386373c28fa348a4182b0e06dc/embedding_in_qt_sgskip.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -=============== -Embedding in Qt -=============== - -Simple Qt application embedding Matplotlib canvases. This program will work -equally well using Qt4 and Qt5. Either version of Qt can be selected (for -example) by setting the ``MPLBACKEND`` environment variable to "Qt4Agg" or -"Qt5Agg", or by first importing the desired version of PyQt. -""" - -import sys -import time - -import numpy as np - -from matplotlib.backends.qt_compat import QtCore, QtWidgets, is_pyqt5 -if is_pyqt5(): - from matplotlib.backends.backend_qt5agg import ( - FigureCanvas, NavigationToolbar2QT as NavigationToolbar) -else: - from matplotlib.backends.backend_qt4agg import ( - FigureCanvas, NavigationToolbar2QT as NavigationToolbar) -from matplotlib.figure import Figure - - -class ApplicationWindow(QtWidgets.QMainWindow): - def __init__(self): - super().__init__() - self._main = QtWidgets.QWidget() - self.setCentralWidget(self._main) - layout = QtWidgets.QVBoxLayout(self._main) - - static_canvas = FigureCanvas(Figure(figsize=(5, 3))) - layout.addWidget(static_canvas) - self.addToolBar(NavigationToolbar(static_canvas, self)) - - dynamic_canvas = FigureCanvas(Figure(figsize=(5, 3))) - layout.addWidget(dynamic_canvas) - self.addToolBar(QtCore.Qt.BottomToolBarArea, - NavigationToolbar(dynamic_canvas, self)) - - self._static_ax = static_canvas.figure.subplots() - t = np.linspace(0, 10, 501) - self._static_ax.plot(t, np.tan(t), ".") - - self._dynamic_ax = dynamic_canvas.figure.subplots() - self._timer = dynamic_canvas.new_timer( - 100, [(self._update_canvas, (), {})]) - self._timer.start() - - def _update_canvas(self): - self._dynamic_ax.clear() - t = np.linspace(0, 10, 101) - # Shift the sinusoid as a function of time. - self._dynamic_ax.plot(t, np.sin(t + time.time())) - self._dynamic_ax.figure.canvas.draw() - - -if __name__ == "__main__": - qapp = QtWidgets.QApplication(sys.argv) - app = ApplicationWindow() - app.show() - qapp.exec_() diff --git a/_downloads/3f909ed9477a79313744fcd54b7cf97b/demo_colorbar_of_inset_axes.py b/_downloads/3f909ed9477a79313744fcd54b7cf97b/demo_colorbar_of_inset_axes.py deleted file mode 120000 index def3ffa5da8..00000000000 --- a/_downloads/3f909ed9477a79313744fcd54b7cf97b/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/3f909ed9477a79313744fcd54b7cf97b/demo_colorbar_of_inset_axes.py \ No newline at end of file diff --git a/_downloads/3f9738a6a181e19811a226501840349c/embedding_in_gtk3_sgskip.ipynb b/_downloads/3f9738a6a181e19811a226501840349c/embedding_in_gtk3_sgskip.ipynb deleted file mode 100644 index 1b6090fdda4..00000000000 --- a/_downloads/3f9738a6a181e19811a226501840349c/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in GTK3\n\n\nDemonstrate adding a FigureCanvasGTK3Agg widget to a Gtk.ScrolledWindow using\nGTK3 accessed via pygobject.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\nfrom matplotlib.backends.backend_gtk3agg import (\n FigureCanvasGTK3Agg as FigureCanvas)\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nwin = Gtk.Window()\nwin.connect(\"delete-event\", Gtk.main_quit)\nwin.set_default_size(400, 300)\nwin.set_title(\"Embedding in GTK\")\n\nf = Figure(figsize=(5, 4), dpi=100)\na = f.add_subplot(111)\nt = np.arange(0.0, 3.0, 0.01)\ns = np.sin(2*np.pi*t)\na.plot(t, s)\n\nsw = Gtk.ScrolledWindow()\nwin.add(sw)\n# A scrolled window border goes outside the scrollbars and viewport\nsw.set_border_width(10)\n\ncanvas = FigureCanvas(f) # a Gtk.DrawingArea\ncanvas.set_size_request(800, 600)\nsw.add_with_viewport(canvas)\n\nwin.show_all()\nGtk.main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3fa7069979c071991f51ef8e8aa27747/fill_spiral.ipynb b/_downloads/3fa7069979c071991f51ef8e8aa27747/fill_spiral.ipynb deleted file mode 120000 index a9aa713c417..00000000000 --- a/_downloads/3fa7069979c071991f51ef8e8aa27747/fill_spiral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3fa7069979c071991f51ef8e8aa27747/fill_spiral.ipynb \ No newline at end of file diff --git a/_downloads/3fb0f4d3a58d675ce0f4304f5027f3c8/whats_new_1_subplot3d.ipynb b/_downloads/3fb0f4d3a58d675ce0f4304f5027f3c8/whats_new_1_subplot3d.ipynb deleted file mode 100644 index 5a5744cbc71..00000000000 --- a/_downloads/3fb0f4d3a58d675ce0f4304f5027f3c8/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Whats New 1 Subplot3d\n\n\nCreate two three-dimensional plots in the same figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib import cm\n#from matplotlib.ticker import LinearLocator, FixedLocator, FormatStrFormatter\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nfig = plt.figure()\n\nax = fig.add_subplot(1, 2, 1, projection='3d')\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\nsurf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis,\n linewidth=0, antialiased=False)\nax.set_zlim3d(-1.01, 1.01)\n\n#ax.w_zaxis.set_major_locator(LinearLocator(10))\n#ax.w_zaxis.set_major_formatter(FormatStrFormatter('%.03f'))\n\nfig.colorbar(surf, shrink=0.5, aspect=5)\n\nfrom mpl_toolkits.mplot3d.axes3d import get_test_data\nax = fig.add_subplot(1, 2, 2, projection='3d')\nX, Y, Z = get_test_data(0.05)\nax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport mpl_toolkits\nmatplotlib.figure.Figure.add_subplot\nmpl_toolkits.mplot3d.axes3d.Axes3D.plot_surface\nmpl_toolkits.mplot3d.axes3d.Axes3D.plot_wireframe\nmpl_toolkits.mplot3d.axes3d.Axes3D.set_zlim3d" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3fb517b6f3fbe8f5d72bfad8c4a966a8/demo_ticklabel_direction.py b/_downloads/3fb517b6f3fbe8f5d72bfad8c4a966a8/demo_ticklabel_direction.py deleted file mode 100644 index 1c777c1ec1f..00000000000 --- a/_downloads/3fb517b6f3fbe8f5d72bfad8c4a966a8/demo_ticklabel_direction.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -======================== -Demo Ticklabel Direction -======================== - -""" - -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.axislines as axislines - - -def setup_axes(fig, rect): - ax = axislines.Subplot(fig, rect) - fig.add_subplot(ax) - - ax.set_yticks([0.2, 0.8]) - ax.set_xticks([0.2, 0.8]) - - return ax - - -fig = plt.figure(figsize=(6, 3)) -fig.subplots_adjust(bottom=0.2) - -ax = setup_axes(fig, 131) -for axis in ax.axis.values(): - axis.major_ticks.set_tick_out(True) -# or you can simply do "ax.axis[:].major_ticks.set_tick_out(True)" - -ax = setup_axes(fig, 132) -ax.axis["left"].set_axis_direction("right") -ax.axis["bottom"].set_axis_direction("top") -ax.axis["right"].set_axis_direction("left") -ax.axis["top"].set_axis_direction("bottom") - -ax = setup_axes(fig, 133) -ax.axis["left"].set_axis_direction("right") -ax.axis[:].major_ticks.set_tick_out(True) - -ax.axis["left"].label.set_text("Long Label Left") -ax.axis["bottom"].label.set_text("Label Bottom") -ax.axis["right"].label.set_text("Long Label Right") -ax.axis["right"].label.set_visible(True) -ax.axis["left"].label.set_pad(0) -ax.axis["bottom"].label.set_pad(10) - -plt.show() diff --git a/_downloads/3fc9f66200e91de8e6aa70dc4aa334cb/contour.ipynb b/_downloads/3fc9f66200e91de8e6aa70dc4aa334cb/contour.ipynb deleted file mode 120000 index 3c7a8acca0a..00000000000 --- a/_downloads/3fc9f66200e91de8e6aa70dc4aa334cb/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3fc9f66200e91de8e6aa70dc4aa334cb/contour.ipynb \ No newline at end of file diff --git a/_downloads/3fd27ae68aee66522a561d692ffb213b/keypress_demo.ipynb b/_downloads/3fd27ae68aee66522a561d692ffb213b/keypress_demo.ipynb deleted file mode 100644 index bd7902c0584..00000000000 --- a/_downloads/3fd27ae68aee66522a561d692ffb213b/keypress_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Keypress Demo\n\n\nShow how to connect to keypress events\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import sys\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef press(event):\n print('press', event.key)\n sys.stdout.flush()\n if event.key == 'x':\n visible = xl.get_visible()\n xl.set_visible(not visible)\n fig.canvas.draw()\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\n\nfig.canvas.mpl_connect('key_press_event', press)\n\nax.plot(np.random.rand(12), np.random.rand(12), 'go')\nxl = ax.set_xlabel('easy come, easy go')\nax.set_title('Press a key')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/3fd437879578ea561a9ba1ec5abac97f/bar_unit_demo.ipynb b/_downloads/3fd437879578ea561a9ba1ec5abac97f/bar_unit_demo.ipynb deleted file mode 120000 index 9f388b5e42a..00000000000 --- a/_downloads/3fd437879578ea561a9ba1ec5abac97f/bar_unit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/3fd437879578ea561a9ba1ec5abac97f/bar_unit_demo.ipynb \ No newline at end of file diff --git a/_downloads/3fe81d5186d416075ca4a68c7fe01c2b/artist_tests.ipynb b/_downloads/3fe81d5186d416075ca4a68c7fe01c2b/artist_tests.ipynb deleted file mode 120000 index decc0e559ff..00000000000 --- a/_downloads/3fe81d5186d416075ca4a68c7fe01c2b/artist_tests.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3fe81d5186d416075ca4a68c7fe01c2b/artist_tests.ipynb \ No newline at end of file diff --git a/_downloads/3ff8004da258911b70e88b8cfab451f4/tricontourf3d.ipynb b/_downloads/3ff8004da258911b70e88b8cfab451f4/tricontourf3d.ipynb deleted file mode 120000 index 2af175a1623..00000000000 --- a/_downloads/3ff8004da258911b70e88b8cfab451f4/tricontourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/3ff8004da258911b70e88b8cfab451f4/tricontourf3d.ipynb \ No newline at end of file diff --git a/_downloads/3ffad394c4fa94bf6ef6e2bdcd278d1c/log_bar.py b/_downloads/3ffad394c4fa94bf6ef6e2bdcd278d1c/log_bar.py deleted file mode 120000 index 8eb507c0ab9..00000000000 --- a/_downloads/3ffad394c4fa94bf6ef6e2bdcd278d1c/log_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/3ffad394c4fa94bf6ef6e2bdcd278d1c/log_bar.py \ No newline at end of file diff --git a/_downloads/3ffd0f30b3540845ad1c1555b7762bf9/transforms_tutorial.ipynb b/_downloads/3ffd0f30b3540845ad1c1555b7762bf9/transforms_tutorial.ipynb deleted file mode 120000 index 7e281d394ad..00000000000 --- a/_downloads/3ffd0f30b3540845ad1c1555b7762bf9/transforms_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/3ffd0f30b3540845ad1c1555b7762bf9/transforms_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/4003e4e4c99173eef017721d9deb1e0d/stackplot_demo.ipynb b/_downloads/4003e4e4c99173eef017721d9deb1e0d/stackplot_demo.ipynb deleted file mode 100644 index 24e26918dbb..00000000000 --- a/_downloads/4003e4e4c99173eef017721d9deb1e0d/stackplot_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Stackplot Demo\n\n\nHow to create stackplots with Matplotlib.\n\nStackplots are generated by plotting different datasets vertically on\ntop of one another rather than overlapping with one another. Below we\nshow some examples to accomplish this with Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = [1, 2, 3, 4, 5]\ny1 = [1, 1, 2, 3, 5]\ny2 = [0, 4, 2, 6, 8]\ny3 = [1, 3, 5, 7, 9]\n\ny = np.vstack([y1, y2, y3])\n\nlabels = [\"Fibonacci \", \"Evens\", \"Odds\"]\n\nfig, ax = plt.subplots()\nax.stackplot(x, y1, y2, y3, labels=labels)\nax.legend(loc='upper left')\nplt.show()\n\nfig, ax = plt.subplots()\nax.stackplot(x, y)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we show an example of making a streamgraph using stackplot\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def layers(n, m):\n \"\"\"\n Return *n* random Gaussian mixtures, each of length *m*.\n \"\"\"\n def bump(a):\n x = 1 / (.1 + np.random.random())\n y = 2 * np.random.random() - .5\n z = 10 / (.1 + np.random.random())\n for i in range(m):\n w = (i / m - y) * z\n a[i] += x * np.exp(-w * w)\n a = np.zeros((m, n))\n for i in range(n):\n for j in range(5):\n bump(a[:, i])\n return a\n\n\nd = layers(3, 100)\n\nfig, ax = plt.subplots()\nax.stackplot(range(100), d.T, baseline='wiggle')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/40118ea75ee746565f694e3435625d61/fig_axes_labels_simple.ipynb b/_downloads/40118ea75ee746565f694e3435625d61/fig_axes_labels_simple.ipynb deleted file mode 120000 index 204237fc7c3..00000000000 --- a/_downloads/40118ea75ee746565f694e3435625d61/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/40118ea75ee746565f694e3435625d61/fig_axes_labels_simple.ipynb \ No newline at end of file diff --git a/_downloads/401bc46e34e8da52287f81e03c6d5063/span_selector.py b/_downloads/401bc46e34e8da52287f81e03c6d5063/span_selector.py deleted file mode 120000 index e5506c84487..00000000000 --- a/_downloads/401bc46e34e8da52287f81e03c6d5063/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/401bc46e34e8da52287f81e03c6d5063/span_selector.py \ No newline at end of file diff --git a/_downloads/401c15ce6dcc1f3ca79e4f272015dbf0/custom_boxstyle01.py b/_downloads/401c15ce6dcc1f3ca79e4f272015dbf0/custom_boxstyle01.py deleted file mode 120000 index 63e3589b2ed..00000000000 --- a/_downloads/401c15ce6dcc1f3ca79e4f272015dbf0/custom_boxstyle01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/401c15ce6dcc1f3ca79e4f272015dbf0/custom_boxstyle01.py \ No newline at end of file diff --git a/_downloads/401d51b069773c6c4caa4418fd1423c1/contourf3d_2.ipynb b/_downloads/401d51b069773c6c4caa4418fd1423c1/contourf3d_2.ipynb deleted file mode 100644 index ecbb3d91e04..00000000000 --- a/_downloads/401d51b069773c6c4caa4418fd1423c1/contourf3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Projecting filled contour onto a graph\n\n\nDemonstrates displaying a 3D surface while also projecting filled contour\n'profiles' onto the 'walls' of the graph.\n\nSee contour3d_demo2 for the unfilled version.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot the 3D surface\nax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3)\n\n# Plot projections of the contours for each dimension. By choosing offsets\n# that match the appropriate axes limits, the projected contours will sit on\n# the 'walls' of the graph\ncset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)\ncset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)\ncset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)\n\nax.set_xlim(-40, 40)\nax.set_ylim(-40, 40)\nax.set_zlim(-100, 100)\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4030a9b69d0b9e98784dab0fc7bb1ab3/artists.ipynb b/_downloads/4030a9b69d0b9e98784dab0fc7bb1ab3/artists.ipynb deleted file mode 120000 index d4b4f4972ea..00000000000 --- a/_downloads/4030a9b69d0b9e98784dab0fc7bb1ab3/artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4030a9b69d0b9e98784dab0fc7bb1ab3/artists.ipynb \ No newline at end of file diff --git a/_downloads/40354b0af2e513051bc2a14b4de5efc1/voxels_torus.ipynb b/_downloads/40354b0af2e513051bc2a14b4de5efc1/voxels_torus.ipynb deleted file mode 120000 index bae83d05371..00000000000 --- a/_downloads/40354b0af2e513051bc2a14b4de5efc1/voxels_torus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/40354b0af2e513051bc2a14b4de5efc1/voxels_torus.ipynb \ No newline at end of file diff --git a/_downloads/4048010ec013e11a701b108da44b29fc/embedding_in_gtk3_sgskip.py b/_downloads/4048010ec013e11a701b108da44b29fc/embedding_in_gtk3_sgskip.py deleted file mode 120000 index ec4557c6702..00000000000 --- a/_downloads/4048010ec013e11a701b108da44b29fc/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4048010ec013e11a701b108da44b29fc/embedding_in_gtk3_sgskip.py \ No newline at end of file diff --git a/_downloads/4053e251b5e6e8ed0e1b61ee6f593074/simple_legend02.ipynb b/_downloads/4053e251b5e6e8ed0e1b61ee6f593074/simple_legend02.ipynb deleted file mode 120000 index 284f5f6e1c8..00000000000 --- a/_downloads/4053e251b5e6e8ed0e1b61ee6f593074/simple_legend02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4053e251b5e6e8ed0e1b61ee6f593074/simple_legend02.ipynb \ No newline at end of file diff --git a/_downloads/4055f99f1e8b1c3a5af4f4738f8c1bb4/cursor_demo_sgskip.ipynb b/_downloads/4055f99f1e8b1c3a5af4f4738f8c1bb4/cursor_demo_sgskip.ipynb deleted file mode 100644 index 678547e2e2c..00000000000 --- a/_downloads/4055f99f1e8b1c3a5af4f4738f8c1bb4/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Cursor Demo\n\n\nThis example shows how to use Matplotlib to provide a data cursor. It uses\nMatplotlib to draw the cursor and may be a slow since this requires redrawing\nthe figure with every mouse move.\n\nFaster cursoring is possible using native GUI drawing, as in\n:doc:`/gallery/user_interfaces/wxcursor_demo_sgskip`.\n\nThe mpldatacursor__ and mplcursors__ third-party packages can be used to\nachieve a similar effect.\n\n__ https://github.com/joferkington/mpldatacursor\n__ https://github.com/anntzer/mplcursors\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nclass Cursor(object):\n def __init__(self, ax):\n self.ax = ax\n self.lx = ax.axhline(color='k') # the horiz line\n self.ly = ax.axvline(color='k') # the vert line\n\n # text location in axes coords\n self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes)\n\n def mouse_move(self, event):\n if not event.inaxes:\n return\n\n x, y = event.xdata, event.ydata\n # update the line positions\n self.lx.set_ydata(y)\n self.ly.set_xdata(x)\n\n self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y))\n self.ax.figure.canvas.draw()\n\n\nclass SnaptoCursor(object):\n \"\"\"\n Like Cursor but the crosshair snaps to the nearest x, y point.\n For simplicity, this assumes that *x* is sorted.\n \"\"\"\n\n def __init__(self, ax, x, y):\n self.ax = ax\n self.lx = ax.axhline(color='k') # the horiz line\n self.ly = ax.axvline(color='k') # the vert line\n self.x = x\n self.y = y\n # text location in axes coords\n self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes)\n\n def mouse_move(self, event):\n if not event.inaxes:\n return\n\n x, y = event.xdata, event.ydata\n indx = min(np.searchsorted(self.x, x), len(self.x) - 1)\n x = self.x[indx]\n y = self.y[indx]\n # update the line positions\n self.lx.set_ydata(y)\n self.ly.set_xdata(x)\n\n self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y))\n print('x=%1.2f, y=%1.2f' % (x, y))\n self.ax.figure.canvas.draw()\n\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2 * 2 * np.pi * t)\n\nfig, ax = plt.subplots()\nax.plot(t, s, 'o')\ncursor = Cursor(ax)\nfig.canvas.mpl_connect('motion_notify_event', cursor.mouse_move)\n\nfig, ax = plt.subplots()\nax.plot(t, s, 'o')\nsnap_cursor = SnaptoCursor(ax, t, s)\nfig.canvas.mpl_connect('motion_notify_event', snap_cursor.mouse_move)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/40583aaf59e124d8d150a6c50edf3632/barchart.ipynb b/_downloads/40583aaf59e124d8d150a6c50edf3632/barchart.ipynb deleted file mode 100644 index 901c432dd47..00000000000 --- a/_downloads/40583aaf59e124d8d150a6c50edf3632/barchart.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Grouped bar chart with labels\n\n\nThis example shows a how to create a grouped bar chart and how to annotate\nbars with labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nlabels = ['G1', 'G2', 'G3', 'G4', 'G5']\nmen_means = [20, 34, 30, 35, 27]\nwomen_means = [25, 32, 34, 20, 25]\n\nx = np.arange(len(labels)) # the label locations\nwidth = 0.35 # the width of the bars\n\nfig, ax = plt.subplots()\nrects1 = ax.bar(x - width/2, men_means, width, label='Men')\nrects2 = ax.bar(x + width/2, women_means, width, label='Women')\n\n# Add some text for labels, title and custom x-axis tick labels, etc.\nax.set_ylabel('Scores')\nax.set_title('Scores by group and gender')\nax.set_xticks(x)\nax.set_xticklabels(labels)\nax.legend()\n\n\ndef autolabel(rects):\n \"\"\"Attach a text label above each bar in *rects*, displaying its height.\"\"\"\n for rect in rects:\n height = rect.get_height()\n ax.annotate('{}'.format(height),\n xy=(rect.get_x() + rect.get_width() / 2, height),\n xytext=(0, 3), # 3 points vertical offset\n textcoords=\"offset points\",\n ha='center', va='bottom')\n\n\nautolabel(rects1)\nautolabel(rects2)\n\nfig.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/405f7fdeb103db4b9737a809b0594c51/triplot_demo.py b/_downloads/405f7fdeb103db4b9737a809b0594c51/triplot_demo.py deleted file mode 120000 index 26405b70b65..00000000000 --- a/_downloads/405f7fdeb103db4b9737a809b0594c51/triplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/405f7fdeb103db4b9737a809b0594c51/triplot_demo.py \ No newline at end of file diff --git a/_downloads/40656ef4f269e390510b40b4f01f2a17/demo_gridspec03.ipynb b/_downloads/40656ef4f269e390510b40b4f01f2a17/demo_gridspec03.ipynb deleted file mode 120000 index f7c96ee77b7..00000000000 --- a/_downloads/40656ef4f269e390510b40b4f01f2a17/demo_gridspec03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/40656ef4f269e390510b40b4f01f2a17/demo_gridspec03.ipynb \ No newline at end of file diff --git a/_downloads/406dd41d7a1d39b2d1ca6f395425516f/buttons.py b/_downloads/406dd41d7a1d39b2d1ca6f395425516f/buttons.py deleted file mode 100644 index 833366d33a0..00000000000 --- a/_downloads/406dd41d7a1d39b2d1ca6f395425516f/buttons.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -======= -Buttons -======= - -Constructing a simple button GUI to modify a sine wave. - -The ``next`` and ``previous`` button widget helps visualize the wave with -new frequencies. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import Button - -freqs = np.arange(2, 20, 3) - -fig, ax = plt.subplots() -plt.subplots_adjust(bottom=0.2) -t = np.arange(0.0, 1.0, 0.001) -s = np.sin(2*np.pi*freqs[0]*t) -l, = plt.plot(t, s, lw=2) - - -class Index(object): - ind = 0 - - def next(self, event): - self.ind += 1 - i = self.ind % len(freqs) - ydata = np.sin(2*np.pi*freqs[i]*t) - l.set_ydata(ydata) - plt.draw() - - def prev(self, event): - self.ind -= 1 - i = self.ind % len(freqs) - ydata = np.sin(2*np.pi*freqs[i]*t) - l.set_ydata(ydata) - plt.draw() - -callback = Index() -axprev = plt.axes([0.7, 0.05, 0.1, 0.075]) -axnext = plt.axes([0.81, 0.05, 0.1, 0.075]) -bnext = Button(axnext, 'Next') -bnext.on_clicked(callback.next) -bprev = Button(axprev, 'Previous') -bprev.on_clicked(callback.prev) - -plt.show() diff --git a/_downloads/406efd7476542876dc9d40489580ee20/custom_cmap.ipynb b/_downloads/406efd7476542876dc9d40489580ee20/custom_cmap.ipynb deleted file mode 120000 index fb53e9a5cf8..00000000000 --- a/_downloads/406efd7476542876dc9d40489580ee20/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/406efd7476542876dc9d40489580ee20/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/4085087b9388a387575d01e13aac7554/contour_corner_mask.py b/_downloads/4085087b9388a387575d01e13aac7554/contour_corner_mask.py deleted file mode 120000 index 9841bb342ea..00000000000 --- a/_downloads/4085087b9388a387575d01e13aac7554/contour_corner_mask.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4085087b9388a387575d01e13aac7554/contour_corner_mask.py \ No newline at end of file diff --git a/_downloads/40853a87c138343532f989b915d3984e/legend_picking.ipynb b/_downloads/40853a87c138343532f989b915d3984e/legend_picking.ipynb deleted file mode 120000 index f372a497c24..00000000000 --- a/_downloads/40853a87c138343532f989b915d3984e/legend_picking.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/40853a87c138343532f989b915d3984e/legend_picking.ipynb \ No newline at end of file diff --git a/_downloads/4085e69cb8ec694216f6cae8a7a6dc94/color_cycle.ipynb b/_downloads/4085e69cb8ec694216f6cae8a7a6dc94/color_cycle.ipynb deleted file mode 120000 index 1cadef8ddc2..00000000000 --- a/_downloads/4085e69cb8ec694216f6cae8a7a6dc94/color_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4085e69cb8ec694216f6cae8a7a6dc94/color_cycle.ipynb \ No newline at end of file diff --git a/_downloads/408c37786dde6b005190954648c6678b/subplot.ipynb b/_downloads/408c37786dde6b005190954648c6678b/subplot.ipynb deleted file mode 120000 index a873ce2f7e4..00000000000 --- a/_downloads/408c37786dde6b005190954648c6678b/subplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/408c37786dde6b005190954648c6678b/subplot.ipynb \ No newline at end of file diff --git a/_downloads/4092eaf568bbdfdebb793d277b086494/xcorr_acorr_demo.ipynb b/_downloads/4092eaf568bbdfdebb793d277b086494/xcorr_acorr_demo.ipynb deleted file mode 120000 index ebab15676bb..00000000000 --- a/_downloads/4092eaf568bbdfdebb793d277b086494/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4092eaf568bbdfdebb793d277b086494/xcorr_acorr_demo.ipynb \ No newline at end of file diff --git a/_downloads/4095e40bfdaeea40b5ebf921dca65a60/findobj_demo.py b/_downloads/4095e40bfdaeea40b5ebf921dca65a60/findobj_demo.py deleted file mode 120000 index 05bcb33cd42..00000000000 --- a/_downloads/4095e40bfdaeea40b5ebf921dca65a60/findobj_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4095e40bfdaeea40b5ebf921dca65a60/findobj_demo.py \ No newline at end of file diff --git a/_downloads/40993d7ae04f73752f502355158e5895/bbox_intersect.ipynb b/_downloads/40993d7ae04f73752f502355158e5895/bbox_intersect.ipynb deleted file mode 120000 index 081ed197add..00000000000 --- a/_downloads/40993d7ae04f73752f502355158e5895/bbox_intersect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/40993d7ae04f73752f502355158e5895/bbox_intersect.ipynb \ No newline at end of file diff --git a/_downloads/40a12164921c488bd69972b10e844888/annotate_simple04.py b/_downloads/40a12164921c488bd69972b10e844888/annotate_simple04.py deleted file mode 120000 index 2cc9a83ce72..00000000000 --- a/_downloads/40a12164921c488bd69972b10e844888/annotate_simple04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/40a12164921c488bd69972b10e844888/annotate_simple04.py \ No newline at end of file diff --git a/_downloads/40a45294d2f8972837045537bf5ac5ab/nan_test.py b/_downloads/40a45294d2f8972837045537bf5ac5ab/nan_test.py deleted file mode 120000 index 2c757b685f8..00000000000 --- a/_downloads/40a45294d2f8972837045537bf5ac5ab/nan_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/40a45294d2f8972837045537bf5ac5ab/nan_test.py \ No newline at end of file diff --git a/_downloads/40a8f263f4e7dcfdb37c3e52e1ea5395/simple_anchored_artists.py b/_downloads/40a8f263f4e7dcfdb37c3e52e1ea5395/simple_anchored_artists.py deleted file mode 120000 index 584ec1afcc1..00000000000 --- a/_downloads/40a8f263f4e7dcfdb37c3e52e1ea5395/simple_anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/40a8f263f4e7dcfdb37c3e52e1ea5395/simple_anchored_artists.py \ No newline at end of file diff --git a/_downloads/40b52c8decf5a92347a82746264de1fb/textbox.ipynb b/_downloads/40b52c8decf5a92347a82746264de1fb/textbox.ipynb deleted file mode 120000 index 71c1e636260..00000000000 --- a/_downloads/40b52c8decf5a92347a82746264de1fb/textbox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/40b52c8decf5a92347a82746264de1fb/textbox.ipynb \ No newline at end of file diff --git a/_downloads/40bb05c567e667513d7dea8d853d520d/demo_agg_filter.py b/_downloads/40bb05c567e667513d7dea8d853d520d/demo_agg_filter.py deleted file mode 120000 index d674a6a852a..00000000000 --- a/_downloads/40bb05c567e667513d7dea8d853d520d/demo_agg_filter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/40bb05c567e667513d7dea8d853d520d/demo_agg_filter.py \ No newline at end of file diff --git a/_downloads/40c4d7a94f78428392922e822132ad65/3D.py b/_downloads/40c4d7a94f78428392922e822132ad65/3D.py deleted file mode 120000 index f87a72e8322..00000000000 --- a/_downloads/40c4d7a94f78428392922e822132ad65/3D.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/40c4d7a94f78428392922e822132ad65/3D.py \ No newline at end of file diff --git a/_downloads/40ccd2e1a9e974c9661a59244daaffc2/annotate_with_units.py b/_downloads/40ccd2e1a9e974c9661a59244daaffc2/annotate_with_units.py deleted file mode 120000 index 19dc7ffa26d..00000000000 --- a/_downloads/40ccd2e1a9e974c9661a59244daaffc2/annotate_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/40ccd2e1a9e974c9661a59244daaffc2/annotate_with_units.py \ No newline at end of file diff --git a/_downloads/40ce03856a846dd515ff45e971944c0d/image_annotated_heatmap.ipynb b/_downloads/40ce03856a846dd515ff45e971944c0d/image_annotated_heatmap.ipynb deleted file mode 120000 index eb11b6b4e05..00000000000 --- a/_downloads/40ce03856a846dd515ff45e971944c0d/image_annotated_heatmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/40ce03856a846dd515ff45e971944c0d/image_annotated_heatmap.ipynb \ No newline at end of file diff --git a/_downloads/40ce8fc752bbccc2916fa960f8fbe9b7/frame_grabbing_sgskip.py b/_downloads/40ce8fc752bbccc2916fa960f8fbe9b7/frame_grabbing_sgskip.py deleted file mode 120000 index 8e462936588..00000000000 --- a/_downloads/40ce8fc752bbccc2916fa960f8fbe9b7/frame_grabbing_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/40ce8fc752bbccc2916fa960f8fbe9b7/frame_grabbing_sgskip.py \ No newline at end of file diff --git a/_downloads/40db53b8fd5c1a04686da07d188fbfb6/histogram_features.ipynb b/_downloads/40db53b8fd5c1a04686da07d188fbfb6/histogram_features.ipynb deleted file mode 100644 index ebeb2896f1f..00000000000 --- a/_downloads/40db53b8fd5c1a04686da07d188fbfb6/histogram_features.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================================================\nDemo of the histogram (hist) function with a few features\n=========================================================\n\nIn addition to the basic histogram, this demo shows a few optional features:\n\n* Setting the number of data bins.\n* The ``normed`` flag, which normalizes bin heights so that the integral of\n the histogram is 1. The resulting histogram is an approximation of the\n probability density function.\n* Setting the face color of the bars.\n* Setting the opacity (alpha value).\n\nSelecting different bin counts and sizes can significantly affect the shape\nof a histogram. The Astropy docs have a great section_ on how to select these\nparameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\n# example data\nmu = 100 # mean of distribution\nsigma = 15 # standard deviation of distribution\nx = mu + sigma * np.random.randn(437)\n\nnum_bins = 50\n\nfig, ax = plt.subplots()\n\n# the histogram of the data\nn, bins, patches = ax.hist(x, num_bins, density=1)\n\n# add a 'best fit' line\ny = ((1 / (np.sqrt(2 * np.pi) * sigma)) *\n np.exp(-0.5 * (1 / sigma * (bins - mu))**2))\nax.plot(bins, y, '--')\nax.set_xlabel('Smarts')\nax.set_ylabel('Probability density')\nax.set_title(r'Histogram of IQ: $\\mu=100$, $\\sigma=15$')\n\n# Tweak spacing to prevent clipping of ylabel\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.hist\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/40df196075050981b4e8a43b6aa93f98/demo_gridspec03.ipynb b/_downloads/40df196075050981b4e8a43b6aa93f98/demo_gridspec03.ipynb deleted file mode 120000 index 6886cc724e3..00000000000 --- a/_downloads/40df196075050981b4e8a43b6aa93f98/demo_gridspec03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/40df196075050981b4e8a43b6aa93f98/demo_gridspec03.ipynb \ No newline at end of file diff --git a/_downloads/40e589fd9015c44db61f8a9be3115ba6/usetex_demo.ipynb b/_downloads/40e589fd9015c44db61f8a9be3115ba6/usetex_demo.ipynb deleted file mode 120000 index ab7520721ea..00000000000 --- a/_downloads/40e589fd9015c44db61f8a9be3115ba6/usetex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/40e589fd9015c44db61f8a9be3115ba6/usetex_demo.ipynb \ No newline at end of file diff --git a/_downloads/40f2be4547f75e5d617a8bfd7b485b52/scales.ipynb b/_downloads/40f2be4547f75e5d617a8bfd7b485b52/scales.ipynb deleted file mode 120000 index ab0fbcc0ee5..00000000000 --- a/_downloads/40f2be4547f75e5d617a8bfd7b485b52/scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/40f2be4547f75e5d617a8bfd7b485b52/scales.ipynb \ No newline at end of file diff --git a/_downloads/40f6812d7444a225551b9783c7e24a27/figimage_demo.py b/_downloads/40f6812d7444a225551b9783c7e24a27/figimage_demo.py deleted file mode 120000 index 009b42c1d35..00000000000 --- a/_downloads/40f6812d7444a225551b9783c7e24a27/figimage_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/40f6812d7444a225551b9783c7e24a27/figimage_demo.py \ No newline at end of file diff --git a/_downloads/40f6963e6c271424f8858b3947fa952c/path_patch.py b/_downloads/40f6963e6c271424f8858b3947fa952c/path_patch.py deleted file mode 100644 index 5e025bba692..00000000000 --- a/_downloads/40f6963e6c271424f8858b3947fa952c/path_patch.py +++ /dev/null @@ -1,56 +0,0 @@ -r""" -================ -PathPatch object -================ - -This example shows how to create `~.path.Path` and `~.patches.PathPatch` objects through -Matplotlib's API. -""" -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots() - -Path = mpath.Path -path_data = [ - (Path.MOVETO, (1.58, -2.57)), - (Path.CURVE4, (0.35, -1.1)), - (Path.CURVE4, (-1.75, 2.0)), - (Path.CURVE4, (0.375, 2.0)), - (Path.LINETO, (0.85, 1.15)), - (Path.CURVE4, (2.2, 3.2)), - (Path.CURVE4, (3, 0.05)), - (Path.CURVE4, (2.0, -0.5)), - (Path.CLOSEPOLY, (1.58, -2.57)), - ] -codes, verts = zip(*path_data) -path = mpath.Path(verts, codes) -patch = mpatches.PathPatch(path, facecolor='r', alpha=0.5) -ax.add_patch(patch) - -# plot control points and connecting lines -x, y = zip(*path.vertices) -line, = ax.plot(x, y, 'go-') - -ax.grid() -ax.axis('equal') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.axes.Axes.add_patch diff --git a/_downloads/412564443715952e42b523d8f89fd222/hyperlinks_sgskip.py b/_downloads/412564443715952e42b523d8f89fd222/hyperlinks_sgskip.py deleted file mode 120000 index ee16992eab6..00000000000 --- a/_downloads/412564443715952e42b523d8f89fd222/hyperlinks_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/412564443715952e42b523d8f89fd222/hyperlinks_sgskip.py \ No newline at end of file diff --git a/_downloads/412a1a1d4dd3c92d23b6501d75e06b86/demo_colorbar_with_inset_locator.ipynb b/_downloads/412a1a1d4dd3c92d23b6501d75e06b86/demo_colorbar_with_inset_locator.ipynb deleted file mode 120000 index e81e7f17f59..00000000000 --- a/_downloads/412a1a1d4dd3c92d23b6501d75e06b86/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/412a1a1d4dd3c92d23b6501d75e06b86/demo_colorbar_with_inset_locator.ipynb \ No newline at end of file diff --git a/_downloads/4136f1b53c4461aaa42be0ea65839774/arrow_simple_demo.ipynb b/_downloads/4136f1b53c4461aaa42be0ea65839774/arrow_simple_demo.ipynb deleted file mode 120000 index a2d10460824..00000000000 --- a/_downloads/4136f1b53c4461aaa42be0ea65839774/arrow_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4136f1b53c4461aaa42be0ea65839774/arrow_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/414ce488759725aa3ef195bc7c40f1cd/embedding_in_gtk3_sgskip.ipynb b/_downloads/414ce488759725aa3ef195bc7c40f1cd/embedding_in_gtk3_sgskip.ipynb deleted file mode 120000 index b765f128367..00000000000 --- a/_downloads/414ce488759725aa3ef195bc7c40f1cd/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/414ce488759725aa3ef195bc7c40f1cd/embedding_in_gtk3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/4153d91592ea2c87ab46a3a29e0530ed/coords_demo.py b/_downloads/4153d91592ea2c87ab46a3a29e0530ed/coords_demo.py deleted file mode 120000 index e812479bb56..00000000000 --- a/_downloads/4153d91592ea2c87ab46a3a29e0530ed/coords_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4153d91592ea2c87ab46a3a29e0530ed/coords_demo.py \ No newline at end of file diff --git a/_downloads/416258db20f210dbc91bc2269097113a/lines3d.py b/_downloads/416258db20f210dbc91bc2269097113a/lines3d.py deleted file mode 100644 index e0e45b1c051..00000000000 --- a/_downloads/416258db20f210dbc91bc2269097113a/lines3d.py +++ /dev/null @@ -1,31 +0,0 @@ -''' -================ -Parametric Curve -================ - -This example demonstrates plotting a parametric curve in 3D. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import numpy as np -import matplotlib.pyplot as plt - - -plt.rcParams['legend.fontsize'] = 10 - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Prepare arrays x, y, z -theta = np.linspace(-4 * np.pi, 4 * np.pi, 100) -z = np.linspace(-2, 2, 100) -r = z**2 + 1 -x = r * np.sin(theta) -y = r * np.cos(theta) - -ax.plot(x, y, z, label='parametric curve') -ax.legend() - -plt.show() diff --git a/_downloads/4163786f6da61b1b9b1e1f4918cfff60/errorbar_limits_simple.py b/_downloads/4163786f6da61b1b9b1e1f4918cfff60/errorbar_limits_simple.py deleted file mode 120000 index 20b30d2decc..00000000000 --- a/_downloads/4163786f6da61b1b9b1e1f4918cfff60/errorbar_limits_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4163786f6da61b1b9b1e1f4918cfff60/errorbar_limits_simple.py \ No newline at end of file diff --git a/_downloads/416437b16432ec060b1f3910fdfe5d78/simple_axisline4.py b/_downloads/416437b16432ec060b1f3910fdfe5d78/simple_axisline4.py deleted file mode 120000 index bf55d06e53d..00000000000 --- a/_downloads/416437b16432ec060b1f3910fdfe5d78/simple_axisline4.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/416437b16432ec060b1f3910fdfe5d78/simple_axisline4.py \ No newline at end of file diff --git a/_downloads/417acbb12d2b6a185f7af1ca9b76b6ff/barbs.py b/_downloads/417acbb12d2b6a185f7af1ca9b76b6ff/barbs.py deleted file mode 120000 index 7879f2137cb..00000000000 --- a/_downloads/417acbb12d2b6a185f7af1ca9b76b6ff/barbs.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/417acbb12d2b6a185f7af1ca9b76b6ff/barbs.py \ No newline at end of file diff --git a/_downloads/418119596f03a13134942f6d0dcf43d6/simple_axis_pad.ipynb b/_downloads/418119596f03a13134942f6d0dcf43d6/simple_axis_pad.ipynb deleted file mode 100644 index 82136956a26..00000000000 --- a/_downloads/418119596f03a13134942f6d0dcf43d6/simple_axis_pad.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axis Pad\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nimport mpl_toolkits.axisartist.grid_finder as grid_finder\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\n\nimport mpl_toolkits.axisartist as axisartist\n\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import \\\n GridHelperCurveLinear\n\n\ndef setup_axes(fig, rect):\n \"\"\"\n polar projection, but in a rectangular box.\n \"\"\"\n\n # see demo_curvelinear_grid.py for details\n tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform()\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle=360,\n lat_cycle=None,\n lon_minmax=None,\n lat_minmax=(0, np.inf),\n )\n\n grid_locator1 = angle_helper.LocatorDMS(12)\n grid_locator2 = grid_finder.MaxNLocator(5)\n\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1\n )\n\n ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper)\n ax1.axis[:].set_visible(False)\n\n fig.add_subplot(ax1)\n\n ax1.set_aspect(1.)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n return ax1\n\n\ndef add_floating_axis1(ax1):\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 30)\n axis.label.set_text(r\"$\\theta = 30^{\\circ}$\")\n axis.label.set_visible(True)\n\n return axis\n\n\ndef add_floating_axis2(ax1):\n ax1.axis[\"lon\"] = axis = ax1.new_floating_axis(1, 6)\n axis.label.set_text(r\"$r = 6$\")\n axis.label.set_visible(True)\n\n return axis\n\n\nfig = plt.figure(figsize=(9, 3.))\nfig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99,\n wspace=0.01, hspace=0.01)\n\n\ndef ann(ax1, d):\n if plt.rcParams[\"text.usetex\"]:\n d = d.replace(\"_\", r\"\\_\")\n\n ax1.annotate(d, (0.5, 1), (5, -5),\n xycoords=\"axes fraction\", textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\n\nax1 = setup_axes(fig, rect=141)\naxis = add_floating_axis1(ax1)\nann(ax1, r\"default\")\n\nax1 = setup_axes(fig, rect=142)\naxis = add_floating_axis1(ax1)\naxis.major_ticklabels.set_pad(10)\nann(ax1, r\"ticklabels.set_pad(10)\")\n\nax1 = setup_axes(fig, rect=143)\naxis = add_floating_axis1(ax1)\naxis.label.set_pad(20)\nann(ax1, r\"label.set_pad(20)\")\n\nax1 = setup_axes(fig, rect=144)\naxis = add_floating_axis1(ax1)\naxis.major_ticks.set_tick_out(True)\nann(ax1, \"ticks.set_tick_out(True)\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/418d4ca3f5affb806d882045086eb789/pyplot_scales.ipynb b/_downloads/418d4ca3f5affb806d882045086eb789/pyplot_scales.ipynb deleted file mode 120000 index f1763376b10..00000000000 --- a/_downloads/418d4ca3f5affb806d882045086eb789/pyplot_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/418d4ca3f5affb806d882045086eb789/pyplot_scales.ipynb \ No newline at end of file diff --git a/_downloads/41b07a606d47877f7b24b3b5e4dcbca8/line_with_text.py b/_downloads/41b07a606d47877f7b24b3b5e4dcbca8/line_with_text.py deleted file mode 120000 index 2df51c3439f..00000000000 --- a/_downloads/41b07a606d47877f7b24b3b5e4dcbca8/line_with_text.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/41b07a606d47877f7b24b3b5e4dcbca8/line_with_text.py \ No newline at end of file diff --git a/_downloads/41b4da50a300fdc03218dc16e6b120a7/spine_placement_demo.py b/_downloads/41b4da50a300fdc03218dc16e6b120a7/spine_placement_demo.py deleted file mode 100644 index ca254334455..00000000000 --- a/_downloads/41b4da50a300fdc03218dc16e6b120a7/spine_placement_demo.py +++ /dev/null @@ -1,116 +0,0 @@ -""" -==================== -Spine Placement Demo -==================== - -Adjusting the location and appearance of axis spines. -""" -import numpy as np -import matplotlib.pyplot as plt - - -############################################################################### - -fig = plt.figure() -x = np.linspace(-np.pi, np.pi, 100) -y = 2 * np.sin(x) - -ax = fig.add_subplot(2, 2, 1) -ax.set_title('centered spines') -ax.plot(x, y) -ax.spines['left'].set_position('center') -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position('center') -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -ax = fig.add_subplot(2, 2, 2) -ax.set_title('zeroed spines') -ax.plot(x, y) -ax.spines['left'].set_position('zero') -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position('zero') -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -ax = fig.add_subplot(2, 2, 3) -ax.set_title('spines at axes (0.6, 0.1)') -ax.plot(x, y) -ax.spines['left'].set_position(('axes', 0.6)) -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position(('axes', 0.1)) -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -ax = fig.add_subplot(2, 2, 4) -ax.set_title('spines at data (1, 2)') -ax.plot(x, y) -ax.spines['left'].set_position(('data', 1)) -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position(('data', 2)) -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -############################################################################### -# Define a method that adjusts the location of the axis spines - - -def adjust_spines(ax, spines): - for loc, spine in ax.spines.items(): - if loc in spines: - spine.set_position(('outward', 10)) # outward by 10 points - spine.set_smart_bounds(True) - else: - spine.set_color('none') # don't draw spine - - # turn off ticks where there is no spine - if 'left' in spines: - ax.yaxis.set_ticks_position('left') - else: - # no yaxis ticks - ax.yaxis.set_ticks([]) - - if 'bottom' in spines: - ax.xaxis.set_ticks_position('bottom') - else: - # no xaxis ticks - ax.xaxis.set_ticks([]) - - -############################################################################### -# Create another figure using our new ``adjust_spines`` method - -fig = plt.figure() - -x = np.linspace(0, 2 * np.pi, 100) -y = 2 * np.sin(x) - -ax = fig.add_subplot(2, 2, 1) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, ['left']) - -ax = fig.add_subplot(2, 2, 2) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, []) - -ax = fig.add_subplot(2, 2, 3) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, ['left', 'bottom']) - -ax = fig.add_subplot(2, 2, 4) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, ['bottom']) - -plt.show() diff --git a/_downloads/41c204dc1156c48c9c6b4af592cd20e4/path_tutorial.py b/_downloads/41c204dc1156c48c9c6b4af592cd20e4/path_tutorial.py deleted file mode 120000 index af8ec18a0ca..00000000000 --- a/_downloads/41c204dc1156c48c9c6b4af592cd20e4/path_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/41c204dc1156c48c9c6b4af592cd20e4/path_tutorial.py \ No newline at end of file diff --git a/_downloads/41d1765042b2c8623ea5529e57731105/demo_colorbar_of_inset_axes.py b/_downloads/41d1765042b2c8623ea5529e57731105/demo_colorbar_of_inset_axes.py deleted file mode 120000 index bd91debfac6..00000000000 --- a/_downloads/41d1765042b2c8623ea5529e57731105/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/41d1765042b2c8623ea5529e57731105/demo_colorbar_of_inset_axes.py \ No newline at end of file diff --git a/_downloads/41e09d436907bfbc3aab7e974f1941a8/close_event.ipynb b/_downloads/41e09d436907bfbc3aab7e974f1941a8/close_event.ipynb deleted file mode 120000 index 36419620052..00000000000 --- a/_downloads/41e09d436907bfbc3aab7e974f1941a8/close_event.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/41e09d436907bfbc3aab7e974f1941a8/close_event.ipynb \ No newline at end of file diff --git a/_downloads/41e2fafef52e546ba649bc286b6e3f3e/axes_grid.py b/_downloads/41e2fafef52e546ba649bc286b6e3f3e/axes_grid.py deleted file mode 120000 index bd51c5141a6..00000000000 --- a/_downloads/41e2fafef52e546ba649bc286b6e3f3e/axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/41e2fafef52e546ba649bc286b6e3f3e/axes_grid.py \ No newline at end of file diff --git a/_downloads/41e6f300ae1da1be6a17bbb61e822728/scatter_piecharts.py b/_downloads/41e6f300ae1da1be6a17bbb61e822728/scatter_piecharts.py deleted file mode 120000 index fcda5957f57..00000000000 --- a/_downloads/41e6f300ae1da1be6a17bbb61e822728/scatter_piecharts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/41e6f300ae1da1be6a17bbb61e822728/scatter_piecharts.py \ No newline at end of file diff --git a/_downloads/41f186dd63d35732853f08c1d532ad75/donut.py b/_downloads/41f186dd63d35732853f08c1d532ad75/donut.py deleted file mode 120000 index b6aad510b57..00000000000 --- a/_downloads/41f186dd63d35732853f08c1d532ad75/donut.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/41f186dd63d35732853f08c1d532ad75/donut.py \ No newline at end of file diff --git a/_downloads/4200000a45c73cfdbf1f7487dc8ab7af/stix_fonts_demo.py b/_downloads/4200000a45c73cfdbf1f7487dc8ab7af/stix_fonts_demo.py deleted file mode 100644 index c9f263e8c27..00000000000 --- a/_downloads/4200000a45c73cfdbf1f7487dc8ab7af/stix_fonts_demo.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -=============== -STIX Fonts Demo -=============== - -Demonstration of `STIX Fonts `_ used in LaTeX -rendering. -""" - -import matplotlib.pyplot as plt - - -circle123 = "\N{CIRCLED DIGIT ONE}\N{CIRCLED DIGIT TWO}\N{CIRCLED DIGIT THREE}" - -tests = [ - r'$%s\;\mathrm{%s}\;\mathbf{%s}$' % ((circle123,) * 3), - r'$\mathsf{Sans \Omega}\;\mathrm{\mathsf{Sans \Omega}}\;' - r'\mathbf{\mathsf{Sans \Omega}}$', - r'$\mathtt{Monospace}$', - r'$\mathcal{CALLIGRAPHIC}$', - r'$\mathbb{Blackboard\;\pi}$', - r'$\mathrm{\mathbb{Blackboard\;\pi}}$', - r'$\mathbf{\mathbb{Blackboard\;\pi}}$', - r'$\mathfrak{Fraktur}\;\mathbf{\mathfrak{Fraktur}}$', - r'$\mathscr{Script}$', -] - -fig = plt.figure(figsize=(8, len(tests) + 2)) -for i, s in enumerate(tests[::-1]): - fig.text(0, (i + .5) / len(tests), s, fontsize=32) - -plt.show() diff --git a/_downloads/4201830e67f8c228b56f01ff0fdd82a4/tripcolor.py b/_downloads/4201830e67f8c228b56f01ff0fdd82a4/tripcolor.py deleted file mode 120000 index 47db15aa7a9..00000000000 --- a/_downloads/4201830e67f8c228b56f01ff0fdd82a4/tripcolor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4201830e67f8c228b56f01ff0fdd82a4/tripcolor.py \ No newline at end of file diff --git a/_downloads/42028111ef3beb5a665e8ec3de8071ec/contourf3d.ipynb b/_downloads/42028111ef3beb5a665e8ec3de8071ec/contourf3d.ipynb deleted file mode 120000 index bbbdf2956fc..00000000000 --- a/_downloads/42028111ef3beb5a665e8ec3de8071ec/contourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/42028111ef3beb5a665e8ec3de8071ec/contourf3d.ipynb \ No newline at end of file diff --git a/_downloads/4202ddb9a52e422195499ec1865ed8d5/pgf_texsystem.ipynb b/_downloads/4202ddb9a52e422195499ec1865ed8d5/pgf_texsystem.ipynb deleted file mode 120000 index a8ed6cc44f0..00000000000 --- a/_downloads/4202ddb9a52e422195499ec1865ed8d5/pgf_texsystem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4202ddb9a52e422195499ec1865ed8d5/pgf_texsystem.ipynb \ No newline at end of file diff --git a/_downloads/42072f0cb641b1d69727b5e08f996c79/cursor.ipynb b/_downloads/42072f0cb641b1d69727b5e08f996c79/cursor.ipynb deleted file mode 120000 index 047f7817c7b..00000000000 --- a/_downloads/42072f0cb641b1d69727b5e08f996c79/cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/42072f0cb641b1d69727b5e08f996c79/cursor.ipynb \ No newline at end of file diff --git a/_downloads/42211fc7d2c720c6a9b83c192df0cd7e/set_and_get.ipynb b/_downloads/42211fc7d2c720c6a9b83c192df0cd7e/set_and_get.ipynb deleted file mode 120000 index 242665c7104..00000000000 --- a/_downloads/42211fc7d2c720c6a9b83c192df0cd7e/set_and_get.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/42211fc7d2c720c6a9b83c192df0cd7e/set_and_get.ipynb \ No newline at end of file diff --git a/_downloads/422520d866c4f6eac9f078d96938805b/rasterization_demo.ipynb b/_downloads/422520d866c4f6eac9f078d96938805b/rasterization_demo.ipynb deleted file mode 100644 index 13d1ebf441a..00000000000 --- a/_downloads/422520d866c4f6eac9f078d96938805b/rasterization_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rasterization Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nd = np.arange(100).reshape(10, 10)\nx, y = np.meshgrid(np.arange(11), np.arange(11))\n\ntheta = 0.25*np.pi\nxx = x*np.cos(theta) - y*np.sin(theta)\nyy = x*np.sin(theta) + y*np.cos(theta)\n\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\nax1.set_aspect(1)\nax1.pcolormesh(xx, yy, d)\nax1.set_title(\"No Rasterization\")\n\nax2.set_aspect(1)\nax2.set_title(\"Rasterization\")\n\nm = ax2.pcolormesh(xx, yy, d)\nm.set_rasterized(True)\n\nax3.set_aspect(1)\nax3.pcolormesh(xx, yy, d)\nax3.text(0.5, 0.5, \"Text\", alpha=0.2,\n va=\"center\", ha=\"center\", size=50, transform=ax3.transAxes)\n\nax3.set_title(\"No Rasterization\")\n\n\nax4.set_aspect(1)\nm = ax4.pcolormesh(xx, yy, d)\nm.set_zorder(-20)\n\nax4.text(0.5, 0.5, \"Text\", alpha=0.2,\n zorder=-15,\n va=\"center\", ha=\"center\", size=50, transform=ax4.transAxes)\n\nax4.set_rasterization_zorder(-10)\n\nax4.set_title(\"Rasterization z$<-10$\")\n\n\n# ax2.title.set_rasterized(True) # should display a warning\n\nplt.savefig(\"test_rasterization.pdf\", dpi=150)\nplt.savefig(\"test_rasterization.eps\", dpi=150)\n\nif not plt.rcParams[\"text.usetex\"]:\n plt.savefig(\"test_rasterization.svg\", dpi=150)\n # svg backend currently ignores the dpi" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4228d129f03ec942bbd8d849e9ff921a/plot_streamplot.ipynb b/_downloads/4228d129f03ec942bbd8d849e9ff921a/plot_streamplot.ipynb deleted file mode 100644 index 474cb3a2314..00000000000 --- a/_downloads/4228d129f03ec942bbd8d849e9ff921a/plot_streamplot.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Streamplot\n\n\nA stream plot, or streamline plot, is used to display 2D vector fields. This\nexample shows a few features of the :meth:`~.axes.Axes.streamplot` function:\n\n * Varying the color along a streamline.\n * Varying the density of streamlines.\n * Varying the line width along a streamline.\n * Controlling the starting points of streamlines.\n * Streamlines skipping masked regions and NaN values.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\n\nw = 3\nY, X = np.mgrid[-w:w:100j, -w:w:100j]\nU = -1 - X**2 + Y\nV = 1 + X - Y**2\nspeed = np.sqrt(U**2 + V**2)\n\nfig = plt.figure(figsize=(7, 9))\ngs = gridspec.GridSpec(nrows=3, ncols=2, height_ratios=[1, 1, 2])\n\n# Varying density along a streamline\nax0 = fig.add_subplot(gs[0, 0])\nax0.streamplot(X, Y, U, V, density=[0.5, 1])\nax0.set_title('Varying Density')\n\n# Varying color along a streamline\nax1 = fig.add_subplot(gs[0, 1])\nstrm = ax1.streamplot(X, Y, U, V, color=U, linewidth=2, cmap='autumn')\nfig.colorbar(strm.lines)\nax1.set_title('Varying Color')\n\n# Varying line width along a streamline\nax2 = fig.add_subplot(gs[1, 0])\nlw = 5*speed / speed.max()\nax2.streamplot(X, Y, U, V, density=0.6, color='k', linewidth=lw)\nax2.set_title('Varying Line Width')\n\n# Controlling the starting points of the streamlines\nseed_points = np.array([[-2, -1, 0, 1, 2, -1], [-2, -1, 0, 1, 2, 2]])\n\nax3 = fig.add_subplot(gs[1, 1])\nstrm = ax3.streamplot(X, Y, U, V, color=U, linewidth=2,\n cmap='autumn', start_points=seed_points.T)\nfig.colorbar(strm.lines)\nax3.set_title('Controlling Starting Points')\n\n# Displaying the starting points with blue symbols.\nax3.plot(seed_points[0], seed_points[1], 'bo')\nax3.set(xlim=(-w, w), ylim=(-w, w))\n\n# Create a mask\nmask = np.zeros(U.shape, dtype=bool)\nmask[40:60, 40:60] = True\nU[:20, :20] = np.nan\nU = np.ma.array(U, mask=mask)\n\nax4 = fig.add_subplot(gs[2:, :])\nax4.streamplot(X, Y, U, V, color='r')\nax4.set_title('Streamplot with Masking')\n\nax4.imshow(~mask, extent=(-w, w, -w, w), alpha=0.5,\n interpolation='nearest', cmap='gray', aspect='auto')\nax4.set_aspect('equal')\n\nplt.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.streamplot\nmatplotlib.pyplot.streamplot\nmatplotlib.gridspec\nmatplotlib.gridspec.GridSpec" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/423cb6ca263e891b16291fc415c9f7f0/keypress_demo.py b/_downloads/423cb6ca263e891b16291fc415c9f7f0/keypress_demo.py deleted file mode 120000 index 2d3f4f99bce..00000000000 --- a/_downloads/423cb6ca263e891b16291fc415c9f7f0/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/423cb6ca263e891b16291fc415c9f7f0/keypress_demo.py \ No newline at end of file diff --git a/_downloads/42476e45d573ef22dbfb331ed4d7a33b/mri_with_eeg.ipynb b/_downloads/42476e45d573ef22dbfb331ed4d7a33b/mri_with_eeg.ipynb deleted file mode 100644 index 8c26a42b532..00000000000 --- a/_downloads/42476e45d573ef22dbfb331ed4d7a33b/mri_with_eeg.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# MRI With EEG\n\n\nDisplays a set of subplots with an MRI image, its intensity\nhistogram and some EEG traces.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport matplotlib.cm as cm\n\nfrom matplotlib.collections import LineCollection\nfrom matplotlib.ticker import MultipleLocator\n\nfig = plt.figure(\"MRI_with_EEG\")\n\n# Load the MRI data (256x256 16 bit integers)\nwith cbook.get_sample_data('s1045.ima.gz') as dfile:\n im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256))\n\n# Plot the MRI image\nax0 = fig.add_subplot(2, 2, 1)\nax0.imshow(im, cmap=cm.gray)\nax0.axis('off')\n\n# Plot the histogram of MRI intensity\nax1 = fig.add_subplot(2, 2, 2)\nim = np.ravel(im)\nim = im[np.nonzero(im)] # Ignore the background\nim = im / (2**16 - 1) # Normalize\nax1.hist(im, bins=100)\nax1.xaxis.set_major_locator(MultipleLocator(0.4))\nax1.minorticks_on()\nax1.set_yticks([])\nax1.set_xlabel('Intensity (a.u.)')\nax1.set_ylabel('MRI density')\n\n# Load the EEG data\nn_samples, n_rows = 800, 4\nwith cbook.get_sample_data('eeg.dat') as eegfile:\n data = np.fromfile(eegfile, dtype=float).reshape((n_samples, n_rows))\nt = 10 * np.arange(n_samples) / n_samples\n\n# Plot the EEG\nticklocs = []\nax2 = fig.add_subplot(2, 1, 2)\nax2.set_xlim(0, 10)\nax2.set_xticks(np.arange(10))\ndmin = data.min()\ndmax = data.max()\ndr = (dmax - dmin) * 0.7 # Crowd them a bit.\ny0 = dmin\ny1 = (n_rows - 1) * dr + dmax\nax2.set_ylim(y0, y1)\n\nsegs = []\nfor i in range(n_rows):\n segs.append(np.column_stack((t, data[:, i])))\n ticklocs.append(i * dr)\n\noffsets = np.zeros((n_rows, 2), dtype=float)\noffsets[:, 1] = ticklocs\n\nlines = LineCollection(segs, offsets=offsets, transOffset=None)\nax2.add_collection(lines)\n\n# Set the yticks to use axes coordinates on the y axis\nax2.set_yticks(ticklocs)\nax2.set_yticklabels(['PG3', 'PG5', 'PG7', 'PG9'])\n\nax2.set_xlabel('Time (s)')\n\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/424a7cb6f32b2f8b69101c20554cf1de/colorbar_basics.ipynb b/_downloads/424a7cb6f32b2f8b69101c20554cf1de/colorbar_basics.ipynb deleted file mode 120000 index 81301abc218..00000000000 --- a/_downloads/424a7cb6f32b2f8b69101c20554cf1de/colorbar_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/424a7cb6f32b2f8b69101c20554cf1de/colorbar_basics.ipynb \ No newline at end of file diff --git a/_downloads/42575401d033123b9d7de32295bc2569/bayes_update.ipynb b/_downloads/42575401d033123b9d7de32295bc2569/bayes_update.ipynb deleted file mode 100644 index 198649da454..00000000000 --- a/_downloads/42575401d033123b9d7de32295bc2569/bayes_update.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The Bayes update\n\n\nThis animation displays the posterior estimate updates as it is refitted when\nnew data arrives.\nThe vertical line represents the theoretical value to which the plotted\ndistribution should converge.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import math\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.animation import FuncAnimation\n\n\ndef beta_pdf(x, a, b):\n return (x**(a-1) * (1-x)**(b-1) * math.gamma(a + b)\n / (math.gamma(a) * math.gamma(b)))\n\n\nclass UpdateDist(object):\n def __init__(self, ax, prob=0.5):\n self.success = 0\n self.prob = prob\n self.line, = ax.plot([], [], 'k-')\n self.x = np.linspace(0, 1, 200)\n self.ax = ax\n\n # Set up plot parameters\n self.ax.set_xlim(0, 1)\n self.ax.set_ylim(0, 15)\n self.ax.grid(True)\n\n # This vertical line represents the theoretical value, to\n # which the plotted distribution should converge.\n self.ax.axvline(prob, linestyle='--', color='black')\n\n def init(self):\n self.success = 0\n self.line.set_data([], [])\n return self.line,\n\n def __call__(self, i):\n # This way the plot can continuously run and we just keep\n # watching new realizations of the process\n if i == 0:\n return self.init()\n\n # Choose success based on exceed a threshold with a uniform pick\n if np.random.rand(1,) < self.prob:\n self.success += 1\n y = beta_pdf(self.x, self.success + 1, (i - self.success) + 1)\n self.line.set_data(self.x, y)\n return self.line,\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nud = UpdateDist(ax, prob=0.7)\nanim = FuncAnimation(fig, ud, frames=np.arange(100), init_func=ud.init,\n interval=100, blit=True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/42581a6725ff9c74528e1022bf337684/layer_images.py b/_downloads/42581a6725ff9c74528e1022bf337684/layer_images.py deleted file mode 120000 index a873907c7fa..00000000000 --- a/_downloads/42581a6725ff9c74528e1022bf337684/layer_images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/42581a6725ff9c74528e1022bf337684/layer_images.py \ No newline at end of file diff --git a/_downloads/425a656373581b1267452fb5df29fdb9/custom_legends.py b/_downloads/425a656373581b1267452fb5df29fdb9/custom_legends.py deleted file mode 120000 index 70fe12b4472..00000000000 --- a/_downloads/425a656373581b1267452fb5df29fdb9/custom_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/425a656373581b1267452fb5df29fdb9/custom_legends.py \ No newline at end of file diff --git a/_downloads/425c02ba66c2484a8bda2c0a691daf54/histogram.ipynb b/_downloads/425c02ba66c2484a8bda2c0a691daf54/histogram.ipynb deleted file mode 100644 index 078bafc9483..00000000000 --- a/_downloads/425c02ba66c2484a8bda2c0a691daf54/histogram.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage histogram example\n\n\nThis example reproduces the frontpage histogram example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nrandom_state = np.random.RandomState(19680801)\nX = random_state.randn(10000)\n\nfig, ax = plt.subplots()\nax.hist(X, bins=25, density=True)\nx = np.linspace(-5, 5, 1000)\nax.plot(x, 1 / np.sqrt(2*np.pi) * np.exp(-(x**2)/2), linewidth=4)\nax.set_xticks([])\nax.set_yticks([])\nfig.savefig(\"histogram_frontpage.png\", dpi=25) # results in 160x120 px image" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4260dc684b3543066fa8f947872a8f25/legend_guide.py b/_downloads/4260dc684b3543066fa8f947872a8f25/legend_guide.py deleted file mode 120000 index b3c5f95e0fc..00000000000 --- a/_downloads/4260dc684b3543066fa8f947872a8f25/legend_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4260dc684b3543066fa8f947872a8f25/legend_guide.py \ No newline at end of file diff --git a/_downloads/4268eb61b30373568674592644cd537d/keypress_demo.ipynb b/_downloads/4268eb61b30373568674592644cd537d/keypress_demo.ipynb deleted file mode 120000 index c3bd4067ede..00000000000 --- a/_downloads/4268eb61b30373568674592644cd537d/keypress_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4268eb61b30373568674592644cd537d/keypress_demo.ipynb \ No newline at end of file diff --git a/_downloads/42707c9059d22c5562638c28bdffe731/simple_axis_direction01.ipynb b/_downloads/42707c9059d22c5562638c28bdffe731/simple_axis_direction01.ipynb deleted file mode 120000 index bd582343d95..00000000000 --- a/_downloads/42707c9059d22c5562638c28bdffe731/simple_axis_direction01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/42707c9059d22c5562638c28bdffe731/simple_axis_direction01.ipynb \ No newline at end of file diff --git a/_downloads/42739b4ad1d47f11302d5ad079125b91/simple_axis_pad.py b/_downloads/42739b4ad1d47f11302d5ad079125b91/simple_axis_pad.py deleted file mode 120000 index 5c2a7098eab..00000000000 --- a/_downloads/42739b4ad1d47f11302d5ad079125b91/simple_axis_pad.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/42739b4ad1d47f11302d5ad079125b91/simple_axis_pad.py \ No newline at end of file diff --git a/_downloads/4282fd8ac057c9ca5f17f1c7642e1562/demo_parasite_axes.ipynb b/_downloads/4282fd8ac057c9ca5f17f1c7642e1562/demo_parasite_axes.ipynb deleted file mode 100644 index c8ef71c7fe6..00000000000 --- a/_downloads/4282fd8ac057c9ca5f17f1c7642e1562/demo_parasite_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parasite Axes demo\n\n\nCreate a parasite axes. Such axes would share the x scale with a host axes,\nbut show a different scale in y direction.\n\nThis approach uses `mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and\n`mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes`.\n\nAn alternative approach using standard Matplotlib subplots is shown in the\n:doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example.\n\nAn alternative approach using the `toolkit_axesgrid1-index`\nand `toolkit_axisartist-index` is found in the\n:doc:`/gallery/axisartist/demo_parasite_axes2` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axisartist.parasite_axes import HostAxes, ParasiteAxes\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\n\nhost = HostAxes(fig, [0.15, 0.1, 0.65, 0.8])\npar1 = ParasiteAxes(host, sharex=host)\npar2 = ParasiteAxes(host, sharex=host)\nhost.parasites.append(par1)\nhost.parasites.append(par2)\n\nhost.set_ylabel(\"Density\")\nhost.set_xlabel(\"Distance\")\n\nhost.axis[\"right\"].set_visible(False)\npar1.axis[\"right\"].set_visible(True)\npar1.set_ylabel(\"Temperature\")\n\npar1.axis[\"right\"].major_ticklabels.set_visible(True)\npar1.axis[\"right\"].label.set_visible(True)\n\npar2.set_ylabel(\"Velocity\")\noffset = (60, 0)\nnew_axisline = par2.get_grid_helper().new_fixed_axis\npar2.axis[\"right2\"] = new_axisline(loc=\"right\", axes=par2, offset=offset)\n\nfig.add_axes(host)\n\nhost.set_xlim(0, 2)\nhost.set_ylim(0, 2)\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar1.set_ylabel(\"Temperature\")\n\np1, = host.plot([0, 1, 2], [0, 1, 2], label=\"Density\")\np2, = par1.plot([0, 1, 2], [0, 3, 2], label=\"Temperature\")\np3, = par2.plot([0, 1, 2], [50, 30, 15], label=\"Velocity\")\n\npar1.set_ylim(0, 4)\npar2.set_ylim(1, 65)\n\nhost.legend()\n\nhost.axis[\"left\"].label.set_color(p1.get_color())\npar1.axis[\"right\"].label.set_color(p2.get_color())\npar2.axis[\"right2\"].label.set_color(p3.get_color())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4286084125d781ed8020bca9657a2a44/log_demo.py b/_downloads/4286084125d781ed8020bca9657a2a44/log_demo.py deleted file mode 120000 index 762cf17336b..00000000000 --- a/_downloads/4286084125d781ed8020bca9657a2a44/log_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4286084125d781ed8020bca9657a2a44/log_demo.py \ No newline at end of file diff --git a/_downloads/428875c593b1bd6b9438b0268422ef89/ginput_demo_sgskip.ipynb b/_downloads/428875c593b1bd6b9438b0268422ef89/ginput_demo_sgskip.ipynb deleted file mode 120000 index 0fad7f124cd..00000000000 --- a/_downloads/428875c593b1bd6b9438b0268422ef89/ginput_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/428875c593b1bd6b9438b0268422ef89/ginput_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/42a1f722b50679bb8179ce0cca0f2558/dolphin.py b/_downloads/42a1f722b50679bb8179ce0cca0f2558/dolphin.py deleted file mode 120000 index edc92d8de98..00000000000 --- a/_downloads/42a1f722b50679bb8179ce0cca0f2558/dolphin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/42a1f722b50679bb8179ce0cca0f2558/dolphin.py \ No newline at end of file diff --git a/_downloads/42ad0cf8024cc30f9d1df83384e51951/demo_ribbon_box.py b/_downloads/42ad0cf8024cc30f9d1df83384e51951/demo_ribbon_box.py deleted file mode 120000 index c4041690a8a..00000000000 --- a/_downloads/42ad0cf8024cc30f9d1df83384e51951/demo_ribbon_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/42ad0cf8024cc30f9d1df83384e51951/demo_ribbon_box.py \ No newline at end of file diff --git a/_downloads/42af05e0d39f6f554aa7303778e9a091/dfrac_demo.py b/_downloads/42af05e0d39f6f554aa7303778e9a091/dfrac_demo.py deleted file mode 120000 index 75fe38a1acb..00000000000 --- a/_downloads/42af05e0d39f6f554aa7303778e9a091/dfrac_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/42af05e0d39f6f554aa7303778e9a091/dfrac_demo.py \ No newline at end of file diff --git a/_downloads/42b0b6996670c3d77f5af3fd3f10418a/font_file.ipynb b/_downloads/42b0b6996670c3d77f5af3fd3f10418a/font_file.ipynb deleted file mode 120000 index b0eae1cd5ca..00000000000 --- a/_downloads/42b0b6996670c3d77f5af3fd3f10418a/font_file.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/42b0b6996670c3d77f5af3fd3f10418a/font_file.ipynb \ No newline at end of file diff --git a/_downloads/42b4dd544c872a2aaadd9387ff153438/resample.ipynb b/_downloads/42b4dd544c872a2aaadd9387ff153438/resample.ipynb deleted file mode 100644 index b21f206cee1..00000000000 --- a/_downloads/42b4dd544c872a2aaadd9387ff153438/resample.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Resampling Data\n\n\nDownsampling lowers the sample rate or sample size of a signal. In\nthis tutorial, the signal is downsampled when the plot is adjusted\nthrough dragging and zooming.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\n# A class that will downsample the data and recompute when zoomed.\nclass DataDisplayDownsampler(object):\n def __init__(self, xdata, ydata):\n self.origYData = ydata\n self.origXData = xdata\n self.max_points = 50\n self.delta = xdata[-1] - xdata[0]\n\n def downsample(self, xstart, xend):\n # get the points in the view range\n mask = (self.origXData > xstart) & (self.origXData < xend)\n # dilate the mask by one to catch the points just outside\n # of the view range to not truncate the line\n mask = np.convolve([1, 1], mask, mode='same').astype(bool)\n # sort out how many points to drop\n ratio = max(np.sum(mask) // self.max_points, 1)\n\n # mask data\n xdata = self.origXData[mask]\n ydata = self.origYData[mask]\n\n # downsample data\n xdata = xdata[::ratio]\n ydata = ydata[::ratio]\n\n print(\"using {} of {} visible points\".format(\n len(ydata), np.sum(mask)))\n\n return xdata, ydata\n\n def update(self, ax):\n # Update the line\n lims = ax.viewLim\n if np.abs(lims.width - self.delta) > 1e-8:\n self.delta = lims.width\n xstart, xend = lims.intervalx\n self.line.set_data(*self.downsample(xstart, xend))\n ax.figure.canvas.draw_idle()\n\n\n# Create a signal\nxdata = np.linspace(16, 365, (365-16)*4)\nydata = np.sin(2*np.pi*xdata/153) + np.cos(2*np.pi*xdata/127)\n\nd = DataDisplayDownsampler(xdata, ydata)\n\nfig, ax = plt.subplots()\n\n# Hook up the line\nd.line, = ax.plot(xdata, ydata, 'o-')\nax.set_autoscale_on(False) # Otherwise, infinite loop\n\n# Connect for changing the view limits\nax.callbacks.connect('xlim_changed', d.update)\nax.set_xlim(16, 365)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/42b9507a02b24f3b0f5b91013b2891f1/barb_demo.ipynb b/_downloads/42b9507a02b24f3b0f5b91013b2891f1/barb_demo.ipynb deleted file mode 120000 index 9b8821aa019..00000000000 --- a/_downloads/42b9507a02b24f3b0f5b91013b2891f1/barb_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/42b9507a02b24f3b0f5b91013b2891f1/barb_demo.ipynb \ No newline at end of file diff --git a/_downloads/42cc281c0b4a6c866f17e8f46b8d58ee/close_event.py b/_downloads/42cc281c0b4a6c866f17e8f46b8d58ee/close_event.py deleted file mode 120000 index adc81ebe065..00000000000 --- a/_downloads/42cc281c0b4a6c866f17e8f46b8d58ee/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/42cc281c0b4a6c866f17e8f46b8d58ee/close_event.py \ No newline at end of file diff --git a/_downloads/42d3ca2331c0f647b3fe456d76c35916/axes_grid.py b/_downloads/42d3ca2331c0f647b3fe456d76c35916/axes_grid.py deleted file mode 120000 index 09f017e2128..00000000000 --- a/_downloads/42d3ca2331c0f647b3fe456d76c35916/axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/42d3ca2331c0f647b3fe456d76c35916/axes_grid.py \ No newline at end of file diff --git a/_downloads/42ebc6ce30293148616b13efa34f9dd8/annotations.ipynb b/_downloads/42ebc6ce30293148616b13efa34f9dd8/annotations.ipynb deleted file mode 120000 index 83c539d6eef..00000000000 --- a/_downloads/42ebc6ce30293148616b13efa34f9dd8/annotations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/42ebc6ce30293148616b13efa34f9dd8/annotations.ipynb \ No newline at end of file diff --git a/_downloads/42efb5e617756bfe09a1ed2f92b337cf/interpolation_methods.py b/_downloads/42efb5e617756bfe09a1ed2f92b337cf/interpolation_methods.py deleted file mode 100644 index f21866ecd37..00000000000 --- a/_downloads/42efb5e617756bfe09a1ed2f92b337cf/interpolation_methods.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================================= -Interpolations for imshow/matshow -================================= - -This example displays the difference between interpolation methods for -:meth:`~.axes.Axes.imshow` and :meth:`~.axes.Axes.matshow`. - -If `interpolation` is None, it defaults to the ``image.interpolation`` -:doc:`rc parameter `. -If the interpolation is ``'none'``, then no interpolation is performed -for the Agg, ps and pdf backends. Other backends will default to ``'nearest'``. - -For the Agg, ps and pdf backends, ``interpolation = 'none'`` works well when a -big image is scaled down, while ``interpolation = 'nearest'`` works well when -a small image is scaled up. -""" - -import matplotlib.pyplot as plt -import numpy as np - -methods = [None, 'none', 'nearest', 'bilinear', 'bicubic', 'spline16', - 'spline36', 'hanning', 'hamming', 'hermite', 'kaiser', 'quadric', - 'catrom', 'gaussian', 'bessel', 'mitchell', 'sinc', 'lanczos'] - -# Fixing random state for reproducibility -np.random.seed(19680801) - -grid = np.random.rand(4, 4) - -fig, axs = plt.subplots(nrows=3, ncols=6, figsize=(9, 6), - subplot_kw={'xticks': [], 'yticks': []}) - -for ax, interp_method in zip(axs.flat, methods): - ax.imshow(grid, interpolation=interp_method, cmap='viridis') - ax.set_title(str(interp_method)) - -plt.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/42f64d486ad00c7b24d998244008bd8a/unicode_minus.py b/_downloads/42f64d486ad00c7b24d998244008bd8a/unicode_minus.py deleted file mode 100644 index 4acfc07a58f..00000000000 --- a/_downloads/42f64d486ad00c7b24d998244008bd8a/unicode_minus.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -============= -Unicode minus -============= - -You can use the proper typesetting `Unicode minus`__ or the ASCII hyphen for -minus, which some people prefer. :rc:`axes.unicode_minus` controls the default -behavior. - -__ https://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes - -The default is to use the Unicode minus. -""" - -import numpy as np -import matplotlib -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -matplotlib.rcParams['axes.unicode_minus'] = False -fig, ax = plt.subplots() -ax.plot(10*np.random.randn(100), 10*np.random.randn(100), 'o') -ax.set_title('Using hyphen instead of Unicode minus') -plt.show() diff --git a/_downloads/42fbc61f41101dab47e25ea86f4389e2/fill_between_demo.py b/_downloads/42fbc61f41101dab47e25ea86f4389e2/fill_between_demo.py deleted file mode 100644 index ada25f0de55..00000000000 --- a/_downloads/42fbc61f41101dab47e25ea86f4389e2/fill_between_demo.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============================== -Filling the area between lines -============================== - -This example shows how to use ``fill_between`` to color between lines based on -user-defined logic. -""" - -import matplotlib.pyplot as plt -import numpy as np - -x = np.arange(0.0, 2, 0.01) -y1 = np.sin(2 * np.pi * x) -y2 = 1.2 * np.sin(4 * np.pi * x) - -############################################################################### - -fig, (ax1, ax2, ax3) = plt.subplots(3, 1, sharex=True) - -ax1.fill_between(x, 0, y1) -ax1.set_ylabel('between y1 and 0') - -ax2.fill_between(x, y1, 1) -ax2.set_ylabel('between y1 and 1') - -ax3.fill_between(x, y1, y2) -ax3.set_ylabel('between y1 and y2') -ax3.set_xlabel('x') - -############################################################################### -# Now fill between y1 and y2 where a logical condition is met. Note -# this is different than calling -# ``fill_between(x[where], y1[where], y2[where] ...)`` -# because of edge effects over multiple contiguous regions. - -fig, (ax, ax1) = plt.subplots(2, 1, sharex=True) -ax.plot(x, y1, x, y2, color='black') -ax.fill_between(x, y1, y2, where=y2 >= y1, facecolor='green', interpolate=True) -ax.fill_between(x, y1, y2, where=y2 <= y1, facecolor='red', interpolate=True) -ax.set_title('fill between where') - -# Test support for masked arrays. -y2 = np.ma.masked_greater(y2, 1.0) -ax1.plot(x, y1, x, y2, color='black') -ax1.fill_between(x, y1, y2, where=y2 >= y1, - facecolor='green', interpolate=True) -ax1.fill_between(x, y1, y2, where=y2 <= y1, - facecolor='red', interpolate=True) -ax1.set_title('Now regions with y2>1 are masked') - -############################################################################### -# This example illustrates a problem; because of the data -# gridding, there are undesired unfilled triangles at the crossover -# points. A brute-force solution would be to interpolate all -# arrays to a very fine grid before plotting. - - -############################################################################### -# Use transforms to create axes spans where a certain condition is satisfied: - -fig, ax = plt.subplots() -y = np.sin(4 * np.pi * x) -ax.plot(x, y, color='black') - -# use data coordinates for the x-axis and the axes coordinates for the y-axis -import matplotlib.transforms as mtransforms -trans = mtransforms.blended_transform_factory(ax.transData, ax.transAxes) -theta = 0.9 -ax.axhline(theta, color='green', lw=2, alpha=0.5) -ax.axhline(-theta, color='red', lw=2, alpha=0.5) -ax.fill_between(x, 0, 1, where=y > theta, - facecolor='green', alpha=0.5, transform=trans) -ax.fill_between(x, 0, 1, where=y < -theta, - facecolor='red', alpha=0.5, transform=trans) - - -plt.show() diff --git a/_downloads/4309b300a9314e243e85025fa41a69a7/colormap_normalizations_symlognorm.py b/_downloads/4309b300a9314e243e85025fa41a69a7/colormap_normalizations_symlognorm.py deleted file mode 120000 index 9f0adbcc7b4..00000000000 --- a/_downloads/4309b300a9314e243e85025fa41a69a7/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4309b300a9314e243e85025fa41a69a7/colormap_normalizations_symlognorm.py \ No newline at end of file diff --git a/_downloads/43155b5d2bd93cab6de6d67a20ecb71b/trigradient_demo.ipynb b/_downloads/43155b5d2bd93cab6de6d67a20ecb71b/trigradient_demo.ipynb deleted file mode 100644 index 98bbeed1e03..00000000000 --- a/_downloads/43155b5d2bd93cab6de6d67a20ecb71b/trigradient_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Trigradient Demo\n\n\nDemonstrates computation of gradient with\n`matplotlib.tri.CubicTriInterpolator`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.tri import (\n Triangulation, UniformTriRefiner, CubicTriInterpolator)\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport numpy as np\n\n\n#-----------------------------------------------------------------------------\n# Electrical potential of a dipole\n#-----------------------------------------------------------------------------\ndef dipole_potential(x, y):\n \"\"\"The electric dipole potential V, at position *x*, *y*.\"\"\"\n r_sq = x**2 + y**2\n theta = np.arctan2(y, x)\n z = np.cos(theta)/r_sq\n return (np.max(z) - z) / (np.max(z) - np.min(z))\n\n\n#-----------------------------------------------------------------------------\n# Creating a Triangulation\n#-----------------------------------------------------------------------------\n# First create the x and y coordinates of the points.\nn_angles = 30\nn_radii = 10\nmin_radius = 0.2\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nV = dipole_potential(x, y)\n\n# Create the Triangulation; no triangles specified so Delaunay triangulation\n# created.\ntriang = Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\n#-----------------------------------------------------------------------------\n# Refine data - interpolates the electrical potential V\n#-----------------------------------------------------------------------------\nrefiner = UniformTriRefiner(triang)\ntri_refi, z_test_refi = refiner.refine_field(V, subdiv=3)\n\n#-----------------------------------------------------------------------------\n# Computes the electrical field (Ex, Ey) as gradient of electrical potential\n#-----------------------------------------------------------------------------\ntci = CubicTriInterpolator(triang, -V)\n# Gradient requested here at the mesh nodes but could be anywhere else:\n(Ex, Ey) = tci.gradient(triang.x, triang.y)\nE_norm = np.sqrt(Ex**2 + Ey**2)\n\n#-----------------------------------------------------------------------------\n# Plot the triangulation, the potential iso-contours and the vector field\n#-----------------------------------------------------------------------------\nfig, ax = plt.subplots()\nax.set_aspect('equal')\n# Enforce the margins, and enlarge them to give room for the vectors.\nax.use_sticky_edges = False\nax.margins(0.07)\n\nax.triplot(triang, color='0.8')\n\nlevels = np.arange(0., 1., 0.01)\ncmap = cm.get_cmap(name='hot', lut=None)\nax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap,\n linewidths=[2.0, 1.0, 1.0, 1.0])\n# Plots direction of the electrical vector field\nax.quiver(triang.x, triang.y, Ex/E_norm, Ey/E_norm,\n units='xy', scale=10., zorder=3, color='blue',\n width=0.007, headwidth=3., headlength=4.)\n\nax.set_title('Gradient plot: an electrical dipole')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.tri\nmatplotlib.tri.Triangulation\nmatplotlib.tri.CubicTriInterpolator\nmatplotlib.tri.CubicTriInterpolator.gradient\nmatplotlib.tri.UniformTriRefiner\nmatplotlib.axes.Axes.quiver\nmatplotlib.pyplot.quiver" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/43275ee4ec5f28a155cfeed21656d484/lines3d.ipynb b/_downloads/43275ee4ec5f28a155cfeed21656d484/lines3d.ipynb deleted file mode 120000 index 4e00ef91526..00000000000 --- a/_downloads/43275ee4ec5f28a155cfeed21656d484/lines3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/43275ee4ec5f28a155cfeed21656d484/lines3d.ipynb \ No newline at end of file diff --git a/_downloads/432f41faeaf50f4bcef6b356d57f65a2/donut.py b/_downloads/432f41faeaf50f4bcef6b356d57f65a2/donut.py deleted file mode 120000 index 5e21bc70712..00000000000 --- a/_downloads/432f41faeaf50f4bcef6b356d57f65a2/donut.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/432f41faeaf50f4bcef6b356d57f65a2/donut.py \ No newline at end of file diff --git a/_downloads/4330d64897af27d7f3248ee2256fb032/custom_cmap.ipynb b/_downloads/4330d64897af27d7f3248ee2256fb032/custom_cmap.ipynb deleted file mode 120000 index e4c4fa63826..00000000000 --- a/_downloads/4330d64897af27d7f3248ee2256fb032/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4330d64897af27d7f3248ee2256fb032/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/43317544bd7b185ba97266e927bd9617/custom_ticker1.py b/_downloads/43317544bd7b185ba97266e927bd9617/custom_ticker1.py deleted file mode 120000 index 30e7bba99db..00000000000 --- a/_downloads/43317544bd7b185ba97266e927bd9617/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/43317544bd7b185ba97266e927bd9617/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/4333a9e84922e6dcca3d4feedbf1dc20/simple_axesgrid2.py b/_downloads/4333a9e84922e6dcca3d4feedbf1dc20/simple_axesgrid2.py deleted file mode 120000 index 3aaecbc14aa..00000000000 --- a/_downloads/4333a9e84922e6dcca3d4feedbf1dc20/simple_axesgrid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4333a9e84922e6dcca3d4feedbf1dc20/simple_axesgrid2.py \ No newline at end of file diff --git a/_downloads/43385562b6168494e9464fd4ea79d5be/scatter_plot.ipynb b/_downloads/43385562b6168494e9464fd4ea79d5be/scatter_plot.ipynb deleted file mode 120000 index 1e9698f6ff4..00000000000 --- a/_downloads/43385562b6168494e9464fd4ea79d5be/scatter_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/43385562b6168494e9464fd4ea79d5be/scatter_plot.ipynb \ No newline at end of file diff --git a/_downloads/4338ef9ce53e8edcfebffa31475bb0b4/axes_margins.py b/_downloads/4338ef9ce53e8edcfebffa31475bb0b4/axes_margins.py deleted file mode 120000 index 8389eec8914..00000000000 --- a/_downloads/4338ef9ce53e8edcfebffa31475bb0b4/axes_margins.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4338ef9ce53e8edcfebffa31475bb0b4/axes_margins.py \ No newline at end of file diff --git a/_downloads/433aba42ae8be1d97385798d9b93dafc/simple_anim.ipynb b/_downloads/433aba42ae8be1d97385798d9b93dafc/simple_anim.ipynb deleted file mode 100644 index 0b5d3779416..00000000000 --- a/_downloads/433aba42ae8be1d97385798d9b93dafc/simple_anim.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated line plot\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\nfig, ax = plt.subplots()\n\nx = np.arange(0, 2*np.pi, 0.01)\nline, = ax.plot(x, np.sin(x))\n\n\ndef init(): # only required for blitting to give a clean slate.\n line.set_ydata([np.nan] * len(x))\n return line,\n\n\ndef animate(i):\n line.set_ydata(np.sin(x + i / 100)) # update the data.\n return line,\n\n\nani = animation.FuncAnimation(\n fig, animate, init_func=init, interval=2, blit=True, save_count=50)\n\n# To save the animation, use e.g.\n#\n# ani.save(\"movie.mp4\")\n#\n# or\n#\n# from matplotlib.animation import FFMpegWriter\n# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800)\n# ani.save(\"movie.mp4\", writer=writer)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/433b2b18aab91c64fbb6f47224a41ecd/gradient_bar.py b/_downloads/433b2b18aab91c64fbb6f47224a41ecd/gradient_bar.py deleted file mode 100644 index bde05061e53..00000000000 --- a/_downloads/433b2b18aab91c64fbb6f47224a41ecd/gradient_bar.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -======================== -Bar chart with gradients -======================== - -Matplotlib does not natively support gradients. However, we can emulate a -gradient-filled rectangle by an `.AxesImage` of the right size and coloring. - -In particular, we use a colormap to generate the actual colors. It is then -sufficient to define the underlying values on the corners of the image and -let bicubic interpolation fill out the area. We define the gradient direction -by a unit vector *v*. The values at the corners are then obtained by the -lengths of the projections of the corner vectors on *v*. - -A similar approach can be used to create a gradient background for an axes. -In that case, it is helpful to uses Axes coordinates -(`extent=(0, 1, 0, 1), transform=ax.transAxes`) to be independent of the data -coordinates. - -""" -import matplotlib.pyplot as plt -import numpy as np - -np.random.seed(19680801) - - -def gradient_image(ax, extent, direction=0.3, cmap_range=(0, 1), **kwargs): - """ - Draw a gradient image based on a colormap. - - Parameters - ---------- - ax : Axes - The axes to draw on. - extent - The extent of the image as (xmin, xmax, ymin, ymax). - By default, this is in Axes coordinates but may be - changed using the *transform* kwarg. - direction : float - The direction of the gradient. This is a number in - range 0 (=vertical) to 1 (=horizontal). - cmap_range : float, float - The fraction (cmin, cmax) of the colormap that should be - used for the gradient, where the complete colormap is (0, 1). - **kwargs - Other parameters are passed on to `.Axes.imshow()`. - In particular useful is *cmap*. - """ - phi = direction * np.pi / 2 - v = np.array([np.cos(phi), np.sin(phi)]) - X = np.array([[v @ [1, 0], v @ [1, 1]], - [v @ [0, 0], v @ [0, 1]]]) - a, b = cmap_range - X = a + (b - a) / X.max() * X - im = ax.imshow(X, extent=extent, interpolation='bicubic', - vmin=0, vmax=1, **kwargs) - return im - - -def gradient_bar(ax, x, y, width=0.5, bottom=0): - for left, top in zip(x, y): - right = left + width - gradient_image(ax, extent=(left, right, bottom, top), - cmap=plt.cm.Blues_r, cmap_range=(0, 0.8)) - - -xmin, xmax = xlim = 0, 10 -ymin, ymax = ylim = 0, 1 - -fig, ax = plt.subplots() -ax.set(xlim=xlim, ylim=ylim, autoscale_on=False) - -# background image -gradient_image(ax, direction=0, extent=(0, 1, 0, 1), transform=ax.transAxes, - cmap=plt.cm.Oranges, cmap_range=(0.1, 0.6)) - -N = 10 -x = np.arange(N) + 0.15 -y = np.random.rand(N) -gradient_bar(ax, x, y, width=0.7) -ax.set_aspect('auto') -plt.show() diff --git a/_downloads/434b393e2c6ddcc6f3e4497a5b10ba14/dashpointlabel.py b/_downloads/434b393e2c6ddcc6f3e4497a5b10ba14/dashpointlabel.py deleted file mode 120000 index 8bd000a4eaf..00000000000 --- a/_downloads/434b393e2c6ddcc6f3e4497a5b10ba14/dashpointlabel.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/434b393e2c6ddcc6f3e4497a5b10ba14/dashpointlabel.py \ No newline at end of file diff --git a/_downloads/4360a33442204a4e3893ee1b61e9ff41/pipong.ipynb b/_downloads/4360a33442204a4e3893ee1b61e9ff41/pipong.ipynb deleted file mode 120000 index 9f44938dfe9..00000000000 --- a/_downloads/4360a33442204a4e3893ee1b61e9ff41/pipong.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4360a33442204a4e3893ee1b61e9ff41/pipong.ipynb \ No newline at end of file diff --git a/_downloads/436a0c985c28c9250aef0d6807437178/demo_agg_filter.py b/_downloads/436a0c985c28c9250aef0d6807437178/demo_agg_filter.py deleted file mode 100644 index 7c888b66df7..00000000000 --- a/_downloads/436a0c985c28c9250aef0d6807437178/demo_agg_filter.py +++ /dev/null @@ -1,325 +0,0 @@ -""" -=============== -Demo Agg Filter -=============== - -""" -import matplotlib.pyplot as plt - -import numpy as np -import matplotlib.cm as cm -import matplotlib.transforms as mtransforms -from matplotlib.colors import LightSource -from matplotlib.artist import Artist - - -def smooth1d(x, window_len): - # copied from http://www.scipy.org/Cookbook/SignalSmooth - - s = np.r_[2*x[0] - x[window_len:1:-1], x, 2*x[-1] - x[-1:-window_len:-1]] - w = np.hanning(window_len) - y = np.convolve(w/w.sum(), s, mode='same') - return y[window_len-1:-window_len+1] - - -def smooth2d(A, sigma=3): - - window_len = max(int(sigma), 3)*2 + 1 - A1 = np.array([smooth1d(x, window_len) for x in np.asarray(A)]) - A2 = np.transpose(A1) - A3 = np.array([smooth1d(x, window_len) for x in A2]) - A4 = np.transpose(A3) - - return A4 - - -class BaseFilter(object): - def prepare_image(self, src_image, dpi, pad): - ny, nx, depth = src_image.shape - # tgt_image = np.zeros([pad*2+ny, pad*2+nx, depth], dtype="d") - padded_src = np.zeros([pad*2 + ny, pad*2 + nx, depth], dtype="d") - padded_src[pad:-pad, pad:-pad, :] = src_image[:, :, :] - - return padded_src # , tgt_image - - def get_pad(self, dpi): - return 0 - - def __call__(self, im, dpi): - pad = self.get_pad(dpi) - padded_src = self.prepare_image(im, dpi, pad) - tgt_image = self.process_image(padded_src, dpi) - return tgt_image, -pad, -pad - - -class OffsetFilter(BaseFilter): - def __init__(self, offsets=None): - if offsets is None: - self.offsets = (0, 0) - else: - self.offsets = offsets - - def get_pad(self, dpi): - return int(max(*self.offsets)/72.*dpi) - - def process_image(self, padded_src, dpi): - ox, oy = self.offsets - a1 = np.roll(padded_src, int(ox/72.*dpi), axis=1) - a2 = np.roll(a1, -int(oy/72.*dpi), axis=0) - return a2 - - -class GaussianFilter(BaseFilter): - "simple gauss filter" - - def __init__(self, sigma, alpha=0.5, color=None): - self.sigma = sigma - self.alpha = alpha - if color is None: - self.color = (0, 0, 0) - else: - self.color = color - - def get_pad(self, dpi): - return int(self.sigma*3/72.*dpi) - - def process_image(self, padded_src, dpi): - # offsetx, offsety = int(self.offsets[0]), int(self.offsets[1]) - tgt_image = np.zeros_like(padded_src) - aa = smooth2d(padded_src[:, :, -1]*self.alpha, - self.sigma/72.*dpi) - tgt_image[:, :, -1] = aa - tgt_image[:, :, :-1] = self.color - return tgt_image - - -class DropShadowFilter(BaseFilter): - def __init__(self, sigma, alpha=0.3, color=None, offsets=None): - self.gauss_filter = GaussianFilter(sigma, alpha, color) - self.offset_filter = OffsetFilter(offsets) - - def get_pad(self, dpi): - return max(self.gauss_filter.get_pad(dpi), - self.offset_filter.get_pad(dpi)) - - def process_image(self, padded_src, dpi): - t1 = self.gauss_filter.process_image(padded_src, dpi) - t2 = self.offset_filter.process_image(t1, dpi) - return t2 - - -class LightFilter(BaseFilter): - "simple gauss filter" - - def __init__(self, sigma, fraction=0.5): - self.gauss_filter = GaussianFilter(sigma, alpha=1) - self.light_source = LightSource() - self.fraction = fraction - - def get_pad(self, dpi): - return self.gauss_filter.get_pad(dpi) - - def process_image(self, padded_src, dpi): - t1 = self.gauss_filter.process_image(padded_src, dpi) - elevation = t1[:, :, 3] - rgb = padded_src[:, :, :3] - - rgb2 = self.light_source.shade_rgb(rgb, elevation, - fraction=self.fraction) - - tgt = np.empty_like(padded_src) - tgt[:, :, :3] = rgb2 - tgt[:, :, 3] = padded_src[:, :, 3] - - return tgt - - -class GrowFilter(BaseFilter): - "enlarge the area" - - def __init__(self, pixels, color=None): - self.pixels = pixels - if color is None: - self.color = (1, 1, 1) - else: - self.color = color - - def __call__(self, im, dpi): - ny, nx, depth = im.shape - alpha = np.pad(im[..., -1], self.pixels, "constant") - alpha2 = np.clip(smooth2d(alpha, self.pixels/72.*dpi) * 5, 0, 1) - new_im = np.empty((*alpha2.shape, 4)) - new_im[:, :, -1] = alpha2 - new_im[:, :, :-1] = self.color - offsetx, offsety = -self.pixels, -self.pixels - return new_im, offsetx, offsety - - -class FilteredArtistList(Artist): - """ - A simple container to draw filtered artist. - """ - - def __init__(self, artist_list, filter): - self._artist_list = artist_list - self._filter = filter - Artist.__init__(self) - - def draw(self, renderer): - renderer.start_rasterizing() - renderer.start_filter() - for a in self._artist_list: - a.draw(renderer) - renderer.stop_filter(self._filter) - renderer.stop_rasterizing() - - -def filtered_text(ax): - # mostly copied from contour_demo.py - - # prepare image - delta = 0.025 - x = np.arange(-3.0, 3.0, delta) - y = np.arange(-2.0, 2.0, delta) - X, Y = np.meshgrid(x, y) - Z1 = np.exp(-X**2 - Y**2) - Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) - Z = (Z1 - Z2) * 2 - - # draw - im = ax.imshow(Z, interpolation='bilinear', origin='lower', - cmap=cm.gray, extent=(-3, 3, -2, 2)) - levels = np.arange(-1.2, 1.6, 0.2) - CS = ax.contour(Z, levels, - origin='lower', - linewidths=2, - extent=(-3, 3, -2, 2)) - - ax.set_aspect("auto") - - # contour label - cl = ax.clabel(CS, levels[1::2], # label every second level - inline=1, - fmt='%1.1f', - fontsize=11) - - # change clabel color to black - from matplotlib.patheffects import Normal - for t in cl: - t.set_color("k") - # to force TextPath (i.e., same font in all backends) - t.set_path_effects([Normal()]) - - # Add white glows to improve visibility of labels. - white_glows = FilteredArtistList(cl, GrowFilter(3)) - ax.add_artist(white_glows) - white_glows.set_zorder(cl[0].get_zorder() - 0.1) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -def drop_shadow_line(ax): - # copied from examples/misc/svg_filter_line.py - - # draw lines - l1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], "bo-", - mec="b", mfc="w", lw=5, mew=3, ms=10, label="Line 1") - l2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], "ro-", - mec="r", mfc="w", lw=5, mew=3, ms=10, label="Line 1") - - gauss = DropShadowFilter(4) - - for l in [l1, l2]: - - # draw shadows with same lines with slight offset. - - xx = l.get_xdata() - yy = l.get_ydata() - shadow, = ax.plot(xx, yy) - shadow.update_from(l) - - # offset transform - ot = mtransforms.offset_copy(l.get_transform(), ax.figure, - x=4.0, y=-6.0, units='points') - - shadow.set_transform(ot) - - # adjust zorder of the shadow lines so that it is drawn below the - # original lines - shadow.set_zorder(l.get_zorder() - 0.5) - shadow.set_agg_filter(gauss) - shadow.set_rasterized(True) # to support mixed-mode renderers - - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -def drop_shadow_patches(ax): - # Copied from barchart_demo.py - N = 5 - men_means = [20, 35, 30, 35, 27] - - ind = np.arange(N) # the x locations for the groups - width = 0.35 # the width of the bars - - rects1 = ax.bar(ind, men_means, width, color='r', ec="w", lw=2) - - women_means = [25, 32, 34, 20, 25] - rects2 = ax.bar(ind + width + 0.1, women_means, width, - color='y', ec="w", lw=2) - - # gauss = GaussianFilter(1.5, offsets=(1,1), ) - gauss = DropShadowFilter(5, offsets=(1, 1), ) - shadow = FilteredArtistList(rects1 + rects2, gauss) - ax.add_artist(shadow) - shadow.set_zorder(rects1[0].get_zorder() - 0.1) - - ax.set_ylim(0, 40) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -def light_filter_pie(ax): - fracs = [15, 30, 45, 10] - explode = (0, 0.05, 0, 0) - pies = ax.pie(fracs, explode=explode) - ax.patch.set_visible(True) - - light_filter = LightFilter(9) - for p in pies[0]: - p.set_agg_filter(light_filter) - p.set_rasterized(True) # to support mixed-mode renderers - p.set(ec="none", - lw=2) - - gauss = DropShadowFilter(9, offsets=(3, 4), alpha=0.7) - shadow = FilteredArtistList(pies[0], gauss) - ax.add_artist(shadow) - shadow.set_zorder(pies[0][0].get_zorder() - 0.1) - - -if __name__ == "__main__": - - plt.figure(figsize=(6, 6)) - plt.subplots_adjust(left=0.05, right=0.95) - - ax = plt.subplot(221) - filtered_text(ax) - - ax = plt.subplot(222) - drop_shadow_line(ax) - - ax = plt.subplot(223) - drop_shadow_patches(ax) - - ax = plt.subplot(224) - ax.set_aspect(1) - light_filter_pie(ax) - ax.set_frame_on(True) - - plt.show() diff --git a/_downloads/436b92b7e90e793f7049edd4ad8b5c4a/line_collection.ipynb b/_downloads/436b92b7e90e793f7049edd4ad8b5c4a/line_collection.ipynb deleted file mode 120000 index 1aede09f3ad..00000000000 --- a/_downloads/436b92b7e90e793f7049edd4ad8b5c4a/line_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/436b92b7e90e793f7049edd4ad8b5c4a/line_collection.ipynb \ No newline at end of file diff --git a/_downloads/436cad64623c16985dfc1fe14a53fa89/font_file.ipynb b/_downloads/436cad64623c16985dfc1fe14a53fa89/font_file.ipynb deleted file mode 120000 index 99771f6df8f..00000000000 --- a/_downloads/436cad64623c16985dfc1fe14a53fa89/font_file.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/436cad64623c16985dfc1fe14a53fa89/font_file.ipynb \ No newline at end of file diff --git a/_downloads/4371fcc90680a4aaf96be942f5580105/legend.ipynb b/_downloads/4371fcc90680a4aaf96be942f5580105/legend.ipynb deleted file mode 120000 index 6340f2adb50..00000000000 --- a/_downloads/4371fcc90680a4aaf96be942f5580105/legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4371fcc90680a4aaf96be942f5580105/legend.ipynb \ No newline at end of file diff --git a/_downloads/4377f89c37a02bcb762dccfd3a1290be/errorbar_limits_simple.ipynb b/_downloads/4377f89c37a02bcb762dccfd3a1290be/errorbar_limits_simple.ipynb deleted file mode 100644 index 6da488767d2..00000000000 --- a/_downloads/4377f89c37a02bcb762dccfd3a1290be/errorbar_limits_simple.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Errorbar limit selection\n\n\nIllustration of selectively drawing lower and/or upper limit symbols on\nerrorbars using the parameters ``uplims``, ``lolims`` of `~.pyplot.errorbar`.\n\nAlternatively, you can use 2xN values to draw errorbars in only one direction.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\nx = np.arange(10)\ny = 2.5 * np.sin(x / 20 * np.pi)\nyerr = np.linspace(0.05, 0.2, 10)\n\nplt.errorbar(x, y + 3, yerr=yerr, label='both limits (default)')\n\nplt.errorbar(x, y + 2, yerr=yerr, uplims=True, label='uplims=True')\n\nplt.errorbar(x, y + 1, yerr=yerr, uplims=True, lolims=True,\n label='uplims=True, lolims=True')\n\nupperlimits = [True, False] * 5\nlowerlimits = [False, True] * 5\nplt.errorbar(x, y, yerr=yerr, uplims=upperlimits, lolims=lowerlimits,\n label='subsets of uplims and lolims')\n\nplt.legend(loc='lower right')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Similarly ``xuplims``and ``xlolims`` can be used on the horizontal ``xerr``\nerrorbars.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nx = np.arange(10) / 10\ny = (x + 0.1)**2\n\nplt.errorbar(x, y, xerr=0.1, xlolims=True, label='xlolims=True')\ny = (x + 0.1)**3\n\nplt.errorbar(x + 0.6, y, xerr=0.1, xuplims=upperlimits, xlolims=lowerlimits,\n label='subsets of xuplims and xlolims')\n\ny = (x + 0.1)**4\nplt.errorbar(x + 1.2, y, xerr=0.1, xuplims=True, label='xuplims=True')\n\nplt.legend()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.errorbar\nmatplotlib.pyplot.errorbar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/437c719f78d34b13a966649f35308902/bachelors_degrees_by_gender.py b/_downloads/437c719f78d34b13a966649f35308902/bachelors_degrees_by_gender.py deleted file mode 100644 index a67b6a02949..00000000000 --- a/_downloads/437c719f78d34b13a966649f35308902/bachelors_degrees_by_gender.py +++ /dev/null @@ -1,115 +0,0 @@ -""" -============================ -Bachelor's degrees by gender -============================ - -A graph of multiple time series which demonstrates extensive custom -styling of plot frame, tick lines and labels, and line graph properties. - -Also demonstrates the custom placement of text labels along the right edge -as an alternative to a conventional legend. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.cbook import get_sample_data - - -fname = get_sample_data('percent_bachelors_degrees_women_usa.csv', - asfileobj=False) -gender_degree_data = np.genfromtxt(fname, delimiter=',', names=True) - -# You typically want your plot to be ~1.33x wider than tall. This plot -# is a rare exception because of the number of lines being plotted on it. -# Common sizes: (10, 7.5) and (12, 9) -fig, ax = plt.subplots(1, 1, figsize=(12, 14)) - -# These are the colors that will be used in the plot -ax.set_prop_cycle(color=[ - '#1f77b4', '#aec7e8', '#ff7f0e', '#ffbb78', '#2ca02c', '#98df8a', - '#d62728', '#ff9896', '#9467bd', '#c5b0d5', '#8c564b', '#c49c94', - '#e377c2', '#f7b6d2', '#7f7f7f', '#c7c7c7', '#bcbd22', '#dbdb8d', - '#17becf', '#9edae5']) - -# Remove the plot frame lines. They are unnecessary here. -ax.spines['top'].set_visible(False) -ax.spines['bottom'].set_visible(False) -ax.spines['right'].set_visible(False) -ax.spines['left'].set_visible(False) - -# Ensure that the axis ticks only show up on the bottom and left of the plot. -# Ticks on the right and top of the plot are generally unnecessary. -ax.get_xaxis().tick_bottom() -ax.get_yaxis().tick_left() - -fig.subplots_adjust(left=.06, right=.75, bottom=.02, top=.94) -# Limit the range of the plot to only where the data is. -# Avoid unnecessary whitespace. -ax.set_xlim(1969.5, 2011.1) -ax.set_ylim(-0.25, 90) - -# Set a fixed location and format for ticks. -ax.set_xticks(range(1970, 2011, 10)) -ax.set_yticks(range(0, 91, 10)) -ax.xaxis.set_major_formatter(plt.FuncFormatter('{:.0f}'.format)) -ax.yaxis.set_major_formatter(plt.FuncFormatter('{:.0f}%'.format)) - -# Provide tick lines across the plot to help your viewers trace along -# the axis ticks. Make sure that the lines are light and small so they -# don't obscure the primary data lines. -ax.grid(True, 'major', 'y', ls='--', lw=.5, c='k', alpha=.3) - -# Remove the tick marks; they are unnecessary with the tick lines we just -# plotted. Make sure your axis ticks are large enough to be easily read. -# You don't want your viewers squinting to read your plot. -ax.tick_params(axis='both', which='both', labelsize=14, - bottom=False, top=False, labelbottom=True, - left=False, right=False, labelleft=True) - -# Now that the plot is prepared, it's time to actually plot the data! -# Note that I plotted the majors in order of the highest % in the final year. -majors = ['Health Professions', 'Public Administration', 'Education', - 'Psychology', 'Foreign Languages', 'English', - 'Communications\nand Journalism', 'Art and Performance', 'Biology', - 'Agriculture', 'Social Sciences and History', 'Business', - 'Math and Statistics', 'Architecture', 'Physical Sciences', - 'Computer Science', 'Engineering'] - -y_offsets = {'Foreign Languages': 0.5, 'English': -0.5, - 'Communications\nand Journalism': 0.75, - 'Art and Performance': -0.25, 'Agriculture': 1.25, - 'Social Sciences and History': 0.25, 'Business': -0.75, - 'Math and Statistics': 0.75, 'Architecture': -0.75, - 'Computer Science': 0.75, 'Engineering': -0.25} - -for column in majors: - # Plot each line separately with its own color. - column_rec_name = column.replace('\n', '_').replace(' ', '_') - - line, = ax.plot('Year', column_rec_name, data=gender_degree_data, - lw=2.5) - - # Add a text label to the right end of every line. Most of the code below - # is adding specific offsets y position because some labels overlapped. - y_pos = gender_degree_data[column_rec_name][-1] - 0.5 - - if column in y_offsets: - y_pos += y_offsets[column] - - # Again, make sure that all labels are large enough to be easily read - # by the viewer. - ax.text(2011.5, y_pos, column, fontsize=14, color=line.get_color()) - -# Make the title big enough so it spans the entire plot, but don't make it -# so big that it requires two lines to show. - -# Note that if the title is descriptive enough, it is unnecessary to include -# axis labels; they are self-evident, in this plot's case. -fig.suptitle('Percentage of Bachelor\'s degrees conferred to women in ' - 'the U.S.A. by major (1970-2011)\n', fontsize=18, ha='center') - -# Finally, save the figure as a PNG. -# You can also save it as a PDF, JPEG, etc. -# Just change the file extension in this call. -# fig.savefig('percent-bachelors-degrees-women-usa.png', bbox_inches='tight') -plt.show() diff --git a/_downloads/438fc03190a63c838f308d3b2006c1ca/skewt.ipynb b/_downloads/438fc03190a63c838f308d3b2006c1ca/skewt.ipynb deleted file mode 100644 index 0e0d02b613e..00000000000 --- a/_downloads/438fc03190a63c838f308d3b2006c1ca/skewt.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===========================================================\nSkewT-logP diagram: using transforms and custom projections\n===========================================================\n\nThis serves as an intensive exercise of Matplotlib's transforms and custom\nprojection API. This example produces a so-called SkewT-logP diagram, which is\na common plot in meteorology for displaying vertical profiles of temperature.\nAs far as Matplotlib is concerned, the complexity comes from having X and Y\naxes that are not orthogonal. This is handled by including a skew component to\nthe basic Axes transforms. Additional complexity comes in handling the fact\nthat the upper and lower X-axes have different data ranges, which necessitates\na bunch of custom classes for ticks, spines, and axis to handle this.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from contextlib import ExitStack\n\nfrom matplotlib.axes import Axes\nimport matplotlib.transforms as transforms\nimport matplotlib.axis as maxis\nimport matplotlib.spines as mspines\nfrom matplotlib.projections import register_projection\n\n\n# The sole purpose of this class is to look at the upper, lower, or total\n# interval as appropriate and see what parts of the tick to draw, if any.\nclass SkewXTick(maxis.XTick):\n def draw(self, renderer):\n # When adding the callbacks with `stack.callback`, we fetch the current\n # visibility state of the artist with `get_visible`; the ExitStack will\n # restore these states (`set_visible`) at the end of the block (after\n # the draw).\n with ExitStack() as stack:\n for artist in [self.gridline, self.tick1line, self.tick2line,\n self.label1, self.label2]:\n stack.callback(artist.set_visible, artist.get_visible())\n needs_lower = transforms.interval_contains(\n self.axes.lower_xlim, self.get_loc())\n needs_upper = transforms.interval_contains(\n self.axes.upper_xlim, self.get_loc())\n self.tick1line.set_visible(\n self.tick1line.get_visible() and needs_lower)\n self.label1.set_visible(\n self.label1.get_visible() and needs_lower)\n self.tick2line.set_visible(\n self.tick2line.get_visible() and needs_upper)\n self.label2.set_visible(\n self.label2.get_visible() and needs_upper)\n super(SkewXTick, self).draw(renderer)\n\n def get_view_interval(self):\n return self.axes.xaxis.get_view_interval()\n\n\n# This class exists to provide two separate sets of intervals to the tick,\n# as well as create instances of the custom tick\nclass SkewXAxis(maxis.XAxis):\n def _get_tick(self, major):\n return SkewXTick(self.axes, None, '', major=major)\n\n def get_view_interval(self):\n return self.axes.upper_xlim[0], self.axes.lower_xlim[1]\n\n\n# This class exists to calculate the separate data range of the\n# upper X-axis and draw the spine there. It also provides this range\n# to the X-axis artist for ticking and gridlines\nclass SkewSpine(mspines.Spine):\n def _adjust_location(self):\n pts = self._path.vertices\n if self.spine_type == 'top':\n pts[:, 0] = self.axes.upper_xlim\n else:\n pts[:, 0] = self.axes.lower_xlim\n\n\n# This class handles registration of the skew-xaxes as a projection as well\n# as setting up the appropriate transformations. It also overrides standard\n# spines and axes instances as appropriate.\nclass SkewXAxes(Axes):\n # The projection must specify a name. This will be used be the\n # user to select the projection, i.e. ``subplot(111,\n # projection='skewx')``.\n name = 'skewx'\n\n def _init_axis(self):\n # Taken from Axes and modified to use our modified X-axis\n self.xaxis = SkewXAxis(self)\n self.spines['top'].register_axis(self.xaxis)\n self.spines['bottom'].register_axis(self.xaxis)\n self.yaxis = maxis.YAxis(self)\n self.spines['left'].register_axis(self.yaxis)\n self.spines['right'].register_axis(self.yaxis)\n\n def _gen_axes_spines(self):\n spines = {'top': SkewSpine.linear_spine(self, 'top'),\n 'bottom': mspines.Spine.linear_spine(self, 'bottom'),\n 'left': mspines.Spine.linear_spine(self, 'left'),\n 'right': mspines.Spine.linear_spine(self, 'right')}\n return spines\n\n def _set_lim_and_transforms(self):\n \"\"\"\n This is called once when the plot is created to set up all the\n transforms for the data, text and grids.\n \"\"\"\n rot = 30\n\n # Get the standard transform setup from the Axes base class\n super()._set_lim_and_transforms()\n\n # Need to put the skew in the middle, after the scale and limits,\n # but before the transAxes. This way, the skew is done in Axes\n # coordinates thus performing the transform around the proper origin\n # We keep the pre-transAxes transform around for other users, like the\n # spines for finding bounds\n self.transDataToAxes = (\n self.transScale\n + self.transLimits\n + transforms.Affine2D().skew_deg(rot, 0)\n )\n # Create the full transform from Data to Pixels\n self.transData = self.transDataToAxes + self.transAxes\n\n # Blended transforms like this need to have the skewing applied using\n # both axes, in axes coords like before.\n self._xaxis_transform = (\n transforms.blended_transform_factory(\n self.transScale + self.transLimits,\n transforms.IdentityTransform())\n + transforms.Affine2D().skew_deg(rot, 0)\n + self.transAxes\n )\n\n @property\n def lower_xlim(self):\n return self.axes.viewLim.intervalx\n\n @property\n def upper_xlim(self):\n pts = [[0., 1.], [1., 1.]]\n return self.transDataToAxes.inverted().transform(pts)[:, 0]\n\n\n# Now register the projection with matplotlib so the user can select it.\nregister_projection(SkewXAxes)\n\nif __name__ == '__main__':\n # Now make a simple example using the custom projection.\n from io import StringIO\n from matplotlib.ticker import (MultipleLocator, NullFormatter,\n ScalarFormatter)\n import matplotlib.pyplot as plt\n import numpy as np\n\n # Some example data.\n data_txt = '''\n 978.0 345 7.8 0.8\n 971.0 404 7.2 0.2\n 946.7 610 5.2 -1.8\n 944.0 634 5.0 -2.0\n 925.0 798 3.4 -2.6\n 911.8 914 2.4 -2.7\n 906.0 966 2.0 -2.7\n 877.9 1219 0.4 -3.2\n 850.0 1478 -1.3 -3.7\n 841.0 1563 -1.9 -3.8\n 823.0 1736 1.4 -0.7\n 813.6 1829 4.5 1.2\n 809.0 1875 6.0 2.2\n 798.0 1988 7.4 -0.6\n 791.0 2061 7.6 -1.4\n 783.9 2134 7.0 -1.7\n 755.1 2438 4.8 -3.1\n 727.3 2743 2.5 -4.4\n 700.5 3048 0.2 -5.8\n 700.0 3054 0.2 -5.8\n 698.0 3077 0.0 -6.0\n 687.0 3204 -0.1 -7.1\n 648.9 3658 -3.2 -10.9\n 631.0 3881 -4.7 -12.7\n 600.7 4267 -6.4 -16.7\n 592.0 4381 -6.9 -17.9\n 577.6 4572 -8.1 -19.6\n 555.3 4877 -10.0 -22.3\n 536.0 5151 -11.7 -24.7\n 533.8 5182 -11.9 -25.0\n 500.0 5680 -15.9 -29.9\n 472.3 6096 -19.7 -33.4\n 453.0 6401 -22.4 -36.0\n 400.0 7310 -30.7 -43.7\n 399.7 7315 -30.8 -43.8\n 387.0 7543 -33.1 -46.1\n 382.7 7620 -33.8 -46.8\n 342.0 8398 -40.5 -53.5\n 320.4 8839 -43.7 -56.7\n 318.0 8890 -44.1 -57.1\n 310.0 9060 -44.7 -58.7\n 306.1 9144 -43.9 -57.9\n 305.0 9169 -43.7 -57.7\n 300.0 9280 -43.5 -57.5\n 292.0 9462 -43.7 -58.7\n 276.0 9838 -47.1 -62.1\n 264.0 10132 -47.5 -62.5\n 251.0 10464 -49.7 -64.7\n 250.0 10490 -49.7 -64.7\n 247.0 10569 -48.7 -63.7\n 244.0 10649 -48.9 -63.9\n 243.3 10668 -48.9 -63.9\n 220.0 11327 -50.3 -65.3\n 212.0 11569 -50.5 -65.5\n 210.0 11631 -49.7 -64.7\n 200.0 11950 -49.9 -64.9\n 194.0 12149 -49.9 -64.9\n 183.0 12529 -51.3 -66.3\n 164.0 13233 -55.3 -68.3\n 152.0 13716 -56.5 -69.5\n 150.0 13800 -57.1 -70.1\n 136.0 14414 -60.5 -72.5\n 132.0 14600 -60.1 -72.1\n 131.4 14630 -60.2 -72.2\n 128.0 14792 -60.9 -72.9\n 125.0 14939 -60.1 -72.1\n 119.0 15240 -62.2 -73.8\n 112.0 15616 -64.9 -75.9\n 108.0 15838 -64.1 -75.1\n 107.8 15850 -64.1 -75.1\n 105.0 16010 -64.7 -75.7\n 103.0 16128 -62.9 -73.9\n 100.0 16310 -62.5 -73.5\n '''\n\n # Parse the data\n sound_data = StringIO(data_txt)\n p, h, T, Td = np.loadtxt(sound_data, unpack=True)\n\n # Create a new figure. The dimensions here give a good aspect ratio\n fig = plt.figure(figsize=(6.5875, 6.2125))\n ax = fig.add_subplot(111, projection='skewx')\n\n plt.grid(True)\n\n # Plot the data using normal plotting functions, in this case using\n # log scaling in Y, as dictated by the typical meteorological plot\n ax.semilogy(T, p, color='C3')\n ax.semilogy(Td, p, color='C2')\n\n # An example of a slanted line at constant X\n l = ax.axvline(0, color='C0')\n\n # Disables the log-formatting that comes with semilogy\n ax.yaxis.set_major_formatter(ScalarFormatter())\n ax.yaxis.set_minor_formatter(NullFormatter())\n ax.set_yticks(np.linspace(100, 1000, 10))\n ax.set_ylim(1050, 100)\n\n ax.xaxis.set_major_locator(MultipleLocator(10))\n ax.set_xlim(-50, 50)\n\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.transforms\nmatplotlib.spines\nmatplotlib.spines.Spine\nmatplotlib.spines.Spine.register_axis\nmatplotlib.projections\nmatplotlib.projections.register_projection" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/439d856b25fb4c0d7c0c9edf10a108c0/annotate_with_units.ipynb b/_downloads/439d856b25fb4c0d7c0c9edf10a108c0/annotate_with_units.ipynb deleted file mode 120000 index a272b0ca1d6..00000000000 --- a/_downloads/439d856b25fb4c0d7c0c9edf10a108c0/annotate_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/439d856b25fb4c0d7c0c9edf10a108c0/annotate_with_units.ipynb \ No newline at end of file diff --git a/_downloads/43a369adb2d7cd45780ed00137d8a2c0/axhspan_demo.ipynb b/_downloads/43a369adb2d7cd45780ed00137d8a2c0/axhspan_demo.ipynb deleted file mode 100644 index b64a4838363..00000000000 --- a/_downloads/43a369adb2d7cd45780ed00137d8a2c0/axhspan_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# axhspan Demo\n\n\nCreate lines or rectangles that span the axes in either the horizontal or\nvertical direction.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(-1, 2, .01)\ns = np.sin(2 * np.pi * t)\n\nplt.plot(t, s)\n# Draw a thick red hline at y=0 that spans the xrange\nplt.axhline(linewidth=8, color='#d62728')\n\n# Draw a default hline at y=1 that spans the xrange\nplt.axhline(y=1)\n\n# Draw a default vline at x=1 that spans the yrange\nplt.axvline(x=1)\n\n# Draw a thick blue vline at x=0 that spans the upper quadrant of the yrange\nplt.axvline(x=0, ymin=0.75, linewidth=8, color='#1f77b4')\n\n# Draw a default hline at y=.5 that spans the middle half of the axes\nplt.axhline(y=.5, xmin=0.25, xmax=0.75)\n\nplt.axhspan(0.25, 0.75, facecolor='0.5', alpha=0.5)\n\nplt.axvspan(1.25, 1.55, facecolor='#2ca02c', alpha=0.5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/43a7bfe9a5af66504e496566c9cf790c/radio_buttons.py b/_downloads/43a7bfe9a5af66504e496566c9cf790c/radio_buttons.py deleted file mode 120000 index 01bd184b4e8..00000000000 --- a/_downloads/43a7bfe9a5af66504e496566c9cf790c/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/43a7bfe9a5af66504e496566c9cf790c/radio_buttons.py \ No newline at end of file diff --git a/_downloads/43aba940936123ae3bf6a228b455360d/unchained.ipynb b/_downloads/43aba940936123ae3bf6a228b455360d/unchained.ipynb deleted file mode 120000 index 56b6d49b972..00000000000 --- a/_downloads/43aba940936123ae3bf6a228b455360d/unchained.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/43aba940936123ae3bf6a228b455360d/unchained.ipynb \ No newline at end of file diff --git a/_downloads/43b8af38082814a81b566d2a568f7783/demo_floating_axis.py b/_downloads/43b8af38082814a81b566d2a568f7783/demo_floating_axis.py deleted file mode 120000 index 5d857ddbd09..00000000000 --- a/_downloads/43b8af38082814a81b566d2a568f7783/demo_floating_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/43b8af38082814a81b566d2a568f7783/demo_floating_axis.py \ No newline at end of file diff --git a/_downloads/43c637c1bd69870094a1dab38443214b/axes_props.py b/_downloads/43c637c1bd69870094a1dab38443214b/axes_props.py deleted file mode 120000 index d6e513efd80..00000000000 --- a/_downloads/43c637c1bd69870094a1dab38443214b/axes_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/43c637c1bd69870094a1dab38443214b/axes_props.py \ No newline at end of file diff --git a/_downloads/43c69a80ce7044565e608d695b81cca1/tick_labels_from_values.ipynb b/_downloads/43c69a80ce7044565e608d695b81cca1/tick_labels_from_values.ipynb deleted file mode 120000 index 3c5a5034077..00000000000 --- a/_downloads/43c69a80ce7044565e608d695b81cca1/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/43c69a80ce7044565e608d695b81cca1/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/43d125f4674cea918a8336079960cf1c/barcode_demo.ipynb b/_downloads/43d125f4674cea918a8336079960cf1c/barcode_demo.ipynb deleted file mode 100644 index b17aa498775..00000000000 --- a/_downloads/43d125f4674cea918a8336079960cf1c/barcode_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Barcode Demo\n\n\nThis demo shows how to produce a one-dimensional image, or \"bar code\".\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# the bar\nx = np.random.rand(500) > 0.7\n\nbarprops = dict(aspect='auto', cmap='binary', interpolation='nearest')\n\nfig = plt.figure()\n\n# a vertical barcode\nax1 = fig.add_axes([0.1, 0.1, 0.1, 0.8])\nax1.set_axis_off()\nax1.imshow(x.reshape((-1, 1)), **barprops)\n\n# a horizontal barcode\nax2 = fig.add_axes([0.3, 0.4, 0.6, 0.2])\nax2.set_axis_off()\nax2.imshow(x.reshape((1, -1)), **barprops)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/43d9bfbce63b340439fd76d76bac5940/slider_demo.ipynb b/_downloads/43d9bfbce63b340439fd76d76bac5940/slider_demo.ipynb deleted file mode 100644 index 4157d9bf94e..00000000000 --- a/_downloads/43d9bfbce63b340439fd76d76bac5940/slider_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Slider Demo\n\n\nUsing the slider widget to control visual properties of your plot.\n\nIn this example, a slider is used to choose the frequency of a sine\nwave. You can control many continuously-varying properties of your plot in\nthis way.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import Slider, Button, RadioButtons\n\nfig, ax = plt.subplots()\nplt.subplots_adjust(left=0.25, bottom=0.25)\nt = np.arange(0.0, 1.0, 0.001)\na0 = 5\nf0 = 3\ndelta_f = 5.0\ns = a0 * np.sin(2 * np.pi * f0 * t)\nl, = plt.plot(t, s, lw=2)\nax.margins(x=0)\n\naxcolor = 'lightgoldenrodyellow'\naxfreq = plt.axes([0.25, 0.1, 0.65, 0.03], facecolor=axcolor)\naxamp = plt.axes([0.25, 0.15, 0.65, 0.03], facecolor=axcolor)\n\nsfreq = Slider(axfreq, 'Freq', 0.1, 30.0, valinit=f0, valstep=delta_f)\nsamp = Slider(axamp, 'Amp', 0.1, 10.0, valinit=a0)\n\n\ndef update(val):\n amp = samp.val\n freq = sfreq.val\n l.set_ydata(amp*np.sin(2*np.pi*freq*t))\n fig.canvas.draw_idle()\n\n\nsfreq.on_changed(update)\nsamp.on_changed(update)\n\nresetax = plt.axes([0.8, 0.025, 0.1, 0.04])\nbutton = Button(resetax, 'Reset', color=axcolor, hovercolor='0.975')\n\n\ndef reset(event):\n sfreq.reset()\n samp.reset()\nbutton.on_clicked(reset)\n\nrax = plt.axes([0.025, 0.5, 0.15, 0.15], facecolor=axcolor)\nradio = RadioButtons(rax, ('red', 'blue', 'green'), active=0)\n\n\ndef colorfunc(label):\n l.set_color(label)\n fig.canvas.draw_idle()\nradio.on_clicked(colorfunc)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/43dd00dcc97d083ea921e4178a927952/histogram.ipynb b/_downloads/43dd00dcc97d083ea921e4178a927952/histogram.ipynb deleted file mode 120000 index 8a3b1264883..00000000000 --- a/_downloads/43dd00dcc97d083ea921e4178a927952/histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/43dd00dcc97d083ea921e4178a927952/histogram.ipynb \ No newline at end of file diff --git a/_downloads/43df997f07a5c5d8fc4f1ec1552e9b53/filled_step.py b/_downloads/43df997f07a5c5d8fc4f1ec1552e9b53/filled_step.py deleted file mode 100644 index c680e4b870c..00000000000 --- a/_downloads/43df997f07a5c5d8fc4f1ec1552e9b53/filled_step.py +++ /dev/null @@ -1,237 +0,0 @@ -""" -========================= -Hatch-filled histograms -========================= - -Hatching capabilities for plotting histograms. -""" - -import itertools -from collections import OrderedDict -from functools import partial - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as mticker -from cycler import cycler - - -def filled_hist(ax, edges, values, bottoms=None, orientation='v', - **kwargs): - """ - Draw a histogram as a stepped patch. - - Extra kwargs are passed through to `fill_between` - - Parameters - ---------- - ax : Axes - The axes to plot to - - edges : array - A length n+1 array giving the left edges of each bin and the - right edge of the last bin. - - values : array - A length n array of bin counts or values - - bottoms : scalar or array, optional - A length n array of the bottom of the bars. If None, zero is used. - - orientation : {'v', 'h'} - Orientation of the histogram. 'v' (default) has - the bars increasing in the positive y-direction. - - Returns - ------- - ret : PolyCollection - Artist added to the Axes - """ - print(orientation) - if orientation not in 'hv': - raise ValueError("orientation must be in {{'h', 'v'}} " - "not {o}".format(o=orientation)) - - kwargs.setdefault('step', 'post') - edges = np.asarray(edges) - values = np.asarray(values) - if len(edges) - 1 != len(values): - raise ValueError('Must provide one more bin edge than value not: ' - 'len(edges): {lb} len(values): {lv}'.format( - lb=len(edges), lv=len(values))) - - if bottoms is None: - bottoms = 0 - bottoms = np.broadcast_to(bottoms, values.shape) - - values = np.r_[values, values[-1]] - bottoms = np.r_[bottoms, bottoms[-1]] - if orientation == 'h': - return ax.fill_betweenx(edges, values, bottoms, - **kwargs) - elif orientation == 'v': - return ax.fill_between(edges, values, bottoms, - **kwargs) - else: - raise AssertionError("you should never be here") - - -def stack_hist(ax, stacked_data, sty_cycle, bottoms=None, - hist_func=None, labels=None, - plot_func=None, plot_kwargs=None): - """ - ax : axes.Axes - The axes to add artists too - - stacked_data : array or Mapping - A (N, M) shaped array. The first dimension will be iterated over to - compute histograms row-wise - - sty_cycle : Cycler or operable of dict - Style to apply to each set - - bottoms : array, optional - The initial positions of the bottoms, defaults to 0 - - hist_func : callable, optional - Must have signature `bin_vals, bin_edges = f(data)`. - `bin_edges` expected to be one longer than `bin_vals` - - labels : list of str, optional - The label for each set. - - If not given and stacked data is an array defaults to 'default set {n}' - - If stacked_data is a mapping, and labels is None, default to the keys - (which may come out in a random order). - - If stacked_data is a mapping and labels is given then only - the columns listed by be plotted. - - plot_func : callable, optional - Function to call to draw the histogram must have signature: - - ret = plot_func(ax, edges, top, bottoms=bottoms, - label=label, **kwargs) - - plot_kwargs : dict, optional - Any extra kwargs to pass through to the plotting function. This - will be the same for all calls to the plotting function and will - over-ride the values in cycle. - - Returns - ------- - arts : dict - Dictionary of artists keyed on their labels - """ - # deal with default binning function - if hist_func is None: - hist_func = np.histogram - - # deal with default plotting function - if plot_func is None: - plot_func = filled_hist - - # deal with default - if plot_kwargs is None: - plot_kwargs = {} - print(plot_kwargs) - try: - l_keys = stacked_data.keys() - label_data = True - if labels is None: - labels = l_keys - - except AttributeError: - label_data = False - if labels is None: - labels = itertools.repeat(None) - - if label_data: - loop_iter = enumerate((stacked_data[lab], lab, s) - for lab, s in zip(labels, sty_cycle)) - else: - loop_iter = enumerate(zip(stacked_data, labels, sty_cycle)) - - arts = {} - for j, (data, label, sty) in loop_iter: - if label is None: - label = 'dflt set {n}'.format(n=j) - label = sty.pop('label', label) - vals, edges = hist_func(data) - if bottoms is None: - bottoms = np.zeros_like(vals) - top = bottoms + vals - print(sty) - sty.update(plot_kwargs) - print(sty) - ret = plot_func(ax, edges, top, bottoms=bottoms, - label=label, **sty) - bottoms = top - arts[label] = ret - ax.legend(fontsize=10) - return arts - - -# set up histogram function to fixed bins -edges = np.linspace(-3, 3, 20, endpoint=True) -hist_func = partial(np.histogram, bins=edges) - -# set up style cycles -color_cycle = cycler(facecolor=plt.rcParams['axes.prop_cycle'][:4]) -label_cycle = cycler(label=['set {n}'.format(n=n) for n in range(4)]) -hatch_cycle = cycler(hatch=['/', '*', '+', '|']) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -stack_data = np.random.randn(4, 12250) -dict_data = OrderedDict(zip((c['label'] for c in label_cycle), stack_data)) - -############################################################################### -# Work with plain arrays - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5), tight_layout=True) -arts = stack_hist(ax1, stack_data, color_cycle + label_cycle + hatch_cycle, - hist_func=hist_func) - -arts = stack_hist(ax2, stack_data, color_cycle, - hist_func=hist_func, - plot_kwargs=dict(edgecolor='w', orientation='h')) -ax1.set_ylabel('counts') -ax1.set_xlabel('x') -ax2.set_xlabel('counts') -ax2.set_ylabel('x') - -############################################################################### -# Work with labeled data - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5), - tight_layout=True, sharey=True) - -arts = stack_hist(ax1, dict_data, color_cycle + hatch_cycle, - hist_func=hist_func) - -arts = stack_hist(ax2, dict_data, color_cycle + hatch_cycle, - hist_func=hist_func, labels=['set 0', 'set 3']) -ax1.xaxis.set_major_locator(mticker.MaxNLocator(5)) -ax1.set_xlabel('counts') -ax1.set_ylabel('x') -ax2.set_ylabel('x') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.fill_betweenx -matplotlib.axes.Axes.fill_between -matplotlib.axis.Axis.set_major_locator diff --git a/_downloads/43dfdc3242d6e3f7d2a54971e771b799/boxplot.ipynb b/_downloads/43dfdc3242d6e3f7d2a54971e771b799/boxplot.ipynb deleted file mode 120000 index e16007af12c..00000000000 --- a/_downloads/43dfdc3242d6e3f7d2a54971e771b799/boxplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/43dfdc3242d6e3f7d2a54971e771b799/boxplot.ipynb \ No newline at end of file diff --git a/_downloads/43e95a606da4166bae25f8b7f7a92e9f/demo_gridspec05.py b/_downloads/43e95a606da4166bae25f8b7f7a92e9f/demo_gridspec05.py deleted file mode 120000 index 04e262872ea..00000000000 --- a/_downloads/43e95a606da4166bae25f8b7f7a92e9f/demo_gridspec05.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/43e95a606da4166bae25f8b7f7a92e9f/demo_gridspec05.py \ No newline at end of file diff --git a/_downloads/43e9c4a255f4b94decaa9ed933df09d5/axis_direction_demo_step01.ipynb b/_downloads/43e9c4a255f4b94decaa9ed933df09d5/axis_direction_demo_step01.ipynb deleted file mode 100644 index 9375160e1fb..00000000000 --- a/_downloads/43e9c4a255f4b94decaa9ed933df09d5/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x\"] = ax.new_floating_axis(1, 0.5)\n ax.axis[\"x\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(3, 2.5))\nfig.subplots_adjust(top=0.8)\nax1 = setup_axes(fig, \"111\")\n\nax1.axis[\"x\"].set_axis_direction(\"left\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/43ee01b4b62cb46e1521f86c6de1a0a4/simple_axes_divider1.py b/_downloads/43ee01b4b62cb46e1521f86c6de1a0a4/simple_axes_divider1.py deleted file mode 120000 index 87f4ae3388c..00000000000 --- a/_downloads/43ee01b4b62cb46e1521f86c6de1a0a4/simple_axes_divider1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/43ee01b4b62cb46e1521f86c6de1a0a4/simple_axes_divider1.py \ No newline at end of file diff --git a/_downloads/43f13564f1a733d39206911c0cfc4864/lasso_demo.py b/_downloads/43f13564f1a733d39206911c0cfc4864/lasso_demo.py deleted file mode 100644 index df3a88ce672..00000000000 --- a/_downloads/43f13564f1a733d39206911c0cfc4864/lasso_demo.py +++ /dev/null @@ -1,90 +0,0 @@ -""" -========== -Lasso Demo -========== - -Show how to use a lasso to select a set of points and get the indices -of the selected points. A callback is used to change the color of the -selected points - -This is currently a proof-of-concept implementation (though it is -usable as is). There will be some refinement of the API. -""" - -from matplotlib import colors as mcolors, path -from matplotlib.collections import RegularPolyCollection -import matplotlib.pyplot as plt -from matplotlib.widgets import Lasso -import numpy as np - - -class Datum(object): - colorin = mcolors.to_rgba("red") - colorout = mcolors.to_rgba("blue") - - def __init__(self, x, y, include=False): - self.x = x - self.y = y - if include: - self.color = self.colorin - else: - self.color = self.colorout - - -class LassoManager(object): - def __init__(self, ax, data): - self.axes = ax - self.canvas = ax.figure.canvas - self.data = data - - self.Nxy = len(data) - - facecolors = [d.color for d in data] - self.xys = [(d.x, d.y) for d in data] - self.collection = RegularPolyCollection( - 6, sizes=(100,), - facecolors=facecolors, - offsets=self.xys, - transOffset=ax.transData) - - ax.add_collection(self.collection) - - self.cid = self.canvas.mpl_connect('button_press_event', self.onpress) - - def callback(self, verts): - facecolors = self.collection.get_facecolors() - p = path.Path(verts) - ind = p.contains_points(self.xys) - for i in range(len(self.xys)): - if ind[i]: - facecolors[i] = Datum.colorin - else: - facecolors[i] = Datum.colorout - - self.canvas.draw_idle() - self.canvas.widgetlock.release(self.lasso) - del self.lasso - - def onpress(self, event): - if self.canvas.widgetlock.locked(): - return - if event.inaxes is None: - return - self.lasso = Lasso(event.inaxes, - (event.xdata, event.ydata), - self.callback) - # acquire a lock on the widget drawing - self.canvas.widgetlock(self.lasso) - - -if __name__ == '__main__': - - np.random.seed(19680801) - - data = [Datum(*xy) for xy in np.random.rand(100, 2)] - ax = plt.axes(xlim=(0, 1), ylim=(0, 1), autoscale_on=False) - ax.set_title('Lasso points using left mouse button') - - lman = LassoManager(ax, data) - - plt.show() diff --git a/_downloads/43f86a136e2111aa9d8b60596510c1cb/multicolored_line.ipynb b/_downloads/43f86a136e2111aa9d8b60596510c1cb/multicolored_line.ipynb deleted file mode 120000 index 7c2dfd1d994..00000000000 --- a/_downloads/43f86a136e2111aa9d8b60596510c1cb/multicolored_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/43f86a136e2111aa9d8b60596510c1cb/multicolored_line.ipynb \ No newline at end of file diff --git a/_downloads/4403a8b23424fc2498c697c896c1c422/common_date_problems.ipynb b/_downloads/4403a8b23424fc2498c697c896c1c422/common_date_problems.ipynb deleted file mode 120000 index f3ae6bfef66..00000000000 --- a/_downloads/4403a8b23424fc2498c697c896c1c422/common_date_problems.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4403a8b23424fc2498c697c896c1c422/common_date_problems.ipynb \ No newline at end of file diff --git a/_downloads/44362ce0de5f9c86808ef772557be078/bar_of_pie.py b/_downloads/44362ce0de5f9c86808ef772557be078/bar_of_pie.py deleted file mode 120000 index 0630d8f2e06..00000000000 --- a/_downloads/44362ce0de5f9c86808ef772557be078/bar_of_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/44362ce0de5f9c86808ef772557be078/bar_of_pie.py \ No newline at end of file diff --git a/_downloads/443a41947db9e1f66b759e9b44c46b63/bachelors_degrees_by_gender.py b/_downloads/443a41947db9e1f66b759e9b44c46b63/bachelors_degrees_by_gender.py deleted file mode 120000 index 03d0dfe783b..00000000000 --- a/_downloads/443a41947db9e1f66b759e9b44c46b63/bachelors_degrees_by_gender.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/443a41947db9e1f66b759e9b44c46b63/bachelors_degrees_by_gender.py \ No newline at end of file diff --git a/_downloads/443d7c7c610c4ccb9cf24de0deb1585c/contour_corner_mask.ipynb b/_downloads/443d7c7c610c4ccb9cf24de0deb1585c/contour_corner_mask.ipynb deleted file mode 100644 index 74f41bd8634..00000000000 --- a/_downloads/443d7c7c610c4ccb9cf24de0deb1585c/contour_corner_mask.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Corner Mask\n\n\nIllustrate the difference between ``corner_mask=False`` and\n``corner_mask=True`` for masked contour plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Data to plot.\nx, y = np.meshgrid(np.arange(7), np.arange(10))\nz = np.sin(0.5 * x) * np.cos(0.52 * y)\n\n# Mask various z values.\nmask = np.zeros_like(z, dtype=bool)\nmask[2, 3:5] = True\nmask[3:5, 4] = True\nmask[7, 2] = True\nmask[5, 0] = True\nmask[0, 6] = True\nz = np.ma.array(z, mask=mask)\n\ncorner_masks = [False, True]\nfig, axs = plt.subplots(ncols=2)\nfor ax, corner_mask in zip(axs, corner_masks):\n cs = ax.contourf(x, y, z, corner_mask=corner_mask)\n ax.contour(cs, colors='k')\n ax.set_title('corner_mask = {0}'.format(corner_mask))\n\n # Plot grid.\n ax.grid(c='k', ls='-', alpha=0.3)\n\n # Indicate masked points with red circles.\n ax.plot(np.ma.array(x, mask=~mask), y, 'ro')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/44421a6722c3694cb97f1396431fab44/fig_axes_customize_simple.ipynb b/_downloads/44421a6722c3694cb97f1396431fab44/fig_axes_customize_simple.ipynb deleted file mode 120000 index f1e24e459ac..00000000000 --- a/_downloads/44421a6722c3694cb97f1396431fab44/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/44421a6722c3694cb97f1396431fab44/fig_axes_customize_simple.ipynb \ No newline at end of file diff --git a/_downloads/444557bbc2e51d33dc6df5faecaa9a8c/demo_colorbar_of_inset_axes.py b/_downloads/444557bbc2e51d33dc6df5faecaa9a8c/demo_colorbar_of_inset_axes.py deleted file mode 100644 index 7d330a4de58..00000000000 --- a/_downloads/444557bbc2e51d33dc6df5faecaa9a8c/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -=========================== -Demo Colorbar of Inset Axes -=========================== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.inset_locator import inset_axes, zoomed_inset_axes -from mpl_toolkits.axes_grid1.colorbar import colorbar - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - import numpy as np - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -fig, ax = plt.subplots(figsize=[5, 4]) - -Z, extent = get_demo_image() - -ax.set(aspect=1, - xlim=(-15, 15), - ylim=(-20, 5)) - - -axins = zoomed_inset_axes(ax, zoom=2, loc='upper left') -im = axins.imshow(Z, extent=extent, interpolation="nearest", - origin="lower") - -plt.xticks(visible=False) -plt.yticks(visible=False) - - -# colorbar -cax = inset_axes(axins, - width="5%", # width = 10% of parent_bbox width - height="100%", # height : 50% - loc='lower left', - bbox_to_anchor=(1.05, 0., 1, 1), - bbox_transform=axins.transAxes, - borderpad=0, - ) - -colorbar(im, cax=cax) - -plt.show() diff --git a/_downloads/444931450795c93d5d845ef7a0275217/slider_demo.py b/_downloads/444931450795c93d5d845ef7a0275217/slider_demo.py deleted file mode 120000 index d5b74dea238..00000000000 --- a/_downloads/444931450795c93d5d845ef7a0275217/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/444931450795c93d5d845ef7a0275217/slider_demo.py \ No newline at end of file diff --git a/_downloads/444f5130d518a2ec6bacf883bc7983ad/ellipse_with_units.py b/_downloads/444f5130d518a2ec6bacf883bc7983ad/ellipse_with_units.py deleted file mode 120000 index 8a2b181f48b..00000000000 --- a/_downloads/444f5130d518a2ec6bacf883bc7983ad/ellipse_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/444f5130d518a2ec6bacf883bc7983ad/ellipse_with_units.py \ No newline at end of file diff --git a/_downloads/44756043dd6d8c4d37f2ae34ec869dde/usage.py b/_downloads/44756043dd6d8c4d37f2ae34ec869dde/usage.py deleted file mode 120000 index 7d6f64168db..00000000000 --- a/_downloads/44756043dd6d8c4d37f2ae34ec869dde/usage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/44756043dd6d8c4d37f2ae34ec869dde/usage.py \ No newline at end of file diff --git a/_downloads/447751a4bd4e0abb058893157e304d67/mathtext.ipynb b/_downloads/447751a4bd4e0abb058893157e304d67/mathtext.ipynb deleted file mode 100644 index ad14d31843a..00000000000 --- a/_downloads/447751a4bd4e0abb058893157e304d67/mathtext.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nWriting mathematical expressions\n================================\n\nAn introduction to writing mathematical expressions in Matplotlib.\n\nYou can use a subset TeX markup in any matplotlib text string by placing it\ninside a pair of dollar signs ($).\n\nNote that you do not need to have TeX installed, since Matplotlib ships\nits own TeX expression parser, layout engine, and fonts. The layout engine\nis a fairly direct adaptation of the layout algorithms in Donald Knuth's\nTeX, so the quality is quite good (matplotlib also provides a ``usetex``\noption for those who do want to call out to TeX to generate their text (see\n:doc:`/tutorials/text/usetex`).\n\nAny text element can use math text. You should use raw strings (precede the\nquotes with an ``'r'``), and surround the math text with dollar signs ($), as\nin TeX. Regular text and mathtext can be interleaved within the same string.\nMathtext can use DejaVu Sans (default), DejaVu Serif, the Computer Modern fonts\n(from (La)TeX), `STIX `_ fonts (with are designed\nto blend well with Times), or a Unicode font that you provide. The mathtext\nfont can be selected with the customization variable ``mathtext.fontset`` (see\n:doc:`/tutorials/introductory/customizing`)\n\nHere is a simple example::\n\n # plain text\n plt.title('alpha > beta')\n\nproduces \"alpha > beta\".\n\nWhereas this::\n\n # math text\n plt.title(r'$\\alpha > \\beta$')\n\nproduces \":mathmpl:`\\alpha > \\beta`\".\n\n

Note

Mathtext should be placed between a pair of dollar signs ($). To make it\n easy to display monetary values, e.g., \"$100.00\", if a single dollar sign\n is present in the entire string, it will be displayed verbatim as a dollar\n sign. This is a small change from regular TeX, where the dollar sign in\n non-math text would have to be escaped ('\\\\\\$').

\n\n

Note

While the syntax inside the pair of dollar signs ($) aims to be TeX-like,\n the text outside does not. In particular, characters such as::\n\n # $ % & ~ _ ^ \\ { } \\( \\) \\[ \\]\n\n have special meaning outside of math mode in TeX. Therefore, these\n characters will behave differently depending on the rcParam ``text.usetex``\n flag. See the :doc:`usetex tutorial ` for more\n information.

\n\nSubscripts and superscripts\n---------------------------\n\nTo make subscripts and superscripts, use the ``'_'`` and ``'^'`` symbols::\n\n r'$\\alpha_i > \\beta_i$'\n\n\\begin{align}\\alpha_i > \\beta_i\\end{align}\n\nSome symbols automatically put their sub/superscripts under and over the\noperator. For example, to write the sum of :mathmpl:`x_i` from :mathmpl:`0` to\n:mathmpl:`\\infty`, you could do::\n\n r'$\\sum_{i=0}^\\infty x_i$'\n\n\\begin{align}\\sum_{i=0}^\\infty x_i\\end{align}\n\nFractions, binomials, and stacked numbers\n-----------------------------------------\n\nFractions, binomials, and stacked numbers can be created with the\n``\\frac{}{}``, ``\\binom{}{}`` and ``\\genfrac{}{}{}{}{}{}`` commands,\nrespectively::\n\n r'$\\frac{3}{4} \\binom{3}{4} \\genfrac{}{}{0}{}{3}{4}$'\n\nproduces\n\n\\begin{align}\\frac{3}{4} \\binom{3}{4} \\stackrel{}{}{0}{}{3}{4}\\end{align}\n\nFractions can be arbitrarily nested::\n\n r'$\\frac{5 - \\frac{1}{x}}{4}$'\n\nproduces\n\n\\begin{align}\\frac{5 - \\frac{1}{x}}{4}\\end{align}\n\nNote that special care needs to be taken to place parentheses and brackets\naround fractions. Doing things the obvious way produces brackets that are too\nsmall::\n\n r'$(\\frac{5 - \\frac{1}{x}}{4})$'\n\n.. math ::\n\n (\\frac{5 - \\frac{1}{x}}{4})\n\nThe solution is to precede the bracket with ``\\left`` and ``\\right`` to inform\nthe parser that those brackets encompass the entire object.::\n\n r'$\\left(\\frac{5 - \\frac{1}{x}}{4}\\right)$'\n\n.. math ::\n\n \\left(\\frac{5 - \\frac{1}{x}}{4}\\right)\n\nRadicals\n--------\n\nRadicals can be produced with the ``\\sqrt[]{}`` command. For example::\n\n r'$\\sqrt{2}$'\n\n.. math ::\n\n \\sqrt{2}\n\nAny base can (optionally) be provided inside square brackets. Note that the\nbase must be a simple expression, and can not contain layout commands such as\nfractions or sub/superscripts::\n\n r'$\\sqrt[3]{x}$'\n\n.. math ::\n\n \\sqrt[3]{x}\n\n\nFonts\n-----\n\nThe default font is *italics* for mathematical symbols.\n\n

Note

This default can be changed using the ``mathtext.default`` rcParam. This is\n useful, for example, to use the same font as regular non-math text for math\n text, by setting it to ``regular``.

\n\nTo change fonts, e.g., to write \"sin\" in a Roman font, enclose the text in a\nfont command::\n\n r'$s(t) = \\mathcal{A}\\mathrm{sin}(2 \\omega t)$'\n\n\\begin{align}s(t) = \\mathcal{A}\\mathrm{sin}(2 \\omega t)\\end{align}\n\nMore conveniently, many commonly used function names that are typeset in\na Roman font have shortcuts. So the expression above could be written as\nfollows::\n\n r'$s(t) = \\mathcal{A}\\sin(2 \\omega t)$'\n\n\\begin{align}s(t) = \\mathcal{A}\\sin(2 \\omega t)\\end{align}\n\nHere \"s\" and \"t\" are variable in italics font (default), \"sin\" is in Roman\nfont, and the amplitude \"A\" is in calligraphy font. Note in the example above\nthe calligraphy ``A`` is squished into the ``sin``. You can use a spacing\ncommand to add a little whitespace between them::\n\n r's(t) = \\mathcal{A}\\/\\sin(2 \\omega t)'\n\n.. Here we cheat a bit: for HTML math rendering, Sphinx relies on MathJax which\n doesn't actually support the italic correction (\\/); instead, use a thin\n space (\\,) which is supported.\n\n\\begin{align}s(t) = \\mathcal{A}\\,\\sin(2 \\omega t)\\end{align}\n\nThe choices available with all fonts are:\n\n ========================= ================================\n Command Result\n ========================= ================================\n ``\\mathrm{Roman}`` :mathmpl:`\\mathrm{Roman}`\n ``\\mathit{Italic}`` :mathmpl:`\\mathit{Italic}`\n ``\\mathtt{Typewriter}`` :mathmpl:`\\mathtt{Typewriter}`\n ``\\mathcal{CALLIGRAPHY}`` :mathmpl:`\\mathcal{CALLIGRAPHY}`\n ========================= ================================\n\n.. role:: math-stix(mathmpl)\n :fontset: stix\n\nWhen using the `STIX `_ fonts, you also have the\nchoice of:\n\n ================================ =========================================\n Command Result\n ================================ =========================================\n ``\\mathbb{blackboard}`` :math-stix:`\\mathbb{blackboard}`\n ``\\mathrm{\\mathbb{blackboard}}`` :math-stix:`\\mathrm{\\mathbb{blackboard}}`\n ``\\mathfrak{Fraktur}`` :math-stix:`\\mathfrak{Fraktur}`\n ``\\mathsf{sansserif}`` :math-stix:`\\mathsf{sansserif}`\n ``\\mathrm{\\mathsf{sansserif}}`` :math-stix:`\\mathrm{\\mathsf{sansserif}}`\n ================================ =========================================\n\nThere are also three global \"font sets\" to choose from, which are\nselected using the ``mathtext.fontset`` parameter in `matplotlibrc\n`.\n\n``cm``: **Computer Modern (TeX)**\n\n![](../../_static/cm_fontset.png)\n\n\n``stix``: **STIX** (designed to blend well with Times)\n\n![](../../_static/stix_fontset.png)\n\n\n``stixsans``: **STIX sans-serif**\n\n![](../../_static/stixsans_fontset.png)\n\n\nAdditionally, you can use ``\\mathdefault{...}`` or its alias\n``\\mathregular{...}`` to use the font used for regular text outside of\nmathtext. There are a number of limitations to this approach, most notably\nthat far fewer symbols will be available, but it can be useful to make math\nexpressions blend well with other text in the plot.\n\nCustom fonts\n~~~~~~~~~~~~\n\nmathtext also provides a way to use custom fonts for math. This method is\nfairly tricky to use, and should be considered an experimental feature for\npatient users only. By setting the rcParam ``mathtext.fontset`` to ``custom``,\nyou can then set the following parameters, which control which font file to use\nfor a particular set of math characters.\n\n ============================== =================================\n Parameter Corresponds to\n ============================== =================================\n ``mathtext.it`` ``\\mathit{}`` or default italic\n ``mathtext.rm`` ``\\mathrm{}`` Roman (upright)\n ``mathtext.tt`` ``\\mathtt{}`` Typewriter (monospace)\n ``mathtext.bf`` ``\\mathbf{}`` bold italic\n ``mathtext.cal`` ``\\mathcal{}`` calligraphic\n ``mathtext.sf`` ``\\mathsf{}`` sans-serif\n ============================== =================================\n\nEach parameter should be set to a fontconfig font descriptor (as defined in the\nyet-to-be-written font chapter).\n\n.. TODO: Link to font chapter\n\nThe fonts used should have a Unicode mapping in order to find any\nnon-Latin characters, such as Greek. If you want to use a math symbol\nthat is not contained in your custom fonts, you can set the rcParam\n``mathtext.fallback_to_cm`` to ``True`` which will cause the mathtext system\nto use characters from the default Computer Modern fonts whenever a particular\ncharacter can not be found in the custom font.\n\nNote that the math glyphs specified in Unicode have evolved over time, and many\nfonts may not have glyphs in the correct place for mathtext.\n\nAccents\n-------\n\nAn accent command may precede any symbol to add an accent above it. There are\nlong and short forms for some of them.\n\n ============================== =================================\n Command Result\n ============================== =================================\n ``\\acute a`` or ``\\'a`` :mathmpl:`\\acute a`\n ``\\bar a`` :mathmpl:`\\bar a`\n ``\\breve a`` :mathmpl:`\\breve a`\n ``\\ddot a`` or ``\\''a`` :mathmpl:`\\ddot a`\n ``\\dot a`` or ``\\.a`` :mathmpl:`\\dot a`\n ``\\grave a`` or ``\\`a`` :mathmpl:`\\grave a`\n ``\\hat a`` or ``\\^a`` :mathmpl:`\\hat a`\n ``\\tilde a`` or ``\\~a`` :mathmpl:`\\tilde a`\n ``\\vec a`` :mathmpl:`\\vec a`\n ``\\overline{abc}`` :mathmpl:`\\overline{abc}`\n ============================== =================================\n\nIn addition, there are two special accents that automatically adjust to the\nwidth of the symbols below:\n\n ============================== =================================\n Command Result\n ============================== =================================\n ``\\widehat{xyz}`` :mathmpl:`\\widehat{xyz}`\n ``\\widetilde{xyz}`` :mathmpl:`\\widetilde{xyz}`\n ============================== =================================\n\nCare should be taken when putting accents on lower-case i's and j's. Note that\nin the following ``\\imath`` is used to avoid the extra dot over the i::\n\n r\"$\\hat i\\ \\ \\hat \\imath$\"\n\n\\begin{align}\\hat i\\ \\ \\hat \\imath\\end{align}\n\nSymbols\n-------\n\nYou can also use a large number of the TeX symbols, as in ``\\infty``,\n``\\leftarrow``, ``\\sum``, ``\\int``.\n\n.. math_symbol_table::\n\nIf a particular symbol does not have a name (as is true of many of the more\nobscure symbols in the STIX fonts), Unicode characters can also be used::\n\n ur'$\\u23ce$'\n\nExample\n-------\n\nHere is an example illustrating many of these features in context.\n\n.. figure:: ../../gallery/pyplots/images/sphx_glr_pyplot_mathtext_001.png\n :target: ../../gallery/pyplots/pyplot_mathtext.html\n :align: center\n :scale: 50\n\n Pyplot Mathtext\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/447be9b773d0981a80bf5fefa8f7f90d/span_regions.ipynb b/_downloads/447be9b773d0981a80bf5fefa8f7f90d/span_regions.ipynb deleted file mode 120000 index 8e2f4cd8756..00000000000 --- a/_downloads/447be9b773d0981a80bf5fefa8f7f90d/span_regions.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/447be9b773d0981a80bf5fefa8f7f90d/span_regions.ipynb \ No newline at end of file diff --git a/_downloads/447d41876f945bc6ad2209a6fc527958/path_editor.ipynb b/_downloads/447d41876f945bc6ad2209a6fc527958/path_editor.ipynb deleted file mode 120000 index b5447fa692b..00000000000 --- a/_downloads/447d41876f945bc6ad2209a6fc527958/path_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/447d41876f945bc6ad2209a6fc527958/path_editor.ipynb \ No newline at end of file diff --git a/_downloads/448e1c03dc9e5de64f1901f64a7dec7a/inset_locator_demo2.py b/_downloads/448e1c03dc9e5de64f1901f64a7dec7a/inset_locator_demo2.py deleted file mode 100644 index 509413d3bf8..00000000000 --- a/_downloads/448e1c03dc9e5de64f1901f64a7dec7a/inset_locator_demo2.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -=================== -Inset Locator Demo2 -=================== - -This Demo shows how to create a zoomed inset via `~.zoomed_inset_axes`. -In the first subplot an `~.AnchoredSizeBar` shows the zoom effect. -In the second subplot a connection to the region of interest is -created via `~.mark_inset`. -""" - -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes, mark_inset -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar - -import numpy as np - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - import numpy as np - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - -fig, (ax, ax2) = plt.subplots(ncols=2, figsize=[6, 3]) - - -# First subplot, showing an inset with a size bar. -ax.set_aspect(1) - -axins = zoomed_inset_axes(ax, zoom=0.5, loc='upper right') -# fix the number of ticks on the inset axes -axins.yaxis.get_major_locator().set_params(nbins=7) -axins.xaxis.get_major_locator().set_params(nbins=7) - -plt.setp(axins.get_xticklabels(), visible=False) -plt.setp(axins.get_yticklabels(), visible=False) - - -def add_sizebar(ax, size): - asb = AnchoredSizeBar(ax.transData, - size, - str(size), - loc=8, - pad=0.1, borderpad=0.5, sep=5, - frameon=False) - ax.add_artist(asb) - -add_sizebar(ax, 0.5) -add_sizebar(axins, 0.5) - - -# Second subplot, showing an image with an inset zoom -# and a marked inset -Z, extent = get_demo_image() -Z2 = np.zeros([150, 150], dtype="d") -ny, nx = Z.shape -Z2[30:30 + ny, 30:30 + nx] = Z - -# extent = [-3, 4, -4, 3] -ax2.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") - - -axins2 = zoomed_inset_axes(ax2, 6, loc=1) # zoom = 6 -axins2.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") - -# sub region of the original image -x1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9 -axins2.set_xlim(x1, x2) -axins2.set_ylim(y1, y2) -# fix the number of ticks on the inset axes -axins2.yaxis.get_major_locator().set_params(nbins=7) -axins2.xaxis.get_major_locator().set_params(nbins=7) - -plt.setp(axins2.get_xticklabels(), visible=False) -plt.setp(axins2.get_yticklabels(), visible=False) - -# draw a bbox of the region of the inset axes in the parent axes and -# connecting lines between the bbox and the inset axes area -mark_inset(ax2, axins2, loc1=2, loc2=4, fc="none", ec="0.5") - -plt.show() diff --git a/_downloads/448eb00928e71d16f700eb2065cbc55d/annotation_basic.ipynb b/_downloads/448eb00928e71d16f700eb2065cbc55d/annotation_basic.ipynb deleted file mode 120000 index cfc9e8d4a98..00000000000 --- a/_downloads/448eb00928e71d16f700eb2065cbc55d/annotation_basic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/448eb00928e71d16f700eb2065cbc55d/annotation_basic.ipynb \ No newline at end of file diff --git a/_downloads/44a0fc2f6c8cf367804e1f3fbc29f111/scatter_hist_locatable_axes.ipynb b/_downloads/44a0fc2f6c8cf367804e1f3fbc29f111/scatter_hist_locatable_axes.ipynb deleted file mode 120000 index dc012724846..00000000000 --- a/_downloads/44a0fc2f6c8cf367804e1f3fbc29f111/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/44a0fc2f6c8cf367804e1f3fbc29f111/scatter_hist_locatable_axes.ipynb \ No newline at end of file diff --git a/_downloads/44a293a03323685e0b1836884224094c/image_thumbnail_sgskip.py b/_downloads/44a293a03323685e0b1836884224094c/image_thumbnail_sgskip.py deleted file mode 100644 index ae82e616743..00000000000 --- a/_downloads/44a293a03323685e0b1836884224094c/image_thumbnail_sgskip.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -=============== -Image Thumbnail -=============== - -You can use matplotlib to generate thumbnails from existing images. -matplotlib natively supports PNG files on the input side, and other -image types transparently if your have PIL installed - - -""" - -# build thumbnails of all images in a directory -import sys -import os -import glob -import matplotlib.image as image - - -if len(sys.argv) != 2: - print('Usage: python %s IMAGEDIR' % __file__) - raise SystemExit -indir = sys.argv[1] -if not os.path.isdir(indir): - print('Could not find input directory "%s"' % indir) - raise SystemExit - -outdir = 'thumbs' -if not os.path.exists(outdir): - os.makedirs(outdir) - -for fname in glob.glob(os.path.join(indir, '*.png')): - basedir, basename = os.path.split(fname) - outfile = os.path.join(outdir, basename) - fig = image.thumbnail(fname, outfile, scale=0.15) - print('saved thumbnail of %s to %s' % (fname, outfile)) diff --git a/_downloads/44b43d7fe71246e5ebdf6a6cbec1c7b6/contour_corner_mask.ipynb b/_downloads/44b43d7fe71246e5ebdf6a6cbec1c7b6/contour_corner_mask.ipynb deleted file mode 120000 index 82c308a71c8..00000000000 --- a/_downloads/44b43d7fe71246e5ebdf6a6cbec1c7b6/contour_corner_mask.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/44b43d7fe71246e5ebdf6a6cbec1c7b6/contour_corner_mask.ipynb \ No newline at end of file diff --git a/_downloads/44b4d813156757032aa248bb2d590cdb/xcorr_acorr_demo.py b/_downloads/44b4d813156757032aa248bb2d590cdb/xcorr_acorr_demo.py deleted file mode 120000 index 4574d674725..00000000000 --- a/_downloads/44b4d813156757032aa248bb2d590cdb/xcorr_acorr_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/44b4d813156757032aa248bb2d590cdb/xcorr_acorr_demo.py \ No newline at end of file diff --git a/_downloads/44c798b2055692b1eb7f1ee4bdddbe28/broken_axis.ipynb b/_downloads/44c798b2055692b1eb7f1ee4bdddbe28/broken_axis.ipynb deleted file mode 120000 index 7b4a912f8c8..00000000000 --- a/_downloads/44c798b2055692b1eb7f1ee4bdddbe28/broken_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/44c798b2055692b1eb7f1ee4bdddbe28/broken_axis.ipynb \ No newline at end of file diff --git a/_downloads/44ded8fc040e736bc97bd2a49490c1d7/demo_axis_direction.ipynb b/_downloads/44ded8fc040e736bc97bd2a49490c1d7/demo_axis_direction.ipynb deleted file mode 120000 index 425ce351a15..00000000000 --- a/_downloads/44ded8fc040e736bc97bd2a49490c1d7/demo_axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/44ded8fc040e736bc97bd2a49490c1d7/demo_axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/44eeab0ae80997a24100ab1af85c5ff9/axis_equal_demo.ipynb b/_downloads/44eeab0ae80997a24100ab1af85c5ff9/axis_equal_demo.ipynb deleted file mode 120000 index 7b4b9fc2d08..00000000000 --- a/_downloads/44eeab0ae80997a24100ab1af85c5ff9/axis_equal_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/44eeab0ae80997a24100ab1af85c5ff9/axis_equal_demo.ipynb \ No newline at end of file diff --git a/_downloads/44f467527c5815829a65a1fef470ca1e/hyperlinks_sgskip.py b/_downloads/44f467527c5815829a65a1fef470ca1e/hyperlinks_sgskip.py deleted file mode 100644 index 5298d45cdc0..00000000000 --- a/_downloads/44f467527c5815829a65a1fef470ca1e/hyperlinks_sgskip.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -========== -Hyperlinks -========== - -This example demonstrates how to set a hyperlinks on various kinds of elements. - -This currently only works with the SVG backend. - -""" - - -import numpy as np -import matplotlib.cm as cm -import matplotlib.pyplot as plt - -############################################################################### - -f = plt.figure() -s = plt.scatter([1, 2, 3], [4, 5, 6]) -s.set_urls(['http://www.bbc.co.uk/news', 'http://www.google.com', None]) -f.savefig('scatter.svg') - -############################################################################### - -f = plt.figure() -delta = 0.025 -x = y = np.arange(-3.0, 3.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -im = plt.imshow(Z, interpolation='bilinear', cmap=cm.gray, - origin='lower', extent=[-3, 3, -3, 3]) - -im.set_url('http://www.google.com') -f.savefig('image.svg') diff --git a/_downloads/45023aa2991e700d0141dc8840482202/3d_bars.py b/_downloads/45023aa2991e700d0141dc8840482202/3d_bars.py deleted file mode 120000 index dd675ac8d49..00000000000 --- a/_downloads/45023aa2991e700d0141dc8840482202/3d_bars.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/45023aa2991e700d0141dc8840482202/3d_bars.py \ No newline at end of file diff --git a/_downloads/4512f499e3f58b99dffa6e9eafe9072b/pylab_with_gtk4_sgskip.py b/_downloads/4512f499e3f58b99dffa6e9eafe9072b/pylab_with_gtk4_sgskip.py deleted file mode 120000 index 4a1749276c3..00000000000 --- a/_downloads/4512f499e3f58b99dffa6e9eafe9072b/pylab_with_gtk4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4512f499e3f58b99dffa6e9eafe9072b/pylab_with_gtk4_sgskip.py \ No newline at end of file diff --git a/_downloads/451d873d6d5f6b859f7bed817f172ca2/demo_colorbar_with_axes_divider.ipynb b/_downloads/451d873d6d5f6b859f7bed817f172ca2/demo_colorbar_with_axes_divider.ipynb deleted file mode 120000 index c7221fa9a6b..00000000000 --- a/_downloads/451d873d6d5f6b859f7bed817f172ca2/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/451d873d6d5f6b859f7bed817f172ca2/demo_colorbar_with_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/4522d14693e064dc044e52b856237593/gallery_python.zip b/_downloads/4522d14693e064dc044e52b856237593/gallery_python.zip deleted file mode 120000 index 401beddd091..00000000000 --- a/_downloads/4522d14693e064dc044e52b856237593/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.2/_downloads/4522d14693e064dc044e52b856237593/gallery_python.zip \ No newline at end of file diff --git a/_downloads/454ce1fa62c4d1bdc3ca8c5ae903545f/tricontour_smooth_user.py b/_downloads/454ce1fa62c4d1bdc3ca8c5ae903545f/tricontour_smooth_user.py deleted file mode 120000 index 1ea262f6930..00000000000 --- a/_downloads/454ce1fa62c4d1bdc3ca8c5ae903545f/tricontour_smooth_user.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/454ce1fa62c4d1bdc3ca8c5ae903545f/tricontour_smooth_user.py \ No newline at end of file diff --git a/_downloads/454d14286bc8bd693ac8001a86d96cf6/line_with_text.ipynb b/_downloads/454d14286bc8bd693ac8001a86d96cf6/line_with_text.ipynb deleted file mode 120000 index a39dd551fbe..00000000000 --- a/_downloads/454d14286bc8bd693ac8001a86d96cf6/line_with_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/454d14286bc8bd693ac8001a86d96cf6/line_with_text.ipynb \ No newline at end of file diff --git a/_downloads/45532a10c3f101c924a1db66b3c6b8b5/mri_with_eeg.ipynb b/_downloads/45532a10c3f101c924a1db66b3c6b8b5/mri_with_eeg.ipynb deleted file mode 120000 index c0eccb7849f..00000000000 --- a/_downloads/45532a10c3f101c924a1db66b3c6b8b5/mri_with_eeg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/45532a10c3f101c924a1db66b3c6b8b5/mri_with_eeg.ipynb \ No newline at end of file diff --git a/_downloads/4554c5bbed3ec2fe1780260a0b547bd4/fill_between_alpha.ipynb b/_downloads/4554c5bbed3ec2fe1780260a0b547bd4/fill_between_alpha.ipynb deleted file mode 120000 index 60dfe0f5002..00000000000 --- a/_downloads/4554c5bbed3ec2fe1780260a0b547bd4/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4554c5bbed3ec2fe1780260a0b547bd4/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/45593ce93c8587c5037eb8592192fa4d/color_cycle_default.ipynb b/_downloads/45593ce93c8587c5037eb8592192fa4d/color_cycle_default.ipynb deleted file mode 120000 index 9518cf1c9ce..00000000000 --- a/_downloads/45593ce93c8587c5037eb8592192fa4d/color_cycle_default.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/45593ce93c8587c5037eb8592192fa4d/color_cycle_default.ipynb \ No newline at end of file diff --git a/_downloads/455c7369df685db431cee2fd16862fdd/image_masked.py b/_downloads/455c7369df685db431cee2fd16862fdd/image_masked.py deleted file mode 120000 index 160d325df8e..00000000000 --- a/_downloads/455c7369df685db431cee2fd16862fdd/image_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/455c7369df685db431cee2fd16862fdd/image_masked.py \ No newline at end of file diff --git a/_downloads/4563c649b43ae4710f669f2bc8647e5d/gridspec_nested.ipynb b/_downloads/4563c649b43ae4710f669f2bc8647e5d/gridspec_nested.ipynb deleted file mode 100644 index b419aa1096c..00000000000 --- a/_downloads/4563c649b43ae4710f669f2bc8647e5d/gridspec_nested.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nested Gridspecs\n\n\nGridSpecs can be nested, so that a subplot from a parent GridSpec can\nset the position for a nested grid of subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\n\n\ndef format_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\n\n# gridspec inside gridspec\nf = plt.figure()\n\ngs0 = gridspec.GridSpec(1, 2, figure=f)\n\ngs00 = gridspec.GridSpecFromSubplotSpec(3, 3, subplot_spec=gs0[0])\n\nax1 = f.add_subplot(gs00[:-1, :])\nax2 = f.add_subplot(gs00[-1, :-1])\nax3 = f.add_subplot(gs00[-1, -1])\n\n# the following syntax does the same as the GridSpecFromSubplotSpec call above:\ngs01 = gs0[1].subgridspec(3, 3)\n\nax4 = f.add_subplot(gs01[:, :-1])\nax5 = f.add_subplot(gs01[:-1, -1])\nax6 = f.add_subplot(gs01[-1, -1])\n\nplt.suptitle(\"GridSpec Inside GridSpec\")\nformat_axes(f)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4571116b7585539cf69ce27b278958df/poly_editor.py b/_downloads/4571116b7585539cf69ce27b278958df/poly_editor.py deleted file mode 100644 index 1afa89bffd1..00000000000 --- a/_downloads/4571116b7585539cf69ce27b278958df/poly_editor.py +++ /dev/null @@ -1,209 +0,0 @@ -""" -=========== -Poly Editor -=========== - -This is an example to show how to build cross-GUI applications using -Matplotlib event handling to interact with objects on the canvas. -""" -import numpy as np -from matplotlib.lines import Line2D -from matplotlib.artist import Artist - - -def dist(x, y): - """ - Return the distance between two points. - """ - d = x - y - return np.sqrt(np.dot(d, d)) - - -def dist_point_to_segment(p, s0, s1): - """ - Get the distance of a point to a segment. - *p*, *s0*, *s1* are *xy* sequences - This algorithm from - http://geomalgorithms.com/a02-_lines.html - """ - v = s1 - s0 - w = p - s0 - c1 = np.dot(w, v) - if c1 <= 0: - return dist(p, s0) - c2 = np.dot(v, v) - if c2 <= c1: - return dist(p, s1) - b = c1 / c2 - pb = s0 + b * v - return dist(p, pb) - - -class PolygonInteractor(object): - """ - A polygon editor. - - Key-bindings - - 't' toggle vertex markers on and off. When vertex markers are on, - you can move them, delete them - - 'd' delete the vertex under point - - 'i' insert a vertex at point. You must be within epsilon of the - line connecting two existing vertices - - """ - - showverts = True - epsilon = 5 # max pixel distance to count as a vertex hit - - def __init__(self, ax, poly): - if poly.figure is None: - raise RuntimeError('You must first add the polygon to a figure ' - 'or canvas before defining the interactor') - self.ax = ax - canvas = poly.figure.canvas - self.poly = poly - - x, y = zip(*self.poly.xy) - self.line = Line2D(x, y, - marker='o', markerfacecolor='r', - animated=True) - self.ax.add_line(self.line) - - self.cid = self.poly.add_callback(self.poly_changed) - self._ind = None # the active vert - - canvas.mpl_connect('draw_event', self.draw_callback) - canvas.mpl_connect('button_press_event', self.button_press_callback) - canvas.mpl_connect('key_press_event', self.key_press_callback) - canvas.mpl_connect('button_release_event', self.button_release_callback) - canvas.mpl_connect('motion_notify_event', self.motion_notify_callback) - self.canvas = canvas - - def draw_callback(self, event): - self.background = self.canvas.copy_from_bbox(self.ax.bbox) - self.ax.draw_artist(self.poly) - self.ax.draw_artist(self.line) - # do not need to blit here, this will fire before the screen is - # updated - - def poly_changed(self, poly): - 'this method is called whenever the polygon object is called' - # only copy the artist props to the line (except visibility) - vis = self.line.get_visible() - Artist.update_from(self.line, poly) - self.line.set_visible(vis) # don't use the poly visibility state - - def get_ind_under_point(self, event): - 'get the index of the vertex under point if within epsilon tolerance' - - # display coords - xy = np.asarray(self.poly.xy) - xyt = self.poly.get_transform().transform(xy) - xt, yt = xyt[:, 0], xyt[:, 1] - d = np.hypot(xt - event.x, yt - event.y) - indseq, = np.nonzero(d == d.min()) - ind = indseq[0] - - if d[ind] >= self.epsilon: - ind = None - - return ind - - def button_press_callback(self, event): - 'whenever a mouse button is pressed' - if not self.showverts: - return - if event.inaxes is None: - return - if event.button != 1: - return - self._ind = self.get_ind_under_point(event) - - def button_release_callback(self, event): - 'whenever a mouse button is released' - if not self.showverts: - return - if event.button != 1: - return - self._ind = None - - def key_press_callback(self, event): - 'whenever a key is pressed' - if not event.inaxes: - return - if event.key == 't': - self.showverts = not self.showverts - self.line.set_visible(self.showverts) - if not self.showverts: - self._ind = None - elif event.key == 'd': - ind = self.get_ind_under_point(event) - if ind is not None: - self.poly.xy = np.delete(self.poly.xy, - ind, axis=0) - self.line.set_data(zip(*self.poly.xy)) - elif event.key == 'i': - xys = self.poly.get_transform().transform(self.poly.xy) - p = event.x, event.y # display coords - for i in range(len(xys) - 1): - s0 = xys[i] - s1 = xys[i + 1] - d = dist_point_to_segment(p, s0, s1) - if d <= self.epsilon: - self.poly.xy = np.insert( - self.poly.xy, i+1, - [event.xdata, event.ydata], - axis=0) - self.line.set_data(zip(*self.poly.xy)) - break - if self.line.stale: - self.canvas.draw_idle() - - def motion_notify_callback(self, event): - 'on mouse movement' - if not self.showverts: - return - if self._ind is None: - return - if event.inaxes is None: - return - if event.button != 1: - return - x, y = event.xdata, event.ydata - - self.poly.xy[self._ind] = x, y - if self._ind == 0: - self.poly.xy[-1] = x, y - elif self._ind == len(self.poly.xy) - 1: - self.poly.xy[0] = x, y - self.line.set_data(zip(*self.poly.xy)) - - self.canvas.restore_region(self.background) - self.ax.draw_artist(self.poly) - self.ax.draw_artist(self.line) - self.canvas.blit(self.ax.bbox) - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - from matplotlib.patches import Polygon - - theta = np.arange(0, 2*np.pi, 0.1) - r = 1.5 - - xs = r * np.cos(theta) - ys = r * np.sin(theta) - - poly = Polygon(np.column_stack([xs, ys]), animated=True) - - fig, ax = plt.subplots() - ax.add_patch(poly) - p = PolygonInteractor(ax, poly) - - ax.set_title('Click and drag a point to move it') - ax.set_xlim((-2, 2)) - ax.set_ylim((-2, 2)) - plt.show() diff --git a/_downloads/45745f544706844b708df699164d522f/boxplot.py b/_downloads/45745f544706844b708df699164d522f/boxplot.py deleted file mode 120000 index a2b00d52962..00000000000 --- a/_downloads/45745f544706844b708df699164d522f/boxplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/45745f544706844b708df699164d522f/boxplot.py \ No newline at end of file diff --git a/_downloads/4575f87435ac672a3201e9e8c61f865d/watermark_text.py b/_downloads/4575f87435ac672a3201e9e8c61f865d/watermark_text.py deleted file mode 120000 index 4753f2131f0..00000000000 --- a/_downloads/4575f87435ac672a3201e9e8c61f865d/watermark_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4575f87435ac672a3201e9e8c61f865d/watermark_text.py \ No newline at end of file diff --git a/_downloads/4577748b689d7d25511be22043dee202/annotation_basic.py b/_downloads/4577748b689d7d25511be22043dee202/annotation_basic.py deleted file mode 120000 index 5bfcaa05067..00000000000 --- a/_downloads/4577748b689d7d25511be22043dee202/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4577748b689d7d25511be22043dee202/annotation_basic.py \ No newline at end of file diff --git a/_downloads/457bd35dc695db800c4892b1de26c82c/font_file.py b/_downloads/457bd35dc695db800c4892b1de26c82c/font_file.py deleted file mode 120000 index f65a7897115..00000000000 --- a/_downloads/457bd35dc695db800c4892b1de26c82c/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/457bd35dc695db800c4892b1de26c82c/font_file.py \ No newline at end of file diff --git a/_downloads/4584554a1841fd853f5f32226119becf/simple_axes_divider2.py b/_downloads/4584554a1841fd853f5f32226119becf/simple_axes_divider2.py deleted file mode 120000 index d608b377b85..00000000000 --- a/_downloads/4584554a1841fd853f5f32226119becf/simple_axes_divider2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4584554a1841fd853f5f32226119becf/simple_axes_divider2.py \ No newline at end of file diff --git a/_downloads/4587f1a2e56f392c21fab37bab4c7254/multi_image.ipynb b/_downloads/4587f1a2e56f392c21fab37bab4c7254/multi_image.ipynb deleted file mode 120000 index da241f5ef75..00000000000 --- a/_downloads/4587f1a2e56f392c21fab37bab4c7254/multi_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4587f1a2e56f392c21fab37bab4c7254/multi_image.ipynb \ No newline at end of file diff --git a/_downloads/459c619619003b4d14430ee01f172db8/accented_text.ipynb b/_downloads/459c619619003b4d14430ee01f172db8/accented_text.ipynb deleted file mode 120000 index cd91fd1fe31..00000000000 --- a/_downloads/459c619619003b4d14430ee01f172db8/accented_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/459c619619003b4d14430ee01f172db8/accented_text.ipynb \ No newline at end of file diff --git a/_downloads/45a9e02bf0708c05128c8c6b3f8e10ea/rectangle_selector.ipynb b/_downloads/45a9e02bf0708c05128c8c6b3f8e10ea/rectangle_selector.ipynb deleted file mode 120000 index 0ade5689ee8..00000000000 --- a/_downloads/45a9e02bf0708c05128c8c6b3f8e10ea/rectangle_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/45a9e02bf0708c05128c8c6b3f8e10ea/rectangle_selector.ipynb \ No newline at end of file diff --git a/_downloads/45b98bc21c178254369ac7914adbb880/coords_report.ipynb b/_downloads/45b98bc21c178254369ac7914adbb880/coords_report.ipynb deleted file mode 120000 index 0b3b1f3b7ba..00000000000 --- a/_downloads/45b98bc21c178254369ac7914adbb880/coords_report.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/45b98bc21c178254369ac7914adbb880/coords_report.ipynb \ No newline at end of file diff --git a/_downloads/45bbd8dd53de469a98ce6cf5204df870/surface3d_radial.py b/_downloads/45bbd8dd53de469a98ce6cf5204df870/surface3d_radial.py deleted file mode 120000 index ad0b846f64a..00000000000 --- a/_downloads/45bbd8dd53de469a98ce6cf5204df870/surface3d_radial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/45bbd8dd53de469a98ce6cf5204df870/surface3d_radial.py \ No newline at end of file diff --git a/_downloads/45d5685f3e8405991417776a213850fc/multicolored_line.ipynb b/_downloads/45d5685f3e8405991417776a213850fc/multicolored_line.ipynb deleted file mode 120000 index 116fcc2c7e0..00000000000 --- a/_downloads/45d5685f3e8405991417776a213850fc/multicolored_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/45d5685f3e8405991417776a213850fc/multicolored_line.ipynb \ No newline at end of file diff --git a/_downloads/45e04a5b550b09117a6f8defb94080af/specgram_demo.py b/_downloads/45e04a5b550b09117a6f8defb94080af/specgram_demo.py deleted file mode 100644 index 514d27af877..00000000000 --- a/_downloads/45e04a5b550b09117a6f8defb94080af/specgram_demo.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -================ -Spectrogram Demo -================ - -Demo of a spectrogram plot (`~.axes.Axes.specgram`). -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -dt = 0.0005 -t = np.arange(0.0, 20.0, dt) -s1 = np.sin(2 * np.pi * 100 * t) -s2 = 2 * np.sin(2 * np.pi * 400 * t) - -# create a transient "chirp" -s2[t <= 10] = s2[12 <= t] = 0 - -# add some noise into the mix -nse = 0.01 * np.random.random(size=len(t)) - -x = s1 + s2 + nse # the signal -NFFT = 1024 # the length of the windowing segments -Fs = int(1.0 / dt) # the sampling frequency - -fig, (ax1, ax2) = plt.subplots(nrows=2) -ax1.plot(t, x) -Pxx, freqs, bins, im = ax2.specgram(x, NFFT=NFFT, Fs=Fs, noverlap=900) -# The `specgram` method returns 4 objects. They are: -# - Pxx: the periodogram -# - freqs: the frequency vector -# - bins: the centers of the time bins -# - im: the matplotlib.image.AxesImage instance representing the data in the plot -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.specgram -matplotlib.pyplot.specgram diff --git a/_downloads/45e396b4f44e76ae3db0f41b049709a9/simple_plot.py b/_downloads/45e396b4f44e76ae3db0f41b049709a9/simple_plot.py deleted file mode 100644 index f51e16015b2..00000000000 --- a/_downloads/45e396b4f44e76ae3db0f41b049709a9/simple_plot.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -=========== -Simple Plot -=========== - -Create a simple plot. -""" - -import matplotlib -import matplotlib.pyplot as plt -import numpy as np - -# Data for plotting -t = np.arange(0.0, 2.0, 0.01) -s = 1 + np.sin(2 * np.pi * t) - -fig, ax = plt.subplots() -ax.plot(t, s) - -ax.set(xlabel='time (s)', ylabel='voltage (mV)', - title='About as simple as it gets, folks') -ax.grid() - -fig.savefig("test.png") -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.pyplot.subplots -matplotlib.figure.Figure.savefig diff --git a/_downloads/45e90b34943791fa38fef928a780af3f/ftface_props.py b/_downloads/45e90b34943791fa38fef928a780af3f/ftface_props.py deleted file mode 100644 index 2458addcbca..00000000000 --- a/_downloads/45e90b34943791fa38fef928a780af3f/ftface_props.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -=============== -Font properties -=============== - -This example lists the attributes of an `FT2Font` object, which describe global -font properties. For individual character metrics, use the `Glyph` object, as -returned by `load_char`. -""" - -import os - -import matplotlib -import matplotlib.ft2font as ft - - -font = ft.FT2Font( - # Use a font shipped with Matplotlib. - os.path.join(matplotlib.get_data_path(), - 'fonts/ttf/DejaVuSans-Oblique.ttf')) - -print('Num faces :', font.num_faces) # number of faces in file -print('Num glyphs :', font.num_glyphs) # number of glyphs in the face -print('Family name :', font.family_name) # face family name -print('Style name :', font.style_name) # face style name -print('PS name :', font.postscript_name) # the postscript name -print('Num fixed :', font.num_fixed_sizes) # number of embedded bitmap in face - -# the following are only available if face.scalable -if font.scalable: - # the face global bounding box (xmin, ymin, xmax, ymax) - print('Bbox :', font.bbox) - # number of font units covered by the EM - print('EM :', font.units_per_EM) - # the ascender in 26.6 units - print('Ascender :', font.ascender) - # the descender in 26.6 units - print('Descender :', font.descender) - # the height in 26.6 units - print('Height :', font.height) - # maximum horizontal cursor advance - print('Max adv width :', font.max_advance_width) - # same for vertical layout - print('Max adv height :', font.max_advance_height) - # vertical position of the underline bar - print('Underline pos :', font.underline_position) - # vertical thickness of the underline - print('Underline thickness :', font.underline_thickness) - -for style in ('Italic', - 'Bold', - 'Scalable', - 'Fixed sizes', - 'Fixed width', - 'SFNT', - 'Horizontal', - 'Vertical', - 'Kerning', - 'Fast glyphs', - 'Multiple masters', - 'Glyph names', - 'External stream'): - bitpos = getattr(ft, style.replace(' ', '_').upper()) - 1 - print('%-17s:' % style, bool(font.style_flags & (1 << bitpos))) diff --git a/_downloads/45eae72de56e3e8045cfdc8053ace82e/horizontal_barchart_distribution.ipynb b/_downloads/45eae72de56e3e8045cfdc8053ace82e/horizontal_barchart_distribution.ipynb deleted file mode 120000 index 71d53b1fd46..00000000000 --- a/_downloads/45eae72de56e3e8045cfdc8053ace82e/horizontal_barchart_distribution.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/45eae72de56e3e8045cfdc8053ace82e/horizontal_barchart_distribution.ipynb \ No newline at end of file diff --git a/_downloads/45f57aa7817edc1f18d484f1903708e0/quiver3d.ipynb b/_downloads/45f57aa7817edc1f18d484f1903708e0/quiver3d.ipynb deleted file mode 120000 index 691b9c6f807..00000000000 --- a/_downloads/45f57aa7817edc1f18d484f1903708e0/quiver3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/45f57aa7817edc1f18d484f1903708e0/quiver3d.ipynb \ No newline at end of file diff --git a/_downloads/45feffe97f063d7b697ba1778423dc6a/trisurf3d_2.ipynb b/_downloads/45feffe97f063d7b697ba1778423dc6a/trisurf3d_2.ipynb deleted file mode 100644 index 43ff188a3e2..00000000000 --- a/_downloads/45feffe97f063d7b697ba1778423dc6a/trisurf3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# More triangular 3D surfaces\n\n\nTwo additional examples of plotting surfaces with triangular mesh.\n\nThe first demonstrates use of plot_trisurf's triangles argument, and the\nsecond sets a Triangulation object's mask and passes the object directly\nto plot_trisurf.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.tri as mtri\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\nfig = plt.figure(figsize=plt.figaspect(0.5))\n\n#============\n# First plot\n#============\n\n# Make a mesh in the space of parameterisation variables u and v\nu = np.linspace(0, 2.0 * np.pi, endpoint=True, num=50)\nv = np.linspace(-0.5, 0.5, endpoint=True, num=10)\nu, v = np.meshgrid(u, v)\nu, v = u.flatten(), v.flatten()\n\n# This is the Mobius mapping, taking a u, v pair and returning an x, y, z\n# triple\nx = (1 + 0.5 * v * np.cos(u / 2.0)) * np.cos(u)\ny = (1 + 0.5 * v * np.cos(u / 2.0)) * np.sin(u)\nz = 0.5 * v * np.sin(u / 2.0)\n\n# Triangulate parameter space to determine the triangles\ntri = mtri.Triangulation(u, v)\n\n# Plot the surface. The triangles in parameter space determine which x, y, z\n# points are connected by an edge.\nax = fig.add_subplot(1, 2, 1, projection='3d')\nax.plot_trisurf(x, y, z, triangles=tri.triangles, cmap=plt.cm.Spectral)\nax.set_zlim(-1, 1)\n\n\n#============\n# Second plot\n#============\n\n# Make parameter spaces radii and angles.\nn_angles = 36\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi/n_angles\n\n# Map radius, angle pairs to x, y, z points.\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nz = (np.cos(radii)*np.cos(3*angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = mtri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\nxmid = x[triang.triangles].mean(axis=1)\nymid = y[triang.triangles].mean(axis=1)\nmask = xmid**2 + ymid**2 < min_radius**2\ntriang.set_mask(mask)\n\n# Plot the surface.\nax = fig.add_subplot(1, 2, 2, projection='3d')\nax.plot_trisurf(triang, z, cmap=plt.cm.CMRmap)\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/460a053c8edfe9dc45874e4665795095/pgf_fonts.py b/_downloads/460a053c8edfe9dc45874e4665795095/pgf_fonts.py deleted file mode 100644 index 463d5c7e688..00000000000 --- a/_downloads/460a053c8edfe9dc45874e4665795095/pgf_fonts.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -========= -Pgf Fonts -========= - -""" - -import matplotlib.pyplot as plt -plt.rcParams.update({ - "font.family": "serif", - "font.serif": [], # use latex default serif font - "font.sans-serif": ["DejaVu Sans"], # use a specific sans-serif font -}) - -plt.figure(figsize=(4.5, 2.5)) -plt.plot(range(5)) -plt.text(0.5, 3., "serif") -plt.text(0.5, 2., "monospace", family="monospace") -plt.text(2.5, 2., "sans-serif", family="sans-serif") -plt.text(2.5, 1., "comic sans", family="Comic Sans MS") -plt.xlabel("µ is not $\\mu$") -plt.tight_layout(.5) - -plt.savefig("pgf_fonts.pdf") -plt.savefig("pgf_fonts.png") diff --git a/_downloads/460d3c22cab2bc253d8f5cbf0eb5d90c/annotation_basic.ipynb b/_downloads/460d3c22cab2bc253d8f5cbf0eb5d90c/annotation_basic.ipynb deleted file mode 120000 index 6bcf13a9ee8..00000000000 --- a/_downloads/460d3c22cab2bc253d8f5cbf0eb5d90c/annotation_basic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/460d3c22cab2bc253d8f5cbf0eb5d90c/annotation_basic.ipynb \ No newline at end of file diff --git a/_downloads/461924ed7e02e56e324fe57a10c58531/bmh.py b/_downloads/461924ed7e02e56e324fe57a10c58531/bmh.py deleted file mode 120000 index ee6aced2b34..00000000000 --- a/_downloads/461924ed7e02e56e324fe57a10c58531/bmh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/461924ed7e02e56e324fe57a10c58531/bmh.py \ No newline at end of file diff --git a/_downloads/46329e65791c39b8e23647f7cc27b013/inset_locator_demo2.py b/_downloads/46329e65791c39b8e23647f7cc27b013/inset_locator_demo2.py deleted file mode 120000 index 59ffb665c83..00000000000 --- a/_downloads/46329e65791c39b8e23647f7cc27b013/inset_locator_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/46329e65791c39b8e23647f7cc27b013/inset_locator_demo2.py \ No newline at end of file diff --git a/_downloads/4639c390333b84440ec779fe5753a134/multiprocess_sgskip.py b/_downloads/4639c390333b84440ec779fe5753a134/multiprocess_sgskip.py deleted file mode 120000 index 8d7697dd9f6..00000000000 --- a/_downloads/4639c390333b84440ec779fe5753a134/multiprocess_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4639c390333b84440ec779fe5753a134/multiprocess_sgskip.py \ No newline at end of file diff --git a/_downloads/4647c814f0aadd22bba5591a99d4abf7/wire3d.py b/_downloads/4647c814f0aadd22bba5591a99d4abf7/wire3d.py deleted file mode 100644 index cd91cc57ac2..00000000000 --- a/_downloads/4647c814f0aadd22bba5591a99d4abf7/wire3d.py +++ /dev/null @@ -1,22 +0,0 @@ -''' -================= -3D wireframe plot -================= - -A very basic demonstration of a wireframe plot. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Grab some test data. -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot a basic wireframe. -ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) - -plt.show() diff --git a/_downloads/4648dfe27c9add30bead2973e13618c8/filled_step.ipynb b/_downloads/4648dfe27c9add30bead2973e13618c8/filled_step.ipynb deleted file mode 120000 index 7a7f72ab667..00000000000 --- a/_downloads/4648dfe27c9add30bead2973e13618c8/filled_step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4648dfe27c9add30bead2973e13618c8/filled_step.ipynb \ No newline at end of file diff --git a/_downloads/464ce6bb26602ef30d78c4419a3cd7f3/contour_label_demo.py b/_downloads/464ce6bb26602ef30d78c4419a3cd7f3/contour_label_demo.py deleted file mode 120000 index 32b6202c5e9..00000000000 --- a/_downloads/464ce6bb26602ef30d78c4419a3cd7f3/contour_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/464ce6bb26602ef30d78c4419a3cd7f3/contour_label_demo.py \ No newline at end of file diff --git a/_downloads/46502e114b0ff639879aac452edcc1c3/hinton_demo.ipynb b/_downloads/46502e114b0ff639879aac452edcc1c3/hinton_demo.ipynb deleted file mode 120000 index 60e21b92aae..00000000000 --- a/_downloads/46502e114b0ff639879aac452edcc1c3/hinton_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/46502e114b0ff639879aac452edcc1c3/hinton_demo.ipynb \ No newline at end of file diff --git a/_downloads/465dd518dfe377e7fde90b662918f44e/multiple_yaxis_with_spines.py b/_downloads/465dd518dfe377e7fde90b662918f44e/multiple_yaxis_with_spines.py deleted file mode 120000 index 465a1783a70..00000000000 --- a/_downloads/465dd518dfe377e7fde90b662918f44e/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/465dd518dfe377e7fde90b662918f44e/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/4660b5a8d152dadc6f8c72f7ae24401d/csd_demo.ipynb b/_downloads/4660b5a8d152dadc6f8c72f7ae24401d/csd_demo.ipynb deleted file mode 120000 index 87350960355..00000000000 --- a/_downloads/4660b5a8d152dadc6f8c72f7ae24401d/csd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4660b5a8d152dadc6f8c72f7ae24401d/csd_demo.ipynb \ No newline at end of file diff --git a/_downloads/46683a9a4c20c7c168928a0f496bc883/create_subplots.ipynb b/_downloads/46683a9a4c20c7c168928a0f496bc883/create_subplots.ipynb deleted file mode 120000 index 4f2ad3af8c9..00000000000 --- a/_downloads/46683a9a4c20c7c168928a0f496bc883/create_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/46683a9a4c20c7c168928a0f496bc883/create_subplots.ipynb \ No newline at end of file diff --git a/_downloads/4668cbe3c21041752e7cd6dab7581ffc/usetex_demo.py b/_downloads/4668cbe3c21041752e7cd6dab7581ffc/usetex_demo.py deleted file mode 120000 index 16a73511234..00000000000 --- a/_downloads/4668cbe3c21041752e7cd6dab7581ffc/usetex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4668cbe3c21041752e7cd6dab7581ffc/usetex_demo.py \ No newline at end of file diff --git a/_downloads/466e380ccfce94dd15b3e10cd2cac02d/usage.ipynb b/_downloads/466e380ccfce94dd15b3e10cd2cac02d/usage.ipynb deleted file mode 120000 index b6a888ab976..00000000000 --- a/_downloads/466e380ccfce94dd15b3e10cd2cac02d/usage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/466e380ccfce94dd15b3e10cd2cac02d/usage.ipynb \ No newline at end of file diff --git a/_downloads/467356135d376ad3389217388af44bf5/wire3d.py b/_downloads/467356135d376ad3389217388af44bf5/wire3d.py deleted file mode 120000 index 861fd06cb77..00000000000 --- a/_downloads/467356135d376ad3389217388af44bf5/wire3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/467356135d376ad3389217388af44bf5/wire3d.py \ No newline at end of file diff --git a/_downloads/467b7e1527328b7ffcbe0eef64888e1c/embedding_in_gtk4_panzoom_sgskip.ipynb b/_downloads/467b7e1527328b7ffcbe0eef64888e1c/embedding_in_gtk4_panzoom_sgskip.ipynb deleted file mode 120000 index 7bb7afcca7b..00000000000 --- a/_downloads/467b7e1527328b7ffcbe0eef64888e1c/embedding_in_gtk4_panzoom_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/467b7e1527328b7ffcbe0eef64888e1c/embedding_in_gtk4_panzoom_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/468271b27d3e686f08b0ec06f8327ef9/dfrac_demo.py b/_downloads/468271b27d3e686f08b0ec06f8327ef9/dfrac_demo.py deleted file mode 120000 index 0062fe0fc52..00000000000 --- a/_downloads/468271b27d3e686f08b0ec06f8327ef9/dfrac_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/468271b27d3e686f08b0ec06f8327ef9/dfrac_demo.py \ No newline at end of file diff --git a/_downloads/4684872591dd1516188d4f6263b43623/demo_axes_grid.py b/_downloads/4684872591dd1516188d4f6263b43623/demo_axes_grid.py deleted file mode 120000 index 5fa53507d06..00000000000 --- a/_downloads/4684872591dd1516188d4f6263b43623/demo_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4684872591dd1516188d4f6263b43623/demo_axes_grid.py \ No newline at end of file diff --git a/_downloads/468eca611c939adcb268a57e13688450/firefox.ipynb b/_downloads/468eca611c939adcb268a57e13688450/firefox.ipynb deleted file mode 100644 index 157ab4fb757..00000000000 --- a/_downloads/468eca611c939adcb268a57e13688450/firefox.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Firefox\n\n\nThis example shows how to create the Firefox logo with path and patches.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import re\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.path import Path\nimport matplotlib.patches as patches\n\n# From: http://raphaeljs.com/icons/#firefox\nfirefox = \"M28.4,22.469c0.479-0.964,0.851-1.991,1.095-3.066c0.953-3.661,0.666-6.854,0.666-6.854l-0.327,2.104c0,0-0.469-3.896-1.044-5.353c-0.881-2.231-1.273-2.214-1.274-2.21c0.542,1.379,0.494,2.169,0.483,2.288c-0.01-0.016-0.019-0.032-0.027-0.047c-0.131-0.324-0.797-1.819-2.225-2.878c-2.502-2.481-5.943-4.014-9.745-4.015c-4.056,0-7.705,1.745-10.238,4.525C5.444,6.5,5.183,5.938,5.159,5.317c0,0-0.002,0.002-0.006,0.005c0-0.011-0.003-0.021-0.003-0.031c0,0-1.61,1.247-1.436,4.612c-0.299,0.574-0.56,1.172-0.777,1.791c-0.375,0.817-0.75,2.004-1.059,3.746c0,0,0.133-0.422,0.399-0.988c-0.064,0.482-0.103,0.971-0.116,1.467c-0.09,0.845-0.118,1.865-0.039,3.088c0,0,0.032-0.406,0.136-1.021c0.834,6.854,6.667,12.165,13.743,12.165l0,0c1.86,0,3.636-0.37,5.256-1.036C24.938,27.771,27.116,25.196,28.4,22.469zM16.002,3.356c2.446,0,4.73,0.68,6.68,1.86c-2.274-0.528-3.433-0.261-3.423-0.248c0.013,0.015,3.384,0.589,3.981,1.411c0,0-1.431,0-2.856,0.41c-0.065,0.019,5.242,0.663,6.327,5.966c0,0-0.582-1.213-1.301-1.42c0.473,1.439,0.351,4.17-0.1,5.528c-0.058,0.174-0.118-0.755-1.004-1.155c0.284,2.037-0.018,5.268-1.432,6.158c-0.109,0.07,0.887-3.189,0.201-1.93c-4.093,6.276-8.959,2.539-10.934,1.208c1.585,0.388,3.267,0.108,4.242-0.559c0.982-0.672,1.564-1.162,2.087-1.047c0.522,0.117,0.87-0.407,0.464-0.872c-0.405-0.466-1.392-1.105-2.725-0.757c-0.94,0.247-2.107,1.287-3.886,0.233c-1.518-0.899-1.507-1.63-1.507-2.095c0-0.366,0.257-0.88,0.734-1.028c0.58,0.062,1.044,0.214,1.537,0.466c0.005-0.135,0.006-0.315-0.001-0.519c0.039-0.077,0.015-0.311-0.047-0.596c-0.036-0.287-0.097-0.582-0.19-0.851c0.01-0.002,0.017-0.007,0.021-0.021c0.076-0.344,2.147-1.544,2.299-1.659c0.153-0.114,0.55-0.378,0.506-1.183c-0.015-0.265-0.058-0.294-2.232-0.286c-0.917,0.003-1.425-0.894-1.589-1.245c0.222-1.231,0.863-2.11,1.919-2.704c0.02-0.011,0.015-0.021-0.008-0.027c0.219-0.127-2.524-0.006-3.76,1.604C9.674,8.045,9.219,7.95,8.71,7.95c-0.638,0-1.139,0.07-1.603,0.187c-0.05,0.013-0.122,0.011-0.208-0.001C6.769,8.04,6.575,7.88,6.365,7.672c0.161-0.18,0.324-0.356,0.495-0.526C9.201,4.804,12.43,3.357,16.002,3.356z\"\n\n\ndef svg_parse(path):\n commands = {'M': (Path.MOVETO,),\n 'L': (Path.LINETO,),\n 'Q': (Path.CURVE3,)*2,\n 'C': (Path.CURVE4,)*3,\n 'Z': (Path.CLOSEPOLY,)}\n path_re = re.compile(r'([MLHVCSQTAZ])([^MLHVCSQTAZ]+)', re.IGNORECASE)\n float_re = re.compile(r'(?:[\\s,]*)([+-]?\\d+(?:\\.\\d+)?)')\n vertices = []\n codes = []\n last = (0, 0)\n for cmd, values in path_re.findall(path):\n points = [float(v) for v in float_re.findall(values)]\n points = np.array(points).reshape((len(points)//2, 2))\n if cmd.islower():\n points += last\n cmd = cmd.capitalize()\n last = points[-1]\n codes.extend(commands[cmd])\n vertices.extend(points.tolist())\n return codes, vertices\n\n# SVG to matplotlib\ncodes, verts = svg_parse(firefox)\nverts = np.array(verts)\npath = Path(verts, codes)\n\n# Make upside down\nverts[:, 1] *= -1\nxmin, xmax = verts[:, 0].min()-1, verts[:, 0].max()+1\nymin, ymax = verts[:, 1].min()-1, verts[:, 1].max()+1\n\nfig = plt.figure(figsize=(5, 5))\nax = fig.add_axes([0.0, 0.0, 1.0, 1.0], frameon=False, aspect=1)\n\n# White outline (width = 6)\npatch = patches.PathPatch(path, facecolor='None', edgecolor='w', lw=6)\nax.add_patch(patch)\n\n# Actual shape with black outline\npatch = patches.PathPatch(path, facecolor='orange', edgecolor='k', lw=2)\nax.add_patch(patch)\n\n# Centering\nax.set_xlim(xmin, xmax)\nax.set_ylim(ymin, ymax)\n\n# No ticks\nax.set_xticks([])\nax.set_yticks([])\n\n# Display\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/46954dca4aea9d0c049ae45b15d77f26/wxcursor_demo_sgskip.ipynb b/_downloads/46954dca4aea9d0c049ae45b15d77f26/wxcursor_demo_sgskip.ipynb deleted file mode 120000 index cbbfa79ef93..00000000000 --- a/_downloads/46954dca4aea9d0c049ae45b15d77f26/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/46954dca4aea9d0c049ae45b15d77f26/wxcursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/469b1cb712b81ccf135c6eb9495dd12f/errorbar_limits.ipynb b/_downloads/469b1cb712b81ccf135c6eb9495dd12f/errorbar_limits.ipynb deleted file mode 120000 index 73ab74bf0d1..00000000000 --- a/_downloads/469b1cb712b81ccf135c6eb9495dd12f/errorbar_limits.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/469b1cb712b81ccf135c6eb9495dd12f/errorbar_limits.ipynb \ No newline at end of file diff --git a/_downloads/46a1b42d3bd1917b89c39f6f8ea4791d/ganged_plots.py b/_downloads/46a1b42d3bd1917b89c39f6f8ea4791d/ganged_plots.py deleted file mode 120000 index 0d85474d8ea..00000000000 --- a/_downloads/46a1b42d3bd1917b89c39f6f8ea4791d/ganged_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/46a1b42d3bd1917b89c39f6f8ea4791d/ganged_plots.py \ No newline at end of file diff --git a/_downloads/46a6c32d84a2db63093a69ba13da0e2f/radian_demo.py b/_downloads/46a6c32d84a2db63093a69ba13da0e2f/radian_demo.py deleted file mode 100644 index f9da342defc..00000000000 --- a/_downloads/46a6c32d84a2db63093a69ba13da0e2f/radian_demo.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============ -Radian ticks -============ - -Plot with radians from the basic_units mockup example package. - - -This example shows how the unit class can determine the tick locating, -formatting and axis labeling. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" - -import matplotlib.pyplot as plt -import numpy as np - -from basic_units import radians, degrees, cos - -x = [val*radians for val in np.arange(0, 15, 0.01)] - -fig, axs = plt.subplots(2) - -axs[0].plot(x, cos(x), xunits=radians) -axs[1].plot(x, cos(x), xunits=degrees) - -fig.tight_layout() -plt.show() diff --git a/_downloads/46b23294cc116744e6667346c599c649/radian_demo.ipynb b/_downloads/46b23294cc116744e6667346c599c649/radian_demo.ipynb deleted file mode 100644 index 3629a4a367e..00000000000 --- a/_downloads/46b23294cc116744e6667346c599c649/radian_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Radian ticks\n\n\nPlot with radians from the basic_units mockup example package.\n\n\nThis example shows how the unit class can determine the tick locating,\nformatting and axis labeling.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfrom basic_units import radians, degrees, cos\n\nx = [val*radians for val in np.arange(0, 15, 0.01)]\n\nfig, axs = plt.subplots(2)\n\naxs[0].plot(x, cos(x), xunits=radians)\naxs[1].plot(x, cos(x), xunits=degrees)\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/46b4cb42d5bb56cc39e2b5b2b520b38d/gallery_python.zip b/_downloads/46b4cb42d5bb56cc39e2b5b2b520b38d/gallery_python.zip deleted file mode 120000 index 19ca39d4739..00000000000 --- a/_downloads/46b4cb42d5bb56cc39e2b5b2b520b38d/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/46b4cb42d5bb56cc39e2b5b2b520b38d/gallery_python.zip \ No newline at end of file diff --git a/_downloads/46b8a52d1eb52ee1c50c4600d334b201/simple_axis_direction03.py b/_downloads/46b8a52d1eb52ee1c50c4600d334b201/simple_axis_direction03.py deleted file mode 120000 index d89c0be1f94..00000000000 --- a/_downloads/46b8a52d1eb52ee1c50c4600d334b201/simple_axis_direction03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/46b8a52d1eb52ee1c50c4600d334b201/simple_axis_direction03.py \ No newline at end of file diff --git a/_downloads/46c4aaffdea14ce460b317b161d8ec5a/mandelbrot.py b/_downloads/46c4aaffdea14ce460b317b161d8ec5a/mandelbrot.py deleted file mode 120000 index 7e171b3a1d2..00000000000 --- a/_downloads/46c4aaffdea14ce460b317b161d8ec5a/mandelbrot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/46c4aaffdea14ce460b317b161d8ec5a/mandelbrot.py \ No newline at end of file diff --git a/_downloads/46cd991b1eb8ddf9e5bc0ace801159bc/figure_axes_enter_leave.py b/_downloads/46cd991b1eb8ddf9e5bc0ace801159bc/figure_axes_enter_leave.py deleted file mode 120000 index 51b0ba81dbf..00000000000 --- a/_downloads/46cd991b1eb8ddf9e5bc0ace801159bc/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/46cd991b1eb8ddf9e5bc0ace801159bc/figure_axes_enter_leave.py \ No newline at end of file diff --git a/_downloads/46d7a0a9f988ababd762e394051cb21b/boxplot_vs_violin.ipynb b/_downloads/46d7a0a9f988ababd762e394051cb21b/boxplot_vs_violin.ipynb deleted file mode 120000 index cb99f776880..00000000000 --- a/_downloads/46d7a0a9f988ababd762e394051cb21b/boxplot_vs_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/46d7a0a9f988ababd762e394051cb21b/boxplot_vs_violin.ipynb \ No newline at end of file diff --git a/_downloads/46da54124b66d3bafcf7bfa040369b97/anchored_box01.ipynb b/_downloads/46da54124b66d3bafcf7bfa040369b97/anchored_box01.ipynb deleted file mode 100644 index fe0b0c202be..00000000000 --- a/_downloads/46da54124b66d3bafcf7bfa040369b97/anchored_box01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.offsetbox import AnchoredText\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nat = AnchoredText(\"Figure 1a\",\n prop=dict(size=15), frameon=True, loc='upper left')\nat.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\nax.add_artist(at)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/46dbb155226a150a06044b4357dbf9da/contour3d.py b/_downloads/46dbb155226a150a06044b4357dbf9da/contour3d.py deleted file mode 120000 index 6647ba97ddb..00000000000 --- a/_downloads/46dbb155226a150a06044b4357dbf9da/contour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/46dbb155226a150a06044b4357dbf9da/contour3d.py \ No newline at end of file diff --git a/_downloads/46e2aba8b1fbd2f2b54f553ae837850d/demo_ticklabel_direction.py b/_downloads/46e2aba8b1fbd2f2b54f553ae837850d/demo_ticklabel_direction.py deleted file mode 120000 index 7a0efb6e836..00000000000 --- a/_downloads/46e2aba8b1fbd2f2b54f553ae837850d/demo_ticklabel_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/46e2aba8b1fbd2f2b54f553ae837850d/demo_ticklabel_direction.py \ No newline at end of file diff --git a/_downloads/46ec7f6d8aac70fa33e715c77f0b7961/histogram_multihist.ipynb b/_downloads/46ec7f6d8aac70fa33e715c77f0b7961/histogram_multihist.ipynb deleted file mode 100644 index f8933c3d29c..00000000000 --- a/_downloads/46ec7f6d8aac70fa33e715c77f0b7961/histogram_multihist.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================================================\nThe histogram (hist) function with multiple data sets\n=====================================================\n\nPlot histogram with multiple sample sets and demonstrate:\n\n * Use of legend with multiple sample sets\n * Stacked bars\n * Step curve with no fill\n * Data sets of different sample sizes\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nn_bins = 10\nx = np.random.randn(1000, 3)\n\nfig, axes = plt.subplots(nrows=2, ncols=2)\nax0, ax1, ax2, ax3 = axes.flatten()\n\ncolors = ['red', 'tan', 'lime']\nax0.hist(x, n_bins, density=True, histtype='bar', color=colors, label=colors)\nax0.legend(prop={'size': 10})\nax0.set_title('bars with legend')\n\nax1.hist(x, n_bins, density=True, histtype='bar', stacked=True)\nax1.set_title('stacked bar')\n\nax2.hist(x, n_bins, histtype='step', stacked=True, fill=False)\nax2.set_title('stack step (unfilled)')\n\n# Make a multiple-histogram of data-sets with different length.\nx_multi = [np.random.randn(n) for n in [10000, 5000, 2000]]\nax3.hist(x_multi, n_bins, histtype='bar')\nax3.set_title('different sample sizes')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/46ed3bbfb5fd16d6c39dcf34cfe8628c/embedding_webagg_sgskip.ipynb b/_downloads/46ed3bbfb5fd16d6c39dcf34cfe8628c/embedding_webagg_sgskip.ipynb deleted file mode 100644 index a80053b5804..00000000000 --- a/_downloads/46ed3bbfb5fd16d6c39dcf34cfe8628c/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding WebAgg\n\n\nThis example demonstrates how to embed matplotlib WebAgg interactive\nplotting in your own web application and framework. It is not\nnecessary to do all this if you merely want to display a plot in a\nbrowser or use matplotlib's built-in Tornado-based server \"on the\nside\".\n\nThe framework being used must support web sockets.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import io\n\ntry:\n import tornado\nexcept ImportError:\n raise RuntimeError(\"This example requires tornado.\")\nimport tornado.web\nimport tornado.httpserver\nimport tornado.ioloop\nimport tornado.websocket\n\n\nfrom matplotlib.backends.backend_webagg_core import (\n FigureManagerWebAgg, new_figure_manager_given_figure)\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\nimport json\n\n\ndef create_figure():\n \"\"\"\n Creates a simple example figure.\n \"\"\"\n fig = Figure()\n a = fig.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2 * np.pi * t)\n a.plot(t, s)\n return fig\n\n\n# The following is the content of the web page. You would normally\n# generate this using some sort of template facility in your web\n# framework, but here we just use Python string formatting.\nhtml_content = \"\"\"\n\n \n \n \n \n \n \n \n \n \n\n \n\n matplotlib\n \n\n \n
\n
\n \n\n\"\"\"\n\n\nclass MyApplication(tornado.web.Application):\n class MainPage(tornado.web.RequestHandler):\n \"\"\"\n Serves the main HTML page.\n \"\"\"\n\n def get(self):\n manager = self.application.manager\n ws_uri = \"ws://{req.host}/\".format(req=self.request)\n content = html_content % {\n \"ws_uri\": ws_uri, \"fig_id\": manager.num}\n self.write(content)\n\n class MplJs(tornado.web.RequestHandler):\n \"\"\"\n Serves the generated matplotlib javascript file. The content\n is dynamically generated based on which toolbar functions the\n user has defined. Call `FigureManagerWebAgg` to get its\n content.\n \"\"\"\n\n def get(self):\n self.set_header('Content-Type', 'application/javascript')\n js_content = FigureManagerWebAgg.get_javascript()\n\n self.write(js_content)\n\n class Download(tornado.web.RequestHandler):\n \"\"\"\n Handles downloading of the figure in various file formats.\n \"\"\"\n\n def get(self, fmt):\n manager = self.application.manager\n\n mimetypes = {\n 'ps': 'application/postscript',\n 'eps': 'application/postscript',\n 'pdf': 'application/pdf',\n 'svg': 'image/svg+xml',\n 'png': 'image/png',\n 'jpeg': 'image/jpeg',\n 'tif': 'image/tiff',\n 'emf': 'application/emf'\n }\n\n self.set_header('Content-Type', mimetypes.get(fmt, 'binary'))\n\n buff = io.BytesIO()\n manager.canvas.figure.savefig(buff, format=fmt)\n self.write(buff.getvalue())\n\n class WebSocket(tornado.websocket.WebSocketHandler):\n \"\"\"\n A websocket for interactive communication between the plot in\n the browser and the server.\n\n In addition to the methods required by tornado, it is required to\n have two callback methods:\n\n - ``send_json(json_content)`` is called by matplotlib when\n it needs to send json to the browser. `json_content` is\n a JSON tree (Python dictionary), and it is the responsibility\n of this implementation to encode it as a string to send over\n the socket.\n\n - ``send_binary(blob)`` is called to send binary image data\n to the browser.\n \"\"\"\n supports_binary = True\n\n def open(self):\n # Register the websocket with the FigureManager.\n manager = self.application.manager\n manager.add_web_socket(self)\n if hasattr(self, 'set_nodelay'):\n self.set_nodelay(True)\n\n def on_close(self):\n # When the socket is closed, deregister the websocket with\n # the FigureManager.\n manager = self.application.manager\n manager.remove_web_socket(self)\n\n def on_message(self, message):\n # The 'supports_binary' message is relevant to the\n # websocket itself. The other messages get passed along\n # to matplotlib as-is.\n\n # Every message has a \"type\" and a \"figure_id\".\n message = json.loads(message)\n if message['type'] == 'supports_binary':\n self.supports_binary = message['value']\n else:\n manager = self.application.manager\n manager.handle_json(message)\n\n def send_json(self, content):\n self.write_message(json.dumps(content))\n\n def send_binary(self, blob):\n if self.supports_binary:\n self.write_message(blob, binary=True)\n else:\n data_uri = \"data:image/png;base64,{0}\".format(\n blob.encode('base64').replace('\\n', ''))\n self.write_message(data_uri)\n\n def __init__(self, figure):\n self.figure = figure\n self.manager = new_figure_manager_given_figure(id(figure), figure)\n\n super().__init__([\n # Static files for the CSS and JS\n (r'/_static/(.*)',\n tornado.web.StaticFileHandler,\n {'path': FigureManagerWebAgg.get_static_file_path()}),\n\n # The page that contains all of the pieces\n ('/', self.MainPage),\n\n ('/mpl.js', self.MplJs),\n\n # Sends images and events to the browser, and receives\n # events from the browser\n ('/ws', self.WebSocket),\n\n # Handles the downloading (i.e., saving) of static images\n (r'/download.([a-z0-9.]+)', self.Download),\n ])\n\n\nif __name__ == \"__main__\":\n figure = create_figure()\n application = MyApplication(figure)\n\n http_server = tornado.httpserver.HTTPServer(application)\n http_server.listen(8080)\n\n print(\"http://127.0.0.1:8080/\")\n print(\"Press Ctrl+C to quit\")\n\n tornado.ioloop.IOLoop.instance().start()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/46ef0c6a91a50cf87f407e9ba1c5d746/tripcolor_demo.py b/_downloads/46ef0c6a91a50cf87f407e9ba1c5d746/tripcolor_demo.py deleted file mode 120000 index 026ac79b63b..00000000000 --- a/_downloads/46ef0c6a91a50cf87f407e9ba1c5d746/tripcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/46ef0c6a91a50cf87f407e9ba1c5d746/tripcolor_demo.py \ No newline at end of file diff --git a/_downloads/46f28d446fb4992901cc96d45ab34241/rectangle_selector.py b/_downloads/46f28d446fb4992901cc96d45ab34241/rectangle_selector.py deleted file mode 120000 index d0edd71da10..00000000000 --- a/_downloads/46f28d446fb4992901cc96d45ab34241/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/46f28d446fb4992901cc96d45ab34241/rectangle_selector.py \ No newline at end of file diff --git a/_downloads/46f888569422cd4cb25e339824015b26/artists.ipynb b/_downloads/46f888569422cd4cb25e339824015b26/artists.ipynb deleted file mode 120000 index b4b97bbc6b4..00000000000 --- a/_downloads/46f888569422cd4cb25e339824015b26/artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/46f888569422cd4cb25e339824015b26/artists.ipynb \ No newline at end of file diff --git a/_downloads/470084d75758f741cee64ce6a54cdc13/barh.py b/_downloads/470084d75758f741cee64ce6a54cdc13/barh.py deleted file mode 120000 index 99716c9b8e0..00000000000 --- a/_downloads/470084d75758f741cee64ce6a54cdc13/barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/470084d75758f741cee64ce6a54cdc13/barh.py \ No newline at end of file diff --git a/_downloads/47054c91f8a62c7a65924a1620b79db4/mathtext_asarray.py b/_downloads/47054c91f8a62c7a65924a1620b79db4/mathtext_asarray.py deleted file mode 120000 index d922759c1b3..00000000000 --- a/_downloads/47054c91f8a62c7a65924a1620b79db4/mathtext_asarray.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/47054c91f8a62c7a65924a1620b79db4/mathtext_asarray.py \ No newline at end of file diff --git a/_downloads/4717f8d6062c0b6fb636d3e5d1fa23d9/connectionstyle_demo.py b/_downloads/4717f8d6062c0b6fb636d3e5d1fa23d9/connectionstyle_demo.py deleted file mode 120000 index de4d79e76d8..00000000000 --- a/_downloads/4717f8d6062c0b6fb636d3e5d1fa23d9/connectionstyle_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4717f8d6062c0b6fb636d3e5d1fa23d9/connectionstyle_demo.py \ No newline at end of file diff --git a/_downloads/4718b471149045b083bc04a8b32b9592/axis_equal_demo.ipynb b/_downloads/4718b471149045b083bc04a8b32b9592/axis_equal_demo.ipynb deleted file mode 120000 index dfe7e691768..00000000000 --- a/_downloads/4718b471149045b083bc04a8b32b9592/axis_equal_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4718b471149045b083bc04a8b32b9592/axis_equal_demo.ipynb \ No newline at end of file diff --git a/_downloads/4729caf7e90c84db83593e1e5f65e523/watermark_text.ipynb b/_downloads/4729caf7e90c84db83593e1e5f65e523/watermark_text.ipynb deleted file mode 100644 index 78567746b16..00000000000 --- a/_downloads/4729caf7e90c84db83593e1e5f65e523/watermark_text.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text watermark\n\n\nAdding a text watermark.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nax.plot(np.random.rand(20), '-o', ms=20, lw=2, alpha=0.7, mfc='orange')\nax.grid()\n\nfig.text(0.95, 0.05, 'Property of MPL',\n fontsize=50, color='gray',\n ha='right', va='bottom', alpha=0.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/47337158575ec6a129253fd69d57b011/demo_colorbar_with_axes_divider.py b/_downloads/47337158575ec6a129253fd69d57b011/demo_colorbar_with_axes_divider.py deleted file mode 120000 index 79425f9d0bf..00000000000 --- a/_downloads/47337158575ec6a129253fd69d57b011/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/47337158575ec6a129253fd69d57b011/demo_colorbar_with_axes_divider.py \ No newline at end of file diff --git a/_downloads/4733ef6b5fe39b5452fc538bdc2f6fca/whats_new_99_mplot3d.py b/_downloads/4733ef6b5fe39b5452fc538bdc2f6fca/whats_new_99_mplot3d.py deleted file mode 120000 index c2cb8d94364..00000000000 --- a/_downloads/4733ef6b5fe39b5452fc538bdc2f6fca/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4733ef6b5fe39b5452fc538bdc2f6fca/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/_downloads/474e956909497683b49d4551bd2b5a8a/boxplot_plot.ipynb b/_downloads/474e956909497683b49d4551bd2b5a8a/boxplot_plot.ipynb deleted file mode 120000 index 54052a05700..00000000000 --- a/_downloads/474e956909497683b49d4551bd2b5a8a/boxplot_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/474e956909497683b49d4551bd2b5a8a/boxplot_plot.ipynb \ No newline at end of file diff --git a/_downloads/475de2bdf83ce7f5781be21f4e13b758/pong_sgskip.ipynb b/_downloads/475de2bdf83ce7f5781be21f4e13b758/pong_sgskip.ipynb deleted file mode 120000 index ca73982a892..00000000000 --- a/_downloads/475de2bdf83ce7f5781be21f4e13b758/pong_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/475de2bdf83ce7f5781be21f4e13b758/pong_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/476c92ba1809c233fa1cf51c4379f30b/plot_solarizedlight2.py b/_downloads/476c92ba1809c233fa1cf51c4379f30b/plot_solarizedlight2.py deleted file mode 120000 index 377611d99b3..00000000000 --- a/_downloads/476c92ba1809c233fa1cf51c4379f30b/plot_solarizedlight2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/476c92ba1809c233fa1cf51c4379f30b/plot_solarizedlight2.py \ No newline at end of file diff --git a/_downloads/476cdc309f1b0fe49f3fdb9722f7bccb/data_browser.py b/_downloads/476cdc309f1b0fe49f3fdb9722f7bccb/data_browser.py deleted file mode 120000 index 83c73a8c403..00000000000 --- a/_downloads/476cdc309f1b0fe49f3fdb9722f7bccb/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/476cdc309f1b0fe49f3fdb9722f7bccb/data_browser.py \ No newline at end of file diff --git a/_downloads/476f9e030948404264db33ec824e6602/pick_event_demo.ipynb b/_downloads/476f9e030948404264db33ec824e6602/pick_event_demo.ipynb deleted file mode 120000 index 06afd11711e..00000000000 --- a/_downloads/476f9e030948404264db33ec824e6602/pick_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/476f9e030948404264db33ec824e6602/pick_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/4771e87aeddbfa07eb8271d2d0cd3d1e/load_converter.ipynb b/_downloads/4771e87aeddbfa07eb8271d2d0cd3d1e/load_converter.ipynb deleted file mode 100644 index 085d9a13e7a..00000000000 --- a/_downloads/4771e87aeddbfa07eb8271d2d0cd3d1e/load_converter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Load converter\n\n\nThis example demonstrates passing a custom converter to `numpy.genfromtxt` to\nextract dates from a CSV file.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import dateutil.parser\nfrom matplotlib import cbook, dates\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\ndatafile = cbook.get_sample_data('msft.csv', asfileobj=False)\nprint('loading', datafile)\n\ndata = np.genfromtxt(\n datafile, delimiter=',', names=True,\n dtype=None, converters={0: dateutil.parser.parse})\n\nfig, ax = plt.subplots()\nax.plot(data['Date'], data['High'], '-')\nfig.autofmt_xdate()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/477677ca771a108eb0204c44fd33428d/specgram_demo.ipynb b/_downloads/477677ca771a108eb0204c44fd33428d/specgram_demo.ipynb deleted file mode 120000 index 2f69092682b..00000000000 --- a/_downloads/477677ca771a108eb0204c44fd33428d/specgram_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/477677ca771a108eb0204c44fd33428d/specgram_demo.ipynb \ No newline at end of file diff --git a/_downloads/4782783772d4bce3e89895a3b200cc73/create_subplots.py b/_downloads/4782783772d4bce3e89895a3b200cc73/create_subplots.py deleted file mode 120000 index 84d4d6a9a99..00000000000 --- a/_downloads/4782783772d4bce3e89895a3b200cc73/create_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4782783772d4bce3e89895a3b200cc73/create_subplots.py \ No newline at end of file diff --git a/_downloads/4788680578fcb0581c2792cf9b956b19/mpl_with_glade3_sgskip.py b/_downloads/4788680578fcb0581c2792cf9b956b19/mpl_with_glade3_sgskip.py deleted file mode 120000 index 7455ec08d62..00000000000 --- a/_downloads/4788680578fcb0581c2792cf9b956b19/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4788680578fcb0581c2792cf9b956b19/mpl_with_glade3_sgskip.py \ No newline at end of file diff --git a/_downloads/479be810a2323eb372f63df1fb434e13/style_sheets_reference.py b/_downloads/479be810a2323eb372f63df1fb434e13/style_sheets_reference.py deleted file mode 100644 index 261285f3434..00000000000 --- a/_downloads/479be810a2323eb372f63df1fb434e13/style_sheets_reference.py +++ /dev/null @@ -1,147 +0,0 @@ -""" -====================== -Style sheets reference -====================== - -This script demonstrates the different available style sheets on a -common set of example plots: scatter plot, image, bar graph, patches, -line plot and histogram, - -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def plot_scatter(ax, prng, nb_samples=100): - """Scatter plot. - """ - for mu, sigma, marker in [(-.5, 0.75, 'o'), (0.75, 1., 's')]: - x, y = prng.normal(loc=mu, scale=sigma, size=(2, nb_samples)) - ax.plot(x, y, ls='none', marker=marker) - ax.set_xlabel('X-label') - return ax - - -def plot_colored_sinusoidal_lines(ax): - """Plot sinusoidal lines with colors following the style color cycle. - """ - L = 2 * np.pi - x = np.linspace(0, L) - nb_colors = len(plt.rcParams['axes.prop_cycle']) - shift = np.linspace(0, L, nb_colors, endpoint=False) - for s in shift: - ax.plot(x, np.sin(x + s), '-') - ax.set_xlim([x[0], x[-1]]) - return ax - - -def plot_bar_graphs(ax, prng, min_value=5, max_value=25, nb_samples=5): - """Plot two bar graphs side by side, with letters as x-tick labels. - """ - x = np.arange(nb_samples) - ya, yb = prng.randint(min_value, max_value, size=(2, nb_samples)) - width = 0.25 - ax.bar(x, ya, width) - ax.bar(x + width, yb, width, color='C2') - ax.set_xticks(x + width) - ax.set_xticklabels(['a', 'b', 'c', 'd', 'e']) - return ax - - -def plot_colored_circles(ax, prng, nb_samples=15): - """Plot circle patches. - - NB: draws a fixed amount of samples, rather than using the length of - the color cycle, because different styles may have different numbers - of colors. - """ - for sty_dict, j in zip(plt.rcParams['axes.prop_cycle'], range(nb_samples)): - ax.add_patch(plt.Circle(prng.normal(scale=3, size=2), - radius=1.0, color=sty_dict['color'])) - # Force the limits to be the same across the styles (because different - # styles may have different numbers of available colors). - ax.set_xlim([-4, 8]) - ax.set_ylim([-5, 6]) - ax.set_aspect('equal', adjustable='box') # to plot circles as circles - return ax - - -def plot_image_and_patch(ax, prng, size=(20, 20)): - """Plot an image with random values and superimpose a circular patch. - """ - values = prng.random_sample(size=size) - ax.imshow(values, interpolation='none') - c = plt.Circle((5, 5), radius=5, label='patch') - ax.add_patch(c) - # Remove ticks - ax.set_xticks([]) - ax.set_yticks([]) - - -def plot_histograms(ax, prng, nb_samples=10000): - """Plot 4 histograms and a text annotation. - """ - params = ((10, 10), (4, 12), (50, 12), (6, 55)) - for a, b in params: - values = prng.beta(a, b, size=nb_samples) - ax.hist(values, histtype="stepfilled", bins=30, - alpha=0.8, density=True) - # Add a small annotation. - ax.annotate('Annotation', xy=(0.25, 4.25), - xytext=(0.9, 0.9), textcoords=ax.transAxes, - va="top", ha="right", - bbox=dict(boxstyle="round", alpha=0.2), - arrowprops=dict( - arrowstyle="->", - connectionstyle="angle,angleA=-95,angleB=35,rad=10"), - ) - return ax - - -def plot_figure(style_label=""): - """Setup and plot the demonstration figure with a given style. - """ - # Use a dedicated RandomState instance to draw the same "random" values - # across the different figures. - prng = np.random.RandomState(96917002) - - # Tweak the figure size to be better suited for a row of numerous plots: - # double the width and halve the height. NB: use relative changes because - # some styles may have a figure size different from the default one. - (fig_width, fig_height) = plt.rcParams['figure.figsize'] - fig_size = [fig_width * 2, fig_height / 2] - - fig, axes = plt.subplots(ncols=6, nrows=1, num=style_label, - figsize=fig_size, squeeze=True) - axes[0].set_ylabel(style_label) - - plot_scatter(axes[0], prng) - plot_image_and_patch(axes[1], prng) - plot_bar_graphs(axes[2], prng) - plot_colored_circles(axes[3], prng) - plot_colored_sinusoidal_lines(axes[4]) - plot_histograms(axes[5], prng) - - fig.tight_layout() - - return fig - - -if __name__ == "__main__": - - # Setup a list of all available styles, in alphabetical order but - # the `default` and `classic` ones, which will be forced resp. in - # first and second position. - style_list = ['default', 'classic'] + sorted( - style for style in plt.style.available if style != 'classic') - - # Plot a demonstration figure for every available style sheet. - for style_label in style_list: - with plt.style.context(style_label): - fig = plot_figure(style_label=style_label) - - plt.show() diff --git a/_downloads/47a90d8813af021bbefb74d0dc4800d9/line_styles_reference.py b/_downloads/47a90d8813af021bbefb74d0dc4800d9/line_styles_reference.py deleted file mode 120000 index 60836068271..00000000000 --- a/_downloads/47a90d8813af021bbefb74d0dc4800d9/line_styles_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/47a90d8813af021bbefb74d0dc4800d9/line_styles_reference.py \ No newline at end of file diff --git a/_downloads/47b524f2fe304f709ff3927c3f66b435/two_scales.ipynb b/_downloads/47b524f2fe304f709ff3927c3f66b435/two_scales.ipynb deleted file mode 100644 index 6a19f72aaf9..00000000000 --- a/_downloads/47b524f2fe304f709ff3927c3f66b435/two_scales.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plots with different scales\n\n\nTwo plots on the same axes with different left and right scales.\n\nThe trick is to use *two different axes* that share the same *x* axis.\nYou can use separate `matplotlib.ticker` formatters and locators as\ndesired since the two axes are independent.\n\nSuch axes are generated by calling the :meth:`.Axes.twinx` method. Likewise,\n:meth:`.Axes.twiny` is available to generate axes that share a *y* axis but\nhave different top and bottom scales.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Create some mock data\nt = np.arange(0.01, 10.0, 0.01)\ndata1 = np.exp(t)\ndata2 = np.sin(2 * np.pi * t)\n\nfig, ax1 = plt.subplots()\n\ncolor = 'tab:red'\nax1.set_xlabel('time (s)')\nax1.set_ylabel('exp', color=color)\nax1.plot(t, data1, color=color)\nax1.tick_params(axis='y', labelcolor=color)\n\nax2 = ax1.twinx() # instantiate a second axes that shares the same x-axis\n\ncolor = 'tab:blue'\nax2.set_ylabel('sin', color=color) # we already handled the x-label with ax1\nax2.plot(t, data2, color=color)\nax2.tick_params(axis='y', labelcolor=color)\n\nfig.tight_layout() # otherwise the right y-label is slightly clipped\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.twinx\nmatplotlib.axes.Axes.twiny\nmatplotlib.axes.Axes.tick_params" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/47ba022114c6aa200327cd681b6b7150/fill_between_alpha.ipynb b/_downloads/47ba022114c6aa200327cd681b6b7150/fill_between_alpha.ipynb deleted file mode 100644 index c108679ad00..00000000000 --- a/_downloads/47ba022114c6aa200327cd681b6b7150/fill_between_alpha.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nFill Between and Alpha\n======================\n\nThe :meth:`~matplotlib.axes.Axes.fill_between` function generates a\nshaded region between a min and max boundary that is useful for\nillustrating ranges. It has a very handy ``where`` argument to\ncombine filling with logical ranges, e.g., to just fill in a curve over\nsome threshold value.\n\nAt its most basic level, ``fill_between`` can be use to enhance a\ngraphs visual appearance. Let's compare two graphs of a financial\ntimes with a simple line plot on the left and a filled line on the\nright.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.cbook as cbook\n\n# load up some sample financial data\nwith cbook.get_sample_data('goog.npz') as datafile:\n r = np.load(datafile)['price_data'].view(np.recarray)\n# Matplotlib prefers datetime instead of np.datetime64.\ndate = r.date.astype('O')\n# create two subplots with the shared x and y axes\nfig, (ax1, ax2) = plt.subplots(1, 2, sharex=True, sharey=True)\n\npricemin = r.close.min()\n\nax1.plot(date, r.close, lw=2)\nax2.fill_between(date, pricemin, r.close, facecolor='blue', alpha=0.5)\n\nfor ax in ax1, ax2:\n ax.grid(True)\n\nax1.set_ylabel('price')\nfor label in ax2.get_yticklabels():\n label.set_visible(False)\n\nfig.suptitle('Google (GOOG) daily closing price')\nfig.autofmt_xdate()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The alpha channel is not necessary here, but it can be used to soften\ncolors for more visually appealing plots. In other examples, as we'll\nsee below, the alpha channel is functionally useful as the shaded\nregions can overlap and alpha allows you to see both. Note that the\npostscript format does not support alpha (this is a postscript\nlimitation, not a matplotlib limitation), so when using alpha save\nyour figures in PNG, PDF or SVG.\n\nOur next example computes two populations of random walkers with a\ndifferent mean and standard deviation of the normal distributions from\nwhich the steps are drawn. We use shared regions to plot +/- one\nstandard deviation of the mean position of the population. Here the\nalpha channel is useful, not just aesthetic.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Nsteps, Nwalkers = 100, 250\nt = np.arange(Nsteps)\n\n# an (Nsteps x Nwalkers) array of random walk steps\nS1 = 0.002 + 0.01*np.random.randn(Nsteps, Nwalkers)\nS2 = 0.004 + 0.02*np.random.randn(Nsteps, Nwalkers)\n\n# an (Nsteps x Nwalkers) array of random walker positions\nX1 = S1.cumsum(axis=0)\nX2 = S2.cumsum(axis=0)\n\n\n# Nsteps length arrays empirical means and standard deviations of both\n# populations over time\nmu1 = X1.mean(axis=1)\nsigma1 = X1.std(axis=1)\nmu2 = X2.mean(axis=1)\nsigma2 = X2.std(axis=1)\n\n# plot it!\nfig, ax = plt.subplots(1)\nax.plot(t, mu1, lw=2, label='mean population 1', color='blue')\nax.plot(t, mu2, lw=2, label='mean population 2', color='yellow')\nax.fill_between(t, mu1+sigma1, mu1-sigma1, facecolor='blue', alpha=0.5)\nax.fill_between(t, mu2+sigma2, mu2-sigma2, facecolor='yellow', alpha=0.5)\nax.set_title(r'random walkers empirical $\\mu$ and $\\pm \\sigma$ interval')\nax.legend(loc='upper left')\nax.set_xlabel('num steps')\nax.set_ylabel('position')\nax.grid()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The ``where`` keyword argument is very handy for highlighting certain\nregions of the graph. ``where`` takes a boolean mask the same length\nas the x, ymin and ymax arguments, and only fills in the region where\nthe boolean mask is True. In the example below, we simulate a single\nrandom walker and compute the analytic mean and standard deviation of\nthe population positions. The population mean is shown as the black\ndashed line, and the plus/minus one sigma deviation from the mean is\nshown as the yellow filled region. We use the where mask\n``X > upper_bound`` to find the region where the walker is above the one\nsigma boundary, and shade that region blue.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Nsteps = 500\nt = np.arange(Nsteps)\n\nmu = 0.002\nsigma = 0.01\n\n# the steps and position\nS = mu + sigma*np.random.randn(Nsteps)\nX = S.cumsum()\n\n# the 1 sigma upper and lower analytic population bounds\nlower_bound = mu*t - sigma*np.sqrt(t)\nupper_bound = mu*t + sigma*np.sqrt(t)\n\nfig, ax = plt.subplots(1)\nax.plot(t, X, lw=2, label='walker position', color='blue')\nax.plot(t, mu*t, lw=1, label='population mean', color='black', ls='--')\nax.fill_between(t, lower_bound, upper_bound, facecolor='yellow', alpha=0.5,\n label='1 sigma range')\nax.legend(loc='upper left')\n\n# here we use the where argument to only fill the region where the\n# walker is above the population 1 sigma boundary\nax.fill_between(t, upper_bound, X, where=X > upper_bound, facecolor='blue',\n alpha=0.5)\nax.set_xlabel('num steps')\nax.set_ylabel('position')\nax.grid()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another handy use of filled regions is to highlight horizontal or\nvertical spans of an axes -- for that matplotlib has some helper\nfunctions :meth:`~matplotlib.axes.Axes.axhspan` and\n:meth:`~matplotlib.axes.Axes.axvspan` and example\n:doc:`/gallery/subplots_axes_and_figures/axhspan_demo`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/47bc25cb4e9c18eccf1385f78c4ea405/axisartist.ipynb b/_downloads/47bc25cb4e9c18eccf1385f78c4ea405/axisartist.ipynb deleted file mode 100644 index d1f8e4bb7e9..00000000000 --- a/_downloads/47bc25cb4e9c18eccf1385f78c4ea405/axisartist.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Overview of axisartist toolkit\n\n\nThe axisartist toolkit tutorial.\n\n

Warning

*axisartist* uses a custom Axes class\n (derived from the mpl's original Axes class).\n As a side effect, some commands (mostly tick-related) do not work.

\n\nThe *axisartist* contains a custom Axes class that is meant to support\ncurvilinear grids (e.g., the world coordinate system in astronomy).\nUnlike mpl's original Axes class which uses Axes.xaxis and Axes.yaxis\nto draw ticks, ticklines, etc., axisartist uses a special\nartist (AxisArtist) that can handle ticks, ticklines, etc. for\ncurved coordinate systems.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png\n :target: ../../gallery/axisartist/demo_floating_axis.html\n :align: center\n :scale: 50\n\n Demo Floating Axis\n\nSince it uses special artists, some Matplotlib commands that work on\nAxes.xaxis and Axes.yaxis may not work.\n\n\naxisartist\n==========\n\nThe *axisartist* module provides a custom (and very experimental) Axes\nclass, where each axis (left, right, top, and bottom) have a separate\nassociated artist which is responsible for drawing the axis-line, ticks,\nticklabels, and labels. You can also create your own axis, which can pass\nthrough a fixed position in the axes coordinate, or a fixed position\nin the data coordinate (i.e., the axis floats around when viewlimit\nchanges).\n\nThe axes class, by default, has its xaxis and yaxis invisible, and\nhas 4 additional artists which are responsible for drawing the 4 axis spines in\n\"left\", \"right\", \"bottom\", and \"top\". They are accessed as\nax.axis[\"left\"], ax.axis[\"right\"], and so on, i.e., ax.axis is a\ndictionary that contains artists (note that ax.axis is still a\ncallable method and it behaves as an original Axes.axis method in\nMatplotlib).\n\nTo create an axes, ::\n\n import mpl_toolkits.axisartist as AA\n fig = plt.figure()\n ax = AA.Axes(fig, [0.1, 0.1, 0.8, 0.8])\n fig.add_axes(ax)\n\nor to create a subplot ::\n\n ax = AA.Subplot(fig, 111)\n fig.add_subplot(ax)\n\nFor example, you can hide the right and top spines using::\n\n ax.axis[\"right\"].set_visible(False)\n ax.axis[\"top\"].set_visible(False)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisline3_001.png\n :target: ../../gallery/axisartist/simple_axisline3.html\n :align: center\n :scale: 50\n\n Simple Axisline3\n\nIt is also possible to add a horizontal axis. For example, you may have an\nhorizontal axis at y=0 (in data coordinate). ::\n\n ax.axis[\"y=0\"] = ax.new_floating_axis(nth_coord=0, value=0)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisartist1_001.png\n :target: ../../gallery/axisartist/simple_axisartist1.html\n :align: center\n :scale: 50\n\n Simple Axisartist1\n\nOr a fixed axis with some offset ::\n\n # make new (right-side) yaxis, but with some offset\n ax.axis[\"right2\"] = ax.new_fixed_axis(loc=\"right\",\n offset=(20, 0))\n\naxisartist with ParasiteAxes\n----------------------------\n\nMost commands in the axes_grid1 toolkit can take an axes_class keyword\nargument, and the commands create an axes of the given class. For example,\nto create a host subplot with axisartist.Axes, ::\n\n import mpl_toolkits.axisartist as AA\n from mpl_toolkits.axes_grid1 import host_subplot\n\n host = host_subplot(111, axes_class=AA.Axes)\n\nHere is an example that uses ParasiteAxes.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_parasite_axes2_001.png\n :target: ../../gallery/axisartist/demo_parasite_axes2.html\n :align: center\n :scale: 50\n\n Demo Parasite Axes2\n\nCurvilinear Grid\n----------------\n\nThe motivation behind the AxisArtist module is to support a curvilinear grid\nand ticks.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png\n :target: ../../gallery/axisartist/demo_curvelinear_grid.html\n :align: center\n :scale: 50\n\n Demo Curvelinear Grid\n\nFloating Axes\n-------------\n\nAxisArtist also supports a Floating Axes whose outer axes are defined as\nfloating axis.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axes_001.png\n :target: ../../gallery/axisartist/demo_floating_axes.html\n :align: center\n :scale: 50\n\n Demo Floating Axes\n\naxisartist namespace\n====================\n\nThe *axisartist* namespace includes a derived Axes implementation. The\nbiggest difference is that the artists responsible to draw axis line,\nticks, ticklabel and axis labels are separated out from the mpl's Axis\nclass, which are much more than artists in the original mpl. This\nchange was strongly motivated to support curvilinear grid. Here are a\nfew things that mpl_toolkits.axisartist.Axes is different from original\nAxes from mpl.\n\n* Axis elements (axis line(spine), ticks, ticklabel and axis labels)\n are drawn by a AxisArtist instance. Unlike Axis, left, right, top\n and bottom axis are drawn by separate artists. And each of them may\n have different tick location and different tick labels.\n\n* gridlines are drawn by a Gridlines instance. The change was\n motivated that in curvilinear coordinate, a gridline may not cross\n axis-lines (i.e., no associated ticks). In the original Axes class,\n gridlines are tied to ticks.\n\n* ticklines can be rotated if necessary (i.e, along the gridlines)\n\nIn summary, all these changes was to support\n\n* a curvilinear grid.\n* a floating axis\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png\n :target: ../../gallery/axisartist/demo_floating_axis.html\n :align: center\n :scale: 50\n\n Demo Floating Axis\n\n*mpl_toolkits.axisartist.Axes* class defines a *axis* attribute, which\nis a dictionary of AxisArtist instances. By default, the dictionary\nhas 4 AxisArtist instances, responsible for drawing of left, right,\nbottom and top axis.\n\nxaxis and yaxis attributes are still available, however they are set\nto not visible. As separate artists are used for rendering axis, some\naxis-related method in mpl may have no effect.\nIn addition to AxisArtist instances, the mpl_toolkits.axisartist.Axes will\nhave *gridlines* attribute (Gridlines), which obviously draws grid\nlines.\n\nIn both AxisArtist and Gridlines, the calculation of tick and grid\nlocation is delegated to an instance of GridHelper class.\nmpl_toolkits.axisartist.Axes class uses GridHelperRectlinear as a grid\nhelper. The GridHelperRectlinear class is a wrapper around the *xaxis*\nand *yaxis* of mpl's original Axes, and it was meant to work as the\nway how mpl's original axes works. For example, tick location changes\nusing set_ticks method and etc. should work as expected. But change in\nartist properties (e.g., color) will not work in general, although\nsome effort has been made so that some often-change attributes (color,\netc.) are respected.\n\nAxisArtist\n==========\n\nAxisArtist can be considered as a container artist with following\nattributes which will draw ticks, labels, etc.\n\n * line\n * major_ticks, major_ticklabels\n * minor_ticks, minor_ticklabels\n * offsetText\n * label\n\nline\n----\n\nDerived from Line2d class. Responsible for drawing a spinal(?) line.\n\nmajor_ticks, minor_ticks\n------------------------\n\nDerived from Line2d class. Note that ticks are markers.\n\nmajor_ticklabels, minor_ticklabels\n----------------------------------\n\nDerived from Text. Note that it is not a list of Text artist, but a\nsingle artist (similar to a collection).\n\naxislabel\n---------\n\nDerived from Text.\n\nDefault AxisArtists\n===================\n\nBy default, following for axis artists are defined.::\n\n ax.axis[\"left\"], ax.axis[\"bottom\"], ax.axis[\"right\"], ax.axis[\"top\"]\n\nThe ticklabels and axislabel of the top and the right axis are set to\nnot visible.\n\nFor example, if you want to change the color attributes of\nmajor_ticklabels of the bottom x-axis ::\n\n ax.axis[\"bottom\"].major_ticklabels.set_color(\"b\")\n\nSimilarly, to make ticklabels invisible ::\n\n ax.axis[\"bottom\"].major_ticklabels.set_visible(False)\n\nAxisArtist provides a helper method to control the visibility of ticks,\nticklabels, and label. To make ticklabel invisible, ::\n\n ax.axis[\"bottom\"].toggle(ticklabels=False)\n\nTo make all of ticks, ticklabels, and (axis) label invisible ::\n\n ax.axis[\"bottom\"].toggle(all=False)\n\nTo turn all off but ticks on ::\n\n ax.axis[\"bottom\"].toggle(all=False, ticks=True)\n\nTo turn all on but (axis) label off ::\n\n ax.axis[\"bottom\"].toggle(all=True, label=False))\n\nax.axis's __getitem__ method can take multiple axis names. For\nexample, to turn ticklabels of \"top\" and \"right\" axis on, ::\n\n ax.axis[\"top\",\"right\"].toggle(ticklabels=True))\n\nNote that 'ax.axis[\"top\",\"right\"]' returns a simple proxy object that translate above code to something like below. ::\n\n for n in [\"top\",\"right\"]:\n ax.axis[n].toggle(ticklabels=True))\n\nSo, any return values in the for loop are ignored. And you should not\nuse it anything more than a simple method.\n\nLike the list indexing \":\" means all items, i.e., ::\n\n ax.axis[:].major_ticks.set_color(\"r\")\n\nchanges tick color in all axis.\n\nHowTo\n=====\n\n1. Changing tick locations and label.\n\n Same as the original mpl's axes.::\n\n ax.set_xticks([1,2,3])\n\n2. Changing axis properties like color, etc.\n\n Change the properties of appropriate artists. For example, to change\n the color of the ticklabels::\n\n ax.axis[\"left\"].major_ticklabels.set_color(\"r\")\n\n3. To change the attributes of multiple axis::\n\n ax.axis[\"left\",\"bottom\"].major_ticklabels.set_color(\"r\")\n\n or to change the attributes of all axis::\n\n ax.axis[:].major_ticklabels.set_color(\"r\")\n\n4. To change the tick size (length), you need to use\n axis.major_ticks.set_ticksize method. To change the direction of\n the ticks (ticks are in opposite direction of ticklabels by\n default), use axis.major_ticks.set_tick_out method.\n\n To change the pad between ticks and ticklabels, use\n axis.major_ticklabels.set_pad method.\n\n To change the pad between ticklabels and axis label,\n axis.label.set_pad method.\n\nRotation and Alignment of TickLabels\n====================================\n\nThis is also quite different from the original mpl and can be\nconfusing. When you want to rotate the ticklabels, first consider\nusing \"set_axis_direction\" method. ::\n\n ax1.axis[\"left\"].major_ticklabels.set_axis_direction(\"top\")\n ax1.axis[\"right\"].label.set_axis_direction(\"left\")\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction01_001.png\n :target: ../../gallery/axisartist/simple_axis_direction01.html\n :align: center\n :scale: 50\n\n Simple Axis Direction01\n\nThe parameter for set_axis_direction is one of [\"left\", \"right\",\n\"bottom\", \"top\"].\n\nYou must understand some underlying concept of directions.\n\n 1. There is a reference direction which is defined as the direction\n of the axis line with increasing coordinate. For example, the\n reference direction of the left x-axis is from bottom to top.\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step01_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step01.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 01\n\n The direction, text angle, and alignments of the ticks, ticklabels and\n axis-label is determined with respect to the reference direction\n\n 2. *ticklabel_direction* is either the right-hand side (+) of the\n reference direction or the left-hand side (-).\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step02_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step02.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 02\n\n 3. same for the *label_direction*\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step03_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step03.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 03\n\n 4. ticks are by default drawn toward the opposite direction of the ticklabels.\n\n 5. text rotation of ticklabels and label is determined in reference\n to the *ticklabel_direction* or *label_direction*,\n respectively. The rotation of ticklabels and label is anchored.\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step04_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step04.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 04\n\nOn the other hand, there is a concept of \"axis_direction\". This is a\ndefault setting of above properties for each, \"bottom\", \"left\", \"top\",\nand \"right\" axis.\n\n ========== =========== ========= ========== ========= ==========\n ? ? left bottom right top\n ---------- ----------- --------- ---------- --------- ----------\n axislabel direction '-' '+' '+' '-'\n axislabel rotation 180 0 0 180\n axislabel va center top center bottom\n axislabel ha right center right center\n ticklabel direction '-' '+' '+' '-'\n ticklabels rotation 90 0 -90 180\n ticklabel ha right center right center\n ticklabel va center baseline center baseline\n ========== =========== ========= ========== ========= ==========\n\nAnd, 'set_axis_direction(\"top\")' means to adjust the text rotation\netc, for settings suitable for \"top\" axis. The concept of axis\ndirection can be more clear with curved axis.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_axis_direction_001.png\n :target: ../../gallery/axisartist/demo_axis_direction.html\n :align: center\n :scale: 50\n\n Demo Axis Direction\n\nThe axis_direction can be adjusted in the AxisArtist level, or in the\nlevel of its child artists, i.e., ticks, ticklabels, and axis-label. ::\n\n ax1.axis[\"left\"].set_axis_direction(\"top\")\n\nchanges axis_direction of all the associated artist with the \"left\"\naxis, while ::\n\n ax1.axis[\"left\"].major_ticklabels.set_axis_direction(\"top\")\n\nchanges the axis_direction of only the major_ticklabels. Note that\nset_axis_direction in the AxisArtist level changes the\nticklabel_direction and label_direction, while changing the\naxis_direction of ticks, ticklabels, and axis-label does not affect\nthem.\n\nIf you want to make ticks outward and ticklabels inside the axes,\nuse invert_ticklabel_direction method. ::\n\n ax.axis[:].invert_ticklabel_direction()\n\nA related method is \"set_tick_out\". It makes ticks outward (as a\nmatter of fact, it makes ticks toward the opposite direction of the\ndefault direction). ::\n\n ax.axis[:].major_ticks.set_tick_out(True)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction03_001.png\n :target: ../../gallery/axisartist/simple_axis_direction03.html\n :align: center\n :scale: 50\n\n Simple Axis Direction03\n\nSo, in summary,\n\n * AxisArtist's methods\n * set_axis_direction : \"left\", \"right\", \"bottom\", or \"top\"\n * set_ticklabel_direction : \"+\" or \"-\"\n * set_axislabel_direction : \"+\" or \"-\"\n * invert_ticklabel_direction\n * Ticks' methods (major_ticks and minor_ticks)\n * set_tick_out : True or False\n * set_ticksize : size in points\n * TickLabels' methods (major_ticklabels and minor_ticklabels)\n * set_axis_direction : \"left\", \"right\", \"bottom\", or \"top\"\n * set_rotation : angle with respect to the reference direction\n * set_ha and set_va : see below\n * AxisLabels' methods (label)\n * set_axis_direction : \"left\", \"right\", \"bottom\", or \"top\"\n * set_rotation : angle with respect to the reference direction\n * set_ha and set_va\n\nAdjusting ticklabels alignment\n------------------------------\n\nAlignment of TickLabels are treated specially. See below\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_ticklabel_alignment_001.png\n :target: ../../gallery/axisartist/demo_ticklabel_alignment.html\n :align: center\n :scale: 50\n\n Demo Ticklabel Alignment\n\nAdjusting pad\n-------------\n\nTo change the pad between ticks and ticklabels ::\n\n ax.axis[\"left\"].major_ticklabels.set_pad(10)\n\nOr ticklabels and axis-label ::\n\n ax.axis[\"left\"].label.set_pad(10)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_pad_001.png\n :target: ../../gallery/axisartist/simple_axis_pad.html\n :align: center\n :scale: 50\n\n Simple Axis Pad\n\nGridHelper\n==========\n\nTo actually define a curvilinear coordinate, you have to use your own\ngrid helper. A generalised version of grid helper class is supplied\nand this class should suffice in most of cases. A user may provide\ntwo functions which defines a transformation (and its inverse pair)\nfrom the curved coordinate to (rectilinear) image coordinate. Note that\nwhile ticks and grids are drawn for curved coordinate, the data\ntransform of the axes itself (ax.transData) is still rectilinear\n(image) coordinate. ::\n\n from mpl_toolkits.axisartist.grid_helper_curvelinear \\\n import GridHelperCurveLinear\n from mpl_toolkits.axisartist import Subplot\n\n # from curved coordinate to rectlinear coordinate.\n def tr(x, y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y-x\n\n # from rectlinear coordinate to curved coordinate.\n def inv_tr(x,y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y+x\n\n grid_helper = GridHelperCurveLinear((tr, inv_tr))\n\n ax1 = Subplot(fig, 1, 1, 1, grid_helper=grid_helper)\n\n fig.add_subplot(ax1)\n\nYou may use matplotlib's Transform instance instead (but a\ninverse transformation must be defined). Often, coordinate range in a\ncurved coordinate system may have a limited range, or may have\ncycles. In those cases, a more customized version of grid helper is\nrequired. ::\n\n import mpl_toolkits.axisartist.angle_helper as angle_helper\n\n # PolarAxes.PolarTransform takes radian. However, we want our coordinate\n # system in degree\n tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform()\n\n # extreme finder : find a range of coordinate.\n # 20, 20 : number of sampling points along x, y direction\n # The first coordinate (longitude, but theta in polar)\n # has a cycle of 360 degree.\n # The second coordinate (latitude, but radius in polar) has a minimum of 0\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle = 360,\n lat_cycle = None,\n lon_minmax = None,\n lat_minmax = (0, np.inf),\n )\n\n # Find a grid values appropriate for the coordinate (degree,\n # minute, second). The argument is a approximate number of grids.\n grid_locator1 = angle_helper.LocatorDMS(12)\n\n # And also uses an appropriate formatter. Note that,the\n # acceptable Locator and Formatter class is a bit different than\n # that of mpl's, and you cannot directly use mpl's Locator and\n # Formatter here (but may be possible in the future).\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n tick_formatter1=tick_formatter1\n )\n\nAgain, the *transData* of the axes is still a rectilinear coordinate\n(image coordinate). You may manually do conversion between two\ncoordinates, or you may use Parasite Axes for convenience.::\n\n ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper)\n\n # A parasite axes with given transform\n ax2 = ParasiteAxesAuxTrans(ax1, tr, \"equal\")\n # note that ax2.transData == tr + ax1.transData\n # Anything you draw in ax2 will match the ticks and grids of ax1.\n ax1.parasites.append(ax2)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png\n :target: ../../gallery/axisartist/demo_curvelinear_grid.html\n :align: center\n :scale: 50\n\n Demo Curvelinear Grid\n\nFloatingAxis\n============\n\nA floating axis is an axis one of whose data coordinate is fixed, i.e,\nits location is not fixed in Axes coordinate but changes as axes data\nlimits changes. A floating axis can be created using\n*new_floating_axis* method. However, it is your responsibility that\nthe resulting AxisArtist is properly added to the axes. A recommended\nway is to add it as an item of Axes's axis attribute.::\n\n # floating axis whose first (index starts from 0) coordinate\n # (theta) is fixed at 60\n\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 60)\n axis.label.set_text(r\"$\\theta = 60^{\\circ}$\")\n axis.label.set_visible(True)\n\nSee the first example of this page.\n\nCurrent Limitations and TODO's\n==============================\n\nThe code need more refinement. Here is a incomplete list of issues and TODO's\n\n* No easy way to support a user customized tick location (for\n curvilinear grid). A new Locator class needs to be created.\n\n* FloatingAxis may have coordinate limits, e.g., a floating axis of x\n = 0, but y only spans from 0 to 1.\n\n* The location of axislabel of FloatingAxis needs to be optionally\n given as a coordinate value. ex, a floating axis of x=0 with label at y=1\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/47c705a1572f479dbaa14dfaebd5b05e/color_cycler.ipynb b/_downloads/47c705a1572f479dbaa14dfaebd5b05e/color_cycler.ipynb deleted file mode 120000 index fda7ca20090..00000000000 --- a/_downloads/47c705a1572f479dbaa14dfaebd5b05e/color_cycler.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/47c705a1572f479dbaa14dfaebd5b05e/color_cycler.ipynb \ No newline at end of file diff --git a/_downloads/47caf3ffe549709756bb51400f08df46/multicursor.ipynb b/_downloads/47caf3ffe549709756bb51400f08df46/multicursor.ipynb deleted file mode 100644 index cc14d66dfbb..00000000000 --- a/_downloads/47caf3ffe549709756bb51400f08df46/multicursor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multicursor\n\n\nShowing a cursor on multiple plots simultaneously.\n\nThis example generates two subplots and on hovering the cursor over data in one\nsubplot, the values of that datapoint are shown in both respectively.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import MultiCursor\n\nt = np.arange(0.0, 2.0, 0.01)\ns1 = np.sin(2*np.pi*t)\ns2 = np.sin(4*np.pi*t)\n\nfig, (ax1, ax2) = plt.subplots(2, sharex=True)\nax1.plot(t, s1)\nax2.plot(t, s2)\n\nmulti = MultiCursor(fig.canvas, (ax1, ax2), color='r', lw=1)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/47dbc8f478e702cbe885688ba13e2efa/text3d.ipynb b/_downloads/47dbc8f478e702cbe885688ba13e2efa/text3d.ipynb deleted file mode 120000 index 03c7e6a0b9a..00000000000 --- a/_downloads/47dbc8f478e702cbe885688ba13e2efa/text3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/47dbc8f478e702cbe885688ba13e2efa/text3d.ipynb \ No newline at end of file diff --git a/_downloads/47e6710db9592d1a63ea96544f604a9f/legend.ipynb b/_downloads/47e6710db9592d1a63ea96544f604a9f/legend.ipynb deleted file mode 120000 index 58246e8507c..00000000000 --- a/_downloads/47e6710db9592d1a63ea96544f604a9f/legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/47e6710db9592d1a63ea96544f604a9f/legend.ipynb \ No newline at end of file diff --git a/_downloads/47eb7926d8228c9cb715dc7c68cbbc51/wire3d_animation_sgskip.py b/_downloads/47eb7926d8228c9cb715dc7c68cbbc51/wire3d_animation_sgskip.py deleted file mode 120000 index 50fe0b3155c..00000000000 --- a/_downloads/47eb7926d8228c9cb715dc7c68cbbc51/wire3d_animation_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/47eb7926d8228c9cb715dc7c68cbbc51/wire3d_animation_sgskip.py \ No newline at end of file diff --git a/_downloads/47fc1bae6e734220e6c0f4a34f298bde/scatter3d.py b/_downloads/47fc1bae6e734220e6c0f4a34f298bde/scatter3d.py deleted file mode 120000 index 8defd4c4c43..00000000000 --- a/_downloads/47fc1bae6e734220e6c0f4a34f298bde/scatter3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/47fc1bae6e734220e6c0f4a34f298bde/scatter3d.py \ No newline at end of file diff --git a/_downloads/480a3d4a0205aeb61cdf934ae2157bf9/image_thumbnail_sgskip.py b/_downloads/480a3d4a0205aeb61cdf934ae2157bf9/image_thumbnail_sgskip.py deleted file mode 120000 index bd8a47b8247..00000000000 --- a/_downloads/480a3d4a0205aeb61cdf934ae2157bf9/image_thumbnail_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/480a3d4a0205aeb61cdf934ae2157bf9/image_thumbnail_sgskip.py \ No newline at end of file diff --git a/_downloads/480ce0d27afd147eb8ed62bb9461b0c5/step_demo.ipynb b/_downloads/480ce0d27afd147eb8ed62bb9461b0c5/step_demo.ipynb deleted file mode 120000 index ce5af201303..00000000000 --- a/_downloads/480ce0d27afd147eb8ed62bb9461b0c5/step_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/480ce0d27afd147eb8ed62bb9461b0c5/step_demo.ipynb \ No newline at end of file diff --git a/_downloads/4812efa35616ecbd90c5c891ac90805e/matshow.py b/_downloads/4812efa35616ecbd90c5c891ac90805e/matshow.py deleted file mode 120000 index ebf8ba7f6b5..00000000000 --- a/_downloads/4812efa35616ecbd90c5c891ac90805e/matshow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4812efa35616ecbd90c5c891ac90805e/matshow.py \ No newline at end of file diff --git a/_downloads/481efd0c4df6faa97ae41af0eb3524a2/gridspec_multicolumn.ipynb b/_downloads/481efd0c4df6faa97ae41af0eb3524a2/gridspec_multicolumn.ipynb deleted file mode 120000 index 99e21900eee..00000000000 --- a/_downloads/481efd0c4df6faa97ae41af0eb3524a2/gridspec_multicolumn.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/481efd0c4df6faa97ae41af0eb3524a2/gridspec_multicolumn.ipynb \ No newline at end of file diff --git a/_downloads/482134bf09121c10e623a0eab6835f47/demo_annotation_box.ipynb b/_downloads/482134bf09121c10e623a0eab6835f47/demo_annotation_box.ipynb deleted file mode 120000 index 0c71bc8ecf6..00000000000 --- a/_downloads/482134bf09121c10e623a0eab6835f47/demo_annotation_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/482134bf09121c10e623a0eab6835f47/demo_annotation_box.ipynb \ No newline at end of file diff --git a/_downloads/48229d6f0e0ea87a8778b9c0c8366851/colormap-manipulation.py b/_downloads/48229d6f0e0ea87a8778b9c0c8366851/colormap-manipulation.py deleted file mode 100644 index 76a82e171b1..00000000000 --- a/_downloads/48229d6f0e0ea87a8778b9c0c8366851/colormap-manipulation.py +++ /dev/null @@ -1,213 +0,0 @@ -""" -******************************** -Creating Colormaps in Matplotlib -******************************** - -Matplotlib has a number of built-in colormaps accessible via -`.matplotlib.cm.get_cmap`. There are also external libraries like -palettable_ that have many extra colormaps. - -.. _palettable: https://jiffyclub.github.io/palettable/ - -However, we often want to create or manipulate colormaps in Matplotlib. -This can be done using the class `.ListedColormap` and a Nx4 numpy array of -values between 0 and 1 to represent the RGBA values of the colormap. There -is also a `.LinearSegmentedColormap` class that allows colormaps to be -specified with a few anchor points defining segments, and linearly -interpolating between the anchor points. - -Getting colormaps and accessing their values -============================================ - -First, getting a named colormap, most of which are listed in -:doc:`/tutorials/colors/colormaps` requires the use of -`.matplotlib.cm.get_cmap`, which returns a -:class:`.matplotlib.colors.ListedColormap` object. The second argument gives -the size of the list of colors used to define the colormap, and below we -use a modest value of 12 so there are not a lot of values to look at. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib import cm -from matplotlib.colors import ListedColormap, LinearSegmentedColormap - -viridis = cm.get_cmap('viridis', 12) -print(viridis) - -############################################################################## -# The object ``viridis`` is a callable, that when passed a float between -# 0 and 1 returns an RGBA value from the colormap: - -print(viridis(0.56)) - -############################################################################## -# The list of colors that comprise the colormap can be directly accessed using -# the ``colors`` property, -# or it can be accessed indirectly by calling ``viridis`` with an array -# of values matching the length of the colormap. Note that the returned list -# is in the form of an RGBA Nx4 array, where N is the length of the colormap. - -print('viridis.colors', viridis.colors) -print('viridis(range(12))', viridis(range(12))) -print('viridis(np.linspace(0, 1, 12))', viridis(np.linspace(0, 1, 12))) - -############################################################################## -# The colormap is a lookup table, so "oversampling" the colormap returns -# nearest-neighbor interpolation (note the repeated colors in the list below) - -print('viridis(np.linspace(0, 1, 15))', viridis(np.linspace(0, 1, 15))) - -############################################################################## -# Creating listed colormaps -# ========================= -# -# This is essential the inverse operation of the above where we supply a -# Nx4 numpy array with all values between 0 and 1, -# to `.ListedColormap` to make a new colormap. This means that -# any numpy operations that we can do on a Nx4 array make carpentry of -# new colormaps from existing colormaps quite straight forward. -# -# Suppose we want to make the first 25 entries of a 256-length "viridis" -# colormap pink for some reason: - -viridis = cm.get_cmap('viridis', 256) -newcolors = viridis(np.linspace(0, 1, 256)) -pink = np.array([248/256, 24/256, 148/256, 1]) -newcolors[:25, :] = pink -newcmp = ListedColormap(newcolors) - - -def plot_examples(cms): - """ - helper function to plot two colormaps - """ - np.random.seed(19680801) - data = np.random.randn(30, 30) - - fig, axs = plt.subplots(1, 2, figsize=(6, 3), constrained_layout=True) - for [ax, cmap] in zip(axs, cms): - psm = ax.pcolormesh(data, cmap=cmap, rasterized=True, vmin=-4, vmax=4) - fig.colorbar(psm, ax=ax) - plt.show() - -plot_examples([viridis, newcmp]) - -############################################################################## -# We can easily reduce the dynamic range of a colormap; here we choose the -# middle 0.5 of the colormap. However, we need to interpolate from a larger -# colormap, otherwise the new colormap will have repeated values. - -viridisBig = cm.get_cmap('viridis', 512) -newcmp = ListedColormap(viridisBig(np.linspace(0.25, 0.75, 256))) -plot_examples([viridis, newcmp]) - -############################################################################## -# and we can easily concatenate two colormaps: - -top = cm.get_cmap('Oranges_r', 128) -bottom = cm.get_cmap('Blues', 128) - -newcolors = np.vstack((top(np.linspace(0, 1, 128)), - bottom(np.linspace(0, 1, 128)))) -newcmp = ListedColormap(newcolors, name='OrangeBlue') -plot_examples([viridis, newcmp]) - -############################################################################## -# Of course we need not start from a named colormap, we just need to create -# the Nx4 array to pass to `.ListedColormap`. Here we create a -# brown colormap that goes to white.... - -N = 256 -vals = np.ones((N, 4)) -vals[:, 0] = np.linspace(90/256, 1, N) -vals[:, 1] = np.linspace(39/256, 1, N) -vals[:, 2] = np.linspace(41/256, 1, N) -newcmp = ListedColormap(vals) -plot_examples([viridis, newcmp]) - -############################################################################## -# Creating linear segmented colormaps -# =================================== -# -# `.LinearSegmentedColormap` class specifies colormaps using anchor points -# between which RGB(A) values are interpolated. -# -# The format to specify these colormaps allows discontinuities at the anchor -# points. Each anchor point is specified as a row in a matrix of the -# form ``[x[i] yleft[i] yright[i]]``, where ``x[i]`` is the anchor, and -# ``yleft[i]`` and ``yright[i]`` are the values of the color on either -# side of the anchor point. -# -# If there are no discontinuities, then ``yleft[i]=yright[i]``: - -cdict = {'red': [[0.0, 0.0, 0.0], - [0.5, 1.0, 1.0], - [1.0, 1.0, 1.0]], - 'green': [[0.0, 0.0, 0.0], - [0.25, 0.0, 0.0], - [0.75, 1.0, 1.0], - [1.0, 1.0, 1.0]], - 'blue': [[0.0, 0.0, 0.0], - [0.5, 0.0, 0.0], - [1.0, 1.0, 1.0]]} - - -def plot_linearmap(cdict): - newcmp = LinearSegmentedColormap('testCmap', segmentdata=cdict, N=256) - rgba = newcmp(np.linspace(0, 1, 256)) - fig, ax = plt.subplots(figsize=(4, 3), constrained_layout=True) - col = ['r', 'g', 'b'] - for xx in [0.25, 0.5, 0.75]: - ax.axvline(xx, color='0.7', linestyle='--') - for i in range(3): - ax.plot(np.arange(256)/256, rgba[:, i], color=col[i]) - ax.set_xlabel('index') - ax.set_ylabel('RGB') - plt.show() - -plot_linearmap(cdict) - -############################################################################# -# In order to make a discontinuity at an anchor point, the third column is -# different than the second. The matrix for each of "red", "green", "blue", -# and optionally "alpha" is set up as:: -# -# cdict['red'] = [... -# [x[i] yleft[i] yright[i]], -# [x[i+1] yleft[i+1] yright[i+1]], -# ...] -# -# and for values passed to the colormap between ``x[i]`` and ``x[i+1]``, -# the interpolation is between ``yright[i]`` and ``yleft[i+1]``. -# -# In the example below there is a discontinuity in red at 0.5. The -# interpolation between 0 and 0.5 goes from 0.3 to 1, and between 0.5 and 1 -# it goes from 0.9 to 1. Note that red[0, 1], and red[2, 2] are both -# superfluous to the interpolation because red[0, 1] is the value to the -# left of 0, and red[2, 2] is the value to the right of 1.0. - -cdict['red'] = [[0.0, 0.0, 0.3], - [0.5, 1.0, 0.9], - [1.0, 1.0, 1.0]] -plot_linearmap(cdict) - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pcolormesh -matplotlib.figure.Figure.colorbar -matplotlib.colors -matplotlib.colors.LinearSegmentedColormap -matplotlib.colors.ListedColormap -matplotlib.cm -matplotlib.cm.get_cmap diff --git a/_downloads/482f98e229bafb6418c30c674dddc5e9/image_transparency_blend.py b/_downloads/482f98e229bafb6418c30c674dddc5e9/image_transparency_blend.py deleted file mode 120000 index f3045c26d74..00000000000 --- a/_downloads/482f98e229bafb6418c30c674dddc5e9/image_transparency_blend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/482f98e229bafb6418c30c674dddc5e9/image_transparency_blend.py \ No newline at end of file diff --git a/_downloads/4832cb25a862e28028345c7e957a704e/subplot_demo.ipynb b/_downloads/4832cb25a862e28028345c7e957a704e/subplot_demo.ipynb deleted file mode 120000 index 3f02fc8036c..00000000000 --- a/_downloads/4832cb25a862e28028345c7e957a704e/subplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4832cb25a862e28028345c7e957a704e/subplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/483572249e292e35ac5d567388da3262/categorical_variables.ipynb b/_downloads/483572249e292e35ac5d567388da3262/categorical_variables.ipynb deleted file mode 120000 index bfe3f02407c..00000000000 --- a/_downloads/483572249e292e35ac5d567388da3262/categorical_variables.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/483572249e292e35ac5d567388da3262/categorical_variables.ipynb \ No newline at end of file diff --git a/_downloads/48358046f3ace43b7ac5de0692c866bc/step_demo.py b/_downloads/48358046f3ace43b7ac5de0692c866bc/step_demo.py deleted file mode 100644 index 12006b197e5..00000000000 --- a/_downloads/48358046f3ace43b7ac5de0692c866bc/step_demo.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -========= -Step Demo -========= - -This example demonstrates the use of `.pyplot.step` for piece-wise constant -curves. In particular, it illustrates the effect of the parameter *where* -on the step position. - -The circular markers created with `.pyplot.plot` show the actual data -positions so that it's easier to see the effect of *where*. - -""" -import numpy as np -import matplotlib.pyplot as plt - -x = np.arange(14) -y = np.sin(x / 2) - -plt.step(x, y + 2, label='pre (default)') -plt.plot(x, y + 2, 'C0o', alpha=0.5) - -plt.step(x, y + 1, where='mid', label='mid') -plt.plot(x, y + 1, 'C1o', alpha=0.5) - -plt.step(x, y, where='post', label='post') -plt.plot(x, y, 'C2o', alpha=0.5) - -plt.legend(title='Parameter where:') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.step -matplotlib.pyplot.step diff --git a/_downloads/483e75129c16506e4d497d4c9b304201/legend_guide.py b/_downloads/483e75129c16506e4d497d4c9b304201/legend_guide.py deleted file mode 100644 index 88ec2460e0d..00000000000 --- a/_downloads/483e75129c16506e4d497d4c9b304201/legend_guide.py +++ /dev/null @@ -1,290 +0,0 @@ -""" -============ -Legend guide -============ - -Generating legends flexibly in Matplotlib. - -.. currentmodule:: matplotlib.pyplot - -This legend guide is an extension of the documentation available at -:func:`~matplotlib.pyplot.legend` - please ensure you are familiar with -contents of that documentation before proceeding with this guide. - - -This guide makes use of some common terms, which are documented here for clarity: - -.. glossary:: - - legend entry - A legend is made up of one or more legend entries. An entry is made up of - exactly one key and one label. - - legend key - The colored/patterned marker to the left of each legend label. - - legend label - The text which describes the handle represented by the key. - - legend handle - The original object which is used to generate an appropriate entry in - the legend. - - -Controlling the legend entries -============================== - -Calling :func:`legend` with no arguments automatically fetches the legend -handles and their associated labels. This functionality is equivalent to:: - - handles, labels = ax.get_legend_handles_labels() - ax.legend(handles, labels) - -The :meth:`~matplotlib.axes.Axes.get_legend_handles_labels` function returns -a list of handles/artists which exist on the Axes which can be used to -generate entries for the resulting legend - it is worth noting however that -not all artists can be added to a legend, at which point a "proxy" will have -to be created (see :ref:`proxy_legend_handles` for further details). - -For full control of what is being added to the legend, it is common to pass -the appropriate handles directly to :func:`legend`:: - - line_up, = plt.plot([1,2,3], label='Line 2') - line_down, = plt.plot([3,2,1], label='Line 1') - plt.legend(handles=[line_up, line_down]) - -In some cases, it is not possible to set the label of the handle, so it is -possible to pass through the list of labels to :func:`legend`:: - - line_up, = plt.plot([1,2,3], label='Line 2') - line_down, = plt.plot([3,2,1], label='Line 1') - plt.legend([line_up, line_down], ['Line Up', 'Line Down']) - - -.. _proxy_legend_handles: - -Creating artists specifically for adding to the legend (aka. Proxy artists) -=========================================================================== - -Not all handles can be turned into legend entries automatically, -so it is often necessary to create an artist which *can*. Legend handles -don't have to exists on the Figure or Axes in order to be used. - -Suppose we wanted to create a legend which has an entry for some data which -is represented by a red color: -""" - -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -red_patch = mpatches.Patch(color='red', label='The red data') -plt.legend(handles=[red_patch]) - -plt.show() - -############################################################################### -# There are many supported legend handles, instead of creating a patch of color -# we could have created a line with a marker: - -import matplotlib.lines as mlines - -blue_line = mlines.Line2D([], [], color='blue', marker='*', - markersize=15, label='Blue stars') -plt.legend(handles=[blue_line]) - -plt.show() - -############################################################################### -# Legend location -# =============== -# -# The location of the legend can be specified by the keyword argument -# *loc*. Please see the documentation at :func:`legend` for more details. -# -# The ``bbox_to_anchor`` keyword gives a great degree of control for manual -# legend placement. For example, if you want your axes legend located at the -# figure's top right-hand corner instead of the axes' corner, simply specify -# the corner's location, and the coordinate system of that location:: -# -# plt.legend(bbox_to_anchor=(1, 1), -# bbox_transform=plt.gcf().transFigure) -# -# More examples of custom legend placement: - -plt.subplot(211) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") - -# Place a legend above this subplot, expanding itself to -# fully use the given bounding box. -plt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left', - ncol=2, mode="expand", borderaxespad=0.) - -plt.subplot(223) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") -# Place a legend to the right of this smaller subplot. -plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.) - -plt.show() - -############################################################################### -# Multiple legends on the same Axes -# ================================= -# -# Sometimes it is more clear to split legend entries across multiple -# legends. Whilst the instinctive approach to doing this might be to call -# the :func:`legend` function multiple times, you will find that only one -# legend ever exists on the Axes. This has been done so that it is possible -# to call :func:`legend` repeatedly to update the legend to the latest -# handles on the Axes, so to persist old legend instances, we must add them -# manually to the Axes: - -line1, = plt.plot([1, 2, 3], label="Line 1", linestyle='--') -line2, = plt.plot([3, 2, 1], label="Line 2", linewidth=4) - -# Create a legend for the first line. -first_legend = plt.legend(handles=[line1], loc='upper right') - -# Add the legend manually to the current Axes. -ax = plt.gca().add_artist(first_legend) - -# Create another legend for the second line. -plt.legend(handles=[line2], loc='lower right') - -plt.show() - -############################################################################### -# Legend Handlers -# =============== -# -# In order to create legend entries, handles are given as an argument to an -# appropriate :class:`~matplotlib.legend_handler.HandlerBase` subclass. -# The choice of handler subclass is determined by the following rules: -# -# 1. Update :func:`~matplotlib.legend.Legend.get_legend_handler_map` -# with the value in the ``handler_map`` keyword. -# 2. Check if the ``handle`` is in the newly created ``handler_map``. -# 3. Check if the type of ``handle`` is in the newly created -# ``handler_map``. -# 4. Check if any of the types in the ``handle``'s mro is in the newly -# created ``handler_map``. -# -# For completeness, this logic is mostly implemented in -# :func:`~matplotlib.legend.Legend.get_legend_handler`. -# -# All of this flexibility means that we have the necessary hooks to implement -# custom handlers for our own type of legend key. -# -# The simplest example of using custom handlers is to instantiate one of the -# existing :class:`~matplotlib.legend_handler.HandlerBase` subclasses. For the -# sake of simplicity, let's choose :class:`matplotlib.legend_handler.HandlerLine2D` -# which accepts a ``numpoints`` argument (note numpoints is a keyword -# on the :func:`legend` function for convenience). We can then pass the mapping -# of instance to Handler as a keyword to legend. - -from matplotlib.legend_handler import HandlerLine2D - -line1, = plt.plot([3, 2, 1], marker='o', label='Line 1') -line2, = plt.plot([1, 2, 3], marker='o', label='Line 2') - -plt.legend(handler_map={line1: HandlerLine2D(numpoints=4)}) - -############################################################################### -# As you can see, "Line 1" now has 4 marker points, where "Line 2" has 2 (the -# default). Try the above code, only change the map's key from ``line1`` to -# ``type(line1)``. Notice how now both :class:`~matplotlib.lines.Line2D` instances -# get 4 markers. -# -# Along with handlers for complex plot types such as errorbars, stem plots -# and histograms, the default ``handler_map`` has a special ``tuple`` handler -# (:class:`~matplotlib.legend_handler.HandlerTuple`) which simply plots -# the handles on top of one another for each item in the given tuple. The -# following example demonstrates combining two legend keys on top of one another: - -from numpy.random import randn - -z = randn(10) - -red_dot, = plt.plot(z, "ro", markersize=15) -# Put a white cross over some of the data. -white_cross, = plt.plot(z[:5], "w+", markeredgewidth=3, markersize=15) - -plt.legend([red_dot, (red_dot, white_cross)], ["Attr A", "Attr A+B"]) - -############################################################################### -# The :class:`~matplotlib.legend_handler.HandlerTuple` class can also be used to -# assign several legend keys to the same entry: - -from matplotlib.legend_handler import HandlerLine2D, HandlerTuple - -p1, = plt.plot([1, 2.5, 3], 'r-d') -p2, = plt.plot([3, 2, 1], 'k-o') - -l = plt.legend([(p1, p2)], ['Two keys'], numpoints=1, - handler_map={tuple: HandlerTuple(ndivide=None)}) - -############################################################################### -# Implementing a custom legend handler -# ------------------------------------ -# -# A custom handler can be implemented to turn any handle into a legend key (handles -# don't necessarily need to be matplotlib artists). -# The handler must implement a "legend_artist" method which returns a -# single artist for the legend to use. Signature details about the "legend_artist" -# are documented at :meth:`~matplotlib.legend_handler.HandlerBase.legend_artist`. - -import matplotlib.patches as mpatches - - -class AnyObject(object): - pass - - -class AnyObjectHandler(object): - def legend_artist(self, legend, orig_handle, fontsize, handlebox): - x0, y0 = handlebox.xdescent, handlebox.ydescent - width, height = handlebox.width, handlebox.height - patch = mpatches.Rectangle([x0, y0], width, height, facecolor='red', - edgecolor='black', hatch='xx', lw=3, - transform=handlebox.get_transform()) - handlebox.add_artist(patch) - return patch - - -plt.legend([AnyObject()], ['My first handler'], - handler_map={AnyObject: AnyObjectHandler()}) - -############################################################################### -# Alternatively, had we wanted to globally accept ``AnyObject`` instances without -# needing to manually set the ``handler_map`` keyword all the time, we could have -# registered the new handler with:: -# -# from matplotlib.legend import Legend -# Legend.update_default_handler_map({AnyObject: AnyObjectHandler()}) -# -# Whilst the power here is clear, remember that there are already many handlers -# implemented and what you want to achieve may already be easily possible with -# existing classes. For example, to produce elliptical legend keys, rather than -# rectangular ones: - -from matplotlib.legend_handler import HandlerPatch - - -class HandlerEllipse(HandlerPatch): - def create_artists(self, legend, orig_handle, - xdescent, ydescent, width, height, fontsize, trans): - center = 0.5 * width - 0.5 * xdescent, 0.5 * height - 0.5 * ydescent - p = mpatches.Ellipse(xy=center, width=width + xdescent, - height=height + ydescent) - self.update_prop(p, orig_handle, legend) - p.set_transform(trans) - return [p] - - -c = mpatches.Circle((0.5, 0.5), 0.25, facecolor="green", - edgecolor="red", linewidth=3) -plt.gca().add_patch(c) - -plt.legend([c], ["An ellipse, not a rectangle"], - handler_map={mpatches.Circle: HandlerEllipse()}) diff --git a/_downloads/48451e91a824990a70a38e023e17284e/eventplot_demo.ipynb b/_downloads/48451e91a824990a70a38e023e17284e/eventplot_demo.ipynb deleted file mode 120000 index 3abf5bd7c55..00000000000 --- a/_downloads/48451e91a824990a70a38e023e17284e/eventplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/48451e91a824990a70a38e023e17284e/eventplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/4846560de58a52bc1842ae31098556f1/pgf_texsystem.ipynb b/_downloads/4846560de58a52bc1842ae31098556f1/pgf_texsystem.ipynb deleted file mode 120000 index fb998469e95..00000000000 --- a/_downloads/4846560de58a52bc1842ae31098556f1/pgf_texsystem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4846560de58a52bc1842ae31098556f1/pgf_texsystem.ipynb \ No newline at end of file diff --git a/_downloads/484a7ba43569997926101f1f4879dbb9/embedding_in_gtk3_sgskip.py b/_downloads/484a7ba43569997926101f1f4879dbb9/embedding_in_gtk3_sgskip.py deleted file mode 120000 index 7e85ecc10b7..00000000000 --- a/_downloads/484a7ba43569997926101f1f4879dbb9/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/484a7ba43569997926101f1f4879dbb9/embedding_in_gtk3_sgskip.py \ No newline at end of file diff --git a/_downloads/485ec8bae3b3697451ec3e841106282f/demo_parasite_axes2.py b/_downloads/485ec8bae3b3697451ec3e841106282f/demo_parasite_axes2.py deleted file mode 120000 index 92dd0380074..00000000000 --- a/_downloads/485ec8bae3b3697451ec3e841106282f/demo_parasite_axes2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/485ec8bae3b3697451ec3e841106282f/demo_parasite_axes2.py \ No newline at end of file diff --git a/_downloads/4867005eba978413622f28a4542088cf/demo_curvelinear_grid.ipynb b/_downloads/4867005eba978413622f28a4542088cf/demo_curvelinear_grid.ipynb deleted file mode 100644 index 69d05769f64..00000000000 --- a/_downloads/4867005eba978413622f28a4542088cf/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Curvilinear grid demo\n\n\nCustom grid and ticklines.\n\nThis example demonstrates how to use\n`~.grid_helper_curvelinear.GridHelperCurveLinear` to define custom grids and\nticklines by applying a transformation on the grid. This can be used, as\nshown on the second plot, to create polar projections in a rectangular box.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\n\nfrom mpl_toolkits.axisartist import (\n angle_helper, Subplot, SubplotHost, ParasiteAxesAuxTrans)\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import (\n GridHelperCurveLinear)\n\n\ndef curvelinear_test1(fig):\n \"\"\"\n Grid for custom transform.\n \"\"\"\n\n def tr(x, y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y - x\n\n def inv_tr(x, y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y + x\n\n grid_helper = GridHelperCurveLinear((tr, inv_tr))\n\n ax1 = Subplot(fig, 1, 2, 1, grid_helper=grid_helper)\n # ax1 will have a ticks and gridlines defined by the given\n # transform (+ transData of the Axes). Note that the transform of\n # the Axes itself (i.e., transData) is not affected by the given\n # transform.\n\n fig.add_subplot(ax1)\n\n xx, yy = tr([3, 6], [5, 10])\n ax1.plot(xx, yy, linewidth=2.0)\n\n ax1.set_aspect(1)\n ax1.set_xlim(0, 10)\n ax1.set_ylim(0, 10)\n\n ax1.axis[\"t\"] = ax1.new_floating_axis(0, 3)\n ax1.axis[\"t2\"] = ax1.new_floating_axis(1, 7)\n ax1.grid(True, zorder=0)\n\n\ndef curvelinear_test2(fig):\n \"\"\"\n Polar projection, but in a rectangular box.\n \"\"\"\n\n # PolarAxes.PolarTransform takes radian. However, we want our coordinate\n # system in degree\n tr = Affine2D().scale(np.pi/180, 1) + PolarAxes.PolarTransform()\n # Polar projection, which involves cycle, and also has limits in\n # its coordinates, needs a special method to find the extremes\n # (min, max of the coordinate within the view).\n extreme_finder = angle_helper.ExtremeFinderCycle(\n nx=20, ny=20, # Number of sampling points in each direction.\n lon_cycle=360, lat_cycle=None,\n lon_minmax=None, lat_minmax=(0, np.inf),\n )\n # Find grid values appropriate for the coordinate (degree, minute, second).\n grid_locator1 = angle_helper.LocatorDMS(12)\n # Use an appropriate formatter. Note that the acceptable Locator and\n # Formatter classes are a bit different than that of Matplotlib, which\n # cannot directly be used here (this may be possible in the future).\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(\n tr, extreme_finder=extreme_finder,\n grid_locator1=grid_locator1, tick_formatter1=tick_formatter1)\n ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper)\n\n # make ticklabels of right and top axis visible.\n ax1.axis[\"right\"].major_ticklabels.set_visible(True)\n ax1.axis[\"top\"].major_ticklabels.set_visible(True)\n # let right axis shows ticklabels for 1st coordinate (angle)\n ax1.axis[\"right\"].get_helper().nth_coord_ticks = 0\n # let bottom axis shows ticklabels for 2nd coordinate (radius)\n ax1.axis[\"bottom\"].get_helper().nth_coord_ticks = 1\n\n fig.add_subplot(ax1)\n\n ax1.set_aspect(1)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n ax1.grid(True, zorder=0)\n\n # A parasite axes with given transform\n ax2 = ParasiteAxesAuxTrans(ax1, tr, \"equal\")\n # note that ax2.transData == tr + ax1.transData\n # Anything you draw in ax2 will match the ticks and grids of ax1.\n ax1.parasites.append(ax2)\n ax2.plot(np.linspace(0, 30, 51), np.linspace(10, 10, 51), linewidth=2)\n\n\nif __name__ == \"__main__\":\n fig = plt.figure(figsize=(7, 4))\n\n curvelinear_test1(fig)\n curvelinear_test2(fig)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/487cc86703a8bc588a1a6157ccc13e07/demo_colorbar_of_inset_axes.py b/_downloads/487cc86703a8bc588a1a6157ccc13e07/demo_colorbar_of_inset_axes.py deleted file mode 120000 index 009fbcc2af9..00000000000 --- a/_downloads/487cc86703a8bc588a1a6157ccc13e07/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/487cc86703a8bc588a1a6157ccc13e07/demo_colorbar_of_inset_axes.py \ No newline at end of file diff --git a/_downloads/487ce16a61c45b08920040a5cff78667/bachelors_degrees_by_gender.py b/_downloads/487ce16a61c45b08920040a5cff78667/bachelors_degrees_by_gender.py deleted file mode 120000 index 1189e739680..00000000000 --- a/_downloads/487ce16a61c45b08920040a5cff78667/bachelors_degrees_by_gender.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/487ce16a61c45b08920040a5cff78667/bachelors_degrees_by_gender.py \ No newline at end of file diff --git a/_downloads/488df7a90543c85cf69a3f92d0e9d699/pgf_preamble_sgskip.ipynb b/_downloads/488df7a90543c85cf69a3f92d0e9d699/pgf_preamble_sgskip.ipynb deleted file mode 100644 index 6cfee118475..00000000000 --- a/_downloads/488df7a90543c85cf69a3f92d0e9d699/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pgf Preamble\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib as mpl\nmpl.use(\"pgf\")\nimport matplotlib.pyplot as plt\nplt.rcParams.update({\n \"font.family\": \"serif\", # use serif/main font for text elements\n \"text.usetex\": True, # use inline math for ticks\n \"pgf.rcfonts\": False, # don't setup fonts from rc parameters\n \"pgf.preamble\": [\n \"\\\\usepackage{units}\", # load additional packages\n \"\\\\usepackage{metalogo}\",\n \"\\\\usepackage{unicode-math}\", # unicode math setup\n r\"\\setmathfont{xits-math.otf}\",\n r\"\\setmainfont{DejaVu Serif}\", # serif font via preamble\n ]\n})\n\nplt.figure(figsize=(4.5, 2.5))\nplt.plot(range(5))\nplt.xlabel(\"unicode text: \u044f, \u03c8, \u20ac, \u00fc, \\\\unitfrac[10]{\u00b0}{\u00b5m}\")\nplt.ylabel(\"\\\\XeLaTeX\")\nplt.legend([\"unicode math: $\u03bb=\u2211_i^\u221e \u03bc_i^2$\"])\nplt.tight_layout(.5)\n\nplt.savefig(\"pgf_preamble.pdf\")\nplt.savefig(\"pgf_preamble.png\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/488e226463d22cd1e1e8250e4c31748c/annotation_demo.py b/_downloads/488e226463d22cd1e1e8250e4c31748c/annotation_demo.py deleted file mode 100644 index 92958dde25f..00000000000 --- a/_downloads/488e226463d22cd1e1e8250e4c31748c/annotation_demo.py +++ /dev/null @@ -1,395 +0,0 @@ -""" -================ -Annotating Plots -================ - -The following examples show how it is possible to annotate plots in matplotlib. -This includes highlighting specific points of interest and using various -visual tools to call attention to this point. For a more complete and in-depth -description of the annotation and text tools in :mod:`matplotlib`, see the -:doc:`tutorial on annotation `. -""" - -import matplotlib.pyplot as plt -from matplotlib.patches import Ellipse -import numpy as np -from matplotlib.text import OffsetFrom - - -############################################################################### -# Specifying text points and annotation points -# -------------------------------------------- -# -# You must specify an annotation point `xy=(x,y)` to annotate this point. -# additionally, you may specify a text point `xytext=(x,y)` for the -# location of the text for this annotation. Optionally, you can -# specify the coordinate system of `xy` and `xytext` with one of the -# following strings for `xycoords` and `textcoords` (default is 'data'):: -# -# 'figure points' : points from the lower left corner of the figure -# 'figure pixels' : pixels from the lower left corner of the figure -# 'figure fraction' : 0,0 is lower left of figure and 1,1 is upper, right -# 'axes points' : points from lower left corner of axes -# 'axes pixels' : pixels from lower left corner of axes -# 'axes fraction' : 0,0 is lower left of axes and 1,1 is upper right -# 'offset points' : Specify an offset (in points) from the xy value -# 'offset pixels' : Specify an offset (in pixels) from the xy value -# 'data' : use the axes data coordinate system -# -# Note: for physical coordinate systems (points or pixels) the origin is the -# (bottom, left) of the figure or axes. -# -# Optionally, you can specify arrow properties which draws and arrow -# from the text to the annotated point by giving a dictionary of arrow -# properties -# -# Valid keys are:: -# -# width : the width of the arrow in points -# frac : the fraction of the arrow length occupied by the head -# headwidth : the width of the base of the arrow head in points -# shrink : move the tip and base some percent away from the -# annotated point and text -# any key for matplotlib.patches.polygon (e.g., facecolor) - -# Create our figure and data we'll use for plotting -fig, ax = plt.subplots(figsize=(3, 3)) - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) - -# Plot a line and add some simple annotations -line, = ax.plot(t, s) -ax.annotate('figure pixels', - xy=(10, 10), xycoords='figure pixels') -ax.annotate('figure points', - xy=(80, 80), xycoords='figure points') -ax.annotate('figure fraction', - xy=(.025, .975), xycoords='figure fraction', - horizontalalignment='left', verticalalignment='top', - fontsize=20) - -# The following examples show off how these arrows are drawn. - -ax.annotate('point offset from data', - xy=(2, 1), xycoords='data', - xytext=(-15, 25), textcoords='offset points', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='bottom') - -ax.annotate('axes fraction', - xy=(3, 1), xycoords='data', - xytext=(0.8, 0.95), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top') - -# You may also use negative points or pixels to specify from (right, top). -# E.g., (-10, 10) is 10 points to the left of the right side of the axes and 10 -# points above the bottom - -ax.annotate('pixel offset from axes fraction', - xy=(1, 0), xycoords='axes fraction', - xytext=(-20, 20), textcoords='offset pixels', - horizontalalignment='right', - verticalalignment='bottom') - -ax.set(xlim=(-1, 5), ylim=(-3, 5)) - - -############################################################################### -# Using multiple coordinate systems and axis types -# ------------------------------------------------ -# -# You can specify the xypoint and the xytext in different positions and -# coordinate systems, and optionally turn on a connecting line and mark -# the point with a marker. Annotations work on polar axes too. -# -# In the example below, the xy point is in native coordinates (xycoords -# defaults to 'data'). For a polar axes, this is in (theta, radius) space. -# The text in the example is placed in the fractional figure coordinate system. -# Text keyword args like horizontal and vertical alignment are respected. - -fig, ax = plt.subplots(subplot_kw=dict(projection='polar'), figsize=(3, 3)) -r = np.arange(0, 1, 0.001) -theta = 2*2*np.pi*r -line, = ax.plot(theta, r) - -ind = 800 -thisr, thistheta = r[ind], theta[ind] -ax.plot([thistheta], [thisr], 'o') -ax.annotate('a polar annotation', - xy=(thistheta, thisr), # theta, radius - xytext=(0.05, 0.05), # fraction, fraction - textcoords='figure fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='left', - verticalalignment='bottom') - -# You can also use polar notation on a cartesian axes. Here the native -# coordinate system ('data') is cartesian, so you need to specify the -# xycoords and textcoords as 'polar' if you want to use (theta, radius). - -el = Ellipse((0, 0), 10, 20, facecolor='r', alpha=0.5) - -fig, ax = plt.subplots(subplot_kw=dict(aspect='equal')) -ax.add_artist(el) -el.set_clip_box(ax.bbox) -ax.annotate('the top', - xy=(np.pi/2., 10.), # theta, radius - xytext=(np.pi/3, 20.), # theta, radius - xycoords='polar', - textcoords='polar', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='left', - verticalalignment='bottom', - clip_on=True) # clip to the axes bounding box - -ax.set(xlim=[-20, 20], ylim=[-20, 20]) - - -############################################################################### -# Customizing arrow and bubble styles -# ----------------------------------- -# -# The arrow between xytext and the annotation point, as well as the bubble -# that covers the annotation text, are highly customizable. Below are a few -# parameter options as well as their resulting output. - -fig, ax = plt.subplots(figsize=(8, 5)) - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) -line, = ax.plot(t, s, lw=3) - -ax.annotate('straight', - xy=(0, 1), xycoords='data', - xytext=(-50, 30), textcoords='offset points', - arrowprops=dict(arrowstyle="->")) - -ax.annotate('arc3,\nrad 0.2', - xy=(0.5, -1), xycoords='data', - xytext=(-80, -60), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc3,rad=.2")) - -ax.annotate('arc,\nangle 50', - xy=(1., 1), xycoords='data', - xytext=(-90, 50), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc,angleA=0,armA=50,rad=10")) - -ax.annotate('arc,\narms', - xy=(1.5, -1), xycoords='data', - xytext=(-80, -60), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc,angleA=0,armA=40,angleB=-90,armB=30,rad=7")) - -ax.annotate('angle,\nangle 90', - xy=(2., 1), xycoords='data', - xytext=(-70, 30), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=10")) - -ax.annotate('angle3,\nangle -90', - xy=(2.5, -1), xycoords='data', - xytext=(-80, -60), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="angle3,angleA=0,angleB=-90")) - -ax.annotate('angle,\nround', - xy=(3., 1), xycoords='data', - xytext=(-60, 30), textcoords='offset points', - bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=10")) - -ax.annotate('angle,\nround4', - xy=(3.5, -1), xycoords='data', - xytext=(-70, -80), textcoords='offset points', - size=20, - bbox=dict(boxstyle="round4,pad=.5", fc="0.8"), - arrowprops=dict(arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=-90,rad=10")) - -ax.annotate('angle,\nshrink', - xy=(4., 1), xycoords='data', - xytext=(-60, 30), textcoords='offset points', - bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="->", - shrinkA=0, shrinkB=10, - connectionstyle="angle,angleA=0,angleB=90,rad=10")) - -# You can pass an empty string to get only annotation arrows rendered -ann = ax.annotate('', xy=(4., 1.), xycoords='data', - xytext=(4.5, -1), textcoords='data', - arrowprops=dict(arrowstyle="<->", - connectionstyle="bar", - ec="k", - shrinkA=5, shrinkB=5)) - -ax.set(xlim=(-1, 5), ylim=(-4, 3)) - -# We'll create another figure so that it doesn't get too cluttered -fig, ax = plt.subplots() - -el = Ellipse((2, -1), 0.5, 0.5) -ax.add_patch(el) - -ax.annotate('$->$', - xy=(2., -1), xycoords='data', - xytext=(-150, -140), textcoords='offset points', - bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="->", - patchB=el, - connectionstyle="angle,angleA=90,angleB=0,rad=10")) - -ax.annotate('arrow\nfancy', - xy=(2., -1), xycoords='data', - xytext=(-100, 60), textcoords='offset points', - size=20, - # bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="fancy", - fc="0.6", ec="none", - patchB=el, - connectionstyle="angle3,angleA=0,angleB=-90")) - -ax.annotate('arrow\nsimple', - xy=(2., -1), xycoords='data', - xytext=(100, 60), textcoords='offset points', - size=20, - # bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="simple", - fc="0.6", ec="none", - patchB=el, - connectionstyle="arc3,rad=0.3")) - -ax.annotate('wedge', - xy=(2., -1), xycoords='data', - xytext=(-100, -100), textcoords='offset points', - size=20, - # bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="wedge,tail_width=0.7", - fc="0.6", ec="none", - patchB=el, - connectionstyle="arc3,rad=-0.3")) - -ann = ax.annotate('bubble,\ncontours', - xy=(2., -1), xycoords='data', - xytext=(0, -70), textcoords='offset points', - size=20, - bbox=dict(boxstyle="round", - fc=(1.0, 0.7, 0.7), - ec=(1., .5, .5)), - arrowprops=dict(arrowstyle="wedge,tail_width=1.", - fc=(1.0, 0.7, 0.7), ec=(1., .5, .5), - patchA=None, - patchB=el, - relpos=(0.2, 0.8), - connectionstyle="arc3,rad=-0.1")) - -ann = ax.annotate('bubble', - xy=(2., -1), xycoords='data', - xytext=(55, 0), textcoords='offset points', - size=20, va="center", - bbox=dict(boxstyle="round", fc=(1.0, 0.7, 0.7), ec="none"), - arrowprops=dict(arrowstyle="wedge,tail_width=1.", - fc=(1.0, 0.7, 0.7), ec="none", - patchA=None, - patchB=el, - relpos=(0.2, 0.5))) - -ax.set(xlim=(-1, 5), ylim=(-5, 3)) - -############################################################################### -# More examples of coordinate systems -# ----------------------------------- -# -# Below we'll show a few more examples of coordinate systems and how the -# location of annotations may be specified. - -fig, (ax1, ax2) = plt.subplots(1, 2) - -bbox_args = dict(boxstyle="round", fc="0.8") -arrow_args = dict(arrowstyle="->") - -# Here we'll demonstrate the extents of the coordinate system and how -# we place annotating text. - -ax1.annotate('figure fraction : 0, 0', xy=(0, 0), xycoords='figure fraction', - xytext=(20, 20), textcoords='offset points', - ha="left", va="bottom", - bbox=bbox_args, - arrowprops=arrow_args) - -ax1.annotate('figure fraction : 1, 1', xy=(1, 1), xycoords='figure fraction', - xytext=(-20, -20), textcoords='offset points', - ha="right", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -ax1.annotate('axes fraction : 0, 0', xy=(0, 0), xycoords='axes fraction', - xytext=(20, 20), textcoords='offset points', - ha="left", va="bottom", - bbox=bbox_args, - arrowprops=arrow_args) - -ax1.annotate('axes fraction : 1, 1', xy=(1, 1), xycoords='axes fraction', - xytext=(-20, -20), textcoords='offset points', - ha="right", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -# It is also possible to generate draggable annotations - -an1 = ax1.annotate('Drag me 1', xy=(.5, .7), xycoords='data', - #xytext=(.5, .7), textcoords='data', - ha="center", va="center", - bbox=bbox_args, - #arrowprops=arrow_args - ) - -an2 = ax1.annotate('Drag me 2', xy=(.5, .5), xycoords=an1, - xytext=(.5, .3), textcoords='axes fraction', - ha="center", va="center", - bbox=bbox_args, - arrowprops=dict(patchB=an1.get_bbox_patch(), - connectionstyle="arc3,rad=0.2", - **arrow_args)) -an1.draggable() -an2.draggable() - -an3 = ax1.annotate('', xy=(.5, .5), xycoords=an2, - xytext=(.5, .5), textcoords=an1, - ha="center", va="center", - bbox=bbox_args, - arrowprops=dict(patchA=an1.get_bbox_patch(), - patchB=an2.get_bbox_patch(), - connectionstyle="arc3,rad=0.2", - **arrow_args)) - -# Finally we'll show off some more complex annotation and placement - -text = ax2.annotate('xy=(0, 1)\nxycoords=("data", "axes fraction")', - xy=(0, 1), xycoords=("data", 'axes fraction'), - xytext=(0, -20), textcoords='offset points', - ha="center", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -ax2.annotate('xy=(0.5, 0)\nxycoords=artist', - xy=(0.5, 0.), xycoords=text, - xytext=(0, -20), textcoords='offset points', - ha="center", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -ax2.annotate('xy=(0.8, 0.5)\nxycoords=ax1.transData', - xy=(0.8, 0.5), xycoords=ax1.transData, - xytext=(10, 10), - textcoords=OffsetFrom(ax2.bbox, (0, 0), "points"), - ha="left", va="bottom", - bbox=bbox_args, - arrowprops=arrow_args) - -ax2.set(xlim=[-2, 2], ylim=[-2, 2]) -plt.show() diff --git a/_downloads/4899fdd507a4edfcc4586fb7219861d9/embedding_in_gtk3_sgskip.ipynb b/_downloads/4899fdd507a4edfcc4586fb7219861d9/embedding_in_gtk3_sgskip.ipynb deleted file mode 120000 index 723c937db9b..00000000000 --- a/_downloads/4899fdd507a4edfcc4586fb7219861d9/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4899fdd507a4edfcc4586fb7219861d9/embedding_in_gtk3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/489e1417c97da47a49f72bae4195eb34/broken_axis.ipynb b/_downloads/489e1417c97da47a49f72bae4195eb34/broken_axis.ipynb deleted file mode 120000 index fb86b6415fc..00000000000 --- a/_downloads/489e1417c97da47a49f72bae4195eb34/broken_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/489e1417c97da47a49f72bae4195eb34/broken_axis.ipynb \ No newline at end of file diff --git a/_downloads/48a148a892dcf9bf95f3c0e253699d56/simple_axis_pad.ipynb b/_downloads/48a148a892dcf9bf95f3c0e253699d56/simple_axis_pad.ipynb deleted file mode 120000 index 8e632678a7d..00000000000 --- a/_downloads/48a148a892dcf9bf95f3c0e253699d56/simple_axis_pad.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/48a148a892dcf9bf95f3c0e253699d56/simple_axis_pad.ipynb \ No newline at end of file diff --git a/_downloads/48a1cee3e9cbf79d534d44b1c58e3ee6/anatomy.ipynb b/_downloads/48a1cee3e9cbf79d534d44b1c58e3ee6/anatomy.ipynb deleted file mode 120000 index 1ca28825cac..00000000000 --- a/_downloads/48a1cee3e9cbf79d534d44b1c58e3ee6/anatomy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/48a1cee3e9cbf79d534d44b1c58e3ee6/anatomy.ipynb \ No newline at end of file diff --git a/_downloads/48a3186c5598b24a7514ca91293e96df/barb_demo.ipynb b/_downloads/48a3186c5598b24a7514ca91293e96df/barb_demo.ipynb deleted file mode 120000 index 698eb8832dd..00000000000 --- a/_downloads/48a3186c5598b24a7514ca91293e96df/barb_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/48a3186c5598b24a7514ca91293e96df/barb_demo.ipynb \ No newline at end of file diff --git a/_downloads/48a398b55b53f377613eabc2951182c4/custom_scale.py b/_downloads/48a398b55b53f377613eabc2951182c4/custom_scale.py deleted file mode 120000 index 5175c0ec540..00000000000 --- a/_downloads/48a398b55b53f377613eabc2951182c4/custom_scale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/48a398b55b53f377613eabc2951182c4/custom_scale.py \ No newline at end of file diff --git a/_downloads/48a8fd6d402bb032ebb18df795713927/stem_plot.py b/_downloads/48a8fd6d402bb032ebb18df795713927/stem_plot.py deleted file mode 120000 index 92bf21c7e81..00000000000 --- a/_downloads/48a8fd6d402bb032ebb18df795713927/stem_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/48a8fd6d402bb032ebb18df795713927/stem_plot.py \ No newline at end of file diff --git a/_downloads/48b5186e12690f9f0a5df209c50d106e/gtk_spreadsheet_sgskip.py b/_downloads/48b5186e12690f9f0a5df209c50d106e/gtk_spreadsheet_sgskip.py deleted file mode 100644 index bbeb2b2c7e9..00000000000 --- a/_downloads/48b5186e12690f9f0a5df209c50d106e/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -=============== -GTK Spreadsheet -=============== - -Example of embedding Matplotlib in an application and interacting with a -treeview to store data. Double click on an entry to update plot data. -""" - -import gi -gi.require_version('Gtk', '3.0') -gi.require_version('Gdk', '3.0') -from gi.repository import Gtk, Gdk - -from matplotlib.backends.backend_gtk3agg import FigureCanvas # or gtk3cairo. - -from numpy.random import random -from matplotlib.figure import Figure - - -class DataManager(Gtk.Window): - num_rows, num_cols = 20, 10 - - data = random((num_rows, num_cols)) - - def __init__(self): - super().__init__() - self.set_default_size(600, 600) - self.connect('destroy', lambda win: Gtk.main_quit()) - - self.set_title('GtkListStore demo') - self.set_border_width(8) - - vbox = Gtk.VBox(homogeneous=False, spacing=8) - self.add(vbox) - - label = Gtk.Label(label='Double click a row to plot the data') - - vbox.pack_start(label, False, False, 0) - - sw = Gtk.ScrolledWindow() - sw.set_shadow_type(Gtk.ShadowType.ETCHED_IN) - sw.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) - vbox.pack_start(sw, True, True, 0) - - model = self.create_model() - - self.treeview = Gtk.TreeView(model=model) - - # Matplotlib stuff - fig = Figure(figsize=(6, 4)) - - self.canvas = FigureCanvas(fig) # a Gtk.DrawingArea - vbox.pack_start(self.canvas, True, True, 0) - ax = fig.add_subplot(111) - self.line, = ax.plot(self.data[0, :], 'go') # plot the first row - - self.treeview.connect('row-activated', self.plot_row) - sw.add(self.treeview) - - self.add_columns() - - self.add_events(Gdk.EventMask.BUTTON_PRESS_MASK | - Gdk.EventMask.KEY_PRESS_MASK | - Gdk.EventMask.KEY_RELEASE_MASK) - - def plot_row(self, treeview, path, view_column): - ind, = path # get the index into data - points = self.data[ind, :] - self.line.set_ydata(points) - self.canvas.draw() - - def add_columns(self): - for i in range(self.num_cols): - column = Gtk.TreeViewColumn(str(i), Gtk.CellRendererText(), text=i) - self.treeview.append_column(column) - - def create_model(self): - types = [float] * self.num_cols - store = Gtk.ListStore(*types) - for row in self.data: - store.append(tuple(row)) - return store - - -manager = DataManager() -manager.show_all() -Gtk.main() diff --git a/_downloads/48bd88b5597fd3a2b06d5db6452b1b7a/tricontourf3d.ipynb b/_downloads/48bd88b5597fd3a2b06d5db6452b1b7a/tricontourf3d.ipynb deleted file mode 100644 index cd64e8a3097..00000000000 --- a/_downloads/48bd88b5597fd3a2b06d5db6452b1b7a/tricontourf3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triangular 3D filled contour plot\n\n\nFilled contour plots of unstructured triangular grids.\n\nThe data used is the same as in the second plot of trisurf3d_demo2.\ntricontour3d_demo shows the unfilled version of this example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np\n\n# First create the x, y, z coordinates of the points.\nn_angles = 48\nn_radii = 8\nmin_radius = 0.25\n\n# Create the mesh in polar coordinates and compute x, y, z.\nradii = np.linspace(min_radius, 0.95, n_radii)\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi/n_angles\n\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nz = (np.cos(radii)*np.cos(3*angles)).flatten()\n\n# Create a custom triangulation.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.tricontourf(triang, z, cmap=plt.cm.CMRmap)\n\n# Customize the view angle so it's easier to understand the plot.\nax.view_init(elev=45.)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/48cab36e24414e19aa624a4cab230767/image_slices_viewer.py b/_downloads/48cab36e24414e19aa624a4cab230767/image_slices_viewer.py deleted file mode 120000 index 4f0afeb1993..00000000000 --- a/_downloads/48cab36e24414e19aa624a4cab230767/image_slices_viewer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/48cab36e24414e19aa624a4cab230767/image_slices_viewer.py \ No newline at end of file diff --git a/_downloads/48e1b4df70fc7f78e4bcdbec308bd3a9/transforms_tutorial.py b/_downloads/48e1b4df70fc7f78e4bcdbec308bd3a9/transforms_tutorial.py deleted file mode 120000 index 5d210c1cd9a..00000000000 --- a/_downloads/48e1b4df70fc7f78e4bcdbec308bd3a9/transforms_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/48e1b4df70fc7f78e4bcdbec308bd3a9/transforms_tutorial.py \ No newline at end of file diff --git a/_downloads/48e1da7d81284937ad919ff83ac1f81f/scatter_star_poly.ipynb b/_downloads/48e1da7d81284937ad919ff83ac1f81f/scatter_star_poly.ipynb deleted file mode 120000 index 4af1c6e8241..00000000000 --- a/_downloads/48e1da7d81284937ad919ff83ac1f81f/scatter_star_poly.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/48e1da7d81284937ad919ff83ac1f81f/scatter_star_poly.ipynb \ No newline at end of file diff --git a/_downloads/48e7c1df625a739783c6fe677f07984b/animated_histogram.ipynb b/_downloads/48e7c1df625a739783c6fe677f07984b/animated_histogram.ipynb deleted file mode 120000 index cc626d5efc9..00000000000 --- a/_downloads/48e7c1df625a739783c6fe677f07984b/animated_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/48e7c1df625a739783c6fe677f07984b/animated_histogram.ipynb \ No newline at end of file diff --git a/_downloads/48eed3e0851d711852828753e70393e9/hinton_demo.py b/_downloads/48eed3e0851d711852828753e70393e9/hinton_demo.py deleted file mode 120000 index 179449b7268..00000000000 --- a/_downloads/48eed3e0851d711852828753e70393e9/hinton_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/48eed3e0851d711852828753e70393e9/hinton_demo.py \ No newline at end of file diff --git a/_downloads/48fbbc193fc3abf011025ca89c454be8/horizontal_barchart_distribution.py b/_downloads/48fbbc193fc3abf011025ca89c454be8/horizontal_barchart_distribution.py deleted file mode 100644 index 73367e4b1d6..00000000000 --- a/_downloads/48fbbc193fc3abf011025ca89c454be8/horizontal_barchart_distribution.py +++ /dev/null @@ -1,90 +0,0 @@ -""" -============================================= -Discrete distribution as horizontal bar chart -============================================= - -Stacked bar charts can be used to visualize discrete distributions. - -This example visualizes the result of a survey in which people could rate -their agreement to questions on a five-element scale. - -The horizontal stacking is achieved by calling `~.Axes.barh()` for each -category and passing the starting point as the cumulative sum of the -already drawn bars via the parameter ``left``. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -category_names = ['Strongly disagree', 'Disagree', - 'Neither agree nor disagree', 'Agree', 'Strongly agree'] -results = { - 'Question 1': [10, 15, 17, 32, 26], - 'Question 2': [26, 22, 29, 10, 13], - 'Question 3': [35, 37, 7, 2, 19], - 'Question 4': [32, 11, 9, 15, 33], - 'Question 5': [21, 29, 5, 5, 40], - 'Question 6': [8, 19, 5, 30, 38] -} - - -def survey(results, category_names): - """ - Parameters - ---------- - results : dict - A mapping from question labels to a list of answers per category. - It is assumed all lists contain the same number of entries and that - it matches the length of *category_names*. - category_names : list of str - The category labels. - """ - labels = list(results.keys()) - data = np.array(list(results.values())) - data_cum = data.cumsum(axis=1) - category_colors = plt.get_cmap('RdYlGn')( - np.linspace(0.15, 0.85, data.shape[1])) - - fig, ax = plt.subplots(figsize=(9.2, 5)) - ax.invert_yaxis() - ax.xaxis.set_visible(False) - ax.set_xlim(0, np.sum(data, axis=1).max()) - - for i, (colname, color) in enumerate(zip(category_names, category_colors)): - widths = data[:, i] - starts = data_cum[:, i] - widths - ax.barh(labels, widths, left=starts, height=0.5, - label=colname, color=color) - xcenters = starts + widths / 2 - - r, g, b, _ = color - text_color = 'white' if r * g * b < 0.5 else 'darkgrey' - for y, (x, c) in enumerate(zip(xcenters, widths)): - ax.text(x, y, str(int(c)), ha='center', va='center', - color=text_color) - ax.legend(ncol=len(category_names), bbox_to_anchor=(0, 1), - loc='lower left', fontsize='small') - - return fig, ax - - -survey(results, category_names) - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.barh -matplotlib.pyplot.barh -matplotlib.axes.Axes.text -matplotlib.pyplot.text -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend diff --git a/_downloads/48ff9f8fd4e38b43655b3f815e1f18cb/confidence_ellipse.py b/_downloads/48ff9f8fd4e38b43655b3f815e1f18cb/confidence_ellipse.py deleted file mode 100644 index ca5809de7ae..00000000000 --- a/_downloads/48ff9f8fd4e38b43655b3f815e1f18cb/confidence_ellipse.py +++ /dev/null @@ -1,223 +0,0 @@ -""" -====================================================== -Plot a confidence ellipse of a two-dimensional dataset -====================================================== - -This example shows how to plot a confidence ellipse of a -two-dimensional dataset, using its pearson correlation coefficient. - -The approach that is used to obtain the correct geometry is -explained and proved here: - -https://carstenschelp.github.io/2018/09/14/Plot_Confidence_Ellipse_001.html - -The method avoids the use of an iterative eigen decomposition algorithm -and makes use of the fact that a normalized covariance matrix (composed of -pearson correlation coefficients and ones) is particularly easy to handle. -""" - - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Ellipse -import matplotlib.transforms as transforms - - -############################################################################# -# -# The plotting function itself -# """""""""""""""""""""""""""" -# -# This function plots the confidence ellipse of the covariance of the given -# array-like variables x and y. The ellipse is plotted into the given -# axes-object ax. -# -# The radiuses of the ellipse can be controlled by n_std which is the number -# of standard deviations. The default value is 3 which makes the ellipse -# enclose 99.7% of the points (given the data is normally distributed -# like in these examples). - - -def confidence_ellipse(x, y, ax, n_std=3.0, facecolor='none', **kwargs): - """ - Create a plot of the covariance confidence ellipse of `x` and `y` - - Parameters - ---------- - x, y : array_like, shape (n, ) - Input data. - - ax : matplotlib.axes.Axes - The axes object to draw the ellipse into. - - n_std : float - The number of standard deviations to determine the ellipse's radiuses. - - Returns - ------- - matplotlib.patches.Ellipse - - Other parameters - ---------------- - kwargs : `~matplotlib.patches.Patch` properties - """ - if x.size != y.size: - raise ValueError("x and y must be the same size") - - cov = np.cov(x, y) - pearson = cov[0, 1]/np.sqrt(cov[0, 0] * cov[1, 1]) - # Using a special case to obtain the eigenvalues of this - # two-dimensionl dataset. - ell_radius_x = np.sqrt(1 + pearson) - ell_radius_y = np.sqrt(1 - pearson) - ellipse = Ellipse((0, 0), - width=ell_radius_x * 2, - height=ell_radius_y * 2, - facecolor=facecolor, - **kwargs) - - # Calculating the stdandard deviation of x from - # the squareroot of the variance and multiplying - # with the given number of standard deviations. - scale_x = np.sqrt(cov[0, 0]) * n_std - mean_x = np.mean(x) - - # calculating the stdandard deviation of y ... - scale_y = np.sqrt(cov[1, 1]) * n_std - mean_y = np.mean(y) - - transf = transforms.Affine2D() \ - .rotate_deg(45) \ - .scale(scale_x, scale_y) \ - .translate(mean_x, mean_y) - - ellipse.set_transform(transf + ax.transData) - return ax.add_patch(ellipse) - - -############################################################################# -# -# A helper function to create a correlated dataset -# """""""""""""""""""""""""""""""""""""""""""""""" -# -# Creates a random two-dimesional dataset with the specified -# two-dimensional mean (mu) and dimensions (scale). -# The correlation can be controlled by the param 'dependency', -# a 2x2 matrix. - -def get_correlated_dataset(n, dependency, mu, scale): - latent = np.random.randn(n, 2) - dependent = latent.dot(dependency) - scaled = dependent * scale - scaled_with_offset = scaled + mu - # return x and y of the new, correlated dataset - return scaled_with_offset[:, 0], scaled_with_offset[:, 1] - - -############################################################################# -# -# Positive, negative and weak correlation -# """"""""""""""""""""""""""""""""""""""" -# -# Note that the shape for the weak correlation (right) is an ellipse, -# not a circle because x and y are differently scaled. -# However, the fact that x and y are uncorrelated is shown by -# the axes of the ellipse being aligned with the x- and y-axis -# of the coordinate system. - -np.random.seed(0) - -PARAMETERS = { - 'Positive correlation': np.array([[0.85, 0.35], - [0.15, -0.65]]), - 'Negative correlation': np.array([[0.9, -0.4], - [0.1, -0.6]]), - 'Weak correlation': np.array([[1, 0], - [0, 1]]), -} - -mu = 2, 4 -scale = 3, 5 - -fig, axs = plt.subplots(1, 3, figsize=(9, 3)) -for ax, (title, dependency) in zip(axs, PARAMETERS.items()): - x, y = get_correlated_dataset(800, dependency, mu, scale) - ax.scatter(x, y, s=0.5) - - ax.axvline(c='grey', lw=1) - ax.axhline(c='grey', lw=1) - - confidence_ellipse(x, y, ax, edgecolor='red') - - ax.scatter(mu[0], mu[1], c='red', s=3) - ax.set_title(title) - -plt.show() - - -############################################################################# -# -# Different number of standard deviations -# """"""""""""""""""""""""""""""""""""""" -# -# A plot with n_std = 3 (blue), 2 (purple) and 1 (red) - -fig, ax_nstd = plt.subplots(figsize=(6, 6)) - -dependency_nstd = np.array([ - [0.8, 0.75], - [-0.2, 0.35] -]) -mu = 0, 0 -scale = 8, 5 - -ax_nstd.axvline(c='grey', lw=1) -ax_nstd.axhline(c='grey', lw=1) - -x, y = get_correlated_dataset(500, dependency_nstd, mu, scale) -ax_nstd.scatter(x, y, s=0.5) - -confidence_ellipse(x, y, ax_nstd, n_std=1, - label=r'$1\sigma$', edgecolor='firebrick') -confidence_ellipse(x, y, ax_nstd, n_std=2, - label=r'$2\sigma$', edgecolor='fuchsia', linestyle='--') -confidence_ellipse(x, y, ax_nstd, n_std=3, - label=r'$3\sigma$', edgecolor='blue', linestyle=':') - -ax_nstd.scatter(mu[0], mu[1], c='red', s=3) -ax_nstd.set_title('Different standard deviations') -ax_nstd.legend() -plt.show() - - -############################################################################# -# -# Using the keyword arguments -# """"""""""""""""""""""""""" -# -# Use the kwargs specified for matplotlib.patches.Patch in order -# to have the ellipse rendered in different ways. - -fig, ax_kwargs = plt.subplots(figsize=(6, 6)) -dependency_kwargs = np.array([ - [-0.8, 0.5], - [-0.2, 0.5] -]) -mu = 2, -3 -scale = 6, 5 - -ax_kwargs.axvline(c='grey', lw=1) -ax_kwargs.axhline(c='grey', lw=1) - -x, y = get_correlated_dataset(500, dependency_kwargs, mu, scale) -# Plot the ellipse with zorder=0 in order to demonstrate -# its transparency (caused by the use of alpha). -confidence_ellipse(x, y, ax_kwargs, - alpha=0.5, facecolor='pink', edgecolor='purple', zorder=0) - -ax_kwargs.scatter(x, y, s=0.5) -ax_kwargs.scatter(mu[0], mu[1], c='red', s=3) -ax_kwargs.set_title(f'Using kwargs') - -fig.subplots_adjust(hspace=0.25) -plt.show() diff --git a/_downloads/4900a5db8b1a91cc90befacad45cf307/set_and_get.py b/_downloads/4900a5db8b1a91cc90befacad45cf307/set_and_get.py deleted file mode 120000 index bc8c9adeb1d..00000000000 --- a/_downloads/4900a5db8b1a91cc90befacad45cf307/set_and_get.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4900a5db8b1a91cc90befacad45cf307/set_and_get.py \ No newline at end of file diff --git a/_downloads/490a035ee2452d0901ae8bc726582254/ellipse_collection.py b/_downloads/490a035ee2452d0901ae8bc726582254/ellipse_collection.py deleted file mode 120000 index 2361af0fc4a..00000000000 --- a/_downloads/490a035ee2452d0901ae8bc726582254/ellipse_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/490a035ee2452d0901ae8bc726582254/ellipse_collection.py \ No newline at end of file diff --git a/_downloads/491215edb385642eb01f4582d21acc85/agg_buffer_to_array.ipynb b/_downloads/491215edb385642eb01f4582d21acc85/agg_buffer_to_array.ipynb deleted file mode 100644 index dd19c8c6001..00000000000 --- a/_downloads/491215edb385642eb01f4582d21acc85/agg_buffer_to_array.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Agg Buffer To Array\n\n\nConvert a rendered figure to its image (NumPy array) representation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# make an agg figure\nfig, ax = plt.subplots()\nax.plot([1, 2, 3])\nax.set_title('a simple figure')\nfig.canvas.draw()\n\n# grab the pixel buffer and dump it into a numpy array\nX = np.array(fig.canvas.renderer.buffer_rgba())\n\n# now display the array X as an Axes in a new figure\nfig2 = plt.figure()\nax2 = fig2.add_subplot(111, frameon=False)\nax2.imshow(X)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/491256d270eac24f169c967c1cd250c3/annotate_simple04.ipynb b/_downloads/491256d270eac24f169c967c1cd250c3/annotate_simple04.ipynb deleted file mode 100644 index 2a5aa917832..00000000000 --- a/_downloads/491256d270eac24f169c967c1cd250c3/annotate_simple04.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple04\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nann = ax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round4\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"-|>\",\n connectionstyle=\"arc3,rad=0.2\",\n relpos=(0., 0.),\n fc=\"w\"),\n )\n\nann = ax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round4\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"-|>\",\n connectionstyle=\"arc3,rad=-0.2\",\n relpos=(1., 0.),\n fc=\"w\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/491e132174cc69dba0441dfe1697725d/eventplot_demo.py b/_downloads/491e132174cc69dba0441dfe1697725d/eventplot_demo.py deleted file mode 120000 index 181b98193d1..00000000000 --- a/_downloads/491e132174cc69dba0441dfe1697725d/eventplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/491e132174cc69dba0441dfe1697725d/eventplot_demo.py \ No newline at end of file diff --git a/_downloads/492023b74bb0b3559946ff22d5db41b5/engineering_formatter.ipynb b/_downloads/492023b74bb0b3559946ff22d5db41b5/engineering_formatter.ipynb deleted file mode 100644 index f7e7fd8780f..00000000000 --- a/_downloads/492023b74bb0b3559946ff22d5db41b5/engineering_formatter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Labeling ticks using engineering notation\n\n\nUse of the engineering Formatter.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfrom matplotlib.ticker import EngFormatter\n\n# Fixing random state for reproducibility\nprng = np.random.RandomState(19680801)\n\n# Create artificial data to plot.\n# The x data span over several decades to demonstrate several SI prefixes.\nxs = np.logspace(1, 9, 100)\nys = (0.8 + 0.4 * prng.uniform(size=100)) * np.log10(xs)**2\n\n# Figure width is doubled (2*6.4) to display nicely 2 subplots side by side.\nfig, (ax0, ax1) = plt.subplots(nrows=2, figsize=(7, 9.6))\nfor ax in (ax0, ax1):\n ax.set_xscale('log')\n\n# Demo of the default settings, with a user-defined unit label.\nax0.set_title('Full unit ticklabels, w/ default precision & space separator')\nformatter0 = EngFormatter(unit='Hz')\nax0.xaxis.set_major_formatter(formatter0)\nax0.plot(xs, ys)\nax0.set_xlabel('Frequency')\n\n# Demo of the options `places` (number of digit after decimal point) and\n# `sep` (separator between the number and the prefix/unit).\nax1.set_title('SI-prefix only ticklabels, 1-digit precision & '\n 'thin space separator')\nformatter1 = EngFormatter(places=1, sep=\"\\N{THIN SPACE}\") # U+2009\nax1.xaxis.set_major_formatter(formatter1)\nax1.plot(xs, ys)\nax1.set_xlabel('Frequency [Hz]')\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/49240427aff1b343a7fb24df8f0f0f4e/basic_units.ipynb b/_downloads/49240427aff1b343a7fb24df8f0f0f4e/basic_units.ipynb deleted file mode 120000 index 17a8329f3b0..00000000000 --- a/_downloads/49240427aff1b343a7fb24df8f0f0f4e/basic_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/49240427aff1b343a7fb24df8f0f0f4e/basic_units.ipynb \ No newline at end of file diff --git a/_downloads/4928d08e05b81a18d1af837559d85b47/contour_manual.ipynb b/_downloads/4928d08e05b81a18d1af837559d85b47/contour_manual.ipynb deleted file mode 120000 index 7a2c1d8d2ae..00000000000 --- a/_downloads/4928d08e05b81a18d1af837559d85b47/contour_manual.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4928d08e05b81a18d1af837559d85b47/contour_manual.ipynb \ No newline at end of file diff --git a/_downloads/49310d524695cb8c8bbde39ee86c8691/mandelbrot.ipynb b/_downloads/49310d524695cb8c8bbde39ee86c8691/mandelbrot.ipynb deleted file mode 120000 index 462fdd5736d..00000000000 --- a/_downloads/49310d524695cb8c8bbde39ee86c8691/mandelbrot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/49310d524695cb8c8bbde39ee86c8691/mandelbrot.ipynb \ No newline at end of file diff --git a/_downloads/493232842b1ddc35e30326c36637d9e0/barchart.ipynb b/_downloads/493232842b1ddc35e30326c36637d9e0/barchart.ipynb deleted file mode 120000 index 9e93d16a73a..00000000000 --- a/_downloads/493232842b1ddc35e30326c36637d9e0/barchart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/493232842b1ddc35e30326c36637d9e0/barchart.ipynb \ No newline at end of file diff --git a/_downloads/4937a3cd3b21c841bb9e787c21c31a1e/hexbin_demo.py b/_downloads/4937a3cd3b21c841bb9e787c21c31a1e/hexbin_demo.py deleted file mode 100644 index 8115f99548e..00000000000 --- a/_downloads/4937a3cd3b21c841bb9e787c21c31a1e/hexbin_demo.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -=========== -Hexbin Demo -=========== - -Plotting hexbins with Matplotlib. - -Hexbin is an axes method or pyplot function that is essentially -a pcolor of a 2-D histogram with hexagonal cells. It can be -much more informative than a scatter plot. In the first plot -below, try substituting 'scatter' for 'hexbin'. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -n = 100000 -x = np.random.standard_normal(n) -y = 2.0 + 3.0 * x + 4.0 * np.random.standard_normal(n) -xmin = x.min() -xmax = x.max() -ymin = y.min() -ymax = y.max() - -fig, axs = plt.subplots(ncols=2, sharey=True, figsize=(7, 4)) -fig.subplots_adjust(hspace=0.5, left=0.07, right=0.93) -ax = axs[0] -hb = ax.hexbin(x, y, gridsize=50, cmap='inferno') -ax.set(xlim=(xmin, xmax), ylim=(ymin, ymax)) -ax.set_title("Hexagon binning") -cb = fig.colorbar(hb, ax=ax) -cb.set_label('counts') - -ax = axs[1] -hb = ax.hexbin(x, y, gridsize=50, bins='log', cmap='inferno') -ax.set(xlim=(xmin, xmax), ylim=(ymin, ymax)) -ax.set_title("With a log color scale") -cb = fig.colorbar(hb, ax=ax) -cb.set_label('log10(N)') - -plt.show() diff --git a/_downloads/493b5f7f92d50f2a84c942202b216b51/close_event.ipynb b/_downloads/493b5f7f92d50f2a84c942202b216b51/close_event.ipynb deleted file mode 100644 index 94921c3182b..00000000000 --- a/_downloads/493b5f7f92d50f2a84c942202b216b51/close_event.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Close Event\n\n\nExample to show connecting events that occur when the figure closes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef handle_close(evt):\n print('Closed Figure!')\n\nfig = plt.figure()\nfig.canvas.mpl_connect('close_event', handle_close)\n\nplt.text(0.35, 0.5, 'Close Me!', dict(size=30))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4947eb8f48f41ede72d38cb6a8a2fdca/boxplot_demo_pyplot.py b/_downloads/4947eb8f48f41ede72d38cb6a8a2fdca/boxplot_demo_pyplot.py deleted file mode 120000 index e254c8fe348..00000000000 --- a/_downloads/4947eb8f48f41ede72d38cb6a8a2fdca/boxplot_demo_pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4947eb8f48f41ede72d38cb6a8a2fdca/boxplot_demo_pyplot.py \ No newline at end of file diff --git a/_downloads/494c813cab01b9b4393a06f47a7df659/wire3d_zero_stride.py b/_downloads/494c813cab01b9b4393a06f47a7df659/wire3d_zero_stride.py deleted file mode 100644 index 0eac7b70385..00000000000 --- a/_downloads/494c813cab01b9b4393a06f47a7df659/wire3d_zero_stride.py +++ /dev/null @@ -1,28 +0,0 @@ -''' -=================================== -3D wireframe plots in one direction -=================================== - -Demonstrates that setting rstride or cstride to 0 causes wires to not be -generated in the corresponding direction. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt - - -fig, [ax1, ax2] = plt.subplots(2, 1, figsize=(8, 12), subplot_kw={'projection': '3d'}) - -# Get the test data -X, Y, Z = axes3d.get_test_data(0.05) - -# Give the first plot only wireframes of the type y = c -ax1.plot_wireframe(X, Y, Z, rstride=10, cstride=0) -ax1.set_title("Column (x) stride set to 0") - -# Give the second plot only wireframes of the type x = c -ax2.plot_wireframe(X, Y, Z, rstride=0, cstride=10) -ax2.set_title("Row (y) stride set to 0") - -plt.tight_layout() -plt.show() diff --git a/_downloads/4953df1126b554664d22e3efba5d0f57/pong_sgskip.ipynb b/_downloads/4953df1126b554664d22e3efba5d0f57/pong_sgskip.ipynb deleted file mode 120000 index 3fb00320f14..00000000000 --- a/_downloads/4953df1126b554664d22e3efba5d0f57/pong_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4953df1126b554664d22e3efba5d0f57/pong_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/4954bd2e5a3bce54c20212c856a6a684/strip_chart.py b/_downloads/4954bd2e5a3bce54c20212c856a6a684/strip_chart.py deleted file mode 120000 index 2af51a3270a..00000000000 --- a/_downloads/4954bd2e5a3bce54c20212c856a6a684/strip_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4954bd2e5a3bce54c20212c856a6a684/strip_chart.py \ No newline at end of file diff --git a/_downloads/495b004e482b9f999b270e2fb31e72d1/offset.py b/_downloads/495b004e482b9f999b270e2fb31e72d1/offset.py deleted file mode 120000 index e0e2e09f114..00000000000 --- a/_downloads/495b004e482b9f999b270e2fb31e72d1/offset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/495b004e482b9f999b270e2fb31e72d1/offset.py \ No newline at end of file diff --git a/_downloads/49765a4d459f68ddd76e600fa908a6bf/gridspec_multicolumn.py b/_downloads/49765a4d459f68ddd76e600fa908a6bf/gridspec_multicolumn.py deleted file mode 120000 index 7d057d880fd..00000000000 --- a/_downloads/49765a4d459f68ddd76e600fa908a6bf/gridspec_multicolumn.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/49765a4d459f68ddd76e600fa908a6bf/gridspec_multicolumn.py \ No newline at end of file diff --git a/_downloads/497735c33d4d3917ffa3c4f20e89c94c/legend_guide.py b/_downloads/497735c33d4d3917ffa3c4f20e89c94c/legend_guide.py deleted file mode 120000 index b0fbbb316f5..00000000000 --- a/_downloads/497735c33d4d3917ffa3c4f20e89c94c/legend_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/497735c33d4d3917ffa3c4f20e89c94c/legend_guide.py \ No newline at end of file diff --git a/_downloads/497758fdcdcd44768c1cac19c58b3b07/style_sheets_reference.ipynb b/_downloads/497758fdcdcd44768c1cac19c58b3b07/style_sheets_reference.ipynb deleted file mode 120000 index ca58012ab1b..00000000000 --- a/_downloads/497758fdcdcd44768c1cac19c58b3b07/style_sheets_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/497758fdcdcd44768c1cac19c58b3b07/style_sheets_reference.ipynb \ No newline at end of file diff --git a/_downloads/497aa590d7c646dbb15ee8155b6b1e82/geo_demo.py b/_downloads/497aa590d7c646dbb15ee8155b6b1e82/geo_demo.py deleted file mode 120000 index 68bc1e595a5..00000000000 --- a/_downloads/497aa590d7c646dbb15ee8155b6b1e82/geo_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/497aa590d7c646dbb15ee8155b6b1e82/geo_demo.py \ No newline at end of file diff --git a/_downloads/49839623c8746fc685fec3ce5ec7f61a/grayscale.ipynb b/_downloads/49839623c8746fc685fec3ce5ec7f61a/grayscale.ipynb deleted file mode 100644 index dc07e7e48a1..00000000000 --- a/_downloads/49839623c8746fc685fec3ce5ec7f61a/grayscale.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Grayscale style sheet\n\n\nThis example demonstrates the \"grayscale\" style sheet, which changes all colors\nthat are defined as rc parameters to grayscale. Note, however, that not all\nplot elements default to colors defined by an rc parameter.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef color_cycle_example(ax):\n L = 6\n x = np.linspace(0, L)\n ncolors = len(plt.rcParams['axes.prop_cycle'])\n shift = np.linspace(0, L, ncolors, endpoint=False)\n for s in shift:\n ax.plot(x, np.sin(x + s), 'o-')\n\n\ndef image_and_patch_example(ax):\n ax.imshow(np.random.random(size=(20, 20)), interpolation='none')\n c = plt.Circle((5, 5), radius=5, label='patch')\n ax.add_patch(c)\n\n\nplt.style.use('grayscale')\n\nfig, (ax1, ax2) = plt.subplots(ncols=2)\nfig.suptitle(\"'grayscale' style sheet\")\n\ncolor_cycle_example(ax1)\nimage_and_patch_example(ax2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/498e07dd9362a6a59425f63e23896dcb/fonts_demo_kw.py b/_downloads/498e07dd9362a6a59425f63e23896dcb/fonts_demo_kw.py deleted file mode 120000 index e39531248a8..00000000000 --- a/_downloads/498e07dd9362a6a59425f63e23896dcb/fonts_demo_kw.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/498e07dd9362a6a59425f63e23896dcb/fonts_demo_kw.py \ No newline at end of file diff --git a/_downloads/4993ce11af83e72da68567ac2921b20b/image_clip_path.ipynb b/_downloads/4993ce11af83e72da68567ac2921b20b/image_clip_path.ipynb deleted file mode 120000 index 0b9006d36d2..00000000000 --- a/_downloads/4993ce11af83e72da68567ac2921b20b/image_clip_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4993ce11af83e72da68567ac2921b20b/image_clip_path.ipynb \ No newline at end of file diff --git a/_downloads/499eb6b1efccd27db9210432c068429f/toolmanager_sgskip.ipynb b/_downloads/499eb6b1efccd27db9210432c068429f/toolmanager_sgskip.ipynb deleted file mode 120000 index 101405d9f11..00000000000 --- a/_downloads/499eb6b1efccd27db9210432c068429f/toolmanager_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/499eb6b1efccd27db9210432c068429f/toolmanager_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/49a3efc18dac8686921b2aee0fec8d50/simple_axisline4.ipynb b/_downloads/49a3efc18dac8686921b2aee0fec8d50/simple_axisline4.ipynb deleted file mode 120000 index 3303fec8121..00000000000 --- a/_downloads/49a3efc18dac8686921b2aee0fec8d50/simple_axisline4.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/49a3efc18dac8686921b2aee0fec8d50/simple_axisline4.ipynb \ No newline at end of file diff --git a/_downloads/49afaefa9a6da5dbbf0e8baa083505f3/annotated_cursor.py b/_downloads/49afaefa9a6da5dbbf0e8baa083505f3/annotated_cursor.py deleted file mode 120000 index 0c9a386ddd4..00000000000 --- a/_downloads/49afaefa9a6da5dbbf0e8baa083505f3/annotated_cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/49afaefa9a6da5dbbf0e8baa083505f3/annotated_cursor.py \ No newline at end of file diff --git a/_downloads/49c0b2ce987e181c996206b69c9ac9d9/trigradient_demo.py b/_downloads/49c0b2ce987e181c996206b69c9ac9d9/trigradient_demo.py deleted file mode 120000 index b307737747c..00000000000 --- a/_downloads/49c0b2ce987e181c996206b69c9ac9d9/trigradient_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/49c0b2ce987e181c996206b69c9ac9d9/trigradient_demo.py \ No newline at end of file diff --git a/_downloads/49c25b5a16ffdf716d9e7a25c2bac2f3/embedding_in_wx4_sgskip.ipynb b/_downloads/49c25b5a16ffdf716d9e7a25c2bac2f3/embedding_in_wx4_sgskip.ipynb deleted file mode 120000 index 3876b82d764..00000000000 --- a/_downloads/49c25b5a16ffdf716d9e7a25c2bac2f3/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/49c25b5a16ffdf716d9e7a25c2bac2f3/embedding_in_wx4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/49c52634dc9de3d1835aa7ff6f92d999/tight_bbox_test.py b/_downloads/49c52634dc9de3d1835aa7ff6f92d999/tight_bbox_test.py deleted file mode 120000 index fe74f056c59..00000000000 --- a/_downloads/49c52634dc9de3d1835aa7ff6f92d999/tight_bbox_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/49c52634dc9de3d1835aa7ff6f92d999/tight_bbox_test.py \ No newline at end of file diff --git a/_downloads/49d9aa371098b5322a853440d1d6c784/whats_new_98_4_fill_between.ipynb b/_downloads/49d9aa371098b5322a853440d1d6c784/whats_new_98_4_fill_between.ipynb deleted file mode 120000 index e5f2f52354d..00000000000 --- a/_downloads/49d9aa371098b5322a853440d1d6c784/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/49d9aa371098b5322a853440d1d6c784/whats_new_98_4_fill_between.ipynb \ No newline at end of file diff --git a/_downloads/49e5e3d870d47dfe4f74a5c831720102/share_axis_lims_views.ipynb b/_downloads/49e5e3d870d47dfe4f74a5c831720102/share_axis_lims_views.ipynb deleted file mode 100644 index 4c6abd3b496..00000000000 --- a/_downloads/49e5e3d870d47dfe4f74a5c831720102/share_axis_lims_views.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nSharing axis limits and views\n=============================\n\nIt's common to make two or more plots which share an axis, e.g., two\nsubplots with time as a common axis. When you pan and zoom around on\none, you want the other to move around with you. To facilitate this,\nmatplotlib Axes support a ``sharex`` and ``sharey`` attribute. When\nyou create a :func:`~matplotlib.pyplot.subplot` or\n:func:`~matplotlib.pyplot.axes` instance, you can pass in a keyword\nindicating what axes you want to share with\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0, 10, 0.01)\n\nax1 = plt.subplot(211)\nax1.plot(t, np.sin(2*np.pi*t))\n\nax2 = plt.subplot(212, sharex=ax1)\nax2.plot(t, np.sin(4*np.pi*t))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/49ec6c25e8a29d5ae96f5f1866932387/whats_new_98_4_fancy.py b/_downloads/49ec6c25e8a29d5ae96f5f1866932387/whats_new_98_4_fancy.py deleted file mode 120000 index 25510abfe6b..00000000000 --- a/_downloads/49ec6c25e8a29d5ae96f5f1866932387/whats_new_98_4_fancy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/49ec6c25e8a29d5ae96f5f1866932387/whats_new_98_4_fancy.py \ No newline at end of file diff --git a/_downloads/49f4d47c0a550eaff776c9db1a0d64ff/wire3d_zero_stride.ipynb b/_downloads/49f4d47c0a550eaff776c9db1a0d64ff/wire3d_zero_stride.ipynb deleted file mode 120000 index 65067dc476b..00000000000 --- a/_downloads/49f4d47c0a550eaff776c9db1a0d64ff/wire3d_zero_stride.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/49f4d47c0a550eaff776c9db1a0d64ff/wire3d_zero_stride.ipynb \ No newline at end of file diff --git a/_downloads/49fdb5c07946b00d721bd3b363994b05/constrainedlayout_guide.ipynb b/_downloads/49fdb5c07946b00d721bd3b363994b05/constrainedlayout_guide.ipynb deleted file mode 120000 index 254a1e7c101..00000000000 --- a/_downloads/49fdb5c07946b00d721bd3b363994b05/constrainedlayout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/49fdb5c07946b00d721bd3b363994b05/constrainedlayout_guide.ipynb \ No newline at end of file diff --git a/_downloads/4a09921bb018cda7a31fde44c389da8d/image_thumbnail_sgskip.py b/_downloads/4a09921bb018cda7a31fde44c389da8d/image_thumbnail_sgskip.py deleted file mode 100644 index ae82e616743..00000000000 --- a/_downloads/4a09921bb018cda7a31fde44c389da8d/image_thumbnail_sgskip.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -=============== -Image Thumbnail -=============== - -You can use matplotlib to generate thumbnails from existing images. -matplotlib natively supports PNG files on the input side, and other -image types transparently if your have PIL installed - - -""" - -# build thumbnails of all images in a directory -import sys -import os -import glob -import matplotlib.image as image - - -if len(sys.argv) != 2: - print('Usage: python %s IMAGEDIR' % __file__) - raise SystemExit -indir = sys.argv[1] -if not os.path.isdir(indir): - print('Could not find input directory "%s"' % indir) - raise SystemExit - -outdir = 'thumbs' -if not os.path.exists(outdir): - os.makedirs(outdir) - -for fname in glob.glob(os.path.join(indir, '*.png')): - basedir, basename = os.path.split(fname) - outfile = os.path.join(outdir, basename) - fig = image.thumbnail(fname, outfile, scale=0.15) - print('saved thumbnail of %s to %s' % (fname, outfile)) diff --git a/_downloads/4a0e2b99f29c7279af57732adb03504a/step_demo.py b/_downloads/4a0e2b99f29c7279af57732adb03504a/step_demo.py deleted file mode 120000 index 77a43e3bf67..00000000000 --- a/_downloads/4a0e2b99f29c7279af57732adb03504a/step_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4a0e2b99f29c7279af57732adb03504a/step_demo.py \ No newline at end of file diff --git a/_downloads/4a15fb0ab33e7da47ee29c4fa403d6e9/line_collection.py b/_downloads/4a15fb0ab33e7da47ee29c4fa403d6e9/line_collection.py deleted file mode 100644 index 343c4a124ac..00000000000 --- a/_downloads/4a15fb0ab33e7da47ee29c4fa403d6e9/line_collection.py +++ /dev/null @@ -1,103 +0,0 @@ -""" -=============== -Line Collection -=============== - -Plotting lines with Matplotlib. - -:class:`~matplotlib.collections.LineCollection` allows one to plot multiple -lines on a figure. Below we show off some of its properties. -""" -import matplotlib.pyplot as plt -from matplotlib.collections import LineCollection -from matplotlib import colors as mcolors - -import numpy as np - -# In order to efficiently plot many lines in a single set of axes, -# Matplotlib has the ability to add the lines all at once. Here is a -# simple example showing how it is done. - -x = np.arange(100) -# Here are many sets of y to plot vs x -ys = x[:50, np.newaxis] + x[np.newaxis, :] - -segs = np.zeros((50, 100, 2)) -segs[:, :, 1] = ys -segs[:, :, 0] = x - -# Mask some values to test masked array support: -segs = np.ma.masked_where((segs > 50) & (segs < 60), segs) - -# We need to set the plot limits. -fig, ax = plt.subplots() -ax.set_xlim(x.min(), x.max()) -ax.set_ylim(ys.min(), ys.max()) - -# colors is sequence of rgba tuples -# linestyle is a string or dash tuple. Legal string values are -# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq) -# where onoffseq is an even length tuple of on and off ink in points. -# If linestyle is omitted, 'solid' is used -# See :class:`matplotlib.collections.LineCollection` for more information -colors = [mcolors.to_rgba(c) - for c in plt.rcParams['axes.prop_cycle'].by_key()['color']] - -line_segments = LineCollection(segs, linewidths=(0.5, 1, 1.5, 2), - colors=colors, linestyle='solid') -ax.add_collection(line_segments) -ax.set_title('Line collection with masked arrays') -plt.show() - -############################################################################### -# In order to efficiently plot many lines in a single set of axes, -# Matplotlib has the ability to add the lines all at once. Here is a -# simple example showing how it is done. - -N = 50 -x = np.arange(N) -# Here are many sets of y to plot vs x -ys = [x + i for i in x] - -# We need to set the plot limits, they will not autoscale -fig, ax = plt.subplots() -ax.set_xlim(np.min(x), np.max(x)) -ax.set_ylim(np.min(ys), np.max(ys)) - -# colors is sequence of rgba tuples -# linestyle is a string or dash tuple. Legal string values are -# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq) -# where onoffseq is an even length tuple of on and off ink in points. -# If linestyle is omitted, 'solid' is used -# See :class:`matplotlib.collections.LineCollection` for more information - -# Make a sequence of x,y pairs -line_segments = LineCollection([np.column_stack([x, y]) for y in ys], - linewidths=(0.5, 1, 1.5, 2), - linestyles='solid') -line_segments.set_array(x) -ax.add_collection(line_segments) -axcb = fig.colorbar(line_segments) -axcb.set_label('Line Number') -ax.set_title('Line Collection with mapped colors') -plt.sci(line_segments) # This allows interactive changing of the colormap. -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.collections -matplotlib.collections.LineCollection -matplotlib.cm.ScalarMappable.set_array -matplotlib.axes.Axes.add_collection -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.pyplot.sci diff --git a/_downloads/4a1add649320b796c355fff5216f7afe/whats_new_1_subplot3d.py b/_downloads/4a1add649320b796c355fff5216f7afe/whats_new_1_subplot3d.py deleted file mode 120000 index 79fda5efaf7..00000000000 --- a/_downloads/4a1add649320b796c355fff5216f7afe/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4a1add649320b796c355fff5216f7afe/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/_downloads/4a1f1cbf425993b8e78fb94fffe391f3/artist_reference.py b/_downloads/4a1f1cbf425993b8e78fb94fffe391f3/artist_reference.py deleted file mode 120000 index 1cefee76038..00000000000 --- a/_downloads/4a1f1cbf425993b8e78fb94fffe391f3/artist_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4a1f1cbf425993b8e78fb94fffe391f3/artist_reference.py \ No newline at end of file diff --git a/_downloads/4a224fe50a557d246fbd4624f234a729/colors.ipynb b/_downloads/4a224fe50a557d246fbd4624f234a729/colors.ipynb deleted file mode 120000 index fb249408a2c..00000000000 --- a/_downloads/4a224fe50a557d246fbd4624f234a729/colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4a224fe50a557d246fbd4624f234a729/colors.ipynb \ No newline at end of file diff --git a/_downloads/4a352b92f81128d07c0d8ae33621c217/frame_grabbing_sgskip.ipynb b/_downloads/4a352b92f81128d07c0d8ae33621c217/frame_grabbing_sgskip.ipynb deleted file mode 120000 index 8f119c7ec2c..00000000000 --- a/_downloads/4a352b92f81128d07c0d8ae33621c217/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4a352b92f81128d07c0d8ae33621c217/frame_grabbing_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/4a372ba32ff0309f18e3d1b150277198/system_monitor.py b/_downloads/4a372ba32ff0309f18e3d1b150277198/system_monitor.py deleted file mode 120000 index 0bffeb77cac..00000000000 --- a/_downloads/4a372ba32ff0309f18e3d1b150277198/system_monitor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4a372ba32ff0309f18e3d1b150277198/system_monitor.py \ No newline at end of file diff --git a/_downloads/4a466d6b160f7b0cb95c95f0ca0a567a/text_layout.py b/_downloads/4a466d6b160f7b0cb95c95f0ca0a567a/text_layout.py deleted file mode 120000 index 795ce5657f0..00000000000 --- a/_downloads/4a466d6b160f7b0cb95c95f0ca0a567a/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4a466d6b160f7b0cb95c95f0ca0a567a/text_layout.py \ No newline at end of file diff --git a/_downloads/4a48103b2b42dce3a2a81ea11b0d3bd4/constrainedlayout_guide.ipynb b/_downloads/4a48103b2b42dce3a2a81ea11b0d3bd4/constrainedlayout_guide.ipynb deleted file mode 120000 index 389d910e57b..00000000000 --- a/_downloads/4a48103b2b42dce3a2a81ea11b0d3bd4/constrainedlayout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4a48103b2b42dce3a2a81ea11b0d3bd4/constrainedlayout_guide.ipynb \ No newline at end of file diff --git a/_downloads/4a4bd6e1f1e9d30c723bcd70e095c993/date_demo_rrule.py b/_downloads/4a4bd6e1f1e9d30c723bcd70e095c993/date_demo_rrule.py deleted file mode 120000 index c6db7ec5037..00000000000 --- a/_downloads/4a4bd6e1f1e9d30c723bcd70e095c993/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4a4bd6e1f1e9d30c723bcd70e095c993/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/4a5305daf221dc6294899220c984e0dc/contour3d_3.ipynb b/_downloads/4a5305daf221dc6294899220c984e0dc/contour3d_3.ipynb deleted file mode 120000 index 3cb0c6a7cc2..00000000000 --- a/_downloads/4a5305daf221dc6294899220c984e0dc/contour3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4a5305daf221dc6294899220c984e0dc/contour3d_3.ipynb \ No newline at end of file diff --git a/_downloads/4a5b4ec5c9ddf7e0f405bb018b4bcb39/line_with_text.ipynb b/_downloads/4a5b4ec5c9ddf7e0f405bb018b4bcb39/line_with_text.ipynb deleted file mode 100644 index cdbb4d5d567..00000000000 --- a/_downloads/4a5b4ec5c9ddf7e0f405bb018b4bcb39/line_with_text.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Artist within an artist\n\n\nOverride basic methods so an artist can contain another\nartist. In this case, the line contains a Text instance to label it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.lines as lines\nimport matplotlib.transforms as mtransforms\nimport matplotlib.text as mtext\n\n\nclass MyLine(lines.Line2D):\n def __init__(self, *args, **kwargs):\n # we'll update the position when the line data is set\n self.text = mtext.Text(0, 0, '')\n lines.Line2D.__init__(self, *args, **kwargs)\n\n # we can't access the label attr until *after* the line is\n # initiated\n self.text.set_text(self.get_label())\n\n def set_figure(self, figure):\n self.text.set_figure(figure)\n lines.Line2D.set_figure(self, figure)\n\n def set_axes(self, axes):\n self.text.set_axes(axes)\n lines.Line2D.set_axes(self, axes)\n\n def set_transform(self, transform):\n # 2 pixel offset\n texttrans = transform + mtransforms.Affine2D().translate(2, 2)\n self.text.set_transform(texttrans)\n lines.Line2D.set_transform(self, transform)\n\n def set_data(self, x, y):\n if len(x):\n self.text.set_position((x[-1], y[-1]))\n\n lines.Line2D.set_data(self, x, y)\n\n def draw(self, renderer):\n # draw my label at the end of the line with 2 pixel offset\n lines.Line2D.draw(self, renderer)\n self.text.draw(renderer)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nx, y = np.random.rand(2, 20)\nline = MyLine(x, y, mfc='red', ms=12, label='line label')\n#line.text.set_text('line label')\nline.text.set_color('red')\nline.text.set_fontsize(16)\n\nax.add_line(line)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.lines\nmatplotlib.lines.Line2D\nmatplotlib.lines.Line2D.set_data\nmatplotlib.artist\nmatplotlib.artist.Artist\nmatplotlib.artist.Artist.draw\nmatplotlib.artist.Artist.set_transform\nmatplotlib.text\nmatplotlib.text.Text\nmatplotlib.text.Text.set_color\nmatplotlib.text.Text.set_fontsize\nmatplotlib.text.Text.set_position\nmatplotlib.axes.Axes.add_line\nmatplotlib.transforms\nmatplotlib.transforms.Affine2D" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4a5e67f7b58a5a41666a7ba00832f6da/double_pendulum_sgskip.ipynb b/_downloads/4a5e67f7b58a5a41666a7ba00832f6da/double_pendulum_sgskip.ipynb deleted file mode 120000 index 099ad3c859e..00000000000 --- a/_downloads/4a5e67f7b58a5a41666a7ba00832f6da/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4a5e67f7b58a5a41666a7ba00832f6da/double_pendulum_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/4a648ef9456f696258a19b26debbbdcc/path_patch.py b/_downloads/4a648ef9456f696258a19b26debbbdcc/path_patch.py deleted file mode 120000 index c6dd517506e..00000000000 --- a/_downloads/4a648ef9456f696258a19b26debbbdcc/path_patch.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4a648ef9456f696258a19b26debbbdcc/path_patch.py \ No newline at end of file diff --git a/_downloads/4a692fc530bbe793c16c007a4fb25baa/ginput_manual_clabel_sgskip.py b/_downloads/4a692fc530bbe793c16c007a4fb25baa/ginput_manual_clabel_sgskip.py deleted file mode 120000 index 6700e24ce6e..00000000000 --- a/_downloads/4a692fc530bbe793c16c007a4fb25baa/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4a692fc530bbe793c16c007a4fb25baa/ginput_manual_clabel_sgskip.py \ No newline at end of file diff --git a/_downloads/4a6c73a46c656a2254b487c579687479/tick-locators.ipynb b/_downloads/4a6c73a46c656a2254b487c579687479/tick-locators.ipynb deleted file mode 100644 index de106f99580..00000000000 --- a/_downloads/4a6c73a46c656a2254b487c579687479/tick-locators.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tick locators\n\n\nShow the different tick locators.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\n\n\n# Setup a plot such that only the bottom spine is shown\ndef setup(ax):\n ax.spines['right'].set_color('none')\n ax.spines['left'].set_color('none')\n ax.yaxis.set_major_locator(ticker.NullLocator())\n ax.spines['top'].set_color('none')\n ax.xaxis.set_ticks_position('bottom')\n ax.tick_params(which='major', width=1.00)\n ax.tick_params(which='major', length=5)\n ax.tick_params(which='minor', width=0.75)\n ax.tick_params(which='minor', length=2.5)\n ax.set_xlim(0, 5)\n ax.set_ylim(0, 1)\n ax.patch.set_alpha(0.0)\n\n\nplt.figure(figsize=(8, 6))\nn = 8\n\n# Null Locator\nax = plt.subplot(n, 1, 1)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.NullLocator())\nax.xaxis.set_minor_locator(ticker.NullLocator())\nax.text(0.0, 0.1, \"NullLocator()\", fontsize=14, transform=ax.transAxes)\n\n# Multiple Locator\nax = plt.subplot(n, 1, 2)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(0.5))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.1))\nax.text(0.0, 0.1, \"MultipleLocator(0.5)\", fontsize=14,\n transform=ax.transAxes)\n\n# Fixed Locator\nax = plt.subplot(n, 1, 3)\nsetup(ax)\nmajors = [0, 1, 5]\nax.xaxis.set_major_locator(ticker.FixedLocator(majors))\nminors = np.linspace(0, 1, 11)[1:-1]\nax.xaxis.set_minor_locator(ticker.FixedLocator(minors))\nax.text(0.0, 0.1, \"FixedLocator([0, 1, 5])\", fontsize=14,\n transform=ax.transAxes)\n\n# Linear Locator\nax = plt.subplot(n, 1, 4)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.LinearLocator(3))\nax.xaxis.set_minor_locator(ticker.LinearLocator(31))\nax.text(0.0, 0.1, \"LinearLocator(numticks=3)\",\n fontsize=14, transform=ax.transAxes)\n\n# Index Locator\nax = plt.subplot(n, 1, 5)\nsetup(ax)\nax.plot(range(0, 5), [0]*5, color='white')\nax.xaxis.set_major_locator(ticker.IndexLocator(base=.5, offset=.25))\nax.text(0.0, 0.1, \"IndexLocator(base=0.5, offset=0.25)\",\n fontsize=14, transform=ax.transAxes)\n\n# Auto Locator\nax = plt.subplot(n, 1, 6)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.AutoLocator())\nax.xaxis.set_minor_locator(ticker.AutoMinorLocator())\nax.text(0.0, 0.1, \"AutoLocator()\", fontsize=14, transform=ax.transAxes)\n\n# MaxN Locator\nax = plt.subplot(n, 1, 7)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MaxNLocator(4))\nax.xaxis.set_minor_locator(ticker.MaxNLocator(40))\nax.text(0.0, 0.1, \"MaxNLocator(n=4)\", fontsize=14, transform=ax.transAxes)\n\n# Log Locator\nax = plt.subplot(n, 1, 8)\nsetup(ax)\nax.set_xlim(10**3, 10**10)\nax.set_xscale('log')\nax.xaxis.set_major_locator(ticker.LogLocator(base=10.0, numticks=15))\nax.text(0.0, 0.1, \"LogLocator(base=10, numticks=15)\",\n fontsize=15, transform=ax.transAxes)\n\n# Push the top of the top axes outside the figure because we only show the\n# bottom spine.\nplt.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4a6e33f3e3e1aaea2a8401dc361c1209/legend_demo.ipynb b/_downloads/4a6e33f3e3e1aaea2a8401dc361c1209/legend_demo.ipynb deleted file mode 120000 index 7f642b2c11c..00000000000 --- a/_downloads/4a6e33f3e3e1aaea2a8401dc361c1209/legend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4a6e33f3e3e1aaea2a8401dc361c1209/legend_demo.ipynb \ No newline at end of file diff --git a/_downloads/4a6e9fe348c4cba94261d82aa70f102c/text_commands.py b/_downloads/4a6e9fe348c4cba94261d82aa70f102c/text_commands.py deleted file mode 120000 index 04584c949f7..00000000000 --- a/_downloads/4a6e9fe348c4cba94261d82aa70f102c/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4a6e9fe348c4cba94261d82aa70f102c/text_commands.py \ No newline at end of file diff --git a/_downloads/4a70b5b1d6c0cace960aa2bac1172b15/anchored_box03.ipynb b/_downloads/4a70b5b1d6c0cace960aa2bac1172b15/anchored_box03.ipynb deleted file mode 120000 index 1436b5a6d32..00000000000 --- a/_downloads/4a70b5b1d6c0cace960aa2bac1172b15/anchored_box03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4a70b5b1d6c0cace960aa2bac1172b15/anchored_box03.ipynb \ No newline at end of file diff --git a/_downloads/4a718370991ab338b44ef7a4d6fb9308/quad_bezier.py b/_downloads/4a718370991ab338b44ef7a4d6fb9308/quad_bezier.py deleted file mode 120000 index f57c55a87ec..00000000000 --- a/_downloads/4a718370991ab338b44ef7a4d6fb9308/quad_bezier.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4a718370991ab338b44ef7a4d6fb9308/quad_bezier.py \ No newline at end of file diff --git a/_downloads/4a760e0d904e497acc2e1fc6618ba903/tickedstroke_demo.ipynb b/_downloads/4a760e0d904e497acc2e1fc6618ba903/tickedstroke_demo.ipynb deleted file mode 120000 index 3e8f838d4c2..00000000000 --- a/_downloads/4a760e0d904e497acc2e1fc6618ba903/tickedstroke_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4a760e0d904e497acc2e1fc6618ba903/tickedstroke_demo.ipynb \ No newline at end of file diff --git a/_downloads/4a8b771d82bea6a5cc79cf4f7d0a3fda/image_demo.py b/_downloads/4a8b771d82bea6a5cc79cf4f7d0a3fda/image_demo.py deleted file mode 120000 index 9367287b1a3..00000000000 --- a/_downloads/4a8b771d82bea6a5cc79cf4f7d0a3fda/image_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4a8b771d82bea6a5cc79cf4f7d0a3fda/image_demo.py \ No newline at end of file diff --git a/_downloads/4a8db41bb850567e9fd7e426f443dba4/subplots_demo.ipynb b/_downloads/4a8db41bb850567e9fd7e426f443dba4/subplots_demo.ipynb deleted file mode 120000 index 4f0392c94ed..00000000000 --- a/_downloads/4a8db41bb850567e9fd7e426f443dba4/subplots_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4a8db41bb850567e9fd7e426f443dba4/subplots_demo.ipynb \ No newline at end of file diff --git a/_downloads/4a93c1847f4e6f5d5d388cd1de6958a6/image_slices_viewer.py b/_downloads/4a93c1847f4e6f5d5d388cd1de6958a6/image_slices_viewer.py deleted file mode 120000 index dd387b3e9cf..00000000000 --- a/_downloads/4a93c1847f4e6f5d5d388cd1de6958a6/image_slices_viewer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4a93c1847f4e6f5d5d388cd1de6958a6/image_slices_viewer.py \ No newline at end of file diff --git a/_downloads/4a992f58233ec070abe70ffbc213916f/contourf_hatching.py b/_downloads/4a992f58233ec070abe70ffbc213916f/contourf_hatching.py deleted file mode 100644 index ca76e7338f2..00000000000 --- a/_downloads/4a992f58233ec070abe70ffbc213916f/contourf_hatching.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -================= -Contourf Hatching -================= - -Demo filled contour plots with hatched patterns. -""" -import matplotlib.pyplot as plt -import numpy as np - -# invent some numbers, turning the x and y arrays into simple -# 2d arrays, which make combining them together easier. -x = np.linspace(-3, 5, 150).reshape(1, -1) -y = np.linspace(-3, 5, 120).reshape(-1, 1) -z = np.cos(x) + np.sin(y) - -# we no longer need x and y to be 2 dimensional, so flatten them. -x, y = x.flatten(), y.flatten() - -############################################################################### -# Plot 1: the simplest hatched plot with a colorbar - -fig1, ax1 = plt.subplots() -cs = ax1.contourf(x, y, z, hatches=['-', '/', '\\', '//'], - cmap='gray', extend='both', alpha=0.5) -fig1.colorbar(cs) - -############################################################################### -# Plot 2: a plot of hatches without color with a legend - -fig2, ax2 = plt.subplots() -n_levels = 6 -ax2.contour(x, y, z, n_levels, colors='black', linestyles='-') -cs = ax2.contourf(x, y, z, n_levels, colors='none', - hatches=['.', '/', '\\', None, '\\\\', '*'], - extend='lower') - -# create a legend for the contour set -artists, labels = cs.legend_elements() -ax2.legend(artists, labels, handleheight=2) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.contour.ContourSet -matplotlib.contour.ContourSet.legend_elements diff --git a/_downloads/4a995011ce29857949e614cc4b497409/colorbar_placement.ipynb b/_downloads/4a995011ce29857949e614cc4b497409/colorbar_placement.ipynb deleted file mode 120000 index 014236c8203..00000000000 --- a/_downloads/4a995011ce29857949e614cc4b497409/colorbar_placement.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4a995011ce29857949e614cc4b497409/colorbar_placement.ipynb \ No newline at end of file diff --git a/_downloads/4a9b5d39d952d46f39f5ee264cec463d/bar_demo2.py b/_downloads/4a9b5d39d952d46f39f5ee264cec463d/bar_demo2.py deleted file mode 120000 index a212c27f63e..00000000000 --- a/_downloads/4a9b5d39d952d46f39f5ee264cec463d/bar_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4a9b5d39d952d46f39f5ee264cec463d/bar_demo2.py \ No newline at end of file diff --git a/_downloads/4aa1092eb2f9b51986ef08e54328c72a/eventplot_demo.ipynb b/_downloads/4aa1092eb2f9b51986ef08e54328c72a/eventplot_demo.ipynb deleted file mode 120000 index 88420967caf..00000000000 --- a/_downloads/4aa1092eb2f9b51986ef08e54328c72a/eventplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4aa1092eb2f9b51986ef08e54328c72a/eventplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/4aa26d68c5cd9a59dd2deff4a25d7691/arrow_demo.py b/_downloads/4aa26d68c5cd9a59dd2deff4a25d7691/arrow_demo.py deleted file mode 120000 index a477936cb58..00000000000 --- a/_downloads/4aa26d68c5cd9a59dd2deff4a25d7691/arrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4aa26d68c5cd9a59dd2deff4a25d7691/arrow_demo.py \ No newline at end of file diff --git a/_downloads/4aa27021afc37a4312d4605713d761f1/radian_demo.ipynb b/_downloads/4aa27021afc37a4312d4605713d761f1/radian_demo.ipynb deleted file mode 120000 index 43fd8a26f04..00000000000 --- a/_downloads/4aa27021afc37a4312d4605713d761f1/radian_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4aa27021afc37a4312d4605713d761f1/radian_demo.ipynb \ No newline at end of file diff --git a/_downloads/4aa5073a49b89bb854998a7c9b331f94/font_file.ipynb b/_downloads/4aa5073a49b89bb854998a7c9b331f94/font_file.ipynb deleted file mode 120000 index 0f274498f2c..00000000000 --- a/_downloads/4aa5073a49b89bb854998a7c9b331f94/font_file.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4aa5073a49b89bb854998a7c9b331f94/font_file.ipynb \ No newline at end of file diff --git a/_downloads/4aaeb967f894da2b34a76a67cf9c6ddb/anchored_box04.py b/_downloads/4aaeb967f894da2b34a76a67cf9c6ddb/anchored_box04.py deleted file mode 120000 index 5580ed2bb08..00000000000 --- a/_downloads/4aaeb967f894da2b34a76a67cf9c6ddb/anchored_box04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4aaeb967f894da2b34a76a67cf9c6ddb/anchored_box04.py \ No newline at end of file diff --git a/_downloads/4ab40d4ecca1750eff06879ca1d622b0/svg_filter_line.py b/_downloads/4ab40d4ecca1750eff06879ca1d622b0/svg_filter_line.py deleted file mode 120000 index 08d46519807..00000000000 --- a/_downloads/4ab40d4ecca1750eff06879ca1d622b0/svg_filter_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4ab40d4ecca1750eff06879ca1d622b0/svg_filter_line.py \ No newline at end of file diff --git a/_downloads/4ab6fa0aade4e176ffbbc0a41b5cf44c/pick_event_demo.py b/_downloads/4ab6fa0aade4e176ffbbc0a41b5cf44c/pick_event_demo.py deleted file mode 120000 index 91dee51766d..00000000000 --- a/_downloads/4ab6fa0aade4e176ffbbc0a41b5cf44c/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4ab6fa0aade4e176ffbbc0a41b5cf44c/pick_event_demo.py \ No newline at end of file diff --git a/_downloads/4aba7fd61ae41b62977c97f991d34773/autowrap.ipynb b/_downloads/4aba7fd61ae41b62977c97f991d34773/autowrap.ipynb deleted file mode 120000 index 53c6cecfc94..00000000000 --- a/_downloads/4aba7fd61ae41b62977c97f991d34773/autowrap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4aba7fd61ae41b62977c97f991d34773/autowrap.ipynb \ No newline at end of file diff --git a/_downloads/4ac397070f7082e12e1a4888db538a3d/axes_props.ipynb b/_downloads/4ac397070f7082e12e1a4888db538a3d/axes_props.ipynb deleted file mode 120000 index b70c8d0002f..00000000000 --- a/_downloads/4ac397070f7082e12e1a4888db538a3d/axes_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4ac397070f7082e12e1a4888db538a3d/axes_props.ipynb \ No newline at end of file diff --git a/_downloads/4ad24ba7d7bfe4f2fb3c3ea7231d1bfe/voxels_torus.py b/_downloads/4ad24ba7d7bfe4f2fb3c3ea7231d1bfe/voxels_torus.py deleted file mode 120000 index fc1ba0fdf18..00000000000 --- a/_downloads/4ad24ba7d7bfe4f2fb3c3ea7231d1bfe/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4ad24ba7d7bfe4f2fb3c3ea7231d1bfe/voxels_torus.py \ No newline at end of file diff --git a/_downloads/4ad72df52615cfce120da1981d41d969/major_minor_demo.py b/_downloads/4ad72df52615cfce120da1981d41d969/major_minor_demo.py deleted file mode 120000 index d00e2b5da0b..00000000000 --- a/_downloads/4ad72df52615cfce120da1981d41d969/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4ad72df52615cfce120da1981d41d969/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/4adbf81dd03c82cc67a076dadd0dcd3e/colormap_normalizations_bounds.py b/_downloads/4adbf81dd03c82cc67a076dadd0dcd3e/colormap_normalizations_bounds.py deleted file mode 120000 index 84af5d0a58d..00000000000 --- a/_downloads/4adbf81dd03c82cc67a076dadd0dcd3e/colormap_normalizations_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4adbf81dd03c82cc67a076dadd0dcd3e/colormap_normalizations_bounds.py \ No newline at end of file diff --git a/_downloads/4ae0990361d395aa5d38a77d5ff3f782/pie_and_donut_labels.py b/_downloads/4ae0990361d395aa5d38a77d5ff3f782/pie_and_donut_labels.py deleted file mode 120000 index b6ca7b06174..00000000000 --- a/_downloads/4ae0990361d395aa5d38a77d5ff3f782/pie_and_donut_labels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4ae0990361d395aa5d38a77d5ff3f782/pie_and_donut_labels.py \ No newline at end of file diff --git a/_downloads/4aeda80e1b610699a943d10460647221/demo_axes_grid.py b/_downloads/4aeda80e1b610699a943d10460647221/demo_axes_grid.py deleted file mode 100644 index b21b288c355..00000000000 --- a/_downloads/4aeda80e1b610699a943d10460647221/demo_axes_grid.py +++ /dev/null @@ -1,130 +0,0 @@ -""" -============== -Demo Axes Grid -============== - -Grid of 2x2 images with single or own colorbar. -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def demo_simple_grid(fig): - """ - A grid of 2x2 images with 0.05 inch pad between images and only - the lower-left axes is labeled. - """ - grid = ImageGrid(fig, 141, # similar to subplot(141) - nrows_ncols=(2, 2), - axes_pad=0.05, - label_mode="1", - ) - - Z, extent = get_demo_image() - for ax in grid: - im = ax.imshow(Z, extent=extent, interpolation="nearest") - - # This only affects axes in first column and second row as share_all = - # False. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_grid_with_single_cbar(fig): - """ - A grid of 2x2 images with a single colorbar - """ - grid = ImageGrid(fig, 142, # similar to subplot(142) - nrows_ncols=(2, 2), - axes_pad=0.0, - share_all=True, - label_mode="L", - cbar_location="top", - cbar_mode="single", - ) - - Z, extent = get_demo_image() - for ax in grid: - im = ax.imshow(Z, extent=extent, interpolation="nearest") - grid.cbar_axes[0].colorbar(im) - - for cax in grid.cbar_axes: - cax.toggle_label(False) - - # This affects all axes as share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_grid_with_each_cbar(fig): - """ - A grid of 2x2 images. Each image has its own colorbar. - """ - grid = ImageGrid(fig, 143, # similar to subplot(143) - nrows_ncols=(2, 2), - axes_pad=0.1, - label_mode="1", - share_all=True, - cbar_location="top", - cbar_mode="each", - cbar_size="7%", - cbar_pad="2%", - ) - Z, extent = get_demo_image() - for ax, cax in zip(grid, grid.cbar_axes): - im = ax.imshow(Z, extent=extent, interpolation="nearest") - cax.colorbar(im) - cax.toggle_label(False) - - # This affects all axes because we set share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_grid_with_each_cbar_labelled(fig): - """ - A grid of 2x2 images. Each image has its own colorbar. - """ - grid = ImageGrid(fig, 144, # similar to subplot(144) - nrows_ncols=(2, 2), - axes_pad=(0.45, 0.15), - label_mode="1", - share_all=True, - cbar_location="right", - cbar_mode="each", - cbar_size="7%", - cbar_pad="2%", - ) - Z, extent = get_demo_image() - - # Use a different colorbar range every time - limits = ((0, 1), (-2, 2), (-1.7, 1.4), (-1.5, 1)) - for ax, cax, vlim in zip(grid, grid.cbar_axes, limits): - im = ax.imshow(Z, extent=extent, interpolation="nearest", - vmin=vlim[0], vmax=vlim[1]) - cax.colorbar(im) - cax.set_yticks((vlim[0], vlim[1])) - - # This affects all axes because we set share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -fig = plt.figure(figsize=(10.5, 2.5)) -fig.subplots_adjust(left=0.05, right=0.95) - -demo_simple_grid(fig) -demo_grid_with_single_cbar(fig) -demo_grid_with_each_cbar(fig) -demo_grid_with_each_cbar_labelled(fig) - -plt.show() diff --git a/_downloads/4aedd6e24bbc0db3b25dc56e36dc7629/secondary_axis.py b/_downloads/4aedd6e24bbc0db3b25dc56e36dc7629/secondary_axis.py deleted file mode 120000 index 5b30712fea4..00000000000 --- a/_downloads/4aedd6e24bbc0db3b25dc56e36dc7629/secondary_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4aedd6e24bbc0db3b25dc56e36dc7629/secondary_axis.py \ No newline at end of file diff --git a/_downloads/4af15799ccf67ad5808c379f1cd699ce/fill_betweenx_demo.py b/_downloads/4af15799ccf67ad5808c379f1cd699ce/fill_betweenx_demo.py deleted file mode 120000 index 75367955797..00000000000 --- a/_downloads/4af15799ccf67ad5808c379f1cd699ce/fill_betweenx_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4af15799ccf67ad5808c379f1cd699ce/fill_betweenx_demo.py \ No newline at end of file diff --git a/_downloads/4af292a0ab831fb81d7952165af2c7cb/scatter_hist_locatable_axes.py b/_downloads/4af292a0ab831fb81d7952165af2c7cb/scatter_hist_locatable_axes.py deleted file mode 120000 index f9412dd2c94..00000000000 --- a/_downloads/4af292a0ab831fb81d7952165af2c7cb/scatter_hist_locatable_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4af292a0ab831fb81d7952165af2c7cb/scatter_hist_locatable_axes.py \ No newline at end of file diff --git a/_downloads/4af67dfb579533e189ffda6e48b4bd41/engineering_formatter.ipynb b/_downloads/4af67dfb579533e189ffda6e48b4bd41/engineering_formatter.ipynb deleted file mode 120000 index e57f77f1900..00000000000 --- a/_downloads/4af67dfb579533e189ffda6e48b4bd41/engineering_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4af67dfb579533e189ffda6e48b4bd41/engineering_formatter.ipynb \ No newline at end of file diff --git a/_downloads/4af9625e7df8151242a6d97a7a2a5463/pyplot_text.ipynb b/_downloads/4af9625e7df8151242a6d97a7a2a5463/pyplot_text.ipynb deleted file mode 120000 index 80296028d6d..00000000000 --- a/_downloads/4af9625e7df8151242a6d97a7a2a5463/pyplot_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4af9625e7df8151242a6d97a7a2a5463/pyplot_text.ipynb \ No newline at end of file diff --git a/_downloads/4afb9cddb58eaf1c9dc4209d7df580cb/subplot.py b/_downloads/4afb9cddb58eaf1c9dc4209d7df580cb/subplot.py deleted file mode 120000 index 0a096506818..00000000000 --- a/_downloads/4afb9cddb58eaf1c9dc4209d7df580cb/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4afb9cddb58eaf1c9dc4209d7df580cb/subplot.py \ No newline at end of file diff --git a/_downloads/4b020cc4c8c19f5e21906536661bef08/pie_features.py b/_downloads/4b020cc4c8c19f5e21906536661bef08/pie_features.py deleted file mode 120000 index 26d562c47ce..00000000000 --- a/_downloads/4b020cc4c8c19f5e21906536661bef08/pie_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4b020cc4c8c19f5e21906536661bef08/pie_features.py \ No newline at end of file diff --git a/_downloads/4b021a35e6da09c35e472b55231a716c/joinstyle.py b/_downloads/4b021a35e6da09c35e472b55231a716c/joinstyle.py deleted file mode 100644 index 3c12053d3eb..00000000000 --- a/_downloads/4b021a35e6da09c35e472b55231a716c/joinstyle.py +++ /dev/null @@ -1,94 +0,0 @@ -""" -========================== -Join styles and cap styles -========================== - -This example demonstrates the available join styles and cap styles. - -Both are used in `.Line2D` and various ``Collections`` from -`matplotlib.collections` as well as some functions that create these, e.g. -`~matplotlib.pyplot.plot`. - -""" - -############################################################################# -# -# Join styles -# """"""""""" -# -# Join styles define how the connection between two line segments is drawn. -# -# See the respective ``solid_joinstyle``, ``dash_joinstyle`` or ``joinstyle`` -# parameters. - -import numpy as np -import matplotlib.pyplot as plt - - -def plot_angle(ax, x, y, angle, style): - phi = np.radians(angle) - xx = [x + .5, x, x + .5*np.cos(phi)] - yy = [y, y, y + .5*np.sin(phi)] - ax.plot(xx, yy, lw=12, color='tab:blue', solid_joinstyle=style) - ax.plot(xx, yy, lw=1, color='black') - ax.plot(xx[1], yy[1], 'o', color='tab:red', markersize=3) - - -fig, ax = plt.subplots(figsize=(8, 6)) -ax.set_title('Join style') - -for x, style in enumerate(['miter', 'round', 'bevel']): - ax.text(x, 5, style) - for y, angle in enumerate([20, 45, 60, 90, 120]): - plot_angle(ax, x, y, angle, style) - if x == 0: - ax.text(-1.3, y, f'{angle} degrees') -ax.text(1, 4.7, '(default)') - -ax.set_xlim(-1.5, 2.75) -ax.set_ylim(-.5, 5.5) -ax.xaxis.set_visible(False) -ax.yaxis.set_visible(False) -plt.show() - - -############################################################################# -# -# Cap styles -# """""""""" -# -# Cap styles define how the the end of a line is drawn. -# -# See the respective ``solid_capstyle``, ``dash_capstyle`` or ``capstyle`` -# parameters. - -fig, ax = plt.subplots(figsize=(8, 2)) -ax.set_title('Cap style') - -for x, style in enumerate(['butt', 'round', 'projecting']): - ax.text(x, 1, style) - xx = [x, x+0.5] - yy = [0, 0] - ax.plot(xx, yy, lw=12, color='tab:blue', solid_capstyle=style) - ax.plot(xx, yy, lw=1, color='black') - ax.plot(xx, yy, 'o', color='tab:red', markersize=3) -ax.text(2, 0.7, '(default)') - -ax.set_ylim(-.5, 1.5) -ax.xaxis.set_visible(False) -ax.yaxis.set_visible(False) - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot diff --git a/_downloads/4b0bfc86a1ba58f96b40478cc4e5bb49/hist_plot.py b/_downloads/4b0bfc86a1ba58f96b40478cc4e5bb49/hist_plot.py deleted file mode 120000 index 2cc72ce13bc..00000000000 --- a/_downloads/4b0bfc86a1ba58f96b40478cc4e5bb49/hist_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4b0bfc86a1ba58f96b40478cc4e5bb49/hist_plot.py \ No newline at end of file diff --git a/_downloads/4b1afda05b9d0a8b080163243269cdfc/scalarformatter.ipynb b/_downloads/4b1afda05b9d0a8b080163243269cdfc/scalarformatter.ipynb deleted file mode 100644 index 6e73f4b2f3d..00000000000 --- a/_downloads/4b1afda05b9d0a8b080163243269cdfc/scalarformatter.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tick formatting using the ScalarFormatter\n\n\nThe example shows use of ScalarFormatter with different settings.\n\nExample 1 : Default\n\nExample 2 : With no Numerical Offset\n\nExample 3 : With Mathtext\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.ticker import ScalarFormatter" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 1, .01)\nfig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6))\nfig.text(0.5, 0.975, 'The new formatter, default settings',\n horizontalalignment='center',\n verticalalignment='top')\n\nax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5)\nax1.xaxis.set_major_formatter(ScalarFormatter())\nax1.yaxis.set_major_formatter(ScalarFormatter())\n\nax2.plot(x * 1e5, x * 1e-4)\nax2.xaxis.set_major_formatter(ScalarFormatter())\nax2.yaxis.set_major_formatter(ScalarFormatter())\n\nax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10)\nax3.xaxis.set_major_formatter(ScalarFormatter())\nax3.yaxis.set_major_formatter(ScalarFormatter())\n\nax4.plot(-x * 1e5, -x * 1e-4)\nax4.xaxis.set_major_formatter(ScalarFormatter())\nax4.yaxis.set_major_formatter(ScalarFormatter())\n\nfig.subplots_adjust(wspace=0.7, hspace=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 1, .01)\nfig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6))\nfig.text(0.5, 0.975, 'The new formatter, no numerical offset',\n horizontalalignment='center',\n verticalalignment='top')\n\nax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5)\nax1.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax1.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nax2.plot(x * 1e5, x * 1e-4)\nax2.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax2.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10)\nax3.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax3.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nax4.plot(-x * 1e5, -x * 1e-4)\nax4.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax4.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nfig.subplots_adjust(wspace=0.7, hspace=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 1, .01)\nfig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6))\nfig.text(0.5, 0.975, 'The new formatter, with mathtext',\n horizontalalignment='center',\n verticalalignment='top')\n\nax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5)\nax1.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax1.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nax2.plot(x * 1e5, x * 1e-4)\nax2.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax2.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10)\nax3.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax3.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nax4.plot(-x * 1e5, -x * 1e-4)\nax4.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax4.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nfig.subplots_adjust(wspace=0.7, hspace=0.6)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4b29f8dc2102a5bfd6e534a352d9890d/fig_axes_customize_simple.py b/_downloads/4b29f8dc2102a5bfd6e534a352d9890d/fig_axes_customize_simple.py deleted file mode 120000 index 98f970a7a3e..00000000000 --- a/_downloads/4b29f8dc2102a5bfd6e534a352d9890d/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4b29f8dc2102a5bfd6e534a352d9890d/fig_axes_customize_simple.py \ No newline at end of file diff --git a/_downloads/4b2e21f970611c05a07574bf0ea97293/annotate_text_arrow.py b/_downloads/4b2e21f970611c05a07574bf0ea97293/annotate_text_arrow.py deleted file mode 120000 index 15872ba0839..00000000000 --- a/_downloads/4b2e21f970611c05a07574bf0ea97293/annotate_text_arrow.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4b2e21f970611c05a07574bf0ea97293/annotate_text_arrow.py \ No newline at end of file diff --git a/_downloads/4b2e7acea40d6dfbc4a7b0ad9c42103c/annotate_text_arrow.ipynb b/_downloads/4b2e7acea40d6dfbc4a7b0ad9c42103c/annotate_text_arrow.ipynb deleted file mode 120000 index e6fe179759c..00000000000 --- a/_downloads/4b2e7acea40d6dfbc4a7b0ad9c42103c/annotate_text_arrow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4b2e7acea40d6dfbc4a7b0ad9c42103c/annotate_text_arrow.ipynb \ No newline at end of file diff --git a/_downloads/4b361e39e7512906202fcb0a8d8838ea/demo_gridspec06.ipynb b/_downloads/4b361e39e7512906202fcb0a8d8838ea/demo_gridspec06.ipynb deleted file mode 120000 index 9ff0ef518f5..00000000000 --- a/_downloads/4b361e39e7512906202fcb0a8d8838ea/demo_gridspec06.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4b361e39e7512906202fcb0a8d8838ea/demo_gridspec06.ipynb \ No newline at end of file diff --git a/_downloads/4b4969c4264eb64406ae60db649b3c38/simple_anim.py b/_downloads/4b4969c4264eb64406ae60db649b3c38/simple_anim.py deleted file mode 120000 index e85936c257a..00000000000 --- a/_downloads/4b4969c4264eb64406ae60db649b3c38/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4b4969c4264eb64406ae60db649b3c38/simple_anim.py \ No newline at end of file diff --git a/_downloads/4b5da72416954741af3b160790be626a/text_fontdict.ipynb b/_downloads/4b5da72416954741af3b160790be626a/text_fontdict.ipynb deleted file mode 120000 index c6f257d52aa..00000000000 --- a/_downloads/4b5da72416954741af3b160790be626a/text_fontdict.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4b5da72416954741af3b160790be626a/text_fontdict.ipynb \ No newline at end of file diff --git a/_downloads/4b685b8b6cb908aa2b453a785259056a/tutorials_jupyter.zip b/_downloads/4b685b8b6cb908aa2b453a785259056a/tutorials_jupyter.zip deleted file mode 120000 index 70d91a31009..00000000000 --- a/_downloads/4b685b8b6cb908aa2b453a785259056a/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.3/_downloads/4b685b8b6cb908aa2b453a785259056a/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/4b8652d20ffe810de7b1b4ba67270215/barchart_demo.py b/_downloads/4b8652d20ffe810de7b1b4ba67270215/barchart_demo.py deleted file mode 120000 index 1d067ef4320..00000000000 --- a/_downloads/4b8652d20ffe810de7b1b4ba67270215/barchart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4b8652d20ffe810de7b1b4ba67270215/barchart_demo.py \ No newline at end of file diff --git a/_downloads/4b87951781e8d2a38157a67d2f0a6fa9/tick-formatters.ipynb b/_downloads/4b87951781e8d2a38157a67d2f0a6fa9/tick-formatters.ipynb deleted file mode 120000 index f96d71a6bee..00000000000 --- a/_downloads/4b87951781e8d2a38157a67d2f0a6fa9/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4b87951781e8d2a38157a67d2f0a6fa9/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/4b957aafc77dbf13165040b1e2ae01f6/cursor.ipynb b/_downloads/4b957aafc77dbf13165040b1e2ae01f6/cursor.ipynb deleted file mode 120000 index 61bd508f89c..00000000000 --- a/_downloads/4b957aafc77dbf13165040b1e2ae01f6/cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4b957aafc77dbf13165040b1e2ae01f6/cursor.ipynb \ No newline at end of file diff --git a/_downloads/4b98d88d0ba39ecbb421f01a726d49ff/logos2.ipynb b/_downloads/4b98d88d0ba39ecbb421f01a726d49ff/logos2.ipynb deleted file mode 100644 index 13a52fb81f2..00000000000 --- a/_downloads/4b98d88d0ba39ecbb421f01a726d49ff/logos2.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Matplotlib logo\n\n\nThis example generates the current matplotlib logo.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport matplotlib.font_manager\nfrom matplotlib.patches import Circle, Rectangle, PathPatch\nfrom matplotlib.textpath import TextPath\nimport matplotlib.transforms as mtrans\n\nMPL_BLUE = '#11557c'\n\n\ndef get_font_properties():\n # The original font is Calibri, if that is not installed, we fall back\n # to Carlito, which is metrically equivalent.\n if 'Calibri' in matplotlib.font_manager.findfont('Calibri:bold'):\n return matplotlib.font_manager.FontProperties(family='Calibri',\n weight='bold')\n if 'Carlito' in matplotlib.font_manager.findfont('Carlito:bold'):\n print('Original font not found. Falling back to Carlito. '\n 'The logo text will not be in the correct font.')\n return matplotlib.font_manager.FontProperties(family='Carlito',\n weight='bold')\n print('Original font not found. '\n 'The logo text will not be in the correct font.')\n return None\n\n\ndef create_icon_axes(fig, ax_position, lw_bars, lw_grid, lw_border, rgrid):\n \"\"\"\n Create a polar axes containing the matplotlib radar plot.\n\n Parameters\n ----------\n fig : matplotlib.figure.Figure\n The figure to draw into.\n ax_position : (float, float, float, float)\n The position of the created Axes in figure coordinates as\n (x, y, width, height).\n lw_bars : float\n The linewidth of the bars.\n lw_grid : float\n The linewidth of the grid.\n lw_border : float\n The linewidth of the Axes border.\n rgrid : array-like\n Positions of the radial grid.\n\n Returns\n -------\n ax : matplotlib.axes.Axes\n The created Axes.\n \"\"\"\n with plt.rc_context({'axes.edgecolor': MPL_BLUE,\n 'axes.linewidth': lw_border}):\n ax = fig.add_axes(ax_position, projection='polar')\n ax.set_axisbelow(True)\n\n N = 7\n arc = 2. * np.pi\n theta = np.arange(0.0, arc, arc / N)\n radii = np.array([2, 6, 8, 7, 4, 5, 8])\n width = np.pi / 4 * np.array([0.4, 0.4, 0.6, 0.8, 0.2, 0.5, 0.3])\n bars = ax.bar(theta, radii, width=width, bottom=0.0, align='edge',\n edgecolor='0.3', lw=lw_bars)\n for r, bar in zip(radii, bars):\n color = *cm.jet(r / 10.)[:3], 0.6 # color from jet with alpha=0.6\n bar.set_facecolor(color)\n\n ax.tick_params(labelbottom=False, labeltop=False,\n labelleft=False, labelright=False)\n\n ax.grid(lw=lw_grid, color='0.9')\n ax.set_rmax(9)\n ax.set_yticks(rgrid)\n\n # the actual visible background - extends a bit beyond the axis\n ax.add_patch(Rectangle((0, 0), arc, 9.58,\n facecolor='white', zorder=0,\n clip_on=False, in_layout=False))\n return ax\n\n\ndef create_text_axes(fig, height_px):\n \"\"\"Create an axes in *fig* that contains 'matplotlib' as Text.\"\"\"\n ax = fig.add_axes((0, 0, 1, 1))\n ax.set_aspect(\"equal\")\n ax.set_axis_off()\n\n path = TextPath((0, 0), \"matplotlib\", size=height_px * 0.8,\n prop=get_font_properties())\n\n angle = 4.25 # degrees\n trans = mtrans.Affine2D().skew_deg(angle, 0)\n\n patch = PathPatch(path, transform=trans + ax.transData, color=MPL_BLUE,\n lw=0)\n ax.add_patch(patch)\n ax.autoscale()\n\n\ndef make_logo(height_px, lw_bars, lw_grid, lw_border, rgrid, with_text=False):\n \"\"\"\n Create a full figure with the Matplotlib logo.\n\n Parameters\n ----------\n height_px : int\n Height of the figure in pixel.\n lw_bars : float\n The linewidth of the bar border.\n lw_grid : float\n The linewidth of the grid.\n lw_border : float\n The linewidth of icon border.\n rgrid : sequence of float\n The radial grid positions.\n with_text : bool\n Whether to draw only the icon or to include 'matplotlib' as text.\n \"\"\"\n dpi = 100\n height = height_px / dpi\n figsize = (5 * height, height) if with_text else (height, height)\n fig = plt.figure(figsize=figsize, dpi=dpi)\n fig.patch.set_alpha(0)\n\n if with_text:\n create_text_axes(fig, height_px)\n ax_pos = (0.535, 0.12, .17, 0.75) if with_text else (0.03, 0.03, .94, .94)\n ax = create_icon_axes(fig, ax_pos, lw_bars, lw_grid, lw_border, rgrid)\n\n return fig, ax" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A large logo:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1,\n rgrid=[1, 3, 5, 7])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A small 32px logo:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "make_logo(height_px=32, lw_bars=0.3, lw_grid=0.3, lw_border=0.3, rgrid=[5])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A large logo including text, as used on the matplotlib website.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1,\n rgrid=[1, 3, 5, 7], with_text=True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4b9fb0250e70246a1c3043e9b126bc4d/subplots_demo.ipynb b/_downloads/4b9fb0250e70246a1c3043e9b126bc4d/subplots_demo.ipynb deleted file mode 120000 index 79a0c911778..00000000000 --- a/_downloads/4b9fb0250e70246a1c3043e9b126bc4d/subplots_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4b9fb0250e70246a1c3043e9b126bc4d/subplots_demo.ipynb \ No newline at end of file diff --git a/_downloads/4ba945f00bae04f2da137e370ec93cb6/legend.py b/_downloads/4ba945f00bae04f2da137e370ec93cb6/legend.py deleted file mode 120000 index 8697595b22b..00000000000 --- a/_downloads/4ba945f00bae04f2da137e370ec93cb6/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4ba945f00bae04f2da137e370ec93cb6/legend.py \ No newline at end of file diff --git a/_downloads/4ba989d3a781bd9c1300ba7b2d5c4b90/auto_ticks.py b/_downloads/4ba989d3a781bd9c1300ba7b2d5c4b90/auto_ticks.py deleted file mode 100644 index 7cf1cc01615..00000000000 --- a/_downloads/4ba989d3a781bd9c1300ba7b2d5c4b90/auto_ticks.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -================================= -Automatically setting tick labels -================================= - -Setting the behavior of tick auto-placement. - -If you don't explicitly set tick positions / labels, Matplotlib will attempt -to choose them both automatically based on the displayed data and its limits. - -By default, this attempts to choose tick positions that are distributed -along the axis: -""" -import matplotlib.pyplot as plt -import numpy as np -np.random.seed(19680801) - -fig, ax = plt.subplots() -dots = np.arange(10) / 100. + .03 -x, y = np.meshgrid(dots, dots) -data = [x.ravel(), y.ravel()] -ax.scatter(*data, c=data[1]) - -################################################################################ -# Sometimes choosing evenly-distributed ticks results in strange tick numbers. -# If you'd like Matplotlib to keep ticks located at round numbers, you can -# change this behavior with the following rcParams value: - -print(plt.rcParams['axes.autolimit_mode']) - -# Now change this value and see the results -with plt.rc_context({'axes.autolimit_mode': 'round_numbers'}): - fig, ax = plt.subplots() - ax.scatter(*data, c=data[1]) - -################################################################################ -# You can also alter the margins of the axes around the data by -# with ``axes.(x,y)margin``: - -with plt.rc_context({'axes.autolimit_mode': 'round_numbers', - 'axes.xmargin': .8, - 'axes.ymargin': .8}): - fig, ax = plt.subplots() - ax.scatter(*data, c=data[1]) - -plt.show() diff --git a/_downloads/4baf268514e47dde4a3705e653f41e90/animated_histogram.ipynb b/_downloads/4baf268514e47dde4a3705e653f41e90/animated_histogram.ipynb deleted file mode 100644 index 3aa7675f52f..00000000000 --- a/_downloads/4baf268514e47dde4a3705e653f41e90/animated_histogram.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated histogram\n\n\nUse a path patch to draw a bunch of rectangles for an animated histogram.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nimport matplotlib.path as path\nimport matplotlib.animation as animation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# histogram our data with numpy\ndata = np.random.randn(1000)\nn, bins = np.histogram(data, 100)\n\n# get the corners of the rectangles for the histogram\nleft = np.array(bins[:-1])\nright = np.array(bins[1:])\nbottom = np.zeros(len(left))\ntop = bottom + n\nnrects = len(left)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here comes the tricky part -- we have to set up the vertex and path codes\narrays using ``plt.Path.MOVETO``, ``plt.Path.LINETO`` and\n``plt.Path.CLOSEPOLY`` for each rect.\n\n* We need 1 ``MOVETO`` per rectangle, which sets the initial point.\n* We need 3 ``LINETO``'s, which tell Matplotlib to draw lines from\n vertex 1 to vertex 2, v2 to v3, and v3 to v4.\n* We then need one ``CLOSEPOLY`` which tells Matplotlib to draw a line from\n the v4 to our initial vertex (the ``MOVETO`` vertex), in order to close the\n polygon.\n\n

Note

The vertex for ``CLOSEPOLY`` is ignored, but we still need a placeholder\n in the ``verts`` array to keep the codes aligned with the vertices.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "nverts = nrects * (1 + 3 + 1)\nverts = np.zeros((nverts, 2))\ncodes = np.ones(nverts, int) * path.Path.LINETO\ncodes[0::5] = path.Path.MOVETO\ncodes[4::5] = path.Path.CLOSEPOLY\nverts[0::5, 0] = left\nverts[0::5, 1] = bottom\nverts[1::5, 0] = left\nverts[1::5, 1] = top\nverts[2::5, 0] = right\nverts[2::5, 1] = top\nverts[3::5, 0] = right\nverts[3::5, 1] = bottom" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To animate the histogram, we need an ``animate`` function, which generates\na random set of numbers and updates the locations of the vertices for the\nhistogram (in this case, only the heights of each rectangle). ``patch`` will\neventually be a ``Patch`` object.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "patch = None\n\n\ndef animate(i):\n # simulate new data coming in\n data = np.random.randn(1000)\n n, bins = np.histogram(data, 100)\n top = bottom + n\n verts[1::5, 1] = top\n verts[2::5, 1] = top\n return [patch, ]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And now we build the `Path` and `Patch` instances for the histogram using\nour vertices and codes. We add the patch to the `Axes` instance, and setup\nthe `FuncAnimation` with our animate function.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nbarpath = path.Path(verts, codes)\npatch = patches.PathPatch(\n barpath, facecolor='green', edgecolor='yellow', alpha=0.5)\nax.add_patch(patch)\n\nax.set_xlim(left[0], right[-1])\nax.set_ylim(bottom.min(), top.max())\n\nani = animation.FuncAnimation(fig, animate, 100, repeat=False, blit=True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4bb08526c1921458330934355d7f6058/figure_title.ipynb b/_downloads/4bb08526c1921458330934355d7f6058/figure_title.ipynb deleted file mode 100644 index 0d274cee3f3..00000000000 --- a/_downloads/4bb08526c1921458330934355d7f6058/figure_title.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Figure Title\n\n\nCreate a figure with separate subplot titles and a centered figure title.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef f(t):\n s1 = np.cos(2*np.pi*t)\n e1 = np.exp(-t)\n return s1 * e1\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\nt3 = np.arange(0.0, 2.0, 0.01)\n\n\nfig, axs = plt.subplots(2, 1, constrained_layout=True)\naxs[0].plot(t1, f(t1), 'o', t2, f(t2), '-')\naxs[0].set_title('subplot 1')\naxs[0].set_xlabel('distance (m)')\naxs[0].set_ylabel('Damped oscillation')\nfig.suptitle('This is a somewhat long figure title', fontsize=16)\n\naxs[1].plot(t3, np.cos(2*np.pi*t3), '--')\naxs[1].set_xlabel('time (s)')\naxs[1].set_title('subplot 2')\naxs[1].set_ylabel('Undamped')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4bb34372608366b9fc3d8634e2851faa/histogram_path.py b/_downloads/4bb34372608366b9fc3d8634e2851faa/histogram_path.py deleted file mode 100644 index 4eb4d68ba2d..00000000000 --- a/_downloads/4bb34372608366b9fc3d8634e2851faa/histogram_path.py +++ /dev/null @@ -1,100 +0,0 @@ -""" -======================================================== -Building histograms using Rectangles and PolyCollections -======================================================== - -Using a path patch to draw rectangles. -The technique of using lots of Rectangle instances, or -the faster method of using PolyCollections, were implemented before we -had proper paths with moveto/lineto, closepoly etc in mpl. Now that -we have them, we can draw collections of regularly shaped objects with -homogeneous properties more efficiently with a PathCollection. This -example makes a histogram -- it's more work to set up the vertex arrays -at the outset, but it should be much faster for large numbers of -objects. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.patches as patches -import matplotlib.path as path - -fig, ax = plt.subplots() - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# histogram our data with numpy - -data = np.random.randn(1000) -n, bins = np.histogram(data, 50) - -# get the corners of the rectangles for the histogram -left = np.array(bins[:-1]) -right = np.array(bins[1:]) -bottom = np.zeros(len(left)) -top = bottom + n - - -# we need a (numrects x numsides x 2) numpy array for the path helper -# function to build a compound path -XY = np.array([[left, left, right, right], [bottom, top, top, bottom]]).T - -# get the Path object -barpath = path.Path.make_compound_path_from_polys(XY) - -# make a patch out of it -patch = patches.PathPatch(barpath) -ax.add_patch(patch) - -# update the view limits -ax.set_xlim(left[0], right[-1]) -ax.set_ylim(bottom.min(), top.max()) - -plt.show() - -############################################################################# -# It should be noted that instead of creating a three-dimensional array and -# using `~.path.Path.make_compound_path_from_polys`, we could as well create -# the compound path directly using vertices and codes as shown below - -nrects = len(left) -nverts = nrects*(1+3+1) -verts = np.zeros((nverts, 2)) -codes = np.ones(nverts, int) * path.Path.LINETO -codes[0::5] = path.Path.MOVETO -codes[4::5] = path.Path.CLOSEPOLY -verts[0::5, 0] = left -verts[0::5, 1] = bottom -verts[1::5, 0] = left -verts[1::5, 1] = top -verts[2::5, 0] = right -verts[2::5, 1] = top -verts[3::5, 0] = right -verts[3::5, 1] = bottom - -barpath = path.Path(verts, codes) - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.path -matplotlib.path.Path -matplotlib.path.Path.make_compound_path_from_polys -matplotlib.axes.Axes.add_patch -matplotlib.collections.PathCollection - -# This example shows an alternative to -matplotlib.collections.PolyCollection -matplotlib.axes.Axes.hist diff --git a/_downloads/4bc00ea41c1338295d6e663a3d67dbf8/path_patch.py b/_downloads/4bc00ea41c1338295d6e663a3d67dbf8/path_patch.py deleted file mode 120000 index 90cf32d3a20..00000000000 --- a/_downloads/4bc00ea41c1338295d6e663a3d67dbf8/path_patch.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4bc00ea41c1338295d6e663a3d67dbf8/path_patch.py \ No newline at end of file diff --git a/_downloads/4bc1268301875f690e4e93dded2c937f/text_alignment.ipynb b/_downloads/4bc1268301875f690e4e93dded2c937f/text_alignment.ipynb deleted file mode 100644 index 888ebd60291..00000000000 --- a/_downloads/4bc1268301875f690e4e93dded2c937f/text_alignment.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Precise text layout\n\n\nYou can precisely layout text in data or axes (0,1) coordinates. This\nexample shows you some of the alignment and rotation specifications for text\nlayout.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Build a rectangle in axes coords\nleft, width = .25, .5\nbottom, height = .25, .5\nright = left + width\ntop = bottom + height\nax = plt.gca()\np = plt.Rectangle((left, bottom), width, height, fill=False)\np.set_transform(ax.transAxes)\np.set_clip_on(False)\nax.add_patch(p)\n\n\nax.text(left, bottom, 'left top',\n horizontalalignment='left',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, bottom, 'left bottom',\n horizontalalignment='left',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right bottom',\n horizontalalignment='right',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right top',\n horizontalalignment='right',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(right, bottom, 'center top',\n horizontalalignment='center',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, 0.5 * (bottom + top), 'right center',\n horizontalalignment='right',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, 0.5 * (bottom + top), 'left center',\n horizontalalignment='left',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(0.5 * (left + right), 0.5 * (bottom + top), 'middle',\n horizontalalignment='center',\n verticalalignment='center',\n transform=ax.transAxes)\n\nax.text(right, 0.5 * (bottom + top), 'centered',\n horizontalalignment='center',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, top, 'rotated\\nwith newlines',\n horizontalalignment='center',\n verticalalignment='center',\n rotation=45,\n transform=ax.transAxes)\n\nplt.axis('off')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4bc1fb6ea0b86584d064eb702ee45969/demo_text_path.py b/_downloads/4bc1fb6ea0b86584d064eb702ee45969/demo_text_path.py deleted file mode 100644 index 025780e9f27..00000000000 --- a/_downloads/4bc1fb6ea0b86584d064eb702ee45969/demo_text_path.py +++ /dev/null @@ -1,159 +0,0 @@ -""" -============== -Demo Text Path -============== - -Use a text as `Path`. The tool that allows for such conversion is a -`~matplotlib.textpath.TextPath`. The resulting path can be employed -e.g. as a clip path for an image. -""" - -import matplotlib.pyplot as plt -from matplotlib.image import BboxImage -import numpy as np -from matplotlib.transforms import IdentityTransform - -import matplotlib.patches as mpatches - -from matplotlib.offsetbox import AnnotationBbox,\ - AnchoredOffsetbox, AuxTransformBox - -from matplotlib.cbook import get_sample_data - -from matplotlib.text import TextPath - - -class PathClippedImagePatch(mpatches.PathPatch): - """ - The given image is used to draw the face of the patch. Internally, - it uses BboxImage whose clippath set to the path of the patch. - - FIXME : The result is currently dpi dependent. - """ - - def __init__(self, path, bbox_image, **kwargs): - mpatches.PathPatch.__init__(self, path, **kwargs) - self._init_bbox_image(bbox_image) - - def set_facecolor(self, color): - """simply ignore facecolor""" - mpatches.PathPatch.set_facecolor(self, "none") - - def _init_bbox_image(self, im): - - bbox_image = BboxImage(self.get_window_extent, - norm=None, - origin=None, - ) - bbox_image.set_transform(IdentityTransform()) - - bbox_image.set_data(im) - self.bbox_image = bbox_image - - def draw(self, renderer=None): - - # the clip path must be updated every draw. any solution? -JJ - self.bbox_image.set_clip_path(self._path, self.get_transform()) - self.bbox_image.draw(renderer) - - mpatches.PathPatch.draw(self, renderer) - - -if __name__ == "__main__": - - usetex = plt.rcParams["text.usetex"] - - fig = plt.figure() - - # EXAMPLE 1 - - ax = plt.subplot(211) - - arr = plt.imread(get_sample_data("grace_hopper.png")) - - text_path = TextPath((0, 0), "!?", size=150) - p = PathClippedImagePatch(text_path, arr, ec="k", - transform=IdentityTransform()) - - # p.set_clip_on(False) - - # make offset box - offsetbox = AuxTransformBox(IdentityTransform()) - offsetbox.add_artist(p) - - # make anchored offset box - ao = AnchoredOffsetbox(loc='upper left', child=offsetbox, frameon=True, - borderpad=0.2) - ax.add_artist(ao) - - # another text - from matplotlib.patches import PathPatch - if usetex: - r = r"\mbox{textpath supports mathtext \& \TeX}" - else: - r = r"textpath supports mathtext & TeX" - - text_path = TextPath((0, 0), r, - size=20, usetex=usetex) - - p1 = PathPatch(text_path, ec="w", lw=3, fc="w", alpha=0.9, - transform=IdentityTransform()) - p2 = PathPatch(text_path, ec="none", fc="k", - transform=IdentityTransform()) - - offsetbox2 = AuxTransformBox(IdentityTransform()) - offsetbox2.add_artist(p1) - offsetbox2.add_artist(p2) - - ab = AnnotationBbox(offsetbox2, (0.95, 0.05), - xycoords='axes fraction', - boxcoords="offset points", - box_alignment=(1., 0.), - frameon=False - ) - ax.add_artist(ab) - - ax.imshow([[0, 1, 2], [1, 2, 3]], cmap=plt.cm.gist_gray_r, - interpolation="bilinear", - aspect="auto") - - # EXAMPLE 2 - - ax = plt.subplot(212) - - arr = np.arange(256).reshape(1, 256)/256. - - if usetex: - s = (r"$\displaystyle\left[\sum_{n=1}^\infty" - r"\frac{-e^{i\pi}}{2^n}\right]$!") - else: - s = r"$\left[\sum_{n=1}^\infty\frac{-e^{i\pi}}{2^n}\right]$!" - text_path = TextPath((0, 0), s, size=40, usetex=usetex) - text_patch = PathClippedImagePatch(text_path, arr, ec="none", - transform=IdentityTransform()) - - shadow1 = mpatches.Shadow(text_patch, 1, -1, - props=dict(fc="none", ec="0.6", lw=3)) - shadow2 = mpatches.Shadow(text_patch, 1, -1, - props=dict(fc="0.3", ec="none")) - - # make offset box - offsetbox = AuxTransformBox(IdentityTransform()) - offsetbox.add_artist(shadow1) - offsetbox.add_artist(shadow2) - offsetbox.add_artist(text_patch) - - # place the anchored offset box using AnnotationBbox - ab = AnnotationBbox(offsetbox, (0.5, 0.5), - xycoords='data', - boxcoords="offset points", - box_alignment=(0.5, 0.5), - ) - # text_path.set_size(10) - - ax.add_artist(ab) - - ax.set_xlim(0, 1) - ax.set_ylim(0, 1) - - plt.show() diff --git a/_downloads/4bd470f1354150a234ae53f9376a59ce/dark_background.ipynb b/_downloads/4bd470f1354150a234ae53f9376a59ce/dark_background.ipynb deleted file mode 120000 index f84fbe12fc5..00000000000 --- a/_downloads/4bd470f1354150a234ae53f9376a59ce/dark_background.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4bd470f1354150a234ae53f9376a59ce/dark_background.ipynb \ No newline at end of file diff --git a/_downloads/4bd50c65e36b52f3925ff7dc0454dffc/embedding_in_wx2_sgskip.ipynb b/_downloads/4bd50c65e36b52f3925ff7dc0454dffc/embedding_in_wx2_sgskip.ipynb deleted file mode 100644 index db129c4d075..00000000000 --- a/_downloads/4bd50c65e36b52f3925ff7dc0454dffc/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #2\n==================\n\nAn example of how to use wxagg in an application with the new\ntoolbar - comment out the add_toolbar line for no toolbar\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wx import NavigationToolbar2Wx as NavigationToolbar\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\nimport wx\nimport wx.lib.mixins.inspection as WIT\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self):\n wx.Frame.__init__(self, None, -1,\n 'CanvasFrame', size=(550, 350))\n\n self.figure = Figure()\n self.axes = self.figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2 * np.pi * t)\n\n self.axes.plot(t, s)\n self.canvas = FigureCanvas(self, -1, self.figure)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.EXPAND)\n self.SetSizer(self.sizer)\n self.Fit()\n\n self.add_toolbar() # comment this out for no toolbar\n\n def add_toolbar(self):\n self.toolbar = NavigationToolbar(self.canvas)\n self.toolbar.Realize()\n # By adding toolbar in sizer, we are able to put it at the bottom\n # of the frame - so appearance is closer to GTK version.\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n # update the axes menu on the toolbar\n self.toolbar.update()\n\n\n# alternatively you could use\n#class App(wx.App):\nclass App(WIT.InspectableApp):\n def OnInit(self):\n 'Create the main window and insert the custom frame'\n self.Init()\n frame = CanvasFrame()\n frame.Show(True)\n\n return True\n\napp = App(0)\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4bd925e39f86d83bb90ae3c2b3b383de/sankey_basics.ipynb b/_downloads/4bd925e39f86d83bb90ae3c2b3b383de/sankey_basics.ipynb deleted file mode 120000 index 3144f81eda3..00000000000 --- a/_downloads/4bd925e39f86d83bb90ae3c2b3b383de/sankey_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4bd925e39f86d83bb90ae3c2b3b383de/sankey_basics.ipynb \ No newline at end of file diff --git a/_downloads/4bef2ecaa57702d5703fa7ef289628c6/mandelbrot.ipynb b/_downloads/4bef2ecaa57702d5703fa7ef289628c6/mandelbrot.ipynb deleted file mode 120000 index 5c113f1dd86..00000000000 --- a/_downloads/4bef2ecaa57702d5703fa7ef289628c6/mandelbrot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4bef2ecaa57702d5703fa7ef289628c6/mandelbrot.ipynb \ No newline at end of file diff --git a/_downloads/4c048e4d24840b98d32d38f92689904a/mixed_subplots.py b/_downloads/4c048e4d24840b98d32d38f92689904a/mixed_subplots.py deleted file mode 120000 index 51f1db3ee87..00000000000 --- a/_downloads/4c048e4d24840b98d32d38f92689904a/mixed_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4c048e4d24840b98d32d38f92689904a/mixed_subplots.py \ No newline at end of file diff --git a/_downloads/4c049ea5658fcb9dd1cac9c93938f784/integral.ipynb b/_downloads/4c049ea5658fcb9dd1cac9c93938f784/integral.ipynb deleted file mode 120000 index 320efa994b6..00000000000 --- a/_downloads/4c049ea5658fcb9dd1cac9c93938f784/integral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4c049ea5658fcb9dd1cac9c93938f784/integral.ipynb \ No newline at end of file diff --git a/_downloads/4c0ce4a33804cb08f86ba70337fad464/legend_demo.ipynb b/_downloads/4c0ce4a33804cb08f86ba70337fad464/legend_demo.ipynb deleted file mode 120000 index 70ef837f12d..00000000000 --- a/_downloads/4c0ce4a33804cb08f86ba70337fad464/legend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4c0ce4a33804cb08f86ba70337fad464/legend_demo.ipynb \ No newline at end of file diff --git a/_downloads/4c0f85fd2942c82381b0d585d85b73de/strip_chart.ipynb b/_downloads/4c0f85fd2942c82381b0d585d85b73de/strip_chart.ipynb deleted file mode 120000 index 3178e300da2..00000000000 --- a/_downloads/4c0f85fd2942c82381b0d585d85b73de/strip_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4c0f85fd2942c82381b0d585d85b73de/strip_chart.ipynb \ No newline at end of file diff --git a/_downloads/4c202a1fbb775595c3a18e4546d4447d/rain.py b/_downloads/4c202a1fbb775595c3a18e4546d4447d/rain.py deleted file mode 100644 index 6fe60ff0520..00000000000 --- a/_downloads/4c202a1fbb775595c3a18e4546d4447d/rain.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -=============== -Rain simulation -=============== - -Simulates rain drops on a surface by animating the scale and opacity -of 50 scatter points. - -Author: Nicolas P. Rougier -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.animation import FuncAnimation - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# Create new Figure and an Axes which fills it. -fig = plt.figure(figsize=(7, 7)) -ax = fig.add_axes([0, 0, 1, 1], frameon=False) -ax.set_xlim(0, 1), ax.set_xticks([]) -ax.set_ylim(0, 1), ax.set_yticks([]) - -# Create rain data -n_drops = 50 -rain_drops = np.zeros(n_drops, dtype=[('position', float, 2), - ('size', float, 1), - ('growth', float, 1), - ('color', float, 4)]) - -# Initialize the raindrops in random positions and with -# random growth rates. -rain_drops['position'] = np.random.uniform(0, 1, (n_drops, 2)) -rain_drops['growth'] = np.random.uniform(50, 200, n_drops) - -# Construct the scatter which we will update during animation -# as the raindrops develop. -scat = ax.scatter(rain_drops['position'][:, 0], rain_drops['position'][:, 1], - s=rain_drops['size'], lw=0.5, edgecolors=rain_drops['color'], - facecolors='none') - - -def update(frame_number): - # Get an index which we can use to re-spawn the oldest raindrop. - current_index = frame_number % n_drops - - # Make all colors more transparent as time progresses. - rain_drops['color'][:, 3] -= 1.0/len(rain_drops) - rain_drops['color'][:, 3] = np.clip(rain_drops['color'][:, 3], 0, 1) - - # Make all circles bigger. - rain_drops['size'] += rain_drops['growth'] - - # Pick a new position for oldest rain drop, resetting its size, - # color and growth factor. - rain_drops['position'][current_index] = np.random.uniform(0, 1, 2) - rain_drops['size'][current_index] = 5 - rain_drops['color'][current_index] = (0, 0, 0, 1) - rain_drops['growth'][current_index] = np.random.uniform(50, 200) - - # Update the scatter collection, with the new colors, sizes and positions. - scat.set_edgecolors(rain_drops['color']) - scat.set_sizes(rain_drops['size']) - scat.set_offsets(rain_drops['position']) - - -# Construct the animation, using the update function as the animation director. -animation = FuncAnimation(fig, update, interval=10) -plt.show() diff --git a/_downloads/4c30c474dd5fa21416972e45e3081723/demo_axes_grid2.ipynb b/_downloads/4c30c474dd5fa21416972e45e3081723/demo_axes_grid2.ipynb deleted file mode 100644 index df6c7f87c89..00000000000 --- a/_downloads/4c30c474dd5fa21416972e45e3081723/demo_axes_grid2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Grid2\n\n\nGrid of images with shared xaxis and yaxis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\nimport matplotlib.colors\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef add_inner_title(ax, title, loc, **kwargs):\n from matplotlib.offsetbox import AnchoredText\n from matplotlib.patheffects import withStroke\n prop = dict(path_effects=[withStroke(foreground='w', linewidth=3)],\n size=plt.rcParams['legend.fontsize'])\n at = AnchoredText(title, loc=loc, prop=prop,\n pad=0., borderpad=0.5,\n frameon=False, **kwargs)\n ax.add_artist(at)\n return at\n\n\nfig = plt.figure(figsize=(6, 6))\n\n# Prepare images\nZ, extent = get_demo_image()\nZS = [Z[i::3, :] for i in range(3)]\nextent = extent[0], extent[1]/3., extent[2], extent[3]\n\n# *** Demo 1: colorbar at each axes ***\ngrid = ImageGrid(fig, 211, # similar to subplot(211)\n nrows_ncols=(1, 3),\n direction=\"row\",\n axes_pad=0.05,\n add_all=True,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"top\",\n cbar_mode=\"each\",\n cbar_size=\"7%\",\n cbar_pad=\"1%\",\n )\n\nfor ax, z in zip(grid, ZS):\n im = ax.imshow(\n z, origin=\"lower\", extent=extent, interpolation=\"nearest\")\n ax.cax.colorbar(im)\n\nfor ax, im_title in zip(grid, [\"Image 1\", \"Image 2\", \"Image 3\"]):\n t = add_inner_title(ax, im_title, loc='lower left')\n t.patch.set_alpha(0.5)\n\nfor ax, z in zip(grid, ZS):\n ax.cax.toggle_label(True)\n #axis = ax.cax.axis[ax.cax.orientation]\n #axis.label.set_text(\"counts s$^{-1}$\")\n #axis.label.set_size(10)\n #axis.major_ticklabels.set_size(6)\n\n# Changing the colorbar ticks\ngrid[1].cax.set_xticks([-1, 0, 1])\ngrid[2].cax.set_xticks([-1, 0, 1])\n\ngrid[0].set_xticks([-2, 0])\ngrid[0].set_yticks([-2, 0, 2])\n\n# *** Demo 2: shared colorbar ***\ngrid2 = ImageGrid(fig, 212,\n nrows_ncols=(1, 3),\n direction=\"row\",\n axes_pad=0.05,\n add_all=True,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"right\",\n cbar_mode=\"single\",\n cbar_size=\"10%\",\n cbar_pad=0.05,\n )\n\ngrid2[0].set_xlabel(\"X\")\ngrid2[0].set_ylabel(\"Y\")\n\nvmax, vmin = np.max(ZS), np.min(ZS)\nnorm = matplotlib.colors.Normalize(vmax=vmax, vmin=vmin)\n\nfor ax, z in zip(grid2, ZS):\n im = ax.imshow(z, norm=norm,\n origin=\"lower\", extent=extent,\n interpolation=\"nearest\")\n\n# With cbar_mode=\"single\", cax attribute of all axes are identical.\nax.cax.colorbar(im)\nax.cax.toggle_label(True)\n\nfor ax, im_title in zip(grid2, [\"(a)\", \"(b)\", \"(c)\"]):\n t = add_inner_title(ax, im_title, loc='upper left')\n t.patch.set_ec(\"none\")\n t.patch.set_alpha(0.5)\n\ngrid2[0].set_xticks([-2, 0])\ngrid2[0].set_yticks([-2, 0, 2])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4c598230e4d9365af607761bd0a497d5/scatter_piecharts.py b/_downloads/4c598230e4d9365af607761bd0a497d5/scatter_piecharts.py deleted file mode 120000 index e0b66cd56e4..00000000000 --- a/_downloads/4c598230e4d9365af607761bd0a497d5/scatter_piecharts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4c598230e4d9365af607761bd0a497d5/scatter_piecharts.py \ No newline at end of file diff --git a/_downloads/4c65697dd04d41e5fa2ff32d3dfa8c54/simple_axes_divider1.py b/_downloads/4c65697dd04d41e5fa2ff32d3dfa8c54/simple_axes_divider1.py deleted file mode 120000 index 9b6d544455c..00000000000 --- a/_downloads/4c65697dd04d41e5fa2ff32d3dfa8c54/simple_axes_divider1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4c65697dd04d41e5fa2ff32d3dfa8c54/simple_axes_divider1.py \ No newline at end of file diff --git a/_downloads/4c690e258c6f5bdd38739d8a49f8f3ad/rectangle_selector.py b/_downloads/4c690e258c6f5bdd38739d8a49f8f3ad/rectangle_selector.py deleted file mode 120000 index b6247ff8f11..00000000000 --- a/_downloads/4c690e258c6f5bdd38739d8a49f8f3ad/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4c690e258c6f5bdd38739d8a49f8f3ad/rectangle_selector.py \ No newline at end of file diff --git a/_downloads/4c6d0cf4705203685e1cfc1d36af0543/simple_anchored_artists.ipynb b/_downloads/4c6d0cf4705203685e1cfc1d36af0543/simple_anchored_artists.ipynb deleted file mode 120000 index 3853f4b60cd..00000000000 --- a/_downloads/4c6d0cf4705203685e1cfc1d36af0543/simple_anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4c6d0cf4705203685e1cfc1d36af0543/simple_anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/4c6eb916833bfd6c91b4ee76ac56debe/sample_plots.py b/_downloads/4c6eb916833bfd6c91b4ee76ac56debe/sample_plots.py deleted file mode 100644 index 477202a43ce..00000000000 --- a/_downloads/4c6eb916833bfd6c91b4ee76ac56debe/sample_plots.py +++ /dev/null @@ -1,437 +0,0 @@ -""" -========================== -Sample plots in Matplotlib -========================== - -Here you'll find a host of example plots with the code that -generated them. - -.. _matplotlibscreenshots: - -Line Plot -========= - -Here's how to create a line plot with text labels using -:func:`~matplotlib.pyplot.plot`. - -.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_simple_plot_001.png - :target: ../../gallery/lines_bars_and_markers/simple_plot.html - :align: center - :scale: 50 - - Simple Plot - -.. _screenshots_subplot_demo: - -Multiple subplots in one figure -=============================== - -Multiple axes (i.e. subplots) are created with the -:func:`~matplotlib.pyplot.subplot` function: - -.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_subplot_001.png - :target: ../../gallery/subplots_axes_and_figures/subplot.html - :align: center - :scale: 50 - - Subplot - -.. _screenshots_images_demo: - -Images -====== - -Matplotlib can display images (assuming equally spaced -horizontal dimensions) using the :func:`~matplotlib.pyplot.imshow` function. - -.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_image_demo_003.png - :target: ../../gallery/images_contours_and_fields/image_demo.html - :align: center - :scale: 50 - - Example of using :func:`~matplotlib.pyplot.imshow` to display a CT scan - -.. _screenshots_pcolormesh_demo: - - -Contouring and pseudocolor -========================== - -The :func:`~matplotlib.pyplot.pcolormesh` function can make a colored -representation of a two-dimensional array, even if the horizontal dimensions -are unevenly spaced. The -:func:`~matplotlib.pyplot.contour` function is another way to represent -the same data: - -.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_pcolormesh_levels_001.png - :target: ../../gallery/images_contours_and_fields/pcolormesh_levels.html - :align: center - :scale: 50 - - Example comparing :func:`~matplotlib.pyplot.pcolormesh` and :func:`~matplotlib.pyplot.contour` for plotting two-dimensional data - -.. _screenshots_histogram_demo: - -Histograms -========== - -The :func:`~matplotlib.pyplot.hist` function automatically generates -histograms and returns the bin counts or probabilities: - -.. figure:: ../../gallery/statistics/images/sphx_glr_histogram_features_001.png - :target: ../../gallery/statistics/histogram_features.html - :align: center - :scale: 50 - - Histogram Features - - -.. _screenshots_path_demo: - -Paths -===== - -You can add arbitrary paths in Matplotlib using the -:mod:`matplotlib.path` module: - -.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_path_patch_001.png - :target: ../../gallery/shapes_and_collections/path_patch.html - :align: center - :scale: 50 - - Path Patch - -.. _screenshots_mplot3d_surface: - -Three-dimensional plotting -========================== - -The mplot3d toolkit (see :ref:`toolkit_mplot3d-tutorial` and -:ref:`mplot3d-examples-index`) has support for simple 3d graphs -including surface, wireframe, scatter, and bar charts. - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png - :target: ../../gallery/mplot3d/surface3d.html - :align: center - :scale: 50 - - Surface3d - -Thanks to John Porter, Jonathon Taylor, Reinier Heeres, and Ben Root for -the `mplot3d` toolkit. This toolkit is included with all standard Matplotlib -installs. - -.. _screenshots_ellipse_demo: - - -Streamplot -========== - -The :meth:`~matplotlib.pyplot.streamplot` function plots the streamlines of -a vector field. In addition to simply plotting the streamlines, it allows you -to map the colors and/or line widths of streamlines to a separate parameter, -such as the speed or local intensity of the vector field. - -.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_plot_streamplot_001.png - :target: ../../gallery/images_contours_and_fields/plot_streamplot.html - :align: center - :scale: 50 - - Streamplot with various plotting options. - -This feature complements the :meth:`~matplotlib.pyplot.quiver` function for -plotting vector fields. Thanks to Tom Flannaghan and Tony Yu for adding the -streamplot function. - - -Ellipses -======== - -In support of the `Phoenix `_ -mission to Mars (which used Matplotlib to display ground tracking of -spacecraft), Michael Droettboom built on work by Charlie Moad to provide -an extremely accurate 8-spline approximation to elliptical arcs (see -:class:`~matplotlib.patches.Arc`), which are insensitive to zoom level. - -.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_ellipse_demo_001.png - :target: ../../gallery/shapes_and_collections/ellipse_demo.html - :align: center - :scale: 50 - - Ellipse Demo - -.. _screenshots_barchart_demo: - -Bar charts -========== - -Use the :func:`~matplotlib.pyplot.bar` function to make bar charts, which -includes customizations such as error bars: - -.. figure:: ../../gallery/statistics/images/sphx_glr_barchart_demo_001.png - :target: ../../gallery/statistics/barchart_demo.html - :align: center - :scale: 50 - - Barchart Demo - -You can also create stacked bars -(`bar_stacked.py <../../gallery/lines_bars_and_markers/bar_stacked.html>`_), -or horizontal bar charts -(`barh.py <../../gallery/lines_bars_and_markers/barh.html>`_). - -.. _screenshots_pie_demo: - - -Pie charts -========== - -The :func:`~matplotlib.pyplot.pie` function allows you to create pie -charts. Optional features include auto-labeling the percentage of area, -exploding one or more wedges from the center of the pie, and a shadow effect. -Take a close look at the attached code, which generates this figure in just -a few lines of code. - -.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_pie_features_001.png - :target: ../../gallery/pie_and_polar_charts/pie_features.html - :align: center - :scale: 50 - - Pie Features - -.. _screenshots_table_demo: - -Tables -====== - -The :func:`~matplotlib.pyplot.table` function adds a text table -to an axes. - -.. figure:: ../../gallery/misc/images/sphx_glr_table_demo_001.png - :target: ../../gallery/misc/table_demo.html - :align: center - :scale: 50 - - Table Demo - - -.. _screenshots_scatter_demo: - - -Scatter plots -============= - -The :func:`~matplotlib.pyplot.scatter` function makes a scatter plot -with (optional) size and color arguments. This example plots changes -in Google's stock price, with marker sizes reflecting the -trading volume and colors varying with time. Here, the -alpha attribute is used to make semitransparent circle markers. - -.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_scatter_demo2_001.png - :target: ../../gallery/lines_bars_and_markers/scatter_demo2.html - :align: center - :scale: 50 - - Scatter Demo2 - - -.. _screenshots_slider_demo: - -GUI widgets -=========== - -Matplotlib has basic GUI widgets that are independent of the graphical -user interface you are using, allowing you to write cross GUI figures -and widgets. See :mod:`matplotlib.widgets` and the -`widget examples <../../gallery/index.html>`_. - -.. figure:: ../../gallery/widgets/images/sphx_glr_slider_demo_001.png - :target: ../../gallery/widgets/slider_demo.html - :align: center - :scale: 50 - - Slider and radio-button GUI. - - -.. _screenshots_fill_demo: - -Filled curves -============= - -The :func:`~matplotlib.pyplot.fill` function lets you -plot filled curves and polygons: - -.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_fill_001.png - :target: ../../gallery/lines_bars_and_markers/fill.html - :align: center - :scale: 50 - - Fill - -Thanks to Andrew Straw for adding this function. - -.. _screenshots_date_demo: - -Date handling -============= - -You can plot timeseries data with major and minor ticks and custom -tick formatters for both. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_date_001.png - :target: ../../gallery/text_labels_and_annotations/date.html - :align: center - :scale: 50 - - Date - -See :mod:`matplotlib.ticker` and :mod:`matplotlib.dates` for details and usage. - - -.. _screenshots_log_demo: - -Log plots -========= - -The :func:`~matplotlib.pyplot.semilogx`, -:func:`~matplotlib.pyplot.semilogy` and -:func:`~matplotlib.pyplot.loglog` functions simplify the creation of -logarithmic plots. - -.. figure:: ../../gallery/scales/images/sphx_glr_log_demo_001.png - :target: ../../gallery/scales/log_demo.html - :align: center - :scale: 50 - - Log Demo - -Thanks to Andrew Straw, Darren Dale and Gregory Lielens for contributions -log-scaling infrastructure. - -.. _screenshots_polar_demo: - -Polar plots -=========== - -The :func:`~matplotlib.pyplot.polar` function generates polar plots. - -.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_polar_demo_001.png - :target: ../../gallery/pie_and_polar_charts/polar_demo.html - :align: center - :scale: 50 - - Polar Demo - -.. _screenshots_legend_demo: - - -Legends -======= - -The :func:`~matplotlib.pyplot.legend` function automatically -generates figure legends, with MATLAB-compatible legend-placement -functions. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_legend_001.png - :target: ../../gallery/text_labels_and_annotations/legend.html - :align: center - :scale: 50 - - Legend - -Thanks to Charles Twardy for input on the legend function. - -.. _screenshots_mathtext_examples_demo: - -TeX-notation for text objects -============================= - -Below is a sampling of the many TeX expressions now supported by Matplotlib's -internal mathtext engine. The mathtext module provides TeX style mathematical -expressions using `FreeType `_ -and the DejaVu, BaKoMa computer modern, or `STIX `_ -fonts. See the :mod:`matplotlib.mathtext` module for additional details. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_mathtext_examples_001.png - :target: ../../gallery/text_labels_and_annotations/mathtext_examples.html - :align: center - :scale: 50 - - Mathtext Examples - -Matplotlib's mathtext infrastructure is an independent implementation and -does not require TeX or any external packages installed on your computer. See -the tutorial at :doc:`/tutorials/text/mathtext`. - - -.. _screenshots_tex_demo: - -Native TeX rendering -==================== - -Although Matplotlib's internal math rendering engine is quite -powerful, sometimes you need TeX. Matplotlib supports external TeX -rendering of strings with the *usetex* option. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png - :target: ../../gallery/text_labels_and_annotations/tex_demo.html - :align: center - :scale: 50 - - Tex Demo - -.. _screenshots_eeg_demo: - -EEG GUI -======= - -You can embed Matplotlib into pygtk, wx, Tk, or Qt applications. -Here is a screenshot of an EEG viewer called `pbrain -`__. - -.. image:: ../../_static/eeg_small.png - -The lower axes uses :func:`~matplotlib.pyplot.specgram` -to plot the spectrogram of one of the EEG channels. - -For examples of how to embed Matplotlib in different toolkits, see: - - * :doc:`/gallery/user_interfaces/embedding_in_gtk3_sgskip` - * :doc:`/gallery/user_interfaces/embedding_in_wx2_sgskip` - * :doc:`/gallery/user_interfaces/mpl_with_glade3_sgskip` - * :doc:`/gallery/user_interfaces/embedding_in_qt_sgskip` - * :doc:`/gallery/user_interfaces/embedding_in_tk_sgskip` - -XKCD-style sketch plots -======================= - -Just for fun, Matplotlib supports plotting in the style of `xkcd -`. - -.. figure:: ../../gallery/showcase/images/sphx_glr_xkcd_001.png - :target: ../../gallery/showcase/xkcd.html - :align: center - :scale: 50 - - xkcd - -Subplot example -=============== - -Many plot types can be combined in one figure to create -powerful and flexible representations of data. -""" - -import matplotlib.pyplot as plt -import numpy as np - -np.random.seed(19680801) -data = np.random.randn(2, 100) - -fig, axs = plt.subplots(2, 2, figsize=(5, 5)) -axs[0, 0].hist(data[0]) -axs[1, 0].scatter(data[0], data[1]) -axs[0, 1].plot(data[0], data[1]) -axs[1, 1].hist2d(data[0], data[1]) - -plt.show() diff --git a/_downloads/4c721f959440112c569cf6cc0fb38edc/date_index_formatter.py b/_downloads/4c721f959440112c569cf6cc0fb38edc/date_index_formatter.py deleted file mode 100644 index 389fd2e0353..00000000000 --- a/_downloads/4c721f959440112c569cf6cc0fb38edc/date_index_formatter.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -===================================== -Custom tick formatter for time series -===================================== - -When plotting time series, e.g., financial time series, one often wants -to leave out days on which there is no data, i.e. weekends. The example -below shows how to use an 'index formatter' to achieve the desired plot -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import matplotlib.ticker as ticker - -# Load a numpy record array from yahoo csv data with fields date, open, close, -# volume, adj_close from the mpl-data/example directory. The record array -# stores the date as an np.datetime64 with a day unit ('D') in the date column. -with cbook.get_sample_data('goog.npz') as datafile: - r = np.load(datafile)['price_data'].view(np.recarray) -r = r[-30:] # get the last 30 days -# Matplotlib works better with datetime.datetime than np.datetime64, but the -# latter is more portable. -date = r.date.astype('O') - -# first we'll do it the default way, with gaps on weekends -fig, axes = plt.subplots(ncols=2, figsize=(8, 4)) -ax = axes[0] -ax.plot(date, r.adj_close, 'o-') -ax.set_title("Default") -fig.autofmt_xdate() - -# next we'll write a custom formatter -N = len(r) -ind = np.arange(N) # the evenly spaced plot indices - - -def format_date(x, pos=None): - thisind = np.clip(int(x + 0.5), 0, N - 1) - return date[thisind].strftime('%Y-%m-%d') - -ax = axes[1] -ax.plot(ind, r.adj_close, 'o-') -ax.xaxis.set_major_formatter(ticker.FuncFormatter(format_date)) -ax.set_title("Custom tick formatter") -fig.autofmt_xdate() - -plt.show() diff --git a/_downloads/4c7d9bbf21780c1bb0b1ab88f0c94971/zorder_demo.py b/_downloads/4c7d9bbf21780c1bb0b1ab88f0c94971/zorder_demo.py deleted file mode 120000 index f57921f7e2b..00000000000 --- a/_downloads/4c7d9bbf21780c1bb0b1ab88f0c94971/zorder_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4c7d9bbf21780c1bb0b1ab88f0c94971/zorder_demo.py \ No newline at end of file diff --git a/_downloads/4c85b0a8c32799630f574c6e05cb77a2/demo_colorbar_of_inset_axes.py b/_downloads/4c85b0a8c32799630f574c6e05cb77a2/demo_colorbar_of_inset_axes.py deleted file mode 120000 index ba2dcbb2c4f..00000000000 --- a/_downloads/4c85b0a8c32799630f574c6e05cb77a2/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4c85b0a8c32799630f574c6e05cb77a2/demo_colorbar_of_inset_axes.py \ No newline at end of file diff --git a/_downloads/4c9859ddc3d3c65350f76170ccc129d6/quiver_demo.ipynb b/_downloads/4c9859ddc3d3c65350f76170ccc129d6/quiver_demo.ipynb deleted file mode 120000 index aa3dffd7183..00000000000 --- a/_downloads/4c9859ddc3d3c65350f76170ccc129d6/quiver_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4c9859ddc3d3c65350f76170ccc129d6/quiver_demo.ipynb \ No newline at end of file diff --git a/_downloads/4c9e0cb99aa32fb23ef7cc839b1c3c0a/subplots_demo.ipynb b/_downloads/4c9e0cb99aa32fb23ef7cc839b1c3c0a/subplots_demo.ipynb deleted file mode 120000 index 738d87639bf..00000000000 --- a/_downloads/4c9e0cb99aa32fb23ef7cc839b1c3c0a/subplots_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4c9e0cb99aa32fb23ef7cc839b1c3c0a/subplots_demo.ipynb \ No newline at end of file diff --git a/_downloads/4c9edf7f445c4d167fdbe85735b2f243/arrow_guide.ipynb b/_downloads/4c9edf7f445c4d167fdbe85735b2f243/arrow_guide.ipynb deleted file mode 100644 index e0d0f8f3e81..00000000000 --- a/_downloads/4c9edf7f445c4d167fdbe85735b2f243/arrow_guide.ipynb +++ /dev/null @@ -1,119 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Arrow guide\n\n\nAdding arrow patches to plots.\n\nArrows are often used to annotate plots. This tutorial shows how to plot arrows\nthat behave differently when the data limits on a plot are changed. In general,\npoints on a plot can either be fixed in \"data space\" or \"display space\".\nSomething plotted in data space moves when the data limits are altered - an\nexample would the points in a scatter plot. Something plotted in display space\nstays static when data limits are altered - an example would be a figure title\nor the axis labels.\n\nArrows consist of a head (and possibly a tail) and a stem drawn between a\nstart point and end point, called 'anchor points' from now on.\nHere we show three use cases for plotting arrows, depending on whether the\nhead or anchor points need to be fixed in data or display space:\n\n 1. Head shape fixed in display space, anchor points fixed in data space\n 2. Head shape and anchor points fixed in display space\n 3. Entire patch fixed in data space\n\nBelow each use case is presented in turn.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\nx_tail = 0.1\ny_tail = 0.1\nx_head = 0.9\ny_head = 0.9\ndx = x_head - x_tail\ndy = y_head - y_tail" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Head shape fixed in display space and anchor points fixed in data space\n-----------------------------------------------------------------------\n\nThis is useful if you are annotating a plot, and don't want the arrow to\nto change shape or position if you pan or scale the plot. Note that when\nthe axis limits change\n\nIn this case we use `.patches.FancyArrowPatch`\n\nNote that when the axis limits are changed, the arrow shape stays the same,\nbut the anchor points move.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2)\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100)\naxs[0].add_patch(arrow)\n\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100)\naxs[1].add_patch(arrow)\naxs[1].set_xlim(0, 2)\naxs[1].set_ylim(0, 2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Head shape and anchor points fixed in display space\n---------------------------------------------------\n\nThis is useful if you are annotating a plot, and don't want the arrow to\nto change shape or position if you pan or scale the plot.\n\nIn this case we use `.patches.FancyArrowPatch`, and pass the keyword argument\n``transform=ax.transAxes`` where ``ax`` is the axes we are adding the patch\nto.\n\nNote that when the axis limits are changed, the arrow shape and location\nstays the same.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2)\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100,\n transform=axs[0].transAxes)\naxs[0].add_patch(arrow)\n\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100,\n transform=axs[1].transAxes)\naxs[1].add_patch(arrow)\naxs[1].set_xlim(0, 2)\naxs[1].set_ylim(0, 2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Head shape and anchor points fixed in data space\n------------------------------------------------\n\nIn this case we use `.patches.Arrow`\n\nNote that when the axis limits are changed, the arrow shape and location\nchanges.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2)\n\narrow = mpatches.Arrow(x_tail, y_tail, dx, dy)\naxs[0].add_patch(arrow)\n\narrow = mpatches.Arrow(x_tail, y_tail, dx, dy)\naxs[1].add_patch(arrow)\naxs[1].set_xlim(0, 2)\naxs[1].set_ylim(0, 2)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4ca2961d3b070aafc865e406a22ddf3e/skewt.ipynb b/_downloads/4ca2961d3b070aafc865e406a22ddf3e/skewt.ipynb deleted file mode 120000 index 94e118f9076..00000000000 --- a/_downloads/4ca2961d3b070aafc865e406a22ddf3e/skewt.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4ca2961d3b070aafc865e406a22ddf3e/skewt.ipynb \ No newline at end of file diff --git a/_downloads/4ca410eb22dcf5563a6dd06cf93cd5dd/fahrenheit_celsius_scales.py b/_downloads/4ca410eb22dcf5563a6dd06cf93cd5dd/fahrenheit_celsius_scales.py deleted file mode 120000 index 6f5900a1014..00000000000 --- a/_downloads/4ca410eb22dcf5563a6dd06cf93cd5dd/fahrenheit_celsius_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4ca410eb22dcf5563a6dd06cf93cd5dd/fahrenheit_celsius_scales.py \ No newline at end of file diff --git a/_downloads/4ca9127195fef62c3fb28bc7c26dc0ee/placing_text_boxes.py b/_downloads/4ca9127195fef62c3fb28bc7c26dc0ee/placing_text_boxes.py deleted file mode 120000 index fe145e05cf5..00000000000 --- a/_downloads/4ca9127195fef62c3fb28bc7c26dc0ee/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4ca9127195fef62c3fb28bc7c26dc0ee/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/4caa2a41578c1bdd3667c0fd97658fe7/contour_image.ipynb b/_downloads/4caa2a41578c1bdd3667c0fd97658fe7/contour_image.ipynb deleted file mode 120000 index 8506af49bc5..00000000000 --- a/_downloads/4caa2a41578c1bdd3667c0fd97658fe7/contour_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4caa2a41578c1bdd3667c0fd97658fe7/contour_image.ipynb \ No newline at end of file diff --git a/_downloads/4caa7541badfe48c3f972e27f4567e1a/text_rotation_relative_to_line.ipynb b/_downloads/4caa7541badfe48c3f972e27f4567e1a/text_rotation_relative_to_line.ipynb deleted file mode 120000 index e2b94ca95be..00000000000 --- a/_downloads/4caa7541badfe48c3f972e27f4567e1a/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4caa7541badfe48c3f972e27f4567e1a/text_rotation_relative_to_line.ipynb \ No newline at end of file diff --git a/_downloads/4caaf9cd18dd6335b31b223bb3131e49/date_concise_formatter.py b/_downloads/4caaf9cd18dd6335b31b223bb3131e49/date_concise_formatter.py deleted file mode 120000 index 21583593da1..00000000000 --- a/_downloads/4caaf9cd18dd6335b31b223bb3131e49/date_concise_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4caaf9cd18dd6335b31b223bb3131e49/date_concise_formatter.py \ No newline at end of file diff --git a/_downloads/4cabe417d7cf35f01202ac7035e0cadb/simple_colorbar.py b/_downloads/4cabe417d7cf35f01202ac7035e0cadb/simple_colorbar.py deleted file mode 120000 index f36f8b0ef0f..00000000000 --- a/_downloads/4cabe417d7cf35f01202ac7035e0cadb/simple_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4cabe417d7cf35f01202ac7035e0cadb/simple_colorbar.py \ No newline at end of file diff --git a/_downloads/4cb459ea158ef8872d33680066f68d71/aspect_loglog.py b/_downloads/4cb459ea158ef8872d33680066f68d71/aspect_loglog.py deleted file mode 120000 index 770f57fff1e..00000000000 --- a/_downloads/4cb459ea158ef8872d33680066f68d71/aspect_loglog.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4cb459ea158ef8872d33680066f68d71/aspect_loglog.py \ No newline at end of file diff --git a/_downloads/4cc36e7741a60773197ab55451a71346/date_concise_formatter.ipynb b/_downloads/4cc36e7741a60773197ab55451a71346/date_concise_formatter.ipynb deleted file mode 100644 index 94702caf9b5..00000000000 --- a/_downloads/4cc36e7741a60773197ab55451a71346/date_concise_formatter.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Formatting date ticks using ConciseDateFormatter\n\n\nFinding good tick values and formatting the ticks for an axis that\nhas date data is often a challenge. `~.dates.ConciseDateFormatter` is\nmeant to improve the strings chosen for the ticklabels, and to minimize\nthe strings used in those tick labels as much as possible.\n\n

Note

This formatter is a candidate to become the default date tick formatter\n in future versions of Matplotlib. Please report any issues or\n suggestions for improvement to the github repository or mailing list.

\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\nimport matplotlib.pyplot as plt\nimport matplotlib.dates as mdates\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First, the default formatter.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "base = datetime.datetime(2005, 2, 1)\ndates = np.array([base + datetime.timedelta(hours=(2 * i))\n for i in range(732)])\nN = len(dates)\nnp.random.seed(19680801)\ny = np.cumsum(np.random.randn(N))\n\nfig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\nlims = [(np.datetime64('2005-02'), np.datetime64('2005-04')),\n (np.datetime64('2005-02-03'), np.datetime64('2005-02-15')),\n (np.datetime64('2005-02-03 11:00'), np.datetime64('2005-02-04 13:20'))]\nfor nn, ax in enumerate(axs):\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\n # rotate_labels...\n for label in ax.get_xticklabels():\n label.set_rotation(40)\n label.set_horizontalalignment('right')\naxs[0].set_title('Default Date Formatter')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The default date formater is quite verbose, so we have the option of\nusing `~.dates.ConciseDateFormatter`, as shown below. Note that\nfor this example the labels do not need to be rotated as they do for the\ndefault formatter because the labels are as small as possible.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\nfor nn, ax in enumerate(axs):\n locator = mdates.AutoDateLocator(minticks=3, maxticks=7)\n formatter = mdates.ConciseDateFormatter(locator)\n ax.xaxis.set_major_locator(locator)\n ax.xaxis.set_major_formatter(formatter)\n\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If all calls to axes that have dates are to be made using this converter,\nit is probably most convenient to use the units registry where you do\nimports:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.units as munits\nconverter = mdates.ConciseDateConverter()\nmunits.registry[np.datetime64] = converter\nmunits.registry[datetime.date] = converter\nmunits.registry[datetime.datetime] = converter\n\nfig, axs = plt.subplots(3, 1, figsize=(6, 6), constrained_layout=True)\nfor nn, ax in enumerate(axs):\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Localization of date formats\n============================\n\nDates formats can be localized if the default formats are not desirable by\nmanipulating one of three lists of strings.\n\nThe ``formatter.formats`` list of formats is for the normal tick labels,\nThere are six levels: years, months, days, hours, minutes, seconds.\nThe ``formatter.offset_formats`` is how the \"offset\" string on the right\nof the axis is formatted. This is usually much more verbose than the tick\nlabels. Finally, the ``formatter.zero_formats`` are the formats of the\nticks that are \"zeros\". These are tick values that are either the first of\nthe year, month, or day of month, or the zeroth hour, minute, or second.\nThese are usually the same as the format of\nthe ticks a level above. For example if the axis limits mean the ticks are\nmostly days, then we label 1 Mar 2005 simply with a \"Mar\". If the axis\nlimits are mostly hours, we label Feb 4 00:00 as simply \"Feb-4\".\n\nNote that these format lists can also be passed to `.ConciseDateFormatter`\nas optional kwargs.\n\nHere we modify the labels to be \"day month year\", instead of the ISO\n\"year month day\":\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\n\nfor nn, ax in enumerate(axs):\n locator = mdates.AutoDateLocator()\n formatter = mdates.ConciseDateFormatter(locator)\n formatter.formats = ['%y', # ticks are mostly years\n '%b', # ticks are mostly months\n '%d', # ticks are mostly days\n '%H:%M', # hrs\n '%H:%M', # min\n '%S.%f', ] # secs\n # these are mostly just the level above...\n formatter.zero_formats = [''] + formatter.formats[:-1]\n # ...except for ticks that are mostly hours, then it is nice to have\n # month-day:\n formatter.zero_formats[3] = '%d-%b'\n\n formatter.offset_formats = ['',\n '%Y',\n '%b %Y',\n '%d %b %Y',\n '%d %b %Y',\n '%d %b %Y %H:%M', ]\n ax.xaxis.set_major_locator(locator)\n ax.xaxis.set_major_formatter(formatter)\n\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Registering a converter with localization\n=========================================\n\n`.ConciseDateFormatter` doesn't have rcParams entries, but localization\ncan be accomplished by passing kwargs to `~.ConciseDateConverter` and\nregistering the datatypes you will use with the units registry:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\n\nformats = ['%y', # ticks are mostly years\n '%b', # ticks are mostly months\n '%d', # ticks are mostly days\n '%H:%M', # hrs\n '%H:%M', # min\n '%S.%f', ] # secs\n# these can be the same, except offset by one level....\nzero_formats = [''] + formats[:-1]\n# ...except for ticks that are mostly hours, then its nice to have month-day\nzero_formats[3] = '%d-%b'\noffset_formats = ['',\n '%Y',\n '%b %Y',\n '%d %b %Y',\n '%d %b %Y',\n '%d %b %Y %H:%M', ]\n\nconverter = mdates.ConciseDateConverter(formats=formats,\n zero_formats=zero_formats,\n offset_formats=offset_formats)\n\nmunits.registry[np.datetime64] = converter\nmunits.registry[datetime.date] = converter\nmunits.registry[datetime.datetime] = converter\n\nfig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6))\nfor nn, ax in enumerate(axs):\n ax.plot(dates, y)\n ax.set_xlim(lims[nn])\naxs[0].set_title('Concise Date Formatter registered non-default')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4cd2563cb49ff4ed51dc1979dcb90897/plotfile_demo.py b/_downloads/4cd2563cb49ff4ed51dc1979dcb90897/plotfile_demo.py deleted file mode 120000 index 8ab21baf797..00000000000 --- a/_downloads/4cd2563cb49ff4ed51dc1979dcb90897/plotfile_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4cd2563cb49ff4ed51dc1979dcb90897/plotfile_demo.py \ No newline at end of file diff --git a/_downloads/4cdfea0ae78947ee3d2b07596021b151/ggplot.py b/_downloads/4cdfea0ae78947ee3d2b07596021b151/ggplot.py deleted file mode 120000 index c8305e79bb0..00000000000 --- a/_downloads/4cdfea0ae78947ee3d2b07596021b151/ggplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4cdfea0ae78947ee3d2b07596021b151/ggplot.py \ No newline at end of file diff --git a/_downloads/4cedf4b3514ef2b0b254660b56543c51/strip_chart.ipynb b/_downloads/4cedf4b3514ef2b0b254660b56543c51/strip_chart.ipynb deleted file mode 120000 index d0656ce378d..00000000000 --- a/_downloads/4cedf4b3514ef2b0b254660b56543c51/strip_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4cedf4b3514ef2b0b254660b56543c51/strip_chart.ipynb \ No newline at end of file diff --git a/_downloads/4cf28f64cd83ed5ad08d6b449bb8d745/scatter_piecharts.ipynb b/_downloads/4cf28f64cd83ed5ad08d6b449bb8d745/scatter_piecharts.ipynb deleted file mode 100644 index 2a9bc8da05d..00000000000 --- a/_downloads/4cf28f64cd83ed5ad08d6b449bb8d745/scatter_piecharts.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plot with pie chart markers\n\n\nThis example makes custom 'pie charts' as the markers for a scatter plot.\n\nThanks to Manuel Metz for the example\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# first define the ratios\nr1 = 0.2 # 20%\nr2 = r1 + 0.4 # 40%\n\n# define some sizes of the scatter marker\nsizes = np.array([60, 80, 120])\n\n# calculate the points of the first pie marker\n#\n# these are just the origin (0,0) +\n# some points on a circle cos,sin\nx = [0] + np.cos(np.linspace(0, 2 * np.pi * r1, 10)).tolist()\ny = [0] + np.sin(np.linspace(0, 2 * np.pi * r1, 10)).tolist()\nxy1 = np.column_stack([x, y])\ns1 = np.abs(xy1).max()\n\nx = [0] + np.cos(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist()\ny = [0] + np.sin(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist()\nxy2 = np.column_stack([x, y])\ns2 = np.abs(xy2).max()\n\nx = [0] + np.cos(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist()\ny = [0] + np.sin(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist()\nxy3 = np.column_stack([x, y])\ns3 = np.abs(xy3).max()\n\nfig, ax = plt.subplots()\nax.scatter(range(3), range(3), marker=xy1,\n s=s1 ** 2 * sizes, facecolor='blue')\nax.scatter(range(3), range(3), marker=xy2,\n s=s2 ** 2 * sizes, facecolor='green')\nax.scatter(range(3), range(3), marker=xy3,\n s=s3 ** 2 * sizes, facecolor='red')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.scatter\nmatplotlib.pyplot.scatter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4cfb46fd29c1867e2fe659a7ff471bf6/arrow_demo.py b/_downloads/4cfb46fd29c1867e2fe659a7ff471bf6/arrow_demo.py deleted file mode 120000 index 4f6dd895e4c..00000000000 --- a/_downloads/4cfb46fd29c1867e2fe659a7ff471bf6/arrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4cfb46fd29c1867e2fe659a7ff471bf6/arrow_demo.py \ No newline at end of file diff --git a/_downloads/4d0907441cd2888ed9a12be131d455ec/demo_tight_layout.ipynb b/_downloads/4d0907441cd2888ed9a12be131d455ec/demo_tight_layout.ipynb deleted file mode 100644 index 7574ee0524e..00000000000 --- a/_downloads/4d0907441cd2888ed9a12be131d455ec/demo_tight_layout.ipynb +++ /dev/null @@ -1,160 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Resizing axes with tight layout\n\n\n`~.figure.Figure.tight_layout` attempts to resize subplots in\na figure so that there are no overlaps between axes objects and labels\non the axes.\n\nSee :doc:`/tutorials/intermediate/tight_layout_guide` for more details and\n:doc:`/tutorials/intermediate/constrainedlayout_guide` for an alternative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport itertools\nimport warnings\n\n\nfontsizes = itertools.cycle([8, 16, 24, 32])\n\n\ndef example_plot(ax):\n ax.plot([1, 2])\n ax.set_xlabel('x-label', fontsize=next(fontsizes))\n ax.set_ylabel('y-label', fontsize=next(fontsizes))\n ax.set_title('Title', fontsize=next(fontsizes))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nexample_plot(ax)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(nrows=2, ncols=1)\nexample_plot(ax1)\nexample_plot(ax2)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(nrows=3, ncols=3)\nfor row in axes:\n for ax in row:\n example_plot(ax)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot(221)\nax2 = plt.subplot(223)\nax3 = plt.subplot(122)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot2grid((3, 3), (0, 0))\nax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2)\nax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\n\nplt.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = fig.add_gridspec(3, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\nax3 = fig.add_subplot(gs1[2])\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\n\ngs1.tight_layout(fig, rect=[None, None, 0.45, None])\n\ngs2 = fig.add_gridspec(2, 1)\nax4 = fig.add_subplot(gs2[0])\nax5 = fig.add_subplot(gs2[1])\n\nexample_plot(ax4)\nexample_plot(ax5)\n\nwith warnings.catch_warnings():\n # gs2.tight_layout cannot handle the subplots from the first gridspec\n # (gs1), so it will raise a warning. We are going to match the gridspecs\n # manually so we can filter the warning away.\n warnings.simplefilter(\"ignore\", UserWarning)\n gs2.tight_layout(fig, rect=[0.45, None, None, None])\n\n# now match the top and bottom of two gridspecs.\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.update(top=top, bottom=bottom)\ngs2.update(top=top, bottom=bottom)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.tight_layout\nmatplotlib.figure.Figure.tight_layout\nmatplotlib.figure.Figure.add_gridspec\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.pyplot.subplot2grid" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4d121cf56c37a14f3b0f84207de74fd7/pyplot_mathtext.py b/_downloads/4d121cf56c37a14f3b0f84207de74fd7/pyplot_mathtext.py deleted file mode 120000 index 1e100a0140a..00000000000 --- a/_downloads/4d121cf56c37a14f3b0f84207de74fd7/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4d121cf56c37a14f3b0f84207de74fd7/pyplot_mathtext.py \ No newline at end of file diff --git a/_downloads/4d21b43795cbc54b3e7b669519d1702a/fonts_demo_kw.py b/_downloads/4d21b43795cbc54b3e7b669519d1702a/fonts_demo_kw.py deleted file mode 100644 index afbdf150443..00000000000 --- a/_downloads/4d21b43795cbc54b3e7b669519d1702a/fonts_demo_kw.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -=================== -Fonts demo (kwargs) -=================== - -Set font properties using kwargs. - -See :doc:`fonts_demo` to achieve the same effect using setters. -""" - -import matplotlib.pyplot as plt - -alignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'} - -# Show family options - -families = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace'] - -t = plt.figtext(0.1, 0.9, 'family', size='large', **alignment) - -yp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2] - -for k, family in enumerate(families): - t = plt.figtext(0.1, yp[k], family, family=family, **alignment) - -# Show style options - -styles = ['normal', 'italic', 'oblique'] - -t = plt.figtext(0.3, 0.9, 'style', **alignment) - -for k, style in enumerate(styles): - t = plt.figtext(0.3, yp[k], style, family='sans-serif', style=style, - **alignment) - -# Show variant options - -variants = ['normal', 'small-caps'] - -t = plt.figtext(0.5, 0.9, 'variant', **alignment) - -for k, variant in enumerate(variants): - t = plt.figtext(0.5, yp[k], variant, family='serif', variant=variant, - **alignment) - -# Show weight options - -weights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black'] - -t = plt.figtext(0.7, 0.9, 'weight', **alignment) - -for k, weight in enumerate(weights): - t = plt.figtext(0.7, yp[k], weight, weight=weight, **alignment) - -# Show size options - -sizes = ['xx-small', 'x-small', 'small', 'medium', 'large', - 'x-large', 'xx-large'] - -t = plt.figtext(0.9, 0.9, 'size', **alignment) - -for k, size in enumerate(sizes): - t = plt.figtext(0.9, yp[k], size, size=size, **alignment) - -# Show bold italic -t = plt.figtext(0.3, 0.1, 'bold italic', style='italic', - weight='bold', size='x-small', - **alignment) -t = plt.figtext(0.3, 0.2, 'bold italic', - style='italic', weight='bold', size='medium', - **alignment) -t = plt.figtext(0.3, 0.3, 'bold italic', - style='italic', weight='bold', size='x-large', - **alignment) - -plt.show() diff --git a/_downloads/4d2e80bf34eef46956a065b6e84204bd/custom_boxstyle01.ipynb b/_downloads/4d2e80bf34eef46956a065b6e84204bd/custom_boxstyle01.ipynb deleted file mode 100644 index d0ba3899796..00000000000 --- a/_downloads/4d2e80bf34eef46956a065b6e84204bd/custom_boxstyle01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Boxstyle01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.path import Path\n\n\ndef custom_box_style(x0, y0, width, height, mutation_size, mutation_aspect=1):\n \"\"\"\n Given the location and size of the box, return the path of\n the box around it.\n\n - *x0*, *y0*, *width*, *height* : location and size of the box\n - *mutation_size* : a reference scale for the mutation.\n - *aspect_ratio* : aspect-ration for the mutation.\n \"\"\"\n\n # note that we are ignoring mutation_aspect. This is okay in general.\n\n # padding\n mypad = 0.3\n pad = mutation_size * mypad\n\n # width and height with padding added.\n width = width + 2 * pad\n height = height + 2 * pad\n\n # boundary of the padded box\n x0, y0 = x0 - pad, y0 - pad\n x1, y1 = x0 + width, y0 + height\n\n cp = [(x0, y0),\n (x1, y0), (x1, y1), (x0, y1),\n (x0-pad, (y0+y1)/2.), (x0, y0),\n (x0, y0)]\n\n com = [Path.MOVETO,\n Path.LINETO, Path.LINETO, Path.LINETO,\n Path.LINETO, Path.LINETO,\n Path.CLOSEPOLY]\n\n path = Path(cp, com)\n\n return path\n\n\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(3, 3))\nax.text(0.5, 0.5, \"Test\", size=30, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=custom_box_style, alpha=0.2))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4d3b9ff38c50a57b3d04da4c99d10995/secondary_axis.ipynb b/_downloads/4d3b9ff38c50a57b3d04da4c99d10995/secondary_axis.ipynb deleted file mode 120000 index 70c71dbc3de..00000000000 --- a/_downloads/4d3b9ff38c50a57b3d04da4c99d10995/secondary_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4d3b9ff38c50a57b3d04da4c99d10995/secondary_axis.ipynb \ No newline at end of file diff --git a/_downloads/4d3bc54481c3ff3a1ac6712bc2904875/axes_margins.py b/_downloads/4d3bc54481c3ff3a1ac6712bc2904875/axes_margins.py deleted file mode 120000 index 9c768e4abb0..00000000000 --- a/_downloads/4d3bc54481c3ff3a1ac6712bc2904875/axes_margins.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4d3bc54481c3ff3a1ac6712bc2904875/axes_margins.py \ No newline at end of file diff --git a/_downloads/4d3e5743e658c1dcafa125ad72a0d46b/polar_bar.ipynb b/_downloads/4d3e5743e658c1dcafa125ad72a0d46b/polar_bar.ipynb deleted file mode 120000 index 46894392596..00000000000 --- a/_downloads/4d3e5743e658c1dcafa125ad72a0d46b/polar_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4d3e5743e658c1dcafa125ad72a0d46b/polar_bar.ipynb \ No newline at end of file diff --git a/_downloads/4d3eb6ad2b03a5eb988f576ea050f104/colorbar_only.ipynb b/_downloads/4d3eb6ad2b03a5eb988f576ea050f104/colorbar_only.ipynb deleted file mode 100644 index d719ff30465..00000000000 --- a/_downloads/4d3eb6ad2b03a5eb988f576ea050f104/colorbar_only.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customized Colorbars Tutorial\n\n\nThis tutorial shows how to build colorbars without an attached plot.\n\nCustomized Colorbars\n====================\n\n`~matplotlib.colorbar.ColorbarBase` puts a colorbar in a specified axes,\nand can make a colorbar for a given colormap; it does not need a mappable\nobject like an image. In this tutorial we will explore what can be done with\nstandalone colorbar.\n\nBasic continuous colorbar\n-------------------------\n\nSet the colormap and norm to correspond to the data for which the colorbar\nwill be used. Then create the colorbar by calling\n:class:`~matplotlib.colorbar.ColorbarBase` and specify axis, colormap, norm\nand orientation as parameters. Here we create a basic continuous colorbar\nwith ticks and labels. For more information see the\n:mod:`~matplotlib.colorbar` API.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib as mpl\n\nfig, ax = plt.subplots(figsize=(6, 1))\nfig.subplots_adjust(bottom=0.5)\n\ncmap = mpl.cm.cool\nnorm = mpl.colors.Normalize(vmin=5, vmax=10)\n\ncb1 = mpl.colorbar.ColorbarBase(ax, cmap=cmap,\n norm=norm,\n orientation='horizontal')\ncb1.set_label('Some Units')\nfig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Discrete intervals colorbar\n---------------------------\n\nThe second example illustrates the use of a\n:class:`~matplotlib.colors.ListedColormap` which generates a colormap from a\nset of listed colors, :func:`colors.BoundaryNorm` which generates a colormap\nindex based on discrete intervals and extended ends to show the \"over\" and\n\"under\" value colors. Over and under are used to display data outside of the\nnormalized [0,1] range. Here we pass colors as gray shades as a string\nencoding a float in the 0-1 range.\n\nIf a :class:`~matplotlib.colors.ListedColormap` is used, the length of the\nbounds array must be one greater than the length of the color list. The\nbounds must be monotonically increasing.\n\nThis time we pass some more arguments in addition to previous arguments to\n:class:`~matplotlib.colorbar.ColorbarBase`. For the out-of-range values to\ndisplay on the colorbar, we have to use the *extend* keyword argument. To use\n*extend*, you must specify two extra boundaries. Finally spacing argument\nensures that intervals are shown on colorbar proportionally.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 1))\nfig.subplots_adjust(bottom=0.5)\n\ncmap = mpl.colors.ListedColormap(['red', 'green', 'blue', 'cyan'])\ncmap.set_over('0.25')\ncmap.set_under('0.75')\n\nbounds = [1, 2, 4, 7, 8]\nnorm = mpl.colors.BoundaryNorm(bounds, cmap.N)\ncb2 = mpl.colorbar.ColorbarBase(ax, cmap=cmap,\n norm=norm,\n boundaries=[0] + bounds + [13],\n extend='both',\n ticks=bounds,\n spacing='proportional',\n orientation='horizontal')\ncb2.set_label('Discrete intervals, some other units')\nfig.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbar with custom extension lengths\n--------------------------------------\n\nHere we illustrate the use of custom length colorbar extensions, used on a\ncolorbar with discrete intervals. To make the length of each extension the\nsame as the length of the interior colors, use ``extendfrac='auto'``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 1))\nfig.subplots_adjust(bottom=0.5)\n\ncmap = mpl.colors.ListedColormap(['royalblue', 'cyan',\n 'yellow', 'orange'])\ncmap.set_over('red')\ncmap.set_under('blue')\n\nbounds = [-1.0, -0.5, 0.0, 0.5, 1.0]\nnorm = mpl.colors.BoundaryNorm(bounds, cmap.N)\ncb3 = mpl.colorbar.ColorbarBase(ax, cmap=cmap,\n norm=norm,\n boundaries=[-10] + bounds + [10],\n extend='both',\n extendfrac='auto',\n ticks=bounds,\n spacing='uniform',\n orientation='horizontal')\ncb3.set_label('Custom extension lengths, some other units')\nfig.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4d52e765dd6cd4a0fa9336fbeba1e542/markevery_prop_cycle.py b/_downloads/4d52e765dd6cd4a0fa9336fbeba1e542/markevery_prop_cycle.py deleted file mode 120000 index 24ee0e79f18..00000000000 --- a/_downloads/4d52e765dd6cd4a0fa9336fbeba1e542/markevery_prop_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4d52e765dd6cd4a0fa9336fbeba1e542/markevery_prop_cycle.py \ No newline at end of file diff --git a/_downloads/4d531002606d9c09d3c2cfd10d6058a6/pgf_preamble_sgskip.py b/_downloads/4d531002606d9c09d3c2cfd10d6058a6/pgf_preamble_sgskip.py deleted file mode 120000 index f65649057f0..00000000000 --- a/_downloads/4d531002606d9c09d3c2cfd10d6058a6/pgf_preamble_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4d531002606d9c09d3c2cfd10d6058a6/pgf_preamble_sgskip.py \ No newline at end of file diff --git a/_downloads/4d58fe716a399cbdf304001285621f89/major_minor_demo.py b/_downloads/4d58fe716a399cbdf304001285621f89/major_minor_demo.py deleted file mode 120000 index 826e0520329..00000000000 --- a/_downloads/4d58fe716a399cbdf304001285621f89/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4d58fe716a399cbdf304001285621f89/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/4d69536a372d7d88c38d6977003ce734/mathtext_demo.ipynb b/_downloads/4d69536a372d7d88c38d6977003ce734/mathtext_demo.ipynb deleted file mode 100644 index af95bbb9429..00000000000 --- a/_downloads/4d69536a372d7d88c38d6977003ce734/mathtext_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Mathtext Demo\n\n\nUse Matplotlib's internal LaTeX parser and layout engine. For true LaTeX\nrendering, see the text.usetex option.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nax.plot([1, 2, 3], label=r'$\\sqrt{x^2}$')\nax.legend()\n\nax.set_xlabel(r'$\\Delta_i^j$', fontsize=20)\nax.set_ylabel(r'$\\Delta_{i+1}^j$', fontsize=20)\nax.set_title(r'$\\Delta_i^j \\hspace{0.4} \\mathrm{versus} \\hspace{0.4} '\n r'\\Delta_{i+1}^j$', fontsize=20)\n\ntex = r'$\\mathcal{R}\\prod_{i=\\alpha_{i+1}}^\\infty a_i\\sin(2 \\pi f x_i)$'\nax.text(1, 1.6, tex, fontsize=20, va='bottom')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4d75af2d3680ffc937a75c4141c6868b/annotate_simple01.ipynb b/_downloads/4d75af2d3680ffc937a75c4141c6868b/annotate_simple01.ipynb deleted file mode 100644 index de28b4dae34..00000000000 --- a/_downloads/4d75af2d3680ffc937a75c4141c6868b/annotate_simple01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nax.annotate(\"\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc3\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4d7ec301a759305252dcf25ea8d2f2e9/colormaps.ipynb b/_downloads/4d7ec301a759305252dcf25ea8d2f2e9/colormaps.ipynb deleted file mode 120000 index 738570ae90c..00000000000 --- a/_downloads/4d7ec301a759305252dcf25ea8d2f2e9/colormaps.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4d7ec301a759305252dcf25ea8d2f2e9/colormaps.ipynb \ No newline at end of file diff --git a/_downloads/4d8d13897bfe64031c943c958032a2a0/simple_axis_direction03.ipynb b/_downloads/4d8d13897bfe64031c943c958032a2a0/simple_axis_direction03.ipynb deleted file mode 100644 index 23ecf5bdd85..00000000000 --- a/_downloads/4d8d13897bfe64031c943c958032a2a0/simple_axis_direction03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axis Direction03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_subplot(ax)\n\n ax.set_yticks([0.2, 0.8])\n ax.set_xticks([0.2, 0.8])\n\n return ax\n\n\nfig = plt.figure(figsize=(5, 2))\nfig.subplots_adjust(wspace=0.4, bottom=0.3)\n\nax1 = setup_axes(fig, \"121\")\nax1.set_xlabel(\"X-label\")\nax1.set_ylabel(\"Y-label\")\n\nax1.axis[:].invert_ticklabel_direction()\n\nax2 = setup_axes(fig, \"122\")\nax2.set_xlabel(\"X-label\")\nax2.set_ylabel(\"Y-label\")\n\nax2.axis[:].major_ticks.set_tick_out(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4d9bb3e824d53c4aa49e2d50290a1499/lines3d.py b/_downloads/4d9bb3e824d53c4aa49e2d50290a1499/lines3d.py deleted file mode 100644 index e0e45b1c051..00000000000 --- a/_downloads/4d9bb3e824d53c4aa49e2d50290a1499/lines3d.py +++ /dev/null @@ -1,31 +0,0 @@ -''' -================ -Parametric Curve -================ - -This example demonstrates plotting a parametric curve in 3D. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import numpy as np -import matplotlib.pyplot as plt - - -plt.rcParams['legend.fontsize'] = 10 - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Prepare arrays x, y, z -theta = np.linspace(-4 * np.pi, 4 * np.pi, 100) -z = np.linspace(-2, 2, 100) -r = z**2 + 1 -x = r * np.sin(theta) -y = r * np.cos(theta) - -ax.plot(x, y, z, label='parametric curve') -ax.legend() - -plt.show() diff --git a/_downloads/4d9c40962bb15fbae88b01e34fb1e862/unicode_minus.ipynb b/_downloads/4d9c40962bb15fbae88b01e34fb1e862/unicode_minus.ipynb deleted file mode 120000 index 7acd165ee3a..00000000000 --- a/_downloads/4d9c40962bb15fbae88b01e34fb1e862/unicode_minus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4d9c40962bb15fbae88b01e34fb1e862/unicode_minus.ipynb \ No newline at end of file diff --git a/_downloads/4dadb96eb3e343de0652776ba1fbd8d5/parasite_simple2.py b/_downloads/4dadb96eb3e343de0652776ba1fbd8d5/parasite_simple2.py deleted file mode 120000 index cf1babf4961..00000000000 --- a/_downloads/4dadb96eb3e343de0652776ba1fbd8d5/parasite_simple2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4dadb96eb3e343de0652776ba1fbd8d5/parasite_simple2.py \ No newline at end of file diff --git a/_downloads/4daf9d0a2052158e6577bb8cb05962ae/poly_editor.py b/_downloads/4daf9d0a2052158e6577bb8cb05962ae/poly_editor.py deleted file mode 120000 index b64764d6700..00000000000 --- a/_downloads/4daf9d0a2052158e6577bb8cb05962ae/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4daf9d0a2052158e6577bb8cb05962ae/poly_editor.py \ No newline at end of file diff --git a/_downloads/4db15b51c35991a3ee69725d94bb7e1c/fill_between.py b/_downloads/4db15b51c35991a3ee69725d94bb7e1c/fill_between.py deleted file mode 120000 index 8801d965720..00000000000 --- a/_downloads/4db15b51c35991a3ee69725d94bb7e1c/fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4db15b51c35991a3ee69725d94bb7e1c/fill_between.py \ No newline at end of file diff --git a/_downloads/4db9d0a9fc54d2a0fd77135d6fcdc4f0/units_sample.ipynb b/_downloads/4db9d0a9fc54d2a0fd77135d6fcdc4f0/units_sample.ipynb deleted file mode 120000 index 786387b51ca..00000000000 --- a/_downloads/4db9d0a9fc54d2a0fd77135d6fcdc4f0/units_sample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4db9d0a9fc54d2a0fd77135d6fcdc4f0/units_sample.ipynb \ No newline at end of file diff --git a/_downloads/4dc83402ffb4e9b11c67522fa4863b2a/figure_axes_enter_leave.py b/_downloads/4dc83402ffb4e9b11c67522fa4863b2a/figure_axes_enter_leave.py deleted file mode 120000 index e096ba62251..00000000000 --- a/_downloads/4dc83402ffb4e9b11c67522fa4863b2a/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4dc83402ffb4e9b11c67522fa4863b2a/figure_axes_enter_leave.py \ No newline at end of file diff --git a/_downloads/4dca7403958765771ca51605ec858839/voxels_numpy_logo.ipynb b/_downloads/4dca7403958765771ca51605ec858839/voxels_numpy_logo.ipynb deleted file mode 120000 index d0075e2acaf..00000000000 --- a/_downloads/4dca7403958765771ca51605ec858839/voxels_numpy_logo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4dca7403958765771ca51605ec858839/voxels_numpy_logo.ipynb \ No newline at end of file diff --git a/_downloads/4dcd836f94a42800f87521c9227fd5b7/font_indexing.py b/_downloads/4dcd836f94a42800f87521c9227fd5b7/font_indexing.py deleted file mode 120000 index f60b5248c1d..00000000000 --- a/_downloads/4dcd836f94a42800f87521c9227fd5b7/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4dcd836f94a42800f87521c9227fd5b7/font_indexing.py \ No newline at end of file diff --git a/_downloads/4dd41f5ea65fb9f69f6f6ecc6318265d/color_cycler.py b/_downloads/4dd41f5ea65fb9f69f6f6ecc6318265d/color_cycler.py deleted file mode 120000 index 382726778f8..00000000000 --- a/_downloads/4dd41f5ea65fb9f69f6f6ecc6318265d/color_cycler.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4dd41f5ea65fb9f69f6f6ecc6318265d/color_cycler.py \ No newline at end of file diff --git a/_downloads/4deb5c0a709f39be2815f0046170806e/table_demo.ipynb b/_downloads/4deb5c0a709f39be2815f0046170806e/table_demo.ipynb deleted file mode 120000 index d501cb8031f..00000000000 --- a/_downloads/4deb5c0a709f39be2815f0046170806e/table_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4deb5c0a709f39be2815f0046170806e/table_demo.ipynb \ No newline at end of file diff --git a/_downloads/4dfb87c0e28be28a26b51684660a335b/bmh.ipynb b/_downloads/4dfb87c0e28be28a26b51684660a335b/bmh.ipynb deleted file mode 120000 index ea13379cd3e..00000000000 --- a/_downloads/4dfb87c0e28be28a26b51684660a335b/bmh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4dfb87c0e28be28a26b51684660a335b/bmh.ipynb \ No newline at end of file diff --git a/_downloads/4e005f272f732ba3b5868beb37afd0fc/font_indexing.py b/_downloads/4e005f272f732ba3b5868beb37afd0fc/font_indexing.py deleted file mode 100644 index 5599eb31370..00000000000 --- a/_downloads/4e005f272f732ba3b5868beb37afd0fc/font_indexing.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -============= -Font indexing -============= - -This example shows how the font tables relate to one another. -""" - -import os - -import matplotlib -from matplotlib.ft2font import ( - FT2Font, KERNING_DEFAULT, KERNING_UNFITTED, KERNING_UNSCALED) - - -font = FT2Font( - os.path.join(matplotlib.get_data_path(), 'fonts/ttf/DejaVuSans.ttf')) -font.set_charmap(0) - -codes = font.get_charmap().items() - -# make a charname to charcode and glyphind dictionary -coded = {} -glyphd = {} -for ccode, glyphind in codes: - name = font.get_glyph_name(glyphind) - coded[name] = ccode - glyphd[name] = glyphind - # print(glyphind, ccode, hex(int(ccode)), name) - -code = coded['A'] -glyph = font.load_char(code) -print(glyph.bbox) -print(glyphd['A'], glyphd['V'], coded['A'], coded['V']) -print('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_DEFAULT)) -print('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNFITTED)) -print('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNSCALED)) -print('AV', font.get_kerning(glyphd['A'], glyphd['T'], KERNING_UNSCALED)) diff --git a/_downloads/4e05397c7e49d7968945893bb039f4e3/multiple_histograms_side_by_side.ipynb b/_downloads/4e05397c7e49d7968945893bb039f4e3/multiple_histograms_side_by_side.ipynb deleted file mode 120000 index 6cad071a724..00000000000 --- a/_downloads/4e05397c7e49d7968945893bb039f4e3/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4e05397c7e49d7968945893bb039f4e3/multiple_histograms_side_by_side.ipynb \ No newline at end of file diff --git a/_downloads/4e0607037aaa57196cd56f7c1b94541c/text_fontdict.py b/_downloads/4e0607037aaa57196cd56f7c1b94541c/text_fontdict.py deleted file mode 120000 index f0b25003e06..00000000000 --- a/_downloads/4e0607037aaa57196cd56f7c1b94541c/text_fontdict.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4e0607037aaa57196cd56f7c1b94541c/text_fontdict.py \ No newline at end of file diff --git a/_downloads/4e0812df7f71542fea4d4dc51bce0da2/markevery_demo.ipynb b/_downloads/4e0812df7f71542fea4d4dc51bce0da2/markevery_demo.ipynb deleted file mode 120000 index 22acac8b7ca..00000000000 --- a/_downloads/4e0812df7f71542fea4d4dc51bce0da2/markevery_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4e0812df7f71542fea4d4dc51bce0da2/markevery_demo.ipynb \ No newline at end of file diff --git a/_downloads/4e0e7bf9ddb460b3260eb76c0ae3df50/annotations.ipynb b/_downloads/4e0e7bf9ddb460b3260eb76c0ae3df50/annotations.ipynb deleted file mode 120000 index d681daca4c6..00000000000 --- a/_downloads/4e0e7bf9ddb460b3260eb76c0ae3df50/annotations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4e0e7bf9ddb460b3260eb76c0ae3df50/annotations.ipynb \ No newline at end of file diff --git a/_downloads/4e1270d363927f553fd952d7a2603176/plot_types_jupyter.zip b/_downloads/4e1270d363927f553fd952d7a2603176/plot_types_jupyter.zip deleted file mode 120000 index d35f451d3cc..00000000000 --- a/_downloads/4e1270d363927f553fd952d7a2603176/plot_types_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4e1270d363927f553fd952d7a2603176/plot_types_jupyter.zip \ No newline at end of file diff --git a/_downloads/4e20254cefd776fdcee54ac04ac22fe7/patheffect_demo.py b/_downloads/4e20254cefd776fdcee54ac04ac22fe7/patheffect_demo.py deleted file mode 120000 index ba4a62cfd8d..00000000000 --- a/_downloads/4e20254cefd776fdcee54ac04ac22fe7/patheffect_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4e20254cefd776fdcee54ac04ac22fe7/patheffect_demo.py \ No newline at end of file diff --git a/_downloads/4e25ba1837ebee15d51d6845f0e4ebcb/hyperlinks_sgskip.ipynb b/_downloads/4e25ba1837ebee15d51d6845f0e4ebcb/hyperlinks_sgskip.ipynb deleted file mode 120000 index a13412e8eea..00000000000 --- a/_downloads/4e25ba1837ebee15d51d6845f0e4ebcb/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4e25ba1837ebee15d51d6845f0e4ebcb/hyperlinks_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/4e263580b2b0c47d3ca4aab9fd14db55/imshow_extent.ipynb b/_downloads/4e263580b2b0c47d3ca4aab9fd14db55/imshow_extent.ipynb deleted file mode 100644 index 7672b6a71f3..00000000000 --- a/_downloads/4e263580b2b0c47d3ca4aab9fd14db55/imshow_extent.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*origin* and *extent* in `~.Axes.imshow`\n========================================\n\n:meth:`~.Axes.imshow` allows you to render an image (either a 2D array\nwhich will be color-mapped (based on *norm* and *cmap*) or and 3D RGB(A)\narray which will be used as-is) to a rectangular region in dataspace.\nThe orientation of the image in the final rendering is controlled by\nthe *origin* and *extent* kwargs (and attributes on the resulting\n`~.AxesImage` instance) and the data limits of the axes.\n\nThe *extent* kwarg controls the bounding box in data coordinates that\nthe image will fill specified as ``(left, right, bottom, top)`` in\n**data coordinates**, the *origin* kwarg controls how the image fills\nthat bounding box, and the orientation in the final rendered image is\nalso affected by the axes limits.\n\n.. hint:: Most of the code below is used for adding labels and informative\n text to the plots. The described effects of *origin* and *extent* can be\n seen in the plots without the need to follow all code details.\n\n For a quick understanding, you may want to skip the code details below and\n directly continue with the discussion of the results.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.gridspec import GridSpec\n\n\ndef index_to_coordinate(index, extent, origin):\n \"\"\"Return the pixel center of an index.\"\"\"\n left, right, bottom, top = extent\n\n hshift = 0.5 * np.sign(right - left)\n left, right = left + hshift, right - hshift\n vshift = 0.5 * np.sign(top - bottom)\n bottom, top = bottom + vshift, top - vshift\n\n if origin == 'upper':\n bottom, top = top, bottom\n\n return {\n \"[0, 0]\": (left, bottom),\n \"[M', 0]\": (left, top),\n \"[0, N']\": (right, bottom),\n \"[M', N']\": (right, top),\n }[index]\n\n\ndef get_index_label_pos(index, extent, origin, inverted_xindex):\n \"\"\"\n Return the desired position and horizontal alignment of an index label.\n \"\"\"\n if extent is None:\n extent = lookup_extent(origin)\n left, right, bottom, top = extent\n x, y = index_to_coordinate(index, extent, origin)\n\n is_x0 = index[-2:] == \"0]\"\n halign = 'left' if is_x0 ^ inverted_xindex else 'right'\n hshift = 0.5 * np.sign(left - right)\n x += hshift * (1 if is_x0 else -1)\n return x, y, halign\n\n\ndef get_color(index, data, cmap):\n \"\"\"Return the data color of an index.\"\"\"\n val = {\n \"[0, 0]\": data[0, 0],\n \"[0, N']\": data[0, -1],\n \"[M', 0]\": data[-1, 0],\n \"[M', N']\": data[-1, -1],\n }[index]\n return cmap(val / data.max())\n\n\ndef lookup_extent(origin):\n \"\"\"Return extent for label positioning when not given explicitly.\"\"\"\n if origin == 'lower':\n return (-0.5, 6.5, -0.5, 5.5)\n else:\n return (-0.5, 6.5, 5.5, -0.5)\n\n\ndef set_extent_None_text(ax):\n ax.text(3, 2.5, 'equals\\nextent=None', size='large',\n ha='center', va='center', color='w')\n\n\ndef plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim):\n \"\"\"Actually run ``imshow()`` and add extent and index labels.\"\"\"\n im = ax.imshow(data, origin=origin, extent=extent)\n\n # extent labels (left, right, bottom, top)\n left, right, bottom, top = im.get_extent()\n if xlim is None or top > bottom:\n upper_string, lower_string = 'top', 'bottom'\n else:\n upper_string, lower_string = 'bottom', 'top'\n if ylim is None or left < right:\n port_string, starboard_string = 'left', 'right'\n inverted_xindex = False\n else:\n port_string, starboard_string = 'right', 'left'\n inverted_xindex = True\n bbox_kwargs = {'fc': 'w', 'alpha': .75, 'boxstyle': \"round4\"}\n ann_kwargs = {'xycoords': 'axes fraction',\n 'textcoords': 'offset points',\n 'bbox': bbox_kwargs}\n ax.annotate(upper_string, xy=(.5, 1), xytext=(0, -1),\n ha='center', va='top', **ann_kwargs)\n ax.annotate(lower_string, xy=(.5, 0), xytext=(0, 1),\n ha='center', va='bottom', **ann_kwargs)\n ax.annotate(port_string, xy=(0, .5), xytext=(1, 0),\n ha='left', va='center', rotation=90,\n **ann_kwargs)\n ax.annotate(starboard_string, xy=(1, .5), xytext=(-1, 0),\n ha='right', va='center', rotation=-90,\n **ann_kwargs)\n ax.set_title('origin: {origin}'.format(origin=origin))\n\n # index labels\n for index in [\"[0, 0]\", \"[0, N']\", \"[M', 0]\", \"[M', N']\"]:\n tx, ty, halign = get_index_label_pos(index, extent, origin,\n inverted_xindex)\n facecolor = get_color(index, data, im.get_cmap())\n ax.text(tx, ty, index, color='white', ha=halign, va='center',\n bbox={'boxstyle': 'square', 'facecolor': facecolor})\n if xlim:\n ax.set_xlim(*xlim)\n if ylim:\n ax.set_ylim(*ylim)\n\n\ndef generate_imshow_demo_grid(extents, xlim=None, ylim=None):\n N = len(extents)\n fig = plt.figure(tight_layout=True)\n fig.set_size_inches(6, N * (11.25) / 5)\n gs = GridSpec(N, 5, figure=fig)\n\n columns = {'label': [fig.add_subplot(gs[j, 0]) for j in range(N)],\n 'upper': [fig.add_subplot(gs[j, 1:3]) for j in range(N)],\n 'lower': [fig.add_subplot(gs[j, 3:5]) for j in range(N)]}\n x, y = np.ogrid[0:6, 0:7]\n data = x + y\n\n for origin in ['upper', 'lower']:\n for ax, extent in zip(columns[origin], extents):\n plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim)\n\n for ax, extent in zip(columns['label'], extents):\n text_kwargs = {'ha': 'right',\n 'va': 'center',\n 'xycoords': 'axes fraction',\n 'xy': (1, .5)}\n if extent is None:\n ax.annotate('None', **text_kwargs)\n ax.set_title('extent=')\n else:\n left, right, bottom, top = extent\n text = ('left: {left:0.1f}\\nright: {right:0.1f}\\n' +\n 'bottom: {bottom:0.1f}\\ntop: {top:0.1f}\\n').format(\n left=left, right=right, bottom=bottom, top=top)\n\n ax.annotate(text, **text_kwargs)\n ax.axis('off')\n return columns" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Default extent\n--------------\n\nFirst, let's have a look at the default `extent=None`\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "generate_imshow_demo_grid(extents=[None])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Generally, for an array of shape (M, N), the first index runs along the\nvertical, the second index runs along the horizontal.\nThe pixel centers are at integer positions ranging from 0 to ``N' = N - 1``\nhorizontally and from 0 to ``M' = M - 1`` vertically.\n*origin* determines how to the data is filled in the bounding box.\n\nFor ``origin='lower'``:\n\n - [0, 0] is at (left, bottom)\n - [M', 0] is at (left, top)\n - [0, N'] is at (right, bottom)\n - [M', N'] is at (right, top)\n\n``origin='upper'`` reverses the vertical axes direction and filling:\n\n - [0, 0] is at (left, top)\n - [M', 0] is at (left, bottom)\n - [0, N'] is at (right, top)\n - [M', N'] is at (right, bottom)\n\nIn summary, the position of the [0, 0] index as well as the extent are\ninfluenced by *origin*:\n\n====== =============== ==========================================\norigin [0, 0] position extent\n====== =============== ==========================================\nupper top left ``(-0.5, numcols-0.5, numrows-0.5, -0.5)``\nlower bottom left ``(-0.5, numcols-0.5, -0.5, numrows-0.5)``\n====== =============== ==========================================\n\nThe default value of *origin* is set by :rc:`image.origin` which defaults\nto ``'upper'`` to match the matrix indexing conventions in math and\ncomputer graphics image indexing conventions.\n\n\nExplicit extent\n---------------\n\nBy setting *extent* we define the coordinates of the image area. The\nunderlying image data is interpolated/resampled to fill that area.\n\nIf the axes is set to autoscale, then the view limits of the axes are set\nto match the *extent* which ensures that the coordinate set by\n``(left, bottom)`` is at the bottom left of the axes! However, this\nmay invert the axis so they do not increase in the 'natural' direction.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "extents = [(-0.5, 6.5, -0.5, 5.5),\n (-0.5, 6.5, 5.5, -0.5),\n (6.5, -0.5, -0.5, 5.5),\n (6.5, -0.5, 5.5, -0.5)]\n\ncolumns = generate_imshow_demo_grid(extents)\nset_extent_None_text(columns['upper'][1])\nset_extent_None_text(columns['lower'][0])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Explicit extent and axes limits\n-------------------------------\n\nIf we fix the axes limits by explicitly setting `set_xlim` / `set_ylim`, we\nforce a certain size and orientation of the axes.\nThis can decouple the 'left-right' and 'top-bottom' sense of the image from\nthe orientation on the screen.\n\nIn the example below we have chosen the limits slightly larger than the\nextent (note the white areas within the Axes).\n\nWhile we keep the extents as in the examples before, the coordinate (0, 0)\nis now explicitly put at the bottom left and values increase to up and to\nthe right (from the viewer point of view).\nWe can see that:\n\n- The coordinate ``(left, bottom)`` anchors the image which then fills the\n box going towards the ``(right, top)`` point in data space.\n- The first column is always closest to the 'left'.\n- *origin* controls if the first row is closest to 'top' or 'bottom'.\n- The image may be inverted along either direction.\n- The 'left-right' and 'top-bottom' sense of the image may be uncoupled from\n the orientation on the screen.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "generate_imshow_demo_grid(extents=[None] + extents,\n xlim=(-2, 8), ylim=(-1, 6))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4e2a434db39e1b626d4ad7cb0aa9a833/dark_background.ipynb b/_downloads/4e2a434db39e1b626d4ad7cb0aa9a833/dark_background.ipynb deleted file mode 100644 index ea96c5ad143..00000000000 --- a/_downloads/4e2a434db39e1b626d4ad7cb0aa9a833/dark_background.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dark background style sheet\n\n\nThis example demonstrates the \"dark_background\" style, which uses white for\nelements that are typically black (text, borders, etc). Note that not all plot\nelements default to colors defined by an rc parameter.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nplt.style.use('dark_background')\n\nfig, ax = plt.subplots()\n\nL = 6\nx = np.linspace(0, L)\nncolors = len(plt.rcParams['axes.prop_cycle'])\nshift = np.linspace(0, L, ncolors, endpoint=False)\nfor s in shift:\n ax.plot(x, np.sin(x + s), 'o-')\nax.set_xlabel('x-axis')\nax.set_ylabel('y-axis')\nax.set_title(\"'dark_background' style sheet\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4e346314596e534ea267a0d9d7929900/demo_axes_rgb.ipynb b/_downloads/4e346314596e534ea267a0d9d7929900/demo_axes_rgb.ipynb deleted file mode 120000 index ec667672ca6..00000000000 --- a/_downloads/4e346314596e534ea267a0d9d7929900/demo_axes_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4e346314596e534ea267a0d9d7929900/demo_axes_rgb.ipynb \ No newline at end of file diff --git a/_downloads/4e35546e054302909f70da22e48450ec/simple_legend01.py b/_downloads/4e35546e054302909f70da22e48450ec/simple_legend01.py deleted file mode 120000 index 85b5f10ca3e..00000000000 --- a/_downloads/4e35546e054302909f70da22e48450ec/simple_legend01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4e35546e054302909f70da22e48450ec/simple_legend01.py \ No newline at end of file diff --git a/_downloads/4e424b4e4d76de7f175f503c19893074/menu.py b/_downloads/4e424b4e4d76de7f175f503c19893074/menu.py deleted file mode 120000 index 3463c9c6f99..00000000000 --- a/_downloads/4e424b4e4d76de7f175f503c19893074/menu.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4e424b4e4d76de7f175f503c19893074/menu.py \ No newline at end of file diff --git a/_downloads/4e492404efb594cc5a6aeb21187792bb/rasterization_demo.py b/_downloads/4e492404efb594cc5a6aeb21187792bb/rasterization_demo.py deleted file mode 100644 index 96d8b5868ca..00000000000 --- a/_downloads/4e492404efb594cc5a6aeb21187792bb/rasterization_demo.py +++ /dev/null @@ -1,56 +0,0 @@ -""" -================== -Rasterization Demo -================== - -""" -import numpy as np -import matplotlib.pyplot as plt - -d = np.arange(100).reshape(10, 10) -x, y = np.meshgrid(np.arange(11), np.arange(11)) - -theta = 0.25*np.pi -xx = x*np.cos(theta) - y*np.sin(theta) -yy = x*np.sin(theta) + y*np.cos(theta) - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) -ax1.set_aspect(1) -ax1.pcolormesh(xx, yy, d) -ax1.set_title("No Rasterization") - -ax2.set_aspect(1) -ax2.set_title("Rasterization") - -m = ax2.pcolormesh(xx, yy, d) -m.set_rasterized(True) - -ax3.set_aspect(1) -ax3.pcolormesh(xx, yy, d) -ax3.text(0.5, 0.5, "Text", alpha=0.2, - va="center", ha="center", size=50, transform=ax3.transAxes) - -ax3.set_title("No Rasterization") - - -ax4.set_aspect(1) -m = ax4.pcolormesh(xx, yy, d) -m.set_zorder(-20) - -ax4.text(0.5, 0.5, "Text", alpha=0.2, - zorder=-15, - va="center", ha="center", size=50, transform=ax4.transAxes) - -ax4.set_rasterization_zorder(-10) - -ax4.set_title("Rasterization z$<-10$") - - -# ax2.title.set_rasterized(True) # should display a warning - -plt.savefig("test_rasterization.pdf", dpi=150) -plt.savefig("test_rasterization.eps", dpi=150) - -if not plt.rcParams["text.usetex"]: - plt.savefig("test_rasterization.svg", dpi=150) - # svg backend currently ignores the dpi diff --git a/_downloads/4e54f80f9ad39be764b6a0315bdb776d/categorical_variables.ipynb b/_downloads/4e54f80f9ad39be764b6a0315bdb776d/categorical_variables.ipynb deleted file mode 100644 index 987856bd894..00000000000 --- a/_downloads/4e54f80f9ad39be764b6a0315bdb776d/categorical_variables.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotting categorical variables\n\n\nHow to use categorical variables in Matplotlib.\n\nMany times you want to create a plot that uses categorical variables\nin Matplotlib. Matplotlib allows you to pass categorical variables directly to\nmany plotting functions, which we demonstrate below.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\ndata = {'apples': 10, 'oranges': 15, 'lemons': 5, 'limes': 20}\nnames = list(data.keys())\nvalues = list(data.values())\n\nfig, axs = plt.subplots(1, 3, figsize=(9, 3), sharey=True)\naxs[0].bar(names, values)\naxs[1].scatter(names, values)\naxs[2].plot(names, values)\nfig.suptitle('Categorical Plotting')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This works on both axes:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cat = [\"bored\", \"happy\", \"bored\", \"bored\", \"happy\", \"bored\"]\ndog = [\"happy\", \"happy\", \"happy\", \"happy\", \"bored\", \"bored\"]\nactivity = [\"combing\", \"drinking\", \"feeding\", \"napping\", \"playing\", \"washing\"]\n\nfig, ax = plt.subplots()\nax.plot(activity, dog, label=\"dog\")\nax.plot(activity, cat, label=\"cat\")\nax.legend()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4e5632223eef393a2a32db7c07f22b23/keypress_demo.py b/_downloads/4e5632223eef393a2a32db7c07f22b23/keypress_demo.py deleted file mode 120000 index 73de83a334a..00000000000 --- a/_downloads/4e5632223eef393a2a32db7c07f22b23/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4e5632223eef393a2a32db7c07f22b23/keypress_demo.py \ No newline at end of file diff --git a/_downloads/4e61c258ce41541e8a93a0c9d40b3712/contour_image.py b/_downloads/4e61c258ce41541e8a93a0c9d40b3712/contour_image.py deleted file mode 120000 index 6cb5b36c7a3..00000000000 --- a/_downloads/4e61c258ce41541e8a93a0c9d40b3712/contour_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4e61c258ce41541e8a93a0c9d40b3712/contour_image.py \ No newline at end of file diff --git a/_downloads/4e652cf5dcc365f6cef88a73edbcf09c/colormap_reference.py b/_downloads/4e652cf5dcc365f6cef88a73edbcf09c/colormap_reference.py deleted file mode 120000 index 7be9888d052..00000000000 --- a/_downloads/4e652cf5dcc365f6cef88a73edbcf09c/colormap_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4e652cf5dcc365f6cef88a73edbcf09c/colormap_reference.py \ No newline at end of file diff --git a/_downloads/4e6b5aede6d7d29fddfe5e703099edf1/annotate_simple_coord01.ipynb b/_downloads/4e6b5aede6d7d29fddfe5e703099edf1/annotate_simple_coord01.ipynb deleted file mode 120000 index 1a069b24f03..00000000000 --- a/_downloads/4e6b5aede6d7d29fddfe5e703099edf1/annotate_simple_coord01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4e6b5aede6d7d29fddfe5e703099edf1/annotate_simple_coord01.ipynb \ No newline at end of file diff --git a/_downloads/4e7d0134f85c130b199b5f498af592dd/rain.py b/_downloads/4e7d0134f85c130b199b5f498af592dd/rain.py deleted file mode 120000 index edfeb86ca4a..00000000000 --- a/_downloads/4e7d0134f85c130b199b5f498af592dd/rain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4e7d0134f85c130b199b5f498af592dd/rain.py \ No newline at end of file diff --git a/_downloads/4e857870e752d2fad800c3858c8f5808/contourf_demo.ipynb b/_downloads/4e857870e752d2fad800c3858c8f5808/contourf_demo.ipynb deleted file mode 120000 index 21354fb3ad0..00000000000 --- a/_downloads/4e857870e752d2fad800c3858c8f5808/contourf_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4e857870e752d2fad800c3858c8f5808/contourf_demo.ipynb \ No newline at end of file diff --git a/_downloads/4e8760903d0e2a3c6ff2a4915b60a44f/pie_demo2.py b/_downloads/4e8760903d0e2a3c6ff2a4915b60a44f/pie_demo2.py deleted file mode 120000 index 135bda3db83..00000000000 --- a/_downloads/4e8760903d0e2a3c6ff2a4915b60a44f/pie_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4e8760903d0e2a3c6ff2a4915b60a44f/pie_demo2.py \ No newline at end of file diff --git a/_downloads/4e8c59b7e3b40e1b53b3cda84a5be135/fancybox_demo.py b/_downloads/4e8c59b7e3b40e1b53b3cda84a5be135/fancybox_demo.py deleted file mode 120000 index 414a63501ea..00000000000 --- a/_downloads/4e8c59b7e3b40e1b53b3cda84a5be135/fancybox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4e8c59b7e3b40e1b53b3cda84a5be135/fancybox_demo.py \ No newline at end of file diff --git a/_downloads/4e90675e6f869d43fc78cc07ba64fc06/units_sample.ipynb b/_downloads/4e90675e6f869d43fc78cc07ba64fc06/units_sample.ipynb deleted file mode 120000 index c1a4bbe17fc..00000000000 --- a/_downloads/4e90675e6f869d43fc78cc07ba64fc06/units_sample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4e90675e6f869d43fc78cc07ba64fc06/units_sample.ipynb \ No newline at end of file diff --git a/_downloads/4e933eb165b5a82541fc0be20a541aec/annotation_basic.py b/_downloads/4e933eb165b5a82541fc0be20a541aec/annotation_basic.py deleted file mode 120000 index 3aa28173b8c..00000000000 --- a/_downloads/4e933eb165b5a82541fc0be20a541aec/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4e933eb165b5a82541fc0be20a541aec/annotation_basic.py \ No newline at end of file diff --git a/_downloads/4e9f17167bf484a153332b3748ab00bd/demo_axis_direction.ipynb b/_downloads/4e9f17167bf484a153332b3748ab00bd/demo_axis_direction.ipynb deleted file mode 100644 index b2d93c786ab..00000000000 --- a/_downloads/4e9f17167bf484a153332b3748ab00bd/demo_axis_direction.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axis Direction\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nimport mpl_toolkits.axisartist.grid_finder as grid_finder\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\n\nimport mpl_toolkits.axisartist as axisartist\n\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import \\\n GridHelperCurveLinear\n\n\ndef setup_axes(fig, rect):\n \"\"\"\n polar projection, but in a rectangular box.\n \"\"\"\n\n # see demo_curvelinear_grid.py for details\n tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform()\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle=360,\n lat_cycle=None,\n lon_minmax=None,\n lat_minmax=(0, np.inf),\n )\n\n grid_locator1 = angle_helper.LocatorDMS(12)\n grid_locator2 = grid_finder.MaxNLocator(5)\n\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1\n )\n\n ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper)\n ax1.axis[:].toggle(ticklabels=False)\n\n fig.add_subplot(ax1)\n\n ax1.set_aspect(1.)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n return ax1\n\n\ndef add_floating_axis1(ax1):\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 30)\n axis.label.set_text(r\"$\\theta = 30^{\\circ}$\")\n axis.label.set_visible(True)\n\n return axis\n\n\ndef add_floating_axis2(ax1):\n ax1.axis[\"lon\"] = axis = ax1.new_floating_axis(1, 6)\n axis.label.set_text(r\"$r = 6$\")\n axis.label.set_visible(True)\n\n return axis\n\n\nfig = plt.figure(figsize=(8, 4))\nfig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99,\n wspace=0.01, hspace=0.01)\n\nfor i, d in enumerate([\"bottom\", \"left\", \"top\", \"right\"]):\n ax1 = setup_axes(fig, rect=241++i)\n axis = add_floating_axis1(ax1)\n axis.set_axis_direction(d)\n ax1.annotate(d, (0, 1), (5, -5),\n xycoords=\"axes fraction\", textcoords=\"offset points\",\n va=\"top\", ha=\"left\")\n\nfor i, d in enumerate([\"bottom\", \"left\", \"top\", \"right\"]):\n ax1 = setup_axes(fig, rect=245++i)\n axis = add_floating_axis2(ax1)\n axis.set_axis_direction(d)\n ax1.annotate(d, (0, 1), (5, -5),\n xycoords=\"axes fraction\", textcoords=\"offset points\",\n va=\"top\", ha=\"left\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4ea5358b9673d9a6089d5c15efc450d3/fill_spiral.ipynb b/_downloads/4ea5358b9673d9a6089d5c15efc450d3/fill_spiral.ipynb deleted file mode 120000 index 4a86fddc645..00000000000 --- a/_downloads/4ea5358b9673d9a6089d5c15efc450d3/fill_spiral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4ea5358b9673d9a6089d5c15efc450d3/fill_spiral.ipynb \ No newline at end of file diff --git a/_downloads/4ea6c49f3f877cf8488975cfbe121781/check_buttons.py b/_downloads/4ea6c49f3f877cf8488975cfbe121781/check_buttons.py deleted file mode 100644 index d9f06192dd4..00000000000 --- a/_downloads/4ea6c49f3f877cf8488975cfbe121781/check_buttons.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============= -Check Buttons -============= - -Turning visual elements on and off with check buttons. - -This program shows the use of 'Check Buttons' which is similar to -check boxes. There are 3 different sine waves shown and we can choose which -waves are displayed with the check buttons. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import CheckButtons - -t = np.arange(0.0, 2.0, 0.01) -s0 = np.sin(2*np.pi*t) -s1 = np.sin(4*np.pi*t) -s2 = np.sin(6*np.pi*t) - -fig, ax = plt.subplots() -l0, = ax.plot(t, s0, visible=False, lw=2, color='k', label='2 Hz') -l1, = ax.plot(t, s1, lw=2, color='r', label='4 Hz') -l2, = ax.plot(t, s2, lw=2, color='g', label='6 Hz') -plt.subplots_adjust(left=0.2) - -lines = [l0, l1, l2] - -# Make checkbuttons with all plotted lines with correct visibility -rax = plt.axes([0.05, 0.4, 0.1, 0.15]) -labels = [str(line.get_label()) for line in lines] -visibility = [line.get_visible() for line in lines] -check = CheckButtons(rax, labels, visibility) - - -def func(label): - index = labels.index(label) - lines[index].set_visible(not lines[index].get_visible()) - plt.draw() - -check.on_clicked(func) - -plt.show() diff --git a/_downloads/4eba3b456fde2782837674e646a75e17/demo_colorbar_with_axes_divider.py b/_downloads/4eba3b456fde2782837674e646a75e17/demo_colorbar_with_axes_divider.py deleted file mode 120000 index acb165e9376..00000000000 --- a/_downloads/4eba3b456fde2782837674e646a75e17/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4eba3b456fde2782837674e646a75e17/demo_colorbar_with_axes_divider.py \ No newline at end of file diff --git a/_downloads/4ec0f2e884b45fb39a61da316b482e7c/leftventricle_bulleye.ipynb b/_downloads/4ec0f2e884b45fb39a61da316b482e7c/leftventricle_bulleye.ipynb deleted file mode 120000 index 4895c90ed0d..00000000000 --- a/_downloads/4ec0f2e884b45fb39a61da316b482e7c/leftventricle_bulleye.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4ec0f2e884b45fb39a61da316b482e7c/leftventricle_bulleye.ipynb \ No newline at end of file diff --git a/_downloads/4ec404899f4c112c5e70cfff9f42d53f/stem_plot.py b/_downloads/4ec404899f4c112c5e70cfff9f42d53f/stem_plot.py deleted file mode 120000 index 52f193bc16a..00000000000 --- a/_downloads/4ec404899f4c112c5e70cfff9f42d53f/stem_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4ec404899f4c112c5e70cfff9f42d53f/stem_plot.py \ No newline at end of file diff --git a/_downloads/4ed0076f8274ce8d06c48ba34eaa49c6/line_demo_dash_control.ipynb b/_downloads/4ed0076f8274ce8d06c48ba34eaa49c6/line_demo_dash_control.ipynb deleted file mode 100644 index e58f52ec198..00000000000 --- a/_downloads/4ed0076f8274ce8d06c48ba34eaa49c6/line_demo_dash_control.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customizing dashed line styles\n\n\nThe dashing of a line is controlled via a dash sequence. It can be modified\nusing `.Line2D.set_dashes`.\n\nThe dash sequence is a series of on/off lengths in points, e.g.\n``[3, 1]`` would be 3pt long lines separated by 1pt spaces.\n\nSome functions like `.Axes.plot` support passing Line properties as keyword\narguments. In such a case, you can already set the dashing when creating the\nline.\n\n*Note*: The dash style can also be configured via a\n:doc:`property_cycle `\nby passing a list of dash sequences using the keyword *dashes* to the\ncycler. This is not shown within this example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = np.linspace(0, 10, 500)\ny = np.sin(x)\n\nfig, ax = plt.subplots()\n\n# Using set_dashes() to modify dashing of an existing line\nline1, = ax.plot(x, y, label='Using set_dashes()')\nline1.set_dashes([2, 2, 10, 2]) # 2pt line, 2pt break, 10pt line, 2pt break\n\n# Using plot(..., dashes=...) to set the dashing when creating a line\nline2, = ax.plot(x, y - 0.2, dashes=[6, 2], label='Using the dashes parameter')\n\nax.legend()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4edf7b7ec3860afe708f3fdb504f9b0b/pythonic_matplotlib.ipynb b/_downloads/4edf7b7ec3860afe708f3fdb504f9b0b/pythonic_matplotlib.ipynb deleted file mode 120000 index b3247784548..00000000000 --- a/_downloads/4edf7b7ec3860afe708f3fdb504f9b0b/pythonic_matplotlib.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4edf7b7ec3860afe708f3fdb504f9b0b/pythonic_matplotlib.ipynb \ No newline at end of file diff --git a/_downloads/4ee10f51bc70fd3964fb1b8b3f64d054/bar_stacked.py b/_downloads/4ee10f51bc70fd3964fb1b8b3f64d054/bar_stacked.py deleted file mode 120000 index b98377d6aef..00000000000 --- a/_downloads/4ee10f51bc70fd3964fb1b8b3f64d054/bar_stacked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4ee10f51bc70fd3964fb1b8b3f64d054/bar_stacked.py \ No newline at end of file diff --git a/_downloads/4ee5df92a89e9c5ca5c606ab783e334d/wxcursor_demo_sgskip.ipynb b/_downloads/4ee5df92a89e9c5ca5c606ab783e334d/wxcursor_demo_sgskip.ipynb deleted file mode 120000 index 9e1afc70bd3..00000000000 --- a/_downloads/4ee5df92a89e9c5ca5c606ab783e334d/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4ee5df92a89e9c5ca5c606ab783e334d/wxcursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/4ee606b3c6ef17a94b274151545f70d8/scatter_symbol.ipynb b/_downloads/4ee606b3c6ef17a94b274151545f70d8/scatter_symbol.ipynb deleted file mode 120000 index a6962644125..00000000000 --- a/_downloads/4ee606b3c6ef17a94b274151545f70d8/scatter_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/4ee606b3c6ef17a94b274151545f70d8/scatter_symbol.ipynb \ No newline at end of file diff --git a/_downloads/4eee38c0827b4fec571ac632d01b356b/zoom_inset_axes.py b/_downloads/4eee38c0827b4fec571ac632d01b356b/zoom_inset_axes.py deleted file mode 120000 index 823d9720f8e..00000000000 --- a/_downloads/4eee38c0827b4fec571ac632d01b356b/zoom_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4eee38c0827b4fec571ac632d01b356b/zoom_inset_axes.py \ No newline at end of file diff --git a/_downloads/4ef616839ea0fd0c990fb8568fbb0042/colormap_reference.py b/_downloads/4ef616839ea0fd0c990fb8568fbb0042/colormap_reference.py deleted file mode 100644 index afb578ffad1..00000000000 --- a/_downloads/4ef616839ea0fd0c990fb8568fbb0042/colormap_reference.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -================== -Colormap reference -================== - -Reference for colormaps included with Matplotlib. - -A reversed version of each of these colormaps is available by appending -``_r`` to the name, e.g., ``viridis_r``. - -See :doc:`/tutorials/colors/colormaps` for an in-depth discussion about -colormaps, including colorblind-friendliness. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -cmaps = [('Perceptually Uniform Sequential', [ - 'viridis', 'plasma', 'inferno', 'magma', 'cividis']), - ('Sequential', [ - 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds', - 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu', - 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn']), - ('Sequential (2)', [ - 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink', - 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia', - 'hot', 'afmhot', 'gist_heat', 'copper']), - ('Diverging', [ - 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu', - 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic']), - ('Cyclic', ['twilight', 'twilight_shifted', 'hsv']), - ('Qualitative', [ - 'Pastel1', 'Pastel2', 'Paired', 'Accent', - 'Dark2', 'Set1', 'Set2', 'Set3', - 'tab10', 'tab20', 'tab20b', 'tab20c']), - ('Miscellaneous', [ - 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern', - 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg', - 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar'])] - - -gradient = np.linspace(0, 1, 256) -gradient = np.vstack((gradient, gradient)) - - -def plot_color_gradients(cmap_category, cmap_list): - # Create figure and adjust figure height to number of colormaps - nrows = len(cmap_list) - figh = 0.35 + 0.15 + (nrows + (nrows-1)*0.1)*0.22 - fig, axes = plt.subplots(nrows=nrows, figsize=(6.4, figh)) - fig.subplots_adjust(top=1-.35/figh, bottom=.15/figh, left=0.2, right=0.99) - - axes[0].set_title(cmap_category + ' colormaps', fontsize=14) - - for ax, name in zip(axes, cmap_list): - ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name)) - ax.text(-.01, .5, name, va='center', ha='right', fontsize=10, - transform=ax.transAxes) - - # Turn off *all* ticks & spines, not just the ones with colormaps. - for ax in axes: - ax.set_axis_off() - - -for cmap_category, cmap_list in cmaps: - plot_color_gradients(cmap_category, cmap_list) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.axes.Axes.imshow -matplotlib.figure.Figure.text -matplotlib.axes.Axes.set_axis_off diff --git a/_downloads/4f021725eb7b2a5ddcd300fab7308883/multipage_pdf.ipynb b/_downloads/4f021725eb7b2a5ddcd300fab7308883/multipage_pdf.ipynb deleted file mode 120000 index dbbf2e46dbe..00000000000 --- a/_downloads/4f021725eb7b2a5ddcd300fab7308883/multipage_pdf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4f021725eb7b2a5ddcd300fab7308883/multipage_pdf.ipynb \ No newline at end of file diff --git a/_downloads/4f03c4fc671a331e115204724476a6b2/watermark_image.py b/_downloads/4f03c4fc671a331e115204724476a6b2/watermark_image.py deleted file mode 120000 index 03eb6c2e493..00000000000 --- a/_downloads/4f03c4fc671a331e115204724476a6b2/watermark_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4f03c4fc671a331e115204724476a6b2/watermark_image.py \ No newline at end of file diff --git a/_downloads/4f09d7ff93dddbf6db144851d08b8c3f/stem_plot.py b/_downloads/4f09d7ff93dddbf6db144851d08b8c3f/stem_plot.py deleted file mode 100644 index 7f8c78a0adb..00000000000 --- a/_downloads/4f09d7ff93dddbf6db144851d08b8c3f/stem_plot.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -========= -Stem Plot -========= - -`~.pyplot.stem` plots vertical lines from a baseline to the y-coordinate and -places a marker at the tip. -""" -import matplotlib.pyplot as plt -import numpy as np - -x = np.linspace(0.1, 2 * np.pi, 41) -y = np.exp(np.sin(x)) - -plt.stem(x, y, use_line_collection=True) -plt.show() - -############################################################################# -# -# The position of the baseline can be adapted using *bottom*. -# The parameters *linefmt*, *markerfmt*, and *basefmt* control basic format -# properties of the plot. However, in contrast to `~.pyplot.plot` not all -# properties are configurable via keyword arguments. For more advanced -# control adapt the line objects returned by `~.pyplot`. - -markerline, stemlines, baseline = plt.stem( - x, y, linefmt='grey', markerfmt='D', bottom=1.1, use_line_collection=True) -markerline.set_markerfacecolor('none') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.stem -matplotlib.axes.Axes.stem diff --git a/_downloads/4f182d50beafa120e1d55fa1bc9612d2/check_buttons.py b/_downloads/4f182d50beafa120e1d55fa1bc9612d2/check_buttons.py deleted file mode 120000 index 6e878060ce6..00000000000 --- a/_downloads/4f182d50beafa120e1d55fa1bc9612d2/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4f182d50beafa120e1d55fa1bc9612d2/check_buttons.py \ No newline at end of file diff --git a/_downloads/4f1a355cc28d83469022d1616dca6ad7/3D.py b/_downloads/4f1a355cc28d83469022d1616dca6ad7/3D.py deleted file mode 100644 index 8c2da0c96f0..00000000000 --- a/_downloads/4f1a355cc28d83469022d1616dca6ad7/3D.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -==================== -Frontpage 3D example -==================== - -This example reproduces the frontpage 3D example. -""" -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib import cbook -from matplotlib import cm -from matplotlib.colors import LightSource -import matplotlib.pyplot as plt -import numpy as np - -with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \ - np.load(file) as dem: - z = dem['elevation'] - nrows, ncols = z.shape - x = np.linspace(dem['xmin'], dem['xmax'], ncols) - y = np.linspace(dem['ymin'], dem['ymax'], nrows) - x, y = np.meshgrid(x, y) - -region = np.s_[5:50, 5:50] -x, y, z = x[region], y[region], z[region] - -fig, ax = plt.subplots(subplot_kw=dict(projection='3d')) - -ls = LightSource(270, 45) -# To use a custom hillshading mode, override the built-in shading and pass -# in the rgb colors of the shaded surface calculated from "shade". -rgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft') -surf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb, - linewidth=0, antialiased=False, shade=False) -ax.set_xticks([]) -ax.set_yticks([]) -ax.set_zticks([]) -fig.savefig("surface3d_frontpage.png", dpi=25) # results in 160x120 px image diff --git a/_downloads/4f313e39267a4b5ee85742bc8c2b308d/spy_demos.ipynb b/_downloads/4f313e39267a4b5ee85742bc8c2b308d/spy_demos.ipynb deleted file mode 120000 index 200ee9ba863..00000000000 --- a/_downloads/4f313e39267a4b5ee85742bc8c2b308d/spy_demos.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4f313e39267a4b5ee85742bc8c2b308d/spy_demos.ipynb \ No newline at end of file diff --git a/_downloads/4f326207b6724b293b045067540746eb/multiline.ipynb b/_downloads/4f326207b6724b293b045067540746eb/multiline.ipynb deleted file mode 120000 index 3f5ae5ef741..00000000000 --- a/_downloads/4f326207b6724b293b045067540746eb/multiline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4f326207b6724b293b045067540746eb/multiline.ipynb \ No newline at end of file diff --git a/_downloads/4f32bf39e78d4b54b802e1d726030b42/line_demo_dash_control.ipynb b/_downloads/4f32bf39e78d4b54b802e1d726030b42/line_demo_dash_control.ipynb deleted file mode 120000 index e24644187ea..00000000000 --- a/_downloads/4f32bf39e78d4b54b802e1d726030b42/line_demo_dash_control.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4f32bf39e78d4b54b802e1d726030b42/line_demo_dash_control.ipynb \ No newline at end of file diff --git a/_downloads/4f37db6a67e9e599550916e61ce62d04/constrainedlayout_guide.py b/_downloads/4f37db6a67e9e599550916e61ce62d04/constrainedlayout_guide.py deleted file mode 120000 index 0a8474fc1ab..00000000000 --- a/_downloads/4f37db6a67e9e599550916e61ce62d04/constrainedlayout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4f37db6a67e9e599550916e61ce62d04/constrainedlayout_guide.py \ No newline at end of file diff --git a/_downloads/4f3cebebc34da6e4d781710b6dcc1f00/findobj_demo.py b/_downloads/4f3cebebc34da6e4d781710b6dcc1f00/findobj_demo.py deleted file mode 120000 index bd7dc44176e..00000000000 --- a/_downloads/4f3cebebc34da6e4d781710b6dcc1f00/findobj_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4f3cebebc34da6e4d781710b6dcc1f00/findobj_demo.py \ No newline at end of file diff --git a/_downloads/4f509f83be5baa6cc68cf70560d90588/simple_legend01.ipynb b/_downloads/4f509f83be5baa6cc68cf70560d90588/simple_legend01.ipynb deleted file mode 120000 index 0961fab5fc5..00000000000 --- a/_downloads/4f509f83be5baa6cc68cf70560d90588/simple_legend01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4f509f83be5baa6cc68cf70560d90588/simple_legend01.ipynb \ No newline at end of file diff --git a/_downloads/4f578bf8c7e78e5da15098c97982cf94/gtk_spreadsheet_sgskip.py b/_downloads/4f578bf8c7e78e5da15098c97982cf94/gtk_spreadsheet_sgskip.py deleted file mode 120000 index 86ad9774293..00000000000 --- a/_downloads/4f578bf8c7e78e5da15098c97982cf94/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4f578bf8c7e78e5da15098c97982cf94/gtk_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/4f622657b18900497cbf9eaf978d5996/font_family_rc_sgskip.ipynb b/_downloads/4f622657b18900497cbf9eaf978d5996/font_family_rc_sgskip.ipynb deleted file mode 120000 index 2db8ee1a313..00000000000 --- a/_downloads/4f622657b18900497cbf9eaf978d5996/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4f622657b18900497cbf9eaf978d5996/font_family_rc_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/4f656f00b4df4821ad0c50c6a70b7bc1/gridspec_and_subplots.ipynb b/_downloads/4f656f00b4df4821ad0c50c6a70b7bc1/gridspec_and_subplots.ipynb deleted file mode 120000 index 5a44861f29f..00000000000 --- a/_downloads/4f656f00b4df4821ad0c50c6a70b7bc1/gridspec_and_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4f656f00b4df4821ad0c50c6a70b7bc1/gridspec_and_subplots.ipynb \ No newline at end of file diff --git a/_downloads/4f6fcd066c07503f255ad7f246a5baf0/annotate_simple04.py b/_downloads/4f6fcd066c07503f255ad7f246a5baf0/annotate_simple04.py deleted file mode 120000 index 172048de0f1..00000000000 --- a/_downloads/4f6fcd066c07503f255ad7f246a5baf0/annotate_simple04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4f6fcd066c07503f255ad7f246a5baf0/annotate_simple04.py \ No newline at end of file diff --git a/_downloads/4f7a6bf998e89cf3b7fdcb652de621c8/annotate_simple01.ipynb b/_downloads/4f7a6bf998e89cf3b7fdcb652de621c8/annotate_simple01.ipynb deleted file mode 120000 index 3ec900209d0..00000000000 --- a/_downloads/4f7a6bf998e89cf3b7fdcb652de621c8/annotate_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4f7a6bf998e89cf3b7fdcb652de621c8/annotate_simple01.ipynb \ No newline at end of file diff --git a/_downloads/4f7fb657018c725c6a364011c59737e7/xcorr_acorr_demo.py b/_downloads/4f7fb657018c725c6a364011c59737e7/xcorr_acorr_demo.py deleted file mode 100644 index e78eefa8449..00000000000 --- a/_downloads/4f7fb657018c725c6a364011c59737e7/xcorr_acorr_demo.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================================ -Cross- and Auto-Correlation Demo -================================ - -Example use of cross-correlation (`~.Axes.xcorr`) and auto-correlation -(`~.Axes.acorr`) plots. -""" -import matplotlib.pyplot as plt -import numpy as np - - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x, y = np.random.randn(2, 100) -fig, [ax1, ax2] = plt.subplots(2, 1, sharex=True) -ax1.xcorr(x, y, usevlines=True, maxlags=50, normed=True, lw=2) -ax1.grid(True) - -ax2.acorr(x, usevlines=True, normed=True, maxlags=50, lw=2) -ax2.grid(True) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.acorr -matplotlib.axes.Axes.xcorr -matplotlib.pyplot.acorr -matplotlib.pyplot.xcorr diff --git a/_downloads/4f88b8e6bb583bea53301a24665c5f67/anchored_box03.py b/_downloads/4f88b8e6bb583bea53301a24665c5f67/anchored_box03.py deleted file mode 120000 index ad963887049..00000000000 --- a/_downloads/4f88b8e6bb583bea53301a24665c5f67/anchored_box03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/4f88b8e6bb583bea53301a24665c5f67/anchored_box03.py \ No newline at end of file diff --git a/_downloads/4f92553055979e9e11346c3c25dc1122/demo_parasite_axes2.ipynb b/_downloads/4f92553055979e9e11346c3c25dc1122/demo_parasite_axes2.ipynb deleted file mode 120000 index 58984484642..00000000000 --- a/_downloads/4f92553055979e9e11346c3c25dc1122/demo_parasite_axes2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4f92553055979e9e11346c3c25dc1122/demo_parasite_axes2.ipynb \ No newline at end of file diff --git a/_downloads/4f9a023d017d607b9d8815ba79fa2f67/quiver_demo.ipynb b/_downloads/4f9a023d017d607b9d8815ba79fa2f67/quiver_demo.ipynb deleted file mode 100644 index 4ee736aa544..00000000000 --- a/_downloads/4f9a023d017d607b9d8815ba79fa2f67/quiver_demo.ipynb +++ /dev/null @@ -1,105 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Advanced quiver and quiverkey functions\n\n\nDemonstrates some more advanced options for `~.axes.Axes.quiver`. For a simple\nexample refer to :doc:`/gallery/images_contours_and_fields/quiver_simple_demo`.\n\nNote: The plot autoscaling does not take into account the arrows, so\nthose on the boundaries may reach out of the picture. This is not an easy\nproblem to solve in a perfectly general way. The recommended workaround is to\nmanually set the Axes limits in such a case.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nX, Y = np.meshgrid(np.arange(0, 2 * np.pi, .2), np.arange(0, 2 * np.pi, .2))\nU = np.cos(X)\nV = np.sin(Y)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_title('Arrows scale with plot width, not view')\nQ = ax1.quiver(X, Y, U, V, units='width')\nqk = ax1.quiverkey(Q, 0.9, 0.9, 2, r'$2 \\frac{m}{s}$', labelpos='E',\n coordinates='figure')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_title(\"pivot='mid'; every third arrow; units='inches'\")\nQ = ax2.quiver(X[::3, ::3], Y[::3, ::3], U[::3, ::3], V[::3, ::3],\n pivot='mid', units='inches')\nqk = ax2.quiverkey(Q, 0.9, 0.9, 1, r'$1 \\frac{m}{s}$', labelpos='E',\n coordinates='figure')\nax2.scatter(X[::3, ::3], Y[::3, ::3], color='r', s=5)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 3\n\nfig3, ax3 = plt.subplots()\nax3.set_title(\"pivot='tip'; scales with x view\")\nM = np.hypot(U, V)\nQ = ax3.quiver(X, Y, U, V, M, units='x', pivot='tip', width=0.022,\n scale=1 / 0.15)\nqk = ax3.quiverkey(Q, 0.9, 0.9, 1, r'$1 \\frac{m}{s}$', labelpos='E',\n coordinates='figure')\nax3.scatter(X, Y, color='0.5', s=1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.quiver\nmatplotlib.pyplot.quiver\nmatplotlib.axes.Axes.quiverkey\nmatplotlib.pyplot.quiverkey" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4f9a649482d6de547b21e6d0d07e9334/stix_fonts_demo.ipynb b/_downloads/4f9a649482d6de547b21e6d0d07e9334/stix_fonts_demo.ipynb deleted file mode 120000 index ab7bef95fb0..00000000000 --- a/_downloads/4f9a649482d6de547b21e6d0d07e9334/stix_fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4f9a649482d6de547b21e6d0d07e9334/stix_fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/4f9b1c214de38f7533f23c71a1092433/dynamic_image.py b/_downloads/4f9b1c214de38f7533f23c71a1092433/dynamic_image.py deleted file mode 100644 index d82e62f62af..00000000000 --- a/_downloads/4f9b1c214de38f7533f23c71a1092433/dynamic_image.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -================================================= -Animated image using a precomputed list of images -================================================= - -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - -fig = plt.figure() - - -def f(x, y): - return np.sin(x) + np.cos(y) - -x = np.linspace(0, 2 * np.pi, 120) -y = np.linspace(0, 2 * np.pi, 100).reshape(-1, 1) -# ims is a list of lists, each row is a list of artists to draw in the -# current frame; here we are just animating one artist, the image, in -# each frame -ims = [] -for i in range(60): - x += np.pi / 15. - y += np.pi / 20. - im = plt.imshow(f(x, y), animated=True) - ims.append([im]) - -ani = animation.ArtistAnimation(fig, ims, interval=50, blit=True, - repeat_delay=1000) - -# To save the animation, use e.g. -# -# ani.save("movie.mp4") -# -# or -# -# from matplotlib.animation import FFMpegWriter -# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800) -# ani.save("movie.mp4", writer=writer) - -plt.show() diff --git a/_downloads/4fb977f83cab607bdbcd9d07e7bef2ea/colorbar_only.py b/_downloads/4fb977f83cab607bdbcd9d07e7bef2ea/colorbar_only.py deleted file mode 120000 index 40f7e0b2d69..00000000000 --- a/_downloads/4fb977f83cab607bdbcd9d07e7bef2ea/colorbar_only.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/4fb977f83cab607bdbcd9d07e7bef2ea/colorbar_only.py \ No newline at end of file diff --git a/_downloads/4fc2a70b834f6425ff3af9bac65cfa51/demo_gridspec03.ipynb b/_downloads/4fc2a70b834f6425ff3af9bac65cfa51/demo_gridspec03.ipynb deleted file mode 100644 index bfdb92bbd66..00000000000 --- a/_downloads/4fc2a70b834f6425ff3af9bac65cfa51/demo_gridspec03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# GridSpec demo\n\n\nThis example demonstrates the use of `GridSpec` to generate subplots,\nthe control of the relative sizes of subplots with *width_ratios* and\n*height_ratios*, and the control of the spacing around and between subplots\nusing subplot params (*left*, *right*, *bottom*, *top*, *wspace*, and\n*hspace*).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.gridspec import GridSpec\n\n\ndef annotate_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\n\nfig = plt.figure()\nfig.suptitle(\"Controlling subplot sizes with width_ratios and height_ratios\")\n\ngs = GridSpec(2, 2, width_ratios=[1, 2], height_ratios=[4, 1])\nax1 = fig.add_subplot(gs[0])\nax2 = fig.add_subplot(gs[1])\nax3 = fig.add_subplot(gs[2])\nax4 = fig.add_subplot(gs[3])\n\nannotate_axes(fig)\n\n\nfig = plt.figure()\nfig.suptitle(\"Controlling spacing around and between subplots\")\n\ngs1 = GridSpec(3, 3, left=0.05, right=0.48, wspace=0.05)\nax1 = fig.add_subplot(gs1[:-1, :])\nax2 = fig.add_subplot(gs1[-1, :-1])\nax3 = fig.add_subplot(gs1[-1, -1])\n\ngs2 = GridSpec(3, 3, left=0.55, right=0.98, hspace=0.05)\nax4 = fig.add_subplot(gs2[:, :-1])\nax5 = fig.add_subplot(gs2[:-1, -1])\nax6 = fig.add_subplot(gs2[-1, -1])\n\nannotate_axes(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4fc61185a6bb45a655d1989401d65a8e/inset_locator_demo2.ipynb b/_downloads/4fc61185a6bb45a655d1989401d65a8e/inset_locator_demo2.ipynb deleted file mode 120000 index d8d43ad828a..00000000000 --- a/_downloads/4fc61185a6bb45a655d1989401d65a8e/inset_locator_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4fc61185a6bb45a655d1989401d65a8e/inset_locator_demo2.ipynb \ No newline at end of file diff --git a/_downloads/4fc6435b04c5980e3a868d62f85ba8ab/histogram.ipynb b/_downloads/4fc6435b04c5980e3a868d62f85ba8ab/histogram.ipynb deleted file mode 120000 index f6696e9e172..00000000000 --- a/_downloads/4fc6435b04c5980e3a868d62f85ba8ab/histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/4fc6435b04c5980e3a868d62f85ba8ab/histogram.ipynb \ No newline at end of file diff --git a/_downloads/4fc64c4adf40fca6c0f00c65a4d84e3f/geo_demo.py b/_downloads/4fc64c4adf40fca6c0f00c65a4d84e3f/geo_demo.py deleted file mode 120000 index 9814aa0ef8b..00000000000 --- a/_downloads/4fc64c4adf40fca6c0f00c65a4d84e3f/geo_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4fc64c4adf40fca6c0f00c65a4d84e3f/geo_demo.py \ No newline at end of file diff --git a/_downloads/4fc6ac6e268ec952bb3d2dc16057ee01/trigradient_demo.ipynb b/_downloads/4fc6ac6e268ec952bb3d2dc16057ee01/trigradient_demo.ipynb deleted file mode 120000 index c863474eddd..00000000000 --- a/_downloads/4fc6ac6e268ec952bb3d2dc16057ee01/trigradient_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4fc6ac6e268ec952bb3d2dc16057ee01/trigradient_demo.ipynb \ No newline at end of file diff --git a/_downloads/4fc8dcf9bef24e2e3701323ea0970c91/usage.ipynb b/_downloads/4fc8dcf9bef24e2e3701323ea0970c91/usage.ipynb deleted file mode 100644 index cdecb7e3204..00000000000 --- a/_downloads/4fc8dcf9bef24e2e3701323ea0970c91/usage.ipynb +++ /dev/null @@ -1,151 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n***********\nUsage Guide\n***********\n\nThis tutorial covers some basic usage patterns and best-practices to\nhelp you get started with Matplotlib.\n\n\nGeneral Concepts\n================\n\n:mod:`matplotlib` has an extensive codebase that can be daunting to many\nnew users. However, most of matplotlib can be understood with a fairly\nsimple conceptual framework and knowledge of a few important points.\n\nPlotting requires action on a range of levels, from the most general\n(e.g., 'contour this 2-D array') to the most specific (e.g., 'color\nthis screen pixel red'). The purpose of a plotting package is to assist\nyou in visualizing your data as easily as possible, with all the necessary\ncontrol -- that is, by using relatively high-level commands most of\nthe time, and still have the ability to use the low-level commands when\nneeded.\n\nTherefore, everything in matplotlib is organized in a hierarchy. At the top\nof the hierarchy is the matplotlib \"state-machine environment\" which is\nprovided by the :mod:`matplotlib.pyplot` module. At this level, simple\nfunctions are used to add plot elements (lines, images, text, etc.) to\nthe current axes in the current figure.\n\n

Note

Pyplot's state-machine environment behaves similarly to MATLAB and\n should be most familiar to users with MATLAB experience.

\n\nThe next level down in the hierarchy is the first level of the object-oriented\ninterface, in which pyplot is used only for a few functions such as figure\ncreation, and the user explicitly creates and keeps track of the figure\nand axes objects. At this level, the user uses pyplot to create figures,\nand through those figures, one or more axes objects can be created. These\naxes objects are then used for most plotting actions.\n\nFor even more control -- which is essential for things like embedding\nmatplotlib plots in GUI applications -- the pyplot level may be dropped\ncompletely, leaving a purely object-oriented approach.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 3\nimport matplotlib.pyplot as plt\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nParts of a Figure\n=================\n\n![](../../_static/anatomy.png)\n\n\n\n:class:`~matplotlib.figure.Figure`\n----------------------------------\n\nThe **whole** figure. The figure keeps\ntrack of all the child :class:`~matplotlib.axes.Axes`, a smattering of\n'special' artists (titles, figure legends, etc), and the **canvas**.\n(Don't worry too much about the canvas, it is crucial as it is the\nobject that actually does the drawing to get you your plot, but as the\nuser it is more-or-less invisible to you). A figure can have any\nnumber of :class:`~matplotlib.axes.Axes`, but to be useful should have\nat least one.\n\nThe easiest way to create a new figure is with pyplot:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure() # an empty figure with no axes\nfig.suptitle('No axes on this figure') # Add a title so we know which it is\n\nfig, ax_lst = plt.subplots(2, 2) # a figure with a 2x2 grid of Axes" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":class:`~matplotlib.axes.Axes`\n------------------------------\n\nThis is what you think of as 'a plot', it is the region of the image\nwith the data space. A given figure\ncan contain many Axes, but a given :class:`~matplotlib.axes.Axes`\nobject can only be in one :class:`~matplotlib.figure.Figure`. The\nAxes contains two (or three in the case of 3D)\n:class:`~matplotlib.axis.Axis` objects (be aware of the difference\nbetween **Axes** and **Axis**) which take care of the data limits (the\ndata limits can also be controlled via set via the\n:meth:`~matplotlib.axes.Axes.set_xlim` and\n:meth:`~matplotlib.axes.Axes.set_ylim` :class:`Axes` methods). Each\n:class:`Axes` has a title (set via\n:meth:`~matplotlib.axes.Axes.set_title`), an x-label (set via\n:meth:`~matplotlib.axes.Axes.set_xlabel`), and a y-label set via\n:meth:`~matplotlib.axes.Axes.set_ylabel`).\n\nThe :class:`Axes` class and it's member functions are the primary entry\npoint to working with the OO interface.\n\n:class:`~matplotlib.axis.Axis`\n------------------------------\n\nThese are the number-line-like objects. They take\ncare of setting the graph limits and generating the ticks (the marks\non the axis) and ticklabels (strings labeling the ticks). The\nlocation of the ticks is determined by a\n:class:`~matplotlib.ticker.Locator` object and the ticklabel strings\nare formatted by a :class:`~matplotlib.ticker.Formatter`. The\ncombination of the correct :class:`Locator` and :class:`Formatter` gives\nvery fine control over the tick locations and labels.\n\n:class:`~matplotlib.artist.Artist`\n----------------------------------\n\nBasically everything you can see on the figure is an artist (even the\n:class:`Figure`, :class:`Axes`, and :class:`Axis` objects). This\nincludes :class:`Text` objects, :class:`Line2D` objects,\n:class:`collection` objects, :class:`Patch` objects ... (you get the\nidea). When the figure is rendered, all of the artists are drawn to\nthe **canvas**. Most Artists are tied to an Axes; such an Artist\ncannot be shared by multiple Axes, or moved from one to another.\n\n\nTypes of inputs to plotting functions\n=====================================\n\nAll of plotting functions expect `np.array` or `np.ma.masked_array` as\ninput. Classes that are 'array-like' such as `pandas` data objects\nand `np.matrix` may or may not work as intended. It is best to\nconvert these to `np.array` objects prior to plotting.\n\nFor example, to convert a `pandas.DataFrame` ::\n\n a = pandas.DataFrame(np.random.rand(4,5), columns = list('abcde'))\n a_asarray = a.values\n\nand to convert a `np.matrix` ::\n\n b = np.matrix([[1,2],[3,4]])\n b_asarray = np.asarray(b)\n\n\nMatplotlib, pyplot and pylab: how are they related?\n====================================================\n\nMatplotlib is the whole package and :mod:`matplotlib.pyplot` is a module in\nMatplotlib.\n\nFor functions in the pyplot module, there is always a \"current\" figure and\naxes (which is created automatically on request). For example, in the\nfollowing example, the first call to ``plt.plot`` creates the axes, then\nsubsequent calls to ``plt.plot`` add additional lines on the same axes, and\n``plt.xlabel``, ``plt.ylabel``, ``plt.title`` and ``plt.legend`` set the\naxes labels and title and add a legend.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 2, 100)\n\nplt.plot(x, x, label='linear')\nplt.plot(x, x**2, label='quadratic')\nplt.plot(x, x**3, label='cubic')\n\nplt.xlabel('x label')\nplt.ylabel('y label')\n\nplt.title(\"Simple Plot\")\n\nplt.legend()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":mod:`pylab` is a convenience module that bulk imports\n:mod:`matplotlib.pyplot` (for plotting) and :mod:`numpy`\n(for mathematics and working with arrays) in a single namespace.\npylab is deprecated and its use is strongly discouraged because\nof namespace pollution. Use pyplot instead.\n\nFor non-interactive plotting it is suggested\nto use pyplot to create the figures and then the OO interface for\nplotting.\n\n\nCoding Styles\n==================\n\nWhen viewing this documentation and examples, you will find different\ncoding styles and usage patterns. These styles are perfectly valid\nand have their pros and cons. Just about all of the examples can be\nconverted into another style and achieve the same results.\nThe only caveat is to avoid mixing the coding styles for your own code.\n\n

Note

Developers for matplotlib have to follow a specific style and guidelines.\n See `developers-guide-index`.

\n\nOf the different styles, there are two that are officially supported.\nTherefore, these are the preferred ways to use matplotlib.\n\nFor the pyplot style, the imports at the top of your\nscripts will typically be::\n\n import matplotlib.pyplot as plt\n import numpy as np\n\nThen one calls, for example, np.arange, np.zeros, np.pi, plt.figure,\nplt.plot, plt.show, etc. Use the pyplot interface\nfor creating figures, and then use the object methods for the rest:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 10, 0.2)\ny = np.sin(x)\nfig, ax = plt.subplots()\nax.plot(x, y)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "So, why all the extra typing instead of the MATLAB-style (which relies\non global state and a flat namespace)? For very simple things like\nthis example, the only advantage is academic: the wordier styles are\nmore explicit, more clear as to where things come from and what is\ngoing on. For more complicated applications, this explicitness and\nclarity becomes increasingly valuable, and the richer and more\ncomplete object-oriented interface will likely make the program easier\nto write and maintain.\n\n\nTypically one finds oneself making the same plots over and over\nagain, but with different data sets, which leads to needing to write\nspecialized functions to do the plotting. The recommended function\nsignature is something like:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def my_plotter(ax, data1, data2, param_dict):\n \"\"\"\n A helper function to make a graph\n\n Parameters\n ----------\n ax : Axes\n The axes to draw to\n\n data1 : array\n The x data\n\n data2 : array\n The y data\n\n param_dict : dict\n Dictionary of kwargs to pass to ax.plot\n\n Returns\n -------\n out : list\n list of artists added\n \"\"\"\n out = ax.plot(data1, data2, **param_dict)\n return out\n\n# which you would then use as:\n\ndata1, data2, data3, data4 = np.random.randn(4, 100)\nfig, ax = plt.subplots(1, 1)\nmy_plotter(ax, data1, data2, {'marker': 'x'})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "or if you wanted to have 2 sub-plots:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2)\nmy_plotter(ax1, data1, data2, {'marker': 'x'})\nmy_plotter(ax2, data3, data4, {'marker': 'o'})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Again, for these simple examples this style seems like overkill, however\nonce the graphs get slightly more complex it pays off.\n\n\n\nBackends\n========\n\n\nWhat is a backend?\n------------------\n\nA lot of documentation on the website and in the mailing lists refers\nto the \"backend\" and many new users are confused by this term.\nmatplotlib targets many different use cases and output formats. Some\npeople use matplotlib interactively from the python shell and have\nplotting windows pop up when they type commands. Some people run\n`Jupyter `_ notebooks and draw inline plots for\nquick data analysis. Others embed matplotlib into graphical user\ninterfaces like wxpython or pygtk to build rich applications. Some\npeople use matplotlib in batch scripts to generate postscript images\nfrom numerical simulations, and still others run web application\nservers to dynamically serve up graphs.\n\nTo support all of these use cases, matplotlib can target different\noutputs, and each of these capabilities is called a backend; the\n\"frontend\" is the user facing code, i.e., the plotting code, whereas the\n\"backend\" does all the hard work behind-the-scenes to make the figure.\nThere are two types of backends: user interface backends (for use in\npygtk, wxpython, tkinter, qt4, or macosx; also referred to as\n\"interactive backends\") and hardcopy backends to make image files\n(PNG, SVG, PDF, PS; also referred to as \"non-interactive backends\").\n\nThere are four ways to configure your backend. If they conflict each other,\nthe method mentioned last in the following list will be used, e.g. calling\n:func:`~matplotlib.use()` will override the setting in your ``matplotlibrc``.\n\n\n#. The ``backend`` parameter in your ``matplotlibrc`` file (see\n :doc:`/tutorials/introductory/customizing`)::\n\n backend : WXAgg # use wxpython with antigrain (agg) rendering\n\n#. Setting the :envvar:`MPLBACKEND` environment variable, either for your\n current shell or for a single script. On Unix::\n\n > export MPLBACKEND=module://my_backend\n > python simple_plot.py\n\n > MPLBACKEND=\"module://my_backend\" python simple_plot.py\n\n On Windows, only the former is possible::\n\n > set MPLBACKEND=module://my_backend\n > python simple_plot.py\n\n Setting this environment variable will override the ``backend`` parameter\n in *any* ``matplotlibrc``, even if there is a ``matplotlibrc`` in your\n current working directory. Therefore setting :envvar:`MPLBACKEND`\n globally, e.g. in your ``.bashrc`` or ``.profile``, is discouraged as it\n might lead to counter-intuitive behavior.\n\n#. If your script depends on a specific backend you can use the\n :func:`~matplotlib.use` function::\n\n import matplotlib\n matplotlib.use('PS') # generate postscript output by default\n\n If you use the :func:`~matplotlib.use` function, this must be done before\n importing :mod:`matplotlib.pyplot`. Calling :func:`~matplotlib.use` after\n pyplot has been imported will have no effect. Using\n :func:`~matplotlib.use` will require changes in your code if users want to\n use a different backend. Therefore, you should avoid explicitly calling\n :func:`~matplotlib.use` unless absolutely necessary.\n\n

Note

Backend name specifications are not case-sensitive; e.g., 'GTK3Agg'\n and 'gtk3agg' are equivalent.

\n\nWith a typical installation of matplotlib, such as from a\nbinary installer or a linux distribution package, a good default\nbackend will already be set, allowing both interactive work and\nplotting from scripts, with output to the screen and/or to\na file, so at least initially you will not need to use any of the\nmethods given above.\n\nIf, however, you want to write graphical user interfaces, or a web\napplication server (`howto-webapp`), or need a better\nunderstanding of what is going on, read on. To make things a little\nmore customizable for graphical user interfaces, matplotlib separates\nthe concept of the renderer (the thing that actually does the drawing)\nfrom the canvas (the place where the drawing goes). The canonical\nrenderer for user interfaces is ``Agg`` which uses the `Anti-Grain\nGeometry`_ C++ library to make a raster (pixel) image of the figure.\nAll of the user interfaces except ``macosx`` can be used with\nagg rendering, e.g., ``WXAgg``, ``GTK3Agg``, ``QT4Agg``, ``QT5Agg``,\n``TkAgg``. In addition, some of the user interfaces support other rendering\nengines. For example, with GTK+ 3, you can also select Cairo rendering\n(backend ``GTK3Cairo``).\n\nFor the rendering engines, one can also distinguish between `vector\n`_ or `raster\n`_ renderers. Vector\ngraphics languages issue drawing commands like \"draw a line from this\npoint to this point\" and hence are scale free, and raster backends\ngenerate a pixel representation of the line whose accuracy depends on a\nDPI setting.\n\nHere is a summary of the matplotlib renderers (there is an eponymous\nbackend for each; these are *non-interactive backends*, capable of\nwriting to a file):\n\n============= ============ ================================================\nRenderer Filetypes Description\n============= ============ ================================================\n:term:`AGG` :term:`png` :term:`raster graphics` -- high quality images\n using the `Anti-Grain Geometry`_ engine\nPS :term:`ps` :term:`vector graphics` -- Postscript_ output\n :term:`eps`\nPDF :term:`pdf` :term:`vector graphics` --\n `Portable Document Format`_\nSVG :term:`svg` :term:`vector graphics` --\n `Scalable Vector Graphics`_\n:term:`Cairo` :term:`png` :term:`raster graphics` and\n :term:`ps` :term:`vector graphics` -- using the\n :term:`pdf` `Cairo graphics`_ library\n :term:`svg`\n============= ============ ================================================\n\nAnd here are the user interfaces and renderer combinations supported;\nthese are *interactive backends*, capable of displaying to the screen\nand of using appropriate renderers from the table above to write to\na file:\n\n========= ================================================================\nBackend Description\n========= ================================================================\nQt5Agg Agg rendering in a :term:`Qt5` canvas (requires PyQt5_). This\n backend can be activated in IPython with ``%matplotlib qt5``.\nipympl Agg rendering embedded in a Jupyter widget. (requires ipympl).\n This backend can be enabled in a Jupyter notebook with\n ``%matplotlib ipympl``.\nGTK3Agg Agg rendering to a :term:`GTK` 3.x canvas (requires PyGObject_,\n and pycairo_ or cairocffi_). This backend can be activated in\n IPython with ``%matplotlib gtk3``.\nmacosx Agg rendering into a Cocoa canvas in OSX. This backend can be\n activated in IPython with ``%matplotlib osx``.\nTkAgg Agg rendering to a :term:`Tk` canvas (requires TkInter_). This\n backend can be activated in IPython with ``%matplotlib tk``.\nnbAgg Embed an interactive figure in a Jupyter classic notebook. This\n backend can be enabled in Jupyter notebooks via\n ``%matplotlib notebook``.\nWebAgg On ``show()`` will start a tornado server with an interactive\n figure.\nGTK3Cairo Cairo rendering to a :term:`GTK` 3.x canvas (requires PyGObject_,\n and pycairo_ or cairocffi_).\nQt4Agg Agg rendering to a :term:`Qt4` canvas (requires PyQt4_ or\n ``pyside``). This backend can be activated in IPython with\n ``%matplotlib qt4``.\nWXAgg Agg rendering to a :term:`wxWidgets` canvas (requires wxPython_ 4).\n This backend can be activated in IPython with ``%matplotlib wx``.\n========= ================================================================\n\n\nipympl\n------\n\nThe Jupyter widget ecosystem is moving too fast to support directly in\nMatplotlib. To install ipympl\n\n.. code-block:: bash\n\n pip install ipympl\n jupyter nbextension enable --py --sys-prefix ipympl\n\nor\n\n.. code-block:: bash\n\n conda install ipympl -c conda-forge\n\nSee `jupyter-matplotlib `__\nfor more details.\n\nGTK and Cairo\n-------------\n\n`GTK3` backends (*both* `GTK3Agg` and `GTK3Cairo`) depend on Cairo\n(pycairo>=1.11.0 or cairocffi).\n\nHow do I select PyQt4 or PySide?\n--------------------------------\n\nThe `QT_API` environment variable can be set to either `pyqt` or `pyside`\nto use `PyQt4` or `PySide`, respectively.\n\nSince the default value for the bindings to be used is `PyQt4`,\n:mod:`matplotlib` first tries to import it, if the import fails, it tries to\nimport `PySide`.\n\n\nWhat is interactive mode?\n===================================\n\nUse of an interactive backend (see `what-is-a-backend`)\npermits--but does not by itself require or ensure--plotting\nto the screen. Whether and when plotting to the screen occurs,\nand whether a script or shell session continues after a plot\nis drawn on the screen, depends on the functions and methods\nthat are called, and on a state variable that determines whether\nmatplotlib is in \"interactive mode\". The default Boolean value is set\nby the :file:`matplotlibrc` file, and may be customized like any other\nconfiguration parameter (see :doc:`/tutorials/introductory/customizing`). It\nmay also be set via :func:`matplotlib.interactive`, and its\nvalue may be queried via :func:`matplotlib.is_interactive`. Turning\ninteractive mode on and off in the middle of a stream of plotting\ncommands, whether in a script or in a shell, is rarely needed\nand potentially confusing, so in the following we will assume all\nplotting is done with interactive mode either on or off.\n\n

Note

Major changes related to interactivity, and in particular the\n role and behavior of :func:`~matplotlib.pyplot.show`, were made in the\n transition to matplotlib version 1.0, and bugs were fixed in\n 1.0.1. Here we describe the version 1.0.1 behavior for the\n primary interactive backends, with the partial exception of\n *macosx*.

\n\nInteractive mode may also be turned on via :func:`matplotlib.pyplot.ion`,\nand turned off via :func:`matplotlib.pyplot.ioff`.\n\n

Note

Interactive mode works with suitable backends in ipython and in\n the ordinary python shell, but it does *not* work in the IDLE IDE.\n If the default backend does not support interactivity, an interactive\n backend can be explicitly activated using any of the methods discussed in `What is a backend?`_.

\n\n\nInteractive example\n--------------------\n\nFrom an ordinary python prompt, or after invoking ipython with no options,\ntry this::\n\n import matplotlib.pyplot as plt\n plt.ion()\n plt.plot([1.6, 2.7])\n\nAssuming you are running version 1.0.1 or higher, and you have\nan interactive backend installed and selected by default, you should\nsee a plot, and your terminal prompt should also be active; you\ncan type additional commands such as::\n\n plt.title(\"interactive test\")\n plt.xlabel(\"index\")\n\nand you will see the plot being updated after each line. Since version 1.5,\nmodifying the plot by other means *should* also automatically\nupdate the display on most backends. Get a reference to the :class:`~matplotlib.axes.Axes` instance,\nand call a method of that instance::\n\n ax = plt.gca()\n ax.plot([3.1, 2.2])\n\nIf you are using certain backends (like `macosx`), or an older version\nof matplotlib, you may not see the new line added to the plot immediately.\nIn this case, you need to explicitly call :func:`~matplotlib.pyplot.draw`\nin order to update the plot::\n\n plt.draw()\n\n\nNon-interactive example\n-----------------------\n\nStart a fresh session as in the previous example, but now\nturn interactive mode off::\n\n import matplotlib.pyplot as plt\n plt.ioff()\n plt.plot([1.6, 2.7])\n\nNothing happened--or at least nothing has shown up on the\nscreen (unless you are using *macosx* backend, which is\nanomalous). To make the plot appear, you need to do this::\n\n plt.show()\n\nNow you see the plot, but your terminal command line is\nunresponsive; the :func:`show()` command *blocks* the input\nof additional commands until you manually kill the plot\nwindow.\n\nWhat good is this--being forced to use a blocking function?\nSuppose you need a script that plots the contents of a file\nto the screen. You want to look at that plot, and then end\nthe script. Without some blocking command such as show(), the\nscript would flash up the plot and then end immediately,\nleaving nothing on the screen.\n\nIn addition, non-interactive mode delays all drawing until\nshow() is called; this is more efficient than redrawing\nthe plot each time a line in the script adds a new feature.\n\nPrior to version 1.0, show() generally could not be called\nmore than once in a single script (although sometimes one\ncould get away with it); for version 1.0.1 and above, this\nrestriction is lifted, so one can write a script like this::\n\n import numpy as np\n import matplotlib.pyplot as plt\n\n plt.ioff()\n for i in range(3):\n plt.plot(np.random.rand(10))\n plt.show()\n\nwhich makes three plots, one at a time. I.e. the second plot will show up,\nonce the first plot is closed.\n\nSummary\n-------\n\nIn interactive mode, pyplot functions automatically draw\nto the screen.\n\nWhen plotting interactively, if using\nobject method calls in addition to pyplot functions, then\ncall :func:`~matplotlib.pyplot.draw` whenever you want to\nrefresh the plot.\n\nUse non-interactive mode in scripts in which you want to\ngenerate one or more figures and display them before ending\nor generating a new set of figures. In that case, use\n:func:`~matplotlib.pyplot.show` to display the figure(s) and\nto block execution until you have manually destroyed them.\n\n\nPerformance\n===========\n\nWhether exploring data in interactive mode or programmatically\nsaving lots of plots, rendering performance can be a painful\nbottleneck in your pipeline. Matplotlib provides a couple\nways to greatly reduce rendering time at the cost of a slight\nchange (to a settable tolerance) in your plot's appearance.\nThe methods available to reduce rendering time depend on the\ntype of plot that is being created.\n\nLine segment simplification\n---------------------------\n\nFor plots that have line segments (e.g. typical line plots,\noutlines of polygons, etc.), rendering performance can be\ncontrolled by the ``path.simplify`` and\n``path.simplify_threshold`` parameters in your\n``matplotlibrc`` file (see\n:doc:`/tutorials/introductory/customizing` for\nmore information about the ``matplotlibrc`` file).\nThe ``path.simplify`` parameter is a boolean indicating whether\nor not line segments are simplified at all. The\n``path.simplify_threshold`` parameter controls how much line\nsegments are simplified; higher thresholds result in quicker\nrendering.\n\nThe following script will first display the data without any\nsimplification, and then display the same data with simplification.\nTry interacting with both of them::\n\n import numpy as np\n import matplotlib.pyplot as plt\n import matplotlib as mpl\n\n # Setup, and create the data to plot\n y = np.random.rand(100000)\n y[50000:] *= 2\n y[np.logspace(1, np.log10(50000), 400).astype(int)] = -1\n mpl.rcParams['path.simplify'] = True\n\n mpl.rcParams['path.simplify_threshold'] = 0.0\n plt.plot(y)\n plt.show()\n\n mpl.rcParams['path.simplify_threshold'] = 1.0\n plt.plot(y)\n plt.show()\n\nMatplotlib currently defaults to a conservative simplification\nthreshold of ``1/9``. If you want to change your default settings\nto use a different value, you can change your ``matplotlibrc``\nfile. Alternatively, you could create a new style for\ninteractive plotting (with maximal simplification) and another\nstyle for publication quality plotting (with minimal\nsimplification) and activate them as necessary. See\n:doc:`/tutorials/introductory/customizing` for\ninstructions on how to perform these actions.\n\nThe simplification works by iteratively merging line segments\ninto a single vector until the next line segment's perpendicular\ndistance to the vector (measured in display-coordinate space)\nis greater than the ``path.simplify_threshold`` parameter.\n\n

Note

Changes related to how line segments are simplified were made\n in version 2.1. Rendering time will still be improved by these\n parameters prior to 2.1, but rendering time for some kinds of\n data will be vastly improved in versions 2.1 and greater.

\n\nMarker simplification\n---------------------\n\nMarkers can also be simplified, albeit less robustly than\nline segments. Marker simplification is only available\nto :class:`~matplotlib.lines.Line2D` objects (through the\n``markevery`` property). Wherever\n:class:`~matplotlib.lines.Line2D` construction parameter\nare passed through, such as\n:func:`matplotlib.pyplot.plot` and\n:meth:`matplotlib.axes.Axes.plot`, the ``markevery``\nparameter can be used::\n\n plt.plot(x, y, markevery=10)\n\nThe markevery argument allows for naive subsampling, or an\nattempt at evenly spaced (along the *x* axis) sampling. See the\n:doc:`/gallery/lines_bars_and_markers/markevery_demo`\nfor more information.\n\nSplitting lines into smaller chunks\n-----------------------------------\n\nIf you are using the Agg backend (see `what-is-a-backend`),\nthen you can make use of the ``agg.path.chunksize`` rc parameter.\nThis allows you to specify a chunk size, and any lines with\ngreater than that many vertices will be split into multiple\nlines, each of which have no more than ``agg.path.chunksize``\nmany vertices. (Unless ``agg.path.chunksize`` is zero, in\nwhich case there is no chunking.) For some kind of data,\nchunking the line up into reasonable sizes can greatly\ndecrease rendering time.\n\nThe following script will first display the data without any\nchunk size restriction, and then display the same data with\na chunk size of 10,000. The difference can best be seen when\nthe figures are large, try maximizing the GUI and then\ninteracting with them::\n\n import numpy as np\n import matplotlib.pyplot as plt\n import matplotlib as mpl\n mpl.rcParams['path.simplify_threshold'] = 1.0\n\n # Setup, and create the data to plot\n y = np.random.rand(100000)\n y[50000:] *= 2\n y[np.logspace(1,np.log10(50000), 400).astype(int)] = -1\n mpl.rcParams['path.simplify'] = True\n\n mpl.rcParams['agg.path.chunksize'] = 0\n plt.plot(y)\n plt.show()\n\n mpl.rcParams['agg.path.chunksize'] = 10000\n plt.plot(y)\n plt.show()\n\nLegends\n-------\n\nThe default legend behavior for axes attempts to find the location\nthat covers the fewest data points (`loc='best'`). This can be a\nvery expensive computation if there are lots of data points. In\nthis case, you may want to provide a specific location.\n\nUsing the *fast* style\n----------------------\n\nThe *fast* style can be used to automatically set\nsimplification and chunking parameters to reasonable\nsettings to speed up plotting large amounts of data.\nIt can be used simply by running::\n\n import matplotlib.style as mplstyle\n mplstyle.use('fast')\n\nIt is very light weight, so it plays nicely with other\nstyles, just make sure the fast style is applied last\nso that other styles do not overwrite the settings::\n\n mplstyle.use(['dark_background', 'ggplot', 'fast'])\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/4fd27d09be361675ad372edd59f498d0/voxels_torus.py b/_downloads/4fd27d09be361675ad372edd59f498d0/voxels_torus.py deleted file mode 120000 index 24767cd7d3e..00000000000 --- a/_downloads/4fd27d09be361675ad372edd59f498d0/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4fd27d09be361675ad372edd59f498d0/voxels_torus.py \ No newline at end of file diff --git a/_downloads/4fd27ec9256cccf10cebc738511434e7/agg_buffer.py b/_downloads/4fd27ec9256cccf10cebc738511434e7/agg_buffer.py deleted file mode 120000 index 805a786c6a0..00000000000 --- a/_downloads/4fd27ec9256cccf10cebc738511434e7/agg_buffer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/4fd27ec9256cccf10cebc738511434e7/agg_buffer.py \ No newline at end of file diff --git a/_downloads/4fd2a20f1fdd728d98afdb6368bf9de7/images.py b/_downloads/4fd2a20f1fdd728d98afdb6368bf9de7/images.py deleted file mode 100644 index 423bf22da30..00000000000 --- a/_downloads/4fd2a20f1fdd728d98afdb6368bf9de7/images.py +++ /dev/null @@ -1,274 +0,0 @@ -""" -============== -Image tutorial -============== - -A short tutorial on plotting images with Matplotlib. - -.. _imaging_startup: - -Startup commands -=================== - -First, let's start IPython. It is a most excellent enhancement to the -standard Python prompt, and it ties in especially well with -Matplotlib. Start IPython either at a shell, or the IPython Notebook now. - -With IPython started, we now need to connect to a GUI event loop. This -tells IPython where (and how) to display plots. To connect to a GUI -loop, execute the **%matplotlib** magic at your IPython prompt. There's more -detail on exactly what this does at `IPython's documentation on GUI -event loops -`_. - -If you're using IPython Notebook, the same commands are available, but -people commonly use a specific argument to the %matplotlib magic: - -.. sourcecode:: ipython - - In [1]: %matplotlib inline - -This turns on inline plotting, where plot graphics will appear in your -notebook. This has important implications for interactivity. For inline plotting, commands in -cells below the cell that outputs a plot will not affect the plot. For example, -changing the color map is not possible from cells below the cell that creates a plot. -However, for other backends, such as Qt5, that open a separate window, -cells below those that create the plot will change the plot - it is a -live object in memory. - -This tutorial will use matplotlib's imperative-style plotting -interface, pyplot. This interface maintains global state, and is very -useful for quickly and easily experimenting with various plot -settings. The alternative is the object-oriented interface, which is also -very powerful, and generally more suitable for large application -development. If you'd like to learn about the object-oriented -interface, a great place to start is our :doc:`Usage guide -`. For now, let's get on -with the imperative-style approach: -""" - -import matplotlib.pyplot as plt -import matplotlib.image as mpimg - -############################################################################### -# .. _importing_data: -# -# Importing image data into Numpy arrays -# =============================================== -# -# Loading image data is supported by the `Pillow -# `_ library. Natively, Matplotlib -# only supports PNG images. The commands shown below fall back on Pillow if -# the native read fails. -# -# The image used in this example is a PNG file, but keep that Pillow -# requirement in mind for your own data. -# -# Here's the image we're going to play with: -# -# .. image:: ../../_static/stinkbug.png -# -# It's a 24-bit RGB PNG image (8 bits for each of R, G, B). Depending -# on where you get your data, the other kinds of image that you'll most -# likely encounter are RGBA images, which allow for transparency, or -# single-channel grayscale (luminosity) images. You can right click on -# it and choose "Save image as" to download it to your computer for the -# rest of this tutorial. -# -# And here we go... - -img = mpimg.imread('../../doc/_static/stinkbug.png') -print(img) - -############################################################################### -# Note the dtype there - float32. Matplotlib has rescaled the 8 bit -# data from each channel to floating point data between 0.0 and 1.0. As -# a side note, the only datatype that Pillow can work with is uint8. -# Matplotlib plotting can handle float32 and uint8, but image -# reading/writing for any format other than PNG is limited to uint8 -# data. Why 8 bits? Most displays can only render 8 bits per channel -# worth of color gradation. Why can they only render 8 bits/channel? -# Because that's about all the human eye can see. More here (from a -# photography standpoint): `Luminous Landscape bit depth tutorial -# `_. -# -# Each inner list represents a pixel. Here, with an RGB image, there -# are 3 values. Since it's a black and white image, R, G, and B are all -# similar. An RGBA (where A is alpha, or transparency), has 4 values -# per inner list, and a simple luminance image just has one value (and -# is thus only a 2-D array, not a 3-D array). For RGB and RGBA images, -# matplotlib supports float32 and uint8 data types. For grayscale, -# matplotlib supports only float32. If your array data does not meet -# one of these descriptions, you need to rescale it. -# -# .. _plotting_data: -# -# Plotting numpy arrays as images -# =================================== -# -# So, you have your data in a numpy array (either by importing it, or by -# generating it). Let's render it. In Matplotlib, this is performed -# using the :func:`~matplotlib.pyplot.imshow` function. Here we'll grab -# the plot object. This object gives you an easy way to manipulate the -# plot from the prompt. - -imgplot = plt.imshow(img) - -############################################################################### -# You can also plot any numpy array. -# -# .. _Pseudocolor: -# -# Applying pseudocolor schemes to image plots -# ------------------------------------------------- -# -# Pseudocolor can be a useful tool for enhancing contrast and -# visualizing your data more easily. This is especially useful when -# making presentations of your data using projectors - their contrast is -# typically quite poor. -# -# Pseudocolor is only relevant to single-channel, grayscale, luminosity -# images. We currently have an RGB image. Since R, G, and B are all -# similar (see for yourself above or in your data), we can just pick one -# channel of our data: - -lum_img = img[:, :, 0] - -# This is array slicing. You can read more in the `Numpy tutorial -# `_. - -plt.imshow(lum_img) - -############################################################################### -# Now, with a luminosity (2D, no color) image, the default colormap (aka lookup table, -# LUT), is applied. The default is called viridis. There are plenty of -# others to choose from. - -plt.imshow(lum_img, cmap="hot") - -############################################################################### -# Note that you can also change colormaps on existing plot objects using the -# :meth:`~matplotlib.image.Image.set_cmap` method: - -imgplot = plt.imshow(lum_img) -imgplot.set_cmap('nipy_spectral') - -############################################################################### -# -# .. note:: -# -# However, remember that in the IPython notebook with the inline backend, -# you can't make changes to plots that have already been rendered. If you -# create imgplot here in one cell, you cannot call set_cmap() on it in a later -# cell and expect the earlier plot to change. Make sure that you enter these -# commands together in one cell. plt commands will not change plots from earlier -# cells. -# -# There are many other colormap schemes available. See the `list and -# images of the colormaps -# <../colors/colormaps.html>`_. -# -# .. _`Color Bars`: -# -# Color scale reference -# ------------------------ -# -# It's helpful to have an idea of what value a color represents. We can -# do that by adding color bars. - -imgplot = plt.imshow(lum_img) -plt.colorbar() - -############################################################################### -# This adds a colorbar to your existing figure. This won't -# automatically change if you change you switch to a different -# colormap - you have to re-create your plot, and add in the colorbar -# again. -# -# .. _`Data ranges`: -# -# Examining a specific data range -# --------------------------------- -# -# Sometimes you want to enhance the contrast in your image, or expand -# the contrast in a particular region while sacrificing the detail in -# colors that don't vary much, or don't matter. A good tool to find -# interesting regions is the histogram. To create a histogram of our -# image data, we use the :func:`~matplotlib.pyplot.hist` function. - -plt.hist(lum_img.ravel(), bins=256, range=(0.0, 1.0), fc='k', ec='k') - -############################################################################### -# Most often, the "interesting" part of the image is around the peak, -# and you can get extra contrast by clipping the regions above and/or -# below the peak. In our histogram, it looks like there's not much -# useful information in the high end (not many white things in the -# image). Let's adjust the upper limit, so that we effectively "zoom in -# on" part of the histogram. We do this by passing the clim argument to -# imshow. You could also do this by calling the -# :meth:`~matplotlib.image.Image.set_clim` method of the image plot -# object, but make sure that you do so in the same cell as your plot -# command when working with the IPython Notebook - it will not change -# plots from earlier cells. -# -# You can specify the clim in the call to ``plot``. - -imgplot = plt.imshow(lum_img, clim=(0.0, 0.7)) - -############################################################################### -# You can also specify the clim using the returned object -fig = plt.figure() -a = fig.add_subplot(1, 2, 1) -imgplot = plt.imshow(lum_img) -a.set_title('Before') -plt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal') -a = fig.add_subplot(1, 2, 2) -imgplot = plt.imshow(lum_img) -imgplot.set_clim(0.0, 0.7) -a.set_title('After') -plt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal') - -############################################################################### -# .. _Interpolation: -# -# Array Interpolation schemes -# --------------------------- -# -# Interpolation calculates what the color or value of a pixel "should" -# be, according to different mathematical schemes. One common place -# that this happens is when you resize an image. The number of pixels -# change, but you want the same information. Since pixels are discrete, -# there's missing space. Interpolation is how you fill that space. -# This is why your images sometimes come out looking pixelated when you -# blow them up. The effect is more pronounced when the difference -# between the original image and the expanded image is greater. Let's -# take our image and shrink it. We're effectively discarding pixels, -# only keeping a select few. Now when we plot it, that data gets blown -# up to the size on your screen. The old pixels aren't there anymore, -# and the computer has to draw in pixels to fill that space. -# -# We'll use the Pillow library that we used to load the image also to resize -# the image. - -from PIL import Image - -img = Image.open('../../doc/_static/stinkbug.png') -img.thumbnail((64, 64), Image.ANTIALIAS) # resizes image in-place -imgplot = plt.imshow(img) - -############################################################################### -# Here we have the default interpolation, bilinear, since we did not -# give :func:`~matplotlib.pyplot.imshow` any interpolation argument. -# -# Let's try some others. Here's "nearest", which does no interpolation. - -imgplot = plt.imshow(img, interpolation="nearest") - -############################################################################### -# and bicubic: - -imgplot = plt.imshow(img, interpolation="bicubic") - -############################################################################### -# Bicubic interpolation is often used when blowing up photos - people -# tend to prefer blurry over pixelated. diff --git a/_downloads/4fd30804fd0f15f35ef02683261ba65d/patch_collection.ipynb b/_downloads/4fd30804fd0f15f35ef02683261ba65d/patch_collection.ipynb deleted file mode 120000 index e9561ccce80..00000000000 --- a/_downloads/4fd30804fd0f15f35ef02683261ba65d/patch_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4fd30804fd0f15f35ef02683261ba65d/patch_collection.ipynb \ No newline at end of file diff --git a/_downloads/4fd99b289342387fdca235658c5d31a2/surface3d_3.ipynb b/_downloads/4fd99b289342387fdca235658c5d31a2/surface3d_3.ipynb deleted file mode 120000 index 304b6a84acd..00000000000 --- a/_downloads/4fd99b289342387fdca235658c5d31a2/surface3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/4fd99b289342387fdca235658c5d31a2/surface3d_3.ipynb \ No newline at end of file diff --git a/_downloads/4fe4be973e85752a53c9544548ec4f8b/spy_demos.py b/_downloads/4fe4be973e85752a53c9544548ec4f8b/spy_demos.py deleted file mode 120000 index da73320e545..00000000000 --- a/_downloads/4fe4be973e85752a53c9544548ec4f8b/spy_demos.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/4fe4be973e85752a53c9544548ec4f8b/spy_demos.py \ No newline at end of file diff --git a/_downloads/4fed56541d8aaac19a204b47aae197d1/gridspec.py b/_downloads/4fed56541d8aaac19a204b47aae197d1/gridspec.py deleted file mode 120000 index 898ad7c9295..00000000000 --- a/_downloads/4fed56541d8aaac19a204b47aae197d1/gridspec.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.0/_downloads/4fed56541d8aaac19a204b47aae197d1/gridspec.py \ No newline at end of file diff --git a/_downloads/4ff53f8e7bf202db3989e61e9a22d1d7/scalarformatter.ipynb b/_downloads/4ff53f8e7bf202db3989e61e9a22d1d7/scalarformatter.ipynb deleted file mode 120000 index f5c7507a63b..00000000000 --- a/_downloads/4ff53f8e7bf202db3989e61e9a22d1d7/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/4ff53f8e7bf202db3989e61e9a22d1d7/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/5002b06808adf75bb6c4ed255cae8d1f/scatter_demo2.ipynb b/_downloads/5002b06808adf75bb6c4ed255cae8d1f/scatter_demo2.ipynb deleted file mode 100644 index d1ad1de971f..00000000000 --- a/_downloads/5002b06808adf75bb6c4ed255cae8d1f/scatter_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Demo2\n\n\nDemo of scatter plot with varying marker colors and sizes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\n\n# Load a numpy record array from yahoo csv data with fields date, open, close,\n# volume, adj_close from the mpl-data/example directory. The record array\n# stores the date as an np.datetime64 with a day unit ('D') in the date column.\nwith cbook.get_sample_data('goog.npz') as datafile:\n price_data = np.load(datafile)['price_data'].view(np.recarray)\nprice_data = price_data[-250:] # get the most recent 250 trading days\n\ndelta1 = np.diff(price_data.adj_close) / price_data.adj_close[:-1]\n\n# Marker size in units of points^2\nvolume = (15 * price_data.volume[:-2] / price_data.volume[0])**2\nclose = 0.003 * price_data.close[:-2] / 0.003 * price_data.open[:-2]\n\nfig, ax = plt.subplots()\nax.scatter(delta1[:-1], delta1[1:], c=close, s=volume, alpha=0.5)\n\nax.set_xlabel(r'$\\Delta_i$', fontsize=15)\nax.set_ylabel(r'$\\Delta_{i+1}$', fontsize=15)\nax.set_title('Volume and percent change')\n\nax.grid(True)\nfig.tight_layout()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5004d5dd8e644445c2be4f840df541a4/tripcolor_demo.py b/_downloads/5004d5dd8e644445c2be4f840df541a4/tripcolor_demo.py deleted file mode 120000 index 34562eb976f..00000000000 --- a/_downloads/5004d5dd8e644445c2be4f840df541a4/tripcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5004d5dd8e644445c2be4f840df541a4/tripcolor_demo.py \ No newline at end of file diff --git a/_downloads/500ac15d0fe6cdffc7c00722d343dc0d/annotate_simple_coord02.py b/_downloads/500ac15d0fe6cdffc7c00722d343dc0d/annotate_simple_coord02.py deleted file mode 120000 index cce12490104..00000000000 --- a/_downloads/500ac15d0fe6cdffc7c00722d343dc0d/annotate_simple_coord02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/500ac15d0fe6cdffc7c00722d343dc0d/annotate_simple_coord02.py \ No newline at end of file diff --git a/_downloads/50116bc7b2a676a60bb813f76423ee97/cursor_demo_sgskip.ipynb b/_downloads/50116bc7b2a676a60bb813f76423ee97/cursor_demo_sgskip.ipynb deleted file mode 120000 index 9d078f0cb3f..00000000000 --- a/_downloads/50116bc7b2a676a60bb813f76423ee97/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/50116bc7b2a676a60bb813f76423ee97/cursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/5011eac3736634631a2f228d980558bf/demo_gridspec06.py b/_downloads/5011eac3736634631a2f228d980558bf/demo_gridspec06.py deleted file mode 120000 index 3280073454b..00000000000 --- a/_downloads/5011eac3736634631a2f228d980558bf/demo_gridspec06.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5011eac3736634631a2f228d980558bf/demo_gridspec06.py \ No newline at end of file diff --git a/_downloads/502f617cd37e5ce817451021d867d9a0/figlegend_demo.ipynb b/_downloads/502f617cd37e5ce817451021d867d9a0/figlegend_demo.ipynb deleted file mode 100644 index e12158f45b8..00000000000 --- a/_downloads/502f617cd37e5ce817451021d867d9a0/figlegend_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Figure legend demo\n\n\nInstead of plotting a legend on each axis, a legend for all the artists on all\nthe sub-axes of a figure can be plotted instead.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, axs = plt.subplots(1, 2)\n\nx = np.arange(0.0, 2.0, 0.02)\ny1 = np.sin(2 * np.pi * x)\ny2 = np.exp(-x)\nl1, = axs[0].plot(x, y1)\nl2, = axs[0].plot(x, y2, marker='o')\n\ny3 = np.sin(4 * np.pi * x)\ny4 = np.exp(-2 * x)\nl3, = axs[1].plot(x, y3, color='tab:green')\nl4, = axs[1].plot(x, y4, color='tab:red', marker='^')\n\nfig.legend((l1, l2), ('Line 1', 'Line 2'), 'upper left')\nfig.legend((l3, l4), ('Line 3', 'Line 4'), 'upper right')\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5032d7dfae2434eae9ba871497e4959f/mathtext_examples.ipynb b/_downloads/5032d7dfae2434eae9ba871497e4959f/mathtext_examples.ipynb deleted file mode 100644 index 74bd0d1bc63..00000000000 --- a/_downloads/5032d7dfae2434eae9ba871497e4959f/mathtext_examples.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Mathtext Examples\n\n\nSelected features of Matplotlib's math rendering engine.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport subprocess\nimport sys\nimport re\n\n# Selection of features following \"Writing mathematical expressions\" tutorial\nmathtext_titles = {\n 0: \"Header demo\",\n 1: \"Subscripts and superscripts\",\n 2: \"Fractions, binomials and stacked numbers\",\n 3: \"Radicals\",\n 4: \"Fonts\",\n 5: \"Accents\",\n 6: \"Greek, Hebrew\",\n 7: \"Delimiters, functions and Symbols\"}\nn_lines = len(mathtext_titles)\n\n# Randomly picked examples\nmathext_demos = {\n 0: r\"$W^{3\\beta}_{\\delta_1 \\rho_1 \\sigma_2} = \"\n r\"U^{3\\beta}_{\\delta_1 \\rho_1} + \\frac{1}{8 \\pi 2} \"\n r\"\\int^{\\alpha_2}_{\\alpha_2} d \\alpha^\\prime_2 \\left[\\frac{ \"\n r\"U^{2\\beta}_{\\delta_1 \\rho_1} - \\alpha^\\prime_2U^{1\\beta}_\"\n r\"{\\rho_1 \\sigma_2} }{U^{0\\beta}_{\\rho_1 \\sigma_2}}\\right]$\",\n\n 1: r\"$\\alpha_i > \\beta_i,\\ \"\n r\"\\alpha_{i+1}^j = {\\rm sin}(2\\pi f_j t_i) e^{-5 t_i/\\tau},\\ \"\n r\"\\ldots$\",\n\n 2: r\"$\\frac{3}{4},\\ \\binom{3}{4},\\ \\genfrac{}{}{0}{}{3}{4},\\ \"\n r\"\\left(\\frac{5 - \\frac{1}{x}}{4}\\right),\\ \\ldots$\",\n\n 3: r\"$\\sqrt{2},\\ \\sqrt[3]{x},\\ \\ldots$\",\n\n 4: r\"$\\mathrm{Roman}\\ , \\ \\mathit{Italic}\\ , \\ \\mathtt{Typewriter} \\ \"\n r\"\\mathrm{or}\\ \\mathcal{CALLIGRAPHY}$\",\n\n 5: r\"$\\acute a,\\ \\bar a,\\ \\breve a,\\ \\dot a,\\ \\ddot a, \\ \\grave a, \\ \"\n r\"\\hat a,\\ \\tilde a,\\ \\vec a,\\ \\widehat{xyz},\\ \\widetilde{xyz},\\ \"\n r\"\\ldots$\",\n\n 6: r\"$\\alpha,\\ \\beta,\\ \\chi,\\ \\delta,\\ \\lambda,\\ \\mu,\\ \"\n r\"\\Delta,\\ \\Gamma,\\ \\Omega,\\ \\Phi,\\ \\Pi,\\ \\Upsilon,\\ \\nabla,\\ \"\n r\"\\aleph,\\ \\beth,\\ \\daleth,\\ \\gimel,\\ \\ldots$\",\n\n 7: r\"$\\coprod,\\ \\int,\\ \\oint,\\ \\prod,\\ \\sum,\\ \"\n r\"\\log,\\ \\sin,\\ \\approx,\\ \\oplus,\\ \\star,\\ \\varpropto,\\ \"\n r\"\\infty,\\ \\partial,\\ \\Re,\\ \\leftrightsquigarrow, \\ \\ldots$\"}\n\n\ndef doall():\n # Colors used in mpl online documentation.\n mpl_blue_rvb = (191. / 255., 209. / 256., 212. / 255.)\n mpl_orange_rvb = (202. / 255., 121. / 256., 0. / 255.)\n mpl_grey_rvb = (51. / 255., 51. / 255., 51. / 255.)\n\n # Creating figure and axis.\n plt.figure(figsize=(6, 7))\n plt.axes([0.01, 0.01, 0.98, 0.90], facecolor=\"white\", frameon=True)\n plt.gca().set_xlim(0., 1.)\n plt.gca().set_ylim(0., 1.)\n plt.gca().set_title(\"Matplotlib's math rendering engine\",\n color=mpl_grey_rvb, fontsize=14, weight='bold')\n plt.gca().set_xticklabels(\"\", visible=False)\n plt.gca().set_yticklabels(\"\", visible=False)\n\n # Gap between lines in axes coords\n line_axesfrac = (1. / (n_lines))\n\n # Plotting header demonstration formula\n full_demo = mathext_demos[0]\n plt.annotate(full_demo,\n xy=(0.5, 1. - 0.59 * line_axesfrac),\n color=mpl_orange_rvb, ha='center', fontsize=20)\n\n # Plotting features demonstration formulae\n for i_line in range(1, n_lines):\n baseline = 1 - (i_line) * line_axesfrac\n baseline_next = baseline - line_axesfrac\n title = mathtext_titles[i_line] + \":\"\n fill_color = ['white', mpl_blue_rvb][i_line % 2]\n plt.fill_between([0., 1.], [baseline, baseline],\n [baseline_next, baseline_next],\n color=fill_color, alpha=0.5)\n plt.annotate(title,\n xy=(0.07, baseline - 0.3 * line_axesfrac),\n color=mpl_grey_rvb, weight='bold')\n demo = mathext_demos[i_line]\n plt.annotate(demo,\n xy=(0.05, baseline - 0.75 * line_axesfrac),\n color=mpl_grey_rvb, fontsize=16)\n\n for i in range(n_lines):\n s = mathext_demos[i]\n print(i, s)\n plt.show()\n\n\nif '--latex' in sys.argv:\n # Run: python mathtext_examples.py --latex\n # Need amsmath and amssymb packages.\n fd = open(\"mathtext_examples.ltx\", \"w\")\n fd.write(\"\\\\documentclass{article}\\n\")\n fd.write(\"\\\\usepackage{amsmath, amssymb}\\n\")\n fd.write(\"\\\\begin{document}\\n\")\n fd.write(\"\\\\begin{enumerate}\\n\")\n\n for i in range(n_lines):\n s = mathext_demos[i]\n s = re.sub(r\"(?`_ support -produces very nice, antialiased fonts, that look good even at small -raster sizes. Matplotlib includes its own -:mod:`matplotlib.font_manager` (thanks to Paul Barrett), which -implements a cross platform, `W3C ` -compliant font finding algorithm. - -The user has a great deal of control over text properties (font size, font -weight, text location and color, etc.) with sensible defaults set in -the :doc:`rc file `. -And significantly, for those interested in mathematical -or scientific figures, Matplotlib implements a large number of TeX -math symbols and commands, supporting :doc:`mathematical expressions -` anywhere in your figure. - - -Basic text commands -=================== - -The following commands are used to create text in the pyplot -interface and the object-oriented API: - -=================== =================== ====================================== -`.pyplot` API OO API description -=================== =================== ====================================== -`~.pyplot.text` `~.Axes.text` Add text at an arbitrary location of - the `~matplotlib.axes.Axes`. - -`~.pyplot.annotate` `~.Axes.annotate` Add an annotation, with an optional - arrow, at an arbitrary location of the - `~matplotlib.axes.Axes`. - -`~.pyplot.xlabel` `~.Axes.set_xlabel` Add a label to the - `~matplotlib.axes.Axes`\\'s x-axis. - -`~.pyplot.ylabel` `~.Axes.set_ylabel` Add a label to the - `~matplotlib.axes.Axes`\\'s y-axis. - -`~.pyplot.title` `~.Axes.set_title` Add a title to the - `~matplotlib.axes.Axes`. - -`~.pyplot.figtext` `~.Figure.text` Add text at an arbitrary location of - the `.Figure`. - -`~.pyplot.suptitle` `~.Figure.suptitle` Add a title to the `.Figure`. -=================== =================== ====================================== - -All of these functions create and return a `.Text` instance, which can be -configured with a variety of font and other properties. The example below -shows all of these commands in action, and more detail is provided in the -sections that follow. -""" - -import matplotlib -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold') - -ax = fig.add_subplot(111) -fig.subplots_adjust(top=0.85) -ax.set_title('axes title') - -ax.set_xlabel('xlabel') -ax.set_ylabel('ylabel') - -ax.text(3, 8, 'boxed italics text in data coords', style='italic', - bbox={'facecolor': 'red', 'alpha': 0.5, 'pad': 10}) - -ax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15) - -ax.text(3, 2, 'unicode: Institut für Festkörperphysik') - -ax.text(0.95, 0.01, 'colored text in axes coords', - verticalalignment='bottom', horizontalalignment='right', - transform=ax.transAxes, - color='green', fontsize=15) - - -ax.plot([2], [1], 'o') -ax.annotate('annotate', xy=(2, 1), xytext=(3, 4), - arrowprops=dict(facecolor='black', shrink=0.05)) - -ax.axis([0, 10, 0, 10]) - -plt.show() - -############################################################################### -# Labels for x- and y-axis -# ======================== -# -# Specifying the labels for the x- and y-axis is straightforward, via the -# `~matplotlib.axes.Axes.set_xlabel` and `~matplotlib.axes.Axes.set_ylabel` -# methods. - -import matplotlib.pyplot as plt -import numpy as np - -x1 = np.linspace(0.0, 5.0, 100) -y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1) -ax.set_xlabel('time [s]') -ax.set_ylabel('Damped oscillation [V]') - -plt.show() - -############################################################################### -# The x- and y-labels are automatically placed so that they clear the x- and -# y-ticklabels. Compare the plot below with that above, and note the y-label -# is to the left of the one above. - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1*10000) -ax.set_xlabel('time [s]') -ax.set_ylabel('Damped oscillation [V]') - -plt.show() - -############################################################################### -# If you want to move the labels, you can specify the *labelpad* keyword -# argument, where the value is points (1/72", the same unit used to specify -# fontsizes). - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1*10000) -ax.set_xlabel('time [s]') -ax.set_ylabel('Damped oscillation [V]', labelpad=18) - -plt.show() - -############################################################################### -# Or, the labels accept all the `.Text` keyword arguments, including -# *position*, via which we can manually specify the label positions. Here we -# put the xlabel to the far left of the axis. Note, that the y-coordinate of -# this position has no effect - to adjust the y-position we need to use the -# *labelpad* kwarg. - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1) -ax.set_xlabel('time [s]', position=(0., 1e6), - horizontalalignment='left') -ax.set_ylabel('Damped oscillation [V]') - -plt.show() - -############################################################################## -# All the labelling in this tutorial can be changed by manipulating the -# `matplotlib.font_manager.FontProperties` method, or by named kwargs to -# `~matplotlib.axes.Axes.set_xlabel` - -from matplotlib.font_manager import FontProperties - -font = FontProperties() -font.set_family('serif') -font.set_name('Times New Roman') -font.set_style('italic') - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1) -ax.set_xlabel('time [s]', fontsize='large', fontweight='bold') -ax.set_ylabel('Damped oscillation [V]', fontproperties=font) - -plt.show() - -############################################################################## -# Finally, we can use native TeX rendering in all text objects and have -# multiple lines: - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.2, left=0.2) -ax.plot(x1, np.cumsum(y1**2)) -ax.set_xlabel('time [s] \n This was a long experiment') -ax.set_ylabel(r'$\int\ Y^2\ dt\ \ [V^2 s]$') -plt.show() - - -############################################################################## -# Titles -# ====== -# -# Subplot titles are set in much the same way as labels, but there is -# the *loc* keyword arguments that can change the position and justification -# from the default value of ``loc=center``. - -fig, axs = plt.subplots(3, 1, figsize=(5, 6), tight_layout=True) -locs = ['center', 'left', 'right'] -for ax, loc in zip(axs, locs): - ax.plot(x1, y1) - ax.set_title('Title with loc at '+loc, loc=loc) -plt.show() - -############################################################################## -# Vertical spacing for titles is controlled via :rc:`axes.titlepad`, which -# defaults to 5 points. Setting to a different value moves the title. - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(top=0.8) -ax.plot(x1, y1) -ax.set_title('Vertically offset title', pad=30) -plt.show() - - -############################################################################## -# Ticks and ticklabels -# ==================== -# -# Placing ticks and ticklabels is a very tricky aspect of making a figure. -# Matplotlib does the best it can automatically, but it also offers a very -# flexible framework for determining the choices for tick locations, and -# how they are labelled. -# -# Terminology -# ~~~~~~~~~~~ -# -# *Axes* have an `matplotlib.axis` object for the ``ax.xaxis`` -# and ``ax.yaxis`` that -# contain the information about how the labels in the axis are laid out. -# -# The axis API is explained in detail in the documentation to -# `~matplotlib.axis`. -# -# An Axis object has major and minor ticks. The Axis has a -# `matplotlib.xaxis.set_major_locator` and -# `matplotlib.xaxis.set_minor_locator` methods that use the data being plotted -# to determine -# the location of major and minor ticks. There are also -# `matplotlib.xaxis.set_major_formatter` and -# `matplotlib.xaxis.set_minor_formatters` methods that format the tick labels. -# -# Simple ticks -# ~~~~~~~~~~~~ -# -# It often is convenient to simply define the -# tick values, and sometimes the tick labels, overriding the default -# locators and formatters. This is discouraged because it breaks itneractive -# navigation of the plot. It also can reset the axis limits: note that -# the second plot has the ticks we asked for, including ones that are -# well outside the automatic view limits. - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -axs[1].xaxis.set_ticks(np.arange(0., 8.1, 2.)) -plt.show() - -############################################################################# -# We can of course fix this after the fact, but it does highlight a -# weakness of hard-coding the ticks. This example also changes the format -# of the ticks: - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -ticks = np.arange(0., 8.1, 2.) -# list comprehension to get all tick labels... -tickla = ['%1.2f' % tick for tick in ticks] -axs[1].xaxis.set_ticks(ticks) -axs[1].xaxis.set_ticklabels(tickla) -axs[1].set_xlim(axs[0].get_xlim()) -plt.show() - -############################################################################# -# Tick Locators and Formatters -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# Instead of making a list of all the tickalbels, we could have -# used a `matplotlib.ticker.FormatStrFormatter` and passed it to the -# ``ax.xaxis`` - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -ticks = np.arange(0., 8.1, 2.) -# list comprehension to get all tick labels... -formatter = matplotlib.ticker.StrMethodFormatter('{x:1.1f}') -axs[1].xaxis.set_ticks(ticks) -axs[1].xaxis.set_major_formatter(formatter) -axs[1].set_xlim(axs[0].get_xlim()) -plt.show() - -############################################################################# -# And of course we could have used a non-default locator to set the -# tick locations. Note we still pass in the tick values, but the -# x-limit fix used above is *not* needed. - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -formatter = matplotlib.ticker.FormatStrFormatter('%1.1f') -locator = matplotlib.ticker.FixedLocator(ticks) -axs[1].xaxis.set_major_locator(locator) -axs[1].xaxis.set_major_formatter(formatter) -plt.show() - -############################################################################# -# The default formatter is the `matplotlib.ticker.MaxNLocator` called as -# ``ticker.MaxNLocator(self, nbins='auto', steps=[1, 2, 2.5, 5, 10])`` -# The *steps* keyword contains a list of multiples that can be used for -# tick values. i.e. in this case, 2, 4, 6 would be acceptable ticks, -# as would 20, 40, 60 or 0.2, 0.4, 0.6. However, 3, 6, 9 would not be -# acceptable because 3 doesn't appear in the list of steps. -# -# ``nbins=auto`` uses an algorithm to determine how many ticks will -# be acceptable based on how long the axis is. The fontsize of the -# ticklabel is taken into account, but the length of the tick string -# is not (because its not yet known.) In the bottom row, the -# ticklabels are quite large, so we set ``nbins=4`` to make the -# labels fit in the right-hand plot. - -fig, axs = plt.subplots(2, 2, figsize=(8, 5), tight_layout=True) -for n, ax in enumerate(axs.flat): - ax.plot(x1*10., y1) - -formatter = matplotlib.ticker.FormatStrFormatter('%1.1f') -locator = matplotlib.ticker.MaxNLocator(nbins='auto', steps=[1, 4, 10]) -axs[0, 1].xaxis.set_major_locator(locator) -axs[0, 1].xaxis.set_major_formatter(formatter) - -formatter = matplotlib.ticker.FormatStrFormatter('%1.5f') -locator = matplotlib.ticker.AutoLocator() -axs[1, 0].xaxis.set_major_formatter(formatter) -axs[1, 0].xaxis.set_major_locator(locator) - -formatter = matplotlib.ticker.FormatStrFormatter('%1.5f') -locator = matplotlib.ticker.MaxNLocator(nbins=4) -axs[1, 1].xaxis.set_major_formatter(formatter) -axs[1, 1].xaxis.set_major_locator(locator) - -plt.show() - -############################################################################## -# Finally, we can specify functions for the formatter using -# `matplotlib.ticker.FuncFormatter`. - - -def formatoddticks(x, pos): - """Format odd tick positions - """ - if x % 2: - return '%1.2f' % x - else: - return '' - -fig, ax = plt.subplots(figsize=(5, 3), tight_layout=True) -ax.plot(x1, y1) -formatter = matplotlib.ticker.FuncFormatter(formatoddticks) -locator = matplotlib.ticker.MaxNLocator(nbins=6) -ax.xaxis.set_major_formatter(formatter) -ax.xaxis.set_major_locator(locator) - -plt.show() - -############################################################################## -# Dateticks -# ~~~~~~~~~ -# -# Matplotlib can accept `datetime.datetime` and `numpy.datetime64` -# objects as plotting arguments. Dates and times require special -# formatting, which can often benefit from manual intervention. In -# order to help, dates have special Locators and Formatters, -# defined in the `matplotlib.dates` module. -# -# A simple example is as follows. Note how we have to rotate the -# tick labels so that they don't over-run each other. -import datetime - -fig, ax = plt.subplots(figsize=(5, 3), tight_layout=True) -base = datetime.datetime(2017, 1, 1, 0, 0, 1) -time = [base + datetime.timedelta(days=x) for x in range(len(y1))] - -ax.plot(time, y1) -ax.tick_params(axis='x', rotation=70) -plt.show() - - -############################################################################## -# We can pass a format -# to `matplotlib.dates.DateFormatter`. Also note that the 29th and the -# next month are very close together. We can fix this by using the -# `dates.DayLocator` class, which allows us to specify a list of days of the -# month to use. Similar formatters are listed in the `matplotlib.dates` module. - -import matplotlib.dates as mdates - -locator = mdates.DayLocator(bymonthday=[1, 15]) -formatter = mdates.DateFormatter('%b %d') - -fig, ax = plt.subplots(figsize=(5, 3), tight_layout=True) -ax.xaxis.set_major_locator(locator) -ax.xaxis.set_major_formatter(formatter) -ax.plot(time, y1) -ax.tick_params(axis='x', rotation=70) -plt.show() - -############################################################################## -# Legends and Annotations -# ======================= -# -# - Legends: :doc:`/tutorials/intermediate/legend_guide` -# - Annotations: :doc:`/tutorials/text/annotations` -# diff --git a/_downloads/50d708ac7f256c074a0e37c90d3a5fab/set_and_get.py b/_downloads/50d708ac7f256c074a0e37c90d3a5fab/set_and_get.py deleted file mode 120000 index 191d3a3fb49..00000000000 --- a/_downloads/50d708ac7f256c074a0e37c90d3a5fab/set_and_get.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/50d708ac7f256c074a0e37c90d3a5fab/set_and_get.py \ No newline at end of file diff --git a/_downloads/50dd3852a14ab188632e088232eeb7fc/pythonic_matplotlib.ipynb b/_downloads/50dd3852a14ab188632e088232eeb7fc/pythonic_matplotlib.ipynb deleted file mode 120000 index d2d4f4fd041..00000000000 --- a/_downloads/50dd3852a14ab188632e088232eeb7fc/pythonic_matplotlib.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/50dd3852a14ab188632e088232eeb7fc/pythonic_matplotlib.ipynb \ No newline at end of file diff --git a/_downloads/50deac9553f13dd90cabbad438a93db4/hist3d.ipynb b/_downloads/50deac9553f13dd90cabbad438a93db4/hist3d.ipynb deleted file mode 120000 index cc370fcbcb9..00000000000 --- a/_downloads/50deac9553f13dd90cabbad438a93db4/hist3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/50deac9553f13dd90cabbad438a93db4/hist3d.ipynb \ No newline at end of file diff --git a/_downloads/50df53c520f7a6bc68cc70898d2376f4/connect_simple01.py b/_downloads/50df53c520f7a6bc68cc70898d2376f4/connect_simple01.py deleted file mode 100644 index 7aea4d71718..00000000000 --- a/_downloads/50df53c520f7a6bc68cc70898d2376f4/connect_simple01.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -================ -Connect Simple01 -================ - -A `ConnectionPatch` can be used to draw a line (possibly with arrow head) -between points defined in different coordinate systems and/or axes. -""" -from matplotlib.patches import ConnectionPatch -import matplotlib.pyplot as plt - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) - -# Draw a simple arrow between two points in axes coordinates -# within a single axes. -xyA = (0.2, 0.2) -xyB = (0.8, 0.8) -coordsA = "data" -coordsB = "data" -con = ConnectionPatch(xyA, xyB, coordsA, coordsB, - arrowstyle="-|>", shrinkA=5, shrinkB=5, - mutation_scale=20, fc="w") -ax1.plot([xyA[0], xyB[0]], [xyA[1], xyB[1]], "o") -ax1.add_artist(con) - -# Draw an arrow between the same point in data coordinates, -# but in different axes. -xy = (0.3, 0.2) -coordsA = "data" -coordsB = "data" -con = ConnectionPatch(xyA=xy, xyB=xy, coordsA=coordsA, coordsB=coordsB, - axesA=ax2, axesB=ax1, - arrowstyle="->", shrinkB=5) -ax2.add_artist(con) - -# Draw a line between the different points, defined in different coordinate -# systems. -xyA = (0.6, 1.0) # in axes coordinates -xyB = (0.0, 0.2) # x in axes coordinates, y in data coordinates -coordsA = "axes fraction" -coordsB = ax2.get_yaxis_transform() -con = ConnectionPatch(xyA=xyA, xyB=xyB, coordsA=coordsA, coordsB=coordsB, - arrowstyle="-") -ax2.add_artist(con) - -ax1.set_xlim(0, 1) -ax1.set_ylim(0, 1) -ax2.set_xlim(0, .5) -ax2.set_ylim(0, .5) - -plt.show() diff --git a/_downloads/50e1a29c2577de49b578ec4b9cfecf4e/barb_demo.ipynb b/_downloads/50e1a29c2577de49b578ec4b9cfecf4e/barb_demo.ipynb deleted file mode 120000 index 8f220b4905b..00000000000 --- a/_downloads/50e1a29c2577de49b578ec4b9cfecf4e/barb_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/50e1a29c2577de49b578ec4b9cfecf4e/barb_demo.ipynb \ No newline at end of file diff --git a/_downloads/50e9144a2b59bbd992a1019a156f02e3/gridspec_nested.py b/_downloads/50e9144a2b59bbd992a1019a156f02e3/gridspec_nested.py deleted file mode 100644 index 75fa34f7b0b..00000000000 --- a/_downloads/50e9144a2b59bbd992a1019a156f02e3/gridspec_nested.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================ -Nested Gridspecs -================ - -GridSpecs can be nested, so that a subplot from a parent GridSpec can -set the position for a nested grid of subplots. - -""" -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - - -def format_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - - -# gridspec inside gridspec -f = plt.figure() - -gs0 = gridspec.GridSpec(1, 2, figure=f) - -gs00 = gridspec.GridSpecFromSubplotSpec(3, 3, subplot_spec=gs0[0]) - -ax1 = f.add_subplot(gs00[:-1, :]) -ax2 = f.add_subplot(gs00[-1, :-1]) -ax3 = f.add_subplot(gs00[-1, -1]) - -# the following syntax does the same as the GridSpecFromSubplotSpec call above: -gs01 = gs0[1].subgridspec(3, 3) - -ax4 = f.add_subplot(gs01[:, :-1]) -ax5 = f.add_subplot(gs01[:-1, -1]) -ax6 = f.add_subplot(gs01[-1, -1]) - -plt.suptitle("GridSpec Inside GridSpec") -format_axes(f) - -plt.show() diff --git a/_downloads/50ebbb8a676599f84ab33e447f10241d/unicode_minus.py b/_downloads/50ebbb8a676599f84ab33e447f10241d/unicode_minus.py deleted file mode 120000 index 0ee8ffb248f..00000000000 --- a/_downloads/50ebbb8a676599f84ab33e447f10241d/unicode_minus.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/50ebbb8a676599f84ab33e447f10241d/unicode_minus.py \ No newline at end of file diff --git a/_downloads/50fdb514b743eb886b5e302a57d412c7/dfrac_demo.py b/_downloads/50fdb514b743eb886b5e302a57d412c7/dfrac_demo.py deleted file mode 120000 index dedf6621303..00000000000 --- a/_downloads/50fdb514b743eb886b5e302a57d412c7/dfrac_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/50fdb514b743eb886b5e302a57d412c7/dfrac_demo.py \ No newline at end of file diff --git a/_downloads/50fec28fd820caad21f4d8019e38f97c/demo_fixed_size_axes.ipynb b/_downloads/50fec28fd820caad21f4d8019e38f97c/demo_fixed_size_axes.ipynb deleted file mode 100644 index aa2bff22478..00000000000 --- a/_downloads/50fec28fd820caad21f4d8019e38f97c/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Fixed Size Axes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1 import Divider, Size\nfrom mpl_toolkits.axes_grid1.mpl_axes import Axes\n\n\ndef demo_fixed_size_axes():\n fig = plt.figure(figsize=(6, 6))\n\n # The first items are for padding and the second items are for the axes.\n # sizes are in inch.\n h = [Size.Fixed(1.0), Size.Fixed(4.5)]\n v = [Size.Fixed(0.7), Size.Fixed(5.)]\n\n divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False)\n # the width and height of the rectangle is ignored.\n\n ax = Axes(fig, divider.get_position())\n ax.set_axes_locator(divider.new_locator(nx=1, ny=1))\n\n fig.add_axes(ax)\n\n ax.plot([1, 2, 3])\n\n\ndef demo_fixed_pad_axes():\n fig = plt.figure(figsize=(6, 6))\n\n # The first & third items are for padding and the second items are for the\n # axes. Sizes are in inches.\n h = [Size.Fixed(1.0), Size.Scaled(1.), Size.Fixed(.2)]\n v = [Size.Fixed(0.7), Size.Scaled(1.), Size.Fixed(.5)]\n\n divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False)\n # the width and height of the rectangle is ignored.\n\n ax = Axes(fig, divider.get_position())\n ax.set_axes_locator(divider.new_locator(nx=1, ny=1))\n\n fig.add_axes(ax)\n\n ax.plot([1, 2, 3])\n\n\nif __name__ == \"__main__\":\n demo_fixed_size_axes()\n demo_fixed_pad_axes()\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5104418a897cf134722a3f17cbe1e278/embedding_in_wx3_sgskip.ipynb b/_downloads/5104418a897cf134722a3f17cbe1e278/embedding_in_wx3_sgskip.ipynb deleted file mode 120000 index 46f64405187..00000000000 --- a/_downloads/5104418a897cf134722a3f17cbe1e278/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5104418a897cf134722a3f17cbe1e278/embedding_in_wx3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/511003eb7192f6c9c452c2da97f8ad53/xcorr_acorr_demo.py b/_downloads/511003eb7192f6c9c452c2da97f8ad53/xcorr_acorr_demo.py deleted file mode 120000 index d97f3308f83..00000000000 --- a/_downloads/511003eb7192f6c9c452c2da97f8ad53/xcorr_acorr_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/511003eb7192f6c9c452c2da97f8ad53/xcorr_acorr_demo.py \ No newline at end of file diff --git a/_downloads/511369cfc64f093f23b214bad57143b2/contourf_log.py b/_downloads/511369cfc64f093f23b214bad57143b2/contourf_log.py deleted file mode 120000 index f5b0fdb42ce..00000000000 --- a/_downloads/511369cfc64f093f23b214bad57143b2/contourf_log.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/511369cfc64f093f23b214bad57143b2/contourf_log.py \ No newline at end of file diff --git a/_downloads/5115a52340e5b276fb5ed1ea6cf7e813/date_demo_convert.ipynb b/_downloads/5115a52340e5b276fb5ed1ea6cf7e813/date_demo_convert.ipynb deleted file mode 120000 index 1fd3d64c085..00000000000 --- a/_downloads/5115a52340e5b276fb5ed1ea6cf7e813/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5115a52340e5b276fb5ed1ea6cf7e813/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/511669ded70fbe956f75580d24e713ab/align_labels_demo.py b/_downloads/511669ded70fbe956f75580d24e713ab/align_labels_demo.py deleted file mode 100644 index bd574156a50..00000000000 --- a/_downloads/511669ded70fbe956f75580d24e713ab/align_labels_demo.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -=============== -Aligning Labels -=============== - -Aligning xlabel and ylabel using `Figure.align_xlabels` and -`Figure.align_ylabels` - -`Figure.align_labels` wraps these two functions. - -Note that the xlabel "XLabel1 1" would normally be much closer to the -x-axis, and "YLabel1 0" would be much closer to the y-axis of their -respective axes. -""" -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.gridspec as gridspec - -fig = plt.figure(tight_layout=True) -gs = gridspec.GridSpec(2, 2) - -ax = fig.add_subplot(gs[0, :]) -ax.plot(np.arange(0, 1e6, 1000)) -ax.set_ylabel('YLabel0') -ax.set_xlabel('XLabel0') - -for i in range(2): - ax = fig.add_subplot(gs[1, i]) - ax.plot(np.arange(1., 0., -0.1) * 2000., np.arange(1., 0., -0.1)) - ax.set_ylabel('YLabel1 %d' % i) - ax.set_xlabel('XLabel1 %d' % i) - if i == 0: - for tick in ax.get_xticklabels(): - tick.set_rotation(55) -fig.align_labels() # same as fig.align_xlabels(); fig.align_ylabels() - -plt.show() diff --git a/_downloads/511effc0f84de5c24229eceb355f345e/simple_axis_direction03.py b/_downloads/511effc0f84de5c24229eceb355f345e/simple_axis_direction03.py deleted file mode 100644 index 5185d144ab1..00000000000 --- a/_downloads/511effc0f84de5c24229eceb355f345e/simple_axis_direction03.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -======================= -Simple Axis Direction03 -======================= - -""" - -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_subplot(ax) - - ax.set_yticks([0.2, 0.8]) - ax.set_xticks([0.2, 0.8]) - - return ax - - -fig = plt.figure(figsize=(5, 2)) -fig.subplots_adjust(wspace=0.4, bottom=0.3) - -ax1 = setup_axes(fig, "121") -ax1.set_xlabel("X-label") -ax1.set_ylabel("Y-label") - -ax1.axis[:].invert_ticklabel_direction() - -ax2 = setup_axes(fig, "122") -ax2.set_xlabel("X-label") -ax2.set_ylabel("Y-label") - -ax2.axis[:].major_ticks.set_tick_out(True) - -plt.show() diff --git a/_downloads/5124c09fec54bb131a70cf0a207ebc82/custom_boxstyle01.ipynb b/_downloads/5124c09fec54bb131a70cf0a207ebc82/custom_boxstyle01.ipynb deleted file mode 120000 index 64f0a29bbe3..00000000000 --- a/_downloads/5124c09fec54bb131a70cf0a207ebc82/custom_boxstyle01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5124c09fec54bb131a70cf0a207ebc82/custom_boxstyle01.ipynb \ No newline at end of file diff --git a/_downloads/51324f1584cb1bdb8b66cca32c290203/legend_demo.py b/_downloads/51324f1584cb1bdb8b66cca32c290203/legend_demo.py deleted file mode 120000 index e79b84e277d..00000000000 --- a/_downloads/51324f1584cb1bdb8b66cca32c290203/legend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/51324f1584cb1bdb8b66cca32c290203/legend_demo.py \ No newline at end of file diff --git a/_downloads/5136e416bb571e9890771c8b7b94585c/tick-locators.py b/_downloads/5136e416bb571e9890771c8b7b94585c/tick-locators.py deleted file mode 120000 index 42529a5438d..00000000000 --- a/_downloads/5136e416bb571e9890771c8b7b94585c/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5136e416bb571e9890771c8b7b94585c/tick-locators.py \ No newline at end of file diff --git a/_downloads/513f3034f0c1a4cac1c140d95199ea8f/span_regions.ipynb b/_downloads/513f3034f0c1a4cac1c140d95199ea8f/span_regions.ipynb deleted file mode 100644 index e853c58ea80..00000000000 --- a/_downloads/513f3034f0c1a4cac1c140d95199ea8f/span_regions.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using span_where\n\n\nIllustrate some helper functions for shading regions where a logical\nmask is True.\n\nSee :meth:`matplotlib.collections.BrokenBarHCollection.span_where`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.collections as collections\n\n\nt = np.arange(0.0, 2, 0.01)\ns1 = np.sin(2*np.pi*t)\ns2 = 1.2*np.sin(4*np.pi*t)\n\n\nfig, ax = plt.subplots()\nax.set_title('using span_where')\nax.plot(t, s1, color='black')\nax.axhline(0, color='black', lw=2)\n\ncollection = collections.BrokenBarHCollection.span_where(\n t, ymin=0, ymax=1, where=s1 > 0, facecolor='green', alpha=0.5)\nax.add_collection(collection)\n\ncollection = collections.BrokenBarHCollection.span_where(\n t, ymin=-1, ymax=0, where=s1 < 0, facecolor='red', alpha=0.5)\nax.add_collection(collection)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.collections.BrokenBarHCollection\nmatplotlib.collections.BrokenBarHCollection.span_where\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.axhline" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5155170736628db6c412524f3fd2a434/axis_equal_demo.ipynb b/_downloads/5155170736628db6c412524f3fd2a434/axis_equal_demo.ipynb deleted file mode 120000 index ea9bedb2575..00000000000 --- a/_downloads/5155170736628db6c412524f3fd2a434/axis_equal_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5155170736628db6c412524f3fd2a434/axis_equal_demo.ipynb \ No newline at end of file diff --git a/_downloads/515a0be87f9820f0023eec18e0d48944/triinterp_demo.py b/_downloads/515a0be87f9820f0023eec18e0d48944/triinterp_demo.py deleted file mode 120000 index f14c1a47dc3..00000000000 --- a/_downloads/515a0be87f9820f0023eec18e0d48944/triinterp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/515a0be87f9820f0023eec18e0d48944/triinterp_demo.py \ No newline at end of file diff --git a/_downloads/515ca31f7ef4afe5d94dcd2971d63b50/voxels_numpy_logo.ipynb b/_downloads/515ca31f7ef4afe5d94dcd2971d63b50/voxels_numpy_logo.ipynb deleted file mode 100644 index f7c199d2f59..00000000000 --- a/_downloads/515ca31f7ef4afe5d94dcd2971d63b50/voxels_numpy_logo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D voxel plot of the numpy logo\n\n\nDemonstrates using ``ax.voxels`` with uneven coordinates\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef explode(data):\n size = np.array(data.shape)*2\n data_e = np.zeros(size - 1, dtype=data.dtype)\n data_e[::2, ::2, ::2] = data\n return data_e\n\n# build up the numpy logo\nn_voxels = np.zeros((4, 3, 4), dtype=bool)\nn_voxels[0, 0, :] = True\nn_voxels[-1, 0, :] = True\nn_voxels[1, 0, 2] = True\nn_voxels[2, 0, 1] = True\nfacecolors = np.where(n_voxels, '#FFD65DC0', '#7A88CCC0')\nedgecolors = np.where(n_voxels, '#BFAB6E', '#7D84A6')\nfilled = np.ones(n_voxels.shape)\n\n# upscale the above voxel image, leaving gaps\nfilled_2 = explode(filled)\nfcolors_2 = explode(facecolors)\necolors_2 = explode(edgecolors)\n\n# Shrink the gaps\nx, y, z = np.indices(np.array(filled_2.shape) + 1).astype(float) // 2\nx[0::2, :, :] += 0.05\ny[:, 0::2, :] += 0.05\nz[:, :, 0::2] += 0.05\nx[1::2, :, :] += 0.95\ny[:, 1::2, :] += 0.95\nz[:, :, 1::2] += 0.95\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(x, y, z, filled_2, facecolors=fcolors_2, edgecolors=ecolors_2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/515d3050c92b37baf0ab9a6a1511df37/multicursor.py b/_downloads/515d3050c92b37baf0ab9a6a1511df37/multicursor.py deleted file mode 120000 index 53784c1f646..00000000000 --- a/_downloads/515d3050c92b37baf0ab9a6a1511df37/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/515d3050c92b37baf0ab9a6a1511df37/multicursor.py \ No newline at end of file diff --git a/_downloads/515e1d4d6dee087e46592e2efaea5ba7/demo_fixed_size_axes.py b/_downloads/515e1d4d6dee087e46592e2efaea5ba7/demo_fixed_size_axes.py deleted file mode 100644 index bd989aa8646..00000000000 --- a/_downloads/515e1d4d6dee087e46592e2efaea5ba7/demo_fixed_size_axes.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -==================== -Demo Fixed Size Axes -==================== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1 import Divider, Size -from mpl_toolkits.axes_grid1.mpl_axes import Axes - - -def demo_fixed_size_axes(): - fig = plt.figure(figsize=(6, 6)) - - # The first items are for padding and the second items are for the axes. - # sizes are in inch. - h = [Size.Fixed(1.0), Size.Fixed(4.5)] - v = [Size.Fixed(0.7), Size.Fixed(5.)] - - divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False) - # the width and height of the rectangle is ignored. - - ax = Axes(fig, divider.get_position()) - ax.set_axes_locator(divider.new_locator(nx=1, ny=1)) - - fig.add_axes(ax) - - ax.plot([1, 2, 3]) - - -def demo_fixed_pad_axes(): - fig = plt.figure(figsize=(6, 6)) - - # The first & third items are for padding and the second items are for the - # axes. Sizes are in inches. - h = [Size.Fixed(1.0), Size.Scaled(1.), Size.Fixed(.2)] - v = [Size.Fixed(0.7), Size.Scaled(1.), Size.Fixed(.5)] - - divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False) - # the width and height of the rectangle is ignored. - - ax = Axes(fig, divider.get_position()) - ax.set_axes_locator(divider.new_locator(nx=1, ny=1)) - - fig.add_axes(ax) - - ax.plot([1, 2, 3]) - - -if __name__ == "__main__": - demo_fixed_size_axes() - demo_fixed_pad_axes() - - plt.show() diff --git a/_downloads/51609807c6e9fbb5ab633846b6645b2e/bmh.py b/_downloads/51609807c6e9fbb5ab633846b6645b2e/bmh.py deleted file mode 120000 index b7abb93da96..00000000000 --- a/_downloads/51609807c6e9fbb5ab633846b6645b2e/bmh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/51609807c6e9fbb5ab633846b6645b2e/bmh.py \ No newline at end of file diff --git a/_downloads/516165f066fa348059647f82ecde12d3/masked_demo.ipynb b/_downloads/516165f066fa348059647f82ecde12d3/masked_demo.ipynb deleted file mode 100644 index 81bcda36a1e..00000000000 --- a/_downloads/516165f066fa348059647f82ecde12d3/masked_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Masked Demo\n\n\nPlot lines with points masked out.\n\nThis would typically be used with gappy data, to\nbreak the line at the data gaps.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(0, 2*np.pi, 0.02)\ny = np.sin(x)\ny1 = np.sin(2*x)\ny2 = np.sin(3*x)\nym1 = np.ma.masked_where(y1 > 0.5, y1)\nym2 = np.ma.masked_where(y2 < -0.5, y2)\n\nlines = plt.plot(x, y, x, ym1, x, ym2, 'o')\nplt.setp(lines[0], linewidth=4)\nplt.setp(lines[1], linewidth=2)\nplt.setp(lines[2], markersize=10)\n\nplt.legend(('No mask', 'Masked if > 0.5', 'Masked if < -0.5'),\n loc='upper right')\nplt.title('Masked line demo')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/516175827ac25a514ed99ea997605c08/boxplot_color.py b/_downloads/516175827ac25a514ed99ea997605c08/boxplot_color.py deleted file mode 120000 index 18ff2097199..00000000000 --- a/_downloads/516175827ac25a514ed99ea997605c08/boxplot_color.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/516175827ac25a514ed99ea997605c08/boxplot_color.py \ No newline at end of file diff --git a/_downloads/5164e0fb6fe86677fe4696de5545bd81/demo_tight_layout.ipynb b/_downloads/5164e0fb6fe86677fe4696de5545bd81/demo_tight_layout.ipynb deleted file mode 120000 index ed65dad82ad..00000000000 --- a/_downloads/5164e0fb6fe86677fe4696de5545bd81/demo_tight_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5164e0fb6fe86677fe4696de5545bd81/demo_tight_layout.ipynb \ No newline at end of file diff --git a/_downloads/51729e0728011a2bab4be486bbee947e/topographic_hillshading.py b/_downloads/51729e0728011a2bab4be486bbee947e/topographic_hillshading.py deleted file mode 120000 index a20e692103a..00000000000 --- a/_downloads/51729e0728011a2bab4be486bbee947e/topographic_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/51729e0728011a2bab4be486bbee947e/topographic_hillshading.py \ No newline at end of file diff --git a/_downloads/51785ae53b1786fb0ed5b01f90362232/radio_buttons.py b/_downloads/51785ae53b1786fb0ed5b01f90362232/radio_buttons.py deleted file mode 120000 index f4429e172b3..00000000000 --- a/_downloads/51785ae53b1786fb0ed5b01f90362232/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/51785ae53b1786fb0ed5b01f90362232/radio_buttons.py \ No newline at end of file diff --git a/_downloads/517863ec1fb535561835cfcde4532f95/mathtext.ipynb b/_downloads/517863ec1fb535561835cfcde4532f95/mathtext.ipynb deleted file mode 120000 index c12c33ed814..00000000000 --- a/_downloads/517863ec1fb535561835cfcde4532f95/mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/517863ec1fb535561835cfcde4532f95/mathtext.ipynb \ No newline at end of file diff --git a/_downloads/517baf4596570471ed5a27ee1c4f284a/dolphin.py b/_downloads/517baf4596570471ed5a27ee1c4f284a/dolphin.py deleted file mode 120000 index 7610aa95eeb..00000000000 --- a/_downloads/517baf4596570471ed5a27ee1c4f284a/dolphin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/517baf4596570471ed5a27ee1c4f284a/dolphin.py \ No newline at end of file diff --git a/_downloads/51848bca5816005c5933f4c29bda467f/contour3d_3.py b/_downloads/51848bca5816005c5933f4c29bda467f/contour3d_3.py deleted file mode 120000 index ee5c4496c1f..00000000000 --- a/_downloads/51848bca5816005c5933f4c29bda467f/contour3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/51848bca5816005c5933f4c29bda467f/contour3d_3.py \ No newline at end of file diff --git a/_downloads/5188ef6f8a1df83aab77fbbb44393769/bar_stacked.ipynb b/_downloads/5188ef6f8a1df83aab77fbbb44393769/bar_stacked.ipynb deleted file mode 100644 index 24db29a1db9..00000000000 --- a/_downloads/5188ef6f8a1df83aab77fbbb44393769/bar_stacked.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Stacked Bar Graph\n\n\nThis is an example of creating a stacked bar plot with error bars\nusing `~matplotlib.pyplot.bar`. Note the parameters *yerr* used for\nerror bars, and *bottom* to stack the women's bars on top of the men's\nbars.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nN = 5\nmenMeans = (20, 35, 30, 35, 27)\nwomenMeans = (25, 32, 34, 20, 25)\nmenStd = (2, 3, 4, 1, 2)\nwomenStd = (3, 5, 2, 3, 3)\nind = np.arange(N) # the x locations for the groups\nwidth = 0.35 # the width of the bars: can also be len(x) sequence\n\np1 = plt.bar(ind, menMeans, width, yerr=menStd)\np2 = plt.bar(ind, womenMeans, width,\n bottom=menMeans, yerr=womenStd)\n\nplt.ylabel('Scores')\nplt.title('Scores by group and gender')\nplt.xticks(ind, ('G1', 'G2', 'G3', 'G4', 'G5'))\nplt.yticks(np.arange(0, 81, 10))\nplt.legend((p1[0], p2[0]), ('Men', 'Women'))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/518f8f46502e89a39a4a15305940a862/centered_ticklabels.py b/_downloads/518f8f46502e89a39a4a15305940a862/centered_ticklabels.py deleted file mode 100644 index d6d80d916e5..00000000000 --- a/_downloads/518f8f46502e89a39a4a15305940a862/centered_ticklabels.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -============================== -Centering labels between ticks -============================== - -Ticklabels are aligned relative to their associated tick. The alignment -'center', 'left', or 'right' can be controlled using the horizontal alignment -property:: - - for label in ax.xaxis.get_xticklabels(): - label.set_horizontalalignment('right') - -However there is no direct way to center the labels between ticks. To fake -this behavior, one can place a label on the minor ticks in between the major -ticks, and hide the major tick labels and minor ticks. - -Here is an example that labels the months, centered between the ticks. -""" - -import numpy as np -import matplotlib.cbook as cbook -import matplotlib.dates as dates -import matplotlib.ticker as ticker -import matplotlib.pyplot as plt - -# load some financial data; apple's stock price -with cbook.get_sample_data('aapl.npz') as fh: - r = np.load(fh)['price_data'].view(np.recarray) -r = r[-250:] # get the last 250 days -# Matplotlib works better with datetime.datetime than np.datetime64, but the -# latter is more portable. -date = r.date.astype('O') - -fig, ax = plt.subplots() -ax.plot(date, r.adj_close) - -ax.xaxis.set_major_locator(dates.MonthLocator()) -# 16 is a slight approximation since months differ in number of days. -ax.xaxis.set_minor_locator(dates.MonthLocator(bymonthday=16)) - -ax.xaxis.set_major_formatter(ticker.NullFormatter()) -ax.xaxis.set_minor_formatter(dates.DateFormatter('%b')) - -for tick in ax.xaxis.get_minor_ticks(): - tick.tick1line.set_markersize(0) - tick.tick2line.set_markersize(0) - tick.label1.set_horizontalalignment('center') - -imid = len(r) // 2 -ax.set_xlabel(str(date[imid].year)) -plt.show() diff --git a/_downloads/519013efc7734692e4fec8c5fe40bc4f/gallery_jupyter.zip b/_downloads/519013efc7734692e4fec8c5fe40bc4f/gallery_jupyter.zip deleted file mode 120000 index 3c34e0a5bce..00000000000 --- a/_downloads/519013efc7734692e4fec8c5fe40bc4f/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/519013efc7734692e4fec8c5fe40bc4f/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/51905a1db4d0b23b779505070688b8cd/titles_demo.ipynb b/_downloads/51905a1db4d0b23b779505070688b8cd/titles_demo.ipynb deleted file mode 100644 index 548659cbb4a..00000000000 --- a/_downloads/51905a1db4d0b23b779505070688b8cd/titles_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Titles Demo\n\n\nmatplotlib can display plot titles centered, flush with the left side of\na set of axes, and flush with the right side of a set of axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nplt.plot(range(10))\n\nplt.title('Center Title')\nplt.title('Left Title', loc='left')\nplt.title('Right Title', loc='right')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/519377c3139895cd7d6403d94ed208ea/spines_dropped.py b/_downloads/519377c3139895cd7d6403d94ed208ea/spines_dropped.py deleted file mode 120000 index 0007e4d246e..00000000000 --- a/_downloads/519377c3139895cd7d6403d94ed208ea/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/519377c3139895cd7d6403d94ed208ea/spines_dropped.py \ No newline at end of file diff --git a/_downloads/5195731b228ca8a9f7d0206903726dd9/nan_test.ipynb b/_downloads/5195731b228ca8a9f7d0206903726dd9/nan_test.ipynb deleted file mode 120000 index 08347a1d06f..00000000000 --- a/_downloads/5195731b228ca8a9f7d0206903726dd9/nan_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5195731b228ca8a9f7d0206903726dd9/nan_test.ipynb \ No newline at end of file diff --git a/_downloads/519e3c3622795e695c6eaf7fb5d623f7/axis_direction_demo_step04.ipynb b/_downloads/519e3c3622795e695c6eaf7fb5d623f7/axis_direction_demo_step04.ipynb deleted file mode 120000 index 01caa78a628..00000000000 --- a/_downloads/519e3c3622795e695c6eaf7fb5d623f7/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/519e3c3622795e695c6eaf7fb5d623f7/axis_direction_demo_step04.ipynb \ No newline at end of file diff --git a/_downloads/51a2e4f1ed4566255e1a9497aefe4cb8/bars3d.ipynb b/_downloads/51a2e4f1ed4566255e1a9497aefe4cb8/bars3d.ipynb deleted file mode 120000 index 992eefc0a4d..00000000000 --- a/_downloads/51a2e4f1ed4566255e1a9497aefe4cb8/bars3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/51a2e4f1ed4566255e1a9497aefe4cb8/bars3d.ipynb \ No newline at end of file diff --git a/_downloads/51a3889f598421cdd43929af8edef123/dashpointlabel.ipynb b/_downloads/51a3889f598421cdd43929af8edef123/dashpointlabel.ipynb deleted file mode 120000 index 39a45acd6a8..00000000000 --- a/_downloads/51a3889f598421cdd43929af8edef123/dashpointlabel.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/51a3889f598421cdd43929af8edef123/dashpointlabel.ipynb \ No newline at end of file diff --git a/_downloads/51c334c63daa0736c8828bb8cd630b4e/two_scales.py b/_downloads/51c334c63daa0736c8828bb8cd630b4e/two_scales.py deleted file mode 100644 index 6238732e47f..00000000000 --- a/_downloads/51c334c63daa0736c8828bb8cd630b4e/two_scales.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -=========================== -Plots with different scales -=========================== - -Two plots on the same axes with different left and right scales. - -The trick is to use *two different axes* that share the same *x* axis. -You can use separate `matplotlib.ticker` formatters and locators as -desired since the two axes are independent. - -Such axes are generated by calling the :meth:`.Axes.twinx` method. Likewise, -:meth:`.Axes.twiny` is available to generate axes that share a *y* axis but -have different top and bottom scales. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Create some mock data -t = np.arange(0.01, 10.0, 0.01) -data1 = np.exp(t) -data2 = np.sin(2 * np.pi * t) - -fig, ax1 = plt.subplots() - -color = 'tab:red' -ax1.set_xlabel('time (s)') -ax1.set_ylabel('exp', color=color) -ax1.plot(t, data1, color=color) -ax1.tick_params(axis='y', labelcolor=color) - -ax2 = ax1.twinx() # instantiate a second axes that shares the same x-axis - -color = 'tab:blue' -ax2.set_ylabel('sin', color=color) # we already handled the x-label with ax1 -ax2.plot(t, data2, color=color) -ax2.tick_params(axis='y', labelcolor=color) - -fig.tight_layout() # otherwise the right y-label is slightly clipped -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.twinx -matplotlib.axes.Axes.twiny -matplotlib.axes.Axes.tick_params diff --git a/_downloads/51c75f09129f2b9e6529efbf076b2024/triplot_demo.ipynb b/_downloads/51c75f09129f2b9e6529efbf076b2024/triplot_demo.ipynb deleted file mode 120000 index db5160f75b7..00000000000 --- a/_downloads/51c75f09129f2b9e6529efbf076b2024/triplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/51c75f09129f2b9e6529efbf076b2024/triplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/51ce5d45a9f81f08536085d417152499/pcolormesh_grids.py b/_downloads/51ce5d45a9f81f08536085d417152499/pcolormesh_grids.py deleted file mode 120000 index 110eb627593..00000000000 --- a/_downloads/51ce5d45a9f81f08536085d417152499/pcolormesh_grids.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/51ce5d45a9f81f08536085d417152499/pcolormesh_grids.py \ No newline at end of file diff --git a/_downloads/51d09de91fb4b010cbe4a5f40ad3da54/fig_axes_customize_simple.py b/_downloads/51d09de91fb4b010cbe4a5f40ad3da54/fig_axes_customize_simple.py deleted file mode 120000 index a3eb74459c7..00000000000 --- a/_downloads/51d09de91fb4b010cbe4a5f40ad3da54/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/51d09de91fb4b010cbe4a5f40ad3da54/fig_axes_customize_simple.py \ No newline at end of file diff --git a/_downloads/51d16df36e7b08129572c5f648a6a088/load_converter.ipynb b/_downloads/51d16df36e7b08129572c5f648a6a088/load_converter.ipynb deleted file mode 120000 index 2d23e39dcda..00000000000 --- a/_downloads/51d16df36e7b08129572c5f648a6a088/load_converter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/51d16df36e7b08129572c5f648a6a088/load_converter.ipynb \ No newline at end of file diff --git a/_downloads/51d47c3f62a905c94fbb4474fb0ec77d/embedding_in_wx4_sgskip.ipynb b/_downloads/51d47c3f62a905c94fbb4474fb0ec77d/embedding_in_wx4_sgskip.ipynb deleted file mode 100644 index 561a29c0d29..00000000000 --- a/_downloads/51d47c3f62a905c94fbb4474fb0ec77d/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #4\n==================\n\nAn example of how to use wx or wxagg in an application with a custom toolbar.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar\nfrom matplotlib.backends.backend_wx import _load_bitmap\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\nimport wx\n\n\nclass MyNavigationToolbar(NavigationToolbar):\n \"\"\"Extend the default wx toolbar with your own event handlers.\"\"\"\n\n def __init__(self, canvas, cankill):\n NavigationToolbar.__init__(self, canvas)\n\n # for simplicity I'm going to reuse a bitmap from wx, you'll\n # probably want to add your own.\n tool = self.AddTool(wx.ID_ANY, 'Click me', _load_bitmap('back.png'),\n 'Activate custom contol')\n self.Bind(wx.EVT_TOOL, self._on_custom, id=tool.GetId())\n\n def _on_custom(self, evt):\n # add some text to the axes in a random location in axes (0,1)\n # coords) with a random color\n\n # get the axes\n ax = self.canvas.figure.axes[0]\n\n # generate a random location can color\n x, y = np.random.rand(2)\n rgb = np.random.rand(3)\n\n # add the text and draw\n ax.text(x, y, 'You clicked me',\n transform=ax.transAxes,\n color=rgb)\n self.canvas.draw()\n evt.Skip()\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self):\n wx.Frame.__init__(self, None, -1,\n 'CanvasFrame', size=(550, 350))\n\n self.figure = Figure(figsize=(5, 4), dpi=100)\n self.axes = self.figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2 * np.pi * t)\n\n self.axes.plot(t, s)\n\n self.canvas = FigureCanvas(self, -1, self.figure)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.sizer.Add(self.canvas, 1, wx.TOP | wx.LEFT | wx.EXPAND)\n\n self.toolbar = MyNavigationToolbar(self.canvas, True)\n self.toolbar.Realize()\n # By adding toolbar in sizer, we are able to put it at the bottom\n # of the frame - so appearance is closer to GTK version.\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n\n # update the axes menu on the toolbar\n self.toolbar.update()\n self.SetSizer(self.sizer)\n self.Fit()\n\n\nclass App(wx.App):\n def OnInit(self):\n 'Create the main window and insert the custom frame'\n frame = CanvasFrame()\n frame.Show(True)\n\n return True\n\napp = App(0)\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/51d6f6c326b508073d1d426575f5484e/pgf.ipynb b/_downloads/51d6f6c326b508073d1d426575f5484e/pgf.ipynb deleted file mode 100644 index 332f7f6211b..00000000000 --- a/_downloads/51d6f6c326b508073d1d426575f5484e/pgf.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*********************************\nTypesetting With XeLaTeX/LuaLaTeX\n*********************************\n\nHow to typeset text with the ``pgf`` backend in Matplotlib.\n\nUsing the ``pgf`` backend, matplotlib can export figures as pgf drawing commands\nthat can be processed with pdflatex, xelatex or lualatex. XeLaTeX and LuaLaTeX\nhave full unicode support and can use any font that is installed in the operating\nsystem, making use of advanced typographic features of OpenType, AAT and\nGraphite. Pgf pictures created by ``plt.savefig('figure.pgf')`` can be\nembedded as raw commands in LaTeX documents. Figures can also be directly\ncompiled and saved to PDF with ``plt.savefig('figure.pdf')`` by either\nswitching to the backend\n\n.. code-block:: python\n\n matplotlib.use('pgf')\n\nor registering it for handling pdf output\n\n.. code-block:: python\n\n from matplotlib.backends.backend_pgf import FigureCanvasPgf\n matplotlib.backend_bases.register_backend('pdf', FigureCanvasPgf)\n\nThe second method allows you to keep using regular interactive backends and to\nsave xelatex, lualatex or pdflatex compiled PDF files from the graphical user interface.\n\nMatplotlib's pgf support requires a recent LaTeX_ installation that includes\nthe TikZ/PGF packages (such as TeXLive_), preferably with XeLaTeX or LuaLaTeX\ninstalled. If either pdftocairo or ghostscript is present on your system,\nfigures can optionally be saved to PNG images as well. The executables\nfor all applications must be located on your :envvar:`PATH`.\n\nRc parameters that control the behavior of the pgf backend:\n\n ================= =====================================================\n Parameter Documentation\n ================= =====================================================\n pgf.preamble Lines to be included in the LaTeX preamble\n pgf.rcfonts Setup fonts from rc params using the fontspec package\n pgf.texsystem Either \"xelatex\" (default), \"lualatex\" or \"pdflatex\"\n ================= =====================================================\n\n

Note

TeX defines a set of special characters, such as::\n\n # $ % & ~ _ ^ \\ { }\n\n Generally, these characters must be escaped correctly. For convenience,\n some characters (_,^,%) are automatically escaped outside of math\n environments.

\n\n\n\nMulti-Page PDF Files\n====================\n\nThe pgf backend also supports multipage pdf files using ``PdfPages``\n\n.. code-block:: python\n\n from matplotlib.backends.backend_pgf import PdfPages\n import matplotlib.pyplot as plt\n\n with PdfPages('multipage.pdf', metadata={'author': 'Me'}) as pdf:\n\n fig1, ax1 = plt.subplots()\n ax1.plot([1, 5, 3])\n pdf.savefig(fig1)\n\n fig2, ax2 = plt.subplots()\n ax2.plot([1, 5, 3])\n pdf.savefig(fig2)\n\n\nFont specification\n==================\n\nThe fonts used for obtaining the size of text elements or when compiling\nfigures to PDF are usually defined in the matplotlib rc parameters. You can\nalso use the LaTeX default Computer Modern fonts by clearing the lists for\n``font.serif``, ``font.sans-serif`` or ``font.monospace``. Please note that\nthe glyph coverage of these fonts is very limited. If you want to keep the\nComputer Modern font face but require extended unicode support, consider\ninstalling the `Computer Modern Unicode `_\nfonts *CMU Serif*, *CMU Sans Serif*, etc.\n\nWhen saving to ``.pgf``, the font configuration matplotlib used for the\nlayout of the figure is included in the header of the text file.\n\n.. literalinclude:: ../../gallery/userdemo/pgf_fonts.py\n :end-before: plt.savefig\n\n\n\nCustom preamble\n===============\n\nFull customization is possible by adding your own commands to the preamble.\nUse the ``pgf.preamble`` parameter if you want to configure the math fonts,\nusing ``unicode-math`` for example, or for loading additional packages. Also,\nif you want to do the font configuration yourself instead of using the fonts\nspecified in the rc parameters, make sure to disable ``pgf.rcfonts``.\n\n.. only:: html\n\n .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py\n :end-before: plt.savefig\n\n.. only:: latex\n\n .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py\n :end-before: import matplotlib.pyplot as plt\n\n\n\nChoosing the TeX system\n=======================\n\nThe TeX system to be used by matplotlib is chosen by the ``pgf.texsystem``\nparameter. Possible values are ``'xelatex'`` (default), ``'lualatex'`` and\n``'pdflatex'``. Please note that when selecting pdflatex the fonts and\nunicode handling must be configured in the preamble.\n\n.. literalinclude:: ../../gallery/userdemo/pgf_texsystem.py\n :end-before: plt.savefig\n\n\n\nTroubleshooting\n===============\n\n* Please note that the TeX packages found in some Linux distributions and\n MiKTeX installations are dramatically outdated. Make sure to update your\n package catalog and upgrade or install a recent TeX distribution.\n\n* On Windows, the :envvar:`PATH` environment variable may need to be modified\n to include the directories containing the latex, dvipng and ghostscript\n executables. See `environment-variables` and\n `setting-windows-environment-variables` for details.\n\n* A limitation on Windows causes the backend to keep file handles that have\n been opened by your application open. As a result, it may not be possible\n to delete the corresponding files until the application closes (see\n `#1324 `_).\n\n* Sometimes the font rendering in figures that are saved to png images is\n very bad. This happens when the pdftocairo tool is not available and\n ghostscript is used for the pdf to png conversion.\n\n* Make sure what you are trying to do is possible in a LaTeX document,\n that your LaTeX syntax is valid and that you are using raw strings\n if necessary to avoid unintended escape sequences.\n\n* The ``pgf.preamble`` rc setting provides lots of flexibility, and lots of\n ways to cause problems. When experiencing problems, try to minimalize or\n disable the custom preamble.\n\n* Configuring an ``unicode-math`` environment can be a bit tricky. The\n TeXLive distribution for example provides a set of math fonts which are\n usually not installed system-wide. XeTeX, unlike LuaLatex, cannot find\n these fonts by their name, which is why you might have to specify\n ``\\setmathfont{xits-math.otf}`` instead of ``\\setmathfont{XITS Math}`` or\n alternatively make the fonts available to your OS. See this\n `tex.stackexchange.com question `_\n for more details.\n\n* If the font configuration used by matplotlib differs from the font setting\n in yout LaTeX document, the alignment of text elements in imported figures\n may be off. Check the header of your ``.pgf`` file if you are unsure about\n the fonts matplotlib used for the layout.\n\n* Vector images and hence ``.pgf`` files can become bloated if there are a lot\n of objects in the graph. This can be the case for image processing or very\n big scatter graphs. In an extreme case this can cause TeX to run out of\n memory: \"TeX capacity exceeded, sorry\" You can configure latex to increase\n the amount of memory available to generate the ``.pdf`` image as discussed on\n `tex.stackexchange.com `_.\n Another way would be to \"rasterize\" parts of the graph causing problems\n using either the ``rasterized=True`` keyword, or ``.set_rasterized(True)`` as per\n :doc:`this example `.\n\n* If you still need help, please see `reporting-problems`\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/51ddc3f4a94562af2dac49318688a62c/invert_axes.py b/_downloads/51ddc3f4a94562af2dac49318688a62c/invert_axes.py deleted file mode 120000 index 0eb3d6561de..00000000000 --- a/_downloads/51ddc3f4a94562af2dac49318688a62c/invert_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/51ddc3f4a94562af2dac49318688a62c/invert_axes.py \ No newline at end of file diff --git a/_downloads/51ddf795e008e45d3f00f6e16274783f/colormap_normalizations_power.ipynb b/_downloads/51ddf795e008e45d3f00f6e16274783f/colormap_normalizations_power.ipynb deleted file mode 120000 index bd0d1cf6b51..00000000000 --- a/_downloads/51ddf795e008e45d3f00f6e16274783f/colormap_normalizations_power.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/51ddf795e008e45d3f00f6e16274783f/colormap_normalizations_power.ipynb \ No newline at end of file diff --git a/_downloads/51e6e76275f4784962d77fb9c4683d92/geo_demo.py b/_downloads/51e6e76275f4784962d77fb9c4683d92/geo_demo.py deleted file mode 120000 index 5285ec06e10..00000000000 --- a/_downloads/51e6e76275f4784962d77fb9c4683d92/geo_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/51e6e76275f4784962d77fb9c4683d92/geo_demo.py \ No newline at end of file diff --git a/_downloads/51e912a5cf217f8c6647ebf9f5539d38/scatter_hist_locatable_axes.py b/_downloads/51e912a5cf217f8c6647ebf9f5539d38/scatter_hist_locatable_axes.py deleted file mode 120000 index 9da16455cb9..00000000000 --- a/_downloads/51e912a5cf217f8c6647ebf9f5539d38/scatter_hist_locatable_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/51e912a5cf217f8c6647ebf9f5539d38/scatter_hist_locatable_axes.py \ No newline at end of file diff --git a/_downloads/51f16ae3974c2e86e74b572707e954a4/marker_path.ipynb b/_downloads/51f16ae3974c2e86e74b572707e954a4/marker_path.ipynb deleted file mode 100644 index 12bbb48b539..00000000000 --- a/_downloads/51f16ae3974c2e86e74b572707e954a4/marker_path.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Marker Path\n\n\nUsing a `~.path.Path` as marker for a `~.axes.Axes.plot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.path as mpath\nimport numpy as np\n\n\nstar = mpath.Path.unit_regular_star(6)\ncircle = mpath.Path.unit_circle()\n# concatenate the circle with an internal cutout of the star\nverts = np.concatenate([circle.vertices, star.vertices[::-1, ...]])\ncodes = np.concatenate([circle.codes, star.codes])\ncut_star = mpath.Path(verts, codes)\n\n\nplt.plot(np.arange(10)**2, '--r', marker=cut_star, markersize=15)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.path.Path.unit_regular_star\nmatplotlib.path.Path.unit_circle\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/51f71780b1f0e8c2b3d14e33ae33f05f/transoffset.py b/_downloads/51f71780b1f0e8c2b3d14e33ae33f05f/transoffset.py deleted file mode 120000 index f1a0a629ca5..00000000000 --- a/_downloads/51f71780b1f0e8c2b3d14e33ae33f05f/transoffset.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/51f71780b1f0e8c2b3d14e33ae33f05f/transoffset.py \ No newline at end of file diff --git a/_downloads/51f72ac52a09ab1afd7282dc56b96fb3/shading_example.py b/_downloads/51f72ac52a09ab1afd7282dc56b96fb3/shading_example.py deleted file mode 120000 index bcec39247c0..00000000000 --- a/_downloads/51f72ac52a09ab1afd7282dc56b96fb3/shading_example.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/51f72ac52a09ab1afd7282dc56b96fb3/shading_example.py \ No newline at end of file diff --git a/_downloads/51fd0b2f584365d66989f64f5f7caef0/fill.ipynb b/_downloads/51fd0b2f584365d66989f64f5f7caef0/fill.ipynb deleted file mode 120000 index 277f5a66be8..00000000000 --- a/_downloads/51fd0b2f584365d66989f64f5f7caef0/fill.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/51fd0b2f584365d66989f64f5f7caef0/fill.ipynb \ No newline at end of file diff --git a/_downloads/5207aff3f80857ab1ac0e629b95d27b2/data_browser.py b/_downloads/5207aff3f80857ab1ac0e629b95d27b2/data_browser.py deleted file mode 120000 index 605afa1acf6..00000000000 --- a/_downloads/5207aff3f80857ab1ac0e629b95d27b2/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5207aff3f80857ab1ac0e629b95d27b2/data_browser.py \ No newline at end of file diff --git a/_downloads/52081108278f2a1234e8c15f6c68a0d3/simple_axes_divider3.py b/_downloads/52081108278f2a1234e8c15f6c68a0d3/simple_axes_divider3.py deleted file mode 100644 index 6b7d9b4dd09..00000000000 --- a/_downloads/52081108278f2a1234e8c15f6c68a0d3/simple_axes_divider3.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -===================== -Simple Axes Divider 3 -===================== - -""" -import mpl_toolkits.axes_grid1.axes_size as Size -from mpl_toolkits.axes_grid1 import Divider -import matplotlib.pyplot as plt - - -fig = plt.figure(figsize=(5.5, 4)) - -# the rect parameter will be ignore as we will set axes_locator -rect = (0.1, 0.1, 0.8, 0.8) -ax = [fig.add_axes(rect, label="%d" % i) for i in range(4)] - - -horiz = [Size.AxesX(ax[0]), Size.Fixed(.5), Size.AxesX(ax[1])] -vert = [Size.AxesY(ax[0]), Size.Fixed(.5), Size.AxesY(ax[2])] - -# divide the axes rectangle into grid whose size is specified by horiz * vert -divider = Divider(fig, rect, horiz, vert, aspect=False) - - -ax[0].set_axes_locator(divider.new_locator(nx=0, ny=0)) -ax[1].set_axes_locator(divider.new_locator(nx=2, ny=0)) -ax[2].set_axes_locator(divider.new_locator(nx=0, ny=2)) -ax[3].set_axes_locator(divider.new_locator(nx=2, ny=2)) - -ax[0].set_xlim(0, 2) -ax[1].set_xlim(0, 1) - -ax[0].set_ylim(0, 1) -ax[2].set_ylim(0, 2) - -divider.set_aspect(1.) - -for ax1 in ax: - ax1.tick_params(labelbottom=False, labelleft=False) - -plt.show() diff --git a/_downloads/5216a739c8f85c2647c1e641f2af7d6f/gridspec_nested.ipynb b/_downloads/5216a739c8f85c2647c1e641f2af7d6f/gridspec_nested.ipynb deleted file mode 100644 index be1528e2f80..00000000000 --- a/_downloads/5216a739c8f85c2647c1e641f2af7d6f/gridspec_nested.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nested Gridspecs\n\n\nGridSpecs can be nested, so that a subplot from a parent GridSpec can\nset the position for a nested grid of subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\n\n\ndef format_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\n\n# gridspec inside gridspec\nf = plt.figure()\n\ngs0 = gridspec.GridSpec(1, 2, figure=f)\n\ngs00 = gridspec.GridSpecFromSubplotSpec(3, 3, subplot_spec=gs0[0])\n\nax1 = f.add_subplot(gs00[:-1, :])\nax2 = f.add_subplot(gs00[-1, :-1])\nax3 = f.add_subplot(gs00[-1, -1])\n\n# the following syntax does the same as the GridSpecFromSubplotSpec call above:\ngs01 = gs0[1].subgridspec(3, 3)\n\nax4 = f.add_subplot(gs01[:, :-1])\nax5 = f.add_subplot(gs01[:-1, -1])\nax6 = f.add_subplot(gs01[-1, -1])\n\nplt.suptitle(\"GridSpec Inside GridSpec\")\nformat_axes(f)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/521bf543eaeffa8f201d078652450cd4/zoom_window.ipynb b/_downloads/521bf543eaeffa8f201d078652450cd4/zoom_window.ipynb deleted file mode 120000 index cc64952b7d7..00000000000 --- a/_downloads/521bf543eaeffa8f201d078652450cd4/zoom_window.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/521bf543eaeffa8f201d078652450cd4/zoom_window.ipynb \ No newline at end of file diff --git a/_downloads/5222789729fb441d29ec10e2ad9e47ae/interpolation_methods.ipynb b/_downloads/5222789729fb441d29ec10e2ad9e47ae/interpolation_methods.ipynb deleted file mode 100644 index 5b94dca406f..00000000000 --- a/_downloads/5222789729fb441d29ec10e2ad9e47ae/interpolation_methods.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=================================\nInterpolations for imshow/matshow\n=================================\n\nThis example displays the difference between interpolation methods for\n:meth:`~.axes.Axes.imshow` and :meth:`~.axes.Axes.matshow`.\n\nIf `interpolation` is None, it defaults to the ``image.interpolation``\n:doc:`rc parameter `.\nIf the interpolation is ``'none'``, then no interpolation is performed\nfor the Agg, ps and pdf backends. Other backends will default to ``'nearest'``.\n\nFor the Agg, ps and pdf backends, ``interpolation = 'none'`` works well when a\nbig image is scaled down, while ``interpolation = 'nearest'`` works well when\na small image is scaled up.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nmethods = [None, 'none', 'nearest', 'bilinear', 'bicubic', 'spline16',\n 'spline36', 'hanning', 'hamming', 'hermite', 'kaiser', 'quadric',\n 'catrom', 'gaussian', 'bessel', 'mitchell', 'sinc', 'lanczos']\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ngrid = np.random.rand(4, 4)\n\nfig, axs = plt.subplots(nrows=3, ncols=6, figsize=(9, 6),\n subplot_kw={'xticks': [], 'yticks': []})\n\nfor ax, interp_method in zip(axs.flat, methods):\n ax.imshow(grid, interpolation=interp_method, cmap='viridis')\n ax.set_title(str(interp_method))\n\nplt.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/52353c83662be1df4f6ead1a697c76e9/svg_filter_pie.ipynb b/_downloads/52353c83662be1df4f6ead1a697c76e9/svg_filter_pie.ipynb deleted file mode 120000 index 5067bffec84..00000000000 --- a/_downloads/52353c83662be1df4f6ead1a697c76e9/svg_filter_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/52353c83662be1df4f6ead1a697c76e9/svg_filter_pie.ipynb \ No newline at end of file diff --git a/_downloads/5246aa7d386c53354b71c3dfbfc46a6f/donut.ipynb b/_downloads/5246aa7d386c53354b71c3dfbfc46a6f/donut.ipynb deleted file mode 120000 index 73f7a7c0b3d..00000000000 --- a/_downloads/5246aa7d386c53354b71c3dfbfc46a6f/donut.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5246aa7d386c53354b71c3dfbfc46a6f/donut.ipynb \ No newline at end of file diff --git a/_downloads/524ee06f0d62d7a8536f1e45427aad0b/colormap_normalizations_bounds.ipynb b/_downloads/524ee06f0d62d7a8536f1e45427aad0b/colormap_normalizations_bounds.ipynb deleted file mode 120000 index 649f16864ba..00000000000 --- a/_downloads/524ee06f0d62d7a8536f1e45427aad0b/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/524ee06f0d62d7a8536f1e45427aad0b/colormap_normalizations_bounds.ipynb \ No newline at end of file diff --git a/_downloads/52548c1c06d96c76e11ecaa178800bb7/units_scatter.ipynb b/_downloads/52548c1c06d96c76e11ecaa178800bb7/units_scatter.ipynb deleted file mode 120000 index 83ea609de30..00000000000 --- a/_downloads/52548c1c06d96c76e11ecaa178800bb7/units_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/52548c1c06d96c76e11ecaa178800bb7/units_scatter.ipynb \ No newline at end of file diff --git a/_downloads/525d48a4fd42b3666f5ef61d8acd742e/symlog_demo.py b/_downloads/525d48a4fd42b3666f5ef61d8acd742e/symlog_demo.py deleted file mode 120000 index c2f0da3796f..00000000000 --- a/_downloads/525d48a4fd42b3666f5ef61d8acd742e/symlog_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/525d48a4fd42b3666f5ef61d8acd742e/symlog_demo.py \ No newline at end of file diff --git a/_downloads/526044c35204bced58a734307d07d7a9/annotate_simple03.ipynb b/_downloads/526044c35204bced58a734307d07d7a9/annotate_simple03.ipynb deleted file mode 120000 index d3e8668e957..00000000000 --- a/_downloads/526044c35204bced58a734307d07d7a9/annotate_simple03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/526044c35204bced58a734307d07d7a9/annotate_simple03.ipynb \ No newline at end of file diff --git a/_downloads/5261826d9ee14daa0294378c27e9d605/plotfile_demo.ipynb b/_downloads/5261826d9ee14daa0294378c27e9d605/plotfile_demo.ipynb deleted file mode 120000 index 00323d43ae2..00000000000 --- a/_downloads/5261826d9ee14daa0294378c27e9d605/plotfile_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5261826d9ee14daa0294378c27e9d605/plotfile_demo.ipynb \ No newline at end of file diff --git a/_downloads/527a25f99f164d367e5cd96d193c0dac/legend.py b/_downloads/527a25f99f164d367e5cd96d193c0dac/legend.py deleted file mode 120000 index bb19f5b2ead..00000000000 --- a/_downloads/527a25f99f164d367e5cd96d193c0dac/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/527a25f99f164d367e5cd96d193c0dac/legend.py \ No newline at end of file diff --git a/_downloads/52876e2436a5f66f7a8dfd9cfdbf54d7/membrane.py b/_downloads/52876e2436a5f66f7a8dfd9cfdbf54d7/membrane.py deleted file mode 120000 index c2524be00d9..00000000000 --- a/_downloads/52876e2436a5f66f7a8dfd9cfdbf54d7/membrane.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/52876e2436a5f66f7a8dfd9cfdbf54d7/membrane.py \ No newline at end of file diff --git a/_downloads/52937bb7872d12585a003eeb507d4eb7/artist_tests.py b/_downloads/52937bb7872d12585a003eeb507d4eb7/artist_tests.py deleted file mode 120000 index 79c0bacd454..00000000000 --- a/_downloads/52937bb7872d12585a003eeb507d4eb7/artist_tests.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/52937bb7872d12585a003eeb507d4eb7/artist_tests.py \ No newline at end of file diff --git a/_downloads/5297dff52c244336df5a0ee552a4abbf/psd_demo.py b/_downloads/5297dff52c244336df5a0ee552a4abbf/psd_demo.py deleted file mode 120000 index 79f48e00c0e..00000000000 --- a/_downloads/5297dff52c244336df5a0ee552a4abbf/psd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5297dff52c244336df5a0ee552a4abbf/psd_demo.py \ No newline at end of file diff --git a/_downloads/52a5e66419b4adbf23fec0fbd3382c28/histogram_histtypes.ipynb b/_downloads/52a5e66419b4adbf23fec0fbd3382c28/histogram_histtypes.ipynb deleted file mode 120000 index 54bdaada5a6..00000000000 --- a/_downloads/52a5e66419b4adbf23fec0fbd3382c28/histogram_histtypes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/52a5e66419b4adbf23fec0fbd3382c28/histogram_histtypes.ipynb \ No newline at end of file diff --git a/_downloads/52aad4b501541f66f6bc0f7d87a66e4b/multicolored_line.py b/_downloads/52aad4b501541f66f6bc0f7d87a66e4b/multicolored_line.py deleted file mode 120000 index 77c027a5b66..00000000000 --- a/_downloads/52aad4b501541f66f6bc0f7d87a66e4b/multicolored_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/52aad4b501541f66f6bc0f7d87a66e4b/multicolored_line.py \ No newline at end of file diff --git a/_downloads/52bf8aa00c436b9284c3df01df99dca1/scales.ipynb b/_downloads/52bf8aa00c436b9284c3df01df99dca1/scales.ipynb deleted file mode 100644 index a2b3ddc6790..00000000000 --- a/_downloads/52bf8aa00c436b9284c3df01df99dca1/scales.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scales\n\n\nIllustrate the scale transformations applied to axes, e.g. log, symlog, logit.\n\nThe last two examples are examples of using the ``'function'`` scale by\nsupplying forward and inverse functions for the scale transformation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import NullFormatter, FixedLocator\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# make up some data in the interval ]0, 1[\ny = np.random.normal(loc=0.5, scale=0.4, size=1000)\ny = y[(y > 0) & (y < 1)]\ny.sort()\nx = np.arange(len(y))\n\n# plot with various axes scales\nfig, axs = plt.subplots(3, 2, figsize=(6, 8),\n constrained_layout=True)\n\n# linear\nax = axs[0, 0]\nax.plot(x, y)\nax.set_yscale('linear')\nax.set_title('linear')\nax.grid(True)\n\n\n# log\nax = axs[0, 1]\nax.plot(x, y)\nax.set_yscale('log')\nax.set_title('log')\nax.grid(True)\n\n\n# symmetric log\nax = axs[1, 1]\nax.plot(x, y - y.mean())\nax.set_yscale('symlog', linthreshy=0.02)\nax.set_title('symlog')\nax.grid(True)\n\n# logit\nax = axs[1, 0]\nax.plot(x, y)\nax.set_yscale('logit')\nax.set_title('logit')\nax.grid(True)\nax.yaxis.set_minor_formatter(NullFormatter())\n\n\n# Function x**(1/2)\ndef forward(x):\n return x**(1/2)\n\n\ndef inverse(x):\n return x**2\n\n\nax = axs[2, 0]\nax.plot(x, y)\nax.set_yscale('function', functions=(forward, inverse))\nax.set_title('function: $x^{1/2}$')\nax.grid(True)\nax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2)**2))\nax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2)))\n\n\n# Function Mercator transform\ndef forward(a):\n a = np.deg2rad(a)\n return np.rad2deg(np.log(np.abs(np.tan(a) + 1.0 / np.cos(a))))\n\n\ndef inverse(a):\n a = np.deg2rad(a)\n return np.rad2deg(np.arctan(np.sinh(a)))\n\nax = axs[2, 1]\n\nt = np.arange(-170.0, 170.0, 0.1)\ns = t / 2.\n\nax.plot(t, s, '-', lw=2)\n\nax.set_yscale('function', functions=(forward, inverse))\nax.set_title('function: Mercator')\nax.grid(True)\nax.set_xlim([-180, 180])\nax.yaxis.set_minor_formatter(NullFormatter())\nax.yaxis.set_major_locator(FixedLocator(np.arange(-90, 90, 30)))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.set_yscale\nmatplotlib.axes.Axes.set_xscale\nmatplotlib.axis.Axis.set_major_locator\nmatplotlib.scale.LogitScale\nmatplotlib.scale.LogScale\nmatplotlib.scale.LinearScale\nmatplotlib.scale.SymmetricalLogScale\nmatplotlib.scale.FuncScale" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/52c39bad31166a641b3bb80585291372/font_file.ipynb b/_downloads/52c39bad31166a641b3bb80585291372/font_file.ipynb deleted file mode 120000 index 385a1e1efef..00000000000 --- a/_downloads/52c39bad31166a641b3bb80585291372/font_file.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/52c39bad31166a641b3bb80585291372/font_file.ipynb \ No newline at end of file diff --git a/_downloads/52c64637d3d1e28df35dbcf476b80b94/check_buttons.ipynb b/_downloads/52c64637d3d1e28df35dbcf476b80b94/check_buttons.ipynb deleted file mode 120000 index ed28b04f773..00000000000 --- a/_downloads/52c64637d3d1e28df35dbcf476b80b94/check_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/52c64637d3d1e28df35dbcf476b80b94/check_buttons.ipynb \ No newline at end of file diff --git a/_downloads/52c7623e65aba6df12153b271aaf5b31/simple_axes_divider2.py b/_downloads/52c7623e65aba6df12153b271aaf5b31/simple_axes_divider2.py deleted file mode 100644 index 834e8cc0129..00000000000 --- a/_downloads/52c7623e65aba6df12153b271aaf5b31/simple_axes_divider2.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -===================== -Simple Axes Divider 2 -===================== - -""" -import mpl_toolkits.axes_grid1.axes_size as Size -from mpl_toolkits.axes_grid1 import Divider -import matplotlib.pyplot as plt - -fig = plt.figure(figsize=(5.5, 4.)) - -# the rect parameter will be ignore as we will set axes_locator -rect = (0.1, 0.1, 0.8, 0.8) -ax = [fig.add_axes(rect, label="%d" % i) for i in range(4)] - -horiz = [Size.Scaled(1.5), Size.Fixed(.5), Size.Scaled(1.), - Size.Scaled(.5)] - -vert = [Size.Scaled(1.), Size.Fixed(.5), Size.Scaled(1.5)] - -# divide the axes rectangle into grid whose size is specified by horiz * vert -divider = Divider(fig, rect, horiz, vert, aspect=False) - -ax[0].set_axes_locator(divider.new_locator(nx=0, ny=0)) -ax[1].set_axes_locator(divider.new_locator(nx=0, ny=2)) -ax[2].set_axes_locator(divider.new_locator(nx=2, ny=2)) -ax[3].set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0)) - -for ax1 in ax: - ax1.tick_params(labelbottom=False, labelleft=False) - -plt.show() diff --git a/_downloads/52cb60dc87193d9fa4ffc14b53b8556f/whats_new_1_subplot3d.py b/_downloads/52cb60dc87193d9fa4ffc14b53b8556f/whats_new_1_subplot3d.py deleted file mode 120000 index ad3517a34c8..00000000000 --- a/_downloads/52cb60dc87193d9fa4ffc14b53b8556f/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/52cb60dc87193d9fa4ffc14b53b8556f/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/_downloads/52e21e20f773bd80131ab7cab35af1b8/font_file.ipynb b/_downloads/52e21e20f773bd80131ab7cab35af1b8/font_file.ipynb deleted file mode 100644 index 5dbae321fa1..00000000000 --- a/_downloads/52e21e20f773bd80131ab7cab35af1b8/font_file.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using a ttf font file in Matplotlib\n\n\nAlthough it is usually not a good idea to explicitly point to a single ttf file\nfor a font instance, you can do so using the `font_manager.FontProperties`\n*fname* argument.\n\nHere, we use the Computer Modern roman font (``cmr10``) shipped with\nMatplotlib.\n\nFor a more flexible solution, see\n:doc:`/gallery/text_labels_and_annotations/font_family_rc_sgskip` and\n:doc:`/gallery/text_labels_and_annotations/fonts_demo`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\nfrom matplotlib import font_manager as fm, rcParams\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nfpath = os.path.join(rcParams[\"datapath\"], \"fonts/ttf/cmr10.ttf\")\nprop = fm.FontProperties(fname=fpath)\nfname = os.path.split(fpath)[1]\nax.set_title('This is a special font: {}'.format(fname), fontproperties=prop)\nax.set_xlabel('This is the default font')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.font_manager.FontProperties\nmatplotlib.axes.Axes.set_title" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/52e9d9c67d12b0707ec2ebfda10937f5/demo_axes_divider.py b/_downloads/52e9d9c67d12b0707ec2ebfda10937f5/demo_axes_divider.py deleted file mode 120000 index c7e3c17e91f..00000000000 --- a/_downloads/52e9d9c67d12b0707ec2ebfda10937f5/demo_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/52e9d9c67d12b0707ec2ebfda10937f5/demo_axes_divider.py \ No newline at end of file diff --git a/_downloads/52ec035987f71349b69d74288936b612/multicolored_line.py b/_downloads/52ec035987f71349b69d74288936b612/multicolored_line.py deleted file mode 120000 index 63191e26825..00000000000 --- a/_downloads/52ec035987f71349b69d74288936b612/multicolored_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/52ec035987f71349b69d74288936b612/multicolored_line.py \ No newline at end of file diff --git a/_downloads/52f3482f23172f4683a2a19063f43310/stix_fonts_demo.ipynb b/_downloads/52f3482f23172f4683a2a19063f43310/stix_fonts_demo.ipynb deleted file mode 120000 index b2cb2aac023..00000000000 --- a/_downloads/52f3482f23172f4683a2a19063f43310/stix_fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/52f3482f23172f4683a2a19063f43310/stix_fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/52f6add99673e3b84093d8bc7c1932d2/trisurf3d_2.py b/_downloads/52f6add99673e3b84093d8bc7c1932d2/trisurf3d_2.py deleted file mode 120000 index 4e67214b676..00000000000 --- a/_downloads/52f6add99673e3b84093d8bc7c1932d2/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/52f6add99673e3b84093d8bc7c1932d2/trisurf3d_2.py \ No newline at end of file diff --git a/_downloads/52faee3097d19ebaa2b47518810583b7/quiver3d.ipynb b/_downloads/52faee3097d19ebaa2b47518810583b7/quiver3d.ipynb deleted file mode 120000 index 2377bf565af..00000000000 --- a/_downloads/52faee3097d19ebaa2b47518810583b7/quiver3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/52faee3097d19ebaa2b47518810583b7/quiver3d.ipynb \ No newline at end of file diff --git a/_downloads/52fc6ccea4deda544de75217747618b8/print_stdout_sgskip.py b/_downloads/52fc6ccea4deda544de75217747618b8/print_stdout_sgskip.py deleted file mode 100644 index 69b0b33616d..00000000000 --- a/_downloads/52fc6ccea4deda544de75217747618b8/print_stdout_sgskip.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -============ -Print Stdout -============ - -print png to standard out - -usage: python print_stdout.py > somefile.png - -""" - -import sys -import matplotlib -matplotlib.use('Agg') -import matplotlib.pyplot as plt - -plt.plot([1, 2, 3]) -plt.savefig(sys.stdout.buffer) diff --git a/_downloads/53007feeeb9a1b69723a89cd292088ca/span_regions.ipynb b/_downloads/53007feeeb9a1b69723a89cd292088ca/span_regions.ipynb deleted file mode 120000 index 23213c5bc48..00000000000 --- a/_downloads/53007feeeb9a1b69723a89cd292088ca/span_regions.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/53007feeeb9a1b69723a89cd292088ca/span_regions.ipynb \ No newline at end of file diff --git a/_downloads/53150d70861e754b683d68a7a8b03443/dark_background.py b/_downloads/53150d70861e754b683d68a7a8b03443/dark_background.py deleted file mode 120000 index cce55efaab5..00000000000 --- a/_downloads/53150d70861e754b683d68a7a8b03443/dark_background.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/53150d70861e754b683d68a7a8b03443/dark_background.py \ No newline at end of file diff --git a/_downloads/531ba816d3bacae862da3568d91d0603/line_demo_dash_control.py b/_downloads/531ba816d3bacae862da3568d91d0603/line_demo_dash_control.py deleted file mode 120000 index bfb5ef593b1..00000000000 --- a/_downloads/531ba816d3bacae862da3568d91d0603/line_demo_dash_control.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/531ba816d3bacae862da3568d91d0603/line_demo_dash_control.py \ No newline at end of file diff --git a/_downloads/5322eaf10819d4eeb96fe3101be1913b/ggplot.ipynb b/_downloads/5322eaf10819d4eeb96fe3101be1913b/ggplot.ipynb deleted file mode 120000 index bf6fd808553..00000000000 --- a/_downloads/5322eaf10819d4eeb96fe3101be1913b/ggplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5322eaf10819d4eeb96fe3101be1913b/ggplot.ipynb \ No newline at end of file diff --git a/_downloads/53230a8355ca9e06d2173bf83f71a6de/polar_scatter.ipynb b/_downloads/53230a8355ca9e06d2173bf83f71a6de/polar_scatter.ipynb deleted file mode 100644 index a2e757d47ee..00000000000 --- a/_downloads/53230a8355ca9e06d2173bf83f71a6de/polar_scatter.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plot on polar axis\n\n\nSize increases radially in this example and color increases with angle\n(just to verify the symbols are being scattered correctly).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# Compute areas and colors\nN = 150\nr = 2 * np.random.rand(N)\ntheta = 2 * np.pi * np.random.rand(N)\narea = 200 * r**2\ncolors = theta\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='polar')\nc = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Scatter plot on polar axis, with offset origin\n----------------------------------------------\n\nThe main difference with the previous plot is the configuration of the origin\nradius, producing an annulus. Additionally, the theta zero location is set to\nrotate the plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(111, polar=True)\nc = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)\n\nax.set_rorigin(-2.5)\nax.set_theta_zero_location('W', offset=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Scatter plot on polar axis confined to a sector\n-----------------------------------------------\n\nThe main difference with the previous plots is the configuration of the\ntheta start and end limits, producing a sector instead of a full circle.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(111, polar=True)\nc = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)\n\nax.set_thetamin(45)\nax.set_thetamax(135)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.scatter\nmatplotlib.pyplot.scatter\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes.set_rorigin\nmatplotlib.projections.polar.PolarAxes.set_theta_zero_location\nmatplotlib.projections.polar.PolarAxes.set_thetamin\nmatplotlib.projections.polar.PolarAxes.set_thetamax" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5338ee4cbadb24f31e9dd0465c609cb1/boxplot_vs_violin.ipynb b/_downloads/5338ee4cbadb24f31e9dd0465c609cb1/boxplot_vs_violin.ipynb deleted file mode 120000 index be250707b2a..00000000000 --- a/_downloads/5338ee4cbadb24f31e9dd0465c609cb1/boxplot_vs_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5338ee4cbadb24f31e9dd0465c609cb1/boxplot_vs_violin.ipynb \ No newline at end of file diff --git a/_downloads/534707238f9dbb23f6e17e815b9a3f46/usetex.ipynb b/_downloads/534707238f9dbb23f6e17e815b9a3f46/usetex.ipynb deleted file mode 100644 index 0b1ce07366a..00000000000 --- a/_downloads/534707238f9dbb23f6e17e815b9a3f46/usetex.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*************************\nText rendering With LaTeX\n*************************\n\nRendering text with LaTeX in Matplotlib.\n\nMatplotlib has the option to use LaTeX to manage all text layout. This\noption is available with the following backends:\n\n* Agg\n* PS\n* PDF\n\nThe LaTeX option is activated by setting ``text.usetex : True`` in your rc\nsettings. Text handling with matplotlib's LaTeX support is slower than\nmatplotlib's very capable :doc:`mathtext `, but is\nmore flexible, since different LaTeX packages (font packages, math packages,\netc.) can be used. The results can be striking, especially when you take care\nto use the same fonts in your figures as in the main document.\n\nMatplotlib's LaTeX support requires a working LaTeX_ installation, dvipng_\n(which may be included with your LaTeX installation), and Ghostscript_\n(GPL Ghostscript 9.0 or later is required). The executables for these\nexternal dependencies must all be located on your :envvar:`PATH`.\n\nThere are a couple of options to mention, which can be changed using\n:doc:`rc settings `. Here is an example\nmatplotlibrc file::\n\n font.family : serif\n font.serif : Times, Palatino, New Century Schoolbook, Bookman, Computer Modern Roman\n font.sans-serif : Helvetica, Avant Garde, Computer Modern Sans serif\n font.cursive : Zapf Chancery\n font.monospace : Courier, Computer Modern Typewriter\n\n text.usetex : true\n\nThe first valid font in each family is the one that will be loaded. If the\nfonts are not specified, the Computer Modern fonts are used by default. All of\nthe other fonts are Adobe fonts. Times and Palatino each have their own\naccompanying math fonts, while the other Adobe serif fonts make use of the\nComputer Modern math fonts. See the PSNFSS_ documentation for more details.\n\nTo use LaTeX and select Helvetica as the default font, without editing\nmatplotlibrc use::\n\n from matplotlib import rc\n rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})\n ## for Palatino and other serif fonts use:\n #rc('font',**{'family':'serif','serif':['Palatino']})\n rc('text', usetex=True)\n\nHere is the standard example, `tex_demo.py`:\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/tex_demo.html\n :align: center\n :scale: 50\n\n TeX Demo\n\nNote that display math mode (``$$ e=mc^2 $$``) is not supported, but adding the\ncommand ``\\displaystyle``, as in `tex_demo.py`, will produce the same\nresults.\n\n

Note

Certain characters require special escaping in TeX, such as::\n\n # $ % & ~ _ ^ \\ { } \\( \\) \\[ \\]\n\n Therefore, these characters will behave differently depending on\n the rcParam ``text.usetex`` flag.

\n\n\nusetex with unicode\n===================\n\nIt is also possible to use unicode strings with the LaTeX text manager, here is\nan example taken from `tex_demo.py`. The axis labels include Unicode text:\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/tex_demo.html\n :align: center\n :scale: 50\n\n TeX Unicode Demo\n\n\nPostscript options\n==================\n\nIn order to produce encapsulated postscript files that can be embedded in a new\nLaTeX document, the default behavior of matplotlib is to distill the output,\nwhich removes some postscript operators used by LaTeX that are illegal in an\neps file. This step produces results which may be unacceptable to some users,\nbecause the text is coarsely rasterized and converted to bitmaps, which are not\nscalable like standard postscript, and the text is not searchable. One\nworkaround is to set ``ps.distiller.res`` to a higher value (perhaps 6000)\nin your rc settings, which will produce larger files but may look better and\nscale reasonably. A better workaround, which requires Poppler_ or Xpdf_, can be\nactivated by changing the ``ps.usedistiller`` rc setting to ``xpdf``. This\nalternative produces postscript without rasterizing text, so it scales\nproperly, can be edited in Adobe Illustrator, and searched text in pdf\ndocuments.\n\n\nPossible hangups\n================\n\n* On Windows, the :envvar:`PATH` environment variable may need to be modified\n to include the directories containing the latex, dvipng and ghostscript\n executables. See `environment-variables` and\n `setting-windows-environment-variables` for details.\n\n* Using MiKTeX with Computer Modern fonts, if you get odd \\*Agg and PNG\n results, go to MiKTeX/Options and update your format files\n\n* On Ubuntu and Gentoo, the base texlive install does not ship with\n the type1cm package. You may need to install some of the extra\n packages to get all the goodies that come bundled with other latex\n distributions.\n\n* Some progress has been made so matplotlib uses the dvi files\n directly for text layout. This allows latex to be used for text\n layout with the pdf and svg backends, as well as the \\*Agg and PS\n backends. In the future, a latex installation may be the only\n external dependency.\n\n\nTroubleshooting\n===============\n\n* Try deleting your :file:`.matplotlib/tex.cache` directory. If you don't know\n where to find :file:`.matplotlib`, see `locating-matplotlib-config-dir`.\n\n* Make sure LaTeX, dvipng and ghostscript are each working and on your\n :envvar:`PATH`.\n\n* Make sure what you are trying to do is possible in a LaTeX document,\n that your LaTeX syntax is valid and that you are using raw strings\n if necessary to avoid unintended escape sequences.\n\n* Most problems reported on the mailing list have been cleared up by\n upgrading Ghostscript_. If possible, please try upgrading to the\n latest release before reporting problems to the list.\n\n* The ``text.latex.preamble`` rc setting is not officially supported. This\n option provides lots of flexibility, and lots of ways to cause\n problems. Please disable this option before reporting problems to\n the mailing list.\n\n* If you still need help, please see `reporting-problems`\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/534f8242e1d84967abbb910ad6dfc4f0/transforms_tutorial.py b/_downloads/534f8242e1d84967abbb910ad6dfc4f0/transforms_tutorial.py deleted file mode 120000 index 36592483679..00000000000 --- a/_downloads/534f8242e1d84967abbb910ad6dfc4f0/transforms_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/534f8242e1d84967abbb910ad6dfc4f0/transforms_tutorial.py \ No newline at end of file diff --git a/_downloads/5351c8cc8ca7c2584889ae98dcb38e53/date.py b/_downloads/5351c8cc8ca7c2584889ae98dcb38e53/date.py deleted file mode 100644 index 72beeace35f..00000000000 --- a/_downloads/5351c8cc8ca7c2584889ae98dcb38e53/date.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -================ -Date tick labels -================ - -Show how to make date plots in Matplotlib using date tick locators and -formatters. See :doc:`/gallery/ticks_and_spines/major_minor_demo` for more -information on controlling major and minor ticks. - -All matplotlib date plotting is done by converting date instances into days -since 0001-01-01 00:00:00 UTC plus one day (for historical reasons). The -conversion, tick locating and formatting is done behind the scenes so this -is most transparent to you. The dates module provides several converter -functions `matplotlib.dates.date2num` and `matplotlib.dates.num2date`. -These can convert between `datetime.datetime` objects and -:class:`numpy.datetime64` objects. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.dates as mdates -import matplotlib.cbook as cbook - -years = mdates.YearLocator() # every year -months = mdates.MonthLocator() # every month -years_fmt = mdates.DateFormatter('%Y') - -# Load a numpy structured array from yahoo csv data with fields date, open, -# close, volume, adj_close from the mpl-data/example directory. This array -# stores the date as an np.datetime64 with a day unit ('D') in the 'date' -# column. -with cbook.get_sample_data('goog.npz') as datafile: - data = np.load(datafile)['price_data'] - -fig, ax = plt.subplots() -ax.plot('date', 'adj_close', data=data) - -# format the ticks -ax.xaxis.set_major_locator(years) -ax.xaxis.set_major_formatter(years_fmt) -ax.xaxis.set_minor_locator(months) - -# round to nearest years. -datemin = np.datetime64(data['date'][0], 'Y') -datemax = np.datetime64(data['date'][-1], 'Y') + np.timedelta64(1, 'Y') -ax.set_xlim(datemin, datemax) - -# format the coords message box -ax.format_xdata = mdates.DateFormatter('%Y-%m-%d') -ax.format_ydata = lambda x: '$%1.2f' % x # format the price. -ax.grid(True) - -# rotates and right aligns the x labels, and moves the bottom of the -# axes up to make room for them -fig.autofmt_xdate() - -plt.show() diff --git a/_downloads/53546cdf4593d404e4c5c109b60d6b2f/connect_simple01.ipynb b/_downloads/53546cdf4593d404e4c5c109b60d6b2f/connect_simple01.ipynb deleted file mode 120000 index e22153725b0..00000000000 --- a/_downloads/53546cdf4593d404e4c5c109b60d6b2f/connect_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/53546cdf4593d404e4c5c109b60d6b2f/connect_simple01.ipynb \ No newline at end of file diff --git a/_downloads/5357ba9a529ebe2103df7f9589aaf76e/gallery_python.zip b/_downloads/5357ba9a529ebe2103df7f9589aaf76e/gallery_python.zip deleted file mode 120000 index a728e31479e..00000000000 --- a/_downloads/5357ba9a529ebe2103df7f9589aaf76e/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5357ba9a529ebe2103df7f9589aaf76e/gallery_python.zip \ No newline at end of file diff --git a/_downloads/535f1c08124c14d72d66ebe258383fbe/tutorials_jupyter.zip b/_downloads/535f1c08124c14d72d66ebe258383fbe/tutorials_jupyter.zip deleted file mode 120000 index fb476c1d789..00000000000 --- a/_downloads/535f1c08124c14d72d66ebe258383fbe/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/535f1c08124c14d72d66ebe258383fbe/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/536045f608e1433e5306007360d32410/color_cycle_default.ipynb b/_downloads/536045f608e1433e5306007360d32410/color_cycle_default.ipynb deleted file mode 100644 index f32ef857c93..00000000000 --- a/_downloads/536045f608e1433e5306007360d32410/color_cycle_default.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colors in the default property cycle\n\n\nDisplay the colors from the default prop_cycle, which is obtained from the\n:doc:`rc parameters`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nprop_cycle = plt.rcParams['axes.prop_cycle']\ncolors = prop_cycle.by_key()['color']\n\nlwbase = plt.rcParams['lines.linewidth']\nthin = lwbase / 2\nthick = lwbase * 3\n\nfig, axs = plt.subplots(nrows=2, ncols=2, sharex=True, sharey=True)\nfor icol in range(2):\n if icol == 0:\n lwx, lwy = thin, lwbase\n else:\n lwx, lwy = lwbase, thick\n for irow in range(2):\n for i, color in enumerate(colors):\n axs[irow, icol].axhline(i, color=color, lw=lwx)\n axs[irow, icol].axvline(i, color=color, lw=lwy)\n\n axs[1, icol].set_facecolor('k')\n axs[1, icol].xaxis.set_ticks(np.arange(0, 10, 2))\n axs[0, icol].set_title('line widths (pts): %g, %g' % (lwx, lwy),\n fontsize='medium')\n\nfor irow in range(2):\n axs[irow, 0].yaxis.set_ticks(np.arange(0, 10, 2))\n\nfig.suptitle('Colors in the default prop_cycle', fontsize='large')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.axhline\nmatplotlib.axes.Axes.axvline\nmatplotlib.pyplot.axhline\nmatplotlib.pyplot.axvline\nmatplotlib.axes.Axes.set_facecolor\nmatplotlib.figure.Figure.suptitle" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/536a7557a09c50fdd166e7930be16bbc/histogram_path.py b/_downloads/536a7557a09c50fdd166e7930be16bbc/histogram_path.py deleted file mode 120000 index 6c72974afe2..00000000000 --- a/_downloads/536a7557a09c50fdd166e7930be16bbc/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/536a7557a09c50fdd166e7930be16bbc/histogram_path.py \ No newline at end of file diff --git a/_downloads/539568ee948800c90731a8411624b1b2/bar_stacked.ipynb b/_downloads/539568ee948800c90731a8411624b1b2/bar_stacked.ipynb deleted file mode 100644 index fde9c223ca3..00000000000 --- a/_downloads/539568ee948800c90731a8411624b1b2/bar_stacked.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Stacked Bar Graph\n\n\nThis is an example of creating a stacked bar plot with error bars\nusing `~matplotlib.pyplot.bar`. Note the parameters *yerr* used for\nerror bars, and *bottom* to stack the women's bars on top of the men's\nbars.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nN = 5\nmenMeans = (20, 35, 30, 35, 27)\nwomenMeans = (25, 32, 34, 20, 25)\nmenStd = (2, 3, 4, 1, 2)\nwomenStd = (3, 5, 2, 3, 3)\nind = np.arange(N) # the x locations for the groups\nwidth = 0.35 # the width of the bars: can also be len(x) sequence\n\np1 = plt.bar(ind, menMeans, width, yerr=menStd)\np2 = plt.bar(ind, womenMeans, width,\n bottom=menMeans, yerr=womenStd)\n\nplt.ylabel('Scores')\nplt.title('Scores by group and gender')\nplt.xticks(ind, ('G1', 'G2', 'G3', 'G4', 'G5'))\nplt.yticks(np.arange(0, 81, 10))\nplt.legend((p1[0], p2[0]), ('Men', 'Women'))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5397c6ff8f61d4375f2fa83fa0eaf135/histogram_path.py b/_downloads/5397c6ff8f61d4375f2fa83fa0eaf135/histogram_path.py deleted file mode 120000 index 164d545b140..00000000000 --- a/_downloads/5397c6ff8f61d4375f2fa83fa0eaf135/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5397c6ff8f61d4375f2fa83fa0eaf135/histogram_path.py \ No newline at end of file diff --git a/_downloads/53a48520b8d3a25b3d9aded87e5c54da/table_demo.py b/_downloads/53a48520b8d3a25b3d9aded87e5c54da/table_demo.py deleted file mode 120000 index a77a5f68800..00000000000 --- a/_downloads/53a48520b8d3a25b3d9aded87e5c54da/table_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/53a48520b8d3a25b3d9aded87e5c54da/table_demo.py \ No newline at end of file diff --git a/_downloads/53a74678188ab0b3f2aeb2edb30669f1/rectangle_selector.ipynb b/_downloads/53a74678188ab0b3f2aeb2edb30669f1/rectangle_selector.ipynb deleted file mode 120000 index f3818cf8010..00000000000 --- a/_downloads/53a74678188ab0b3f2aeb2edb30669f1/rectangle_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/53a74678188ab0b3f2aeb2edb30669f1/rectangle_selector.ipynb \ No newline at end of file diff --git a/_downloads/53ad2dfce374782b026033b13d1a3847/annotate_simple03.ipynb b/_downloads/53ad2dfce374782b026033b13d1a3847/annotate_simple03.ipynb deleted file mode 120000 index 3eaa6531546..00000000000 --- a/_downloads/53ad2dfce374782b026033b13d1a3847/annotate_simple03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/53ad2dfce374782b026033b13d1a3847/annotate_simple03.ipynb \ No newline at end of file diff --git a/_downloads/53b0a2575948fc1542a9e3953b55d8d2/share_axis_lims_views.py b/_downloads/53b0a2575948fc1542a9e3953b55d8d2/share_axis_lims_views.py deleted file mode 120000 index 9f1653f22af..00000000000 --- a/_downloads/53b0a2575948fc1542a9e3953b55d8d2/share_axis_lims_views.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/53b0a2575948fc1542a9e3953b55d8d2/share_axis_lims_views.py \ No newline at end of file diff --git a/_downloads/53b1e6bf490028b4f2804eb2d3b2555e/text_intro.py b/_downloads/53b1e6bf490028b4f2804eb2d3b2555e/text_intro.py deleted file mode 120000 index d61d0cc18af..00000000000 --- a/_downloads/53b1e6bf490028b4f2804eb2d3b2555e/text_intro.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/53b1e6bf490028b4f2804eb2d3b2555e/text_intro.py \ No newline at end of file diff --git a/_downloads/53b3de92aaa59056a513c1fbc44188e0/pie_and_donut_labels.py b/_downloads/53b3de92aaa59056a513c1fbc44188e0/pie_and_donut_labels.py deleted file mode 120000 index c4561b9dbbf..00000000000 --- a/_downloads/53b3de92aaa59056a513c1fbc44188e0/pie_and_donut_labels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/53b3de92aaa59056a513c1fbc44188e0/pie_and_donut_labels.py \ No newline at end of file diff --git a/_downloads/53c07cf78c5cd8f91b5a3a55e8f988d6/font_table.py b/_downloads/53c07cf78c5cd8f91b5a3a55e8f988d6/font_table.py deleted file mode 120000 index 42ae7bcc15b..00000000000 --- a/_downloads/53c07cf78c5cd8f91b5a3a55e8f988d6/font_table.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/53c07cf78c5cd8f91b5a3a55e8f988d6/font_table.py \ No newline at end of file diff --git a/_downloads/53c11de3180108ace3e1cf5d746ba9ad/polar_legend.py b/_downloads/53c11de3180108ace3e1cf5d746ba9ad/polar_legend.py deleted file mode 120000 index b50662befd4..00000000000 --- a/_downloads/53c11de3180108ace3e1cf5d746ba9ad/polar_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/53c11de3180108ace3e1cf5d746ba9ad/polar_legend.py \ No newline at end of file diff --git a/_downloads/53c85146f2ac6e6ff7c20b3f344540b3/surface3d_3.ipynb b/_downloads/53c85146f2ac6e6ff7c20b3f344540b3/surface3d_3.ipynb deleted file mode 120000 index 95031bb2bf1..00000000000 --- a/_downloads/53c85146f2ac6e6ff7c20b3f344540b3/surface3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/53c85146f2ac6e6ff7c20b3f344540b3/surface3d_3.ipynb \ No newline at end of file diff --git a/_downloads/53ccc26006ca9822a82e3677fafc51ad/colormapnorms.ipynb b/_downloads/53ccc26006ca9822a82e3677fafc51ad/colormapnorms.ipynb deleted file mode 120000 index 6a24f92fd2e..00000000000 --- a/_downloads/53ccc26006ca9822a82e3677fafc51ad/colormapnorms.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/53ccc26006ca9822a82e3677fafc51ad/colormapnorms.ipynb \ No newline at end of file diff --git a/_downloads/53efeba5baa3f7177992bebda1ea4de3/pgf_fonts.ipynb b/_downloads/53efeba5baa3f7177992bebda1ea4de3/pgf_fonts.ipynb deleted file mode 100644 index 44f250a37cb..00000000000 --- a/_downloads/53efeba5baa3f7177992bebda1ea4de3/pgf_fonts.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pgf Fonts\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.rcParams.update({\n \"font.family\": \"serif\",\n \"font.serif\": [], # use latex default serif font\n \"font.sans-serif\": [\"DejaVu Sans\"], # use a specific sans-serif font\n})\n\nplt.figure(figsize=(4.5, 2.5))\nplt.plot(range(5))\nplt.text(0.5, 3., \"serif\")\nplt.text(0.5, 2., \"monospace\", family=\"monospace\")\nplt.text(2.5, 2., \"sans-serif\", family=\"sans-serif\")\nplt.text(2.5, 1., \"comic sans\", family=\"Comic Sans MS\")\nplt.xlabel(\"\u00b5 is not $\\\\mu$\")\nplt.tight_layout(.5)\n\nplt.savefig(\"pgf_fonts.pdf\")\nplt.savefig(\"pgf_fonts.png\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/53f814902fa2e7ce70304f7fd65c7589/filled_step.py b/_downloads/53f814902fa2e7ce70304f7fd65c7589/filled_step.py deleted file mode 120000 index 6a883ba885a..00000000000 --- a/_downloads/53f814902fa2e7ce70304f7fd65c7589/filled_step.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/53f814902fa2e7ce70304f7fd65c7589/filled_step.py \ No newline at end of file diff --git a/_downloads/53fa1e6ca3d583be54d973726f8b2994/double_pendulum_sgskip.ipynb b/_downloads/53fa1e6ca3d583be54d973726f8b2994/double_pendulum_sgskip.ipynb deleted file mode 120000 index 4e98dbeea0b..00000000000 --- a/_downloads/53fa1e6ca3d583be54d973726f8b2994/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/53fa1e6ca3d583be54d973726f8b2994/double_pendulum_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/5405ca01e731d0ea173a5010801b6308/demo_text_rotation_mode.py b/_downloads/5405ca01e731d0ea173a5010801b6308/demo_text_rotation_mode.py deleted file mode 120000 index 69791ce4a13..00000000000 --- a/_downloads/5405ca01e731d0ea173a5010801b6308/demo_text_rotation_mode.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5405ca01e731d0ea173a5010801b6308/demo_text_rotation_mode.py \ No newline at end of file diff --git a/_downloads/5406e12b627d6f1a2b6e3b1da009fc86/fahrenheit_celsius_scales.ipynb b/_downloads/5406e12b627d6f1a2b6e3b1da009fc86/fahrenheit_celsius_scales.ipynb deleted file mode 120000 index 3d5eaa7aefd..00000000000 --- a/_downloads/5406e12b627d6f1a2b6e3b1da009fc86/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5406e12b627d6f1a2b6e3b1da009fc86/fahrenheit_celsius_scales.ipynb \ No newline at end of file diff --git a/_downloads/5408ae4a59d84e4ed58ef0d76f0089a7/markevery_demo.py b/_downloads/5408ae4a59d84e4ed58ef0d76f0089a7/markevery_demo.py deleted file mode 120000 index 181f0cab027..00000000000 --- a/_downloads/5408ae4a59d84e4ed58ef0d76f0089a7/markevery_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5408ae4a59d84e4ed58ef0d76f0089a7/markevery_demo.py \ No newline at end of file diff --git a/_downloads/540eb5d3699f7378805cf748c6491e0a/anatomy.ipynb b/_downloads/540eb5d3699f7378805cf748c6491e0a/anatomy.ipynb deleted file mode 100644 index c1aabc08423..00000000000 --- a/_downloads/540eb5d3699f7378805cf748c6491e0a/anatomy.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anatomy of a figure\n\n\nThis figure shows the name of several matplotlib elements composing a figure\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import AutoMinorLocator, MultipleLocator, FuncFormatter\n\nnp.random.seed(19680801)\n\nX = np.linspace(0.5, 3.5, 100)\nY1 = 3+np.cos(X)\nY2 = 1+np.cos(1+X/0.75)/2\nY3 = np.random.uniform(Y1, Y2, len(X))\n\nfig = plt.figure(figsize=(8, 8))\nax = fig.add_subplot(1, 1, 1, aspect=1)\n\n\ndef minor_tick(x, pos):\n if not x % 1.0:\n return \"\"\n return \"%.2f\" % x\n\nax.xaxis.set_major_locator(MultipleLocator(1.000))\nax.xaxis.set_minor_locator(AutoMinorLocator(4))\nax.yaxis.set_major_locator(MultipleLocator(1.000))\nax.yaxis.set_minor_locator(AutoMinorLocator(4))\nax.xaxis.set_minor_formatter(FuncFormatter(minor_tick))\n\nax.set_xlim(0, 4)\nax.set_ylim(0, 4)\n\nax.tick_params(which='major', width=1.0)\nax.tick_params(which='major', length=10)\nax.tick_params(which='minor', width=1.0, labelsize=10)\nax.tick_params(which='minor', length=5, labelsize=10, labelcolor='0.25')\n\nax.grid(linestyle=\"--\", linewidth=0.5, color='.25', zorder=-10)\n\nax.plot(X, Y1, c=(0.25, 0.25, 1.00), lw=2, label=\"Blue signal\", zorder=10)\nax.plot(X, Y2, c=(1.00, 0.25, 0.25), lw=2, label=\"Red signal\")\nax.plot(X, Y3, linewidth=0,\n marker='o', markerfacecolor='w', markeredgecolor='k')\n\nax.set_title(\"Anatomy of a figure\", fontsize=20, verticalalignment='bottom')\nax.set_xlabel(\"X axis label\")\nax.set_ylabel(\"Y axis label\")\n\nax.legend()\n\n\ndef circle(x, y, radius=0.15):\n from matplotlib.patches import Circle\n from matplotlib.patheffects import withStroke\n circle = Circle((x, y), radius, clip_on=False, zorder=10, linewidth=1,\n edgecolor='black', facecolor=(0, 0, 0, .0125),\n path_effects=[withStroke(linewidth=5, foreground='w')])\n ax.add_artist(circle)\n\n\ndef text(x, y, text):\n ax.text(x, y, text, backgroundcolor=\"white\",\n ha='center', va='top', weight='bold', color='blue')\n\n\n# Minor tick\ncircle(0.50, -0.10)\ntext(0.50, -0.32, \"Minor tick label\")\n\n# Major tick\ncircle(-0.03, 4.00)\ntext(0.03, 3.80, \"Major tick\")\n\n# Minor tick\ncircle(0.00, 3.50)\ntext(0.00, 3.30, \"Minor tick\")\n\n# Major tick label\ncircle(-0.15, 3.00)\ntext(-0.15, 2.80, \"Major tick label\")\n\n# X Label\ncircle(1.80, -0.27)\ntext(1.80, -0.45, \"X axis label\")\n\n# Y Label\ncircle(-0.27, 1.80)\ntext(-0.27, 1.6, \"Y axis label\")\n\n# Title\ncircle(1.60, 4.13)\ntext(1.60, 3.93, \"Title\")\n\n# Blue plot\ncircle(1.75, 2.80)\ntext(1.75, 2.60, \"Line\\n(line plot)\")\n\n# Red plot\ncircle(1.20, 0.60)\ntext(1.20, 0.40, \"Line\\n(line plot)\")\n\n# Scatter plot\ncircle(3.20, 1.75)\ntext(3.20, 1.55, \"Markers\\n(scatter plot)\")\n\n# Grid\ncircle(3.00, 3.00)\ntext(3.00, 2.80, \"Grid\")\n\n# Legend\ncircle(3.70, 3.80)\ntext(3.70, 3.60, \"Legend\")\n\n# Axes\ncircle(0.5, 0.5)\ntext(0.5, 0.3, \"Axes\")\n\n# Figure\ncircle(-0.3, 0.65)\ntext(-0.3, 0.45, \"Figure\")\n\ncolor = 'blue'\nax.annotate('Spines', xy=(4.0, 0.35), xytext=(3.3, 0.5),\n weight='bold', color=color,\n arrowprops=dict(arrowstyle='->',\n connectionstyle=\"arc3\",\n color=color))\n\nax.annotate('', xy=(3.15, 0.0), xytext=(3.45, 0.45),\n weight='bold', color=color,\n arrowprops=dict(arrowstyle='->',\n connectionstyle=\"arc3\",\n color=color))\n\nax.text(4.0, -0.4, \"Made with http://matplotlib.org\",\n fontsize=10, ha=\"right\", color='.5')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/541a505cfd94a507f146eeaef20e938d/simple_colorbar.py b/_downloads/541a505cfd94a507f146eeaef20e938d/simple_colorbar.py deleted file mode 120000 index e61ca958bf0..00000000000 --- a/_downloads/541a505cfd94a507f146eeaef20e938d/simple_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/541a505cfd94a507f146eeaef20e938d/simple_colorbar.py \ No newline at end of file diff --git a/_downloads/541abbbe84be0dff96ebed2b9031dfc8/barb_demo.ipynb b/_downloads/541abbbe84be0dff96ebed2b9031dfc8/barb_demo.ipynb deleted file mode 100644 index 5cd191983bb..00000000000 --- a/_downloads/541abbbe84be0dff96ebed2b9031dfc8/barb_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Barb Demo\n\n\nDemonstration of wind barb plots\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.linspace(-5, 5, 5)\nX, Y = np.meshgrid(x, x)\nU, V = 12 * X, 12 * Y\n\ndata = [(-1.5, .5, -6, -6),\n (1, -1, -46, 46),\n (-3, -1, 11, -11),\n (1, 1.5, 80, 80),\n (0.5, 0.25, 25, 15),\n (-1.5, -0.5, -5, 40)]\n\ndata = np.array(data, dtype=[('x', np.float32), ('y', np.float32),\n ('u', np.float32), ('v', np.float32)])\n\nfig1, axs1 = plt.subplots(nrows=2, ncols=2)\n# Default parameters, uniform grid\naxs1[0, 0].barbs(X, Y, U, V)\n\n# Arbitrary set of vectors, make them longer and change the pivot point\n# (point around which they're rotated) to be the middle\naxs1[0, 1].barbs(\n data['x'], data['y'], data['u'], data['v'], length=8, pivot='middle')\n\n# Showing colormapping with uniform grid. Fill the circle for an empty barb,\n# don't round the values, and change some of the size parameters\naxs1[1, 0].barbs(\n X, Y, U, V, np.sqrt(U ** 2 + V ** 2), fill_empty=True, rounding=False,\n sizes=dict(emptybarb=0.25, spacing=0.2, height=0.3))\n\n# Change colors as well as the increments for parts of the barbs\naxs1[1, 1].barbs(data['x'], data['y'], data['u'], data['v'], flagcolor='r',\n barbcolor=['b', 'g'], flip_barb=True,\n barb_increments=dict(half=10, full=20, flag=100))\n\n# Masked arrays are also supported\nmasked_u = np.ma.masked_array(data['u'])\nmasked_u[4] = 1000 # Bad value that should not be plotted when masked\nmasked_u[4] = np.ma.masked\n\n# Identical plot to panel 2 in the first figure, but with the point at\n# (0.5, 0.25) missing (masked)\nfig2, ax2 = plt.subplots()\nax2.barbs(data['x'], data['y'], masked_u, data['v'], length=8, pivot='middle')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.barbs\nmatplotlib.pyplot.barbs" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/542404825d92daced1494d1b62aad0cf/rainbow_text.py b/_downloads/542404825d92daced1494d1b62aad0cf/rainbow_text.py deleted file mode 120000 index 6db6c59c739..00000000000 --- a/_downloads/542404825d92daced1494d1b62aad0cf/rainbow_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/542404825d92daced1494d1b62aad0cf/rainbow_text.py \ No newline at end of file diff --git a/_downloads/54264e617b896bd811625bf3f1e487bd/figlegend_demo.ipynb b/_downloads/54264e617b896bd811625bf3f1e487bd/figlegend_demo.ipynb deleted file mode 100644 index 7c2cd4d0506..00000000000 --- a/_downloads/54264e617b896bd811625bf3f1e487bd/figlegend_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Figure legend demo\n\n\nInstead of plotting a legend on each axis, a legend for all the artists on all\nthe sub-axes of a figure can be plotted instead.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, axs = plt.subplots(1, 2)\n\nx = np.arange(0.0, 2.0, 0.02)\ny1 = np.sin(2 * np.pi * x)\ny2 = np.exp(-x)\nl1, = axs[0].plot(x, y1)\nl2, = axs[0].plot(x, y2, marker='o')\n\ny3 = np.sin(4 * np.pi * x)\ny4 = np.exp(-2 * x)\nl3, = axs[1].plot(x, y3, color='tab:green')\nl4, = axs[1].plot(x, y4, color='tab:red', marker='^')\n\nfig.legend((l1, l2), ('Line 1', 'Line 2'), 'upper left')\nfig.legend((l3, l4), ('Line 3', 'Line 4'), 'upper right')\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/542f093a429e99e18a368670597c0566/skewt.py b/_downloads/542f093a429e99e18a368670597c0566/skewt.py deleted file mode 120000 index b6ccb707384..00000000000 --- a/_downloads/542f093a429e99e18a368670597c0566/skewt.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/542f093a429e99e18a368670597c0566/skewt.py \ No newline at end of file diff --git a/_downloads/5435886f4a1f49cd0b014f2f0528a67a/demo_gridspec03.py b/_downloads/5435886f4a1f49cd0b014f2f0528a67a/demo_gridspec03.py deleted file mode 100644 index 9dfd5f479f2..00000000000 --- a/_downloads/5435886f4a1f49cd0b014f2f0528a67a/demo_gridspec03.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -============= -GridSpec demo -============= - -This example demonstrates the use of `GridSpec` to generate subplots, -the control of the relative sizes of subplots with *width_ratios* and -*height_ratios*, and the control of the spacing around and between subplots -using subplot params (*left*, *right*, *bottom*, *top*, *wspace*, and -*hspace*). -""" - -import matplotlib.pyplot as plt -from matplotlib.gridspec import GridSpec - - -def annotate_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - - -fig = plt.figure() -fig.suptitle("Controlling subplot sizes with width_ratios and height_ratios") - -gs = GridSpec(2, 2, width_ratios=[1, 2], height_ratios=[4, 1]) -ax1 = fig.add_subplot(gs[0]) -ax2 = fig.add_subplot(gs[1]) -ax3 = fig.add_subplot(gs[2]) -ax4 = fig.add_subplot(gs[3]) - -annotate_axes(fig) - - -fig = plt.figure() -fig.suptitle("Controlling spacing around and between subplots") - -gs1 = GridSpec(3, 3, left=0.05, right=0.48, wspace=0.05) -ax1 = fig.add_subplot(gs1[:-1, :]) -ax2 = fig.add_subplot(gs1[-1, :-1]) -ax3 = fig.add_subplot(gs1[-1, -1]) - -gs2 = GridSpec(3, 3, left=0.55, right=0.98, hspace=0.05) -ax4 = fig.add_subplot(gs2[:, :-1]) -ax5 = fig.add_subplot(gs2[:-1, -1]) -ax6 = fig.add_subplot(gs2[-1, -1]) - -annotate_axes(fig) - -plt.show() diff --git a/_downloads/544694f0e337aa185c323f4ca344a3af/text_commands.ipynb b/_downloads/544694f0e337aa185c323f4ca344a3af/text_commands.ipynb deleted file mode 120000 index b5fb5bed24b..00000000000 --- a/_downloads/544694f0e337aa185c323f4ca344a3af/text_commands.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/544694f0e337aa185c323f4ca344a3af/text_commands.ipynb \ No newline at end of file diff --git a/_downloads/54501e30d0a29665618afe715673cb41/gridspec.py b/_downloads/54501e30d0a29665618afe715673cb41/gridspec.py deleted file mode 100644 index df46971cd16..00000000000 --- a/_downloads/54501e30d0a29665618afe715673cb41/gridspec.py +++ /dev/null @@ -1,282 +0,0 @@ -""" -============================================================= -Customizing Figure Layouts Using GridSpec and Other Functions -============================================================= - -How to create grid-shaped combinations of axes. - - :func:`~matplotlib.pyplot.subplots` - Perhaps the primary function used to create figures and axes. - It's also similar to :func:`.matplotlib.pyplot.subplot`, - but creates and places all axes on the figure at once. See also - `matplotlib.Figure.subplots`. - - :class:`~matplotlib.gridspec.GridSpec` - Specifies the geometry of the grid that a subplot will be - placed. The number of rows and number of columns of the grid - need to be set. Optionally, the subplot layout parameters - (e.g., left, right, etc.) can be tuned. - - :class:`~matplotlib.gridspec.SubplotSpec` - Specifies the location of the subplot in the given *GridSpec*. - - :func:`~matplotlib.pyplot.subplot2grid` - A helper function that is similar to - :func:`~matplotlib.pyplot.subplot`, - but uses 0-based indexing and let subplot to occupy multiple cells. - This function is not covered in this tutorial. - -""" - -import matplotlib -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - -############################################################################ -# Basic Quickstart Guide -# ====================== -# -# These first two examples show how to create a basic 2-by-2 grid using -# both :func:`~matplotlib.pyplot.subplots` and :mod:`~matplotlib.gridspec`. -# -# Using :func:`~matplotlib.pyplot.subplots` is quite simple. -# It returns a :class:`~matplotlib.figure.Figure` instance and an array of -# :class:`~matplotlib.axes.Axes` objects. - -fig1, f1_axes = plt.subplots(ncols=2, nrows=2, constrained_layout=True) - -############################################################################ -# For a simple use case such as this, :mod:`~matplotlib.gridspec` is -# perhaps overly verbose. -# You have to create the figure and :class:`~matplotlib.gridspec.GridSpec` -# instance separately, then pass elements of gridspec instance to the -# :func:`~matplotlib.figure.Figure.add_subplot` method to create the axes -# objects. -# The elements of the gridspec are accessed in generally the same manner as -# numpy arrays. - -fig2 = plt.figure(constrained_layout=True) -spec2 = gridspec.GridSpec(ncols=2, nrows=2, figure=fig2) -f2_ax1 = fig2.add_subplot(spec2[0, 0]) -f2_ax2 = fig2.add_subplot(spec2[0, 1]) -f2_ax3 = fig2.add_subplot(spec2[1, 0]) -f2_ax4 = fig2.add_subplot(spec2[1, 1]) - -############################################################################# -# The power of gridspec comes in being able to create subplots that span -# rows and columns. Note the -# `Numpy slice `_ -# syntax for selecting the part of the gridspec each subplot will occupy. -# -# Note that we have also used the convenience method `.Figure.add_gridspec` -# instead of `.gridspec.GridSpec`, potentially saving the user an import, -# and keeping the namespace cleaner. - -fig3 = plt.figure(constrained_layout=True) -gs = fig3.add_gridspec(3, 3) -f3_ax1 = fig3.add_subplot(gs[0, :]) -f3_ax1.set_title('gs[0, :]') -f3_ax2 = fig3.add_subplot(gs[1, :-1]) -f3_ax2.set_title('gs[1, :-1]') -f3_ax3 = fig3.add_subplot(gs[1:, -1]) -f3_ax3.set_title('gs[1:, -1]') -f3_ax4 = fig3.add_subplot(gs[-1, 0]) -f3_ax4.set_title('gs[-1, 0]') -f3_ax5 = fig3.add_subplot(gs[-1, -2]) -f3_ax5.set_title('gs[-1, -2]') - -############################################################################# -# :mod:`~matplotlib.gridspec` is also indispensable for creating subplots -# of different widths via a couple of methods. -# -# The method shown here is similar to the one above and initializes a -# uniform grid specification, -# and then uses numpy indexing and slices to allocate multiple -# "cells" for a given subplot. - -fig4 = plt.figure(constrained_layout=True) -spec4 = fig4.add_gridspec(ncols=2, nrows=2) -anno_opts = dict(xy=(0.5, 0.5), xycoords='axes fraction', - va='center', ha='center') - -f4_ax1 = fig4.add_subplot(spec4[0, 0]) -f4_ax1.annotate('GridSpec[0, 0]', **anno_opts) -fig4.add_subplot(spec4[0, 1]).annotate('GridSpec[0, 1:]', **anno_opts) -fig4.add_subplot(spec4[1, 0]).annotate('GridSpec[1:, 0]', **anno_opts) -fig4.add_subplot(spec4[1, 1]).annotate('GridSpec[1:, 1:]', **anno_opts) - -############################################################################ -# Another option is to use the ``width_ratios`` and ``height_ratios`` -# parameters. These keyword arguments are lists of numbers. -# Note that absolute values are meaningless, only their relative ratios -# matter. That means that ``width_ratios=[2, 4, 8]`` is equivalent to -# ``width_ratios=[1, 2, 4]`` within equally wide figures. -# For the sake of demonstration, we'll blindly create the axes within -# ``for`` loops since we won't need them later. - -fig5 = plt.figure(constrained_layout=True) -widths = [2, 3, 1.5] -heights = [1, 3, 2] -spec5 = fig5.add_gridspec(ncols=3, nrows=3, width_ratios=widths, - height_ratios=heights) -for row in range(3): - for col in range(3): - ax = fig5.add_subplot(spec5[row, col]) - label = 'Width: {}\nHeight: {}'.format(widths[col], heights[row]) - ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center') - -############################################################################ -# Learning to use ``width_ratios`` and ``height_ratios`` is particularly -# useful since the top-level function :func:`~matplotlib.pyplot.subplots` -# accepts them within the ``gridspec_kw`` parameter. -# For that matter, any parameter accepted by -# :class:`~matplotlib.gridspec.GridSpec` can be passed to -# :func:`~matplotlib.pyplot.subplots` via the ``gridspec_kw`` parameter. -# This example recreates the previous figure without directly using a -# gridspec instance. - -gs_kw = dict(width_ratios=widths, height_ratios=heights) -fig6, f6_axes = plt.subplots(ncols=3, nrows=3, constrained_layout=True, - gridspec_kw=gs_kw) -for r, row in enumerate(f6_axes): - for c, ax in enumerate(row): - label = 'Width: {}\nHeight: {}'.format(widths[c], heights[r]) - ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center') - -############################################################################ -# The ``subplots`` and ``gridspec`` methods can be combined since it is -# sometimes more convenient to make most of the subplots using ``subplots`` -# and then remove some and combine them. Here we create a layout with -# the bottom two axes in the last column combined. - -fig7, f7_axs = plt.subplots(ncols=3, nrows=3) -gs = f7_axs[1, 2].get_gridspec() -# remove the underlying axes -for ax in f7_axs[1:, -1]: - ax.remove() -axbig = fig7.add_subplot(gs[1:, -1]) -axbig.annotate('Big Axes \nGridSpec[1:, -1]', (0.1, 0.5), - xycoords='axes fraction', va='center') - -fig7.tight_layout() - -############################################################################### -# Fine Adjustments to a Gridspec Layout -# ===================================== -# -# When a GridSpec is explicitly used, you can adjust the layout -# parameters of subplots that are created from the GridSpec. Note this -# option is not compatible with ``constrained_layout`` or -# `.Figure.tight_layout` which both adjust subplot sizes to fill the -# figure. - -fig8 = plt.figure(constrained_layout=False) -gs1 = fig8.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48, wspace=0.05) -f8_ax1 = fig8.add_subplot(gs1[:-1, :]) -f8_ax2 = fig8.add_subplot(gs1[-1, :-1]) -f8_ax3 = fig8.add_subplot(gs1[-1, -1]) - -############################################################################### -# This is similar to :func:`~matplotlib.pyplot.subplots_adjust`, but it only -# affects the subplots that are created from the given GridSpec. -# -# For example, compare the left and right sides of this figure: - -fig9 = plt.figure(constrained_layout=False) -gs1 = fig9.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48, - wspace=0.05) -f9_ax1 = fig9.add_subplot(gs1[:-1, :]) -f9_ax2 = fig9.add_subplot(gs1[-1, :-1]) -f9_ax3 = fig9.add_subplot(gs1[-1, -1]) - -gs2 = fig9.add_gridspec(nrows=3, ncols=3, left=0.55, right=0.98, - hspace=0.05) -f9_ax4 = fig9.add_subplot(gs2[:, :-1]) -f9_ax5 = fig9.add_subplot(gs2[:-1, -1]) -f9_ax6 = fig9.add_subplot(gs2[-1, -1]) - -############################################################################### -# GridSpec using SubplotSpec -# ========================== -# -# You can create GridSpec from the :class:`~matplotlib.gridspec.SubplotSpec`, -# in which case its layout parameters are set to that of the location of -# the given SubplotSpec. -# -# Note this is also available from the more verbose -# `.gridspec.GridSpecFromSubplotSpec`. - -fig10 = plt.figure(constrained_layout=True) -gs0 = fig10.add_gridspec(1, 2) - -gs00 = gs0[0].subgridspec(2, 3) -gs01 = gs0[1].subgridspec(3, 2) - -for a in range(2): - for b in range(3): - fig10.add_subplot(gs00[a, b]) - fig10.add_subplot(gs01[b, a]) - -############################################################################### -# A Complex Nested GridSpec using SubplotSpec -# =========================================== -# -# Here's a more sophisticated example of nested GridSpec where we put -# a box around each cell of the outer 4x4 grid, by hiding appropriate -# spines in each of the inner 3x3 grids. - -import numpy as np -from itertools import product - - -def squiggle_xy(a, b, c, d, i=np.arange(0.0, 2*np.pi, 0.05)): - return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d) - - -fig11 = plt.figure(figsize=(8, 8), constrained_layout=False) - -# gridspec inside gridspec -outer_grid = fig11.add_gridspec(4, 4, wspace=0.0, hspace=0.0) - -for i in range(16): - inner_grid = outer_grid[i].subgridspec(3, 3, wspace=0.0, hspace=0.0) - a, b = int(i/4)+1, i % 4+1 - for j, (c, d) in enumerate(product(range(1, 4), repeat=2)): - ax = fig11.add_subplot(inner_grid[j]) - ax.plot(*squiggle_xy(a, b, c, d)) - ax.set_xticks([]) - ax.set_yticks([]) - fig11.add_subplot(ax) - -all_axes = fig11.get_axes() - -# show only the outside spines -for ax in all_axes: - for sp in ax.spines.values(): - sp.set_visible(False) - if ax.is_first_row(): - ax.spines['top'].set_visible(True) - if ax.is_last_row(): - ax.spines['bottom'].set_visible(True) - if ax.is_first_col(): - ax.spines['left'].set_visible(True) - if ax.is_last_col(): - ax.spines['right'].set_visible(True) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The usage of the following functions and methods is shown in this example: - -matplotlib.pyplot.subplots -matplotlib.figure.Figure.add_gridspec -matplotlib.figure.Figure.add_subplot -matplotlib.gridspec.GridSpec -matplotlib.gridspec.SubplotSpec.subgridspec -matplotlib.gridspec.GridSpecFromSubplotSpec diff --git a/_downloads/54513ef3e5ba6decc7c22204e94a439c/contour3d.py b/_downloads/54513ef3e5ba6decc7c22204e94a439c/contour3d.py deleted file mode 120000 index 1686f5966e4..00000000000 --- a/_downloads/54513ef3e5ba6decc7c22204e94a439c/contour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/54513ef3e5ba6decc7c22204e94a439c/contour3d.py \ No newline at end of file diff --git a/_downloads/5451e352fb0f8d1df02dea9d0d70b2d5/colorbar_tick_labelling_demo.py b/_downloads/5451e352fb0f8d1df02dea9d0d70b2d5/colorbar_tick_labelling_demo.py deleted file mode 120000 index 93188e4b358..00000000000 --- a/_downloads/5451e352fb0f8d1df02dea9d0d70b2d5/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5451e352fb0f8d1df02dea9d0d70b2d5/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/54522652fbc1afa6b22143cd247fa612/whats_new_99_axes_grid.ipynb b/_downloads/54522652fbc1afa6b22143cd247fa612/whats_new_99_axes_grid.ipynb deleted file mode 120000 index 998ded72a33..00000000000 --- a/_downloads/54522652fbc1afa6b22143cd247fa612/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/54522652fbc1afa6b22143cd247fa612/whats_new_99_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/5452b6cf61b75d2dd557bb491a69401d/xcorr_acorr_demo.py b/_downloads/5452b6cf61b75d2dd557bb491a69401d/xcorr_acorr_demo.py deleted file mode 100644 index e78eefa8449..00000000000 --- a/_downloads/5452b6cf61b75d2dd557bb491a69401d/xcorr_acorr_demo.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================================ -Cross- and Auto-Correlation Demo -================================ - -Example use of cross-correlation (`~.Axes.xcorr`) and auto-correlation -(`~.Axes.acorr`) plots. -""" -import matplotlib.pyplot as plt -import numpy as np - - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x, y = np.random.randn(2, 100) -fig, [ax1, ax2] = plt.subplots(2, 1, sharex=True) -ax1.xcorr(x, y, usevlines=True, maxlags=50, normed=True, lw=2) -ax1.grid(True) - -ax2.acorr(x, usevlines=True, normed=True, maxlags=50, lw=2) -ax2.grid(True) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.acorr -matplotlib.axes.Axes.xcorr -matplotlib.pyplot.acorr -matplotlib.pyplot.xcorr diff --git a/_downloads/545570056d4b216160415777436930ab/plot_solarizedlight2.ipynb b/_downloads/545570056d4b216160415777436930ab/plot_solarizedlight2.ipynb deleted file mode 100644 index 3378cc1f2e3..00000000000 --- a/_downloads/545570056d4b216160415777436930ab/plot_solarizedlight2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Solarized Light stylesheet\n\n\nThis shows an example of \"Solarized_Light\" styling, which\ntries to replicate the styles of:\n\n - ``__\n - ``__\n - ``__\n\nand work of:\n\n - ``__\n\nusing all 8 accents of the color palette - starting with blue\n\nToDo:\n - Create alpha values for bar and stacked charts. .33 or .5\n - Apply Layout Rules\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nx = np.linspace(0, 10)\nwith plt.style.context('Solarize_Light2'):\n plt.plot(x, np.sin(x) + x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 2 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 3 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 4 + np.random.randn(50))\n plt.plot(x, np.sin(x) + 5 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 6 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 7 * x + np.random.randn(50))\n plt.plot(x, np.sin(x) + 8 * x + np.random.randn(50))\n # Number of accent colors in the color scheme\n plt.title('8 Random Lines - Line')\n plt.xlabel('x label', fontsize=14)\n plt.ylabel('y label', fontsize=14)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/54587a2e664db3645e326cc07ec2215c/marker_fillstyle_reference.py b/_downloads/54587a2e664db3645e326cc07ec2215c/marker_fillstyle_reference.py deleted file mode 120000 index cd1b526df86..00000000000 --- a/_downloads/54587a2e664db3645e326cc07ec2215c/marker_fillstyle_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/54587a2e664db3645e326cc07ec2215c/marker_fillstyle_reference.py \ No newline at end of file diff --git a/_downloads/54663a485d93b4dd4b73f438d286eab6/leftventricle_bulleye.ipynb b/_downloads/54663a485d93b4dd4b73f438d286eab6/leftventricle_bulleye.ipynb deleted file mode 120000 index 1c490e03c2f..00000000000 --- a/_downloads/54663a485d93b4dd4b73f438d286eab6/leftventricle_bulleye.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/54663a485d93b4dd4b73f438d286eab6/leftventricle_bulleye.ipynb \ No newline at end of file diff --git a/_downloads/54779106424104463d2618e2f17cac10/whats_new_98_4_legend.ipynb b/_downloads/54779106424104463d2618e2f17cac10/whats_new_98_4_legend.ipynb deleted file mode 120000 index 3a5363bbcc9..00000000000 --- a/_downloads/54779106424104463d2618e2f17cac10/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/54779106424104463d2618e2f17cac10/whats_new_98_4_legend.ipynb \ No newline at end of file diff --git a/_downloads/547c403bb7539160926f11945d72bcf7/custom_cmap.ipynb b/_downloads/547c403bb7539160926f11945d72bcf7/custom_cmap.ipynb deleted file mode 120000 index d5ba97defb0..00000000000 --- a/_downloads/547c403bb7539160926f11945d72bcf7/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/547c403bb7539160926f11945d72bcf7/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/547f4d4d89d5e0085f89a8999e09cf95/simple_axis_direction03.ipynb b/_downloads/547f4d4d89d5e0085f89a8999e09cf95/simple_axis_direction03.ipynb deleted file mode 120000 index 1bcb9f8a055..00000000000 --- a/_downloads/547f4d4d89d5e0085f89a8999e09cf95/simple_axis_direction03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/547f4d4d89d5e0085f89a8999e09cf95/simple_axis_direction03.ipynb \ No newline at end of file diff --git a/_downloads/54802403252f525bb8072106edf4b42d/tight_bbox_test.ipynb b/_downloads/54802403252f525bb8072106edf4b42d/tight_bbox_test.ipynb deleted file mode 120000 index b2f598419c2..00000000000 --- a/_downloads/54802403252f525bb8072106edf4b42d/tight_bbox_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/54802403252f525bb8072106edf4b42d/tight_bbox_test.ipynb \ No newline at end of file diff --git a/_downloads/5480604741c278977715b838e5261df8/pyplot_mathtext.py b/_downloads/5480604741c278977715b838e5261df8/pyplot_mathtext.py deleted file mode 120000 index fd10f8dc7ed..00000000000 --- a/_downloads/5480604741c278977715b838e5261df8/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5480604741c278977715b838e5261df8/pyplot_mathtext.py \ No newline at end of file diff --git a/_downloads/548075b59aad38a5cf87ed15f5b44943/confidence_ellipse.py b/_downloads/548075b59aad38a5cf87ed15f5b44943/confidence_ellipse.py deleted file mode 120000 index c301479e8cb..00000000000 --- a/_downloads/548075b59aad38a5cf87ed15f5b44943/confidence_ellipse.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/548075b59aad38a5cf87ed15f5b44943/confidence_ellipse.py \ No newline at end of file diff --git a/_downloads/54871de160a96507ee75bca32225d290/color_cycle_default.ipynb b/_downloads/54871de160a96507ee75bca32225d290/color_cycle_default.ipynb deleted file mode 100644 index b4204737b7c..00000000000 --- a/_downloads/54871de160a96507ee75bca32225d290/color_cycle_default.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colors in the default property cycle\n\n\nDisplay the colors from the default prop_cycle, which is obtained from the\n:doc:`rc parameters`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nprop_cycle = plt.rcParams['axes.prop_cycle']\ncolors = prop_cycle.by_key()['color']\n\nlwbase = plt.rcParams['lines.linewidth']\nthin = lwbase / 2\nthick = lwbase * 3\n\nfig, axs = plt.subplots(nrows=2, ncols=2, sharex=True, sharey=True)\nfor icol in range(2):\n if icol == 0:\n lwx, lwy = thin, lwbase\n else:\n lwx, lwy = lwbase, thick\n for irow in range(2):\n for i, color in enumerate(colors):\n axs[irow, icol].axhline(i, color=color, lw=lwx)\n axs[irow, icol].axvline(i, color=color, lw=lwy)\n\n axs[1, icol].set_facecolor('k')\n axs[1, icol].xaxis.set_ticks(np.arange(0, 10, 2))\n axs[0, icol].set_title('line widths (pts): %g, %g' % (lwx, lwy),\n fontsize='medium')\n\nfor irow in range(2):\n axs[irow, 0].yaxis.set_ticks(np.arange(0, 10, 2))\n\nfig.suptitle('Colors in the default prop_cycle', fontsize='large')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.axhline\nmatplotlib.axes.Axes.axvline\nmatplotlib.pyplot.axhline\nmatplotlib.pyplot.axvline\nmatplotlib.axes.Axes.set_facecolor\nmatplotlib.figure.Figure.suptitle" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/548831ea8747ee99bd8ee61b1cf882a7/annotation_demo.ipynb b/_downloads/548831ea8747ee99bd8ee61b1cf882a7/annotation_demo.ipynb deleted file mode 120000 index 0be08df6be2..00000000000 --- a/_downloads/548831ea8747ee99bd8ee61b1cf882a7/annotation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/548831ea8747ee99bd8ee61b1cf882a7/annotation_demo.ipynb \ No newline at end of file diff --git a/_downloads/548cc7a3a4ceaec7d8b27314ec75ce81/figimage_demo.py b/_downloads/548cc7a3a4ceaec7d8b27314ec75ce81/figimage_demo.py deleted file mode 120000 index 4be488d5f67..00000000000 --- a/_downloads/548cc7a3a4ceaec7d8b27314ec75ce81/figimage_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/548cc7a3a4ceaec7d8b27314ec75ce81/figimage_demo.py \ No newline at end of file diff --git a/_downloads/548f0e867cc40ff0c60583b36a396273/multiline.py b/_downloads/548f0e867cc40ff0c60583b36a396273/multiline.py deleted file mode 120000 index d55933b7427..00000000000 --- a/_downloads/548f0e867cc40ff0c60583b36a396273/multiline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/548f0e867cc40ff0c60583b36a396273/multiline.py \ No newline at end of file diff --git a/_downloads/548fb6e6ddb84c94b6fa4982c187e0f0/multiline.ipynb b/_downloads/548fb6e6ddb84c94b6fa4982c187e0f0/multiline.ipynb deleted file mode 120000 index 675a5e6ec03..00000000000 --- a/_downloads/548fb6e6ddb84c94b6fa4982c187e0f0/multiline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/548fb6e6ddb84c94b6fa4982c187e0f0/multiline.ipynb \ No newline at end of file diff --git a/_downloads/549bedb86763e2f011f749d343519218/figlegend_demo.ipynb b/_downloads/549bedb86763e2f011f749d343519218/figlegend_demo.ipynb deleted file mode 120000 index 5b157f81530..00000000000 --- a/_downloads/549bedb86763e2f011f749d343519218/figlegend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/549bedb86763e2f011f749d343519218/figlegend_demo.ipynb \ No newline at end of file diff --git a/_downloads/54a1962ca49d6656cd85b115344a383d/voxels_torus.ipynb b/_downloads/54a1962ca49d6656cd85b115344a383d/voxels_torus.ipynb deleted file mode 100644 index c9eeb86d657..00000000000 --- a/_downloads/54a1962ca49d6656cd85b115344a383d/voxels_torus.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=======================================================\n3D voxel / volumetric plot with cylindrical coordinates\n=======================================================\n\nDemonstrates using the ``x, y, z`` arguments of ``ax.voxels``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.colors\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef midpoints(x):\n sl = ()\n for i in range(x.ndim):\n x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0\n sl += np.index_exp[:]\n return x\n\n# prepare some coordinates, and attach rgb values to each\nr, theta, z = np.mgrid[0:1:11j, 0:np.pi*2:25j, -0.5:0.5:11j]\nx = r*np.cos(theta)\ny = r*np.sin(theta)\n\nrc, thetac, zc = midpoints(r), midpoints(theta), midpoints(z)\n\n# define a wobbly torus about [0.7, *, 0]\nsphere = (rc - 0.7)**2 + (zc + 0.2*np.cos(thetac*2))**2 < 0.2**2\n\n# combine the color components\nhsv = np.zeros(sphere.shape + (3,))\nhsv[..., 0] = thetac / (np.pi*2)\nhsv[..., 1] = rc\nhsv[..., 2] = zc + 0.5\ncolors = matplotlib.colors.hsv_to_rgb(hsv)\n\n# and plot everything\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(x, y, z, sphere,\n facecolors=colors,\n edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter\n linewidth=0.5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/54a1e96a6feb0347051879fbf52f3e2b/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/54a1e96a6feb0347051879fbf52f3e2b/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 100644 index a31f890d501..00000000000 --- a/_downloads/54a1e96a6feb0347051879fbf52f3e2b/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -=========================================== -Embedding in GTK3 with a navigation toolbar -=========================================== - -Demonstrate NavigationToolbar with GTK3 accessed via pygobject. -""" - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - -from matplotlib.backends.backend_gtk3 import ( - NavigationToolbar2GTK3 as NavigationToolbar) -from matplotlib.backends.backend_gtk3agg import ( - FigureCanvasGTK3Agg as FigureCanvas) -from matplotlib.figure import Figure -import numpy as np - -win = Gtk.Window() -win.connect("delete-event", Gtk.main_quit) -win.set_default_size(400, 300) -win.set_title("Embedding in GTK") - -f = Figure(figsize=(5, 4), dpi=100) -a = f.add_subplot(1, 1, 1) -t = np.arange(0.0, 3.0, 0.01) -s = np.sin(2*np.pi*t) -a.plot(t, s) - -vbox = Gtk.VBox() -win.add(vbox) - -# Add canvas to vbox -canvas = FigureCanvas(f) # a Gtk.DrawingArea -vbox.pack_start(canvas, True, True, 0) - -# Create toolbar -toolbar = NavigationToolbar(canvas, win) -vbox.pack_start(toolbar, False, False, 0) - -win.show_all() -Gtk.main() diff --git a/_downloads/54a61c4e618848acd9992f76bbadc61f/fill.ipynb b/_downloads/54a61c4e618848acd9992f76bbadc61f/fill.ipynb deleted file mode 100644 index 091348a27c4..00000000000 --- a/_downloads/54a61c4e618848acd9992f76bbadc61f/fill.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Filled polygon\n\n\n`~.Axes.fill()` draws a filled polygon based based on lists of point\ncoordinates *x*, *y*.\n\nThis example uses the `Koch snowflake`_ as an example polygon.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef koch_snowflake(order, scale=10):\n \"\"\"\n Return two lists x, y of point coordinates of the Koch snowflake.\n\n Arguments\n ---------\n order : int\n The recursion depth.\n scale : float\n The extent of the snowflake (edge length of the base triangle).\n \"\"\"\n def _koch_snowflake_complex(order):\n if order == 0:\n # initial triangle\n angles = np.array([0, 120, 240]) + 90\n return scale / np.sqrt(3) * np.exp(np.deg2rad(angles) * 1j)\n else:\n ZR = 0.5 - 0.5j * np.sqrt(3) / 3\n\n p1 = _koch_snowflake_complex(order - 1) # start points\n p2 = np.roll(p1, shift=-1) # end points\n dp = p2 - p1 # connection vectors\n\n new_points = np.empty(len(p1) * 4, dtype=np.complex128)\n new_points[::4] = p1\n new_points[1::4] = p1 + dp / 3\n new_points[2::4] = p1 + dp * ZR\n new_points[3::4] = p1 + dp / 3 * 2\n return new_points\n\n points = _koch_snowflake_complex(order)\n x, y = points.real, points.imag\n return x, y" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Basic usage:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x, y = koch_snowflake(order=5)\n\nplt.figure(figsize=(8, 8))\nplt.axis('equal')\nplt.fill(x, y)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use keyword arguments *facecolor* and *edgecolor* to modify the the colors\nof the polygon. Since the *linewidth* of the edge is 0 in the default\nMatplotlib style, we have to set it as well for the edge to become visible.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x, y = koch_snowflake(order=2)\n\nfig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(9, 3),\n subplot_kw={'aspect': 'equal'})\nax1.fill(x, y)\nax2.fill(x, y, facecolor='lightsalmon', edgecolor='orangered', linewidth=3)\nax3.fill(x, y, facecolor='none', edgecolor='purple', linewidth=3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.fill\nmatplotlib.pyplot.fill\nmatplotlib.axes.Axes.axis\nmatplotlib.pyplot.axis" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/54ac5dcaf847202e0caa5db6a4abf932/whats_new_1_subplot3d.py b/_downloads/54ac5dcaf847202e0caa5db6a4abf932/whats_new_1_subplot3d.py deleted file mode 100644 index ee18562bdea..00000000000 --- a/_downloads/54ac5dcaf847202e0caa5db6a4abf932/whats_new_1_subplot3d.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -===================== -Whats New 1 Subplot3d -===================== - -Create two three-dimensional plots in the same figure. -""" -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib import cm -#from matplotlib.ticker import LinearLocator, FixedLocator, FormatStrFormatter -import matplotlib.pyplot as plt -import numpy as np - -fig = plt.figure() - -ax = fig.add_subplot(1, 2, 1, projection='3d') -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) -surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis, - linewidth=0, antialiased=False) -ax.set_zlim3d(-1.01, 1.01) - -#ax.w_zaxis.set_major_locator(LinearLocator(10)) -#ax.w_zaxis.set_major_formatter(FormatStrFormatter('%.03f')) - -fig.colorbar(surf, shrink=0.5, aspect=5) - -from mpl_toolkits.mplot3d.axes3d import get_test_data -ax = fig.add_subplot(1, 2, 2, projection='3d') -X, Y, Z = get_test_data(0.05) -ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -import mpl_toolkits -matplotlib.figure.Figure.add_subplot -mpl_toolkits.mplot3d.axes3d.Axes3D.plot_surface -mpl_toolkits.mplot3d.axes3d.Axes3D.plot_wireframe -mpl_toolkits.mplot3d.axes3d.Axes3D.set_zlim3d diff --git a/_downloads/54ae91c1f12c9e91bf396f02918945b5/membrane.ipynb b/_downloads/54ae91c1f12c9e91bf396f02918945b5/membrane.ipynb deleted file mode 120000 index 30d9089014e..00000000000 --- a/_downloads/54ae91c1f12c9e91bf396f02918945b5/membrane.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/54ae91c1f12c9e91bf396f02918945b5/membrane.ipynb \ No newline at end of file diff --git a/_downloads/54b82861316f6baa2eb8284571778486/gradient_bar.ipynb b/_downloads/54b82861316f6baa2eb8284571778486/gradient_bar.ipynb deleted file mode 120000 index 2785006b646..00000000000 --- a/_downloads/54b82861316f6baa2eb8284571778486/gradient_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/54b82861316f6baa2eb8284571778486/gradient_bar.ipynb \ No newline at end of file diff --git a/_downloads/54c4df102da7d34c42635b08d52c1fd0/custom_figure_class.py b/_downloads/54c4df102da7d34c42635b08d52c1fd0/custom_figure_class.py deleted file mode 120000 index 24a1e42176c..00000000000 --- a/_downloads/54c4df102da7d34c42635b08d52c1fd0/custom_figure_class.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/54c4df102da7d34c42635b08d52c1fd0/custom_figure_class.py \ No newline at end of file diff --git a/_downloads/54c96c8e5def9d73f51b83630e9327fd/errorbar_subsample.py b/_downloads/54c96c8e5def9d73f51b83630e9327fd/errorbar_subsample.py deleted file mode 120000 index e45297f3632..00000000000 --- a/_downloads/54c96c8e5def9d73f51b83630e9327fd/errorbar_subsample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/54c96c8e5def9d73f51b83630e9327fd/errorbar_subsample.py \ No newline at end of file diff --git a/_downloads/54ca03eea0e0b5917a6d92ba870be134/double_pendulum_sgskip.py b/_downloads/54ca03eea0e0b5917a6d92ba870be134/double_pendulum_sgskip.py deleted file mode 120000 index 04c58a495b5..00000000000 --- a/_downloads/54ca03eea0e0b5917a6d92ba870be134/double_pendulum_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/54ca03eea0e0b5917a6d92ba870be134/double_pendulum_sgskip.py \ No newline at end of file diff --git a/_downloads/54ca8f70991224d0d2325d48314a3ce5/axes_zoom_effect.ipynb b/_downloads/54ca8f70991224d0d2325d48314a3ce5/axes_zoom_effect.ipynb deleted file mode 120000 index fadb930518b..00000000000 --- a/_downloads/54ca8f70991224d0d2325d48314a3ce5/axes_zoom_effect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/54ca8f70991224d0d2325d48314a3ce5/axes_zoom_effect.ipynb \ No newline at end of file diff --git a/_downloads/54ced7e4e472ba497d167730732bdd83/wire3d_animation_sgskip.py b/_downloads/54ced7e4e472ba497d167730732bdd83/wire3d_animation_sgskip.py deleted file mode 120000 index 4d1bc4f42d2..00000000000 --- a/_downloads/54ced7e4e472ba497d167730732bdd83/wire3d_animation_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/54ced7e4e472ba497d167730732bdd83/wire3d_animation_sgskip.py \ No newline at end of file diff --git a/_downloads/54d2f47c4afaa72121e31137c56c6c50/gallery_python.zip b/_downloads/54d2f47c4afaa72121e31137c56c6c50/gallery_python.zip deleted file mode 100644 index c671da79296..00000000000 Binary files a/_downloads/54d2f47c4afaa72121e31137c56c6c50/gallery_python.zip and /dev/null differ diff --git a/_downloads/54e2b5014ba2d5b19650d640ebe79970/xkcd.py b/_downloads/54e2b5014ba2d5b19650d640ebe79970/xkcd.py deleted file mode 120000 index be03b826362..00000000000 --- a/_downloads/54e2b5014ba2d5b19650d640ebe79970/xkcd.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/54e2b5014ba2d5b19650d640ebe79970/xkcd.py \ No newline at end of file diff --git a/_downloads/54e4a7d08b5397c7fe48a50f00e8bc9b/confidence_ellipse.py b/_downloads/54e4a7d08b5397c7fe48a50f00e8bc9b/confidence_ellipse.py deleted file mode 120000 index 32f70070a78..00000000000 --- a/_downloads/54e4a7d08b5397c7fe48a50f00e8bc9b/confidence_ellipse.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/54e4a7d08b5397c7fe48a50f00e8bc9b/confidence_ellipse.py \ No newline at end of file diff --git a/_downloads/54f0723f8832e94024c8785f73d92922/mpl_with_glade3_sgskip.py b/_downloads/54f0723f8832e94024c8785f73d92922/mpl_with_glade3_sgskip.py deleted file mode 120000 index 61ea0ffbf83..00000000000 --- a/_downloads/54f0723f8832e94024c8785f73d92922/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/54f0723f8832e94024c8785f73d92922/mpl_with_glade3_sgskip.py \ No newline at end of file diff --git a/_downloads/54f178535adde28359d49641be996dbf/multiline.py b/_downloads/54f178535adde28359d49641be996dbf/multiline.py deleted file mode 120000 index 5d207e58260..00000000000 --- a/_downloads/54f178535adde28359d49641be996dbf/multiline.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/54f178535adde28359d49641be996dbf/multiline.py \ No newline at end of file diff --git a/_downloads/54fadf20e54a727a7a5d9dd83e7a9e3b/polys3d.py b/_downloads/54fadf20e54a727a7a5d9dd83e7a9e3b/polys3d.py deleted file mode 120000 index 20d48ede871..00000000000 --- a/_downloads/54fadf20e54a727a7a5d9dd83e7a9e3b/polys3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/54fadf20e54a727a7a5d9dd83e7a9e3b/polys3d.py \ No newline at end of file diff --git a/_downloads/54fd4f33941cbfea910a52d96818cb57/arrow_demo.py b/_downloads/54fd4f33941cbfea910a52d96818cb57/arrow_demo.py deleted file mode 120000 index c836b66bbaf..00000000000 --- a/_downloads/54fd4f33941cbfea910a52d96818cb57/arrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/54fd4f33941cbfea910a52d96818cb57/arrow_demo.py \ No newline at end of file diff --git a/_downloads/5504b56f0e0ba6c0d4b06db55acb4773/interpolation_methods.ipynb b/_downloads/5504b56f0e0ba6c0d4b06db55acb4773/interpolation_methods.ipynb deleted file mode 120000 index 54bce31876b..00000000000 --- a/_downloads/5504b56f0e0ba6c0d4b06db55acb4773/interpolation_methods.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5504b56f0e0ba6c0d4b06db55acb4773/interpolation_methods.ipynb \ No newline at end of file diff --git a/_downloads/550ad1262151d7bb10684d50092d8744/invert_axes.py b/_downloads/550ad1262151d7bb10684d50092d8744/invert_axes.py deleted file mode 100644 index d8c17a1ba81..00000000000 --- a/_downloads/550ad1262151d7bb10684d50092d8744/invert_axes.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=========== -Invert Axes -=========== - -You can use decreasing axes by flipping the normal order of the axis -limits -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.01, 5.0, 0.01) -s = np.exp(-t) -plt.plot(t, s) - -plt.xlim(5, 0) # decreasing time - -plt.xlabel('decreasing time (s)') -plt.ylabel('voltage (mV)') -plt.title('Should be growing...') -plt.grid(True) - -plt.show() diff --git a/_downloads/55101f64b1fa0feb54032f745543a8cb/embedding_in_gtk4_sgskip.py b/_downloads/55101f64b1fa0feb54032f745543a8cb/embedding_in_gtk4_sgskip.py deleted file mode 120000 index fc7b339ff5b..00000000000 --- a/_downloads/55101f64b1fa0feb54032f745543a8cb/embedding_in_gtk4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/55101f64b1fa0feb54032f745543a8cb/embedding_in_gtk4_sgskip.py \ No newline at end of file diff --git a/_downloads/551bcfb13b7d7e24e324555137d1f702/multiline.py b/_downloads/551bcfb13b7d7e24e324555137d1f702/multiline.py deleted file mode 120000 index 80ca3f7e90c..00000000000 --- a/_downloads/551bcfb13b7d7e24e324555137d1f702/multiline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/551bcfb13b7d7e24e324555137d1f702/multiline.py \ No newline at end of file diff --git a/_downloads/55304aa814b00b91b217d84eb5d4bfb6/legend_demo.ipynb b/_downloads/55304aa814b00b91b217d84eb5d4bfb6/legend_demo.ipynb deleted file mode 100644 index a4b964a2cda..00000000000 --- a/_downloads/55304aa814b00b91b217d84eb5d4bfb6/legend_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend Demo\n\n\nPlotting legends in Matplotlib.\n\nThere are many ways to create and customize legends in Matplotlib. Below\nwe'll show a few examples for how to do so.\n\nFirst we'll show off how to make a legend for specific lines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.collections as mcol\nfrom matplotlib.legend_handler import HandlerLineCollection, HandlerTuple\nfrom matplotlib.lines import Line2D\nimport numpy as np\n\nt1 = np.arange(0.0, 2.0, 0.1)\nt2 = np.arange(0.0, 2.0, 0.01)\n\nfig, ax = plt.subplots()\n\n# note that plot returns a list of lines. The \"l1, = plot\" usage\n# extracts the first element of the list into l1 using tuple\n# unpacking. So l1 is a Line2D instance, not a sequence of lines\nl1, = ax.plot(t2, np.exp(-t2))\nl2, l3 = ax.plot(t2, np.sin(2 * np.pi * t2), '--o', t1, np.log(1 + t1), '.')\nl4, = ax.plot(t2, np.exp(-t2) * np.sin(2 * np.pi * t2), 's-.')\n\nax.legend((l2, l4), ('oscillatory', 'damped'), loc='upper right', shadow=True)\nax.set_xlabel('time')\nax.set_ylabel('volts')\nax.set_title('Damped oscillation')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next we'll demonstrate plotting more complex labels.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 1)\n\nfig, (ax0, ax1) = plt.subplots(2, 1)\n\n# Plot the lines y=x**n for n=1..4.\nfor n in range(1, 5):\n ax0.plot(x, x**n, label=\"n={0}\".format(n))\nleg = ax0.legend(loc=\"upper left\", bbox_to_anchor=[0, 1],\n ncol=2, shadow=True, title=\"Legend\", fancybox=True)\nleg.get_title().set_color(\"red\")\n\n# Demonstrate some more complex labels.\nax1.plot(x, x**2, label=\"multi\\nline\")\nhalf_pi = np.linspace(0, np.pi / 2)\nax1.plot(np.sin(half_pi), np.cos(half_pi), label=r\"$\\frac{1}{2}\\pi$\")\nax1.plot(x, 2**(x**2), label=\"$2^{x^2}$\")\nax1.legend(shadow=True, fancybox=True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we attach legends to more complex plots.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(3, 1, constrained_layout=True)\ntop_ax, middle_ax, bottom_ax = axes\n\ntop_ax.bar([0, 1, 2], [0.2, 0.3, 0.1], width=0.4, label=\"Bar 1\",\n align=\"center\")\ntop_ax.bar([0.5, 1.5, 2.5], [0.3, 0.2, 0.2], color=\"red\", width=0.4,\n label=\"Bar 2\", align=\"center\")\ntop_ax.legend()\n\nmiddle_ax.errorbar([0, 1, 2], [2, 3, 1], xerr=0.4, fmt=\"s\", label=\"test 1\")\nmiddle_ax.errorbar([0, 1, 2], [3, 2, 4], yerr=0.3, fmt=\"o\", label=\"test 2\")\nmiddle_ax.errorbar([0, 1, 2], [1, 1, 3], xerr=0.4, yerr=0.3, fmt=\"^\",\n label=\"test 3\")\nmiddle_ax.legend()\n\nbottom_ax.stem([0.3, 1.5, 2.7], [1, 3.6, 2.7], label=\"stem test\")\nbottom_ax.legend()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we'll showcase legend entries with more than one legend key.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2, 1, constrained_layout=True)\n\n# First plot: two legend keys for a single entry\np1 = ax1.scatter([1], [5], c='r', marker='s', s=100)\np2 = ax1.scatter([3], [2], c='b', marker='o', s=100)\n# `plot` returns a list, but we want the handle - thus the comma on the left\np3, = ax1.plot([1, 5], [4, 4], 'm-d')\n\n# Assign two of the handles to the same legend entry by putting them in a tuple\n# and using a generic handler map (which would be used for any additional\n# tuples of handles like (p1, p3)).\nl = ax1.legend([(p1, p3), p2], ['two keys', 'one key'], scatterpoints=1,\n numpoints=1, handler_map={tuple: HandlerTuple(ndivide=None)})\n\n# Second plot: plot two bar charts on top of each other and change the padding\n# between the legend keys\nx_left = [1, 2, 3]\ny_pos = [1, 3, 2]\ny_neg = [2, 1, 4]\n\nrneg = ax2.bar(x_left, y_neg, width=0.5, color='w', hatch='///', label='-1')\nrpos = ax2.bar(x_left, y_pos, width=0.5, color='k', label='+1')\n\n# Treat each legend entry differently by using specific `HandlerTuple`s\nl = ax2.legend([(rpos, rneg), (rneg, rpos)], ['pad!=0', 'pad=0'],\n handler_map={(rpos, rneg): HandlerTuple(ndivide=None),\n (rneg, rpos): HandlerTuple(ndivide=None, pad=0.)})\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, it is also possible to write custom objects that define\nhow to stylize legends.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class HandlerDashedLines(HandlerLineCollection):\n \"\"\"\n Custom Handler for LineCollection instances.\n \"\"\"\n def create_artists(self, legend, orig_handle,\n xdescent, ydescent, width, height, fontsize, trans):\n # figure out how many lines there are\n numlines = len(orig_handle.get_segments())\n xdata, xdata_marker = self.get_xdata(legend, xdescent, ydescent,\n width, height, fontsize)\n leglines = []\n # divide the vertical space where the lines will go\n # into equal parts based on the number of lines\n ydata = np.full_like(xdata, height / (numlines + 1))\n # for each line, create the line at the proper location\n # and set the dash pattern\n for i in range(numlines):\n legline = Line2D(xdata, ydata * (numlines - i) - ydescent)\n self.update_prop(legline, orig_handle, legend)\n # set color, dash pattern, and linewidth to that\n # of the lines in linecollection\n try:\n color = orig_handle.get_colors()[i]\n except IndexError:\n color = orig_handle.get_colors()[0]\n try:\n dashes = orig_handle.get_dashes()[i]\n except IndexError:\n dashes = orig_handle.get_dashes()[0]\n try:\n lw = orig_handle.get_linewidths()[i]\n except IndexError:\n lw = orig_handle.get_linewidths()[0]\n if dashes[0] is not None:\n legline.set_dashes(dashes[1])\n legline.set_color(color)\n legline.set_transform(trans)\n legline.set_linewidth(lw)\n leglines.append(legline)\n return leglines\n\nx = np.linspace(0, 5, 100)\n\nfig, ax = plt.subplots()\ncolors = plt.rcParams['axes.prop_cycle'].by_key()['color'][:5]\nstyles = ['solid', 'dashed', 'dashed', 'dashed', 'solid']\nlines = []\nfor i, color, style in zip(range(5), colors, styles):\n ax.plot(x, np.sin(x) - .1 * i, c=color, ls=style)\n\n# make proxy artists\n# make list of one line -- doesn't matter what the coordinates are\nline = [[(0, 0)]]\n# set up the proxy artist\nlc = mcol.LineCollection(5 * line, linestyles=styles, colors=colors)\n# create the legend\nax.legend([lc], ['multi-line'], handler_map={type(lc): HandlerDashedLines()},\n handlelength=2.5, handleheight=3)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5530723ecdde6105f8e943f803c4ec7a/simple_axes_divider1.py b/_downloads/5530723ecdde6105f8e943f803c4ec7a/simple_axes_divider1.py deleted file mode 100644 index 8c205781c2f..00000000000 --- a/_downloads/5530723ecdde6105f8e943f803c4ec7a/simple_axes_divider1.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -===================== -Simple Axes Divider 1 -===================== - -""" -from mpl_toolkits.axes_grid1 import Size, Divider -import matplotlib.pyplot as plt - - -fig1 = plt.figure(1, (6, 6)) - -# fixed size in inch -horiz = [Size.Fixed(1.), Size.Fixed(.5), Size.Fixed(1.5), - Size.Fixed(.5)] -vert = [Size.Fixed(1.5), Size.Fixed(.5), Size.Fixed(1.)] - -rect = (0.1, 0.1, 0.8, 0.8) -# divide the axes rectangle into grid whose size is specified by horiz * vert -divider = Divider(fig1, rect, horiz, vert, aspect=False) - -# the rect parameter will be ignore as we will set axes_locator -ax1 = fig1.add_axes(rect, label="1") -ax2 = fig1.add_axes(rect, label="2") -ax3 = fig1.add_axes(rect, label="3") -ax4 = fig1.add_axes(rect, label="4") - -ax1.set_axes_locator(divider.new_locator(nx=0, ny=0)) -ax2.set_axes_locator(divider.new_locator(nx=0, ny=2)) -ax3.set_axes_locator(divider.new_locator(nx=2, ny=2)) -ax4.set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0)) - -plt.show() diff --git a/_downloads/55329b9e9149fc39926deb1317749547/wxcursor_demo_sgskip.ipynb b/_downloads/55329b9e9149fc39926deb1317749547/wxcursor_demo_sgskip.ipynb deleted file mode 100644 index 7e90d6a3602..00000000000 --- a/_downloads/55329b9e9149fc39926deb1317749547/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# WXcursor Demo\n\n\nExample to draw a cursor and report the data coords in wx.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wx import NavigationToolbar2Wx\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nimport wx\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self, ):\n wx.Frame.__init__(self, None, -1, 'CanvasFrame', size=(550, 350))\n\n self.figure = Figure()\n self.axes = self.figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2*np.pi*t)\n\n self.axes.plot(t, s)\n self.axes.set_xlabel('t')\n self.axes.set_ylabel('sin(t)')\n self.figure_canvas = FigureCanvas(self, -1, self.figure)\n\n # Note that event is a MplEvent\n self.figure_canvas.mpl_connect(\n 'motion_notify_event', self.UpdateStatusBar)\n self.figure_canvas.Bind(wx.EVT_ENTER_WINDOW, self.ChangeCursor)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.sizer.Add(self.figure_canvas, 1, wx.LEFT | wx.TOP | wx.GROW)\n self.SetSizer(self.sizer)\n self.Fit()\n\n self.statusBar = wx.StatusBar(self, -1)\n self.SetStatusBar(self.statusBar)\n\n self.toolbar = NavigationToolbar2Wx(self.figure_canvas)\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n self.toolbar.Show()\n\n def ChangeCursor(self, event):\n self.figure_canvas.SetCursor(wx.Cursor(wx.CURSOR_BULLSEYE))\n\n def UpdateStatusBar(self, event):\n if event.inaxes:\n self.statusBar.SetStatusText(\n \"x={} y={}\".format(event.xdata, event.ydata))\n\n\nclass App(wx.App):\n def OnInit(self):\n 'Create the main window and insert the custom frame'\n frame = CanvasFrame()\n self.SetTopWindow(frame)\n frame.Show(True)\n return True\n\n\nif __name__ == '__main__':\n app = App(0)\n app.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/553a7731807dc618022bbb4913c05755/errorbar.ipynb b/_downloads/553a7731807dc618022bbb4913c05755/errorbar.ipynb deleted file mode 100644 index 58b0c85a2c6..00000000000 --- a/_downloads/553a7731807dc618022bbb4913c05755/errorbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Errorbar function\n\n\nThis exhibits the most basic use of the error bar method.\nIn this case, constant values are provided for the error\nin both the x- and y-directions.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.arange(0.1, 4, 0.5)\ny = np.exp(-x)\n\nfig, ax = plt.subplots()\nax.errorbar(x, y, xerr=0.2, yerr=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/553b241dfadd69049f1cb8b009914d00/imshow.py b/_downloads/553b241dfadd69049f1cb8b009914d00/imshow.py deleted file mode 120000 index 53b706c170a..00000000000 --- a/_downloads/553b241dfadd69049f1cb8b009914d00/imshow.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/553b241dfadd69049f1cb8b009914d00/imshow.py \ No newline at end of file diff --git a/_downloads/553d869723202c0fd317232d15159ea0/markevery_prop_cycle.py b/_downloads/553d869723202c0fd317232d15159ea0/markevery_prop_cycle.py deleted file mode 120000 index a2508a18387..00000000000 --- a/_downloads/553d869723202c0fd317232d15159ea0/markevery_prop_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/553d869723202c0fd317232d15159ea0/markevery_prop_cycle.py \ No newline at end of file diff --git a/_downloads/55410e1eb7b9364cdb7c2d0821decf31/stix_fonts_demo.ipynb b/_downloads/55410e1eb7b9364cdb7c2d0821decf31/stix_fonts_demo.ipynb deleted file mode 120000 index 5f0d2c3121f..00000000000 --- a/_downloads/55410e1eb7b9364cdb7c2d0821decf31/stix_fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/55410e1eb7b9364cdb7c2d0821decf31/stix_fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/55533738d7192be0bfbfcb1b866e8c55/hist3d.py b/_downloads/55533738d7192be0bfbfcb1b866e8c55/hist3d.py deleted file mode 120000 index 470cff0d43c..00000000000 --- a/_downloads/55533738d7192be0bfbfcb1b866e8c55/hist3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/55533738d7192be0bfbfcb1b866e8c55/hist3d.py \ No newline at end of file diff --git a/_downloads/55559edfecafc744adc0ac53dfd4f925/named_colors.ipynb b/_downloads/55559edfecafc744adc0ac53dfd4f925/named_colors.ipynb deleted file mode 100644 index 41a433fb81b..00000000000 --- a/_downloads/55559edfecafc744adc0ac53dfd4f925/named_colors.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# List of named colors\n\n\nThis plots a list of the named colors supported in matplotlib. Note that\n`xkcd colors ` are supported as well, but are not listed here\nfor brevity.\n\nFor more information on colors in matplotlib see\n\n* the :doc:`/tutorials/colors/colors` tutorial;\n* the `matplotlib.colors` API;\n* the :doc:`/gallery/color/color_demo`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.colors as mcolors\n\n\ndef plot_colortable(colors, title, sort_colors=True, emptycols=0):\n\n cell_width = 212\n cell_height = 22\n swatch_width = 48\n margin = 12\n topmargin = 40\n\n # Sort colors by hue, saturation, value and name.\n if sort_colors is True:\n by_hsv = sorted((tuple(mcolors.rgb_to_hsv(mcolors.to_rgb(color))),\n name)\n for name, color in colors.items())\n names = [name for hsv, name in by_hsv]\n else:\n names = list(colors)\n\n n = len(names)\n ncols = 4 - emptycols\n nrows = n // ncols + int(n % ncols > 0)\n\n width = cell_width * 4 + 2 * margin\n height = cell_height * nrows + margin + topmargin\n dpi = 72\n\n fig, ax = plt.subplots(figsize=(width / dpi, height / dpi), dpi=dpi)\n fig.subplots_adjust(margin/width, margin/height,\n (width-margin)/width, (height-topmargin)/height)\n ax.set_xlim(0, cell_width * 4)\n ax.set_ylim(cell_height * (nrows-0.5), -cell_height/2.)\n ax.yaxis.set_visible(False)\n ax.xaxis.set_visible(False)\n ax.set_axis_off()\n ax.set_title(title, fontsize=24, loc=\"left\", pad=10)\n\n for i, name in enumerate(names):\n row = i % nrows\n col = i // nrows\n y = row * cell_height\n\n swatch_start_x = cell_width * col\n swatch_end_x = cell_width * col + swatch_width\n text_pos_x = cell_width * col + swatch_width + 7\n\n ax.text(text_pos_x, y, name, fontsize=14,\n horizontalalignment='left',\n verticalalignment='center')\n\n ax.hlines(y, swatch_start_x, swatch_end_x,\n color=colors[name], linewidth=18)\n\n return fig\n\nplot_colortable(mcolors.BASE_COLORS, \"Base Colors\",\n sort_colors=False, emptycols=1)\nplot_colortable(mcolors.TABLEAU_COLORS, \"Tableau Palette\",\n sort_colors=False, emptycols=2)\n\n#sphinx_gallery_thumbnail_number = 3\nplot_colortable(mcolors.CSS4_COLORS, \"CSS Colors\")\n\n# Optionally plot the XKCD colors (Caution: will produce large figure)\n#xkcd_fig = plot_colortable(mcolors.XKCD_COLORS, \"XKCD Colors\")\n#xkcd_fig.savefig(\"XKCD_Colors.png\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.colors.rgb_to_hsv\nmatplotlib.colors.to_rgba\nmatplotlib.figure.Figure.get_size_inches\nmatplotlib.figure.Figure.subplots_adjust\nmatplotlib.axes.Axes.text\nmatplotlib.axes.Axes.hlines" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/55579efa8f52b97b035c766d81a68a09/image_demo.py b/_downloads/55579efa8f52b97b035c766d81a68a09/image_demo.py deleted file mode 120000 index b88381ae891..00000000000 --- a/_downloads/55579efa8f52b97b035c766d81a68a09/image_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/55579efa8f52b97b035c766d81a68a09/image_demo.py \ No newline at end of file diff --git a/_downloads/5558719e6a2a304e994685636fcf3c3d/embedding_in_wx5_sgskip.py b/_downloads/5558719e6a2a304e994685636fcf3c3d/embedding_in_wx5_sgskip.py deleted file mode 100644 index 1578ae8c0b6..00000000000 --- a/_downloads/5558719e6a2a304e994685636fcf3c3d/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1,61 +0,0 @@ -""" -================== -Embedding in wx #5 -================== - -""" - -import wx -import wx.lib.agw.aui as aui -import wx.lib.mixins.inspection as wit - -import matplotlib as mpl -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar - - -class Plot(wx.Panel): - def __init__(self, parent, id=-1, dpi=None, **kwargs): - wx.Panel.__init__(self, parent, id=id, **kwargs) - self.figure = mpl.figure.Figure(dpi=dpi, figsize=(2, 2)) - self.canvas = FigureCanvas(self, -1, self.figure) - self.toolbar = NavigationToolbar(self.canvas) - self.toolbar.Realize() - - sizer = wx.BoxSizer(wx.VERTICAL) - sizer.Add(self.canvas, 1, wx.EXPAND) - sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - self.SetSizer(sizer) - - -class PlotNotebook(wx.Panel): - def __init__(self, parent, id=-1): - wx.Panel.__init__(self, parent, id=id) - self.nb = aui.AuiNotebook(self) - sizer = wx.BoxSizer() - sizer.Add(self.nb, 1, wx.EXPAND) - self.SetSizer(sizer) - - def add(self, name="plot"): - page = Plot(self.nb) - self.nb.AddPage(page, name) - return page.figure - - -def demo(): - # alternatively you could use - #app = wx.App() - # InspectableApp is a great debug tool, see: - # http://wiki.wxpython.org/Widget%20Inspection%20Tool - app = wit.InspectableApp() - frame = wx.Frame(None, -1, 'Plotter') - plotter = PlotNotebook(frame) - axes1 = plotter.add('figure 1').gca() - axes1.plot([1, 2, 3], [2, 1, 4]) - axes2 = plotter.add('figure 2').gca() - axes2.plot([1, 2, 3, 4, 5], [2, 1, 4, 2, 3]) - frame.Show() - app.MainLoop() - -if __name__ == "__main__": - demo() diff --git a/_downloads/556115cdb24447157c9cd691d8b21a66/dfrac_demo.ipynb b/_downloads/556115cdb24447157c9cd691d8b21a66/dfrac_demo.ipynb deleted file mode 120000 index a110ddf060c..00000000000 --- a/_downloads/556115cdb24447157c9cd691d8b21a66/dfrac_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/556115cdb24447157c9cd691d8b21a66/dfrac_demo.ipynb \ No newline at end of file diff --git a/_downloads/5561e811d3e75e22295aa1fdd8c366d7/pcolormesh_levels.py b/_downloads/5561e811d3e75e22295aa1fdd8c366d7/pcolormesh_levels.py deleted file mode 120000 index fb99d9c6783..00000000000 --- a/_downloads/5561e811d3e75e22295aa1fdd8c366d7/pcolormesh_levels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5561e811d3e75e22295aa1fdd8c366d7/pcolormesh_levels.py \ No newline at end of file diff --git a/_downloads/557624e1db4ed17b8a6887988174aa7f/boxplot_demo.py b/_downloads/557624e1db4ed17b8a6887988174aa7f/boxplot_demo.py deleted file mode 120000 index 5717443c105..00000000000 --- a/_downloads/557624e1db4ed17b8a6887988174aa7f/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/557624e1db4ed17b8a6887988174aa7f/boxplot_demo.py \ No newline at end of file diff --git a/_downloads/557e8b71d84a7920809a40b54fd121ad/2dcollections3d.py b/_downloads/557e8b71d84a7920809a40b54fd121ad/2dcollections3d.py deleted file mode 120000 index eb856dfce53..00000000000 --- a/_downloads/557e8b71d84a7920809a40b54fd121ad/2dcollections3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/557e8b71d84a7920809a40b54fd121ad/2dcollections3d.py \ No newline at end of file diff --git a/_downloads/5580fb11601e7fea671cda489866cdb8/style_sheets_reference.ipynb b/_downloads/5580fb11601e7fea671cda489866cdb8/style_sheets_reference.ipynb deleted file mode 120000 index 78d39d25889..00000000000 --- a/_downloads/5580fb11601e7fea671cda489866cdb8/style_sheets_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5580fb11601e7fea671cda489866cdb8/style_sheets_reference.ipynb \ No newline at end of file diff --git a/_downloads/5582b32bc74a39f86a4911447bbeb699/anchored_box02.ipynb b/_downloads/5582b32bc74a39f86a4911447bbeb699/anchored_box02.ipynb deleted file mode 120000 index 3a157bb4b85..00000000000 --- a/_downloads/5582b32bc74a39f86a4911447bbeb699/anchored_box02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5582b32bc74a39f86a4911447bbeb699/anchored_box02.ipynb \ No newline at end of file diff --git a/_downloads/55853832fea88bc034448091b00dd91b/figure_axes_enter_leave.ipynb b/_downloads/55853832fea88bc034448091b00dd91b/figure_axes_enter_leave.ipynb deleted file mode 100644 index 4d9d2cec5f1..00000000000 --- a/_downloads/55853832fea88bc034448091b00dd91b/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Figure Axes Enter Leave\n\n\nIllustrate the figure and axes enter and leave events by changing the\nframe colors on enter and leave\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef enter_axes(event):\n print('enter_axes', event.inaxes)\n event.inaxes.patch.set_facecolor('yellow')\n event.canvas.draw()\n\n\ndef leave_axes(event):\n print('leave_axes', event.inaxes)\n event.inaxes.patch.set_facecolor('white')\n event.canvas.draw()\n\n\ndef enter_figure(event):\n print('enter_figure', event.canvas.figure)\n event.canvas.figure.patch.set_facecolor('red')\n event.canvas.draw()\n\n\ndef leave_figure(event):\n print('leave_figure', event.canvas.figure)\n event.canvas.figure.patch.set_facecolor('grey')\n event.canvas.draw()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, (ax, ax2) = plt.subplots(2, 1)\nfig1.suptitle('mouse hover over figure or axes to trigger events')\n\nfig1.canvas.mpl_connect('figure_enter_event', enter_figure)\nfig1.canvas.mpl_connect('figure_leave_event', leave_figure)\nfig1.canvas.mpl_connect('axes_enter_event', enter_axes)\nfig1.canvas.mpl_connect('axes_leave_event', leave_axes)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, (ax, ax2) = plt.subplots(2, 1)\nfig2.suptitle('mouse hover over figure or axes to trigger events')\n\nfig2.canvas.mpl_connect('figure_enter_event', enter_figure)\nfig2.canvas.mpl_connect('figure_leave_event', leave_figure)\nfig2.canvas.mpl_connect('axes_enter_event', enter_axes)\nfig2.canvas.mpl_connect('axes_leave_event', leave_axes)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/55914c9db53b89ec2f7e74238779704f/histogram_cumulative.py b/_downloads/55914c9db53b89ec2f7e74238779704f/histogram_cumulative.py deleted file mode 120000 index 1fc4e8b0bc2..00000000000 --- a/_downloads/55914c9db53b89ec2f7e74238779704f/histogram_cumulative.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55914c9db53b89ec2f7e74238779704f/histogram_cumulative.py \ No newline at end of file diff --git a/_downloads/5599b2c79b3fdf3658bb0609ed43dc43/color_cycle.ipynb b/_downloads/5599b2c79b3fdf3658bb0609ed43dc43/color_cycle.ipynb deleted file mode 120000 index ff72de91d62..00000000000 --- a/_downloads/5599b2c79b3fdf3658bb0609ed43dc43/color_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5599b2c79b3fdf3658bb0609ed43dc43/color_cycle.ipynb \ No newline at end of file diff --git a/_downloads/559a8b2e7a5aa14735c98fa94a0acf35/compound_path.ipynb b/_downloads/559a8b2e7a5aa14735c98fa94a0acf35/compound_path.ipynb deleted file mode 120000 index 00342a328e1..00000000000 --- a/_downloads/559a8b2e7a5aa14735c98fa94a0acf35/compound_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/559a8b2e7a5aa14735c98fa94a0acf35/compound_path.ipynb \ No newline at end of file diff --git a/_downloads/559af7e1602082434e3043f7d5c92db2/barchart.ipynb b/_downloads/559af7e1602082434e3043f7d5c92db2/barchart.ipynb deleted file mode 100644 index 864e0ceb761..00000000000 --- a/_downloads/559af7e1602082434e3043f7d5c92db2/barchart.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Grouped bar chart with labels\n\n\nThis example shows a how to create a grouped bar chart and how to annotate\nbars with labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nlabels = ['G1', 'G2', 'G3', 'G4', 'G5']\nmen_means = [20, 34, 30, 35, 27]\nwomen_means = [25, 32, 34, 20, 25]\n\nx = np.arange(len(labels)) # the label locations\nwidth = 0.35 # the width of the bars\n\nfig, ax = plt.subplots()\nrects1 = ax.bar(x - width/2, men_means, width, label='Men')\nrects2 = ax.bar(x + width/2, women_means, width, label='Women')\n\n# Add some text for labels, title and custom x-axis tick labels, etc.\nax.set_ylabel('Scores')\nax.set_title('Scores by group and gender')\nax.set_xticks(x)\nax.set_xticklabels(labels)\nax.legend()\n\n\ndef autolabel(rects):\n \"\"\"Attach a text label above each bar in *rects*, displaying its height.\"\"\"\n for rect in rects:\n height = rect.get_height()\n ax.annotate('{}'.format(height),\n xy=(rect.get_x() + rect.get_width() / 2, height),\n xytext=(0, 3), # 3 points vertical offset\n textcoords=\"offset points\",\n ha='center', va='bottom')\n\n\nautolabel(rects1)\nautolabel(rects2)\n\nfig.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/559ff7c32afe9722a66b47a4700e1828/zoom_window.ipynb b/_downloads/559ff7c32afe9722a66b47a4700e1828/zoom_window.ipynb deleted file mode 100644 index 6f5251e1092..00000000000 --- a/_downloads/559ff7c32afe9722a66b47a4700e1828/zoom_window.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Zoom Window\n\n\nThis example shows how to connect events in one window, for example, a mouse\npress, to another figure window.\n\nIf you click on a point in the first window, the z and y limits of the second\nwill be adjusted so that the center of the zoom in the second window will be\nthe x,y coordinates of the clicked point.\n\nNote the diameter of the circles in the scatter are defined in points**2, so\ntheir size is independent of the zoom.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfigsrc, axsrc = plt.subplots()\nfigzoom, axzoom = plt.subplots()\naxsrc.set(xlim=(0, 1), ylim=(0, 1), autoscale_on=False,\n title='Click to zoom')\naxzoom.set(xlim=(0.45, 0.55), ylim=(0.4, 0.6), autoscale_on=False,\n title='Zoom window')\n\nx, y, s, c = np.random.rand(4, 200)\ns *= 200\n\naxsrc.scatter(x, y, s, c)\naxzoom.scatter(x, y, s, c)\n\n\ndef onpress(event):\n if event.button != 1:\n return\n x, y = event.xdata, event.ydata\n axzoom.set_xlim(x - 0.1, x + 0.1)\n axzoom.set_ylim(y - 0.1, y + 0.1)\n figzoom.canvas.draw()\n\nfigsrc.canvas.mpl_connect('button_press_event', onpress)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/55a3b8a24cb8370b4b397ee3ac0d971d/joinstyle.ipynb b/_downloads/55a3b8a24cb8370b4b397ee3ac0d971d/joinstyle.ipynb deleted file mode 120000 index 04e5212348c..00000000000 --- a/_downloads/55a3b8a24cb8370b4b397ee3ac0d971d/joinstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55a3b8a24cb8370b4b397ee3ac0d971d/joinstyle.ipynb \ No newline at end of file diff --git a/_downloads/55a47d69e5218ffb6e01e1ee4fea1704/transoffset.ipynb b/_downloads/55a47d69e5218ffb6e01e1ee4fea1704/transoffset.ipynb deleted file mode 120000 index d0df3559928..00000000000 --- a/_downloads/55a47d69e5218ffb6e01e1ee4fea1704/transoffset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55a47d69e5218ffb6e01e1ee4fea1704/transoffset.ipynb \ No newline at end of file diff --git a/_downloads/55a714c8a6e4dde456b09326202fe492/sample_plots.py b/_downloads/55a714c8a6e4dde456b09326202fe492/sample_plots.py deleted file mode 120000 index 3a87d9df1e3..00000000000 --- a/_downloads/55a714c8a6e4dde456b09326202fe492/sample_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/55a714c8a6e4dde456b09326202fe492/sample_plots.py \ No newline at end of file diff --git a/_downloads/55adc8e08452db4e59e886b88e08b0a1/svg_filter_pie.ipynb b/_downloads/55adc8e08452db4e59e886b88e08b0a1/svg_filter_pie.ipynb deleted file mode 120000 index 01eea082d40..00000000000 --- a/_downloads/55adc8e08452db4e59e886b88e08b0a1/svg_filter_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/55adc8e08452db4e59e886b88e08b0a1/svg_filter_pie.ipynb \ No newline at end of file diff --git a/_downloads/55b30f9d34b13bc77c2a9b5cec45f62b/animated_histogram.py b/_downloads/55b30f9d34b13bc77c2a9b5cec45f62b/animated_histogram.py deleted file mode 120000 index e290be00bfb..00000000000 --- a/_downloads/55b30f9d34b13bc77c2a9b5cec45f62b/animated_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55b30f9d34b13bc77c2a9b5cec45f62b/animated_histogram.py \ No newline at end of file diff --git a/_downloads/55b938d09b1258c63aa9565a330ec640/demo_annotation_box.ipynb b/_downloads/55b938d09b1258c63aa9565a330ec640/demo_annotation_box.ipynb deleted file mode 100644 index 4a5435ac88a..00000000000 --- a/_downloads/55b938d09b1258c63aa9565a330ec640/demo_annotation_box.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Demo Annotation Box\n\n\nThe AnnotationBbox Artist creates an annotation using an OffsetBox. This\nexample demonstrates three different OffsetBoxes: TextArea, DrawingArea and\nOffsetImage. AnnotationBbox gives more fine-grained control than using the axes\nmethod annotate.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfrom matplotlib.patches import Circle\nfrom matplotlib.offsetbox import (TextArea, DrawingArea, OffsetImage,\n AnnotationBbox)\nfrom matplotlib.cbook import get_sample_data\n\n\nfig, ax = plt.subplots()\n\n# Define a 1st position to annotate (display it with a marker)\nxy = (0.5, 0.7)\nax.plot(xy[0], xy[1], \".r\")\n\n# Annotate the 1st position with a text box ('Test 1')\noffsetbox = TextArea(\"Test 1\", minimumdescent=False)\n\nab = AnnotationBbox(offsetbox, xy,\n xybox=(-20, 40),\n xycoords='data',\n boxcoords=\"offset points\",\n arrowprops=dict(arrowstyle=\"->\"))\nax.add_artist(ab)\n\n# Annotate the 1st position with another text box ('Test')\noffsetbox = TextArea(\"Test\", minimumdescent=False)\n\nab = AnnotationBbox(offsetbox, xy,\n xybox=(1.02, xy[1]),\n xycoords='data',\n boxcoords=(\"axes fraction\", \"data\"),\n box_alignment=(0., 0.5),\n arrowprops=dict(arrowstyle=\"->\"))\nax.add_artist(ab)\n\n# Define a 2nd position to annotate (don't display with a marker this time)\nxy = [0.3, 0.55]\n\n# Annotate the 2nd position with a circle patch\nda = DrawingArea(20, 20, 0, 0)\np = Circle((10, 10), 10)\nda.add_artist(p)\n\nab = AnnotationBbox(da, xy,\n xybox=(1.02, xy[1]),\n xycoords='data',\n boxcoords=(\"axes fraction\", \"data\"),\n box_alignment=(0., 0.5),\n arrowprops=dict(arrowstyle=\"->\"))\n\nax.add_artist(ab)\n\n# Annotate the 2nd position with an image (a generated array of pixels)\narr = np.arange(100).reshape((10, 10))\nim = OffsetImage(arr, zoom=2)\nim.image.axes = ax\n\nab = AnnotationBbox(im, xy,\n xybox=(-50., 50.),\n xycoords='data',\n boxcoords=\"offset points\",\n pad=0.3,\n arrowprops=dict(arrowstyle=\"->\"))\n\nax.add_artist(ab)\n\n# Annotate the 2nd position with another image (a Grace Hopper portrait)\nwith get_sample_data(\"grace_hopper.png\") as file:\n arr_img = plt.imread(file, format='png')\n\nimagebox = OffsetImage(arr_img, zoom=0.2)\nimagebox.image.axes = ax\n\nab = AnnotationBbox(imagebox, xy,\n xybox=(120., -80.),\n xycoords='data',\n boxcoords=\"offset points\",\n pad=0.5,\n arrowprops=dict(\n arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=3\")\n )\n\nax.add_artist(ab)\n\n# Fix the display limits to see everything\nax.set_xlim(0, 1)\nax.set_ylim(0, 1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown in this\nexample:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Circle\nTextArea\nDrawingArea\nOffsetImage\nAnnotationBbox\nget_sample_data\nplt.subplots\nplt.imread\nplt.show" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/55bb6eae7581486d55c44842bc5160ad/date_demo_convert.ipynb b/_downloads/55bb6eae7581486d55c44842bc5160ad/date_demo_convert.ipynb deleted file mode 100644 index aea95bc863f..00000000000 --- a/_downloads/55bb6eae7581486d55c44842bc5160ad/date_demo_convert.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date Demo Convert\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\nimport matplotlib.pyplot as plt\nfrom matplotlib.dates import DayLocator, HourLocator, DateFormatter, drange\nimport numpy as np\n\ndate1 = datetime.datetime(2000, 3, 2)\ndate2 = datetime.datetime(2000, 3, 6)\ndelta = datetime.timedelta(hours=6)\ndates = drange(date1, date2, delta)\n\ny = np.arange(len(dates))\n\nfig, ax = plt.subplots()\nax.plot_date(dates, y ** 2)\n\n# this is superfluous, since the autoscaler should get it right, but\n# use date2num and num2date to convert between dates and floats if\n# you want; both date2num and num2date convert an instance or sequence\nax.set_xlim(dates[0], dates[-1])\n\n# The hour locator takes the hour or sequence of hours you want to\n# tick, not the base multiple\n\nax.xaxis.set_major_locator(DayLocator())\nax.xaxis.set_minor_locator(HourLocator(range(0, 25, 6)))\nax.xaxis.set_major_formatter(DateFormatter('%Y-%m-%d'))\n\nax.fmt_xdata = DateFormatter('%Y-%m-%d %H:%M:%S')\nfig.autofmt_xdate()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/55cc4cbdd8f55c15fc0ae9e6b83c33bd/tricontour_demo.py b/_downloads/55cc4cbdd8f55c15fc0ae9e6b83c33bd/tricontour_demo.py deleted file mode 120000 index 3d4d58f8ee8..00000000000 --- a/_downloads/55cc4cbdd8f55c15fc0ae9e6b83c33bd/tricontour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/55cc4cbdd8f55c15fc0ae9e6b83c33bd/tricontour_demo.py \ No newline at end of file diff --git a/_downloads/55d54afd3ec0eee0e2e4b4b65cd46f25/lines3d.ipynb b/_downloads/55d54afd3ec0eee0e2e4b4b65cd46f25/lines3d.ipynb deleted file mode 100644 index 3fdbd074413..00000000000 --- a/_downloads/55d54afd3ec0eee0e2e4b4b65cd46f25/lines3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parametric Curve\n\n\nThis example demonstrates plotting a parametric curve in 3D.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\nplt.rcParams['legend.fontsize'] = 10\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Prepare arrays x, y, z\ntheta = np.linspace(-4 * np.pi, 4 * np.pi, 100)\nz = np.linspace(-2, 2, 100)\nr = z**2 + 1\nx = r * np.sin(theta)\ny = r * np.cos(theta)\n\nax.plot(x, y, z, label='parametric curve')\nax.legend()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/55d7140bbbe5cad50fac6d6aedfdd2b3/pyplot.py b/_downloads/55d7140bbbe5cad50fac6d6aedfdd2b3/pyplot.py deleted file mode 120000 index 16490e53f7d..00000000000 --- a/_downloads/55d7140bbbe5cad50fac6d6aedfdd2b3/pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/55d7140bbbe5cad50fac6d6aedfdd2b3/pyplot.py \ No newline at end of file diff --git a/_downloads/55da8f1acb40f9af81bbd761274629f5/voxels_torus.ipynb b/_downloads/55da8f1acb40f9af81bbd761274629f5/voxels_torus.ipynb deleted file mode 120000 index 1579ee67e7c..00000000000 --- a/_downloads/55da8f1acb40f9af81bbd761274629f5/voxels_torus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55da8f1acb40f9af81bbd761274629f5/voxels_torus.ipynb \ No newline at end of file diff --git a/_downloads/55dc717c22ac0da8de3f122c57c70e6a/contour_label_demo.ipynb b/_downloads/55dc717c22ac0da8de3f122c57c70e6a/contour_label_demo.ipynb deleted file mode 120000 index f792c17d592..00000000000 --- a/_downloads/55dc717c22ac0da8de3f122c57c70e6a/contour_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/55dc717c22ac0da8de3f122c57c70e6a/contour_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/55dd40a195803328195c9ce657d382d4/simple_axesgrid.ipynb b/_downloads/55dd40a195803328195c9ce657d382d4/simple_axesgrid.ipynb deleted file mode 120000 index 733739981f0..00000000000 --- a/_downloads/55dd40a195803328195c9ce657d382d4/simple_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55dd40a195803328195c9ce657d382d4/simple_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/55de622fe7074d3c2c23621430552673/line_with_text.py b/_downloads/55de622fe7074d3c2c23621430552673/line_with_text.py deleted file mode 120000 index 059f8c4e4f1..00000000000 --- a/_downloads/55de622fe7074d3c2c23621430552673/line_with_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/55de622fe7074d3c2c23621430552673/line_with_text.py \ No newline at end of file diff --git a/_downloads/55debcfaacb2a7d75329347d1cfdbc87/eventplot_demo.py b/_downloads/55debcfaacb2a7d75329347d1cfdbc87/eventplot_demo.py deleted file mode 120000 index 2a6ee7d1c77..00000000000 --- a/_downloads/55debcfaacb2a7d75329347d1cfdbc87/eventplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/55debcfaacb2a7d75329347d1cfdbc87/eventplot_demo.py \ No newline at end of file diff --git a/_downloads/55e051b1a38447905ac5359664fcf884/simple_axisline.ipynb b/_downloads/55e051b1a38447905ac5359664fcf884/simple_axisline.ipynb deleted file mode 120000 index b7aa0aea72b..00000000000 --- a/_downloads/55e051b1a38447905ac5359664fcf884/simple_axisline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/55e051b1a38447905ac5359664fcf884/simple_axisline.ipynb \ No newline at end of file diff --git a/_downloads/55ecbbf381e7221c75a4500505a50d02/path_patch.ipynb b/_downloads/55ecbbf381e7221c75a4500505a50d02/path_patch.ipynb deleted file mode 120000 index 893cc2c6b0b..00000000000 --- a/_downloads/55ecbbf381e7221c75a4500505a50d02/path_patch.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55ecbbf381e7221c75a4500505a50d02/path_patch.ipynb \ No newline at end of file diff --git a/_downloads/55fd0553157a9a19475dc39da9d6bc3b/canvasagg.py b/_downloads/55fd0553157a9a19475dc39da9d6bc3b/canvasagg.py deleted file mode 120000 index c7ada201368..00000000000 --- a/_downloads/55fd0553157a9a19475dc39da9d6bc3b/canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/55fd0553157a9a19475dc39da9d6bc3b/canvasagg.py \ No newline at end of file diff --git a/_downloads/5603cc695cbb30bf42fce32e93e19cf1/packed_bubbles.ipynb b/_downloads/5603cc695cbb30bf42fce32e93e19cf1/packed_bubbles.ipynb deleted file mode 120000 index d2c2eaa5372..00000000000 --- a/_downloads/5603cc695cbb30bf42fce32e93e19cf1/packed_bubbles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5603cc695cbb30bf42fce32e93e19cf1/packed_bubbles.ipynb \ No newline at end of file diff --git a/_downloads/560adae5edf8f0f8f0abc81f78c70a93/pgf.py b/_downloads/560adae5edf8f0f8f0abc81f78c70a93/pgf.py deleted file mode 120000 index bfcb8076e5a..00000000000 --- a/_downloads/560adae5edf8f0f8f0abc81f78c70a93/pgf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/560adae5edf8f0f8f0abc81f78c70a93/pgf.py \ No newline at end of file diff --git a/_downloads/560b4b15725379df26828317923daabe/trisurf3d_2.py b/_downloads/560b4b15725379df26828317923daabe/trisurf3d_2.py deleted file mode 120000 index 2ae2b5b95b1..00000000000 --- a/_downloads/560b4b15725379df26828317923daabe/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/560b4b15725379df26828317923daabe/trisurf3d_2.py \ No newline at end of file diff --git a/_downloads/561134ff0e5f05ecad55d3d93c1bbf7b/quiver3d.py b/_downloads/561134ff0e5f05ecad55d3d93c1bbf7b/quiver3d.py deleted file mode 120000 index d6d831550ff..00000000000 --- a/_downloads/561134ff0e5f05ecad55d3d93c1bbf7b/quiver3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/561134ff0e5f05ecad55d3d93c1bbf7b/quiver3d.py \ No newline at end of file diff --git a/_downloads/5614423300a5274a07c56d4f8b2fca18/dashpointlabel.py b/_downloads/5614423300a5274a07c56d4f8b2fca18/dashpointlabel.py deleted file mode 120000 index a42c97492b6..00000000000 --- a/_downloads/5614423300a5274a07c56d4f8b2fca18/dashpointlabel.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5614423300a5274a07c56d4f8b2fca18/dashpointlabel.py \ No newline at end of file diff --git a/_downloads/562145a7614d88838c0b771963e376b3/text3d.py b/_downloads/562145a7614d88838c0b771963e376b3/text3d.py deleted file mode 120000 index 034ca8103d2..00000000000 --- a/_downloads/562145a7614d88838c0b771963e376b3/text3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/562145a7614d88838c0b771963e376b3/text3d.py \ No newline at end of file diff --git a/_downloads/562944e0945bf50dae541b4f85a9c4fb/axisartist.ipynb b/_downloads/562944e0945bf50dae541b4f85a9c4fb/axisartist.ipynb deleted file mode 100644 index 4acd41d4688..00000000000 --- a/_downloads/562944e0945bf50dae541b4f85a9c4fb/axisartist.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Overview of axisartist toolkit\n\n\nThe axisartist toolkit tutorial.\n\n

Warning

*axisartist* uses a custom Axes class\n (derived from the mpl's original Axes class).\n As a side effect, some commands (mostly tick-related) do not work.

\n\nThe *axisartist* contains a custom Axes class that is meant to support\ncurvilinear grids (e.g., the world coordinate system in astronomy).\nUnlike mpl's original Axes class which uses Axes.xaxis and Axes.yaxis\nto draw ticks, ticklines, etc., axisartist uses a special\nartist (AxisArtist) that can handle ticks, ticklines, etc. for\ncurved coordinate systems.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png\n :target: ../../gallery/axisartist/demo_floating_axis.html\n :align: center\n :scale: 50\n\n Demo Floating Axis\n\nSince it uses special artists, some Matplotlib commands that work on\nAxes.xaxis and Axes.yaxis may not work.\n\n\naxisartist\n==========\n\nThe *axisartist* module provides a custom (and very experimental) Axes\nclass, where each axis (left, right, top, and bottom) have a separate\nassociated artist which is responsible for drawing the axis-line, ticks,\nticklabels, and labels. You can also create your own axis, which can pass\nthrough a fixed position in the axes coordinate, or a fixed position\nin the data coordinate (i.e., the axis floats around when viewlimit\nchanges).\n\nThe axes class, by default, has its xaxis and yaxis invisible, and\nhas 4 additional artists which are responsible for drawing the 4 axis spines in\n\"left\", \"right\", \"bottom\", and \"top\". They are accessed as\nax.axis[\"left\"], ax.axis[\"right\"], and so on, i.e., ax.axis is a\ndictionary that contains artists (note that ax.axis is still a\ncallable method and it behaves as an original Axes.axis method in\nMatplotlib).\n\nTo create an axes, ::\n\n import mpl_toolkits.axisartist as AA\n fig = plt.figure()\n ax = AA.Axes(fig, [0.1, 0.1, 0.8, 0.8])\n fig.add_axes(ax)\n\nor to create a subplot ::\n\n ax = AA.Subplot(fig, 111)\n fig.add_subplot(ax)\n\nFor example, you can hide the right and top spines using::\n\n ax.axis[\"right\"].set_visible(False)\n ax.axis[\"top\"].set_visible(False)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisline3_001.png\n :target: ../../gallery/axisartist/simple_axisline3.html\n :align: center\n :scale: 50\n\n Simple Axisline3\n\nIt is also possible to add a horizontal axis. For example, you may have an\nhorizontal axis at y=0 (in data coordinate). ::\n\n ax.axis[\"y=0\"] = ax.new_floating_axis(nth_coord=0, value=0)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisartist1_001.png\n :target: ../../gallery/axisartist/simple_axisartist1.html\n :align: center\n :scale: 50\n\n Simple Axisartist1\n\nOr a fixed axis with some offset ::\n\n # make new (right-side) yaxis, but with some offset\n ax.axis[\"right2\"] = ax.new_fixed_axis(loc=\"right\",\n offset=(20, 0))\n\naxisartist with ParasiteAxes\n----------------------------\n\nMost commands in the axes_grid1 toolkit can take an axes_class keyword\nargument, and the commands create an axes of the given class. For example,\nto create a host subplot with axisartist.Axes, ::\n\n import mpl_toolkits.axisartist as AA\n from mpl_toolkits.axes_grid1 import host_subplot\n\n host = host_subplot(111, axes_class=AA.Axes)\n\nHere is an example that uses ParasiteAxes.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_parasite_axes2_001.png\n :target: ../../gallery/axisartist/demo_parasite_axes2.html\n :align: center\n :scale: 50\n\n Demo Parasite Axes2\n\nCurvilinear Grid\n----------------\n\nThe motivation behind the AxisArtist module is to support a curvilinear grid\nand ticks.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png\n :target: ../../gallery/axisartist/demo_curvelinear_grid.html\n :align: center\n :scale: 50\n\n Demo Curvelinear Grid\n\nFloating Axes\n-------------\n\nAxisArtist also supports a Floating Axes whose outer axes are defined as\nfloating axis.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axes_001.png\n :target: ../../gallery/axisartist/demo_floating_axes.html\n :align: center\n :scale: 50\n\n Demo Floating Axes\n\naxisartist namespace\n====================\n\nThe *axisartist* namespace includes a derived Axes implementation. The\nbiggest difference is that the artists responsible to draw axis line,\nticks, ticklabel and axis labels are separated out from the mpl's Axis\nclass, which are much more than artists in the original mpl. This\nchange was strongly motivated to support curvilinear grid. Here are a\nfew things that mpl_toolkits.axisartist.Axes is different from original\nAxes from mpl.\n\n* Axis elements (axis line(spine), ticks, ticklabel and axis labels)\n are drawn by a AxisArtist instance. Unlike Axis, left, right, top\n and bottom axis are drawn by separate artists. And each of them may\n have different tick location and different tick labels.\n\n* gridlines are drawn by a Gridlines instance. The change was\n motivated that in curvilinear coordinate, a gridline may not cross\n axis-lines (i.e., no associated ticks). In the original Axes class,\n gridlines are tied to ticks.\n\n* ticklines can be rotated if necessary (i.e, along the gridlines)\n\nIn summary, all these changes was to support\n\n* a curvilinear grid.\n* a floating axis\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png\n :target: ../../gallery/axisartist/demo_floating_axis.html\n :align: center\n :scale: 50\n\n Demo Floating Axis\n\n*mpl_toolkits.axisartist.Axes* class defines a *axis* attribute, which\nis a dictionary of AxisArtist instances. By default, the dictionary\nhas 4 AxisArtist instances, responsible for drawing of left, right,\nbottom and top axis.\n\nxaxis and yaxis attributes are still available, however they are set\nto not visible. As separate artists are used for rendering axis, some\naxis-related method in mpl may have no effect.\nIn addition to AxisArtist instances, the mpl_toolkits.axisartist.Axes will\nhave *gridlines* attribute (Gridlines), which obviously draws grid\nlines.\n\nIn both AxisArtist and Gridlines, the calculation of tick and grid\nlocation is delegated to an instance of GridHelper class.\nmpl_toolkits.axisartist.Axes class uses GridHelperRectlinear as a grid\nhelper. The GridHelperRectlinear class is a wrapper around the *xaxis*\nand *yaxis* of mpl's original Axes, and it was meant to work as the\nway how mpl's original axes works. For example, tick location changes\nusing set_ticks method and etc. should work as expected. But change in\nartist properties (e.g., color) will not work in general, although\nsome effort has been made so that some often-change attributes (color,\netc.) are respected.\n\nAxisArtist\n==========\n\nAxisArtist can be considered as a container artist with following\nattributes which will draw ticks, labels, etc.\n\n * line\n * major_ticks, major_ticklabels\n * minor_ticks, minor_ticklabels\n * offsetText\n * label\n\nline\n----\n\nDerived from Line2d class. Responsible for drawing a spinal(?) line.\n\nmajor_ticks, minor_ticks\n------------------------\n\nDerived from Line2d class. Note that ticks are markers.\n\nmajor_ticklabels, minor_ticklabels\n----------------------------------\n\nDerived from Text. Note that it is not a list of Text artist, but a\nsingle artist (similar to a collection).\n\naxislabel\n---------\n\nDerived from Text.\n\nDefault AxisArtists\n===================\n\nBy default, following for axis artists are defined.::\n\n ax.axis[\"left\"], ax.axis[\"bottom\"], ax.axis[\"right\"], ax.axis[\"top\"]\n\nThe ticklabels and axislabel of the top and the right axis are set to\nnot visible.\n\nFor example, if you want to change the color attributes of\nmajor_ticklabels of the bottom x-axis ::\n\n ax.axis[\"bottom\"].major_ticklabels.set_color(\"b\")\n\nSimilarly, to make ticklabels invisible ::\n\n ax.axis[\"bottom\"].major_ticklabels.set_visible(False)\n\nAxisArtist provides a helper method to control the visibility of ticks,\nticklabels, and label. To make ticklabel invisible, ::\n\n ax.axis[\"bottom\"].toggle(ticklabels=False)\n\nTo make all of ticks, ticklabels, and (axis) label invisible ::\n\n ax.axis[\"bottom\"].toggle(all=False)\n\nTo turn all off but ticks on ::\n\n ax.axis[\"bottom\"].toggle(all=False, ticks=True)\n\nTo turn all on but (axis) label off ::\n\n ax.axis[\"bottom\"].toggle(all=True, label=False))\n\nax.axis's __getitem__ method can take multiple axis names. For\nexample, to turn ticklabels of \"top\" and \"right\" axis on, ::\n\n ax.axis[\"top\",\"right\"].toggle(ticklabels=True))\n\nNote that 'ax.axis[\"top\",\"right\"]' returns a simple proxy object that translate above code to something like below. ::\n\n for n in [\"top\",\"right\"]:\n ax.axis[n].toggle(ticklabels=True))\n\nSo, any return values in the for loop are ignored. And you should not\nuse it anything more than a simple method.\n\nLike the list indexing \":\" means all items, i.e., ::\n\n ax.axis[:].major_ticks.set_color(\"r\")\n\nchanges tick color in all axis.\n\nHowTo\n=====\n\n1. Changing tick locations and label.\n\n Same as the original mpl's axes.::\n\n ax.set_xticks([1,2,3])\n\n2. Changing axis properties like color, etc.\n\n Change the properties of appropriate artists. For example, to change\n the color of the ticklabels::\n\n ax.axis[\"left\"].major_ticklabels.set_color(\"r\")\n\n3. To change the attributes of multiple axis::\n\n ax.axis[\"left\",\"bottom\"].major_ticklabels.set_color(\"r\")\n\n or to change the attributes of all axis::\n\n ax.axis[:].major_ticklabels.set_color(\"r\")\n\n4. To change the tick size (length), you need to use\n axis.major_ticks.set_ticksize method. To change the direction of\n the ticks (ticks are in opposite direction of ticklabels by\n default), use axis.major_ticks.set_tick_out method.\n\n To change the pad between ticks and ticklabels, use\n axis.major_ticklabels.set_pad method.\n\n To change the pad between ticklabels and axis label,\n axis.label.set_pad method.\n\nRotation and Alignment of TickLabels\n====================================\n\nThis is also quite different from the original mpl and can be\nconfusing. When you want to rotate the ticklabels, first consider\nusing \"set_axis_direction\" method. ::\n\n ax1.axis[\"left\"].major_ticklabels.set_axis_direction(\"top\")\n ax1.axis[\"right\"].label.set_axis_direction(\"left\")\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction01_001.png\n :target: ../../gallery/axisartist/simple_axis_direction01.html\n :align: center\n :scale: 50\n\n Simple Axis Direction01\n\nThe parameter for set_axis_direction is one of [\"left\", \"right\",\n\"bottom\", \"top\"].\n\nYou must understand some underlying concept of directions.\n\n 1. There is a reference direction which is defined as the direction\n of the axis line with increasing coordinate. For example, the\n reference direction of the left x-axis is from bottom to top.\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step01_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step01.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 01\n\n The direction, text angle, and alignments of the ticks, ticklabels and\n axis-label is determined with respect to the reference direction\n\n 2. *ticklabel_direction* is either the right-hand side (+) of the\n reference direction or the left-hand side (-).\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step02_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step02.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 02\n\n 3. same for the *label_direction*\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step03_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step03.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 03\n\n 4. ticks are by default drawn toward the opposite direction of the ticklabels.\n\n 5. text rotation of ticklabels and label is determined in reference\n to the *ticklabel_direction* or *label_direction*,\n respectively. The rotation of ticklabels and label is anchored.\n\n .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step04_001.png\n :target: ../../gallery/axisartist/axis_direction_demo_step04.html\n :align: center\n :scale: 50\n\n Axis Direction Demo - Step 04\n\nOn the other hand, there is a concept of \"axis_direction\". This is a\ndefault setting of above properties for each, \"bottom\", \"left\", \"top\",\nand \"right\" axis.\n\n ========== =========== ========= ========== ========= ==========\n ? ? left bottom right top\n ---------- ----------- --------- ---------- --------- ----------\n axislabel direction '-' '+' '+' '-'\n axislabel rotation 180 0 0 180\n axislabel va center top center bottom\n axislabel ha right center right center\n ticklabel direction '-' '+' '+' '-'\n ticklabels rotation 90 0 -90 180\n ticklabel ha right center right center\n ticklabel va center baseline center baseline\n ========== =========== ========= ========== ========= ==========\n\nAnd, 'set_axis_direction(\"top\")' means to adjust the text rotation\netc, for settings suitable for \"top\" axis. The concept of axis\ndirection can be more clear with curved axis.\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_axis_direction_001.png\n :target: ../../gallery/axisartist/demo_axis_direction.html\n :align: center\n :scale: 50\n\n Demo Axis Direction\n\nThe axis_direction can be adjusted in the AxisArtist level, or in the\nlevel of its child artists, i.e., ticks, ticklabels, and axis-label. ::\n\n ax1.axis[\"left\"].set_axis_direction(\"top\")\n\nchanges axis_direction of all the associated artist with the \"left\"\naxis, while ::\n\n ax1.axis[\"left\"].major_ticklabels.set_axis_direction(\"top\")\n\nchanges the axis_direction of only the major_ticklabels. Note that\nset_axis_direction in the AxisArtist level changes the\nticklabel_direction and label_direction, while changing the\naxis_direction of ticks, ticklabels, and axis-label does not affect\nthem.\n\nIf you want to make ticks outward and ticklabels inside the axes,\nuse invert_ticklabel_direction method. ::\n\n ax.axis[:].invert_ticklabel_direction()\n\nA related method is \"set_tick_out\". It makes ticks outward (as a\nmatter of fact, it makes ticks toward the opposite direction of the\ndefault direction). ::\n\n ax.axis[:].major_ticks.set_tick_out(True)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction03_001.png\n :target: ../../gallery/axisartist/simple_axis_direction03.html\n :align: center\n :scale: 50\n\n Simple Axis Direction03\n\nSo, in summary,\n\n * AxisArtist's methods\n * set_axis_direction : \"left\", \"right\", \"bottom\", or \"top\"\n * set_ticklabel_direction : \"+\" or \"-\"\n * set_axislabel_direction : \"+\" or \"-\"\n * invert_ticklabel_direction\n * Ticks' methods (major_ticks and minor_ticks)\n * set_tick_out : True or False\n * set_ticksize : size in points\n * TickLabels' methods (major_ticklabels and minor_ticklabels)\n * set_axis_direction : \"left\", \"right\", \"bottom\", or \"top\"\n * set_rotation : angle with respect to the reference direction\n * set_ha and set_va : see below\n * AxisLabels' methods (label)\n * set_axis_direction : \"left\", \"right\", \"bottom\", or \"top\"\n * set_rotation : angle with respect to the reference direction\n * set_ha and set_va\n\nAdjusting ticklabels alignment\n------------------------------\n\nAlignment of TickLabels are treated specially. See below\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_ticklabel_alignment_001.png\n :target: ../../gallery/axisartist/demo_ticklabel_alignment.html\n :align: center\n :scale: 50\n\n Demo Ticklabel Alignment\n\nAdjusting pad\n-------------\n\nTo change the pad between ticks and ticklabels ::\n\n ax.axis[\"left\"].major_ticklabels.set_pad(10)\n\nOr ticklabels and axis-label ::\n\n ax.axis[\"left\"].label.set_pad(10)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_pad_001.png\n :target: ../../gallery/axisartist/simple_axis_pad.html\n :align: center\n :scale: 50\n\n Simple Axis Pad\n\nGridHelper\n==========\n\nTo actually define a curvilinear coordinate, you have to use your own\ngrid helper. A generalised version of grid helper class is supplied\nand this class should suffice in most of cases. A user may provide\ntwo functions which defines a transformation (and its inverse pair)\nfrom the curved coordinate to (rectilinear) image coordinate. Note that\nwhile ticks and grids are drawn for curved coordinate, the data\ntransform of the axes itself (ax.transData) is still rectilinear\n(image) coordinate. ::\n\n from mpl_toolkits.axisartist.grid_helper_curvelinear \\\n import GridHelperCurveLinear\n from mpl_toolkits.axisartist import Subplot\n\n # from curved coordinate to rectlinear coordinate.\n def tr(x, y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y-x\n\n # from rectlinear coordinate to curved coordinate.\n def inv_tr(x,y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y+x\n\n grid_helper = GridHelperCurveLinear((tr, inv_tr))\n\n ax1 = Subplot(fig, 1, 1, 1, grid_helper=grid_helper)\n\n fig.add_subplot(ax1)\n\nYou may use matplotlib's Transform instance instead (but a\ninverse transformation must be defined). Often, coordinate range in a\ncurved coordinate system may have a limited range, or may have\ncycles. In those cases, a more customized version of grid helper is\nrequired. ::\n\n import mpl_toolkits.axisartist.angle_helper as angle_helper\n\n # PolarAxes.PolarTransform takes radian. However, we want our coordinate\n # system in degree\n tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform()\n\n # extreme finder : find a range of coordinate.\n # 20, 20 : number of sampling points along x, y direction\n # The first coordinate (longitude, but theta in polar)\n # has a cycle of 360 degree.\n # The second coordinate (latitude, but radius in polar) has a minimum of 0\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle = 360,\n lat_cycle = None,\n lon_minmax = None,\n lat_minmax = (0, np.inf),\n )\n\n # Find a grid values appropriate for the coordinate (degree,\n # minute, second). The argument is a approximate number of grids.\n grid_locator1 = angle_helper.LocatorDMS(12)\n\n # And also uses an appropriate formatter. Note that,the\n # acceptable Locator and Formatter class is a bit different than\n # that of mpl's, and you cannot directly use mpl's Locator and\n # Formatter here (but may be possible in the future).\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n tick_formatter1=tick_formatter1\n )\n\nAgain, the *transData* of the axes is still a rectilinear coordinate\n(image coordinate). You may manually do conversion between two\ncoordinates, or you may use Parasite Axes for convenience.::\n\n ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper)\n\n # A parasite axes with given transform\n ax2 = ParasiteAxesAuxTrans(ax1, tr, \"equal\")\n # note that ax2.transData == tr + ax1.transData\n # Anything you draw in ax2 will match the ticks and grids of ax1.\n ax1.parasites.append(ax2)\n\n.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png\n :target: ../../gallery/axisartist/demo_curvelinear_grid.html\n :align: center\n :scale: 50\n\n Demo Curvelinear Grid\n\nFloatingAxis\n============\n\nA floating axis is an axis one of whose data coordinate is fixed, i.e,\nits location is not fixed in Axes coordinate but changes as axes data\nlimits changes. A floating axis can be created using\n*new_floating_axis* method. However, it is your responsibility that\nthe resulting AxisArtist is properly added to the axes. A recommended\nway is to add it as an item of Axes's axis attribute.::\n\n # floating axis whose first (index starts from 0) coordinate\n # (theta) is fixed at 60\n\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 60)\n axis.label.set_text(r\"$\\theta = 60^{\\circ}$\")\n axis.label.set_visible(True)\n\nSee the first example of this page.\n\nCurrent Limitations and TODO's\n==============================\n\nThe code need more refinement. Here is a incomplete list of issues and TODO's\n\n* No easy way to support a user customized tick location (for\n curvilinear grid). A new Locator class needs to be created.\n\n* FloatingAxis may have coordinate limits, e.g., a floating axis of x\n = 0, but y only spans from 0 to 1.\n\n* The location of axislabel of FloatingAxis needs to be optionally\n given as a coordinate value. ex, a floating axis of x=0 with label at y=1\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/562f09ef70451670d5869351c9bb30c0/mpl_with_glade3_sgskip.ipynb b/_downloads/562f09ef70451670d5869351c9bb30c0/mpl_with_glade3_sgskip.ipynb deleted file mode 120000 index ac9c9dd789f..00000000000 --- a/_downloads/562f09ef70451670d5869351c9bb30c0/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/562f09ef70451670d5869351c9bb30c0/mpl_with_glade3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/5638d1f43116cb0de72e474d958542da/demo_constrained_layout.py b/_downloads/5638d1f43116cb0de72e474d958542da/demo_constrained_layout.py deleted file mode 120000 index fb25a479f46..00000000000 --- a/_downloads/5638d1f43116cb0de72e474d958542da/demo_constrained_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5638d1f43116cb0de72e474d958542da/demo_constrained_layout.py \ No newline at end of file diff --git a/_downloads/563da0f60e62fd0347f08990018f8af6/findobj_demo.py b/_downloads/563da0f60e62fd0347f08990018f8af6/findobj_demo.py deleted file mode 100644 index 971a184a53d..00000000000 --- a/_downloads/563da0f60e62fd0347f08990018f8af6/findobj_demo.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -============ -Findobj Demo -============ - -Recursively find all objects that match some criteria -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.text as text - -a = np.arange(0, 3, .02) -b = np.arange(0, 3, .02) -c = np.exp(a) -d = c[::-1] - -fig, ax = plt.subplots() -plt.plot(a, c, 'k--', a, d, 'k:', a, c + d, 'k') -plt.legend(('Model length', 'Data length', 'Total message length'), - loc='upper center', shadow=True) -plt.ylim([-1, 20]) -plt.grid(False) -plt.xlabel('Model complexity --->') -plt.ylabel('Message length --->') -plt.title('Minimum Message Length') - - -# match on arbitrary function -def myfunc(x): - return hasattr(x, 'set_color') and not hasattr(x, 'set_facecolor') - - -for o in fig.findobj(myfunc): - o.set_color('blue') - -# match on class instances -for o in fig.findobj(text.Text): - o.set_fontstyle('italic') - - -plt.show() diff --git a/_downloads/5644ffa54138df1d75ccd7b792e7f20e/annotate_simple03.py b/_downloads/5644ffa54138df1d75ccd7b792e7f20e/annotate_simple03.py deleted file mode 100644 index c2d1c17b4ae..00000000000 --- a/_downloads/5644ffa54138df1d75ccd7b792e7f20e/annotate_simple03.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -================= -Annotate Simple03 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ann = ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - bbox=dict(boxstyle="round4", fc="w"), - arrowprops=dict(arrowstyle="-|>", - connectionstyle="arc3,rad=-0.2", - fc="w"), - ) - -plt.show() diff --git a/_downloads/564514e0121bd72c1c5a8ee2e99e3d57/radian_demo.ipynb b/_downloads/564514e0121bd72c1c5a8ee2e99e3d57/radian_demo.ipynb deleted file mode 120000 index 3fb60f964fc..00000000000 --- a/_downloads/564514e0121bd72c1c5a8ee2e99e3d57/radian_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/564514e0121bd72c1c5a8ee2e99e3d57/radian_demo.ipynb \ No newline at end of file diff --git a/_downloads/56657710c6d5fb4e943dd841907d6045/multiline.py b/_downloads/56657710c6d5fb4e943dd841907d6045/multiline.py deleted file mode 100644 index ce2cb158af8..00000000000 --- a/_downloads/56657710c6d5fb4e943dd841907d6045/multiline.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -========= -Multiline -========= - -""" -import matplotlib.pyplot as plt -import numpy as np - -plt.figure(figsize=(7, 4)) -ax = plt.subplot(121) -ax.set_aspect(1) -plt.plot(np.arange(10)) -plt.xlabel('this is a xlabel\n(with newlines!)') -plt.ylabel('this is vertical\ntest', multialignment='center') -plt.text(2, 7, 'this is\nyet another test', - rotation=45, - horizontalalignment='center', - verticalalignment='top', - multialignment='center') - -plt.grid(True) - -plt.subplot(122) - -plt.text(0.29, 0.4, "Mat\nTTp\n123", size=18, - va="baseline", ha="right", multialignment="left", - bbox=dict(fc="none")) - -plt.text(0.34, 0.4, "Mag\nTTT\n123", size=18, - va="baseline", ha="left", multialignment="left", - bbox=dict(fc="none")) - -plt.text(0.95, 0.4, "Mag\nTTT$^{A^A}$\n123", size=18, - va="baseline", ha="right", multialignment="left", - bbox=dict(fc="none")) - -plt.xticks([0.2, 0.4, 0.6, 0.8, 1.], - ["Jan\n2009", "Feb\n2009", "Mar\n2009", "Apr\n2009", "May\n2009"]) - -plt.axhline(0.4) -plt.title("test line spacing for multiline text") - -plt.subplots_adjust(bottom=0.25, top=0.75) -plt.show() diff --git a/_downloads/5667ae03c49ffecabe0cb056efec16f2/subplot_demo.py b/_downloads/5667ae03c49ffecabe0cb056efec16f2/subplot_demo.py deleted file mode 120000 index 41bf405654d..00000000000 --- a/_downloads/5667ae03c49ffecabe0cb056efec16f2/subplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/5667ae03c49ffecabe0cb056efec16f2/subplot_demo.py \ No newline at end of file diff --git a/_downloads/5679399ca945f3d449a322a43e48647c/polar_bar.ipynb b/_downloads/5679399ca945f3d449a322a43e48647c/polar_bar.ipynb deleted file mode 100644 index db83a88cb95..00000000000 --- a/_downloads/5679399ca945f3d449a322a43e48647c/polar_bar.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bar chart on polar axis\n\n\nDemo of bar plot on a polar axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# Compute pie slices\nN = 20\ntheta = np.linspace(0.0, 2 * np.pi, N, endpoint=False)\nradii = 10 * np.random.rand(N)\nwidth = np.pi / 4 * np.random.rand(N)\ncolors = plt.cm.viridis(radii / 10.)\n\nax = plt.subplot(111, projection='polar')\nax.bar(theta, radii, width=width, bottom=0.0, color=colors, alpha=0.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.projections.polar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/568063a054e4068b855cef34d3b037b5/demo_axisline_style.ipynb b/_downloads/568063a054e4068b855cef34d3b037b5/demo_axisline_style.ipynb deleted file mode 120000 index c08bcddeb60..00000000000 --- a/_downloads/568063a054e4068b855cef34d3b037b5/demo_axisline_style.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/568063a054e4068b855cef34d3b037b5/demo_axisline_style.ipynb \ No newline at end of file diff --git a/_downloads/568116fdc7b44ff695e0bda5bb1cc6b0/bar_of_pie.ipynb b/_downloads/568116fdc7b44ff695e0bda5bb1cc6b0/bar_of_pie.ipynb deleted file mode 100644 index b14942e81c0..00000000000 --- a/_downloads/568116fdc7b44ff695e0bda5bb1cc6b0/bar_of_pie.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bar of pie\n\n\nMake a \"bar of pie\" chart where the first slice of the pie is\n\"exploded\" into a bar chart with a further breakdown of said slice's\ncharacteristics. The example demonstrates using a figure with multiple\nsets of axes and using the axes patches list to add two ConnectionPatches\nto link the subplot charts.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import ConnectionPatch\nimport numpy as np\n\n# make figure and assign axis objects\nfig = plt.figure(figsize=(9, 5.0625))\nax1 = fig.add_subplot(121)\nax2 = fig.add_subplot(122)\nfig.subplots_adjust(wspace=0)\n\n# pie chart parameters\nratios = [.27, .56, .17]\nlabels = ['Approve', 'Disapprove', 'Undecided']\nexplode = [0.1, 0, 0]\n# rotate so that first wedge is split by the x-axis\nangle = -180 * ratios[0]\nax1.pie(ratios, autopct='%1.1f%%', startangle=angle,\n labels=labels, explode=explode)\n\n# bar chart parameters\n\nxpos = 0\nbottom = 0\nratios = [.33, .54, .07, .06]\nwidth = .2\ncolors = [[.1, .3, .5], [.1, .3, .3], [.1, .3, .7], [.1, .3, .9]]\n\nfor j in range(len(ratios)):\n height = ratios[j]\n ax2.bar(xpos, height, width, bottom=bottom, color=colors[j])\n ypos = bottom + ax2.patches[j].get_height() / 2\n bottom += height\n ax2.text(xpos, ypos, \"%d%%\" % (ax2.patches[j].get_height() * 100),\n ha='center')\n\nax2.set_title('Age of approvers')\nax2.legend(('50-65', 'Over 65', '35-49', 'Under 35'))\nax2.axis('off')\nax2.set_xlim(- 2.5 * width, 2.5 * width)\n\n# use ConnectionPatch to draw lines between the two plots\n# get the wedge data\ntheta1, theta2 = ax1.patches[0].theta1, ax1.patches[0].theta2\ncenter, r = ax1.patches[0].center, ax1.patches[0].r\nbar_height = sum([item.get_height() for item in ax2.patches])\n\n# draw top connecting line\nx = r * np.cos(np.pi / 180 * theta2) + center[0]\ny = np.sin(np.pi / 180 * theta2) + center[1]\ncon = ConnectionPatch(xyA=(- width / 2, bar_height), xyB=(x, y),\n coordsA=\"data\", coordsB=\"data\", axesA=ax2, axesB=ax1)\ncon.set_color([0, 0, 0])\ncon.set_linewidth(4)\nax2.add_artist(con)\n\n# draw bottom connecting line\nx = r * np.cos(np.pi / 180 * theta1) + center[0]\ny = np.sin(np.pi / 180 * theta1) + center[1]\ncon = ConnectionPatch(xyA=(- width / 2, 0), xyB=(x, y), coordsA=\"data\",\n coordsB=\"data\", axesA=ax2, axesB=ax1)\ncon.set_color([0, 0, 0])\nax2.add_artist(con)\ncon.set_linewidth(4)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot\nmatplotlib.patches.ConnectionPatch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/56880bed356dd27bdb9b1993836ea133/ellipse_demo.ipynb b/_downloads/56880bed356dd27bdb9b1993836ea133/ellipse_demo.ipynb deleted file mode 100644 index 3aebe75d949..00000000000 --- a/_downloads/56880bed356dd27bdb9b1993836ea133/ellipse_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ellipse Demo\n\n\nDraw many ellipses. Here individual ellipses are drawn. Compare this\nto the :doc:`Ellipse collection example\n`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.patches import Ellipse\n\nNUM = 250\n\nells = [Ellipse(xy=np.random.rand(2) * 10,\n width=np.random.rand(), height=np.random.rand(),\n angle=np.random.rand() * 360)\n for i in range(NUM)]\n\nfig, ax = plt.subplots(subplot_kw={'aspect': 'equal'})\nfor e in ells:\n ax.add_artist(e)\n e.set_clip_box(ax.bbox)\n e.set_alpha(np.random.rand())\n e.set_facecolor(np.random.rand(3))\n\nax.set_xlim(0, 10)\nax.set_ylim(0, 10)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Ellipse Rotated\n\n\nDraw many ellipses with different angles.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.patches import Ellipse\n\ndelta = 45.0 # degrees\n\nangles = np.arange(0, 360 + delta, delta)\nells = [Ellipse((1, 1), 4, 2, a) for a in angles]\n\na = plt.subplot(111, aspect='equal')\n\nfor e in ells:\n e.set_clip_box(a.bbox)\n e.set_alpha(0.1)\n a.add_artist(e)\n\nplt.xlim(-2, 4)\nplt.ylim(-1, 3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.Ellipse\nmatplotlib.axes.Axes.add_artist\nmatplotlib.artist.Artist.set_clip_box\nmatplotlib.artist.Artist.set_alpha\nmatplotlib.patches.Patch.set_facecolor" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/56966814eca9d25d81901a8c88c035ec/invert_axes.ipynb b/_downloads/56966814eca9d25d81901a8c88c035ec/invert_axes.ipynb deleted file mode 100644 index 50665626685..00000000000 --- a/_downloads/56966814eca9d25d81901a8c88c035ec/invert_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Invert Axes\n\n\nYou can use decreasing axes by flipping the normal order of the axis\nlimits\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.01, 5.0, 0.01)\ns = np.exp(-t)\n\nfig, ax = plt.subplots()\n\nax.plot(t, s)\nax.set_xlim(5, 0) # decreasing time\nax.set_xlabel('decreasing time (s)')\nax.set_ylabel('voltage (mV)')\nax.set_title('Should be growing...')\nax.grid(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/569f6d2696dbae812695e6d633b45b03/triplot.py b/_downloads/569f6d2696dbae812695e6d633b45b03/triplot.py deleted file mode 120000 index 4e1a316e9fc..00000000000 --- a/_downloads/569f6d2696dbae812695e6d633b45b03/triplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/569f6d2696dbae812695e6d633b45b03/triplot.py \ No newline at end of file diff --git a/_downloads/56a45c99b85840ab9cdc8b74f1d4bbaf/mathtext_demo.py b/_downloads/56a45c99b85840ab9cdc8b74f1d4bbaf/mathtext_demo.py deleted file mode 120000 index 2697c714606..00000000000 --- a/_downloads/56a45c99b85840ab9cdc8b74f1d4bbaf/mathtext_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/56a45c99b85840ab9cdc8b74f1d4bbaf/mathtext_demo.py \ No newline at end of file diff --git a/_downloads/56a6551534c8380006fdd80323280f3d/boxplot.ipynb b/_downloads/56a6551534c8380006fdd80323280f3d/boxplot.ipynb deleted file mode 120000 index 5a720ac5a15..00000000000 --- a/_downloads/56a6551534c8380006fdd80323280f3d/boxplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/56a6551534c8380006fdd80323280f3d/boxplot.ipynb \ No newline at end of file diff --git a/_downloads/56aca19386c6aabe2090762e2ec64f0a/categorical_variables.py b/_downloads/56aca19386c6aabe2090762e2ec64f0a/categorical_variables.py deleted file mode 120000 index 9a5e4f23504..00000000000 --- a/_downloads/56aca19386c6aabe2090762e2ec64f0a/categorical_variables.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/56aca19386c6aabe2090762e2ec64f0a/categorical_variables.py \ No newline at end of file diff --git a/_downloads/56b4a39616d956a4166e9b60200ca080/text_layout.py b/_downloads/56b4a39616d956a4166e9b60200ca080/text_layout.py deleted file mode 120000 index 7d729ff02fa..00000000000 --- a/_downloads/56b4a39616d956a4166e9b60200ca080/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/56b4a39616d956a4166e9b60200ca080/text_layout.py \ No newline at end of file diff --git a/_downloads/56b7bf491b1d106143dcc5df38c73d04/hexbin.py b/_downloads/56b7bf491b1d106143dcc5df38c73d04/hexbin.py deleted file mode 120000 index ea19160e87b..00000000000 --- a/_downloads/56b7bf491b1d106143dcc5df38c73d04/hexbin.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/56b7bf491b1d106143dcc5df38c73d04/hexbin.py \ No newline at end of file diff --git a/_downloads/56bf2ccb159bb423ba67ddfe27bbf5b5/multiple_yaxis_with_spines.ipynb b/_downloads/56bf2ccb159bb423ba67ddfe27bbf5b5/multiple_yaxis_with_spines.ipynb deleted file mode 100644 index 6d3155ea157..00000000000 --- a/_downloads/56bf2ccb159bb423ba67ddfe27bbf5b5/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiple Yaxis With Spines\n\n\nCreate multiple y axes with a shared x axis. This is done by creating\na `~.axes.Axes.twinx` axes, turning all spines but the right one invisible\nand offset its position using `~.spines.Spine.set_position`.\n\nNote that this approach uses `matplotlib.axes.Axes` and their\n:class:`Spines<~matplotlib.spines.Spine>`. An alternative approach for parasite\naxes is shown in the :doc:`/gallery/axisartist/demo_parasite_axes` and\n:doc:`/gallery/axisartist/demo_parasite_axes2` examples.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef make_patch_spines_invisible(ax):\n ax.set_frame_on(True)\n ax.patch.set_visible(False)\n for sp in ax.spines.values():\n sp.set_visible(False)\n\n\nfig, host = plt.subplots()\nfig.subplots_adjust(right=0.75)\n\npar1 = host.twinx()\npar2 = host.twinx()\n\n# Offset the right spine of par2. The ticks and label have already been\n# placed on the right by twinx above.\npar2.spines[\"right\"].set_position((\"axes\", 1.2))\n# Having been created by twinx, par2 has its frame off, so the line of its\n# detached spine is invisible. First, activate the frame but make the patch\n# and spines invisible.\nmake_patch_spines_invisible(par2)\n# Second, show the right spine.\npar2.spines[\"right\"].set_visible(True)\n\np1, = host.plot([0, 1, 2], [0, 1, 2], \"b-\", label=\"Density\")\np2, = par1.plot([0, 1, 2], [0, 3, 2], \"r-\", label=\"Temperature\")\np3, = par2.plot([0, 1, 2], [50, 30, 15], \"g-\", label=\"Velocity\")\n\nhost.set_xlim(0, 2)\nhost.set_ylim(0, 2)\npar1.set_ylim(0, 4)\npar2.set_ylim(1, 65)\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar1.set_ylabel(\"Temperature\")\npar2.set_ylabel(\"Velocity\")\n\nhost.yaxis.label.set_color(p1.get_color())\npar1.yaxis.label.set_color(p2.get_color())\npar2.yaxis.label.set_color(p3.get_color())\n\ntkw = dict(size=4, width=1.5)\nhost.tick_params(axis='y', colors=p1.get_color(), **tkw)\npar1.tick_params(axis='y', colors=p2.get_color(), **tkw)\npar2.tick_params(axis='y', colors=p3.get_color(), **tkw)\nhost.tick_params(axis='x', **tkw)\n\nlines = [p1, p2, p3]\n\nhost.legend(lines, [l.get_label() for l in lines])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/56c1618f3f3a06cb95a0c2f595e21fbf/engineering_formatter.py b/_downloads/56c1618f3f3a06cb95a0c2f595e21fbf/engineering_formatter.py deleted file mode 120000 index b2eb7e1fd0f..00000000000 --- a/_downloads/56c1618f3f3a06cb95a0c2f595e21fbf/engineering_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/56c1618f3f3a06cb95a0c2f595e21fbf/engineering_formatter.py \ No newline at end of file diff --git a/_downloads/56c77b787e9e2d101e4eb36d224bbb41/offset.py b/_downloads/56c77b787e9e2d101e4eb36d224bbb41/offset.py deleted file mode 120000 index baff3ebae93..00000000000 --- a/_downloads/56c77b787e9e2d101e4eb36d224bbb41/offset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/56c77b787e9e2d101e4eb36d224bbb41/offset.py \ No newline at end of file diff --git a/_downloads/56ca330758caf288c1ce2a9d635615fb/inset_locator_demo.py b/_downloads/56ca330758caf288c1ce2a9d635615fb/inset_locator_demo.py deleted file mode 120000 index f0305ec4106..00000000000 --- a/_downloads/56ca330758caf288c1ce2a9d635615fb/inset_locator_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/56ca330758caf288c1ce2a9d635615fb/inset_locator_demo.py \ No newline at end of file diff --git a/_downloads/56ccc5ad97dbe1eb40bb9d2e7eed8d1a/patheffects_guide.ipynb b/_downloads/56ccc5ad97dbe1eb40bb9d2e7eed8d1a/patheffects_guide.ipynb deleted file mode 120000 index 23510554009..00000000000 --- a/_downloads/56ccc5ad97dbe1eb40bb9d2e7eed8d1a/patheffects_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/56ccc5ad97dbe1eb40bb9d2e7eed8d1a/patheffects_guide.ipynb \ No newline at end of file diff --git a/_downloads/56d6392b656a81ed5f4c5e18d0765ddc/voxels_torus.py b/_downloads/56d6392b656a81ed5f4c5e18d0765ddc/voxels_torus.py deleted file mode 100644 index 3112f82792d..00000000000 --- a/_downloads/56d6392b656a81ed5f4c5e18d0765ddc/voxels_torus.py +++ /dev/null @@ -1,49 +0,0 @@ -''' -======================================================= -3D voxel / volumetric plot with cylindrical coordinates -======================================================= - -Demonstrates using the ``x, y, z`` arguments of ``ax.voxels``. -''' - -import matplotlib.pyplot as plt -import matplotlib.colors -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def midpoints(x): - sl = () - for i in range(x.ndim): - x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0 - sl += np.index_exp[:] - return x - -# prepare some coordinates, and attach rgb values to each -r, theta, z = np.mgrid[0:1:11j, 0:np.pi*2:25j, -0.5:0.5:11j] -x = r*np.cos(theta) -y = r*np.sin(theta) - -rc, thetac, zc = midpoints(r), midpoints(theta), midpoints(z) - -# define a wobbly torus about [0.7, *, 0] -sphere = (rc - 0.7)**2 + (zc + 0.2*np.cos(thetac*2))**2 < 0.2**2 - -# combine the color components -hsv = np.zeros(sphere.shape + (3,)) -hsv[..., 0] = thetac / (np.pi*2) -hsv[..., 1] = rc -hsv[..., 2] = zc + 0.5 -colors = matplotlib.colors.hsv_to_rgb(hsv) - -# and plot everything -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(x, y, z, sphere, - facecolors=colors, - edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter - linewidth=0.5) - -plt.show() diff --git a/_downloads/56d8509ce7364a55dd73bb59e0db9b43/geo_demo.py b/_downloads/56d8509ce7364a55dd73bb59e0db9b43/geo_demo.py deleted file mode 100644 index c0ac7f7adfa..00000000000 --- a/_downloads/56d8509ce7364a55dd73bb59e0db9b43/geo_demo.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -====================== -Geographic Projections -====================== - -This shows 4 possible projections using subplot. Matplotlib also -supports `Basemaps Toolkit `_ and -`Cartopy `_ for geographic projections. - -""" - -import matplotlib.pyplot as plt - -############################################################################### - -plt.figure() -plt.subplot(111, projection="aitoff") -plt.title("Aitoff") -plt.grid(True) - -############################################################################### - -plt.figure() -plt.subplot(111, projection="hammer") -plt.title("Hammer") -plt.grid(True) - -############################################################################### - -plt.figure() -plt.subplot(111, projection="lambert") -plt.title("Lambert") -plt.grid(True) - -############################################################################### - -plt.figure() -plt.subplot(111, projection="mollweide") -plt.title("Mollweide") -plt.grid(True) - -plt.show() diff --git a/_downloads/56d95497ac4c8c19de716ebc18c868f8/simple_plot.py b/_downloads/56d95497ac4c8c19de716ebc18c868f8/simple_plot.py deleted file mode 120000 index d6bc2a65c64..00000000000 --- a/_downloads/56d95497ac4c8c19de716ebc18c868f8/simple_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/56d95497ac4c8c19de716ebc18c868f8/simple_plot.py \ No newline at end of file diff --git a/_downloads/56dd8a42c5506d6f4b030f191ab55a38/anchored_artists.py b/_downloads/56dd8a42c5506d6f4b030f191ab55a38/anchored_artists.py deleted file mode 120000 index 6118f325e76..00000000000 --- a/_downloads/56dd8a42c5506d6f4b030f191ab55a38/anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/56dd8a42c5506d6f4b030f191ab55a38/anchored_artists.py \ No newline at end of file diff --git a/_downloads/56e05f68b79dabcbe43a0ff2f68e69c5/ginput_manual_clabel_sgskip.ipynb b/_downloads/56e05f68b79dabcbe43a0ff2f68e69c5/ginput_manual_clabel_sgskip.ipynb deleted file mode 120000 index 44efd48a42c..00000000000 --- a/_downloads/56e05f68b79dabcbe43a0ff2f68e69c5/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/56e05f68b79dabcbe43a0ff2f68e69c5/ginput_manual_clabel_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/56e51f9906e5b6bcd0521284660f9a3d/contourf_demo.py b/_downloads/56e51f9906e5b6bcd0521284660f9a3d/contourf_demo.py deleted file mode 120000 index 7e2a3ae43b4..00000000000 --- a/_downloads/56e51f9906e5b6bcd0521284660f9a3d/contourf_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/56e51f9906e5b6bcd0521284660f9a3d/contourf_demo.py \ No newline at end of file diff --git a/_downloads/56e59a45939ad1e5c7b70de8e7e585fa/pcolormesh_levels.py b/_downloads/56e59a45939ad1e5c7b70de8e7e585fa/pcolormesh_levels.py deleted file mode 120000 index 31a2d4eaaa4..00000000000 --- a/_downloads/56e59a45939ad1e5c7b70de8e7e585fa/pcolormesh_levels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/56e59a45939ad1e5c7b70de8e7e585fa/pcolormesh_levels.py \ No newline at end of file diff --git a/_downloads/56e77064a47557b6012071cfad55b2ac/quadmesh_demo.ipynb b/_downloads/56e77064a47557b6012071cfad55b2ac/quadmesh_demo.ipynb deleted file mode 120000 index eca7d8e0038..00000000000 --- a/_downloads/56e77064a47557b6012071cfad55b2ac/quadmesh_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/56e77064a47557b6012071cfad55b2ac/quadmesh_demo.ipynb \ No newline at end of file diff --git a/_downloads/56f33b34d4e0b9bcb03c8d37630dd372/annotate_with_units.py b/_downloads/56f33b34d4e0b9bcb03c8d37630dd372/annotate_with_units.py deleted file mode 120000 index fd98bd6ed88..00000000000 --- a/_downloads/56f33b34d4e0b9bcb03c8d37630dd372/annotate_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/56f33b34d4e0b9bcb03c8d37630dd372/annotate_with_units.py \ No newline at end of file diff --git a/_downloads/56f5f2d4cf3aab58b31240228ad4fdeb/anchored_box01.ipynb b/_downloads/56f5f2d4cf3aab58b31240228ad4fdeb/anchored_box01.ipynb deleted file mode 120000 index 7533e40465b..00000000000 --- a/_downloads/56f5f2d4cf3aab58b31240228ad4fdeb/anchored_box01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/56f5f2d4cf3aab58b31240228ad4fdeb/anchored_box01.ipynb \ No newline at end of file diff --git a/_downloads/56fa91958fd427757e621c21de870bda/colormapnorms.py b/_downloads/56fa91958fd427757e621c21de870bda/colormapnorms.py deleted file mode 100644 index 2970b023d5f..00000000000 --- a/_downloads/56fa91958fd427757e621c21de870bda/colormapnorms.py +++ /dev/null @@ -1,256 +0,0 @@ -""" -Colormap Normalization -====================== - -Objects that use colormaps by default linearly map the colors in the -colormap from data values *vmin* to *vmax*. For example:: - - pcm = ax.pcolormesh(x, y, Z, vmin=-1., vmax=1., cmap='RdBu_r') - -will map the data in *Z* linearly from -1 to +1, so *Z=0* will -give a color at the center of the colormap *RdBu_r* (white in this -case). - -Matplotlib does this mapping in two steps, with a normalization from -the input data to [0, 1] occurring first, and then mapping onto the -indices in the colormap. Normalizations are classes defined in the -:func:`matplotlib.colors` module. The default, linear normalization -is :func:`matplotlib.colors.Normalize`. - -Artists that map data to color pass the arguments *vmin* and *vmax* to -construct a :func:`matplotlib.colors.Normalize` instance, then call it: - -.. ipython:: - - In [1]: import matplotlib as mpl - - In [2]: norm = mpl.colors.Normalize(vmin=-1.,vmax=1.) - - In [3]: norm(0.) - Out[3]: 0.5 - -However, there are sometimes cases where it is useful to map data to -colormaps in a non-linear fashion. - -Logarithmic ------------ - -One of the most common transformations is to plot data by taking its logarithm -(to the base-10). This transformation is useful to display changes across -disparate scales. Using `.colors.LogNorm` normalizes the data via -:math:`log_{10}`. In the example below, there are two bumps, one much smaller -than the other. Using `.colors.LogNorm`, the shape and location of each bump -can clearly be seen: - -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors -import matplotlib.cbook as cbook - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out of the top right. Needs to have -# z/colour axis on a log scale so we see both hump and spike. linear -# scale only shows the spike. -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -Z = Z1 + 50 * Z2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolor(X, Y, Z, - norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') -plt.show() - -############################################################################### -# Symmetric logarithmic -# --------------------- -# -# Similarly, it sometimes happens that there is data that is positive -# and negative, but we would still like a logarithmic scaling applied to -# both. In this case, the negative numbers are also scaled -# logarithmically, and mapped to smaller numbers; e.g., if `vmin=-vmax`, -# then they the negative numbers are mapped from 0 to 0.5 and the -# positive from 0.5 to 1. -# -# Since the logarithm of values close to zero tends toward infinity, a -# small range around zero needs to be mapped linearly. The parameter -# *linthresh* allows the user to specify the size of this range -# (-*linthresh*, *linthresh*). The size of this range in the colormap is -# set by *linscale*. When *linscale* == 1.0 (the default), the space used -# for the positive and negative halves of the linear range will be equal -# to one decade in the logarithmic range. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03, - vmin=-1.0, vmax=1.0), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') -plt.show() - -############################################################################### -# Power-law -# --------- -# -# Sometimes it is useful to remap the colors onto a power-law -# relationship (i.e. :math:`y=x^{\gamma}`, where :math:`\gamma` is the -# power). For this we use the :func:`colors.PowerNorm`. It takes as an -# argument *gamma* (*gamma* == 1.0 will just yield the default linear -# normalization): -# -# .. note:: -# -# There should probably be a good reason for plotting the data using -# this type of transformation. Technical viewers are used to linear -# and logarithmic axes and data transformations. Power laws are less -# common, and viewers should explicitly be made aware that they have -# been used. - -N = 100 -X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)] -Z1 = (1 + np.sin(Y * 10.)) * X**(2.) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=0.5), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') -plt.show() - -############################################################################### -# Discrete bounds -# --------------- -# -# Another normaization that comes with Matplotlib is -# :func:`colors.BoundaryNorm`. In addition to *vmin* and *vmax*, this -# takes as arguments boundaries between which data is to be mapped. The -# colors are then linearly distributed between these "bounds". For -# instance: -# -# .. ipython:: -# -# In [2]: import matplotlib.colors as colors -# -# In [3]: bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -# -# In [4]: norm = colors.BoundaryNorm(boundaries=bounds, ncolors=4) -# -# In [5]: print(norm([-0.2,-0.15,-0.02, 0.3, 0.8, 0.99])) -# [0 0 1 2 3 3] -# -# Note unlike the other norms, this norm returns values from 0 to *ncolors*-1. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(3, 1, figsize=(8, 8)) -ax = ax.flatten() -# even bounds gives a contour-like effect -bounds = np.linspace(-1, 1, 10) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[0].pcolormesh(X, Y, Z, - norm=norm, - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical') - -# uneven bounds changes the colormapping: -bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical') - -pcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical') -plt.show() - - -############################################################################### -# DivergingNorm: Different mapping on either side of a center -# ----------------------------------------------------------- -# -# Sometimes we want to have a different colormap on either side of a -# conceptual center point, and we want those two colormaps to have -# different linear scales. An example is a topographic map where the land -# and ocean have a center at zero, but land typically has a greater -# elevation range than the water has depth range, and they are often -# represented by a different colormap. - -filename = cbook.get_sample_data('topobathy.npz', asfileobj=False) -with np.load(filename) as dem: - topo = dem['topo'] - longitude = dem['longitude'] - latitude = dem['latitude'] - -fig, ax = plt.subplots() -# make a colormap that has land and ocean clearly delineated and of the -# same length (256 + 256) -colors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256)) -colors_land = plt.cm.terrain(np.linspace(0.25, 1, 256)) -all_colors = np.vstack((colors_undersea, colors_land)) -terrain_map = colors.LinearSegmentedColormap.from_list('terrain_map', - all_colors) - -# make the norm: Note the center is offset so that the land has more -# dynamic range: -divnorm = colors.DivergingNorm(vmin=-500., vcenter=0, vmax=4000) - -pcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm, - cmap=terrain_map,) -# Simple geographic plot, set aspect ratio beecause distance between lines of -# longitude depends on latitude. -ax.set_aspect(1 / np.cos(np.deg2rad(49))) -fig.colorbar(pcm, shrink=0.6) -plt.show() - - -############################################################################### -# Custom normalization: Manually implement two linear ranges -# ---------------------------------------------------------- -# -# The `.DivergingNorm` described above makes a useful example for -# defining your own norm. - -class MidpointNormalize(colors.Normalize): - def __init__(self, vmin=None, vmax=None, vcenter=None, clip=False): - self.vcenter = vcenter - colors.Normalize.__init__(self, vmin, vmax, clip) - - def __call__(self, value, clip=None): - # I'm ignoring masked values and all kinds of edge cases to make a - # simple example... - x, y = [self.vmin, self.vcenter, self.vmax], [0, 0.5, 1] - return np.ma.masked_array(np.interp(value, x, y)) - - -fig, ax = plt.subplots() -midnorm = MidpointNormalize(vmin=-500., vcenter=0, vmax=4000) - -pcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=midnorm, - cmap=terrain_map) -ax.set_aspect(1 / np.cos(np.deg2rad(49))) -fig.colorbar(pcm, shrink=0.6, extend='both') -plt.show() diff --git a/_downloads/56ff5822941d4b0d79713648f82d9155/demo_ticklabel_alignment.py b/_downloads/56ff5822941d4b0d79713648f82d9155/demo_ticklabel_alignment.py deleted file mode 120000 index 6b31468ee3e..00000000000 --- a/_downloads/56ff5822941d4b0d79713648f82d9155/demo_ticklabel_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/56ff5822941d4b0d79713648f82d9155/demo_ticklabel_alignment.py \ No newline at end of file diff --git a/_downloads/56ff6a052b244d09f43a54e8d60e39bb/colormap_normalizations_custom.ipynb b/_downloads/56ff6a052b244d09f43a54e8d60e39bb/colormap_normalizations_custom.ipynb deleted file mode 120000 index 8b2c5eb4eb1..00000000000 --- a/_downloads/56ff6a052b244d09f43a54e8d60e39bb/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/56ff6a052b244d09f43a54e8d60e39bb/colormap_normalizations_custom.ipynb \ No newline at end of file diff --git a/_downloads/57064b890e07c696e66089bbd898f067/sankey_basics.py b/_downloads/57064b890e07c696e66089bbd898f067/sankey_basics.py deleted file mode 120000 index f36ed2f5087..00000000000 --- a/_downloads/57064b890e07c696e66089bbd898f067/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/57064b890e07c696e66089bbd898f067/sankey_basics.py \ No newline at end of file diff --git a/_downloads/570ca4eab2e33032a3e4d5ee7bbe872c/custom_projection.py b/_downloads/570ca4eab2e33032a3e4d5ee7bbe872c/custom_projection.py deleted file mode 120000 index c9e955dc866..00000000000 --- a/_downloads/570ca4eab2e33032a3e4d5ee7bbe872c/custom_projection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/570ca4eab2e33032a3e4d5ee7bbe872c/custom_projection.py \ No newline at end of file diff --git a/_downloads/5714c634448cdd52653a3def09326c5c/simple_legend01.py b/_downloads/5714c634448cdd52653a3def09326c5c/simple_legend01.py deleted file mode 120000 index e5df8dfcf05..00000000000 --- a/_downloads/5714c634448cdd52653a3def09326c5c/simple_legend01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5714c634448cdd52653a3def09326c5c/simple_legend01.py \ No newline at end of file diff --git a/_downloads/57172d0c8909a3785a80a4311fcdc1d7/demo_axes_grid2.ipynb b/_downloads/57172d0c8909a3785a80a4311fcdc1d7/demo_axes_grid2.ipynb deleted file mode 120000 index ece977669ec..00000000000 --- a/_downloads/57172d0c8909a3785a80a4311fcdc1d7/demo_axes_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/57172d0c8909a3785a80a4311fcdc1d7/demo_axes_grid2.ipynb \ No newline at end of file diff --git a/_downloads/5723dacd9223f981b9fa0fe25613e976/share_axis_lims_views.ipynb b/_downloads/5723dacd9223f981b9fa0fe25613e976/share_axis_lims_views.ipynb deleted file mode 120000 index 696e8ac41af..00000000000 --- a/_downloads/5723dacd9223f981b9fa0fe25613e976/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5723dacd9223f981b9fa0fe25613e976/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/57449216c85c9db470ef53f638a9a8ae/color_demo.py b/_downloads/57449216c85c9db470ef53f638a9a8ae/color_demo.py deleted file mode 120000 index 881ba3a3ca2..00000000000 --- a/_downloads/57449216c85c9db470ef53f638a9a8ae/color_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/57449216c85c9db470ef53f638a9a8ae/color_demo.py \ No newline at end of file diff --git a/_downloads/575534260a0e590e194bc853c3bc8af4/plot_solarizedlight2.py b/_downloads/575534260a0e590e194bc853c3bc8af4/plot_solarizedlight2.py deleted file mode 120000 index 0626c07b32b..00000000000 --- a/_downloads/575534260a0e590e194bc853c3bc8af4/plot_solarizedlight2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/575534260a0e590e194bc853c3bc8af4/plot_solarizedlight2.py \ No newline at end of file diff --git a/_downloads/575af3e3c249d5578c537e95024cd2e2/annotate_simple01.py b/_downloads/575af3e3c249d5578c537e95024cd2e2/annotate_simple01.py deleted file mode 120000 index 2744dad951b..00000000000 --- a/_downloads/575af3e3c249d5578c537e95024cd2e2/annotate_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/575af3e3c249d5578c537e95024cd2e2/annotate_simple01.py \ No newline at end of file diff --git a/_downloads/575e70975fcd3a31788bbc817d0aa2be/stackplot_demo.py b/_downloads/575e70975fcd3a31788bbc817d0aa2be/stackplot_demo.py deleted file mode 100644 index 27db8ebd5a8..00000000000 --- a/_downloads/575e70975fcd3a31788bbc817d0aa2be/stackplot_demo.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -============== -Stackplot Demo -============== - -How to create stackplots with Matplotlib. - -Stackplots are generated by plotting different datasets vertically on -top of one another rather than overlapping with one another. Below we -show some examples to accomplish this with Matplotlib. -""" -import numpy as np -import matplotlib.pyplot as plt - -x = [1, 2, 3, 4, 5] -y1 = [1, 1, 2, 3, 5] -y2 = [0, 4, 2, 6, 8] -y3 = [1, 3, 5, 7, 9] - -y = np.vstack([y1, y2, y3]) - -labels = ["Fibonacci ", "Evens", "Odds"] - -fig, ax = plt.subplots() -ax.stackplot(x, y1, y2, y3, labels=labels) -ax.legend(loc='upper left') -plt.show() - -fig, ax = plt.subplots() -ax.stackplot(x, y) -plt.show() - -############################################################################### -# Here we show an example of making a streamgraph using stackplot - - -def layers(n, m): - """ - Return *n* random Gaussian mixtures, each of length *m*. - """ - def bump(a): - x = 1 / (.1 + np.random.random()) - y = 2 * np.random.random() - .5 - z = 10 / (.1 + np.random.random()) - for i in range(m): - w = (i / m - y) * z - a[i] += x * np.exp(-w * w) - a = np.zeros((m, n)) - for i in range(n): - for j in range(5): - bump(a[:, i]) - return a - - -d = layers(3, 100) - -fig, ax = plt.subplots() -ax.stackplot(range(100), d.T, baseline='wiggle') -plt.show() diff --git a/_downloads/576b1240a50bc85d6840a931c7bcb77f/secondary_axis.ipynb b/_downloads/576b1240a50bc85d6840a931c7bcb77f/secondary_axis.ipynb deleted file mode 100644 index 576ce4eca7c..00000000000 --- a/_downloads/576b1240a50bc85d6840a931c7bcb77f/secondary_axis.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Secondary Axis\n\n\nSometimes we want as secondary axis on a plot, for instance to convert\nradians to degrees on the same plot. We can do this by making a child\naxes with only one axis visible via `.Axes.axes.secondary_xaxis` and\n`.Axes.axes.secondary_yaxis`. This secondary axis can have a different scale\nthan the main axis by providing both a forward and an inverse conversion\nfunction in a tuple to the ``functions`` kwarg:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport datetime\nimport matplotlib.dates as mdates\nfrom matplotlib.transforms import Transform\nfrom matplotlib.ticker import (\n AutoLocator, AutoMinorLocator)\n\nfig, ax = plt.subplots(constrained_layout=True)\nx = np.arange(0, 360, 1)\ny = np.sin(2 * x * np.pi / 180)\nax.plot(x, y)\nax.set_xlabel('angle [degrees]')\nax.set_ylabel('signal')\nax.set_title('Sine wave')\n\n\ndef deg2rad(x):\n return x * np.pi / 180\n\n\ndef rad2deg(x):\n return x * 180 / np.pi\n\nsecax = ax.secondary_xaxis('top', functions=(deg2rad, rad2deg))\nsecax.set_xlabel('angle [rad]')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is the case of converting from wavenumber to wavelength in a\nlog-log scale.\n\n.. note ::\n\n In this case, the xscale of the parent is logarithmic, so the child is\n made logarithmic as well.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nx = np.arange(0.02, 1, 0.02)\nnp.random.seed(19680801)\ny = np.random.randn(len(x)) ** 2\nax.loglog(x, y)\nax.set_xlabel('f [Hz]')\nax.set_ylabel('PSD')\nax.set_title('Random spectrum')\n\n\ndef forward(x):\n return 1 / x\n\n\ndef inverse(x):\n return 1 / x\n\nsecax = ax.secondary_xaxis('top', functions=(forward, inverse))\nsecax.set_xlabel('period [s]')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sometime we want to relate the axes in a transform that is ad-hoc from\nthe data, and is derived empirically. In that case we can set the\nforward and inverse transforms functions to be linear interpolations from the\none data set to the other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nxdata = np.arange(1, 11, 0.4)\nydata = np.random.randn(len(xdata))\nax.plot(xdata, ydata, label='Plotted data')\n\nxold = np.arange(0, 11, 0.2)\n# fake data set relating x co-ordinate to another data-derived co-ordinate.\n# xnew must be monotonic, so we sort...\nxnew = np.sort(10 * np.exp(-xold / 4) + np.random.randn(len(xold)) / 3)\n\nax.plot(xold[3:], xnew[3:], label='Transform data')\nax.set_xlabel('X [m]')\nax.legend()\n\n\ndef forward(x):\n return np.interp(x, xold, xnew)\n\n\ndef inverse(x):\n return np.interp(x, xnew, xold)\n\nsecax = ax.secondary_xaxis('top', functions=(forward, inverse))\nsecax.xaxis.set_minor_locator(AutoMinorLocator())\nsecax.set_xlabel('$X_{other}$')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A final example translates np.datetime64 to yearday on the x axis and\nfrom Celsius to Farenheit on the y axis:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "dates = [datetime.datetime(2018, 1, 1) + datetime.timedelta(hours=k * 6)\n for k in range(240)]\ntemperature = np.random.randn(len(dates))\nfig, ax = plt.subplots(constrained_layout=True)\n\nax.plot(dates, temperature)\nax.set_ylabel(r'$T\\ [^oC]$')\nplt.xticks(rotation=70)\n\n\ndef date2yday(x):\n \"\"\"\n x is in matplotlib datenums, so they are floats.\n \"\"\"\n y = x - mdates.date2num(datetime.datetime(2018, 1, 1))\n return y\n\n\ndef yday2date(x):\n \"\"\"\n return a matplotlib datenum (x is days since start of year)\n \"\"\"\n y = x + mdates.date2num(datetime.datetime(2018, 1, 1))\n return y\n\nsecaxx = ax.secondary_xaxis('top', functions=(date2yday, yday2date))\nsecaxx.set_xlabel('yday [2018]')\n\n\ndef CtoF(x):\n return x * 1.8 + 32\n\n\ndef FtoC(x):\n return (x - 32) / 1.8\n\nsecaxy = ax.secondary_yaxis('right', functions=(CtoF, FtoC))\nsecaxy.set_ylabel(r'$T\\ [^oF]$')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\n\nmatplotlib.axes.Axes.secondary_xaxis\nmatplotlib.axes.Axes.secondary_yaxis" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/576c4ef7d2fc28cd8a903dddfa50a21f/svg_histogram_sgskip.py b/_downloads/576c4ef7d2fc28cd8a903dddfa50a21f/svg_histogram_sgskip.py deleted file mode 120000 index 6768ff91590..00000000000 --- a/_downloads/576c4ef7d2fc28cd8a903dddfa50a21f/svg_histogram_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/576c4ef7d2fc28cd8a903dddfa50a21f/svg_histogram_sgskip.py \ No newline at end of file diff --git a/_downloads/57753ca7ace025d9b395c52b2a1da864/wire3d.ipynb b/_downloads/57753ca7ace025d9b395c52b2a1da864/wire3d.ipynb deleted file mode 120000 index dc624917d00..00000000000 --- a/_downloads/57753ca7ace025d9b395c52b2a1da864/wire3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/57753ca7ace025d9b395c52b2a1da864/wire3d.ipynb \ No newline at end of file diff --git a/_downloads/5787bdd3c2fb5d84c40860c89508a642/demo_agg_filter.py b/_downloads/5787bdd3c2fb5d84c40860c89508a642/demo_agg_filter.py deleted file mode 120000 index 3fc5e1c9d7d..00000000000 --- a/_downloads/5787bdd3c2fb5d84c40860c89508a642/demo_agg_filter.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5787bdd3c2fb5d84c40860c89508a642/demo_agg_filter.py \ No newline at end of file diff --git a/_downloads/5787c8245f29f66d23319f024e252301/broken_axis.ipynb b/_downloads/5787c8245f29f66d23319f024e252301/broken_axis.ipynb deleted file mode 120000 index f4821c274f8..00000000000 --- a/_downloads/5787c8245f29f66d23319f024e252301/broken_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5787c8245f29f66d23319f024e252301/broken_axis.ipynb \ No newline at end of file diff --git a/_downloads/5788fb55cce3a1ea6d2a8c2d946332a3/simple_axes_divider2.ipynb b/_downloads/5788fb55cce3a1ea6d2a8c2d946332a3/simple_axes_divider2.ipynb deleted file mode 120000 index 54c0b3a8e31..00000000000 --- a/_downloads/5788fb55cce3a1ea6d2a8c2d946332a3/simple_axes_divider2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/5788fb55cce3a1ea6d2a8c2d946332a3/simple_axes_divider2.ipynb \ No newline at end of file diff --git a/_downloads/578ac5740527ecb7a069582dae66f3cb/offset.py b/_downloads/578ac5740527ecb7a069582dae66f3cb/offset.py deleted file mode 120000 index 6b67adfb4f9..00000000000 --- a/_downloads/578ac5740527ecb7a069582dae66f3cb/offset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/578ac5740527ecb7a069582dae66f3cb/offset.py \ No newline at end of file diff --git a/_downloads/578d0e42d0549cc36e768456c8d30cf6/mandelbrot.py b/_downloads/578d0e42d0549cc36e768456c8d30cf6/mandelbrot.py deleted file mode 120000 index ee0d5a59b8f..00000000000 --- a/_downloads/578d0e42d0549cc36e768456c8d30cf6/mandelbrot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/578d0e42d0549cc36e768456c8d30cf6/mandelbrot.py \ No newline at end of file diff --git a/_downloads/578d1f39fb2f856effcd9fa4221cee9b/arrow_guide.ipynb b/_downloads/578d1f39fb2f856effcd9fa4221cee9b/arrow_guide.ipynb deleted file mode 120000 index 61431cc30ef..00000000000 --- a/_downloads/578d1f39fb2f856effcd9fa4221cee9b/arrow_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/578d1f39fb2f856effcd9fa4221cee9b/arrow_guide.ipynb \ No newline at end of file diff --git a/_downloads/5791f26b231e858c2348b402b3931922/placing_text_boxes.py b/_downloads/5791f26b231e858c2348b402b3931922/placing_text_boxes.py deleted file mode 120000 index 77949289866..00000000000 --- a/_downloads/5791f26b231e858c2348b402b3931922/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5791f26b231e858c2348b402b3931922/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/579a04164cd9addee14612920ef49eff/scatter_masked.ipynb b/_downloads/579a04164cd9addee14612920ef49eff/scatter_masked.ipynb deleted file mode 120000 index 05441835026..00000000000 --- a/_downloads/579a04164cd9addee14612920ef49eff/scatter_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/579a04164cd9addee14612920ef49eff/scatter_masked.ipynb \ No newline at end of file diff --git a/_downloads/579bd8533b08088dac785f6448ec3f19/transforms_tutorial.ipynb b/_downloads/579bd8533b08088dac785f6448ec3f19/transforms_tutorial.ipynb deleted file mode 120000 index 328459b2b3d..00000000000 --- a/_downloads/579bd8533b08088dac785f6448ec3f19/transforms_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/579bd8533b08088dac785f6448ec3f19/transforms_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/57a124cfc9774af4438cb5cc11742283/fill_between_demo.py b/_downloads/57a124cfc9774af4438cb5cc11742283/fill_between_demo.py deleted file mode 120000 index 5fd859076aa..00000000000 --- a/_downloads/57a124cfc9774af4438cb5cc11742283/fill_between_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/57a124cfc9774af4438cb5cc11742283/fill_between_demo.py \ No newline at end of file diff --git a/_downloads/57adf36c6497a9ddc57e93fea4310527/unchained.ipynb b/_downloads/57adf36c6497a9ddc57e93fea4310527/unchained.ipynb deleted file mode 100644 index 8f5522adc0a..00000000000 --- a/_downloads/57adf36c6497a9ddc57e93fea4310527/unchained.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n========================\nMATPLOTLIB **UNCHAINED**\n========================\n\nComparative path demonstration of frequency from a fake signal of a pulsar\n(mostly known because of the cover for Joy Division's Unknown Pleasures).\n\nAuthor: Nicolas P. Rougier\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# Create new Figure with black background\nfig = plt.figure(figsize=(8, 8), facecolor='black')\n\n# Add a subplot with no frame\nax = plt.subplot(111, frameon=False)\n\n# Generate random data\ndata = np.random.uniform(0, 1, (64, 75))\nX = np.linspace(-1, 1, data.shape[-1])\nG = 1.5 * np.exp(-4 * X ** 2)\n\n# Generate line plots\nlines = []\nfor i in range(len(data)):\n # Small reduction of the X extents to get a cheap perspective effect\n xscale = 1 - i / 200.\n # Same for linewidth (thicker strokes on bottom)\n lw = 1.5 - i / 100.0\n line, = ax.plot(xscale * X, i + G * data[i], color=\"w\", lw=lw)\n lines.append(line)\n\n# Set y limit (or first line is cropped because of thickness)\nax.set_ylim(-1, 70)\n\n# No ticks\nax.set_xticks([])\nax.set_yticks([])\n\n# 2 part titles to get different font weights\nax.text(0.5, 1.0, \"MATPLOTLIB \", transform=ax.transAxes,\n ha=\"right\", va=\"bottom\", color=\"w\",\n family=\"sans-serif\", fontweight=\"light\", fontsize=16)\nax.text(0.5, 1.0, \"UNCHAINED\", transform=ax.transAxes,\n ha=\"left\", va=\"bottom\", color=\"w\",\n family=\"sans-serif\", fontweight=\"bold\", fontsize=16)\n\n\ndef update(*args):\n # Shift all data to the right\n data[:, 1:] = data[:, :-1]\n\n # Fill-in new values\n data[:, 0] = np.random.uniform(0, 1, len(data))\n\n # Update data\n for i in range(len(data)):\n lines[i].set_ydata(i + G * data[i])\n\n # Return modified artists\n return lines\n\n# Construct the animation, using the update function as the animation director.\nanim = animation.FuncAnimation(fig, update, interval=10)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/57b1aadf79a57dc8956df559e49c1e12/2dcollections3d.ipynb b/_downloads/57b1aadf79a57dc8956df559e49c1e12/2dcollections3d.ipynb deleted file mode 100644 index 5f4b4557d05..00000000000 --- a/_downloads/57b1aadf79a57dc8956df559e49c1e12/2dcollections3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plot 2D data on 3D plot\n\n\nDemonstrates using ax.plot's zdir keyword to plot 2D data on\nselective axes of a 3D plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Plot a sin curve using the x and y axes.\nx = np.linspace(0, 1, 100)\ny = np.sin(x * 2 * np.pi) / 2 + 0.5\nax.plot(x, y, zs=0, zdir='z', label='curve in (x,y)')\n\n# Plot scatterplot data (20 2D points per colour) on the x and z axes.\ncolors = ('r', 'g', 'b', 'k')\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx = np.random.sample(20 * len(colors))\ny = np.random.sample(20 * len(colors))\nc_list = []\nfor c in colors:\n c_list.extend([c] * 20)\n# By using zdir='y', the y value of these points is fixed to the zs value 0\n# and the (x,y) points are plotted on the x and z axes.\nax.scatter(x, y, zs=0, zdir='y', c=c_list, label='points in (x,z)')\n\n# Make legend, set axes limits and labels\nax.legend()\nax.set_xlim(0, 1)\nax.set_ylim(0, 1)\nax.set_zlim(0, 1)\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\n# Customize the view angle so it's easier to see that the scatter points lie\n# on the plane y=0\nax.view_init(elev=20., azim=-35)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/57b4180adb9f165eb811b9fa196ed294/hexbin_demo.ipynb b/_downloads/57b4180adb9f165eb811b9fa196ed294/hexbin_demo.ipynb deleted file mode 120000 index c05fb95d772..00000000000 --- a/_downloads/57b4180adb9f165eb811b9fa196ed294/hexbin_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/57b4180adb9f165eb811b9fa196ed294/hexbin_demo.ipynb \ No newline at end of file diff --git a/_downloads/57b7f4e80c39d1b607caeb4ddb875a88/artist_reference.py b/_downloads/57b7f4e80c39d1b607caeb4ddb875a88/artist_reference.py deleted file mode 120000 index 1742ac869fd..00000000000 --- a/_downloads/57b7f4e80c39d1b607caeb4ddb875a88/artist_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/57b7f4e80c39d1b607caeb4ddb875a88/artist_reference.py \ No newline at end of file diff --git a/_downloads/57ba3a46dd639627a7c67fd5e227bb43/usetex.py b/_downloads/57ba3a46dd639627a7c67fd5e227bb43/usetex.py deleted file mode 100644 index 5e292e4b4f4..00000000000 --- a/_downloads/57ba3a46dd639627a7c67fd5e227bb43/usetex.py +++ /dev/null @@ -1,165 +0,0 @@ -r""" -************************* -Text rendering With LaTeX -************************* - -Rendering text with LaTeX in Matplotlib. - -Matplotlib has the option to use LaTeX to manage all text layout. This -option is available with the following backends: - -* Agg -* PS -* PDF - -The LaTeX option is activated by setting ``text.usetex : True`` in your rc -settings. Text handling with matplotlib's LaTeX support is slower than -matplotlib's very capable :doc:`mathtext `, but is -more flexible, since different LaTeX packages (font packages, math packages, -etc.) can be used. The results can be striking, especially when you take care -to use the same fonts in your figures as in the main document. - -Matplotlib's LaTeX support requires a working LaTeX_ installation, dvipng_ -(which may be included with your LaTeX installation), and Ghostscript_ -(GPL Ghostscript 9.0 or later is required). The executables for these -external dependencies must all be located on your :envvar:`PATH`. - -There are a couple of options to mention, which can be changed using -:doc:`rc settings `. Here is an example -matplotlibrc file:: - - font.family : serif - font.serif : Times, Palatino, New Century Schoolbook, Bookman, Computer Modern Roman - font.sans-serif : Helvetica, Avant Garde, Computer Modern Sans serif - font.cursive : Zapf Chancery - font.monospace : Courier, Computer Modern Typewriter - - text.usetex : true - -The first valid font in each family is the one that will be loaded. If the -fonts are not specified, the Computer Modern fonts are used by default. All of -the other fonts are Adobe fonts. Times and Palatino each have their own -accompanying math fonts, while the other Adobe serif fonts make use of the -Computer Modern math fonts. See the PSNFSS_ documentation for more details. - -To use LaTeX and select Helvetica as the default font, without editing -matplotlibrc use:: - - from matplotlib import rc - rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']}) - ## for Palatino and other serif fonts use: - #rc('font',**{'family':'serif','serif':['Palatino']}) - rc('text', usetex=True) - -Here is the standard example, `tex_demo.py`: - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png - :target: ../../gallery/text_labels_and_annotations/tex_demo.html - :align: center - :scale: 50 - - TeX Demo - -Note that display math mode (``$$ e=mc^2 $$``) is not supported, but adding the -command ``\displaystyle``, as in `tex_demo.py`, will produce the same -results. - -.. note:: - Certain characters require special escaping in TeX, such as:: - - # $ % & ~ _ ^ \ { } \( \) \[ \] - - Therefore, these characters will behave differently depending on - the rcParam ``text.usetex`` flag. - -.. _usetex-unicode: - -usetex with unicode -=================== - -It is also possible to use unicode strings with the LaTeX text manager, here is -an example taken from `tex_demo.py`. The axis labels include Unicode text: - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png - :target: ../../gallery/text_labels_and_annotations/tex_demo.html - :align: center - :scale: 50 - - TeX Unicode Demo - -.. _usetex-postscript: - -Postscript options -================== - -In order to produce encapsulated postscript files that can be embedded in a new -LaTeX document, the default behavior of matplotlib is to distill the output, -which removes some postscript operators used by LaTeX that are illegal in an -eps file. This step produces results which may be unacceptable to some users, -because the text is coarsely rasterized and converted to bitmaps, which are not -scalable like standard postscript, and the text is not searchable. One -workaround is to set ``ps.distiller.res`` to a higher value (perhaps 6000) -in your rc settings, which will produce larger files but may look better and -scale reasonably. A better workaround, which requires Poppler_ or Xpdf_, can be -activated by changing the ``ps.usedistiller`` rc setting to ``xpdf``. This -alternative produces postscript without rasterizing text, so it scales -properly, can be edited in Adobe Illustrator, and searched text in pdf -documents. - -.. _usetex-hangups: - -Possible hangups -================ - -* On Windows, the :envvar:`PATH` environment variable may need to be modified - to include the directories containing the latex, dvipng and ghostscript - executables. See :ref:`environment-variables` and - :ref:`setting-windows-environment-variables` for details. - -* Using MiKTeX with Computer Modern fonts, if you get odd \*Agg and PNG - results, go to MiKTeX/Options and update your format files - -* On Ubuntu and Gentoo, the base texlive install does not ship with - the type1cm package. You may need to install some of the extra - packages to get all the goodies that come bundled with other latex - distributions. - -* Some progress has been made so matplotlib uses the dvi files - directly for text layout. This allows latex to be used for text - layout with the pdf and svg backends, as well as the \*Agg and PS - backends. In the future, a latex installation may be the only - external dependency. - -.. _usetex-troubleshooting: - -Troubleshooting -=============== - -* Try deleting your :file:`.matplotlib/tex.cache` directory. If you don't know - where to find :file:`.matplotlib`, see :ref:`locating-matplotlib-config-dir`. - -* Make sure LaTeX, dvipng and ghostscript are each working and on your - :envvar:`PATH`. - -* Make sure what you are trying to do is possible in a LaTeX document, - that your LaTeX syntax is valid and that you are using raw strings - if necessary to avoid unintended escape sequences. - -* Most problems reported on the mailing list have been cleared up by - upgrading Ghostscript_. If possible, please try upgrading to the - latest release before reporting problems to the list. - -* The ``text.latex.preamble`` rc setting is not officially supported. This - option provides lots of flexibility, and lots of ways to cause - problems. Please disable this option before reporting problems to - the mailing list. - -* If you still need help, please see :ref:`reporting-problems` - -.. _LaTeX: http://www.tug.org -.. _dvipng: http://www.nongnu.org/dvipng/ -.. _Ghostscript: https://ghostscript.com/ -.. _PSNFSS: http://www.ctan.org/tex-archive/macros/latex/required/psnfss/psnfss2e.pdf -.. _Poppler: https://poppler.freedesktop.org/ -.. _Xpdf: http://www.xpdfreader.com/ -""" diff --git a/_downloads/57c7304fedaa9f0e0cbe34136a438f0b/legend.ipynb b/_downloads/57c7304fedaa9f0e0cbe34136a438f0b/legend.ipynb deleted file mode 120000 index 625b9fd5759..00000000000 --- a/_downloads/57c7304fedaa9f0e0cbe34136a438f0b/legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/57c7304fedaa9f0e0cbe34136a438f0b/legend.ipynb \ No newline at end of file diff --git a/_downloads/57cf61f1786274d9b77089a216017e09/colormap_normalizations_custom.py b/_downloads/57cf61f1786274d9b77089a216017e09/colormap_normalizations_custom.py deleted file mode 120000 index c5b4533de0c..00000000000 --- a/_downloads/57cf61f1786274d9b77089a216017e09/colormap_normalizations_custom.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/57cf61f1786274d9b77089a216017e09/colormap_normalizations_custom.py \ No newline at end of file diff --git a/_downloads/57d991c53c493146ac943a628540830a/simple_anim.py b/_downloads/57d991c53c493146ac943a628540830a/simple_anim.py deleted file mode 100644 index 59552cd1cfa..00000000000 --- a/_downloads/57d991c53c493146ac943a628540830a/simple_anim.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================== -Animated line plot -================== - -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - -fig, ax = plt.subplots() - -x = np.arange(0, 2*np.pi, 0.01) -line, = ax.plot(x, np.sin(x)) - - -def init(): # only required for blitting to give a clean slate. - line.set_ydata([np.nan] * len(x)) - return line, - - -def animate(i): - line.set_ydata(np.sin(x + i / 100)) # update the data. - return line, - - -ani = animation.FuncAnimation( - fig, animate, init_func=init, interval=2, blit=True, save_count=50) - -# To save the animation, use e.g. -# -# ani.save("movie.mp4") -# -# or -# -# from matplotlib.animation import FFMpegWriter -# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800) -# ani.save("movie.mp4", writer=writer) - -plt.show() diff --git a/_downloads/57e4606bce0ed408788c84308dbcee83/annotate_simple04.py b/_downloads/57e4606bce0ed408788c84308dbcee83/annotate_simple04.py deleted file mode 120000 index bce7bd0b508..00000000000 --- a/_downloads/57e4606bce0ed408788c84308dbcee83/annotate_simple04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/57e4606bce0ed408788c84308dbcee83/annotate_simple04.py \ No newline at end of file diff --git a/_downloads/57e4eb6aed741130b7c248c9dfb36046/csd_demo.py b/_downloads/57e4eb6aed741130b7c248c9dfb36046/csd_demo.py deleted file mode 100644 index 1eacc649b20..00000000000 --- a/_downloads/57e4eb6aed741130b7c248c9dfb36046/csd_demo.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -======== -CSD Demo -======== - -Compute the cross spectral density of two signals -""" -import numpy as np -import matplotlib.pyplot as plt - - -fig, (ax1, ax2) = plt.subplots(2, 1) -# make a little extra space between the subplots -fig.subplots_adjust(hspace=0.5) - -dt = 0.01 -t = np.arange(0, 30, dt) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -nse1 = np.random.randn(len(t)) # white noise 1 -nse2 = np.random.randn(len(t)) # white noise 2 -r = np.exp(-t / 0.05) - -cnse1 = np.convolve(nse1, r, mode='same') * dt # colored noise 1 -cnse2 = np.convolve(nse2, r, mode='same') * dt # colored noise 2 - -# two signals with a coherent part and a random part -s1 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse1 -s2 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse2 - -ax1.plot(t, s1, t, s2) -ax1.set_xlim(0, 5) -ax1.set_xlabel('time') -ax1.set_ylabel('s1 and s2') -ax1.grid(True) - -cxy, f = ax2.csd(s1, s2, 256, 1. / dt) -ax2.set_ylabel('CSD (db)') -plt.show() diff --git a/_downloads/57ed0c9d9fd1acd85354091a75f286ff/colormap_normalizations_diverging.ipynb b/_downloads/57ed0c9d9fd1acd85354091a75f286ff/colormap_normalizations_diverging.ipynb deleted file mode 120000 index 26801f0b0db..00000000000 --- a/_downloads/57ed0c9d9fd1acd85354091a75f286ff/colormap_normalizations_diverging.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/57ed0c9d9fd1acd85354091a75f286ff/colormap_normalizations_diverging.ipynb \ No newline at end of file diff --git a/_downloads/5804c39478734ea14c03eb8604d04d21/fancytextbox_demo.ipynb b/_downloads/5804c39478734ea14c03eb8604d04d21/fancytextbox_demo.ipynb deleted file mode 120000 index a4c5462a549..00000000000 --- a/_downloads/5804c39478734ea14c03eb8604d04d21/fancytextbox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5804c39478734ea14c03eb8604d04d21/fancytextbox_demo.ipynb \ No newline at end of file diff --git a/_downloads/58051cf6fbf57d5525472f5be4a9b746/tick_xlabel_top.py b/_downloads/58051cf6fbf57d5525472f5be4a9b746/tick_xlabel_top.py deleted file mode 120000 index f1b517599a4..00000000000 --- a/_downloads/58051cf6fbf57d5525472f5be4a9b746/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/58051cf6fbf57d5525472f5be4a9b746/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/580cc43ae9fd4c8ee3dd887978f3f4bb/ginput_demo_sgskip.py b/_downloads/580cc43ae9fd4c8ee3dd887978f3f4bb/ginput_demo_sgskip.py deleted file mode 120000 index 88c15ac3aa0..00000000000 --- a/_downloads/580cc43ae9fd4c8ee3dd887978f3f4bb/ginput_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/580cc43ae9fd4c8ee3dd887978f3f4bb/ginput_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/581183ac7321e710dd7253f1a22075ea/fig_axes_customize_simple.ipynb b/_downloads/581183ac7321e710dd7253f1a22075ea/fig_axes_customize_simple.ipynb deleted file mode 120000 index 6e1dbed883f..00000000000 --- a/_downloads/581183ac7321e710dd7253f1a22075ea/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/581183ac7321e710dd7253f1a22075ea/fig_axes_customize_simple.ipynb \ No newline at end of file diff --git a/_downloads/581233255859f662c04f3bdfe90feb6e/basic_units.py b/_downloads/581233255859f662c04f3bdfe90feb6e/basic_units.py deleted file mode 120000 index 7ebe1d027ce..00000000000 --- a/_downloads/581233255859f662c04f3bdfe90feb6e/basic_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/581233255859f662c04f3bdfe90feb6e/basic_units.py \ No newline at end of file diff --git a/_downloads/5823d1b720f2b58deb8b94f4dc4bd6bc/tick_xlabel_top.py b/_downloads/5823d1b720f2b58deb8b94f4dc4bd6bc/tick_xlabel_top.py deleted file mode 100644 index a437810b06a..00000000000 --- a/_downloads/5823d1b720f2b58deb8b94f4dc4bd6bc/tick_xlabel_top.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -========================================== -Set default x-axis tick labels on the top -========================================== - -We can use :rc:`xtick.labeltop` (default False) and :rc:`xtick.top` -(default False) and :rc:`xtick.labelbottom` (default True) and -:rc:`xtick.bottom` (default True) to control where on the axes ticks and -their labels appear. - -These properties can also be set in ``.matplotlib/matplotlibrc``. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -plt.rcParams['xtick.bottom'] = plt.rcParams['xtick.labelbottom'] = False -plt.rcParams['xtick.top'] = plt.rcParams['xtick.labeltop'] = True - -x = np.arange(10) - -fig, ax = plt.subplots() - -ax.plot(x) -ax.set_title('xlabel top') # Note title moves to make room for ticks - -plt.show() diff --git a/_downloads/58247068429c6e652ec5d645a8f7190b/rainbow_text.ipynb b/_downloads/58247068429c6e652ec5d645a8f7190b/rainbow_text.ipynb deleted file mode 120000 index 6f8313f0032..00000000000 --- a/_downloads/58247068429c6e652ec5d645a8f7190b/rainbow_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/58247068429c6e652ec5d645a8f7190b/rainbow_text.ipynb \ No newline at end of file diff --git a/_downloads/5825232c3298d848fda7a1ef94590cb5/mathtext_wx_sgskip.ipynb b/_downloads/5825232c3298d848fda7a1ef94590cb5/mathtext_wx_sgskip.ipynb deleted file mode 120000 index 415b73cbc1c..00000000000 --- a/_downloads/5825232c3298d848fda7a1ef94590cb5/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5825232c3298d848fda7a1ef94590cb5/mathtext_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/58255f9d8928605a1826eb3d499925b8/inset_locator_demo.ipynb b/_downloads/58255f9d8928605a1826eb3d499925b8/inset_locator_demo.ipynb deleted file mode 120000 index cd484cb19d3..00000000000 --- a/_downloads/58255f9d8928605a1826eb3d499925b8/inset_locator_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/58255f9d8928605a1826eb3d499925b8/inset_locator_demo.ipynb \ No newline at end of file diff --git a/_downloads/582cc2baa79b8a3f80642231423828a5/align_ylabels.ipynb b/_downloads/582cc2baa79b8a3f80642231423828a5/align_ylabels.ipynb deleted file mode 100644 index d124bfa3b43..00000000000 --- a/_downloads/582cc2baa79b8a3f80642231423828a5/align_ylabels.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Align y-labels\n\n\nTwo methods are shown here, one using a short call to `.Figure.align_ylabels`\nand the second a manual way to align the labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef make_plot(axs):\n box = dict(facecolor='yellow', pad=5, alpha=0.2)\n\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n ax1 = axs[0, 0]\n ax1.plot(2000*np.random.rand(10))\n ax1.set_title('ylabels not aligned')\n ax1.set_ylabel('misaligned 1', bbox=box)\n ax1.set_ylim(0, 2000)\n\n ax3 = axs[1, 0]\n ax3.set_ylabel('misaligned 2', bbox=box)\n ax3.plot(np.random.rand(10))\n\n ax2 = axs[0, 1]\n ax2.set_title('ylabels aligned')\n ax2.plot(2000*np.random.rand(10))\n ax2.set_ylabel('aligned 1', bbox=box)\n ax2.set_ylim(0, 2000)\n\n ax4 = axs[1, 1]\n ax4.plot(np.random.rand(10))\n ax4.set_ylabel('aligned 2', bbox=box)\n\n\n# Plot 1:\nfig, axs = plt.subplots(2, 2)\nfig.subplots_adjust(left=0.2, wspace=0.6)\nmake_plot(axs)\n\n# just align the last column of axes:\nfig.align_ylabels(axs[:, 1])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ".. seealso::\n `.Figure.align_ylabels` and `.Figure.align_labels` for a direct method\n of doing the same thing.\n Also :doc:`/gallery/subplots_axes_and_figures/align_labels_demo`\n\n\nOr we can manually align the axis labels between subplots manually using the\n`set_label_coords` method of the y-axis object. Note this requires we know\na good offset value which is hardcoded.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2)\nfig.subplots_adjust(left=0.2, wspace=0.6)\n\nmake_plot(axs)\n\nlabelx = -0.3 # axes coords\n\nfor j in range(2):\n axs[j, 1].yaxis.set_label_coords(labelx, 0.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure.align_ylabels\nmatplotlib.axis.Axis.set_label_coords\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.set_ylim" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/582da34c7c8634a10147b90f8b18f48f/data_browser.ipynb b/_downloads/582da34c7c8634a10147b90f8b18f48f/data_browser.ipynb deleted file mode 120000 index d5753be158c..00000000000 --- a/_downloads/582da34c7c8634a10147b90f8b18f48f/data_browser.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/582da34c7c8634a10147b90f8b18f48f/data_browser.ipynb \ No newline at end of file diff --git a/_downloads/582e5fe68c7f76a2f1a2428c631806bd/wire3d_zero_stride.py b/_downloads/582e5fe68c7f76a2f1a2428c631806bd/wire3d_zero_stride.py deleted file mode 120000 index e67875ea98e..00000000000 --- a/_downloads/582e5fe68c7f76a2f1a2428c631806bd/wire3d_zero_stride.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/582e5fe68c7f76a2f1a2428c631806bd/wire3d_zero_stride.py \ No newline at end of file diff --git a/_downloads/58337ab1f715f1b9ea1c9bbbbfdfca25/radar_chart.py b/_downloads/58337ab1f715f1b9ea1c9bbbbfdfca25/radar_chart.py deleted file mode 120000 index 5d0662c3dcc..00000000000 --- a/_downloads/58337ab1f715f1b9ea1c9bbbbfdfca25/radar_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/58337ab1f715f1b9ea1c9bbbbfdfca25/radar_chart.py \ No newline at end of file diff --git a/_downloads/58345f9f57bb466b821c32d7c2c5509e/demo_text_rotation_mode.py b/_downloads/58345f9f57bb466b821c32d7c2c5509e/demo_text_rotation_mode.py deleted file mode 120000 index e328ef3c82e..00000000000 --- a/_downloads/58345f9f57bb466b821c32d7c2c5509e/demo_text_rotation_mode.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/58345f9f57bb466b821c32d7c2c5509e/demo_text_rotation_mode.py \ No newline at end of file diff --git a/_downloads/583496c000b46c3555bb54b77db6fbfc/demo_agg_filter.ipynb b/_downloads/583496c000b46c3555bb54b77db6fbfc/demo_agg_filter.ipynb deleted file mode 100644 index 94806632fc4..00000000000 --- a/_downloads/583496c000b46c3555bb54b77db6fbfc/demo_agg_filter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Agg Filter\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nimport numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.transforms as mtransforms\nfrom matplotlib.colors import LightSource\nfrom matplotlib.artist import Artist\n\n\ndef smooth1d(x, window_len):\n # copied from http://www.scipy.org/Cookbook/SignalSmooth\n\n s = np.r_[2*x[0] - x[window_len:1:-1], x, 2*x[-1] - x[-1:-window_len:-1]]\n w = np.hanning(window_len)\n y = np.convolve(w/w.sum(), s, mode='same')\n return y[window_len-1:-window_len+1]\n\n\ndef smooth2d(A, sigma=3):\n\n window_len = max(int(sigma), 3)*2 + 1\n A1 = np.array([smooth1d(x, window_len) for x in np.asarray(A)])\n A2 = np.transpose(A1)\n A3 = np.array([smooth1d(x, window_len) for x in A2])\n A4 = np.transpose(A3)\n\n return A4\n\n\nclass BaseFilter(object):\n def prepare_image(self, src_image, dpi, pad):\n ny, nx, depth = src_image.shape\n # tgt_image = np.zeros([pad*2+ny, pad*2+nx, depth], dtype=\"d\")\n padded_src = np.zeros([pad*2 + ny, pad*2 + nx, depth], dtype=\"d\")\n padded_src[pad:-pad, pad:-pad, :] = src_image[:, :, :]\n\n return padded_src # , tgt_image\n\n def get_pad(self, dpi):\n return 0\n\n def __call__(self, im, dpi):\n pad = self.get_pad(dpi)\n padded_src = self.prepare_image(im, dpi, pad)\n tgt_image = self.process_image(padded_src, dpi)\n return tgt_image, -pad, -pad\n\n\nclass OffsetFilter(BaseFilter):\n def __init__(self, offsets=None):\n if offsets is None:\n self.offsets = (0, 0)\n else:\n self.offsets = offsets\n\n def get_pad(self, dpi):\n return int(max(*self.offsets)/72.*dpi)\n\n def process_image(self, padded_src, dpi):\n ox, oy = self.offsets\n a1 = np.roll(padded_src, int(ox/72.*dpi), axis=1)\n a2 = np.roll(a1, -int(oy/72.*dpi), axis=0)\n return a2\n\n\nclass GaussianFilter(BaseFilter):\n \"simple gauss filter\"\n\n def __init__(self, sigma, alpha=0.5, color=None):\n self.sigma = sigma\n self.alpha = alpha\n if color is None:\n self.color = (0, 0, 0)\n else:\n self.color = color\n\n def get_pad(self, dpi):\n return int(self.sigma*3/72.*dpi)\n\n def process_image(self, padded_src, dpi):\n # offsetx, offsety = int(self.offsets[0]), int(self.offsets[1])\n tgt_image = np.zeros_like(padded_src)\n aa = smooth2d(padded_src[:, :, -1]*self.alpha,\n self.sigma/72.*dpi)\n tgt_image[:, :, -1] = aa\n tgt_image[:, :, :-1] = self.color\n return tgt_image\n\n\nclass DropShadowFilter(BaseFilter):\n def __init__(self, sigma, alpha=0.3, color=None, offsets=None):\n self.gauss_filter = GaussianFilter(sigma, alpha, color)\n self.offset_filter = OffsetFilter(offsets)\n\n def get_pad(self, dpi):\n return max(self.gauss_filter.get_pad(dpi),\n self.offset_filter.get_pad(dpi))\n\n def process_image(self, padded_src, dpi):\n t1 = self.gauss_filter.process_image(padded_src, dpi)\n t2 = self.offset_filter.process_image(t1, dpi)\n return t2\n\n\nclass LightFilter(BaseFilter):\n \"simple gauss filter\"\n\n def __init__(self, sigma, fraction=0.5):\n self.gauss_filter = GaussianFilter(sigma, alpha=1)\n self.light_source = LightSource()\n self.fraction = fraction\n\n def get_pad(self, dpi):\n return self.gauss_filter.get_pad(dpi)\n\n def process_image(self, padded_src, dpi):\n t1 = self.gauss_filter.process_image(padded_src, dpi)\n elevation = t1[:, :, 3]\n rgb = padded_src[:, :, :3]\n\n rgb2 = self.light_source.shade_rgb(rgb, elevation,\n fraction=self.fraction)\n\n tgt = np.empty_like(padded_src)\n tgt[:, :, :3] = rgb2\n tgt[:, :, 3] = padded_src[:, :, 3]\n\n return tgt\n\n\nclass GrowFilter(BaseFilter):\n \"enlarge the area\"\n\n def __init__(self, pixels, color=None):\n self.pixels = pixels\n if color is None:\n self.color = (1, 1, 1)\n else:\n self.color = color\n\n def __call__(self, im, dpi):\n ny, nx, depth = im.shape\n alpha = np.pad(im[..., -1], self.pixels, \"constant\")\n alpha2 = np.clip(smooth2d(alpha, self.pixels/72.*dpi) * 5, 0, 1)\n new_im = np.empty((*alpha2.shape, 4))\n new_im[:, :, -1] = alpha2\n new_im[:, :, :-1] = self.color\n offsetx, offsety = -self.pixels, -self.pixels\n return new_im, offsetx, offsety\n\n\nclass FilteredArtistList(Artist):\n \"\"\"\n A simple container to draw filtered artist.\n \"\"\"\n\n def __init__(self, artist_list, filter):\n self._artist_list = artist_list\n self._filter = filter\n Artist.__init__(self)\n\n def draw(self, renderer):\n renderer.start_rasterizing()\n renderer.start_filter()\n for a in self._artist_list:\n a.draw(renderer)\n renderer.stop_filter(self._filter)\n renderer.stop_rasterizing()\n\n\ndef filtered_text(ax):\n # mostly copied from contour_demo.py\n\n # prepare image\n delta = 0.025\n x = np.arange(-3.0, 3.0, delta)\n y = np.arange(-2.0, 2.0, delta)\n X, Y = np.meshgrid(x, y)\n Z1 = np.exp(-X**2 - Y**2)\n Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\n Z = (Z1 - Z2) * 2\n\n # draw\n im = ax.imshow(Z, interpolation='bilinear', origin='lower',\n cmap=cm.gray, extent=(-3, 3, -2, 2))\n levels = np.arange(-1.2, 1.6, 0.2)\n CS = ax.contour(Z, levels,\n origin='lower',\n linewidths=2,\n extent=(-3, 3, -2, 2))\n\n ax.set_aspect(\"auto\")\n\n # contour label\n cl = ax.clabel(CS, levels[1::2], # label every second level\n inline=1,\n fmt='%1.1f',\n fontsize=11)\n\n # change clabel color to black\n from matplotlib.patheffects import Normal\n for t in cl:\n t.set_color(\"k\")\n # to force TextPath (i.e., same font in all backends)\n t.set_path_effects([Normal()])\n\n # Add white glows to improve visibility of labels.\n white_glows = FilteredArtistList(cl, GrowFilter(3))\n ax.add_artist(white_glows)\n white_glows.set_zorder(cl[0].get_zorder() - 0.1)\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\ndef drop_shadow_line(ax):\n # copied from examples/misc/svg_filter_line.py\n\n # draw lines\n l1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], \"bo-\",\n mec=\"b\", mfc=\"w\", lw=5, mew=3, ms=10, label=\"Line 1\")\n l2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], \"ro-\",\n mec=\"r\", mfc=\"w\", lw=5, mew=3, ms=10, label=\"Line 1\")\n\n gauss = DropShadowFilter(4)\n\n for l in [l1, l2]:\n\n # draw shadows with same lines with slight offset.\n\n xx = l.get_xdata()\n yy = l.get_ydata()\n shadow, = ax.plot(xx, yy)\n shadow.update_from(l)\n\n # offset transform\n ot = mtransforms.offset_copy(l.get_transform(), ax.figure,\n x=4.0, y=-6.0, units='points')\n\n shadow.set_transform(ot)\n\n # adjust zorder of the shadow lines so that it is drawn below the\n # original lines\n shadow.set_zorder(l.get_zorder() - 0.5)\n shadow.set_agg_filter(gauss)\n shadow.set_rasterized(True) # to support mixed-mode renderers\n\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\ndef drop_shadow_patches(ax):\n # Copied from barchart_demo.py\n N = 5\n men_means = [20, 35, 30, 35, 27]\n\n ind = np.arange(N) # the x locations for the groups\n width = 0.35 # the width of the bars\n\n rects1 = ax.bar(ind, men_means, width, color='r', ec=\"w\", lw=2)\n\n women_means = [25, 32, 34, 20, 25]\n rects2 = ax.bar(ind + width + 0.1, women_means, width,\n color='y', ec=\"w\", lw=2)\n\n # gauss = GaussianFilter(1.5, offsets=(1,1), )\n gauss = DropShadowFilter(5, offsets=(1, 1), )\n shadow = FilteredArtistList(rects1 + rects2, gauss)\n ax.add_artist(shadow)\n shadow.set_zorder(rects1[0].get_zorder() - 0.1)\n\n ax.set_ylim(0, 40)\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\ndef light_filter_pie(ax):\n fracs = [15, 30, 45, 10]\n explode = (0, 0.05, 0, 0)\n pies = ax.pie(fracs, explode=explode)\n ax.patch.set_visible(True)\n\n light_filter = LightFilter(9)\n for p in pies[0]:\n p.set_agg_filter(light_filter)\n p.set_rasterized(True) # to support mixed-mode renderers\n p.set(ec=\"none\",\n lw=2)\n\n gauss = DropShadowFilter(9, offsets=(3, 4), alpha=0.7)\n shadow = FilteredArtistList(pies[0], gauss)\n ax.add_artist(shadow)\n shadow.set_zorder(pies[0][0].get_zorder() - 0.1)\n\n\nif __name__ == \"__main__\":\n\n plt.figure(figsize=(6, 6))\n plt.subplots_adjust(left=0.05, right=0.95)\n\n ax = plt.subplot(221)\n filtered_text(ax)\n\n ax = plt.subplot(222)\n drop_shadow_line(ax)\n\n ax = plt.subplot(223)\n drop_shadow_patches(ax)\n\n ax = plt.subplot(224)\n ax.set_aspect(1)\n light_filter_pie(ax)\n ax.set_frame_on(True)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/58610c6e76ca2e8112feb6b57c10d278/markevery_prop_cycle.py b/_downloads/58610c6e76ca2e8112feb6b57c10d278/markevery_prop_cycle.py deleted file mode 100644 index 295de475673..00000000000 --- a/_downloads/58610c6e76ca2e8112feb6b57c10d278/markevery_prop_cycle.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -========================================= -prop_cycle property markevery in rcParams -========================================= - -This example demonstrates a working solution to issue #8576, providing full -support of the markevery property for axes.prop_cycle assignments through -rcParams. Makes use of the same list of markevery cases from the -:doc:`markevery demo -`. - -Renders a plot with shifted-sine curves along each column with -a unique markevery value for each sine curve. -""" -from cycler import cycler -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt - -# Define a list of markevery cases and color cases to plot -cases = [None, - 8, - (30, 8), - [16, 24, 30], - [0, -1], - slice(100, 200, 3), - 0.1, - 0.3, - 1.5, - (0.0, 0.1), - (0.45, 0.1)] - -colors = ['#1f77b4', - '#ff7f0e', - '#2ca02c', - '#d62728', - '#9467bd', - '#8c564b', - '#e377c2', - '#7f7f7f', - '#bcbd22', - '#17becf', - '#1a55FF'] - -# Configure rcParams axes.prop_cycle to simultaneously cycle cases and colors. -mpl.rcParams['axes.prop_cycle'] = cycler(markevery=cases, color=colors) - -# Create data points and offsets -x = np.linspace(0, 2 * np.pi) -offsets = np.linspace(0, 2 * np.pi, 11, endpoint=False) -yy = np.transpose([np.sin(x + phi) for phi in offsets]) - -# Set the plot curve with markers and a title -fig = plt.figure() -ax = fig.add_axes([0.1, 0.1, 0.6, 0.75]) - -for i in range(len(cases)): - ax.plot(yy[:, i], marker='o', label=str(cases[i])) - ax.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.) - -plt.title('Support for axes.prop_cycle cycler with markevery') - -plt.show() diff --git a/_downloads/586434e755492280c91a5635718b9df4/axis_direction_demo_step04.py b/_downloads/586434e755492280c91a5635718b9df4/axis_direction_demo_step04.py deleted file mode 100644 index 25ea10c0cff..00000000000 --- a/_downloads/586434e755492280c91a5635718b9df4/axis_direction_demo_step04.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -========================== -Axis Direction Demo Step04 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - ax.axis[:].set_visible(False) - - ax.axis["x1"] = ax.new_floating_axis(1, 0.3) - ax.axis["x1"].set_axisline_style("->", size=1.5) - - ax.axis["x2"] = ax.new_floating_axis(1, 0.7) - ax.axis["x2"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(6, 2.5)) -fig.subplots_adjust(bottom=0.2, top=0.8) - -ax1 = setup_axes(fig, "121") -ax1.axis["x1"].label.set_text("rotation=0") -ax1.axis["x1"].toggle(ticklabels=False) - -ax1.axis["x2"].label.set_text("rotation=10") -ax1.axis["x2"].label.set_rotation(10) -ax1.axis["x2"].toggle(ticklabels=False) - -ax1.annotate("label direction=$+$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -ax2 = setup_axes(fig, "122") - -ax2.axis["x1"].set_axislabel_direction("-") -ax2.axis["x2"].set_axislabel_direction("-") - -ax2.axis["x1"].label.set_text("rotation=0") -ax2.axis["x1"].toggle(ticklabels=False) - -ax2.axis["x2"].label.set_text("rotation=10") -ax2.axis["x2"].label.set_rotation(10) -ax2.axis["x2"].toggle(ticklabels=False) - -ax2.annotate("label direction=$-$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -plt.show() diff --git a/_downloads/5866a7fde17843f7022a1c36e2e163d3/two_scales.ipynb b/_downloads/5866a7fde17843f7022a1c36e2e163d3/two_scales.ipynb deleted file mode 100644 index f5ac45415b6..00000000000 --- a/_downloads/5866a7fde17843f7022a1c36e2e163d3/two_scales.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plots with different scales\n\n\nTwo plots on the same axes with different left and right scales.\n\nThe trick is to use *two different axes* that share the same *x* axis.\nYou can use separate `matplotlib.ticker` formatters and locators as\ndesired since the two axes are independent.\n\nSuch axes are generated by calling the :meth:`.Axes.twinx` method. Likewise,\n:meth:`.Axes.twiny` is available to generate axes that share a *y* axis but\nhave different top and bottom scales.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Create some mock data\nt = np.arange(0.01, 10.0, 0.01)\ndata1 = np.exp(t)\ndata2 = np.sin(2 * np.pi * t)\n\nfig, ax1 = plt.subplots()\n\ncolor = 'tab:red'\nax1.set_xlabel('time (s)')\nax1.set_ylabel('exp', color=color)\nax1.plot(t, data1, color=color)\nax1.tick_params(axis='y', labelcolor=color)\n\nax2 = ax1.twinx() # instantiate a second axes that shares the same x-axis\n\ncolor = 'tab:blue'\nax2.set_ylabel('sin', color=color) # we already handled the x-label with ax1\nax2.plot(t, data2, color=color)\nax2.tick_params(axis='y', labelcolor=color)\n\nfig.tight_layout() # otherwise the right y-label is slightly clipped\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.twinx\nmatplotlib.axes.Axes.twiny\nmatplotlib.axes.Axes.tick_params" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5867866873bd360e315288f34117139b/set_and_get.py b/_downloads/5867866873bd360e315288f34117139b/set_and_get.py deleted file mode 100644 index 3239d39518b..00000000000 --- a/_downloads/5867866873bd360e315288f34117139b/set_and_get.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -=========== -Set And Get -=========== - -The pyplot interface allows you to use setp and getp to set and get -object properties, as well as to do introspection on the object - -set -=== - -To set the linestyle of a line to be dashed, you can do:: - - >>> line, = plt.plot([1,2,3]) - >>> plt.setp(line, linestyle='--') - -If you want to know the valid types of arguments, you can provide the -name of the property you want to set without a value:: - - >>> plt.setp(line, 'linestyle') - linestyle: [ '-' | '--' | '-.' | ':' | 'steps' | 'None' ] - -If you want to see all the properties that can be set, and their -possible values, you can do:: - - >>> plt.setp(line) - -set operates on a single instance or a list of instances. If you are -in query mode introspecting the possible values, only the first -instance in the sequence is used. When actually setting values, all -the instances will be set. e.g., suppose you have a list of two lines, -the following will make both lines thicker and red:: - - >>> x = np.arange(0,1.0,0.01) - >>> y1 = np.sin(2*np.pi*x) - >>> y2 = np.sin(4*np.pi*x) - >>> lines = plt.plot(x, y1, x, y2) - >>> plt.setp(lines, linewidth=2, color='r') - - -get -=== - -get returns the value of a given attribute. You can use get to query -the value of a single attribute:: - - >>> plt.getp(line, 'linewidth') - 0.5 - -or all the attribute/value pairs:: - - >>> plt.getp(line) - aa = True - alpha = 1.0 - antialiased = True - c = b - clip_on = True - color = b - ... long listing skipped ... - -Aliases -======= - -To reduce keystrokes in interactive mode, a number of properties -have short aliases, e.g., 'lw' for 'linewidth' and 'mec' for -'markeredgecolor'. When calling set or get in introspection mode, -these properties will be listed as 'fullname or aliasname'. -""" - - -import matplotlib.pyplot as plt -import numpy as np - - -x = np.arange(0, 1.0, 0.01) -y1 = np.sin(2*np.pi*x) -y2 = np.sin(4*np.pi*x) -lines = plt.plot(x, y1, x, y2) -l1, l2 = lines -plt.setp(lines, linestyle='--') # set both to dashed -plt.setp(l1, linewidth=2, color='r') # line1 is thick and red -plt.setp(l2, linewidth=1, color='g') # line2 is thinner and green - - -print('Line setters') -plt.setp(l1) -print('Line getters') -plt.getp(l1) - -print('Rectangle setters') -plt.setp(plt.gca().patch) -print('Rectangle getters') -plt.getp(plt.gca().patch) - -t = plt.title('Hi mom') -print('Text setters') -plt.setp(t) -print('Text getters') -plt.getp(t) - -plt.show() diff --git a/_downloads/5868c4948b8122fdd625c6f4d47e7fc7/custom_shaded_3d_surface.py b/_downloads/5868c4948b8122fdd625c6f4d47e7fc7/custom_shaded_3d_surface.py deleted file mode 120000 index e344e3356e8..00000000000 --- a/_downloads/5868c4948b8122fdd625c6f4d47e7fc7/custom_shaded_3d_surface.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5868c4948b8122fdd625c6f4d47e7fc7/custom_shaded_3d_surface.py \ No newline at end of file diff --git a/_downloads/586a88c62e8a2d883ea392b25f0e62a9/date_precision_and_epochs.py b/_downloads/586a88c62e8a2d883ea392b25f0e62a9/date_precision_and_epochs.py deleted file mode 120000 index 1f06f6b5bbb..00000000000 --- a/_downloads/586a88c62e8a2d883ea392b25f0e62a9/date_precision_and_epochs.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/586a88c62e8a2d883ea392b25f0e62a9/date_precision_and_epochs.py \ No newline at end of file diff --git a/_downloads/587049259e3166255d417f08cdc92823/auto_subplots_adjust.ipynb b/_downloads/587049259e3166255d417f08cdc92823/auto_subplots_adjust.ipynb deleted file mode 120000 index 4dc1eed11f8..00000000000 --- a/_downloads/587049259e3166255d417f08cdc92823/auto_subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/587049259e3166255d417f08cdc92823/auto_subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/58795db3fd9722e80b1ac91f7ecb58ce/style_sheets_reference.py b/_downloads/58795db3fd9722e80b1ac91f7ecb58ce/style_sheets_reference.py deleted file mode 100644 index 261285f3434..00000000000 --- a/_downloads/58795db3fd9722e80b1ac91f7ecb58ce/style_sheets_reference.py +++ /dev/null @@ -1,147 +0,0 @@ -""" -====================== -Style sheets reference -====================== - -This script demonstrates the different available style sheets on a -common set of example plots: scatter plot, image, bar graph, patches, -line plot and histogram, - -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def plot_scatter(ax, prng, nb_samples=100): - """Scatter plot. - """ - for mu, sigma, marker in [(-.5, 0.75, 'o'), (0.75, 1., 's')]: - x, y = prng.normal(loc=mu, scale=sigma, size=(2, nb_samples)) - ax.plot(x, y, ls='none', marker=marker) - ax.set_xlabel('X-label') - return ax - - -def plot_colored_sinusoidal_lines(ax): - """Plot sinusoidal lines with colors following the style color cycle. - """ - L = 2 * np.pi - x = np.linspace(0, L) - nb_colors = len(plt.rcParams['axes.prop_cycle']) - shift = np.linspace(0, L, nb_colors, endpoint=False) - for s in shift: - ax.plot(x, np.sin(x + s), '-') - ax.set_xlim([x[0], x[-1]]) - return ax - - -def plot_bar_graphs(ax, prng, min_value=5, max_value=25, nb_samples=5): - """Plot two bar graphs side by side, with letters as x-tick labels. - """ - x = np.arange(nb_samples) - ya, yb = prng.randint(min_value, max_value, size=(2, nb_samples)) - width = 0.25 - ax.bar(x, ya, width) - ax.bar(x + width, yb, width, color='C2') - ax.set_xticks(x + width) - ax.set_xticklabels(['a', 'b', 'c', 'd', 'e']) - return ax - - -def plot_colored_circles(ax, prng, nb_samples=15): - """Plot circle patches. - - NB: draws a fixed amount of samples, rather than using the length of - the color cycle, because different styles may have different numbers - of colors. - """ - for sty_dict, j in zip(plt.rcParams['axes.prop_cycle'], range(nb_samples)): - ax.add_patch(plt.Circle(prng.normal(scale=3, size=2), - radius=1.0, color=sty_dict['color'])) - # Force the limits to be the same across the styles (because different - # styles may have different numbers of available colors). - ax.set_xlim([-4, 8]) - ax.set_ylim([-5, 6]) - ax.set_aspect('equal', adjustable='box') # to plot circles as circles - return ax - - -def plot_image_and_patch(ax, prng, size=(20, 20)): - """Plot an image with random values and superimpose a circular patch. - """ - values = prng.random_sample(size=size) - ax.imshow(values, interpolation='none') - c = plt.Circle((5, 5), radius=5, label='patch') - ax.add_patch(c) - # Remove ticks - ax.set_xticks([]) - ax.set_yticks([]) - - -def plot_histograms(ax, prng, nb_samples=10000): - """Plot 4 histograms and a text annotation. - """ - params = ((10, 10), (4, 12), (50, 12), (6, 55)) - for a, b in params: - values = prng.beta(a, b, size=nb_samples) - ax.hist(values, histtype="stepfilled", bins=30, - alpha=0.8, density=True) - # Add a small annotation. - ax.annotate('Annotation', xy=(0.25, 4.25), - xytext=(0.9, 0.9), textcoords=ax.transAxes, - va="top", ha="right", - bbox=dict(boxstyle="round", alpha=0.2), - arrowprops=dict( - arrowstyle="->", - connectionstyle="angle,angleA=-95,angleB=35,rad=10"), - ) - return ax - - -def plot_figure(style_label=""): - """Setup and plot the demonstration figure with a given style. - """ - # Use a dedicated RandomState instance to draw the same "random" values - # across the different figures. - prng = np.random.RandomState(96917002) - - # Tweak the figure size to be better suited for a row of numerous plots: - # double the width and halve the height. NB: use relative changes because - # some styles may have a figure size different from the default one. - (fig_width, fig_height) = plt.rcParams['figure.figsize'] - fig_size = [fig_width * 2, fig_height / 2] - - fig, axes = plt.subplots(ncols=6, nrows=1, num=style_label, - figsize=fig_size, squeeze=True) - axes[0].set_ylabel(style_label) - - plot_scatter(axes[0], prng) - plot_image_and_patch(axes[1], prng) - plot_bar_graphs(axes[2], prng) - plot_colored_circles(axes[3], prng) - plot_colored_sinusoidal_lines(axes[4]) - plot_histograms(axes[5], prng) - - fig.tight_layout() - - return fig - - -if __name__ == "__main__": - - # Setup a list of all available styles, in alphabetical order but - # the `default` and `classic` ones, which will be forced resp. in - # first and second position. - style_list = ['default', 'classic'] + sorted( - style for style in plt.style.available if style != 'classic') - - # Plot a demonstration figure for every available style sheet. - for style_label in style_list: - with plt.style.context(style_label): - fig = plot_figure(style_label=style_label) - - plt.show() diff --git a/_downloads/58829182c5c3ebe8791c242a28cc4664/findobj_demo.ipynb b/_downloads/58829182c5c3ebe8791c242a28cc4664/findobj_demo.ipynb deleted file mode 120000 index c49666bcda1..00000000000 --- a/_downloads/58829182c5c3ebe8791c242a28cc4664/findobj_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/58829182c5c3ebe8791c242a28cc4664/findobj_demo.ipynb \ No newline at end of file diff --git a/_downloads/5882cc2b4c058b7b6cc23d60a0e9ba43/watermark_text.py b/_downloads/5882cc2b4c058b7b6cc23d60a0e9ba43/watermark_text.py deleted file mode 120000 index b0bbae3a543..00000000000 --- a/_downloads/5882cc2b4c058b7b6cc23d60a0e9ba43/watermark_text.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5882cc2b4c058b7b6cc23d60a0e9ba43/watermark_text.py \ No newline at end of file diff --git a/_downloads/58860601ba402c68bbd750a99c1bc502/resample.py b/_downloads/58860601ba402c68bbd750a99c1bc502/resample.py deleted file mode 120000 index dcaef7e82f7..00000000000 --- a/_downloads/58860601ba402c68bbd750a99c1bc502/resample.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/58860601ba402c68bbd750a99c1bc502/resample.py \ No newline at end of file diff --git a/_downloads/588a89e0826ad30abb49fe552f4c2b68/skewt.ipynb b/_downloads/588a89e0826ad30abb49fe552f4c2b68/skewt.ipynb deleted file mode 120000 index 688a9077521..00000000000 --- a/_downloads/588a89e0826ad30abb49fe552f4c2b68/skewt.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/588a89e0826ad30abb49fe552f4c2b68/skewt.ipynb \ No newline at end of file diff --git a/_downloads/5895b535555d888b25dc38a28019d2d9/demo_gridspec01.py b/_downloads/5895b535555d888b25dc38a28019d2d9/demo_gridspec01.py deleted file mode 100644 index 404fe771b6e..00000000000 --- a/_downloads/5895b535555d888b25dc38a28019d2d9/demo_gridspec01.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -================= -subplot2grid demo -================= - -This example demonstrates the use of `plt.subplot2grid` to generate subplots. -Using `GridSpec`, as demonstrated in :doc:`/gallery/userdemo/demo_gridspec03` -is generally preferred. -""" - -import matplotlib.pyplot as plt - - -def annotate_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - - -fig = plt.figure() -ax1 = plt.subplot2grid((3, 3), (0, 0), colspan=3) -ax2 = plt.subplot2grid((3, 3), (1, 0), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) -ax4 = plt.subplot2grid((3, 3), (2, 0)) -ax5 = plt.subplot2grid((3, 3), (2, 1)) - -annotate_axes(fig) - -plt.show() diff --git a/_downloads/589bdf765040cc5274959a164da4b80e/bar_of_pie.ipynb b/_downloads/589bdf765040cc5274959a164da4b80e/bar_of_pie.ipynb deleted file mode 120000 index 0fb18d62013..00000000000 --- a/_downloads/589bdf765040cc5274959a164da4b80e/bar_of_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/589bdf765040cc5274959a164da4b80e/bar_of_pie.ipynb \ No newline at end of file diff --git a/_downloads/58a1433a8b9b492045a15224c16f35ee/buttons.ipynb b/_downloads/58a1433a8b9b492045a15224c16f35ee/buttons.ipynb deleted file mode 120000 index 37ae1891db9..00000000000 --- a/_downloads/58a1433a8b9b492045a15224c16f35ee/buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/58a1433a8b9b492045a15224c16f35ee/buttons.ipynb \ No newline at end of file diff --git a/_downloads/58a1dc1dad006bedcf1fe41aa699b676/histogram_cumulative.py b/_downloads/58a1dc1dad006bedcf1fe41aa699b676/histogram_cumulative.py deleted file mode 120000 index f54fee5924a..00000000000 --- a/_downloads/58a1dc1dad006bedcf1fe41aa699b676/histogram_cumulative.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/58a1dc1dad006bedcf1fe41aa699b676/histogram_cumulative.py \ No newline at end of file diff --git a/_downloads/58b1d3afba074d225358162510b966e4/log_bar.ipynb b/_downloads/58b1d3afba074d225358162510b966e4/log_bar.ipynb deleted file mode 100644 index fb56bfb8e50..00000000000 --- a/_downloads/58b1d3afba074d225358162510b966e4/log_bar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Log Bar\n\n\nPlotting a bar chart with a logarithmic y-axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\ndata = ((3, 1000), (10, 3), (100, 30), (500, 800), (50, 1))\n\ndim = len(data[0])\nw = 0.75\ndimw = w / dim\n\nfig, ax = plt.subplots()\nx = np.arange(len(data))\nfor i in range(len(data[0])):\n y = [d[i] for d in data]\n b = ax.bar(x + i * dimw, y, dimw, bottom=0.001)\n\nax.set_xticks(x + dimw / 2, map(str, x))\nax.set_yscale('log')\n\nax.set_xlabel('x')\nax.set_ylabel('y')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/58b51c24d173e85c71226c078404b94a/barb_demo.ipynb b/_downloads/58b51c24d173e85c71226c078404b94a/barb_demo.ipynb deleted file mode 100644 index 131fc8770dc..00000000000 --- a/_downloads/58b51c24d173e85c71226c078404b94a/barb_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Barb Demo\n\n\nDemonstration of wind barb plots\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.linspace(-5, 5, 5)\nX, Y = np.meshgrid(x, x)\nU, V = 12 * X, 12 * Y\n\ndata = [(-1.5, .5, -6, -6),\n (1, -1, -46, 46),\n (-3, -1, 11, -11),\n (1, 1.5, 80, 80),\n (0.5, 0.25, 25, 15),\n (-1.5, -0.5, -5, 40)]\n\ndata = np.array(data, dtype=[('x', np.float32), ('y', np.float32),\n ('u', np.float32), ('v', np.float32)])\n\nfig1, axs1 = plt.subplots(nrows=2, ncols=2)\n# Default parameters, uniform grid\naxs1[0, 0].barbs(X, Y, U, V)\n\n# Arbitrary set of vectors, make them longer and change the pivot point\n# (point around which they're rotated) to be the middle\naxs1[0, 1].barbs(\n data['x'], data['y'], data['u'], data['v'], length=8, pivot='middle')\n\n# Showing colormapping with uniform grid. Fill the circle for an empty barb,\n# don't round the values, and change some of the size parameters\naxs1[1, 0].barbs(\n X, Y, U, V, np.sqrt(U ** 2 + V ** 2), fill_empty=True, rounding=False,\n sizes=dict(emptybarb=0.25, spacing=0.2, height=0.3))\n\n# Change colors as well as the increments for parts of the barbs\naxs1[1, 1].barbs(data['x'], data['y'], data['u'], data['v'], flagcolor='r',\n barbcolor=['b', 'g'], flip_barb=True,\n barb_increments=dict(half=10, full=20, flag=100))\n\n# Masked arrays are also supported\nmasked_u = np.ma.masked_array(data['u'])\nmasked_u[4] = 1000 # Bad value that should not be plotted when masked\nmasked_u[4] = np.ma.masked\n\n# Identical plot to panel 2 in the first figure, but with the point at\n# (0.5, 0.25) missing (masked)\nfig2, ax2 = plt.subplots()\nax2.barbs(data['x'], data['y'], masked_u, data['v'], length=8, pivot='middle')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.barbs\nmatplotlib.pyplot.barbs" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/58cd5aa3525b4851157dbf8d13ecf2cb/figure_axes_enter_leave.py b/_downloads/58cd5aa3525b4851157dbf8d13ecf2cb/figure_axes_enter_leave.py deleted file mode 120000 index fef187b54eb..00000000000 --- a/_downloads/58cd5aa3525b4851157dbf8d13ecf2cb/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/58cd5aa3525b4851157dbf8d13ecf2cb/figure_axes_enter_leave.py \ No newline at end of file diff --git a/_downloads/58d076d2060693200d74671e5f66c6e5/connect_simple01.ipynb b/_downloads/58d076d2060693200d74671e5f66c6e5/connect_simple01.ipynb deleted file mode 120000 index f3f8a64839a..00000000000 --- a/_downloads/58d076d2060693200d74671e5f66c6e5/connect_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/58d076d2060693200d74671e5f66c6e5/connect_simple01.ipynb \ No newline at end of file diff --git a/_downloads/58d5f65f839839a17aaea41af202d033/custom_figure_class.py b/_downloads/58d5f65f839839a17aaea41af202d033/custom_figure_class.py deleted file mode 120000 index 224bfbb2c03..00000000000 --- a/_downloads/58d5f65f839839a17aaea41af202d033/custom_figure_class.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/58d5f65f839839a17aaea41af202d033/custom_figure_class.py \ No newline at end of file diff --git a/_downloads/58dbf817367427f53635aa68ddf353c6/font_table.py b/_downloads/58dbf817367427f53635aa68ddf353c6/font_table.py deleted file mode 120000 index e326cc69531..00000000000 --- a/_downloads/58dbf817367427f53635aa68ddf353c6/font_table.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/58dbf817367427f53635aa68ddf353c6/font_table.py \ No newline at end of file diff --git a/_downloads/58f3320c49679abd932384ee37bdeef3/text_rotation_relative_to_line.py b/_downloads/58f3320c49679abd932384ee37bdeef3/text_rotation_relative_to_line.py deleted file mode 120000 index 0c94c57e6bf..00000000000 --- a/_downloads/58f3320c49679abd932384ee37bdeef3/text_rotation_relative_to_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/58f3320c49679abd932384ee37bdeef3/text_rotation_relative_to_line.py \ No newline at end of file diff --git a/_downloads/58f3fdd9af6d3abdeab33878d8746999/demo_anchored_direction_arrows.ipynb b/_downloads/58f3fdd9af6d3abdeab33878d8746999/demo_anchored_direction_arrows.ipynb deleted file mode 100644 index 90ca85432ed..00000000000 --- a/_downloads/58f3fdd9af6d3abdeab33878d8746999/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Anchored Direction Arrow\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredDirectionArrows\nimport matplotlib.font_manager as fm\n\nfig, ax = plt.subplots()\nax.imshow(np.random.random((10, 10)))\n\n# Simple example\nsimple_arrow = AnchoredDirectionArrows(ax.transAxes, 'X', 'Y')\nax.add_artist(simple_arrow)\n\n# High contrast arrow\nhigh_contrast_part_1 = AnchoredDirectionArrows(\n ax.transAxes,\n '111', r'11$\\overline{2}$',\n loc='upper right',\n arrow_props={'ec': 'w', 'fc': 'none', 'alpha': 1,\n 'lw': 2}\n )\nax.add_artist(high_contrast_part_1)\n\nhigh_contrast_part_2 = AnchoredDirectionArrows(\n ax.transAxes,\n '111', r'11$\\overline{2}$',\n loc='upper right',\n arrow_props={'ec': 'none', 'fc': 'k'},\n text_props={'ec': 'w', 'fc': 'k', 'lw': 0.4}\n )\nax.add_artist(high_contrast_part_2)\n\n# Rotated arrow\nfontprops = fm.FontProperties(family='serif')\n\nroatated_arrow = AnchoredDirectionArrows(\n ax.transAxes,\n '30', '120',\n loc='center',\n color='w',\n angle=30,\n fontproperties=fontprops\n )\nax.add_artist(roatated_arrow)\n\n# Altering arrow directions\na1 = AnchoredDirectionArrows(\n ax.transAxes, 'A', 'B', loc='lower center',\n length=-0.15,\n sep_x=0.03, sep_y=0.03,\n color='r'\n )\nax.add_artist(a1)\n\na2 = AnchoredDirectionArrows(\n ax.transAxes, 'A', ' B', loc='lower left',\n aspect_ratio=-1,\n sep_x=0.01, sep_y=-0.02,\n color='orange'\n )\nax.add_artist(a2)\n\n\na3 = AnchoredDirectionArrows(\n ax.transAxes, ' A', 'B', loc='lower right',\n length=-0.15,\n aspect_ratio=-1,\n sep_y=-0.1, sep_x=0.04,\n color='cyan'\n )\nax.add_artist(a3)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/58f895972fe8d7318465df8cef2dc574/symlog_demo.py b/_downloads/58f895972fe8d7318465df8cef2dc574/symlog_demo.py deleted file mode 120000 index 75e416e42c9..00000000000 --- a/_downloads/58f895972fe8d7318465df8cef2dc574/symlog_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/58f895972fe8d7318465df8cef2dc574/symlog_demo.py \ No newline at end of file diff --git a/_downloads/58fc7a5daba259648deaad4e6e222783/demo_gridspec03.py b/_downloads/58fc7a5daba259648deaad4e6e222783/demo_gridspec03.py deleted file mode 120000 index c1325ce6fd1..00000000000 --- a/_downloads/58fc7a5daba259648deaad4e6e222783/demo_gridspec03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/58fc7a5daba259648deaad4e6e222783/demo_gridspec03.py \ No newline at end of file diff --git a/_downloads/59028c7eeed49045809591f183876c57/compound_path.ipynb b/_downloads/59028c7eeed49045809591f183876c57/compound_path.ipynb deleted file mode 120000 index 3952036a76a..00000000000 --- a/_downloads/59028c7eeed49045809591f183876c57/compound_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/59028c7eeed49045809591f183876c57/compound_path.ipynb \ No newline at end of file diff --git a/_downloads/5904935f070a4548e0df54650932ac02/resample.ipynb b/_downloads/5904935f070a4548e0df54650932ac02/resample.ipynb deleted file mode 120000 index c7493ba0b7f..00000000000 --- a/_downloads/5904935f070a4548e0df54650932ac02/resample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5904935f070a4548e0df54650932ac02/resample.ipynb \ No newline at end of file diff --git a/_downloads/59072c8072efd57fbcc1c0bab5287ba7/bachelors_degrees_by_gender.py b/_downloads/59072c8072efd57fbcc1c0bab5287ba7/bachelors_degrees_by_gender.py deleted file mode 120000 index 20a93bd030e..00000000000 --- a/_downloads/59072c8072efd57fbcc1c0bab5287ba7/bachelors_degrees_by_gender.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/59072c8072efd57fbcc1c0bab5287ba7/bachelors_degrees_by_gender.py \ No newline at end of file diff --git a/_downloads/590da64e8a05b292f91f14bfb97ce39e/bar_unit_demo.py b/_downloads/590da64e8a05b292f91f14bfb97ce39e/bar_unit_demo.py deleted file mode 120000 index e848ea85c06..00000000000 --- a/_downloads/590da64e8a05b292f91f14bfb97ce39e/bar_unit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/590da64e8a05b292f91f14bfb97ce39e/bar_unit_demo.py \ No newline at end of file diff --git a/_downloads/59123d0445761c1e94d0b9332a59ec73/color_by_yvalue.py b/_downloads/59123d0445761c1e94d0b9332a59ec73/color_by_yvalue.py deleted file mode 100644 index 79d18ab0919..00000000000 --- a/_downloads/59123d0445761c1e94d0b9332a59ec73/color_by_yvalue.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -================ -Color by y-value -================ - -Use masked arrays to plot a line with different colors by y-value. -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0.0, 2.0, 0.01) -s = np.sin(2 * np.pi * t) - -upper = 0.77 -lower = -0.77 - -supper = np.ma.masked_where(s < upper, s) -slower = np.ma.masked_where(s > lower, s) -smiddle = np.ma.masked_where((s < lower) | (s > upper), s) - -fig, ax = plt.subplots() -ax.plot(t, smiddle, t, slower, t, supper) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot diff --git a/_downloads/59190cf24576babc2eded8313feec3f1/bayes_update.py b/_downloads/59190cf24576babc2eded8313feec3f1/bayes_update.py deleted file mode 100644 index 242d19ebb3d..00000000000 --- a/_downloads/59190cf24576babc2eded8313feec3f1/bayes_update.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -================ -The Bayes update -================ - -This animation displays the posterior estimate updates as it is refitted when -new data arrives. -The vertical line represents the theoretical value to which the plotted -distribution should converge. -""" - -import math - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.animation import FuncAnimation - - -def beta_pdf(x, a, b): - return (x**(a-1) * (1-x)**(b-1) * math.gamma(a + b) - / (math.gamma(a) * math.gamma(b))) - - -class UpdateDist(object): - def __init__(self, ax, prob=0.5): - self.success = 0 - self.prob = prob - self.line, = ax.plot([], [], 'k-') - self.x = np.linspace(0, 1, 200) - self.ax = ax - - # Set up plot parameters - self.ax.set_xlim(0, 1) - self.ax.set_ylim(0, 15) - self.ax.grid(True) - - # This vertical line represents the theoretical value, to - # which the plotted distribution should converge. - self.ax.axvline(prob, linestyle='--', color='black') - - def init(self): - self.success = 0 - self.line.set_data([], []) - return self.line, - - def __call__(self, i): - # This way the plot can continuously run and we just keep - # watching new realizations of the process - if i == 0: - return self.init() - - # Choose success based on exceed a threshold with a uniform pick - if np.random.rand(1,) < self.prob: - self.success += 1 - y = beta_pdf(self.x, self.success + 1, (i - self.success) + 1) - self.line.set_data(self.x, y) - return self.line, - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -ud = UpdateDist(ax, prob=0.7) -anim = FuncAnimation(fig, ud, frames=np.arange(100), init_func=ud.init, - interval=100, blit=True) -plt.show() diff --git a/_downloads/591ca39dfba174ec8ce8d12c3a269761/bmh.ipynb b/_downloads/591ca39dfba174ec8ce8d12c3a269761/bmh.ipynb deleted file mode 120000 index 7b1f807b580..00000000000 --- a/_downloads/591ca39dfba174ec8ce8d12c3a269761/bmh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/591ca39dfba174ec8ce8d12c3a269761/bmh.ipynb \ No newline at end of file diff --git a/_downloads/5922844a937ba3ea01f2e9e8430fc37d/usetex_fonteffects.ipynb b/_downloads/5922844a937ba3ea01f2e9e8430fc37d/usetex_fonteffects.ipynb deleted file mode 120000 index 264fa2e0e18..00000000000 --- a/_downloads/5922844a937ba3ea01f2e9e8430fc37d/usetex_fonteffects.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5922844a937ba3ea01f2e9e8430fc37d/usetex_fonteffects.ipynb \ No newline at end of file diff --git a/_downloads/5922b9d93b49d592301af79dfdddf7de/demo_parasite_axes.py b/_downloads/5922b9d93b49d592301af79dfdddf7de/demo_parasite_axes.py deleted file mode 120000 index 78234c92862..00000000000 --- a/_downloads/5922b9d93b49d592301af79dfdddf7de/demo_parasite_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5922b9d93b49d592301af79dfdddf7de/demo_parasite_axes.py \ No newline at end of file diff --git a/_downloads/5937719fe6232dc8db0079b6048e4e83/simple_colorbar.py b/_downloads/5937719fe6232dc8db0079b6048e4e83/simple_colorbar.py deleted file mode 120000 index b1a41a0ac75..00000000000 --- a/_downloads/5937719fe6232dc8db0079b6048e4e83/simple_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5937719fe6232dc8db0079b6048e4e83/simple_colorbar.py \ No newline at end of file diff --git a/_downloads/594017298008be3763c1b09d1388f936/image_demo.py b/_downloads/594017298008be3763c1b09d1388f936/image_demo.py deleted file mode 120000 index 82825737836..00000000000 --- a/_downloads/594017298008be3763c1b09d1388f936/image_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/594017298008be3763c1b09d1388f936/image_demo.py \ No newline at end of file diff --git a/_downloads/59443b6416ae7e7895d0c4da2f0a88af/axes_margins.py b/_downloads/59443b6416ae7e7895d0c4da2f0a88af/axes_margins.py deleted file mode 120000 index 56fa761ca55..00000000000 --- a/_downloads/59443b6416ae7e7895d0c4da2f0a88af/axes_margins.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/59443b6416ae7e7895d0c4da2f0a88af/axes_margins.py \ No newline at end of file diff --git a/_downloads/595be1e81646ae1bda956fcc1024f996/dynamic_image.py b/_downloads/595be1e81646ae1bda956fcc1024f996/dynamic_image.py deleted file mode 100644 index d82e62f62af..00000000000 --- a/_downloads/595be1e81646ae1bda956fcc1024f996/dynamic_image.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -================================================= -Animated image using a precomputed list of images -================================================= - -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - -fig = plt.figure() - - -def f(x, y): - return np.sin(x) + np.cos(y) - -x = np.linspace(0, 2 * np.pi, 120) -y = np.linspace(0, 2 * np.pi, 100).reshape(-1, 1) -# ims is a list of lists, each row is a list of artists to draw in the -# current frame; here we are just animating one artist, the image, in -# each frame -ims = [] -for i in range(60): - x += np.pi / 15. - y += np.pi / 20. - im = plt.imshow(f(x, y), animated=True) - ims.append([im]) - -ani = animation.ArtistAnimation(fig, ims, interval=50, blit=True, - repeat_delay=1000) - -# To save the animation, use e.g. -# -# ani.save("movie.mp4") -# -# or -# -# from matplotlib.animation import FFMpegWriter -# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800) -# ani.save("movie.mp4", writer=writer) - -plt.show() diff --git a/_downloads/595c8c703f185492ec131004f07e0949/fancybox_demo.ipynb b/_downloads/595c8c703f185492ec131004f07e0949/fancybox_demo.ipynb deleted file mode 100644 index eaca7c00cb8..00000000000 --- a/_downloads/595c8c703f185492ec131004f07e0949/fancybox_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fancybox Demo\n\n\nPlotting fancy boxes with Matplotlib.\n\nThe following examples show how to plot boxes with different\nvisual properties.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\nimport matplotlib.patches as mpatch\nfrom matplotlib.patches import FancyBboxPatch" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First we'll show some sample boxes with fancybox.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "styles = mpatch.BoxStyle.get_styles()\nspacing = 1.2\n\nfigheight = (spacing * len(styles) + .5)\nfig = plt.figure(figsize=(4 / 1.5, figheight / 1.5))\nfontsize = 0.3 * 72\n\nfor i, stylename in enumerate(sorted(styles)):\n fig.text(0.5, (spacing * (len(styles) - i) - 0.5) / figheight, stylename,\n ha=\"center\",\n size=fontsize,\n transform=fig.transFigure,\n bbox=dict(boxstyle=stylename, fc=\"w\", ec=\"k\"))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next we'll show off multiple fancy boxes at once.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Bbox object around which the fancy box will be drawn.\nbb = mtransforms.Bbox([[0.3, 0.4], [0.7, 0.6]])\n\n\ndef draw_bbox(ax, bb):\n # boxstyle=square with pad=0, i.e. bbox itself.\n p_bbox = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"square,pad=0.\",\n ec=\"k\", fc=\"none\", zorder=10.,\n )\n ax.add_patch(p_bbox)\n\n\ndef test1(ax):\n\n # a fancy box with round corners. pad=0.1\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.1\",\n fc=(1., .8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n ax.text(0.1, 0.8,\n r' boxstyle=\"round,pad=0.1\"',\n size=10, transform=ax.transAxes)\n\n # draws control points for the fancy box.\n # l = p_fancy.get_path().vertices\n # ax.plot(l[:,0], l[:,1], \".\")\n\n # draw the original bbox in black\n draw_bbox(ax, bb)\n\n\ndef test2(ax):\n\n # bbox=round has two optional argument. pad and rounding_size.\n # They can be set during the initialization.\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.1\",\n fc=(1., .8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n # boxstyle and its argument can be later modified with\n # set_boxstyle method. Note that the old attributes are simply\n # forgotten even if the boxstyle name is same.\n\n p_fancy.set_boxstyle(\"round,pad=0.1, rounding_size=0.2\")\n # or\n # p_fancy.set_boxstyle(\"round\", pad=0.1, rounding_size=0.2)\n\n ax.text(0.1, 0.8,\n ' boxstyle=\"round,pad=0.1\\n rounding_size=0.2\"',\n size=10, transform=ax.transAxes)\n\n # draws control points for the fancy box.\n # l = p_fancy.get_path().vertices\n # ax.plot(l[:,0], l[:,1], \".\")\n\n draw_bbox(ax, bb)\n\n\ndef test3(ax):\n\n # mutation_scale determine overall scale of the mutation,\n # i.e. both pad and rounding_size is scaled according to this\n # value.\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.1\",\n mutation_scale=2.,\n fc=(1., .8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n ax.text(0.1, 0.8,\n ' boxstyle=\"round,pad=0.1\"\\n mutation_scale=2',\n size=10, transform=ax.transAxes)\n\n # draws control points for the fancy box.\n # l = p_fancy.get_path().vertices\n # ax.plot(l[:,0], l[:,1], \".\")\n\n draw_bbox(ax, bb)\n\n\ndef test4(ax):\n\n # When the aspect ratio of the axes is not 1, the fancy box may\n # not be what you expected (green)\n\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.2\",\n fc=\"none\",\n ec=(0., .5, 0.), zorder=4)\n\n ax.add_patch(p_fancy)\n\n # You can compensate this by setting the mutation_aspect (pink).\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.3\",\n mutation_aspect=.5,\n fc=(1., 0.8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n ax.text(0.1, 0.8,\n ' boxstyle=\"round,pad=0.3\"\\n mutation_aspect=.5',\n size=10, transform=ax.transAxes)\n\n draw_bbox(ax, bb)\n\n\ndef test_all():\n plt.clf()\n\n ax = plt.subplot(2, 2, 1)\n test1(ax)\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n ax.set_title(\"test1\")\n ax.set_aspect(1.)\n\n ax = plt.subplot(2, 2, 2)\n ax.set_title(\"test2\")\n test2(ax)\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n ax.set_aspect(1.)\n\n ax = plt.subplot(2, 2, 3)\n ax.set_title(\"test3\")\n test3(ax)\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n ax.set_aspect(1)\n\n ax = plt.subplot(2, 2, 4)\n ax.set_title(\"test4\")\n test4(ax)\n ax.set_xlim(-0.5, 1.5)\n ax.set_ylim(0., 1.)\n ax.set_aspect(2.)\n\n plt.show()\n\n\ntest_all()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.FancyBboxPatch\nmatplotlib.patches.BoxStyle\nmatplotlib.patches.BoxStyle.get_styles\nmatplotlib.transforms.Bbox" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/59738c15860d177b1ba6fe1926f6f186/units_scatter.ipynb b/_downloads/59738c15860d177b1ba6fe1926f6f186/units_scatter.ipynb deleted file mode 120000 index f6db543f65f..00000000000 --- a/_downloads/59738c15860d177b1ba6fe1926f6f186/units_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/59738c15860d177b1ba6fe1926f6f186/units_scatter.ipynb \ No newline at end of file diff --git a/_downloads/5990feb78f8d1c9c4522f857da4a26ee/fourier_demo_wx_sgskip.ipynb b/_downloads/5990feb78f8d1c9c4522f857da4a26ee/fourier_demo_wx_sgskip.ipynb deleted file mode 120000 index 97c05cd6e6c..00000000000 --- a/_downloads/5990feb78f8d1c9c4522f857da4a26ee/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5990feb78f8d1c9c4522f857da4a26ee/fourier_demo_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/59a289488e598cbb78c1d41f0b622281/patheffect_demo.py b/_downloads/59a289488e598cbb78c1d41f0b622281/patheffect_demo.py deleted file mode 120000 index cfff746d31c..00000000000 --- a/_downloads/59a289488e598cbb78c1d41f0b622281/patheffect_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/59a289488e598cbb78c1d41f0b622281/patheffect_demo.py \ No newline at end of file diff --git a/_downloads/59a39cdc6d7c56fe8f531da1a750398e/mathtext_asarray.py b/_downloads/59a39cdc6d7c56fe8f531da1a750398e/mathtext_asarray.py deleted file mode 120000 index 9db266800d9..00000000000 --- a/_downloads/59a39cdc6d7c56fe8f531da1a750398e/mathtext_asarray.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/59a39cdc6d7c56fe8f531da1a750398e/mathtext_asarray.py \ No newline at end of file diff --git a/_downloads/59a4db0e72acb7694cb3686cba124959/ellipse_with_units.py b/_downloads/59a4db0e72acb7694cb3686cba124959/ellipse_with_units.py deleted file mode 120000 index a34f6e426fa..00000000000 --- a/_downloads/59a4db0e72acb7694cb3686cba124959/ellipse_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/59a4db0e72acb7694cb3686cba124959/ellipse_with_units.py \ No newline at end of file diff --git a/_downloads/59a7c8f3db252ae16cd43fd50d6a004c/colormapnorms.ipynb b/_downloads/59a7c8f3db252ae16cd43fd50d6a004c/colormapnorms.ipynb deleted file mode 100644 index 69b5112c2d9..00000000000 --- a/_downloads/59a7c8f3db252ae16cd43fd50d6a004c/colormapnorms.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nColormap Normalization\n======================\n\nObjects that use colormaps by default linearly map the colors in the\ncolormap from data values *vmin* to *vmax*. For example::\n\n pcm = ax.pcolormesh(x, y, Z, vmin=-1., vmax=1., cmap='RdBu_r')\n\nwill map the data in *Z* linearly from -1 to +1, so *Z=0* will\ngive a color at the center of the colormap *RdBu_r* (white in this\ncase).\n\nMatplotlib does this mapping in two steps, with a normalization from\nthe input data to [0, 1] occurring first, and then mapping onto the\nindices in the colormap. Normalizations are classes defined in the\n:func:`matplotlib.colors` module. The default, linear normalization\nis :func:`matplotlib.colors.Normalize`.\n\nArtists that map data to color pass the arguments *vmin* and *vmax* to\nconstruct a :func:`matplotlib.colors.Normalize` instance, then call it:\n\n.. ipython::\n\n In [1]: import matplotlib as mpl\n\n In [2]: norm = mpl.colors.Normalize(vmin=-1.,vmax=1.)\n\n In [3]: norm(0.)\n Out[3]: 0.5\n\nHowever, there are sometimes cases where it is useful to map data to\ncolormaps in a non-linear fashion.\n\nLogarithmic\n-----------\n\nOne of the most common transformations is to plot data by taking its logarithm\n(to the base-10). This transformation is useful to display changes across\ndisparate scales. Using `.colors.LogNorm` normalizes the data via\n$log_{10}$. In the example below, there are two bumps, one much smaller\nthan the other. Using `.colors.LogNorm`, the shape and location of each bump\ncan clearly be seen:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\nimport matplotlib.cbook as cbook\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out of the top right. Needs to have\n# z/colour axis on a log scale so we see both hump and spike. linear\n# scale only shows the spike.\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nZ = Z1 + 50 * Z2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolor(X, Y, Z,\n norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Symmetric logarithmic\n---------------------\n\nSimilarly, it sometimes happens that there is data that is positive\nand negative, but we would still like a logarithmic scaling applied to\nboth. In this case, the negative numbers are also scaled\nlogarithmically, and mapped to smaller numbers; e.g., if `vmin=-vmax`,\nthen they the negative numbers are mapped from 0 to 0.5 and the\npositive from 0.5 to 1.\n\nSince the logarithm of values close to zero tends toward infinity, a\nsmall range around zero needs to be mapped linearly. The parameter\n*linthresh* allows the user to specify the size of this range\n(-*linthresh*, *linthresh*). The size of this range in the colormap is\nset by *linscale*. When *linscale* == 1.0 (the default), the space used\nfor the positive and negative halves of the linear range will be equal\nto one decade in the logarithmic range.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03,\n vmin=-1.0, vmax=1.0),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Power-law\n---------\n\nSometimes it is useful to remap the colors onto a power-law\nrelationship (i.e. $y=x^{\\gamma}$, where $\\gamma$ is the\npower). For this we use the :func:`colors.PowerNorm`. It takes as an\nargument *gamma* (*gamma* == 1.0 will just yield the default linear\nnormalization):\n\n

Note

There should probably be a good reason for plotting the data using\n this type of transformation. Technical viewers are used to linear\n and logarithmic axes and data transformations. Power laws are less\n common, and viewers should explicitly be made aware that they have\n been used.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)]\nZ1 = (1 + np.sin(Y * 10.)) * X**(2.)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=0.5),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Discrete bounds\n---------------\n\nAnother normaization that comes with Matplotlib is\n:func:`colors.BoundaryNorm`. In addition to *vmin* and *vmax*, this\ntakes as arguments boundaries between which data is to be mapped. The\ncolors are then linearly distributed between these \"bounds\". For\ninstance:\n\n.. ipython::\n\n In [2]: import matplotlib.colors as colors\n\n In [3]: bounds = np.array([-0.25, -0.125, 0, 0.5, 1])\n\n In [4]: norm = colors.BoundaryNorm(boundaries=bounds, ncolors=4)\n\n In [5]: print(norm([-0.2,-0.15,-0.02, 0.3, 0.8, 0.99]))\n [0 0 1 2 3 3]\n\nNote unlike the other norms, this norm returns values from 0 to *ncolors*-1.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(3, 1, figsize=(8, 8))\nax = ax.flatten()\n# even bounds gives a contour-like effect\nbounds = np.linspace(-1, 1, 10)\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=norm,\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical')\n\n# uneven bounds changes the colormapping:\nbounds = np.array([-0.25, -0.125, 0, 0.5, 1])\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical')\n\npcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "DivergingNorm: Different mapping on either side of a center\n-----------------------------------------------------------\n\nSometimes we want to have a different colormap on either side of a\nconceptual center point, and we want those two colormaps to have\ndifferent linear scales. An example is a topographic map where the land\nand ocean have a center at zero, but land typically has a greater\nelevation range than the water has depth range, and they are often\nrepresented by a different colormap.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "filename = cbook.get_sample_data('topobathy.npz', asfileobj=False)\nwith np.load(filename) as dem:\n topo = dem['topo']\n longitude = dem['longitude']\n latitude = dem['latitude']\n\nfig, ax = plt.subplots()\n# make a colormap that has land and ocean clearly delineated and of the\n# same length (256 + 256)\ncolors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256))\ncolors_land = plt.cm.terrain(np.linspace(0.25, 1, 256))\nall_colors = np.vstack((colors_undersea, colors_land))\nterrain_map = colors.LinearSegmentedColormap.from_list('terrain_map',\n all_colors)\n\n# make the norm: Note the center is offset so that the land has more\n# dynamic range:\ndivnorm = colors.DivergingNorm(vmin=-500., vcenter=0, vmax=4000)\n\npcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm,\n cmap=terrain_map,)\n# Simple geographic plot, set aspect ratio beecause distance between lines of\n# longitude depends on latitude.\nax.set_aspect(1 / np.cos(np.deg2rad(49)))\nfig.colorbar(pcm, shrink=0.6)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Custom normalization: Manually implement two linear ranges\n----------------------------------------------------------\n\nThe `.DivergingNorm` described above makes a useful example for\ndefining your own norm.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class MidpointNormalize(colors.Normalize):\n def __init__(self, vmin=None, vmax=None, vcenter=None, clip=False):\n self.vcenter = vcenter\n colors.Normalize.__init__(self, vmin, vmax, clip)\n\n def __call__(self, value, clip=None):\n # I'm ignoring masked values and all kinds of edge cases to make a\n # simple example...\n x, y = [self.vmin, self.vcenter, self.vmax], [0, 0.5, 1]\n return np.ma.masked_array(np.interp(value, x, y))\n\n\nfig, ax = plt.subplots()\nmidnorm = MidpointNormalize(vmin=-500., vcenter=0, vmax=4000)\n\npcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=midnorm,\n cmap=terrain_map)\nax.set_aspect(1 / np.cos(np.deg2rad(49)))\nfig.colorbar(pcm, shrink=0.6, extend='both')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/59aaac1c430bb596fc09630a5f811721/unicode_minus.ipynb b/_downloads/59aaac1c430bb596fc09630a5f811721/unicode_minus.ipynb deleted file mode 120000 index 0d7d09fc8d5..00000000000 --- a/_downloads/59aaac1c430bb596fc09630a5f811721/unicode_minus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/59aaac1c430bb596fc09630a5f811721/unicode_minus.ipynb \ No newline at end of file diff --git a/_downloads/59af9f4d3fd1996695be2adb71b51de3/collections.ipynb b/_downloads/59af9f4d3fd1996695be2adb71b51de3/collections.ipynb deleted file mode 120000 index c0f83c6cf21..00000000000 --- a/_downloads/59af9f4d3fd1996695be2adb71b51de3/collections.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/59af9f4d3fd1996695be2adb71b51de3/collections.ipynb \ No newline at end of file diff --git a/_downloads/59d1b4c2976049e844aca838e1d6e368/lasso_selector_demo_sgskip.py b/_downloads/59d1b4c2976049e844aca838e1d6e368/lasso_selector_demo_sgskip.py deleted file mode 100644 index ac6c7325199..00000000000 --- a/_downloads/59d1b4c2976049e844aca838e1d6e368/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -=================== -Lasso Selector Demo -=================== - -Interactively selecting data points with the lasso tool. - -This examples plots a scatter plot. You can then select a few points by drawing -a lasso loop around the points on the graph. To draw, just click -on the graph, hold, and drag it around the points you need to select. -""" - - -import numpy as np - -from matplotlib.widgets import LassoSelector -from matplotlib.path import Path - - -class SelectFromCollection(object): - """Select indices from a matplotlib collection using `LassoSelector`. - - Selected indices are saved in the `ind` attribute. This tool fades out the - points that are not part of the selection (i.e., reduces their alpha - values). If your collection has alpha < 1, this tool will permanently - alter the alpha values. - - Note that this tool selects collection objects based on their *origins* - (i.e., `offsets`). - - Parameters - ---------- - ax : :class:`~matplotlib.axes.Axes` - Axes to interact with. - - collection : :class:`matplotlib.collections.Collection` subclass - Collection you want to select from. - - alpha_other : 0 <= float <= 1 - To highlight a selection, this tool sets all selected points to an - alpha value of 1 and non-selected points to `alpha_other`. - """ - - def __init__(self, ax, collection, alpha_other=0.3): - self.canvas = ax.figure.canvas - self.collection = collection - self.alpha_other = alpha_other - - self.xys = collection.get_offsets() - self.Npts = len(self.xys) - - # Ensure that we have separate colors for each object - self.fc = collection.get_facecolors() - if len(self.fc) == 0: - raise ValueError('Collection must have a facecolor') - elif len(self.fc) == 1: - self.fc = np.tile(self.fc, (self.Npts, 1)) - - self.lasso = LassoSelector(ax, onselect=self.onselect) - self.ind = [] - - def onselect(self, verts): - path = Path(verts) - self.ind = np.nonzero(path.contains_points(self.xys))[0] - self.fc[:, -1] = self.alpha_other - self.fc[self.ind, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - def disconnect(self): - self.lasso.disconnect_events() - self.fc[:, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - - # Fixing random state for reproducibility - np.random.seed(19680801) - - data = np.random.rand(100, 2) - - subplot_kw = dict(xlim=(0, 1), ylim=(0, 1), autoscale_on=False) - fig, ax = plt.subplots(subplot_kw=subplot_kw) - - pts = ax.scatter(data[:, 0], data[:, 1], s=80) - selector = SelectFromCollection(ax, pts) - - def accept(event): - if event.key == "enter": - print("Selected points:") - print(selector.xys[selector.ind]) - selector.disconnect() - ax.set_title("") - fig.canvas.draw() - - fig.canvas.mpl_connect("key_press_event", accept) - ax.set_title("Press enter to accept selected points.") - - plt.show() diff --git a/_downloads/59d7610bfb0aa76984b08912f3776ac2/fig_axes_labels_simple.py b/_downloads/59d7610bfb0aa76984b08912f3776ac2/fig_axes_labels_simple.py deleted file mode 120000 index fe27caaa325..00000000000 --- a/_downloads/59d7610bfb0aa76984b08912f3776ac2/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/59d7610bfb0aa76984b08912f3776ac2/fig_axes_labels_simple.py \ No newline at end of file diff --git a/_downloads/59d92238b28838cac6ca3df2f89cbe1a/simple_colorbar.ipynb b/_downloads/59d92238b28838cac6ca3df2f89cbe1a/simple_colorbar.ipynb deleted file mode 100644 index 1f2e93aa5d7..00000000000 --- a/_downloads/59d92238b28838cac6ca3df2f89cbe1a/simple_colorbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import make_axes_locatable\nimport numpy as np\n\nax = plt.subplot(111)\nim = ax.imshow(np.arange(100).reshape((10, 10)))\n\n# create an axes on the right side of ax. The width of cax will be 5%\n# of ax and the padding between cax and ax will be fixed at 0.05 inch.\ndivider = make_axes_locatable(ax)\ncax = divider.append_axes(\"right\", size=\"5%\", pad=0.05)\n\nplt.colorbar(im, cax=cax)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/59df099b802f72e3d1bf8a535e683a67/whats_new_1_subplot3d.py b/_downloads/59df099b802f72e3d1bf8a535e683a67/whats_new_1_subplot3d.py deleted file mode 100644 index ee18562bdea..00000000000 --- a/_downloads/59df099b802f72e3d1bf8a535e683a67/whats_new_1_subplot3d.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -===================== -Whats New 1 Subplot3d -===================== - -Create two three-dimensional plots in the same figure. -""" -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib import cm -#from matplotlib.ticker import LinearLocator, FixedLocator, FormatStrFormatter -import matplotlib.pyplot as plt -import numpy as np - -fig = plt.figure() - -ax = fig.add_subplot(1, 2, 1, projection='3d') -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) -surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis, - linewidth=0, antialiased=False) -ax.set_zlim3d(-1.01, 1.01) - -#ax.w_zaxis.set_major_locator(LinearLocator(10)) -#ax.w_zaxis.set_major_formatter(FormatStrFormatter('%.03f')) - -fig.colorbar(surf, shrink=0.5, aspect=5) - -from mpl_toolkits.mplot3d.axes3d import get_test_data -ax = fig.add_subplot(1, 2, 2, projection='3d') -X, Y, Z = get_test_data(0.05) -ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -import mpl_toolkits -matplotlib.figure.Figure.add_subplot -mpl_toolkits.mplot3d.axes3d.Axes3D.plot_surface -mpl_toolkits.mplot3d.axes3d.Axes3D.plot_wireframe -mpl_toolkits.mplot3d.axes3d.Axes3D.set_zlim3d diff --git a/_downloads/59eaf8f6eeff7ec3b2c13b97cd4665e4/scatter_piecharts.ipynb b/_downloads/59eaf8f6eeff7ec3b2c13b97cd4665e4/scatter_piecharts.ipynb deleted file mode 120000 index f44940fd80d..00000000000 --- a/_downloads/59eaf8f6eeff7ec3b2c13b97cd4665e4/scatter_piecharts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/59eaf8f6eeff7ec3b2c13b97cd4665e4/scatter_piecharts.ipynb \ No newline at end of file diff --git a/_downloads/59f715c055930fa559376a39cc6dee44/custom_boxstyle01.py b/_downloads/59f715c055930fa559376a39cc6dee44/custom_boxstyle01.py deleted file mode 120000 index b8827316052..00000000000 --- a/_downloads/59f715c055930fa559376a39cc6dee44/custom_boxstyle01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/59f715c055930fa559376a39cc6dee44/custom_boxstyle01.py \ No newline at end of file diff --git a/_downloads/59f983569b63a89b0a2c5736bb79bc65/voxels_rgb.ipynb b/_downloads/59f983569b63a89b0a2c5736bb79bc65/voxels_rgb.ipynb deleted file mode 100644 index 5e86b95e1fa..00000000000 --- a/_downloads/59f983569b63a89b0a2c5736bb79bc65/voxels_rgb.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==========================================\n3D voxel / volumetric plot with rgb colors\n==========================================\n\nDemonstrates using `Axes3D.voxels` to visualize parts of a color space.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef midpoints(x):\n sl = ()\n for i in range(x.ndim):\n x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0\n sl += np.index_exp[:]\n return x\n\n# prepare some coordinates, and attach rgb values to each\nr, g, b = np.indices((17, 17, 17)) / 16.0\nrc = midpoints(r)\ngc = midpoints(g)\nbc = midpoints(b)\n\n# define a sphere about [0.5, 0.5, 0.5]\nsphere = (rc - 0.5)**2 + (gc - 0.5)**2 + (bc - 0.5)**2 < 0.5**2\n\n# combine the color components\ncolors = np.zeros(sphere.shape + (3,))\ncolors[..., 0] = rc\ncolors[..., 1] = gc\ncolors[..., 2] = bc\n\n# and plot everything\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(r, g, b, sphere,\n facecolors=colors,\n edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter\n linewidth=0.5)\nax.set(xlabel='r', ylabel='g', zlabel='b')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5a0136af878225abe0e08c764efeab11/wire3d_zero_stride.ipynb b/_downloads/5a0136af878225abe0e08c764efeab11/wire3d_zero_stride.ipynb deleted file mode 120000 index 5028c408f13..00000000000 --- a/_downloads/5a0136af878225abe0e08c764efeab11/wire3d_zero_stride.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5a0136af878225abe0e08c764efeab11/wire3d_zero_stride.ipynb \ No newline at end of file diff --git a/_downloads/5a085a4a5771b27b72088bf4784cdf25/errorbar_limits.ipynb b/_downloads/5a085a4a5771b27b72088bf4784cdf25/errorbar_limits.ipynb deleted file mode 120000 index 3c814dc299f..00000000000 --- a/_downloads/5a085a4a5771b27b72088bf4784cdf25/errorbar_limits.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5a085a4a5771b27b72088bf4784cdf25/errorbar_limits.ipynb \ No newline at end of file diff --git a/_downloads/5a0e846857c290030044898107abdbf8/annotate_simple_coord01.py b/_downloads/5a0e846857c290030044898107abdbf8/annotate_simple_coord01.py deleted file mode 120000 index 201fcef48e9..00000000000 --- a/_downloads/5a0e846857c290030044898107abdbf8/annotate_simple_coord01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5a0e846857c290030044898107abdbf8/annotate_simple_coord01.py \ No newline at end of file diff --git a/_downloads/5a0fb9490affece59ad19b23136bcc06/simple_axisline.py b/_downloads/5a0fb9490affece59ad19b23136bcc06/simple_axisline.py deleted file mode 120000 index f1915a5a448..00000000000 --- a/_downloads/5a0fb9490affece59ad19b23136bcc06/simple_axisline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5a0fb9490affece59ad19b23136bcc06/simple_axisline.py \ No newline at end of file diff --git a/_downloads/5a13e468e09fdd195ecd59472598e51b/interpolation_methods.py b/_downloads/5a13e468e09fdd195ecd59472598e51b/interpolation_methods.py deleted file mode 100644 index f21866ecd37..00000000000 --- a/_downloads/5a13e468e09fdd195ecd59472598e51b/interpolation_methods.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================================= -Interpolations for imshow/matshow -================================= - -This example displays the difference between interpolation methods for -:meth:`~.axes.Axes.imshow` and :meth:`~.axes.Axes.matshow`. - -If `interpolation` is None, it defaults to the ``image.interpolation`` -:doc:`rc parameter `. -If the interpolation is ``'none'``, then no interpolation is performed -for the Agg, ps and pdf backends. Other backends will default to ``'nearest'``. - -For the Agg, ps and pdf backends, ``interpolation = 'none'`` works well when a -big image is scaled down, while ``interpolation = 'nearest'`` works well when -a small image is scaled up. -""" - -import matplotlib.pyplot as plt -import numpy as np - -methods = [None, 'none', 'nearest', 'bilinear', 'bicubic', 'spline16', - 'spline36', 'hanning', 'hamming', 'hermite', 'kaiser', 'quadric', - 'catrom', 'gaussian', 'bessel', 'mitchell', 'sinc', 'lanczos'] - -# Fixing random state for reproducibility -np.random.seed(19680801) - -grid = np.random.rand(4, 4) - -fig, axs = plt.subplots(nrows=3, ncols=6, figsize=(9, 6), - subplot_kw={'xticks': [], 'yticks': []}) - -for ax, interp_method in zip(axs.flat, methods): - ax.imshow(grid, interpolation=interp_method, cmap='viridis') - ax.set_title(str(interp_method)) - -plt.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/5a15730ab15093cd35906ac9749bbab3/grayscale.ipynb b/_downloads/5a15730ab15093cd35906ac9749bbab3/grayscale.ipynb deleted file mode 120000 index aadd0059e8e..00000000000 --- a/_downloads/5a15730ab15093cd35906ac9749bbab3/grayscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5a15730ab15093cd35906ac9749bbab3/grayscale.ipynb \ No newline at end of file diff --git a/_downloads/5a18bc6af3976e4d2d9dc64d2ae8fa93/centered_ticklabels.py b/_downloads/5a18bc6af3976e4d2d9dc64d2ae8fa93/centered_ticklabels.py deleted file mode 120000 index a38a08b93f8..00000000000 --- a/_downloads/5a18bc6af3976e4d2d9dc64d2ae8fa93/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/5a18bc6af3976e4d2d9dc64d2ae8fa93/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/5a221180ba3a6d392c1da2c04c7507b5/agg_buffer_to_array.ipynb b/_downloads/5a221180ba3a6d392c1da2c04c7507b5/agg_buffer_to_array.ipynb deleted file mode 120000 index 15323e01fb0..00000000000 --- a/_downloads/5a221180ba3a6d392c1da2c04c7507b5/agg_buffer_to_array.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5a221180ba3a6d392c1da2c04c7507b5/agg_buffer_to_array.ipynb \ No newline at end of file diff --git a/_downloads/5a259b2bb38e7c783fd49340a7dc686a/eventplot_demo.ipynb b/_downloads/5a259b2bb38e7c783fd49340a7dc686a/eventplot_demo.ipynb deleted file mode 120000 index c0f1c4cdd54..00000000000 --- a/_downloads/5a259b2bb38e7c783fd49340a7dc686a/eventplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5a259b2bb38e7c783fd49340a7dc686a/eventplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/5a270341f920bff57735887ff56d1cee/fancybox_demo.py b/_downloads/5a270341f920bff57735887ff56d1cee/fancybox_demo.py deleted file mode 100644 index a4b434c1b1c..00000000000 --- a/_downloads/5a270341f920bff57735887ff56d1cee/fancybox_demo.py +++ /dev/null @@ -1,212 +0,0 @@ -""" -============= -Fancybox Demo -============= - -Plotting fancy boxes with Matplotlib. - -The following examples show how to plot boxes with different -visual properties. -""" -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms -import matplotlib.patches as mpatch -from matplotlib.patches import FancyBboxPatch - -############################################################################### -# First we'll show some sample boxes with fancybox. - -styles = mpatch.BoxStyle.get_styles() -spacing = 1.2 - -figheight = (spacing * len(styles) + .5) -fig = plt.figure(figsize=(4 / 1.5, figheight / 1.5)) -fontsize = 0.3 * 72 - -for i, stylename in enumerate(sorted(styles)): - fig.text(0.5, (spacing * (len(styles) - i) - 0.5) / figheight, stylename, - ha="center", - size=fontsize, - transform=fig.transFigure, - bbox=dict(boxstyle=stylename, fc="w", ec="k")) - -plt.show() - -############################################################################### -# Next we'll show off multiple fancy boxes at once. - -# Bbox object around which the fancy box will be drawn. -bb = mtransforms.Bbox([[0.3, 0.4], [0.7, 0.6]]) - - -def draw_bbox(ax, bb): - # boxstyle=square with pad=0, i.e. bbox itself. - p_bbox = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="square,pad=0.", - ec="k", fc="none", zorder=10., - ) - ax.add_patch(p_bbox) - - -def test1(ax): - - # a fancy box with round corners. pad=0.1 - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.1", - fc=(1., .8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - ax.text(0.1, 0.8, - r' boxstyle="round,pad=0.1"', - size=10, transform=ax.transAxes) - - # draws control points for the fancy box. - # l = p_fancy.get_path().vertices - # ax.plot(l[:,0], l[:,1], ".") - - # draw the original bbox in black - draw_bbox(ax, bb) - - -def test2(ax): - - # bbox=round has two optional argument. pad and rounding_size. - # They can be set during the initialization. - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.1", - fc=(1., .8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - # boxstyle and its argument can be later modified with - # set_boxstyle method. Note that the old attributes are simply - # forgotten even if the boxstyle name is same. - - p_fancy.set_boxstyle("round,pad=0.1, rounding_size=0.2") - # or - # p_fancy.set_boxstyle("round", pad=0.1, rounding_size=0.2) - - ax.text(0.1, 0.8, - ' boxstyle="round,pad=0.1\n rounding_size=0.2"', - size=10, transform=ax.transAxes) - - # draws control points for the fancy box. - # l = p_fancy.get_path().vertices - # ax.plot(l[:,0], l[:,1], ".") - - draw_bbox(ax, bb) - - -def test3(ax): - - # mutation_scale determine overall scale of the mutation, - # i.e. both pad and rounding_size is scaled according to this - # value. - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.1", - mutation_scale=2., - fc=(1., .8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - ax.text(0.1, 0.8, - ' boxstyle="round,pad=0.1"\n mutation_scale=2', - size=10, transform=ax.transAxes) - - # draws control points for the fancy box. - # l = p_fancy.get_path().vertices - # ax.plot(l[:,0], l[:,1], ".") - - draw_bbox(ax, bb) - - -def test4(ax): - - # When the aspect ratio of the axes is not 1, the fancy box may - # not be what you expected (green) - - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.2", - fc="none", - ec=(0., .5, 0.), zorder=4) - - ax.add_patch(p_fancy) - - # You can compensate this by setting the mutation_aspect (pink). - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.3", - mutation_aspect=.5, - fc=(1., 0.8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - ax.text(0.1, 0.8, - ' boxstyle="round,pad=0.3"\n mutation_aspect=.5', - size=10, transform=ax.transAxes) - - draw_bbox(ax, bb) - - -def test_all(): - plt.clf() - - ax = plt.subplot(2, 2, 1) - test1(ax) - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - ax.set_title("test1") - ax.set_aspect(1.) - - ax = plt.subplot(2, 2, 2) - ax.set_title("test2") - test2(ax) - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - ax.set_aspect(1.) - - ax = plt.subplot(2, 2, 3) - ax.set_title("test3") - test3(ax) - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - ax.set_aspect(1) - - ax = plt.subplot(2, 2, 4) - ax.set_title("test4") - test4(ax) - ax.set_xlim(-0.5, 1.5) - ax.set_ylim(0., 1.) - ax.set_aspect(2.) - - plt.show() - - -test_all() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.FancyBboxPatch -matplotlib.patches.BoxStyle -matplotlib.patches.BoxStyle.get_styles -matplotlib.transforms.Bbox diff --git a/_downloads/5a317229fcaf824928dfbc6daf8cb0a3/ginput_manual_clabel_sgskip.py b/_downloads/5a317229fcaf824928dfbc6daf8cb0a3/ginput_manual_clabel_sgskip.py deleted file mode 120000 index 35b10dc8416..00000000000 --- a/_downloads/5a317229fcaf824928dfbc6daf8cb0a3/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5a317229fcaf824928dfbc6daf8cb0a3/ginput_manual_clabel_sgskip.py \ No newline at end of file diff --git a/_downloads/5a47ae75a3691bb33c27fe9c78b997c3/colormap_normalizations_custom.ipynb b/_downloads/5a47ae75a3691bb33c27fe9c78b997c3/colormap_normalizations_custom.ipynb deleted file mode 120000 index 2e151827103..00000000000 --- a/_downloads/5a47ae75a3691bb33c27fe9c78b997c3/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5a47ae75a3691bb33c27fe9c78b997c3/colormap_normalizations_custom.ipynb \ No newline at end of file diff --git a/_downloads/5a48ca1008ec889cb849275558b036a9/quiver_simple_demo.py b/_downloads/5a48ca1008ec889cb849275558b036a9/quiver_simple_demo.py deleted file mode 120000 index b3b85ffc321..00000000000 --- a/_downloads/5a48ca1008ec889cb849275558b036a9/quiver_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5a48ca1008ec889cb849275558b036a9/quiver_simple_demo.py \ No newline at end of file diff --git a/_downloads/5a53966d7b072eb57e94eccadaa59abb/ggplot.ipynb b/_downloads/5a53966d7b072eb57e94eccadaa59abb/ggplot.ipynb deleted file mode 120000 index ab748518c75..00000000000 --- a/_downloads/5a53966d7b072eb57e94eccadaa59abb/ggplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5a53966d7b072eb57e94eccadaa59abb/ggplot.ipynb \ No newline at end of file diff --git a/_downloads/5a64fe91681bff753b0b6df7a464f66a/pyplot_formatstr.ipynb b/_downloads/5a64fe91681bff753b0b6df7a464f66a/pyplot_formatstr.ipynb deleted file mode 100644 index a60c0c8cfff..00000000000 --- a/_downloads/5a64fe91681bff753b0b6df7a464f66a/pyplot_formatstr.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n====================\nplot() format string\n====================\n\nUse a format string (here, 'ro') to set the color and markers of a\n`~matplotlib.axes.Axes.plot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5a66b7850ea60f7116e35f6ba7536a5a/spines.py b/_downloads/5a66b7850ea60f7116e35f6ba7536a5a/spines.py deleted file mode 100644 index 6c25e899c87..00000000000 --- a/_downloads/5a66b7850ea60f7116e35f6ba7536a5a/spines.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -====== -Spines -====== - -This demo compares: - - normal axes, with spines on all four sides; - - an axes with spines only on the left and bottom; - - an axes using custom bounds to limit the extent of the spine. -""" -import numpy as np -import matplotlib.pyplot as plt - - -x = np.linspace(0, 2 * np.pi, 100) -y = 2 * np.sin(x) - -fig, (ax0, ax1, ax2) = plt.subplots(nrows=3) - -ax0.plot(x, y) -ax0.set_title('normal spines') - -ax1.plot(x, y) -ax1.set_title('bottom-left spines') - -# Hide the right and top spines -ax1.spines['right'].set_visible(False) -ax1.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax1.yaxis.set_ticks_position('left') -ax1.xaxis.set_ticks_position('bottom') - -ax2.plot(x, y) - -# Only draw spine between the y-ticks -ax2.spines['left'].set_bounds(-1, 1) -# Hide the right and top spines -ax2.spines['right'].set_visible(False) -ax2.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax2.yaxis.set_ticks_position('left') -ax2.xaxis.set_ticks_position('bottom') - -# Tweak spacing between subplots to prevent labels from overlapping -plt.subplots_adjust(hspace=0.5) -plt.show() diff --git a/_downloads/5a6cddd8b5d9be400d1119b99ce0f540/tripcolor_demo.py b/_downloads/5a6cddd8b5d9be400d1119b99ce0f540/tripcolor_demo.py deleted file mode 100644 index 67f638ad436..00000000000 --- a/_downloads/5a6cddd8b5d9be400d1119b99ce0f540/tripcolor_demo.py +++ /dev/null @@ -1,142 +0,0 @@ -""" -============== -Tripcolor Demo -============== - -Pseudocolor plots of unstructured triangular grids. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -############################################################################### -# Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points. - -# First create the x and y coordinates of the points. -n_angles = 36 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() -z = (np.cos(radii) * np.cos(3 * angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -############################################################################### -# tripcolor plot. - -fig1, ax1 = plt.subplots() -ax1.set_aspect('equal') -tpc = ax1.tripcolor(triang, z, shading='flat') -fig1.colorbar(tpc) -ax1.set_title('tripcolor of Delaunay triangulation, flat shading') - -############################################################################### -# Illustrate Gouraud shading. - -fig2, ax2 = plt.subplots() -ax2.set_aspect('equal') -tpc = ax2.tripcolor(triang, z, shading='gouraud') -fig2.colorbar(tpc) -ax2.set_title('tripcolor of Delaunay triangulation, gouraud shading') - - -############################################################################### -# You can specify your own triangulation rather than perform a Delaunay -# triangulation of the points, where each triangle is given by the indices of -# the three points that make up the triangle, ordered in either a clockwise or -# anticlockwise manner. - -xy = np.asarray([ - [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890], - [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898], - [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919], - [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949], - [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959], - [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965], - [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980], - [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996], - [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021], - [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005], - [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987], - [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968], - [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926], - [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905], - [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886], - [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879], - [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872], - [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933], - [-0.077, 0.990], [-0.059, 0.993]]) -x, y = np.rad2deg(xy).T - -triangles = np.asarray([ - [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64], - [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63], - [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68], - [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7], - [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9], - [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12], - [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71], - [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71], - [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19], - [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24], - [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28], - [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45], - [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40], - [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40], - [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38], - [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]]) - -xmid = x[triangles].mean(axis=1) -ymid = y[triangles].mean(axis=1) -x0 = -5 -y0 = 52 -zfaces = np.exp(-0.01 * ((xmid - x0) * (xmid - x0) + - (ymid - y0) * (ymid - y0))) - -############################################################################### -# Rather than create a Triangulation object, can simply pass x, y and triangles -# arrays to tripcolor directly. It would be better to use a Triangulation -# object if the same triangulation was to be used more than once to save -# duplicated calculations. -# Can specify one color value per face rather than one per point by using the -# facecolors kwarg. - -fig3, ax3 = plt.subplots() -ax3.set_aspect('equal') -tpc = ax3.tripcolor(x, y, triangles, facecolors=zfaces, edgecolors='k') -fig3.colorbar(tpc) -ax3.set_title('tripcolor of user-specified triangulation') -ax3.set_xlabel('Longitude (degrees)') -ax3.set_ylabel('Latitude (degrees)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tripcolor -matplotlib.pyplot.tripcolor -matplotlib.tri -matplotlib.tri.Triangulation diff --git a/_downloads/5a6ce8523b4ac84f35f0ce9abde2fea9/mathtext_asarray.ipynb b/_downloads/5a6ce8523b4ac84f35f0ce9abde2fea9/mathtext_asarray.ipynb deleted file mode 100644 index 2dc4ef8b768..00000000000 --- a/_downloads/5a6ce8523b4ac84f35f0ce9abde2fea9/mathtext_asarray.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# A mathtext image as numpy array\n\n\nMake images from LaTeX strings.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.mathtext as mathtext\nimport matplotlib.pyplot as plt\nimport matplotlib\nmatplotlib.rc('image', origin='upper')\n\nparser = mathtext.MathTextParser(\"Bitmap\")\nparser.to_png('test2.png',\n r'$\\left[\\left\\lfloor\\frac{5}{\\frac{\\left(3\\right)}{4}} '\n r'y\\right)\\right]$', color='green', fontsize=14, dpi=100)\n\nrgba1, depth1 = parser.to_rgba(\n r'IQ: $\\sigma_i=15$', color='blue', fontsize=20, dpi=200)\nrgba2, depth2 = parser.to_rgba(\n r'some other string', color='red', fontsize=20, dpi=200)\n\nfig = plt.figure()\nfig.figimage(rgba1, 100, 100)\nfig.figimage(rgba2, 100, 300)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.mathtext\nmatplotlib.mathtext.MathTextParser\nmatplotlib.mathtext.MathTextParser.to_png\nmatplotlib.mathtext.MathTextParser.to_rgba\nmatplotlib.figure.Figure.figimage" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5a7840ad7cc2fbcb4b8322de548a2f24/log_demo.ipynb b/_downloads/5a7840ad7cc2fbcb4b8322de548a2f24/log_demo.ipynb deleted file mode 120000 index 1c8aa72dae3..00000000000 --- a/_downloads/5a7840ad7cc2fbcb4b8322de548a2f24/log_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5a7840ad7cc2fbcb4b8322de548a2f24/log_demo.ipynb \ No newline at end of file diff --git a/_downloads/5a7ac1888d74813a037ee8a8b5d239f4/figure_axes_enter_leave.ipynb b/_downloads/5a7ac1888d74813a037ee8a8b5d239f4/figure_axes_enter_leave.ipynb deleted file mode 100644 index 0dcf7738df4..00000000000 --- a/_downloads/5a7ac1888d74813a037ee8a8b5d239f4/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Figure Axes Enter Leave\n\n\nIllustrate the figure and axes enter and leave events by changing the\nframe colors on enter and leave\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef enter_axes(event):\n print('enter_axes', event.inaxes)\n event.inaxes.patch.set_facecolor('yellow')\n event.canvas.draw()\n\n\ndef leave_axes(event):\n print('leave_axes', event.inaxes)\n event.inaxes.patch.set_facecolor('white')\n event.canvas.draw()\n\n\ndef enter_figure(event):\n print('enter_figure', event.canvas.figure)\n event.canvas.figure.patch.set_facecolor('red')\n event.canvas.draw()\n\n\ndef leave_figure(event):\n print('leave_figure', event.canvas.figure)\n event.canvas.figure.patch.set_facecolor('grey')\n event.canvas.draw()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, (ax, ax2) = plt.subplots(2, 1)\nfig1.suptitle('mouse hover over figure or axes to trigger events')\n\nfig1.canvas.mpl_connect('figure_enter_event', enter_figure)\nfig1.canvas.mpl_connect('figure_leave_event', leave_figure)\nfig1.canvas.mpl_connect('axes_enter_event', enter_axes)\nfig1.canvas.mpl_connect('axes_leave_event', leave_axes)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, (ax, ax2) = plt.subplots(2, 1)\nfig2.suptitle('mouse hover over figure or axes to trigger events')\n\nfig2.canvas.mpl_connect('figure_enter_event', enter_figure)\nfig2.canvas.mpl_connect('figure_leave_event', leave_figure)\nfig2.canvas.mpl_connect('axes_enter_event', enter_axes)\nfig2.canvas.mpl_connect('axes_leave_event', leave_axes)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5a7d3d5a4ee536483a9cb13a861b2f59/broken_barh.py b/_downloads/5a7d3d5a4ee536483a9cb13a861b2f59/broken_barh.py deleted file mode 120000 index 3e44bff176d..00000000000 --- a/_downloads/5a7d3d5a4ee536483a9cb13a861b2f59/broken_barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5a7d3d5a4ee536483a9cb13a861b2f59/broken_barh.py \ No newline at end of file diff --git a/_downloads/5a7e5a3d678b37802dcff25922c29229/ticklabels_rotation.ipynb b/_downloads/5a7e5a3d678b37802dcff25922c29229/ticklabels_rotation.ipynb deleted file mode 120000 index 3295a5ac8a3..00000000000 --- a/_downloads/5a7e5a3d678b37802dcff25922c29229/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5a7e5a3d678b37802dcff25922c29229/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/5a7e97e9eeb25552d15457e9f4c53d1e/legend.ipynb b/_downloads/5a7e97e9eeb25552d15457e9f4c53d1e/legend.ipynb deleted file mode 100644 index b7957707036..00000000000 --- a/_downloads/5a7e97e9eeb25552d15457e9f4c53d1e/legend.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend using pre-defined labels\n\n\nDefining legend labels with plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Make some fake data.\na = b = np.arange(0, 3, .02)\nc = np.exp(a)\nd = c[::-1]\n\n# Create plots with pre-defined labels.\nfig, ax = plt.subplots()\nax.plot(a, c, 'k--', label='Model length')\nax.plot(a, d, 'k:', label='Data length')\nax.plot(a, c + d, 'k', label='Total message length')\n\nlegend = ax.legend(loc='upper center', shadow=True, fontsize='x-large')\n\n# Put a nicer background color on the legend.\nlegend.get_frame().set_facecolor('C0')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5a82af0ec8da1cca05205118c991546e/voxels_torus.ipynb b/_downloads/5a82af0ec8da1cca05205118c991546e/voxels_torus.ipynb deleted file mode 100644 index f468c508c2a..00000000000 --- a/_downloads/5a82af0ec8da1cca05205118c991546e/voxels_torus.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=======================================================\n3D voxel / volumetric plot with cylindrical coordinates\n=======================================================\n\nDemonstrates using the ``x, y, z`` arguments of ``ax.voxels``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.colors\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef midpoints(x):\n sl = ()\n for i in range(x.ndim):\n x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0\n sl += np.index_exp[:]\n return x\n\n# prepare some coordinates, and attach rgb values to each\nr, theta, z = np.mgrid[0:1:11j, 0:np.pi*2:25j, -0.5:0.5:11j]\nx = r*np.cos(theta)\ny = r*np.sin(theta)\n\nrc, thetac, zc = midpoints(r), midpoints(theta), midpoints(z)\n\n# define a wobbly torus about [0.7, *, 0]\nsphere = (rc - 0.7)**2 + (zc + 0.2*np.cos(thetac*2))**2 < 0.2**2\n\n# combine the color components\nhsv = np.zeros(sphere.shape + (3,))\nhsv[..., 0] = thetac / (np.pi*2)\nhsv[..., 1] = rc\nhsv[..., 2] = zc + 0.5\ncolors = matplotlib.colors.hsv_to_rgb(hsv)\n\n# and plot everything\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(x, y, z, sphere,\n facecolors=colors,\n edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter\n linewidth=0.5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5a89f9cc49e663155be9290b4b7f2894/topographic_hillshading.py b/_downloads/5a89f9cc49e663155be9290b4b7f2894/topographic_hillshading.py deleted file mode 120000 index 57fecf6f337..00000000000 --- a/_downloads/5a89f9cc49e663155be9290b4b7f2894/topographic_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5a89f9cc49e663155be9290b4b7f2894/topographic_hillshading.py \ No newline at end of file diff --git a/_downloads/5a93a9f21071df6df981e3438de8df1e/fig_x.ipynb b/_downloads/5a93a9f21071df6df981e3438de8df1e/fig_x.ipynb deleted file mode 120000 index ab43692e443..00000000000 --- a/_downloads/5a93a9f21071df6df981e3438de8df1e/fig_x.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5a93a9f21071df6df981e3438de8df1e/fig_x.ipynb \ No newline at end of file diff --git a/_downloads/5a9db79052a6932120d23c48a1e14134/pick_event_demo2.ipynb b/_downloads/5a9db79052a6932120d23c48a1e14134/pick_event_demo2.ipynb deleted file mode 120000 index 71a8a0b5e66..00000000000 --- a/_downloads/5a9db79052a6932120d23c48a1e14134/pick_event_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5a9db79052a6932120d23c48a1e14134/pick_event_demo2.ipynb \ No newline at end of file diff --git a/_downloads/5a9eb1b1e61e59d57247d71b195ed32e/errorbar_subsample.ipynb b/_downloads/5a9eb1b1e61e59d57247d71b195ed32e/errorbar_subsample.ipynb deleted file mode 100644 index bc726d6f446..00000000000 --- a/_downloads/5a9eb1b1e61e59d57247d71b195ed32e/errorbar_subsample.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Errorbar Subsample\n\n\nDemo for the errorevery keyword to show data full accuracy data plots with\nfew errorbars.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.arange(0.1, 4, 0.1)\ny = np.exp(-x)\n\n# example variable error bar values\nyerr = 0.1 + 0.1 * np.sqrt(x)\n\n\n# Now switch to a more OO interface to exercise more features.\nfig, axs = plt.subplots(nrows=1, ncols=2, sharex=True)\nax = axs[0]\nax.errorbar(x, y, yerr=yerr)\nax.set_title('all errorbars')\n\nax = axs[1]\nax.errorbar(x, y, yerr=yerr, errorevery=5)\nax.set_title('only every 5th errorbar')\n\n\nfig.suptitle('Errorbar subsampling for better appearance')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5aaffe7bd707d5f868b9af3211e74083/canvasagg.ipynb b/_downloads/5aaffe7bd707d5f868b9af3211e74083/canvasagg.ipynb deleted file mode 120000 index a2af562621a..00000000000 --- a/_downloads/5aaffe7bd707d5f868b9af3211e74083/canvasagg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5aaffe7bd707d5f868b9af3211e74083/canvasagg.ipynb \ No newline at end of file diff --git a/_downloads/5ab7ae3c95cd3aab893cd99a09a3d8cd/fonts_demo.py b/_downloads/5ab7ae3c95cd3aab893cd99a09a3d8cd/fonts_demo.py deleted file mode 120000 index 1ee607e9e2c..00000000000 --- a/_downloads/5ab7ae3c95cd3aab893cd99a09a3d8cd/fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5ab7ae3c95cd3aab893cd99a09a3d8cd/fonts_demo.py \ No newline at end of file diff --git a/_downloads/5ac4f730738fd2448ee6ef9a56ec0aea/contourf3d.ipynb b/_downloads/5ac4f730738fd2448ee6ef9a56ec0aea/contourf3d.ipynb deleted file mode 100644 index 3e1fe5a2eb4..00000000000 --- a/_downloads/5ac4f730738fd2448ee6ef9a56ec0aea/contourf3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Filled contours\n\n\ncontourf differs from contour in that it creates filled contours, ie.\na discrete number of colours are used to shade the domain.\n\nThis is like a contourf plot in 2D except that the shaded region corresponding\nto the level c is graphed on the plane z=c.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\ncset = ax.contourf(X, Y, Z, cmap=cm.coolwarm)\n\nax.clabel(cset, fontsize=9, inline=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5ad307c71ead89cd211e6b748826d8a0/toolmanager_sgskip.ipynb b/_downloads/5ad307c71ead89cd211e6b748826d8a0/toolmanager_sgskip.ipynb deleted file mode 100644 index ed0cc7d2818..00000000000 --- a/_downloads/5ad307c71ead89cd211e6b748826d8a0/toolmanager_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tool Manager\n\n\nThis example demonstrates how to:\n\n* Modify the Toolbar\n* Create tools\n* Add tools\n* Remove tools\n\nUsing `matplotlib.backend_managers.ToolManager`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.rcParams['toolbar'] = 'toolmanager'\nfrom matplotlib.backend_tools import ToolBase, ToolToggleBase\n\n\nclass ListTools(ToolBase):\n '''List all the tools controlled by the `ToolManager`'''\n # keyboard shortcut\n default_keymap = 'm'\n description = 'List Tools'\n\n def trigger(self, *args, **kwargs):\n print('_' * 80)\n print(\"{0:12} {1:45} {2}\".format(\n 'Name (id)', 'Tool description', 'Keymap'))\n print('-' * 80)\n tools = self.toolmanager.tools\n for name in sorted(tools):\n if not tools[name].description:\n continue\n keys = ', '.join(sorted(self.toolmanager.get_tool_keymap(name)))\n print(\"{0:12} {1:45} {2}\".format(\n name, tools[name].description, keys))\n print('_' * 80)\n print(\"Active Toggle tools\")\n print(\"{0:12} {1:45}\".format(\"Group\", \"Active\"))\n print('-' * 80)\n for group, active in self.toolmanager.active_toggle.items():\n print(\"{0:12} {1:45}\".format(str(group), str(active)))\n\n\nclass GroupHideTool(ToolToggleBase):\n '''Show lines with a given gid'''\n default_keymap = 'G'\n description = 'Show by gid'\n default_toggled = True\n\n def __init__(self, *args, gid, **kwargs):\n self.gid = gid\n super().__init__(*args, **kwargs)\n\n def enable(self, *args):\n self.set_lines_visibility(True)\n\n def disable(self, *args):\n self.set_lines_visibility(False)\n\n def set_lines_visibility(self, state):\n for ax in self.figure.get_axes():\n for line in ax.get_lines():\n if line.get_gid() == self.gid:\n line.set_visible(state)\n self.figure.canvas.draw()\n\n\nfig = plt.figure()\nplt.plot([1, 2, 3], gid='mygroup')\nplt.plot([2, 3, 4], gid='unknown')\nplt.plot([3, 2, 1], gid='mygroup')\n\n# Add the custom tools that we created\nfig.canvas.manager.toolmanager.add_tool('List', ListTools)\nfig.canvas.manager.toolmanager.add_tool('Show', GroupHideTool, gid='mygroup')\n\n\n# Add an existing tool to new group `foo`.\n# It can be added as many times as we want\nfig.canvas.manager.toolbar.add_tool('zoom', 'foo')\n\n# Remove the forward button\nfig.canvas.manager.toolmanager.remove_tool('forward')\n\n# To add a custom tool to the toolbar at specific location inside\n# the navigation group\nfig.canvas.manager.toolbar.add_tool('Show', 'navigation', 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5ad40b2c5e28530ecf5e98b0288bf23e/color_cycler.ipynb b/_downloads/5ad40b2c5e28530ecf5e98b0288bf23e/color_cycler.ipynb deleted file mode 100644 index ced6998400e..00000000000 --- a/_downloads/5ad40b2c5e28530ecf5e98b0288bf23e/color_cycler.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Styling with cycler\n\n\nDemo of custom property-cycle settings to control colors and other style\nproperties for multi-line plots.\n\nThis example demonstrates two different APIs:\n\n1. Setting the default :doc:`rc parameter`\n specifying the property cycle. This affects all subsequent axes (but not\n axes already created).\n2. Setting the property cycle for a single pair of axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from cycler import cycler\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\nx = np.linspace(0, 2 * np.pi)\noffsets = np.linspace(0, 2*np.pi, 4, endpoint=False)\n# Create array with shifted-sine curve along each column\nyy = np.transpose([np.sin(x + phi) for phi in offsets])\n\n# 1. Setting prop cycle on default rc parameter\nplt.rc('lines', linewidth=4)\nplt.rc('axes', prop_cycle=(cycler(color=['r', 'g', 'b', 'y']) +\n cycler(linestyle=['-', '--', ':', '-.'])))\nfig, (ax0, ax1) = plt.subplots(nrows=2, constrained_layout=True)\nax0.plot(yy)\nax0.set_title('Set default color cycle to rgby')\n\n# 2. Define prop cycle for single set of axes\n# For the most general use-case, you can provide a cycler to\n# `.set_prop_cycle`.\n# Here, we use the convenient shortcut that we can alternatively pass\n# one or more properties as keyword arguments. This creates and sets\n# a cycler iterating simultaneously over all properties.\nax1.set_prop_cycle(color=['c', 'm', 'y', 'k'], lw=[1, 2, 3, 4])\nax1.plot(yy)\nax1.set_title('Set axes color cycle to cmyk')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.set_prop_cycle" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5ad4cd4affa59bdbc02196aedf4b9e4b/custom_figure_class.ipynb b/_downloads/5ad4cd4affa59bdbc02196aedf4b9e4b/custom_figure_class.ipynb deleted file mode 120000 index 90e90a7bdcf..00000000000 --- a/_downloads/5ad4cd4affa59bdbc02196aedf4b9e4b/custom_figure_class.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5ad4cd4affa59bdbc02196aedf4b9e4b/custom_figure_class.ipynb \ No newline at end of file diff --git a/_downloads/5ad735ef6d840eb365d4a67845ce763d/fivethirtyeight.ipynb b/_downloads/5ad735ef6d840eb365d4a67845ce763d/fivethirtyeight.ipynb deleted file mode 120000 index 4134e90f6d9..00000000000 --- a/_downloads/5ad735ef6d840eb365d4a67845ce763d/fivethirtyeight.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5ad735ef6d840eb365d4a67845ce763d/fivethirtyeight.ipynb \ No newline at end of file diff --git a/_downloads/5aea78076d1b3ba51b5a13044817cd04/gridspec.py b/_downloads/5aea78076d1b3ba51b5a13044817cd04/gridspec.py deleted file mode 120000 index ba8d392794b..00000000000 --- a/_downloads/5aea78076d1b3ba51b5a13044817cd04/gridspec.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5aea78076d1b3ba51b5a13044817cd04/gridspec.py \ No newline at end of file diff --git a/_downloads/5aea8b2daf1910020f3fc16be7f4ee23/embedding_in_wx2_sgskip.py b/_downloads/5aea8b2daf1910020f3fc16be7f4ee23/embedding_in_wx2_sgskip.py deleted file mode 100644 index 64c8e701dbb..00000000000 --- a/_downloads/5aea8b2daf1910020f3fc16be7f4ee23/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -================== -Embedding in wx #2 -================== - -An example of how to use wxagg in an application with the new -toolbar - comment out the add_toolbar line for no toolbar -""" - -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wx import NavigationToolbar2Wx as NavigationToolbar -from matplotlib.figure import Figure - -import numpy as np - -import wx -import wx.lib.mixins.inspection as WIT - - -class CanvasFrame(wx.Frame): - def __init__(self): - wx.Frame.__init__(self, None, -1, - 'CanvasFrame', size=(550, 350)) - - self.figure = Figure() - self.axes = self.figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2 * np.pi * t) - - self.axes.plot(t, s) - self.canvas = FigureCanvas(self, -1, self.figure) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.EXPAND) - self.SetSizer(self.sizer) - self.Fit() - - self.add_toolbar() # comment this out for no toolbar - - def add_toolbar(self): - self.toolbar = NavigationToolbar(self.canvas) - self.toolbar.Realize() - # By adding toolbar in sizer, we are able to put it at the bottom - # of the frame - so appearance is closer to GTK version. - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - # update the axes menu on the toolbar - self.toolbar.update() - - -# alternatively you could use -#class App(wx.App): -class App(WIT.InspectableApp): - def OnInit(self): - 'Create the main window and insert the custom frame' - self.Init() - frame = CanvasFrame() - frame.Show(True) - - return True - -app = App(0) -app.MainLoop() diff --git a/_downloads/5af196155c05148b1de35880898c8f8a/annotations.ipynb b/_downloads/5af196155c05148b1de35880898c8f8a/annotations.ipynb deleted file mode 120000 index 35576c7c7c5..00000000000 --- a/_downloads/5af196155c05148b1de35880898c8f8a/annotations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5af196155c05148b1de35880898c8f8a/annotations.ipynb \ No newline at end of file diff --git a/_downloads/5af6a951e0e5f9ea722782c9e807b59a/integral.py b/_downloads/5af6a951e0e5f9ea722782c9e807b59a/integral.py deleted file mode 100644 index f5ffbe05edf..00000000000 --- a/_downloads/5af6a951e0e5f9ea722782c9e807b59a/integral.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================================== -Integral as the area under a curve -================================== - -Although this is a simple example, it demonstrates some important tweaks: - - * A simple line plot with custom color and line width. - * A shaded region created using a Polygon patch. - * A text label with mathtext rendering. - * figtext calls to label the x- and y-axes. - * Use of axis spines to hide the top and right spines. - * Custom tick placement and labels. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Polygon - - -def func(x): - return (x - 3) * (x - 5) * (x - 7) + 85 - - -a, b = 2, 9 # integral limits -x = np.linspace(0, 10) -y = func(x) - -fig, ax = plt.subplots() -ax.plot(x, y, 'r', linewidth=2) -ax.set_ylim(bottom=0) - -# Make the shaded region -ix = np.linspace(a, b) -iy = func(ix) -verts = [(a, 0), *zip(ix, iy), (b, 0)] -poly = Polygon(verts, facecolor='0.9', edgecolor='0.5') -ax.add_patch(poly) - -ax.text(0.5 * (a + b), 30, r"$\int_a^b f(x)\mathrm{d}x$", - horizontalalignment='center', fontsize=20) - -fig.text(0.9, 0.05, '$x$') -fig.text(0.1, 0.9, '$y$') - -ax.spines['right'].set_visible(False) -ax.spines['top'].set_visible(False) -ax.xaxis.set_ticks_position('bottom') - -ax.set_xticks((a, b)) -ax.set_xticklabels(('$a$', '$b$')) -ax.set_yticks([]) - -plt.show() diff --git a/_downloads/5afa8422a0b67c674eb991ff14969d44/multiple_histograms_side_by_side.py b/_downloads/5afa8422a0b67c674eb991ff14969d44/multiple_histograms_side_by_side.py deleted file mode 120000 index 208a89683ef..00000000000 --- a/_downloads/5afa8422a0b67c674eb991ff14969d44/multiple_histograms_side_by_side.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5afa8422a0b67c674eb991ff14969d44/multiple_histograms_side_by_side.py \ No newline at end of file diff --git a/_downloads/5afb94bac3d553de43e8135e53ba2ace/demo_axes_hbox_divider.py b/_downloads/5afb94bac3d553de43e8135e53ba2ace/demo_axes_hbox_divider.py deleted file mode 120000 index 0317eb3ad63..00000000000 --- a/_downloads/5afb94bac3d553de43e8135e53ba2ace/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5afb94bac3d553de43e8135e53ba2ace/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/_downloads/5aff95d8f3e051157f295478ce2f2f72/spines_dropped.py b/_downloads/5aff95d8f3e051157f295478ce2f2f72/spines_dropped.py deleted file mode 120000 index a5efecc3c73..00000000000 --- a/_downloads/5aff95d8f3e051157f295478ce2f2f72/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5aff95d8f3e051157f295478ce2f2f72/spines_dropped.py \ No newline at end of file diff --git a/_downloads/5b023f7fea1b0a1fc6abfea4090951a1/bars3d.py b/_downloads/5b023f7fea1b0a1fc6abfea4090951a1/bars3d.py deleted file mode 120000 index 9a88bc4138c..00000000000 --- a/_downloads/5b023f7fea1b0a1fc6abfea4090951a1/bars3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b023f7fea1b0a1fc6abfea4090951a1/bars3d.py \ No newline at end of file diff --git a/_downloads/5b0d39d09da1add304573a404cbaa7d1/share_axis_lims_views.ipynb b/_downloads/5b0d39d09da1add304573a404cbaa7d1/share_axis_lims_views.ipynb deleted file mode 120000 index bbc48c81d54..00000000000 --- a/_downloads/5b0d39d09da1add304573a404cbaa7d1/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b0d39d09da1add304573a404cbaa7d1/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/5b1ddabb8222e3969d6a4efa6c549557/pyplot_text.ipynb b/_downloads/5b1ddabb8222e3969d6a4efa6c549557/pyplot_text.ipynb deleted file mode 100644 index 45ed0163a9f..00000000000 --- a/_downloads/5b1ddabb8222e3969d6a4efa6c549557/pyplot_text.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Text\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nmu, sigma = 100, 15\nx = mu + sigma * np.random.randn(10000)\n\n# the histogram of the data\nn, bins, patches = plt.hist(x, 50, density=True, facecolor='g', alpha=0.75)\n\n\nplt.xlabel('Smarts')\nplt.ylabel('Probability')\nplt.title('Histogram of IQ')\nplt.text(60, .025, r'$\\mu=100,\\ \\sigma=15$')\nplt.xlim(40, 160)\nplt.ylim(0, 0.03)\nplt.grid(True)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.hist\nmatplotlib.pyplot.xlabel\nmatplotlib.pyplot.ylabel\nmatplotlib.pyplot.text\nmatplotlib.pyplot.grid\nmatplotlib.pyplot.show" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5b2548c8549bd695e969cc65e29bd3c5/nested_pie.ipynb b/_downloads/5b2548c8549bd695e969cc65e29bd3c5/nested_pie.ipynb deleted file mode 120000 index 9982aae56cf..00000000000 --- a/_downloads/5b2548c8549bd695e969cc65e29bd3c5/nested_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b2548c8549bd695e969cc65e29bd3c5/nested_pie.ipynb \ No newline at end of file diff --git a/_downloads/5b2b339ceb70cb94f3c5fc4e7d486a64/titles_demo.ipynb b/_downloads/5b2b339ceb70cb94f3c5fc4e7d486a64/titles_demo.ipynb deleted file mode 120000 index 7cce5305b40..00000000000 --- a/_downloads/5b2b339ceb70cb94f3c5fc4e7d486a64/titles_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b2b339ceb70cb94f3c5fc4e7d486a64/titles_demo.ipynb \ No newline at end of file diff --git a/_downloads/5b2d77ec6109e3caf07e2f1f232d5bb7/anchored_box03.py b/_downloads/5b2d77ec6109e3caf07e2f1f232d5bb7/anchored_box03.py deleted file mode 120000 index 6ba0b60ba76..00000000000 --- a/_downloads/5b2d77ec6109e3caf07e2f1f232d5bb7/anchored_box03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/5b2d77ec6109e3caf07e2f1f232d5bb7/anchored_box03.py \ No newline at end of file diff --git a/_downloads/5b3124f09b7e3e5b644a2408570d7f9b/hatch_demo.py b/_downloads/5b3124f09b7e3e5b644a2408570d7f9b/hatch_demo.py deleted file mode 120000 index b06d6cc0467..00000000000 --- a/_downloads/5b3124f09b7e3e5b644a2408570d7f9b/hatch_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b3124f09b7e3e5b644a2408570d7f9b/hatch_demo.py \ No newline at end of file diff --git a/_downloads/5b330f7bd52365e1b5543c1722a96152/zoom_window.ipynb b/_downloads/5b330f7bd52365e1b5543c1722a96152/zoom_window.ipynb deleted file mode 120000 index 74da84bd355..00000000000 --- a/_downloads/5b330f7bd52365e1b5543c1722a96152/zoom_window.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5b330f7bd52365e1b5543c1722a96152/zoom_window.ipynb \ No newline at end of file diff --git a/_downloads/5b36836f24ceca3d7456c4f93768bd6d/share_axis_lims_views.ipynb b/_downloads/5b36836f24ceca3d7456c4f93768bd6d/share_axis_lims_views.ipynb deleted file mode 120000 index d3989d7e685..00000000000 --- a/_downloads/5b36836f24ceca3d7456c4f93768bd6d/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/5b36836f24ceca3d7456c4f93768bd6d/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/5b3cac4c1bcfa48f170057563468f5ef/demo_ticklabel_direction.ipynb b/_downloads/5b3cac4c1bcfa48f170057563468f5ef/demo_ticklabel_direction.ipynb deleted file mode 120000 index 6302b8b61c7..00000000000 --- a/_downloads/5b3cac4c1bcfa48f170057563468f5ef/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5b3cac4c1bcfa48f170057563468f5ef/demo_ticklabel_direction.ipynb \ No newline at end of file diff --git a/_downloads/5b473442b29d821e91d95fd780d9c76e/annotation_basic.ipynb b/_downloads/5b473442b29d821e91d95fd780d9c76e/annotation_basic.ipynb deleted file mode 120000 index 133e38c2e74..00000000000 --- a/_downloads/5b473442b29d821e91d95fd780d9c76e/annotation_basic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5b473442b29d821e91d95fd780d9c76e/annotation_basic.ipynb \ No newline at end of file diff --git a/_downloads/5b483999ed9778afafd66250dc48ab3b/colormapnorms.ipynb b/_downloads/5b483999ed9778afafd66250dc48ab3b/colormapnorms.ipynb deleted file mode 120000 index 20965e15e01..00000000000 --- a/_downloads/5b483999ed9778afafd66250dc48ab3b/colormapnorms.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5b483999ed9778afafd66250dc48ab3b/colormapnorms.ipynb \ No newline at end of file diff --git a/_downloads/5b4d119ef31832fc86237788686920e9/stem_plot.py b/_downloads/5b4d119ef31832fc86237788686920e9/stem_plot.py deleted file mode 120000 index e2be50ecb67..00000000000 --- a/_downloads/5b4d119ef31832fc86237788686920e9/stem_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5b4d119ef31832fc86237788686920e9/stem_plot.py \ No newline at end of file diff --git a/_downloads/5b5432ec8b604e07aeafcd9d72eea568/titles_demo.ipynb b/_downloads/5b5432ec8b604e07aeafcd9d72eea568/titles_demo.ipynb deleted file mode 120000 index 119d08c7753..00000000000 --- a/_downloads/5b5432ec8b604e07aeafcd9d72eea568/titles_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5b5432ec8b604e07aeafcd9d72eea568/titles_demo.ipynb \ No newline at end of file diff --git a/_downloads/5b57b1ddbd5b89c7ff2161db87888e01/errorbars_and_boxes.py b/_downloads/5b57b1ddbd5b89c7ff2161db87888e01/errorbars_and_boxes.py deleted file mode 120000 index 1644237de29..00000000000 --- a/_downloads/5b57b1ddbd5b89c7ff2161db87888e01/errorbars_and_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5b57b1ddbd5b89c7ff2161db87888e01/errorbars_and_boxes.py \ No newline at end of file diff --git a/_downloads/5b5827b90a3cc158bbfc304cd62b0ea2/multiple_figs_demo.ipynb b/_downloads/5b5827b90a3cc158bbfc304cd62b0ea2/multiple_figs_demo.ipynb deleted file mode 100644 index 7b85c00832d..00000000000 --- a/_downloads/5b5827b90a3cc158bbfc304cd62b0ea2/multiple_figs_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiple Figs Demo\n\n\nWorking with multiple figure windows and subplots\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 2.0, 0.01)\ns1 = np.sin(2*np.pi*t)\ns2 = np.sin(4*np.pi*t)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create figure 1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure(1)\nplt.subplot(211)\nplt.plot(t, s1)\nplt.subplot(212)\nplt.plot(t, 2*s1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create figure 2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure(2)\nplt.plot(t, s2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now switch back to figure 1 and make some changes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure(1)\nplt.subplot(211)\nplt.plot(t, s2, 's')\nax = plt.gca()\nax.set_xticklabels([])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5b58b16310816672414149603a29216c/errorbar_limits.py b/_downloads/5b58b16310816672414149603a29216c/errorbar_limits.py deleted file mode 120000 index d7fe035a357..00000000000 --- a/_downloads/5b58b16310816672414149603a29216c/errorbar_limits.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5b58b16310816672414149603a29216c/errorbar_limits.py \ No newline at end of file diff --git a/_downloads/5b5d52ac8b43604288d79ae75c5a8dc5/demo_text_rotation_mode.ipynb b/_downloads/5b5d52ac8b43604288d79ae75c5a8dc5/demo_text_rotation_mode.ipynb deleted file mode 120000 index 0aca9411ffc..00000000000 --- a/_downloads/5b5d52ac8b43604288d79ae75c5a8dc5/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b5d52ac8b43604288d79ae75c5a8dc5/demo_text_rotation_mode.ipynb \ No newline at end of file diff --git a/_downloads/5b657709cae337c71d280a7101d7894c/colormaps.py b/_downloads/5b657709cae337c71d280a7101d7894c/colormaps.py deleted file mode 120000 index 62c54978ec7..00000000000 --- a/_downloads/5b657709cae337c71d280a7101d7894c/colormaps.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5b657709cae337c71d280a7101d7894c/colormaps.py \ No newline at end of file diff --git a/_downloads/5b6d55244ed661b014db18d718efd603/scatter_masked.ipynb b/_downloads/5b6d55244ed661b014db18d718efd603/scatter_masked.ipynb deleted file mode 120000 index 0c9f460840a..00000000000 --- a/_downloads/5b6d55244ed661b014db18d718efd603/scatter_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5b6d55244ed661b014db18d718efd603/scatter_masked.ipynb \ No newline at end of file diff --git a/_downloads/5b7355715ba8e205fe838157ffdc1631/demo_axis_direction.ipynb b/_downloads/5b7355715ba8e205fe838157ffdc1631/demo_axis_direction.ipynb deleted file mode 120000 index 55c309229b1..00000000000 --- a/_downloads/5b7355715ba8e205fe838157ffdc1631/demo_axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5b7355715ba8e205fe838157ffdc1631/demo_axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/5b737fec202946bb7115a92148275b56/zorder_demo.py b/_downloads/5b737fec202946bb7115a92148275b56/zorder_demo.py deleted file mode 120000 index 6b0a31149c7..00000000000 --- a/_downloads/5b737fec202946bb7115a92148275b56/zorder_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5b737fec202946bb7115a92148275b56/zorder_demo.py \ No newline at end of file diff --git a/_downloads/5b7bd1834041cffe27510ce7805395d7/svg_filter_line.py b/_downloads/5b7bd1834041cffe27510ce7805395d7/svg_filter_line.py deleted file mode 120000 index cfd477e3e7c..00000000000 --- a/_downloads/5b7bd1834041cffe27510ce7805395d7/svg_filter_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5b7bd1834041cffe27510ce7805395d7/svg_filter_line.py \ No newline at end of file diff --git a/_downloads/5b7da5d89a95404a194791fbd1c97d0d/layer_images.ipynb b/_downloads/5b7da5d89a95404a194791fbd1c97d0d/layer_images.ipynb deleted file mode 120000 index a955dcfb460..00000000000 --- a/_downloads/5b7da5d89a95404a194791fbd1c97d0d/layer_images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b7da5d89a95404a194791fbd1c97d0d/layer_images.ipynb \ No newline at end of file diff --git a/_downloads/5b7ec8dec433a726979423951deae9d7/parasite_simple.py b/_downloads/5b7ec8dec433a726979423951deae9d7/parasite_simple.py deleted file mode 120000 index fcf88a2fdb6..00000000000 --- a/_downloads/5b7ec8dec433a726979423951deae9d7/parasite_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5b7ec8dec433a726979423951deae9d7/parasite_simple.py \ No newline at end of file diff --git a/_downloads/5b9b77118a060fd25e3fdfab61de4b9e/lorenz_attractor.ipynb b/_downloads/5b9b77118a060fd25e3fdfab61de4b9e/lorenz_attractor.ipynb deleted file mode 100644 index c06ca57ca9f..00000000000 --- a/_downloads/5b9b77118a060fd25e3fdfab61de4b9e/lorenz_attractor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Lorenz Attractor\n\n\nThis is an example of plotting Edward Lorenz's 1963 `\"Deterministic Nonperiodic\nFlow\"`_ in a 3-dimensional space using mplot3d.\n\n http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2\n\n

Note

Because this is a simple non-linear ODE, it would be more easily done using\n SciPy's ODE solver, but this approach depends only upon NumPy.

\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef lorenz(x, y, z, s=10, r=28, b=2.667):\n '''\n Given:\n x, y, z: a point of interest in three dimensional space\n s, r, b: parameters defining the lorenz attractor\n Returns:\n x_dot, y_dot, z_dot: values of the lorenz attractor's partial\n derivatives at the point x, y, z\n '''\n x_dot = s*(y - x)\n y_dot = r*x - y - x*z\n z_dot = x*y - b*z\n return x_dot, y_dot, z_dot\n\n\ndt = 0.01\nnum_steps = 10000\n\n# Need one more for the initial values\nxs = np.empty(num_steps + 1)\nys = np.empty(num_steps + 1)\nzs = np.empty(num_steps + 1)\n\n# Set initial values\nxs[0], ys[0], zs[0] = (0., 1., 1.05)\n\n# Step through \"time\", calculating the partial derivatives at the current point\n# and using them to estimate the next point\nfor i in range(num_steps):\n x_dot, y_dot, z_dot = lorenz(xs[i], ys[i], zs[i])\n xs[i + 1] = xs[i] + (x_dot * dt)\n ys[i + 1] = ys[i] + (y_dot * dt)\n zs[i + 1] = zs[i] + (z_dot * dt)\n\n\n# Plot\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\nax.plot(xs, ys, zs, lw=0.5)\nax.set_xlabel(\"X Axis\")\nax.set_ylabel(\"Y Axis\")\nax.set_zlabel(\"Z Axis\")\nax.set_title(\"Lorenz Attractor\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5b9eb7dec3f843b16e67ad82e4647a08/scatter_demo2.py b/_downloads/5b9eb7dec3f843b16e67ad82e4647a08/scatter_demo2.py deleted file mode 120000 index 367424274be..00000000000 --- a/_downloads/5b9eb7dec3f843b16e67ad82e4647a08/scatter_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5b9eb7dec3f843b16e67ad82e4647a08/scatter_demo2.py \ No newline at end of file diff --git a/_downloads/5ba35d292df2f5c2bdb433ab0de992f5/trisurf3d.py b/_downloads/5ba35d292df2f5c2bdb433ab0de992f5/trisurf3d.py deleted file mode 120000 index 9b3aa3e1b3b..00000000000 --- a/_downloads/5ba35d292df2f5c2bdb433ab0de992f5/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5ba35d292df2f5c2bdb433ab0de992f5/trisurf3d.py \ No newline at end of file diff --git a/_downloads/5ba5268ff17409bdb21332a54707ee40/contour3d_2.py b/_downloads/5ba5268ff17409bdb21332a54707ee40/contour3d_2.py deleted file mode 120000 index 841c9e75143..00000000000 --- a/_downloads/5ba5268ff17409bdb21332a54707ee40/contour3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5ba5268ff17409bdb21332a54707ee40/contour3d_2.py \ No newline at end of file diff --git a/_downloads/5bb57283d714543d8bedee9ef68d065b/annotation_polar.ipynb b/_downloads/5bb57283d714543d8bedee9ef68d065b/annotation_polar.ipynb deleted file mode 120000 index cb9e543c5f2..00000000000 --- a/_downloads/5bb57283d714543d8bedee9ef68d065b/annotation_polar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5bb57283d714543d8bedee9ef68d065b/annotation_polar.ipynb \ No newline at end of file diff --git a/_downloads/5bba7fe3825b2ed66523d88fa7c3bb2a/demo_agg_filter.py b/_downloads/5bba7fe3825b2ed66523d88fa7c3bb2a/demo_agg_filter.py deleted file mode 120000 index 85a9933dafe..00000000000 --- a/_downloads/5bba7fe3825b2ed66523d88fa7c3bb2a/demo_agg_filter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5bba7fe3825b2ed66523d88fa7c3bb2a/demo_agg_filter.py \ No newline at end of file diff --git a/_downloads/5bcee6be22eac2f2479cc912dc5bd67b/transparent_legends.py b/_downloads/5bcee6be22eac2f2479cc912dc5bd67b/transparent_legends.py deleted file mode 120000 index bf5d1f035bd..00000000000 --- a/_downloads/5bcee6be22eac2f2479cc912dc5bd67b/transparent_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/5bcee6be22eac2f2479cc912dc5bd67b/transparent_legends.py \ No newline at end of file diff --git a/_downloads/5bcfd874e2fc40de673f86bf15c9d853/radio_buttons.ipynb b/_downloads/5bcfd874e2fc40de673f86bf15c9d853/radio_buttons.ipynb deleted file mode 120000 index 790e033ab74..00000000000 --- a/_downloads/5bcfd874e2fc40de673f86bf15c9d853/radio_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5bcfd874e2fc40de673f86bf15c9d853/radio_buttons.ipynb \ No newline at end of file diff --git a/_downloads/5bd21897319e702375684317e7df0a5c/bar_stacked.py b/_downloads/5bd21897319e702375684317e7df0a5c/bar_stacked.py deleted file mode 120000 index a77f2df071b..00000000000 --- a/_downloads/5bd21897319e702375684317e7df0a5c/bar_stacked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5bd21897319e702375684317e7df0a5c/bar_stacked.py \ No newline at end of file diff --git a/_downloads/5bd75a53bb383c6dbf858813c121ca8d/axes_props.py b/_downloads/5bd75a53bb383c6dbf858813c121ca8d/axes_props.py deleted file mode 120000 index 5fc999a9cfe..00000000000 --- a/_downloads/5bd75a53bb383c6dbf858813c121ca8d/axes_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5bd75a53bb383c6dbf858813c121ca8d/axes_props.py \ No newline at end of file diff --git a/_downloads/5be4c6d7a353c3347aa7cbd3aea98b63/transparent_legends.ipynb b/_downloads/5be4c6d7a353c3347aa7cbd3aea98b63/transparent_legends.ipynb deleted file mode 120000 index c321bbbd8cb..00000000000 --- a/_downloads/5be4c6d7a353c3347aa7cbd3aea98b63/transparent_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5be4c6d7a353c3347aa7cbd3aea98b63/transparent_legends.ipynb \ No newline at end of file diff --git a/_downloads/5bfc9623bebcaf80418042048a261ce9/eventplot_demo.py b/_downloads/5bfc9623bebcaf80418042048a261ce9/eventplot_demo.py deleted file mode 120000 index 1958bcdad64..00000000000 --- a/_downloads/5bfc9623bebcaf80418042048a261ce9/eventplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5bfc9623bebcaf80418042048a261ce9/eventplot_demo.py \ No newline at end of file diff --git a/_downloads/5bff5f65cae3f8b789b8112de651c75a/radio_buttons.ipynb b/_downloads/5bff5f65cae3f8b789b8112de651c75a/radio_buttons.ipynb deleted file mode 100644 index e4e41da5d47..00000000000 --- a/_downloads/5bff5f65cae3f8b789b8112de651c75a/radio_buttons.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Radio Buttons\n\n\nUsing radio buttons to choose properties of your plot.\n\nRadio buttons let you choose between multiple options in a visualization.\nIn this case, the buttons let the user choose one of the three different sine\nwaves to be shown in the plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import RadioButtons\n\nt = np.arange(0.0, 2.0, 0.01)\ns0 = np.sin(2*np.pi*t)\ns1 = np.sin(4*np.pi*t)\ns2 = np.sin(8*np.pi*t)\n\nfig, ax = plt.subplots()\nl, = ax.plot(t, s0, lw=2, color='red')\nplt.subplots_adjust(left=0.3)\n\naxcolor = 'lightgoldenrodyellow'\nrax = plt.axes([0.05, 0.7, 0.15, 0.15], facecolor=axcolor)\nradio = RadioButtons(rax, ('2 Hz', '4 Hz', '8 Hz'))\n\n\ndef hzfunc(label):\n hzdict = {'2 Hz': s0, '4 Hz': s1, '8 Hz': s2}\n ydata = hzdict[label]\n l.set_ydata(ydata)\n plt.draw()\nradio.on_clicked(hzfunc)\n\nrax = plt.axes([0.05, 0.4, 0.15, 0.15], facecolor=axcolor)\nradio2 = RadioButtons(rax, ('red', 'blue', 'green'))\n\n\ndef colorfunc(label):\n l.set_color(label)\n plt.draw()\nradio2.on_clicked(colorfunc)\n\nrax = plt.axes([0.05, 0.1, 0.15, 0.15], facecolor=axcolor)\nradio3 = RadioButtons(rax, ('-', '--', '-.', 'steps', ':'))\n\n\ndef stylefunc(label):\n l.set_linestyle(label)\n plt.draw()\nradio3.on_clicked(stylefunc)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5c0058b7cb49f5a3b074aed225e21c88/axhspan_demo.ipynb b/_downloads/5c0058b7cb49f5a3b074aed225e21c88/axhspan_demo.ipynb deleted file mode 100644 index 7240f1e013e..00000000000 --- a/_downloads/5c0058b7cb49f5a3b074aed225e21c88/axhspan_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# axhspan Demo\n\n\nCreate lines or rectangles that span the axes in either the horizontal or\nvertical direction.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(-1, 2, .01)\ns = np.sin(2 * np.pi * t)\n\nplt.plot(t, s)\n# Draw a thick red hline at y=0 that spans the xrange\nplt.axhline(linewidth=8, color='#d62728')\n\n# Draw a default hline at y=1 that spans the xrange\nplt.axhline(y=1)\n\n# Draw a default vline at x=1 that spans the yrange\nplt.axvline(x=1)\n\n# Draw a thick blue vline at x=0 that spans the upper quadrant of the yrange\nplt.axvline(x=0, ymin=0.75, linewidth=8, color='#1f77b4')\n\n# Draw a default hline at y=.5 that spans the middle half of the axes\nplt.axhline(y=.5, xmin=0.25, xmax=0.75)\n\nplt.axhspan(0.25, 0.75, facecolor='0.5', alpha=0.5)\n\nplt.axvspan(1.25, 1.55, facecolor='#2ca02c', alpha=0.5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5c06f7096acbeeeac936fd878edaa61a/mandelbrot.py b/_downloads/5c06f7096acbeeeac936fd878edaa61a/mandelbrot.py deleted file mode 120000 index d1d51b322a6..00000000000 --- a/_downloads/5c06f7096acbeeeac936fd878edaa61a/mandelbrot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5c06f7096acbeeeac936fd878edaa61a/mandelbrot.py \ No newline at end of file diff --git a/_downloads/5c11ac5faf93b90c1a35b59a8b65338c/image_clip_path.py b/_downloads/5c11ac5faf93b90c1a35b59a8b65338c/image_clip_path.py deleted file mode 100644 index e8c3d4fe1ab..00000000000 --- a/_downloads/5c11ac5faf93b90c1a35b59a8b65338c/image_clip_path.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -============================ -Clipping images with patches -============================ - -Demo of image that's been clipped by a circular patch. -""" -import matplotlib.pyplot as plt -import matplotlib.patches as patches -import matplotlib.cbook as cbook - - -with cbook.get_sample_data('grace_hopper.png') as image_file: - image = plt.imread(image_file) - -fig, ax = plt.subplots() -im = ax.imshow(image) -patch = patches.Circle((260, 200), radius=200, transform=ax.transData) -im.set_clip_path(patch) - -ax.axis('off') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.artist.Artist.set_clip_path diff --git a/_downloads/5c12d4b66c26fc9c8cdfd42f3e8008a7/fancyarrow_demo.py b/_downloads/5c12d4b66c26fc9c8cdfd42f3e8008a7/fancyarrow_demo.py deleted file mode 120000 index c9276c2de32..00000000000 --- a/_downloads/5c12d4b66c26fc9c8cdfd42f3e8008a7/fancyarrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5c12d4b66c26fc9c8cdfd42f3e8008a7/fancyarrow_demo.py \ No newline at end of file diff --git a/_downloads/5c17e7997d4d529b28729cb785b4d1fa/legend_picking.py b/_downloads/5c17e7997d4d529b28729cb785b4d1fa/legend_picking.py deleted file mode 120000 index d7f114a1145..00000000000 --- a/_downloads/5c17e7997d4d529b28729cb785b4d1fa/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5c17e7997d4d529b28729cb785b4d1fa/legend_picking.py \ No newline at end of file diff --git a/_downloads/5c18845f2965830768f0cb4f36dbe48b/major_minor_demo.ipynb b/_downloads/5c18845f2965830768f0cb4f36dbe48b/major_minor_demo.ipynb deleted file mode 120000 index 573387a22f8..00000000000 --- a/_downloads/5c18845f2965830768f0cb4f36dbe48b/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/5c18845f2965830768f0cb4f36dbe48b/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/5c56b44496ce7ff891707b1c60b11738/errorbar_subsample.ipynb b/_downloads/5c56b44496ce7ff891707b1c60b11738/errorbar_subsample.ipynb deleted file mode 100644 index e5823ebd91f..00000000000 --- a/_downloads/5c56b44496ce7ff891707b1c60b11738/errorbar_subsample.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Errorbar Subsample\n\n\nDemo for the errorevery keyword to show data full accuracy data plots with\nfew errorbars.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.arange(0.1, 4, 0.1)\ny = np.exp(-x)\n\n# example variable error bar values\nyerr = 0.1 + 0.1 * np.sqrt(x)\n\n\n# Now switch to a more OO interface to exercise more features.\nfig, axs = plt.subplots(nrows=1, ncols=2, sharex=True)\nax = axs[0]\nax.errorbar(x, y, yerr=yerr)\nax.set_title('all errorbars')\n\nax = axs[1]\nax.errorbar(x, y, yerr=yerr, errorevery=5)\nax.set_title('only every 5th errorbar')\n\n\nfig.suptitle('Errorbar subsampling for better appearance')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5c5cdefade924db682b5389441669450/annotation_basic.py b/_downloads/5c5cdefade924db682b5389441669450/annotation_basic.py deleted file mode 120000 index 2c089046dde..00000000000 --- a/_downloads/5c5cdefade924db682b5389441669450/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5c5cdefade924db682b5389441669450/annotation_basic.py \ No newline at end of file diff --git a/_downloads/5c62f1316efb781bfb7c3acccd2b688c/subplots_demo.py b/_downloads/5c62f1316efb781bfb7c3acccd2b688c/subplots_demo.py deleted file mode 120000 index f59ce4f871f..00000000000 --- a/_downloads/5c62f1316efb781bfb7c3acccd2b688c/subplots_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5c62f1316efb781bfb7c3acccd2b688c/subplots_demo.py \ No newline at end of file diff --git a/_downloads/5c76842e534059c60f46157c73579afd/marker_path.ipynb b/_downloads/5c76842e534059c60f46157c73579afd/marker_path.ipynb deleted file mode 120000 index 349050c552e..00000000000 --- a/_downloads/5c76842e534059c60f46157c73579afd/marker_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5c76842e534059c60f46157c73579afd/marker_path.ipynb \ No newline at end of file diff --git a/_downloads/5c7ef759c46a4c4c71b28e8a6194cf6c/axes_props.ipynb b/_downloads/5c7ef759c46a4c4c71b28e8a6194cf6c/axes_props.ipynb deleted file mode 100644 index c3f82c4865a..00000000000 --- a/_downloads/5c7ef759c46a4c4c71b28e8a6194cf6c/axes_props.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axes Props\n\n\nYou can control the axis tick and grid properties\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 2.0, 0.01)\ns = np.sin(2 * np.pi * t)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\nax.grid(True, linestyle='-.')\nax.tick_params(labelcolor='r', labelsize='medium', width=3)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5c8099f32fe7db6c880cad241c58ef9b/contour3d_2.ipynb b/_downloads/5c8099f32fe7db6c880cad241c58ef9b/contour3d_2.ipynb deleted file mode 120000 index 9408b025748..00000000000 --- a/_downloads/5c8099f32fe7db6c880cad241c58ef9b/contour3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5c8099f32fe7db6c880cad241c58ef9b/contour3d_2.ipynb \ No newline at end of file diff --git a/_downloads/5c8652ef2b9b3a9701b4866d53e1e8e9/power_norm.py b/_downloads/5c8652ef2b9b3a9701b4866d53e1e8e9/power_norm.py deleted file mode 120000 index e43a84d4e76..00000000000 --- a/_downloads/5c8652ef2b9b3a9701b4866d53e1e8e9/power_norm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5c8652ef2b9b3a9701b4866d53e1e8e9/power_norm.py \ No newline at end of file diff --git a/_downloads/5c93cfb4b8e5cba50b465e8ec185a197/demo_parasite_axes2.ipynb b/_downloads/5c93cfb4b8e5cba50b465e8ec185a197/demo_parasite_axes2.ipynb deleted file mode 120000 index b77b8f89c31..00000000000 --- a/_downloads/5c93cfb4b8e5cba50b465e8ec185a197/demo_parasite_axes2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5c93cfb4b8e5cba50b465e8ec185a197/demo_parasite_axes2.ipynb \ No newline at end of file diff --git a/_downloads/5c94489dd50eebf5ed1e62b297d004ec/broken_axis.py b/_downloads/5c94489dd50eebf5ed1e62b297d004ec/broken_axis.py deleted file mode 120000 index a5218a8f4dd..00000000000 --- a/_downloads/5c94489dd50eebf5ed1e62b297d004ec/broken_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5c94489dd50eebf5ed1e62b297d004ec/broken_axis.py \ No newline at end of file diff --git a/_downloads/5ca115a965b1da6f581763a7fd57e8e7/style_sheets_reference.ipynb b/_downloads/5ca115a965b1da6f581763a7fd57e8e7/style_sheets_reference.ipynb deleted file mode 120000 index 240951f4a95..00000000000 --- a/_downloads/5ca115a965b1da6f581763a7fd57e8e7/style_sheets_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5ca115a965b1da6f581763a7fd57e8e7/style_sheets_reference.ipynb \ No newline at end of file diff --git a/_downloads/5ca80543205c64810ad2d778be6c1c3b/watermark_image.py b/_downloads/5ca80543205c64810ad2d778be6c1c3b/watermark_image.py deleted file mode 120000 index 54ade4246f0..00000000000 --- a/_downloads/5ca80543205c64810ad2d778be6c1c3b/watermark_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5ca80543205c64810ad2d778be6c1c3b/watermark_image.py \ No newline at end of file diff --git a/_downloads/5ca8c4316ba948ab4aa3f967c8781e4a/common_date_problems.py b/_downloads/5ca8c4316ba948ab4aa3f967c8781e4a/common_date_problems.py deleted file mode 120000 index a9d831d4697..00000000000 --- a/_downloads/5ca8c4316ba948ab4aa3f967c8781e4a/common_date_problems.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5ca8c4316ba948ab4aa3f967c8781e4a/common_date_problems.py \ No newline at end of file diff --git a/_downloads/5cab53f2f56674b26cb1a8e3c1eeb899/text_alignment.py b/_downloads/5cab53f2f56674b26cb1a8e3c1eeb899/text_alignment.py deleted file mode 120000 index 9c5754c9e46..00000000000 --- a/_downloads/5cab53f2f56674b26cb1a8e3c1eeb899/text_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5cab53f2f56674b26cb1a8e3c1eeb899/text_alignment.py \ No newline at end of file diff --git a/_downloads/5cb60bf05bbdd871c3be2b03d1f22164/collections.ipynb b/_downloads/5cb60bf05bbdd871c3be2b03d1f22164/collections.ipynb deleted file mode 120000 index 99122c280fb..00000000000 --- a/_downloads/5cb60bf05bbdd871c3be2b03d1f22164/collections.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5cb60bf05bbdd871c3be2b03d1f22164/collections.ipynb \ No newline at end of file diff --git a/_downloads/5cd3a5c354cf16ab63dcdd37f5eaf4ae/3D.ipynb b/_downloads/5cd3a5c354cf16ab63dcdd37f5eaf4ae/3D.ipynb deleted file mode 100644 index e38eb8a7dba..00000000000 --- a/_downloads/5cd3a5c354cf16ab63dcdd37f5eaf4ae/3D.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage 3D example\n\n\nThis example reproduces the frontpage 3D example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib import cbook\nfrom matplotlib import cm\nfrom matplotlib.colors import LightSource\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nwith cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \\\n np.load(file) as dem:\n z = dem['elevation']\n nrows, ncols = z.shape\n x = np.linspace(dem['xmin'], dem['xmax'], ncols)\n y = np.linspace(dem['ymin'], dem['ymax'], nrows)\n x, y = np.meshgrid(x, y)\n\nregion = np.s_[5:50, 5:50]\nx, y, z = x[region], y[region], z[region]\n\nfig, ax = plt.subplots(subplot_kw=dict(projection='3d'))\n\nls = LightSource(270, 45)\n# To use a custom hillshading mode, override the built-in shading and pass\n# in the rgb colors of the shaded surface calculated from \"shade\".\nrgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft')\nsurf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb,\n linewidth=0, antialiased=False, shade=False)\nax.set_xticks([])\nax.set_yticks([])\nax.set_zticks([])\nfig.savefig(\"surface3d_frontpage.png\", dpi=25) # results in 160x120 px image" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5cd4d011a96d3e71e17a56ccddeccc6d/spines_dropped.ipynb b/_downloads/5cd4d011a96d3e71e17a56ccddeccc6d/spines_dropped.ipynb deleted file mode 120000 index 412c882ab07..00000000000 --- a/_downloads/5cd4d011a96d3e71e17a56ccddeccc6d/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5cd4d011a96d3e71e17a56ccddeccc6d/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/5cf23f169b91859119415e0a0e8ea0e5/colormap_normalizations_custom.ipynb b/_downloads/5cf23f169b91859119415e0a0e8ea0e5/colormap_normalizations_custom.ipynb deleted file mode 120000 index 9ddeef34920..00000000000 --- a/_downloads/5cf23f169b91859119415e0a0e8ea0e5/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5cf23f169b91859119415e0a0e8ea0e5/colormap_normalizations_custom.ipynb \ No newline at end of file diff --git a/_downloads/5d039139d19509e3cc0eac41c7e39e19/text_rotation.ipynb b/_downloads/5d039139d19509e3cc0eac41c7e39e19/text_rotation.ipynb deleted file mode 120000 index d50a1e1161e..00000000000 --- a/_downloads/5d039139d19509e3cc0eac41c7e39e19/text_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5d039139d19509e3cc0eac41c7e39e19/text_rotation.ipynb \ No newline at end of file diff --git a/_downloads/5d09fa7f28b450731d677f4d2e54e675/range_slider.py b/_downloads/5d09fa7f28b450731d677f4d2e54e675/range_slider.py deleted file mode 120000 index 7d7423419bc..00000000000 --- a/_downloads/5d09fa7f28b450731d677f4d2e54e675/range_slider.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5d09fa7f28b450731d677f4d2e54e675/range_slider.py \ No newline at end of file diff --git a/_downloads/5d11e556685fdabee3f6c626daafe15d/contour3d_2.ipynb b/_downloads/5d11e556685fdabee3f6c626daafe15d/contour3d_2.ipynb deleted file mode 120000 index db3151d44c7..00000000000 --- a/_downloads/5d11e556685fdabee3f6c626daafe15d/contour3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5d11e556685fdabee3f6c626daafe15d/contour3d_2.ipynb \ No newline at end of file diff --git a/_downloads/5d142f182a144f82417a49cf0d364235/scatter_hist.ipynb b/_downloads/5d142f182a144f82417a49cf0d364235/scatter_hist.ipynb deleted file mode 120000 index 690cbd0b480..00000000000 --- a/_downloads/5d142f182a144f82417a49cf0d364235/scatter_hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5d142f182a144f82417a49cf0d364235/scatter_hist.ipynb \ No newline at end of file diff --git a/_downloads/5d15c74fa55e3620939244e149ebfd20/simple_colorbar.py b/_downloads/5d15c74fa55e3620939244e149ebfd20/simple_colorbar.py deleted file mode 100644 index e7fed758808..00000000000 --- a/_downloads/5d15c74fa55e3620939244e149ebfd20/simple_colorbar.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -=============== -Simple Colorbar -=============== - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import make_axes_locatable -import numpy as np - -ax = plt.subplot(111) -im = ax.imshow(np.arange(100).reshape((10, 10))) - -# create an axes on the right side of ax. The width of cax will be 5% -# of ax and the padding between cax and ax will be fixed at 0.05 inch. -divider = make_axes_locatable(ax) -cax = divider.append_axes("right", size="5%", pad=0.05) - -plt.colorbar(im, cax=cax) diff --git a/_downloads/5d186c5dea4d6bb9a444c26795fd41db/trigradient_demo.ipynb b/_downloads/5d186c5dea4d6bb9a444c26795fd41db/trigradient_demo.ipynb deleted file mode 120000 index b4f0a0cab33..00000000000 --- a/_downloads/5d186c5dea4d6bb9a444c26795fd41db/trigradient_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5d186c5dea4d6bb9a444c26795fd41db/trigradient_demo.ipynb \ No newline at end of file diff --git a/_downloads/5d21a429f7fe23b396730cfda281d55a/ticklabels_rotation.py b/_downloads/5d21a429f7fe23b396730cfda281d55a/ticklabels_rotation.py deleted file mode 120000 index 783dfe6a9f7..00000000000 --- a/_downloads/5d21a429f7fe23b396730cfda281d55a/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/5d21a429f7fe23b396730cfda281d55a/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/5d2314b60438072fe7f5c8a3b6329261/demo_bboximage.py b/_downloads/5d2314b60438072fe7f5c8a3b6329261/demo_bboximage.py deleted file mode 120000 index 7e3fe1fc2a0..00000000000 --- a/_downloads/5d2314b60438072fe7f5c8a3b6329261/demo_bboximage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5d2314b60438072fe7f5c8a3b6329261/demo_bboximage.py \ No newline at end of file diff --git a/_downloads/5d290918a16a9299974e1c1d4b39162b/contourf_log.py b/_downloads/5d290918a16a9299974e1c1d4b39162b/contourf_log.py deleted file mode 120000 index 6a6fae3c718..00000000000 --- a/_downloads/5d290918a16a9299974e1c1d4b39162b/contourf_log.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5d290918a16a9299974e1c1d4b39162b/contourf_log.py \ No newline at end of file diff --git a/_downloads/5d2de13099fd3165e499588e08cce3c8/watermark_text.py b/_downloads/5d2de13099fd3165e499588e08cce3c8/watermark_text.py deleted file mode 100644 index a4909b9696e..00000000000 --- a/_downloads/5d2de13099fd3165e499588e08cce3c8/watermark_text.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -============== -Text watermark -============== - -Adding a text watermark. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -ax.plot(np.random.rand(20), '-o', ms=20, lw=2, alpha=0.7, mfc='orange') -ax.grid() - -fig.text(0.95, 0.05, 'Property of MPL', - fontsize=50, color='gray', - ha='right', va='bottom', alpha=0.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure.text diff --git a/_downloads/5d2efd563a8e0deab7f0ef6c8049ac30/spy_demos.py b/_downloads/5d2efd563a8e0deab7f0ef6c8049ac30/spy_demos.py deleted file mode 100644 index a24f134e407..00000000000 --- a/_downloads/5d2efd563a8e0deab7f0ef6c8049ac30/spy_demos.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -========= -Spy Demos -========= - -Plot the sparsity pattern of arrays. -""" - -import matplotlib.pyplot as plt -import numpy as np - -fig, axs = plt.subplots(2, 2) -ax1 = axs[0, 0] -ax2 = axs[0, 1] -ax3 = axs[1, 0] -ax4 = axs[1, 1] - -x = np.random.randn(20, 20) -x[5, :] = 0. -x[:, 12] = 0. - -ax1.spy(x, markersize=5) -ax2.spy(x, precision=0.1, markersize=5) - -ax3.spy(x) -ax4.spy(x, precision=0.1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.spy -matplotlib.pyplot.spy diff --git a/_downloads/5d3589c2551c5f018e2fbaab9f51d457/polygon_selector_demo.ipynb b/_downloads/5d3589c2551c5f018e2fbaab9f51d457/polygon_selector_demo.ipynb deleted file mode 120000 index 2f00ad6c3ca..00000000000 --- a/_downloads/5d3589c2551c5f018e2fbaab9f51d457/polygon_selector_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5d3589c2551c5f018e2fbaab9f51d457/polygon_selector_demo.ipynb \ No newline at end of file diff --git a/_downloads/5d366e9e81fabaa4870c882b8a30ae01/demo_imagegrid_aspect.py b/_downloads/5d366e9e81fabaa4870c882b8a30ae01/demo_imagegrid_aspect.py deleted file mode 100644 index 3369777460a..00000000000 --- a/_downloads/5d366e9e81fabaa4870c882b8a30ae01/demo_imagegrid_aspect.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -===================== -Demo Imagegrid Aspect -===================== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1 import ImageGrid -fig = plt.figure() - -grid1 = ImageGrid(fig, 121, (2, 2), axes_pad=0.1, - aspect=True, share_all=True) - -for i in [0, 1]: - grid1[i].set_aspect(2) - - -grid2 = ImageGrid(fig, 122, (2, 2), axes_pad=0.1, - aspect=True, share_all=True) - - -for i in [1, 3]: - grid2[i].set_aspect(2) - -plt.show() diff --git a/_downloads/5d41d5c22f7f1f8b5eff7cf90b800e4f/simple_legend01.py b/_downloads/5d41d5c22f7f1f8b5eff7cf90b800e4f/simple_legend01.py deleted file mode 120000 index 25d140c65aa..00000000000 --- a/_downloads/5d41d5c22f7f1f8b5eff7cf90b800e4f/simple_legend01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5d41d5c22f7f1f8b5eff7cf90b800e4f/simple_legend01.py \ No newline at end of file diff --git a/_downloads/5d44827fb910330370ee750eca36e673/pgf_fonts.ipynb b/_downloads/5d44827fb910330370ee750eca36e673/pgf_fonts.ipynb deleted file mode 120000 index 5cb661ae931..00000000000 --- a/_downloads/5d44827fb910330370ee750eca36e673/pgf_fonts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5d44827fb910330370ee750eca36e673/pgf_fonts.ipynb \ No newline at end of file diff --git a/_downloads/5d472b2e5cbf3e6986604867a7a05d16/interpolation_methods.ipynb b/_downloads/5d472b2e5cbf3e6986604867a7a05d16/interpolation_methods.ipynb deleted file mode 120000 index 3536eed4fcd..00000000000 --- a/_downloads/5d472b2e5cbf3e6986604867a7a05d16/interpolation_methods.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5d472b2e5cbf3e6986604867a7a05d16/interpolation_methods.ipynb \ No newline at end of file diff --git a/_downloads/5d476b63a932ff93ed18a77f364e49d2/patheffect_demo.py b/_downloads/5d476b63a932ff93ed18a77f364e49d2/patheffect_demo.py deleted file mode 120000 index 8551f095691..00000000000 --- a/_downloads/5d476b63a932ff93ed18a77f364e49d2/patheffect_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5d476b63a932ff93ed18a77f364e49d2/patheffect_demo.py \ No newline at end of file diff --git a/_downloads/5d4c300372685a382c48d7cb90b6386d/donut.ipynb b/_downloads/5d4c300372685a382c48d7cb90b6386d/donut.ipynb deleted file mode 100644 index a70c8d34e98..00000000000 --- a/_downloads/5d4c300372685a382c48d7cb90b6386d/donut.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=============\nMmh Donuts!!!\n=============\n\nDraw donuts (miam!) using `~.path.Path`\\s and `~.patches.PathPatch`\\es.\nThis example shows the effect of the path's orientations in a compound path.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\n\ndef wise(v):\n if v == 1:\n return \"CCW\"\n else:\n return \"CW\"\n\n\ndef make_circle(r):\n t = np.arange(0, np.pi * 2.0, 0.01)\n t = t.reshape((len(t), 1))\n x = r * np.cos(t)\n y = r * np.sin(t)\n return np.hstack((x, y))\n\nPath = mpath.Path\n\nfig, ax = plt.subplots()\n\ninside_vertices = make_circle(0.5)\noutside_vertices = make_circle(1.0)\ncodes = np.ones(\n len(inside_vertices), dtype=mpath.Path.code_type) * mpath.Path.LINETO\ncodes[0] = mpath.Path.MOVETO\n\nfor i, (inside, outside) in enumerate(((1, 1), (1, -1), (-1, 1), (-1, -1))):\n # Concatenate the inside and outside subpaths together, changing their\n # order as needed\n vertices = np.concatenate((outside_vertices[::outside],\n inside_vertices[::inside]))\n # Shift the path\n vertices[:, 0] += i * 2.5\n # The codes will be all \"LINETO\" commands, except for \"MOVETO\"s at the\n # beginning of each subpath\n all_codes = np.concatenate((codes, codes))\n # Create the Path object\n path = mpath.Path(vertices, all_codes)\n # Add plot it\n patch = mpatches.PathPatch(path, facecolor='#885500', edgecolor='black')\n ax.add_patch(patch)\n\n ax.annotate(\"Outside %s,\\nInside %s\" % (wise(outside), wise(inside)),\n (i * 2.5, -1.5), va=\"top\", ha=\"center\")\n\nax.set_xlim(-2, 10)\nax.set_ylim(-3, 2)\nax.set_title('Mmm, donuts!')\nax.set_aspect(1.0)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.patches.Circle\nmatplotlib.axes.Axes.add_patch\nmatplotlib.axes.Axes.annotate\nmatplotlib.axes.Axes.set_aspect\nmatplotlib.axes.Axes.set_xlim\nmatplotlib.axes.Axes.set_ylim\nmatplotlib.axes.Axes.set_title" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5d4c71273d382e955582a992fc3326f1/parasite_simple2.ipynb b/_downloads/5d4c71273d382e955582a992fc3326f1/parasite_simple2.ipynb deleted file mode 100644 index 63d4a42e1f1..00000000000 --- a/_downloads/5d4c71273d382e955582a992fc3326f1/parasite_simple2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parasite Simple2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.transforms as mtransforms\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.parasite_axes import SubplotHost\n\nobs = [[\"01_S1\", 3.88, 0.14, 1970, 63],\n [\"01_S4\", 5.6, 0.82, 1622, 150],\n [\"02_S1\", 2.4, 0.54, 1570, 40],\n [\"03_S1\", 4.1, 0.62, 2380, 170]]\n\n\nfig = plt.figure()\n\nax_kms = SubplotHost(fig, 1, 1, 1, aspect=1.)\n\n# angular proper motion(\"/yr) to linear velocity(km/s) at distance=2.3kpc\npm_to_kms = 1./206265.*2300*3.085e18/3.15e7/1.e5\n\naux_trans = mtransforms.Affine2D().scale(pm_to_kms, 1.)\nax_pm = ax_kms.twin(aux_trans)\nax_pm.set_viewlim_mode(\"transform\")\n\nfig.add_subplot(ax_kms)\n\nfor n, ds, dse, w, we in obs:\n time = ((2007 + (10. + 4/30.)/12) - 1988.5)\n v = ds / time * pm_to_kms\n ve = dse / time * pm_to_kms\n ax_kms.errorbar([v], [w], xerr=[ve], yerr=[we], color=\"k\")\n\n\nax_kms.axis[\"bottom\"].set_label(\"Linear velocity at 2.3 kpc [km/s]\")\nax_kms.axis[\"left\"].set_label(\"FWHM [km/s]\")\nax_pm.axis[\"top\"].set_label(r\"Proper Motion [$''$/yr]\")\nax_pm.axis[\"top\"].label.set_visible(True)\nax_pm.axis[\"right\"].major_ticklabels.set_visible(False)\n\nax_kms.set_xlim(950, 3700)\nax_kms.set_ylim(950, 3100)\n# xlim and ylim of ax_pms will be automatically adjusted.\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5d6bf1a99a3b087b164629105cbd1433/image_masked.py b/_downloads/5d6bf1a99a3b087b164629105cbd1433/image_masked.py deleted file mode 100644 index 15a78f7123c..00000000000 --- a/_downloads/5d6bf1a99a3b087b164629105cbd1433/image_masked.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -============ -Image Masked -============ - -imshow with masked array input and out-of-range colors. - -The second subplot illustrates the use of BoundaryNorm to -get a filled contour effect. -""" -from copy import copy - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -# compute some interesting data -x0, x1 = -5, 5 -y0, y1 = -3, 3 -x = np.linspace(x0, x1, 500) -y = np.linspace(y0, y1, 500) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -# Set up a colormap: -# use copy so that we do not mutate the global colormap instance -palette = copy(plt.cm.gray) -palette.set_over('r', 1.0) -palette.set_under('g', 1.0) -palette.set_bad('b', 1.0) -# Alternatively, we could use -# palette.set_bad(alpha = 0.0) -# to make the bad region transparent. This is the default. -# If you comment out all the palette.set* lines, you will see -# all the defaults; under and over will be colored with the -# first and last colors in the palette, respectively. -Zm = np.ma.masked_where(Z > 1.2, Z) - -# By setting vmin and vmax in the norm, we establish the -# range to which the regular palette color scale is applied. -# Anything above that range is colored based on palette.set_over, etc. - -# set up the Axes objects -fig, (ax1, ax2) = plt.subplots(nrows=2, figsize=(6, 5.4)) - -# plot using 'continuous' color map -im = ax1.imshow(Zm, interpolation='bilinear', - cmap=palette, - norm=colors.Normalize(vmin=-1.0, vmax=1.0), - aspect='auto', - origin='lower', - extent=[x0, x1, y0, y1]) -ax1.set_title('Green=low, Red=high, Blue=masked') -cbar = fig.colorbar(im, extend='both', shrink=0.9, ax=ax1) -cbar.set_label('uniform') -for ticklabel in ax1.xaxis.get_ticklabels(): - ticklabel.set_visible(False) - -# Plot using a small number of colors, with unevenly spaced boundaries. -im = ax2.imshow(Zm, interpolation='nearest', - cmap=palette, - norm=colors.BoundaryNorm([-1, -0.5, -0.2, 0, 0.2, 0.5, 1], - ncolors=palette.N), - aspect='auto', - origin='lower', - extent=[x0, x1, y0, y1]) -ax2.set_title('With BoundaryNorm') -cbar = fig.colorbar(im, extend='both', spacing='proportional', - shrink=0.9, ax=ax2) -cbar.set_label('proportional') - -fig.suptitle('imshow, with out-of-range and masked data') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.BoundaryNorm -matplotlib.colorbar.ColorbarBase.set_label diff --git a/_downloads/5d780e738299fcb14270f585c702b1d9/menu.ipynb b/_downloads/5d780e738299fcb14270f585c702b1d9/menu.ipynb deleted file mode 120000 index e3db707386d..00000000000 --- a/_downloads/5d780e738299fcb14270f585c702b1d9/menu.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5d780e738299fcb14270f585c702b1d9/menu.ipynb \ No newline at end of file diff --git a/_downloads/5d8cdab7ea1678dde5be0d4101a79dc0/demo_annotation_box.py b/_downloads/5d8cdab7ea1678dde5be0d4101a79dc0/demo_annotation_box.py deleted file mode 100644 index 9fa69dd7762..00000000000 --- a/_downloads/5d8cdab7ea1678dde5be0d4101a79dc0/demo_annotation_box.py +++ /dev/null @@ -1,122 +0,0 @@ -"""=================== -Demo Annotation Box -=================== - -The AnnotationBbox Artist creates an annotation using an OffsetBox. This -example demonstrates three different OffsetBoxes: TextArea, DrawingArea and -OffsetImage. AnnotationBbox gives more fine-grained control than using the axes -method annotate. - -""" - -import matplotlib.pyplot as plt -import numpy as np - -from matplotlib.patches import Circle -from matplotlib.offsetbox import (TextArea, DrawingArea, OffsetImage, - AnnotationBbox) -from matplotlib.cbook import get_sample_data - - -fig, ax = plt.subplots() - -# Define a 1st position to annotate (display it with a marker) -xy = (0.5, 0.7) -ax.plot(xy[0], xy[1], ".r") - -# Annotate the 1st position with a text box ('Test 1') -offsetbox = TextArea("Test 1", minimumdescent=False) - -ab = AnnotationBbox(offsetbox, xy, - xybox=(-20, 40), - xycoords='data', - boxcoords="offset points", - arrowprops=dict(arrowstyle="->")) -ax.add_artist(ab) - -# Annotate the 1st position with another text box ('Test') -offsetbox = TextArea("Test", minimumdescent=False) - -ab = AnnotationBbox(offsetbox, xy, - xybox=(1.02, xy[1]), - xycoords='data', - boxcoords=("axes fraction", "data"), - box_alignment=(0., 0.5), - arrowprops=dict(arrowstyle="->")) -ax.add_artist(ab) - -# Define a 2nd position to annotate (don't display with a marker this time) -xy = [0.3, 0.55] - -# Annotate the 2nd position with a circle patch -da = DrawingArea(20, 20, 0, 0) -p = Circle((10, 10), 10) -da.add_artist(p) - -ab = AnnotationBbox(da, xy, - xybox=(1.02, xy[1]), - xycoords='data', - boxcoords=("axes fraction", "data"), - box_alignment=(0., 0.5), - arrowprops=dict(arrowstyle="->")) - -ax.add_artist(ab) - -# Annotate the 2nd position with an image (a generated array of pixels) -arr = np.arange(100).reshape((10, 10)) -im = OffsetImage(arr, zoom=2) -im.image.axes = ax - -ab = AnnotationBbox(im, xy, - xybox=(-50., 50.), - xycoords='data', - boxcoords="offset points", - pad=0.3, - arrowprops=dict(arrowstyle="->")) - -ax.add_artist(ab) - -# Annotate the 2nd position with another image (a Grace Hopper portrait) -with get_sample_data("grace_hopper.png") as file: - arr_img = plt.imread(file, format='png') - -imagebox = OffsetImage(arr_img, zoom=0.2) -imagebox.image.axes = ax - -ab = AnnotationBbox(imagebox, xy, - xybox=(120., -80.), - xycoords='data', - boxcoords="offset points", - pad=0.5, - arrowprops=dict( - arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=3") - ) - -ax.add_artist(ab) - -# Fix the display limits to see everything -ax.set_xlim(0, 1) -ax.set_ylim(0, 1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown in this -# example: - -Circle -TextArea -DrawingArea -OffsetImage -AnnotationBbox -get_sample_data -plt.subplots -plt.imread -plt.show diff --git a/_downloads/5d9265378e0664aae1c121c44c835885/quiver_demo.ipynb b/_downloads/5d9265378e0664aae1c121c44c835885/quiver_demo.ipynb deleted file mode 120000 index a95797c6206..00000000000 --- a/_downloads/5d9265378e0664aae1c121c44c835885/quiver_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5d9265378e0664aae1c121c44c835885/quiver_demo.ipynb \ No newline at end of file diff --git a/_downloads/5d977d45a5026b32f4397a688f71d9a1/fill_between_demo.ipynb b/_downloads/5d977d45a5026b32f4397a688f71d9a1/fill_between_demo.ipynb deleted file mode 100644 index 551df164fac..00000000000 --- a/_downloads/5d977d45a5026b32f4397a688f71d9a1/fill_between_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Filling the area between lines\n\n\nThis example shows how to use ``fill_between`` to color between lines based on\nuser-defined logic.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(0.0, 2, 0.01)\ny1 = np.sin(2 * np.pi * x)\ny2 = 1.2 * np.sin(4 * np.pi * x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2, ax3) = plt.subplots(3, 1, sharex=True)\n\nax1.fill_between(x, 0, y1)\nax1.set_ylabel('between y1 and 0')\n\nax2.fill_between(x, y1, 1)\nax2.set_ylabel('between y1 and 1')\n\nax3.fill_between(x, y1, y2)\nax3.set_ylabel('between y1 and y2')\nax3.set_xlabel('x')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now fill between y1 and y2 where a logical condition is met. Note\nthis is different than calling\n``fill_between(x[where], y1[where], y2[where] ...)``\nbecause of edge effects over multiple contiguous regions.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax, ax1) = plt.subplots(2, 1, sharex=True)\nax.plot(x, y1, x, y2, color='black')\nax.fill_between(x, y1, y2, where=y2 >= y1, facecolor='green', interpolate=True)\nax.fill_between(x, y1, y2, where=y2 <= y1, facecolor='red', interpolate=True)\nax.set_title('fill between where')\n\n# Test support for masked arrays.\ny2 = np.ma.masked_greater(y2, 1.0)\nax1.plot(x, y1, x, y2, color='black')\nax1.fill_between(x, y1, y2, where=y2 >= y1,\n facecolor='green', interpolate=True)\nax1.fill_between(x, y1, y2, where=y2 <= y1,\n facecolor='red', interpolate=True)\nax1.set_title('Now regions with y2>1 are masked')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This example illustrates a problem; because of the data\ngridding, there are undesired unfilled triangles at the crossover\npoints. A brute-force solution would be to interpolate all\narrays to a very fine grid before plotting.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use transforms to create axes spans where a certain condition is satisfied:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\ny = np.sin(4 * np.pi * x)\nax.plot(x, y, color='black')\n\n# use data coordinates for the x-axis and the axes coordinates for the y-axis\nimport matplotlib.transforms as mtransforms\ntrans = mtransforms.blended_transform_factory(ax.transData, ax.transAxes)\ntheta = 0.9\nax.axhline(theta, color='green', lw=2, alpha=0.5)\nax.axhline(-theta, color='red', lw=2, alpha=0.5)\nax.fill_between(x, 0, 1, where=y > theta,\n facecolor='green', alpha=0.5, transform=trans)\nax.fill_between(x, 0, 1, where=y < -theta,\n facecolor='red', alpha=0.5, transform=trans)\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5d97a2f445b8c4ef7782f1f64ca83edf/image_nonuniform.py b/_downloads/5d97a2f445b8c4ef7782f1f64ca83edf/image_nonuniform.py deleted file mode 120000 index f3c06a225ea..00000000000 --- a/_downloads/5d97a2f445b8c4ef7782f1f64ca83edf/image_nonuniform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5d97a2f445b8c4ef7782f1f64ca83edf/image_nonuniform.py \ No newline at end of file diff --git a/_downloads/5d9e4dc8b1dfe549103a42683dbce676/evans_test.py b/_downloads/5d9e4dc8b1dfe549103a42683dbce676/evans_test.py deleted file mode 120000 index ae53676361c..00000000000 --- a/_downloads/5d9e4dc8b1dfe549103a42683dbce676/evans_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5d9e4dc8b1dfe549103a42683dbce676/evans_test.py \ No newline at end of file diff --git a/_downloads/5daffd76d61436b8a4a7d6a170de58cb/connect_simple01.py b/_downloads/5daffd76d61436b8a4a7d6a170de58cb/connect_simple01.py deleted file mode 120000 index c1d0ea9ac55..00000000000 --- a/_downloads/5daffd76d61436b8a4a7d6a170de58cb/connect_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5daffd76d61436b8a4a7d6a170de58cb/connect_simple01.py \ No newline at end of file diff --git a/_downloads/5dbc4e856fe6524906870db9aa91facc/contour_corner_mask.py b/_downloads/5dbc4e856fe6524906870db9aa91facc/contour_corner_mask.py deleted file mode 100644 index 0482945d552..00000000000 --- a/_downloads/5dbc4e856fe6524906870db9aa91facc/contour_corner_mask.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -=================== -Contour Corner Mask -=================== - -Illustrate the difference between ``corner_mask=False`` and -``corner_mask=True`` for masked contour plots. -""" -import matplotlib.pyplot as plt -import numpy as np - -# Data to plot. -x, y = np.meshgrid(np.arange(7), np.arange(10)) -z = np.sin(0.5 * x) * np.cos(0.52 * y) - -# Mask various z values. -mask = np.zeros_like(z, dtype=bool) -mask[2, 3:5] = True -mask[3:5, 4] = True -mask[7, 2] = True -mask[5, 0] = True -mask[0, 6] = True -z = np.ma.array(z, mask=mask) - -corner_masks = [False, True] -fig, axs = plt.subplots(ncols=2) -for ax, corner_mask in zip(axs, corner_masks): - cs = ax.contourf(x, y, z, corner_mask=corner_mask) - ax.contour(cs, colors='k') - ax.set_title('corner_mask = {0}'.format(corner_mask)) - - # Plot grid. - ax.grid(c='k', ls='-', alpha=0.3) - - # Indicate masked points with red circles. - ax.plot(np.ma.array(x, mask=~mask), y, 'ro') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf diff --git a/_downloads/5dbe235f5ce060079b6f2f2cc97499de/animated_histogram.ipynb b/_downloads/5dbe235f5ce060079b6f2f2cc97499de/animated_histogram.ipynb deleted file mode 120000 index 91506a0eb87..00000000000 --- a/_downloads/5dbe235f5ce060079b6f2f2cc97499de/animated_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5dbe235f5ce060079b6f2f2cc97499de/animated_histogram.ipynb \ No newline at end of file diff --git a/_downloads/5dc06754547454fb041caaae7b07e9dd/tripcolor_demo.ipynb b/_downloads/5dc06754547454fb041caaae7b07e9dd/tripcolor_demo.ipynb deleted file mode 120000 index 4cceb522301..00000000000 --- a/_downloads/5dc06754547454fb041caaae7b07e9dd/tripcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5dc06754547454fb041caaae7b07e9dd/tripcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/5dc5da00d7d7311390ebcde7a47a6f38/mathtext.py b/_downloads/5dc5da00d7d7311390ebcde7a47a6f38/mathtext.py deleted file mode 100644 index 897e6653cf2..00000000000 --- a/_downloads/5dc5da00d7d7311390ebcde7a47a6f38/mathtext.py +++ /dev/null @@ -1,339 +0,0 @@ -r""" -Writing mathematical expressions -================================ - -An introduction to writing mathematical expressions in Matplotlib. - -You can use a subset TeX markup in any matplotlib text string by placing it -inside a pair of dollar signs ($). - -Note that you do not need to have TeX installed, since Matplotlib ships -its own TeX expression parser, layout engine, and fonts. The layout engine -is a fairly direct adaptation of the layout algorithms in Donald Knuth's -TeX, so the quality is quite good (matplotlib also provides a ``usetex`` -option for those who do want to call out to TeX to generate their text (see -:doc:`/tutorials/text/usetex`). - -Any text element can use math text. You should use raw strings (precede the -quotes with an ``'r'``), and surround the math text with dollar signs ($), as -in TeX. Regular text and mathtext can be interleaved within the same string. -Mathtext can use DejaVu Sans (default), DejaVu Serif, the Computer Modern fonts -(from (La)TeX), `STIX `_ fonts (with are designed -to blend well with Times), or a Unicode font that you provide. The mathtext -font can be selected with the customization variable ``mathtext.fontset`` (see -:doc:`/tutorials/introductory/customizing`) - -Here is a simple example:: - - # plain text - plt.title('alpha > beta') - -produces "alpha > beta". - -Whereas this:: - - # math text - plt.title(r'$\alpha > \beta$') - -produces ":mathmpl:`\alpha > \beta`". - -.. note:: - Mathtext should be placed between a pair of dollar signs ($). To make it - easy to display monetary values, e.g., "$100.00", if a single dollar sign - is present in the entire string, it will be displayed verbatim as a dollar - sign. This is a small change from regular TeX, where the dollar sign in - non-math text would have to be escaped ('\\\$'). - -.. note:: - While the syntax inside the pair of dollar signs ($) aims to be TeX-like, - the text outside does not. In particular, characters such as:: - - # $ % & ~ _ ^ \ { } \( \) \[ \] - - have special meaning outside of math mode in TeX. Therefore, these - characters will behave differently depending on the rcParam ``text.usetex`` - flag. See the :doc:`usetex tutorial ` for more - information. - -Subscripts and superscripts ---------------------------- - -To make subscripts and superscripts, use the ``'_'`` and ``'^'`` symbols:: - - r'$\alpha_i > \beta_i$' - -.. math:: - - \alpha_i > \beta_i - -Some symbols automatically put their sub/superscripts under and over the -operator. For example, to write the sum of :mathmpl:`x_i` from :mathmpl:`0` to -:mathmpl:`\infty`, you could do:: - - r'$\sum_{i=0}^\infty x_i$' - -.. math:: - - \sum_{i=0}^\infty x_i - -Fractions, binomials, and stacked numbers ------------------------------------------ - -Fractions, binomials, and stacked numbers can be created with the -``\frac{}{}``, ``\binom{}{}`` and ``\genfrac{}{}{}{}{}{}`` commands, -respectively:: - - r'$\frac{3}{4} \binom{3}{4} \genfrac{}{}{0}{}{3}{4}$' - -produces - -.. math:: - - \frac{3}{4} \binom{3}{4} \stackrel{}{}{0}{}{3}{4} - -Fractions can be arbitrarily nested:: - - r'$\frac{5 - \frac{1}{x}}{4}$' - -produces - -.. math:: - - \frac{5 - \frac{1}{x}}{4} - -Note that special care needs to be taken to place parentheses and brackets -around fractions. Doing things the obvious way produces brackets that are too -small:: - - r'$(\frac{5 - \frac{1}{x}}{4})$' - -.. math :: - - (\frac{5 - \frac{1}{x}}{4}) - -The solution is to precede the bracket with ``\left`` and ``\right`` to inform -the parser that those brackets encompass the entire object.:: - - r'$\left(\frac{5 - \frac{1}{x}}{4}\right)$' - -.. math :: - - \left(\frac{5 - \frac{1}{x}}{4}\right) - -Radicals --------- - -Radicals can be produced with the ``\sqrt[]{}`` command. For example:: - - r'$\sqrt{2}$' - -.. math :: - - \sqrt{2} - -Any base can (optionally) be provided inside square brackets. Note that the -base must be a simple expression, and can not contain layout commands such as -fractions or sub/superscripts:: - - r'$\sqrt[3]{x}$' - -.. math :: - - \sqrt[3]{x} - -.. _mathtext-fonts: - -Fonts ------ - -The default font is *italics* for mathematical symbols. - -.. note:: - - This default can be changed using the ``mathtext.default`` rcParam. This is - useful, for example, to use the same font as regular non-math text for math - text, by setting it to ``regular``. - -To change fonts, e.g., to write "sin" in a Roman font, enclose the text in a -font command:: - - r'$s(t) = \mathcal{A}\mathrm{sin}(2 \omega t)$' - -.. math:: - - s(t) = \mathcal{A}\mathrm{sin}(2 \omega t) - -More conveniently, many commonly used function names that are typeset in -a Roman font have shortcuts. So the expression above could be written as -follows:: - - r'$s(t) = \mathcal{A}\sin(2 \omega t)$' - -.. math:: - - s(t) = \mathcal{A}\sin(2 \omega t) - -Here "s" and "t" are variable in italics font (default), "sin" is in Roman -font, and the amplitude "A" is in calligraphy font. Note in the example above -the calligraphy ``A`` is squished into the ``sin``. You can use a spacing -command to add a little whitespace between them:: - - r's(t) = \mathcal{A}\/\sin(2 \omega t)' - -.. Here we cheat a bit: for HTML math rendering, Sphinx relies on MathJax which - doesn't actually support the italic correction (\/); instead, use a thin - space (\,) which is supported. - -.. math:: - - s(t) = \mathcal{A}\,\sin(2 \omega t) - -The choices available with all fonts are: - - ========================= ================================ - Command Result - ========================= ================================ - ``\mathrm{Roman}`` :mathmpl:`\mathrm{Roman}` - ``\mathit{Italic}`` :mathmpl:`\mathit{Italic}` - ``\mathtt{Typewriter}`` :mathmpl:`\mathtt{Typewriter}` - ``\mathcal{CALLIGRAPHY}`` :mathmpl:`\mathcal{CALLIGRAPHY}` - ========================= ================================ - -.. role:: math-stix(mathmpl) - :fontset: stix - -When using the `STIX `_ fonts, you also have the -choice of: - - ================================ ========================================= - Command Result - ================================ ========================================= - ``\mathbb{blackboard}`` :math-stix:`\mathbb{blackboard}` - ``\mathrm{\mathbb{blackboard}}`` :math-stix:`\mathrm{\mathbb{blackboard}}` - ``\mathfrak{Fraktur}`` :math-stix:`\mathfrak{Fraktur}` - ``\mathsf{sansserif}`` :math-stix:`\mathsf{sansserif}` - ``\mathrm{\mathsf{sansserif}}`` :math-stix:`\mathrm{\mathsf{sansserif}}` - ================================ ========================================= - -There are also three global "font sets" to choose from, which are -selected using the ``mathtext.fontset`` parameter in :ref:`matplotlibrc -`. - -``cm``: **Computer Modern (TeX)** - -.. image:: ../../_static/cm_fontset.png - -``stix``: **STIX** (designed to blend well with Times) - -.. image:: ../../_static/stix_fontset.png - -``stixsans``: **STIX sans-serif** - -.. image:: ../../_static/stixsans_fontset.png - -Additionally, you can use ``\mathdefault{...}`` or its alias -``\mathregular{...}`` to use the font used for regular text outside of -mathtext. There are a number of limitations to this approach, most notably -that far fewer symbols will be available, but it can be useful to make math -expressions blend well with other text in the plot. - -Custom fonts -~~~~~~~~~~~~ - -mathtext also provides a way to use custom fonts for math. This method is -fairly tricky to use, and should be considered an experimental feature for -patient users only. By setting the rcParam ``mathtext.fontset`` to ``custom``, -you can then set the following parameters, which control which font file to use -for a particular set of math characters. - - ============================== ================================= - Parameter Corresponds to - ============================== ================================= - ``mathtext.it`` ``\mathit{}`` or default italic - ``mathtext.rm`` ``\mathrm{}`` Roman (upright) - ``mathtext.tt`` ``\mathtt{}`` Typewriter (monospace) - ``mathtext.bf`` ``\mathbf{}`` bold italic - ``mathtext.cal`` ``\mathcal{}`` calligraphic - ``mathtext.sf`` ``\mathsf{}`` sans-serif - ============================== ================================= - -Each parameter should be set to a fontconfig font descriptor (as defined in the -yet-to-be-written font chapter). - -.. TODO: Link to font chapter - -The fonts used should have a Unicode mapping in order to find any -non-Latin characters, such as Greek. If you want to use a math symbol -that is not contained in your custom fonts, you can set the rcParam -``mathtext.fallback_to_cm`` to ``True`` which will cause the mathtext system -to use characters from the default Computer Modern fonts whenever a particular -character can not be found in the custom font. - -Note that the math glyphs specified in Unicode have evolved over time, and many -fonts may not have glyphs in the correct place for mathtext. - -Accents -------- - -An accent command may precede any symbol to add an accent above it. There are -long and short forms for some of them. - - ============================== ================================= - Command Result - ============================== ================================= - ``\acute a`` or ``\'a`` :mathmpl:`\acute a` - ``\bar a`` :mathmpl:`\bar a` - ``\breve a`` :mathmpl:`\breve a` - ``\ddot a`` or ``\''a`` :mathmpl:`\ddot a` - ``\dot a`` or ``\.a`` :mathmpl:`\dot a` - ``\grave a`` or ``\`a`` :mathmpl:`\grave a` - ``\hat a`` or ``\^a`` :mathmpl:`\hat a` - ``\tilde a`` or ``\~a`` :mathmpl:`\tilde a` - ``\vec a`` :mathmpl:`\vec a` - ``\overline{abc}`` :mathmpl:`\overline{abc}` - ============================== ================================= - -In addition, there are two special accents that automatically adjust to the -width of the symbols below: - - ============================== ================================= - Command Result - ============================== ================================= - ``\widehat{xyz}`` :mathmpl:`\widehat{xyz}` - ``\widetilde{xyz}`` :mathmpl:`\widetilde{xyz}` - ============================== ================================= - -Care should be taken when putting accents on lower-case i's and j's. Note that -in the following ``\imath`` is used to avoid the extra dot over the i:: - - r"$\hat i\ \ \hat \imath$" - -.. math:: - - \hat i\ \ \hat \imath - -Symbols -------- - -You can also use a large number of the TeX symbols, as in ``\infty``, -``\leftarrow``, ``\sum``, ``\int``. - -.. math_symbol_table:: - -If a particular symbol does not have a name (as is true of many of the more -obscure symbols in the STIX fonts), Unicode characters can also be used:: - - ur'$\u23ce$' - -Example -------- - -Here is an example illustrating many of these features in context. - -.. figure:: ../../gallery/pyplots/images/sphx_glr_pyplot_mathtext_001.png - :target: ../../gallery/pyplots/pyplot_mathtext.html - :align: center - :scale: 50 - - Pyplot Mathtext -""" diff --git a/_downloads/5dc9f3174cf48408d7ff5acd6a26a92b/watermark_image.py b/_downloads/5dc9f3174cf48408d7ff5acd6a26a92b/watermark_image.py deleted file mode 120000 index d4d3495c4d9..00000000000 --- a/_downloads/5dc9f3174cf48408d7ff5acd6a26a92b/watermark_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5dc9f3174cf48408d7ff5acd6a26a92b/watermark_image.py \ No newline at end of file diff --git a/_downloads/5dd201ca4ff3aaad7278c3fe8219badd/3d_bars.ipynb b/_downloads/5dd201ca4ff3aaad7278c3fe8219badd/3d_bars.ipynb deleted file mode 120000 index 3266397157c..00000000000 --- a/_downloads/5dd201ca4ff3aaad7278c3fe8219badd/3d_bars.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5dd201ca4ff3aaad7278c3fe8219badd/3d_bars.ipynb \ No newline at end of file diff --git a/_downloads/5dd25dc89aca3ba366d9f6d238429ba3/contourf_demo.ipynb b/_downloads/5dd25dc89aca3ba366d9f6d238429ba3/contourf_demo.ipynb deleted file mode 120000 index 6c7eca8f4d2..00000000000 --- a/_downloads/5dd25dc89aca3ba366d9f6d238429ba3/contourf_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5dd25dc89aca3ba366d9f6d238429ba3/contourf_demo.ipynb \ No newline at end of file diff --git a/_downloads/5dd40cb151335f7393db555464221c01/nested_pie.py b/_downloads/5dd40cb151335f7393db555464221c01/nested_pie.py deleted file mode 100644 index ce2be648f1c..00000000000 --- a/_downloads/5dd40cb151335f7393db555464221c01/nested_pie.py +++ /dev/null @@ -1,97 +0,0 @@ -""" -================= -Nested pie charts -================= - -The following examples show two ways to build a nested pie chart -in Matplotlib. Such charts are often referred to as donut charts. - -""" - -import matplotlib.pyplot as plt -import numpy as np - -############################################################################### -# The most straightforward way to build a pie chart is to use the -# :meth:`pie method ` -# -# In this case, pie takes values corresponding to counts in a group. -# We'll first generate some fake data, corresponding to three groups. -# In the inner circle, we'll treat each number as belonging to its -# own group. In the outer circle, we'll plot them as members of their -# original 3 groups. -# -# The effect of the donut shape is achieved by setting a `width` to -# the pie's wedges through the `wedgeprops` argument. - - -fig, ax = plt.subplots() - -size = 0.3 -vals = np.array([[60., 32.], [37., 40.], [29., 10.]]) - -cmap = plt.get_cmap("tab20c") -outer_colors = cmap(np.arange(3)*4) -inner_colors = cmap(np.array([1, 2, 5, 6, 9, 10])) - -ax.pie(vals.sum(axis=1), radius=1, colors=outer_colors, - wedgeprops=dict(width=size, edgecolor='w')) - -ax.pie(vals.flatten(), radius=1-size, colors=inner_colors, - wedgeprops=dict(width=size, edgecolor='w')) - -ax.set(aspect="equal", title='Pie plot with `ax.pie`') -plt.show() - -############################################################################### -# However, you can accomplish the same output by using a bar plot on -# axes with a polar coordinate system. This may give more flexibility on -# the exact design of the plot. -# -# In this case, we need to map x-values of the bar chart onto radians of -# a circle. The cumulative sum of the values are used as the edges -# of the bars. - -fig, ax = plt.subplots(subplot_kw=dict(polar=True)) - -size = 0.3 -vals = np.array([[60., 32.], [37., 40.], [29., 10.]]) -#normalize vals to 2 pi -valsnorm = vals/np.sum(vals)*2*np.pi -#obtain the ordinates of the bar edges -valsleft = np.cumsum(np.append(0, valsnorm.flatten()[:-1])).reshape(vals.shape) - -cmap = plt.get_cmap("tab20c") -outer_colors = cmap(np.arange(3)*4) -inner_colors = cmap(np.array([1, 2, 5, 6, 9, 10])) - -ax.bar(x=valsleft[:, 0], - width=valsnorm.sum(axis=1), bottom=1-size, height=size, - color=outer_colors, edgecolor='w', linewidth=1, align="edge") - -ax.bar(x=valsleft.flatten(), - width=valsnorm.flatten(), bottom=1-2*size, height=size, - color=inner_colors, edgecolor='w', linewidth=1, align="edge") - -ax.set(title="Pie plot with `ax.bar` and polar coordinates") -ax.set_axis_off() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.projections.polar -matplotlib.axes.Axes.set -matplotlib.axes.Axes.set_axis_off diff --git a/_downloads/5df7e4f8ddfd3f10d172b400b5d77a8b/histogram_path.py b/_downloads/5df7e4f8ddfd3f10d172b400b5d77a8b/histogram_path.py deleted file mode 100644 index 4eb4d68ba2d..00000000000 --- a/_downloads/5df7e4f8ddfd3f10d172b400b5d77a8b/histogram_path.py +++ /dev/null @@ -1,100 +0,0 @@ -""" -======================================================== -Building histograms using Rectangles and PolyCollections -======================================================== - -Using a path patch to draw rectangles. -The technique of using lots of Rectangle instances, or -the faster method of using PolyCollections, were implemented before we -had proper paths with moveto/lineto, closepoly etc in mpl. Now that -we have them, we can draw collections of regularly shaped objects with -homogeneous properties more efficiently with a PathCollection. This -example makes a histogram -- it's more work to set up the vertex arrays -at the outset, but it should be much faster for large numbers of -objects. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.patches as patches -import matplotlib.path as path - -fig, ax = plt.subplots() - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# histogram our data with numpy - -data = np.random.randn(1000) -n, bins = np.histogram(data, 50) - -# get the corners of the rectangles for the histogram -left = np.array(bins[:-1]) -right = np.array(bins[1:]) -bottom = np.zeros(len(left)) -top = bottom + n - - -# we need a (numrects x numsides x 2) numpy array for the path helper -# function to build a compound path -XY = np.array([[left, left, right, right], [bottom, top, top, bottom]]).T - -# get the Path object -barpath = path.Path.make_compound_path_from_polys(XY) - -# make a patch out of it -patch = patches.PathPatch(barpath) -ax.add_patch(patch) - -# update the view limits -ax.set_xlim(left[0], right[-1]) -ax.set_ylim(bottom.min(), top.max()) - -plt.show() - -############################################################################# -# It should be noted that instead of creating a three-dimensional array and -# using `~.path.Path.make_compound_path_from_polys`, we could as well create -# the compound path directly using vertices and codes as shown below - -nrects = len(left) -nverts = nrects*(1+3+1) -verts = np.zeros((nverts, 2)) -codes = np.ones(nverts, int) * path.Path.LINETO -codes[0::5] = path.Path.MOVETO -codes[4::5] = path.Path.CLOSEPOLY -verts[0::5, 0] = left -verts[0::5, 1] = bottom -verts[1::5, 0] = left -verts[1::5, 1] = top -verts[2::5, 0] = right -verts[2::5, 1] = top -verts[3::5, 0] = right -verts[3::5, 1] = bottom - -barpath = path.Path(verts, codes) - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.path -matplotlib.path.Path -matplotlib.path.Path.make_compound_path_from_polys -matplotlib.axes.Axes.add_patch -matplotlib.collections.PathCollection - -# This example shows an alternative to -matplotlib.collections.PolyCollection -matplotlib.axes.Axes.hist diff --git a/_downloads/5dfe31ed313e5a03f5ba6ee21d3333bf/dark_background.py b/_downloads/5dfe31ed313e5a03f5ba6ee21d3333bf/dark_background.py deleted file mode 120000 index 3a60cfb8317..00000000000 --- a/_downloads/5dfe31ed313e5a03f5ba6ee21d3333bf/dark_background.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5dfe31ed313e5a03f5ba6ee21d3333bf/dark_background.py \ No newline at end of file diff --git a/_downloads/5dff99f855ade691f02f18b3e43fd8d0/spines_bounds.py b/_downloads/5dff99f855ade691f02f18b3e43fd8d0/spines_bounds.py deleted file mode 120000 index ec6f82e89f8..00000000000 --- a/_downloads/5dff99f855ade691f02f18b3e43fd8d0/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5dff99f855ade691f02f18b3e43fd8d0/spines_bounds.py \ No newline at end of file diff --git a/_downloads/5e0cefef7b726d2422669ef68ebec314/titles_demo.ipynb b/_downloads/5e0cefef7b726d2422669ef68ebec314/titles_demo.ipynb deleted file mode 120000 index 1259ea0ee0d..00000000000 --- a/_downloads/5e0cefef7b726d2422669ef68ebec314/titles_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5e0cefef7b726d2422669ef68ebec314/titles_demo.ipynb \ No newline at end of file diff --git a/_downloads/5e1b173d331d306f69c599a753bf53f3/simple_axisline4.py b/_downloads/5e1b173d331d306f69c599a753bf53f3/simple_axisline4.py deleted file mode 120000 index 72fe7951ecf..00000000000 --- a/_downloads/5e1b173d331d306f69c599a753bf53f3/simple_axisline4.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e1b173d331d306f69c599a753bf53f3/simple_axisline4.py \ No newline at end of file diff --git a/_downloads/5e207daf2e23bf1c7428f10310961e7c/colormap_normalizations_bounds.ipynb b/_downloads/5e207daf2e23bf1c7428f10310961e7c/colormap_normalizations_bounds.ipynb deleted file mode 100644 index c67a087e203..00000000000 --- a/_downloads/5e207daf2e23bf1c7428f10310961e7c/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Bounds\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n'''\nBoundaryNorm: For this one you provide the boundaries for your colors,\nand the Norm puts the first color in between the first pair, the\nsecond color between the second pair, etc.\n'''\n\nfig, ax = plt.subplots(3, 1, figsize=(8, 8))\nax = ax.flatten()\n# even bounds gives a contour-like effect\nbounds = np.linspace(-1, 1, 10)\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=norm,\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical')\n\n# uneven bounds changes the colormapping:\nbounds = np.array([-0.25, -0.125, 0, 0.5, 1])\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical')\n\npcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5e2241249a2d2b3bf8148a880273f157/grayscale.py b/_downloads/5e2241249a2d2b3bf8148a880273f157/grayscale.py deleted file mode 120000 index 73c3274270f..00000000000 --- a/_downloads/5e2241249a2d2b3bf8148a880273f157/grayscale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5e2241249a2d2b3bf8148a880273f157/grayscale.py \ No newline at end of file diff --git a/_downloads/5e2b511bfa86f2a77f492dc330fda2d9/bars3d.ipynb b/_downloads/5e2b511bfa86f2a77f492dc330fda2d9/bars3d.ipynb deleted file mode 100644 index 31d4e2d261b..00000000000 --- a/_downloads/5e2b511bfa86f2a77f492dc330fda2d9/bars3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Create 2D bar graphs in different planes\n\n\nDemonstrates making a 3D plot which has 2D bar graphs projected onto\nplanes y=0, y=1, etc.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\ncolors = ['r', 'g', 'b', 'y']\nyticks = [3, 2, 1, 0]\nfor c, k in zip(colors, yticks):\n # Generate the random data for the y=k 'layer'.\n xs = np.arange(20)\n ys = np.random.rand(20)\n\n # You can provide either a single color or an array with the same length as\n # xs and ys. To demonstrate this, we color the first bar of each set cyan.\n cs = [c] * len(xs)\n cs[0] = 'c'\n\n # Plot the bar graph given by xs and ys on the plane y=k with 80% opacity.\n ax.bar(xs, ys, zs=k, zdir='y', color=cs, alpha=0.8)\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\n# On the y axis let's only label the discrete values that we have data for.\nax.set_yticks(yticks)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5e2d5600481a41f8f62e70cb3c89441b/markevery_demo.py b/_downloads/5e2d5600481a41f8f62e70cb3c89441b/markevery_demo.py deleted file mode 100644 index d917fa01501..00000000000 --- a/_downloads/5e2d5600481a41f8f62e70cb3c89441b/markevery_demo.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -============== -Markevery Demo -============== - -This example demonstrates the various options for showing a marker at a -subset of data points using the ``markevery`` property of a Line2D object. - -Integer arguments are fairly intuitive. e.g. ``markevery=5`` will plot every -5th marker starting from the first data point. - -Float arguments allow markers to be spaced at approximately equal distances -along the line. The theoretical distance along the line between markers is -determined by multiplying the display-coordinate distance of the axes -bounding-box diagonal by the value of ``markevery``. The data points closest -to the theoretical distances will be shown. - -A slice or list/array can also be used with ``markevery`` to specify the -markers to show. - -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - -# define a list of markevery cases to plot -cases = [None, - 8, - (30, 8), - [16, 24, 30], [0, -1], - slice(100, 200, 3), - 0.1, 0.3, 1.5, - (0.0, 0.1), (0.45, 0.1)] - -# define the figure size and grid layout properties -figsize = (10, 8) -cols = 3 -rows = len(cases) // cols + 1 -# define the data for cartesian plots -delta = 0.11 -x = np.linspace(0, 10 - 2 * delta, 200) + delta -y = np.sin(x) + 1.0 + delta - - -def trim_axs(axs, N): - """little helper to massage the axs list to have correct length...""" - axs = axs.flat - for ax in axs[N:]: - ax.remove() - return axs[:N] - -############################################################################### -# Plot each markevery case for linear x and y scales - -fig1, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.plot(x, y, 'o', ls='-', ms=4, markevery=case) - -############################################################################### -# Plot each markevery case for log x and y scales - -fig2, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.set_xscale('log') - ax.set_yscale('log') - ax.plot(x, y, 'o', ls='-', ms=4, markevery=case) - -############################################################################### -# Plot each markevery case for linear x and y scales but zoomed in -# note the behaviour when zoomed in. When a start marker offset is specified -# it is always interpreted with respect to the first data point which might be -# different to the first visible data point. - -fig3, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.plot(x, y, 'o', ls='-', ms=4, markevery=case) - ax.set_xlim((6, 6.7)) - ax.set_ylim((1.1, 1.7)) - -# define data for polar plots -r = np.linspace(0, 3.0, 200) -theta = 2 * np.pi * r - -############################################################################### -# Plot each markevery case for polar plots - -fig4, axs = plt.subplots(rows, cols, figsize=figsize, - subplot_kw={'projection': 'polar'}, constrained_layout=True) -axs = trim_axs(axs, len(cases)) -for ax, case in zip(axs, cases): - ax.set_title('markevery=%s' % str(case)) - ax.plot(theta, r, 'o', ls='-', ms=4, markevery=case) - -plt.show() diff --git a/_downloads/5e318a950850a2b14b734aa81a8d7574/tricontour_smooth_user.py b/_downloads/5e318a950850a2b14b734aa81a8d7574/tricontour_smooth_user.py deleted file mode 120000 index 131b65480b0..00000000000 --- a/_downloads/5e318a950850a2b14b734aa81a8d7574/tricontour_smooth_user.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e318a950850a2b14b734aa81a8d7574/tricontour_smooth_user.py \ No newline at end of file diff --git a/_downloads/5e36c4218edc76ea5453026e6609da86/embedding_in_wx5_sgskip.py b/_downloads/5e36c4218edc76ea5453026e6609da86/embedding_in_wx5_sgskip.py deleted file mode 120000 index 24a176a3abb..00000000000 --- a/_downloads/5e36c4218edc76ea5453026e6609da86/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e36c4218edc76ea5453026e6609da86/embedding_in_wx5_sgskip.py \ No newline at end of file diff --git a/_downloads/5e453a7f6cb62191c8c90c5c1c6f568b/surface3d_2.py b/_downloads/5e453a7f6cb62191c8c90c5c1c6f568b/surface3d_2.py deleted file mode 120000 index 0720796f6b1..00000000000 --- a/_downloads/5e453a7f6cb62191c8c90c5c1c6f568b/surface3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e453a7f6cb62191c8c90c5c1c6f568b/surface3d_2.py \ No newline at end of file diff --git a/_downloads/5e45cb905f1dc5e7e4d948c4b30e5460/whats_new_98_4_legend.py b/_downloads/5e45cb905f1dc5e7e4d948c4b30e5460/whats_new_98_4_legend.py deleted file mode 120000 index 0ee6a2d926f..00000000000 --- a/_downloads/5e45cb905f1dc5e7e4d948c4b30e5460/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e45cb905f1dc5e7e4d948c4b30e5460/whats_new_98_4_legend.py \ No newline at end of file diff --git a/_downloads/5e47e49846a01c868031ca513ff37a4b/simple_axisline2.ipynb b/_downloads/5e47e49846a01c868031ca513ff37a4b/simple_axisline2.ipynb deleted file mode 120000 index 1a5e13436b3..00000000000 --- a/_downloads/5e47e49846a01c868031ca513ff37a4b/simple_axisline2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5e47e49846a01c868031ca513ff37a4b/simple_axisline2.ipynb \ No newline at end of file diff --git a/_downloads/5e5d35808597575be0a7ea93db584090/zoom_window.py b/_downloads/5e5d35808597575be0a7ea93db584090/zoom_window.py deleted file mode 120000 index 25a3c1e007c..00000000000 --- a/_downloads/5e5d35808597575be0a7ea93db584090/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e5d35808597575be0a7ea93db584090/zoom_window.py \ No newline at end of file diff --git a/_downloads/5e5e6c2822cc934515cfe181c692214c/subplot3d.py b/_downloads/5e5e6c2822cc934515cfe181c692214c/subplot3d.py deleted file mode 120000 index 604f80cea48..00000000000 --- a/_downloads/5e5e6c2822cc934515cfe181c692214c/subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e5e6c2822cc934515cfe181c692214c/subplot3d.py \ No newline at end of file diff --git a/_downloads/5e616820b5282d5a84a6931ccfc8d334/boxplot_demo.ipynb b/_downloads/5e616820b5282d5a84a6931ccfc8d334/boxplot_demo.ipynb deleted file mode 100644 index cd30aadc8b4..00000000000 --- a/_downloads/5e616820b5282d5a84a6931ccfc8d334/boxplot_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Boxplots\n\n\nVisualizing boxplots with matplotlib.\n\nThe following examples show off how to visualize boxplots with\nMatplotlib. There are many options to control their appearance and\nthe statistics that they use to summarize the data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.patches import Polygon\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# fake up some data\nspread = np.random.rand(50) * 100\ncenter = np.ones(25) * 50\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\ndata = np.concatenate((spread, center, flier_high, flier_low))\n\nfig, axs = plt.subplots(2, 3)\n\n# basic plot\naxs[0, 0].boxplot(data)\naxs[0, 0].set_title('basic plot')\n\n# notched plot\naxs[0, 1].boxplot(data, 1)\naxs[0, 1].set_title('notched plot')\n\n# change outlier point symbols\naxs[0, 2].boxplot(data, 0, 'gD')\naxs[0, 2].set_title('change outlier\\npoint symbols')\n\n# don't show outlier points\naxs[1, 0].boxplot(data, 0, '')\naxs[1, 0].set_title(\"don't show\\noutlier points\")\n\n# horizontal boxes\naxs[1, 1].boxplot(data, 0, 'rs', 0)\naxs[1, 1].set_title('horizontal boxes')\n\n# change whisker length\naxs[1, 2].boxplot(data, 0, 'rs', 0, 0.75)\naxs[1, 2].set_title('change whisker length')\n\nfig.subplots_adjust(left=0.08, right=0.98, bottom=0.05, top=0.9,\n hspace=0.4, wspace=0.3)\n\n# fake up some more data\nspread = np.random.rand(50) * 100\ncenter = np.ones(25) * 40\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\nd2 = np.concatenate((spread, center, flier_high, flier_low))\ndata.shape = (-1, 1)\nd2.shape = (-1, 1)\n# Making a 2-D array only works if all the columns are the\n# same length. If they are not, then use a list instead.\n# This is actually more efficient because boxplot converts\n# a 2-D array into a list of vectors internally anyway.\ndata = [data, d2, d2[::2, 0]]\n\n# Multiple box plots on one Axes\nfig, ax = plt.subplots()\nax.boxplot(data)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Below we'll generate data from five different probability distributions,\neach with different characteristics. We want to play with how an IID\nbootstrap resample of the data preserves the distributional\nproperties of the original sample, and a boxplot is one visual tool\nto make this assessment\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "random_dists = ['Normal(1,1)', ' Lognormal(1,1)', 'Exp(1)', 'Gumbel(6,4)',\n 'Triangular(2,9,11)']\nN = 500\n\nnorm = np.random.normal(1, 1, N)\nlogn = np.random.lognormal(1, 1, N)\nexpo = np.random.exponential(1, N)\ngumb = np.random.gumbel(6, 4, N)\ntria = np.random.triangular(2, 9, 11, N)\n\n# Generate some random indices that we'll use to resample the original data\n# arrays. For code brevity, just use the same random indices for each array\nbootstrap_indices = np.random.randint(0, N, N)\ndata = [\n norm, norm[bootstrap_indices],\n logn, logn[bootstrap_indices],\n expo, expo[bootstrap_indices],\n gumb, gumb[bootstrap_indices],\n tria, tria[bootstrap_indices],\n]\n\nfig, ax1 = plt.subplots(figsize=(10, 6))\nfig.canvas.set_window_title('A Boxplot Example')\nfig.subplots_adjust(left=0.075, right=0.95, top=0.9, bottom=0.25)\n\nbp = ax1.boxplot(data, notch=0, sym='+', vert=1, whis=1.5)\nplt.setp(bp['boxes'], color='black')\nplt.setp(bp['whiskers'], color='black')\nplt.setp(bp['fliers'], color='red', marker='+')\n\n# Add a horizontal grid to the plot, but make it very light in color\n# so we can use it for reading data values but not be distracting\nax1.yaxis.grid(True, linestyle='-', which='major', color='lightgrey',\n alpha=0.5)\n\n# Hide these grid behind plot objects\nax1.set_axisbelow(True)\nax1.set_title('Comparison of IID Bootstrap Resampling Across Five Distributions')\nax1.set_xlabel('Distribution')\nax1.set_ylabel('Value')\n\n# Now fill the boxes with desired colors\nbox_colors = ['darkkhaki', 'royalblue']\nnum_boxes = len(data)\nmedians = np.empty(num_boxes)\nfor i in range(num_boxes):\n box = bp['boxes'][i]\n boxX = []\n boxY = []\n for j in range(5):\n boxX.append(box.get_xdata()[j])\n boxY.append(box.get_ydata()[j])\n box_coords = np.column_stack([boxX, boxY])\n # Alternate between Dark Khaki and Royal Blue\n ax1.add_patch(Polygon(box_coords, facecolor=box_colors[i % 2]))\n # Now draw the median lines back over what we just filled in\n med = bp['medians'][i]\n medianX = []\n medianY = []\n for j in range(2):\n medianX.append(med.get_xdata()[j])\n medianY.append(med.get_ydata()[j])\n ax1.plot(medianX, medianY, 'k')\n medians[i] = medianY[0]\n # Finally, overplot the sample averages, with horizontal alignment\n # in the center of each box\n ax1.plot(np.average(med.get_xdata()), np.average(data[i]),\n color='w', marker='*', markeredgecolor='k')\n\n# Set the axes ranges and axes labels\nax1.set_xlim(0.5, num_boxes + 0.5)\ntop = 40\nbottom = -5\nax1.set_ylim(bottom, top)\nax1.set_xticklabels(np.repeat(random_dists, 2),\n rotation=45, fontsize=8)\n\n# Due to the Y-axis scale being different across samples, it can be\n# hard to compare differences in medians across the samples. Add upper\n# X-axis tick labels with the sample medians to aid in comparison\n# (just use two decimal places of precision)\npos = np.arange(num_boxes) + 1\nupper_labels = [str(np.round(s, 2)) for s in medians]\nweights = ['bold', 'semibold']\nfor tick, label in zip(range(num_boxes), ax1.get_xticklabels()):\n k = tick % 2\n ax1.text(pos[tick], .95, upper_labels[tick],\n transform=ax1.get_xaxis_transform(),\n horizontalalignment='center', size='x-small',\n weight=weights[k], color=box_colors[k])\n\n# Finally, add a basic legend\nfig.text(0.80, 0.08, f'{N} Random Numbers',\n backgroundcolor=box_colors[0], color='black', weight='roman',\n size='x-small')\nfig.text(0.80, 0.045, 'IID Bootstrap Resample',\n backgroundcolor=box_colors[1],\n color='white', weight='roman', size='x-small')\nfig.text(0.80, 0.015, '*', color='white', backgroundcolor='silver',\n weight='roman', size='medium')\nfig.text(0.815, 0.013, ' Average Value', color='black', weight='roman',\n size='x-small')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we write a custom function to bootstrap confidence intervals.\nWe can then use the boxplot along with this function to show these intervals.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def fakeBootStrapper(n):\n '''\n This is just a placeholder for the user's method of\n bootstrapping the median and its confidence intervals.\n\n Returns an arbitrary median and confidence intervals\n packed into a tuple\n '''\n if n == 1:\n med = 0.1\n CI = (-0.25, 0.25)\n else:\n med = 0.2\n CI = (-0.35, 0.50)\n\n return med, CI\n\ninc = 0.1\ne1 = np.random.normal(0, 1, size=500)\ne2 = np.random.normal(0, 1, size=500)\ne3 = np.random.normal(0, 1 + inc, size=500)\ne4 = np.random.normal(0, 1 + 2*inc, size=500)\n\ntreatments = [e1, e2, e3, e4]\nmed1, CI1 = fakeBootStrapper(1)\nmed2, CI2 = fakeBootStrapper(2)\nmedians = [None, None, med1, med2]\nconf_intervals = [None, None, CI1, CI2]\n\nfig, ax = plt.subplots()\npos = np.array(range(len(treatments))) + 1\nbp = ax.boxplot(treatments, sym='k+', positions=pos,\n notch=1, bootstrap=5000,\n usermedians=medians,\n conf_intervals=conf_intervals)\n\nax.set_xlabel('treatment')\nax.set_ylabel('response')\nplt.setp(bp['whiskers'], color='k', linestyle='-')\nplt.setp(bp['fliers'], markersize=3.0)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5e658c0abe85ee0c34ec6ec523bb6e0d/quadmesh_demo.ipynb b/_downloads/5e658c0abe85ee0c34ec6ec523bb6e0d/quadmesh_demo.ipynb deleted file mode 120000 index f6cbd50b88c..00000000000 --- a/_downloads/5e658c0abe85ee0c34ec6ec523bb6e0d/quadmesh_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5e658c0abe85ee0c34ec6ec523bb6e0d/quadmesh_demo.ipynb \ No newline at end of file diff --git a/_downloads/5e6d1c6a87c4b4a40af4f5e42ac47207/membrane.py b/_downloads/5e6d1c6a87c4b4a40af4f5e42ac47207/membrane.py deleted file mode 120000 index 6c1f0dd73c9..00000000000 --- a/_downloads/5e6d1c6a87c4b4a40af4f5e42ac47207/membrane.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e6d1c6a87c4b4a40af4f5e42ac47207/membrane.py \ No newline at end of file diff --git a/_downloads/5e7dc700fb7d6cb15bcb8cd28e7b96ce/date.ipynb b/_downloads/5e7dc700fb7d6cb15bcb8cd28e7b96ce/date.ipynb deleted file mode 100644 index 8d9958be0fc..00000000000 --- a/_downloads/5e7dc700fb7d6cb15bcb8cd28e7b96ce/date.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date tick labels\n\n\nShow how to make date plots in Matplotlib using date tick locators and\nformatters. See :doc:`/gallery/ticks_and_spines/major_minor_demo` for more\ninformation on controlling major and minor ticks.\n\nAll matplotlib date plotting is done by converting date instances into days\nsince 0001-01-01 00:00:00 UTC plus one day (for historical reasons). The\nconversion, tick locating and formatting is done behind the scenes so this\nis most transparent to you. The dates module provides several converter\nfunctions `matplotlib.dates.date2num` and `matplotlib.dates.num2date`.\nThese can convert between `datetime.datetime` objects and\n:class:`numpy.datetime64` objects.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.dates as mdates\nimport matplotlib.cbook as cbook\n\nyears = mdates.YearLocator() # every year\nmonths = mdates.MonthLocator() # every month\nyears_fmt = mdates.DateFormatter('%Y')\n\n# Load a numpy structured array from yahoo csv data with fields date, open,\n# close, volume, adj_close from the mpl-data/example directory. This array\n# stores the date as an np.datetime64 with a day unit ('D') in the 'date'\n# column.\nwith cbook.get_sample_data('goog.npz') as datafile:\n data = np.load(datafile)['price_data']\n\nfig, ax = plt.subplots()\nax.plot('date', 'adj_close', data=data)\n\n# format the ticks\nax.xaxis.set_major_locator(years)\nax.xaxis.set_major_formatter(years_fmt)\nax.xaxis.set_minor_locator(months)\n\n# round to nearest years.\ndatemin = np.datetime64(data['date'][0], 'Y')\ndatemax = np.datetime64(data['date'][-1], 'Y') + np.timedelta64(1, 'Y')\nax.set_xlim(datemin, datemax)\n\n# format the coords message box\nax.format_xdata = mdates.DateFormatter('%Y-%m-%d')\nax.format_ydata = lambda x: '$%1.2f' % x # format the price.\nax.grid(True)\n\n# rotates and right aligns the x labels, and moves the bottom of the\n# axes up to make room for them\nfig.autofmt_xdate()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5e8aa30607e066c2e07837854c0a4933/bar_stacked.py b/_downloads/5e8aa30607e066c2e07837854c0a4933/bar_stacked.py deleted file mode 120000 index 3b1ead14dd4..00000000000 --- a/_downloads/5e8aa30607e066c2e07837854c0a4933/bar_stacked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5e8aa30607e066c2e07837854c0a4933/bar_stacked.py \ No newline at end of file diff --git a/_downloads/5e8f5450e4be82cfed7887b545b0697f/align_labels_demo.ipynb b/_downloads/5e8f5450e4be82cfed7887b545b0697f/align_labels_demo.ipynb deleted file mode 120000 index 0b86ae297ef..00000000000 --- a/_downloads/5e8f5450e4be82cfed7887b545b0697f/align_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5e8f5450e4be82cfed7887b545b0697f/align_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/5e9479451dce794554c083dc9c11106c/quiver_demo.py b/_downloads/5e9479451dce794554c083dc9c11106c/quiver_demo.py deleted file mode 100644 index f06f4e17198..00000000000 --- a/_downloads/5e9479451dce794554c083dc9c11106c/quiver_demo.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -======================================= -Advanced quiver and quiverkey functions -======================================= - -Demonstrates some more advanced options for `~.axes.Axes.quiver`. For a simple -example refer to :doc:`/gallery/images_contours_and_fields/quiver_simple_demo`. - -Note: The plot autoscaling does not take into account the arrows, so -those on the boundaries may reach out of the picture. This is not an easy -problem to solve in a perfectly general way. The recommended workaround is to -manually set the Axes limits in such a case. -""" - -import matplotlib.pyplot as plt -import numpy as np - -X, Y = np.meshgrid(np.arange(0, 2 * np.pi, .2), np.arange(0, 2 * np.pi, .2)) -U = np.cos(X) -V = np.sin(Y) - -############################################################################### - -fig1, ax1 = plt.subplots() -ax1.set_title('Arrows scale with plot width, not view') -Q = ax1.quiver(X, Y, U, V, units='width') -qk = ax1.quiverkey(Q, 0.9, 0.9, 2, r'$2 \frac{m}{s}$', labelpos='E', - coordinates='figure') - -############################################################################### - -fig2, ax2 = plt.subplots() -ax2.set_title("pivot='mid'; every third arrow; units='inches'") -Q = ax2.quiver(X[::3, ::3], Y[::3, ::3], U[::3, ::3], V[::3, ::3], - pivot='mid', units='inches') -qk = ax2.quiverkey(Q, 0.9, 0.9, 1, r'$1 \frac{m}{s}$', labelpos='E', - coordinates='figure') -ax2.scatter(X[::3, ::3], Y[::3, ::3], color='r', s=5) - -############################################################################### - -# sphinx_gallery_thumbnail_number = 3 - -fig3, ax3 = plt.subplots() -ax3.set_title("pivot='tip'; scales with x view") -M = np.hypot(U, V) -Q = ax3.quiver(X, Y, U, V, M, units='x', pivot='tip', width=0.022, - scale=1 / 0.15) -qk = ax3.quiverkey(Q, 0.9, 0.9, 1, r'$1 \frac{m}{s}$', labelpos='E', - coordinates='figure') -ax3.scatter(X, Y, color='0.5', s=1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.quiver -matplotlib.pyplot.quiver -matplotlib.axes.Axes.quiverkey -matplotlib.pyplot.quiverkey diff --git a/_downloads/5e9e4c26f9db73e5046f23dd864ede36/marker_path.py b/_downloads/5e9e4c26f9db73e5046f23dd864ede36/marker_path.py deleted file mode 100644 index 7d43df365b3..00000000000 --- a/_downloads/5e9e4c26f9db73e5046f23dd864ede36/marker_path.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -=========== -Marker Path -=========== - -Using a `~.path.Path` as marker for a `~.axes.Axes.plot`. -""" -import matplotlib.pyplot as plt -import matplotlib.path as mpath -import numpy as np - - -star = mpath.Path.unit_regular_star(6) -circle = mpath.Path.unit_circle() -# concatenate the circle with an internal cutout of the star -verts = np.concatenate([circle.vertices, star.vertices[::-1, ...]]) -codes = np.concatenate([circle.codes, star.codes]) -cut_star = mpath.Path(verts, codes) - - -plt.plot(np.arange(10)**2, '--r', marker=cut_star, markersize=15) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.path.Path.unit_regular_star -matplotlib.path.Path.unit_circle -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot diff --git a/_downloads/5eab8801e2724e6355c7a280335527fc/radar_chart.py b/_downloads/5eab8801e2724e6355c7a280335527fc/radar_chart.py deleted file mode 120000 index b4d204145e4..00000000000 --- a/_downloads/5eab8801e2724e6355c7a280335527fc/radar_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5eab8801e2724e6355c7a280335527fc/radar_chart.py \ No newline at end of file diff --git a/_downloads/5eaf3821d444df38a806657fbb3ace64/ganged_plots.ipynb b/_downloads/5eaf3821d444df38a806657fbb3ace64/ganged_plots.ipynb deleted file mode 120000 index de796fa3d39..00000000000 --- a/_downloads/5eaf3821d444df38a806657fbb3ace64/ganged_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5eaf3821d444df38a806657fbb3ace64/ganged_plots.ipynb \ No newline at end of file diff --git a/_downloads/5eb25e6cd24e1159104a6379d41dc21b/arrow_guide.py b/_downloads/5eb25e6cd24e1159104a6379d41dc21b/arrow_guide.py deleted file mode 100644 index e895b48cdd7..00000000000 --- a/_downloads/5eb25e6cd24e1159104a6379d41dc21b/arrow_guide.py +++ /dev/null @@ -1,110 +0,0 @@ -""" -=========== -Arrow guide -=========== - -Adding arrow patches to plots. - -Arrows are often used to annotate plots. This tutorial shows how to plot arrows -that behave differently when the data limits on a plot are changed. In general, -points on a plot can either be fixed in "data space" or "display space". -Something plotted in data space moves when the data limits are altered - an -example would the points in a scatter plot. Something plotted in display space -stays static when data limits are altered - an example would be a figure title -or the axis labels. - -Arrows consist of a head (and possibly a tail) and a stem drawn between a -start point and end point, called 'anchor points' from now on. -Here we show three use cases for plotting arrows, depending on whether the -head or anchor points need to be fixed in data or display space: - - 1. Head shape fixed in display space, anchor points fixed in data space - 2. Head shape and anchor points fixed in display space - 3. Entire patch fixed in data space - -Below each use case is presented in turn. -""" -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt -x_tail = 0.1 -y_tail = 0.1 -x_head = 0.9 -y_head = 0.9 -dx = x_head - x_tail -dy = y_head - y_tail - - -############################################################################### -# Head shape fixed in display space and anchor points fixed in data space -# ----------------------------------------------------------------------- -# -# This is useful if you are annotating a plot, and don't want the arrow to -# to change shape or position if you pan or scale the plot. Note that when -# the axis limits change -# -# In this case we use `.patches.FancyArrowPatch` -# -# Note that when the axis limits are changed, the arrow shape stays the same, -# but the anchor points move. - -fig, axs = plt.subplots(nrows=2) -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100) -axs[0].add_patch(arrow) - -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100) -axs[1].add_patch(arrow) -axs[1].set_xlim(0, 2) -axs[1].set_ylim(0, 2) - -############################################################################### -# Head shape and anchor points fixed in display space -# --------------------------------------------------- -# -# This is useful if you are annotating a plot, and don't want the arrow to -# to change shape or position if you pan or scale the plot. -# -# In this case we use `.patches.FancyArrowPatch`, and pass the keyword argument -# ``transform=ax.transAxes`` where ``ax`` is the axes we are adding the patch -# to. -# -# Note that when the axis limits are changed, the arrow shape and location -# stays the same. - -fig, axs = plt.subplots(nrows=2) -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100, - transform=axs[0].transAxes) -axs[0].add_patch(arrow) - -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100, - transform=axs[1].transAxes) -axs[1].add_patch(arrow) -axs[1].set_xlim(0, 2) -axs[1].set_ylim(0, 2) - - -############################################################################### -# Head shape and anchor points fixed in data space -# ------------------------------------------------ -# -# In this case we use `.patches.Arrow` -# -# Note that when the axis limits are changed, the arrow shape and location -# changes. - -fig, axs = plt.subplots(nrows=2) - -arrow = mpatches.Arrow(x_tail, y_tail, dx, dy) -axs[0].add_patch(arrow) - -arrow = mpatches.Arrow(x_tail, y_tail, dx, dy) -axs[1].add_patch(arrow) -axs[1].set_xlim(0, 2) -axs[1].set_ylim(0, 2) - -############################################################################### - -plt.show() diff --git a/_downloads/5eb54086dea02e54c4ea588d5296f0d5/voxels_numpy_logo.py b/_downloads/5eb54086dea02e54c4ea588d5296f0d5/voxels_numpy_logo.py deleted file mode 100644 index 38b00b49f4d..00000000000 --- a/_downloads/5eb54086dea02e54c4ea588d5296f0d5/voxels_numpy_logo.py +++ /dev/null @@ -1,49 +0,0 @@ -''' -=============================== -3D voxel plot of the numpy logo -=============================== - -Demonstrates using ``ax.voxels`` with uneven coordinates -''' -import matplotlib.pyplot as plt -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def explode(data): - size = np.array(data.shape)*2 - data_e = np.zeros(size - 1, dtype=data.dtype) - data_e[::2, ::2, ::2] = data - return data_e - -# build up the numpy logo -n_voxels = np.zeros((4, 3, 4), dtype=bool) -n_voxels[0, 0, :] = True -n_voxels[-1, 0, :] = True -n_voxels[1, 0, 2] = True -n_voxels[2, 0, 1] = True -facecolors = np.where(n_voxels, '#FFD65DC0', '#7A88CCC0') -edgecolors = np.where(n_voxels, '#BFAB6E', '#7D84A6') -filled = np.ones(n_voxels.shape) - -# upscale the above voxel image, leaving gaps -filled_2 = explode(filled) -fcolors_2 = explode(facecolors) -ecolors_2 = explode(edgecolors) - -# Shrink the gaps -x, y, z = np.indices(np.array(filled_2.shape) + 1).astype(float) // 2 -x[0::2, :, :] += 0.05 -y[:, 0::2, :] += 0.05 -z[:, :, 0::2] += 0.05 -x[1::2, :, :] += 0.95 -y[:, 1::2, :] += 0.95 -z[:, :, 1::2] += 0.95 - -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(x, y, z, filled_2, facecolors=fcolors_2, edgecolors=ecolors_2) - -plt.show() diff --git a/_downloads/5ec02f4ec15493f110d543d72a17642d/dark_background.ipynb b/_downloads/5ec02f4ec15493f110d543d72a17642d/dark_background.ipynb deleted file mode 120000 index 1412683f88d..00000000000 --- a/_downloads/5ec02f4ec15493f110d543d72a17642d/dark_background.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5ec02f4ec15493f110d543d72a17642d/dark_background.ipynb \ No newline at end of file diff --git a/_downloads/5ec651455c393fcd0980019f225acb06/stix_fonts_demo.py b/_downloads/5ec651455c393fcd0980019f225acb06/stix_fonts_demo.py deleted file mode 120000 index 24c274d1cd1..00000000000 --- a/_downloads/5ec651455c393fcd0980019f225acb06/stix_fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5ec651455c393fcd0980019f225acb06/stix_fonts_demo.py \ No newline at end of file diff --git a/_downloads/5ecaed8cb649f50af1868e7a77ca6dac/zoom_window.ipynb b/_downloads/5ecaed8cb649f50af1868e7a77ca6dac/zoom_window.ipynb deleted file mode 120000 index 00bd8088d9a..00000000000 --- a/_downloads/5ecaed8cb649f50af1868e7a77ca6dac/zoom_window.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5ecaed8cb649f50af1868e7a77ca6dac/zoom_window.ipynb \ No newline at end of file diff --git a/_downloads/5eea7776cb12bb2ba1f9ee2be04afbab/animate_decay.ipynb b/_downloads/5eea7776cb12bb2ba1f9ee2be04afbab/animate_decay.ipynb deleted file mode 100644 index 69f8c9aa9ec..00000000000 --- a/_downloads/5eea7776cb12bb2ba1f9ee2be04afbab/animate_decay.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Decay\n\n\nThis example showcases:\n- using a generator to drive an animation,\n- changing axes limits during an animation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\n\ndef data_gen(t=0):\n cnt = 0\n while cnt < 1000:\n cnt += 1\n t += 0.1\n yield t, np.sin(2*np.pi*t) * np.exp(-t/10.)\n\n\ndef init():\n ax.set_ylim(-1.1, 1.1)\n ax.set_xlim(0, 10)\n del xdata[:]\n del ydata[:]\n line.set_data(xdata, ydata)\n return line,\n\nfig, ax = plt.subplots()\nline, = ax.plot([], [], lw=2)\nax.grid()\nxdata, ydata = [], []\n\n\ndef run(data):\n # update the data\n t, y = data\n xdata.append(t)\n ydata.append(y)\n xmin, xmax = ax.get_xlim()\n\n if t >= xmax:\n ax.set_xlim(xmin, 2*xmax)\n ax.figure.canvas.draw()\n line.set_data(xdata, ydata)\n\n return line,\n\nani = animation.FuncAnimation(fig, run, data_gen, blit=False, interval=10,\n repeat=False, init_func=init)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5eecb9f06f03ed4f4ba1007ab1042a51/inset_locator_demo.py b/_downloads/5eecb9f06f03ed4f4ba1007ab1042a51/inset_locator_demo.py deleted file mode 120000 index 209eb3cee87..00000000000 --- a/_downloads/5eecb9f06f03ed4f4ba1007ab1042a51/inset_locator_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5eecb9f06f03ed4f4ba1007ab1042a51/inset_locator_demo.py \ No newline at end of file diff --git a/_downloads/5efd39711d99eb3d43f246efabd351b5/random_walk.py b/_downloads/5efd39711d99eb3d43f246efabd351b5/random_walk.py deleted file mode 120000 index cf31e798a2d..00000000000 --- a/_downloads/5efd39711d99eb3d43f246efabd351b5/random_walk.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5efd39711d99eb3d43f246efabd351b5/random_walk.py \ No newline at end of file diff --git a/_downloads/5f0d541db27f114e40004e503e156c03/spine_placement_demo.py b/_downloads/5f0d541db27f114e40004e503e156c03/spine_placement_demo.py deleted file mode 120000 index af6dfe84c88..00000000000 --- a/_downloads/5f0d541db27f114e40004e503e156c03/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f0d541db27f114e40004e503e156c03/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/5f0ec0f7b23cd271f6e44b9cf56d0d8f/image_nonuniform.py b/_downloads/5f0ec0f7b23cd271f6e44b9cf56d0d8f/image_nonuniform.py deleted file mode 100644 index b429826c828..00000000000 --- a/_downloads/5f0ec0f7b23cd271f6e44b9cf56d0d8f/image_nonuniform.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -================ -Image Nonuniform -================ - -This illustrates the NonUniformImage class. It is not -available via an Axes method but it is easily added to an -Axes instance as shown here. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.image import NonUniformImage -from matplotlib import cm - -interp = 'nearest' - -# Linear x array for cell centers: -x = np.linspace(-4, 4, 9) - -# Highly nonlinear x array: -x2 = x**3 - -y = np.linspace(-4, 4, 9) - -z = np.sqrt(x[np.newaxis, :]**2 + y[:, np.newaxis]**2) - -fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True) -fig.suptitle('NonUniformImage class', fontsize='large') -ax = axs[0, 0] -im = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4), - cmap=cm.Purples) -im.set_data(x, y, z) -ax.images.append(im) -ax.set_xlim(-4, 4) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -ax = axs[0, 1] -im = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4), - cmap=cm.Purples) -im.set_data(x2, y, z) -ax.images.append(im) -ax.set_xlim(-64, 64) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -interp = 'bilinear' - -ax = axs[1, 0] -im = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4), - cmap=cm.Purples) -im.set_data(x, y, z) -ax.images.append(im) -ax.set_xlim(-4, 4) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -ax = axs[1, 1] -im = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4), - cmap=cm.Purples) -im.set_data(x2, y, z) -ax.images.append(im) -ax.set_xlim(-64, 64) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -plt.show() diff --git a/_downloads/5f1ec6446c6eb9cc81c1bcd07294293e/line_demo_dash_control.py b/_downloads/5f1ec6446c6eb9cc81c1bcd07294293e/line_demo_dash_control.py deleted file mode 120000 index 633285ff756..00000000000 --- a/_downloads/5f1ec6446c6eb9cc81c1bcd07294293e/line_demo_dash_control.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5f1ec6446c6eb9cc81c1bcd07294293e/line_demo_dash_control.py \ No newline at end of file diff --git a/_downloads/5f2429b8b67669d27dd7b75f3511ad60/cursor.py b/_downloads/5f2429b8b67669d27dd7b75f3511ad60/cursor.py deleted file mode 120000 index 772c97b4426..00000000000 --- a/_downloads/5f2429b8b67669d27dd7b75f3511ad60/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5f2429b8b67669d27dd7b75f3511ad60/cursor.py \ No newline at end of file diff --git a/_downloads/5f28215dd6e4e385c7b317d1a113df72/demo_annotation_box.ipynb b/_downloads/5f28215dd6e4e385c7b317d1a113df72/demo_annotation_box.ipynb deleted file mode 120000 index 8ba75bc1417..00000000000 --- a/_downloads/5f28215dd6e4e385c7b317d1a113df72/demo_annotation_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5f28215dd6e4e385c7b317d1a113df72/demo_annotation_box.ipynb \ No newline at end of file diff --git a/_downloads/5f2ae57802e697da94cbcaa2fd228513/pcolormesh_levels.ipynb b/_downloads/5f2ae57802e697da94cbcaa2fd228513/pcolormesh_levels.ipynb deleted file mode 120000 index 64abf750d62..00000000000 --- a/_downloads/5f2ae57802e697da94cbcaa2fd228513/pcolormesh_levels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f2ae57802e697da94cbcaa2fd228513/pcolormesh_levels.ipynb \ No newline at end of file diff --git a/_downloads/5f2bdf168bf2861262239a2e42c57a18/zorder_demo.py b/_downloads/5f2bdf168bf2861262239a2e42c57a18/zorder_demo.py deleted file mode 100644 index e13df715831..00000000000 --- a/_downloads/5f2bdf168bf2861262239a2e42c57a18/zorder_demo.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -=========== -Zorder Demo -=========== - -The default drawing order for axes is patches, lines, text. This -order is determined by the zorder attribute. The following defaults -are set - -======================= ======= -Artist Z-order -======================= ======= -Patch / PatchCollection 1 -Line2D / LineCollection 2 -Text 3 -======================= ======= - -You can change the order for individual artists by setting the zorder. Any -individual plot() call can set a value for the zorder of that particular item. - -In the fist subplot below, the lines are drawn above the patch -collection from the scatter, which is the default. - -In the subplot below, the order is reversed. - -The second figure shows how to control the zorder of individual lines. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x = np.random.random(20) -y = np.random.random(20) - -############################################################################### -# Lines on top of scatter - -plt.figure() -plt.subplot(211) -plt.plot(x, y, 'C3', lw=3) -plt.scatter(x, y, s=120) -plt.title('Lines on top of dots') - -# Scatter plot on top of lines -plt.subplot(212) -plt.plot(x, y, 'C3', zorder=1, lw=3) -plt.scatter(x, y, s=120, zorder=2) -plt.title('Dots on top of lines') -plt.tight_layout() - -############################################################################### -# A new figure, with individually ordered items - -x = np.linspace(0, 2*np.pi, 100) -plt.rcParams['lines.linewidth'] = 10 -plt.figure() -plt.plot(x, np.sin(x), label='zorder=10', zorder=10) # on top -plt.plot(x, np.sin(1.1*x), label='zorder=1', zorder=1) # bottom -plt.plot(x, np.sin(1.2*x), label='zorder=3', zorder=3) -plt.axhline(0, label='zorder=2', color='grey', zorder=2) -plt.title('Custom order of elements') -l = plt.legend(loc='upper right') -l.set_zorder(20) # put the legend on top -plt.show() diff --git a/_downloads/5f2c35d6ffe75884c672ca725851c0f4/figlegend_demo.py b/_downloads/5f2c35d6ffe75884c672ca725851c0f4/figlegend_demo.py deleted file mode 120000 index ab8e8aeffb1..00000000000 --- a/_downloads/5f2c35d6ffe75884c672ca725851c0f4/figlegend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5f2c35d6ffe75884c672ca725851c0f4/figlegend_demo.py \ No newline at end of file diff --git a/_downloads/5f2d07f210e0a054ec3192b58677bd20/bar_unit_demo.ipynb b/_downloads/5f2d07f210e0a054ec3192b58677bd20/bar_unit_demo.ipynb deleted file mode 100644 index 7c223be806d..00000000000 --- a/_downloads/5f2d07f210e0a054ec3192b58677bd20/bar_unit_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Group barchart with units\n\n\nThis is the same example as\n:doc:`the barchart` in\ncentimeters.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom basic_units import cm, inch\nimport matplotlib.pyplot as plt\n\n\nN = 5\nmenMeans = (150*cm, 160*cm, 146*cm, 172*cm, 155*cm)\nmenStd = (20*cm, 30*cm, 32*cm, 10*cm, 20*cm)\n\nfig, ax = plt.subplots()\n\nind = np.arange(N) # the x locations for the groups\nwidth = 0.35 # the width of the bars\np1 = ax.bar(ind, menMeans, width, bottom=0*cm, yerr=menStd)\n\n\nwomenMeans = (145*cm, 149*cm, 172*cm, 165*cm, 200*cm)\nwomenStd = (30*cm, 25*cm, 20*cm, 31*cm, 22*cm)\np2 = ax.bar(ind + width, womenMeans, width, bottom=0*cm, yerr=womenStd)\n\nax.set_title('Scores by group and gender')\nax.set_xticks(ind + width / 2)\nax.set_xticklabels(('G1', 'G2', 'G3', 'G4', 'G5'))\n\nax.legend((p1[0], p2[0]), ('Men', 'Women'))\nax.yaxis.set_units(inch)\nax.autoscale_view()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5f3872859796d879b948f3d5be32aa6b/demo_text_path.ipynb b/_downloads/5f3872859796d879b948f3d5be32aa6b/demo_text_path.ipynb deleted file mode 120000 index 0f30243286d..00000000000 --- a/_downloads/5f3872859796d879b948f3d5be32aa6b/demo_text_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5f3872859796d879b948f3d5be32aa6b/demo_text_path.ipynb \ No newline at end of file diff --git a/_downloads/5f38bd9956e4af8ecd27a366d33814b6/boxplot_demo.ipynb b/_downloads/5f38bd9956e4af8ecd27a366d33814b6/boxplot_demo.ipynb deleted file mode 120000 index cd64857db54..00000000000 --- a/_downloads/5f38bd9956e4af8ecd27a366d33814b6/boxplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f38bd9956e4af8ecd27a366d33814b6/boxplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/5f3d1f8553b39baede07092820685465/simple_axisline.py b/_downloads/5f3d1f8553b39baede07092820685465/simple_axisline.py deleted file mode 100644 index 9ec7283894f..00000000000 --- a/_downloads/5f3d1f8553b39baede07092820685465/simple_axisline.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=============== -Simple Axisline -=============== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axisartist.axislines import SubplotZero - - -fig = plt.figure() -fig.subplots_adjust(right=0.85) -ax = SubplotZero(fig, 1, 1, 1) -fig.add_subplot(ax) - -# make right and top axis invisible -ax.axis["right"].set_visible(False) -ax.axis["top"].set_visible(False) - -# make xzero axis (horizontal axis line through y=0) visible. -ax.axis["xzero"].set_visible(True) -ax.axis["xzero"].label.set_text("Axis Zero") - -ax.set_ylim(-2, 4) -ax.set_xlabel("Label X") -ax.set_ylabel("Label Y") -# or -#ax.axis["bottom"].label.set_text("Label X") -#ax.axis["left"].label.set_text("Label Y") - -# make new (right-side) yaxis, but with some offset -offset = (20, 0) -new_axisline = ax.get_grid_helper().new_fixed_axis - -ax.axis["right2"] = new_axisline(loc="right", offset=offset, axes=ax) -ax.axis["right2"].label.set_text("Label Y2") - -ax.plot([-2, 3, 2]) -plt.show() diff --git a/_downloads/5f40260aec5ec8a2bc5b93692a8de85c/ellipse_demo.py b/_downloads/5f40260aec5ec8a2bc5b93692a8de85c/ellipse_demo.py deleted file mode 120000 index 19414c6db6b..00000000000 --- a/_downloads/5f40260aec5ec8a2bc5b93692a8de85c/ellipse_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f40260aec5ec8a2bc5b93692a8de85c/ellipse_demo.py \ No newline at end of file diff --git a/_downloads/5f4339da70aa5ec3f04d7445efb0a4b4/arrow_guide.ipynb b/_downloads/5f4339da70aa5ec3f04d7445efb0a4b4/arrow_guide.ipynb deleted file mode 120000 index 3ecd1f7b25f..00000000000 --- a/_downloads/5f4339da70aa5ec3f04d7445efb0a4b4/arrow_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f4339da70aa5ec3f04d7445efb0a4b4/arrow_guide.ipynb \ No newline at end of file diff --git a/_downloads/5f4b379bb020fd582913f3ff6406f714/hatch_demo.ipynb b/_downloads/5f4b379bb020fd582913f3ff6406f714/hatch_demo.ipynb deleted file mode 120000 index ccf84fa6cea..00000000000 --- a/_downloads/5f4b379bb020fd582913f3ff6406f714/hatch_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/5f4b379bb020fd582913f3ff6406f714/hatch_demo.ipynb \ No newline at end of file diff --git a/_downloads/5f5babcd23d5c04c5411c5502efc5e11/secondary_axis.ipynb b/_downloads/5f5babcd23d5c04c5411c5502efc5e11/secondary_axis.ipynb deleted file mode 120000 index 28d5d7a3213..00000000000 --- a/_downloads/5f5babcd23d5c04c5411c5502efc5e11/secondary_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f5babcd23d5c04c5411c5502efc5e11/secondary_axis.ipynb \ No newline at end of file diff --git a/_downloads/5f66efc7e38115019644f8a04954e685/mplot3d.py b/_downloads/5f66efc7e38115019644f8a04954e685/mplot3d.py deleted file mode 120000 index 67ebc43c2c9..00000000000 --- a/_downloads/5f66efc7e38115019644f8a04954e685/mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f66efc7e38115019644f8a04954e685/mplot3d.py \ No newline at end of file diff --git a/_downloads/5f6bdbc456ed7d2090d44f94acae226f/accented_text.ipynb b/_downloads/5f6bdbc456ed7d2090d44f94acae226f/accented_text.ipynb deleted file mode 120000 index 557a3879748..00000000000 --- a/_downloads/5f6bdbc456ed7d2090d44f94acae226f/accented_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5f6bdbc456ed7d2090d44f94acae226f/accented_text.ipynb \ No newline at end of file diff --git a/_downloads/5f73beb5a3749f8f9c48997d000ccea1/axisartist.py b/_downloads/5f73beb5a3749f8f9c48997d000ccea1/axisartist.py deleted file mode 100644 index ce227e0ef26..00000000000 --- a/_downloads/5f73beb5a3749f8f9c48997d000ccea1/axisartist.py +++ /dev/null @@ -1,623 +0,0 @@ -r""" -============================== -Overview of axisartist toolkit -============================== - -The axisartist toolkit tutorial. - -.. warning:: - *axisartist* uses a custom Axes class - (derived from the mpl's original Axes class). - As a side effect, some commands (mostly tick-related) do not work. - -The *axisartist* contains a custom Axes class that is meant to support -curvilinear grids (e.g., the world coordinate system in astronomy). -Unlike mpl's original Axes class which uses Axes.xaxis and Axes.yaxis -to draw ticks, ticklines, etc., axisartist uses a special -artist (AxisArtist) that can handle ticks, ticklines, etc. for -curved coordinate systems. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png - :target: ../../gallery/axisartist/demo_floating_axis.html - :align: center - :scale: 50 - - Demo Floating Axis - -Since it uses special artists, some Matplotlib commands that work on -Axes.xaxis and Axes.yaxis may not work. - -.. _axisartist_users-guide-index: - -axisartist -========== - -The *axisartist* module provides a custom (and very experimental) Axes -class, where each axis (left, right, top, and bottom) have a separate -associated artist which is responsible for drawing the axis-line, ticks, -ticklabels, and labels. You can also create your own axis, which can pass -through a fixed position in the axes coordinate, or a fixed position -in the data coordinate (i.e., the axis floats around when viewlimit -changes). - -The axes class, by default, has its xaxis and yaxis invisible, and -has 4 additional artists which are responsible for drawing the 4 axis spines in -"left", "right", "bottom", and "top". They are accessed as -ax.axis["left"], ax.axis["right"], and so on, i.e., ax.axis is a -dictionary that contains artists (note that ax.axis is still a -callable method and it behaves as an original Axes.axis method in -Matplotlib). - -To create an axes, :: - - import mpl_toolkits.axisartist as AA - fig = plt.figure() - ax = AA.Axes(fig, [0.1, 0.1, 0.8, 0.8]) - fig.add_axes(ax) - -or to create a subplot :: - - ax = AA.Subplot(fig, 111) - fig.add_subplot(ax) - -For example, you can hide the right and top spines using:: - - ax.axis["right"].set_visible(False) - ax.axis["top"].set_visible(False) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisline3_001.png - :target: ../../gallery/axisartist/simple_axisline3.html - :align: center - :scale: 50 - - Simple Axisline3 - -It is also possible to add a horizontal axis. For example, you may have an -horizontal axis at y=0 (in data coordinate). :: - - ax.axis["y=0"] = ax.new_floating_axis(nth_coord=0, value=0) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axisartist1_001.png - :target: ../../gallery/axisartist/simple_axisartist1.html - :align: center - :scale: 50 - - Simple Axisartist1 - -Or a fixed axis with some offset :: - - # make new (right-side) yaxis, but with some offset - ax.axis["right2"] = ax.new_fixed_axis(loc="right", - offset=(20, 0)) - -axisartist with ParasiteAxes ----------------------------- - -Most commands in the axes_grid1 toolkit can take an axes_class keyword -argument, and the commands create an axes of the given class. For example, -to create a host subplot with axisartist.Axes, :: - - import mpl_toolkits.axisartist as AA - from mpl_toolkits.axes_grid1 import host_subplot - - host = host_subplot(111, axes_class=AA.Axes) - -Here is an example that uses ParasiteAxes. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_parasite_axes2_001.png - :target: ../../gallery/axisartist/demo_parasite_axes2.html - :align: center - :scale: 50 - - Demo Parasite Axes2 - -Curvilinear Grid ----------------- - -The motivation behind the AxisArtist module is to support a curvilinear grid -and ticks. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png - :target: ../../gallery/axisartist/demo_curvelinear_grid.html - :align: center - :scale: 50 - - Demo Curvelinear Grid - -Floating Axes -------------- - -AxisArtist also supports a Floating Axes whose outer axes are defined as -floating axis. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axes_001.png - :target: ../../gallery/axisartist/demo_floating_axes.html - :align: center - :scale: 50 - - Demo Floating Axes - -axisartist namespace -==================== - -The *axisartist* namespace includes a derived Axes implementation. The -biggest difference is that the artists responsible to draw axis line, -ticks, ticklabel and axis labels are separated out from the mpl's Axis -class, which are much more than artists in the original mpl. This -change was strongly motivated to support curvilinear grid. Here are a -few things that mpl_toolkits.axisartist.Axes is different from original -Axes from mpl. - -* Axis elements (axis line(spine), ticks, ticklabel and axis labels) - are drawn by a AxisArtist instance. Unlike Axis, left, right, top - and bottom axis are drawn by separate artists. And each of them may - have different tick location and different tick labels. - -* gridlines are drawn by a Gridlines instance. The change was - motivated that in curvilinear coordinate, a gridline may not cross - axis-lines (i.e., no associated ticks). In the original Axes class, - gridlines are tied to ticks. - -* ticklines can be rotated if necessary (i.e, along the gridlines) - -In summary, all these changes was to support - -* a curvilinear grid. -* a floating axis - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_floating_axis_001.png - :target: ../../gallery/axisartist/demo_floating_axis.html - :align: center - :scale: 50 - - Demo Floating Axis - -*mpl_toolkits.axisartist.Axes* class defines a *axis* attribute, which -is a dictionary of AxisArtist instances. By default, the dictionary -has 4 AxisArtist instances, responsible for drawing of left, right, -bottom and top axis. - -xaxis and yaxis attributes are still available, however they are set -to not visible. As separate artists are used for rendering axis, some -axis-related method in mpl may have no effect. -In addition to AxisArtist instances, the mpl_toolkits.axisartist.Axes will -have *gridlines* attribute (Gridlines), which obviously draws grid -lines. - -In both AxisArtist and Gridlines, the calculation of tick and grid -location is delegated to an instance of GridHelper class. -mpl_toolkits.axisartist.Axes class uses GridHelperRectlinear as a grid -helper. The GridHelperRectlinear class is a wrapper around the *xaxis* -and *yaxis* of mpl's original Axes, and it was meant to work as the -way how mpl's original axes works. For example, tick location changes -using set_ticks method and etc. should work as expected. But change in -artist properties (e.g., color) will not work in general, although -some effort has been made so that some often-change attributes (color, -etc.) are respected. - -AxisArtist -========== - -AxisArtist can be considered as a container artist with following -attributes which will draw ticks, labels, etc. - - * line - * major_ticks, major_ticklabels - * minor_ticks, minor_ticklabels - * offsetText - * label - -line ----- - -Derived from Line2d class. Responsible for drawing a spinal(?) line. - -major_ticks, minor_ticks ------------------------- - -Derived from Line2d class. Note that ticks are markers. - -major_ticklabels, minor_ticklabels ----------------------------------- - -Derived from Text. Note that it is not a list of Text artist, but a -single artist (similar to a collection). - -axislabel ---------- - -Derived from Text. - -Default AxisArtists -=================== - -By default, following for axis artists are defined.:: - - ax.axis["left"], ax.axis["bottom"], ax.axis["right"], ax.axis["top"] - -The ticklabels and axislabel of the top and the right axis are set to -not visible. - -For example, if you want to change the color attributes of -major_ticklabels of the bottom x-axis :: - - ax.axis["bottom"].major_ticklabels.set_color("b") - -Similarly, to make ticklabels invisible :: - - ax.axis["bottom"].major_ticklabels.set_visible(False) - -AxisArtist provides a helper method to control the visibility of ticks, -ticklabels, and label. To make ticklabel invisible, :: - - ax.axis["bottom"].toggle(ticklabels=False) - -To make all of ticks, ticklabels, and (axis) label invisible :: - - ax.axis["bottom"].toggle(all=False) - -To turn all off but ticks on :: - - ax.axis["bottom"].toggle(all=False, ticks=True) - -To turn all on but (axis) label off :: - - ax.axis["bottom"].toggle(all=True, label=False)) - -ax.axis's __getitem__ method can take multiple axis names. For -example, to turn ticklabels of "top" and "right" axis on, :: - - ax.axis["top","right"].toggle(ticklabels=True)) - -Note that 'ax.axis["top","right"]' returns a simple proxy object that translate above code to something like below. :: - - for n in ["top","right"]: - ax.axis[n].toggle(ticklabels=True)) - -So, any return values in the for loop are ignored. And you should not -use it anything more than a simple method. - -Like the list indexing ":" means all items, i.e., :: - - ax.axis[:].major_ticks.set_color("r") - -changes tick color in all axis. - -HowTo -===== - -1. Changing tick locations and label. - - Same as the original mpl's axes.:: - - ax.set_xticks([1,2,3]) - -2. Changing axis properties like color, etc. - - Change the properties of appropriate artists. For example, to change - the color of the ticklabels:: - - ax.axis["left"].major_ticklabels.set_color("r") - -3. To change the attributes of multiple axis:: - - ax.axis["left","bottom"].major_ticklabels.set_color("r") - - or to change the attributes of all axis:: - - ax.axis[:].major_ticklabels.set_color("r") - -4. To change the tick size (length), you need to use - axis.major_ticks.set_ticksize method. To change the direction of - the ticks (ticks are in opposite direction of ticklabels by - default), use axis.major_ticks.set_tick_out method. - - To change the pad between ticks and ticklabels, use - axis.major_ticklabels.set_pad method. - - To change the pad between ticklabels and axis label, - axis.label.set_pad method. - -Rotation and Alignment of TickLabels -==================================== - -This is also quite different from the original mpl and can be -confusing. When you want to rotate the ticklabels, first consider -using "set_axis_direction" method. :: - - ax1.axis["left"].major_ticklabels.set_axis_direction("top") - ax1.axis["right"].label.set_axis_direction("left") - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction01_001.png - :target: ../../gallery/axisartist/simple_axis_direction01.html - :align: center - :scale: 50 - - Simple Axis Direction01 - -The parameter for set_axis_direction is one of ["left", "right", -"bottom", "top"]. - -You must understand some underlying concept of directions. - - 1. There is a reference direction which is defined as the direction - of the axis line with increasing coordinate. For example, the - reference direction of the left x-axis is from bottom to top. - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step01_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step01.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 01 - - The direction, text angle, and alignments of the ticks, ticklabels and - axis-label is determined with respect to the reference direction - - 2. *ticklabel_direction* is either the right-hand side (+) of the - reference direction or the left-hand side (-). - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step02_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step02.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 02 - - 3. same for the *label_direction* - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step03_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step03.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 03 - - 4. ticks are by default drawn toward the opposite direction of the ticklabels. - - 5. text rotation of ticklabels and label is determined in reference - to the *ticklabel_direction* or *label_direction*, - respectively. The rotation of ticklabels and label is anchored. - - .. figure:: ../../gallery/axisartist/images/sphx_glr_axis_direction_demo_step04_001.png - :target: ../../gallery/axisartist/axis_direction_demo_step04.html - :align: center - :scale: 50 - - Axis Direction Demo - Step 04 - -On the other hand, there is a concept of "axis_direction". This is a -default setting of above properties for each, "bottom", "left", "top", -and "right" axis. - - ========== =========== ========= ========== ========= ========== - ? ? left bottom right top - ---------- ----------- --------- ---------- --------- ---------- - axislabel direction '-' '+' '+' '-' - axislabel rotation 180 0 0 180 - axislabel va center top center bottom - axislabel ha right center right center - ticklabel direction '-' '+' '+' '-' - ticklabels rotation 90 0 -90 180 - ticklabel ha right center right center - ticklabel va center baseline center baseline - ========== =========== ========= ========== ========= ========== - -And, 'set_axis_direction("top")' means to adjust the text rotation -etc, for settings suitable for "top" axis. The concept of axis -direction can be more clear with curved axis. - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_axis_direction_001.png - :target: ../../gallery/axisartist/demo_axis_direction.html - :align: center - :scale: 50 - - Demo Axis Direction - -The axis_direction can be adjusted in the AxisArtist level, or in the -level of its child artists, i.e., ticks, ticklabels, and axis-label. :: - - ax1.axis["left"].set_axis_direction("top") - -changes axis_direction of all the associated artist with the "left" -axis, while :: - - ax1.axis["left"].major_ticklabels.set_axis_direction("top") - -changes the axis_direction of only the major_ticklabels. Note that -set_axis_direction in the AxisArtist level changes the -ticklabel_direction and label_direction, while changing the -axis_direction of ticks, ticklabels, and axis-label does not affect -them. - -If you want to make ticks outward and ticklabels inside the axes, -use invert_ticklabel_direction method. :: - - ax.axis[:].invert_ticklabel_direction() - -A related method is "set_tick_out". It makes ticks outward (as a -matter of fact, it makes ticks toward the opposite direction of the -default direction). :: - - ax.axis[:].major_ticks.set_tick_out(True) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_direction03_001.png - :target: ../../gallery/axisartist/simple_axis_direction03.html - :align: center - :scale: 50 - - Simple Axis Direction03 - -So, in summary, - - * AxisArtist's methods - * set_axis_direction : "left", "right", "bottom", or "top" - * set_ticklabel_direction : "+" or "-" - * set_axislabel_direction : "+" or "-" - * invert_ticklabel_direction - * Ticks' methods (major_ticks and minor_ticks) - * set_tick_out : True or False - * set_ticksize : size in points - * TickLabels' methods (major_ticklabels and minor_ticklabels) - * set_axis_direction : "left", "right", "bottom", or "top" - * set_rotation : angle with respect to the reference direction - * set_ha and set_va : see below - * AxisLabels' methods (label) - * set_axis_direction : "left", "right", "bottom", or "top" - * set_rotation : angle with respect to the reference direction - * set_ha and set_va - -Adjusting ticklabels alignment ------------------------------- - -Alignment of TickLabels are treated specially. See below - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_ticklabel_alignment_001.png - :target: ../../gallery/axisartist/demo_ticklabel_alignment.html - :align: center - :scale: 50 - - Demo Ticklabel Alignment - -Adjusting pad -------------- - -To change the pad between ticks and ticklabels :: - - ax.axis["left"].major_ticklabels.set_pad(10) - -Or ticklabels and axis-label :: - - ax.axis["left"].label.set_pad(10) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_simple_axis_pad_001.png - :target: ../../gallery/axisartist/simple_axis_pad.html - :align: center - :scale: 50 - - Simple Axis Pad - -GridHelper -========== - -To actually define a curvilinear coordinate, you have to use your own -grid helper. A generalised version of grid helper class is supplied -and this class should suffice in most of cases. A user may provide -two functions which defines a transformation (and its inverse pair) -from the curved coordinate to (rectilinear) image coordinate. Note that -while ticks and grids are drawn for curved coordinate, the data -transform of the axes itself (ax.transData) is still rectilinear -(image) coordinate. :: - - from mpl_toolkits.axisartist.grid_helper_curvelinear \ - import GridHelperCurveLinear - from mpl_toolkits.axisartist import Subplot - - # from curved coordinate to rectlinear coordinate. - def tr(x, y): - x, y = np.asarray(x), np.asarray(y) - return x, y-x - - # from rectlinear coordinate to curved coordinate. - def inv_tr(x,y): - x, y = np.asarray(x), np.asarray(y) - return x, y+x - - grid_helper = GridHelperCurveLinear((tr, inv_tr)) - - ax1 = Subplot(fig, 1, 1, 1, grid_helper=grid_helper) - - fig.add_subplot(ax1) - -You may use matplotlib's Transform instance instead (but a -inverse transformation must be defined). Often, coordinate range in a -curved coordinate system may have a limited range, or may have -cycles. In those cases, a more customized version of grid helper is -required. :: - - import mpl_toolkits.axisartist.angle_helper as angle_helper - - # PolarAxes.PolarTransform takes radian. However, we want our coordinate - # system in degree - tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform() - - # extreme finder : find a range of coordinate. - # 20, 20 : number of sampling points along x, y direction - # The first coordinate (longitude, but theta in polar) - # has a cycle of 360 degree. - # The second coordinate (latitude, but radius in polar) has a minimum of 0 - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle = 360, - lat_cycle = None, - lon_minmax = None, - lat_minmax = (0, np.inf), - ) - - # Find a grid values appropriate for the coordinate (degree, - # minute, second). The argument is a approximate number of grids. - grid_locator1 = angle_helper.LocatorDMS(12) - - # And also uses an appropriate formatter. Note that,the - # acceptable Locator and Formatter class is a bit different than - # that of mpl's, and you cannot directly use mpl's Locator and - # Formatter here (but may be possible in the future). - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - tick_formatter1=tick_formatter1 - ) - -Again, the *transData* of the axes is still a rectilinear coordinate -(image coordinate). You may manually do conversion between two -coordinates, or you may use Parasite Axes for convenience.:: - - ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper) - - # A parasite axes with given transform - ax2 = ParasiteAxesAuxTrans(ax1, tr, "equal") - # note that ax2.transData == tr + ax1.transData - # Anything you draw in ax2 will match the ticks and grids of ax1. - ax1.parasites.append(ax2) - -.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png - :target: ../../gallery/axisartist/demo_curvelinear_grid.html - :align: center - :scale: 50 - - Demo Curvelinear Grid - -FloatingAxis -============ - -A floating axis is an axis one of whose data coordinate is fixed, i.e, -its location is not fixed in Axes coordinate but changes as axes data -limits changes. A floating axis can be created using -*new_floating_axis* method. However, it is your responsibility that -the resulting AxisArtist is properly added to the axes. A recommended -way is to add it as an item of Axes's axis attribute.:: - - # floating axis whose first (index starts from 0) coordinate - # (theta) is fixed at 60 - - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 60) - axis.label.set_text(r"$\theta = 60^{\circ}$") - axis.label.set_visible(True) - -See the first example of this page. - -Current Limitations and TODO's -============================== - -The code need more refinement. Here is a incomplete list of issues and TODO's - -* No easy way to support a user customized tick location (for - curvilinear grid). A new Locator class needs to be created. - -* FloatingAxis may have coordinate limits, e.g., a floating axis of x - = 0, but y only spans from 0 to 1. - -* The location of axislabel of FloatingAxis needs to be optionally - given as a coordinate value. ex, a floating axis of x=0 with label at y=1 -""" diff --git a/_downloads/5f7c198f376d4f7ffa6772bb8c086db2/shared_axis_demo.ipynb b/_downloads/5f7c198f376d4f7ffa6772bb8c086db2/shared_axis_demo.ipynb deleted file mode 100644 index d3a369e4cd1..00000000000 --- a/_downloads/5f7c198f376d4f7ffa6772bb8c086db2/shared_axis_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Shared Axis Demo\n\n\nYou can share the x or y axis limits for one axis with another by\npassing an axes instance as a sharex or sharey kwarg.\n\nChanging the axis limits on one axes will be reflected automatically\nin the other, and vice-versa, so when you navigate with the toolbar\nthe axes will follow each other on their shared axes. Ditto for\nchanges in the axis scaling (e.g., log vs linear). However, it is\npossible to have differences in tick labeling, e.g., you can selectively\nturn off the tick labels on one axes.\n\nThe example below shows how to customize the tick labels on the\nvarious axes. Shared axes share the tick locator, tick formatter,\nview limits, and transformation (e.g., log, linear). But the ticklabels\nthemselves do not share properties. This is a feature and not a bug,\nbecause you may want to make the tick labels smaller on the upper\naxes, e.g., in the example below.\n\nIf you want to turn off the ticklabels for a given axes (e.g., on\nsubplot(211) or subplot(212), you cannot do the standard trick::\n\n setp(ax2, xticklabels=[])\n\nbecause this changes the tick Formatter, which is shared among all\naxes. But you can alter the visibility of the labels, which is a\nproperty::\n\n setp(ax2.get_xticklabels(), visible=False)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.01, 5.0, 0.01)\ns1 = np.sin(2 * np.pi * t)\ns2 = np.exp(-t)\ns3 = np.sin(4 * np.pi * t)\n\nax1 = plt.subplot(311)\nplt.plot(t, s1)\nplt.setp(ax1.get_xticklabels(), fontsize=6)\n\n# share x only\nax2 = plt.subplot(312, sharex=ax1)\nplt.plot(t, s2)\n# make these tick labels invisible\nplt.setp(ax2.get_xticklabels(), visible=False)\n\n# share x and y\nax3 = plt.subplot(313, sharex=ax1, sharey=ax1)\nplt.plot(t, s3)\nplt.xlim(0.01, 5.0)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5f86204596855a6a54f5bb73c878d5d6/tutorials_python.zip b/_downloads/5f86204596855a6a54f5bb73c878d5d6/tutorials_python.zip deleted file mode 100644 index 929b0f99447..00000000000 Binary files a/_downloads/5f86204596855a6a54f5bb73c878d5d6/tutorials_python.zip and /dev/null differ diff --git a/_downloads/5f88c49c80a6402b4988de3da570400d/patch_collection.py b/_downloads/5f88c49c80a6402b4988de3da570400d/patch_collection.py deleted file mode 120000 index 9a3b20430e6..00000000000 --- a/_downloads/5f88c49c80a6402b4988de3da570400d/patch_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5f88c49c80a6402b4988de3da570400d/patch_collection.py \ No newline at end of file diff --git a/_downloads/5f8a147f8bf474722285f3497f01f304/annotation_demo.py b/_downloads/5f8a147f8bf474722285f3497f01f304/annotation_demo.py deleted file mode 120000 index cb85cba6220..00000000000 --- a/_downloads/5f8a147f8bf474722285f3497f01f304/annotation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5f8a147f8bf474722285f3497f01f304/annotation_demo.py \ No newline at end of file diff --git a/_downloads/5f8e50a9922d0e7478bb0a8659d3cade/embedding_in_wx5_sgskip.py b/_downloads/5f8e50a9922d0e7478bb0a8659d3cade/embedding_in_wx5_sgskip.py deleted file mode 120000 index 8756abe1665..00000000000 --- a/_downloads/5f8e50a9922d0e7478bb0a8659d3cade/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f8e50a9922d0e7478bb0a8659d3cade/embedding_in_wx5_sgskip.py \ No newline at end of file diff --git a/_downloads/5f948f7cc4fcf3df1179f926450ee905/irregulardatagrid.ipynb b/_downloads/5f948f7cc4fcf3df1179f926450ee905/irregulardatagrid.ipynb deleted file mode 120000 index 014639f65f9..00000000000 --- a/_downloads/5f948f7cc4fcf3df1179f926450ee905/irregulardatagrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5f948f7cc4fcf3df1179f926450ee905/irregulardatagrid.ipynb \ No newline at end of file diff --git a/_downloads/5f96e9c3090dbe1028725071e100d1bc/watermark_image.py b/_downloads/5f96e9c3090dbe1028725071e100d1bc/watermark_image.py deleted file mode 120000 index 84706bf45d7..00000000000 --- a/_downloads/5f96e9c3090dbe1028725071e100d1bc/watermark_image.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5f96e9c3090dbe1028725071e100d1bc/watermark_image.py \ No newline at end of file diff --git a/_downloads/5f9aa4b6fa4b2e1fcdffbad453556752/axes_grid.ipynb b/_downloads/5f9aa4b6fa4b2e1fcdffbad453556752/axes_grid.ipynb deleted file mode 100644 index 4a58cd4b409..00000000000 --- a/_downloads/5f9aa4b6fa4b2e1fcdffbad453556752/axes_grid.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Overview of axes_grid1 toolkit\n\n\nControlling the layout of plots with the axes_grid toolkit.\n\n\nWhat is axes_grid1 toolkit?\n===========================\n\n*axes_grid1* is a collection of helper classes to ease displaying\n(multiple) images with matplotlib. In matplotlib, the axes location\n(and size) is specified in the normalized figure coordinates, which\nmay not be ideal for displaying images that needs to have a given\naspect ratio. For example, it helps if you have a colorbar whose\nheight always matches that of the image. `ImageGrid`_, `RGB Axes`_ and\n`AxesDivider`_ are helper classes that deals with adjusting the\nlocation of (multiple) Axes. They provides a framework to adjust the\nposition of multiple axes at the drawing time. `ParasiteAxes`_\nprovides twinx(or twiny)-like features so that you can plot different\ndata (e.g., different y-scale) in a same Axes. `AnchoredArtists`_\nincludes custom artists which are placed at some anchored position,\nlike the legend.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png\n :target: ../../gallery/axes_grid1/demo_axes_grid.html\n :align: center\n :scale: 50\n\n Demo Axes Grid\n\n\naxes_grid1\n==========\n\nImageGrid\n---------\n\n\nA class that creates a grid of Axes. In matplotlib, the axes location\n(and size) is specified in the normalized figure coordinates. This may\nnot be ideal for images that needs to be displayed with a given aspect\nratio. For example, displaying images of a same size with some fixed\npadding between them cannot be easily done in matplotlib. ImageGrid is\nused in such case.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid_001.png\n :target: ../../gallery/axes_grid1/simple_axesgrid.html\n :align: center\n :scale: 50\n\n Simple Axesgrid\n\n* The position of each axes is determined at the drawing time (see\n `AxesDivider`_), so that the size of the entire grid fits in the\n given rectangle (like the aspect of axes). Note that in this example,\n the paddings between axes are fixed even if you changes the figure\n size.\n\n* axes in the same column has a same axes width (in figure\n coordinate), and similarly, axes in the same row has a same\n height. The widths (height) of the axes in the same row (column) are\n scaled according to their view limits (xlim or ylim).\n\n .. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid2_001.png\n :target: ../../gallery/axes_grid1/simple_axesgrid2.html\n :align: center\n :scale: 50\n\n Simple Axes Grid\n\n* xaxis are shared among axes in a same column. Similarly, yaxis are\n shared among axes in a same row. Therefore, changing axis properties\n (view limits, tick location, etc. either by plot commands or using\n your mouse in interactive backends) of one axes will affect all\n other shared axes.\n\n\n\nWhen initialized, ImageGrid creates given number (*ngrids* or *ncols* *\n*nrows* if *ngrids* is None) of Axes instances. A sequence-like\ninterface is provided to access the individual Axes instances (e.g.,\ngrid[0] is the first Axes in the grid. See below for the order of\naxes).\n\n\n\nImageGrid takes following arguments,\n\n\n ============= ======== ================================================\n Name Default Description\n ============= ======== ================================================\n fig\n rect\n nrows_ncols number of rows and cols. e.g., (2,2)\n ngrids None number of grids. nrows x ncols if None\n direction \"row\" increasing direction of axes number. [row|column]\n axes_pad 0.02 pad between axes in inches\n add_all True Add axes to figures if True\n share_all False xaxis & yaxis of all axes are shared if True\n aspect True aspect of axes\n label_mode \"L\" location of tick labels thaw will be displayed.\n \"1\" (only the lower left axes),\n \"L\" (left most and bottom most axes),\n or \"all\".\n cbar_mode None [None|single|each]\n cbar_location \"right\" [right|top]\n cbar_pad None pad between image axes and colorbar axes\n cbar_size \"5%\" size of the colorbar\n axes_class None\n ============= ======== ================================================\n\n *rect*\n specifies the location of the grid. You can either specify\n coordinates of the rectangle to be used (e.g., (0.1, 0.1, 0.8, 0.8)\n as in the Axes), or the subplot-like position (e.g., \"121\").\n\n *direction*\n means the increasing direction of the axes number.\n\n *aspect*\n By default (False), widths and heights of axes in the grid are\n scaled independently. If True, they are scaled according to their\n data limits (similar to aspect parameter in mpl).\n\n *share_all*\n if True, xaxis and yaxis of all axes are shared.\n\n *direction*\n direction of increasing axes number. For \"row\",\n\n +---------+---------+\n | grid[0] | grid[1] |\n +---------+---------+\n | grid[2] | grid[3] |\n +---------+---------+\n\n For \"column\",\n\n +---------+---------+\n | grid[0] | grid[2] |\n +---------+---------+\n | grid[1] | grid[3] |\n +---------+---------+\n\nYou can also create a colorbar (or colorbars). You can have colorbar\nfor each axes (cbar_mode=\"each\"), or you can have a single colorbar\nfor the grid (cbar_mode=\"single\"). The colorbar can be placed on your\nright, or top. The axes for each colorbar is stored as a *cbar_axes*\nattribute.\n\n\n\nThe examples below show what you can do with ImageGrid.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png\n :target: ../../gallery/axes_grid1/demo_axes_grid.html\n :align: center\n :scale: 50\n\n Demo Axes Grid\n\n\nAxesDivider Class\n-----------------\n\nBehind the scene, the ImageGrid class and the RGBAxes class utilize the\nAxesDivider class, whose role is to calculate the location of the axes\nat drawing time. While a more about the AxesDivider is (will be)\nexplained in (yet to be written) AxesDividerGuide, direct use of the\nAxesDivider class will not be necessary for most users. The\naxes_divider module provides a helper function make_axes_locatable,\nwhich can be useful. It takes a existing axes instance and create a\ndivider for it. ::\n\n ax = subplot(1,1,1)\n divider = make_axes_locatable(ax)\n\n\n\n\n*make_axes_locatable* returns an instance of the AxesLocator class,\nderived from the Locator. It provides *append_axes* method that\ncreates a new axes on the given side of (\"top\", \"right\", \"bottom\" and\n\"left\") of the original axes.\n\n\n\ncolorbar whose height (or width) in sync with the master axes\n-------------------------------------------------------------\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_colorbar_001.png\n :target: ../../gallery/axes_grid1/simple_colorbar.html\n :align: center\n :scale: 50\n\n Simple Colorbar\n\n\n\n\nscatter_hist.py with AxesDivider\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe \"scatter_hist.py\" example in mpl can be rewritten using\n*make_axes_locatable*. ::\n\n axScatter = subplot(111)\n axScatter.scatter(x, y)\n axScatter.set_aspect(1.)\n\n # create new axes on the right and on the top of the current axes.\n divider = make_axes_locatable(axScatter)\n axHistx = divider.append_axes(\"top\", size=1.2, pad=0.1, sharex=axScatter)\n axHisty = divider.append_axes(\"right\", size=1.2, pad=0.1, sharey=axScatter)\n\n # the scatter plot:\n # histograms\n bins = np.arange(-lim, lim + binwidth, binwidth)\n axHistx.hist(x, bins=bins)\n axHisty.hist(y, bins=bins, orientation='horizontal')\n\n\nSee the full source code below.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_scatter_hist_locatable_axes_001.png\n :target: ../../gallery/axes_grid1/scatter_hist_locatable_axes.html\n :align: center\n :scale: 50\n\n Scatter Hist\n\n\nThe scatter_hist using the AxesDivider has some advantage over the\noriginal scatter_hist.py in mpl. For example, you can set the aspect\nratio of the scatter plot, even with the x-axis or y-axis is shared\naccordingly.\n\n\nParasiteAxes\n------------\n\nThe ParasiteAxes is an axes whose location is identical to its host\naxes. The location is adjusted in the drawing time, thus it works even\nif the host change its location (e.g., images).\n\nIn most cases, you first create a host axes, which provides a few\nmethod that can be used to create parasite axes. They are *twinx*,\n*twiny* (which are similar to twinx and twiny in the matplotlib) and\n*twin*. *twin* takes an arbitrary transformation that maps between the\ndata coordinates of the host axes and the parasite axes. *draw*\nmethod of the parasite axes are never called. Instead, host axes\ncollects artists in parasite axes and draw them as if they belong to\nthe host axes, i.e., artists in parasite axes are merged to those of\nthe host axes and then drawn according to their zorder. The host and\nparasite axes modifies some of the axes behavior. For example, color\ncycle for plot lines are shared between host and parasites. Also, the\nlegend command in host, creates a legend that includes lines in the\nparasite axes. To create a host axes, you may use *host_subplot* or\n*host_axes* command.\n\n\nExample 1. twinx\n~~~~~~~~~~~~~~~~\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple_001.png\n :target: ../../gallery/axes_grid1/parasite_simple.html\n :align: center\n :scale: 50\n\n Parasite Simple\n\nExample 2. twin\n~~~~~~~~~~~~~~~\n\n*twin* without a transform argument assumes that the parasite axes has the\nsame data transform as the host. This can be useful when you want the\ntop(or right)-axis to have different tick-locations, tick-labels, or\ntick-formatter for bottom(or left)-axis. ::\n\n ax2 = ax.twin() # now, ax2 is responsible for \"top\" axis and \"right\" axis\n ax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi])\n ax2.set_xticklabels([\"0\", r\"$\\frac{1}{2}\\pi$\",\n r\"$\\pi$\", r\"$\\frac{3}{2}\\pi$\", r\"$2\\pi$\"])\n\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axisline4_001.png\n :target: ../../gallery/axes_grid1/simple_axisline4.html\n :align: center\n :scale: 50\n\n Simple Axisline4\n\n\n\nA more sophisticated example using twin. Note that if you change the\nx-limit in the host axes, the x-limit of the parasite axes will change\naccordingly.\n\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple2_001.png\n :target: ../../gallery/axes_grid1/parasite_simple2.html\n :align: center\n :scale: 50\n\n Parasite Simple2\n\n\nAnchoredArtists\n---------------\n\nIt's a collection of artists whose location is anchored to the (axes)\nbbox, like the legend. It is derived from *OffsetBox* in mpl, and\nartist need to be drawn in the canvas coordinate. But, there is a\nlimited support for an arbitrary transform. For example, the ellipse\nin the example below will have width and height in the data\ncoordinate.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_anchored_artists_001.png\n :target: ../../gallery/axes_grid1/simple_anchored_artists.html\n :align: center\n :scale: 50\n\n Simple Anchored Artists\n\n\nInsetLocator\n------------\n\n:mod:`mpl_toolkits.axes_grid1.inset_locator` provides helper classes\nand functions to place your (inset) axes at the anchored position of\nthe parent axes, similarly to AnchoredArtist.\n\nUsing :func:`mpl_toolkits.axes_grid1.inset_locator.inset_axes`, you\ncan have inset axes whose size is either fixed, or a fixed proportion\nof the parent axes. For example,::\n\n inset_axes = inset_axes(parent_axes,\n width=\"30%\", # width = 30% of parent_bbox\n height=1., # height : 1 inch\n loc='lower left')\n\ncreates an inset axes whose width is 30% of the parent axes and whose\nheight is fixed at 1 inch.\n\nYou may creates your inset whose size is determined so that the data\nscale of the inset axes to be that of the parent axes multiplied by\nsome factor. For example, ::\n\n inset_axes = zoomed_inset_axes(ax,\n 0.5, # zoom = 0.5\n loc='upper right')\n\ncreates an inset axes whose data scale is half of the parent axes.\nHere is complete examples.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo_001.png\n :target: ../../gallery/axes_grid1/inset_locator_demo.html\n :align: center\n :scale: 50\n\n Inset Locator Demo\n\nFor example, :func:`zoomed_inset_axes` can be used when you want the\ninset represents the zoom-up of the small portion in the parent axes.\nAnd :mod:`~mpl_toolkits/axes_grid/inset_locator` provides a helper\nfunction :func:`mark_inset` to mark the location of the area\nrepresented by the inset axes.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo2_001.png\n :target: ../../gallery/axes_grid1/inset_locator_demo2.html\n :align: center\n :scale: 50\n\n Inset Locator Demo2\n\n\nRGB Axes\n~~~~~~~~\n\nRGBAxes is a helper class to conveniently show RGB composite\nimages. Like ImageGrid, the location of axes are adjusted so that the\narea occupied by them fits in a given rectangle. Also, the xaxis and\nyaxis of each axes are shared. ::\n\n from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes\n\n fig = plt.figure()\n ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8])\n\n r, g, b = get_rgb() # r,g,b are 2-d images\n ax.imshow_rgb(r, g, b,\n origin=\"lower\", interpolation=\"nearest\")\n\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_rgb_001.png\n :target: ../../gallery/axes_grid1/simple_rgb.html\n :align: center\n :scale: 50\n\n Simple Rgb\n\n\nAxesDivider\n===========\n\nThe axes_divider module provides helper classes to adjust the axes\npositions of a set of images at drawing time.\n\n* :mod:`~mpl_toolkits.axes_grid1.axes_size` provides a class of\n units that are used to determine the size of each axes. For example,\n you can specify a fixed size.\n\n* :class:`~mpl_toolkits.axes_grid1.axes_size.Divider` is the class\n that calculates the axes position. It divides the given\n rectangular area into several areas. The divider is initialized by\n setting the lists of horizontal and vertical sizes on which the division\n will be based. Then use\n :meth:`~mpl_toolkits.axes_grid1.axes_size.Divider.new_locator`,\n which returns a callable object that can be used to set the\n axes_locator of the axes.\n\n\nFirst, initialize the divider by specifying its grids, i.e.,\nhorizontal and vertical.\n\nfor example,::\n\n rect = [0.2, 0.2, 0.6, 0.6]\n horiz=[h0, h1, h2, h3]\n vert=[v0, v1, v2]\n divider = Divider(fig, rect, horiz, vert)\n\nwhere, rect is a bounds of the box that will be divided and h0,..h3,\nv0,..v2 need to be an instance of classes in the\n:mod:`~mpl_toolkits.axes_grid1.axes_size`. They have *get_size* method\nthat returns a tuple of two floats. The first float is the relative\nsize, and the second float is the absolute size. Consider a following\ngrid.\n\n+-----+-----+-----+-----+\n| v0 | | | |\n+-----+-----+-----+-----+\n| v1 | | | |\n+-----+-----+-----+-----+\n|h0,v2| h1 | h2 | h3 |\n+-----+-----+-----+-----+\n\n\n* v0 => 0, 2\n* v1 => 2, 0\n* v2 => 3, 0\n\nThe height of the bottom row is always 2 (axes_divider internally\nassumes that the unit is inches). The first and the second rows have a\nheight ratio of 2:3. For example, if the total height of the grid is 6,\nthen the first and second row will each occupy 2/(2+3) and 3/(2+3) of\n(6-1) inches. The widths of the horizontal columns will be similarly\ndetermined. When the aspect ratio is set, the total height (or width) will\nbe adjusted accordingly.\n\n\nThe :mod:`mpl_toolkits.axes_grid1.axes_size` contains several classes\nthat can be used to set the horizontal and vertical configurations. For\nexample, for vertical configuration one could use::\n\n from mpl_toolkits.axes_grid1.axes_size import Fixed, Scaled\n vert = [Fixed(2), Scaled(2), Scaled(3)]\n\nAfter you set up the divider object, then you create a locator\ninstance that will be given to the axes object.::\n\n locator = divider.new_locator(nx=0, ny=1)\n ax.set_axes_locator(locator)\n\nThe return value of the new_locator method is an instance of the\nAxesLocator class. It is a callable object that returns the\nlocation and size of the cell at the first column and the second row.\nYou may create a locator that spans over multiple cells.::\n\n locator = divider.new_locator(nx=0, nx=2, ny=1)\n\nThe above locator, when called, will return the position and size of\nthe cells spanning the first and second column and the first row. In\nthis example, it will return [0:2, 1].\n\nSee the example,\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider2_001.png\n :target: ../../gallery/axes_grid1/simple_axes_divider2.html\n :align: center\n :scale: 50\n\n Simple Axes Divider2\n\nYou can adjust the size of each axes according to its x or y\ndata limits (AxesX and AxesY).\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider3_001.png\n :target: ../../gallery/axes_grid1/simple_axes_divider3.html\n :align: center\n :scale: 50\n\n Simple Axes Divider3\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5fa3185e1469a2a8cc85be7ed0ce78f8/linestyles.ipynb b/_downloads/5fa3185e1469a2a8cc85be7ed0ce78f8/linestyles.ipynb deleted file mode 120000 index 8c66247b407..00000000000 --- a/_downloads/5fa3185e1469a2a8cc85be7ed0ce78f8/linestyles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5fa3185e1469a2a8cc85be7ed0ce78f8/linestyles.ipynb \ No newline at end of file diff --git a/_downloads/5faec6600ffe3803a9178a70360b7660/tick_xlabel_top.ipynb b/_downloads/5faec6600ffe3803a9178a70360b7660/tick_xlabel_top.ipynb deleted file mode 120000 index e387c2f73aa..00000000000 --- a/_downloads/5faec6600ffe3803a9178a70360b7660/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5faec6600ffe3803a9178a70360b7660/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/5fbb458fc0bbe2338f76bd7ad1b489a3/violinplot.ipynb b/_downloads/5fbb458fc0bbe2338f76bd7ad1b489a3/violinplot.ipynb deleted file mode 100644 index 9cbe6c37bfb..00000000000 --- a/_downloads/5fbb458fc0bbe2338f76bd7ad1b489a3/violinplot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Violin plot basics\n\n\nViolin plots are similar to histograms and box plots in that they show\nan abstract representation of the probability distribution of the\nsample. Rather than showing counts of data points that fall into bins\nor order statistics, violin plots use kernel density estimation (KDE) to\ncompute an empirical distribution of the sample. That computation\nis controlled by several parameters. This example demonstrates how to\nmodify the number of points at which the KDE is evaluated (``points``)\nand how to modify the band-width of the KDE (``bw_method``).\n\nFor more information on violin plots and KDE, the scikit-learn docs\nhave a great section: http://scikit-learn.org/stable/modules/density.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# fake data\nfs = 10 # fontsize\npos = [1, 2, 4, 5, 7, 8]\ndata = [np.random.normal(0, std, size=100) for std in pos]\n\nfig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6))\n\naxes[0, 0].violinplot(data, pos, points=20, widths=0.3,\n showmeans=True, showextrema=True, showmedians=True)\naxes[0, 0].set_title('Custom violinplot 1', fontsize=fs)\n\naxes[0, 1].violinplot(data, pos, points=40, widths=0.5,\n showmeans=True, showextrema=True, showmedians=True,\n bw_method='silverman')\naxes[0, 1].set_title('Custom violinplot 2', fontsize=fs)\n\naxes[0, 2].violinplot(data, pos, points=60, widths=0.7, showmeans=True,\n showextrema=True, showmedians=True, bw_method=0.5)\naxes[0, 2].set_title('Custom violinplot 3', fontsize=fs)\n\naxes[1, 0].violinplot(data, pos, points=80, vert=False, widths=0.7,\n showmeans=True, showextrema=True, showmedians=True)\naxes[1, 0].set_title('Custom violinplot 4', fontsize=fs)\n\naxes[1, 1].violinplot(data, pos, points=100, vert=False, widths=0.9,\n showmeans=True, showextrema=True, showmedians=True,\n bw_method='silverman')\naxes[1, 1].set_title('Custom violinplot 5', fontsize=fs)\n\naxes[1, 2].violinplot(data, pos, points=200, vert=False, widths=1.1,\n showmeans=True, showextrema=True, showmedians=True,\n bw_method=0.5)\naxes[1, 2].set_title('Custom violinplot 6', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yticklabels([])\n\nfig.suptitle(\"Violin Plotting Examples\")\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/5fc19bc53f353b5d6f24bdca17a4c140/demo_axes_grid2.py b/_downloads/5fc19bc53f353b5d6f24bdca17a4c140/demo_axes_grid2.py deleted file mode 120000 index 8577e8acb63..00000000000 --- a/_downloads/5fc19bc53f353b5d6f24bdca17a4c140/demo_axes_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/5fc19bc53f353b5d6f24bdca17a4c140/demo_axes_grid2.py \ No newline at end of file diff --git a/_downloads/5fc4a4e736738e3141f54218f7672294/mathtext.ipynb b/_downloads/5fc4a4e736738e3141f54218f7672294/mathtext.ipynb deleted file mode 120000 index 6eef2be573d..00000000000 --- a/_downloads/5fc4a4e736738e3141f54218f7672294/mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5fc4a4e736738e3141f54218f7672294/mathtext.ipynb \ No newline at end of file diff --git a/_downloads/5fc5b067300f5075475cc85b57cc78b5/demo_imagegrid_aspect.py b/_downloads/5fc5b067300f5075475cc85b57cc78b5/demo_imagegrid_aspect.py deleted file mode 120000 index 6a832de2a57..00000000000 --- a/_downloads/5fc5b067300f5075475cc85b57cc78b5/demo_imagegrid_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5fc5b067300f5075475cc85b57cc78b5/demo_imagegrid_aspect.py \ No newline at end of file diff --git a/_downloads/5fc98f642029ac0ebdaac8dffd0d6dd0/bar_unit_demo.ipynb b/_downloads/5fc98f642029ac0ebdaac8dffd0d6dd0/bar_unit_demo.ipynb deleted file mode 120000 index c6604064534..00000000000 --- a/_downloads/5fc98f642029ac0ebdaac8dffd0d6dd0/bar_unit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5fc98f642029ac0ebdaac8dffd0d6dd0/bar_unit_demo.ipynb \ No newline at end of file diff --git a/_downloads/5fcd538f0d85f9277d36ce6188f84317/demo_curvelinear_grid.py b/_downloads/5fcd538f0d85f9277d36ce6188f84317/demo_curvelinear_grid.py deleted file mode 100644 index 9d1d4f7b3f7..00000000000 --- a/_downloads/5fcd538f0d85f9277d36ce6188f84317/demo_curvelinear_grid.py +++ /dev/null @@ -1,119 +0,0 @@ -""" -===================== -Curvilinear grid demo -===================== - -Custom grid and ticklines. - -This example demonstrates how to use -`~.grid_helper_curvelinear.GridHelperCurveLinear` to define custom grids and -ticklines by applying a transformation on the grid. This can be used, as -shown on the second plot, to create polar projections in a rectangular box. -""" - -import numpy as np - -import matplotlib.pyplot as plt -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D - -from mpl_toolkits.axisartist import ( - angle_helper, Subplot, SubplotHost, ParasiteAxesAuxTrans) -from mpl_toolkits.axisartist.grid_helper_curvelinear import ( - GridHelperCurveLinear) - - -def curvelinear_test1(fig): - """ - Grid for custom transform. - """ - - def tr(x, y): - x, y = np.asarray(x), np.asarray(y) - return x, y - x - - def inv_tr(x, y): - x, y = np.asarray(x), np.asarray(y) - return x, y + x - - grid_helper = GridHelperCurveLinear((tr, inv_tr)) - - ax1 = Subplot(fig, 1, 2, 1, grid_helper=grid_helper) - # ax1 will have a ticks and gridlines defined by the given - # transform (+ transData of the Axes). Note that the transform of - # the Axes itself (i.e., transData) is not affected by the given - # transform. - - fig.add_subplot(ax1) - - xx, yy = tr([3, 6], [5, 10]) - ax1.plot(xx, yy, linewidth=2.0) - - ax1.set_aspect(1) - ax1.set_xlim(0, 10) - ax1.set_ylim(0, 10) - - ax1.axis["t"] = ax1.new_floating_axis(0, 3) - ax1.axis["t2"] = ax1.new_floating_axis(1, 7) - ax1.grid(True, zorder=0) - - -def curvelinear_test2(fig): - """ - Polar projection, but in a rectangular box. - """ - - # PolarAxes.PolarTransform takes radian. However, we want our coordinate - # system in degree - tr = Affine2D().scale(np.pi/180, 1) + PolarAxes.PolarTransform() - # Polar projection, which involves cycle, and also has limits in - # its coordinates, needs a special method to find the extremes - # (min, max of the coordinate within the view). - extreme_finder = angle_helper.ExtremeFinderCycle( - nx=20, ny=20, # Number of sampling points in each direction. - lon_cycle=360, lat_cycle=None, - lon_minmax=None, lat_minmax=(0, np.inf), - ) - # Find grid values appropriate for the coordinate (degree, minute, second). - grid_locator1 = angle_helper.LocatorDMS(12) - # Use an appropriate formatter. Note that the acceptable Locator and - # Formatter classes are a bit different than that of Matplotlib, which - # cannot directly be used here (this may be possible in the future). - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear( - tr, extreme_finder=extreme_finder, - grid_locator1=grid_locator1, tick_formatter1=tick_formatter1) - ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper) - - # make ticklabels of right and top axis visible. - ax1.axis["right"].major_ticklabels.set_visible(True) - ax1.axis["top"].major_ticklabels.set_visible(True) - # let right axis shows ticklabels for 1st coordinate (angle) - ax1.axis["right"].get_helper().nth_coord_ticks = 0 - # let bottom axis shows ticklabels for 2nd coordinate (radius) - ax1.axis["bottom"].get_helper().nth_coord_ticks = 1 - - fig.add_subplot(ax1) - - ax1.set_aspect(1) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - ax1.grid(True, zorder=0) - - # A parasite axes with given transform - ax2 = ParasiteAxesAuxTrans(ax1, tr, "equal") - # note that ax2.transData == tr + ax1.transData - # Anything you draw in ax2 will match the ticks and grids of ax1. - ax1.parasites.append(ax2) - ax2.plot(np.linspace(0, 30, 51), np.linspace(10, 10, 51), linewidth=2) - - -if __name__ == "__main__": - fig = plt.figure(figsize=(7, 4)) - - curvelinear_test1(fig) - curvelinear_test2(fig) - - plt.show() diff --git a/_downloads/5fd6e3eabfc45fec7d16a5c7b9d3e7ec/parasite_simple2.ipynb b/_downloads/5fd6e3eabfc45fec7d16a5c7b9d3e7ec/parasite_simple2.ipynb deleted file mode 120000 index 4ae7d387c5f..00000000000 --- a/_downloads/5fd6e3eabfc45fec7d16a5c7b9d3e7ec/parasite_simple2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5fd6e3eabfc45fec7d16a5c7b9d3e7ec/parasite_simple2.ipynb \ No newline at end of file diff --git a/_downloads/5fddb454303d9b0479e5a06335588500/voxels_torus.ipynb b/_downloads/5fddb454303d9b0479e5a06335588500/voxels_torus.ipynb deleted file mode 120000 index 61091c10224..00000000000 --- a/_downloads/5fddb454303d9b0479e5a06335588500/voxels_torus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5fddb454303d9b0479e5a06335588500/voxels_torus.ipynb \ No newline at end of file diff --git a/_downloads/5fef37b225d8958e4f3428096a138e58/simple_rgb.ipynb b/_downloads/5fef37b225d8958e4f3428096a138e58/simple_rgb.ipynb deleted file mode 120000 index 07dc0ce8e70..00000000000 --- a/_downloads/5fef37b225d8958e4f3428096a138e58/simple_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/5fef37b225d8958e4f3428096a138e58/simple_rgb.ipynb \ No newline at end of file diff --git a/_downloads/5ff779024f3dc436b3b312ed57a5605f/3d_bars.ipynb b/_downloads/5ff779024f3dc436b3b312ed57a5605f/3d_bars.ipynb deleted file mode 120000 index 52c7259511a..00000000000 --- a/_downloads/5ff779024f3dc436b3b312ed57a5605f/3d_bars.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/5ff779024f3dc436b3b312ed57a5605f/3d_bars.ipynb \ No newline at end of file diff --git a/_downloads/5ff79b61ad58b9478d30dff2602331ee/image_annotated_heatmap.py b/_downloads/5ff79b61ad58b9478d30dff2602331ee/image_annotated_heatmap.py deleted file mode 120000 index 3015298a566..00000000000 --- a/_downloads/5ff79b61ad58b9478d30dff2602331ee/image_annotated_heatmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/5ff79b61ad58b9478d30dff2602331ee/image_annotated_heatmap.py \ No newline at end of file diff --git a/_downloads/60080c10a453c6b461e6f17b163f33f3/surface3d_radial.py b/_downloads/60080c10a453c6b461e6f17b163f33f3/surface3d_radial.py deleted file mode 120000 index 955dec665f1..00000000000 --- a/_downloads/60080c10a453c6b461e6f17b163f33f3/surface3d_radial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/60080c10a453c6b461e6f17b163f33f3/surface3d_radial.py \ No newline at end of file diff --git a/_downloads/600c84a95aa1c58aa27f1bed788691b8/quiver_demo.py b/_downloads/600c84a95aa1c58aa27f1bed788691b8/quiver_demo.py deleted file mode 120000 index d86453e3daf..00000000000 --- a/_downloads/600c84a95aa1c58aa27f1bed788691b8/quiver_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/600c84a95aa1c58aa27f1bed788691b8/quiver_demo.py \ No newline at end of file diff --git a/_downloads/600e43f7517d568b16e02b1c0dfbd754/xcorr_acorr_demo.ipynb b/_downloads/600e43f7517d568b16e02b1c0dfbd754/xcorr_acorr_demo.ipynb deleted file mode 120000 index c88b67ff1ec..00000000000 --- a/_downloads/600e43f7517d568b16e02b1c0dfbd754/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/600e43f7517d568b16e02b1c0dfbd754/xcorr_acorr_demo.ipynb \ No newline at end of file diff --git a/_downloads/600e4f89aa56d4f717ac7d6c0ee59054/subplots_demo.ipynb b/_downloads/600e4f89aa56d4f717ac7d6c0ee59054/subplots_demo.ipynb deleted file mode 100644 index ef144c245e1..00000000000 --- a/_downloads/600e4f89aa56d4f717ac7d6c0ee59054/subplots_demo.ipynb +++ /dev/null @@ -1,270 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n================================================\nCreating multiple subplots using ``plt.subplot``\n================================================\n\n`.pyplot.subplots` creates a figure and a grid of subplots with a single call,\nwhile providing reasonable control over how the individual plots are created.\nFor more advanced use cases you can use `.GridSpec` for a more general subplot\nlayout or `.Figure.add_subplot` for adding subplots at arbitrary locations\nwithin the figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 11\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Some example data to display\nx = np.linspace(0, 2 * np.pi, 400)\ny = np.sin(x ** 2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A figure with just one subplot\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\n``subplots()`` without arguments returns a `.Figure` and a single\n`~.axes.Axes`.\n\nThis is actually the simplest and recommended way of creating a single\nFigure and Axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.plot(x, y)\nax.set_title('A single plot')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Stacking subplots in one direction\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThe first two optional arguments of `.pyplot.subplots` define the number of\nrows and columns of the subplot grid.\n\nWhen stacking in one direction only, the returned `axs` is a 1D numpy array\ncontaining the list of created Axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2)\nfig.suptitle('Vertically stacked subplots')\naxs[0].plot(x, y)\naxs[1].plot(x, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you are creating just a few Axes, it's handy to unpack them immediately to\ndedicated variables for each Axes. That way, we can use ``ax1`` instead of\nthe more verbose ``axs[0]``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2)\nfig.suptitle('Vertically stacked subplots')\nax1.plot(x, y)\nax2.plot(x, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To obtain side-by-side subplots, pass parameters ``1, 2`` for one row and two\ncolumns.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2)\nfig.suptitle('Horizontally stacked subplots')\nax1.plot(x, y)\nax2.plot(x, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Stacking subplots in two directions\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nWhen stacking in two directions, the returned `axs` is a 2D numpy array.\n\nIf you have to set parameters for each subplot it's handy to iterate over\nall subplots in a 2D grid using ``for ax in axs.flat:``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2)\naxs[0, 0].plot(x, y)\naxs[0, 0].set_title('Axis [0,0]')\naxs[0, 1].plot(x, y, 'tab:orange')\naxs[0, 1].set_title('Axis [0,1]')\naxs[1, 0].plot(x, -y, 'tab:green')\naxs[1, 0].set_title('Axis [1,0]')\naxs[1, 1].plot(x, -y, 'tab:red')\naxs[1, 1].set_title('Axis [1,1]')\n\nfor ax in axs.flat:\n ax.set(xlabel='x-label', ylabel='y-label')\n\n# Hide x labels and tick labels for top plots and y ticks for right plots.\nfor ax in axs.flat:\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can use tuple-unpacking also in 2D to assign all subplots to dedicated\nvariables:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\nfig.suptitle('Sharing x per column, y per row')\nax1.plot(x, y)\nax2.plot(x, y**2, 'tab:orange')\nax3.plot(x, -y, 'tab:green')\nax4.plot(x, -y**2, 'tab:red')\n\nfor ax in fig.get_axes():\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sharing axes\n\"\"\"\"\"\"\"\"\"\"\"\"\n\nBy default, each Axes is scaled individually. Thus, if the ranges are\ndifferent the tick values of the subplots do not align.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2)\nfig.suptitle('Axes values are scaled individually by default')\nax1.plot(x, y)\nax2.plot(x + 1, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can use *sharex* or *sharey* to align the horizontal or vertical axis.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2, sharex=True)\nfig.suptitle('Aligning x-axis using sharex')\nax1.plot(x, y)\nax2.plot(x + 1, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Setting *sharex* or *sharey* to ``True`` enables global sharing across the\nwhole grid, i.e. also the y-axes of vertically stacked subplots have the\nsame scale when using ``sharey=True``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, sharex=True, sharey=True)\nfig.suptitle('Sharing both axes')\naxs[0].plot(x, y ** 2)\naxs[1].plot(x, 0.3 * y, 'o')\naxs[2].plot(x, y, '+')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For subplots that are sharing axes one set of tick labels is enough. Tick\nlabels of inner Axes are automatically removed by *sharex* and *sharey*.\nStill there remains an unused empty space between the subplots.\n\nThe parameter *gridspec_kw* of `.pyplot.subplots` controls the grid\nproperties (see also `.GridSpec`). For example, we can reduce the height\nbetween vertical subplots using ``gridspec_kw={'hspace': 0}``.\n\n`.label_outer` is a handy method to remove labels and ticks from subplots\nthat are not at the edge of the grid.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, sharex=True, sharey=True, gridspec_kw={'hspace': 0})\nfig.suptitle('Sharing both axes')\naxs[0].plot(x, y ** 2)\naxs[1].plot(x, 0.3 * y, 'o')\naxs[2].plot(x, y, '+')\n\n# Hide x labels and tick labels for all but bottom plot.\nfor ax in axs:\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Apart from ``True`` and ``False``, both *sharex* and *sharey* accept the\nvalues 'row' and 'col' to share the values only per row or column.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, sharex='col', sharey='row',\n gridspec_kw={'hspace': 0, 'wspace': 0})\n(ax1, ax2), (ax3, ax4) = axs\nfig.suptitle('Sharing x per column, y per row')\nax1.plot(x, y)\nax2.plot(x, y**2, 'tab:orange')\nax3.plot(x + 1, -y, 'tab:green')\nax4.plot(x + 2, -y**2, 'tab:red')\n\nfor ax in axs.flat:\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Polar axes\n\"\"\"\"\"\"\"\"\"\"\n\nThe parameter *subplot_kw* of `.pyplot.subplots` controls the subplot\nproperties (see also `.Figure.add_subplot`). In particular, this can be used\nto create a grid of polar Axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2, subplot_kw=dict(projection='polar'))\nax1.plot(x, y)\nax2.plot(x, y ** 2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6024d841c77bf197ffe5612254186669/colormaps.ipynb b/_downloads/6024d841c77bf197ffe5612254186669/colormaps.ipynb deleted file mode 100644 index 4475cb7b97a..00000000000 --- a/_downloads/6024d841c77bf197ffe5612254186669/colormaps.ipynb +++ /dev/null @@ -1,223 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n********************************\nChoosing Colormaps in Matplotlib\n********************************\n\nMatplotlib has a number of built-in colormaps accessible via\n`.matplotlib.cm.get_cmap`. There are also external libraries like\n[palettable]_ and [colorcet]_ that have many extra colormaps.\nHere we briefly discuss how to choose between the many options. For\nhelp on creating your own colormaps, see\n:doc:`/tutorials/colors/colormap-manipulation`.\n\nOverview\n========\n\nThe idea behind choosing a good colormap is to find a good representation in 3D\ncolorspace for your data set. The best colormap for any given data set depends\non many things including:\n\n- Whether representing form or metric data ([Ware]_)\n\n- Your knowledge of the data set (*e.g.*, is there a critical value\n from which the other values deviate?)\n\n- If there is an intuitive color scheme for the parameter you are plotting\n\n- If there is a standard in the field the audience may be expecting\n\nFor many applications, a perceptually uniform colormap is the best\nchoice --- one in which equal steps in data are perceived as equal\nsteps in the color space. Researchers have found that the human brain\nperceives changes in the lightness parameter as changes in the data\nmuch better than, for example, changes in hue. Therefore, colormaps\nwhich have monotonically increasing lightness through the colormap\nwill be better interpreted by the viewer. A wonderful example of\nperceptually uniform colormaps is [colorcet]_.\n\nColor can be represented in 3D space in various ways. One way to represent color\nis using CIELAB. In CIELAB, color space is represented by lightness,\n$L^*$; red-green, $a^*$; and yellow-blue, $b^*$. The lightness\nparameter $L^*$ can then be used to learn more about how the matplotlib\ncolormaps will be perceived by viewers.\n\nAn excellent starting resource for learning about human perception of colormaps\nis from [IBM]_.\n\n\nClasses of colormaps\n====================\n\nColormaps are often split into several categories based on their function (see,\n*e.g.*, [Moreland]_):\n\n1. Sequential: change in lightness and often saturation of color\n incrementally, often using a single hue; should be used for\n representing information that has ordering.\n\n2. Diverging: change in lightness and possibly saturation of two\n different colors that meet in the middle at an unsaturated color;\n should be used when the information being plotted has a critical\n middle value, such as topography or when the data deviates around\n zero.\n\n3. Cyclic: change in lightness of two different colors that meet in\n the middle and beginning/end at an unsaturated color; should be\n used for values that wrap around at the endpoints, such as phase\n angle, wind direction, or time of day.\n\n4. Qualitative: often are miscellaneous colors; should be used to\n represent information which does not have ordering or\n relationships.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 2\n\nimport numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom colorspacious import cspace_converter\nfrom collections import OrderedDict\n\ncmaps = OrderedDict()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sequential\n----------\n\nFor the Sequential plots, the lightness value increases monotonically through\nthe colormaps. This is good. Some of the $L^*$ values in the colormaps\nspan from 0 to 100 (binary and the other grayscale), and others start around\n$L^*=20$. Those that have a smaller range of $L^*$ will accordingly\nhave a smaller perceptual range. Note also that the $L^*$ function varies\namongst the colormaps: some are approximately linear in $L^*$ and others\nare more curved.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Perceptually Uniform Sequential'] = [\n 'viridis', 'plasma', 'inferno', 'magma', 'cividis']\n\ncmaps['Sequential'] = [\n 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds',\n 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu',\n 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sequential2\n-----------\n\nMany of the $L^*$ values from the Sequential2 plots are monotonically\nincreasing, but some (autumn, cool, spring, and winter) plateau or even go both\nup and down in $L^*$ space. Others (afmhot, copper, gist_heat, and hot)\nhave kinks in the $L^*$ functions. Data that is being represented in a\nregion of the colormap that is at a plateau or kink will lead to a perception of\nbanding of the data in those values in the colormap (see [mycarta-banding]_ for\nan excellent example of this).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Sequential (2)'] = [\n 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink',\n 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia',\n 'hot', 'afmhot', 'gist_heat', 'copper']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Diverging\n---------\n\nFor the Diverging maps, we want to have monotonically increasing $L^*$\nvalues up to a maximum, which should be close to $L^*=100$, followed by\nmonotonically decreasing $L^*$ values. We are looking for approximately\nequal minimum $L^*$ values at opposite ends of the colormap. By these\nmeasures, BrBG and RdBu are good options. coolwarm is a good option, but it\ndoesn't span a wide range of $L^*$ values (see grayscale section below).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Diverging'] = [\n 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu',\n 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Cyclic\n------\n\nFor Cyclic maps, we want to start and end on the same color, and meet a\nsymmetric center point in the middle. $L^*$ should change monotonically\nfrom start to middle, and inversely from middle to end. It should be symmetric\non the increasing and decreasing side, and only differ in hue. At the ends and\nmiddle, $L^*$ will reverse direction, which should be smoothed in\n$L^*$ space to reduce artifacts. See [kovesi-colormaps]_ for more\ninformation on the design of cyclic maps.\n\nThe often-used HSV colormap is included in this set of colormaps, although it\nis not symmetric to a center point. Additionally, the $L^*$ values vary\nwidely throughout the colormap, making it a poor choice for representing data\nfor viewers to see perceptually. See an extension on this idea at\n[mycarta-jet]_.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Cyclic'] = ['twilight', 'twilight_shifted', 'hsv']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Qualitative\n-----------\n\nQualitative colormaps are not aimed at being perceptual maps, but looking at the\nlightness parameter can verify that for us. The $L^*$ values move all over\nthe place throughout the colormap, and are clearly not monotonically increasing.\nThese would not be good options for use as perceptual colormaps.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Qualitative'] = ['Pastel1', 'Pastel2', 'Paired', 'Accent',\n 'Dark2', 'Set1', 'Set2', 'Set3',\n 'tab10', 'tab20', 'tab20b', 'tab20c']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Miscellaneous\n-------------\n\nSome of the miscellaneous colormaps have particular uses for which\nthey have been created. For example, gist_earth, ocean, and terrain\nall seem to be created for plotting topography (green/brown) and water\ndepths (blue) together. We would expect to see a divergence in these\ncolormaps, then, but multiple kinks may not be ideal, such as in\ngist_earth and terrain. CMRmap was created to convert well to\ngrayscale, though it does appear to have some small kinks in\n$L^*$. cubehelix was created to vary smoothly in both lightness\nand hue, but appears to have a small hump in the green hue area.\n\nThe often-used jet colormap is included in this set of colormaps. We can see\nthat the $L^*$ values vary widely throughout the colormap, making it a\npoor choice for representing data for viewers to see perceptually. See an\nextension on this idea at [mycarta-jet]_.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Miscellaneous'] = [\n 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern',\n 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg',\n 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nFirst, we'll show the range of each colormap. Note that some seem\nto change more \"quickly\" than others.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "nrows = max(len(cmap_list) for cmap_category, cmap_list in cmaps.items())\ngradient = np.linspace(0, 1, 256)\ngradient = np.vstack((gradient, gradient))\n\n\ndef plot_color_gradients(cmap_category, cmap_list, nrows):\n fig, axes = plt.subplots(nrows=nrows)\n fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99)\n axes[0].set_title(cmap_category + ' colormaps', fontsize=14)\n\n for ax, name in zip(axes, cmap_list):\n ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name))\n pos = list(ax.get_position().bounds)\n x_text = pos[0] - 0.01\n y_text = pos[1] + pos[3]/2.\n fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10)\n\n # Turn off *all* ticks & spines, not just the ones with colormaps.\n for ax in axes:\n ax.set_axis_off()\n\n\nfor cmap_category, cmap_list in cmaps.items():\n plot_color_gradients(cmap_category, cmap_list, nrows)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Lightness of matplotlib colormaps\n=================================\n\nHere we examine the lightness values of the matplotlib colormaps.\nNote that some documentation on the colormaps is available\n([list-colormaps]_).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rcParams.update({'font.size': 12})\n\n# Number of colormap per subplot for particular cmap categories\n_DSUBS = {'Perceptually Uniform Sequential': 5, 'Sequential': 6,\n 'Sequential (2)': 6, 'Diverging': 6, 'Cyclic': 3,\n 'Qualitative': 4, 'Miscellaneous': 6}\n\n# Spacing between the colormaps of a subplot\n_DC = {'Perceptually Uniform Sequential': 1.4, 'Sequential': 0.7,\n 'Sequential (2)': 1.4, 'Diverging': 1.4, 'Cyclic': 1.4,\n 'Qualitative': 1.4, 'Miscellaneous': 1.4}\n\n# Indices to step through colormap\nx = np.linspace(0.0, 1.0, 100)\n\n# Do plot\nfor cmap_category, cmap_list in cmaps.items():\n\n # Do subplots so that colormaps have enough space.\n # Default is 6 colormaps per subplot.\n dsub = _DSUBS.get(cmap_category, 6)\n nsubplots = int(np.ceil(len(cmap_list) / dsub))\n\n # squeeze=False to handle similarly the case of a single subplot\n fig, axes = plt.subplots(nrows=nsubplots, squeeze=False,\n figsize=(7, 2.6*nsubplots))\n\n for i, ax in enumerate(axes.flat):\n\n locs = [] # locations for text labels\n\n for j, cmap in enumerate(cmap_list[i*dsub:(i+1)*dsub]):\n\n # Get RGB values for colormap and convert the colormap in\n # CAM02-UCS colorspace. lab[0, :, 0] is the lightness.\n rgb = cm.get_cmap(cmap)(x)[np.newaxis, :, :3]\n lab = cspace_converter(\"sRGB1\", \"CAM02-UCS\")(rgb)\n\n # Plot colormap L values. Do separately for each category\n # so each plot can be pretty. To make scatter markers change\n # color along plot:\n # http://stackoverflow.com/questions/8202605/\n\n if cmap_category == 'Sequential':\n # These colormaps all start at high lightness but we want them\n # reversed to look nice in the plot, so reverse the order.\n y_ = lab[0, ::-1, 0]\n c_ = x[::-1]\n else:\n y_ = lab[0, :, 0]\n c_ = x\n\n dc = _DC.get(cmap_category, 1.4) # cmaps horizontal spacing\n ax.scatter(x + j*dc, y_, c=c_, cmap=cmap, s=300, linewidths=0.0)\n\n # Store locations for colormap labels\n if cmap_category in ('Perceptually Uniform Sequential',\n 'Sequential'):\n locs.append(x[-1] + j*dc)\n elif cmap_category in ('Diverging', 'Qualitative', 'Cyclic',\n 'Miscellaneous', 'Sequential (2)'):\n locs.append(x[int(x.size/2.)] + j*dc)\n\n # Set up the axis limits:\n # * the 1st subplot is used as a reference for the x-axis limits\n # * lightness values goes from 0 to 100 (y-axis limits)\n ax.set_xlim(axes[0, 0].get_xlim())\n ax.set_ylim(0.0, 100.0)\n\n # Set up labels for colormaps\n ax.xaxis.set_ticks_position('top')\n ticker = mpl.ticker.FixedLocator(locs)\n ax.xaxis.set_major_locator(ticker)\n formatter = mpl.ticker.FixedFormatter(cmap_list[i*dsub:(i+1)*dsub])\n ax.xaxis.set_major_formatter(formatter)\n ax.xaxis.set_tick_params(rotation=50)\n\n ax.set_xlabel(cmap_category + ' colormaps', fontsize=14)\n fig.text(0.0, 0.55, 'Lightness $L^*$', fontsize=12,\n transform=fig.transFigure, rotation=90)\n\n fig.tight_layout(h_pad=0.0, pad=1.5)\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Grayscale conversion\n====================\n\nIt is important to pay attention to conversion to grayscale for color\nplots, since they may be printed on black and white printers. If not\ncarefully considered, your readers may end up with indecipherable\nplots because the grayscale changes unpredictably through the\ncolormap.\n\nConversion to grayscale is done in many different ways [bw]_. Some of the\nbetter ones use a linear combination of the rgb values of a pixel, but\nweighted according to how we perceive color intensity. A nonlinear method of\nconversion to grayscale is to use the $L^*$ values of the pixels. In\ngeneral, similar principles apply for this question as they do for presenting\none's information perceptually; that is, if a colormap is chosen that is\nmonotonically increasing in $L^*$ values, it will print in a reasonable\nmanner to grayscale.\n\nWith this in mind, we see that the Sequential colormaps have reasonable\nrepresentations in grayscale. Some of the Sequential2 colormaps have decent\nenough grayscale representations, though some (autumn, spring, summer,\nwinter) have very little grayscale change. If a colormap like this was used\nin a plot and then the plot was printed to grayscale, a lot of the\ninformation may map to the same gray values. The Diverging colormaps mostly\nvary from darker gray on the outer edges to white in the middle. Some\n(PuOr and seismic) have noticeably darker gray on one side than the other\nand therefore are not very symmetric. coolwarm has little range of gray scale\nand would print to a more uniform plot, losing a lot of detail. Note that\noverlaid, labeled contours could help differentiate between one side of the\ncolormap vs. the other since color cannot be used once a plot is printed to\ngrayscale. Many of the Qualitative and Miscellaneous colormaps, such as\nAccent, hsv, and jet, change from darker to lighter and back to darker gray\nthroughout the colormap. This would make it impossible for a viewer to\ninterpret the information in a plot once it is printed in grayscale.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rcParams.update({'font.size': 14})\n\n# Indices to step through colormap.\nx = np.linspace(0.0, 1.0, 100)\n\ngradient = np.linspace(0, 1, 256)\ngradient = np.vstack((gradient, gradient))\n\n\ndef plot_color_gradients(cmap_category, cmap_list):\n fig, axes = plt.subplots(nrows=len(cmap_list), ncols=2)\n fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99,\n wspace=0.05)\n fig.suptitle(cmap_category + ' colormaps', fontsize=14, y=1.0, x=0.6)\n\n for ax, name in zip(axes, cmap_list):\n\n # Get RGB values for colormap.\n rgb = cm.get_cmap(plt.get_cmap(name))(x)[np.newaxis, :, :3]\n\n # Get colormap in CAM02-UCS colorspace. We want the lightness.\n lab = cspace_converter(\"sRGB1\", \"CAM02-UCS\")(rgb)\n L = lab[0, :, 0]\n L = np.float32(np.vstack((L, L, L)))\n\n ax[0].imshow(gradient, aspect='auto', cmap=plt.get_cmap(name))\n ax[1].imshow(L, aspect='auto', cmap='binary_r', vmin=0., vmax=100.)\n pos = list(ax[0].get_position().bounds)\n x_text = pos[0] - 0.01\n y_text = pos[1] + pos[3]/2.\n fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10)\n\n # Turn off *all* ticks & spines, not just the ones with colormaps.\n for ax in axes.flat:\n ax.set_axis_off()\n\n plt.show()\n\n\nfor cmap_category, cmap_list in cmaps.items():\n\n plot_color_gradients(cmap_category, cmap_list)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Color vision deficiencies\n=========================\n\nThere is a lot of information available about color blindness (*e.g.*,\n[colorblindness]_). Additionally, there are tools available to convert images\nto how they look for different types of color vision deficiencies.\n\nThe most common form of color vision deficiency involves differentiating\nbetween red and green. Thus, avoiding colormaps with both red and green will\navoid many problems in general.\n\n\nReferences\n==========\n\n.. [colorcet] https://colorcet.pyviz.org\n.. [Ware] http://ccom.unh.edu/sites/default/files/publications/Ware_1988_CGA_Color_sequences_univariate_maps.pdf\n.. [Moreland] http://www.kennethmoreland.com/color-maps/ColorMapsExpanded.pdf\n.. [list-colormaps] https://gist.github.com/endolith/2719900#id7\n.. [mycarta-banding] https://mycarta.wordpress.com/2012/10/14/the-rainbow-is-deadlong-live-the-rainbow-part-4-cie-lab-heated-body/\n.. [mycarta-jet] https://mycarta.wordpress.com/2012/10/06/the-rainbow-is-deadlong-live-the-rainbow-part-3/\n.. [kovesi-colormaps] https://arxiv.org/abs/1509.03700\n.. [bw] http://www.tannerhelland.com/3643/grayscale-image-algorithm-vb6/\n.. [colorblindness] http://www.color-blindness.com/\n.. [IBM] https://doi.org/10.1109/VISUAL.1995.480803\n.. [palettable] https://jiffyclub.github.io/palettable/\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6024e67e6a20103c539885259fc9e3a6/power_norm.ipynb b/_downloads/6024e67e6a20103c539885259fc9e3a6/power_norm.ipynb deleted file mode 120000 index c0f86471735..00000000000 --- a/_downloads/6024e67e6a20103c539885259fc9e3a6/power_norm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6024e67e6a20103c539885259fc9e3a6/power_norm.ipynb \ No newline at end of file diff --git a/_downloads/603608a2d26e02b436227a8a5321f1da/autoscale.py b/_downloads/603608a2d26e02b436227a8a5321f1da/autoscale.py deleted file mode 120000 index bac6b44397b..00000000000 --- a/_downloads/603608a2d26e02b436227a8a5321f1da/autoscale.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/603608a2d26e02b436227a8a5321f1da/autoscale.py \ No newline at end of file diff --git a/_downloads/6036bed92cc88bb1fed97fb50952b4e7/lines3d.ipynb b/_downloads/6036bed92cc88bb1fed97fb50952b4e7/lines3d.ipynb deleted file mode 120000 index d0b64bf931f..00000000000 --- a/_downloads/6036bed92cc88bb1fed97fb50952b4e7/lines3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6036bed92cc88bb1fed97fb50952b4e7/lines3d.ipynb \ No newline at end of file diff --git a/_downloads/6039c1423574416d8cd21414f096c114/named_colors.ipynb b/_downloads/6039c1423574416d8cd21414f096c114/named_colors.ipynb deleted file mode 120000 index b362f833301..00000000000 --- a/_downloads/6039c1423574416d8cd21414f096c114/named_colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6039c1423574416d8cd21414f096c114/named_colors.ipynb \ No newline at end of file diff --git a/_downloads/6042f86fd94bc69c59498b3b3fd64bf1/simple_axisline.ipynb b/_downloads/6042f86fd94bc69c59498b3b3fd64bf1/simple_axisline.ipynb deleted file mode 120000 index 2c03f00d026..00000000000 --- a/_downloads/6042f86fd94bc69c59498b3b3fd64bf1/simple_axisline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6042f86fd94bc69c59498b3b3fd64bf1/simple_axisline.ipynb \ No newline at end of file diff --git a/_downloads/6047bad52557db0e45848d3712c94cf5/voxels.ipynb b/_downloads/6047bad52557db0e45848d3712c94cf5/voxels.ipynb deleted file mode 120000 index a0b0d5edd70..00000000000 --- a/_downloads/6047bad52557db0e45848d3712c94cf5/voxels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6047bad52557db0e45848d3712c94cf5/voxels.ipynb \ No newline at end of file diff --git a/_downloads/604d33920042366af9c7f6748e9c2034/date_demo_rrule.py b/_downloads/604d33920042366af9c7f6748e9c2034/date_demo_rrule.py deleted file mode 100644 index dec7e07b716..00000000000 --- a/_downloads/604d33920042366af9c7f6748e9c2034/date_demo_rrule.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -=============== -Date Demo Rrule -=============== - -Show how to use an rrule instance to make a custom date ticker - here -we put a tick mark on every 5th easter - -See https://dateutil.readthedocs.io/en/stable/ for help with rrules -""" -import matplotlib.pyplot as plt -from matplotlib.dates import (YEARLY, DateFormatter, - rrulewrapper, RRuleLocator, drange) -import numpy as np -import datetime - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# tick every 5th easter -rule = rrulewrapper(YEARLY, byeaster=1, interval=5) -loc = RRuleLocator(rule) -formatter = DateFormatter('%m/%d/%y') -date1 = datetime.date(1952, 1, 1) -date2 = datetime.date(2004, 4, 12) -delta = datetime.timedelta(days=100) - -dates = drange(date1, date2, delta) -s = np.random.rand(len(dates)) # make up some random y values - - -fig, ax = plt.subplots() -plt.plot_date(dates, s) -ax.xaxis.set_major_locator(loc) -ax.xaxis.set_major_formatter(formatter) -ax.xaxis.set_tick_params(rotation=30, labelsize=10) - -plt.show() diff --git a/_downloads/604f15717c1743907b81ea19a7a0bb6c/violinplot.ipynb b/_downloads/604f15717c1743907b81ea19a7a0bb6c/violinplot.ipynb deleted file mode 120000 index c6dd3e28ef9..00000000000 --- a/_downloads/604f15717c1743907b81ea19a7a0bb6c/violinplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/604f15717c1743907b81ea19a7a0bb6c/violinplot.ipynb \ No newline at end of file diff --git a/_downloads/605367da47dc84f53019520d18a6784b/demo_colorbar_with_axes_divider.py b/_downloads/605367da47dc84f53019520d18a6784b/demo_colorbar_with_axes_divider.py deleted file mode 100644 index fe808c081e0..00000000000 --- a/_downloads/605367da47dc84f53019520d18a6784b/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -=============================== -Demo Colorbar with Axes Divider -=============================== - -The make_axes_locatable function (part of the axes_divider module) takes an -existing axes, creates a divider for it and returns an instance of the -AxesLocator class. The append_axes method of this AxesLocator can then be used -to create a new axes on a given side ("top", "right", "bottom", or "left") of -the original axes. This example uses Axes Divider to add colorbars next to -axes. -""" - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_divider import make_axes_locatable -from mpl_toolkits.axes_grid1.colorbar import colorbar - -fig, (ax1, ax2) = plt.subplots(1, 2) -fig.subplots_adjust(wspace=0.5) - -im1 = ax1.imshow([[1, 2], [3, 4]]) -ax1_divider = make_axes_locatable(ax1) -# add an axes to the right of the main axes. -cax1 = ax1_divider.append_axes("right", size="7%", pad="2%") -cb1 = colorbar(im1, cax=cax1) - -im2 = ax2.imshow([[1, 2], [3, 4]]) -ax2_divider = make_axes_locatable(ax2) -# add an axes above the main axes. -cax2 = ax2_divider.append_axes("top", size="7%", pad="2%") -cb2 = colorbar(im2, cax=cax2, orientation="horizontal") -# change tick position to top. Tick position defaults to bottom and overlaps -# the image. -cax2.xaxis.set_ticks_position("top") - -plt.show() diff --git a/_downloads/605a5d85f5f30e4f65456ccf89ed3983/histogram_features.ipynb b/_downloads/605a5d85f5f30e4f65456ccf89ed3983/histogram_features.ipynb deleted file mode 120000 index dd89add63e5..00000000000 --- a/_downloads/605a5d85f5f30e4f65456ccf89ed3983/histogram_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/605a5d85f5f30e4f65456ccf89ed3983/histogram_features.ipynb \ No newline at end of file diff --git a/_downloads/605cad767f8ac8bf813bcd4941015322/stem_plot.py b/_downloads/605cad767f8ac8bf813bcd4941015322/stem_plot.py deleted file mode 120000 index 7bb4f0d73a4..00000000000 --- a/_downloads/605cad767f8ac8bf813bcd4941015322/stem_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/605cad767f8ac8bf813bcd4941015322/stem_plot.py \ No newline at end of file diff --git a/_downloads/60691c9e433ab281d96ea4a14fb1caa3/subplot_toolbar.py b/_downloads/60691c9e433ab281d96ea4a14fb1caa3/subplot_toolbar.py deleted file mode 120000 index bb0d3159fdf..00000000000 --- a/_downloads/60691c9e433ab281d96ea4a14fb1caa3/subplot_toolbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/60691c9e433ab281d96ea4a14fb1caa3/subplot_toolbar.py \ No newline at end of file diff --git a/_downloads/607184147f14639a1d731d81138d5a45/ganged_plots.ipynb b/_downloads/607184147f14639a1d731d81138d5a45/ganged_plots.ipynb deleted file mode 120000 index 6ac12166fab..00000000000 --- a/_downloads/607184147f14639a1d731d81138d5a45/ganged_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/607184147f14639a1d731d81138d5a45/ganged_plots.ipynb \ No newline at end of file diff --git a/_downloads/60766a5f61d2ae5948d17caafd90fa9e/polys3d.ipynb b/_downloads/60766a5f61d2ae5948d17caafd90fa9e/polys3d.ipynb deleted file mode 120000 index ef907863d93..00000000000 --- a/_downloads/60766a5f61d2ae5948d17caafd90fa9e/polys3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60766a5f61d2ae5948d17caafd90fa9e/polys3d.ipynb \ No newline at end of file diff --git a/_downloads/60882f5df0dd5573104f9b647af0b0de/mri_with_eeg.ipynb b/_downloads/60882f5df0dd5573104f9b647af0b0de/mri_with_eeg.ipynb deleted file mode 100644 index c0756cbae8b..00000000000 --- a/_downloads/60882f5df0dd5573104f9b647af0b0de/mri_with_eeg.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# MRI With EEG\n\n\nDisplays a set of subplots with an MRI image, its intensity\nhistogram and some EEG traces.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport matplotlib.cm as cm\n\nfrom matplotlib.collections import LineCollection\nfrom matplotlib.ticker import MultipleLocator\n\nfig = plt.figure(\"MRI_with_EEG\")\n\n# Load the MRI data (256x256 16 bit integers)\nwith cbook.get_sample_data('s1045.ima.gz') as dfile:\n im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256))\n\n# Plot the MRI image\nax0 = fig.add_subplot(2, 2, 1)\nax0.imshow(im, cmap=cm.gray)\nax0.axis('off')\n\n# Plot the histogram of MRI intensity\nax1 = fig.add_subplot(2, 2, 2)\nim = np.ravel(im)\nim = im[np.nonzero(im)] # Ignore the background\nim = im / (2**16 - 1) # Normalize\nax1.hist(im, bins=100)\nax1.xaxis.set_major_locator(MultipleLocator(0.4))\nax1.minorticks_on()\nax1.set_yticks([])\nax1.set_xlabel('Intensity (a.u.)')\nax1.set_ylabel('MRI density')\n\n# Load the EEG data\nn_samples, n_rows = 800, 4\nwith cbook.get_sample_data('eeg.dat') as eegfile:\n data = np.fromfile(eegfile, dtype=float).reshape((n_samples, n_rows))\nt = 10 * np.arange(n_samples) / n_samples\n\n# Plot the EEG\nticklocs = []\nax2 = fig.add_subplot(2, 1, 2)\nax2.set_xlim(0, 10)\nax2.set_xticks(np.arange(10))\ndmin = data.min()\ndmax = data.max()\ndr = (dmax - dmin) * 0.7 # Crowd them a bit.\ny0 = dmin\ny1 = (n_rows - 1) * dr + dmax\nax2.set_ylim(y0, y1)\n\nsegs = []\nfor i in range(n_rows):\n segs.append(np.column_stack((t, data[:, i])))\n ticklocs.append(i * dr)\n\noffsets = np.zeros((n_rows, 2), dtype=float)\noffsets[:, 1] = ticklocs\n\nlines = LineCollection(segs, offsets=offsets, transOffset=None)\nax2.add_collection(lines)\n\n# Set the yticks to use axes coordinates on the y axis\nax2.set_yticks(ticklocs)\nax2.set_yticklabels(['PG3', 'PG5', 'PG7', 'PG9'])\n\nax2.set_xlabel('Time (s)')\n\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/608ba42d43211835c2be338817229566/major_minor_demo.ipynb b/_downloads/608ba42d43211835c2be338817229566/major_minor_demo.ipynb deleted file mode 120000 index 6abcf8dda4a..00000000000 --- a/_downloads/608ba42d43211835c2be338817229566/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/608ba42d43211835c2be338817229566/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/608baf16d4d70d00137ed5afc23b2458/marker_fillstyle_reference.ipynb b/_downloads/608baf16d4d70d00137ed5afc23b2458/marker_fillstyle_reference.ipynb deleted file mode 120000 index d3bcf92e86e..00000000000 --- a/_downloads/608baf16d4d70d00137ed5afc23b2458/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/608baf16d4d70d00137ed5afc23b2458/marker_fillstyle_reference.ipynb \ No newline at end of file diff --git a/_downloads/609e4ae8a3631a6eb9c7d84bbc7d8de3/gtk4_spreadsheet_sgskip.py b/_downloads/609e4ae8a3631a6eb9c7d84bbc7d8de3/gtk4_spreadsheet_sgskip.py deleted file mode 120000 index b66665a29b0..00000000000 --- a/_downloads/609e4ae8a3631a6eb9c7d84bbc7d8de3/gtk4_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/609e4ae8a3631a6eb9c7d84bbc7d8de3/gtk4_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/609ebc78fe8572d37183788360773101/axis_direction_demo_step04.ipynb b/_downloads/609ebc78fe8572d37183788360773101/axis_direction_demo_step04.ipynb deleted file mode 100644 index 4f560517bdd..00000000000 --- a/_downloads/609ebc78fe8572d37183788360773101/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step04\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x1\"] = ax.new_floating_axis(1, 0.3)\n ax.axis[\"x1\"].set_axisline_style(\"->\", size=1.5)\n\n ax.axis[\"x2\"] = ax.new_floating_axis(1, 0.7)\n ax.axis[\"x2\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 2.5))\nfig.subplots_adjust(bottom=0.2, top=0.8)\n\nax1 = setup_axes(fig, \"121\")\nax1.axis[\"x1\"].label.set_text(\"rotation=0\")\nax1.axis[\"x1\"].toggle(ticklabels=False)\n\nax1.axis[\"x2\"].label.set_text(\"rotation=10\")\nax1.axis[\"x2\"].label.set_rotation(10)\nax1.axis[\"x2\"].toggle(ticklabels=False)\n\nax1.annotate(\"label direction=$+$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nax2 = setup_axes(fig, \"122\")\n\nax2.axis[\"x1\"].set_axislabel_direction(\"-\")\nax2.axis[\"x2\"].set_axislabel_direction(\"-\")\n\nax2.axis[\"x1\"].label.set_text(\"rotation=0\")\nax2.axis[\"x1\"].toggle(ticklabels=False)\n\nax2.axis[\"x2\"].label.set_text(\"rotation=10\")\nax2.axis[\"x2\"].label.set_rotation(10)\nax2.axis[\"x2\"].toggle(ticklabels=False)\n\nax2.annotate(\"label direction=$-$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/60a275fed4e33280111ae513fc2e5c8d/simple_anchored_artists.ipynb b/_downloads/60a275fed4e33280111ae513fc2e5c8d/simple_anchored_artists.ipynb deleted file mode 120000 index adc6652a8fe..00000000000 --- a/_downloads/60a275fed4e33280111ae513fc2e5c8d/simple_anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/60a275fed4e33280111ae513fc2e5c8d/simple_anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/60b28afba0b1ab7800b23042a0b21dbc/MCSE.2007.55.bib b/_downloads/60b28afba0b1ab7800b23042a0b21dbc/MCSE.2007.55.bib deleted file mode 120000 index d6df2f47415..00000000000 --- a/_downloads/60b28afba0b1ab7800b23042a0b21dbc/MCSE.2007.55.bib +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/60b28afba0b1ab7800b23042a0b21dbc/MCSE.2007.55.bib \ No newline at end of file diff --git a/_downloads/60b58e549f4d409e24cbfa9baf417d06/topographic_hillshading.ipynb b/_downloads/60b58e549f4d409e24cbfa9baf417d06/topographic_hillshading.ipynb deleted file mode 120000 index e0054258c49..00000000000 --- a/_downloads/60b58e549f4d409e24cbfa9baf417d06/topographic_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/60b58e549f4d409e24cbfa9baf417d06/topographic_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/60b66634a88a8f759450ae8638e59340/usage.ipynb b/_downloads/60b66634a88a8f759450ae8638e59340/usage.ipynb deleted file mode 120000 index 25386235cc6..00000000000 --- a/_downloads/60b66634a88a8f759450ae8638e59340/usage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60b66634a88a8f759450ae8638e59340/usage.ipynb \ No newline at end of file diff --git a/_downloads/60b6ca9279d05c515df0eaac5fa668a3/evans_test.ipynb b/_downloads/60b6ca9279d05c515df0eaac5fa668a3/evans_test.ipynb deleted file mode 120000 index d7a21bd9e99..00000000000 --- a/_downloads/60b6ca9279d05c515df0eaac5fa668a3/evans_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/60b6ca9279d05c515df0eaac5fa668a3/evans_test.ipynb \ No newline at end of file diff --git a/_downloads/60c7421dc6a8b8bab772532446ff5c37/simple_annotate01.py b/_downloads/60c7421dc6a8b8bab772532446ff5c37/simple_annotate01.py deleted file mode 100644 index 0092aaabbf9..00000000000 --- a/_downloads/60c7421dc6a8b8bab772532446ff5c37/simple_annotate01.py +++ /dev/null @@ -1,89 +0,0 @@ -""" -================= -Simple Annotate01 -================= - -""" - -import matplotlib.pyplot as plt -import matplotlib.patches as mpatches - - -fig, axs = plt.subplots(2, 4) -x1, y1 = 0.3, 0.3 -x2, y2 = 0.7, 0.7 - -ax = axs.flat[0] -ax.plot([x1, x2], [y1, y2], "o") -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->")) -ax.text(.05, .95, "A $->$ B", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[2] -ax.plot([x1, x2], [y1, y2], "o") -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.3", - shrinkB=5) - ) -ax.text(.05, .95, "shrinkB=5", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[3] -ax.plot([x1, x2], [y1, y2], "o") -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.3")) -ax.text(.05, .95, "connectionstyle=arc3", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[4] -ax.plot([x1, x2], [y1, y2], "o") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.2") - ) - -ax = axs.flat[5] -ax.plot([x1, x2], [y1, y2], "o") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.2", - patchB=el) - ) -ax.text(.05, .95, "patchB", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[6] -ax.plot([x1], [y1], "o") -ax.annotate("Test", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - ha="center", va="center", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->") - ) -ax.text(.05, .95, "annotate", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[7] -ax.plot([x1], [y1], "o") -ax.annotate("Test", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - ha="center", va="center", - bbox=dict(boxstyle="round", fc="w", ), - arrowprops=dict(arrowstyle="->", relpos=(0., 0.)) - ) -ax.text(.05, .95, "relpos=(0,0)", transform=ax.transAxes, ha="left", va="top") - -for ax in axs.flat: - ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1) - -plt.show() diff --git a/_downloads/60cce1b7cfd314cfcb50575bbc60cbb7/trifinder_event_demo.ipynb b/_downloads/60cce1b7cfd314cfcb50575bbc60cbb7/trifinder_event_demo.ipynb deleted file mode 120000 index 37192ac90c2..00000000000 --- a/_downloads/60cce1b7cfd314cfcb50575bbc60cbb7/trifinder_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60cce1b7cfd314cfcb50575bbc60cbb7/trifinder_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/60cd567e727710714424aad81c345a49/usetex_demo.ipynb b/_downloads/60cd567e727710714424aad81c345a49/usetex_demo.ipynb deleted file mode 120000 index 3d5e44afb1e..00000000000 --- a/_downloads/60cd567e727710714424aad81c345a49/usetex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60cd567e727710714424aad81c345a49/usetex_demo.ipynb \ No newline at end of file diff --git a/_downloads/60cf0855861fba530535fb6aabae72f9/demo_axes_grid2.py b/_downloads/60cf0855861fba530535fb6aabae72f9/demo_axes_grid2.py deleted file mode 120000 index 403d76f38ce..00000000000 --- a/_downloads/60cf0855861fba530535fb6aabae72f9/demo_axes_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60cf0855861fba530535fb6aabae72f9/demo_axes_grid2.py \ No newline at end of file diff --git a/_downloads/60dbd0b0ab36f46c2933b7e0362c90d9/parasite_simple2.py b/_downloads/60dbd0b0ab36f46c2933b7e0362c90d9/parasite_simple2.py deleted file mode 120000 index a1c97499437..00000000000 --- a/_downloads/60dbd0b0ab36f46c2933b7e0362c90d9/parasite_simple2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/60dbd0b0ab36f46c2933b7e0362c90d9/parasite_simple2.py \ No newline at end of file diff --git a/_downloads/60decadd91159e0dc7602056be9e3c2c/tripcolor_demo.ipynb b/_downloads/60decadd91159e0dc7602056be9e3c2c/tripcolor_demo.ipynb deleted file mode 120000 index 1dcaa6e8c92..00000000000 --- a/_downloads/60decadd91159e0dc7602056be9e3c2c/tripcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60decadd91159e0dc7602056be9e3c2c/tripcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/60e8da4a3579518b57e0945b31bef5b0/colormap_reference.py b/_downloads/60e8da4a3579518b57e0945b31bef5b0/colormap_reference.py deleted file mode 120000 index 6b03328c7bf..00000000000 --- a/_downloads/60e8da4a3579518b57e0945b31bef5b0/colormap_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60e8da4a3579518b57e0945b31bef5b0/colormap_reference.py \ No newline at end of file diff --git a/_downloads/60ef4a2fc641ec7743b7364f44061d83/anscombe.ipynb b/_downloads/60ef4a2fc641ec7743b7364f44061d83/anscombe.ipynb deleted file mode 120000 index bd699ae3a16..00000000000 --- a/_downloads/60ef4a2fc641ec7743b7364f44061d83/anscombe.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/60ef4a2fc641ec7743b7364f44061d83/anscombe.ipynb \ No newline at end of file diff --git a/_downloads/60f3f5a500c4dc97f425af0231c02c9a/boxplot_color.py b/_downloads/60f3f5a500c4dc97f425af0231c02c9a/boxplot_color.py deleted file mode 100644 index 16adb44faba..00000000000 --- a/_downloads/60f3f5a500c4dc97f425af0231c02c9a/boxplot_color.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================================= -Box plots with custom fill colors -================================= - -This plot illustrates how to create two types of box plots -(rectangular and notched), and how to fill them with custom -colors by accessing the properties of the artists of the -box plots. Additionally, the ``labels`` parameter is used to -provide x-tick labels for each sample. - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Random test data -np.random.seed(19680801) -all_data = [np.random.normal(0, std, size=100) for std in range(1, 4)] -labels = ['x1', 'x2', 'x3'] - -fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4)) - -# rectangular box plot -bplot1 = axes[0].boxplot(all_data, - vert=True, # vertical box alignment - patch_artist=True, # fill with color - labels=labels) # will be used to label x-ticks -axes[0].set_title('Rectangular box plot') - -# notch shape box plot -bplot2 = axes[1].boxplot(all_data, - notch=True, # notch shape - vert=True, # vertical box alignment - patch_artist=True, # fill with color - labels=labels) # will be used to label x-ticks -axes[1].set_title('Notched box plot') - -# fill with colors -colors = ['pink', 'lightblue', 'lightgreen'] -for bplot in (bplot1, bplot2): - for patch, color in zip(bplot['boxes'], colors): - patch.set_facecolor(color) - -# adding horizontal grid lines -for ax in axes: - ax.yaxis.grid(True) - ax.set_xlabel('Three separate samples') - ax.set_ylabel('Observed values') - -plt.show() diff --git a/_downloads/60ff0d396b168ece44f2aa343d705ba5/polygon_selector_demo.ipynb b/_downloads/60ff0d396b168ece44f2aa343d705ba5/polygon_selector_demo.ipynb deleted file mode 100644 index 75173f2c31a..00000000000 --- a/_downloads/60ff0d396b168ece44f2aa343d705ba5/polygon_selector_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Polygon Selector Demo\n\n\nShows how one can select indices of a polygon interactively.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib.widgets import PolygonSelector\nfrom matplotlib.path import Path\n\n\nclass SelectFromCollection(object):\n \"\"\"Select indices from a matplotlib collection using `PolygonSelector`.\n\n Selected indices are saved in the `ind` attribute. This tool fades out the\n points that are not part of the selection (i.e., reduces their alpha\n values). If your collection has alpha < 1, this tool will permanently\n alter the alpha values.\n\n Note that this tool selects collection objects based on their *origins*\n (i.e., `offsets`).\n\n Parameters\n ----------\n ax : :class:`~matplotlib.axes.Axes`\n Axes to interact with.\n\n collection : :class:`matplotlib.collections.Collection` subclass\n Collection you want to select from.\n\n alpha_other : 0 <= float <= 1\n To highlight a selection, this tool sets all selected points to an\n alpha value of 1 and non-selected points to `alpha_other`.\n \"\"\"\n\n def __init__(self, ax, collection, alpha_other=0.3):\n self.canvas = ax.figure.canvas\n self.collection = collection\n self.alpha_other = alpha_other\n\n self.xys = collection.get_offsets()\n self.Npts = len(self.xys)\n\n # Ensure that we have separate colors for each object\n self.fc = collection.get_facecolors()\n if len(self.fc) == 0:\n raise ValueError('Collection must have a facecolor')\n elif len(self.fc) == 1:\n self.fc = np.tile(self.fc, (self.Npts, 1))\n\n self.poly = PolygonSelector(ax, self.onselect)\n self.ind = []\n\n def onselect(self, verts):\n path = Path(verts)\n self.ind = np.nonzero(path.contains_points(self.xys))[0]\n self.fc[:, -1] = self.alpha_other\n self.fc[self.ind, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n def disconnect(self):\n self.poly.disconnect_events()\n self.fc[:, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n\n fig, ax = plt.subplots()\n grid_size = 5\n grid_x = np.tile(np.arange(grid_size), grid_size)\n grid_y = np.repeat(np.arange(grid_size), grid_size)\n pts = ax.scatter(grid_x, grid_y)\n\n selector = SelectFromCollection(ax, pts)\n\n print(\"Select points in the figure by enclosing them within a polygon.\")\n print(\"Press the 'esc' key to start a new polygon.\")\n print(\"Try holding the 'shift' key to move all of the vertices.\")\n print(\"Try holding the 'ctrl' key to move a single vertex.\")\n\n plt.show()\n\n selector.disconnect()\n\n # After figure is closed print the coordinates of the selected points\n print('\\nSelected points:')\n print(selector.xys[selector.ind])" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/60ff35798ad4330c5bb9f407153f35ab/simple_axisline2.py b/_downloads/60ff35798ad4330c5bb9f407153f35ab/simple_axisline2.py deleted file mode 120000 index 5c4a4d48b03..00000000000 --- a/_downloads/60ff35798ad4330c5bb9f407153f35ab/simple_axisline2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/60ff35798ad4330c5bb9f407153f35ab/simple_axisline2.py \ No newline at end of file diff --git a/_downloads/610542afb66b639e3fd785798a00c32f/titles_demo.py b/_downloads/610542afb66b639e3fd785798a00c32f/titles_demo.py deleted file mode 120000 index 00196d1f231..00000000000 --- a/_downloads/610542afb66b639e3fd785798a00c32f/titles_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/610542afb66b639e3fd785798a00c32f/titles_demo.py \ No newline at end of file diff --git a/_downloads/611003c013aae53e504fe12335dbbd54/sankey_links.ipynb b/_downloads/611003c013aae53e504fe12335dbbd54/sankey_links.ipynb deleted file mode 120000 index 429fce9b572..00000000000 --- a/_downloads/611003c013aae53e504fe12335dbbd54/sankey_links.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/611003c013aae53e504fe12335dbbd54/sankey_links.ipynb \ No newline at end of file diff --git a/_downloads/61272c8e40b71c3575fe5a527d12e101/major_minor_demo.py b/_downloads/61272c8e40b71c3575fe5a527d12e101/major_minor_demo.py deleted file mode 120000 index 37fb518b43c..00000000000 --- a/_downloads/61272c8e40b71c3575fe5a527d12e101/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/61272c8e40b71c3575fe5a527d12e101/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/6133d65f3f7527fffab39708eace7664/align_labels_demo.ipynb b/_downloads/6133d65f3f7527fffab39708eace7664/align_labels_demo.ipynb deleted file mode 100644 index d10c1c750ff..00000000000 --- a/_downloads/6133d65f3f7527fffab39708eace7664/align_labels_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Aligning Labels\n\n\nAligning xlabel and ylabel using `Figure.align_xlabels` and\n`Figure.align_ylabels`\n\n`Figure.align_labels` wraps these two functions.\n\nNote that the xlabel \"XLabel1 1\" would normally be much closer to the\nx-axis, and \"YLabel1 0\" would be much closer to the y-axis of their\nrespective axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.gridspec as gridspec\n\nfig = plt.figure(tight_layout=True)\ngs = gridspec.GridSpec(2, 2)\n\nax = fig.add_subplot(gs[0, :])\nax.plot(np.arange(0, 1e6, 1000))\nax.set_ylabel('YLabel0')\nax.set_xlabel('XLabel0')\n\nfor i in range(2):\n ax = fig.add_subplot(gs[1, i])\n ax.plot(np.arange(1., 0., -0.1) * 2000., np.arange(1., 0., -0.1))\n ax.set_ylabel('YLabel1 %d' % i)\n ax.set_xlabel('XLabel1 %d' % i)\n if i == 0:\n for tick in ax.get_xticklabels():\n tick.set_rotation(55)\nfig.align_labels() # same as fig.align_xlabels(); fig.align_ylabels()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6139661ca77de376a9d1792c3510af46/voxels_numpy_logo.py b/_downloads/6139661ca77de376a9d1792c3510af46/voxels_numpy_logo.py deleted file mode 120000 index 7f88e1b088d..00000000000 --- a/_downloads/6139661ca77de376a9d1792c3510af46/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6139661ca77de376a9d1792c3510af46/voxels_numpy_logo.py \ No newline at end of file diff --git a/_downloads/614114ff2896605bf70c803b8ef50367/patheffect_demo.ipynb b/_downloads/614114ff2896605bf70c803b8ef50367/patheffect_demo.ipynb deleted file mode 120000 index e4637973e1b..00000000000 --- a/_downloads/614114ff2896605bf70c803b8ef50367/patheffect_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/614114ff2896605bf70c803b8ef50367/patheffect_demo.ipynb \ No newline at end of file diff --git a/_downloads/614255cbeadb28aac5ee8e8c0cf53bb7/demo_imagegrid_aspect.ipynb b/_downloads/614255cbeadb28aac5ee8e8c0cf53bb7/demo_imagegrid_aspect.ipynb deleted file mode 120000 index 43733a37c87..00000000000 --- a/_downloads/614255cbeadb28aac5ee8e8c0cf53bb7/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/614255cbeadb28aac5ee8e8c0cf53bb7/demo_imagegrid_aspect.ipynb \ No newline at end of file diff --git a/_downloads/614379363de926ceb080acb5076be23a/menu.py b/_downloads/614379363de926ceb080acb5076be23a/menu.py deleted file mode 100644 index 326e28fd81a..00000000000 --- a/_downloads/614379363de926ceb080acb5076be23a/menu.py +++ /dev/null @@ -1,179 +0,0 @@ -""" -==== -Menu -==== - -""" -import numpy as np -import matplotlib.colors as colors -import matplotlib.patches as patches -import matplotlib.mathtext as mathtext -import matplotlib.pyplot as plt -import matplotlib.artist as artist -import matplotlib.image as image - - -class ItemProperties(object): - def __init__(self, fontsize=14, labelcolor='black', bgcolor='yellow', - alpha=1.0): - self.fontsize = fontsize - self.labelcolor = labelcolor - self.bgcolor = bgcolor - self.alpha = alpha - - self.labelcolor_rgb = colors.to_rgba(labelcolor)[:3] - self.bgcolor_rgb = colors.to_rgba(bgcolor)[:3] - - -class MenuItem(artist.Artist): - parser = mathtext.MathTextParser("Bitmap") - padx = 5 - pady = 5 - - def __init__(self, fig, labelstr, props=None, hoverprops=None, - on_select=None): - artist.Artist.__init__(self) - - self.set_figure(fig) - self.labelstr = labelstr - - if props is None: - props = ItemProperties() - - if hoverprops is None: - hoverprops = ItemProperties() - - self.props = props - self.hoverprops = hoverprops - - self.on_select = on_select - - x, self.depth = self.parser.to_mask( - labelstr, fontsize=props.fontsize, dpi=fig.dpi) - - if props.fontsize != hoverprops.fontsize: - raise NotImplementedError( - 'support for different font sizes not implemented') - - self.labelwidth = x.shape[1] - self.labelheight = x.shape[0] - - self.labelArray = np.zeros((x.shape[0], x.shape[1], 4)) - self.labelArray[:, :, -1] = x/255. - - self.label = image.FigureImage(fig, origin='upper') - self.label.set_array(self.labelArray) - - # we'll update these later - self.rect = patches.Rectangle((0, 0), 1, 1) - - self.set_hover_props(False) - - fig.canvas.mpl_connect('button_release_event', self.check_select) - - def check_select(self, event): - over, junk = self.rect.contains(event) - if not over: - return - - if self.on_select is not None: - self.on_select(self) - - def set_extent(self, x, y, w, h): - print(x, y, w, h) - self.rect.set_x(x) - self.rect.set_y(y) - self.rect.set_width(w) - self.rect.set_height(h) - - self.label.ox = x + self.padx - self.label.oy = y - self.depth + self.pady/2. - - self.hover = False - - def draw(self, renderer): - self.rect.draw(renderer) - self.label.draw(renderer) - - def set_hover_props(self, b): - if b: - props = self.hoverprops - else: - props = self.props - - r, g, b = props.labelcolor_rgb - self.labelArray[:, :, 0] = r - self.labelArray[:, :, 1] = g - self.labelArray[:, :, 2] = b - self.label.set_array(self.labelArray) - self.rect.set(facecolor=props.bgcolor, alpha=props.alpha) - - def set_hover(self, event): - 'check the hover status of event and return true if status is changed' - b, junk = self.rect.contains(event) - - changed = (b != self.hover) - - if changed: - self.set_hover_props(b) - - self.hover = b - return changed - - -class Menu(object): - def __init__(self, fig, menuitems): - self.figure = fig - fig.suppressComposite = True - - self.menuitems = menuitems - self.numitems = len(menuitems) - - maxw = max(item.labelwidth for item in menuitems) - maxh = max(item.labelheight for item in menuitems) - - totalh = self.numitems*maxh + (self.numitems + 1)*2*MenuItem.pady - - x0 = 100 - y0 = 400 - - width = maxw + 2*MenuItem.padx - height = maxh + MenuItem.pady - - for item in menuitems: - left = x0 - bottom = y0 - maxh - MenuItem.pady - - item.set_extent(left, bottom, width, height) - - fig.artists.append(item) - y0 -= maxh + MenuItem.pady - - fig.canvas.mpl_connect('motion_notify_event', self.on_move) - - def on_move(self, event): - draw = False - for item in self.menuitems: - draw = item.set_hover(event) - if draw: - self.figure.canvas.draw() - break - - -fig = plt.figure() -fig.subplots_adjust(left=0.3) -props = ItemProperties(labelcolor='black', bgcolor='yellow', - fontsize=15, alpha=0.2) -hoverprops = ItemProperties(labelcolor='white', bgcolor='blue', - fontsize=15, alpha=0.2) - -menuitems = [] -for label in ('open', 'close', 'save', 'save as', 'quit'): - def on_select(item): - print('you selected %s' % item.labelstr) - item = MenuItem(fig, label, props=props, hoverprops=hoverprops, - on_select=on_select) - menuitems.append(item) - -menu = Menu(fig, menuitems) -plt.show() diff --git a/_downloads/614fb4849cf8fd03d228cc876a23acbd/membrane.ipynb b/_downloads/614fb4849cf8fd03d228cc876a23acbd/membrane.ipynb deleted file mode 120000 index d956383b5b9..00000000000 --- a/_downloads/614fb4849cf8fd03d228cc876a23acbd/membrane.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/614fb4849cf8fd03d228cc876a23acbd/membrane.ipynb \ No newline at end of file diff --git a/_downloads/61525a712c8282b9dddfe11cfea93c19/pgf_texsystem.ipynb b/_downloads/61525a712c8282b9dddfe11cfea93c19/pgf_texsystem.ipynb deleted file mode 120000 index 8143eb97a5a..00000000000 --- a/_downloads/61525a712c8282b9dddfe11cfea93c19/pgf_texsystem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/61525a712c8282b9dddfe11cfea93c19/pgf_texsystem.ipynb \ No newline at end of file diff --git a/_downloads/61537352badfcc540001ab8826a35c35/barchart.ipynb b/_downloads/61537352badfcc540001ab8826a35c35/barchart.ipynb deleted file mode 120000 index 748dcb31dcf..00000000000 --- a/_downloads/61537352badfcc540001ab8826a35c35/barchart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/61537352badfcc540001ab8826a35c35/barchart.ipynb \ No newline at end of file diff --git a/_downloads/61565c2f650347ef539a5e685b507c4d/trigradient_demo.py b/_downloads/61565c2f650347ef539a5e685b507c4d/trigradient_demo.py deleted file mode 120000 index 41dd6164a4f..00000000000 --- a/_downloads/61565c2f650347ef539a5e685b507c4d/trigradient_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/61565c2f650347ef539a5e685b507c4d/trigradient_demo.py \ No newline at end of file diff --git a/_downloads/615af56fbcb59f341ab9c520f8e90adf/text_alignment.ipynb b/_downloads/615af56fbcb59f341ab9c520f8e90adf/text_alignment.ipynb deleted file mode 100644 index 99fb4f5d3ad..00000000000 --- a/_downloads/615af56fbcb59f341ab9c520f8e90adf/text_alignment.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Precise text layout\n\n\nYou can precisely layout text in data or axes (0,1) coordinates. This\nexample shows you some of the alignment and rotation specifications for text\nlayout.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Build a rectangle in axes coords\nleft, width = .25, .5\nbottom, height = .25, .5\nright = left + width\ntop = bottom + height\nax = plt.gca()\np = plt.Rectangle((left, bottom), width, height, fill=False)\np.set_transform(ax.transAxes)\np.set_clip_on(False)\nax.add_patch(p)\n\n\nax.text(left, bottom, 'left top',\n horizontalalignment='left',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, bottom, 'left bottom',\n horizontalalignment='left',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right bottom',\n horizontalalignment='right',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right top',\n horizontalalignment='right',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(right, bottom, 'center top',\n horizontalalignment='center',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, 0.5 * (bottom + top), 'right center',\n horizontalalignment='right',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, 0.5 * (bottom + top), 'left center',\n horizontalalignment='left',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(0.5 * (left + right), 0.5 * (bottom + top), 'middle',\n horizontalalignment='center',\n verticalalignment='center',\n transform=ax.transAxes)\n\nax.text(right, 0.5 * (bottom + top), 'centered',\n horizontalalignment='center',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, top, 'rotated\\nwith newlines',\n horizontalalignment='center',\n verticalalignment='center',\n rotation=45,\n transform=ax.transAxes)\n\nplt.axis('off')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/615d158a8f16bb511a017b10c0c9aec4/transoffset.ipynb b/_downloads/615d158a8f16bb511a017b10c0c9aec4/transoffset.ipynb deleted file mode 100644 index cb5c5be8008..00000000000 --- a/_downloads/615d158a8f16bb511a017b10c0c9aec4/transoffset.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Transoffset\n\n\nThis illustrates the use of transforms.offset_copy to\nmake a transform that positions a drawing element such as\na text string at a specified offset in screen coordinates\n(dots or inches) relative to a location given in any\ncoordinates.\n\nEvery Artist--the mpl class from which classes such as\nText and Line are derived--has a transform that can be\nset when the Artist is created, such as by the corresponding\npyplot command. By default this is usually the Axes.transData\ntransform, going from data units to screen dots. We can\nuse the offset_copy function to make a modified copy of\nthis transform, where the modification consists of an\noffset.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\nimport numpy as np\n\n\nxs = np.arange(7)\nys = xs**2\n\nfig = plt.figure(figsize=(5, 10))\nax = plt.subplot(2, 1, 1)\n\n# If we want the same offset for each text instance,\n# we only need to make one transform. To get the\n# transform argument to offset_copy, we need to make the axes\n# first; the subplot command above is one way to do this.\ntrans_offset = mtransforms.offset_copy(ax.transData, fig=fig,\n x=0.05, y=0.10, units='inches')\n\nfor x, y in zip(xs, ys):\n plt.plot(x, y, 'ro')\n plt.text(x, y, '%d, %d' % (int(x), int(y)), transform=trans_offset)\n\n\n# offset_copy works for polar plots also.\nax = plt.subplot(2, 1, 2, projection='polar')\n\ntrans_offset = mtransforms.offset_copy(ax.transData, fig=fig,\n y=6, units='dots')\n\nfor x, y in zip(xs, ys):\n plt.polar(x, y, 'ro')\n plt.text(x, y, '%d, %d' % (int(x), int(y)),\n transform=trans_offset,\n horizontalalignment='center',\n verticalalignment='bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6174472b158bd25cca1b3b86e7439a3c/demo_axes_grid.ipynb b/_downloads/6174472b158bd25cca1b3b86e7439a3c/demo_axes_grid.ipynb deleted file mode 120000 index 1ecd9ddb114..00000000000 --- a/_downloads/6174472b158bd25cca1b3b86e7439a3c/demo_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6174472b158bd25cca1b3b86e7439a3c/demo_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/617b94a30bf2db7c1dc8dda81a0a4d26/fig_axes_customize_simple.ipynb b/_downloads/617b94a30bf2db7c1dc8dda81a0a4d26/fig_axes_customize_simple.ipynb deleted file mode 120000 index 174e73c8f1b..00000000000 --- a/_downloads/617b94a30bf2db7c1dc8dda81a0a4d26/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/617b94a30bf2db7c1dc8dda81a0a4d26/fig_axes_customize_simple.ipynb \ No newline at end of file diff --git a/_downloads/618cf255d75e3cfb46a47e6adbc76081/legend_guide.ipynb b/_downloads/618cf255d75e3cfb46a47e6adbc76081/legend_guide.ipynb deleted file mode 120000 index d89cf178e82..00000000000 --- a/_downloads/618cf255d75e3cfb46a47e6adbc76081/legend_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/618cf255d75e3cfb46a47e6adbc76081/legend_guide.ipynb \ No newline at end of file diff --git a/_downloads/61908bd5169b8582939c6597de3748e3/stem_plot.py b/_downloads/61908bd5169b8582939c6597de3748e3/stem_plot.py deleted file mode 120000 index f00517ffb4e..00000000000 --- a/_downloads/61908bd5169b8582939c6597de3748e3/stem_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/61908bd5169b8582939c6597de3748e3/stem_plot.py \ No newline at end of file diff --git a/_downloads/619b8999214c7f74c1a17b35132a5ad2/contour_demo.ipynb b/_downloads/619b8999214c7f74c1a17b35132a5ad2/contour_demo.ipynb deleted file mode 100644 index f5937aadfef..00000000000 --- a/_downloads/619b8999214c7f74c1a17b35132a5ad2/contour_demo.ipynb +++ /dev/null @@ -1,180 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Demo\n\n\nIllustrate simple contour plotting, contours on an image with\na colorbar for the contours, and labelled contours.\n\nSee also the :doc:`contour image example\n`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.pyplot as plt\n\n\ndelta = 0.025\nx = np.arange(-3.0, 3.0, delta)\ny = np.arange(-2.0, 2.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create a simple contour plot with labels using default colors. The\ninline argument to clabel will control whether the labels are draw\nover the line segments of the contour, removing the lines beneath\nthe label\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z)\nax.clabel(CS, inline=1, fontsize=10)\nax.set_title('Simplest default with labels')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "contour labels can be placed manually by providing list of positions\n(in data coordinate). See ginput_manual_clabel.py for interactive\nplacement.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z)\nmanual_locations = [(-1, -1.4), (-0.62, -0.7), (-2, 0.5), (1.7, 1.2), (2.0, 1.4), (2.4, 1.7)]\nax.clabel(CS, inline=1, fontsize=10, manual=manual_locations)\nax.set_title('labels at selected locations')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can force all the contours to be the same color.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z, 6,\n colors='k', # negative contours will be dashed by default\n )\nax.clabel(CS, fontsize=9, inline=1)\nax.set_title('Single color - negative contours dashed')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can set negative contours to be solid instead of dashed:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.rcParams['contour.negative_linestyle'] = 'solid'\nfig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z, 6,\n colors='k', # negative contours will be dashed by default\n )\nax.clabel(CS, fontsize=9, inline=1)\nax.set_title('Single color - negative contours solid')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And you can manually specify the colors of the contour\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z, 6,\n linewidths=np.arange(.5, 4, .5),\n colors=('r', 'green', 'blue', (1, 1, 0), '#afeeee', '0.5')\n )\nax.clabel(CS, fontsize=9, inline=1)\nax.set_title('Crazy lines')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Or you can use a colormap to specify the colors; the default\ncolormap will be used for the contour lines\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nim = ax.imshow(Z, interpolation='bilinear', origin='lower',\n cmap=cm.gray, extent=(-3, 3, -2, 2))\nlevels = np.arange(-1.2, 1.6, 0.2)\nCS = ax.contour(Z, levels, origin='lower', cmap='flag',\n linewidths=2, extent=(-3, 3, -2, 2))\n\n# Thicken the zero contour.\nzc = CS.collections[6]\nplt.setp(zc, linewidth=4)\n\nax.clabel(CS, levels[1::2], # label every second level\n inline=1, fmt='%1.1f', fontsize=14)\n\n# make a colorbar for the contour lines\nCB = fig.colorbar(CS, shrink=0.8, extend='both')\n\nax.set_title('Lines with colorbar')\n\n# We can still add a colorbar for the image, too.\nCBI = fig.colorbar(im, orientation='horizontal', shrink=0.8)\n\n# This makes the original colorbar look a bit out of place,\n# so let's improve its position.\n\nl, b, w, h = ax.get_position().bounds\nll, bb, ww, hh = CB.ax.get_position().bounds\nCB.ax.set_position([ll, b + 0.1*h, ww, h*0.8])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.axes.Axes.clabel\nmatplotlib.pyplot.clabel\nmatplotlib.axes.Axes.set_position\nmatplotlib.axes.Axes.get_position" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/61ae40b2ad2cd88c1d3938b74d6f2f5a/autowrap.py b/_downloads/61ae40b2ad2cd88c1d3938b74d6f2f5a/autowrap.py deleted file mode 120000 index 8d8bb8cd7b9..00000000000 --- a/_downloads/61ae40b2ad2cd88c1d3938b74d6f2f5a/autowrap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/61ae40b2ad2cd88c1d3938b74d6f2f5a/autowrap.py \ No newline at end of file diff --git a/_downloads/61aeea2700031eda6f0b02676491ff14/legend_picking.ipynb b/_downloads/61aeea2700031eda6f0b02676491ff14/legend_picking.ipynb deleted file mode 100644 index 97b40e82500..00000000000 --- a/_downloads/61aeea2700031eda6f0b02676491ff14/legend_picking.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend Picking\n\n\nEnable picking on the legend to toggle the original line on and off\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0.0, 0.2, 0.1)\ny1 = 2*np.sin(2*np.pi*t)\ny2 = 4*np.sin(2*np.pi*2*t)\n\nfig, ax = plt.subplots()\nax.set_title('Click on legend line to toggle line on/off')\nline1, = ax.plot(t, y1, lw=2, label='1 HZ')\nline2, = ax.plot(t, y2, lw=2, label='2 HZ')\nleg = ax.legend(loc='upper left', fancybox=True, shadow=True)\nleg.get_frame().set_alpha(0.4)\n\n\n# we will set up a dict mapping legend line to orig line, and enable\n# picking on the legend line\nlines = [line1, line2]\nlined = dict()\nfor legline, origline in zip(leg.get_lines(), lines):\n legline.set_picker(5) # 5 pts tolerance\n lined[legline] = origline\n\n\ndef onpick(event):\n # on the pick event, find the orig line corresponding to the\n # legend proxy line, and toggle the visibility\n legline = event.artist\n origline = lined[legline]\n vis = not origline.get_visible()\n origline.set_visible(vis)\n # Change the alpha on the line in the legend so we can see what lines\n # have been toggled\n if vis:\n legline.set_alpha(1.0)\n else:\n legline.set_alpha(0.2)\n fig.canvas.draw()\n\nfig.canvas.mpl_connect('pick_event', onpick)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/61bc3eb07f021c5f963541b0167b70bf/engineering_formatter.ipynb b/_downloads/61bc3eb07f021c5f963541b0167b70bf/engineering_formatter.ipynb deleted file mode 120000 index d03f8b9adcb..00000000000 --- a/_downloads/61bc3eb07f021c5f963541b0167b70bf/engineering_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/61bc3eb07f021c5f963541b0167b70bf/engineering_formatter.ipynb \ No newline at end of file diff --git a/_downloads/61c6eb2dccd1ca1d2048a43062fa7d32/axhspan_demo.ipynb b/_downloads/61c6eb2dccd1ca1d2048a43062fa7d32/axhspan_demo.ipynb deleted file mode 120000 index ce4cf7e7f8a..00000000000 --- a/_downloads/61c6eb2dccd1ca1d2048a43062fa7d32/axhspan_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/61c6eb2dccd1ca1d2048a43062fa7d32/axhspan_demo.ipynb \ No newline at end of file diff --git a/_downloads/61cbe9a26e245d23778900f11f58cb97/text_intro.py b/_downloads/61cbe9a26e245d23778900f11f58cb97/text_intro.py deleted file mode 120000 index f14135167c8..00000000000 --- a/_downloads/61cbe9a26e245d23778900f11f58cb97/text_intro.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/61cbe9a26e245d23778900f11f58cb97/text_intro.py \ No newline at end of file diff --git a/_downloads/61ce7842597f49691ac3e3b4a1769536/errorbar_limits_simple.py b/_downloads/61ce7842597f49691ac3e3b4a1769536/errorbar_limits_simple.py deleted file mode 120000 index a84e3955c73..00000000000 --- a/_downloads/61ce7842597f49691ac3e3b4a1769536/errorbar_limits_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/61ce7842597f49691ac3e3b4a1769536/errorbar_limits_simple.py \ No newline at end of file diff --git a/_downloads/61d693e8e0386b1014395b25d1cc5035/demo_floating_axis.py b/_downloads/61d693e8e0386b1014395b25d1cc5035/demo_floating_axis.py deleted file mode 120000 index f35cce4b748..00000000000 --- a/_downloads/61d693e8e0386b1014395b25d1cc5035/demo_floating_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/61d693e8e0386b1014395b25d1cc5035/demo_floating_axis.py \ No newline at end of file diff --git a/_downloads/61d91ee8ddfe27a149fba1e529df0051/keypress_demo.ipynb b/_downloads/61d91ee8ddfe27a149fba1e529df0051/keypress_demo.ipynb deleted file mode 120000 index bb530f86544..00000000000 --- a/_downloads/61d91ee8ddfe27a149fba1e529df0051/keypress_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/61d91ee8ddfe27a149fba1e529df0051/keypress_demo.ipynb \ No newline at end of file diff --git a/_downloads/61e405a01d61452ab7b4074ba9de5edb/axes_props.ipynb b/_downloads/61e405a01d61452ab7b4074ba9de5edb/axes_props.ipynb deleted file mode 120000 index dff8a143998..00000000000 --- a/_downloads/61e405a01d61452ab7b4074ba9de5edb/axes_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/61e405a01d61452ab7b4074ba9de5edb/axes_props.ipynb \ No newline at end of file diff --git a/_downloads/61e946ba745f79be8b0a28c3ef054f34/ellipse_demo.py b/_downloads/61e946ba745f79be8b0a28c3ef054f34/ellipse_demo.py deleted file mode 120000 index a9403173c66..00000000000 --- a/_downloads/61e946ba745f79be8b0a28c3ef054f34/ellipse_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/61e946ba745f79be8b0a28c3ef054f34/ellipse_demo.py \ No newline at end of file diff --git a/_downloads/61eee87f1fcf6723b229b6d745a3cd3f/units_sample.py b/_downloads/61eee87f1fcf6723b229b6d745a3cd3f/units_sample.py deleted file mode 120000 index 5341cae4358..00000000000 --- a/_downloads/61eee87f1fcf6723b229b6d745a3cd3f/units_sample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/61eee87f1fcf6723b229b6d745a3cd3f/units_sample.py \ No newline at end of file diff --git a/_downloads/61f5d448be497db6a30387b809ee77d1/fill_spiral.py b/_downloads/61f5d448be497db6a30387b809ee77d1/fill_spiral.py deleted file mode 120000 index 046e2ada9d4..00000000000 --- a/_downloads/61f5d448be497db6a30387b809ee77d1/fill_spiral.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/61f5d448be497db6a30387b809ee77d1/fill_spiral.py \ No newline at end of file diff --git a/_downloads/61fccb8a891a5fdb4afbcd2bbdc65716/demo_annotation_box.ipynb b/_downloads/61fccb8a891a5fdb4afbcd2bbdc65716/demo_annotation_box.ipynb deleted file mode 120000 index 6199b28b25a..00000000000 --- a/_downloads/61fccb8a891a5fdb4afbcd2bbdc65716/demo_annotation_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/61fccb8a891a5fdb4afbcd2bbdc65716/demo_annotation_box.ipynb \ No newline at end of file diff --git a/_downloads/62042331169a19e82cf05f31878858d2/quiver3d.ipynb b/_downloads/62042331169a19e82cf05f31878858d2/quiver3d.ipynb deleted file mode 120000 index 7773663b1b9..00000000000 --- a/_downloads/62042331169a19e82cf05f31878858d2/quiver3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/62042331169a19e82cf05f31878858d2/quiver3d.ipynb \ No newline at end of file diff --git a/_downloads/6205d75af5e8aef56e944a703a0c2ea2/color_cycler.ipynb b/_downloads/6205d75af5e8aef56e944a703a0c2ea2/color_cycler.ipynb deleted file mode 120000 index 744d5ceefc9..00000000000 --- a/_downloads/6205d75af5e8aef56e944a703a0c2ea2/color_cycler.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6205d75af5e8aef56e944a703a0c2ea2/color_cycler.ipynb \ No newline at end of file diff --git a/_downloads/620a5968857fc04683697be2487f7d32/mathtext_demo.py b/_downloads/620a5968857fc04683697be2487f7d32/mathtext_demo.py deleted file mode 120000 index 0c95ff6eefb..00000000000 --- a/_downloads/620a5968857fc04683697be2487f7d32/mathtext_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/620a5968857fc04683697be2487f7d32/mathtext_demo.py \ No newline at end of file diff --git a/_downloads/620c252148f43e77bfdb28c5c09efe05/spines_dropped.ipynb b/_downloads/620c252148f43e77bfdb28c5c09efe05/spines_dropped.ipynb deleted file mode 100644 index 086d4ab2a8d..00000000000 --- a/_downloads/620c252148f43e77bfdb28c5c09efe05/spines_dropped.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dropped spines\n\n\nDemo of spines offset from the axes (a.k.a. \"dropped spines\").\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\n\nimage = np.random.uniform(size=(10, 10))\nax.imshow(image, cmap=plt.cm.gray, interpolation='nearest')\nax.set_title('dropped spines')\n\n# Move left and bottom spines outward by 10 points\nax.spines['left'].set_position(('outward', 10))\nax.spines['bottom'].set_position(('outward', 10))\n# Hide the right and top spines\nax.spines['right'].set_visible(False)\nax.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax.yaxis.set_ticks_position('left')\nax.xaxis.set_ticks_position('bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/621295659525a8f0100cc398491f261a/dollar_ticks.py b/_downloads/621295659525a8f0100cc398491f261a/dollar_ticks.py deleted file mode 120000 index 33a8d6fece5..00000000000 --- a/_downloads/621295659525a8f0100cc398491f261a/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/621295659525a8f0100cc398491f261a/dollar_ticks.py \ No newline at end of file diff --git a/_downloads/621f3e7d53bf738119e6c7cda6c4d4ef/colormap_normalizations.ipynb b/_downloads/621f3e7d53bf738119e6c7cda6c4d4ef/colormap_normalizations.ipynb deleted file mode 120000 index 07fe7a94901..00000000000 --- a/_downloads/621f3e7d53bf738119e6c7cda6c4d4ef/colormap_normalizations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/621f3e7d53bf738119e6c7cda6c4d4ef/colormap_normalizations.ipynb \ No newline at end of file diff --git a/_downloads/6226a6e6a2086dddeb466d4c8740076c/custom_shaded_3d_surface.py b/_downloads/6226a6e6a2086dddeb466d4c8740076c/custom_shaded_3d_surface.py deleted file mode 120000 index 8bbf287d382..00000000000 --- a/_downloads/6226a6e6a2086dddeb466d4c8740076c/custom_shaded_3d_surface.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6226a6e6a2086dddeb466d4c8740076c/custom_shaded_3d_surface.py \ No newline at end of file diff --git a/_downloads/623234b562079191d17a3879cccb6c88/viewlims.py b/_downloads/623234b562079191d17a3879cccb6c88/viewlims.py deleted file mode 120000 index 852fff19474..00000000000 --- a/_downloads/623234b562079191d17a3879cccb6c88/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/623234b562079191d17a3879cccb6c88/viewlims.py \ No newline at end of file diff --git a/_downloads/6235c6d22e13dd0a66b00915517a09d9/bars3d.ipynb b/_downloads/6235c6d22e13dd0a66b00915517a09d9/bars3d.ipynb deleted file mode 120000 index 60d23e1422b..00000000000 --- a/_downloads/6235c6d22e13dd0a66b00915517a09d9/bars3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6235c6d22e13dd0a66b00915517a09d9/bars3d.ipynb \ No newline at end of file diff --git a/_downloads/623cda9fd494ab65164cbcc6cff26f93/ellipse_collection.ipynb b/_downloads/623cda9fd494ab65164cbcc6cff26f93/ellipse_collection.ipynb deleted file mode 120000 index c80be64705c..00000000000 --- a/_downloads/623cda9fd494ab65164cbcc6cff26f93/ellipse_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/623cda9fd494ab65164cbcc6cff26f93/ellipse_collection.ipynb \ No newline at end of file diff --git a/_downloads/6248c16246e410bb92a539f2a823ffe7/lasso_demo.ipynb b/_downloads/6248c16246e410bb92a539f2a823ffe7/lasso_demo.ipynb deleted file mode 120000 index 4ee6ef3f4a8..00000000000 --- a/_downloads/6248c16246e410bb92a539f2a823ffe7/lasso_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6248c16246e410bb92a539f2a823ffe7/lasso_demo.ipynb \ No newline at end of file diff --git a/_downloads/626db1d464d972a0a9024975b618a61c/contour_manual.py b/_downloads/626db1d464d972a0a9024975b618a61c/contour_manual.py deleted file mode 120000 index 7351de885af..00000000000 --- a/_downloads/626db1d464d972a0a9024975b618a61c/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/626db1d464d972a0a9024975b618a61c/contour_manual.py \ No newline at end of file diff --git a/_downloads/62709e89010f09aa5b592a30e0e3fd18/mathtext_examples.py b/_downloads/62709e89010f09aa5b592a30e0e3fd18/mathtext_examples.py deleted file mode 120000 index af73e76db4a..00000000000 --- a/_downloads/62709e89010f09aa5b592a30e0e3fd18/mathtext_examples.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/62709e89010f09aa5b592a30e0e3fd18/mathtext_examples.py \ No newline at end of file diff --git a/_downloads/628c414a452e2ecb49d8e100c114bb90/color_demo.py b/_downloads/628c414a452e2ecb49d8e100c114bb90/color_demo.py deleted file mode 120000 index beef46a9c39..00000000000 --- a/_downloads/628c414a452e2ecb49d8e100c114bb90/color_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/628c414a452e2ecb49d8e100c114bb90/color_demo.py \ No newline at end of file diff --git a/_downloads/62927427a9fa16b49efde41935ac34f9/demo_bboximage.py b/_downloads/62927427a9fa16b49efde41935ac34f9/demo_bboximage.py deleted file mode 120000 index 854255d1215..00000000000 --- a/_downloads/62927427a9fa16b49efde41935ac34f9/demo_bboximage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/62927427a9fa16b49efde41935ac34f9/demo_bboximage.py \ No newline at end of file diff --git a/_downloads/629441a6e97357694a3ec20ea8a6711f/barcode_demo.ipynb b/_downloads/629441a6e97357694a3ec20ea8a6711f/barcode_demo.ipynb deleted file mode 120000 index f01cbef2133..00000000000 --- a/_downloads/629441a6e97357694a3ec20ea8a6711f/barcode_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/629441a6e97357694a3ec20ea8a6711f/barcode_demo.ipynb \ No newline at end of file diff --git a/_downloads/62954328e40f8ba89c4fff799ca4e7fb/spine_placement_demo.py b/_downloads/62954328e40f8ba89c4fff799ca4e7fb/spine_placement_demo.py deleted file mode 120000 index 50acff285dd..00000000000 --- a/_downloads/62954328e40f8ba89c4fff799ca4e7fb/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/62954328e40f8ba89c4fff799ca4e7fb/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/62b02c79aa03cd9058e4f8247534a84b/simple_axisartist1.py b/_downloads/62b02c79aa03cd9058e4f8247534a84b/simple_axisartist1.py deleted file mode 120000 index 325609e051b..00000000000 --- a/_downloads/62b02c79aa03cd9058e4f8247534a84b/simple_axisartist1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/62b02c79aa03cd9058e4f8247534a84b/simple_axisartist1.py \ No newline at end of file diff --git a/_downloads/62b471e9287f2bde747eca15d2e118c3/simple_axesgrid.ipynb b/_downloads/62b471e9287f2bde747eca15d2e118c3/simple_axesgrid.ipynb deleted file mode 120000 index a3b5a5ed49d..00000000000 --- a/_downloads/62b471e9287f2bde747eca15d2e118c3/simple_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/62b471e9287f2bde747eca15d2e118c3/simple_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/62b6fdc16b07acd0d5d3cd4b66d30b28/pyplot_scales.py b/_downloads/62b6fdc16b07acd0d5d3cd4b66d30b28/pyplot_scales.py deleted file mode 120000 index 1c68e798530..00000000000 --- a/_downloads/62b6fdc16b07acd0d5d3cd4b66d30b28/pyplot_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/62b6fdc16b07acd0d5d3cd4b66d30b28/pyplot_scales.py \ No newline at end of file diff --git a/_downloads/62c2f72bd7ab7148b0f6d340063be62e/dolphin.ipynb b/_downloads/62c2f72bd7ab7148b0f6d340063be62e/dolphin.ipynb deleted file mode 120000 index 0e01ea3642d..00000000000 --- a/_downloads/62c2f72bd7ab7148b0f6d340063be62e/dolphin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/62c2f72bd7ab7148b0f6d340063be62e/dolphin.ipynb \ No newline at end of file diff --git a/_downloads/62c4c9cb3ed549cb4453555ada267191/span_selector.ipynb b/_downloads/62c4c9cb3ed549cb4453555ada267191/span_selector.ipynb deleted file mode 120000 index e0c68411c06..00000000000 --- a/_downloads/62c4c9cb3ed549cb4453555ada267191/span_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/62c4c9cb3ed549cb4453555ada267191/span_selector.ipynb \ No newline at end of file diff --git a/_downloads/62c71faf74da9063a3e8cccd6bfdbed9/boxplot_demo.py b/_downloads/62c71faf74da9063a3e8cccd6bfdbed9/boxplot_demo.py deleted file mode 120000 index 9d3ca8b604b..00000000000 --- a/_downloads/62c71faf74da9063a3e8cccd6bfdbed9/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/62c71faf74da9063a3e8cccd6bfdbed9/boxplot_demo.py \ No newline at end of file diff --git a/_downloads/62c9faedab01211ca562b19d1cf5283e/mathtext_wx_sgskip.py b/_downloads/62c9faedab01211ca562b19d1cf5283e/mathtext_wx_sgskip.py deleted file mode 120000 index 97bae8791c5..00000000000 --- a/_downloads/62c9faedab01211ca562b19d1cf5283e/mathtext_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/62c9faedab01211ca562b19d1cf5283e/mathtext_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/62dcdef487c62f1fe0e555c703d77512/symlog_demo.ipynb b/_downloads/62dcdef487c62f1fe0e555c703d77512/symlog_demo.ipynb deleted file mode 120000 index d54b65a99ec..00000000000 --- a/_downloads/62dcdef487c62f1fe0e555c703d77512/symlog_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/62dcdef487c62f1fe0e555c703d77512/symlog_demo.ipynb \ No newline at end of file diff --git a/_downloads/62e528bf825292efa2513d856f423030/pie_demo2.py b/_downloads/62e528bf825292efa2513d856f423030/pie_demo2.py deleted file mode 120000 index 0cf75e308d7..00000000000 --- a/_downloads/62e528bf825292efa2513d856f423030/pie_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/62e528bf825292efa2513d856f423030/pie_demo2.py \ No newline at end of file diff --git a/_downloads/62eb93c8afb11fd47ea4da2ead2c16e5/strip_chart.py b/_downloads/62eb93c8afb11fd47ea4da2ead2c16e5/strip_chart.py deleted file mode 100644 index 8e9bf2dad65..00000000000 --- a/_downloads/62eb93c8afb11fd47ea4da2ead2c16e5/strip_chart.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -============ -Oscilloscope -============ - -Emulates an oscilloscope. -""" - -import numpy as np -from matplotlib.lines import Line2D -import matplotlib.pyplot as plt -import matplotlib.animation as animation - - -class Scope(object): - def __init__(self, ax, maxt=2, dt=0.02): - self.ax = ax - self.dt = dt - self.maxt = maxt - self.tdata = [0] - self.ydata = [0] - self.line = Line2D(self.tdata, self.ydata) - self.ax.add_line(self.line) - self.ax.set_ylim(-.1, 1.1) - self.ax.set_xlim(0, self.maxt) - - def update(self, y): - lastt = self.tdata[-1] - if lastt > self.tdata[0] + self.maxt: # reset the arrays - self.tdata = [self.tdata[-1]] - self.ydata = [self.ydata[-1]] - self.ax.set_xlim(self.tdata[0], self.tdata[0] + self.maxt) - self.ax.figure.canvas.draw() - - t = self.tdata[-1] + self.dt - self.tdata.append(t) - self.ydata.append(y) - self.line.set_data(self.tdata, self.ydata) - return self.line, - - -def emitter(p=0.03): - 'return a random value with probability p, else 0' - while True: - v = np.random.rand(1) - if v > p: - yield 0. - else: - yield np.random.rand(1) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -scope = Scope(ax) - -# pass a generator in "emitter" to produce data for the update func -ani = animation.FuncAnimation(fig, scope.update, emitter, interval=10, - blit=True) - -plt.show() diff --git a/_downloads/62f02812700316d78a11e89b29075906/artists.py b/_downloads/62f02812700316d78a11e89b29075906/artists.py deleted file mode 120000 index f3bd009b393..00000000000 --- a/_downloads/62f02812700316d78a11e89b29075906/artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/62f02812700316d78a11e89b29075906/artists.py \ No newline at end of file diff --git a/_downloads/62f5f0762f24ac9b463a52514d7ab768/findobj_demo.py b/_downloads/62f5f0762f24ac9b463a52514d7ab768/findobj_demo.py deleted file mode 120000 index 23997510be2..00000000000 --- a/_downloads/62f5f0762f24ac9b463a52514d7ab768/findobj_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/62f5f0762f24ac9b463a52514d7ab768/findobj_demo.py \ No newline at end of file diff --git a/_downloads/62f97f657a9c6e32d24f5a3084f3bc07/demo_fixed_size_axes.ipynb b/_downloads/62f97f657a9c6e32d24f5a3084f3bc07/demo_fixed_size_axes.ipynb deleted file mode 120000 index 0c94d8014b5..00000000000 --- a/_downloads/62f97f657a9c6e32d24f5a3084f3bc07/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/62f97f657a9c6e32d24f5a3084f3bc07/demo_fixed_size_axes.ipynb \ No newline at end of file diff --git a/_downloads/630514b3cff2ab2df9eb51e7c5cea20b/collections.py b/_downloads/630514b3cff2ab2df9eb51e7c5cea20b/collections.py deleted file mode 120000 index f768af25bf4..00000000000 --- a/_downloads/630514b3cff2ab2df9eb51e7c5cea20b/collections.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/630514b3cff2ab2df9eb51e7c5cea20b/collections.py \ No newline at end of file diff --git a/_downloads/630bd4c59ea39459b77efd3926e2e8cd/keypress_demo.py b/_downloads/630bd4c59ea39459b77efd3926e2e8cd/keypress_demo.py deleted file mode 120000 index d982792b0b4..00000000000 --- a/_downloads/630bd4c59ea39459b77efd3926e2e8cd/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/630bd4c59ea39459b77efd3926e2e8cd/keypress_demo.py \ No newline at end of file diff --git a/_downloads/630f55c9888411556d25b1bf7afef555/quiver_simple_demo.ipynb b/_downloads/630f55c9888411556d25b1bf7afef555/quiver_simple_demo.ipynb deleted file mode 120000 index 79e1daa8a47..00000000000 --- a/_downloads/630f55c9888411556d25b1bf7afef555/quiver_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/630f55c9888411556d25b1bf7afef555/quiver_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/63103a4996a711a20e5ce1c2a9a86443/voxels_numpy_logo.py b/_downloads/63103a4996a711a20e5ce1c2a9a86443/voxels_numpy_logo.py deleted file mode 120000 index 45b778c8d69..00000000000 --- a/_downloads/63103a4996a711a20e5ce1c2a9a86443/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/63103a4996a711a20e5ce1c2a9a86443/voxels_numpy_logo.py \ No newline at end of file diff --git a/_downloads/63215b97dd6c36c22b6da7bad94500e7/aspect_loglog.py b/_downloads/63215b97dd6c36c22b6da7bad94500e7/aspect_loglog.py deleted file mode 100644 index 90c0422ca38..00000000000 --- a/_downloads/63215b97dd6c36c22b6da7bad94500e7/aspect_loglog.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============= -Loglog Aspect -============= - -""" -import matplotlib.pyplot as plt - -fig, (ax1, ax2) = plt.subplots(1, 2) -ax1.set_xscale("log") -ax1.set_yscale("log") -ax1.set_xlim(1e1, 1e3) -ax1.set_ylim(1e2, 1e3) -ax1.set_aspect(1) -ax1.set_title("adjustable = box") - -ax2.set_xscale("log") -ax2.set_yscale("log") -ax2.set_adjustable("datalim") -ax2.plot([1, 3, 10], [1, 9, 100], "o-") -ax2.set_xlim(1e-1, 1e2) -ax2.set_ylim(1e-1, 1e3) -ax2.set_aspect(1) -ax2.set_title("adjustable = datalim") - -plt.show() diff --git a/_downloads/6327f9722b340ad792ac0b7268bd77ce/custom_boxstyle01.py b/_downloads/6327f9722b340ad792ac0b7268bd77ce/custom_boxstyle01.py deleted file mode 120000 index f8ba3bb7c97..00000000000 --- a/_downloads/6327f9722b340ad792ac0b7268bd77ce/custom_boxstyle01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6327f9722b340ad792ac0b7268bd77ce/custom_boxstyle01.py \ No newline at end of file diff --git a/_downloads/63351cea8162ff502fd7d5b431bc84ac/lasso_demo.py b/_downloads/63351cea8162ff502fd7d5b431bc84ac/lasso_demo.py deleted file mode 120000 index 2657cb371b8..00000000000 --- a/_downloads/63351cea8162ff502fd7d5b431bc84ac/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/63351cea8162ff502fd7d5b431bc84ac/lasso_demo.py \ No newline at end of file diff --git a/_downloads/6343b690aa8e899b95bb816e4a757a2b/demo_text_path.ipynb b/_downloads/6343b690aa8e899b95bb816e4a757a2b/demo_text_path.ipynb deleted file mode 100644 index c48185b16a7..00000000000 --- a/_downloads/6343b690aa8e899b95bb816e4a757a2b/demo_text_path.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Text Path\n\n\nUse a text as `Path`. The tool that allows for such conversion is a\n`~matplotlib.textpath.TextPath`. The resulting path can be employed\ne.g. as a clip path for an image.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.image import BboxImage\nimport numpy as np\nfrom matplotlib.transforms import IdentityTransform\n\nimport matplotlib.patches as mpatches\n\nfrom matplotlib.offsetbox import AnnotationBbox,\\\n AnchoredOffsetbox, AuxTransformBox\n\nfrom matplotlib.cbook import get_sample_data\n\nfrom matplotlib.text import TextPath\n\n\nclass PathClippedImagePatch(mpatches.PathPatch):\n \"\"\"\n The given image is used to draw the face of the patch. Internally,\n it uses BboxImage whose clippath set to the path of the patch.\n\n FIXME : The result is currently dpi dependent.\n \"\"\"\n\n def __init__(self, path, bbox_image, **kwargs):\n mpatches.PathPatch.__init__(self, path, **kwargs)\n self._init_bbox_image(bbox_image)\n\n def set_facecolor(self, color):\n \"\"\"simply ignore facecolor\"\"\"\n mpatches.PathPatch.set_facecolor(self, \"none\")\n\n def _init_bbox_image(self, im):\n\n bbox_image = BboxImage(self.get_window_extent,\n norm=None,\n origin=None,\n )\n bbox_image.set_transform(IdentityTransform())\n\n bbox_image.set_data(im)\n self.bbox_image = bbox_image\n\n def draw(self, renderer=None):\n\n # the clip path must be updated every draw. any solution? -JJ\n self.bbox_image.set_clip_path(self._path, self.get_transform())\n self.bbox_image.draw(renderer)\n\n mpatches.PathPatch.draw(self, renderer)\n\n\nif __name__ == \"__main__\":\n\n usetex = plt.rcParams[\"text.usetex\"]\n\n fig = plt.figure()\n\n # EXAMPLE 1\n\n ax = plt.subplot(211)\n\n arr = plt.imread(get_sample_data(\"grace_hopper.png\"))\n\n text_path = TextPath((0, 0), \"!?\", size=150)\n p = PathClippedImagePatch(text_path, arr, ec=\"k\",\n transform=IdentityTransform())\n\n # p.set_clip_on(False)\n\n # make offset box\n offsetbox = AuxTransformBox(IdentityTransform())\n offsetbox.add_artist(p)\n\n # make anchored offset box\n ao = AnchoredOffsetbox(loc='upper left', child=offsetbox, frameon=True,\n borderpad=0.2)\n ax.add_artist(ao)\n\n # another text\n from matplotlib.patches import PathPatch\n if usetex:\n r = r\"\\mbox{textpath supports mathtext \\& \\TeX}\"\n else:\n r = r\"textpath supports mathtext & TeX\"\n\n text_path = TextPath((0, 0), r,\n size=20, usetex=usetex)\n\n p1 = PathPatch(text_path, ec=\"w\", lw=3, fc=\"w\", alpha=0.9,\n transform=IdentityTransform())\n p2 = PathPatch(text_path, ec=\"none\", fc=\"k\",\n transform=IdentityTransform())\n\n offsetbox2 = AuxTransformBox(IdentityTransform())\n offsetbox2.add_artist(p1)\n offsetbox2.add_artist(p2)\n\n ab = AnnotationBbox(offsetbox2, (0.95, 0.05),\n xycoords='axes fraction',\n boxcoords=\"offset points\",\n box_alignment=(1., 0.),\n frameon=False\n )\n ax.add_artist(ab)\n\n ax.imshow([[0, 1, 2], [1, 2, 3]], cmap=plt.cm.gist_gray_r,\n interpolation=\"bilinear\",\n aspect=\"auto\")\n\n # EXAMPLE 2\n\n ax = plt.subplot(212)\n\n arr = np.arange(256).reshape(1, 256)/256.\n\n if usetex:\n s = (r\"$\\displaystyle\\left[\\sum_{n=1}^\\infty\"\n r\"\\frac{-e^{i\\pi}}{2^n}\\right]$!\")\n else:\n s = r\"$\\left[\\sum_{n=1}^\\infty\\frac{-e^{i\\pi}}{2^n}\\right]$!\"\n text_path = TextPath((0, 0), s, size=40, usetex=usetex)\n text_patch = PathClippedImagePatch(text_path, arr, ec=\"none\",\n transform=IdentityTransform())\n\n shadow1 = mpatches.Shadow(text_patch, 1, -1,\n props=dict(fc=\"none\", ec=\"0.6\", lw=3))\n shadow2 = mpatches.Shadow(text_patch, 1, -1,\n props=dict(fc=\"0.3\", ec=\"none\"))\n\n # make offset box\n offsetbox = AuxTransformBox(IdentityTransform())\n offsetbox.add_artist(shadow1)\n offsetbox.add_artist(shadow2)\n offsetbox.add_artist(text_patch)\n\n # place the anchored offset box using AnnotationBbox\n ab = AnnotationBbox(offsetbox, (0.5, 0.5),\n xycoords='data',\n boxcoords=\"offset points\",\n box_alignment=(0.5, 0.5),\n )\n # text_path.set_size(10)\n\n ax.add_artist(ab)\n\n ax.set_xlim(0, 1)\n ax.set_ylim(0, 1)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6349af4d4d7b64438fbae6fda0cc0e67/symlog_demo.py b/_downloads/6349af4d4d7b64438fbae6fda0cc0e67/symlog_demo.py deleted file mode 100644 index 0c27ba35e69..00000000000 --- a/_downloads/6349af4d4d7b64438fbae6fda0cc0e67/symlog_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=========== -Symlog Demo -=========== - -Example use of symlog (symmetric log) axis scaling. -""" -import matplotlib.pyplot as plt -import numpy as np - -dt = 0.01 -x = np.arange(-50.0, 50.0, dt) -y = np.arange(0, 100.0, dt) - -plt.subplot(311) -plt.plot(x, y) -plt.xscale('symlog') -plt.ylabel('symlogx') -plt.grid(True) -plt.gca().xaxis.grid(True, which='minor') # minor grid on too - -plt.subplot(312) -plt.plot(y, x) -plt.yscale('symlog') -plt.ylabel('symlogy') - -plt.subplot(313) -plt.plot(x, np.sin(x / 3.0)) -plt.xscale('symlog') -plt.yscale('symlog', linthreshy=0.015) -plt.grid(True) -plt.ylabel('symlog both') - -plt.tight_layout() -plt.show() diff --git a/_downloads/634b02ca1a7a24ca74cecf2e23963101/markevery_prop_cycle.ipynb b/_downloads/634b02ca1a7a24ca74cecf2e23963101/markevery_prop_cycle.ipynb deleted file mode 120000 index c0b2913e68e..00000000000 --- a/_downloads/634b02ca1a7a24ca74cecf2e23963101/markevery_prop_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/634b02ca1a7a24ca74cecf2e23963101/markevery_prop_cycle.ipynb \ No newline at end of file diff --git a/_downloads/634e2d2826946a2f7b49cad445ae9706/log_bar.py b/_downloads/634e2d2826946a2f7b49cad445ae9706/log_bar.py deleted file mode 120000 index 26104612cc3..00000000000 --- a/_downloads/634e2d2826946a2f7b49cad445ae9706/log_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/634e2d2826946a2f7b49cad445ae9706/log_bar.py \ No newline at end of file diff --git a/_downloads/635398af5eee2d6007f15cb995b37e0a/embedding_in_wx4_sgskip.py b/_downloads/635398af5eee2d6007f15cb995b37e0a/embedding_in_wx4_sgskip.py deleted file mode 120000 index 26d04ed4a6e..00000000000 --- a/_downloads/635398af5eee2d6007f15cb995b37e0a/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/635398af5eee2d6007f15cb995b37e0a/embedding_in_wx4_sgskip.py \ No newline at end of file diff --git a/_downloads/6355f7ff3dfba87923efaa7017416777/font_table_ttf_sgskip.py b/_downloads/6355f7ff3dfba87923efaa7017416777/font_table_ttf_sgskip.py deleted file mode 120000 index b072e6b6d10..00000000000 --- a/_downloads/6355f7ff3dfba87923efaa7017416777/font_table_ttf_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6355f7ff3dfba87923efaa7017416777/font_table_ttf_sgskip.py \ No newline at end of file diff --git a/_downloads/635db69414fbf8a34f56d876ee94bf11/invert_axes.py b/_downloads/635db69414fbf8a34f56d876ee94bf11/invert_axes.py deleted file mode 120000 index 3974b47fd4f..00000000000 --- a/_downloads/635db69414fbf8a34f56d876ee94bf11/invert_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/635db69414fbf8a34f56d876ee94bf11/invert_axes.py \ No newline at end of file diff --git a/_downloads/635fc11b42d4b20e855329a13f948164/pyplot_formatstr.ipynb b/_downloads/635fc11b42d4b20e855329a13f948164/pyplot_formatstr.ipynb deleted file mode 100644 index d3c5b2454d5..00000000000 --- a/_downloads/635fc11b42d4b20e855329a13f948164/pyplot_formatstr.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n====================\nplot() format string\n====================\n\nUse a format string (here, 'ro') to set the color and markers of a\n`~matplotlib.axes.Axes.plot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6362a993ca8741ffc7f8ce87c14d889d/pyplot_simple.ipynb b/_downloads/6362a993ca8741ffc7f8ce87c14d889d/pyplot_simple.ipynb deleted file mode 120000 index 1f3e786c565..00000000000 --- a/_downloads/6362a993ca8741ffc7f8ce87c14d889d/pyplot_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6362a993ca8741ffc7f8ce87c14d889d/pyplot_simple.ipynb \ No newline at end of file diff --git a/_downloads/6365d415a7df2ca52f7647504b1be154/axes_margins.py b/_downloads/6365d415a7df2ca52f7647504b1be154/axes_margins.py deleted file mode 100644 index 4d553809633..00000000000 --- a/_downloads/6365d415a7df2ca52f7647504b1be154/axes_margins.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -===================================================================== -Zooming in and out using Axes.margins and the subject of "stickiness" -===================================================================== - -The first figure in this example shows how to zoom in and out of a -plot using `~.Axes.margins` instead of `~.Axes.set_xlim` and -`~.Axes.set_ylim`. The second figure demonstrates the concept of -edge "stickiness" introduced by certain methods and artists and how -to effectively work around that. - -""" - -import numpy as np -import matplotlib.pyplot as plt - - -def f(t): - return np.exp(-t) * np.cos(2*np.pi*t) - - -t1 = np.arange(0.0, 3.0, 0.01) - -ax1 = plt.subplot(212) -ax1.margins(0.05) # Default margin is 0.05, value 0 means fit -ax1.plot(t1, f(t1)) - -ax2 = plt.subplot(221) -ax2.margins(2, 2) # Values >0.0 zoom out -ax2.plot(t1, f(t1)) -ax2.set_title('Zoomed out') - -ax3 = plt.subplot(222) -ax3.margins(x=0, y=-0.25) # Values in (-0.5, 0.0) zooms in to center -ax3.plot(t1, f(t1)) -ax3.set_title('Zoomed in') - -plt.show() - - -############################################################################# -# -# On the "stickiness" of certain plotting methods -# """"""""""""""""""""""""""""""""""""""""""""""" -# -# Some plotting functions make the axis limits "sticky" or immune to the will -# of the `~.Axes.margins` methods. For instance, `~.Axes.imshow` and -# `~.Axes.pcolor` expect the user to want the limits to be tight around the -# pixels shown in the plot. If this behavior is not desired, you need to set -# `~.Axes.use_sticky_edges` to `False`. Consider the following example: - -y, x = np.mgrid[:5, 1:6] -poly_coords = [ - (0.25, 2.75), (3.25, 2.75), - (2.25, 0.75), (0.25, 0.75) -] -fig, (ax1, ax2) = plt.subplots(ncols=2) - -# Here we set the stickiness of the axes object... -# ax1 we'll leave as the default, which uses sticky edges -# and we'll turn off stickiness for ax2 -ax2.use_sticky_edges = False - -for ax, status in zip((ax1, ax2), ('Is', 'Is Not')): - cells = ax.pcolor(x, y, x+y, cmap='inferno') # sticky - ax.add_patch( - plt.Polygon(poly_coords, color='forestgreen', alpha=0.5) - ) # not sticky - ax.margins(x=0.1, y=0.05) - ax.set_aspect('equal') - ax.set_title('{} Sticky'.format(status)) - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.margins -matplotlib.pyplot.margins -matplotlib.axes.Axes.use_sticky_edges -matplotlib.axes.Axes.pcolor -matplotlib.pyplot.pcolor -matplotlib.pyplot.Polygon diff --git a/_downloads/636c74bfe7ef60e740690628192fe799/imshow_extent.py b/_downloads/636c74bfe7ef60e740690628192fe799/imshow_extent.py deleted file mode 120000 index ad3d3db1358..00000000000 --- a/_downloads/636c74bfe7ef60e740690628192fe799/imshow_extent.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/636c74bfe7ef60e740690628192fe799/imshow_extent.py \ No newline at end of file diff --git a/_downloads/636f1eaa176cf8b7b69ce8e79c95b311/whats_new_98_4_fill_between.py b/_downloads/636f1eaa176cf8b7b69ce8e79c95b311/whats_new_98_4_fill_between.py deleted file mode 120000 index 2dbc8ae5a3e..00000000000 --- a/_downloads/636f1eaa176cf8b7b69ce8e79c95b311/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/636f1eaa176cf8b7b69ce8e79c95b311/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/_downloads/6372f517f32a3ba4747597846b07248e/arrow_simple_demo.py b/_downloads/6372f517f32a3ba4747597846b07248e/arrow_simple_demo.py deleted file mode 120000 index 8d0ce27dd91..00000000000 --- a/_downloads/6372f517f32a3ba4747597846b07248e/arrow_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6372f517f32a3ba4747597846b07248e/arrow_simple_demo.py \ No newline at end of file diff --git a/_downloads/637325386bd4e47c71b5183392bf4125/tutorials_jupyter.zip b/_downloads/637325386bd4e47c71b5183392bf4125/tutorials_jupyter.zip deleted file mode 120000 index 19c20eef157..00000000000 --- a/_downloads/637325386bd4e47c71b5183392bf4125/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.1/_downloads/637325386bd4e47c71b5183392bf4125/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/63777502afa18f963893393c8cb182b9/artist_tests.ipynb b/_downloads/63777502afa18f963893393c8cb182b9/artist_tests.ipynb deleted file mode 120000 index 955088e826c..00000000000 --- a/_downloads/63777502afa18f963893393c8cb182b9/artist_tests.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/63777502afa18f963893393c8cb182b9/artist_tests.ipynb \ No newline at end of file diff --git a/_downloads/637de424e7732b2ad7f514c9df47e98e/pyplot_scales.py b/_downloads/637de424e7732b2ad7f514c9df47e98e/pyplot_scales.py deleted file mode 120000 index 5003054bdd9..00000000000 --- a/_downloads/637de424e7732b2ad7f514c9df47e98e/pyplot_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/637de424e7732b2ad7f514c9df47e98e/pyplot_scales.py \ No newline at end of file diff --git a/_downloads/638ed93049363d6885e9268d349b3159/color_cycler.ipynb b/_downloads/638ed93049363d6885e9268d349b3159/color_cycler.ipynb deleted file mode 120000 index de206b1241b..00000000000 --- a/_downloads/638ed93049363d6885e9268d349b3159/color_cycler.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/638ed93049363d6885e9268d349b3159/color_cycler.ipynb \ No newline at end of file diff --git a/_downloads/63938f679f3be803eb8c9818fe6c6be8/scales.py b/_downloads/63938f679f3be803eb8c9818fe6c6be8/scales.py deleted file mode 120000 index 591a82c3972..00000000000 --- a/_downloads/63938f679f3be803eb8c9818fe6c6be8/scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/63938f679f3be803eb8c9818fe6c6be8/scales.py \ No newline at end of file diff --git a/_downloads/63943d75254d453c3b58c1f3d3f96a69/annotate_with_units.ipynb b/_downloads/63943d75254d453c3b58c1f3d3f96a69/annotate_with_units.ipynb deleted file mode 120000 index 12a7267ba3a..00000000000 --- a/_downloads/63943d75254d453c3b58c1f3d3f96a69/annotate_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/63943d75254d453c3b58c1f3d3f96a69/annotate_with_units.ipynb \ No newline at end of file diff --git a/_downloads/6397642d5090e7e146c4b51121da5ad6/tricontour_smooth_user.ipynb b/_downloads/6397642d5090e7e146c4b51121da5ad6/tricontour_smooth_user.ipynb deleted file mode 120000 index 476575864ea..00000000000 --- a/_downloads/6397642d5090e7e146c4b51121da5ad6/tricontour_smooth_user.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6397642d5090e7e146c4b51121da5ad6/tricontour_smooth_user.ipynb \ No newline at end of file diff --git a/_downloads/63a26c66c097a1f2c95d7a823fe57b31/strip_chart.py b/_downloads/63a26c66c097a1f2c95d7a823fe57b31/strip_chart.py deleted file mode 120000 index cbd756ad5dc..00000000000 --- a/_downloads/63a26c66c097a1f2c95d7a823fe57b31/strip_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/63a26c66c097a1f2c95d7a823fe57b31/strip_chart.py \ No newline at end of file diff --git a/_downloads/63a67d5fd128617c771e0b8e7cfb98a7/surface3d_2.py b/_downloads/63a67d5fd128617c771e0b8e7cfb98a7/surface3d_2.py deleted file mode 100644 index 226e8bf3543..00000000000 --- a/_downloads/63a67d5fd128617c771e0b8e7cfb98a7/surface3d_2.py +++ /dev/null @@ -1,29 +0,0 @@ -''' -======================== -3D surface (solid color) -======================== - -Demonstrates a very basic plot of a 3D surface using a solid color. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Make data -u = np.linspace(0, 2 * np.pi, 100) -v = np.linspace(0, np.pi, 100) -x = 10 * np.outer(np.cos(u), np.sin(v)) -y = 10 * np.outer(np.sin(u), np.sin(v)) -z = 10 * np.outer(np.ones(np.size(u)), np.cos(v)) - -# Plot the surface -ax.plot_surface(x, y, z) - -plt.show() diff --git a/_downloads/63adcbef3ea287bcbe493fb6c1a5287a/pie_demo2.py b/_downloads/63adcbef3ea287bcbe493fb6c1a5287a/pie_demo2.py deleted file mode 120000 index 1b4d8c95ce7..00000000000 --- a/_downloads/63adcbef3ea287bcbe493fb6c1a5287a/pie_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/63adcbef3ea287bcbe493fb6c1a5287a/pie_demo2.py \ No newline at end of file diff --git a/_downloads/63b2263b73c9c9934e227b0dd2564644/nan_test.ipynb b/_downloads/63b2263b73c9c9934e227b0dd2564644/nan_test.ipynb deleted file mode 120000 index 49bc9a67fc1..00000000000 --- a/_downloads/63b2263b73c9c9934e227b0dd2564644/nan_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/63b2263b73c9c9934e227b0dd2564644/nan_test.ipynb \ No newline at end of file diff --git a/_downloads/63b34a63fc35d506739b9835d7e98958/gallery_python.zip b/_downloads/63b34a63fc35d506739b9835d7e98958/gallery_python.zip deleted file mode 120000 index 7b10db6d960..00000000000 --- a/_downloads/63b34a63fc35d506739b9835d7e98958/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.1/_downloads/63b34a63fc35d506739b9835d7e98958/gallery_python.zip \ No newline at end of file diff --git a/_downloads/63ba2bc59bbaaf7845b9f003e7f801e3/check_buttons.py b/_downloads/63ba2bc59bbaaf7845b9f003e7f801e3/check_buttons.py deleted file mode 100644 index d9f06192dd4..00000000000 --- a/_downloads/63ba2bc59bbaaf7845b9f003e7f801e3/check_buttons.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============= -Check Buttons -============= - -Turning visual elements on and off with check buttons. - -This program shows the use of 'Check Buttons' which is similar to -check boxes. There are 3 different sine waves shown and we can choose which -waves are displayed with the check buttons. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import CheckButtons - -t = np.arange(0.0, 2.0, 0.01) -s0 = np.sin(2*np.pi*t) -s1 = np.sin(4*np.pi*t) -s2 = np.sin(6*np.pi*t) - -fig, ax = plt.subplots() -l0, = ax.plot(t, s0, visible=False, lw=2, color='k', label='2 Hz') -l1, = ax.plot(t, s1, lw=2, color='r', label='4 Hz') -l2, = ax.plot(t, s2, lw=2, color='g', label='6 Hz') -plt.subplots_adjust(left=0.2) - -lines = [l0, l1, l2] - -# Make checkbuttons with all plotted lines with correct visibility -rax = plt.axes([0.05, 0.4, 0.1, 0.15]) -labels = [str(line.get_label()) for line in lines] -visibility = [line.get_visible() for line in lines] -check = CheckButtons(rax, labels, visibility) - - -def func(label): - index = labels.index(label) - lines[index].set_visible(not lines[index].get_visible()) - plt.draw() - -check.on_clicked(func) - -plt.show() diff --git a/_downloads/63bc2e636a920f4e240fcd85334167c1/inset_locator_demo2.py b/_downloads/63bc2e636a920f4e240fcd85334167c1/inset_locator_demo2.py deleted file mode 100644 index 509413d3bf8..00000000000 --- a/_downloads/63bc2e636a920f4e240fcd85334167c1/inset_locator_demo2.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -=================== -Inset Locator Demo2 -=================== - -This Demo shows how to create a zoomed inset via `~.zoomed_inset_axes`. -In the first subplot an `~.AnchoredSizeBar` shows the zoom effect. -In the second subplot a connection to the region of interest is -created via `~.mark_inset`. -""" - -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes, mark_inset -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar - -import numpy as np - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - import numpy as np - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - -fig, (ax, ax2) = plt.subplots(ncols=2, figsize=[6, 3]) - - -# First subplot, showing an inset with a size bar. -ax.set_aspect(1) - -axins = zoomed_inset_axes(ax, zoom=0.5, loc='upper right') -# fix the number of ticks on the inset axes -axins.yaxis.get_major_locator().set_params(nbins=7) -axins.xaxis.get_major_locator().set_params(nbins=7) - -plt.setp(axins.get_xticklabels(), visible=False) -plt.setp(axins.get_yticklabels(), visible=False) - - -def add_sizebar(ax, size): - asb = AnchoredSizeBar(ax.transData, - size, - str(size), - loc=8, - pad=0.1, borderpad=0.5, sep=5, - frameon=False) - ax.add_artist(asb) - -add_sizebar(ax, 0.5) -add_sizebar(axins, 0.5) - - -# Second subplot, showing an image with an inset zoom -# and a marked inset -Z, extent = get_demo_image() -Z2 = np.zeros([150, 150], dtype="d") -ny, nx = Z.shape -Z2[30:30 + ny, 30:30 + nx] = Z - -# extent = [-3, 4, -4, 3] -ax2.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") - - -axins2 = zoomed_inset_axes(ax2, 6, loc=1) # zoom = 6 -axins2.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") - -# sub region of the original image -x1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9 -axins2.set_xlim(x1, x2) -axins2.set_ylim(y1, y2) -# fix the number of ticks on the inset axes -axins2.yaxis.get_major_locator().set_params(nbins=7) -axins2.xaxis.get_major_locator().set_params(nbins=7) - -plt.setp(axins2.get_xticklabels(), visible=False) -plt.setp(axins2.get_yticklabels(), visible=False) - -# draw a bbox of the region of the inset axes in the parent axes and -# connecting lines between the bbox and the inset axes area -mark_inset(ax2, axins2, loc1=2, loc2=4, fc="none", ec="0.5") - -plt.show() diff --git a/_downloads/63bd310e9d5c1c5755d98a25d8c1926c/vline_hline_demo.py b/_downloads/63bd310e9d5c1c5755d98a25d8c1926c/vline_hline_demo.py deleted file mode 100644 index 458bb27327f..00000000000 --- a/_downloads/63bd310e9d5c1c5755d98a25d8c1926c/vline_hline_demo.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -================= -hlines and vlines -================= - -This example showcases the functions hlines and vlines. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -t = np.arange(0.0, 5.0, 0.1) -s = np.exp(-t) + np.sin(2 * np.pi * t) + 1 -nse = np.random.normal(0.0, 0.3, t.shape) * s - -fig, (vax, hax) = plt.subplots(1, 2, figsize=(12, 6)) - -vax.plot(t, s + nse, '^') -vax.vlines(t, [0], s) -# By using ``transform=vax.get_xaxis_transform()`` the y coordinates are scaled -# such that 0 maps to the bottom of the axes and 1 to the top. -vax.vlines([1, 2], 0, 1, transform=vax.get_xaxis_transform(), colors='r') -vax.set_xlabel('time (s)') -vax.set_title('Vertical lines demo') - -hax.plot(s + nse, t, '^') -hax.hlines(t, [0], s, lw=2) -hax.set_xlabel('time (s)') -hax.set_title('Horizontal lines demo') - -plt.show() diff --git a/_downloads/63c3ac91ed1dbdcd1f210f42d943e2d0/watermark_text.py b/_downloads/63c3ac91ed1dbdcd1f210f42d943e2d0/watermark_text.py deleted file mode 120000 index 0142330e7a3..00000000000 --- a/_downloads/63c3ac91ed1dbdcd1f210f42d943e2d0/watermark_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/63c3ac91ed1dbdcd1f210f42d943e2d0/watermark_text.py \ No newline at end of file diff --git a/_downloads/63c3f047d0d7a15dd4d944f233371b01/gtk4_spreadsheet_sgskip.ipynb b/_downloads/63c3f047d0d7a15dd4d944f233371b01/gtk4_spreadsheet_sgskip.ipynb deleted file mode 120000 index 5f005c29de6..00000000000 --- a/_downloads/63c3f047d0d7a15dd4d944f233371b01/gtk4_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/63c3f047d0d7a15dd4d944f233371b01/gtk4_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/63d5f78a837a7ba90013983bd929292a/zoom_inset_axes.py b/_downloads/63d5f78a837a7ba90013983bd929292a/zoom_inset_axes.py deleted file mode 120000 index c57ed6e229a..00000000000 --- a/_downloads/63d5f78a837a7ba90013983bd929292a/zoom_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/63d5f78a837a7ba90013983bd929292a/zoom_inset_axes.py \ No newline at end of file diff --git a/_downloads/63dda164774499e7cfbbe99c813bb7d7/data_browser.ipynb b/_downloads/63dda164774499e7cfbbe99c813bb7d7/data_browser.ipynb deleted file mode 120000 index 4ce582a06a4..00000000000 --- a/_downloads/63dda164774499e7cfbbe99c813bb7d7/data_browser.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/63dda164774499e7cfbbe99c813bb7d7/data_browser.ipynb \ No newline at end of file diff --git a/_downloads/63e909f3b5785fc58e1e45e1a4dd5c39/demo_imagegrid_aspect.ipynb b/_downloads/63e909f3b5785fc58e1e45e1a4dd5c39/demo_imagegrid_aspect.ipynb deleted file mode 120000 index 0737a4de9bb..00000000000 --- a/_downloads/63e909f3b5785fc58e1e45e1a4dd5c39/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/63e909f3b5785fc58e1e45e1a4dd5c39/demo_imagegrid_aspect.ipynb \ No newline at end of file diff --git a/_downloads/63f58f21244eb37c916b3a1e45a9a772/auto_ticks.py b/_downloads/63f58f21244eb37c916b3a1e45a9a772/auto_ticks.py deleted file mode 120000 index 322200d1a6d..00000000000 --- a/_downloads/63f58f21244eb37c916b3a1e45a9a772/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/63f58f21244eb37c916b3a1e45a9a772/auto_ticks.py \ No newline at end of file diff --git a/_downloads/63fb4edca428b868714f1167494bebbc/findobj_demo.py b/_downloads/63fb4edca428b868714f1167494bebbc/findobj_demo.py deleted file mode 120000 index 41a205f2c6d..00000000000 --- a/_downloads/63fb4edca428b868714f1167494bebbc/findobj_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/63fb4edca428b868714f1167494bebbc/findobj_demo.py \ No newline at end of file diff --git a/_downloads/64018577774a88b8d5ce6448a9969e85/marker_fillstyle_reference.ipynb b/_downloads/64018577774a88b8d5ce6448a9969e85/marker_fillstyle_reference.ipynb deleted file mode 100644 index c2891939371..00000000000 --- a/_downloads/64018577774a88b8d5ce6448a9969e85/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Marker filling-styles\n\n\nReference for marker fill-styles included with Matplotlib.\n\nAlso refer to the\n:doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference`\nand :doc:`/gallery/shapes_and_collections/marker_path` examples.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.lines import Line2D\n\n\npoints = np.ones(5) # Draw 5 points for each line\nmarker_style = dict(color='tab:blue', linestyle=':', marker='o',\n markersize=15, markerfacecoloralt='tab:red')\n\nfig, ax = plt.subplots()\n\n# Plot all fill styles.\nfor y, fill_style in enumerate(Line2D.fillStyles):\n ax.text(-0.5, y, repr(fill_style),\n horizontalalignment='center', verticalalignment='center')\n ax.plot(y * points, fillstyle=fill_style, **marker_style)\n\nax.set_axis_off()\nax.set_title('fill style')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6412fac4c463f98426ee422480dff07b/connect_simple01.py b/_downloads/6412fac4c463f98426ee422480dff07b/connect_simple01.py deleted file mode 120000 index 3096b075377..00000000000 --- a/_downloads/6412fac4c463f98426ee422480dff07b/connect_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6412fac4c463f98426ee422480dff07b/connect_simple01.py \ No newline at end of file diff --git a/_downloads/6418ab7d6f19928a09fe3b0379f7066f/line_with_text.py b/_downloads/6418ab7d6f19928a09fe3b0379f7066f/line_with_text.py deleted file mode 120000 index 6eaa4e5a78c..00000000000 --- a/_downloads/6418ab7d6f19928a09fe3b0379f7066f/line_with_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6418ab7d6f19928a09fe3b0379f7066f/line_with_text.py \ No newline at end of file diff --git a/_downloads/642498711ab58d6f80ef376a375dda14/colorbar_basics.py b/_downloads/642498711ab58d6f80ef376a375dda14/colorbar_basics.py deleted file mode 120000 index 6a848f627a8..00000000000 --- a/_downloads/642498711ab58d6f80ef376a375dda14/colorbar_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/642498711ab58d6f80ef376a375dda14/colorbar_basics.py \ No newline at end of file diff --git a/_downloads/642cabf0fdf2b83332b9d80cd4f49084/affine_image.ipynb b/_downloads/642cabf0fdf2b83332b9d80cd4f49084/affine_image.ipynb deleted file mode 100644 index 6c7242d0d9f..00000000000 --- a/_downloads/642cabf0fdf2b83332b9d80cd4f49084/affine_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Affine transform of an image\n\n\n\nPrepending an affine transformation (:class:`~.transforms.Affine2D`)\nto the `data transform `\nof an image allows to manipulate the image's shape and orientation.\nThis is an example of the concept of\n`transform chaining `.\n\nFor the backends that support draw_image with optional affine\ntransform (e.g., agg, ps backend), the image of the output should\nhave its boundary match the dashed yellow rectangle.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\n\n\ndef get_image():\n delta = 0.25\n x = y = np.arange(-3.0, 3.0, delta)\n X, Y = np.meshgrid(x, y)\n Z1 = np.exp(-X**2 - Y**2)\n Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\n Z = (Z1 - Z2)\n return Z\n\n\ndef do_plot(ax, Z, transform):\n im = ax.imshow(Z, interpolation='none',\n origin='lower',\n extent=[-2, 4, -3, 2], clip_on=True)\n\n trans_data = transform + ax.transData\n im.set_transform(trans_data)\n\n # display intended extent of the image\n x1, x2, y1, y2 = im.get_extent()\n ax.plot([x1, x2, x2, x1, x1], [y1, y1, y2, y2, y1], \"y--\",\n transform=trans_data)\n ax.set_xlim(-5, 5)\n ax.set_ylim(-4, 4)\n\n\n# prepare image and figure\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\nZ = get_image()\n\n# image rotation\ndo_plot(ax1, Z, mtransforms.Affine2D().rotate_deg(30))\n\n# image skew\ndo_plot(ax2, Z, mtransforms.Affine2D().skew_deg(30, 15))\n\n# scale and reflection\ndo_plot(ax3, Z, mtransforms.Affine2D().scale(-1, .5))\n\n# everything and a translation\ndo_plot(ax4, Z, mtransforms.Affine2D().\n rotate_deg(30).skew_deg(30, 15).scale(-1, .5).translate(.5, -1))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.transforms.Affine2D" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/642df3d98824379962c8a0153e82d69d/spine_placement_demo.py b/_downloads/642df3d98824379962c8a0153e82d69d/spine_placement_demo.py deleted file mode 100644 index ca254334455..00000000000 --- a/_downloads/642df3d98824379962c8a0153e82d69d/spine_placement_demo.py +++ /dev/null @@ -1,116 +0,0 @@ -""" -==================== -Spine Placement Demo -==================== - -Adjusting the location and appearance of axis spines. -""" -import numpy as np -import matplotlib.pyplot as plt - - -############################################################################### - -fig = plt.figure() -x = np.linspace(-np.pi, np.pi, 100) -y = 2 * np.sin(x) - -ax = fig.add_subplot(2, 2, 1) -ax.set_title('centered spines') -ax.plot(x, y) -ax.spines['left'].set_position('center') -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position('center') -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -ax = fig.add_subplot(2, 2, 2) -ax.set_title('zeroed spines') -ax.plot(x, y) -ax.spines['left'].set_position('zero') -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position('zero') -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -ax = fig.add_subplot(2, 2, 3) -ax.set_title('spines at axes (0.6, 0.1)') -ax.plot(x, y) -ax.spines['left'].set_position(('axes', 0.6)) -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position(('axes', 0.1)) -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -ax = fig.add_subplot(2, 2, 4) -ax.set_title('spines at data (1, 2)') -ax.plot(x, y) -ax.spines['left'].set_position(('data', 1)) -ax.spines['right'].set_color('none') -ax.spines['bottom'].set_position(('data', 2)) -ax.spines['top'].set_color('none') -ax.spines['left'].set_smart_bounds(True) -ax.spines['bottom'].set_smart_bounds(True) -ax.xaxis.set_ticks_position('bottom') -ax.yaxis.set_ticks_position('left') - -############################################################################### -# Define a method that adjusts the location of the axis spines - - -def adjust_spines(ax, spines): - for loc, spine in ax.spines.items(): - if loc in spines: - spine.set_position(('outward', 10)) # outward by 10 points - spine.set_smart_bounds(True) - else: - spine.set_color('none') # don't draw spine - - # turn off ticks where there is no spine - if 'left' in spines: - ax.yaxis.set_ticks_position('left') - else: - # no yaxis ticks - ax.yaxis.set_ticks([]) - - if 'bottom' in spines: - ax.xaxis.set_ticks_position('bottom') - else: - # no xaxis ticks - ax.xaxis.set_ticks([]) - - -############################################################################### -# Create another figure using our new ``adjust_spines`` method - -fig = plt.figure() - -x = np.linspace(0, 2 * np.pi, 100) -y = 2 * np.sin(x) - -ax = fig.add_subplot(2, 2, 1) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, ['left']) - -ax = fig.add_subplot(2, 2, 2) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, []) - -ax = fig.add_subplot(2, 2, 3) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, ['left', 'bottom']) - -ax = fig.add_subplot(2, 2, 4) -ax.plot(x, y, clip_on=False) -adjust_spines(ax, ['bottom']) - -plt.show() diff --git a/_downloads/643250da63ae9607efe9b13b482d38b1/pick_event_demo.ipynb b/_downloads/643250da63ae9607efe9b13b482d38b1/pick_event_demo.ipynb deleted file mode 100644 index e6e8994ee95..00000000000 --- a/_downloads/643250da63ae9607efe9b13b482d38b1/pick_event_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pick Event Demo\n\n\n\nYou can enable picking by setting the \"picker\" property of an artist\n(for example, a matplotlib Line2D, Text, Patch, Polygon, AxesImage,\netc...)\n\nThere are a variety of meanings of the picker property\n\n None - picking is disabled for this artist (default)\n\n boolean - if True then picking will be enabled and the\n artist will fire a pick event if the mouse event is over\n the artist\n\n float - if picker is a number it is interpreted as an\n epsilon tolerance in points and the artist will fire\n off an event if it's data is within epsilon of the mouse\n event. For some artists like lines and patch collections,\n the artist may provide additional data to the pick event\n that is generated, for example, the indices of the data within\n epsilon of the pick event\n\n function - if picker is callable, it is a user supplied\n function which determines whether the artist is hit by the\n mouse event.\n\n hit, props = picker(artist, mouseevent)\n\n to determine the hit test. If the mouse event is over the\n artist, return hit=True and props is a dictionary of properties\n you want added to the PickEvent attributes\n\n\nAfter you have enabled an artist for picking by setting the \"picker\"\nproperty, you need to connect to the figure canvas pick_event to get\npick callbacks on mouse press events. For example,\n\n def pick_handler(event):\n mouseevent = event.mouseevent\n artist = event.artist\n # now do something with this...\n\n\nThe pick event (matplotlib.backend_bases.PickEvent) which is passed to\nyour callback is always fired with two attributes:\n\n mouseevent - the mouse event that generate the pick event. The\n mouse event in turn has attributes like x and y (the coordinates in\n display space, such as pixels from left, bottom) and xdata, ydata (the\n coords in data space). Additionally, you can get information about\n which buttons were pressed, which keys were pressed, which Axes\n the mouse is over, etc. See matplotlib.backend_bases.MouseEvent\n for details.\n\n artist - the matplotlib.artist that generated the pick event.\n\nAdditionally, certain artists like Line2D and PatchCollection may\nattach additional meta data like the indices into the data that meet\nthe picker criteria (for example, all the points in the line that are within\nthe specified epsilon tolerance)\n\nThe examples below illustrate each of these methods.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.lines import Line2D\nfrom matplotlib.patches import Rectangle\nfrom matplotlib.text import Text\nfrom matplotlib.image import AxesImage\nimport numpy as np\nfrom numpy.random import rand\n\n\ndef pick_simple():\n # simple picking, lines, rectangles and text\n fig, (ax1, ax2) = plt.subplots(2, 1)\n ax1.set_title('click on points, rectangles or text', picker=True)\n ax1.set_ylabel('ylabel', picker=True, bbox=dict(facecolor='red'))\n line, = ax1.plot(rand(100), 'o', picker=5) # 5 points tolerance\n\n # pick the rectangle\n bars = ax2.bar(range(10), rand(10), picker=True)\n for label in ax2.get_xticklabels(): # make the xtick labels pickable\n label.set_picker(True)\n\n def onpick1(event):\n if isinstance(event.artist, Line2D):\n thisline = event.artist\n xdata = thisline.get_xdata()\n ydata = thisline.get_ydata()\n ind = event.ind\n print('onpick1 line:', np.column_stack([xdata[ind], ydata[ind]]))\n elif isinstance(event.artist, Rectangle):\n patch = event.artist\n print('onpick1 patch:', patch.get_path())\n elif isinstance(event.artist, Text):\n text = event.artist\n print('onpick1 text:', text.get_text())\n\n fig.canvas.mpl_connect('pick_event', onpick1)\n\n\ndef pick_custom_hit():\n # picking with a custom hit test function\n # you can define custom pickers by setting picker to a callable\n # function. The function has the signature\n #\n # hit, props = func(artist, mouseevent)\n #\n # to determine the hit test. if the mouse event is over the artist,\n # return hit=True and props is a dictionary of\n # properties you want added to the PickEvent attributes\n\n def line_picker(line, mouseevent):\n \"\"\"\n find the points within a certain distance from the mouseclick in\n data coords and attach some extra attributes, pickx and picky\n which are the data points that were picked\n \"\"\"\n if mouseevent.xdata is None:\n return False, dict()\n xdata = line.get_xdata()\n ydata = line.get_ydata()\n maxd = 0.05\n d = np.sqrt(\n (xdata - mouseevent.xdata)**2 + (ydata - mouseevent.ydata)**2)\n\n ind, = np.nonzero(d <= maxd)\n if len(ind):\n pickx = xdata[ind]\n picky = ydata[ind]\n props = dict(ind=ind, pickx=pickx, picky=picky)\n return True, props\n else:\n return False, dict()\n\n def onpick2(event):\n print('onpick2 line:', event.pickx, event.picky)\n\n fig, ax = plt.subplots()\n ax.set_title('custom picker for line data')\n line, = ax.plot(rand(100), rand(100), 'o', picker=line_picker)\n fig.canvas.mpl_connect('pick_event', onpick2)\n\n\ndef pick_scatter_plot():\n # picking on a scatter plot (matplotlib.collections.RegularPolyCollection)\n\n x, y, c, s = rand(4, 100)\n\n def onpick3(event):\n ind = event.ind\n print('onpick3 scatter:', ind, x[ind], y[ind])\n\n fig, ax = plt.subplots()\n col = ax.scatter(x, y, 100*s, c, picker=True)\n #fig.savefig('pscoll.eps')\n fig.canvas.mpl_connect('pick_event', onpick3)\n\n\ndef pick_image():\n # picking images (matplotlib.image.AxesImage)\n fig, ax = plt.subplots()\n ax.imshow(rand(10, 5), extent=(1, 2, 1, 2), picker=True)\n ax.imshow(rand(5, 10), extent=(3, 4, 1, 2), picker=True)\n ax.imshow(rand(20, 25), extent=(1, 2, 3, 4), picker=True)\n ax.imshow(rand(30, 12), extent=(3, 4, 3, 4), picker=True)\n ax.set(xlim=(0, 5), ylim=(0, 5))\n\n def onpick4(event):\n artist = event.artist\n if isinstance(artist, AxesImage):\n im = artist\n A = im.get_array()\n print('onpick4 image', A.shape)\n\n fig.canvas.mpl_connect('pick_event', onpick4)\n\n\nif __name__ == '__main__':\n pick_simple()\n pick_custom_hit()\n pick_scatter_plot()\n pick_image()\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/64495fc96030d607f48bebb5b00b6f18/polar_bar.py b/_downloads/64495fc96030d607f48bebb5b00b6f18/polar_bar.py deleted file mode 100644 index 2d9a8dee325..00000000000 --- a/_downloads/64495fc96030d607f48bebb5b00b6f18/polar_bar.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -======================= -Bar chart on polar axis -======================= - -Demo of bar plot on a polar axis. -""" -import numpy as np -import matplotlib.pyplot as plt - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# Compute pie slices -N = 20 -theta = np.linspace(0.0, 2 * np.pi, N, endpoint=False) -radii = 10 * np.random.rand(N) -width = np.pi / 4 * np.random.rand(N) -colors = plt.cm.viridis(radii / 10.) - -ax = plt.subplot(111, projection='polar') -ax.bar(theta, radii, width=width, bottom=0.0, color=colors, alpha=0.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.projections.polar diff --git a/_downloads/6449b30fbee698c769e067e13a31dec4/demo_anchored_direction_arrows.ipynb b/_downloads/6449b30fbee698c769e067e13a31dec4/demo_anchored_direction_arrows.ipynb deleted file mode 120000 index 0cf600c9c09..00000000000 --- a/_downloads/6449b30fbee698c769e067e13a31dec4/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6449b30fbee698c769e067e13a31dec4/demo_anchored_direction_arrows.ipynb \ No newline at end of file diff --git a/_downloads/6449fd3b9d2ab8b52f7c8f31944fe977/scatter_hist_locatable_axes.ipynb b/_downloads/6449fd3b9d2ab8b52f7c8f31944fe977/scatter_hist_locatable_axes.ipynb deleted file mode 120000 index 12db563983b..00000000000 --- a/_downloads/6449fd3b9d2ab8b52f7c8f31944fe977/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6449fd3b9d2ab8b52f7c8f31944fe977/scatter_hist_locatable_axes.ipynb \ No newline at end of file diff --git a/_downloads/645330a4e38801bf6c79687f023b056b/axis_direction_demo_step02.ipynb b/_downloads/645330a4e38801bf6c79687f023b056b/axis_direction_demo_step02.ipynb deleted file mode 100644 index c4927af31c6..00000000000 --- a/_downloads/645330a4e38801bf6c79687f023b056b/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n #ax.axis[:].toggle(all=False)\n #ax.axis[:].line.set_visible(False)\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x\"] = ax.new_floating_axis(1, 0.5)\n ax.axis[\"x\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 2.5))\nfig.subplots_adjust(bottom=0.2, top=0.8)\n\nax1 = setup_axes(fig, \"121\")\nax1.axis[\"x\"].set_ticklabel_direction(\"+\")\nax1.annotate(\"ticklabel direction=$+$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nax2 = setup_axes(fig, \"122\")\nax2.axis[\"x\"].set_ticklabel_direction(\"-\")\nax2.annotate(\"ticklabel direction=$-$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/645c20f960236be9b5392d4e6eca9fe3/image_thumbnail_sgskip.ipynb b/_downloads/645c20f960236be9b5392d4e6eca9fe3/image_thumbnail_sgskip.ipynb deleted file mode 120000 index cafc4f41b7f..00000000000 --- a/_downloads/645c20f960236be9b5392d4e6eca9fe3/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/645c20f960236be9b5392d4e6eca9fe3/image_thumbnail_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/645ff30554c23a8aeac55d4deb833c81/figure_title.ipynb b/_downloads/645ff30554c23a8aeac55d4deb833c81/figure_title.ipynb deleted file mode 100644 index ffc6aecbd17..00000000000 --- a/_downloads/645ff30554c23a8aeac55d4deb833c81/figure_title.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Figure Title\n\n\nCreate a figure with separate subplot titles and a centered figure title.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef f(t):\n s1 = np.cos(2*np.pi*t)\n e1 = np.exp(-t)\n return s1 * e1\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\nt3 = np.arange(0.0, 2.0, 0.01)\n\n\nfig, axs = plt.subplots(2, 1, constrained_layout=True)\naxs[0].plot(t1, f(t1), 'o', t2, f(t2), '-')\naxs[0].set_title('subplot 1')\naxs[0].set_xlabel('distance (m)')\naxs[0].set_ylabel('Damped oscillation')\nfig.suptitle('This is a somewhat long figure title', fontsize=16)\n\naxs[1].plot(t3, np.cos(2*np.pi*t3), '--')\naxs[1].set_xlabel('time (s)')\naxs[1].set_title('subplot 2')\naxs[1].set_ylabel('Undamped')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/64675b464ab17061b543970e9a7b1c0a/ellipse_demo.ipynb b/_downloads/64675b464ab17061b543970e9a7b1c0a/ellipse_demo.ipynb deleted file mode 120000 index 011114c3362..00000000000 --- a/_downloads/64675b464ab17061b543970e9a7b1c0a/ellipse_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/64675b464ab17061b543970e9a7b1c0a/ellipse_demo.ipynb \ No newline at end of file diff --git a/_downloads/646ed6e33bfbf13d7f8129414dcebf05/mathtext_asarray.ipynb b/_downloads/646ed6e33bfbf13d7f8129414dcebf05/mathtext_asarray.ipynb deleted file mode 120000 index 0f4fa90a4fc..00000000000 --- a/_downloads/646ed6e33bfbf13d7f8129414dcebf05/mathtext_asarray.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/646ed6e33bfbf13d7f8129414dcebf05/mathtext_asarray.ipynb \ No newline at end of file diff --git a/_downloads/647c1b4e741ae7f0b764df4e4956ca04/nan_test.ipynb b/_downloads/647c1b4e741ae7f0b764df4e4956ca04/nan_test.ipynb deleted file mode 120000 index 342e33a9c1b..00000000000 --- a/_downloads/647c1b4e741ae7f0b764df4e4956ca04/nan_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/647c1b4e741ae7f0b764df4e4956ca04/nan_test.ipynb \ No newline at end of file diff --git a/_downloads/649eb56a9514803090b69dc5030ca87c/annotate_simple_coord03.py b/_downloads/649eb56a9514803090b69dc5030ca87c/annotate_simple_coord03.py deleted file mode 120000 index cc30b080ff2..00000000000 --- a/_downloads/649eb56a9514803090b69dc5030ca87c/annotate_simple_coord03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/649eb56a9514803090b69dc5030ca87c/annotate_simple_coord03.py \ No newline at end of file diff --git a/_downloads/64a1e4b3d3750d2333f8a8b80998f77b/spine_placement_demo.ipynb b/_downloads/64a1e4b3d3750d2333f8a8b80998f77b/spine_placement_demo.ipynb deleted file mode 120000 index b920c939236..00000000000 --- a/_downloads/64a1e4b3d3750d2333f8a8b80998f77b/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/64a1e4b3d3750d2333f8a8b80998f77b/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/64a242053b856e916c7c02e435490e1e/joinstyle.ipynb b/_downloads/64a242053b856e916c7c02e435490e1e/joinstyle.ipynb deleted file mode 100644 index 8c0973882b7..00000000000 --- a/_downloads/64a242053b856e916c7c02e435490e1e/joinstyle.ipynb +++ /dev/null @@ -1,97 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Join styles and cap styles\n\n\nThis example demonstrates the available join styles and cap styles.\n\nBoth are used in `.Line2D` and various ``Collections`` from\n`matplotlib.collections` as well as some functions that create these, e.g.\n`~matplotlib.pyplot.plot`.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Join styles\n\"\"\"\"\"\"\"\"\"\"\"\n\nJoin styles define how the connection between two line segments is drawn.\n\nSee the respective ``solid_joinstyle``, ``dash_joinstyle`` or ``joinstyle``\nparameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef plot_angle(ax, x, y, angle, style):\n phi = np.radians(angle)\n xx = [x + .5, x, x + .5*np.cos(phi)]\n yy = [y, y, y + .5*np.sin(phi)]\n ax.plot(xx, yy, lw=12, color='tab:blue', solid_joinstyle=style)\n ax.plot(xx, yy, lw=1, color='black')\n ax.plot(xx[1], yy[1], 'o', color='tab:red', markersize=3)\n\n\nfig, ax = plt.subplots(figsize=(8, 6))\nax.set_title('Join style')\n\nfor x, style in enumerate(['miter', 'round', 'bevel']):\n ax.text(x, 5, style)\n for y, angle in enumerate([20, 45, 60, 90, 120]):\n plot_angle(ax, x, y, angle, style)\n if x == 0:\n ax.text(-1.3, y, f'{angle} degrees')\nax.text(1, 4.7, '(default)')\n\nax.set_xlim(-1.5, 2.75)\nax.set_ylim(-.5, 5.5)\nax.xaxis.set_visible(False)\nax.yaxis.set_visible(False)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Cap styles\n\"\"\"\"\"\"\"\"\"\"\n\nCap styles define how the the end of a line is drawn.\n\nSee the respective ``solid_capstyle``, ``dash_capstyle`` or ``capstyle``\nparameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 2))\nax.set_title('Cap style')\n\nfor x, style in enumerate(['butt', 'round', 'projecting']):\n ax.text(x, 1, style)\n xx = [x, x+0.5]\n yy = [0, 0]\n ax.plot(xx, yy, lw=12, color='tab:blue', solid_capstyle=style)\n ax.plot(xx, yy, lw=1, color='black')\n ax.plot(xx, yy, 'o', color='tab:red', markersize=3)\nax.text(2, 0.7, '(default)')\n\nax.set_ylim(-.5, 1.5)\nax.xaxis.set_visible(False)\nax.yaxis.set_visible(False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/64a3ef3f50e89f3ed9d30c1cf3e03fb9/voxels_numpy_logo.ipynb b/_downloads/64a3ef3f50e89f3ed9d30c1cf3e03fb9/voxels_numpy_logo.ipynb deleted file mode 120000 index daad639a7ab..00000000000 --- a/_downloads/64a3ef3f50e89f3ed9d30c1cf3e03fb9/voxels_numpy_logo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/64a3ef3f50e89f3ed9d30c1cf3e03fb9/voxels_numpy_logo.ipynb \ No newline at end of file diff --git a/_downloads/64a8a813abef52bb6261b7f4e39543ce/rainbow_text.ipynb b/_downloads/64a8a813abef52bb6261b7f4e39543ce/rainbow_text.ipynb deleted file mode 120000 index 03da41e55ff..00000000000 --- a/_downloads/64a8a813abef52bb6261b7f4e39543ce/rainbow_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/64a8a813abef52bb6261b7f4e39543ce/rainbow_text.ipynb \ No newline at end of file diff --git a/_downloads/64b175cca6bb89469f130b90b4699f6e/scatter_piecharts.py b/_downloads/64b175cca6bb89469f130b90b4699f6e/scatter_piecharts.py deleted file mode 120000 index b6c9cb7bcc3..00000000000 --- a/_downloads/64b175cca6bb89469f130b90b4699f6e/scatter_piecharts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/64b175cca6bb89469f130b90b4699f6e/scatter_piecharts.py \ No newline at end of file diff --git a/_downloads/64b72931ba7d2523dcf12bc573b095f0/quad_bezier.py b/_downloads/64b72931ba7d2523dcf12bc573b095f0/quad_bezier.py deleted file mode 120000 index 80f711f73d3..00000000000 --- a/_downloads/64b72931ba7d2523dcf12bc573b095f0/quad_bezier.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/64b72931ba7d2523dcf12bc573b095f0/quad_bezier.py \ No newline at end of file diff --git a/_downloads/64bebaa77597e3fdc3762f388ced0725/custom_boxstyle02.ipynb b/_downloads/64bebaa77597e3fdc3762f388ced0725/custom_boxstyle02.ipynb deleted file mode 120000 index 2ed64c5baf4..00000000000 --- a/_downloads/64bebaa77597e3fdc3762f388ced0725/custom_boxstyle02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/64bebaa77597e3fdc3762f388ced0725/custom_boxstyle02.ipynb \ No newline at end of file diff --git a/_downloads/64ce976f8b13ae2576a685d8b1bc0769/auto_subplots_adjust.py b/_downloads/64ce976f8b13ae2576a685d8b1bc0769/auto_subplots_adjust.py deleted file mode 120000 index 534a2db41d7..00000000000 --- a/_downloads/64ce976f8b13ae2576a685d8b1bc0769/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/64ce976f8b13ae2576a685d8b1bc0769/auto_subplots_adjust.py \ No newline at end of file diff --git a/_downloads/64cea2b0641d57fc94e67e5a1f290719/multicolored_line.ipynb b/_downloads/64cea2b0641d57fc94e67e5a1f290719/multicolored_line.ipynb deleted file mode 100644 index a0e8d71c8e6..00000000000 --- a/_downloads/64cea2b0641d57fc94e67e5a1f290719/multicolored_line.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multicolored lines\n\n\nThis example shows how to make a multi-colored line. In this example, the line\nis colored based on its derivative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.collections import LineCollection\nfrom matplotlib.colors import ListedColormap, BoundaryNorm\n\nx = np.linspace(0, 3 * np.pi, 500)\ny = np.sin(x)\ndydx = np.cos(0.5 * (x[:-1] + x[1:])) # first derivative\n\n# Create a set of line segments so that we can color them individually\n# This creates the points as a N x 1 x 2 array so that we can stack points\n# together easily to get the segments. The segments array for line collection\n# needs to be (numlines) x (points per line) x 2 (for x and y)\npoints = np.array([x, y]).T.reshape(-1, 1, 2)\nsegments = np.concatenate([points[:-1], points[1:]], axis=1)\n\nfig, axs = plt.subplots(2, 1, sharex=True, sharey=True)\n\n# Create a continuous norm to map from data points to colors\nnorm = plt.Normalize(dydx.min(), dydx.max())\nlc = LineCollection(segments, cmap='viridis', norm=norm)\n# Set the values used for colormapping\nlc.set_array(dydx)\nlc.set_linewidth(2)\nline = axs[0].add_collection(lc)\nfig.colorbar(line, ax=axs[0])\n\n# Use a boundary norm instead\ncmap = ListedColormap(['r', 'g', 'b'])\nnorm = BoundaryNorm([-1, -0.5, 0.5, 1], cmap.N)\nlc = LineCollection(segments, cmap=cmap, norm=norm)\nlc.set_array(dydx)\nlc.set_linewidth(2)\nline = axs[1].add_collection(lc)\nfig.colorbar(line, ax=axs[1])\n\naxs[0].set_xlim(x.min(), x.max())\naxs[0].set_ylim(-1.1, 1.1)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/64d10d51ff58188f26bd919938b9733c/lasso_demo.ipynb b/_downloads/64d10d51ff58188f26bd919938b9733c/lasso_demo.ipynb deleted file mode 100644 index 1114832de70..00000000000 --- a/_downloads/64d10d51ff58188f26bd919938b9733c/lasso_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Lasso Demo\n\n\nShow how to use a lasso to select a set of points and get the indices\nof the selected points. A callback is used to change the color of the\nselected points\n\nThis is currently a proof-of-concept implementation (though it is\nusable as is). There will be some refinement of the API.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import colors as mcolors, path\nfrom matplotlib.collections import RegularPolyCollection\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import Lasso\nimport numpy as np\n\n\nclass Datum(object):\n colorin = mcolors.to_rgba(\"red\")\n colorout = mcolors.to_rgba(\"blue\")\n\n def __init__(self, x, y, include=False):\n self.x = x\n self.y = y\n if include:\n self.color = self.colorin\n else:\n self.color = self.colorout\n\n\nclass LassoManager(object):\n def __init__(self, ax, data):\n self.axes = ax\n self.canvas = ax.figure.canvas\n self.data = data\n\n self.Nxy = len(data)\n\n facecolors = [d.color for d in data]\n self.xys = [(d.x, d.y) for d in data]\n self.collection = RegularPolyCollection(\n 6, sizes=(100,),\n facecolors=facecolors,\n offsets=self.xys,\n transOffset=ax.transData)\n\n ax.add_collection(self.collection)\n\n self.cid = self.canvas.mpl_connect('button_press_event', self.onpress)\n\n def callback(self, verts):\n facecolors = self.collection.get_facecolors()\n p = path.Path(verts)\n ind = p.contains_points(self.xys)\n for i in range(len(self.xys)):\n if ind[i]:\n facecolors[i] = Datum.colorin\n else:\n facecolors[i] = Datum.colorout\n\n self.canvas.draw_idle()\n self.canvas.widgetlock.release(self.lasso)\n del self.lasso\n\n def onpress(self, event):\n if self.canvas.widgetlock.locked():\n return\n if event.inaxes is None:\n return\n self.lasso = Lasso(event.inaxes,\n (event.xdata, event.ydata),\n self.callback)\n # acquire a lock on the widget drawing\n self.canvas.widgetlock(self.lasso)\n\n\nif __name__ == '__main__':\n\n np.random.seed(19680801)\n\n data = [Datum(*xy) for xy in np.random.rand(100, 2)]\n ax = plt.axes(xlim=(0, 1), ylim=(0, 1), autoscale_on=False)\n ax.set_title('Lasso points using left mouse button')\n\n lman = LassoManager(ax, data)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/64d8ec60370cb7f5720f5da3cdc85db9/imshow_extent.ipynb b/_downloads/64d8ec60370cb7f5720f5da3cdc85db9/imshow_extent.ipynb deleted file mode 120000 index 77d189fa134..00000000000 --- a/_downloads/64d8ec60370cb7f5720f5da3cdc85db9/imshow_extent.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/64d8ec60370cb7f5720f5da3cdc85db9/imshow_extent.ipynb \ No newline at end of file diff --git a/_downloads/64ea054ec1df4b3e43b48cb8dc074cc6/engineering_formatter.py b/_downloads/64ea054ec1df4b3e43b48cb8dc074cc6/engineering_formatter.py deleted file mode 120000 index 7859702c9b0..00000000000 --- a/_downloads/64ea054ec1df4b3e43b48cb8dc074cc6/engineering_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/64ea054ec1df4b3e43b48cb8dc074cc6/engineering_formatter.py \ No newline at end of file diff --git a/_downloads/64fa7b53b7d316648ab2a03d05f52781/annotate_simple02.ipynb b/_downloads/64fa7b53b7d316648ab2a03d05f52781/annotate_simple02.ipynb deleted file mode 120000 index 13f036b5e10..00000000000 --- a/_downloads/64fa7b53b7d316648ab2a03d05f52781/annotate_simple02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/64fa7b53b7d316648ab2a03d05f52781/annotate_simple02.ipynb \ No newline at end of file diff --git a/_downloads/64fee748f45a75f72fbf05b40fc62dbf/line_collection.py b/_downloads/64fee748f45a75f72fbf05b40fc62dbf/line_collection.py deleted file mode 120000 index 0588a8b5dfa..00000000000 --- a/_downloads/64fee748f45a75f72fbf05b40fc62dbf/line_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/64fee748f45a75f72fbf05b40fc62dbf/line_collection.py \ No newline at end of file diff --git a/_downloads/650b1285649ddf5167d9e70436fa72c9/multicolored_line.py b/_downloads/650b1285649ddf5167d9e70436fa72c9/multicolored_line.py deleted file mode 100644 index 9be424ad281..00000000000 --- a/_downloads/650b1285649ddf5167d9e70436fa72c9/multicolored_line.py +++ /dev/null @@ -1,48 +0,0 @@ -''' -================== -Multicolored lines -================== - -This example shows how to make a multi-colored line. In this example, the line -is colored based on its derivative. -''' - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.collections import LineCollection -from matplotlib.colors import ListedColormap, BoundaryNorm - -x = np.linspace(0, 3 * np.pi, 500) -y = np.sin(x) -dydx = np.cos(0.5 * (x[:-1] + x[1:])) # first derivative - -# Create a set of line segments so that we can color them individually -# This creates the points as a N x 1 x 2 array so that we can stack points -# together easily to get the segments. The segments array for line collection -# needs to be (numlines) x (points per line) x 2 (for x and y) -points = np.array([x, y]).T.reshape(-1, 1, 2) -segments = np.concatenate([points[:-1], points[1:]], axis=1) - -fig, axs = plt.subplots(2, 1, sharex=True, sharey=True) - -# Create a continuous norm to map from data points to colors -norm = plt.Normalize(dydx.min(), dydx.max()) -lc = LineCollection(segments, cmap='viridis', norm=norm) -# Set the values used for colormapping -lc.set_array(dydx) -lc.set_linewidth(2) -line = axs[0].add_collection(lc) -fig.colorbar(line, ax=axs[0]) - -# Use a boundary norm instead -cmap = ListedColormap(['r', 'g', 'b']) -norm = BoundaryNorm([-1, -0.5, 0.5, 1], cmap.N) -lc = LineCollection(segments, cmap=cmap, norm=norm) -lc.set_array(dydx) -lc.set_linewidth(2) -line = axs[1].add_collection(lc) -fig.colorbar(line, ax=axs[1]) - -axs[0].set_xlim(x.min(), x.max()) -axs[0].set_ylim(-1.1, 1.1) -plt.show() diff --git a/_downloads/650cdc95d16ef7e31f56d914855b2518/pie_features.ipynb b/_downloads/650cdc95d16ef7e31f56d914855b2518/pie_features.ipynb deleted file mode 100644 index 61248581789..00000000000 --- a/_downloads/650cdc95d16ef7e31f56d914855b2518/pie_features.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Basic pie chart\n\n\nDemo of a basic pie chart plus a few additional features.\n\nIn addition to the basic pie chart, this demo shows a few optional features:\n\n * slice labels\n * auto-labeling the percentage\n * offsetting a slice with \"explode\"\n * drop-shadow\n * custom start angle\n\nNote about the custom start angle:\n\nThe default ``startangle`` is 0, which would start the \"Frogs\" slice on the\npositive x-axis. This example sets ``startangle = 90`` such that everything is\nrotated counter-clockwise by 90 degrees, and the frog slice starts on the\npositive y-axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Pie chart, where the slices will be ordered and plotted counter-clockwise:\nlabels = 'Frogs', 'Hogs', 'Dogs', 'Logs'\nsizes = [15, 30, 45, 10]\nexplode = (0, 0.1, 0, 0) # only \"explode\" the 2nd slice (i.e. 'Hogs')\n\nfig1, ax1 = plt.subplots()\nax1.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%',\n shadow=True, startangle=90)\nax1.axis('equal') # Equal aspect ratio ensures that pie is drawn as a circle.\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6514b2e9dad712ce94844dd5df5b7bb6/legend_guide.ipynb b/_downloads/6514b2e9dad712ce94844dd5df5b7bb6/legend_guide.ipynb deleted file mode 120000 index d7b6486eb52..00000000000 --- a/_downloads/6514b2e9dad712ce94844dd5df5b7bb6/legend_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6514b2e9dad712ce94844dd5df5b7bb6/legend_guide.ipynb \ No newline at end of file diff --git a/_downloads/651fca63e75964e186f4dc01d1da037f/annotate_explain.ipynb b/_downloads/651fca63e75964e186f4dc01d1da037f/annotate_explain.ipynb deleted file mode 100644 index de2a86d0e06..00000000000 --- a/_downloads/651fca63e75964e186f4dc01d1da037f/annotate_explain.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Explain\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as mpatches\n\n\nfig, axs = plt.subplots(2, 2)\nx1, y1 = 0.3, 0.3\nx2, y2 = 0.7, 0.7\n\nax = axs.flat[0]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"-\",\n color=\"0.5\",\n patchB=None,\n shrinkB=0,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"connect\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[1]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"-\",\n color=\"0.5\",\n patchB=el,\n shrinkB=0,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"clip\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[2]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"-\",\n color=\"0.5\",\n patchB=el,\n shrinkB=5,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"shrink\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[3]\nax.plot([x1, x2], [y1, y2], \".\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"fancy\",\n color=\"0.5\",\n patchB=el,\n shrinkB=5,\n connectionstyle=\"arc3,rad=0.3\",\n ),\n )\nax.text(.05, .95, \"mutate\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nfor ax in axs.flat:\n ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6524f8e555e086ce9276a3605d1899f3/spectrum_demo.ipynb b/_downloads/6524f8e555e086ce9276a3605d1899f3/spectrum_demo.ipynb deleted file mode 120000 index 1399c83ed05..00000000000 --- a/_downloads/6524f8e555e086ce9276a3605d1899f3/spectrum_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6524f8e555e086ce9276a3605d1899f3/spectrum_demo.ipynb \ No newline at end of file diff --git a/_downloads/652d0283f7c521d0fea9436dc10fa961/interp_demo.ipynb b/_downloads/652d0283f7c521d0fea9436dc10fa961/interp_demo.ipynb deleted file mode 120000 index 6c77b06ec12..00000000000 --- a/_downloads/652d0283f7c521d0fea9436dc10fa961/interp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/652d0283f7c521d0fea9436dc10fa961/interp_demo.ipynb \ No newline at end of file diff --git a/_downloads/65325a74762b318ccaea34f18f1e1c94/annotation_basic.ipynb b/_downloads/65325a74762b318ccaea34f18f1e1c94/annotation_basic.ipynb deleted file mode 120000 index 078e31aa1c8..00000000000 --- a/_downloads/65325a74762b318ccaea34f18f1e1c94/annotation_basic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/65325a74762b318ccaea34f18f1e1c94/annotation_basic.ipynb \ No newline at end of file diff --git a/_downloads/6533649717b75943121ea7a8ffcdea85/bars3d.ipynb b/_downloads/6533649717b75943121ea7a8ffcdea85/bars3d.ipynb deleted file mode 120000 index 0283d69b4a9..00000000000 --- a/_downloads/6533649717b75943121ea7a8ffcdea85/bars3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6533649717b75943121ea7a8ffcdea85/bars3d.ipynb \ No newline at end of file diff --git a/_downloads/65362d6dfb018a7d919f907455e6d496/voxels.py b/_downloads/65362d6dfb018a7d919f907455e6d496/voxels.py deleted file mode 120000 index 8f9689af238..00000000000 --- a/_downloads/65362d6dfb018a7d919f907455e6d496/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/65362d6dfb018a7d919f907455e6d496/voxels.py \ No newline at end of file diff --git a/_downloads/653a83e0692475f8baba666a13366b25/bmh.py b/_downloads/653a83e0692475f8baba666a13366b25/bmh.py deleted file mode 120000 index 8c44253a69c..00000000000 --- a/_downloads/653a83e0692475f8baba666a13366b25/bmh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/653a83e0692475f8baba666a13366b25/bmh.py \ No newline at end of file diff --git a/_downloads/654ac43c27acc0c0fd3cf54b69c2de2b/barcode_demo.py b/_downloads/654ac43c27acc0c0fd3cf54b69c2de2b/barcode_demo.py deleted file mode 120000 index ab59163a750..00000000000 --- a/_downloads/654ac43c27acc0c0fd3cf54b69c2de2b/barcode_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/654ac43c27acc0c0fd3cf54b69c2de2b/barcode_demo.py \ No newline at end of file diff --git a/_downloads/654ee69a3bd414f69d4b4cf58b750539/fahrenheit_celsius_scales.py b/_downloads/654ee69a3bd414f69d4b4cf58b750539/fahrenheit_celsius_scales.py deleted file mode 100644 index 9eed95de001..00000000000 --- a/_downloads/654ee69a3bd414f69d4b4cf58b750539/fahrenheit_celsius_scales.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================================= -Different scales on the same axes -================================= - -Demo of how to display two scales on the left and right y axis. - -This example uses the Fahrenheit and Celsius scales. -""" -import matplotlib.pyplot as plt -import numpy as np - - -def fahrenheit2celsius(temp): - """ - Returns temperature in Celsius. - """ - return (5. / 9.) * (temp - 32) - - -def convert_ax_c_to_celsius(ax_f): - """ - Update second axis according with first axis. - """ - y1, y2 = ax_f.get_ylim() - ax_c.set_ylim(fahrenheit2celsius(y1), fahrenheit2celsius(y2)) - ax_c.figure.canvas.draw() - -fig, ax_f = plt.subplots() -ax_c = ax_f.twinx() - -# automatically update ylim of ax2 when ylim of ax1 changes. -ax_f.callbacks.connect("ylim_changed", convert_ax_c_to_celsius) -ax_f.plot(np.linspace(-40, 120, 100)) -ax_f.set_xlim(0, 100) - -ax_f.set_title('Two scales: Fahrenheit and Celsius') -ax_f.set_ylabel('Fahrenheit') -ax_c.set_ylabel('Celsius') - -plt.show() diff --git a/_downloads/655d0f6d2a0e9f9ac390e6e188a58ffd/pgf.ipynb b/_downloads/655d0f6d2a0e9f9ac390e6e188a58ffd/pgf.ipynb deleted file mode 120000 index 1fb410840e2..00000000000 --- a/_downloads/655d0f6d2a0e9f9ac390e6e188a58ffd/pgf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/655d0f6d2a0e9f9ac390e6e188a58ffd/pgf.ipynb \ No newline at end of file diff --git a/_downloads/6563c9c7f3dffe8d3930b5ec5286081b/sankey_rankine.ipynb b/_downloads/6563c9c7f3dffe8d3930b5ec5286081b/sankey_rankine.ipynb deleted file mode 120000 index e7307723cd7..00000000000 --- a/_downloads/6563c9c7f3dffe8d3930b5ec5286081b/sankey_rankine.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6563c9c7f3dffe8d3930b5ec5286081b/sankey_rankine.ipynb \ No newline at end of file diff --git a/_downloads/656b79a396f0bef585a7ff6fc1e541bc/usetex_baseline_test.ipynb b/_downloads/656b79a396f0bef585a7ff6fc1e541bc/usetex_baseline_test.ipynb deleted file mode 120000 index 4fc55626637..00000000000 --- a/_downloads/656b79a396f0bef585a7ff6fc1e541bc/usetex_baseline_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/656b79a396f0bef585a7ff6fc1e541bc/usetex_baseline_test.ipynb \ No newline at end of file diff --git a/_downloads/65714cd51723c032709ddf40dd43e3cf/legend_guide.py b/_downloads/65714cd51723c032709ddf40dd43e3cf/legend_guide.py deleted file mode 100644 index 88ec2460e0d..00000000000 --- a/_downloads/65714cd51723c032709ddf40dd43e3cf/legend_guide.py +++ /dev/null @@ -1,290 +0,0 @@ -""" -============ -Legend guide -============ - -Generating legends flexibly in Matplotlib. - -.. currentmodule:: matplotlib.pyplot - -This legend guide is an extension of the documentation available at -:func:`~matplotlib.pyplot.legend` - please ensure you are familiar with -contents of that documentation before proceeding with this guide. - - -This guide makes use of some common terms, which are documented here for clarity: - -.. glossary:: - - legend entry - A legend is made up of one or more legend entries. An entry is made up of - exactly one key and one label. - - legend key - The colored/patterned marker to the left of each legend label. - - legend label - The text which describes the handle represented by the key. - - legend handle - The original object which is used to generate an appropriate entry in - the legend. - - -Controlling the legend entries -============================== - -Calling :func:`legend` with no arguments automatically fetches the legend -handles and their associated labels. This functionality is equivalent to:: - - handles, labels = ax.get_legend_handles_labels() - ax.legend(handles, labels) - -The :meth:`~matplotlib.axes.Axes.get_legend_handles_labels` function returns -a list of handles/artists which exist on the Axes which can be used to -generate entries for the resulting legend - it is worth noting however that -not all artists can be added to a legend, at which point a "proxy" will have -to be created (see :ref:`proxy_legend_handles` for further details). - -For full control of what is being added to the legend, it is common to pass -the appropriate handles directly to :func:`legend`:: - - line_up, = plt.plot([1,2,3], label='Line 2') - line_down, = plt.plot([3,2,1], label='Line 1') - plt.legend(handles=[line_up, line_down]) - -In some cases, it is not possible to set the label of the handle, so it is -possible to pass through the list of labels to :func:`legend`:: - - line_up, = plt.plot([1,2,3], label='Line 2') - line_down, = plt.plot([3,2,1], label='Line 1') - plt.legend([line_up, line_down], ['Line Up', 'Line Down']) - - -.. _proxy_legend_handles: - -Creating artists specifically for adding to the legend (aka. Proxy artists) -=========================================================================== - -Not all handles can be turned into legend entries automatically, -so it is often necessary to create an artist which *can*. Legend handles -don't have to exists on the Figure or Axes in order to be used. - -Suppose we wanted to create a legend which has an entry for some data which -is represented by a red color: -""" - -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -red_patch = mpatches.Patch(color='red', label='The red data') -plt.legend(handles=[red_patch]) - -plt.show() - -############################################################################### -# There are many supported legend handles, instead of creating a patch of color -# we could have created a line with a marker: - -import matplotlib.lines as mlines - -blue_line = mlines.Line2D([], [], color='blue', marker='*', - markersize=15, label='Blue stars') -plt.legend(handles=[blue_line]) - -plt.show() - -############################################################################### -# Legend location -# =============== -# -# The location of the legend can be specified by the keyword argument -# *loc*. Please see the documentation at :func:`legend` for more details. -# -# The ``bbox_to_anchor`` keyword gives a great degree of control for manual -# legend placement. For example, if you want your axes legend located at the -# figure's top right-hand corner instead of the axes' corner, simply specify -# the corner's location, and the coordinate system of that location:: -# -# plt.legend(bbox_to_anchor=(1, 1), -# bbox_transform=plt.gcf().transFigure) -# -# More examples of custom legend placement: - -plt.subplot(211) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") - -# Place a legend above this subplot, expanding itself to -# fully use the given bounding box. -plt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left', - ncol=2, mode="expand", borderaxespad=0.) - -plt.subplot(223) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") -# Place a legend to the right of this smaller subplot. -plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.) - -plt.show() - -############################################################################### -# Multiple legends on the same Axes -# ================================= -# -# Sometimes it is more clear to split legend entries across multiple -# legends. Whilst the instinctive approach to doing this might be to call -# the :func:`legend` function multiple times, you will find that only one -# legend ever exists on the Axes. This has been done so that it is possible -# to call :func:`legend` repeatedly to update the legend to the latest -# handles on the Axes, so to persist old legend instances, we must add them -# manually to the Axes: - -line1, = plt.plot([1, 2, 3], label="Line 1", linestyle='--') -line2, = plt.plot([3, 2, 1], label="Line 2", linewidth=4) - -# Create a legend for the first line. -first_legend = plt.legend(handles=[line1], loc='upper right') - -# Add the legend manually to the current Axes. -ax = plt.gca().add_artist(first_legend) - -# Create another legend for the second line. -plt.legend(handles=[line2], loc='lower right') - -plt.show() - -############################################################################### -# Legend Handlers -# =============== -# -# In order to create legend entries, handles are given as an argument to an -# appropriate :class:`~matplotlib.legend_handler.HandlerBase` subclass. -# The choice of handler subclass is determined by the following rules: -# -# 1. Update :func:`~matplotlib.legend.Legend.get_legend_handler_map` -# with the value in the ``handler_map`` keyword. -# 2. Check if the ``handle`` is in the newly created ``handler_map``. -# 3. Check if the type of ``handle`` is in the newly created -# ``handler_map``. -# 4. Check if any of the types in the ``handle``'s mro is in the newly -# created ``handler_map``. -# -# For completeness, this logic is mostly implemented in -# :func:`~matplotlib.legend.Legend.get_legend_handler`. -# -# All of this flexibility means that we have the necessary hooks to implement -# custom handlers for our own type of legend key. -# -# The simplest example of using custom handlers is to instantiate one of the -# existing :class:`~matplotlib.legend_handler.HandlerBase` subclasses. For the -# sake of simplicity, let's choose :class:`matplotlib.legend_handler.HandlerLine2D` -# which accepts a ``numpoints`` argument (note numpoints is a keyword -# on the :func:`legend` function for convenience). We can then pass the mapping -# of instance to Handler as a keyword to legend. - -from matplotlib.legend_handler import HandlerLine2D - -line1, = plt.plot([3, 2, 1], marker='o', label='Line 1') -line2, = plt.plot([1, 2, 3], marker='o', label='Line 2') - -plt.legend(handler_map={line1: HandlerLine2D(numpoints=4)}) - -############################################################################### -# As you can see, "Line 1" now has 4 marker points, where "Line 2" has 2 (the -# default). Try the above code, only change the map's key from ``line1`` to -# ``type(line1)``. Notice how now both :class:`~matplotlib.lines.Line2D` instances -# get 4 markers. -# -# Along with handlers for complex plot types such as errorbars, stem plots -# and histograms, the default ``handler_map`` has a special ``tuple`` handler -# (:class:`~matplotlib.legend_handler.HandlerTuple`) which simply plots -# the handles on top of one another for each item in the given tuple. The -# following example demonstrates combining two legend keys on top of one another: - -from numpy.random import randn - -z = randn(10) - -red_dot, = plt.plot(z, "ro", markersize=15) -# Put a white cross over some of the data. -white_cross, = plt.plot(z[:5], "w+", markeredgewidth=3, markersize=15) - -plt.legend([red_dot, (red_dot, white_cross)], ["Attr A", "Attr A+B"]) - -############################################################################### -# The :class:`~matplotlib.legend_handler.HandlerTuple` class can also be used to -# assign several legend keys to the same entry: - -from matplotlib.legend_handler import HandlerLine2D, HandlerTuple - -p1, = plt.plot([1, 2.5, 3], 'r-d') -p2, = plt.plot([3, 2, 1], 'k-o') - -l = plt.legend([(p1, p2)], ['Two keys'], numpoints=1, - handler_map={tuple: HandlerTuple(ndivide=None)}) - -############################################################################### -# Implementing a custom legend handler -# ------------------------------------ -# -# A custom handler can be implemented to turn any handle into a legend key (handles -# don't necessarily need to be matplotlib artists). -# The handler must implement a "legend_artist" method which returns a -# single artist for the legend to use. Signature details about the "legend_artist" -# are documented at :meth:`~matplotlib.legend_handler.HandlerBase.legend_artist`. - -import matplotlib.patches as mpatches - - -class AnyObject(object): - pass - - -class AnyObjectHandler(object): - def legend_artist(self, legend, orig_handle, fontsize, handlebox): - x0, y0 = handlebox.xdescent, handlebox.ydescent - width, height = handlebox.width, handlebox.height - patch = mpatches.Rectangle([x0, y0], width, height, facecolor='red', - edgecolor='black', hatch='xx', lw=3, - transform=handlebox.get_transform()) - handlebox.add_artist(patch) - return patch - - -plt.legend([AnyObject()], ['My first handler'], - handler_map={AnyObject: AnyObjectHandler()}) - -############################################################################### -# Alternatively, had we wanted to globally accept ``AnyObject`` instances without -# needing to manually set the ``handler_map`` keyword all the time, we could have -# registered the new handler with:: -# -# from matplotlib.legend import Legend -# Legend.update_default_handler_map({AnyObject: AnyObjectHandler()}) -# -# Whilst the power here is clear, remember that there are already many handlers -# implemented and what you want to achieve may already be easily possible with -# existing classes. For example, to produce elliptical legend keys, rather than -# rectangular ones: - -from matplotlib.legend_handler import HandlerPatch - - -class HandlerEllipse(HandlerPatch): - def create_artists(self, legend, orig_handle, - xdescent, ydescent, width, height, fontsize, trans): - center = 0.5 * width - 0.5 * xdescent, 0.5 * height - 0.5 * ydescent - p = mpatches.Ellipse(xy=center, width=width + xdescent, - height=height + ydescent) - self.update_prop(p, orig_handle, legend) - p.set_transform(trans) - return [p] - - -c = mpatches.Circle((0.5, 0.5), 0.25, facecolor="green", - edgecolor="red", linewidth=3) -plt.gca().add_patch(c) - -plt.legend([c], ["An ellipse, not a rectangle"], - handler_map={mpatches.Circle: HandlerEllipse()}) diff --git a/_downloads/657350e5cc5ce038f1eb7c005ce31169/polar_scatter.py b/_downloads/657350e5cc5ce038f1eb7c005ce31169/polar_scatter.py deleted file mode 120000 index ddadaa76122..00000000000 --- a/_downloads/657350e5cc5ce038f1eb7c005ce31169/polar_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/657350e5cc5ce038f1eb7c005ce31169/polar_scatter.py \ No newline at end of file diff --git a/_downloads/65790d71f32f95a3348938e62634b34c/fancytextbox_demo.ipynb b/_downloads/65790d71f32f95a3348938e62634b34c/fancytextbox_demo.ipynb deleted file mode 120000 index 3c0ea200f31..00000000000 --- a/_downloads/65790d71f32f95a3348938e62634b34c/fancytextbox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/65790d71f32f95a3348938e62634b34c/fancytextbox_demo.ipynb \ No newline at end of file diff --git a/_downloads/657be9d0002ba9051a42a370925c69ce/marker_fillstyle_reference.ipynb b/_downloads/657be9d0002ba9051a42a370925c69ce/marker_fillstyle_reference.ipynb deleted file mode 120000 index ab49039414c..00000000000 --- a/_downloads/657be9d0002ba9051a42a370925c69ce/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/657be9d0002ba9051a42a370925c69ce/marker_fillstyle_reference.ipynb \ No newline at end of file diff --git a/_downloads/6584fde4d8ed5019a49e0e94f662feec/bar_demo2.ipynb b/_downloads/6584fde4d8ed5019a49e0e94f662feec/bar_demo2.ipynb deleted file mode 120000 index 8054a4cc676..00000000000 --- a/_downloads/6584fde4d8ed5019a49e0e94f662feec/bar_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6584fde4d8ed5019a49e0e94f662feec/bar_demo2.ipynb \ No newline at end of file diff --git a/_downloads/65963e46f40e4b89675dfee1beb55955/demo_axisline_style.py b/_downloads/65963e46f40e4b89675dfee1beb55955/demo_axisline_style.py deleted file mode 120000 index 1b304272aea..00000000000 --- a/_downloads/65963e46f40e4b89675dfee1beb55955/demo_axisline_style.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/65963e46f40e4b89675dfee1beb55955/demo_axisline_style.py \ No newline at end of file diff --git a/_downloads/65a236f9bbe8b110860f0ca6a8c94df8/span_selector.py b/_downloads/65a236f9bbe8b110860f0ca6a8c94df8/span_selector.py deleted file mode 120000 index d351dc06b1c..00000000000 --- a/_downloads/65a236f9bbe8b110860f0ca6a8c94df8/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/65a236f9bbe8b110860f0ca6a8c94df8/span_selector.py \ No newline at end of file diff --git a/_downloads/65a2db4d484d7d28196bd13c1a13ba3b/membrane.py b/_downloads/65a2db4d484d7d28196bd13c1a13ba3b/membrane.py deleted file mode 120000 index 88c15ed8891..00000000000 --- a/_downloads/65a2db4d484d7d28196bd13c1a13ba3b/membrane.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/65a2db4d484d7d28196bd13c1a13ba3b/membrane.py \ No newline at end of file diff --git a/_downloads/65b444e3d093ef5b128bf6d607b6a7f4/simple_legend01.ipynb b/_downloads/65b444e3d093ef5b128bf6d607b6a7f4/simple_legend01.ipynb deleted file mode 120000 index c5cadcf4281..00000000000 --- a/_downloads/65b444e3d093ef5b128bf6d607b6a7f4/simple_legend01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/65b444e3d093ef5b128bf6d607b6a7f4/simple_legend01.ipynb \ No newline at end of file diff --git a/_downloads/65b829f7ffdc9042160bd58bf8c3b6fe/demo_axes_grid2.ipynb b/_downloads/65b829f7ffdc9042160bd58bf8c3b6fe/demo_axes_grid2.ipynb deleted file mode 120000 index 080728a587e..00000000000 --- a/_downloads/65b829f7ffdc9042160bd58bf8c3b6fe/demo_axes_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/65b829f7ffdc9042160bd58bf8c3b6fe/demo_axes_grid2.ipynb \ No newline at end of file diff --git a/_downloads/65c5ee89c768f1e8727180e7dba8e365/eventplot_demo.ipynb b/_downloads/65c5ee89c768f1e8727180e7dba8e365/eventplot_demo.ipynb deleted file mode 100644 index 609a3710fff..00000000000 --- a/_downloads/65c5ee89c768f1e8727180e7dba8e365/eventplot_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Eventplot Demo\n\n\nAn eventplot showing sequences of events with various line properties.\nThe plot is shown in both horizontal and vertical orientations.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib\nmatplotlib.rcParams['font.size'] = 8.0\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# create random data\ndata1 = np.random.random([6, 50])\n\n# set different colors for each set of positions\ncolors1 = ['C{}'.format(i) for i in range(6)]\n\n# set different line properties for each set of positions\n# note that some overlap\nlineoffsets1 = np.array([-15, -3, 1, 1.5, 6, 10])\nlinelengths1 = [5, 2, 1, 1, 3, 1.5]\n\nfig, axs = plt.subplots(2, 2)\n\n# create a horizontal plot\naxs[0, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1,\n linelengths=linelengths1)\n\n# create a vertical plot\naxs[1, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1,\n linelengths=linelengths1, orientation='vertical')\n\n# create another set of random data.\n# the gamma distribution is only used fo aesthetic purposes\ndata2 = np.random.gamma(4, size=[60, 50])\n\n# use individual values for the parameters this time\n# these values will be used for all data sets (except lineoffsets2, which\n# sets the increment between each data set in this usage)\ncolors2 = 'black'\nlineoffsets2 = 1\nlinelengths2 = 1\n\n# create a horizontal plot\naxs[0, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2,\n linelengths=linelengths2)\n\n\n# create a vertical plot\naxs[1, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2,\n linelengths=linelengths2, orientation='vertical')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/65c62739a4a510dab5ec05cb0e6ac2e8/customizing.ipynb b/_downloads/65c62739a4a510dab5ec05cb0e6ac2e8/customizing.ipynb deleted file mode 120000 index 59b5601868b..00000000000 --- a/_downloads/65c62739a4a510dab5ec05cb0e6ac2e8/customizing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/65c62739a4a510dab5ec05cb0e6ac2e8/customizing.ipynb \ No newline at end of file diff --git a/_downloads/65dcdc0cf1462e963aad8586bb9a1157/tick_label_right.ipynb b/_downloads/65dcdc0cf1462e963aad8586bb9a1157/tick_label_right.ipynb deleted file mode 120000 index c42fc7f7ef9..00000000000 --- a/_downloads/65dcdc0cf1462e963aad8586bb9a1157/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/65dcdc0cf1462e963aad8586bb9a1157/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/65e8e1bbd4871d335b9d5a93438d32df/contour3d_3.ipynb b/_downloads/65e8e1bbd4871d335b9d5a93438d32df/contour3d_3.ipynb deleted file mode 120000 index b0156bba7c5..00000000000 --- a/_downloads/65e8e1bbd4871d335b9d5a93438d32df/contour3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/65e8e1bbd4871d335b9d5a93438d32df/contour3d_3.ipynb \ No newline at end of file diff --git a/_downloads/65e8ed54f6c0937fc042bd1269e9923a/colormap_normalizations_custom.py b/_downloads/65e8ed54f6c0937fc042bd1269e9923a/colormap_normalizations_custom.py deleted file mode 120000 index 565f67004b0..00000000000 --- a/_downloads/65e8ed54f6c0937fc042bd1269e9923a/colormap_normalizations_custom.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/65e8ed54f6c0937fc042bd1269e9923a/colormap_normalizations_custom.py \ No newline at end of file diff --git a/_downloads/65ec0133cdd436f1be3466f918f9cb7a/axis_direction_demo_step04.py b/_downloads/65ec0133cdd436f1be3466f918f9cb7a/axis_direction_demo_step04.py deleted file mode 120000 index e67ce8a0c2a..00000000000 --- a/_downloads/65ec0133cdd436f1be3466f918f9cb7a/axis_direction_demo_step04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/65ec0133cdd436f1be3466f918f9cb7a/axis_direction_demo_step04.py \ No newline at end of file diff --git a/_downloads/65ef06b13c1ad4701c74ed976a963942/mathtext.py b/_downloads/65ef06b13c1ad4701c74ed976a963942/mathtext.py deleted file mode 120000 index 85636cec8ba..00000000000 --- a/_downloads/65ef06b13c1ad4701c74ed976a963942/mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/65ef06b13c1ad4701c74ed976a963942/mathtext.py \ No newline at end of file diff --git a/_downloads/65f526cc6181761ffb1106b199025da7/markevery_demo.py b/_downloads/65f526cc6181761ffb1106b199025da7/markevery_demo.py deleted file mode 120000 index 200bd46a1b4..00000000000 --- a/_downloads/65f526cc6181761ffb1106b199025da7/markevery_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/65f526cc6181761ffb1106b199025da7/markevery_demo.py \ No newline at end of file diff --git a/_downloads/65f596be46beb15b7c715710719ebce1/ginput_demo_sgskip.py b/_downloads/65f596be46beb15b7c715710719ebce1/ginput_demo_sgskip.py deleted file mode 120000 index b88e9f14903..00000000000 --- a/_downloads/65f596be46beb15b7c715710719ebce1/ginput_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/65f596be46beb15b7c715710719ebce1/ginput_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/65ff0c23bf21e1d81b83ecba9549f406/figlegend_demo.py b/_downloads/65ff0c23bf21e1d81b83ecba9549f406/figlegend_demo.py deleted file mode 120000 index 836c3b169f1..00000000000 --- a/_downloads/65ff0c23bf21e1d81b83ecba9549f406/figlegend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/65ff0c23bf21e1d81b83ecba9549f406/figlegend_demo.py \ No newline at end of file diff --git a/_downloads/660aca284b362bf42b8eb5d7fd03bf48/annotate_simple_coord02.ipynb b/_downloads/660aca284b362bf42b8eb5d7fd03bf48/annotate_simple_coord02.ipynb deleted file mode 100644 index fb8c5d3df56..00000000000 --- a/_downloads/660aca284b362bf42b8eb5d7fd03bf48/annotate_simple_coord02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple Coord02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 2))\nan1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\n\nan2 = ax.annotate(\"Test 2\", xy=(0.5, 1.), xycoords=an1,\n xytext=(0.5, 1.1), textcoords=(an1, \"axes fraction\"),\n va=\"bottom\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\n\nfig.subplots_adjust(top=0.83)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/660e59bc8f043bb56fdd07ceade033b4/scalarformatter.ipynb b/_downloads/660e59bc8f043bb56fdd07ceade033b4/scalarformatter.ipynb deleted file mode 120000 index 53ba0a67535..00000000000 --- a/_downloads/660e59bc8f043bb56fdd07ceade033b4/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/660e59bc8f043bb56fdd07ceade033b4/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/660f4652e0f70af02a66ff0c11fd5935/pyplot_two_subplots.py b/_downloads/660f4652e0f70af02a66ff0c11fd5935/pyplot_two_subplots.py deleted file mode 120000 index 24cf8969576..00000000000 --- a/_downloads/660f4652e0f70af02a66ff0c11fd5935/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/660f4652e0f70af02a66ff0c11fd5935/pyplot_two_subplots.py \ No newline at end of file diff --git a/_downloads/6610549796b7ae801a732cb47e54fea6/figure_axes_enter_leave.py b/_downloads/6610549796b7ae801a732cb47e54fea6/figure_axes_enter_leave.py deleted file mode 120000 index f7cf23b0701..00000000000 --- a/_downloads/6610549796b7ae801a732cb47e54fea6/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6610549796b7ae801a732cb47e54fea6/figure_axes_enter_leave.py \ No newline at end of file diff --git a/_downloads/661f33ca522ea3b9574aa74c020a2229/span_regions.ipynb b/_downloads/661f33ca522ea3b9574aa74c020a2229/span_regions.ipynb deleted file mode 120000 index 59fbb16451f..00000000000 --- a/_downloads/661f33ca522ea3b9574aa74c020a2229/span_regions.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/661f33ca522ea3b9574aa74c020a2229/span_regions.ipynb \ No newline at end of file diff --git a/_downloads/6629f12b3e7a19f0650297ffcc40cf20/fancybox_demo.ipynb b/_downloads/6629f12b3e7a19f0650297ffcc40cf20/fancybox_demo.ipynb deleted file mode 120000 index 7e682cf3d4b..00000000000 --- a/_downloads/6629f12b3e7a19f0650297ffcc40cf20/fancybox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6629f12b3e7a19f0650297ffcc40cf20/fancybox_demo.ipynb \ No newline at end of file diff --git a/_downloads/66321e3df90284a3bbfbc9b703b96940/annotate_simple01.py b/_downloads/66321e3df90284a3bbfbc9b703b96940/annotate_simple01.py deleted file mode 120000 index df9dc18f3af..00000000000 --- a/_downloads/66321e3df90284a3bbfbc9b703b96940/annotate_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/66321e3df90284a3bbfbc9b703b96940/annotate_simple01.py \ No newline at end of file diff --git a/_downloads/66477779eb85625bf485b9570bda5935/spines_bounds.ipynb b/_downloads/66477779eb85625bf485b9570bda5935/spines_bounds.ipynb deleted file mode 120000 index b31db11d2d2..00000000000 --- a/_downloads/66477779eb85625bf485b9570bda5935/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/66477779eb85625bf485b9570bda5935/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/6649af2c45b788ad19461edeb67c09bd/scalarformatter.py b/_downloads/6649af2c45b788ad19461edeb67c09bd/scalarformatter.py deleted file mode 120000 index 1038d3b9477..00000000000 --- a/_downloads/6649af2c45b788ad19461edeb67c09bd/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6649af2c45b788ad19461edeb67c09bd/scalarformatter.py \ No newline at end of file diff --git a/_downloads/664d6d4bf4aeddcfacfbe8fbd73292b6/simple_axis_pad.py b/_downloads/664d6d4bf4aeddcfacfbe8fbd73292b6/simple_axis_pad.py deleted file mode 120000 index 084eeec800d..00000000000 --- a/_downloads/664d6d4bf4aeddcfacfbe8fbd73292b6/simple_axis_pad.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/664d6d4bf4aeddcfacfbe8fbd73292b6/simple_axis_pad.py \ No newline at end of file diff --git a/_downloads/66505356f8f95303d31192eef95aab38/pyplot.ipynb b/_downloads/66505356f8f95303d31192eef95aab38/pyplot.ipynb deleted file mode 120000 index 3639e606583..00000000000 --- a/_downloads/66505356f8f95303d31192eef95aab38/pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/66505356f8f95303d31192eef95aab38/pyplot.ipynb \ No newline at end of file diff --git a/_downloads/665168018d53e3f8830374344507521d/contourf_log.py b/_downloads/665168018d53e3f8830374344507521d/contourf_log.py deleted file mode 120000 index cf8e5ffb06b..00000000000 --- a/_downloads/665168018d53e3f8830374344507521d/contourf_log.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/665168018d53e3f8830374344507521d/contourf_log.py \ No newline at end of file diff --git a/_downloads/665a0e6443c927d4b5062290314ab8b0/double_pendulum_sgskip.ipynb b/_downloads/665a0e6443c927d4b5062290314ab8b0/double_pendulum_sgskip.ipynb deleted file mode 120000 index a46a3203aa5..00000000000 --- a/_downloads/665a0e6443c927d4b5062290314ab8b0/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/665a0e6443c927d4b5062290314ab8b0/double_pendulum_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6671d17dcbd9935a0927e25cbaa52ec4/pick_event_demo.ipynb b/_downloads/6671d17dcbd9935a0927e25cbaa52ec4/pick_event_demo.ipynb deleted file mode 120000 index 04a4c3af0c2..00000000000 --- a/_downloads/6671d17dcbd9935a0927e25cbaa52ec4/pick_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6671d17dcbd9935a0927e25cbaa52ec4/pick_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/6682f002e8ad1ad8e97b8f336f720abf/radar_chart.ipynb b/_downloads/6682f002e8ad1ad8e97b8f336f720abf/radar_chart.ipynb deleted file mode 100644 index 01c475dc823..00000000000 --- a/_downloads/6682f002e8ad1ad8e97b8f336f720abf/radar_chart.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================================\nRadar chart (aka spider or star chart)\n======================================\n\nThis example creates a radar chart, also known as a spider or star chart [1]_.\n\nAlthough this example allows a frame of either 'circle' or 'polygon', polygon\nframes don't have proper gridlines (the lines are circles instead of polygons).\nIt's possible to get a polygon grid by setting GRIDLINE_INTERPOLATION_STEPS in\nmatplotlib.axis to the desired number of vertices, but the orientation of the\npolygon is not aligned with the radial axes.\n\n.. [1] http://en.wikipedia.org/wiki/Radar_chart\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Circle, RegularPolygon\nfrom matplotlib.path import Path\nfrom matplotlib.projections.polar import PolarAxes\nfrom matplotlib.projections import register_projection\nfrom matplotlib.spines import Spine\nfrom matplotlib.transforms import Affine2D\n\n\ndef radar_factory(num_vars, frame='circle'):\n \"\"\"Create a radar chart with `num_vars` axes.\n\n This function creates a RadarAxes projection and registers it.\n\n Parameters\n ----------\n num_vars : int\n Number of variables for radar chart.\n frame : {'circle' | 'polygon'}\n Shape of frame surrounding axes.\n\n \"\"\"\n # calculate evenly-spaced axis angles\n theta = np.linspace(0, 2*np.pi, num_vars, endpoint=False)\n\n class RadarAxes(PolarAxes):\n\n name = 'radar'\n # use 1 line segment to connect specified points\n RESOLUTION = 1\n\n def __init__(self, *args, **kwargs):\n super().__init__(*args, **kwargs)\n # rotate plot such that the first axis is at the top\n self.set_theta_zero_location('N')\n\n def fill(self, *args, closed=True, **kwargs):\n \"\"\"Override fill so that line is closed by default\"\"\"\n return super().fill(closed=closed, *args, **kwargs)\n\n def plot(self, *args, **kwargs):\n \"\"\"Override plot so that line is closed by default\"\"\"\n lines = super().plot(*args, **kwargs)\n for line in lines:\n self._close_line(line)\n\n def _close_line(self, line):\n x, y = line.get_data()\n # FIXME: markers at x[0], y[0] get doubled-up\n if x[0] != x[-1]:\n x = np.concatenate((x, [x[0]]))\n y = np.concatenate((y, [y[0]]))\n line.set_data(x, y)\n\n def set_varlabels(self, labels):\n self.set_thetagrids(np.degrees(theta), labels)\n\n def _gen_axes_patch(self):\n # The Axes patch must be centered at (0.5, 0.5) and of radius 0.5\n # in axes coordinates.\n if frame == 'circle':\n return Circle((0.5, 0.5), 0.5)\n elif frame == 'polygon':\n return RegularPolygon((0.5, 0.5), num_vars,\n radius=.5, edgecolor=\"k\")\n else:\n raise ValueError(\"unknown value for 'frame': %s\" % frame)\n\n def _gen_axes_spines(self):\n if frame == 'circle':\n return super()._gen_axes_spines()\n elif frame == 'polygon':\n # spine_type must be 'left'/'right'/'top'/'bottom'/'circle'.\n spine = Spine(axes=self,\n spine_type='circle',\n path=Path.unit_regular_polygon(num_vars))\n # unit_regular_polygon gives a polygon of radius 1 centered at\n # (0, 0) but we want a polygon of radius 0.5 centered at (0.5,\n # 0.5) in axes coordinates.\n spine.set_transform(Affine2D().scale(.5).translate(.5, .5)\n + self.transAxes)\n return {'polar': spine}\n else:\n raise ValueError(\"unknown value for 'frame': %s\" % frame)\n\n register_projection(RadarAxes)\n return theta\n\n\ndef example_data():\n # The following data is from the Denver Aerosol Sources and Health study.\n # See doi:10.1016/j.atmosenv.2008.12.017\n #\n # The data are pollution source profile estimates for five modeled\n # pollution sources (e.g., cars, wood-burning, etc) that emit 7-9 chemical\n # species. The radar charts are experimented with here to see if we can\n # nicely visualize how the modeled source profiles change across four\n # scenarios:\n # 1) No gas-phase species present, just seven particulate counts on\n # Sulfate\n # Nitrate\n # Elemental Carbon (EC)\n # Organic Carbon fraction 1 (OC)\n # Organic Carbon fraction 2 (OC2)\n # Organic Carbon fraction 3 (OC3)\n # Pyrolized Organic Carbon (OP)\n # 2)Inclusion of gas-phase specie carbon monoxide (CO)\n # 3)Inclusion of gas-phase specie ozone (O3).\n # 4)Inclusion of both gas-phase species is present...\n data = [\n ['Sulfate', 'Nitrate', 'EC', 'OC1', 'OC2', 'OC3', 'OP', 'CO', 'O3'],\n ('Basecase', [\n [0.88, 0.01, 0.03, 0.03, 0.00, 0.06, 0.01, 0.00, 0.00],\n [0.07, 0.95, 0.04, 0.05, 0.00, 0.02, 0.01, 0.00, 0.00],\n [0.01, 0.02, 0.85, 0.19, 0.05, 0.10, 0.00, 0.00, 0.00],\n [0.02, 0.01, 0.07, 0.01, 0.21, 0.12, 0.98, 0.00, 0.00],\n [0.01, 0.01, 0.02, 0.71, 0.74, 0.70, 0.00, 0.00, 0.00]]),\n ('With CO', [\n [0.88, 0.02, 0.02, 0.02, 0.00, 0.05, 0.00, 0.05, 0.00],\n [0.08, 0.94, 0.04, 0.02, 0.00, 0.01, 0.12, 0.04, 0.00],\n [0.01, 0.01, 0.79, 0.10, 0.00, 0.05, 0.00, 0.31, 0.00],\n [0.00, 0.02, 0.03, 0.38, 0.31, 0.31, 0.00, 0.59, 0.00],\n [0.02, 0.02, 0.11, 0.47, 0.69, 0.58, 0.88, 0.00, 0.00]]),\n ('With O3', [\n [0.89, 0.01, 0.07, 0.00, 0.00, 0.05, 0.00, 0.00, 0.03],\n [0.07, 0.95, 0.05, 0.04, 0.00, 0.02, 0.12, 0.00, 0.00],\n [0.01, 0.02, 0.86, 0.27, 0.16, 0.19, 0.00, 0.00, 0.00],\n [0.01, 0.03, 0.00, 0.32, 0.29, 0.27, 0.00, 0.00, 0.95],\n [0.02, 0.00, 0.03, 0.37, 0.56, 0.47, 0.87, 0.00, 0.00]]),\n ('CO & O3', [\n [0.87, 0.01, 0.08, 0.00, 0.00, 0.04, 0.00, 0.00, 0.01],\n [0.09, 0.95, 0.02, 0.03, 0.00, 0.01, 0.13, 0.06, 0.00],\n [0.01, 0.02, 0.71, 0.24, 0.13, 0.16, 0.00, 0.50, 0.00],\n [0.01, 0.03, 0.00, 0.28, 0.24, 0.23, 0.00, 0.44, 0.88],\n [0.02, 0.00, 0.18, 0.45, 0.64, 0.55, 0.86, 0.00, 0.16]])\n ]\n return data\n\n\nif __name__ == '__main__':\n N = 9\n theta = radar_factory(N, frame='polygon')\n\n data = example_data()\n spoke_labels = data.pop(0)\n\n fig, axes = plt.subplots(figsize=(9, 9), nrows=2, ncols=2,\n subplot_kw=dict(projection='radar'))\n fig.subplots_adjust(wspace=0.25, hspace=0.20, top=0.85, bottom=0.05)\n\n colors = ['b', 'r', 'g', 'm', 'y']\n # Plot the four cases from the example data on separate axes\n for ax, (title, case_data) in zip(axes.flat, data):\n ax.set_rgrids([0.2, 0.4, 0.6, 0.8])\n ax.set_title(title, weight='bold', size='medium', position=(0.5, 1.1),\n horizontalalignment='center', verticalalignment='center')\n for d, color in zip(case_data, colors):\n ax.plot(theta, d, color=color)\n ax.fill(theta, d, facecolor=color, alpha=0.25)\n ax.set_varlabels(spoke_labels)\n\n # add legend relative to top-left plot\n ax = axes[0, 0]\n labels = ('Factor 1', 'Factor 2', 'Factor 3', 'Factor 4', 'Factor 5')\n legend = ax.legend(labels, loc=(0.9, .95),\n labelspacing=0.1, fontsize='small')\n\n fig.text(0.5, 0.965, '5-Factor Solution Profiles Across Four Scenarios',\n horizontalalignment='center', color='black', weight='bold',\n size='large')\n\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.spines\nmatplotlib.spines.Spine\nmatplotlib.projections\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes\nmatplotlib.projections.register_projection" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/668ae643159a5ae295a64709d30cedb1/errorbar_subsample.ipynb b/_downloads/668ae643159a5ae295a64709d30cedb1/errorbar_subsample.ipynb deleted file mode 120000 index 3874a4583c9..00000000000 --- a/_downloads/668ae643159a5ae295a64709d30cedb1/errorbar_subsample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/668ae643159a5ae295a64709d30cedb1/errorbar_subsample.ipynb \ No newline at end of file diff --git a/_downloads/668aff4fa26b6df9255cb3832330967e/axes_props.ipynb b/_downloads/668aff4fa26b6df9255cb3832330967e/axes_props.ipynb deleted file mode 120000 index 5153a8edff4..00000000000 --- a/_downloads/668aff4fa26b6df9255cb3832330967e/axes_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/668aff4fa26b6df9255cb3832330967e/axes_props.ipynb \ No newline at end of file diff --git a/_downloads/66bcc3bbdbaaf71430b5af84fc7081df/pgf_preamble_sgskip.ipynb b/_downloads/66bcc3bbdbaaf71430b5af84fc7081df/pgf_preamble_sgskip.ipynb deleted file mode 120000 index 5fe1c035466..00000000000 --- a/_downloads/66bcc3bbdbaaf71430b5af84fc7081df/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/66bcc3bbdbaaf71430b5af84fc7081df/pgf_preamble_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/66ea7782acf229e040be1e4a6b713c5c/font_family_rc_sgskip.py b/_downloads/66ea7782acf229e040be1e4a6b713c5c/font_family_rc_sgskip.py deleted file mode 120000 index cf1056e3c1e..00000000000 --- a/_downloads/66ea7782acf229e040be1e4a6b713c5c/font_family_rc_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/66ea7782acf229e040be1e4a6b713c5c/font_family_rc_sgskip.py \ No newline at end of file diff --git a/_downloads/66f9043ade038a6332abb0fe4ecbc916/2dcollections3d.py b/_downloads/66f9043ade038a6332abb0fe4ecbc916/2dcollections3d.py deleted file mode 120000 index 1fe92f749c9..00000000000 --- a/_downloads/66f9043ade038a6332abb0fe4ecbc916/2dcollections3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/66f9043ade038a6332abb0fe4ecbc916/2dcollections3d.py \ No newline at end of file diff --git a/_downloads/66fbde84b16e47d48c1453370b36aa55/autowrap.py b/_downloads/66fbde84b16e47d48c1453370b36aa55/autowrap.py deleted file mode 120000 index f07a2ddf75c..00000000000 --- a/_downloads/66fbde84b16e47d48c1453370b36aa55/autowrap.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/66fbde84b16e47d48c1453370b36aa55/autowrap.py \ No newline at end of file diff --git a/_downloads/66fc90c74f0fe853ea43dd77fbe0a055/compound_path.py b/_downloads/66fc90c74f0fe853ea43dd77fbe0a055/compound_path.py deleted file mode 120000 index 900cd877541..00000000000 --- a/_downloads/66fc90c74f0fe853ea43dd77fbe0a055/compound_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/66fc90c74f0fe853ea43dd77fbe0a055/compound_path.py \ No newline at end of file diff --git a/_downloads/66fcf845a388131a977e9376f3bfe16f/axis_direction_demo_step04.ipynb b/_downloads/66fcf845a388131a977e9376f3bfe16f/axis_direction_demo_step04.ipynb deleted file mode 120000 index 0ecabe96996..00000000000 --- a/_downloads/66fcf845a388131a977e9376f3bfe16f/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/66fcf845a388131a977e9376f3bfe16f/axis_direction_demo_step04.ipynb \ No newline at end of file diff --git a/_downloads/66fdc8d474f2cc8bf1cb445bedaa3867/text3d.py b/_downloads/66fdc8d474f2cc8bf1cb445bedaa3867/text3d.py deleted file mode 100644 index ed4934faf5a..00000000000 --- a/_downloads/66fdc8d474f2cc8bf1cb445bedaa3867/text3d.py +++ /dev/null @@ -1,53 +0,0 @@ -''' -====================== -Text annotations in 3D -====================== - -Demonstrates the placement of text annotations on a 3D plot. - -Functionality shown: - - - Using the text function with three types of 'zdir' values: None, an axis - name (ex. 'x'), or a direction tuple (ex. (1, 1, 0)). - - Using the text function with the color keyword. - - - Using the text2D function to place text on a fixed position on the ax - object. - -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Demo 1: zdir -zdirs = (None, 'x', 'y', 'z', (1, 1, 0), (1, 1, 1)) -xs = (1, 4, 4, 9, 4, 1) -ys = (2, 5, 8, 10, 1, 2) -zs = (10, 3, 8, 9, 1, 8) - -for zdir, x, y, z in zip(zdirs, xs, ys, zs): - label = '(%d, %d, %d), dir=%s' % (x, y, z, zdir) - ax.text(x, y, z, label, zdir) - -# Demo 2: color -ax.text(9, 0, 0, "red", color='red') - -# Demo 3: text2D -# Placement 0, 0 would be the bottom left, 1, 1 would be the top right. -ax.text2D(0.05, 0.95, "2D Text", transform=ax.transAxes) - -# Tweaking display region and labels -ax.set_xlim(0, 10) -ax.set_ylim(0, 10) -ax.set_zlim(0, 10) -ax.set_xlabel('X axis') -ax.set_ylabel('Y axis') -ax.set_zlabel('Z axis') - -plt.show() diff --git a/_downloads/66fe28140912b78f876295ff23e6ca4b/triinterp_demo.py b/_downloads/66fe28140912b78f876295ff23e6ca4b/triinterp_demo.py deleted file mode 120000 index f2d38e051ac..00000000000 --- a/_downloads/66fe28140912b78f876295ff23e6ca4b/triinterp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/66fe28140912b78f876295ff23e6ca4b/triinterp_demo.py \ No newline at end of file diff --git a/_downloads/670273ed7497811789e4a1bc0352cda7/subplots_adjust.py b/_downloads/670273ed7497811789e4a1bc0352cda7/subplots_adjust.py deleted file mode 120000 index 75d3e6e2cad..00000000000 --- a/_downloads/670273ed7497811789e4a1bc0352cda7/subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/670273ed7497811789e4a1bc0352cda7/subplots_adjust.py \ No newline at end of file diff --git a/_downloads/6725b4f4081437199d155bcc3ed52b32/radian_demo.py b/_downloads/6725b4f4081437199d155bcc3ed52b32/radian_demo.py deleted file mode 120000 index 580d3663454..00000000000 --- a/_downloads/6725b4f4081437199d155bcc3ed52b32/radian_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6725b4f4081437199d155bcc3ed52b32/radian_demo.py \ No newline at end of file diff --git a/_downloads/6734c82fa1f001a55d6faad2ef334a20/zoom_inset_axes.ipynb b/_downloads/6734c82fa1f001a55d6faad2ef334a20/zoom_inset_axes.ipynb deleted file mode 120000 index 04f9e7315bb..00000000000 --- a/_downloads/6734c82fa1f001a55d6faad2ef334a20/zoom_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6734c82fa1f001a55d6faad2ef334a20/zoom_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/6739d958cebe532ef47954e3984251b9/voxels_rgb.ipynb b/_downloads/6739d958cebe532ef47954e3984251b9/voxels_rgb.ipynb deleted file mode 120000 index b06ef9624d3..00000000000 --- a/_downloads/6739d958cebe532ef47954e3984251b9/voxels_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6739d958cebe532ef47954e3984251b9/voxels_rgb.ipynb \ No newline at end of file diff --git a/_downloads/673eb94321c0a9961bd707dd0167411f/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/673eb94321c0a9961bd707dd0167411f/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 120000 index c670b8f608e..00000000000 --- a/_downloads/673eb94321c0a9961bd707dd0167411f/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/673eb94321c0a9961bd707dd0167411f/make_room_for_ylabel_using_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/67444aa8e727dcf1b494799f62393f05/usetex.ipynb b/_downloads/67444aa8e727dcf1b494799f62393f05/usetex.ipynb deleted file mode 120000 index 9754eea1f8a..00000000000 --- a/_downloads/67444aa8e727dcf1b494799f62393f05/usetex.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/67444aa8e727dcf1b494799f62393f05/usetex.ipynb \ No newline at end of file diff --git a/_downloads/674c6f476ab5bb09ee68571cf283e988/boxplot_demo_pyplot.ipynb b/_downloads/674c6f476ab5bb09ee68571cf283e988/boxplot_demo_pyplot.ipynb deleted file mode 120000 index 2b4d9bf234e..00000000000 --- a/_downloads/674c6f476ab5bb09ee68571cf283e988/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/674c6f476ab5bb09ee68571cf283e988/boxplot_demo_pyplot.ipynb \ No newline at end of file diff --git a/_downloads/674ef13b0b149ddb5f4beaa73790ba4d/radar_chart.ipynb b/_downloads/674ef13b0b149ddb5f4beaa73790ba4d/radar_chart.ipynb deleted file mode 120000 index f467d8b1833..00000000000 --- a/_downloads/674ef13b0b149ddb5f4beaa73790ba4d/radar_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/674ef13b0b149ddb5f4beaa73790ba4d/radar_chart.ipynb \ No newline at end of file diff --git a/_downloads/6766b483745574fcae15ec3348979a68/spines_bounds.ipynb b/_downloads/6766b483745574fcae15ec3348979a68/spines_bounds.ipynb deleted file mode 120000 index 3f0ac5b1a45..00000000000 --- a/_downloads/6766b483745574fcae15ec3348979a68/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/6766b483745574fcae15ec3348979a68/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/6767a1cf442ae9f193166011f5f2df88/annotate_simple02.py b/_downloads/6767a1cf442ae9f193166011f5f2df88/annotate_simple02.py deleted file mode 120000 index 9c788e98081..00000000000 --- a/_downloads/6767a1cf442ae9f193166011f5f2df88/annotate_simple02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6767a1cf442ae9f193166011f5f2df88/annotate_simple02.py \ No newline at end of file diff --git a/_downloads/67688f547696bece16eef46e12095b0c/toolmanager_sgskip.ipynb b/_downloads/67688f547696bece16eef46e12095b0c/toolmanager_sgskip.ipynb deleted file mode 100644 index 6be48a3811e..00000000000 --- a/_downloads/67688f547696bece16eef46e12095b0c/toolmanager_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tool Manager\n\n\nThis example demonstrates how to:\n\n* Modify the Toolbar\n* Create tools\n* Add tools\n* Remove tools\n\nUsing `matplotlib.backend_managers.ToolManager`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.rcParams['toolbar'] = 'toolmanager'\nfrom matplotlib.backend_tools import ToolBase, ToolToggleBase\n\n\nclass ListTools(ToolBase):\n '''List all the tools controlled by the `ToolManager`'''\n # keyboard shortcut\n default_keymap = 'm'\n description = 'List Tools'\n\n def trigger(self, *args, **kwargs):\n print('_' * 80)\n print(\"{0:12} {1:45} {2}\".format(\n 'Name (id)', 'Tool description', 'Keymap'))\n print('-' * 80)\n tools = self.toolmanager.tools\n for name in sorted(tools):\n if not tools[name].description:\n continue\n keys = ', '.join(sorted(self.toolmanager.get_tool_keymap(name)))\n print(\"{0:12} {1:45} {2}\".format(\n name, tools[name].description, keys))\n print('_' * 80)\n print(\"Active Toggle tools\")\n print(\"{0:12} {1:45}\".format(\"Group\", \"Active\"))\n print('-' * 80)\n for group, active in self.toolmanager.active_toggle.items():\n print(\"{0:12} {1:45}\".format(str(group), str(active)))\n\n\nclass GroupHideTool(ToolToggleBase):\n '''Show lines with a given gid'''\n default_keymap = 'G'\n description = 'Show by gid'\n default_toggled = True\n\n def __init__(self, *args, gid, **kwargs):\n self.gid = gid\n super().__init__(*args, **kwargs)\n\n def enable(self, *args):\n self.set_lines_visibility(True)\n\n def disable(self, *args):\n self.set_lines_visibility(False)\n\n def set_lines_visibility(self, state):\n for ax in self.figure.get_axes():\n for line in ax.get_lines():\n if line.get_gid() == self.gid:\n line.set_visible(state)\n self.figure.canvas.draw()\n\n\nfig = plt.figure()\nplt.plot([1, 2, 3], gid='mygroup')\nplt.plot([2, 3, 4], gid='unknown')\nplt.plot([3, 2, 1], gid='mygroup')\n\n# Add the custom tools that we created\nfig.canvas.manager.toolmanager.add_tool('List', ListTools)\nfig.canvas.manager.toolmanager.add_tool('Show', GroupHideTool, gid='mygroup')\n\n\n# Add an existing tool to new group `foo`.\n# It can be added as many times as we want\nfig.canvas.manager.toolbar.add_tool('zoom', 'foo')\n\n# Remove the forward button\nfig.canvas.manager.toolmanager.remove_tool('forward')\n\n# To add a custom tool to the toolbar at specific location inside\n# the navigation group\nfig.canvas.manager.toolbar.add_tool('Show', 'navigation', 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/67751bb47e810f117c20f745d3e7c9a9/ftface_props.ipynb b/_downloads/67751bb47e810f117c20f745d3e7c9a9/ftface_props.ipynb deleted file mode 120000 index c7b8fbd9962..00000000000 --- a/_downloads/67751bb47e810f117c20f745d3e7c9a9/ftface_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/67751bb47e810f117c20f745d3e7c9a9/ftface_props.ipynb \ No newline at end of file diff --git a/_downloads/67813da1038f1b16aa18628c0435de73/colormap_normalizations_power.py b/_downloads/67813da1038f1b16aa18628c0435de73/colormap_normalizations_power.py deleted file mode 120000 index f23f857229d..00000000000 --- a/_downloads/67813da1038f1b16aa18628c0435de73/colormap_normalizations_power.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/67813da1038f1b16aa18628c0435de73/colormap_normalizations_power.py \ No newline at end of file diff --git a/_downloads/678ac1fbeab40877801e34ac98d0e03c/parasite_simple2.ipynb b/_downloads/678ac1fbeab40877801e34ac98d0e03c/parasite_simple2.ipynb deleted file mode 120000 index 208f140e4a9..00000000000 --- a/_downloads/678ac1fbeab40877801e34ac98d0e03c/parasite_simple2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/678ac1fbeab40877801e34ac98d0e03c/parasite_simple2.ipynb \ No newline at end of file diff --git a/_downloads/679ef7d17b0e57dcafd476ea8857f0c3/colorbar_tick_labelling_demo.ipynb b/_downloads/679ef7d17b0e57dcafd476ea8857f0c3/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index c696544de37..00000000000 --- a/_downloads/679ef7d17b0e57dcafd476ea8857f0c3/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/679ef7d17b0e57dcafd476ea8857f0c3/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/67af94f2a72887ad8c7177834730a542/contour_label_demo.ipynb b/_downloads/67af94f2a72887ad8c7177834730a542/contour_label_demo.ipynb deleted file mode 120000 index 5499a0c59d3..00000000000 --- a/_downloads/67af94f2a72887ad8c7177834730a542/contour_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/67af94f2a72887ad8c7177834730a542/contour_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/67b1fe1e53362edee32cf1003a0f66a5/common_date_problems.ipynb b/_downloads/67b1fe1e53362edee32cf1003a0f66a5/common_date_problems.ipynb deleted file mode 120000 index 3cb682b083f..00000000000 --- a/_downloads/67b1fe1e53362edee32cf1003a0f66a5/common_date_problems.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/67b1fe1e53362edee32cf1003a0f66a5/common_date_problems.ipynb \ No newline at end of file diff --git a/_downloads/67b39b6272ea8e5f84478bc3be8b8d20/whats_new_99_mplot3d.ipynb b/_downloads/67b39b6272ea8e5f84478bc3be8b8d20/whats_new_99_mplot3d.ipynb deleted file mode 120000 index f0893b23414..00000000000 --- a/_downloads/67b39b6272ea8e5f84478bc3be8b8d20/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/67b39b6272ea8e5f84478bc3be8b8d20/whats_new_99_mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/67c2a88941382a36da710d6353a8dfa0/scalarformatter.py b/_downloads/67c2a88941382a36da710d6353a8dfa0/scalarformatter.py deleted file mode 100644 index b17bc345e53..00000000000 --- a/_downloads/67c2a88941382a36da710d6353a8dfa0/scalarformatter.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -========================================= -Tick formatting using the ScalarFormatter -========================================= - -The example shows use of ScalarFormatter with different settings. - -Example 1 : Default - -Example 2 : With no Numerical Offset - -Example 3 : With Mathtext -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.ticker import ScalarFormatter - -############################################################################### -# Example 1 - -x = np.arange(0, 1, .01) -fig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6)) -fig.text(0.5, 0.975, 'The new formatter, default settings', - horizontalalignment='center', - verticalalignment='top') - -ax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5) -ax1.xaxis.set_major_formatter(ScalarFormatter()) -ax1.yaxis.set_major_formatter(ScalarFormatter()) - -ax2.plot(x * 1e5, x * 1e-4) -ax2.xaxis.set_major_formatter(ScalarFormatter()) -ax2.yaxis.set_major_formatter(ScalarFormatter()) - -ax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10) -ax3.xaxis.set_major_formatter(ScalarFormatter()) -ax3.yaxis.set_major_formatter(ScalarFormatter()) - -ax4.plot(-x * 1e5, -x * 1e-4) -ax4.xaxis.set_major_formatter(ScalarFormatter()) -ax4.yaxis.set_major_formatter(ScalarFormatter()) - -fig.subplots_adjust(wspace=0.7, hspace=0.6) - -############################################################################### -# Example 2 - -x = np.arange(0, 1, .01) -fig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6)) -fig.text(0.5, 0.975, 'The new formatter, no numerical offset', - horizontalalignment='center', - verticalalignment='top') - -ax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5) -ax1.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax1.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -ax2.plot(x * 1e5, x * 1e-4) -ax2.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax2.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -ax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10) -ax3.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax3.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -ax4.plot(-x * 1e5, -x * 1e-4) -ax4.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax4.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -fig.subplots_adjust(wspace=0.7, hspace=0.6) - -############################################################################### -# Example 3 - -x = np.arange(0, 1, .01) -fig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6)) -fig.text(0.5, 0.975, 'The new formatter, with mathtext', - horizontalalignment='center', - verticalalignment='top') - -ax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5) -ax1.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax1.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -ax2.plot(x * 1e5, x * 1e-4) -ax2.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax2.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -ax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10) -ax3.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax3.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -ax4.plot(-x * 1e5, -x * 1e-4) -ax4.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax4.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -fig.subplots_adjust(wspace=0.7, hspace=0.6) - -plt.show() diff --git a/_downloads/67c497619e946db1fd5aed08f29077ae/embedding_in_gtk3_sgskip.ipynb b/_downloads/67c497619e946db1fd5aed08f29077ae/embedding_in_gtk3_sgskip.ipynb deleted file mode 120000 index a724ba13023..00000000000 --- a/_downloads/67c497619e946db1fd5aed08f29077ae/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/67c497619e946db1fd5aed08f29077ae/embedding_in_gtk3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/67ca92e261fcc0e58862d2c4f8bf312f/log_test.py b/_downloads/67ca92e261fcc0e58862d2c4f8bf312f/log_test.py deleted file mode 120000 index bc4c682bc5d..00000000000 --- a/_downloads/67ca92e261fcc0e58862d2c4f8bf312f/log_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/67ca92e261fcc0e58862d2c4f8bf312f/log_test.py \ No newline at end of file diff --git a/_downloads/67cc2813cd818a54951d6d2e4f75e33e/auto_ticks.py b/_downloads/67cc2813cd818a54951d6d2e4f75e33e/auto_ticks.py deleted file mode 120000 index dc0ef3efb3c..00000000000 --- a/_downloads/67cc2813cd818a54951d6d2e4f75e33e/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/67cc2813cd818a54951d6d2e4f75e33e/auto_ticks.py \ No newline at end of file diff --git a/_downloads/67dccfe83855273fdbfaedb5347d2c9e/sankey_links.py b/_downloads/67dccfe83855273fdbfaedb5347d2c9e/sankey_links.py deleted file mode 120000 index 8d53d3a88e0..00000000000 --- a/_downloads/67dccfe83855273fdbfaedb5347d2c9e/sankey_links.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/67dccfe83855273fdbfaedb5347d2c9e/sankey_links.py \ No newline at end of file diff --git a/_downloads/67e123e39a11abf9c33d1a7a1b10bbd3/unicode_minus.ipynb b/_downloads/67e123e39a11abf9c33d1a7a1b10bbd3/unicode_minus.ipynb deleted file mode 120000 index e5e57083d5d..00000000000 --- a/_downloads/67e123e39a11abf9c33d1a7a1b10bbd3/unicode_minus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/67e123e39a11abf9c33d1a7a1b10bbd3/unicode_minus.ipynb \ No newline at end of file diff --git a/_downloads/67e83b43bde5b074fd13d1ebf1b6cb02/usetex_demo.py b/_downloads/67e83b43bde5b074fd13d1ebf1b6cb02/usetex_demo.py deleted file mode 120000 index 3eb8a49bfac..00000000000 --- a/_downloads/67e83b43bde5b074fd13d1ebf1b6cb02/usetex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/67e83b43bde5b074fd13d1ebf1b6cb02/usetex_demo.py \ No newline at end of file diff --git a/_downloads/67ec9b24f1a9e7ab2adda6a03dd73d64/axis_direction_demo_step04.ipynb b/_downloads/67ec9b24f1a9e7ab2adda6a03dd73d64/axis_direction_demo_step04.ipynb deleted file mode 120000 index 1e72abc00c9..00000000000 --- a/_downloads/67ec9b24f1a9e7ab2adda6a03dd73d64/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/67ec9b24f1a9e7ab2adda6a03dd73d64/axis_direction_demo_step04.ipynb \ No newline at end of file diff --git a/_downloads/67f47abbe171e56f56c68da3ac7da797/simple_axes_divider2.py b/_downloads/67f47abbe171e56f56c68da3ac7da797/simple_axes_divider2.py deleted file mode 120000 index 2e152b32edf..00000000000 --- a/_downloads/67f47abbe171e56f56c68da3ac7da797/simple_axes_divider2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/67f47abbe171e56f56c68da3ac7da797/simple_axes_divider2.py \ No newline at end of file diff --git a/_downloads/67f711faa98b9ca5b3db21c402491274/anchored_box02.py b/_downloads/67f711faa98b9ca5b3db21c402491274/anchored_box02.py deleted file mode 100644 index 59db0a4180a..00000000000 --- a/_downloads/67f711faa98b9ca5b3db21c402491274/anchored_box02.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -============== -Anchored Box02 -============== - -""" -from matplotlib.patches import Circle -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ada = AnchoredDrawingArea(40, 20, 0, 0, - loc='upper right', pad=0., frameon=False) -p1 = Circle((10, 10), 10) -ada.drawing_area.add_artist(p1) -p2 = Circle((30, 10), 5, fc="r") -ada.drawing_area.add_artist(p2) - -ax.add_artist(ada) - -plt.show() diff --git a/_downloads/6803737297e174b8664a0d8005b5f305/demo_axisline_style.ipynb b/_downloads/6803737297e174b8664a0d8005b5f305/demo_axisline_style.ipynb deleted file mode 100644 index a305d223b38..00000000000 --- a/_downloads/6803737297e174b8664a0d8005b5f305/demo_axisline_style.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis line styles\n\n\nThis example shows some configurations for axis style.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axisartist.axislines import SubplotZero\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = SubplotZero(fig, 111)\nfig.add_subplot(ax)\n\nfor direction in [\"xzero\", \"yzero\"]:\n # adds arrows at the ends of each axis\n ax.axis[direction].set_axisline_style(\"-|>\")\n\n # adds X and Y-axis from the origin\n ax.axis[direction].set_visible(True)\n\nfor direction in [\"left\", \"right\", \"bottom\", \"top\"]:\n # hides borders\n ax.axis[direction].set_visible(False)\n\nx = np.linspace(-0.5, 1., 100)\nax.plot(x, np.sin(x*np.pi))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/68055872e6d15e5474cfd809dc592110/colormap_normalizations_lognorm.py b/_downloads/68055872e6d15e5474cfd809dc592110/colormap_normalizations_lognorm.py deleted file mode 120000 index 414bf7b056b..00000000000 --- a/_downloads/68055872e6d15e5474cfd809dc592110/colormap_normalizations_lognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/68055872e6d15e5474cfd809dc592110/colormap_normalizations_lognorm.py \ No newline at end of file diff --git a/_downloads/6807d80669b3453440f9f12b945d84d0/2dcollections3d.py b/_downloads/6807d80669b3453440f9f12b945d84d0/2dcollections3d.py deleted file mode 120000 index 82b89ada18d..00000000000 --- a/_downloads/6807d80669b3453440f9f12b945d84d0/2dcollections3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6807d80669b3453440f9f12b945d84d0/2dcollections3d.py \ No newline at end of file diff --git a/_downloads/680e7d40c8cf7946a7750c1a82754a1b/voxels_numpy_logo.py b/_downloads/680e7d40c8cf7946a7750c1a82754a1b/voxels_numpy_logo.py deleted file mode 120000 index 1b1032c3831..00000000000 --- a/_downloads/680e7d40c8cf7946a7750c1a82754a1b/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/680e7d40c8cf7946a7750c1a82754a1b/voxels_numpy_logo.py \ No newline at end of file diff --git a/_downloads/681a163a60aa72108c380bdb31cab29e/colormap-manipulation.ipynb b/_downloads/681a163a60aa72108c380bdb31cab29e/colormap-manipulation.ipynb deleted file mode 120000 index 6ea235615d0..00000000000 --- a/_downloads/681a163a60aa72108c380bdb31cab29e/colormap-manipulation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/681a163a60aa72108c380bdb31cab29e/colormap-manipulation.ipynb \ No newline at end of file diff --git a/_downloads/68343625e93e790e163d50f3115b8d66/tricontour_smooth_delaunay.py b/_downloads/68343625e93e790e163d50f3115b8d66/tricontour_smooth_delaunay.py deleted file mode 120000 index 5494dc6968f..00000000000 --- a/_downloads/68343625e93e790e163d50f3115b8d66/tricontour_smooth_delaunay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/68343625e93e790e163d50f3115b8d66/tricontour_smooth_delaunay.py \ No newline at end of file diff --git a/_downloads/683830699f780ace2a1b5aafeb2af805/color_cycler.py b/_downloads/683830699f780ace2a1b5aafeb2af805/color_cycler.py deleted file mode 120000 index dee49226909..00000000000 --- a/_downloads/683830699f780ace2a1b5aafeb2af805/color_cycler.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/683830699f780ace2a1b5aafeb2af805/color_cycler.py \ No newline at end of file diff --git a/_downloads/6852b273b14e7a3ec356dacb9e54505f/fig_axes_customize_simple.py b/_downloads/6852b273b14e7a3ec356dacb9e54505f/fig_axes_customize_simple.py deleted file mode 120000 index 1a0376784ba..00000000000 --- a/_downloads/6852b273b14e7a3ec356dacb9e54505f/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6852b273b14e7a3ec356dacb9e54505f/fig_axes_customize_simple.py \ No newline at end of file diff --git a/_downloads/6864b090e7a8070dd76f70878e801bb0/demo_ticklabel_alignment.ipynb b/_downloads/6864b090e7a8070dd76f70878e801bb0/demo_ticklabel_alignment.ipynb deleted file mode 120000 index 9cfc315ac10..00000000000 --- a/_downloads/6864b090e7a8070dd76f70878e801bb0/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6864b090e7a8070dd76f70878e801bb0/demo_ticklabel_alignment.ipynb \ No newline at end of file diff --git a/_downloads/6864c692b37e2cb068cfdea4555cb213/axisartist.ipynb b/_downloads/6864c692b37e2cb068cfdea4555cb213/axisartist.ipynb deleted file mode 120000 index 8f4d2d1a176..00000000000 --- a/_downloads/6864c692b37e2cb068cfdea4555cb213/axisartist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6864c692b37e2cb068cfdea4555cb213/axisartist.ipynb \ No newline at end of file diff --git a/_downloads/68782730e51de44d2fae945e9e89a387/advanced_hillshading.py b/_downloads/68782730e51de44d2fae945e9e89a387/advanced_hillshading.py deleted file mode 120000 index a892c22c7cb..00000000000 --- a/_downloads/68782730e51de44d2fae945e9e89a387/advanced_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/68782730e51de44d2fae945e9e89a387/advanced_hillshading.py \ No newline at end of file diff --git a/_downloads/6879f79551c06bbb66e73dbc9d1a8b28/ganged_plots.ipynb b/_downloads/6879f79551c06bbb66e73dbc9d1a8b28/ganged_plots.ipynb deleted file mode 120000 index 487c3ef3748..00000000000 --- a/_downloads/6879f79551c06bbb66e73dbc9d1a8b28/ganged_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6879f79551c06bbb66e73dbc9d1a8b28/ganged_plots.ipynb \ No newline at end of file diff --git a/_downloads/687baae391c45e55148f3ee99bdab218/histogram_features.ipynb b/_downloads/687baae391c45e55148f3ee99bdab218/histogram_features.ipynb deleted file mode 120000 index e68c3316690..00000000000 --- a/_downloads/687baae391c45e55148f3ee99bdab218/histogram_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/687baae391c45e55148f3ee99bdab218/histogram_features.ipynb \ No newline at end of file diff --git a/_downloads/687ff09e1ba8fccdeaec2abf499430e4/contour3d_2.ipynb b/_downloads/687ff09e1ba8fccdeaec2abf499430e4/contour3d_2.ipynb deleted file mode 100644 index 4f57143f264..00000000000 --- a/_downloads/687ff09e1ba8fccdeaec2abf499430e4/contour3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n============================================================================\nDemonstrates plotting contour (level) curves in 3D using the extend3d option\n============================================================================\n\nThis modification of the contour3d_demo example uses extend3d=True to\nextend the curves vertically into 'ribbons'.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\ncset = ax.contour(X, Y, Z, extend3d=True, cmap=cm.coolwarm)\n\nax.clabel(cset, fontsize=9, inline=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/68853e48304fcb06f0c59e2e07289e36/tick-locators.py b/_downloads/68853e48304fcb06f0c59e2e07289e36/tick-locators.py deleted file mode 120000 index 8ce5049745c..00000000000 --- a/_downloads/68853e48304fcb06f0c59e2e07289e36/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/68853e48304fcb06f0c59e2e07289e36/tick-locators.py \ No newline at end of file diff --git a/_downloads/68874eb4ec46cf87be2b4062e65c9644/simple_legend01.ipynb b/_downloads/68874eb4ec46cf87be2b4062e65c9644/simple_legend01.ipynb deleted file mode 120000 index a0806402b94..00000000000 --- a/_downloads/68874eb4ec46cf87be2b4062e65c9644/simple_legend01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/68874eb4ec46cf87be2b4062e65c9644/simple_legend01.ipynb \ No newline at end of file diff --git a/_downloads/688d41cfed27fa1ec5910117cf944c15/mpl_with_glade3_sgskip.ipynb b/_downloads/688d41cfed27fa1ec5910117cf944c15/mpl_with_glade3_sgskip.ipynb deleted file mode 100644 index 7ffa91d7053..00000000000 --- a/_downloads/688d41cfed27fa1ec5910117cf944c15/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Matplotlib With Glade 3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\n\nimport gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\nfrom matplotlib.figure import Figure\nfrom matplotlib.backends.backend_gtk3agg import (\n FigureCanvasGTK3Agg as FigureCanvas)\nimport numpy as np\n\n\nclass Window1Signals(object):\n def on_window1_destroy(self, widget):\n Gtk.main_quit()\n\n\ndef main():\n builder = Gtk.Builder()\n builder.add_objects_from_file(os.path.join(os.path.dirname(__file__),\n \"mpl_with_glade3.glade\"),\n (\"window1\", \"\"))\n builder.connect_signals(Window1Signals())\n window = builder.get_object(\"window1\")\n sw = builder.get_object(\"scrolledwindow1\")\n\n # Start of Matplotlib specific code\n figure = Figure(figsize=(8, 6), dpi=71)\n axis = figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2*np.pi*t)\n axis.plot(t, s)\n\n axis.set_xlabel('time [s]')\n axis.set_ylabel('voltage [V]')\n\n canvas = FigureCanvas(figure) # a Gtk.DrawingArea\n canvas.set_size_request(800, 600)\n sw.add_with_viewport(canvas)\n # End of Matplotlib specific code\n\n window.show_all()\n Gtk.main()\n\nif __name__ == \"__main__\":\n main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/689709b177063556bd9e054af3f4e1e1/path_patch.py b/_downloads/689709b177063556bd9e054af3f4e1e1/path_patch.py deleted file mode 120000 index ac9238c2e6c..00000000000 --- a/_downloads/689709b177063556bd9e054af3f4e1e1/path_patch.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/689709b177063556bd9e054af3f4e1e1/path_patch.py \ No newline at end of file diff --git a/_downloads/689bb87903494de8e6cf968f23517728/hatch_demo.py b/_downloads/689bb87903494de8e6cf968f23517728/hatch_demo.py deleted file mode 100644 index 66ea648f60d..00000000000 --- a/_downloads/689bb87903494de8e6cf968f23517728/hatch_demo.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -========== -Hatch Demo -========== - -Hatching (pattern filled polygons) is supported currently in the PS, -PDF, SVG and Agg backends only. -""" -import matplotlib.pyplot as plt -from matplotlib.patches import Ellipse, Polygon - -fig, (ax1, ax2, ax3) = plt.subplots(3) - -ax1.bar(range(1, 5), range(1, 5), color='red', edgecolor='black', hatch="/") -ax1.bar(range(1, 5), [6] * 4, bottom=range(1, 5), - color='blue', edgecolor='black', hatch='//') -ax1.set_xticks([1.5, 2.5, 3.5, 4.5]) - -bars = ax2.bar(range(1, 5), range(1, 5), color='yellow', ecolor='black') + \ - ax2.bar(range(1, 5), [6] * 4, bottom=range(1, 5), - color='green', ecolor='black') -ax2.set_xticks([1.5, 2.5, 3.5, 4.5]) - -patterns = ('-', '+', 'x', '\\', '*', 'o', 'O', '.') -for bar, pattern in zip(bars, patterns): - bar.set_hatch(pattern) - -ax3.fill([1, 3, 3, 1], [1, 1, 2, 2], fill=False, hatch='\\') -ax3.add_patch(Ellipse((4, 1.5), 4, 0.5, fill=False, hatch='*')) -ax3.add_patch(Polygon([[0, 0], [4, 1.1], [6, 2.5], [2, 1.4]], closed=True, - fill=False, hatch='/')) -ax3.set_xlim((0, 6)) -ax3.set_ylim((0, 2.5)) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.Ellipse -matplotlib.patches.Polygon -matplotlib.axes.Axes.add_patch -matplotlib.patches.Patch.set_hatch -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar diff --git a/_downloads/68a15c543d15ea66011766a7bccaf36e/hinton_demo.ipynb b/_downloads/68a15c543d15ea66011766a7bccaf36e/hinton_demo.ipynb deleted file mode 100644 index 9dc894d44b6..00000000000 --- a/_downloads/68a15c543d15ea66011766a7bccaf36e/hinton_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hinton diagrams\n\n\nHinton diagrams are useful for visualizing the values of a 2D array (e.g.\na weight matrix): Positive and negative values are represented by white and\nblack squares, respectively, and the size of each square represents the\nmagnitude of each value.\n\nInitial idea from David Warde-Farley on the SciPy Cookbook\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef hinton(matrix, max_weight=None, ax=None):\n \"\"\"Draw Hinton diagram for visualizing a weight matrix.\"\"\"\n ax = ax if ax is not None else plt.gca()\n\n if not max_weight:\n max_weight = 2 ** np.ceil(np.log(np.abs(matrix).max()) / np.log(2))\n\n ax.patch.set_facecolor('gray')\n ax.set_aspect('equal', 'box')\n ax.xaxis.set_major_locator(plt.NullLocator())\n ax.yaxis.set_major_locator(plt.NullLocator())\n\n for (x, y), w in np.ndenumerate(matrix):\n color = 'white' if w > 0 else 'black'\n size = np.sqrt(np.abs(w) / max_weight)\n rect = plt.Rectangle([x - size / 2, y - size / 2], size, size,\n facecolor=color, edgecolor=color)\n ax.add_patch(rect)\n\n ax.autoscale_view()\n ax.invert_yaxis()\n\n\nif __name__ == '__main__':\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n\n hinton(np.random.rand(20, 20) - 0.5)\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/68a2d7b7dad5caff75349033d7a6f302/scatter3d.ipynb b/_downloads/68a2d7b7dad5caff75349033d7a6f302/scatter3d.ipynb deleted file mode 120000 index f037c25e964..00000000000 --- a/_downloads/68a2d7b7dad5caff75349033d7a6f302/scatter3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/68a2d7b7dad5caff75349033d7a6f302/scatter3d.ipynb \ No newline at end of file diff --git a/_downloads/68a4b2dbac0235d0eb62c070990bd582/eventplot.py b/_downloads/68a4b2dbac0235d0eb62c070990bd582/eventplot.py deleted file mode 120000 index 6d7e1a57e13..00000000000 --- a/_downloads/68a4b2dbac0235d0eb62c070990bd582/eventplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/68a4b2dbac0235d0eb62c070990bd582/eventplot.py \ No newline at end of file diff --git a/_downloads/68a5283fe87ca0970437bffeab79056d/tricontour3d.ipynb b/_downloads/68a5283fe87ca0970437bffeab79056d/tricontour3d.ipynb deleted file mode 120000 index 0d1624bafeb..00000000000 --- a/_downloads/68a5283fe87ca0970437bffeab79056d/tricontour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/68a5283fe87ca0970437bffeab79056d/tricontour3d.ipynb \ No newline at end of file diff --git a/_downloads/68a59ec0502f726554e474bb67ba9e02/offset.py b/_downloads/68a59ec0502f726554e474bb67ba9e02/offset.py deleted file mode 100644 index 04c56ed2066..00000000000 --- a/_downloads/68a59ec0502f726554e474bb67ba9e02/offset.py +++ /dev/null @@ -1,36 +0,0 @@ -''' -========================= -Automatic Text Offsetting -========================= - -This example demonstrates mplot3d's offset text display. -As one rotates the 3D figure, the offsets should remain oriented the -same way as the axis label, and should also be located "away" -from the center of the plot. - -This demo triggers the display of the offset text for the x and -y axis by adding 1e5 to X and Y. Anything less would not -automatically trigger it. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -X, Y = np.mgrid[0:6*np.pi:0.25, 0:4*np.pi:0.25] -Z = np.sqrt(np.abs(np.cos(X) + np.cos(Y))) - -ax.plot_surface(X + 1e5, Y + 1e5, Z, cmap='autumn', cstride=2, rstride=2) - -ax.set_xlabel("X label") -ax.set_ylabel("Y label") -ax.set_zlabel("Z label") -ax.set_zlim(0, 2) - -plt.show() diff --git a/_downloads/68b0ba9df2838b3c7f9f51b7d2af4d03/tricontourf3d.ipynb b/_downloads/68b0ba9df2838b3c7f9f51b7d2af4d03/tricontourf3d.ipynb deleted file mode 120000 index cc59b60ef4a..00000000000 --- a/_downloads/68b0ba9df2838b3c7f9f51b7d2af4d03/tricontourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/68b0ba9df2838b3c7f9f51b7d2af4d03/tricontourf3d.ipynb \ No newline at end of file diff --git a/_downloads/68b4480ec0593676c90a1d0af5c96105/multicolored_line.ipynb b/_downloads/68b4480ec0593676c90a1d0af5c96105/multicolored_line.ipynb deleted file mode 120000 index a07d18206ac..00000000000 --- a/_downloads/68b4480ec0593676c90a1d0af5c96105/multicolored_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/68b4480ec0593676c90a1d0af5c96105/multicolored_line.ipynb \ No newline at end of file diff --git a/_downloads/68b8972bf7d916fd2a888ca4353a53b8/timeline.py b/_downloads/68b8972bf7d916fd2a888ca4353a53b8/timeline.py deleted file mode 100644 index 3ef964defe4..00000000000 --- a/_downloads/68b8972bf7d916fd2a888ca4353a53b8/timeline.py +++ /dev/null @@ -1,119 +0,0 @@ -""" -=============================================== -Creating a timeline with lines, dates, and text -=============================================== - -How to create a simple timeline using Matplotlib release dates. - -Timelines can be created with a collection of dates and text. In this example, -we show how to create a simple timeline using the dates for recent releases -of Matplotlib. First, we'll pull the data from GitHub. -""" - -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.dates as mdates -from datetime import datetime - -try: - # Try to fetch a list of Matplotlib releases and their dates - # from https://api.github.com/repos/matplotlib/matplotlib/releases - import urllib.request - import json - - url = 'https://api.github.com/repos/matplotlib/matplotlib/releases' - url += '?per_page=100' - data = json.loads(urllib.request.urlopen(url, timeout=.4).read().decode()) - - dates = [] - names = [] - for item in data: - if 'rc' not in item['tag_name'] and 'b' not in item['tag_name']: - dates.append(item['published_at'].split("T")[0]) - names.append(item['tag_name']) - # Convert date strings (e.g. 2014-10-18) to datetime - dates = [datetime.strptime(d, "%Y-%m-%d") for d in dates] - -except Exception: - # In case the above fails, e.g. because of missing internet connection - # use the following lists as fallback. - names = ['v2.2.4', 'v3.0.3', 'v3.0.2', 'v3.0.1', 'v3.0.0', 'v2.2.3', - 'v2.2.2', 'v2.2.1', 'v2.2.0', 'v2.1.2', 'v2.1.1', 'v2.1.0', - 'v2.0.2', 'v2.0.1', 'v2.0.0', 'v1.5.3', 'v1.5.2', 'v1.5.1', - 'v1.5.0', 'v1.4.3', 'v1.4.2', 'v1.4.1', 'v1.4.0'] - - dates = ['2019-02-26', '2019-02-26', '2018-11-10', '2018-11-10', - '2018-09-18', '2018-08-10', '2018-03-17', '2018-03-16', - '2018-03-06', '2018-01-18', '2017-12-10', '2017-10-07', - '2017-05-10', '2017-05-02', '2017-01-17', '2016-09-09', - '2016-07-03', '2016-01-10', '2015-10-29', '2015-02-16', - '2014-10-26', '2014-10-18', '2014-08-26'] - - # Convert date strings (e.g. 2014-10-18) to datetime - dates = [datetime.strptime(d, "%Y-%m-%d") for d in dates] - -############################################################################## -# Next, we'll create a `~.Axes.stem` plot with some variation in levels as to -# distinguish even close-by events. In contrast to a usual stem plot, we will -# shift the markers to the baseline for visual emphasis on the one-dimensional -# nature of the time line. -# For each event, we add a text label via `~.Axes.annotate`, which is offset -# in units of points from the tip of the event line. -# -# Note that Matplotlib will automatically plot datetime inputs. - - -# Choose some nice levels -levels = np.tile([-5, 5, -3, 3, -1, 1], - int(np.ceil(len(dates)/6)))[:len(dates)] - -# Create figure and plot a stem plot with the date -fig, ax = plt.subplots(figsize=(8.8, 4), constrained_layout=True) -ax.set(title="Matplotlib release dates") - -markerline, stemline, baseline = ax.stem(dates, levels, - linefmt="C3-", basefmt="k-", - use_line_collection=True) - -plt.setp(markerline, mec="k", mfc="w", zorder=3) - -# Shift the markers to the baseline by replacing the y-data by zeros. -markerline.set_ydata(np.zeros(len(dates))) - -# annotate lines -vert = np.array(['top', 'bottom'])[(levels > 0).astype(int)] -for d, l, r, va in zip(dates, levels, names, vert): - ax.annotate(r, xy=(d, l), xytext=(-3, np.sign(l)*3), - textcoords="offset points", va=va, ha="right") - -# format xaxis with 4 month intervals -ax.get_xaxis().set_major_locator(mdates.MonthLocator(interval=4)) -ax.get_xaxis().set_major_formatter(mdates.DateFormatter("%b %Y")) -plt.setp(ax.get_xticklabels(), rotation=30, ha="right") - -# remove y axis and spines -ax.get_yaxis().set_visible(False) -for spine in ["left", "top", "right"]: - ax.spines[spine].set_visible(False) - -ax.margins(y=0.1) -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.stem -matplotlib.axes.Axes.annotate -matplotlib.axis.Axis.set_major_locator -matplotlib.axis.Axis.set_major_formatter -matplotlib.dates.MonthLocator -matplotlib.dates.DateFormatter diff --git a/_downloads/68bbb0f4ccd569a7ed9e38ce12e5ca8e/contour.ipynb b/_downloads/68bbb0f4ccd569a7ed9e38ce12e5ca8e/contour.ipynb deleted file mode 100644 index 4dcb968a9c2..00000000000 --- a/_downloads/68bbb0f4ccd569a7ed9e38ce12e5ca8e/contour.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage contour example\n\n\nThis example reproduces the frontpage contour example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import cm\n\nextent = (-3, 3, -3, 3)\n\ndelta = 0.5\nx = np.arange(-3.0, 4.001, delta)\ny = np.arange(-4.0, 3.001, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = Z1 - Z2\n\nnorm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max())\n\nfig, ax = plt.subplots()\ncset1 = ax.contourf(\n X, Y, Z, 40,\n norm=norm)\nax.set_xlim(-2, 2)\nax.set_ylim(-2, 2)\nax.set_xticks([])\nax.set_yticks([])\nfig.savefig(\"contour_frontpage.png\", dpi=25) # results in 160x120 px image\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/68bbc9f74218a66c52588c6356408551/demo_imagegrid_aspect.ipynb b/_downloads/68bbc9f74218a66c52588c6356408551/demo_imagegrid_aspect.ipynb deleted file mode 100644 index 9363828b9ad..00000000000 --- a/_downloads/68bbc9f74218a66c52588c6356408551/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Imagegrid Aspect\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1 import ImageGrid\nfig = plt.figure()\n\ngrid1 = ImageGrid(fig, 121, (2, 2), axes_pad=0.1,\n aspect=True, share_all=True)\n\nfor i in [0, 1]:\n grid1[i].set_aspect(2)\n\n\ngrid2 = ImageGrid(fig, 122, (2, 2), axes_pad=0.1,\n aspect=True, share_all=True)\n\n\nfor i in [1, 3]:\n grid2[i].set_aspect(2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/68bc26e1d0be28c5a2b35eebdbf01a24/gridspec_and_subplots.py b/_downloads/68bc26e1d0be28c5a2b35eebdbf01a24/gridspec_and_subplots.py deleted file mode 100644 index fbb7ebd013a..00000000000 --- a/_downloads/68bc26e1d0be28c5a2b35eebdbf01a24/gridspec_and_subplots.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -================================================== -Combining two subplots using subplots and GridSpec -================================================== - -Sometimes we want to combine two subplots in an axes layout created with -`~.Figure.subplots`. We can get the `~.gridspec.GridSpec` from the axes -and then remove the covered axes and fill the gap with a new bigger axes. -Here we create a layout with the bottom two axes in the last column combined. - -See also :doc:`/tutorials/intermediate/gridspec`. -""" - -import matplotlib.pyplot as plt - -fig, axs = plt.subplots(ncols=3, nrows=3) -gs = axs[1, 2].get_gridspec() -# remove the underlying axes -for ax in axs[1:, -1]: - ax.remove() -axbig = fig.add_subplot(gs[1:, -1]) -axbig.annotate('Big Axes \nGridSpec[1:, -1]', (0.1, 0.5), - xycoords='axes fraction', va='center') - -fig.tight_layout() - -plt.show() diff --git a/_downloads/68c61f363da0a10569b2989c1375cc45/matshow.ipynb b/_downloads/68c61f363da0a10569b2989c1375cc45/matshow.ipynb deleted file mode 120000 index e9b7aeb2d09..00000000000 --- a/_downloads/68c61f363da0a10569b2989c1375cc45/matshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/68c61f363da0a10569b2989c1375cc45/matshow.ipynb \ No newline at end of file diff --git a/_downloads/68c95e07ab61a26521daa7870bba11fe/slider_snap_demo.py b/_downloads/68c95e07ab61a26521daa7870bba11fe/slider_snap_demo.py deleted file mode 120000 index 22b6a810d57..00000000000 --- a/_downloads/68c95e07ab61a26521daa7870bba11fe/slider_snap_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/68c95e07ab61a26521daa7870bba11fe/slider_snap_demo.py \ No newline at end of file diff --git a/_downloads/68cc3a746d5717d16eb85cd85eb1dfa1/imshow_extent.py b/_downloads/68cc3a746d5717d16eb85cd85eb1dfa1/imshow_extent.py deleted file mode 120000 index f2b7653a1eb..00000000000 --- a/_downloads/68cc3a746d5717d16eb85cd85eb1dfa1/imshow_extent.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/68cc3a746d5717d16eb85cd85eb1dfa1/imshow_extent.py \ No newline at end of file diff --git a/_downloads/68ce2b4e2d3c01b246c82e4c91017f2c/zoom_window.py b/_downloads/68ce2b4e2d3c01b246c82e4c91017f2c/zoom_window.py deleted file mode 120000 index f6078a5a7d6..00000000000 --- a/_downloads/68ce2b4e2d3c01b246c82e4c91017f2c/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/68ce2b4e2d3c01b246c82e4c91017f2c/zoom_window.py \ No newline at end of file diff --git a/_downloads/68d80e3d1e3f3561a71b3e5c8efae907/scatter_masked.py b/_downloads/68d80e3d1e3f3561a71b3e5c8efae907/scatter_masked.py deleted file mode 120000 index 77bc752e5c6..00000000000 --- a/_downloads/68d80e3d1e3f3561a71b3e5c8efae907/scatter_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/68d80e3d1e3f3561a71b3e5c8efae907/scatter_masked.py \ No newline at end of file diff --git a/_downloads/68ec7e15c3b6281c7eaf4c5b2aa1b7d6/invert_axes.ipynb b/_downloads/68ec7e15c3b6281c7eaf4c5b2aa1b7d6/invert_axes.ipynb deleted file mode 100644 index 999e2fa8891..00000000000 --- a/_downloads/68ec7e15c3b6281c7eaf4c5b2aa1b7d6/invert_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Invert Axes\n\n\nYou can use decreasing axes by flipping the normal order of the axis\nlimits\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.01, 5.0, 0.01)\ns = np.exp(-t)\nplt.plot(t, s)\n\nplt.xlim(5, 0) # decreasing time\n\nplt.xlabel('decreasing time (s)')\nplt.ylabel('voltage (mV)')\nplt.title('Should be growing...')\nplt.grid(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/68f3c58db14f5aade71d2975e1abad6b/evans_test.ipynb b/_downloads/68f3c58db14f5aade71d2975e1abad6b/evans_test.ipynb deleted file mode 100644 index 5300fa967f9..00000000000 --- a/_downloads/68f3c58db14f5aade71d2975e1abad6b/evans_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Evans test\n\n\nA mockup \"Foo\" units class which supports conversion and different tick\nformatting depending on the \"unit\". Here the \"unit\" is just a scalar\nconversion factor, but this example shows that Matplotlib is entirely agnostic\nto what kind of units client packages use.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.units as units\nimport matplotlib.ticker as ticker\nimport matplotlib.pyplot as plt\n\n\nclass Foo(object):\n def __init__(self, val, unit=1.0):\n self.unit = unit\n self._val = val * unit\n\n def value(self, unit):\n if unit is None:\n unit = self.unit\n return self._val / unit\n\n\nclass FooConverter(units.ConversionInterface):\n @staticmethod\n def axisinfo(unit, axis):\n 'return the Foo AxisInfo'\n if unit == 1.0 or unit == 2.0:\n return units.AxisInfo(\n majloc=ticker.IndexLocator(8, 0),\n majfmt=ticker.FormatStrFormatter(\"VAL: %s\"),\n label='foo',\n )\n\n else:\n return None\n\n @staticmethod\n def convert(obj, unit, axis):\n \"\"\"\n convert obj using unit. If obj is a sequence, return the\n converted sequence\n \"\"\"\n if units.ConversionInterface.is_numlike(obj):\n return obj\n\n if np.iterable(obj):\n return [o.value(unit) for o in obj]\n else:\n return obj.value(unit)\n\n @staticmethod\n def default_units(x, axis):\n 'return the default unit for x or None'\n if np.iterable(x):\n for thisx in x:\n return thisx.unit\n else:\n return x.unit\n\n\nunits.registry[Foo] = FooConverter()\n\n# create some Foos\nx = []\nfor val in range(0, 50, 2):\n x.append(Foo(val, 1.0))\n\n# and some arbitrary y data\ny = [i for i in range(len(x))]\n\n\nfig, (ax1, ax2) = plt.subplots(1, 2)\nfig.suptitle(\"Custom units\")\nfig.subplots_adjust(bottom=0.2)\n\n# plot specifying units\nax2.plot(x, y, 'o', xunits=2.0)\nax2.set_title(\"xunits = 2.0\")\nplt.setp(ax2.get_xticklabels(), rotation=30, ha='right')\n\n# plot without specifying units; will use the None branch for axisinfo\nax1.plot(x, y) # uses default units\nax1.set_title('default units')\nplt.setp(ax1.get_xticklabels(), rotation=30, ha='right')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/68f45b195e60e39e787e86ab6195ccf6/agg_buffer_to_array.ipynb b/_downloads/68f45b195e60e39e787e86ab6195ccf6/agg_buffer_to_array.ipynb deleted file mode 120000 index c43cf178dea..00000000000 --- a/_downloads/68f45b195e60e39e787e86ab6195ccf6/agg_buffer_to_array.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/68f45b195e60e39e787e86ab6195ccf6/agg_buffer_to_array.ipynb \ No newline at end of file diff --git a/_downloads/690181673b98019b37194e0f987309b2/quiver_simple_demo.ipynb b/_downloads/690181673b98019b37194e0f987309b2/quiver_simple_demo.ipynb deleted file mode 120000 index 646ebe43d77..00000000000 --- a/_downloads/690181673b98019b37194e0f987309b2/quiver_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/690181673b98019b37194e0f987309b2/quiver_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/6905a926bd4ab2febebd7318b4dcda1e/whats_new_98_4_fancy.ipynb b/_downloads/6905a926bd4ab2febebd7318b4dcda1e/whats_new_98_4_fancy.ipynb deleted file mode 120000 index 1a0126132c4..00000000000 --- a/_downloads/6905a926bd4ab2febebd7318b4dcda1e/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6905a926bd4ab2febebd7318b4dcda1e/whats_new_98_4_fancy.ipynb \ No newline at end of file diff --git a/_downloads/691a80253e42e8ca84fe26961b1ee684/boxplot_demo.ipynb b/_downloads/691a80253e42e8ca84fe26961b1ee684/boxplot_demo.ipynb deleted file mode 120000 index a025c0d168f..00000000000 --- a/_downloads/691a80253e42e8ca84fe26961b1ee684/boxplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/691a80253e42e8ca84fe26961b1ee684/boxplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/691b0e1a0c31f190bdb145088946725c/canvasagg.py b/_downloads/691b0e1a0c31f190bdb145088946725c/canvasagg.py deleted file mode 120000 index 186547fae4b..00000000000 --- a/_downloads/691b0e1a0c31f190bdb145088946725c/canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/691b0e1a0c31f190bdb145088946725c/canvasagg.py \ No newline at end of file diff --git a/_downloads/692f0f3cb8e0c44bbc848cb5d087ffa6/whats_new_99_axes_grid.py b/_downloads/692f0f3cb8e0c44bbc848cb5d087ffa6/whats_new_99_axes_grid.py deleted file mode 120000 index 0c9e7376084..00000000000 --- a/_downloads/692f0f3cb8e0c44bbc848cb5d087ffa6/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/692f0f3cb8e0c44bbc848cb5d087ffa6/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/_downloads/6938c5e4b67c7ed555beda69c9809287/boxplot_vs_violin.ipynb b/_downloads/6938c5e4b67c7ed555beda69c9809287/boxplot_vs_violin.ipynb deleted file mode 100644 index 65cd3a0de17..00000000000 --- a/_downloads/6938c5e4b67c7ed555beda69c9809287/boxplot_vs_violin.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===================================\nBox plot vs. violin plot comparison\n===================================\n\nNote that although violin plots are closely related to Tukey's (1977)\nbox plots, they add useful information such as the distribution of the\nsample data (density trace).\n\nBy default, box plots show data points outside 1.5 * the inter-quartile\nrange as outliers above or below the whiskers whereas violin plots show\nthe whole range of the data.\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n\nViolin plots require matplotlib >= 1.4.\n\nFor more information on violin plots, the scikit-learn docs have a great\nsection: http://scikit-learn.org/stable/modules/density.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4))\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# generate some random test data\nall_data = [np.random.normal(0, std, 100) for std in range(6, 10)]\n\n# plot violin plot\naxes[0].violinplot(all_data,\n showmeans=False,\n showmedians=True)\naxes[0].set_title('Violin plot')\n\n# plot box plot\naxes[1].boxplot(all_data)\naxes[1].set_title('Box plot')\n\n# adding horizontal grid lines\nfor ax in axes:\n ax.yaxis.grid(True)\n ax.set_xticks([y + 1 for y in range(len(all_data))])\n ax.set_xlabel('Four separate samples')\n ax.set_ylabel('Observed values')\n\n# add x-tick labels\nplt.setp(axes, xticks=[y + 1 for y in range(len(all_data))],\n xticklabels=['x1', 'x2', 'x3', 'x4'])\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/69487c33c020f2cde58af82b2bc7f6d8/polygon_selector_demo.ipynb b/_downloads/69487c33c020f2cde58af82b2bc7f6d8/polygon_selector_demo.ipynb deleted file mode 120000 index 3d54dea8919..00000000000 --- a/_downloads/69487c33c020f2cde58af82b2bc7f6d8/polygon_selector_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/69487c33c020f2cde58af82b2bc7f6d8/polygon_selector_demo.ipynb \ No newline at end of file diff --git a/_downloads/694aeb6d2dae1a84a88badad601316ed/demo_gridspec06.ipynb b/_downloads/694aeb6d2dae1a84a88badad601316ed/demo_gridspec06.ipynb deleted file mode 100644 index 45a6e6c99c2..00000000000 --- a/_downloads/694aeb6d2dae1a84a88badad601316ed/demo_gridspec06.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nested GridSpecs\n\n\nThis example demonstrates the use of nested `GridSpec`\\s.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\nimport numpy as np\nfrom itertools import product\n\n\ndef squiggle_xy(a, b, c, d):\n i = np.arange(0.0, 2*np.pi, 0.05)\n return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d)\n\n\nfig = plt.figure(figsize=(8, 8))\n\n# gridspec inside gridspec\nouter_grid = gridspec.GridSpec(4, 4, wspace=0.0, hspace=0.0)\n\nfor i in range(16):\n inner_grid = gridspec.GridSpecFromSubplotSpec(3, 3,\n subplot_spec=outer_grid[i], wspace=0.0, hspace=0.0)\n a = i // 4 + 1\n b = i % 4 + 1\n for j, (c, d) in enumerate(product(range(1, 4), repeat=2)):\n ax = fig.add_subplot(inner_grid[j])\n ax.plot(*squiggle_xy(a, b, c, d))\n ax.set_xticks([])\n ax.set_yticks([])\n fig.add_subplot(ax)\n\nall_axes = fig.get_axes()\n\n# show only the outside spines\nfor ax in all_axes:\n for sp in ax.spines.values():\n sp.set_visible(False)\n if ax.is_first_row():\n ax.spines['top'].set_visible(True)\n if ax.is_last_row():\n ax.spines['bottom'].set_visible(True)\n if ax.is_first_col():\n ax.spines['left'].set_visible(True)\n if ax.is_last_col():\n ax.spines['right'].set_visible(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/694d7eb3059df307b87bafe91728a28c/pyplot_three.py b/_downloads/694d7eb3059df307b87bafe91728a28c/pyplot_three.py deleted file mode 120000 index ee3d45d4110..00000000000 --- a/_downloads/694d7eb3059df307b87bafe91728a28c/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/694d7eb3059df307b87bafe91728a28c/pyplot_three.py \ No newline at end of file diff --git a/_downloads/6964708ca011ec8c97d59c0496b2a2f4/demo_parasite_axes.ipynb b/_downloads/6964708ca011ec8c97d59c0496b2a2f4/demo_parasite_axes.ipynb deleted file mode 120000 index 18622dba94d..00000000000 --- a/_downloads/6964708ca011ec8c97d59c0496b2a2f4/demo_parasite_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6964708ca011ec8c97d59c0496b2a2f4/demo_parasite_axes.ipynb \ No newline at end of file diff --git a/_downloads/696569ba53f73d1a2582e10b325ef3ba/demo_text_rotation_mode.ipynb b/_downloads/696569ba53f73d1a2582e10b325ef3ba/demo_text_rotation_mode.ipynb deleted file mode 120000 index 2201f9fcec0..00000000000 --- a/_downloads/696569ba53f73d1a2582e10b325ef3ba/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/696569ba53f73d1a2582e10b325ef3ba/demo_text_rotation_mode.ipynb \ No newline at end of file diff --git a/_downloads/6986f768577230d1be15895dec932ed1/demo_axes_hbox_divider.py b/_downloads/6986f768577230d1be15895dec932ed1/demo_axes_hbox_divider.py deleted file mode 100644 index 31dbfe4f1d9..00000000000 --- a/_downloads/6986f768577230d1be15895dec932ed1/demo_axes_hbox_divider.py +++ /dev/null @@ -1,56 +0,0 @@ -""" -====================== -Demo Axes Hbox Divider -====================== - -Hbox Divider to arrange subplots. -""" -import numpy as np -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_divider import HBoxDivider -import mpl_toolkits.axes_grid1.axes_size as Size - - -def make_heights_equal(fig, rect, ax1, ax2, pad): - # pad in inches - - h1, v1 = Size.AxesX(ax1), Size.AxesY(ax1) - h2, v2 = Size.AxesX(ax2), Size.AxesY(ax2) - - pad_v = Size.Scaled(1) - pad_h = Size.Fixed(pad) - - my_divider = HBoxDivider(fig, rect, - horizontal=[h1, pad_h, h2], - vertical=[v1, pad_v, v2]) - - ax1.set_axes_locator(my_divider.new_locator(0)) - ax2.set_axes_locator(my_divider.new_locator(2)) - - -if __name__ == "__main__": - - arr1 = np.arange(20).reshape((4, 5)) - arr2 = np.arange(20).reshape((5, 4)) - - fig, (ax1, ax2) = plt.subplots(1, 2) - ax1.imshow(arr1, interpolation="nearest") - ax2.imshow(arr2, interpolation="nearest") - - rect = 111 # subplot param for combined axes - make_heights_equal(fig, rect, ax1, ax2, pad=0.5) # pad in inches - - for ax in [ax1, ax2]: - ax.locator_params(nbins=4) - - # annotate - ax3 = plt.axes([0.5, 0.5, 0.001, 0.001], frameon=False) - ax3.xaxis.set_visible(False) - ax3.yaxis.set_visible(False) - ax3.annotate("Location of two axes are adjusted\n" - "so that they have equal heights\n" - "while maintaining their aspect ratios", (0.5, 0.5), - xycoords="axes fraction", va="center", ha="center", - bbox=dict(boxstyle="round, pad=1", fc="w")) - - plt.show() diff --git a/_downloads/6989ade00e7a8f65a6687d825416ba7c/contour3d.py b/_downloads/6989ade00e7a8f65a6687d825416ba7c/contour3d.py deleted file mode 120000 index d6cbfb9b956..00000000000 --- a/_downloads/6989ade00e7a8f65a6687d825416ba7c/contour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6989ade00e7a8f65a6687d825416ba7c/contour3d.py \ No newline at end of file diff --git a/_downloads/698f4db4386227f93f9e95f1d9f68f4a/axis_equal_demo.py b/_downloads/698f4db4386227f93f9e95f1d9f68f4a/axis_equal_demo.py deleted file mode 120000 index aac0f6cac0a..00000000000 --- a/_downloads/698f4db4386227f93f9e95f1d9f68f4a/axis_equal_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/698f4db4386227f93f9e95f1d9f68f4a/axis_equal_demo.py \ No newline at end of file diff --git a/_downloads/69a3be2ae38d659c0c039b21094249b4/polar_legend.ipynb b/_downloads/69a3be2ae38d659c0c039b21094249b4/polar_legend.ipynb deleted file mode 120000 index 3200a249a0d..00000000000 --- a/_downloads/69a3be2ae38d659c0c039b21094249b4/polar_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/69a3be2ae38d659c0c039b21094249b4/polar_legend.ipynb \ No newline at end of file diff --git a/_downloads/69acc8b9ce1af724427c3422182b1194/figure_size_units.py b/_downloads/69acc8b9ce1af724427c3422182b1194/figure_size_units.py deleted file mode 120000 index 600ce1661bf..00000000000 --- a/_downloads/69acc8b9ce1af724427c3422182b1194/figure_size_units.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/69acc8b9ce1af724427c3422182b1194/figure_size_units.py \ No newline at end of file diff --git a/_downloads/69b55380b6bc9095c61c298d880396f2/figure_title.ipynb b/_downloads/69b55380b6bc9095c61c298d880396f2/figure_title.ipynb deleted file mode 120000 index b322ae2bc46..00000000000 --- a/_downloads/69b55380b6bc9095c61c298d880396f2/figure_title.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/69b55380b6bc9095c61c298d880396f2/figure_title.ipynb \ No newline at end of file diff --git a/_downloads/69b82177c6d4402dfb3b856153a344cf/image_zcoord.ipynb b/_downloads/69b82177c6d4402dfb3b856153a344cf/image_zcoord.ipynb deleted file mode 100644 index 93d689cf8b9..00000000000 --- a/_downloads/69b82177c6d4402dfb3b856153a344cf/image_zcoord.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Modifying the coordinate formatter\n\n\nModify the coordinate formatter to report the image \"z\"\nvalue of the nearest pixel given x and y.\nThis functionality is built in by default, but it\nis still useful to show how to customize the\n`~.axes.Axes.format_coord` function.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nX = 10*np.random.rand(5, 3)\n\nfig, ax = plt.subplots()\nax.imshow(X, interpolation='nearest')\n\nnumrows, numcols = X.shape\n\n\ndef format_coord(x, y):\n col = int(x + 0.5)\n row = int(y + 0.5)\n if col >= 0 and col < numcols and row >= 0 and row < numrows:\n z = X[row, col]\n return 'x=%1.4f, y=%1.4f, z=%1.4f' % (x, y, z)\n else:\n return 'x=%1.4f, y=%1.4f' % (x, y)\n\nax.format_coord = format_coord\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.format_coord\nmatplotlib.axes.Axes.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/69bd5c52c438fb8e8bd0b2fa2bde369d/timers.py b/_downloads/69bd5c52c438fb8e8bd0b2fa2bde369d/timers.py deleted file mode 100644 index aba9393699d..00000000000 --- a/_downloads/69bd5c52c438fb8e8bd0b2fa2bde369d/timers.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -====== -Timers -====== - -Simple example of using general timer objects. This is used to update -the time placed in the title of the figure. -""" -import matplotlib.pyplot as plt -import numpy as np -from datetime import datetime - - -def update_title(axes): - axes.set_title(datetime.now()) - axes.figure.canvas.draw() - -fig, ax = plt.subplots() - -x = np.linspace(-3, 3) -ax.plot(x, x ** 2) - -# Create a new timer object. Set the interval to 100 milliseconds -# (1000 is default) and tell the timer what function should be called. -timer = fig.canvas.new_timer(interval=100) -timer.add_callback(update_title, ax) -timer.start() - -# Or could start the timer on first figure draw -#def start_timer(evt): -# timer.start() -# fig.canvas.mpl_disconnect(drawid) -#drawid = fig.canvas.mpl_connect('draw_event', start_timer) - -plt.show() diff --git a/_downloads/69c25c9b8576f9013c215dd44878f4be/bar_of_pie.ipynb b/_downloads/69c25c9b8576f9013c215dd44878f4be/bar_of_pie.ipynb deleted file mode 100644 index 4c975dad85b..00000000000 --- a/_downloads/69c25c9b8576f9013c215dd44878f4be/bar_of_pie.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bar of pie\n\n\nMake a \"bar of pie\" chart where the first slice of the pie is\n\"exploded\" into a bar chart with a further breakdown of said slice's\ncharacteristics. The example demonstrates using a figure with multiple\nsets of axes and using the axes patches list to add two ConnectionPatches\nto link the subplot charts.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import ConnectionPatch\nimport numpy as np\n\n# make figure and assign axis objects\nfig = plt.figure(figsize=(9, 5.0625))\nax1 = fig.add_subplot(121)\nax2 = fig.add_subplot(122)\nfig.subplots_adjust(wspace=0)\n\n# pie chart parameters\nratios = [.27, .56, .17]\nlabels = ['Approve', 'Disapprove', 'Undecided']\nexplode = [0.1, 0, 0]\n# rotate so that first wedge is split by the x-axis\nangle = -180 * ratios[0]\nax1.pie(ratios, autopct='%1.1f%%', startangle=angle,\n labels=labels, explode=explode)\n\n# bar chart parameters\n\nxpos = 0\nbottom = 0\nratios = [.33, .54, .07, .06]\nwidth = .2\ncolors = [[.1, .3, .5], [.1, .3, .3], [.1, .3, .7], [.1, .3, .9]]\n\nfor j in range(len(ratios)):\n height = ratios[j]\n ax2.bar(xpos, height, width, bottom=bottom, color=colors[j])\n ypos = bottom + ax2.patches[j].get_height() / 2\n bottom += height\n ax2.text(xpos, ypos, \"%d%%\" % (ax2.patches[j].get_height() * 100),\n ha='center')\n\nax2.set_title('Age of approvers')\nax2.legend(('50-65', 'Over 65', '35-49', 'Under 35'))\nax2.axis('off')\nax2.set_xlim(- 2.5 * width, 2.5 * width)\n\n# use ConnectionPatch to draw lines between the two plots\n# get the wedge data\ntheta1, theta2 = ax1.patches[0].theta1, ax1.patches[0].theta2\ncenter, r = ax1.patches[0].center, ax1.patches[0].r\nbar_height = sum([item.get_height() for item in ax2.patches])\n\n# draw top connecting line\nx = r * np.cos(np.pi / 180 * theta2) + center[0]\ny = np.sin(np.pi / 180 * theta2) + center[1]\ncon = ConnectionPatch(xyA=(- width / 2, bar_height), xyB=(x, y),\n coordsA=\"data\", coordsB=\"data\", axesA=ax2, axesB=ax1)\ncon.set_color([0, 0, 0])\ncon.set_linewidth(4)\nax2.add_artist(con)\n\n# draw bottom connecting line\nx = r * np.cos(np.pi / 180 * theta1) + center[0]\ny = np.sin(np.pi / 180 * theta1) + center[1]\ncon = ConnectionPatch(xyA=(- width / 2, 0), xyB=(x, y), coordsA=\"data\",\n coordsB=\"data\", axesA=ax2, axesB=ax1)\ncon.set_color([0, 0, 0])\nax2.add_artist(con)\ncon.set_linewidth(4)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot\nmatplotlib.patches.ConnectionPatch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/69d8b7ad003fad531eb194dba98393ad/text_commands.py b/_downloads/69d8b7ad003fad531eb194dba98393ad/text_commands.py deleted file mode 120000 index aaf9ebcc457..00000000000 --- a/_downloads/69d8b7ad003fad531eb194dba98393ad/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/69d8b7ad003fad531eb194dba98393ad/text_commands.py \ No newline at end of file diff --git a/_downloads/69e18e522d5e43a0d75b9c8ea1c0160d/plotfile_demo_sgskip.ipynb b/_downloads/69e18e522d5e43a0d75b9c8ea1c0160d/plotfile_demo_sgskip.ipynb deleted file mode 120000 index 4fe43a5d864..00000000000 --- a/_downloads/69e18e522d5e43a0d75b9c8ea1c0160d/plotfile_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/69e18e522d5e43a0d75b9c8ea1c0160d/plotfile_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/69f23dc10689c97589f005f69f4daa08/histogram_histtypes.py b/_downloads/69f23dc10689c97589f005f69f4daa08/histogram_histtypes.py deleted file mode 120000 index 75092d70cac..00000000000 --- a/_downloads/69f23dc10689c97589f005f69f4daa08/histogram_histtypes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/69f23dc10689c97589f005f69f4daa08/histogram_histtypes.py \ No newline at end of file diff --git a/_downloads/69f95e088df5a4a85a6150d961553d6a/fancytextbox_demo.ipynb b/_downloads/69f95e088df5a4a85a6150d961553d6a/fancytextbox_demo.ipynb deleted file mode 120000 index a566fc4137c..00000000000 --- a/_downloads/69f95e088df5a4a85a6150d961553d6a/fancytextbox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/69f95e088df5a4a85a6150d961553d6a/fancytextbox_demo.ipynb \ No newline at end of file diff --git a/_downloads/6a0dba9b36e178ad917830178c145270/customizing.py b/_downloads/6a0dba9b36e178ad917830178c145270/customizing.py deleted file mode 120000 index f4699410456..00000000000 --- a/_downloads/6a0dba9b36e178ad917830178c145270/customizing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6a0dba9b36e178ad917830178c145270/customizing.py \ No newline at end of file diff --git a/_downloads/6a0eec39d71d6be700b2463006a44aca/errorbar.py b/_downloads/6a0eec39d71d6be700b2463006a44aca/errorbar.py deleted file mode 120000 index 1bc5de65d47..00000000000 --- a/_downloads/6a0eec39d71d6be700b2463006a44aca/errorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a0eec39d71d6be700b2463006a44aca/errorbar.py \ No newline at end of file diff --git a/_downloads/6a137d77fca2f8f4c47c069092c19bba/image_zcoord.py b/_downloads/6a137d77fca2f8f4c47c069092c19bba/image_zcoord.py deleted file mode 120000 index 8f14e1478f4..00000000000 --- a/_downloads/6a137d77fca2f8f4c47c069092c19bba/image_zcoord.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6a137d77fca2f8f4c47c069092c19bba/image_zcoord.py \ No newline at end of file diff --git a/_downloads/6a1d86cb92bc87bc2724dbf4f4542a2f/triplot_demo.py b/_downloads/6a1d86cb92bc87bc2724dbf4f4542a2f/triplot_demo.py deleted file mode 100644 index 836848205e3..00000000000 --- a/_downloads/6a1d86cb92bc87bc2724dbf4f4542a2f/triplot_demo.py +++ /dev/null @@ -1,122 +0,0 @@ -""" -============ -Triplot Demo -============ - -Creating and plotting unstructured triangular grids. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -############################################################################### -# Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points. - -# First create the x and y coordinates of the points. -n_angles = 36 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -############################################################################### -# Plot the triangulation. - -fig1, ax1 = plt.subplots() -ax1.set_aspect('equal') -ax1.triplot(triang, 'bo-', lw=1) -ax1.set_title('triplot of Delaunay triangulation') - - -############################################################################### -# You can specify your own triangulation rather than perform a Delaunay -# triangulation of the points, where each triangle is given by the indices of -# the three points that make up the triangle, ordered in either a clockwise or -# anticlockwise manner. - -xy = np.asarray([ - [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890], - [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898], - [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919], - [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949], - [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959], - [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965], - [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980], - [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996], - [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021], - [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005], - [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987], - [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968], - [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926], - [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905], - [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886], - [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879], - [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872], - [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933], - [-0.077, 0.990], [-0.059, 0.993]]) -x = np.degrees(xy[:, 0]) -y = np.degrees(xy[:, 1]) - -triangles = np.asarray([ - [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64], - [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63], - [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68], - [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7], - [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9], - [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12], - [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71], - [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71], - [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19], - [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24], - [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28], - [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45], - [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40], - [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40], - [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38], - [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]]) - -############################################################################### -# Rather than create a Triangulation object, can simply pass x, y and triangles -# arrays to triplot directly. It would be better to use a Triangulation object -# if the same triangulation was to be used more than once to save duplicated -# calculations. - -fig2, ax2 = plt.subplots() -ax2.set_aspect('equal') -ax2.triplot(x, y, triangles, 'go-', lw=1.0) -ax2.set_title('triplot of user-specified triangulation') -ax2.set_xlabel('Longitude (degrees)') -ax2.set_ylabel('Latitude (degrees)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.tri -matplotlib.tri.Triangulation diff --git a/_downloads/6a3056b6836677ebb5f2c83f76527616/simple_rgb.py b/_downloads/6a3056b6836677ebb5f2c83f76527616/simple_rgb.py deleted file mode 100644 index d0d5c576604..00000000000 --- a/_downloads/6a3056b6836677ebb5f2c83f76527616/simple_rgb.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -========== -Simple RGB -========== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def get_rgb(): - Z, extent = get_demo_image() - - Z[Z < 0] = 0. - Z = Z / Z.max() - - R = Z[:13, :13] - G = Z[2:, 2:] - B = Z[:13, 2:] - - return R, G, B - - -fig = plt.figure() -ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8]) - -r, g, b = get_rgb() -kwargs = dict(origin="lower", interpolation="nearest") -ax.imshow_rgb(r, g, b, **kwargs) - -ax.RGB.set_xlim(0., 9.5) -ax.RGB.set_ylim(0.9, 10.6) - -plt.show() diff --git a/_downloads/6a361db773712a3846ad8cfefe4dbce7/bachelors_degrees_by_gender.py b/_downloads/6a361db773712a3846ad8cfefe4dbce7/bachelors_degrees_by_gender.py deleted file mode 100644 index a67b6a02949..00000000000 --- a/_downloads/6a361db773712a3846ad8cfefe4dbce7/bachelors_degrees_by_gender.py +++ /dev/null @@ -1,115 +0,0 @@ -""" -============================ -Bachelor's degrees by gender -============================ - -A graph of multiple time series which demonstrates extensive custom -styling of plot frame, tick lines and labels, and line graph properties. - -Also demonstrates the custom placement of text labels along the right edge -as an alternative to a conventional legend. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.cbook import get_sample_data - - -fname = get_sample_data('percent_bachelors_degrees_women_usa.csv', - asfileobj=False) -gender_degree_data = np.genfromtxt(fname, delimiter=',', names=True) - -# You typically want your plot to be ~1.33x wider than tall. This plot -# is a rare exception because of the number of lines being plotted on it. -# Common sizes: (10, 7.5) and (12, 9) -fig, ax = plt.subplots(1, 1, figsize=(12, 14)) - -# These are the colors that will be used in the plot -ax.set_prop_cycle(color=[ - '#1f77b4', '#aec7e8', '#ff7f0e', '#ffbb78', '#2ca02c', '#98df8a', - '#d62728', '#ff9896', '#9467bd', '#c5b0d5', '#8c564b', '#c49c94', - '#e377c2', '#f7b6d2', '#7f7f7f', '#c7c7c7', '#bcbd22', '#dbdb8d', - '#17becf', '#9edae5']) - -# Remove the plot frame lines. They are unnecessary here. -ax.spines['top'].set_visible(False) -ax.spines['bottom'].set_visible(False) -ax.spines['right'].set_visible(False) -ax.spines['left'].set_visible(False) - -# Ensure that the axis ticks only show up on the bottom and left of the plot. -# Ticks on the right and top of the plot are generally unnecessary. -ax.get_xaxis().tick_bottom() -ax.get_yaxis().tick_left() - -fig.subplots_adjust(left=.06, right=.75, bottom=.02, top=.94) -# Limit the range of the plot to only where the data is. -# Avoid unnecessary whitespace. -ax.set_xlim(1969.5, 2011.1) -ax.set_ylim(-0.25, 90) - -# Set a fixed location and format for ticks. -ax.set_xticks(range(1970, 2011, 10)) -ax.set_yticks(range(0, 91, 10)) -ax.xaxis.set_major_formatter(plt.FuncFormatter('{:.0f}'.format)) -ax.yaxis.set_major_formatter(plt.FuncFormatter('{:.0f}%'.format)) - -# Provide tick lines across the plot to help your viewers trace along -# the axis ticks. Make sure that the lines are light and small so they -# don't obscure the primary data lines. -ax.grid(True, 'major', 'y', ls='--', lw=.5, c='k', alpha=.3) - -# Remove the tick marks; they are unnecessary with the tick lines we just -# plotted. Make sure your axis ticks are large enough to be easily read. -# You don't want your viewers squinting to read your plot. -ax.tick_params(axis='both', which='both', labelsize=14, - bottom=False, top=False, labelbottom=True, - left=False, right=False, labelleft=True) - -# Now that the plot is prepared, it's time to actually plot the data! -# Note that I plotted the majors in order of the highest % in the final year. -majors = ['Health Professions', 'Public Administration', 'Education', - 'Psychology', 'Foreign Languages', 'English', - 'Communications\nand Journalism', 'Art and Performance', 'Biology', - 'Agriculture', 'Social Sciences and History', 'Business', - 'Math and Statistics', 'Architecture', 'Physical Sciences', - 'Computer Science', 'Engineering'] - -y_offsets = {'Foreign Languages': 0.5, 'English': -0.5, - 'Communications\nand Journalism': 0.75, - 'Art and Performance': -0.25, 'Agriculture': 1.25, - 'Social Sciences and History': 0.25, 'Business': -0.75, - 'Math and Statistics': 0.75, 'Architecture': -0.75, - 'Computer Science': 0.75, 'Engineering': -0.25} - -for column in majors: - # Plot each line separately with its own color. - column_rec_name = column.replace('\n', '_').replace(' ', '_') - - line, = ax.plot('Year', column_rec_name, data=gender_degree_data, - lw=2.5) - - # Add a text label to the right end of every line. Most of the code below - # is adding specific offsets y position because some labels overlapped. - y_pos = gender_degree_data[column_rec_name][-1] - 0.5 - - if column in y_offsets: - y_pos += y_offsets[column] - - # Again, make sure that all labels are large enough to be easily read - # by the viewer. - ax.text(2011.5, y_pos, column, fontsize=14, color=line.get_color()) - -# Make the title big enough so it spans the entire plot, but don't make it -# so big that it requires two lines to show. - -# Note that if the title is descriptive enough, it is unnecessary to include -# axis labels; they are self-evident, in this plot's case. -fig.suptitle('Percentage of Bachelor\'s degrees conferred to women in ' - 'the U.S.A. by major (1970-2011)\n', fontsize=18, ha='center') - -# Finally, save the figure as a PNG. -# You can also save it as a PDF, JPEG, etc. -# Just change the file extension in this call. -# fig.savefig('percent-bachelors-degrees-women-usa.png', bbox_inches='tight') -plt.show() diff --git a/_downloads/6a3ac1f6affd9267faac429cea22b922/whats_new_99_mplot3d.ipynb b/_downloads/6a3ac1f6affd9267faac429cea22b922/whats_new_99_mplot3d.ipynb deleted file mode 120000 index 247105fbb12..00000000000 --- a/_downloads/6a3ac1f6affd9267faac429cea22b922/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a3ac1f6affd9267faac429cea22b922/whats_new_99_mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/6a3d6fe3347b4d33558784b9dff4e69b/simple_plot.ipynb b/_downloads/6a3d6fe3347b4d33558784b9dff4e69b/simple_plot.ipynb deleted file mode 120000 index 9d2f8ddba98..00000000000 --- a/_downloads/6a3d6fe3347b4d33558784b9dff4e69b/simple_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6a3d6fe3347b4d33558784b9dff4e69b/simple_plot.ipynb \ No newline at end of file diff --git a/_downloads/6a3e83f20d365d3254c25f34067ed862/broken_barh.ipynb b/_downloads/6a3e83f20d365d3254c25f34067ed862/broken_barh.ipynb deleted file mode 120000 index 04d451675a2..00000000000 --- a/_downloads/6a3e83f20d365d3254c25f34067ed862/broken_barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a3e83f20d365d3254c25f34067ed862/broken_barh.ipynb \ No newline at end of file diff --git a/_downloads/6a42dce3af447d1492b359ba4ee1a960/multipage_pdf.py b/_downloads/6a42dce3af447d1492b359ba4ee1a960/multipage_pdf.py deleted file mode 120000 index 43dd27d1cd2..00000000000 --- a/_downloads/6a42dce3af447d1492b359ba4ee1a960/multipage_pdf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6a42dce3af447d1492b359ba4ee1a960/multipage_pdf.py \ No newline at end of file diff --git a/_downloads/6a49cdc9cd36725f6c9825fd88edc521/embedding_in_qt_sgskip.py b/_downloads/6a49cdc9cd36725f6c9825fd88edc521/embedding_in_qt_sgskip.py deleted file mode 120000 index a10be7d0bb6..00000000000 --- a/_downloads/6a49cdc9cd36725f6c9825fd88edc521/embedding_in_qt_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6a49cdc9cd36725f6c9825fd88edc521/embedding_in_qt_sgskip.py \ No newline at end of file diff --git a/_downloads/6a4fd3cf65428bf753e2fbb29350d297/lines3d.py b/_downloads/6a4fd3cf65428bf753e2fbb29350d297/lines3d.py deleted file mode 120000 index fe2e9d03eb3..00000000000 --- a/_downloads/6a4fd3cf65428bf753e2fbb29350d297/lines3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6a4fd3cf65428bf753e2fbb29350d297/lines3d.py \ No newline at end of file diff --git a/_downloads/6a599fd4df319089d897ae71900c835d/compound_path.ipynb b/_downloads/6a599fd4df319089d897ae71900c835d/compound_path.ipynb deleted file mode 100644 index 996ed3e35e0..00000000000 --- a/_downloads/6a599fd4df319089d897ae71900c835d/compound_path.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Compound path\n\n\nMake a compound path -- in this case two simple polygons, a rectangle\nand a triangle. Use ``CLOSEPOLY`` and ``MOVETO`` for the different parts of\nthe compound path\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.path import Path\nfrom matplotlib.patches import PathPatch\nimport matplotlib.pyplot as plt\n\n\nvertices = []\ncodes = []\n\ncodes = [Path.MOVETO] + [Path.LINETO]*3 + [Path.CLOSEPOLY]\nvertices = [(1, 1), (1, 2), (2, 2), (2, 1), (0, 0)]\n\ncodes += [Path.MOVETO] + [Path.LINETO]*2 + [Path.CLOSEPOLY]\nvertices += [(4, 4), (5, 5), (5, 4), (0, 0)]\n\nvertices = np.array(vertices, float)\npath = Path(vertices, codes)\n\npathpatch = PathPatch(path, facecolor='None', edgecolor='green')\n\nfig, ax = plt.subplots()\nax.add_patch(pathpatch)\nax.set_title('A compound path')\n\nax.autoscale_view()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.axes.Axes.add_patch\nmatplotlib.axes.Axes.autoscale_view" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6a74e8faf0c8946c726f4282d3eb10b6/leftventricle_bulleye.py b/_downloads/6a74e8faf0c8946c726f4282d3eb10b6/leftventricle_bulleye.py deleted file mode 120000 index 4a405a43738..00000000000 --- a/_downloads/6a74e8faf0c8946c726f4282d3eb10b6/leftventricle_bulleye.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a74e8faf0c8946c726f4282d3eb10b6/leftventricle_bulleye.py \ No newline at end of file diff --git a/_downloads/6a7529d538e46db8dffe125107d32a94/demo_parasite_axes2.ipynb b/_downloads/6a7529d538e46db8dffe125107d32a94/demo_parasite_axes2.ipynb deleted file mode 120000 index 81dba739078..00000000000 --- a/_downloads/6a7529d538e46db8dffe125107d32a94/demo_parasite_axes2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a7529d538e46db8dffe125107d32a94/demo_parasite_axes2.ipynb \ No newline at end of file diff --git a/_downloads/6a778736474c8a0e04a7b7fae2905fd8/matshow.py b/_downloads/6a778736474c8a0e04a7b7fae2905fd8/matshow.py deleted file mode 120000 index c02b9d616ba..00000000000 --- a/_downloads/6a778736474c8a0e04a7b7fae2905fd8/matshow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a778736474c8a0e04a7b7fae2905fd8/matshow.py \ No newline at end of file diff --git a/_downloads/6a7c098fe2986cff23267a6b0fcd4ced/data_browser.ipynb b/_downloads/6a7c098fe2986cff23267a6b0fcd4ced/data_browser.ipynb deleted file mode 100644 index 5834fac2f35..00000000000 --- a/_downloads/6a7c098fe2986cff23267a6b0fcd4ced/data_browser.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\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" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\n\nclass PointBrowser(object):\n \"\"\"\n Click on a point to select and highlight it -- the data that\n generated the point will be shown in the lower axes. Use the 'n'\n and 'p' keys to browse through the next and previous points\n \"\"\"\n\n def __init__(self):\n self.lastind = 0\n\n self.text = ax.text(0.05, 0.95, 'selected: none',\n transform=ax.transAxes, va='top')\n self.selected, = ax.plot([xs[0]], [ys[0]], 'o', ms=12, alpha=0.4,\n color='yellow', visible=False)\n\n def onpress(self, event):\n if self.lastind is None:\n return\n if event.key not in ('n', 'p'):\n return\n if event.key == 'n':\n inc = 1\n else:\n inc = -1\n\n self.lastind += inc\n self.lastind = np.clip(self.lastind, 0, len(xs) - 1)\n self.update()\n\n def onpick(self, event):\n\n if event.artist != line:\n return True\n\n N = len(event.ind)\n if not N:\n return True\n\n # the click locations\n x = event.mouseevent.xdata\n y = event.mouseevent.ydata\n\n distances = np.hypot(x - xs[event.ind], y - ys[event.ind])\n indmin = distances.argmin()\n dataind = event.ind[indmin]\n\n self.lastind = dataind\n self.update()\n\n def update(self):\n if self.lastind is None:\n return\n\n dataind = self.lastind\n\n ax2.cla()\n ax2.plot(X[dataind])\n\n ax2.text(0.05, 0.9, 'mu=%1.3f\\nsigma=%1.3f' % (xs[dataind], ys[dataind]),\n transform=ax2.transAxes, va='top')\n ax2.set_ylim(-0.5, 1.5)\n self.selected.set_visible(True)\n self.selected.set_data(xs[dataind], ys[dataind])\n\n self.text.set_text('selected: %d' % dataind)\n fig.canvas.draw()\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n\n X = np.random.rand(100, 200)\n xs = np.mean(X, axis=1)\n ys = np.std(X, axis=1)\n\n fig, (ax, ax2) = plt.subplots(2, 1)\n ax.set_title('click on point to plot time series')\n line, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance\n\n browser = PointBrowser()\n\n fig.canvas.mpl_connect('pick_event', browser.onpick)\n fig.canvas.mpl_connect('key_press_event', browser.onpress)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6a98d491516beb7919bf8de742e70a3f/frame_grabbing_sgskip.py b/_downloads/6a98d491516beb7919bf8de742e70a3f/frame_grabbing_sgskip.py deleted file mode 120000 index 111b3654db7..00000000000 --- a/_downloads/6a98d491516beb7919bf8de742e70a3f/frame_grabbing_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6a98d491516beb7919bf8de742e70a3f/frame_grabbing_sgskip.py \ No newline at end of file diff --git a/_downloads/6a991ae3a9a4ab2d7b235aae7528db12/coords_demo.ipynb b/_downloads/6a991ae3a9a4ab2d7b235aae7528db12/coords_demo.ipynb deleted file mode 120000 index 61eb30144a7..00000000000 --- a/_downloads/6a991ae3a9a4ab2d7b235aae7528db12/coords_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a991ae3a9a4ab2d7b235aae7528db12/coords_demo.ipynb \ No newline at end of file diff --git a/_downloads/6a991ef2680010dc3e315bc57b8de102/simple_axis_pad.py b/_downloads/6a991ef2680010dc3e315bc57b8de102/simple_axis_pad.py deleted file mode 120000 index f91204f7f7f..00000000000 --- a/_downloads/6a991ef2680010dc3e315bc57b8de102/simple_axis_pad.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6a991ef2680010dc3e315bc57b8de102/simple_axis_pad.py \ No newline at end of file diff --git a/_downloads/6a9cad8854be9804fd69682a1b80538b/pyplot_simple.ipynb b/_downloads/6a9cad8854be9804fd69682a1b80538b/pyplot_simple.ipynb deleted file mode 120000 index cb55dc47da8..00000000000 --- a/_downloads/6a9cad8854be9804fd69682a1b80538b/pyplot_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6a9cad8854be9804fd69682a1b80538b/pyplot_simple.ipynb \ No newline at end of file diff --git a/_downloads/6aa2bd4d087a2f11b919401dbb6c41ff/tricontourf3d.py b/_downloads/6aa2bd4d087a2f11b919401dbb6c41ff/tricontourf3d.py deleted file mode 120000 index 1542c8cbff1..00000000000 --- a/_downloads/6aa2bd4d087a2f11b919401dbb6c41ff/tricontourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6aa2bd4d087a2f11b919401dbb6c41ff/tricontourf3d.py \ No newline at end of file diff --git a/_downloads/6aa8e5919ce32e892d549350231357cd/legend_demo.py b/_downloads/6aa8e5919ce32e892d549350231357cd/legend_demo.py deleted file mode 120000 index 90b88b8c36f..00000000000 --- a/_downloads/6aa8e5919ce32e892d549350231357cd/legend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6aa8e5919ce32e892d549350231357cd/legend_demo.py \ No newline at end of file diff --git a/_downloads/6aaaba24169706431e6f99c40917599e/demo_axes_divider.ipynb b/_downloads/6aaaba24169706431e6f99c40917599e/demo_axes_divider.ipynb deleted file mode 120000 index 5451bc92910..00000000000 --- a/_downloads/6aaaba24169706431e6f99c40917599e/demo_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6aaaba24169706431e6f99c40917599e/demo_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/6aab9d3fc4fd0ff88788230cd791a166/affine_image.py b/_downloads/6aab9d3fc4fd0ff88788230cd791a166/affine_image.py deleted file mode 100644 index fadefa089e0..00000000000 --- a/_downloads/6aab9d3fc4fd0ff88788230cd791a166/affine_image.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -============================ -Affine transform of an image -============================ - - -Prepending an affine transformation (:class:`~.transforms.Affine2D`) -to the :ref:`data transform ` -of an image allows to manipulate the image's shape and orientation. -This is an example of the concept of -:ref:`transform chaining `. - -For the backends that support draw_image with optional affine -transform (e.g., agg, ps backend), the image of the output should -have its boundary match the dashed yellow rectangle. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms - - -def get_image(): - delta = 0.25 - x = y = np.arange(-3.0, 3.0, delta) - X, Y = np.meshgrid(x, y) - Z1 = np.exp(-X**2 - Y**2) - Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) - Z = (Z1 - Z2) - return Z - - -def do_plot(ax, Z, transform): - im = ax.imshow(Z, interpolation='none', - origin='lower', - extent=[-2, 4, -3, 2], clip_on=True) - - trans_data = transform + ax.transData - im.set_transform(trans_data) - - # display intended extent of the image - x1, x2, y1, y2 = im.get_extent() - ax.plot([x1, x2, x2, x1, x1], [y1, y1, y2, y2, y1], "y--", - transform=trans_data) - ax.set_xlim(-5, 5) - ax.set_ylim(-4, 4) - - -# prepare image and figure -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) -Z = get_image() - -# image rotation -do_plot(ax1, Z, mtransforms.Affine2D().rotate_deg(30)) - -# image skew -do_plot(ax2, Z, mtransforms.Affine2D().skew_deg(30, 15)) - -# scale and reflection -do_plot(ax3, Z, mtransforms.Affine2D().scale(-1, .5)) - -# everything and a translation -do_plot(ax4, Z, mtransforms.Affine2D(). - rotate_deg(30).skew_deg(30, 15).scale(-1, .5).translate(.5, -1)) - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.transforms.Affine2D diff --git a/_downloads/6aae696017b7d025738a66068270430b/svg_filter_pie.py b/_downloads/6aae696017b7d025738a66068270430b/svg_filter_pie.py deleted file mode 120000 index c74c144df44..00000000000 --- a/_downloads/6aae696017b7d025738a66068270430b/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6aae696017b7d025738a66068270430b/svg_filter_pie.py \ No newline at end of file diff --git a/_downloads/6ab5efe7392880a040293a280a399162/compound_path.ipynb b/_downloads/6ab5efe7392880a040293a280a399162/compound_path.ipynb deleted file mode 120000 index 19d0f18109f..00000000000 --- a/_downloads/6ab5efe7392880a040293a280a399162/compound_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6ab5efe7392880a040293a280a399162/compound_path.ipynb \ No newline at end of file diff --git a/_downloads/6ab835aee17b20eef9efd30726faa514/table_demo.py b/_downloads/6ab835aee17b20eef9efd30726faa514/table_demo.py deleted file mode 120000 index 22a94f1dba0..00000000000 --- a/_downloads/6ab835aee17b20eef9efd30726faa514/table_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6ab835aee17b20eef9efd30726faa514/table_demo.py \ No newline at end of file diff --git a/_downloads/6ac107095b1ad1c327e5221e771ccb82/barcode_demo.ipynb b/_downloads/6ac107095b1ad1c327e5221e771ccb82/barcode_demo.ipynb deleted file mode 120000 index 73b652c378d..00000000000 --- a/_downloads/6ac107095b1ad1c327e5221e771ccb82/barcode_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6ac107095b1ad1c327e5221e771ccb82/barcode_demo.ipynb \ No newline at end of file diff --git a/_downloads/6acefc207a3ef61a2cab48b2f7e280d6/text_commands.ipynb b/_downloads/6acefc207a3ef61a2cab48b2f7e280d6/text_commands.ipynb deleted file mode 120000 index bfd1e2cb613..00000000000 --- a/_downloads/6acefc207a3ef61a2cab48b2f7e280d6/text_commands.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6acefc207a3ef61a2cab48b2f7e280d6/text_commands.ipynb \ No newline at end of file diff --git a/_downloads/6ad42a756842e10cad41de1f42d5395b/embedding_webagg_sgskip.ipynb b/_downloads/6ad42a756842e10cad41de1f42d5395b/embedding_webagg_sgskip.ipynb deleted file mode 120000 index 83179b2c466..00000000000 --- a/_downloads/6ad42a756842e10cad41de1f42d5395b/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6ad42a756842e10cad41de1f42d5395b/embedding_webagg_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6af6ac019ebfe2082547d94572e87486/pie_and_donut_labels.ipynb b/_downloads/6af6ac019ebfe2082547d94572e87486/pie_and_donut_labels.ipynb deleted file mode 120000 index 7444479356a..00000000000 --- a/_downloads/6af6ac019ebfe2082547d94572e87486/pie_and_donut_labels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6af6ac019ebfe2082547d94572e87486/pie_and_donut_labels.ipynb \ No newline at end of file diff --git a/_downloads/6afa472f56ac4a8113fdbd765c2611b8/rasterization_demo.ipynb b/_downloads/6afa472f56ac4a8113fdbd765c2611b8/rasterization_demo.ipynb deleted file mode 120000 index 99617008dc1..00000000000 --- a/_downloads/6afa472f56ac4a8113fdbd765c2611b8/rasterization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6afa472f56ac4a8113fdbd765c2611b8/rasterization_demo.ipynb \ No newline at end of file diff --git a/_downloads/6afe4cefb3d5ccba0c30a1ea14ff9417/anchored_box01.ipynb b/_downloads/6afe4cefb3d5ccba0c30a1ea14ff9417/anchored_box01.ipynb deleted file mode 100644 index 147ee2a09c9..00000000000 --- a/_downloads/6afe4cefb3d5ccba0c30a1ea14ff9417/anchored_box01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.offsetbox import AnchoredText\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nat = AnchoredText(\"Figure 1a\",\n prop=dict(size=15), frameon=True, loc='upper left')\nat.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\nax.add_artist(at)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6afef68f6a30e6468a18636b6f580cb3/custom_scale.py b/_downloads/6afef68f6a30e6468a18636b6f580cb3/custom_scale.py deleted file mode 100644 index b4a4ea24352..00000000000 --- a/_downloads/6afef68f6a30e6468a18636b6f580cb3/custom_scale.py +++ /dev/null @@ -1,187 +0,0 @@ -""" -============ -Custom scale -============ - -Create a custom scale, by implementing the scaling use for latitude data in a -Mercator Projection. - -Unless you are making special use of the `~.Transform` class, you probably -don't need to use this verbose method, and instead can use -`~.matplotlib.scale.FuncScale` and the ``'function'`` option of -`~.matplotlib.axes.Axes.set_xscale` and `~.matplotlib.axes.Axes.set_yscale`. -See the last example in :doc:`/gallery/scales/scales`. -""" - -import numpy as np -from numpy import ma -from matplotlib import scale as mscale -from matplotlib import transforms as mtransforms -from matplotlib.ticker import Formatter, FixedLocator -from matplotlib import rcParams - - -# BUG: this example fails with any other setting of axisbelow -rcParams['axes.axisbelow'] = False - - -class MercatorLatitudeScale(mscale.ScaleBase): - """ - Scales data in range -pi/2 to pi/2 (-90 to 90 degrees) using - the system used to scale latitudes in a Mercator projection. - - The scale function: - ln(tan(y) + sec(y)) - - The inverse scale function: - atan(sinh(y)) - - Since the Mercator scale tends to infinity at +/- 90 degrees, - there is user-defined threshold, above and below which nothing - will be plotted. This defaults to +/- 85 degrees. - - source: - http://en.wikipedia.org/wiki/Mercator_projection - """ - - # The scale class must have a member ``name`` that defines the string used - # to select the scale. For example, ``gca().set_yscale("mercator")`` would - # be used to select this scale. - name = 'mercator' - - def __init__(self, axis, *, thresh=np.deg2rad(85), **kwargs): - """ - Any keyword arguments passed to ``set_xscale`` and ``set_yscale`` will - be passed along to the scale's constructor. - - thresh: The degree above which to crop the data. - """ - super().__init__(axis) - if thresh >= np.pi / 2: - raise ValueError("thresh must be less than pi/2") - self.thresh = thresh - - def get_transform(self): - """ - Override this method to return a new instance that does the - actual transformation of the data. - - The MercatorLatitudeTransform class is defined below as a - nested class of this one. - """ - return self.MercatorLatitudeTransform(self.thresh) - - def set_default_locators_and_formatters(self, axis): - """ - Override to set up the locators and formatters to use with the - scale. This is only required if the scale requires custom - locators and formatters. Writing custom locators and - formatters is rather outside the scope of this example, but - there are many helpful examples in ``ticker.py``. - - In our case, the Mercator example uses a fixed locator from - -90 to 90 degrees and a custom formatter class to put convert - the radians to degrees and put a degree symbol after the - value:: - """ - class DegreeFormatter(Formatter): - def __call__(self, x, pos=None): - return "%d\N{DEGREE SIGN}" % np.degrees(x) - - axis.set_major_locator(FixedLocator( - np.radians(np.arange(-90, 90, 10)))) - axis.set_major_formatter(DegreeFormatter()) - axis.set_minor_formatter(DegreeFormatter()) - - def limit_range_for_scale(self, vmin, vmax, minpos): - """ - Override to limit the bounds of the axis to the domain of the - transform. In the case of Mercator, the bounds should be - limited to the threshold that was passed in. Unlike the - autoscaling provided by the tick locators, this range limiting - will always be adhered to, whether the axis range is set - manually, determined automatically or changed through panning - and zooming. - """ - return max(vmin, -self.thresh), min(vmax, self.thresh) - - class MercatorLatitudeTransform(mtransforms.Transform): - # There are two value members that must be defined. - # ``input_dims`` and ``output_dims`` specify number of input - # dimensions and output dimensions to the transformation. - # These are used by the transformation framework to do some - # error checking and prevent incompatible transformations from - # being connected together. When defining transforms for a - # scale, which are, by definition, separable and have only one - # dimension, these members should always be set to 1. - input_dims = 1 - output_dims = 1 - is_separable = True - has_inverse = True - - def __init__(self, thresh): - mtransforms.Transform.__init__(self) - self.thresh = thresh - - def transform_non_affine(self, a): - """ - This transform takes an Nx1 ``numpy`` array and returns a - transformed copy. Since the range of the Mercator scale - is limited by the user-specified threshold, the input - array must be masked to contain only valid values. - ``matplotlib`` will handle masked arrays and remove the - out-of-range data from the plot. Importantly, the - ``transform`` method *must* return an array that is the - same shape as the input array, since these values need to - remain synchronized with values in the other dimension. - """ - masked = ma.masked_where((a < -self.thresh) | (a > self.thresh), a) - if masked.mask.any(): - return ma.log(np.abs(ma.tan(masked) + 1.0 / ma.cos(masked))) - else: - return np.log(np.abs(np.tan(a) + 1.0 / np.cos(a))) - - def inverted(self): - """ - Override this method so matplotlib knows how to get the - inverse transform for this transform. - """ - return MercatorLatitudeScale.InvertedMercatorLatitudeTransform( - self.thresh) - - class InvertedMercatorLatitudeTransform(mtransforms.Transform): - input_dims = 1 - output_dims = 1 - is_separable = True - has_inverse = True - - def __init__(self, thresh): - mtransforms.Transform.__init__(self) - self.thresh = thresh - - def transform_non_affine(self, a): - return np.arctan(np.sinh(a)) - - def inverted(self): - return MercatorLatitudeScale.MercatorLatitudeTransform(self.thresh) - -# Now that the Scale class has been defined, it must be registered so -# that ``matplotlib`` can find it. -mscale.register_scale(MercatorLatitudeScale) - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - - t = np.arange(-180.0, 180.0, 0.1) - s = np.radians(t)/2. - - plt.plot(t, s, '-', lw=2) - plt.gca().set_yscale('mercator') - - plt.xlabel('Longitude') - plt.ylabel('Latitude') - plt.title('Mercator: Projection of the Oppressor') - plt.grid(True) - - plt.show() diff --git a/_downloads/6b00f720c5e105abb659565169271866/simple_axisartist1.py b/_downloads/6b00f720c5e105abb659565169271866/simple_axisartist1.py deleted file mode 100644 index ee2b44c5bec..00000000000 --- a/_downloads/6b00f720c5e105abb659565169271866/simple_axisartist1.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -================== -Simple Axisartist1 -================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as AA - -fig = plt.figure() -fig.subplots_adjust(right=0.85) -ax = AA.Subplot(fig, 1, 1, 1) -fig.add_subplot(ax) - -# make some axis invisible -ax.axis["bottom", "top", "right"].set_visible(False) - -# make an new axis along the first axis axis (x-axis) which pass -# through y=0. -ax.axis["y=0"] = ax.new_floating_axis(nth_coord=0, value=0, - axis_direction="bottom") -ax.axis["y=0"].toggle(all=True) -ax.axis["y=0"].label.set_text("y = 0") - -ax.set_ylim(-2, 4) - -plt.show() diff --git a/_downloads/6b02037daddca17ef62cbd1d3d478c41/demo_floating_axes.ipynb b/_downloads/6b02037daddca17ef62cbd1d3d478c41/demo_floating_axes.ipynb deleted file mode 120000 index 49ec005a128..00000000000 --- a/_downloads/6b02037daddca17ef62cbd1d3d478c41/demo_floating_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6b02037daddca17ef62cbd1d3d478c41/demo_floating_axes.ipynb \ No newline at end of file diff --git a/_downloads/6b05a95f5204c888659d79186ca8dcf8/embedding_in_wx3_sgskip.ipynb b/_downloads/6b05a95f5204c888659d79186ca8dcf8/embedding_in_wx3_sgskip.ipynb deleted file mode 120000 index fb1838542d9..00000000000 --- a/_downloads/6b05a95f5204c888659d79186ca8dcf8/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6b05a95f5204c888659d79186ca8dcf8/embedding_in_wx3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6b0f2d1b3dc8d0e75eaa96feb738e947/sample_plots.py b/_downloads/6b0f2d1b3dc8d0e75eaa96feb738e947/sample_plots.py deleted file mode 100644 index 477202a43ce..00000000000 --- a/_downloads/6b0f2d1b3dc8d0e75eaa96feb738e947/sample_plots.py +++ /dev/null @@ -1,437 +0,0 @@ -""" -========================== -Sample plots in Matplotlib -========================== - -Here you'll find a host of example plots with the code that -generated them. - -.. _matplotlibscreenshots: - -Line Plot -========= - -Here's how to create a line plot with text labels using -:func:`~matplotlib.pyplot.plot`. - -.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_simple_plot_001.png - :target: ../../gallery/lines_bars_and_markers/simple_plot.html - :align: center - :scale: 50 - - Simple Plot - -.. _screenshots_subplot_demo: - -Multiple subplots in one figure -=============================== - -Multiple axes (i.e. subplots) are created with the -:func:`~matplotlib.pyplot.subplot` function: - -.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_subplot_001.png - :target: ../../gallery/subplots_axes_and_figures/subplot.html - :align: center - :scale: 50 - - Subplot - -.. _screenshots_images_demo: - -Images -====== - -Matplotlib can display images (assuming equally spaced -horizontal dimensions) using the :func:`~matplotlib.pyplot.imshow` function. - -.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_image_demo_003.png - :target: ../../gallery/images_contours_and_fields/image_demo.html - :align: center - :scale: 50 - - Example of using :func:`~matplotlib.pyplot.imshow` to display a CT scan - -.. _screenshots_pcolormesh_demo: - - -Contouring and pseudocolor -========================== - -The :func:`~matplotlib.pyplot.pcolormesh` function can make a colored -representation of a two-dimensional array, even if the horizontal dimensions -are unevenly spaced. The -:func:`~matplotlib.pyplot.contour` function is another way to represent -the same data: - -.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_pcolormesh_levels_001.png - :target: ../../gallery/images_contours_and_fields/pcolormesh_levels.html - :align: center - :scale: 50 - - Example comparing :func:`~matplotlib.pyplot.pcolormesh` and :func:`~matplotlib.pyplot.contour` for plotting two-dimensional data - -.. _screenshots_histogram_demo: - -Histograms -========== - -The :func:`~matplotlib.pyplot.hist` function automatically generates -histograms and returns the bin counts or probabilities: - -.. figure:: ../../gallery/statistics/images/sphx_glr_histogram_features_001.png - :target: ../../gallery/statistics/histogram_features.html - :align: center - :scale: 50 - - Histogram Features - - -.. _screenshots_path_demo: - -Paths -===== - -You can add arbitrary paths in Matplotlib using the -:mod:`matplotlib.path` module: - -.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_path_patch_001.png - :target: ../../gallery/shapes_and_collections/path_patch.html - :align: center - :scale: 50 - - Path Patch - -.. _screenshots_mplot3d_surface: - -Three-dimensional plotting -========================== - -The mplot3d toolkit (see :ref:`toolkit_mplot3d-tutorial` and -:ref:`mplot3d-examples-index`) has support for simple 3d graphs -including surface, wireframe, scatter, and bar charts. - -.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png - :target: ../../gallery/mplot3d/surface3d.html - :align: center - :scale: 50 - - Surface3d - -Thanks to John Porter, Jonathon Taylor, Reinier Heeres, and Ben Root for -the `mplot3d` toolkit. This toolkit is included with all standard Matplotlib -installs. - -.. _screenshots_ellipse_demo: - - -Streamplot -========== - -The :meth:`~matplotlib.pyplot.streamplot` function plots the streamlines of -a vector field. In addition to simply plotting the streamlines, it allows you -to map the colors and/or line widths of streamlines to a separate parameter, -such as the speed or local intensity of the vector field. - -.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_plot_streamplot_001.png - :target: ../../gallery/images_contours_and_fields/plot_streamplot.html - :align: center - :scale: 50 - - Streamplot with various plotting options. - -This feature complements the :meth:`~matplotlib.pyplot.quiver` function for -plotting vector fields. Thanks to Tom Flannaghan and Tony Yu for adding the -streamplot function. - - -Ellipses -======== - -In support of the `Phoenix `_ -mission to Mars (which used Matplotlib to display ground tracking of -spacecraft), Michael Droettboom built on work by Charlie Moad to provide -an extremely accurate 8-spline approximation to elliptical arcs (see -:class:`~matplotlib.patches.Arc`), which are insensitive to zoom level. - -.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_ellipse_demo_001.png - :target: ../../gallery/shapes_and_collections/ellipse_demo.html - :align: center - :scale: 50 - - Ellipse Demo - -.. _screenshots_barchart_demo: - -Bar charts -========== - -Use the :func:`~matplotlib.pyplot.bar` function to make bar charts, which -includes customizations such as error bars: - -.. figure:: ../../gallery/statistics/images/sphx_glr_barchart_demo_001.png - :target: ../../gallery/statistics/barchart_demo.html - :align: center - :scale: 50 - - Barchart Demo - -You can also create stacked bars -(`bar_stacked.py <../../gallery/lines_bars_and_markers/bar_stacked.html>`_), -or horizontal bar charts -(`barh.py <../../gallery/lines_bars_and_markers/barh.html>`_). - -.. _screenshots_pie_demo: - - -Pie charts -========== - -The :func:`~matplotlib.pyplot.pie` function allows you to create pie -charts. Optional features include auto-labeling the percentage of area, -exploding one or more wedges from the center of the pie, and a shadow effect. -Take a close look at the attached code, which generates this figure in just -a few lines of code. - -.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_pie_features_001.png - :target: ../../gallery/pie_and_polar_charts/pie_features.html - :align: center - :scale: 50 - - Pie Features - -.. _screenshots_table_demo: - -Tables -====== - -The :func:`~matplotlib.pyplot.table` function adds a text table -to an axes. - -.. figure:: ../../gallery/misc/images/sphx_glr_table_demo_001.png - :target: ../../gallery/misc/table_demo.html - :align: center - :scale: 50 - - Table Demo - - -.. _screenshots_scatter_demo: - - -Scatter plots -============= - -The :func:`~matplotlib.pyplot.scatter` function makes a scatter plot -with (optional) size and color arguments. This example plots changes -in Google's stock price, with marker sizes reflecting the -trading volume and colors varying with time. Here, the -alpha attribute is used to make semitransparent circle markers. - -.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_scatter_demo2_001.png - :target: ../../gallery/lines_bars_and_markers/scatter_demo2.html - :align: center - :scale: 50 - - Scatter Demo2 - - -.. _screenshots_slider_demo: - -GUI widgets -=========== - -Matplotlib has basic GUI widgets that are independent of the graphical -user interface you are using, allowing you to write cross GUI figures -and widgets. See :mod:`matplotlib.widgets` and the -`widget examples <../../gallery/index.html>`_. - -.. figure:: ../../gallery/widgets/images/sphx_glr_slider_demo_001.png - :target: ../../gallery/widgets/slider_demo.html - :align: center - :scale: 50 - - Slider and radio-button GUI. - - -.. _screenshots_fill_demo: - -Filled curves -============= - -The :func:`~matplotlib.pyplot.fill` function lets you -plot filled curves and polygons: - -.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_fill_001.png - :target: ../../gallery/lines_bars_and_markers/fill.html - :align: center - :scale: 50 - - Fill - -Thanks to Andrew Straw for adding this function. - -.. _screenshots_date_demo: - -Date handling -============= - -You can plot timeseries data with major and minor ticks and custom -tick formatters for both. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_date_001.png - :target: ../../gallery/text_labels_and_annotations/date.html - :align: center - :scale: 50 - - Date - -See :mod:`matplotlib.ticker` and :mod:`matplotlib.dates` for details and usage. - - -.. _screenshots_log_demo: - -Log plots -========= - -The :func:`~matplotlib.pyplot.semilogx`, -:func:`~matplotlib.pyplot.semilogy` and -:func:`~matplotlib.pyplot.loglog` functions simplify the creation of -logarithmic plots. - -.. figure:: ../../gallery/scales/images/sphx_glr_log_demo_001.png - :target: ../../gallery/scales/log_demo.html - :align: center - :scale: 50 - - Log Demo - -Thanks to Andrew Straw, Darren Dale and Gregory Lielens for contributions -log-scaling infrastructure. - -.. _screenshots_polar_demo: - -Polar plots -=========== - -The :func:`~matplotlib.pyplot.polar` function generates polar plots. - -.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_polar_demo_001.png - :target: ../../gallery/pie_and_polar_charts/polar_demo.html - :align: center - :scale: 50 - - Polar Demo - -.. _screenshots_legend_demo: - - -Legends -======= - -The :func:`~matplotlib.pyplot.legend` function automatically -generates figure legends, with MATLAB-compatible legend-placement -functions. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_legend_001.png - :target: ../../gallery/text_labels_and_annotations/legend.html - :align: center - :scale: 50 - - Legend - -Thanks to Charles Twardy for input on the legend function. - -.. _screenshots_mathtext_examples_demo: - -TeX-notation for text objects -============================= - -Below is a sampling of the many TeX expressions now supported by Matplotlib's -internal mathtext engine. The mathtext module provides TeX style mathematical -expressions using `FreeType `_ -and the DejaVu, BaKoMa computer modern, or `STIX `_ -fonts. See the :mod:`matplotlib.mathtext` module for additional details. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_mathtext_examples_001.png - :target: ../../gallery/text_labels_and_annotations/mathtext_examples.html - :align: center - :scale: 50 - - Mathtext Examples - -Matplotlib's mathtext infrastructure is an independent implementation and -does not require TeX or any external packages installed on your computer. See -the tutorial at :doc:`/tutorials/text/mathtext`. - - -.. _screenshots_tex_demo: - -Native TeX rendering -==================== - -Although Matplotlib's internal math rendering engine is quite -powerful, sometimes you need TeX. Matplotlib supports external TeX -rendering of strings with the *usetex* option. - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png - :target: ../../gallery/text_labels_and_annotations/tex_demo.html - :align: center - :scale: 50 - - Tex Demo - -.. _screenshots_eeg_demo: - -EEG GUI -======= - -You can embed Matplotlib into pygtk, wx, Tk, or Qt applications. -Here is a screenshot of an EEG viewer called `pbrain -`__. - -.. image:: ../../_static/eeg_small.png - -The lower axes uses :func:`~matplotlib.pyplot.specgram` -to plot the spectrogram of one of the EEG channels. - -For examples of how to embed Matplotlib in different toolkits, see: - - * :doc:`/gallery/user_interfaces/embedding_in_gtk3_sgskip` - * :doc:`/gallery/user_interfaces/embedding_in_wx2_sgskip` - * :doc:`/gallery/user_interfaces/mpl_with_glade3_sgskip` - * :doc:`/gallery/user_interfaces/embedding_in_qt_sgskip` - * :doc:`/gallery/user_interfaces/embedding_in_tk_sgskip` - -XKCD-style sketch plots -======================= - -Just for fun, Matplotlib supports plotting in the style of `xkcd -`. - -.. figure:: ../../gallery/showcase/images/sphx_glr_xkcd_001.png - :target: ../../gallery/showcase/xkcd.html - :align: center - :scale: 50 - - xkcd - -Subplot example -=============== - -Many plot types can be combined in one figure to create -powerful and flexible representations of data. -""" - -import matplotlib.pyplot as plt -import numpy as np - -np.random.seed(19680801) -data = np.random.randn(2, 100) - -fig, axs = plt.subplots(2, 2, figsize=(5, 5)) -axs[0, 0].hist(data[0]) -axs[1, 0].scatter(data[0], data[1]) -axs[0, 1].plot(data[0], data[1]) -axs[1, 1].hist2d(data[0], data[1]) - -plt.show() diff --git a/_downloads/6b148f8779a2fc1ba8b57e7dab2fc778/colorbar_basics.ipynb b/_downloads/6b148f8779a2fc1ba8b57e7dab2fc778/colorbar_basics.ipynb deleted file mode 100644 index d8d478046fa..00000000000 --- a/_downloads/6b148f8779a2fc1ba8b57e7dab2fc778/colorbar_basics.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colorbar\n\n\nUse `~.figure.Figure.colorbar` by specifying the mappable object (here\nthe `~.matplotlib.image.AxesImage` returned by `~.axes.Axes.imshow`)\nand the axes to attach the colorbar to.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# setup some generic data\nN = 37\nx, y = np.mgrid[:N, :N]\nZ = (np.cos(x*0.2) + np.sin(y*0.3))\n\n# mask out the negative and positive values, respectively\nZpos = np.ma.masked_less(Z, 0)\nZneg = np.ma.masked_greater(Z, 0)\n\nfig, (ax1, ax2, ax3) = plt.subplots(figsize=(13, 3), ncols=3)\n\n# plot just the positive data and save the\n# color \"mappable\" object returned by ax1.imshow\npos = ax1.imshow(Zpos, cmap='Blues', interpolation='none')\n\n# add the colorbar using the figure's method,\n# telling which mappable we're talking about and\n# which axes object it should be near\nfig.colorbar(pos, ax=ax1)\n\n# repeat everything above for the negative data\nneg = ax2.imshow(Zneg, cmap='Reds_r', interpolation='none')\nfig.colorbar(neg, ax=ax2)\n\n# Plot both positive and negative values between +/- 1.2\npos_neg_clipped = ax3.imshow(Z, cmap='RdBu', vmin=-1.2, vmax=1.2,\n interpolation='none')\n# Add minorticks on the colorbar to make it easy to read the\n# values off the colorbar.\ncbar = fig.colorbar(pos_neg_clipped, ax=ax3, extend='both')\ncbar.minorticks_on()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.colorbar\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colorbar.Colorbar.minorticks_on\nmatplotlib.colorbar.Colorbar.minorticks_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6b1538fdddcb696b6bf30b3626f4a69c/layer_images.py b/_downloads/6b1538fdddcb696b6bf30b3626f4a69c/layer_images.py deleted file mode 100644 index 5b2ba0738a6..00000000000 --- a/_downloads/6b1538fdddcb696b6bf30b3626f4a69c/layer_images.py +++ /dev/null @@ -1,56 +0,0 @@ -""" -============ -Layer Images -============ - -Layer images above one another using alpha blending -""" -import matplotlib.pyplot as plt -import numpy as np - - -def func3(x, y): - return (1 - x / 2 + x**5 + y**3) * np.exp(-(x**2 + y**2)) - - -# make these smaller to increase the resolution -dx, dy = 0.05, 0.05 - -x = np.arange(-3.0, 3.0, dx) -y = np.arange(-3.0, 3.0, dy) -X, Y = np.meshgrid(x, y) - -# when layering multiple images, the images need to have the same -# extent. This does not mean they need to have the same shape, but -# they both need to render to the same coordinate system determined by -# xmin, xmax, ymin, ymax. Note if you use different interpolations -# for the images their apparent extent could be different due to -# interpolation edge effects - -extent = np.min(x), np.max(x), np.min(y), np.max(y) -fig = plt.figure(frameon=False) - -Z1 = np.add.outer(range(8), range(8)) % 2 # chessboard -im1 = plt.imshow(Z1, cmap=plt.cm.gray, interpolation='nearest', - extent=extent) - -Z2 = func3(X, Y) - -im2 = plt.imshow(Z2, cmap=plt.cm.viridis, alpha=.9, interpolation='bilinear', - extent=extent) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/6b214437e649f1dd320cbbb48e5290cc/masked_demo.ipynb b/_downloads/6b214437e649f1dd320cbbb48e5290cc/masked_demo.ipynb deleted file mode 120000 index b5ec2536fe6..00000000000 --- a/_downloads/6b214437e649f1dd320cbbb48e5290cc/masked_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6b214437e649f1dd320cbbb48e5290cc/masked_demo.ipynb \ No newline at end of file diff --git a/_downloads/6b2769f0494050cf6f1cddfdec2007be/artist_tests.py b/_downloads/6b2769f0494050cf6f1cddfdec2007be/artist_tests.py deleted file mode 120000 index 2b69ffd3c4a..00000000000 --- a/_downloads/6b2769f0494050cf6f1cddfdec2007be/artist_tests.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6b2769f0494050cf6f1cddfdec2007be/artist_tests.py \ No newline at end of file diff --git a/_downloads/6b29b20192d37f7166532043a9f8f03a/mathtext.py b/_downloads/6b29b20192d37f7166532043a9f8f03a/mathtext.py deleted file mode 120000 index 6b167e52fe0..00000000000 --- a/_downloads/6b29b20192d37f7166532043a9f8f03a/mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6b29b20192d37f7166532043a9f8f03a/mathtext.py \ No newline at end of file diff --git a/_downloads/6b29be35d014b2d42c5016d6fdf2530e/scatter_demo2.py b/_downloads/6b29be35d014b2d42c5016d6fdf2530e/scatter_demo2.py deleted file mode 100644 index da7d8433a01..00000000000 --- a/_downloads/6b29be35d014b2d42c5016d6fdf2530e/scatter_demo2.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============= -Scatter Demo2 -============= - -Demo of scatter plot with varying marker colors and sizes. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook - -# Load a numpy record array from yahoo csv data with fields date, open, close, -# volume, adj_close from the mpl-data/example directory. The record array -# stores the date as an np.datetime64 with a day unit ('D') in the date column. -with cbook.get_sample_data('goog.npz') as datafile: - price_data = np.load(datafile)['price_data'].view(np.recarray) -price_data = price_data[-250:] # get the most recent 250 trading days - -delta1 = np.diff(price_data.adj_close) / price_data.adj_close[:-1] - -# Marker size in units of points^2 -volume = (15 * price_data.volume[:-2] / price_data.volume[0])**2 -close = 0.003 * price_data.close[:-2] / 0.003 * price_data.open[:-2] - -fig, ax = plt.subplots() -ax.scatter(delta1[:-1], delta1[1:], c=close, s=volume, alpha=0.5) - -ax.set_xlabel(r'$\Delta_i$', fontsize=15) -ax.set_ylabel(r'$\Delta_{i+1}$', fontsize=15) -ax.set_title('Volume and percent change') - -ax.grid(True) -fig.tight_layout() - -plt.show() diff --git a/_downloads/6b463047a15728e9d8748290ce911718/pgf_fonts.ipynb b/_downloads/6b463047a15728e9d8748290ce911718/pgf_fonts.ipynb deleted file mode 120000 index d6e4b08bc93..00000000000 --- a/_downloads/6b463047a15728e9d8748290ce911718/pgf_fonts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6b463047a15728e9d8748290ce911718/pgf_fonts.ipynb \ No newline at end of file diff --git a/_downloads/6b46d89561e7f7d159500acb0eddbeb7/image_demo.ipynb b/_downloads/6b46d89561e7f7d159500acb0eddbeb7/image_demo.ipynb deleted file mode 120000 index 362e73f90d9..00000000000 --- a/_downloads/6b46d89561e7f7d159500acb0eddbeb7/image_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6b46d89561e7f7d159500acb0eddbeb7/image_demo.ipynb \ No newline at end of file diff --git a/_downloads/6b4d05c6b8388c1af173947c30162317/date.py b/_downloads/6b4d05c6b8388c1af173947c30162317/date.py deleted file mode 120000 index 415ab425fd4..00000000000 --- a/_downloads/6b4d05c6b8388c1af173947c30162317/date.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6b4d05c6b8388c1af173947c30162317/date.py \ No newline at end of file diff --git a/_downloads/6b59d489c4804611c2c1d34c4ae0cf31/trifinder_event_demo.py b/_downloads/6b59d489c4804611c2c1d34c4ae0cf31/trifinder_event_demo.py deleted file mode 120000 index b415dc613b6..00000000000 --- a/_downloads/6b59d489c4804611c2c1d34c4ae0cf31/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6b59d489c4804611c2c1d34c4ae0cf31/trifinder_event_demo.py \ No newline at end of file diff --git a/_downloads/6b63138cdc0c2b7259efcd7ef34a1e01/centered_ticklabels.ipynb b/_downloads/6b63138cdc0c2b7259efcd7ef34a1e01/centered_ticklabels.ipynb deleted file mode 120000 index 23b7bdb81e6..00000000000 --- a/_downloads/6b63138cdc0c2b7259efcd7ef34a1e01/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6b63138cdc0c2b7259efcd7ef34a1e01/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/6b63578db4a3f65150d70428eb8834b6/centered_ticklabels.py b/_downloads/6b63578db4a3f65150d70428eb8834b6/centered_ticklabels.py deleted file mode 100644 index d6d80d916e5..00000000000 --- a/_downloads/6b63578db4a3f65150d70428eb8834b6/centered_ticklabels.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -============================== -Centering labels between ticks -============================== - -Ticklabels are aligned relative to their associated tick. The alignment -'center', 'left', or 'right' can be controlled using the horizontal alignment -property:: - - for label in ax.xaxis.get_xticklabels(): - label.set_horizontalalignment('right') - -However there is no direct way to center the labels between ticks. To fake -this behavior, one can place a label on the minor ticks in between the major -ticks, and hide the major tick labels and minor ticks. - -Here is an example that labels the months, centered between the ticks. -""" - -import numpy as np -import matplotlib.cbook as cbook -import matplotlib.dates as dates -import matplotlib.ticker as ticker -import matplotlib.pyplot as plt - -# load some financial data; apple's stock price -with cbook.get_sample_data('aapl.npz') as fh: - r = np.load(fh)['price_data'].view(np.recarray) -r = r[-250:] # get the last 250 days -# Matplotlib works better with datetime.datetime than np.datetime64, but the -# latter is more portable. -date = r.date.astype('O') - -fig, ax = plt.subplots() -ax.plot(date, r.adj_close) - -ax.xaxis.set_major_locator(dates.MonthLocator()) -# 16 is a slight approximation since months differ in number of days. -ax.xaxis.set_minor_locator(dates.MonthLocator(bymonthday=16)) - -ax.xaxis.set_major_formatter(ticker.NullFormatter()) -ax.xaxis.set_minor_formatter(dates.DateFormatter('%b')) - -for tick in ax.xaxis.get_minor_ticks(): - tick.tick1line.set_markersize(0) - tick.tick2line.set_markersize(0) - tick.label1.set_horizontalalignment('center') - -imid = len(r) // 2 -ax.set_xlabel(str(date[imid].year)) -plt.show() diff --git a/_downloads/6b6873878147fd8de87927bba39aedb8/barchart.py b/_downloads/6b6873878147fd8de87927bba39aedb8/barchart.py deleted file mode 120000 index a1d56f992cb..00000000000 --- a/_downloads/6b6873878147fd8de87927bba39aedb8/barchart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6b6873878147fd8de87927bba39aedb8/barchart.py \ No newline at end of file diff --git a/_downloads/6b79e121aa085c35e06697e706157579/tex_demo.ipynb b/_downloads/6b79e121aa085c35e06697e706157579/tex_demo.ipynb deleted file mode 120000 index 5159909b1be..00000000000 --- a/_downloads/6b79e121aa085c35e06697e706157579/tex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6b79e121aa085c35e06697e706157579/tex_demo.ipynb \ No newline at end of file diff --git a/_downloads/6b7c8ead98e3d5a019af0b4761ecfd2b/gtk_spreadsheet_sgskip.ipynb b/_downloads/6b7c8ead98e3d5a019af0b4761ecfd2b/gtk_spreadsheet_sgskip.ipynb deleted file mode 100644 index 98f733ce8f4..00000000000 --- a/_downloads/6b7c8ead98e3d5a019af0b4761ecfd2b/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# GTK Spreadsheet\n\n\nExample of embedding Matplotlib in an application and interacting with a\ntreeview to store data. Double click on an entry to update plot data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import gi\ngi.require_version('Gtk', '3.0')\ngi.require_version('Gdk', '3.0')\nfrom gi.repository import Gtk, Gdk\n\nfrom matplotlib.backends.backend_gtk3agg import FigureCanvas # or gtk3cairo.\n\nfrom numpy.random import random\nfrom matplotlib.figure import Figure\n\n\nclass DataManager(Gtk.Window):\n num_rows, num_cols = 20, 10\n\n data = random((num_rows, num_cols))\n\n def __init__(self):\n super().__init__()\n self.set_default_size(600, 600)\n self.connect('destroy', lambda win: Gtk.main_quit())\n\n self.set_title('GtkListStore demo')\n self.set_border_width(8)\n\n vbox = Gtk.VBox(homogeneous=False, spacing=8)\n self.add(vbox)\n\n label = Gtk.Label(label='Double click a row to plot the data')\n\n vbox.pack_start(label, False, False, 0)\n\n sw = Gtk.ScrolledWindow()\n sw.set_shadow_type(Gtk.ShadowType.ETCHED_IN)\n sw.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)\n vbox.pack_start(sw, True, True, 0)\n\n model = self.create_model()\n\n self.treeview = Gtk.TreeView(model=model)\n\n # Matplotlib stuff\n fig = Figure(figsize=(6, 4))\n\n self.canvas = FigureCanvas(fig) # a Gtk.DrawingArea\n vbox.pack_start(self.canvas, True, True, 0)\n ax = fig.add_subplot(111)\n self.line, = ax.plot(self.data[0, :], 'go') # plot the first row\n\n self.treeview.connect('row-activated', self.plot_row)\n sw.add(self.treeview)\n\n self.add_columns()\n\n self.add_events(Gdk.EventMask.BUTTON_PRESS_MASK |\n Gdk.EventMask.KEY_PRESS_MASK |\n Gdk.EventMask.KEY_RELEASE_MASK)\n\n def plot_row(self, treeview, path, view_column):\n ind, = path # get the index into data\n points = self.data[ind, :]\n self.line.set_ydata(points)\n self.canvas.draw()\n\n def add_columns(self):\n for i in range(self.num_cols):\n column = Gtk.TreeViewColumn(str(i), Gtk.CellRendererText(), text=i)\n self.treeview.append_column(column)\n\n def create_model(self):\n types = [float] * self.num_cols\n store = Gtk.ListStore(*types)\n for row in self.data:\n store.append(tuple(row))\n return store\n\n\nmanager = DataManager()\nmanager.show_all()\nGtk.main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6ba1171a13e33b9baf12109d9e7a147b/3D.py b/_downloads/6ba1171a13e33b9baf12109d9e7a147b/3D.py deleted file mode 120000 index 0d954a5ac0d..00000000000 --- a/_downloads/6ba1171a13e33b9baf12109d9e7a147b/3D.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6ba1171a13e33b9baf12109d9e7a147b/3D.py \ No newline at end of file diff --git a/_downloads/6ba617b750ae05171efbe3c6939ab00e/agg_buffer_to_array.ipynb b/_downloads/6ba617b750ae05171efbe3c6939ab00e/agg_buffer_to_array.ipynb deleted file mode 120000 index 1d2bdce30d6..00000000000 --- a/_downloads/6ba617b750ae05171efbe3c6939ab00e/agg_buffer_to_array.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/6ba617b750ae05171efbe3c6939ab00e/agg_buffer_to_array.ipynb \ No newline at end of file diff --git a/_downloads/6baf5f68b357f633b100f27b840c3569/shading_example.ipynb b/_downloads/6baf5f68b357f633b100f27b840c3569/shading_example.ipynb deleted file mode 120000 index f7675275327..00000000000 --- a/_downloads/6baf5f68b357f633b100f27b840c3569/shading_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6baf5f68b357f633b100f27b840c3569/shading_example.ipynb \ No newline at end of file diff --git a/_downloads/6bb2b30f1fde89981c1e1cac2ebaac86/affine_image.ipynb b/_downloads/6bb2b30f1fde89981c1e1cac2ebaac86/affine_image.ipynb deleted file mode 120000 index 7eb9b771460..00000000000 --- a/_downloads/6bb2b30f1fde89981c1e1cac2ebaac86/affine_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6bb2b30f1fde89981c1e1cac2ebaac86/affine_image.ipynb \ No newline at end of file diff --git a/_downloads/6bb713e635f8898fbc28683331020d84/joinstyle.py b/_downloads/6bb713e635f8898fbc28683331020d84/joinstyle.py deleted file mode 120000 index 4926ec6150f..00000000000 --- a/_downloads/6bb713e635f8898fbc28683331020d84/joinstyle.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6bb713e635f8898fbc28683331020d84/joinstyle.py \ No newline at end of file diff --git a/_downloads/6bb751639dc83f6f55cb7d0902f42ba8/embedding_in_wx2_sgskip.ipynb b/_downloads/6bb751639dc83f6f55cb7d0902f42ba8/embedding_in_wx2_sgskip.ipynb deleted file mode 120000 index b45868066cb..00000000000 --- a/_downloads/6bb751639dc83f6f55cb7d0902f42ba8/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6bb751639dc83f6f55cb7d0902f42ba8/embedding_in_wx2_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6bbb25b5f37c9aa5cf3f177c285dcd72/svg_tooltip_sgskip.ipynb b/_downloads/6bbb25b5f37c9aa5cf3f177c285dcd72/svg_tooltip_sgskip.ipynb deleted file mode 120000 index e05a77b73fa..00000000000 --- a/_downloads/6bbb25b5f37c9aa5cf3f177c285dcd72/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6bbb25b5f37c9aa5cf3f177c285dcd72/svg_tooltip_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6bc01ce76264a4b577af90ac7854a71e/embedding_in_wx2_sgskip.ipynb b/_downloads/6bc01ce76264a4b577af90ac7854a71e/embedding_in_wx2_sgskip.ipynb deleted file mode 120000 index ba19bcdd6d0..00000000000 --- a/_downloads/6bc01ce76264a4b577af90ac7854a71e/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6bc01ce76264a4b577af90ac7854a71e/embedding_in_wx2_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6bcbe7863c52a55f13660306f41ba8fb/contour3d_3.ipynb b/_downloads/6bcbe7863c52a55f13660306f41ba8fb/contour3d_3.ipynb deleted file mode 100644 index f1a00dd5b48..00000000000 --- a/_downloads/6bcbe7863c52a55f13660306f41ba8fb/contour3d_3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Projecting contour profiles onto a graph\n\n\nDemonstrates displaying a 3D surface while also projecting contour 'profiles'\nonto the 'walls' of the graph.\n\nSee contourf3d_demo2 for the filled version.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot the 3D surface\nax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3)\n\n# Plot projections of the contours for each dimension. By choosing offsets\n# that match the appropriate axes limits, the projected contours will sit on\n# the 'walls' of the graph\ncset = ax.contour(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)\ncset = ax.contour(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)\ncset = ax.contour(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)\n\nax.set_xlim(-40, 40)\nax.set_ylim(-40, 40)\nax.set_zlim(-100, 100)\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6bd45975ccd440f0cbc08b0d32a5de2a/print_stdout_sgskip.ipynb b/_downloads/6bd45975ccd440f0cbc08b0d32a5de2a/print_stdout_sgskip.ipynb deleted file mode 100644 index 238c0796898..00000000000 --- a/_downloads/6bd45975ccd440f0cbc08b0d32a5de2a/print_stdout_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Print Stdout\n\n\nprint png to standard out\n\nusage: python print_stdout.py > somefile.png\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import sys\nimport matplotlib\nmatplotlib.use('Agg')\nimport matplotlib.pyplot as plt\n\nplt.plot([1, 2, 3])\nplt.savefig(sys.stdout.buffer)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6bdd23430f5da7a7d0038e8756e161e0/colormap_normalizations_diverging.py b/_downloads/6bdd23430f5da7a7d0038e8756e161e0/colormap_normalizations_diverging.py deleted file mode 100644 index 7a5a68c29b7..00000000000 --- a/_downloads/6bdd23430f5da7a7d0038e8756e161e0/colormap_normalizations_diverging.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -===================================== -DivergingNorm colormap normalization -===================================== - -Sometimes we want to have a different colormap on either side of a -conceptual center point, and we want those two colormaps to have -different linear scales. An example is a topographic map where the land -and ocean have a center at zero, but land typically has a greater -elevation range than the water has depth range, and they are often -represented by a different colormap. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import matplotlib.colors as colors - -filename = cbook.get_sample_data('topobathy.npz', asfileobj=False) -with np.load(filename) as dem: - topo = dem['topo'] - longitude = dem['longitude'] - latitude = dem['latitude'] - -fig, ax = plt.subplots(constrained_layout=True) -# make a colormap that has land and ocean clearly delineated and of the -# same length (256 + 256) -colors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256)) -colors_land = plt.cm.terrain(np.linspace(0.25, 1, 256)) -all_colors = np.vstack((colors_undersea, colors_land)) -terrain_map = colors.LinearSegmentedColormap.from_list('terrain_map', - all_colors) - -# make the norm: Note the center is offset so that the land has more -# dynamic range: -divnorm = colors.DivergingNorm(vmin=-500, vcenter=0, vmax=4000) - -pcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm, - cmap=terrain_map,) -ax.set_xlabel('Lon $[^o E]$') -ax.set_ylabel('Lat $[^o N]$') -ax.set_aspect(1 / np.cos(np.deg2rad(49))) -fig.colorbar(pcm, shrink=0.6, extend='both', label='Elevation [m]') -plt.show() diff --git a/_downloads/6be395d0b1c43b03d3eee0f813936f30/contour3d.py b/_downloads/6be395d0b1c43b03d3eee0f813936f30/contour3d.py deleted file mode 100644 index d4bfdec9693..00000000000 --- a/_downloads/6be395d0b1c43b03d3eee0f813936f30/contour3d.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -================================================== -Demonstrates plotting contour (level) curves in 3D -================================================== - -This is like a contour plot in 2D except that the f(x,y)=c curve is plotted -on the plane z=c. -""" - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot contour curves -cset = ax.contour(X, Y, Z, cmap=cm.coolwarm) - -ax.clabel(cset, fontsize=9, inline=1) - -plt.show() diff --git a/_downloads/6be44420200239fd25571917f8501123/voxels.py b/_downloads/6be44420200239fd25571917f8501123/voxels.py deleted file mode 100644 index 4ba96fff6c6..00000000000 --- a/_downloads/6be44420200239fd25571917f8501123/voxels.py +++ /dev/null @@ -1,38 +0,0 @@ -''' -========================== -3D voxel / volumetric plot -========================== - -Demonstrates plotting 3D volumetric objects with ``ax.voxels`` -''' - -import matplotlib.pyplot as plt -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -# prepare some coordinates -x, y, z = np.indices((8, 8, 8)) - -# draw cuboids in the top left and bottom right corners, and a link between them -cube1 = (x < 3) & (y < 3) & (z < 3) -cube2 = (x >= 5) & (y >= 5) & (z >= 5) -link = abs(x - y) + abs(y - z) + abs(z - x) <= 2 - -# combine the objects into a single boolean array -voxels = cube1 | cube2 | link - -# set the colors of each object -colors = np.empty(voxels.shape, dtype=object) -colors[link] = 'red' -colors[cube1] = 'blue' -colors[cube2] = 'green' - -# and plot everything -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(voxels, facecolors=colors, edgecolor='k') - -plt.show() diff --git a/_downloads/6bef8ca682beace0061c5f1a9c6687af/double_pendulum_sgskip.py b/_downloads/6bef8ca682beace0061c5f1a9c6687af/double_pendulum_sgskip.py deleted file mode 120000 index 5ee7e252e0b..00000000000 --- a/_downloads/6bef8ca682beace0061c5f1a9c6687af/double_pendulum_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6bef8ca682beace0061c5f1a9c6687af/double_pendulum_sgskip.py \ No newline at end of file diff --git a/_downloads/6bf1f86ac14b705a7352333c341c3b82/ticklabels_rotation.py b/_downloads/6bf1f86ac14b705a7352333c341c3b82/ticklabels_rotation.py deleted file mode 120000 index e39d3689b88..00000000000 --- a/_downloads/6bf1f86ac14b705a7352333c341c3b82/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6bf1f86ac14b705a7352333c341c3b82/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/6bf699ad105712a79f66674b05094a6e/evans_test.ipynb b/_downloads/6bf699ad105712a79f66674b05094a6e/evans_test.ipynb deleted file mode 120000 index b72ddf5f1fa..00000000000 --- a/_downloads/6bf699ad105712a79f66674b05094a6e/evans_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6bf699ad105712a79f66674b05094a6e/evans_test.ipynb \ No newline at end of file diff --git a/_downloads/6bfc9bc3e9571799e42ecd4935bcd070/gridspec_and_subplots.py b/_downloads/6bfc9bc3e9571799e42ecd4935bcd070/gridspec_and_subplots.py deleted file mode 120000 index e649fd9e640..00000000000 --- a/_downloads/6bfc9bc3e9571799e42ecd4935bcd070/gridspec_and_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6bfc9bc3e9571799e42ecd4935bcd070/gridspec_and_subplots.py \ No newline at end of file diff --git a/_downloads/6c12378081cacdc3722f0f83cc7d33b7/demo_axis_direction.ipynb b/_downloads/6c12378081cacdc3722f0f83cc7d33b7/demo_axis_direction.ipynb deleted file mode 120000 index 5381c57f093..00000000000 --- a/_downloads/6c12378081cacdc3722f0f83cc7d33b7/demo_axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6c12378081cacdc3722f0f83cc7d33b7/demo_axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/6c161c1b7ec39ea964428b43bf6996f4/arrow_demo.ipynb b/_downloads/6c161c1b7ec39ea964428b43bf6996f4/arrow_demo.ipynb deleted file mode 120000 index a73d66f1193..00000000000 --- a/_downloads/6c161c1b7ec39ea964428b43bf6996f4/arrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6c161c1b7ec39ea964428b43bf6996f4/arrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/6c1d5f1b6c20eb904b7e04bd8306659e/color_demo.py b/_downloads/6c1d5f1b6c20eb904b7e04bd8306659e/color_demo.py deleted file mode 100644 index 58c0341247f..00000000000 --- a/_downloads/6c1d5f1b6c20eb904b7e04bd8306659e/color_demo.py +++ /dev/null @@ -1,77 +0,0 @@ -""" -========== -Color Demo -========== - -Matplotlib recognizes the following formats to specify a color: - -1) an RGB or RGBA tuple of float values in ``[0, 1]`` (e.g. ``(0.1, 0.2, 0.5)`` - or ``(0.1, 0.2, 0.5, 0.3)``). RGBA is short for Red, Green, Blue, Alpha; -2) a hex RGB or RGBA string (e.g., ``'#0F0F0F'`` or ``'#0F0F0F0F'``); -3) a string representation of a float value in ``[0, 1]`` inclusive for gray - level (e.g., ``'0.5'``); -4) a single letter string, i.e. one of - ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``; -5) a X11/CSS4 ("html") color name, e.g. ``"blue"``; -6) a name from the `xkcd color survey `__, - prefixed with ``'xkcd:'`` (e.g., ``'xkcd:sky blue'``); -7) a "Cn" color spec, i.e. `'C'` followed by a number, which is an index into - the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the - indexing is intended to occur at rendering time, and defaults to black if - the cycle does not include color. -8) one of ``{'tab:blue', 'tab:orange', 'tab:green', - 'tab:red', 'tab:purple', 'tab:brown', 'tab:pink', - 'tab:gray', 'tab:olive', 'tab:cyan'}`` which are the Tableau Colors from the - 'tab10' categorical palette (which is the default color cycle); - -For more information on colors in matplotlib see - -* the :doc:`/tutorials/colors/colors` tutorial; -* the `matplotlib.colors` API; -* the :doc:`/gallery/color/named_colors` example. -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.linspace(0.0, 2.0, 201) -s = np.sin(2 * np.pi * t) - -# 1) RGB tuple: -fig, ax = plt.subplots(facecolor=(.18, .31, .31)) -# 2) hex string: -ax.set_facecolor('#eafff5') -# 3) gray level string: -ax.set_title('Voltage vs. time chart', color='0.7') -# 4) single letter color string -ax.set_xlabel('time (s)', color='c') -# 5) a named color: -ax.set_ylabel('voltage (mV)', color='peachpuff') -# 6) a named xkcd color: -ax.plot(t, s, 'xkcd:crimson') -# 7) Cn notation: -ax.plot(t, .7*s, color='C4', linestyle='--') -# 8) tab notation: -ax.tick_params(labelcolor='tab:orange') - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.set_facecolor -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.tick_params diff --git a/_downloads/6c27c57017b3dcc8dcbefcbfe5ee7935/colors.py b/_downloads/6c27c57017b3dcc8dcbefcbfe5ee7935/colors.py deleted file mode 120000 index 55c5bc29844..00000000000 --- a/_downloads/6c27c57017b3dcc8dcbefcbfe5ee7935/colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6c27c57017b3dcc8dcbefcbfe5ee7935/colors.py \ No newline at end of file diff --git a/_downloads/6c295f6976f31da0d525d88fa1c27da3/triinterp_demo.py b/_downloads/6c295f6976f31da0d525d88fa1c27da3/triinterp_demo.py deleted file mode 120000 index 79de1b0e828..00000000000 --- a/_downloads/6c295f6976f31da0d525d88fa1c27da3/triinterp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6c295f6976f31da0d525d88fa1c27da3/triinterp_demo.py \ No newline at end of file diff --git a/_downloads/6c3d02d1f70d6a44c86b086e4f2b42d4/errorbars_and_boxes.py b/_downloads/6c3d02d1f70d6a44c86b086e4f2b42d4/errorbars_and_boxes.py deleted file mode 120000 index 6fe5df6d1a3..00000000000 --- a/_downloads/6c3d02d1f70d6a44c86b086e4f2b42d4/errorbars_and_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6c3d02d1f70d6a44c86b086e4f2b42d4/errorbars_and_boxes.py \ No newline at end of file diff --git a/_downloads/6c409c79d2666e83778d189def42332c/titles_demo.ipynb b/_downloads/6c409c79d2666e83778d189def42332c/titles_demo.ipynb deleted file mode 120000 index cb4e48a7003..00000000000 --- a/_downloads/6c409c79d2666e83778d189def42332c/titles_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6c409c79d2666e83778d189def42332c/titles_demo.ipynb \ No newline at end of file diff --git a/_downloads/6c41fd2a1844146e3502e594542b11f4/date_index_formatter2.py b/_downloads/6c41fd2a1844146e3502e594542b11f4/date_index_formatter2.py deleted file mode 120000 index 2c0703e1de2..00000000000 --- a/_downloads/6c41fd2a1844146e3502e594542b11f4/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6c41fd2a1844146e3502e594542b11f4/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/6c4d7bbde2274b6dd49aa11213bf60fd/tricontour3d.py b/_downloads/6c4d7bbde2274b6dd49aa11213bf60fd/tricontour3d.py deleted file mode 100644 index feb187cbaa1..00000000000 --- a/_downloads/6c4d7bbde2274b6dd49aa11213bf60fd/tricontour3d.py +++ /dev/null @@ -1,48 +0,0 @@ -""" -========================== -Triangular 3D contour plot -========================== - -Contour plots of unstructured triangular grids. - -The data used is the same as in the second plot of trisurf3d_demo2. -tricontourf3d_demo shows the filled version of this example. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -n_angles = 48 -n_radii = 8 -min_radius = 0.25 - -# Create the mesh in polar coordinates and compute x, y, z. -radii = np.linspace(min_radius, 0.95, n_radii) -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi/n_angles - -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -z = (np.cos(radii)*np.cos(3*angles)).flatten() - -# Create a custom triangulation. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.tricontour(triang, z, cmap=plt.cm.CMRmap) - -# Customize the view angle so it's easier to understand the plot. -ax.view_init(elev=45.) - -plt.show() diff --git a/_downloads/6c55cdc18b6c6e194ce841711fc5675f/interpolation_methods.ipynb b/_downloads/6c55cdc18b6c6e194ce841711fc5675f/interpolation_methods.ipynb deleted file mode 120000 index 240ea78ce8b..00000000000 --- a/_downloads/6c55cdc18b6c6e194ce841711fc5675f/interpolation_methods.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6c55cdc18b6c6e194ce841711fc5675f/interpolation_methods.ipynb \ No newline at end of file diff --git a/_downloads/6c6dcfe2c06c819152bbd71d591bac13/ellipse_demo.py b/_downloads/6c6dcfe2c06c819152bbd71d591bac13/ellipse_demo.py deleted file mode 120000 index 064f7a8c747..00000000000 --- a/_downloads/6c6dcfe2c06c819152bbd71d591bac13/ellipse_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6c6dcfe2c06c819152bbd71d591bac13/ellipse_demo.py \ No newline at end of file diff --git a/_downloads/6c846477b764f9011d0b5d88c25cf053/figure_title.ipynb b/_downloads/6c846477b764f9011d0b5d88c25cf053/figure_title.ipynb deleted file mode 120000 index ec77c97da7f..00000000000 --- a/_downloads/6c846477b764f9011d0b5d88c25cf053/figure_title.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6c846477b764f9011d0b5d88c25cf053/figure_title.ipynb \ No newline at end of file diff --git a/_downloads/6c9a3a2030ed8bdef160c9aeadb414b5/usetex.py b/_downloads/6c9a3a2030ed8bdef160c9aeadb414b5/usetex.py deleted file mode 120000 index adfd2e3f401..00000000000 --- a/_downloads/6c9a3a2030ed8bdef160c9aeadb414b5/usetex.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6c9a3a2030ed8bdef160c9aeadb414b5/usetex.py \ No newline at end of file diff --git a/_downloads/6c9dea6f5d95cfdc4ff1f625a1b6ef9c/marker_path.py b/_downloads/6c9dea6f5d95cfdc4ff1f625a1b6ef9c/marker_path.py deleted file mode 120000 index 5906a46c184..00000000000 --- a/_downloads/6c9dea6f5d95cfdc4ff1f625a1b6ef9c/marker_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6c9dea6f5d95cfdc4ff1f625a1b6ef9c/marker_path.py \ No newline at end of file diff --git a/_downloads/6ca209f82dbbffcb986d1e4c08c2c584/quiver_simple_demo.py b/_downloads/6ca209f82dbbffcb986d1e4c08c2c584/quiver_simple_demo.py deleted file mode 120000 index ffa16ddd595..00000000000 --- a/_downloads/6ca209f82dbbffcb986d1e4c08c2c584/quiver_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6ca209f82dbbffcb986d1e4c08c2c584/quiver_simple_demo.py \ No newline at end of file diff --git a/_downloads/6cad2b8eb71cc10202c0d862d4c80aff/histogram_multihist.ipynb b/_downloads/6cad2b8eb71cc10202c0d862d4c80aff/histogram_multihist.ipynb deleted file mode 120000 index ae8fa569c6e..00000000000 --- a/_downloads/6cad2b8eb71cc10202c0d862d4c80aff/histogram_multihist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6cad2b8eb71cc10202c0d862d4c80aff/histogram_multihist.ipynb \ No newline at end of file diff --git a/_downloads/6cb7f51ddd4e7581b469f50444b4d32f/buttons.ipynb b/_downloads/6cb7f51ddd4e7581b469f50444b4d32f/buttons.ipynb deleted file mode 100644 index 57ab060c65b..00000000000 --- a/_downloads/6cb7f51ddd4e7581b469f50444b4d32f/buttons.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Buttons\n\n\nConstructing a simple button GUI to modify a sine wave.\n\nThe ``next`` and ``previous`` button widget helps visualize the wave with\nnew frequencies.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import Button\n\nfreqs = np.arange(2, 20, 3)\n\nfig, ax = plt.subplots()\nplt.subplots_adjust(bottom=0.2)\nt = np.arange(0.0, 1.0, 0.001)\ns = np.sin(2*np.pi*freqs[0]*t)\nl, = plt.plot(t, s, lw=2)\n\n\nclass Index(object):\n ind = 0\n\n def next(self, event):\n self.ind += 1\n i = self.ind % len(freqs)\n ydata = np.sin(2*np.pi*freqs[i]*t)\n l.set_ydata(ydata)\n plt.draw()\n\n def prev(self, event):\n self.ind -= 1\n i = self.ind % len(freqs)\n ydata = np.sin(2*np.pi*freqs[i]*t)\n l.set_ydata(ydata)\n plt.draw()\n\ncallback = Index()\naxprev = plt.axes([0.7, 0.05, 0.1, 0.075])\naxnext = plt.axes([0.81, 0.05, 0.1, 0.075])\nbnext = Button(axnext, 'Next')\nbnext.on_clicked(callback.next)\nbprev = Button(axprev, 'Previous')\nbprev.on_clicked(callback.prev)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6cbc60bb2da504174e4492fa0afe4c4a/dashpointlabel.py b/_downloads/6cbc60bb2da504174e4492fa0afe4c4a/dashpointlabel.py deleted file mode 100644 index 96a8b756461..00000000000 --- a/_downloads/6cbc60bb2da504174e4492fa0afe4c4a/dashpointlabel.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -=============== -Dashpoint Label -=============== - -""" - -import warnings - -import matplotlib.pyplot as plt - -warnings.simplefilter("ignore") # Ignore deprecation of withdash. - -DATA = ((1, 3), - (2, 4), - (3, 1), - (4, 2)) -# dash_style = -# direction, length, (text)rotation, dashrotation, push -# (The parameters are varied to show their effects, not for visual appeal). -dash_style = ( - (0, 20, -15, 30, 10), - (1, 30, 0, 15, 10), - (0, 40, 15, 15, 10), - (1, 20, 30, 60, 10)) - -fig, ax = plt.subplots() - -(x, y) = zip(*DATA) -ax.plot(x, y, marker='o') -for i in range(len(DATA)): - (x, y) = DATA[i] - (dd, dl, r, dr, dp) = dash_style[i] - t = ax.text(x, y, str((x, y)), withdash=True, - dashdirection=dd, - dashlength=dl, - rotation=r, - dashrotation=dr, - dashpush=dp, - ) - -ax.set_xlim((0, 5)) -ax.set_ylim((0, 5)) -ax.set(title="NOTE: The withdash parameter is deprecated.") - -plt.show() diff --git a/_downloads/6cc42138e64319daf6301b5c1a942b40/demo_constrained_layout.py b/_downloads/6cc42138e64319daf6301b5c1a942b40/demo_constrained_layout.py deleted file mode 100644 index e7aca95777d..00000000000 --- a/_downloads/6cc42138e64319daf6301b5c1a942b40/demo_constrained_layout.py +++ /dev/null @@ -1,74 +0,0 @@ -""" -===================================== -Resizing axes with constrained layout -===================================== - -Constrained layout attempts to resize subplots in -a figure so that there are no overlaps between axes objects and labels -on the axes. - -See :doc:`/tutorials/intermediate/constrainedlayout_guide` for more details and -:doc:`/tutorials/intermediate/tight_layout_guide` for an alternative. - -""" - -import matplotlib.pyplot as plt - - -def example_plot(ax): - ax.plot([1, 2]) - ax.set_xlabel('x-label', fontsize=12) - ax.set_ylabel('y-label', fontsize=12) - ax.set_title('Title', fontsize=14) - - -############################################################################### -# If we don't use constrained_layout, then labels overlap the axes - -fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=False) - -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# adding ``constrained_layout=True`` automatically adjusts. - -fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True) - -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# Below is a more complicated example using nested gridspecs. - -fig = plt.figure(constrained_layout=True) - -import matplotlib.gridspec as gridspec - -gs0 = gridspec.GridSpec(1, 2, figure=fig) - -gs1 = gridspec.GridSpecFromSubplotSpec(3, 1, subplot_spec=gs0[0]) -for n in range(3): - ax = fig.add_subplot(gs1[n]) - example_plot(ax) - - -gs2 = gridspec.GridSpecFromSubplotSpec(2, 1, subplot_spec=gs0[1]) -for n in range(2): - ax = fig.add_subplot(gs2[n]) - example_plot(ax) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.gridspec.GridSpec -matplotlib.gridspec.GridSpecFromSubplotSpec diff --git a/_downloads/6cd10017098151c7ee7dbc788220e9d7/resample.ipynb b/_downloads/6cd10017098151c7ee7dbc788220e9d7/resample.ipynb deleted file mode 120000 index d204e3d9a6c..00000000000 --- a/_downloads/6cd10017098151c7ee7dbc788220e9d7/resample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6cd10017098151c7ee7dbc788220e9d7/resample.ipynb \ No newline at end of file diff --git a/_downloads/6cd1509ff92f46676b6dab2d813fb7ad/ganged_plots.ipynb b/_downloads/6cd1509ff92f46676b6dab2d813fb7ad/ganged_plots.ipynb deleted file mode 120000 index 27dc2aa892d..00000000000 --- a/_downloads/6cd1509ff92f46676b6dab2d813fb7ad/ganged_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6cd1509ff92f46676b6dab2d813fb7ad/ganged_plots.ipynb \ No newline at end of file diff --git a/_downloads/6cdafba69060eeaa54f275f259eb149f/accented_text.ipynb b/_downloads/6cdafba69060eeaa54f275f259eb149f/accented_text.ipynb deleted file mode 100644 index a15447a3ca8..00000000000 --- a/_downloads/6cdafba69060eeaa54f275f259eb149f/accented_text.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using accented text in matplotlib\n\n\nMatplotlib supports accented characters via TeX mathtext or unicode.\n\nUsing mathtext, the following accents are provided: \\hat, \\breve, \\grave, \\bar,\n\\acute, \\tilde, \\vec, \\dot, \\ddot. All of them have the same syntax,\ne.g., to make an overbar you do \\bar{o} or to make an o umlaut you do\n\\ddot{o}. The shortcuts are also provided, e.g.,: \\\"o \\'e \\`e \\~n \\.x\n\\^y\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Mathtext demo\nfig, ax = plt.subplots()\nax.plot(range(10))\nax.set_title(r'$\\ddot{o}\\acute{e}\\grave{e}\\hat{O}'\n r'\\breve{i}\\bar{A}\\tilde{n}\\vec{q}$', fontsize=20)\n\n# Shorthand is also supported and curly braces are optional\nax.set_xlabel(r\"\"\"$\\\"o\\ddot o \\'e\\`e\\~n\\.x\\^y$\"\"\", fontsize=20)\nax.text(4, 0.5, r\"$F=m\\ddot{x}$\")\nfig.tight_layout()\n\n# Unicode demo\nfig, ax = plt.subplots()\nax.set_title(\"GISCARD CHAHUT\u00c9 \u00c0 L'ASSEMBL\u00c9E\")\nax.set_xlabel(\"LE COUP DE D\u00c9 DE DE GAULLE\")\nax.set_ylabel('Andr\u00e9 was here!')\nax.text(0.2, 0.8, 'Institut f\u00fcr Festk\u00f6rperphysik', rotation=45)\nax.text(0.4, 0.2, 'AVA (check kerning)')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6cdc8b32490bd1feb81ef042bace134e/colorbar_only.py b/_downloads/6cdc8b32490bd1feb81ef042bace134e/colorbar_only.py deleted file mode 120000 index ac86563f230..00000000000 --- a/_downloads/6cdc8b32490bd1feb81ef042bace134e/colorbar_only.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6cdc8b32490bd1feb81ef042bace134e/colorbar_only.py \ No newline at end of file diff --git a/_downloads/6cde104ae50fa30fd97d9afe2c6e0074/colormap_normalizations_bounds.ipynb b/_downloads/6cde104ae50fa30fd97d9afe2c6e0074/colormap_normalizations_bounds.ipynb deleted file mode 120000 index 1218ce2e702..00000000000 --- a/_downloads/6cde104ae50fa30fd97d9afe2c6e0074/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6cde104ae50fa30fd97d9afe2c6e0074/colormap_normalizations_bounds.ipynb \ No newline at end of file diff --git a/_downloads/6cdfb202c8549361d6df28ac801e4280/bar_of_pie.py b/_downloads/6cdfb202c8549361d6df28ac801e4280/bar_of_pie.py deleted file mode 120000 index dbe60ded968..00000000000 --- a/_downloads/6cdfb202c8549361d6df28ac801e4280/bar_of_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6cdfb202c8549361d6df28ac801e4280/bar_of_pie.py \ No newline at end of file diff --git a/_downloads/6cf6861fe4c1ca2b0d4cd4eac4322a07/text3d.ipynb b/_downloads/6cf6861fe4c1ca2b0d4cd4eac4322a07/text3d.ipynb deleted file mode 120000 index ee6511e6432..00000000000 --- a/_downloads/6cf6861fe4c1ca2b0d4cd4eac4322a07/text3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6cf6861fe4c1ca2b0d4cd4eac4322a07/text3d.ipynb \ No newline at end of file diff --git a/_downloads/6cfb39a0348117de43ea11c9ef9f1dae/constrainedlayout_guide.py b/_downloads/6cfb39a0348117de43ea11c9ef9f1dae/constrainedlayout_guide.py deleted file mode 120000 index 15d0ce97d37..00000000000 --- a/_downloads/6cfb39a0348117de43ea11c9ef9f1dae/constrainedlayout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6cfb39a0348117de43ea11c9ef9f1dae/constrainedlayout_guide.py \ No newline at end of file diff --git a/_downloads/6cfcda87e5474a369c49c8f452c99cbe/rasterization_demo.py b/_downloads/6cfcda87e5474a369c49c8f452c99cbe/rasterization_demo.py deleted file mode 120000 index fd7a07fab36..00000000000 --- a/_downloads/6cfcda87e5474a369c49c8f452c99cbe/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6cfcda87e5474a369c49c8f452c99cbe/rasterization_demo.py \ No newline at end of file diff --git a/_downloads/6d07fac6c056be6d05a6b5465e045856/image_thumbnail_sgskip.py b/_downloads/6d07fac6c056be6d05a6b5465e045856/image_thumbnail_sgskip.py deleted file mode 120000 index 6fe20aa10d9..00000000000 --- a/_downloads/6d07fac6c056be6d05a6b5465e045856/image_thumbnail_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6d07fac6c056be6d05a6b5465e045856/image_thumbnail_sgskip.py \ No newline at end of file diff --git a/_downloads/6d214f31d57999a93c8a6e18f0ce6aab/color_cycle.py b/_downloads/6d214f31d57999a93c8a6e18f0ce6aab/color_cycle.py deleted file mode 100644 index cc400e3e7da..00000000000 --- a/_downloads/6d214f31d57999a93c8a6e18f0ce6aab/color_cycle.py +++ /dev/null @@ -1,125 +0,0 @@ -""" -=================== -Styling with cycler -=================== - -Demo of custom property-cycle settings to control colors and other style -properties for multi-line plots. - -.. note:: - - More complete documentation of the ``cycler`` API can be found - `here `_. - -This example demonstrates two different APIs: - -1. Setting the default rc parameter specifying the property cycle. - This affects all subsequent axes (but not axes already created). -2. Setting the property cycle for a single pair of axes. - -""" -from cycler import cycler -import numpy as np -import matplotlib.pyplot as plt - -############################################################################### -# First we'll generate some sample data, in this case, four offset sine -# curves. -x = np.linspace(0, 2 * np.pi, 50) -offsets = np.linspace(0, 2 * np.pi, 4, endpoint=False) -yy = np.transpose([np.sin(x + phi) for phi in offsets]) - -############################################################################### -# Now ``yy`` has shape -print(yy.shape) - -############################################################################### -# So ``yy[:, i]`` will give you the ``i``-th offset sine curve. Let's set the -# default ``prop_cycle`` using :func:`matplotlib.pyplot.rc`. We'll combine a -# color cycler and a linestyle cycler by adding (``+``) two ``cycler``'s -# together. See the bottom of this tutorial for more information about -# combining different cyclers. -default_cycler = (cycler(color=['r', 'g', 'b', 'y']) + - cycler(linestyle=['-', '--', ':', '-.'])) - -plt.rc('lines', linewidth=4) -plt.rc('axes', prop_cycle=default_cycler) - -############################################################################### -# Now we'll generate a figure with two axes, one on top of the other. On the -# first axis, we'll plot with the default cycler. On the second axis, we'll -# set the ``prop_cycle`` using :func:`matplotlib.axes.Axes.set_prop_cycle`, -# which will only set the ``prop_cycle`` for this :mod:`matplotlib.axes.Axes` -# instance. We'll use a second ``cycler`` that combines a color cycler and a -# linewidth cycler. -custom_cycler = (cycler(color=['c', 'm', 'y', 'k']) + - cycler(lw=[1, 2, 3, 4])) - -fig, (ax0, ax1) = plt.subplots(nrows=2) -ax0.plot(yy) -ax0.set_title('Set default color cycle to rgby') -ax1.set_prop_cycle(custom_cycler) -ax1.plot(yy) -ax1.set_title('Set axes color cycle to cmyk') - -# Add a bit more space between the two plots. -fig.subplots_adjust(hspace=0.3) -plt.show() - -############################################################################### -# Setting ``prop_cycle`` in the ``matplotlibrc`` file or style files -# ------------------------------------------------------------------ -# -# Remember, if you want to set a custom cycler in your -# ``.matplotlibrc`` file or a style file (``style.mplstyle``), you can set the -# ``axes.prop_cycle`` property: -# -# .. code-block:: python -# -# axes.prop_cycle : cycler(color='bgrcmyk') -# -# Cycling through multiple properties -# ----------------------------------- -# -# You can add cyclers: -# -# .. code-block:: python -# -# from cycler import cycler -# cc = (cycler(color=list('rgb')) + -# cycler(linestyle=['-', '--', '-.'])) -# for d in cc: -# print(d) -# -# Results in: -# -# .. code-block:: python -# -# {'color': 'r', 'linestyle': '-'} -# {'color': 'g', 'linestyle': '--'} -# {'color': 'b', 'linestyle': '-.'} -# -# -# You can multiply cyclers: -# -# .. code-block:: python -# -# from cycler import cycler -# cc = (cycler(color=list('rgb')) * -# cycler(linestyle=['-', '--', '-.'])) -# for d in cc: -# print(d) -# -# Results in: -# -# .. code-block:: python -# -# {'color': 'r', 'linestyle': '-'} -# {'color': 'r', 'linestyle': '--'} -# {'color': 'r', 'linestyle': '-.'} -# {'color': 'g', 'linestyle': '-'} -# {'color': 'g', 'linestyle': '--'} -# {'color': 'g', 'linestyle': '-.'} -# {'color': 'b', 'linestyle': '-'} -# {'color': 'b', 'linestyle': '--'} -# {'color': 'b', 'linestyle': '-.'} diff --git a/_downloads/6d22b74cead980fd2636b9e210145149/embedding_webagg_sgskip.py b/_downloads/6d22b74cead980fd2636b9e210145149/embedding_webagg_sgskip.py deleted file mode 120000 index a96d60fb122..00000000000 --- a/_downloads/6d22b74cead980fd2636b9e210145149/embedding_webagg_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6d22b74cead980fd2636b9e210145149/embedding_webagg_sgskip.py \ No newline at end of file diff --git a/_downloads/6d31a4024a0e0839d4212f219af2de3e/pgf_texsystem.py b/_downloads/6d31a4024a0e0839d4212f219af2de3e/pgf_texsystem.py deleted file mode 120000 index 24196c1e7d3..00000000000 --- a/_downloads/6d31a4024a0e0839d4212f219af2de3e/pgf_texsystem.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6d31a4024a0e0839d4212f219af2de3e/pgf_texsystem.py \ No newline at end of file diff --git a/_downloads/6d436d7232945f46e3930edd4cd0195c/simple_axes_divider1.py b/_downloads/6d436d7232945f46e3930edd4cd0195c/simple_axes_divider1.py deleted file mode 120000 index da2141682e5..00000000000 --- a/_downloads/6d436d7232945f46e3930edd4cd0195c/simple_axes_divider1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6d436d7232945f46e3930edd4cd0195c/simple_axes_divider1.py \ No newline at end of file diff --git a/_downloads/6d57d8c580a610fff87695c96994ae10/colormap_normalizations_lognorm.py b/_downloads/6d57d8c580a610fff87695c96994ae10/colormap_normalizations_lognorm.py deleted file mode 120000 index 4e2a3a3a361..00000000000 --- a/_downloads/6d57d8c580a610fff87695c96994ae10/colormap_normalizations_lognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6d57d8c580a610fff87695c96994ae10/colormap_normalizations_lognorm.py \ No newline at end of file diff --git a/_downloads/6d5f65022fe7f04eff33922d7304006a/demo_annotation_box.py b/_downloads/6d5f65022fe7f04eff33922d7304006a/demo_annotation_box.py deleted file mode 120000 index 4ca59c12a91..00000000000 --- a/_downloads/6d5f65022fe7f04eff33922d7304006a/demo_annotation_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6d5f65022fe7f04eff33922d7304006a/demo_annotation_box.py \ No newline at end of file diff --git a/_downloads/6d61777db11caa70166daeff429dbc02/watermark_text.ipynb b/_downloads/6d61777db11caa70166daeff429dbc02/watermark_text.ipynb deleted file mode 120000 index 851ad97f187..00000000000 --- a/_downloads/6d61777db11caa70166daeff429dbc02/watermark_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6d61777db11caa70166daeff429dbc02/watermark_text.ipynb \ No newline at end of file diff --git a/_downloads/6d640cfb3521afd5145864603aa83bae/coords_report.py b/_downloads/6d640cfb3521afd5145864603aa83bae/coords_report.py deleted file mode 100644 index 84ce03e09a7..00000000000 --- a/_downloads/6d640cfb3521afd5145864603aa83bae/coords_report.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -============= -Coords Report -============= - -Override the default reporting of coords. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def millions(x): - return '$%1.1fM' % (x*1e-6) - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x = np.random.rand(20) -y = 1e7*np.random.rand(20) - -fig, ax = plt.subplots() -ax.fmt_ydata = millions -plt.plot(x, y, 'o') - -plt.show() diff --git a/_downloads/6d7675f8d946ac763730a2a6ed8b9467/fivethirtyeight.py b/_downloads/6d7675f8d946ac763730a2a6ed8b9467/fivethirtyeight.py deleted file mode 120000 index 1aedb2286cd..00000000000 --- a/_downloads/6d7675f8d946ac763730a2a6ed8b9467/fivethirtyeight.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6d7675f8d946ac763730a2a6ed8b9467/fivethirtyeight.py \ No newline at end of file diff --git a/_downloads/6d827771bbf10e99f32329c685590957/multiline.ipynb b/_downloads/6d827771bbf10e99f32329c685590957/multiline.ipynb deleted file mode 100644 index 7c57751fd22..00000000000 --- a/_downloads/6d827771bbf10e99f32329c685590957/multiline.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiline\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nplt.figure(figsize=(7, 4))\nax = plt.subplot(121)\nax.set_aspect(1)\nplt.plot(np.arange(10))\nplt.xlabel('this is a xlabel\\n(with newlines!)')\nplt.ylabel('this is vertical\\ntest', multialignment='center')\nplt.text(2, 7, 'this is\\nyet another test',\n rotation=45,\n horizontalalignment='center',\n verticalalignment='top',\n multialignment='center')\n\nplt.grid(True)\n\nplt.subplot(122)\n\nplt.text(0.29, 0.4, \"Mat\\nTTp\\n123\", size=18,\n va=\"baseline\", ha=\"right\", multialignment=\"left\",\n bbox=dict(fc=\"none\"))\n\nplt.text(0.34, 0.4, \"Mag\\nTTT\\n123\", size=18,\n va=\"baseline\", ha=\"left\", multialignment=\"left\",\n bbox=dict(fc=\"none\"))\n\nplt.text(0.95, 0.4, \"Mag\\nTTT$^{A^A}$\\n123\", size=18,\n va=\"baseline\", ha=\"right\", multialignment=\"left\",\n bbox=dict(fc=\"none\"))\n\nplt.xticks([0.2, 0.4, 0.6, 0.8, 1.],\n [\"Jan\\n2009\", \"Feb\\n2009\", \"Mar\\n2009\", \"Apr\\n2009\", \"May\\n2009\"])\n\nplt.axhline(0.4)\nplt.title(\"test line spacing for multiline text\")\n\nplt.subplots_adjust(bottom=0.25, top=0.75)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6d834c96a81a57b857e242368b1124fd/logos2.py b/_downloads/6d834c96a81a57b857e242368b1124fd/logos2.py deleted file mode 120000 index 09db23adce9..00000000000 --- a/_downloads/6d834c96a81a57b857e242368b1124fd/logos2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6d834c96a81a57b857e242368b1124fd/logos2.py \ No newline at end of file diff --git a/_downloads/6daa21906d2b5e2e0ae86f7389728da5/looking_glass.ipynb b/_downloads/6daa21906d2b5e2e0ae86f7389728da5/looking_glass.ipynb deleted file mode 120000 index 9c8e16a950e..00000000000 --- a/_downloads/6daa21906d2b5e2e0ae86f7389728da5/looking_glass.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6daa21906d2b5e2e0ae86f7389728da5/looking_glass.ipynb \ No newline at end of file diff --git a/_downloads/6dad819713e4fb5115441e8edeec656a/mri_with_eeg.py b/_downloads/6dad819713e4fb5115441e8edeec656a/mri_with_eeg.py deleted file mode 120000 index a31ccfa64d9..00000000000 --- a/_downloads/6dad819713e4fb5115441e8edeec656a/mri_with_eeg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6dad819713e4fb5115441e8edeec656a/mri_with_eeg.py \ No newline at end of file diff --git a/_downloads/6dad91e174a7f9849e18f67f31033504/simple_axisline2.ipynb b/_downloads/6dad91e174a7f9849e18f67f31033504/simple_axisline2.ipynb deleted file mode 120000 index 3549ad3980d..00000000000 --- a/_downloads/6dad91e174a7f9849e18f67f31033504/simple_axisline2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6dad91e174a7f9849e18f67f31033504/simple_axisline2.ipynb \ No newline at end of file diff --git a/_downloads/6dc3f314b9f9a5717a02514b09e8116a/demo_colorbar_with_axes_divider.ipynb b/_downloads/6dc3f314b9f9a5717a02514b09e8116a/demo_colorbar_with_axes_divider.ipynb deleted file mode 120000 index 442d73cd99b..00000000000 --- a/_downloads/6dc3f314b9f9a5717a02514b09e8116a/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6dc3f314b9f9a5717a02514b09e8116a/demo_colorbar_with_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/6dc543d6b8361bc267b9ede57dd39487/polygon_selector_demo.ipynb b/_downloads/6dc543d6b8361bc267b9ede57dd39487/polygon_selector_demo.ipynb deleted file mode 120000 index 2263f04616d..00000000000 --- a/_downloads/6dc543d6b8361bc267b9ede57dd39487/polygon_selector_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6dc543d6b8361bc267b9ede57dd39487/polygon_selector_demo.ipynb \ No newline at end of file diff --git a/_downloads/6de59989f76def87d876e9d961d96b30/simple_axisartist1.py b/_downloads/6de59989f76def87d876e9d961d96b30/simple_axisartist1.py deleted file mode 120000 index eb3555cc2db..00000000000 --- a/_downloads/6de59989f76def87d876e9d961d96b30/simple_axisartist1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6de59989f76def87d876e9d961d96b30/simple_axisartist1.py \ No newline at end of file diff --git a/_downloads/6dea84a21cd28594212e6798aa7940eb/gridspec_and_subplots.py b/_downloads/6dea84a21cd28594212e6798aa7940eb/gridspec_and_subplots.py deleted file mode 120000 index ab278e70354..00000000000 --- a/_downloads/6dea84a21cd28594212e6798aa7940eb/gridspec_and_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6dea84a21cd28594212e6798aa7940eb/gridspec_and_subplots.py \ No newline at end of file diff --git a/_downloads/6ded9246c64e9a4672098eb7dd0aaa31/annotation_basic.ipynb b/_downloads/6ded9246c64e9a4672098eb7dd0aaa31/annotation_basic.ipynb deleted file mode 120000 index 7002f7c12fc..00000000000 --- a/_downloads/6ded9246c64e9a4672098eb7dd0aaa31/annotation_basic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6ded9246c64e9a4672098eb7dd0aaa31/annotation_basic.ipynb \ No newline at end of file diff --git a/_downloads/6dee2ff917df5741a1db083fc5893bf9/subplot3d.ipynb b/_downloads/6dee2ff917df5741a1db083fc5893bf9/subplot3d.ipynb deleted file mode 120000 index f40195f4fe7..00000000000 --- a/_downloads/6dee2ff917df5741a1db083fc5893bf9/subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6dee2ff917df5741a1db083fc5893bf9/subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/6df119f846b53bc21b3884402911cbbf/axes_zoom_effect.ipynb b/_downloads/6df119f846b53bc21b3884402911cbbf/axes_zoom_effect.ipynb deleted file mode 120000 index a4a58c542ec..00000000000 --- a/_downloads/6df119f846b53bc21b3884402911cbbf/axes_zoom_effect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6df119f846b53bc21b3884402911cbbf/axes_zoom_effect.ipynb \ No newline at end of file diff --git a/_downloads/6df2e93b521f5d0c52fe05c45656be59/demo_constrained_layout.py b/_downloads/6df2e93b521f5d0c52fe05c45656be59/demo_constrained_layout.py deleted file mode 120000 index 78ddbadc8c0..00000000000 --- a/_downloads/6df2e93b521f5d0c52fe05c45656be59/demo_constrained_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6df2e93b521f5d0c52fe05c45656be59/demo_constrained_layout.py \ No newline at end of file diff --git a/_downloads/6df5f36395548fe73133e7272eaefa40/embedding_in_wx4_sgskip.ipynb b/_downloads/6df5f36395548fe73133e7272eaefa40/embedding_in_wx4_sgskip.ipynb deleted file mode 120000 index 07318294180..00000000000 --- a/_downloads/6df5f36395548fe73133e7272eaefa40/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6df5f36395548fe73133e7272eaefa40/embedding_in_wx4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6dff278688b44beab43b7213a740060f/text3d.py b/_downloads/6dff278688b44beab43b7213a740060f/text3d.py deleted file mode 120000 index 59d42671f06..00000000000 --- a/_downloads/6dff278688b44beab43b7213a740060f/text3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6dff278688b44beab43b7213a740060f/text3d.py \ No newline at end of file diff --git a/_downloads/6e03896f9c67f75b0a91e77a95d1f0f4/lasso_selector_demo_sgskip.py b/_downloads/6e03896f9c67f75b0a91e77a95d1f0f4/lasso_selector_demo_sgskip.py deleted file mode 120000 index 72893700b4c..00000000000 --- a/_downloads/6e03896f9c67f75b0a91e77a95d1f0f4/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6e03896f9c67f75b0a91e77a95d1f0f4/lasso_selector_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/6e05805f47b2292d7de2d61ebde03410/hexbin.ipynb b/_downloads/6e05805f47b2292d7de2d61ebde03410/hexbin.ipynb deleted file mode 120000 index f24595c2554..00000000000 --- a/_downloads/6e05805f47b2292d7de2d61ebde03410/hexbin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6e05805f47b2292d7de2d61ebde03410/hexbin.ipynb \ No newline at end of file diff --git a/_downloads/6e0c8e3a47d22d55ee8962acc7c9fed2/demo_ticklabel_direction.ipynb b/_downloads/6e0c8e3a47d22d55ee8962acc7c9fed2/demo_ticklabel_direction.ipynb deleted file mode 120000 index 0fe94f935f8..00000000000 --- a/_downloads/6e0c8e3a47d22d55ee8962acc7c9fed2/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6e0c8e3a47d22d55ee8962acc7c9fed2/demo_ticklabel_direction.ipynb \ No newline at end of file diff --git a/_downloads/6e10dd10d0ed6c694443ea43fa552c92/custom_cmap.py b/_downloads/6e10dd10d0ed6c694443ea43fa552c92/custom_cmap.py deleted file mode 100644 index eb3727d9278..00000000000 --- a/_downloads/6e10dd10d0ed6c694443ea43fa552c92/custom_cmap.py +++ /dev/null @@ -1,253 +0,0 @@ -""" -========================================= -Creating a colormap from a list of colors -========================================= - -For more detail on creating and manipulating colormaps see -:doc:`/tutorials/colors/colormap-manipulation`. - -Creating a :doc:`colormap ` -from a list of colors can be done with the -:meth:`~.colors.LinearSegmentedColormap.from_list` method of -`LinearSegmentedColormap`. You must pass a list of RGB tuples that define the -mixture of colors from 0 to 1. - - -Creating custom colormaps -------------------------- -It is also possible to create a custom mapping for a colormap. This is -accomplished by creating dictionary that specifies how the RGB channels -change from one end of the cmap to the other. - -Example: suppose you want red to increase from 0 to 1 over the bottom -half, green to do the same over the middle half, and blue over the top -half. Then you would use:: - - cdict = {'red': ((0.0, 0.0, 0.0), - (0.5, 1.0, 1.0), - (1.0, 1.0, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (0.25, 0.0, 0.0), - (0.75, 1.0, 1.0), - (1.0, 1.0, 1.0)), - - 'blue': ((0.0, 0.0, 0.0), - (0.5, 0.0, 0.0), - (1.0, 1.0, 1.0))} - -If, as in this example, there are no discontinuities in the r, g, and b -components, then it is quite simple: the second and third element of -each tuple, above, is the same--call it "y". The first element ("x") -defines interpolation intervals over the full range of 0 to 1, and it -must span that whole range. In other words, the values of x divide the -0-to-1 range into a set of segments, and y gives the end-point color -values for each segment. - -Now consider the green. cdict['green'] is saying that for -0 <= x <= 0.25, y is zero; no green. -0.25 < x <= 0.75, y varies linearly from 0 to 1. -x > 0.75, y remains at 1, full green. - -If there are discontinuities, then it is a little more complicated. -Label the 3 elements in each row in the cdict entry for a given color as -(x, y0, y1). Then for values of x between x[i] and x[i+1] the color -value is interpolated between y1[i] and y0[i+1]. - -Going back to the cookbook example, look at cdict['red']; because y0 != -y1, it is saying that for x from 0 to 0.5, red increases from 0 to 1, -but then it jumps down, so that for x from 0.5 to 1, red increases from -0.7 to 1. Green ramps from 0 to 1 as x goes from 0 to 0.5, then jumps -back to 0, and ramps back to 1 as x goes from 0.5 to 1.:: - - row i: x y0 y1 - / - / - row i+1: x y0 y1 - -Above is an attempt to show that for x in the range x[i] to x[i+1], the -interpolation is between y1[i] and y0[i+1]. So, y0[0] and y1[-1] are -never used. - -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.colors import LinearSegmentedColormap - -# Make some illustrative fake data: - -x = np.arange(0, np.pi, 0.1) -y = np.arange(0, 2 * np.pi, 0.1) -X, Y = np.meshgrid(x, y) -Z = np.cos(X) * np.sin(Y) * 10 - - -############################################################################### -# --- Colormaps from a list --- - -colors = [(1, 0, 0), (0, 1, 0), (0, 0, 1)] # R -> G -> B -n_bins = [3, 6, 10, 100] # Discretizes the interpolation into bins -cmap_name = 'my_list' -fig, axs = plt.subplots(2, 2, figsize=(6, 9)) -fig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05) -for n_bin, ax in zip(n_bins, axs.ravel()): - # Create the colormap - cm = LinearSegmentedColormap.from_list( - cmap_name, colors, N=n_bin) - # Fewer bins will result in "coarser" colomap interpolation - im = ax.imshow(Z, interpolation='nearest', origin='lower', cmap=cm) - ax.set_title("N bins: %s" % n_bin) - fig.colorbar(im, ax=ax) - - -############################################################################### -# --- Custom colormaps --- - -cdict1 = {'red': ((0.0, 0.0, 0.0), - (0.5, 0.0, 0.1), - (1.0, 1.0, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (1.0, 0.0, 0.0)), - - 'blue': ((0.0, 0.0, 1.0), - (0.5, 0.1, 0.0), - (1.0, 0.0, 0.0)) - } - -cdict2 = {'red': ((0.0, 0.0, 0.0), - (0.5, 0.0, 1.0), - (1.0, 0.1, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (1.0, 0.0, 0.0)), - - 'blue': ((0.0, 0.0, 0.1), - (0.5, 1.0, 0.0), - (1.0, 0.0, 0.0)) - } - -cdict3 = {'red': ((0.0, 0.0, 0.0), - (0.25, 0.0, 0.0), - (0.5, 0.8, 1.0), - (0.75, 1.0, 1.0), - (1.0, 0.4, 1.0)), - - 'green': ((0.0, 0.0, 0.0), - (0.25, 0.0, 0.0), - (0.5, 0.9, 0.9), - (0.75, 0.0, 0.0), - (1.0, 0.0, 0.0)), - - 'blue': ((0.0, 0.0, 0.4), - (0.25, 1.0, 1.0), - (0.5, 1.0, 0.8), - (0.75, 0.0, 0.0), - (1.0, 0.0, 0.0)) - } - -# Make a modified version of cdict3 with some transparency -# in the middle of the range. -cdict4 = {**cdict3, - 'alpha': ((0.0, 1.0, 1.0), - # (0.25,1.0, 1.0), - (0.5, 0.3, 0.3), - # (0.75,1.0, 1.0), - (1.0, 1.0, 1.0)), - } - - -############################################################################### -# Now we will use this example to illustrate 3 ways of -# handling custom colormaps. -# First, the most direct and explicit: - -blue_red1 = LinearSegmentedColormap('BlueRed1', cdict1) - -############################################################################### -# Second, create the map explicitly and register it. -# Like the first method, this method works with any kind -# of Colormap, not just -# a LinearSegmentedColormap: - -blue_red2 = LinearSegmentedColormap('BlueRed2', cdict2) -plt.register_cmap(cmap=blue_red2) - -############################################################################### -# Third, for LinearSegmentedColormap only, -# leave everything to register_cmap: - -plt.register_cmap(name='BlueRed3', data=cdict3) # optional lut kwarg -plt.register_cmap(name='BlueRedAlpha', data=cdict4) - -############################################################################### -# Make the figure: - -fig, axs = plt.subplots(2, 2, figsize=(6, 9)) -fig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05) - -# Make 4 subplots: - -im1 = axs[0, 0].imshow(Z, interpolation='nearest', cmap=blue_red1) -fig.colorbar(im1, ax=axs[0, 0]) - -cmap = plt.get_cmap('BlueRed2') -im2 = axs[1, 0].imshow(Z, interpolation='nearest', cmap=cmap) -fig.colorbar(im2, ax=axs[1, 0]) - -# Now we will set the third cmap as the default. One would -# not normally do this in the middle of a script like this; -# it is done here just to illustrate the method. - -plt.rcParams['image.cmap'] = 'BlueRed3' - -im3 = axs[0, 1].imshow(Z, interpolation='nearest') -fig.colorbar(im3, ax=axs[0, 1]) -axs[0, 1].set_title("Alpha = 1") - -# Or as yet another variation, we can replace the rcParams -# specification *before* the imshow with the following *after* -# imshow. -# This sets the new default *and* sets the colormap of the last -# image-like item plotted via pyplot, if any. -# - -# Draw a line with low zorder so it will be behind the image. -axs[1, 1].plot([0, 10 * np.pi], [0, 20 * np.pi], color='c', lw=20, zorder=-1) - -im4 = axs[1, 1].imshow(Z, interpolation='nearest') -fig.colorbar(im4, ax=axs[1, 1]) - -# Here it is: changing the colormap for the current image and its -# colorbar after they have been plotted. -im4.set_cmap('BlueRedAlpha') -axs[1, 1].set_title("Varying alpha") -# - -fig.suptitle('Custom Blue-Red colormaps', fontsize=16) -fig.subplots_adjust(top=0.9) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors -matplotlib.colors.LinearSegmentedColormap -matplotlib.colors.LinearSegmentedColormap.from_list -matplotlib.cm -matplotlib.cm.ScalarMappable.set_cmap -matplotlib.pyplot.register_cmap -matplotlib.cm.register_cmap diff --git a/_downloads/6e1872f197f12a9a2f2b2f0fc2218484/fourier_demo_wx_sgskip.ipynb b/_downloads/6e1872f197f12a9a2f2b2f0fc2218484/fourier_demo_wx_sgskip.ipynb deleted file mode 120000 index fd046c8dc6f..00000000000 --- a/_downloads/6e1872f197f12a9a2f2b2f0fc2218484/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6e1872f197f12a9a2f2b2f0fc2218484/fourier_demo_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6e191c5fe8c972689111fa0e54c56607/ellipse_with_units.py b/_downloads/6e191c5fe8c972689111fa0e54c56607/ellipse_with_units.py deleted file mode 120000 index 75b8bd7a6d7..00000000000 --- a/_downloads/6e191c5fe8c972689111fa0e54c56607/ellipse_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6e191c5fe8c972689111fa0e54c56607/ellipse_with_units.py \ No newline at end of file diff --git a/_downloads/6e1a7dabed2a4bf20a91c8ee4ee9db0f/whats_new_99_spines.ipynb b/_downloads/6e1a7dabed2a4bf20a91c8ee4ee9db0f/whats_new_99_spines.ipynb deleted file mode 120000 index 8536548a8f8..00000000000 --- a/_downloads/6e1a7dabed2a4bf20a91c8ee4ee9db0f/whats_new_99_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6e1a7dabed2a4bf20a91c8ee4ee9db0f/whats_new_99_spines.ipynb \ No newline at end of file diff --git a/_downloads/6e2cbe8f10300f9bd6f6143d13891f06/errorbars_and_boxes.py b/_downloads/6e2cbe8f10300f9bd6f6143d13891f06/errorbars_and_boxes.py deleted file mode 120000 index 4ff3e38d262..00000000000 --- a/_downloads/6e2cbe8f10300f9bd6f6143d13891f06/errorbars_and_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6e2cbe8f10300f9bd6f6143d13891f06/errorbars_and_boxes.py \ No newline at end of file diff --git a/_downloads/6e329294cfc30d301f2e9e9c7c4d38e7/collections.py b/_downloads/6e329294cfc30d301f2e9e9c7c4d38e7/collections.py deleted file mode 100644 index 853d95ff35f..00000000000 --- a/_downloads/6e329294cfc30d301f2e9e9c7c4d38e7/collections.py +++ /dev/null @@ -1,148 +0,0 @@ -''' -========================================================= -Line, Poly and RegularPoly Collection with autoscaling -========================================================= - -For the first two subplots, we will use spirals. Their -size will be set in plot units, not data units. Their positions -will be set in data units by using the "offsets" and "transOffset" -kwargs of the `~.collections.LineCollection` and -`~.collections.PolyCollection`. - -The third subplot will make regular polygons, with the same -type of scaling and positioning as in the first two. - -The last subplot illustrates the use of "offsets=(xo,yo)", -that is, a single tuple instead of a list of tuples, to generate -successively offset curves, with the offset given in data -units. This behavior is available only for the LineCollection. - -''' - -import matplotlib.pyplot as plt -from matplotlib import collections, colors, transforms -import numpy as np - -nverts = 50 -npts = 100 - -# Make some spirals -r = np.arange(nverts) -theta = np.linspace(0, 2*np.pi, nverts) -xx = r * np.sin(theta) -yy = r * np.cos(theta) -spiral = np.column_stack([xx, yy]) - -# Fixing random state for reproducibility -rs = np.random.RandomState(19680801) - -# Make some offsets -xyo = rs.randn(npts, 2) - -# Make a list of colors cycling through the default series. -colors = [colors.to_rgba(c) - for c in plt.rcParams['axes.prop_cycle'].by_key()['color']] - -fig, axes = plt.subplots(2, 2) -fig.subplots_adjust(top=0.92, left=0.07, right=0.97, - hspace=0.3, wspace=0.3) -((ax1, ax2), (ax3, ax4)) = axes # unpack the axes - - -col = collections.LineCollection([spiral], offsets=xyo, - transOffset=ax1.transData) -trans = fig.dpi_scale_trans + transforms.Affine2D().scale(1.0/72.0) -col.set_transform(trans) # the points to pixels transform -# Note: the first argument to the collection initializer -# must be a list of sequences of x,y tuples; we have only -# one sequence, but we still have to put it in a list. -ax1.add_collection(col, autolim=True) -# autolim=True enables autoscaling. For collections with -# offsets like this, it is neither efficient nor accurate, -# but it is good enough to generate a plot that you can use -# as a starting point. If you know beforehand the range of -# x and y that you want to show, it is better to set them -# explicitly, leave out the autolim kwarg (or set it to False), -# and omit the 'ax1.autoscale_view()' call below. - -# Make a transform for the line segments such that their size is -# given in points: -col.set_color(colors) - -ax1.autoscale_view() # See comment above, after ax1.add_collection. -ax1.set_title('LineCollection using offsets') - - -# The same data as above, but fill the curves. -col = collections.PolyCollection([spiral], offsets=xyo, - transOffset=ax2.transData) -trans = transforms.Affine2D().scale(fig.dpi/72.0) -col.set_transform(trans) # the points to pixels transform -ax2.add_collection(col, autolim=True) -col.set_color(colors) - - -ax2.autoscale_view() -ax2.set_title('PolyCollection using offsets') - -# 7-sided regular polygons - -col = collections.RegularPolyCollection( - 7, sizes=np.abs(xx) * 10.0, offsets=xyo, transOffset=ax3.transData) -trans = transforms.Affine2D().scale(fig.dpi / 72.0) -col.set_transform(trans) # the points to pixels transform -ax3.add_collection(col, autolim=True) -col.set_color(colors) -ax3.autoscale_view() -ax3.set_title('RegularPolyCollection using offsets') - - -# Simulate a series of ocean current profiles, successively -# offset by 0.1 m/s so that they form what is sometimes called -# a "waterfall" plot or a "stagger" plot. - -nverts = 60 -ncurves = 20 -offs = (0.1, 0.0) - -yy = np.linspace(0, 2*np.pi, nverts) -ym = np.max(yy) -xx = (0.2 + (ym - yy) / ym) ** 2 * np.cos(yy - 0.4) * 0.5 -segs = [] -for i in range(ncurves): - xxx = xx + 0.02*rs.randn(nverts) - curve = np.column_stack([xxx, yy * 100]) - segs.append(curve) - -col = collections.LineCollection(segs, offsets=offs) -ax4.add_collection(col, autolim=True) -col.set_color(colors) -ax4.autoscale_view() -ax4.set_title('Successive data offsets') -ax4.set_xlabel('Zonal velocity component (m/s)') -ax4.set_ylabel('Depth (m)') -# Reverse the y-axis so depth increases downward -ax4.set_ylim(ax4.get_ylim()[::-1]) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure -matplotlib.collections -matplotlib.collections.LineCollection -matplotlib.collections.RegularPolyCollection -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.autoscale_view -matplotlib.transforms.Affine2D -matplotlib.transforms.Affine2D.scale diff --git a/_downloads/6e3542ed542d5d458e87be2bad7f1cd7/transforms_tutorial.py b/_downloads/6e3542ed542d5d458e87be2bad7f1cd7/transforms_tutorial.py deleted file mode 120000 index 2e350a77994..00000000000 --- a/_downloads/6e3542ed542d5d458e87be2bad7f1cd7/transforms_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6e3542ed542d5d458e87be2bad7f1cd7/transforms_tutorial.py \ No newline at end of file diff --git a/_downloads/6e3ea08689eb5ff837cf603c0cf338e6/multiple_histograms_side_by_side.ipynb b/_downloads/6e3ea08689eb5ff837cf603c0cf338e6/multiple_histograms_side_by_side.ipynb deleted file mode 120000 index 27b30bf8f8c..00000000000 --- a/_downloads/6e3ea08689eb5ff837cf603c0cf338e6/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6e3ea08689eb5ff837cf603c0cf338e6/multiple_histograms_side_by_side.ipynb \ No newline at end of file diff --git a/_downloads/6e3f2e226d3192737bc88e5feaf9b03f/quad_bezier.ipynb b/_downloads/6e3f2e226d3192737bc88e5feaf9b03f/quad_bezier.ipynb deleted file mode 120000 index 790f0ee12b2..00000000000 --- a/_downloads/6e3f2e226d3192737bc88e5feaf9b03f/quad_bezier.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6e3f2e226d3192737bc88e5feaf9b03f/quad_bezier.ipynb \ No newline at end of file diff --git a/_downloads/6e417fb3a336c8d45b88b6cfd445f80c/broken_barh.ipynb b/_downloads/6e417fb3a336c8d45b88b6cfd445f80c/broken_barh.ipynb deleted file mode 120000 index 853bbc9706e..00000000000 --- a/_downloads/6e417fb3a336c8d45b88b6cfd445f80c/broken_barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6e417fb3a336c8d45b88b6cfd445f80c/broken_barh.ipynb \ No newline at end of file diff --git a/_downloads/6e54e7a2c233d33ef7e4c2d54ae94f79/topographic_hillshading.py b/_downloads/6e54e7a2c233d33ef7e4c2d54ae94f79/topographic_hillshading.py deleted file mode 100644 index cd197e09af7..00000000000 --- a/_downloads/6e54e7a2c233d33ef7e4c2d54ae94f79/topographic_hillshading.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -======================= -Topographic hillshading -======================= - -Demonstrates the visual effect of varying blend mode and vertical exaggeration -on "hillshaded" plots. - -Note that the "overlay" and "soft" blend modes work well for complex surfaces -such as this example, while the default "hsv" blend mode works best for smooth -surfaces such as many mathematical functions. - -In most cases, hillshading is used purely for visual purposes, and *dx*/*dy* -can be safely ignored. In that case, you can tweak *vert_exag* (vertical -exaggeration) by trial and error to give the desired visual effect. However, -this example demonstrates how to use the *dx* and *dy* kwargs to ensure that -the *vert_exag* parameter is the true vertical exaggeration. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.cbook import get_sample_data -from matplotlib.colors import LightSource - - -with np.load(get_sample_data('jacksboro_fault_dem.npz')) as dem: - z = dem['elevation'] - - #-- Optional dx and dy for accurate vertical exaggeration ---------------- - # If you need topographically accurate vertical exaggeration, or you don't - # want to guess at what *vert_exag* should be, you'll need to specify the - # cellsize of the grid (i.e. the *dx* and *dy* parameters). Otherwise, any - # *vert_exag* value you specify will be relative to the grid spacing of - # your input data (in other words, *dx* and *dy* default to 1.0, and - # *vert_exag* is calculated relative to those parameters). Similarly, *dx* - # and *dy* are assumed to be in the same units as your input z-values. - # Therefore, we'll need to convert the given dx and dy from decimal degrees - # to meters. - dx, dy = dem['dx'], dem['dy'] - dy = 111200 * dy - dx = 111200 * dx * np.cos(np.radians(dem['ymin'])) - #------------------------------------------------------------------------- - -# Shade from the northwest, with the sun 45 degrees from horizontal -ls = LightSource(azdeg=315, altdeg=45) -cmap = plt.cm.gist_earth - -fig, axes = plt.subplots(nrows=4, ncols=3, figsize=(8, 9)) -plt.setp(axes.flat, xticks=[], yticks=[]) - -# Vary vertical exaggeration and blend mode and plot all combinations -for col, ve in zip(axes.T, [0.1, 1, 10]): - # Show the hillshade intensity image in the first row - col[0].imshow(ls.hillshade(z, vert_exag=ve, dx=dx, dy=dy), cmap='gray') - - # Place hillshaded plots with different blend modes in the rest of the rows - for ax, mode in zip(col[1:], ['hsv', 'overlay', 'soft']): - rgb = ls.shade(z, cmap=cmap, blend_mode=mode, - vert_exag=ve, dx=dx, dy=dy) - ax.imshow(rgb) - -# Label rows and columns -for ax, ve in zip(axes[0], [0.1, 1, 10]): - ax.set_title('{0}'.format(ve), size=18) -for ax, mode in zip(axes[:, 0], ['Hillshade', 'hsv', 'overlay', 'soft']): - ax.set_ylabel(mode, size=18) - -# Group labels... -axes[0, 1].annotate('Vertical Exaggeration', (0.5, 1), xytext=(0, 30), - textcoords='offset points', xycoords='axes fraction', - ha='center', va='bottom', size=20) -axes[2, 0].annotate('Blend Mode', (0, 0.5), xytext=(-30, 0), - textcoords='offset points', xycoords='axes fraction', - ha='right', va='center', size=20, rotation=90) -fig.subplots_adjust(bottom=0.05, right=0.95) - -plt.show() diff --git a/_downloads/6e5a5987316e1d969f70abb02210847e/barchart_demo.py b/_downloads/6e5a5987316e1d969f70abb02210847e/barchart_demo.py deleted file mode 100644 index 4e66855bc56..00000000000 --- a/_downloads/6e5a5987316e1d969f70abb02210847e/barchart_demo.py +++ /dev/null @@ -1,188 +0,0 @@ -""" -=================================== -Percentiles as horizontal bar chart -=================================== - -Bar charts are useful for visualizing counts, or summary statistics -with error bars. Also see the :doc:`/gallery/lines_bars_and_markers/barchart` -or the :doc:`/gallery/lines_bars_and_markers/barh` example for simpler versions -of those features. - -This example comes from an application in which grade school gym -teachers wanted to be able to show parents how their child did across -a handful of fitness tests, and importantly, relative to how other -children did. To extract the plotting code for demo purposes, we'll -just make up some data for little Johnny Doe. -""" - -import numpy as np -import matplotlib -import matplotlib.pyplot as plt -from matplotlib.ticker import MaxNLocator -from collections import namedtuple - -np.random.seed(42) - -Student = namedtuple('Student', ['name', 'grade', 'gender']) -Score = namedtuple('Score', ['score', 'percentile']) - -# GLOBAL CONSTANTS -testNames = ['Pacer Test', 'Flexed Arm\n Hang', 'Mile Run', 'Agility', - 'Push Ups'] -testMeta = dict(zip(testNames, ['laps', 'sec', 'min:sec', 'sec', ''])) - - -def attach_ordinal(num): - """helper function to add ordinal string to integers - - 1 -> 1st - 56 -> 56th - """ - suffixes = {str(i): v - for i, v in enumerate(['th', 'st', 'nd', 'rd', 'th', - 'th', 'th', 'th', 'th', 'th'])} - - v = str(num) - # special case early teens - if v in {'11', '12', '13'}: - return v + 'th' - return v + suffixes[v[-1]] - - -def format_score(scr, test): - """ - Build up the score labels for the right Y-axis by first - appending a carriage return to each string and then tacking on - the appropriate meta information (i.e., 'laps' vs 'seconds'). We - want the labels centered on the ticks, so if there is no meta - info (like for pushups) then don't add the carriage return to - the string - """ - md = testMeta[test] - if md: - return '{0}\n{1}'.format(scr, md) - else: - return scr - - -def format_ycursor(y): - y = int(y) - if y < 0 or y >= len(testNames): - return '' - else: - return testNames[y] - - -def plot_student_results(student, scores, cohort_size): - # create the figure - fig, ax1 = plt.subplots(figsize=(9, 7)) - fig.subplots_adjust(left=0.115, right=0.88) - fig.canvas.set_window_title('Eldorado K-8 Fitness Chart') - - pos = np.arange(len(testNames)) - - rects = ax1.barh(pos, [scores[k].percentile for k in testNames], - align='center', - height=0.5, - tick_label=testNames) - - ax1.set_title(student.name) - - ax1.set_xlim([0, 100]) - ax1.xaxis.set_major_locator(MaxNLocator(11)) - ax1.xaxis.grid(True, linestyle='--', which='major', - color='grey', alpha=.25) - - # Plot a solid vertical gridline to highlight the median position - ax1.axvline(50, color='grey', alpha=0.25) - - # Set the right-hand Y-axis ticks and labels - ax2 = ax1.twinx() - - scoreLabels = [format_score(scores[k].score, k) for k in testNames] - - # set the tick locations - ax2.set_yticks(pos) - # make sure that the limits are set equally on both yaxis so the - # ticks line up - ax2.set_ylim(ax1.get_ylim()) - - # set the tick labels - ax2.set_yticklabels(scoreLabels) - - ax2.set_ylabel('Test Scores') - - xlabel = ('Percentile Ranking Across {grade} Grade {gender}s\n' - 'Cohort Size: {cohort_size}') - ax1.set_xlabel(xlabel.format(grade=attach_ordinal(student.grade), - gender=student.gender.title(), - cohort_size=cohort_size)) - - rect_labels = [] - # Lastly, write in the ranking inside each bar to aid in interpretation - for rect in rects: - # Rectangle widths are already integer-valued but are floating - # type, so it helps to remove the trailing decimal point and 0 by - # converting width to int type - width = int(rect.get_width()) - - rankStr = attach_ordinal(width) - # The bars aren't wide enough to print the ranking inside - if width < 40: - # Shift the text to the right side of the right edge - xloc = 5 - # Black against white background - clr = 'black' - align = 'left' - else: - # Shift the text to the left side of the right edge - xloc = -5 - # White on magenta - clr = 'white' - align = 'right' - - # Center the text vertically in the bar - yloc = rect.get_y() + rect.get_height() / 2 - label = ax1.annotate(rankStr, xy=(width, yloc), xytext=(xloc, 0), - textcoords="offset points", - ha=align, va='center', - color=clr, weight='bold', clip_on=True) - rect_labels.append(label) - - # make the interactive mouse over give the bar title - ax2.fmt_ydata = format_ycursor - # return all of the artists created - return {'fig': fig, - 'ax': ax1, - 'ax_right': ax2, - 'bars': rects, - 'perc_labels': rect_labels} - - -student = Student('Johnny Doe', 2, 'boy') -scores = dict(zip(testNames, - (Score(v, p) for v, p in - zip(['7', '48', '12:52', '17', '14'], - np.round(np.random.uniform(0, 1, - len(testNames)) * 100, 0))))) -cohort_size = 62 # The number of other 2nd grade boys - -arts = plot_student_results(student, scores, cohort_size) -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate -matplotlib.axes.Axes.twinx diff --git a/_downloads/6e5c7ee47296d008a4cfe38fc99490b4/date_index_formatter2.py b/_downloads/6e5c7ee47296d008a4cfe38fc99490b4/date_index_formatter2.py deleted file mode 100644 index c59342e134a..00000000000 --- a/_downloads/6e5c7ee47296d008a4cfe38fc99490b4/date_index_formatter2.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -==================== -Date Index Formatter -==================== - -When plotting daily data, a frequent request is to plot the data -ignoring skips, e.g., no extra spaces for weekends. This is particularly -common in financial time series, when you may have data for M-F and -not Sat, Sun and you don't want gaps in the x axis. The approach is -to simply use the integer index for the xdata and a custom tick -Formatter to get the appropriate date string for a given index. -""" - -import dateutil.parser -from matplotlib import cbook, dates -import matplotlib.pyplot as plt -from matplotlib.ticker import Formatter -import numpy as np - - -datafile = cbook.get_sample_data('msft.csv', asfileobj=False) -print('loading %s' % datafile) -msft_data = np.genfromtxt( - datafile, delimiter=',', names=True, - converters={0: lambda s: dates.date2num(dateutil.parser.parse(s))}) - - -class MyFormatter(Formatter): - def __init__(self, dates, fmt='%Y-%m-%d'): - self.dates = dates - self.fmt = fmt - - def __call__(self, x, pos=0): - 'Return the label for time x at position pos' - ind = int(np.round(x)) - if ind >= len(self.dates) or ind < 0: - return '' - return dates.num2date(self.dates[ind]).strftime(self.fmt) - - -fig, ax = plt.subplots() -ax.xaxis.set_major_formatter(MyFormatter(msft_data['Date'])) -ax.plot(msft_data['Close'], 'o-') -fig.autofmt_xdate() -plt.show() diff --git a/_downloads/6e5cec9871dd6163d0269ea236ef59b7/fahrenheit_celsius_scales.py b/_downloads/6e5cec9871dd6163d0269ea236ef59b7/fahrenheit_celsius_scales.py deleted file mode 100644 index 9eed95de001..00000000000 --- a/_downloads/6e5cec9871dd6163d0269ea236ef59b7/fahrenheit_celsius_scales.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================================= -Different scales on the same axes -================================= - -Demo of how to display two scales on the left and right y axis. - -This example uses the Fahrenheit and Celsius scales. -""" -import matplotlib.pyplot as plt -import numpy as np - - -def fahrenheit2celsius(temp): - """ - Returns temperature in Celsius. - """ - return (5. / 9.) * (temp - 32) - - -def convert_ax_c_to_celsius(ax_f): - """ - Update second axis according with first axis. - """ - y1, y2 = ax_f.get_ylim() - ax_c.set_ylim(fahrenheit2celsius(y1), fahrenheit2celsius(y2)) - ax_c.figure.canvas.draw() - -fig, ax_f = plt.subplots() -ax_c = ax_f.twinx() - -# automatically update ylim of ax2 when ylim of ax1 changes. -ax_f.callbacks.connect("ylim_changed", convert_ax_c_to_celsius) -ax_f.plot(np.linspace(-40, 120, 100)) -ax_f.set_xlim(0, 100) - -ax_f.set_title('Two scales: Fahrenheit and Celsius') -ax_f.set_ylabel('Fahrenheit') -ax_c.set_ylabel('Celsius') - -plt.show() diff --git a/_downloads/6e5cf8da74fbb8ab29598434e9fd62c9/tricontour_demo.py b/_downloads/6e5cf8da74fbb8ab29598434e9fd62c9/tricontour_demo.py deleted file mode 120000 index 45bbc71efbb..00000000000 --- a/_downloads/6e5cf8da74fbb8ab29598434e9fd62c9/tricontour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6e5cf8da74fbb8ab29598434e9fd62c9/tricontour_demo.py \ No newline at end of file diff --git a/_downloads/6e731d7c5938fcf22b3cf4cb54f28e64/ticklabels_rotation.ipynb b/_downloads/6e731d7c5938fcf22b3cf4cb54f28e64/ticklabels_rotation.ipynb deleted file mode 120000 index cb84e14a828..00000000000 --- a/_downloads/6e731d7c5938fcf22b3cf4cb54f28e64/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6e731d7c5938fcf22b3cf4cb54f28e64/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/6e7688fcae018ba2474d0094a968920f/looking_glass.py b/_downloads/6e7688fcae018ba2474d0094a968920f/looking_glass.py deleted file mode 120000 index bcd3f57b235..00000000000 --- a/_downloads/6e7688fcae018ba2474d0094a968920f/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6e7688fcae018ba2474d0094a968920f/looking_glass.py \ No newline at end of file diff --git a/_downloads/6e8701e078df9f24af0c30d209e79506/secondary_axis.ipynb b/_downloads/6e8701e078df9f24af0c30d209e79506/secondary_axis.ipynb deleted file mode 100644 index 6988ead2c51..00000000000 --- a/_downloads/6e8701e078df9f24af0c30d209e79506/secondary_axis.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Secondary Axis\n\n\nSometimes we want as secondary axis on a plot, for instance to convert\nradians to degrees on the same plot. We can do this by making a child\naxes with only one axis visible via `.Axes.axes.secondary_xaxis` and\n`.Axes.axes.secondary_yaxis`. This secondary axis can have a different scale\nthan the main axis by providing both a forward and an inverse conversion\nfunction in a tuple to the ``functions`` kwarg:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport datetime\nimport matplotlib.dates as mdates\nfrom matplotlib.transforms import Transform\nfrom matplotlib.ticker import (\n AutoLocator, AutoMinorLocator)\n\nfig, ax = plt.subplots(constrained_layout=True)\nx = np.arange(0, 360, 1)\ny = np.sin(2 * x * np.pi / 180)\nax.plot(x, y)\nax.set_xlabel('angle [degrees]')\nax.set_ylabel('signal')\nax.set_title('Sine wave')\n\n\ndef deg2rad(x):\n return x * np.pi / 180\n\n\ndef rad2deg(x):\n return x * 180 / np.pi\n\nsecax = ax.secondary_xaxis('top', functions=(deg2rad, rad2deg))\nsecax.set_xlabel('angle [rad]')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is the case of converting from wavenumber to wavelength in a\nlog-log scale.\n\n.. note ::\n\n In this case, the xscale of the parent is logarithmic, so the child is\n made logarithmic as well.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nx = np.arange(0.02, 1, 0.02)\nnp.random.seed(19680801)\ny = np.random.randn(len(x)) ** 2\nax.loglog(x, y)\nax.set_xlabel('f [Hz]')\nax.set_ylabel('PSD')\nax.set_title('Random spectrum')\n\n\ndef forward(x):\n return 1 / x\n\n\ndef inverse(x):\n return 1 / x\n\nsecax = ax.secondary_xaxis('top', functions=(forward, inverse))\nsecax.set_xlabel('period [s]')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sometime we want to relate the axes in a transform that is ad-hoc from\nthe data, and is derived empirically. In that case we can set the\nforward and inverse transforms functions to be linear interpolations from the\none data set to the other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nxdata = np.arange(1, 11, 0.4)\nydata = np.random.randn(len(xdata))\nax.plot(xdata, ydata, label='Plotted data')\n\nxold = np.arange(0, 11, 0.2)\n# fake data set relating x co-ordinate to another data-derived co-ordinate.\n# xnew must be monotonic, so we sort...\nxnew = np.sort(10 * np.exp(-xold / 4) + np.random.randn(len(xold)) / 3)\n\nax.plot(xold[3:], xnew[3:], label='Transform data')\nax.set_xlabel('X [m]')\nax.legend()\n\n\ndef forward(x):\n return np.interp(x, xold, xnew)\n\n\ndef inverse(x):\n return np.interp(x, xnew, xold)\n\nsecax = ax.secondary_xaxis('top', functions=(forward, inverse))\nsecax.xaxis.set_minor_locator(AutoMinorLocator())\nsecax.set_xlabel('$X_{other}$')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A final example translates np.datetime64 to yearday on the x axis and\nfrom Celsius to Farenheit on the y axis:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "dates = [datetime.datetime(2018, 1, 1) + datetime.timedelta(hours=k * 6)\n for k in range(240)]\ntemperature = np.random.randn(len(dates))\nfig, ax = plt.subplots(constrained_layout=True)\n\nax.plot(dates, temperature)\nax.set_ylabel(r'$T\\ [^oC]$')\nplt.xticks(rotation=70)\n\n\ndef date2yday(x):\n \"\"\"\n x is in matplotlib datenums, so they are floats.\n \"\"\"\n y = x - mdates.date2num(datetime.datetime(2018, 1, 1))\n return y\n\n\ndef yday2date(x):\n \"\"\"\n return a matplotlib datenum (x is days since start of year)\n \"\"\"\n y = x + mdates.date2num(datetime.datetime(2018, 1, 1))\n return y\n\nsecaxx = ax.secondary_xaxis('top', functions=(date2yday, yday2date))\nsecaxx.set_xlabel('yday [2018]')\n\n\ndef CtoF(x):\n return x * 1.8 + 32\n\n\ndef FtoC(x):\n return (x - 32) / 1.8\n\nsecaxy = ax.secondary_yaxis('right', functions=(CtoF, FtoC))\nsecaxy.set_ylabel(r'$T\\ [^oF]$')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\n\nmatplotlib.axes.Axes.secondary_xaxis\nmatplotlib.axes.Axes.secondary_yaxis" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6e990099149f3b738598b73c8438f99f/demo_floating_axis.ipynb b/_downloads/6e990099149f3b738598b73c8438f99f/demo_floating_axis.ipynb deleted file mode 120000 index af754b811a7..00000000000 --- a/_downloads/6e990099149f3b738598b73c8438f99f/demo_floating_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6e990099149f3b738598b73c8438f99f/demo_floating_axis.ipynb \ No newline at end of file diff --git a/_downloads/6e9af33b8ac3a09a348ab9b810cafc23/broken_axis.py b/_downloads/6e9af33b8ac3a09a348ab9b810cafc23/broken_axis.py deleted file mode 120000 index 56101b5566d..00000000000 --- a/_downloads/6e9af33b8ac3a09a348ab9b810cafc23/broken_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6e9af33b8ac3a09a348ab9b810cafc23/broken_axis.py \ No newline at end of file diff --git a/_downloads/6ea4b8a0dc81a6fd0d69a8cfaa1c77b6/trisurf3d_2.py b/_downloads/6ea4b8a0dc81a6fd0d69a8cfaa1c77b6/trisurf3d_2.py deleted file mode 120000 index 1fc32138727..00000000000 --- a/_downloads/6ea4b8a0dc81a6fd0d69a8cfaa1c77b6/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6ea4b8a0dc81a6fd0d69a8cfaa1c77b6/trisurf3d_2.py \ No newline at end of file diff --git a/_downloads/6ea72b4ba891e08e873e455d1c6a45cd/membrane.ipynb b/_downloads/6ea72b4ba891e08e873e455d1c6a45cd/membrane.ipynb deleted file mode 100644 index e12d0e5471d..00000000000 --- a/_downloads/6ea72b4ba891e08e873e455d1c6a45cd/membrane.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage plot example\n\n\nThis example reproduces the frontpage simple plot example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport numpy as np\n\n\nwith cbook.get_sample_data('membrane.dat') as datafile:\n x = np.fromfile(datafile, np.float32)\n# 0.0005 is the sample interval\n\nfig, ax = plt.subplots()\nax.plot(x, linewidth=4)\nax.set_xlim(5000, 6000)\nax.set_ylim(-0.6, 0.1)\nax.set_xticks([])\nax.set_yticks([])\nfig.savefig(\"membrane_frontpage.png\", dpi=25) # results in 160x120 px image" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6eb7f29a87f96875b08a048103a469d0/firefox.py b/_downloads/6eb7f29a87f96875b08a048103a469d0/firefox.py deleted file mode 120000 index 86151e56c2a..00000000000 --- a/_downloads/6eb7f29a87f96875b08a048103a469d0/firefox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6eb7f29a87f96875b08a048103a469d0/firefox.py \ No newline at end of file diff --git a/_downloads/6eba179f4524ac54b291dcc567164966/major_minor_demo.ipynb b/_downloads/6eba179f4524ac54b291dcc567164966/major_minor_demo.ipynb deleted file mode 120000 index bb6f73aa160..00000000000 --- a/_downloads/6eba179f4524ac54b291dcc567164966/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6eba179f4524ac54b291dcc567164966/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/6eba615075d3f8580cd57aa1a0f59c6a/timeline.ipynb b/_downloads/6eba615075d3f8580cd57aa1a0f59c6a/timeline.ipynb deleted file mode 120000 index dbdca2cdae4..00000000000 --- a/_downloads/6eba615075d3f8580cd57aa1a0f59c6a/timeline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6eba615075d3f8580cd57aa1a0f59c6a/timeline.ipynb \ No newline at end of file diff --git a/_downloads/6ebc91be820976db79e5564c15a0ef97/subplot.ipynb b/_downloads/6ebc91be820976db79e5564c15a0ef97/subplot.ipynb deleted file mode 100644 index b9dcddb40c7..00000000000 --- a/_downloads/6ebc91be820976db79e5564c15a0ef97/subplot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiple subplots\n\n\nSimple demo with multiple subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nx1 = np.linspace(0.0, 5.0)\nx2 = np.linspace(0.0, 2.0)\n\ny1 = np.cos(2 * np.pi * x1) * np.exp(-x1)\ny2 = np.cos(2 * np.pi * x2)\n\nplt.subplot(2, 1, 1)\nplt.plot(x1, y1, 'o-')\nplt.title('A tale of 2 subplots')\nplt.ylabel('Damped oscillation')\n\nplt.subplot(2, 1, 2)\nplt.plot(x2, y2, '.-')\nplt.xlabel('time (s)')\nplt.ylabel('Undamped')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6ec8d4ba952e587597cf27b57e4c577e/whats_new_99_axes_grid.py b/_downloads/6ec8d4ba952e587597cf27b57e4c577e/whats_new_99_axes_grid.py deleted file mode 100644 index 7a9666f8e9e..00000000000 --- a/_downloads/6ec8d4ba952e587597cf27b57e4c577e/whats_new_99_axes_grid.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -======================== -Whats New 0.99 Axes Grid -======================== - -Create RGB composite images. -""" -import numpy as np -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes - - -def get_demo_image(): - # prepare image - delta = 0.5 - - extent = (-3, 4, -4, 3) - x = np.arange(-3.0, 4.001, delta) - y = np.arange(-4.0, 3.001, delta) - X, Y = np.meshgrid(x, y) - Z1 = np.exp(-X**2 - Y**2) - Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) - Z = (Z1 - Z2) * 2 - - return Z, extent - - -def get_rgb(): - Z, extent = get_demo_image() - - Z[Z < 0] = 0. - Z = Z / Z.max() - - R = Z[:13, :13] - G = Z[2:, 2:] - B = Z[:13, 2:] - - return R, G, B - - -fig = plt.figure() -ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8]) - -r, g, b = get_rgb() -kwargs = dict(origin="lower", interpolation="nearest") -ax.imshow_rgb(r, g, b, **kwargs) - -ax.RGB.set_xlim(0., 9.5) -ax.RGB.set_ylim(0.9, 10.6) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import mpl_toolkits -mpl_toolkits.axes_grid1.axes_rgb.RGBAxes -mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.imshow_rgb diff --git a/_downloads/6ecb87b0547c43e271b308c1fb42583b/barb_demo.py b/_downloads/6ecb87b0547c43e271b308c1fb42583b/barb_demo.py deleted file mode 120000 index 9a22d77e840..00000000000 --- a/_downloads/6ecb87b0547c43e271b308c1fb42583b/barb_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6ecb87b0547c43e271b308c1fb42583b/barb_demo.py \ No newline at end of file diff --git a/_downloads/6ecc2f59573053aa5667f6e1236d8521/pylab_with_gtk4_sgskip.ipynb b/_downloads/6ecc2f59573053aa5667f6e1236d8521/pylab_with_gtk4_sgskip.ipynb deleted file mode 120000 index 59bb652091a..00000000000 --- a/_downloads/6ecc2f59573053aa5667f6e1236d8521/pylab_with_gtk4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6ecc2f59573053aa5667f6e1236d8521/pylab_with_gtk4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6ecc4c6cae625e7595594dc86f250d3a/zorder_demo.ipynb b/_downloads/6ecc4c6cae625e7595594dc86f250d3a/zorder_demo.ipynb deleted file mode 120000 index cc2973571af..00000000000 --- a/_downloads/6ecc4c6cae625e7595594dc86f250d3a/zorder_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6ecc4c6cae625e7595594dc86f250d3a/zorder_demo.ipynb \ No newline at end of file diff --git a/_downloads/6ed3aa9be4541999fedd1960021471fd/spy_demos.py b/_downloads/6ed3aa9be4541999fedd1960021471fd/spy_demos.py deleted file mode 120000 index 9044a34cb7c..00000000000 --- a/_downloads/6ed3aa9be4541999fedd1960021471fd/spy_demos.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6ed3aa9be4541999fedd1960021471fd/spy_demos.py \ No newline at end of file diff --git a/_downloads/6ee14d2ec0f347f0c6ac6239d2fbd2d6/constrainedlayout_guide.py b/_downloads/6ee14d2ec0f347f0c6ac6239d2fbd2d6/constrainedlayout_guide.py deleted file mode 120000 index 242d90e2e3e..00000000000 --- a/_downloads/6ee14d2ec0f347f0c6ac6239d2fbd2d6/constrainedlayout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6ee14d2ec0f347f0c6ac6239d2fbd2d6/constrainedlayout_guide.py \ No newline at end of file diff --git a/_downloads/6ee905ce64a96a82f94aeb5a00289a5f/colormap_normalizations_bounds.py b/_downloads/6ee905ce64a96a82f94aeb5a00289a5f/colormap_normalizations_bounds.py deleted file mode 120000 index 975b7782c5e..00000000000 --- a/_downloads/6ee905ce64a96a82f94aeb5a00289a5f/colormap_normalizations_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/6ee905ce64a96a82f94aeb5a00289a5f/colormap_normalizations_bounds.py \ No newline at end of file diff --git a/_downloads/6ef513b8a7fa4773f7903c19d1232489/unicode_minus.ipynb b/_downloads/6ef513b8a7fa4773f7903c19d1232489/unicode_minus.ipynb deleted file mode 120000 index 34ffd2e3c19..00000000000 --- a/_downloads/6ef513b8a7fa4773f7903c19d1232489/unicode_minus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6ef513b8a7fa4773f7903c19d1232489/unicode_minus.ipynb \ No newline at end of file diff --git a/_downloads/6effcc815571272f9d68b8b989d11831/lasso_selector_demo_sgskip.ipynb b/_downloads/6effcc815571272f9d68b8b989d11831/lasso_selector_demo_sgskip.ipynb deleted file mode 100644 index 9f924df1efb..00000000000 --- a/_downloads/6effcc815571272f9d68b8b989d11831/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Lasso Selector Demo\n\n\nInteractively selecting data points with the lasso tool.\n\nThis examples plots a scatter plot. You can then select a few points by drawing\na lasso loop around the points on the graph. To draw, just click\non the graph, hold, and drag it around the points you need to select.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib.widgets import LassoSelector\nfrom matplotlib.path import Path\n\n\nclass SelectFromCollection(object):\n \"\"\"Select indices from a matplotlib collection using `LassoSelector`.\n\n Selected indices are saved in the `ind` attribute. This tool fades out the\n points that are not part of the selection (i.e., reduces their alpha\n values). If your collection has alpha < 1, this tool will permanently\n alter the alpha values.\n\n Note that this tool selects collection objects based on their *origins*\n (i.e., `offsets`).\n\n Parameters\n ----------\n ax : :class:`~matplotlib.axes.Axes`\n Axes to interact with.\n\n collection : :class:`matplotlib.collections.Collection` subclass\n Collection you want to select from.\n\n alpha_other : 0 <= float <= 1\n To highlight a selection, this tool sets all selected points to an\n alpha value of 1 and non-selected points to `alpha_other`.\n \"\"\"\n\n def __init__(self, ax, collection, alpha_other=0.3):\n self.canvas = ax.figure.canvas\n self.collection = collection\n self.alpha_other = alpha_other\n\n self.xys = collection.get_offsets()\n self.Npts = len(self.xys)\n\n # Ensure that we have separate colors for each object\n self.fc = collection.get_facecolors()\n if len(self.fc) == 0:\n raise ValueError('Collection must have a facecolor')\n elif len(self.fc) == 1:\n self.fc = np.tile(self.fc, (self.Npts, 1))\n\n self.lasso = LassoSelector(ax, onselect=self.onselect)\n self.ind = []\n\n def onselect(self, verts):\n path = Path(verts)\n self.ind = np.nonzero(path.contains_points(self.xys))[0]\n self.fc[:, -1] = self.alpha_other\n self.fc[self.ind, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n def disconnect(self):\n self.lasso.disconnect_events()\n self.fc[:, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n\n data = np.random.rand(100, 2)\n\n subplot_kw = dict(xlim=(0, 1), ylim=(0, 1), autoscale_on=False)\n fig, ax = plt.subplots(subplot_kw=subplot_kw)\n\n pts = ax.scatter(data[:, 0], data[:, 1], s=80)\n selector = SelectFromCollection(ax, pts)\n\n def accept(event):\n if event.key == \"enter\":\n print(\"Selected points:\")\n print(selector.xys[selector.ind])\n selector.disconnect()\n ax.set_title(\"\")\n fig.canvas.draw()\n\n fig.canvas.mpl_connect(\"key_press_event\", accept)\n ax.set_title(\"Press enter to accept selected points.\")\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6f01468f6d0567df2daec2096d638438/text3d.ipynb b/_downloads/6f01468f6d0567df2daec2096d638438/text3d.ipynb deleted file mode 100644 index 15ea11eb581..00000000000 --- a/_downloads/6f01468f6d0567df2daec2096d638438/text3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text annotations in 3D\n\n\nDemonstrates the placement of text annotations on a 3D plot.\n\nFunctionality shown:\n\n - Using the text function with three types of 'zdir' values: None, an axis\n name (ex. 'x'), or a direction tuple (ex. (1, 1, 0)).\n - Using the text function with the color keyword.\n\n - Using the text2D function to place text on a fixed position on the ax\n object.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Demo 1: zdir\nzdirs = (None, 'x', 'y', 'z', (1, 1, 0), (1, 1, 1))\nxs = (1, 4, 4, 9, 4, 1)\nys = (2, 5, 8, 10, 1, 2)\nzs = (10, 3, 8, 9, 1, 8)\n\nfor zdir, x, y, z in zip(zdirs, xs, ys, zs):\n label = '(%d, %d, %d), dir=%s' % (x, y, z, zdir)\n ax.text(x, y, z, label, zdir)\n\n# Demo 2: color\nax.text(9, 0, 0, \"red\", color='red')\n\n# Demo 3: text2D\n# Placement 0, 0 would be the bottom left, 1, 1 would be the top right.\nax.text2D(0.05, 0.95, \"2D Text\", transform=ax.transAxes)\n\n# Tweaking display region and labels\nax.set_xlim(0, 10)\nax.set_ylim(0, 10)\nax.set_zlim(0, 10)\nax.set_xlabel('X axis')\nax.set_ylabel('Y axis')\nax.set_zlabel('Z axis')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6f090e55a953931be35faca6dfbe4039/mathtext.py b/_downloads/6f090e55a953931be35faca6dfbe4039/mathtext.py deleted file mode 100644 index 897e6653cf2..00000000000 --- a/_downloads/6f090e55a953931be35faca6dfbe4039/mathtext.py +++ /dev/null @@ -1,339 +0,0 @@ -r""" -Writing mathematical expressions -================================ - -An introduction to writing mathematical expressions in Matplotlib. - -You can use a subset TeX markup in any matplotlib text string by placing it -inside a pair of dollar signs ($). - -Note that you do not need to have TeX installed, since Matplotlib ships -its own TeX expression parser, layout engine, and fonts. The layout engine -is a fairly direct adaptation of the layout algorithms in Donald Knuth's -TeX, so the quality is quite good (matplotlib also provides a ``usetex`` -option for those who do want to call out to TeX to generate their text (see -:doc:`/tutorials/text/usetex`). - -Any text element can use math text. You should use raw strings (precede the -quotes with an ``'r'``), and surround the math text with dollar signs ($), as -in TeX. Regular text and mathtext can be interleaved within the same string. -Mathtext can use DejaVu Sans (default), DejaVu Serif, the Computer Modern fonts -(from (La)TeX), `STIX `_ fonts (with are designed -to blend well with Times), or a Unicode font that you provide. The mathtext -font can be selected with the customization variable ``mathtext.fontset`` (see -:doc:`/tutorials/introductory/customizing`) - -Here is a simple example:: - - # plain text - plt.title('alpha > beta') - -produces "alpha > beta". - -Whereas this:: - - # math text - plt.title(r'$\alpha > \beta$') - -produces ":mathmpl:`\alpha > \beta`". - -.. note:: - Mathtext should be placed between a pair of dollar signs ($). To make it - easy to display monetary values, e.g., "$100.00", if a single dollar sign - is present in the entire string, it will be displayed verbatim as a dollar - sign. This is a small change from regular TeX, where the dollar sign in - non-math text would have to be escaped ('\\\$'). - -.. note:: - While the syntax inside the pair of dollar signs ($) aims to be TeX-like, - the text outside does not. In particular, characters such as:: - - # $ % & ~ _ ^ \ { } \( \) \[ \] - - have special meaning outside of math mode in TeX. Therefore, these - characters will behave differently depending on the rcParam ``text.usetex`` - flag. See the :doc:`usetex tutorial ` for more - information. - -Subscripts and superscripts ---------------------------- - -To make subscripts and superscripts, use the ``'_'`` and ``'^'`` symbols:: - - r'$\alpha_i > \beta_i$' - -.. math:: - - \alpha_i > \beta_i - -Some symbols automatically put their sub/superscripts under and over the -operator. For example, to write the sum of :mathmpl:`x_i` from :mathmpl:`0` to -:mathmpl:`\infty`, you could do:: - - r'$\sum_{i=0}^\infty x_i$' - -.. math:: - - \sum_{i=0}^\infty x_i - -Fractions, binomials, and stacked numbers ------------------------------------------ - -Fractions, binomials, and stacked numbers can be created with the -``\frac{}{}``, ``\binom{}{}`` and ``\genfrac{}{}{}{}{}{}`` commands, -respectively:: - - r'$\frac{3}{4} \binom{3}{4} \genfrac{}{}{0}{}{3}{4}$' - -produces - -.. math:: - - \frac{3}{4} \binom{3}{4} \stackrel{}{}{0}{}{3}{4} - -Fractions can be arbitrarily nested:: - - r'$\frac{5 - \frac{1}{x}}{4}$' - -produces - -.. math:: - - \frac{5 - \frac{1}{x}}{4} - -Note that special care needs to be taken to place parentheses and brackets -around fractions. Doing things the obvious way produces brackets that are too -small:: - - r'$(\frac{5 - \frac{1}{x}}{4})$' - -.. math :: - - (\frac{5 - \frac{1}{x}}{4}) - -The solution is to precede the bracket with ``\left`` and ``\right`` to inform -the parser that those brackets encompass the entire object.:: - - r'$\left(\frac{5 - \frac{1}{x}}{4}\right)$' - -.. math :: - - \left(\frac{5 - \frac{1}{x}}{4}\right) - -Radicals --------- - -Radicals can be produced with the ``\sqrt[]{}`` command. For example:: - - r'$\sqrt{2}$' - -.. math :: - - \sqrt{2} - -Any base can (optionally) be provided inside square brackets. Note that the -base must be a simple expression, and can not contain layout commands such as -fractions or sub/superscripts:: - - r'$\sqrt[3]{x}$' - -.. math :: - - \sqrt[3]{x} - -.. _mathtext-fonts: - -Fonts ------ - -The default font is *italics* for mathematical symbols. - -.. note:: - - This default can be changed using the ``mathtext.default`` rcParam. This is - useful, for example, to use the same font as regular non-math text for math - text, by setting it to ``regular``. - -To change fonts, e.g., to write "sin" in a Roman font, enclose the text in a -font command:: - - r'$s(t) = \mathcal{A}\mathrm{sin}(2 \omega t)$' - -.. math:: - - s(t) = \mathcal{A}\mathrm{sin}(2 \omega t) - -More conveniently, many commonly used function names that are typeset in -a Roman font have shortcuts. So the expression above could be written as -follows:: - - r'$s(t) = \mathcal{A}\sin(2 \omega t)$' - -.. math:: - - s(t) = \mathcal{A}\sin(2 \omega t) - -Here "s" and "t" are variable in italics font (default), "sin" is in Roman -font, and the amplitude "A" is in calligraphy font. Note in the example above -the calligraphy ``A`` is squished into the ``sin``. You can use a spacing -command to add a little whitespace between them:: - - r's(t) = \mathcal{A}\/\sin(2 \omega t)' - -.. Here we cheat a bit: for HTML math rendering, Sphinx relies on MathJax which - doesn't actually support the italic correction (\/); instead, use a thin - space (\,) which is supported. - -.. math:: - - s(t) = \mathcal{A}\,\sin(2 \omega t) - -The choices available with all fonts are: - - ========================= ================================ - Command Result - ========================= ================================ - ``\mathrm{Roman}`` :mathmpl:`\mathrm{Roman}` - ``\mathit{Italic}`` :mathmpl:`\mathit{Italic}` - ``\mathtt{Typewriter}`` :mathmpl:`\mathtt{Typewriter}` - ``\mathcal{CALLIGRAPHY}`` :mathmpl:`\mathcal{CALLIGRAPHY}` - ========================= ================================ - -.. role:: math-stix(mathmpl) - :fontset: stix - -When using the `STIX `_ fonts, you also have the -choice of: - - ================================ ========================================= - Command Result - ================================ ========================================= - ``\mathbb{blackboard}`` :math-stix:`\mathbb{blackboard}` - ``\mathrm{\mathbb{blackboard}}`` :math-stix:`\mathrm{\mathbb{blackboard}}` - ``\mathfrak{Fraktur}`` :math-stix:`\mathfrak{Fraktur}` - ``\mathsf{sansserif}`` :math-stix:`\mathsf{sansserif}` - ``\mathrm{\mathsf{sansserif}}`` :math-stix:`\mathrm{\mathsf{sansserif}}` - ================================ ========================================= - -There are also three global "font sets" to choose from, which are -selected using the ``mathtext.fontset`` parameter in :ref:`matplotlibrc -`. - -``cm``: **Computer Modern (TeX)** - -.. image:: ../../_static/cm_fontset.png - -``stix``: **STIX** (designed to blend well with Times) - -.. image:: ../../_static/stix_fontset.png - -``stixsans``: **STIX sans-serif** - -.. image:: ../../_static/stixsans_fontset.png - -Additionally, you can use ``\mathdefault{...}`` or its alias -``\mathregular{...}`` to use the font used for regular text outside of -mathtext. There are a number of limitations to this approach, most notably -that far fewer symbols will be available, but it can be useful to make math -expressions blend well with other text in the plot. - -Custom fonts -~~~~~~~~~~~~ - -mathtext also provides a way to use custom fonts for math. This method is -fairly tricky to use, and should be considered an experimental feature for -patient users only. By setting the rcParam ``mathtext.fontset`` to ``custom``, -you can then set the following parameters, which control which font file to use -for a particular set of math characters. - - ============================== ================================= - Parameter Corresponds to - ============================== ================================= - ``mathtext.it`` ``\mathit{}`` or default italic - ``mathtext.rm`` ``\mathrm{}`` Roman (upright) - ``mathtext.tt`` ``\mathtt{}`` Typewriter (monospace) - ``mathtext.bf`` ``\mathbf{}`` bold italic - ``mathtext.cal`` ``\mathcal{}`` calligraphic - ``mathtext.sf`` ``\mathsf{}`` sans-serif - ============================== ================================= - -Each parameter should be set to a fontconfig font descriptor (as defined in the -yet-to-be-written font chapter). - -.. TODO: Link to font chapter - -The fonts used should have a Unicode mapping in order to find any -non-Latin characters, such as Greek. If you want to use a math symbol -that is not contained in your custom fonts, you can set the rcParam -``mathtext.fallback_to_cm`` to ``True`` which will cause the mathtext system -to use characters from the default Computer Modern fonts whenever a particular -character can not be found in the custom font. - -Note that the math glyphs specified in Unicode have evolved over time, and many -fonts may not have glyphs in the correct place for mathtext. - -Accents -------- - -An accent command may precede any symbol to add an accent above it. There are -long and short forms for some of them. - - ============================== ================================= - Command Result - ============================== ================================= - ``\acute a`` or ``\'a`` :mathmpl:`\acute a` - ``\bar a`` :mathmpl:`\bar a` - ``\breve a`` :mathmpl:`\breve a` - ``\ddot a`` or ``\''a`` :mathmpl:`\ddot a` - ``\dot a`` or ``\.a`` :mathmpl:`\dot a` - ``\grave a`` or ``\`a`` :mathmpl:`\grave a` - ``\hat a`` or ``\^a`` :mathmpl:`\hat a` - ``\tilde a`` or ``\~a`` :mathmpl:`\tilde a` - ``\vec a`` :mathmpl:`\vec a` - ``\overline{abc}`` :mathmpl:`\overline{abc}` - ============================== ================================= - -In addition, there are two special accents that automatically adjust to the -width of the symbols below: - - ============================== ================================= - Command Result - ============================== ================================= - ``\widehat{xyz}`` :mathmpl:`\widehat{xyz}` - ``\widetilde{xyz}`` :mathmpl:`\widetilde{xyz}` - ============================== ================================= - -Care should be taken when putting accents on lower-case i's and j's. Note that -in the following ``\imath`` is used to avoid the extra dot over the i:: - - r"$\hat i\ \ \hat \imath$" - -.. math:: - - \hat i\ \ \hat \imath - -Symbols -------- - -You can also use a large number of the TeX symbols, as in ``\infty``, -``\leftarrow``, ``\sum``, ``\int``. - -.. math_symbol_table:: - -If a particular symbol does not have a name (as is true of many of the more -obscure symbols in the STIX fonts), Unicode characters can also be used:: - - ur'$\u23ce$' - -Example -------- - -Here is an example illustrating many of these features in context. - -.. figure:: ../../gallery/pyplots/images/sphx_glr_pyplot_mathtext_001.png - :target: ../../gallery/pyplots/pyplot_mathtext.html - :align: center - :scale: 50 - - Pyplot Mathtext -""" diff --git a/_downloads/6f0def86906f1c93b4a691604decc072/demo_fixed_size_axes.ipynb b/_downloads/6f0def86906f1c93b4a691604decc072/demo_fixed_size_axes.ipynb deleted file mode 100644 index 8387b365120..00000000000 --- a/_downloads/6f0def86906f1c93b4a691604decc072/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Fixed Size Axes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1 import Divider, Size\nfrom mpl_toolkits.axes_grid1.mpl_axes import Axes\n\n\ndef demo_fixed_size_axes():\n fig = plt.figure(figsize=(6, 6))\n\n # The first items are for padding and the second items are for the axes.\n # sizes are in inch.\n h = [Size.Fixed(1.0), Size.Fixed(4.5)]\n v = [Size.Fixed(0.7), Size.Fixed(5.)]\n\n divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False)\n # the width and height of the rectangle is ignored.\n\n ax = Axes(fig, divider.get_position())\n ax.set_axes_locator(divider.new_locator(nx=1, ny=1))\n\n fig.add_axes(ax)\n\n ax.plot([1, 2, 3])\n\n\ndef demo_fixed_pad_axes():\n fig = plt.figure(figsize=(6, 6))\n\n # The first & third items are for padding and the second items are for the\n # axes. Sizes are in inches.\n h = [Size.Fixed(1.0), Size.Scaled(1.), Size.Fixed(.2)]\n v = [Size.Fixed(0.7), Size.Scaled(1.), Size.Fixed(.5)]\n\n divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False)\n # the width and height of the rectangle is ignored.\n\n ax = Axes(fig, divider.get_position())\n ax.set_axes_locator(divider.new_locator(nx=1, ny=1))\n\n fig.add_axes(ax)\n\n ax.plot([1, 2, 3])\n\n\nif __name__ == \"__main__\":\n demo_fixed_size_axes()\n demo_fixed_pad_axes()\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6f1dc1129b7f867a80fca55719416836/cursor_demo.ipynb b/_downloads/6f1dc1129b7f867a80fca55719416836/cursor_demo.ipynb deleted file mode 120000 index 9d97974d55c..00000000000 --- a/_downloads/6f1dc1129b7f867a80fca55719416836/cursor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/6f1dc1129b7f867a80fca55719416836/cursor_demo.ipynb \ No newline at end of file diff --git a/_downloads/6f24f674d1e43675f88378eca1ef6bfb/scatter_symbol.ipynb b/_downloads/6f24f674d1e43675f88378eca1ef6bfb/scatter_symbol.ipynb deleted file mode 120000 index 379e766fd98..00000000000 --- a/_downloads/6f24f674d1e43675f88378eca1ef6bfb/scatter_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6f24f674d1e43675f88378eca1ef6bfb/scatter_symbol.ipynb \ No newline at end of file diff --git a/_downloads/6f254cae2a73a766cbe3f5713e93c2c5/fancytextbox_demo.ipynb b/_downloads/6f254cae2a73a766cbe3f5713e93c2c5/fancytextbox_demo.ipynb deleted file mode 100644 index 42612d5b44e..00000000000 --- a/_downloads/6f254cae2a73a766cbe3f5713e93c2c5/fancytextbox_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fancytextbox Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nplt.text(0.6, 0.7, \"eggs\", size=50, rotation=30.,\n ha=\"center\", va=\"center\",\n bbox=dict(boxstyle=\"round\",\n ec=(1., 0.5, 0.5),\n fc=(1., 0.8, 0.8),\n )\n )\n\nplt.text(0.55, 0.6, \"spam\", size=50, rotation=-25.,\n ha=\"right\", va=\"top\",\n bbox=dict(boxstyle=\"square\",\n ec=(1., 0.5, 0.5),\n fc=(1., 0.8, 0.8),\n )\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6f302db68491c654a43f1f3bd4d74054/make_room_for_ylabel_using_axesgrid.py b/_downloads/6f302db68491c654a43f1f3bd4d74054/make_room_for_ylabel_using_axesgrid.py deleted file mode 120000 index 44d23ba923e..00000000000 --- a/_downloads/6f302db68491c654a43f1f3bd4d74054/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6f302db68491c654a43f1f3bd4d74054/make_room_for_ylabel_using_axesgrid.py \ No newline at end of file diff --git a/_downloads/6f37f7c39b1e735fa47de085bd222c9e/pathpatch3d.ipynb b/_downloads/6f37f7c39b1e735fa47de085bd222c9e/pathpatch3d.ipynb deleted file mode 120000 index bcb8f0f8464..00000000000 --- a/_downloads/6f37f7c39b1e735fa47de085bd222c9e/pathpatch3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6f37f7c39b1e735fa47de085bd222c9e/pathpatch3d.ipynb \ No newline at end of file diff --git a/_downloads/6f38ccd36a3a197f619f806949f95d19/date.py b/_downloads/6f38ccd36a3a197f619f806949f95d19/date.py deleted file mode 120000 index 53f3c4d5fee..00000000000 --- a/_downloads/6f38ccd36a3a197f619f806949f95d19/date.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6f38ccd36a3a197f619f806949f95d19/date.py \ No newline at end of file diff --git a/_downloads/6f409d59b39976290ce94757fe2b6bd3/coords_report.ipynb b/_downloads/6f409d59b39976290ce94757fe2b6bd3/coords_report.ipynb deleted file mode 120000 index e7f5d83e54b..00000000000 --- a/_downloads/6f409d59b39976290ce94757fe2b6bd3/coords_report.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6f409d59b39976290ce94757fe2b6bd3/coords_report.ipynb \ No newline at end of file diff --git a/_downloads/6f418e1d19d713aab6905a780ae9ad83/axhspan_demo.ipynb b/_downloads/6f418e1d19d713aab6905a780ae9ad83/axhspan_demo.ipynb deleted file mode 120000 index 2114764be26..00000000000 --- a/_downloads/6f418e1d19d713aab6905a780ae9ad83/axhspan_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6f418e1d19d713aab6905a780ae9ad83/axhspan_demo.ipynb \ No newline at end of file diff --git a/_downloads/6f47b15929ddb515521ae50b3bfacc8d/demo_parasite_axes2.ipynb b/_downloads/6f47b15929ddb515521ae50b3bfacc8d/demo_parasite_axes2.ipynb deleted file mode 100644 index b4826a72c9e..00000000000 --- a/_downloads/6f47b15929ddb515521ae50b3bfacc8d/demo_parasite_axes2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Parasite Axes2\n\n\nParasite axis demo\n\nThe following code is an example of a parasite axis. It aims to show how\nto plot multiple different values onto one single plot. Notice how in this\nexample, par1 and par2 are both calling twinx meaning both are tied directly to\nthe x-axis. From there, each of those two axis can behave separately from the\neach other, meaning they can take on separate values from themselves as well as\nthe x-axis.\n\nNote that this approach uses the `mpl_toolkits.axes_grid1.parasite_axes`'\n`~mpl_toolkits.axes_grid1.parasite_axes.host_subplot` and\n`mpl_toolkits.axisartist.axislines.Axes`. An alternative approach using the\n`~mpl_toolkits.axes_grid1.parasite_axes`'s\n`~.mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and\n`~.mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes` is the\n:doc:`/gallery/axisartist/demo_parasite_axes` example.\nAn alternative approach using the usual matplotlib subplots is shown in\nthe :doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import host_subplot\nimport mpl_toolkits.axisartist as AA\nimport matplotlib.pyplot as plt\n\nhost = host_subplot(111, axes_class=AA.Axes)\nplt.subplots_adjust(right=0.75)\n\npar1 = host.twinx()\npar2 = host.twinx()\n\noffset = 60\nnew_fixed_axis = par2.get_grid_helper().new_fixed_axis\npar2.axis[\"right\"] = new_fixed_axis(loc=\"right\",\n axes=par2,\n offset=(offset, 0))\n\npar1.axis[\"right\"].toggle(all=True)\npar2.axis[\"right\"].toggle(all=True)\n\nhost.set_xlim(0, 2)\nhost.set_ylim(0, 2)\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar1.set_ylabel(\"Temperature\")\npar2.set_ylabel(\"Velocity\")\n\np1, = host.plot([0, 1, 2], [0, 1, 2], label=\"Density\")\np2, = par1.plot([0, 1, 2], [0, 3, 2], label=\"Temperature\")\np3, = par2.plot([0, 1, 2], [50, 30, 15], label=\"Velocity\")\n\npar1.set_ylim(0, 4)\npar2.set_ylim(1, 65)\n\nhost.legend()\n\nhost.axis[\"left\"].label.set_color(p1.get_color())\npar1.axis[\"right\"].label.set_color(p2.get_color())\npar2.axis[\"right\"].label.set_color(p3.get_color())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6f4e68d67c9efaa22e2f1a141de5a4b9/figure_axes_enter_leave.py b/_downloads/6f4e68d67c9efaa22e2f1a141de5a4b9/figure_axes_enter_leave.py deleted file mode 100644 index b1c81b6dd5b..00000000000 --- a/_downloads/6f4e68d67c9efaa22e2f1a141de5a4b9/figure_axes_enter_leave.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -======================= -Figure Axes Enter Leave -======================= - -Illustrate the figure and axes enter and leave events by changing the -frame colors on enter and leave -""" -import matplotlib.pyplot as plt - - -def enter_axes(event): - print('enter_axes', event.inaxes) - event.inaxes.patch.set_facecolor('yellow') - event.canvas.draw() - - -def leave_axes(event): - print('leave_axes', event.inaxes) - event.inaxes.patch.set_facecolor('white') - event.canvas.draw() - - -def enter_figure(event): - print('enter_figure', event.canvas.figure) - event.canvas.figure.patch.set_facecolor('red') - event.canvas.draw() - - -def leave_figure(event): - print('leave_figure', event.canvas.figure) - event.canvas.figure.patch.set_facecolor('grey') - event.canvas.draw() - -############################################################################### - -fig1, (ax, ax2) = plt.subplots(2, 1) -fig1.suptitle('mouse hover over figure or axes to trigger events') - -fig1.canvas.mpl_connect('figure_enter_event', enter_figure) -fig1.canvas.mpl_connect('figure_leave_event', leave_figure) -fig1.canvas.mpl_connect('axes_enter_event', enter_axes) -fig1.canvas.mpl_connect('axes_leave_event', leave_axes) - -############################################################################### - -fig2, (ax, ax2) = plt.subplots(2, 1) -fig2.suptitle('mouse hover over figure or axes to trigger events') - -fig2.canvas.mpl_connect('figure_enter_event', enter_figure) -fig2.canvas.mpl_connect('figure_leave_event', leave_figure) -fig2.canvas.mpl_connect('axes_enter_event', enter_axes) -fig2.canvas.mpl_connect('axes_leave_event', leave_axes) - -plt.show() diff --git a/_downloads/6f62799f61204400e4ebd31693e6385a/transparent_legends.py b/_downloads/6f62799f61204400e4ebd31693e6385a/transparent_legends.py deleted file mode 120000 index 2fa703d39e0..00000000000 --- a/_downloads/6f62799f61204400e4ebd31693e6385a/transparent_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6f62799f61204400e4ebd31693e6385a/transparent_legends.py \ No newline at end of file diff --git a/_downloads/6f6a2b8d21ddedcf1ff21ec2dbc0a9f9/date_demo_convert.py b/_downloads/6f6a2b8d21ddedcf1ff21ec2dbc0a9f9/date_demo_convert.py deleted file mode 120000 index 4c5bbcecf93..00000000000 --- a/_downloads/6f6a2b8d21ddedcf1ff21ec2dbc0a9f9/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6f6a2b8d21ddedcf1ff21ec2dbc0a9f9/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/6f6ddec07749bdbe4eea6b25d5dc81a6/contour_manual.py b/_downloads/6f6ddec07749bdbe4eea6b25d5dc81a6/contour_manual.py deleted file mode 120000 index 6dc7b556886..00000000000 --- a/_downloads/6f6ddec07749bdbe4eea6b25d5dc81a6/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6f6ddec07749bdbe4eea6b25d5dc81a6/contour_manual.py \ No newline at end of file diff --git a/_downloads/6f70dbecb5574ac381152823720a75a9/artists.ipynb b/_downloads/6f70dbecb5574ac381152823720a75a9/artists.ipynb deleted file mode 120000 index 144f2d67692..00000000000 --- a/_downloads/6f70dbecb5574ac381152823720a75a9/artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6f70dbecb5574ac381152823720a75a9/artists.ipynb \ No newline at end of file diff --git a/_downloads/6f70f9893f15c7a180344ee55d4eb9a7/pyplot.ipynb b/_downloads/6f70f9893f15c7a180344ee55d4eb9a7/pyplot.ipynb deleted file mode 120000 index d216046be0d..00000000000 --- a/_downloads/6f70f9893f15c7a180344ee55d4eb9a7/pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6f70f9893f15c7a180344ee55d4eb9a7/pyplot.ipynb \ No newline at end of file diff --git a/_downloads/6f71d654f5eaf10d3ba67ee208015cfd/custom_figure_class.py b/_downloads/6f71d654f5eaf10d3ba67ee208015cfd/custom_figure_class.py deleted file mode 100644 index db1315f1f59..00000000000 --- a/_downloads/6f71d654f5eaf10d3ba67ee208015cfd/custom_figure_class.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -=================== -Custom Figure Class -=================== - -You can pass a custom Figure constructor to figure if you want to derive from -the default Figure. This simple example creates a figure with a figure title. -""" - -import matplotlib.pyplot as plt -from matplotlib.figure import Figure - - -class MyFigure(Figure): - def __init__(self, *args, figtitle='hi mom', **kwargs): - """ - custom kwarg figtitle is a figure title - """ - super().__init__(*args, **kwargs) - self.text(0.5, 0.95, figtitle, ha='center') - - -fig = plt.figure(FigureClass=MyFigure, figtitle='my title') -ax = fig.subplots() -ax.plot([1, 2, 3]) - -plt.show() diff --git a/_downloads/6f740ff878eb7af08d204edefcd427ba/gridspec_nested.py b/_downloads/6f740ff878eb7af08d204edefcd427ba/gridspec_nested.py deleted file mode 120000 index ccee47476a5..00000000000 --- a/_downloads/6f740ff878eb7af08d204edefcd427ba/gridspec_nested.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6f740ff878eb7af08d204edefcd427ba/gridspec_nested.py \ No newline at end of file diff --git a/_downloads/6f753b724c63cb1eb378190c73453a0d/autowrap.ipynb b/_downloads/6f753b724c63cb1eb378190c73453a0d/autowrap.ipynb deleted file mode 120000 index dc74be48b9c..00000000000 --- a/_downloads/6f753b724c63cb1eb378190c73453a0d/autowrap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6f753b724c63cb1eb378190c73453a0d/autowrap.ipynb \ No newline at end of file diff --git a/_downloads/6f76996a45ea5bc374da8fb6afda966b/annotation_polar.py b/_downloads/6f76996a45ea5bc374da8fb6afda966b/annotation_polar.py deleted file mode 120000 index b82cdfaedc0..00000000000 --- a/_downloads/6f76996a45ea5bc374da8fb6afda966b/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/6f76996a45ea5bc374da8fb6afda966b/annotation_polar.py \ No newline at end of file diff --git a/_downloads/6f7b7d2033dbb069b1a7ec9b7ad5674a/contourf_hatching.py b/_downloads/6f7b7d2033dbb069b1a7ec9b7ad5674a/contourf_hatching.py deleted file mode 120000 index 626b5b9be39..00000000000 --- a/_downloads/6f7b7d2033dbb069b1a7ec9b7ad5674a/contourf_hatching.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6f7b7d2033dbb069b1a7ec9b7ad5674a/contourf_hatching.py \ No newline at end of file diff --git a/_downloads/6f7e6ee0722c9c9bc320bfc3be0e3343/scatter_star_poly.ipynb b/_downloads/6f7e6ee0722c9c9bc320bfc3be0e3343/scatter_star_poly.ipynb deleted file mode 120000 index cc4388cd45c..00000000000 --- a/_downloads/6f7e6ee0722c9c9bc320bfc3be0e3343/scatter_star_poly.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6f7e6ee0722c9c9bc320bfc3be0e3343/scatter_star_poly.ipynb \ No newline at end of file diff --git a/_downloads/6f7ef6d71d036942d649eab102f8aef3/ganged_plots.py b/_downloads/6f7ef6d71d036942d649eab102f8aef3/ganged_plots.py deleted file mode 100644 index 4014dabdf04..00000000000 --- a/_downloads/6f7ef6d71d036942d649eab102f8aef3/ganged_plots.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -========================== -Creating adjacent subplots -========================== - -To create plots that share a common axis (visually) you can set the hspace -between the subplots to zero. Passing sharex=True when creating the subplots -will automatically turn off all x ticks and labels except those on the bottom -axis. - -In this example the plots share a common x axis but you can follow the same -logic to supply a common y axis. -""" -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 2.0, 0.01) - -s1 = np.sin(2 * np.pi * t) -s2 = np.exp(-t) -s3 = s1 * s2 - -fig, axs = plt.subplots(3, 1, sharex=True) -# Remove horizontal space between axes -fig.subplots_adjust(hspace=0) - -# Plot each graph, and manually set the y tick values -axs[0].plot(t, s1) -axs[0].set_yticks(np.arange(-0.9, 1.0, 0.4)) -axs[0].set_ylim(-1, 1) - -axs[1].plot(t, s2) -axs[1].set_yticks(np.arange(0.1, 1.0, 0.2)) -axs[1].set_ylim(0, 1) - -axs[2].plot(t, s3) -axs[2].set_yticks(np.arange(-0.9, 1.0, 0.4)) -axs[2].set_ylim(-1, 1) - -plt.show() diff --git a/_downloads/6f817d02de48acef4ca6b74a7c575c2a/figimage_demo.ipynb b/_downloads/6f817d02de48acef4ca6b74a7c575c2a/figimage_demo.ipynb deleted file mode 120000 index edd303d16b4..00000000000 --- a/_downloads/6f817d02de48acef4ca6b74a7c575c2a/figimage_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6f817d02de48acef4ca6b74a7c575c2a/figimage_demo.ipynb \ No newline at end of file diff --git a/_downloads/6f85467ad561400a5a7655bbef826306/categorical_variables.py b/_downloads/6f85467ad561400a5a7655bbef826306/categorical_variables.py deleted file mode 100644 index fce733581f3..00000000000 --- a/_downloads/6f85467ad561400a5a7655bbef826306/categorical_variables.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -============================== -Plotting categorical variables -============================== - -How to use categorical variables in Matplotlib. - -Many times you want to create a plot that uses categorical variables -in Matplotlib. Matplotlib allows you to pass categorical variables directly to -many plotting functions, which we demonstrate below. -""" -import matplotlib.pyplot as plt - -data = {'apples': 10, 'oranges': 15, 'lemons': 5, 'limes': 20} -names = list(data.keys()) -values = list(data.values()) - -fig, axs = plt.subplots(1, 3, figsize=(9, 3), sharey=True) -axs[0].bar(names, values) -axs[1].scatter(names, values) -axs[2].plot(names, values) -fig.suptitle('Categorical Plotting') - - -############################################################################### -# This works on both axes: - -cat = ["bored", "happy", "bored", "bored", "happy", "bored"] -dog = ["happy", "happy", "happy", "happy", "bored", "bored"] -activity = ["combing", "drinking", "feeding", "napping", "playing", "washing"] - -fig, ax = plt.subplots() -ax.plot(activity, dog, label="dog") -ax.plot(activity, cat, label="cat") -ax.legend() - -plt.show() diff --git a/_downloads/6f8595725c171b44af3fb1092818e87c/multiprocess_sgskip.ipynb b/_downloads/6f8595725c171b44af3fb1092818e87c/multiprocess_sgskip.ipynb deleted file mode 100644 index 35b8e52a95b..00000000000 --- a/_downloads/6f8595725c171b44af3fb1092818e87c/multiprocess_sgskip.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiprocess\n\n\nDemo of using multiprocessing for generating data in one process and\nplotting in another.\n\nWritten by Robert Cimrman\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import multiprocessing as mp\nimport time\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Processing Class\n================\n\nThis class plots data it receives from a pipe.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class ProcessPlotter(object):\n def __init__(self):\n self.x = []\n self.y = []\n\n def terminate(self):\n plt.close('all')\n\n def call_back(self):\n while self.pipe.poll():\n command = self.pipe.recv()\n if command is None:\n self.terminate()\n return False\n else:\n self.x.append(command[0])\n self.y.append(command[1])\n self.ax.plot(self.x, self.y, 'ro')\n self.fig.canvas.draw()\n return True\n\n def __call__(self, pipe):\n print('starting plotter...')\n\n self.pipe = pipe\n self.fig, self.ax = plt.subplots()\n timer = self.fig.canvas.new_timer(interval=1000)\n timer.add_callback(self.call_back)\n timer.start()\n\n print('...done')\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plotting class\n==============\n\nThis class uses multiprocessing to spawn a process to run code from the\nclass above. When initialized, it creates a pipe and an instance of\n``ProcessPlotter`` which will be run in a separate process.\n\nWhen run from the command line, the parent process sends data to the spawned\nprocess which is then plotted via the callback function specified in\n``ProcessPlotter:__call__``.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class NBPlot(object):\n def __init__(self):\n self.plot_pipe, plotter_pipe = mp.Pipe()\n self.plotter = ProcessPlotter()\n self.plot_process = mp.Process(\n target=self.plotter, args=(plotter_pipe,), daemon=True)\n self.plot_process.start()\n\n def plot(self, finished=False):\n send = self.plot_pipe.send\n if finished:\n send(None)\n else:\n data = np.random.random(2)\n send(data)\n\n\ndef main():\n pl = NBPlot()\n for ii in range(10):\n pl.plot()\n time.sleep(0.5)\n pl.plot(finished=True)\n\n\nif __name__ == '__main__':\n if plt.get_backend() == \"MacOSX\":\n mp.set_start_method(\"forkserver\")\n main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6f8c23c20930cf513505a54d43a86458/surface3d_radial.py b/_downloads/6f8c23c20930cf513505a54d43a86458/surface3d_radial.py deleted file mode 120000 index d78de05b5b1..00000000000 --- a/_downloads/6f8c23c20930cf513505a54d43a86458/surface3d_radial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6f8c23c20930cf513505a54d43a86458/surface3d_radial.py \ No newline at end of file diff --git a/_downloads/6f8d9d5c7fce06c83b6dd1fda133b187/svg_filter_line.ipynb b/_downloads/6f8d9d5c7fce06c83b6dd1fda133b187/svg_filter_line.ipynb deleted file mode 120000 index 1735cdb1cf8..00000000000 --- a/_downloads/6f8d9d5c7fce06c83b6dd1fda133b187/svg_filter_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6f8d9d5c7fce06c83b6dd1fda133b187/svg_filter_line.ipynb \ No newline at end of file diff --git a/_downloads/6f90e5a63caadafad1acf1560a853d5c/embedding_webagg_sgskip.ipynb b/_downloads/6f90e5a63caadafad1acf1560a853d5c/embedding_webagg_sgskip.ipynb deleted file mode 120000 index de92f0ecd8c..00000000000 --- a/_downloads/6f90e5a63caadafad1acf1560a853d5c/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6f90e5a63caadafad1acf1560a853d5c/embedding_webagg_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/6fa3e571b24991ffbdf4f178fabbf946/double_pendulum_sgskip.ipynb b/_downloads/6fa3e571b24991ffbdf4f178fabbf946/double_pendulum_sgskip.ipynb deleted file mode 100644 index f83e93e2bf0..00000000000 --- a/_downloads/6fa3e571b24991ffbdf4f178fabbf946/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The double pendulum problem\n\n\nThis animation illustrates the double pendulum problem.\n\nDouble pendulum formula translated from the C code at\nhttp://www.physics.usyd.edu.au/~wheat/dpend_html/solve_dpend.c\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from numpy import sin, cos\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport scipy.integrate as integrate\nimport matplotlib.animation as animation\n\nG = 9.8 # acceleration due to gravity, in m/s^2\nL1 = 1.0 # length of pendulum 1 in m\nL2 = 1.0 # length of pendulum 2 in m\nM1 = 1.0 # mass of pendulum 1 in kg\nM2 = 1.0 # mass of pendulum 2 in kg\n\n\ndef derivs(state, t):\n\n dydx = np.zeros_like(state)\n dydx[0] = state[1]\n\n delta = state[2] - state[0]\n den1 = (M1+M2) * L1 - M2 * L1 * cos(delta) * cos(delta)\n dydx[1] = ((M2 * L1 * state[1] * state[1] * sin(delta) * cos(delta)\n + M2 * G * sin(state[2]) * cos(delta)\n + M2 * L2 * state[3] * state[3] * sin(delta)\n - (M1+M2) * G * sin(state[0]))\n / den1)\n\n dydx[2] = state[3]\n\n den2 = (L2/L1) * den1\n dydx[3] = ((- M2 * L2 * state[3] * state[3] * sin(delta) * cos(delta)\n + (M1+M2) * G * sin(state[0]) * cos(delta)\n - (M1+M2) * L1 * state[1] * state[1] * sin(delta)\n - (M1+M2) * G * sin(state[2]))\n / den2)\n\n return dydx\n\n# create a time array from 0..100 sampled at 0.05 second steps\ndt = 0.05\nt = np.arange(0, 20, dt)\n\n# th1 and th2 are the initial angles (degrees)\n# w10 and w20 are the initial angular velocities (degrees per second)\nth1 = 120.0\nw1 = 0.0\nth2 = -10.0\nw2 = 0.0\n\n# initial state\nstate = np.radians([th1, w1, th2, w2])\n\n# integrate your ODE using scipy.integrate.\ny = integrate.odeint(derivs, state, t)\n\nx1 = L1*sin(y[:, 0])\ny1 = -L1*cos(y[:, 0])\n\nx2 = L2*sin(y[:, 2]) + x1\ny2 = -L2*cos(y[:, 2]) + y1\n\nfig = plt.figure()\nax = fig.add_subplot(111, autoscale_on=False, xlim=(-2, 2), ylim=(-2, 2))\nax.set_aspect('equal')\nax.grid()\n\nline, = ax.plot([], [], 'o-', lw=2)\ntime_template = 'time = %.1fs'\ntime_text = ax.text(0.05, 0.9, '', transform=ax.transAxes)\n\n\ndef init():\n line.set_data([], [])\n time_text.set_text('')\n return line, time_text\n\n\ndef animate(i):\n thisx = [0, x1[i], x2[i]]\n thisy = [0, y1[i], y2[i]]\n\n line.set_data(thisx, thisy)\n time_text.set_text(time_template % (i*dt))\n return line, time_text\n\n\nani = animation.FuncAnimation(fig, animate, range(1, len(y)),\n interval=dt*1000, blit=True, init_func=init)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6fae6c6ad3371e2e63bb121cb09a3d64/simple_axesgrid.ipynb b/_downloads/6fae6c6ad3371e2e63bb121cb09a3d64/simple_axesgrid.ipynb deleted file mode 120000 index 06c6c457856..00000000000 --- a/_downloads/6fae6c6ad3371e2e63bb121cb09a3d64/simple_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6fae6c6ad3371e2e63bb121cb09a3d64/simple_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/6fafdd309ac7a02b40ad2506d56e2b01/radio_buttons.py b/_downloads/6fafdd309ac7a02b40ad2506d56e2b01/radio_buttons.py deleted file mode 120000 index 7928b82ab2d..00000000000 --- a/_downloads/6fafdd309ac7a02b40ad2506d56e2b01/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6fafdd309ac7a02b40ad2506d56e2b01/radio_buttons.py \ No newline at end of file diff --git a/_downloads/6fb4c09f79412fc702ed41d1212a80ac/simple_axesgrid2.py b/_downloads/6fb4c09f79412fc702ed41d1212a80ac/simple_axesgrid2.py deleted file mode 120000 index e16743bc323..00000000000 --- a/_downloads/6fb4c09f79412fc702ed41d1212a80ac/simple_axesgrid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6fb4c09f79412fc702ed41d1212a80ac/simple_axesgrid2.py \ No newline at end of file diff --git a/_downloads/6fb7ae726e2545a52a8a9a4f49b91f57/share_axis_lims_views.py b/_downloads/6fb7ae726e2545a52a8a9a4f49b91f57/share_axis_lims_views.py deleted file mode 120000 index bc0556ebc78..00000000000 --- a/_downloads/6fb7ae726e2545a52a8a9a4f49b91f57/share_axis_lims_views.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/6fb7ae726e2545a52a8a9a4f49b91f57/share_axis_lims_views.py \ No newline at end of file diff --git a/_downloads/6fbdefae509fa24d5207700d18ef55da/boxplot_color.ipynb b/_downloads/6fbdefae509fa24d5207700d18ef55da/boxplot_color.ipynb deleted file mode 120000 index 85ea009d762..00000000000 --- a/_downloads/6fbdefae509fa24d5207700d18ef55da/boxplot_color.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/6fbdefae509fa24d5207700d18ef55da/boxplot_color.ipynb \ No newline at end of file diff --git a/_downloads/6fc4bc7f9ee3d58ff8d886fe6225ce48/simple_axisartist1.ipynb b/_downloads/6fc4bc7f9ee3d58ff8d886fe6225ce48/simple_axisartist1.ipynb deleted file mode 120000 index 2504fb22410..00000000000 --- a/_downloads/6fc4bc7f9ee3d58ff8d886fe6225ce48/simple_axisartist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6fc4bc7f9ee3d58ff8d886fe6225ce48/simple_axisartist1.ipynb \ No newline at end of file diff --git a/_downloads/6fcea0db37493e0098cae794743eb2cd/rainbow_text.py b/_downloads/6fcea0db37493e0098cae794743eb2cd/rainbow_text.py deleted file mode 100644 index 4842038a8ee..00000000000 --- a/_downloads/6fcea0db37493e0098cae794743eb2cd/rainbow_text.py +++ /dev/null @@ -1,81 +0,0 @@ -""" -============ -Rainbow text -============ - -The example shows how to string together several text objects. - -History -------- -On the matplotlib-users list back in February 2012, Gökhan Sever asked the -following question: - - Is there a way in matplotlib to partially specify the color of a string? - - Example: - - plt.ylabel("Today is cloudy.") - - How can I show "today" as red, "is" as green and "cloudy." as blue? - - Thanks. - -Paul Ivanov responded with this answer: - -""" -import matplotlib.pyplot as plt -from matplotlib import transforms - - -def rainbow_text(x, y, strings, colors, orientation='horizontal', - ax=None, **kwargs): - """ - Take a list of *strings* and *colors* and place them next to each - other, with text strings[i] being shown in colors[i]. - - Parameters - ---------- - x, y : float - Text position in data coordinates. - strings : list of str - The strings to draw. - colors : list of color - The colors to use. - orientation : {'horizontal', 'vertical'} - ax : Axes, optional - The Axes to draw into. If None, the current axes will be used. - **kwargs - All other keyword arguments are passed to plt.text(), so you can - set the font size, family, etc. - """ - if ax is None: - ax = plt.gca() - t = ax.transData - canvas = ax.figure.canvas - - assert orientation in ['horizontal', 'vertical'] - if orientation == 'vertical': - kwargs.update(rotation=90, verticalalignment='bottom') - - for s, c in zip(strings, colors): - text = ax.text(x, y, s + " ", color=c, transform=t, **kwargs) - - # Need to draw to update the text position. - text.draw(canvas.get_renderer()) - ex = text.get_window_extent() - if orientation == 'horizontal': - t = transforms.offset_copy( - text.get_transform(), x=ex.width, units='dots') - else: - t = transforms.offset_copy( - text.get_transform(), y=ex.height, units='dots') - - -words = "all unicorns poop rainbows ! ! !".split() -colors = ['red', 'orange', 'gold', 'lawngreen', 'lightseagreen', 'royalblue', - 'blueviolet'] -plt.figure(figsize=(6, 6)) -rainbow_text(0.1, 0.05, words, colors, size=18) -rainbow_text(0.05, 0.1, words, colors, orientation='vertical', size=18) - -plt.show() diff --git a/_downloads/6fd60662b3bc1e803fc9f7e8e24a9025/accented_text.py b/_downloads/6fd60662b3bc1e803fc9f7e8e24a9025/accented_text.py deleted file mode 120000 index d7150e9cfab..00000000000 --- a/_downloads/6fd60662b3bc1e803fc9f7e8e24a9025/accented_text.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6fd60662b3bc1e803fc9f7e8e24a9025/accented_text.py \ No newline at end of file diff --git a/_downloads/6fd8c57479cccb2b7f96c0257b4200d1/rectangle_selector.py b/_downloads/6fd8c57479cccb2b7f96c0257b4200d1/rectangle_selector.py deleted file mode 120000 index 42dfa3e8d8f..00000000000 --- a/_downloads/6fd8c57479cccb2b7f96c0257b4200d1/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6fd8c57479cccb2b7f96c0257b4200d1/rectangle_selector.py \ No newline at end of file diff --git a/_downloads/6fe22f082558a7265a3fd0e4927da7bd/figlegend_demo.py b/_downloads/6fe22f082558a7265a3fd0e4927da7bd/figlegend_demo.py deleted file mode 120000 index 227a9550ada..00000000000 --- a/_downloads/6fe22f082558a7265a3fd0e4927da7bd/figlegend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/6fe22f082558a7265a3fd0e4927da7bd/figlegend_demo.py \ No newline at end of file diff --git a/_downloads/6fe57f3705665d21b36295ee3458be1d/line_collection.py b/_downloads/6fe57f3705665d21b36295ee3458be1d/line_collection.py deleted file mode 100644 index 343c4a124ac..00000000000 --- a/_downloads/6fe57f3705665d21b36295ee3458be1d/line_collection.py +++ /dev/null @@ -1,103 +0,0 @@ -""" -=============== -Line Collection -=============== - -Plotting lines with Matplotlib. - -:class:`~matplotlib.collections.LineCollection` allows one to plot multiple -lines on a figure. Below we show off some of its properties. -""" -import matplotlib.pyplot as plt -from matplotlib.collections import LineCollection -from matplotlib import colors as mcolors - -import numpy as np - -# In order to efficiently plot many lines in a single set of axes, -# Matplotlib has the ability to add the lines all at once. Here is a -# simple example showing how it is done. - -x = np.arange(100) -# Here are many sets of y to plot vs x -ys = x[:50, np.newaxis] + x[np.newaxis, :] - -segs = np.zeros((50, 100, 2)) -segs[:, :, 1] = ys -segs[:, :, 0] = x - -# Mask some values to test masked array support: -segs = np.ma.masked_where((segs > 50) & (segs < 60), segs) - -# We need to set the plot limits. -fig, ax = plt.subplots() -ax.set_xlim(x.min(), x.max()) -ax.set_ylim(ys.min(), ys.max()) - -# colors is sequence of rgba tuples -# linestyle is a string or dash tuple. Legal string values are -# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq) -# where onoffseq is an even length tuple of on and off ink in points. -# If linestyle is omitted, 'solid' is used -# See :class:`matplotlib.collections.LineCollection` for more information -colors = [mcolors.to_rgba(c) - for c in plt.rcParams['axes.prop_cycle'].by_key()['color']] - -line_segments = LineCollection(segs, linewidths=(0.5, 1, 1.5, 2), - colors=colors, linestyle='solid') -ax.add_collection(line_segments) -ax.set_title('Line collection with masked arrays') -plt.show() - -############################################################################### -# In order to efficiently plot many lines in a single set of axes, -# Matplotlib has the ability to add the lines all at once. Here is a -# simple example showing how it is done. - -N = 50 -x = np.arange(N) -# Here are many sets of y to plot vs x -ys = [x + i for i in x] - -# We need to set the plot limits, they will not autoscale -fig, ax = plt.subplots() -ax.set_xlim(np.min(x), np.max(x)) -ax.set_ylim(np.min(ys), np.max(ys)) - -# colors is sequence of rgba tuples -# linestyle is a string or dash tuple. Legal string values are -# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq) -# where onoffseq is an even length tuple of on and off ink in points. -# If linestyle is omitted, 'solid' is used -# See :class:`matplotlib.collections.LineCollection` for more information - -# Make a sequence of x,y pairs -line_segments = LineCollection([np.column_stack([x, y]) for y in ys], - linewidths=(0.5, 1, 1.5, 2), - linestyles='solid') -line_segments.set_array(x) -ax.add_collection(line_segments) -axcb = fig.colorbar(line_segments) -axcb.set_label('Line Number') -ax.set_title('Line Collection with mapped colors') -plt.sci(line_segments) # This allows interactive changing of the colormap. -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.collections -matplotlib.collections.LineCollection -matplotlib.cm.ScalarMappable.set_array -matplotlib.axes.Axes.add_collection -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.pyplot.sci diff --git a/_downloads/6fe5f9c772370578dbfff35684915671/shading_example.ipynb b/_downloads/6fe5f9c772370578dbfff35684915671/shading_example.ipynb deleted file mode 120000 index 09ae3834eb4..00000000000 --- a/_downloads/6fe5f9c772370578dbfff35684915671/shading_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/6fe5f9c772370578dbfff35684915671/shading_example.ipynb \ No newline at end of file diff --git a/_downloads/6fe9aea92f989013164afc11f8aee622/simple_rgb.py b/_downloads/6fe9aea92f989013164afc11f8aee622/simple_rgb.py deleted file mode 120000 index 82e0deb96da..00000000000 --- a/_downloads/6fe9aea92f989013164afc11f8aee622/simple_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/6fe9aea92f989013164afc11f8aee622/simple_rgb.py \ No newline at end of file diff --git a/_downloads/6fec3834631238cf862163dee8fed335/csd_demo.py b/_downloads/6fec3834631238cf862163dee8fed335/csd_demo.py deleted file mode 100644 index 1eacc649b20..00000000000 --- a/_downloads/6fec3834631238cf862163dee8fed335/csd_demo.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -======== -CSD Demo -======== - -Compute the cross spectral density of two signals -""" -import numpy as np -import matplotlib.pyplot as plt - - -fig, (ax1, ax2) = plt.subplots(2, 1) -# make a little extra space between the subplots -fig.subplots_adjust(hspace=0.5) - -dt = 0.01 -t = np.arange(0, 30, dt) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -nse1 = np.random.randn(len(t)) # white noise 1 -nse2 = np.random.randn(len(t)) # white noise 2 -r = np.exp(-t / 0.05) - -cnse1 = np.convolve(nse1, r, mode='same') * dt # colored noise 1 -cnse2 = np.convolve(nse2, r, mode='same') * dt # colored noise 2 - -# two signals with a coherent part and a random part -s1 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse1 -s2 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse2 - -ax1.plot(t, s1, t, s2) -ax1.set_xlim(0, 5) -ax1.set_xlabel('time') -ax1.set_ylabel('s1 and s2') -ax1.grid(True) - -cxy, f = ax2.csd(s1, s2, 256, 1. / dt) -ax2.set_ylabel('CSD (db)') -plt.show() diff --git a/_downloads/6ff2b655d0d674754cf7e0df8a7840f8/annotation_polar.ipynb b/_downloads/6ff2b655d0d674754cf7e0df8a7840f8/annotation_polar.ipynb deleted file mode 100644 index f2404637c82..00000000000 --- a/_downloads/6ff2b655d0d674754cf7e0df8a7840f8/annotation_polar.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotation Polar\n\n\nThis example shows how to create an annotation on a polar graph.\n\nFor a complete overview of the annotation capabilities, also see the\n:doc:`annotation tutorial`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nax = fig.add_subplot(111, polar=True)\nr = np.arange(0,1,0.001)\ntheta = 2 * 2*np.pi * r\nline, = ax.plot(theta, r, color='#ee8d18', lw=3)\n\nind = 800\nthisr, thistheta = r[ind], theta[ind]\nax.plot([thistheta], [thisr], 'o')\nax.annotate('a polar annotation',\n xy=(thistheta, thisr), # theta, radius\n xytext=(0.05, 0.05), # fraction, fraction\n textcoords='figure fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='left',\n verticalalignment='bottom',\n )\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.projections.polar\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/6ffd4eee0efb8e96aa2912b8c6d1353a/text_rotation_relative_to_line.ipynb b/_downloads/6ffd4eee0efb8e96aa2912b8c6d1353a/text_rotation_relative_to_line.ipynb deleted file mode 120000 index 4f2347b9f6f..00000000000 --- a/_downloads/6ffd4eee0efb8e96aa2912b8c6d1353a/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/6ffd4eee0efb8e96aa2912b8c6d1353a/text_rotation_relative_to_line.ipynb \ No newline at end of file diff --git a/_downloads/7001c58a85456a7948888af2258e7487/colorbar_tick_labelling_demo.ipynb b/_downloads/7001c58a85456a7948888af2258e7487/colorbar_tick_labelling_demo.ipynb deleted file mode 100644 index be1c0f2ef7d..00000000000 --- a/_downloads/7001c58a85456a7948888af2258e7487/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colorbar Tick Labelling Demo\n\n\nProduce custom labelling for a colorbar.\n\nContributed by Scott Sinclair\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import cm\nfrom numpy.random import randn" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make plot with vertical (default) colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\ndata = np.clip(randn(250, 250), -1, 1)\n\ncax = ax.imshow(data, interpolation='nearest', cmap=cm.coolwarm)\nax.set_title('Gaussian noise with vertical colorbar')\n\n# Add colorbar, make sure to specify tick locations to match desired ticklabels\ncbar = fig.colorbar(cax, ticks=[-1, 0, 1])\ncbar.ax.set_yticklabels(['< -1', '0', '> 1']) # vertically oriented colorbar" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make plot with horizontal colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\ndata = np.clip(randn(250, 250), -1, 1)\n\ncax = ax.imshow(data, interpolation='nearest', cmap=cm.afmhot)\nax.set_title('Gaussian noise with horizontal colorbar')\n\ncbar = fig.colorbar(cax, ticks=[-1, 0, 1], orientation='horizontal')\ncbar.ax.set_xticklabels(['Low', 'Medium', 'High']) # horizontal colorbar\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/701138e2a759683701b54c2315265421/simple_axis_pad.ipynb b/_downloads/701138e2a759683701b54c2315265421/simple_axis_pad.ipynb deleted file mode 120000 index 53151b37cf6..00000000000 --- a/_downloads/701138e2a759683701b54c2315265421/simple_axis_pad.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/701138e2a759683701b54c2315265421/simple_axis_pad.ipynb \ No newline at end of file diff --git a/_downloads/701ea85b621bcc873daf65e22575db9e/colormap_normalizations_diverging.ipynb b/_downloads/701ea85b621bcc873daf65e22575db9e/colormap_normalizations_diverging.ipynb deleted file mode 120000 index 988f7ae26b4..00000000000 --- a/_downloads/701ea85b621bcc873daf65e22575db9e/colormap_normalizations_diverging.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/701ea85b621bcc873daf65e22575db9e/colormap_normalizations_diverging.ipynb \ No newline at end of file diff --git a/_downloads/70217646e730850730320eba32a36d29/scatter_hist_locatable_axes.ipynb b/_downloads/70217646e730850730320eba32a36d29/scatter_hist_locatable_axes.ipynb deleted file mode 100644 index 25a77ed9692..00000000000 --- a/_downloads/70217646e730850730320eba32a36d29/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Hist\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import make_axes_locatable\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# the random data\nx = np.random.randn(1000)\ny = np.random.randn(1000)\n\n\nfig, axScatter = plt.subplots(figsize=(5.5, 5.5))\n\n# the scatter plot:\naxScatter.scatter(x, y)\naxScatter.set_aspect(1.)\n\n# create new axes on the right and on the top of the current axes\n# The first argument of the new_vertical(new_horizontal) method is\n# the height (width) of the axes to be created in inches.\ndivider = make_axes_locatable(axScatter)\naxHistx = divider.append_axes(\"top\", 1.2, pad=0.1, sharex=axScatter)\naxHisty = divider.append_axes(\"right\", 1.2, pad=0.1, sharey=axScatter)\n\n# make some labels invisible\naxHistx.xaxis.set_tick_params(labelbottom=False)\naxHisty.yaxis.set_tick_params(labelleft=False)\n\n# now determine nice limits by hand:\nbinwidth = 0.25\nxymax = max(np.max(np.abs(x)), np.max(np.abs(y)))\nlim = (int(xymax/binwidth) + 1)*binwidth\n\nbins = np.arange(-lim, lim + binwidth, binwidth)\naxHistx.hist(x, bins=bins)\naxHisty.hist(y, bins=bins, orientation='horizontal')\n\n# the xaxis of axHistx and yaxis of axHisty are shared with axScatter,\n# thus there is no need to manually adjust the xlim and ylim of these\n# axis.\n\naxHistx.set_yticks([0, 50, 100])\n\naxHisty.set_xticks([0, 50, 100])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7022842fa40e26d73690c1c1bb145ef3/eventcollection_demo.py b/_downloads/7022842fa40e26d73690c1c1bb145ef3/eventcollection_demo.py deleted file mode 120000 index 011472e7d36..00000000000 --- a/_downloads/7022842fa40e26d73690c1c1bb145ef3/eventcollection_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7022842fa40e26d73690c1c1bb145ef3/eventcollection_demo.py \ No newline at end of file diff --git a/_downloads/702ae38d96c7cad039de7effa2eafa3f/tricontour_demo.ipynb b/_downloads/702ae38d96c7cad039de7effa2eafa3f/tricontour_demo.ipynb deleted file mode 100644 index 8327955e2ef..00000000000 --- a/_downloads/702ae38d96c7cad039de7effa2eafa3f/tricontour_demo.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tricontour Demo\n\n\nContour plots of unstructured triangular grids.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating a Triangulation without specifying the triangles results in the\nDelaunay triangulation of the points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# First create the x and y coordinates of the points.\nn_angles = 48\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\nz = (np.cos(radii) * np.cos(3 * angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "pcolor plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_aspect('equal')\ntcf = ax1.tricontourf(triang, z)\nfig1.colorbar(tcf)\nax1.tricontour(triang, z, colors='k')\nax1.set_title('Contour plot of Delaunay triangulation')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify your own triangulation rather than perform a Delaunay\ntriangulation of the points, where each triangle is given by the indices of\nthe three points that make up the triangle, ordered in either a clockwise or\nanticlockwise manner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xy = np.asarray([\n [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890],\n [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898],\n [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919],\n [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949],\n [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959],\n [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965],\n [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980],\n [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996],\n [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021],\n [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005],\n [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987],\n [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968],\n [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926],\n [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905],\n [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886],\n [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879],\n [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872],\n [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933],\n [-0.077, 0.990], [-0.059, 0.993]])\nx = np.degrees(xy[:, 0])\ny = np.degrees(xy[:, 1])\nx0 = -5\ny0 = 52\nz = np.exp(-0.01 * ((x - x0) ** 2 + (y - y0) ** 2))\n\ntriangles = np.asarray([\n [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64],\n [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63],\n [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68],\n [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7],\n [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9],\n [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12],\n [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71],\n [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71],\n [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19],\n [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24],\n [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28],\n [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45],\n [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40],\n [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40],\n [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38],\n [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Rather than create a Triangulation object, can simply pass x, y and triangles\narrays to tripcolor directly. It would be better to use a Triangulation\nobject if the same triangulation was to be used more than once to save\nduplicated calculations.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_aspect('equal')\ntcf = ax2.tricontourf(x, y, triangles, z)\nfig2.colorbar(tcf)\nax2.set_title('Contour plot of user-specified triangulation')\nax2.set_xlabel('Longitude (degrees)')\nax2.set_ylabel('Latitude (degrees)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/702b6df47e23a8895d3a84f94caeb63f/simple_axes_divider3.ipynb b/_downloads/702b6df47e23a8895d3a84f94caeb63f/simple_axes_divider3.ipynb deleted file mode 100644 index ea9b5b611e4..00000000000 --- a/_downloads/702b6df47e23a8895d3a84f94caeb63f/simple_axes_divider3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axes Divider 3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits.axes_grid1.axes_size as Size\nfrom mpl_toolkits.axes_grid1 import Divider\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure(figsize=(5.5, 4))\n\n# the rect parameter will be ignore as we will set axes_locator\nrect = (0.1, 0.1, 0.8, 0.8)\nax = [fig.add_axes(rect, label=\"%d\" % i) for i in range(4)]\n\n\nhoriz = [Size.AxesX(ax[0]), Size.Fixed(.5), Size.AxesX(ax[1])]\nvert = [Size.AxesY(ax[0]), Size.Fixed(.5), Size.AxesY(ax[2])]\n\n# divide the axes rectangle into grid whose size is specified by horiz * vert\ndivider = Divider(fig, rect, horiz, vert, aspect=False)\n\n\nax[0].set_axes_locator(divider.new_locator(nx=0, ny=0))\nax[1].set_axes_locator(divider.new_locator(nx=2, ny=0))\nax[2].set_axes_locator(divider.new_locator(nx=0, ny=2))\nax[3].set_axes_locator(divider.new_locator(nx=2, ny=2))\n\nax[0].set_xlim(0, 2)\nax[1].set_xlim(0, 1)\n\nax[0].set_ylim(0, 1)\nax[2].set_ylim(0, 2)\n\ndivider.set_aspect(1.)\n\nfor ax1 in ax:\n ax1.tick_params(labelbottom=False, labelleft=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/702bf17a0bc4c7c4a78963600a414ada/simple_axis_direction03.py b/_downloads/702bf17a0bc4c7c4a78963600a414ada/simple_axis_direction03.py deleted file mode 120000 index 8f47647afde..00000000000 --- a/_downloads/702bf17a0bc4c7c4a78963600a414ada/simple_axis_direction03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/702bf17a0bc4c7c4a78963600a414ada/simple_axis_direction03.py \ No newline at end of file diff --git a/_downloads/702e7824056602dcac030dd1ed5065e9/advanced_hillshading.py b/_downloads/702e7824056602dcac030dd1ed5065e9/advanced_hillshading.py deleted file mode 100644 index 1fce393c4fe..00000000000 --- a/_downloads/702e7824056602dcac030dd1ed5065e9/advanced_hillshading.py +++ /dev/null @@ -1,75 +0,0 @@ -""" -=========== -Hillshading -=========== - -Demonstrates a few common tricks with shaded plots. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.colors import LightSource, Normalize - - -def display_colorbar(): - """Display a correct numeric colorbar for a shaded plot.""" - y, x = np.mgrid[-4:2:200j, -4:2:200j] - z = 10 * np.cos(x**2 + y**2) - - cmap = plt.cm.copper - ls = LightSource(315, 45) - rgb = ls.shade(z, cmap) - - fig, ax = plt.subplots() - ax.imshow(rgb, interpolation='bilinear') - - # Use a proxy artist for the colorbar... - im = ax.imshow(z, cmap=cmap) - im.remove() - fig.colorbar(im) - - ax.set_title('Using a colorbar with a shaded plot', size='x-large') - - -def avoid_outliers(): - """Use a custom norm to control the displayed z-range of a shaded plot.""" - y, x = np.mgrid[-4:2:200j, -4:2:200j] - z = 10 * np.cos(x**2 + y**2) - - # Add some outliers... - z[100, 105] = 2000 - z[120, 110] = -9000 - - ls = LightSource(315, 45) - fig, (ax1, ax2) = plt.subplots(ncols=2, figsize=(8, 4.5)) - - rgb = ls.shade(z, plt.cm.copper) - ax1.imshow(rgb, interpolation='bilinear') - ax1.set_title('Full range of data') - - rgb = ls.shade(z, plt.cm.copper, vmin=-10, vmax=10) - ax2.imshow(rgb, interpolation='bilinear') - ax2.set_title('Manually set range') - - fig.suptitle('Avoiding Outliers in Shaded Plots', size='x-large') - - -def shade_other_data(): - """Demonstrates displaying different variables through shade and color.""" - y, x = np.mgrid[-4:2:200j, -4:2:200j] - z1 = np.sin(x**2) # Data to hillshade - z2 = np.cos(x**2 + y**2) # Data to color - - norm = Normalize(z2.min(), z2.max()) - cmap = plt.cm.RdBu - - ls = LightSource(315, 45) - rgb = ls.shade_rgb(cmap(norm(z2)), z1) - - fig, ax = plt.subplots() - ax.imshow(rgb, interpolation='bilinear') - ax.set_title('Shade by one variable, color by another', size='x-large') - -display_colorbar() -avoid_outliers() -shade_other_data() -plt.show() diff --git a/_downloads/703b29cbf7edd050cdb2a0013bb4c7fb/quiver3d.ipynb b/_downloads/703b29cbf7edd050cdb2a0013bb4c7fb/quiver3d.ipynb deleted file mode 120000 index 65c3023a3d5..00000000000 --- a/_downloads/703b29cbf7edd050cdb2a0013bb4c7fb/quiver3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/703b29cbf7edd050cdb2a0013bb4c7fb/quiver3d.ipynb \ No newline at end of file diff --git a/_downloads/70417c87b42d69a765276b6472544138/pyplot_scales.py b/_downloads/70417c87b42d69a765276b6472544138/pyplot_scales.py deleted file mode 120000 index 3870268be6e..00000000000 --- a/_downloads/70417c87b42d69a765276b6472544138/pyplot_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/70417c87b42d69a765276b6472544138/pyplot_scales.py \ No newline at end of file diff --git a/_downloads/704533d3a6df6f9c002c7a98ee2db5b9/axes_props.ipynb b/_downloads/704533d3a6df6f9c002c7a98ee2db5b9/axes_props.ipynb deleted file mode 120000 index f97ef5950c7..00000000000 --- a/_downloads/704533d3a6df6f9c002c7a98ee2db5b9/axes_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/704533d3a6df6f9c002c7a98ee2db5b9/axes_props.ipynb \ No newline at end of file diff --git a/_downloads/7048e9a48b815c27d6b5fa8de649a495/hyperlinks_sgskip.py b/_downloads/7048e9a48b815c27d6b5fa8de649a495/hyperlinks_sgskip.py deleted file mode 120000 index 53c460fabca..00000000000 --- a/_downloads/7048e9a48b815c27d6b5fa8de649a495/hyperlinks_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7048e9a48b815c27d6b5fa8de649a495/hyperlinks_sgskip.py \ No newline at end of file diff --git a/_downloads/704a586f93c41481feab503418474e48/logos2.ipynb b/_downloads/704a586f93c41481feab503418474e48/logos2.ipynb deleted file mode 120000 index eeb689f1e50..00000000000 --- a/_downloads/704a586f93c41481feab503418474e48/logos2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/704a586f93c41481feab503418474e48/logos2.ipynb \ No newline at end of file diff --git a/_downloads/704d7c714e6e5356bcbdf22f2e18ac93/psd_demo.ipynb b/_downloads/704d7c714e6e5356bcbdf22f2e18ac93/psd_demo.ipynb deleted file mode 100644 index 5451efbf3d0..00000000000 --- a/_downloads/704d7c714e6e5356bcbdf22f2e18ac93/psd_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Psd Demo\n\n\nPlotting Power Spectral Density (PSD) in Matplotlib.\n\nThe PSD is a common plot in the field of signal processing. NumPy has\nmany useful libraries for computing a PSD. Below we demo a few examples\nof how this can be accomplished and visualized with Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.mlab as mlab\nimport matplotlib.gridspec as gridspec\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ndt = 0.01\nt = np.arange(0, 10, dt)\nnse = np.random.randn(len(t))\nr = np.exp(-t / 0.05)\n\ncnse = np.convolve(nse, r) * dt\ncnse = cnse[:len(t)]\ns = 0.1 * np.sin(2 * np.pi * t) + cnse\n\nplt.subplot(211)\nplt.plot(t, s)\nplt.subplot(212)\nplt.psd(s, 512, 1 / dt)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Compare this with the equivalent Matlab code to accomplish the same thing::\n\n dt = 0.01;\n t = [0:dt:10];\n nse = randn(size(t));\n r = exp(-t/0.05);\n cnse = conv(nse, r)*dt;\n cnse = cnse(1:length(t));\n s = 0.1*sin(2*pi*t) + cnse;\n\n subplot(211)\n plot(t,s)\n subplot(212)\n psd(s, 512, 1/dt)\n\nBelow we'll show a slightly more complex example that demonstrates\nhow padding affects the resulting PSD.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "dt = np.pi / 100.\nfs = 1. / dt\nt = np.arange(0, 8, dt)\ny = 10. * np.sin(2 * np.pi * 4 * t) + 5. * np.sin(2 * np.pi * 4.25 * t)\ny = y + np.random.randn(*t.shape)\n\n# Plot the raw time series\nfig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(2, 3, figure=fig)\nax = fig.add_subplot(gs[0, :])\nax.plot(t, y)\nax.set_xlabel('time [s]')\nax.set_ylabel('signal')\n\n# Plot the PSD with different amounts of zero padding. This uses the entire\n# time series at once\nax2 = fig.add_subplot(gs[1, 0])\nax2.psd(y, NFFT=len(t), pad_to=len(t), Fs=fs)\nax2.psd(y, NFFT=len(t), pad_to=len(t) * 2, Fs=fs)\nax2.psd(y, NFFT=len(t), pad_to=len(t) * 4, Fs=fs)\nplt.title('zero padding')\n\n# Plot the PSD with different block sizes, Zero pad to the length of the\n# original data sequence.\nax3 = fig.add_subplot(gs[1, 1], sharex=ax2, sharey=ax2)\nax3.psd(y, NFFT=len(t), pad_to=len(t), Fs=fs)\nax3.psd(y, NFFT=len(t) // 2, pad_to=len(t), Fs=fs)\nax3.psd(y, NFFT=len(t) // 4, pad_to=len(t), Fs=fs)\nax3.set_ylabel('')\nplt.title('block size')\n\n# Plot the PSD with different amounts of overlap between blocks\nax4 = fig.add_subplot(gs[1, 2], sharex=ax2, sharey=ax2)\nax4.psd(y, NFFT=len(t) // 2, pad_to=len(t), noverlap=0, Fs=fs)\nax4.psd(y, NFFT=len(t) // 2, pad_to=len(t),\n noverlap=int(0.05 * len(t) / 2.), Fs=fs)\nax4.psd(y, NFFT=len(t) // 2, pad_to=len(t),\n noverlap=int(0.2 * len(t) / 2.), Fs=fs)\nax4.set_ylabel('')\nplt.title('overlap')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is a ported version of a MATLAB example from the signal\nprocessing toolbox that showed some difference at one time between\nMatplotlib's and MATLAB's scaling of the PSD.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fs = 1000\nt = np.linspace(0, 0.3, 301)\nA = np.array([2, 8]).reshape(-1, 1)\nf = np.array([150, 140]).reshape(-1, 1)\nxn = (A * np.sin(2 * np.pi * f * t)).sum(axis=0)\nxn += 5 * np.random.randn(*t.shape)\n\nfig, (ax0, ax1) = plt.subplots(ncols=2, constrained_layout=True)\n\nyticks = np.arange(-50, 30, 10)\nyrange = (yticks[0], yticks[-1])\nxticks = np.arange(0, 550, 100)\n\nax0.psd(xn, NFFT=301, Fs=fs, window=mlab.window_none, pad_to=1024,\n scale_by_freq=True)\nax0.set_title('Periodogram')\nax0.set_yticks(yticks)\nax0.set_xticks(xticks)\nax0.grid(True)\nax0.set_ylim(yrange)\n\nax1.psd(xn, NFFT=150, Fs=fs, window=mlab.window_none, pad_to=512, noverlap=75,\n scale_by_freq=True)\nax1.set_title('Welch')\nax1.set_xticks(xticks)\nax1.set_yticks(yticks)\nax1.set_ylabel('') # overwrite the y-label added by `psd`\nax1.grid(True)\nax1.set_ylim(yrange)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is a ported version of a MATLAB example from the signal\nprocessing toolbox that showed some difference at one time between\nMatplotlib's and MATLAB's scaling of the PSD.\n\nIt uses a complex signal so we can see that complex PSD's work properly.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "prng = np.random.RandomState(19680801) # to ensure reproducibility\n\nfs = 1000\nt = np.linspace(0, 0.3, 301)\nA = np.array([2, 8]).reshape(-1, 1)\nf = np.array([150, 140]).reshape(-1, 1)\nxn = (A * np.exp(2j * np.pi * f * t)).sum(axis=0) + 5 * prng.randn(*t.shape)\n\nfig, (ax0, ax1) = plt.subplots(ncols=2, constrained_layout=True)\n\nyticks = np.arange(-50, 30, 10)\nyrange = (yticks[0], yticks[-1])\nxticks = np.arange(-500, 550, 200)\n\nax0.psd(xn, NFFT=301, Fs=fs, window=mlab.window_none, pad_to=1024,\n scale_by_freq=True)\nax0.set_title('Periodogram')\nax0.set_yticks(yticks)\nax0.set_xticks(xticks)\nax0.grid(True)\nax0.set_ylim(yrange)\n\nax1.psd(xn, NFFT=150, Fs=fs, window=mlab.window_none, pad_to=512, noverlap=75,\n scale_by_freq=True)\nax1.set_title('Welch')\nax1.set_xticks(xticks)\nax1.set_yticks(yticks)\nax1.set_ylabel('') # overwrite the y-label added by `psd`\nax1.grid(True)\nax1.set_ylim(yrange)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/70506b25118c21c3b32b819c2f36d995/constrainedlayout_guide.ipynb b/_downloads/70506b25118c21c3b32b819c2f36d995/constrainedlayout_guide.ipynb deleted file mode 100644 index 0ca1e06b7db..00000000000 --- a/_downloads/70506b25118c21c3b32b819c2f36d995/constrainedlayout_guide.ipynb +++ /dev/null @@ -1,712 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Constrained Layout Guide\n\n\nHow to use constrained-layout to fit plots within your figure cleanly.\n\n*constrained_layout* automatically adjusts subplots and decorations like\nlegends and colorbars so that they fit in the figure window while still\npreserving, as best they can, the logical layout requested by the user.\n\n*constrained_layout* is similar to\n:doc:`tight_layout`,\nbut uses a constraint solver to determine the size of axes that allows\nthem to fit.\n\n*constrained_layout* needs to be activated before any axes are added to\na figure. Two ways of doing so are\n\n* using the respective argument to :func:`~.pyplot.subplots` or\n :func:`~.pyplot.figure`, e.g.::\n\n plt.subplots(constrained_layout=True)\n\n* activate it via `rcParams`, like::\n\n plt.rcParams['figure.constrained_layout.use'] = True\n\nThose are described in detail throughout the following sections.\n\n

Warning

Currently Constrained Layout is **experimental**. The\n behaviour and API are subject to change, or the whole functionality\n may be removed without a deprecation period. If you *require* your\n plots to be absolutely reproducible, get the Axes positions after\n running Constrained Layout and use ``ax.set_position()`` in your code\n with ``constrained_layout=False``.

\n\nSimple Example\n==============\n\nIn Matplotlib, the location of axes (including subplots) are specified in\nnormalized figure coordinates. It can happen that your axis labels or\ntitles (or sometimes even ticklabels) go outside the figure area, and are thus\nclipped.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 18\n\n\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as mcolors\nimport matplotlib.gridspec as gridspec\nimport numpy as np\n\n\nplt.rcParams['savefig.facecolor'] = \"0.8\"\nplt.rcParams['figure.figsize'] = 4.5, 4.\n\n\ndef example_plot(ax, fontsize=12, nodec=False):\n ax.plot([1, 2])\n\n ax.locator_params(nbins=3)\n if not nodec:\n ax.set_xlabel('x-label', fontsize=fontsize)\n ax.set_ylabel('y-label', fontsize=fontsize)\n ax.set_title('Title', fontsize=fontsize)\n else:\n ax.set_xticklabels('')\n ax.set_yticklabels('')\n\n\nfig, ax = plt.subplots(constrained_layout=False)\nexample_plot(ax, fontsize=24)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To prevent this, the location of axes needs to be adjusted. For\nsubplots, this can be done by adjusting the subplot params\n(`howto-subplots-adjust`). However, specifying your figure with the\n``constrained_layout=True`` kwarg will do the adjusting automatically.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nexample_plot(ax, fontsize=24)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When you have multiple subplots, often you see labels of different\naxes overlapping each other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=False)\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Specifying ``constrained_layout=True`` in the call to ``plt.subplots``\ncauses the layout to be properly constrained.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbars\n=========\n\nIf you create a colorbar with the :func:`~matplotlib.pyplot.colorbar`\ncommand you need to make room for it. ``constrained_layout`` does this\nautomatically. Note that if you specify ``use_gridspec=True`` it will be\nignored because this option is made for improving the layout via\n``tight_layout``.\n\n

Note

For the `~.axes.Axes.pcolormesh` kwargs (``pc_kwargs``) we use a\n dictionary. Below we will assign one colorbar to a number of axes each\n containing a `~.cm.ScalarMappable`; specifying the norm and colormap\n ensures the colorbar is accurate for all the axes.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "arr = np.arange(100).reshape((10, 10))\nnorm = mcolors.Normalize(vmin=0., vmax=100.)\n# see note above: this makes all pcolormesh calls consistent:\npc_kwargs = {'rasterized': True, 'cmap': 'viridis', 'norm': norm}\nfig, ax = plt.subplots(figsize=(4, 4), constrained_layout=True)\nim = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=ax, shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you specify a list of axes (or other iterable container) to the\n``ax`` argument of ``colorbar``, constrained_layout will take space from\nthe specified axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs, shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you specify a list of axes from inside a grid of axes, the colorbar\nwill steal space appropriately, and leave a gap, but all subplots will\nstill be the same size.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 3, figsize=(4, 4), constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[1:, ][:, 1], shrink=0.8)\nfig.colorbar(im, ax=axs[:, -1], shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that there is a bit of a subtlety when specifying a single axes\nas the parent. In the following, it might be desirable and expected\nfor the colorbars to line up, but they don't because the colorbar paired\nwith the bottom axes is tied to the subplotspec of the axes, and hence\nshrinks when the gridspec-level colorbar is added.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True)\nfor ax in axs[:2]:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[:2], shrink=0.6)\nim = axs[2].pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[2], shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The API to make a single-axes behave like a list of axes is to specify\nit as a list (or other iterable container), as below:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True)\nfor ax in axs[:2]:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs[:2], shrink=0.6)\nim = axs[2].pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=[axs[2]], shrink=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Suptitle\n=========\n\n``constrained_layout`` can also make room for `~.figure.Figure.suptitle`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs, shrink=0.6)\nfig.suptitle('Big Suptitle')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legends\n=======\n\nLegends can be placed outside of their parent axis.\nConstrained-layout is designed to handle this for :meth:`.Axes.legend`.\nHowever, constrained-layout does *not* handle legends being created via\n:meth:`.Figure.legend` (yet).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(constrained_layout=True)\nax.plot(np.arange(10), label='This is a plot')\nax.legend(loc='center left', bbox_to_anchor=(0.8, 0.5))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "However, this will steal space from a subplot layout:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True)\naxs[0].plot(np.arange(10))\naxs[1].plot(np.arange(10), label='This is a plot')\naxs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In order for a legend or other artist to *not* steal space\nfrom the subplot layout, we can ``leg.set_in_layout(False)``.\nOf course this can mean the legend ends up\ncropped, but can be useful if the plot is subsequently called\nwith ``fig.savefig('outname.png', bbox_inches='tight')``. Note,\nhowever, that the legend's ``get_in_layout`` status will have to be\ntoggled again to make the saved file work, and we must manually\ntrigger a draw if we want constrained_layout to adjust the size\nof the axes before printing.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True)\n\naxs[0].plot(np.arange(10))\naxs[1].plot(np.arange(10), label='This is a plot')\nleg = axs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5))\nleg.set_in_layout(False)\n# trigger a draw so that constrained_layout is executed once\n# before we turn it off when printing....\nfig.canvas.draw()\n# we want the legend included in the bbox_inches='tight' calcs.\nleg.set_in_layout(True)\n# we don't want the layout to change at this point.\nfig.set_constrained_layout(False)\nfig.savefig('CL01.png', bbox_inches='tight', dpi=100)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The saved file looks like:\n\n![](/_static/constrained_layout/CL01.png)\n\n :align: center\n\nA better way to get around this awkwardness is to simply\nuse the legend method provided by `.Figure.legend`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True)\naxs[0].plot(np.arange(10))\nlines = axs[1].plot(np.arange(10), label='This is a plot')\nlabels = [l.get_label() for l in lines]\nleg = fig.legend(lines, labels, loc='center left',\n bbox_to_anchor=(0.8, 0.5), bbox_transform=axs[1].transAxes)\nfig.savefig('CL02.png', bbox_inches='tight', dpi=100)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The saved file looks like:\n\n![](/_static/constrained_layout/CL02.png)\n\n :align: center\n\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Padding and Spacing\n===================\n\nFor constrained_layout, we have implemented a padding around the edge of\neach axes. This padding sets the distance from the edge of the plot,\nand the minimum distance between adjacent plots. It is specified in\ninches by the keyword arguments ``w_pad`` and ``h_pad`` to the function\n`~.figure.Figure.set_constrained_layout_pads`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax, nodec=True)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=4./72., h_pad=4./72.,\n hspace=0., wspace=0.)\n\nfig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax, nodec=True)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0., wspace=0.)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Spacing between subplots is set by ``wspace`` and ``hspace``. There are\nspecified as a fraction of the size of the subplot group as a whole.\nIf the size of the figure is changed, then these spaces change in\nproportion. Note in the blow how the space at the edges doesn't change from\nthe above, but the space between subplots does.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n example_plot(ax, nodec=True)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0.2, wspace=0.2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Spacing with colorbars\n-----------------------\n\nColorbars will be placed ``wspace`` and ``hsapce`` apart from other\nsubplots. The padding between the colorbar and the axis it is\nattached to will never be less than ``w_pad`` (for a vertical colorbar)\nor ``h_pad`` (for a horizontal colorbar). Note the use of the ``pad`` kwarg\nhere in the ``colorbar`` call. It defaults to 0.02 of the size\nof the axis it is attached to.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n pc = ax.pcolormesh(arr, **pc_kwargs)\n fig.colorbar(pc, ax=ax, shrink=0.6, pad=0)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0.2, wspace=0.2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the above example, the colorbar will not ever be closer than 2 pts to\nthe plot, but if we want it a bit further away, we can specify its value\nfor ``pad`` to be non-zero.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n pc = ax.pcolormesh(arr, **pc_kwargs)\n fig.colorbar(im, ax=ax, shrink=0.6, pad=0.05)\n ax.set_xticklabels('')\n ax.set_yticklabels('')\nfig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72.,\n hspace=0.2, wspace=0.2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "rcParams\n========\n\nThere are five `rcParams` that can be set,\neither in a script or in the `matplotlibrc` file.\nThey all have the prefix ``figure.constrained_layout``:\n\n- ``use``: Whether to use constrained_layout. Default is False\n- ``w_pad``, ``h_pad``: Padding around axes objects.\n Float representing inches. Default is 3./72. inches (3 pts)\n- ``wspace``, ``hspace``: Space between subplot groups.\n Float representing a fraction of the subplot widths being separated.\n Default is 0.02.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.rcParams['figure.constrained_layout.use'] = True\nfig, axs = plt.subplots(2, 2, figsize=(3, 3))\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use with GridSpec\n=================\n\nconstrained_layout is meant to be used\nwith :func:`~matplotlib.figure.Figure.subplots` or\n:func:`~matplotlib.gridspec.GridSpec` and\n:func:`~matplotlib.figure.Figure.add_subplot`.\n\nNote that in what follows ``constrained_layout=True``\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1, figure=fig)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "More complicated gridspec layouts are possible. Note here we use the\nconvenience functions ``add_gridspec`` and ``subgridspec``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs0 = fig.add_gridspec(1, 2)\n\ngs1 = gs0[0].subgridspec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs2 = gs0[1].subgridspec(3, 1)\n\nfor ss in gs2:\n ax = fig.add_subplot(ss)\n example_plot(ax)\n ax.set_title(\"\")\n ax.set_xlabel(\"\")\n\nax.set_xlabel(\"x-label\", fontsize=12)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that in the above the left and columns don't have the same vertical\nextent. If we want the top and bottom of the two grids to line up then\nthey need to be in the same gridspec:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs0 = fig.add_gridspec(6, 2)\n\nax1 = fig.add_subplot(gs0[:3, 0])\nax2 = fig.add_subplot(gs0[3:, 0])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\nax = fig.add_subplot(gs0[0:2, 1])\nexample_plot(ax)\nax = fig.add_subplot(gs0[2:4, 1])\nexample_plot(ax)\nax = fig.add_subplot(gs0[4:, 1])\nexample_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This example uses two gridspecs to have the colorbar only pertain to\none set of pcolors. Note how the left column is wider than the\ntwo right-hand columns because of this. Of course, if you wanted the\nsubplots to be the same size you only needed one gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def docomplicated(suptitle=None):\n fig = plt.figure()\n gs0 = fig.add_gridspec(1, 2, figure=fig, width_ratios=[1., 2.])\n gsl = gs0[0].subgridspec(2, 1)\n gsr = gs0[1].subgridspec(2, 2)\n\n for gs in gsl:\n ax = fig.add_subplot(gs)\n example_plot(ax)\n axs = []\n for gs in gsr:\n ax = fig.add_subplot(gs)\n pcm = ax.pcolormesh(arr, **pc_kwargs)\n ax.set_xlabel('x-label')\n ax.set_ylabel('y-label')\n ax.set_title('title')\n\n axs += [ax]\n fig.colorbar(pcm, ax=axs)\n if suptitle is not None:\n fig.suptitle(suptitle)\n\ndocomplicated()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Manually setting axes positions\n================================\n\nThere can be good reasons to manually set an axes position. A manual call\nto `~.axes.Axes.set_position` will set the axes so constrained_layout has\nno effect on it anymore. (Note that constrained_layout still leaves the\nspace for the axes that is moved).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2)\nexample_plot(axs[0], fontsize=12)\naxs[1].set_position([0.2, 0.2, 0.4, 0.4])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you want an inset axes in data-space, you need to manually execute the\nlayout using ``fig.execute_constrained_layout()`` call. The inset figure\nwill then be properly positioned. However, it will not be properly\npositioned if the size of the figure is subsequently changed. Similarly,\nif the figure is printed to another backend, there may be slight changes\nof location due to small differences in how the backends render fonts.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.transforms import Bbox\n\nfig, axs = plt.subplots(1, 2)\nexample_plot(axs[0], fontsize=12)\nfig.execute_constrained_layout()\n# put into data-space:\nbb_data_ax2 = Bbox.from_bounds(0.5, 1., 0.2, 0.4)\ndisp_coords = axs[0].transData.transform(bb_data_ax2)\nfig_coords_ax2 = fig.transFigure.inverted().transform(disp_coords)\nbb_ax2 = Bbox(fig_coords_ax2)\nax2 = fig.add_axes(bb_ax2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Manually turning off ``constrained_layout``\n===========================================\n\n``constrained_layout`` usually adjusts the axes positions on each draw\nof the figure. If you want to get the spacing provided by\n``constrained_layout`` but not have it update, then do the initial\ndraw and then call ``fig.set_constrained_layout(False)``.\nThis is potentially useful for animations where the tick labels may\nchange length.\n\nNote that ``constrained_layout`` is turned off for ``ZOOM`` and ``PAN``\nGUI events for the backends that use the toolbar. This prevents the\naxes from changing position during zooming and panning.\n\n\nLimitations\n========================\n\nIncompatible functions\n----------------------\n\n``constrained_layout`` will not work on subplots\ncreated via the `subplot` command. The reason is that each of these\ncommands creates a separate `GridSpec` instance and ``constrained_layout``\nuses (nested) gridspecs to carry out the layout. So the following fails\nto yield a nice layout:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot(221)\nax2 = plt.subplot(223)\nax3 = plt.subplot(122)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Of course that layout is possible using a gridspec:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\ngs = fig.add_gridspec(2, 2)\n\nax1 = fig.add_subplot(gs[0, 0])\nax2 = fig.add_subplot(gs[1, 0])\nax3 = fig.add_subplot(gs[:, 1])\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Similarly,\n:func:`~matplotlib.pyplot.subplot2grid` doesn't work for the same reason:\neach call creates a different parent gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot2grid((3, 3), (0, 0))\nax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2)\nax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The way to make this plot compatible with ``constrained_layout`` is again\nto use ``gridspec`` directly\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\ngs = fig.add_gridspec(3, 3)\n\nax1 = fig.add_subplot(gs[0, 0])\nax2 = fig.add_subplot(gs[0, 1:])\nax3 = fig.add_subplot(gs[1:, 0:2])\nax4 = fig.add_subplot(gs[1:, -1])\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Other Caveats\n-------------\n\n* ``constrained_layout`` only considers ticklabels, axis labels, titles, and\n legends. Thus, other artists may be clipped and also may overlap.\n\n* It assumes that the extra space needed for ticklabels, axis labels,\n and titles is independent of original location of axes. This is\n often true, but there are rare cases where it is not.\n\n* There are small differences in how the backends handle rendering fonts,\n so the results will not be pixel-identical.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Debugging\n=========\n\nConstrained-layout can fail in somewhat unexpected ways. Because it uses\na constraint solver the solver can find solutions that are mathematically\ncorrect, but that aren't at all what the user wants. The usual failure\nmode is for all sizes to collapse to their smallest allowable value. If\nthis happens, it is for one of two reasons:\n\n1. There was not enough room for the elements you were requesting to draw.\n2. There is a bug - in which case open an issue at\n https://github.com/matplotlib/matplotlib/issues.\n\nIf there is a bug, please report with a self-contained example that does\nnot require outside data or dependencies (other than numpy).\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notes on the algorithm\n======================\n\nThe algorithm for the constraint is relatively straightforward, but\nhas some complexity due to the complex ways we can layout a figure.\n\nFigure layout\n-------------\n\nFigures are laid out in a hierarchy:\n\n1. Figure: ``fig = plt.figure()``\n\n a. Gridspec ``gs0 = gridspec.GridSpec(1, 2, figure=fig)``\n\n i. Subplotspec: ``ss = gs[0, 0]``\n\n 1. Axes: ``ax0 = fig.add_subplot(ss)``\n\n ii. Subplotspec: ``ss = gs[0, 1]``\n\n 1. Gridspec: ``gsR = gridspec.GridSpecFromSubplotSpec(2, 1, ss)``\n\n - Subplotspec: ``ss = gsR[0, 0]``\n\n - Axes: ``axR0 = fig.add_subplot(ss)``\n\n - Subplotspec: ``ss = gsR[1, 0]``\n\n - Axes: ``axR1 = fig.add_subplot(ss)``\n\nEach item has a layoutbox associated with it. The nesting of gridspecs\ncreated with `.GridSpecFromSubplotSpec` can be arbitrarily deep.\n\nEach `~matplotlib.axes.Axes` has *two* layoutboxes. The first one,\n``ax._layoutbox`` represents the outside of the Axes and all its\ndecorations (i.e. ticklabels,axis labels, etc.).\nThe second layoutbox corresponds to the Axes' ``ax.position``, which sets\nwhere in the figure the spines are placed.\n\nWhy so many stacked containers? Ideally, all that would be needed are the\nAxes layout boxes. For the Gridspec case, a container is\nneeded if the Gridspec is nested via `.GridSpecFromSubplotSpec`. At the\ntop level, it is desirable for symmetry, but it also makes room for\n`~.Figure.suptitle`.\n\nFor the Subplotspec/Axes case, Axes often have colorbars or other\nannotations that need to be packaged inside the Subplotspec, hence the\nneed for the outer layer.\n\n\nSimple case: one Axes\n---------------------\n\nFor a single Axes the layout is straight forward. The Figure and\nouter Gridspec layoutboxes coincide. The Subplotspec and Axes\nboxes also coincide because the Axes has no colorbar. Note\nthe difference between the red ``pos`` box and the green ``ax`` box\nis set by the size of the decorations around the Axes.\n\nIn the code, this is accomplished by the entries in\n``do_constrained_layout()`` like::\n\n ax._poslayoutbox.edit_left_margin_min(-bbox.x0 + pos.x0 + w_padt)\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib._layoutbox import plot_children\n\nfig, ax = plt.subplots(constrained_layout=True)\nexample_plot(ax, fontsize=24)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Simple case: two Axes\n---------------------\nFor this case, the Axes layoutboxes and the Subplotspec boxes still\nco-incide. However, because the decorations in the right-hand plot are so\nmuch smaller than the left-hand, so the right-hand layoutboxes are smaller.\n\nThe Subplotspec boxes are laid out in the code in the subroutine\n``arange_subplotspecs()``, which simply checks the subplotspecs in the code\nagainst one another and stacks them appropriately.\n\nThe two ``pos`` axes are lined up. Because they have the same\nminimum row, they are lined up at the top. Because\nthey have the same maximum row they are lined up at the bottom. In the\ncode this is accomplished via the calls to ``layoutbox.align``. If\nthere was more than one row, then the same horizontal alignment would\noccur between the rows.\n\nThe two ``pos`` axes are given the same width because the subplotspecs\noccupy the same number of columns. This is accomplished in the code where\n``dcols0`` is compared to ``dcolsC``. If they are equal, then their widths\nare constrained to be equal.\n\nWhile it is a bit subtle in this case, note that the division between the\nSubplotspecs is *not* centered, but has been moved to the right to make\nspace for the larger labels on the left-hand plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(1, 2, constrained_layout=True)\nexample_plot(ax[0], fontsize=32)\nexample_plot(ax[1], fontsize=8)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Two Axes and colorbar\n---------------------\n\nAdding a colorbar makes it clear why the Subplotspec layoutboxes must\nbe different from the axes layoutboxes. Here we see the left-hand\nsubplotspec has more room to accommodate the `~.Figure.colorbar`, and\nthat there are two green ``ax`` boxes inside the ``ss`` box.\n\nNote that the width of the ``pos`` boxes is still the same because of the\nconstraint on their widths because their subplotspecs occupy the same\nnumber of columns (one in this example).\n\nThe colorbar layout logic is contained in `~matplotlib.colorbar.make_axes`\nwhich calls ``_constrained_layout.layoutcolorbarsingle()``\nfor cbars attached to a single axes, and\n``_constrained_layout.layoutcolorbargridspec()`` if the colorbar is\nassociated with a gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(1, 2, constrained_layout=True)\nim = ax[0].pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=ax[0], shrink=0.6)\nim = ax[1].pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbar associated with a Gridspec\n-----------------------------------\n\nThis example shows the Subplotspec layoutboxes being made smaller by\na colorbar layoutbox. The size of the colorbar layoutbox is\nset to be ``shrink`` smaller than the vertical extent of the ``pos``\nlayoutboxes in the gridspec, and it is made to be centered between\nthose two points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, constrained_layout=True)\nfor ax in axs.flat:\n im = ax.pcolormesh(arr, **pc_kwargs)\nfig.colorbar(im, ax=axs, shrink=0.6)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Uneven sized Axes\n-----------------\n\nThere are two ways to make axes have an uneven size in a\nGridspec layout, either by specifying them to cross Gridspecs rows\nor columns, or by specifying width and height ratios.\n\nThe first method is used here. The constraint that makes the heights\nbe correct is in the code where ``drowsC < drows0`` which in\nthis case would be 1 is less than 2. So we constrain the\nheight of the 1-row Axes to be less than half the height of the\n2-row Axes.\n\n

Note

This algorithm can be wrong if the decorations attached to the smaller\n axes are very large, so there is an unaccounted-for edge case.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(2, 2, figure=fig)\nax = fig.add_subplot(gs[:, 0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[0, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[1, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Height and width ratios are accommodated with the same part of\nthe code with the smaller axes always constrained to be less in size\nthan the larger.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(3, 2, figure=fig,\n height_ratios=[1., 0.5, 1.5],\n width_ratios=[1.2, 0.8])\nax = fig.add_subplot(gs[:2, 0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[2, 0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[0, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[1:, 1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Empty gridspec slots\n--------------------\n\nThe final piece of the code that has not been explained is what happens if\nthere is an empty gridspec opening. In that case a fake invisible axes is\nadded and we proceed as before. The empty gridspec has no decorations, but\nthe axes position in made the same size as the occupied Axes positions.\n\nThis is done at the start of\n``_constrained_layout.do_constrained_layout()`` (``hassubplotspec``).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(1, 3, figure=fig)\nax = fig.add_subplot(gs[0])\nim = ax.pcolormesh(arr, **pc_kwargs)\nax = fig.add_subplot(gs[-1])\nim = ax.pcolormesh(arr, **pc_kwargs)\nplot_children(fig, fig._layoutbox, printit=False)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Other notes\n-----------\n\nThe layout is called only once. This is OK if the original layout was\npretty close (which it should be in most cases). However, if the layout\nchanges a lot from the default layout then the decorators can change size.\nIn particular the x and ytick labels can change. If this happens, then\nwe should probably call the whole routine twice.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/70615b1c5674f6c90de5afbb6877ac84/simple_axis_pad.ipynb b/_downloads/70615b1c5674f6c90de5afbb6877ac84/simple_axis_pad.ipynb deleted file mode 120000 index 8ca9dcdce04..00000000000 --- a/_downloads/70615b1c5674f6c90de5afbb6877ac84/simple_axis_pad.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/70615b1c5674f6c90de5afbb6877ac84/simple_axis_pad.ipynb \ No newline at end of file diff --git a/_downloads/70618b165519fe5cd5f7039ef9cf4fca/axes_demo.ipynb b/_downloads/70618b165519fe5cd5f7039ef9cf4fca/axes_demo.ipynb deleted file mode 100644 index 8328eea965d..00000000000 --- a/_downloads/70618b165519fe5cd5f7039ef9cf4fca/axes_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axes Demo\n\n\nExample use of ``plt.axes`` to create inset axes within the main plot axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# create some data to use for the plot\ndt = 0.001\nt = np.arange(0.0, 10.0, dt)\nr = np.exp(-t[:1000] / 0.05) # impulse response\nx = np.random.randn(len(t))\ns = np.convolve(x, r)[:len(x)] * dt # colored noise\n\n# the main axes is subplot(111) by default\nplt.plot(t, s)\nplt.xlim(0, 1)\nplt.ylim(1.1 * np.min(s), 2 * np.max(s))\nplt.xlabel('time (s)')\nplt.ylabel('current (nA)')\nplt.title('Gaussian colored noise')\n\n# this is an inset axes over the main axes\na = plt.axes([.65, .6, .2, .2], facecolor='k')\nn, bins, patches = plt.hist(s, 400, density=True)\nplt.title('Probability')\nplt.xticks([])\nplt.yticks([])\n\n# this is another inset axes over the main axes\na = plt.axes([0.2, 0.6, .2, .2], facecolor='k')\nplt.plot(t[:len(r)], r)\nplt.title('Impulse response')\nplt.xlim(0, 0.2)\nplt.xticks([])\nplt.yticks([])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7066aff787e779889f31e223e2ef972a/data_browser.py b/_downloads/7066aff787e779889f31e223e2ef972a/data_browser.py deleted file mode 120000 index 1125b485035..00000000000 --- a/_downloads/7066aff787e779889f31e223e2ef972a/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7066aff787e779889f31e223e2ef972a/data_browser.py \ No newline at end of file diff --git a/_downloads/706a89d22d454da8b9738ce3e8f49a90/simple_axisline2.ipynb b/_downloads/706a89d22d454da8b9738ce3e8f49a90/simple_axisline2.ipynb deleted file mode 120000 index 8f854e46371..00000000000 --- a/_downloads/706a89d22d454da8b9738ce3e8f49a90/simple_axisline2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/706a89d22d454da8b9738ce3e8f49a90/simple_axisline2.ipynb \ No newline at end of file diff --git a/_downloads/707278e40febb1ee8abb05052b9ccd4a/findobj_demo.ipynb b/_downloads/707278e40febb1ee8abb05052b9ccd4a/findobj_demo.ipynb deleted file mode 120000 index 5a9ee45a425..00000000000 --- a/_downloads/707278e40febb1ee8abb05052b9ccd4a/findobj_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/707278e40febb1ee8abb05052b9ccd4a/findobj_demo.ipynb \ No newline at end of file diff --git a/_downloads/707832f6d578d619c84d03a6a56e1de8/path_patch.py b/_downloads/707832f6d578d619c84d03a6a56e1de8/path_patch.py deleted file mode 120000 index 8db689b79b3..00000000000 --- a/_downloads/707832f6d578d619c84d03a6a56e1de8/path_patch.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/707832f6d578d619c84d03a6a56e1de8/path_patch.py \ No newline at end of file diff --git a/_downloads/707cc095ddfc7d89050babb4460b073e/histogram_histtypes.py b/_downloads/707cc095ddfc7d89050babb4460b073e/histogram_histtypes.py deleted file mode 100644 index 9ea875617f2..00000000000 --- a/_downloads/707cc095ddfc7d89050babb4460b073e/histogram_histtypes.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -================================================================ -Demo of the histogram function's different ``histtype`` settings -================================================================ - -* Histogram with step curve that has a color fill. -* Histogram with custom and unequal bin widths. - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -mu = 200 -sigma = 25 -x = np.random.normal(mu, sigma, size=100) - -fig, (ax0, ax1) = plt.subplots(ncols=2, figsize=(8, 4)) - -ax0.hist(x, 20, density=True, histtype='stepfilled', facecolor='g', alpha=0.75) -ax0.set_title('stepfilled') - -# Create a histogram by providing the bin edges (unequally spaced). -bins = [100, 150, 180, 195, 205, 220, 250, 300] -ax1.hist(x, bins, density=True, histtype='bar', rwidth=0.8) -ax1.set_title('unequal bins') - -fig.tight_layout() -plt.show() diff --git a/_downloads/70877dbb10d61d6b8160ede894960cbe/colormap_normalizations_symlognorm.ipynb b/_downloads/70877dbb10d61d6b8160ede894960cbe/colormap_normalizations_symlognorm.ipynb deleted file mode 120000 index e8302cfe089..00000000000 --- a/_downloads/70877dbb10d61d6b8160ede894960cbe/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/70877dbb10d61d6b8160ede894960cbe/colormap_normalizations_symlognorm.ipynb \ No newline at end of file diff --git a/_downloads/708d3993d72f130fc4a685d5f5b1c4ad/wxcursor_demo_sgskip.py b/_downloads/708d3993d72f130fc4a685d5f5b1c4ad/wxcursor_demo_sgskip.py deleted file mode 120000 index 2afe357a926..00000000000 --- a/_downloads/708d3993d72f130fc4a685d5f5b1c4ad/wxcursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/708d3993d72f130fc4a685d5f5b1c4ad/wxcursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/70953a686e4ecccbf1a8e3991b5fd819/surface3d_3.py b/_downloads/70953a686e4ecccbf1a8e3991b5fd819/surface3d_3.py deleted file mode 100644 index d75dc668015..00000000000 --- a/_downloads/70953a686e4ecccbf1a8e3991b5fd819/surface3d_3.py +++ /dev/null @@ -1,44 +0,0 @@ -''' -========================= -3D surface (checkerboard) -========================= - -Demonstrates plotting a 3D surface colored in a checkerboard pattern. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -from matplotlib.ticker import LinearLocator -import numpy as np - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make data. -X = np.arange(-5, 5, 0.25) -xlen = len(X) -Y = np.arange(-5, 5, 0.25) -ylen = len(Y) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -# Create an empty array of strings with the same shape as the meshgrid, and -# populate it with two colors in a checkerboard pattern. -colortuple = ('y', 'b') -colors = np.empty(X.shape, dtype=str) -for y in range(ylen): - for x in range(xlen): - colors[x, y] = colortuple[(x + y) % len(colortuple)] - -# Plot the surface with face colors taken from the array we made. -surf = ax.plot_surface(X, Y, Z, facecolors=colors, linewidth=0) - -# Customize the z axis. -ax.set_zlim(-1, 1) -ax.w_zaxis.set_major_locator(LinearLocator(6)) - -plt.show() diff --git a/_downloads/70a30d1ca8929b19602372aaeef145b1/tricontour3d.ipynb b/_downloads/70a30d1ca8929b19602372aaeef145b1/tricontour3d.ipynb deleted file mode 120000 index d4dcc077ca5..00000000000 --- a/_downloads/70a30d1ca8929b19602372aaeef145b1/tricontour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/70a30d1ca8929b19602372aaeef145b1/tricontour3d.ipynb \ No newline at end of file diff --git a/_downloads/70b0c69300b06007f89168a1ecacc126/demo_curvelinear_grid2.ipynb b/_downloads/70b0c69300b06007f89168a1ecacc126/demo_curvelinear_grid2.ipynb deleted file mode 120000 index d0e1281b294..00000000000 --- a/_downloads/70b0c69300b06007f89168a1ecacc126/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/70b0c69300b06007f89168a1ecacc126/demo_curvelinear_grid2.ipynb \ No newline at end of file diff --git a/_downloads/70b61cac67417f29da23f636826f4b04/mpl_with_glade3_sgskip.ipynb b/_downloads/70b61cac67417f29da23f636826f4b04/mpl_with_glade3_sgskip.ipynb deleted file mode 120000 index 40e915bc4f4..00000000000 --- a/_downloads/70b61cac67417f29da23f636826f4b04/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/70b61cac67417f29da23f636826f4b04/mpl_with_glade3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/70bf716aaa7cfa1468a658d894d75630/colormap_normalizations_bounds.ipynb b/_downloads/70bf716aaa7cfa1468a658d894d75630/colormap_normalizations_bounds.ipynb deleted file mode 120000 index e51bf57dc07..00000000000 --- a/_downloads/70bf716aaa7cfa1468a658d894d75630/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/70bf716aaa7cfa1468a658d894d75630/colormap_normalizations_bounds.ipynb \ No newline at end of file diff --git a/_downloads/70c89a59ace03cf8b8c7ee69fe2da730/date_index_formatter2.py b/_downloads/70c89a59ace03cf8b8c7ee69fe2da730/date_index_formatter2.py deleted file mode 120000 index d4c084a3cca..00000000000 --- a/_downloads/70c89a59ace03cf8b8c7ee69fe2da730/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/70c89a59ace03cf8b8c7ee69fe2da730/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/70ca677f60c6f52fed3fed7b7953a7a2/image_demo.ipynb b/_downloads/70ca677f60c6f52fed3fed7b7953a7a2/image_demo.ipynb deleted file mode 120000 index 10ab884f938..00000000000 --- a/_downloads/70ca677f60c6f52fed3fed7b7953a7a2/image_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/70ca677f60c6f52fed3fed7b7953a7a2/image_demo.ipynb \ No newline at end of file diff --git a/_downloads/70ccfe616b3ae51f56545087a36fd612/align_labels_demo.ipynb b/_downloads/70ccfe616b3ae51f56545087a36fd612/align_labels_demo.ipynb deleted file mode 120000 index 4309773de0c..00000000000 --- a/_downloads/70ccfe616b3ae51f56545087a36fd612/align_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/70ccfe616b3ae51f56545087a36fd612/align_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/70ce4f5fbd31689ff22a0f971e3d1e42/axis_direction_demo_step02.ipynb b/_downloads/70ce4f5fbd31689ff22a0f971e3d1e42/axis_direction_demo_step02.ipynb deleted file mode 120000 index e8653c64403..00000000000 --- a/_downloads/70ce4f5fbd31689ff22a0f971e3d1e42/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/70ce4f5fbd31689ff22a0f971e3d1e42/axis_direction_demo_step02.ipynb \ No newline at end of file diff --git a/_downloads/70ce67207e0bb8344c36b16d9a4d0764/custom_shaded_3d_surface.py b/_downloads/70ce67207e0bb8344c36b16d9a4d0764/custom_shaded_3d_surface.py deleted file mode 120000 index d10eb72acaa..00000000000 --- a/_downloads/70ce67207e0bb8344c36b16d9a4d0764/custom_shaded_3d_surface.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/70ce67207e0bb8344c36b16d9a4d0764/custom_shaded_3d_surface.py \ No newline at end of file diff --git a/_downloads/70dfb28b5f7d644cebfc3bedacde9adc/demo_colorbar_with_inset_locator.ipynb b/_downloads/70dfb28b5f7d644cebfc3bedacde9adc/demo_colorbar_with_inset_locator.ipynb deleted file mode 100644 index e20b1784a6b..00000000000 --- a/_downloads/70dfb28b5f7d644cebfc3bedacde9adc/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Controlling the position and size of colorbars with Inset Axes\n\n\nThis example shows how to control the position, height, and width of\ncolorbars using `~mpl_toolkits.axes_grid1.inset_axes`.\n\nControlling the placement of the inset axes is done similarly as that of the\nlegend: either by providing a location option (\"upper right\", \"best\", ...), or\nby providing a locator with respect to the parent bbox.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.inset_locator import inset_axes\n\nfig, (ax1, ax2) = plt.subplots(1, 2, figsize=[6, 3])\n\naxins1 = inset_axes(ax1,\n width=\"50%\", # width = 50% of parent_bbox width\n height=\"5%\", # height : 5%\n loc='upper right')\n\nim1 = ax1.imshow([[1, 2], [2, 3]])\nfig.colorbar(im1, cax=axins1, orientation=\"horizontal\", ticks=[1, 2, 3])\naxins1.xaxis.set_ticks_position(\"bottom\")\n\naxins = inset_axes(ax2,\n width=\"5%\", # width = 5% of parent_bbox width\n height=\"50%\", # height : 50%\n loc='lower left',\n bbox_to_anchor=(1.05, 0., 1, 1),\n bbox_transform=ax2.transAxes,\n borderpad=0,\n )\n\n# Controlling the placement of the inset axes is basically same as that\n# of the legend. you may want to play with the borderpad value and\n# the bbox_to_anchor coordinate.\n\nim = ax2.imshow([[1, 2], [2, 3]])\nfig.colorbar(im, cax=axins, ticks=[1, 2, 3])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/70f0cec08fbb568c1748d608853c3337/polar_demo.ipynb b/_downloads/70f0cec08fbb568c1748d608853c3337/polar_demo.ipynb deleted file mode 120000 index b4c9c023783..00000000000 --- a/_downloads/70f0cec08fbb568c1748d608853c3337/polar_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/70f0cec08fbb568c1748d608853c3337/polar_demo.ipynb \ No newline at end of file diff --git a/_downloads/70f270d135d2870a6849b391733bbe79/voxels.py b/_downloads/70f270d135d2870a6849b391733bbe79/voxels.py deleted file mode 120000 index 0273aa8919d..00000000000 --- a/_downloads/70f270d135d2870a6849b391733bbe79/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/70f270d135d2870a6849b391733bbe79/voxels.py \ No newline at end of file diff --git a/_downloads/7105a36ab795ee5c5746ba7f95602c0d/mplot3d.ipynb b/_downloads/7105a36ab795ee5c5746ba7f95602c0d/mplot3d.ipynb deleted file mode 100644 index 04574f0ee1a..00000000000 --- a/_downloads/7105a36ab795ee5c5746ba7f95602c0d/mplot3d.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The mplot3d Toolkit\n\n\nGenerating 3D plots using the mplot3d toolkit.\n\n.. currentmodule:: mpl_toolkits.mplot3d\n :backlinks: none\n\n\nGetting started\n---------------\nAn Axes3D object is created just like any other axes using\nthe projection='3d' keyword.\nCreate a new :class:`matplotlib.figure.Figure` and\nadd a new axes to it of type :class:`~mpl_toolkits.mplot3d.Axes3D`::\n\n import matplotlib.pyplot as plt\n from mpl_toolkits.mplot3d import Axes3D\n fig = plt.figure()\n ax = fig.add_subplot(111, projection='3d')\n\n.. versionadded:: 1.0.0\n This approach is the preferred method of creating a 3D axes.\n\n

Note

Prior to version 1.0.0, the method of creating a 3D axes was\n different. For those using older versions of matplotlib, change\n ``ax = fig.add_subplot(111, projection='3d')``\n to ``ax = Axes3D(fig)``.

\n\nSee the `toolkit_mplot3d-faq` for more information about the mplot3d\ntoolkit.\n\n\nLine plots\n====================\n.. automethod:: Axes3D.plot\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_lines3d_001.png\n :target: ../../gallery/mplot3d/lines3d.html\n :align: center\n :scale: 50\n\n Lines3d\n\n\nScatter plots\n=============\n.. automethod:: Axes3D.scatter\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_scatter3d_001.png\n :target: ../../gallery/mplot3d/scatter3d.html\n :align: center\n :scale: 50\n\n Scatter3d\n\n\nWireframe plots\n===============\n.. automethod:: Axes3D.plot_wireframe\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_wire3d_001.png\n :target: ../../gallery/mplot3d/wire3d.html\n :align: center\n :scale: 50\n\n Wire3d\n\n\nSurface plots\n=============\n.. automethod:: Axes3D.plot_surface\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png\n :target: ../../gallery/mplot3d/surface3d.html\n :align: center\n :scale: 50\n\n Surface3d\n\n Surface3d 2\n\n Surface3d 3\n\n\nTri-Surface plots\n=================\n.. automethod:: Axes3D.plot_trisurf\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_trisurf3d_001.png\n :target: ../../gallery/mplot3d/trisurf3d.html\n :align: center\n :scale: 50\n\n Trisurf3d\n\n\n\nContour plots\n=============\n.. automethod:: Axes3D.contour\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_contour3d_001.png\n :target: ../../gallery/mplot3d/contour3d.html\n :align: center\n :scale: 50\n\n Contour3d\n\n Contour3d 2\n\n Contour3d 3\n\n\nFilled contour plots\n====================\n.. automethod:: Axes3D.contourf\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_contourf3d_001.png\n :target: ../../gallery/mplot3d/contourf3d.html\n :align: center\n :scale: 50\n\n Contourf3d\n\n Contourf3d 2\n\n.. versionadded:: 1.1.0\n The feature demoed in the second contourf3d example was enabled as a\n result of a bugfix for version 1.1.0.\n\n\nPolygon plots\n====================\n.. automethod:: Axes3D.add_collection3d\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_polys3d_001.png\n :target: ../../gallery/mplot3d/polys3d.html\n :align: center\n :scale: 50\n\n Polys3d\n\n\nBar plots\n====================\n.. automethod:: Axes3D.bar\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_bars3d_001.png\n :target: ../../gallery/mplot3d/bars3d.html\n :align: center\n :scale: 50\n\n Bars3d\n\n\nQuiver\n====================\n.. automethod:: Axes3D.quiver\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_quiver3d_001.png\n :target: ../../gallery/mplot3d/quiver3d.html\n :align: center\n :scale: 50\n\n Quiver3d\n\n\n2D plots in 3D\n====================\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_2dcollections3d_001.png\n :target: ../../gallery/mplot3d/2dcollections3d.html\n :align: center\n :scale: 50\n\n 2dcollections3d\n\n\nText\n====================\n.. automethod:: Axes3D.text\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_text3d_001.png\n :target: ../../gallery/mplot3d/text3d.html\n :align: center\n :scale: 50\n\n Text3d\n\n\nSubplotting\n====================\nHaving multiple 3D plots in a single figure is the same\nas it is for 2D plots. Also, you can have both 2D and 3D plots\nin the same figure.\n\n.. versionadded:: 1.0.0\n Subplotting 3D plots was added in v1.0.0. Earlier version can not\n do this.\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_subplot3d_001.png\n :target: ../../gallery/mplot3d/subplot3d.html\n :align: center\n :scale: 50\n\n Subplot3d\n\n Mixed Subplots\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/710d0b7b6e5859f4a9eedbdb811708a6/demo_gridspec05.ipynb b/_downloads/710d0b7b6e5859f4a9eedbdb811708a6/demo_gridspec05.ipynb deleted file mode 120000 index b262fa2382e..00000000000 --- a/_downloads/710d0b7b6e5859f4a9eedbdb811708a6/demo_gridspec05.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/710d0b7b6e5859f4a9eedbdb811708a6/demo_gridspec05.ipynb \ No newline at end of file diff --git a/_downloads/710dd372f3111f40860d5430765c3f18/demo_edge_colorbar.ipynb b/_downloads/710dd372f3111f40860d5430765c3f18/demo_edge_colorbar.ipynb deleted file mode 120000 index 2029f43a2b1..00000000000 --- a/_downloads/710dd372f3111f40860d5430765c3f18/demo_edge_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/710dd372f3111f40860d5430765c3f18/demo_edge_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/711b047a6eb3e65fb864fbcabec76d00/hist.ipynb b/_downloads/711b047a6eb3e65fb864fbcabec76d00/hist.ipynb deleted file mode 120000 index 7769c4c35a5..00000000000 --- a/_downloads/711b047a6eb3e65fb864fbcabec76d00/hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/711b047a6eb3e65fb864fbcabec76d00/hist.ipynb \ No newline at end of file diff --git a/_downloads/7126f460e6522920663536ea33112d4b/customize_rc.py b/_downloads/7126f460e6522920663536ea33112d4b/customize_rc.py deleted file mode 120000 index 22782839280..00000000000 --- a/_downloads/7126f460e6522920663536ea33112d4b/customize_rc.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7126f460e6522920663536ea33112d4b/customize_rc.py \ No newline at end of file diff --git a/_downloads/712c38aa1e95e4b6c8c6fefc88989a26/colormaps.py b/_downloads/712c38aa1e95e4b6c8c6fefc88989a26/colormaps.py deleted file mode 120000 index 955b47e7c8b..00000000000 --- a/_downloads/712c38aa1e95e4b6c8c6fefc88989a26/colormaps.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/712c38aa1e95e4b6c8c6fefc88989a26/colormaps.py \ No newline at end of file diff --git a/_downloads/712fd62f3d0ee9a7d40c43da1f28f308/annotate_simple04.py b/_downloads/712fd62f3d0ee9a7d40c43da1f28f308/annotate_simple04.py deleted file mode 120000 index 5f03e15ec61..00000000000 --- a/_downloads/712fd62f3d0ee9a7d40c43da1f28f308/annotate_simple04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/712fd62f3d0ee9a7d40c43da1f28f308/annotate_simple04.py \ No newline at end of file diff --git a/_downloads/7136c13cfe0ebda0cb8d30db5ca12a41/shared_axis_demo.ipynb b/_downloads/7136c13cfe0ebda0cb8d30db5ca12a41/shared_axis_demo.ipynb deleted file mode 120000 index c038335676b..00000000000 --- a/_downloads/7136c13cfe0ebda0cb8d30db5ca12a41/shared_axis_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7136c13cfe0ebda0cb8d30db5ca12a41/shared_axis_demo.ipynb \ No newline at end of file diff --git a/_downloads/714aa78d720c3ec3d2603898293040a0/pie_and_donut_labels.py b/_downloads/714aa78d720c3ec3d2603898293040a0/pie_and_donut_labels.py deleted file mode 100644 index 237c5e71508..00000000000 --- a/_downloads/714aa78d720c3ec3d2603898293040a0/pie_and_donut_labels.py +++ /dev/null @@ -1,142 +0,0 @@ -""" -========================== -Labeling a pie and a donut -========================== - -Welcome to the matplotlib bakery. We will create a pie and a donut -chart through the :meth:`pie method ` and -show how to label them with a :meth:`legend ` -as well as with :meth:`annotations `. -""" - -############################################################################### -# As usual we would start by defining the imports and create a figure with -# subplots. -# Now it's time for the pie. Starting with a pie recipe, we create the data -# and a list of labels from it. -# -# We can provide a function to the ``autopct`` argument, which will expand -# automatic percentage labeling by showing absolute values; we calculate -# the latter back from relative data and the known sum of all values. -# -# We then create the pie and store the returned objects for later. -# The first returned element of the returned tuple is a list of the wedges. -# Those are -# :class:`matplotlib.patches.Wedge ` patches, which -# can directly be used as the handles for a legend. We can use the -# legend's ``bbox_to_anchor`` argument to position the legend outside of -# the pie. Here we use the axes coordinates ``(1, 0, 0.5, 1)`` together -# with the location ``"center left"``; i.e. -# the left central point of the legend will be at the left central point of the -# bounding box, spanning from ``(1,0)`` to ``(1.5,1)`` in axes coordinates. - -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect="equal")) - -recipe = ["375 g flour", - "75 g sugar", - "250 g butter", - "300 g berries"] - -data = [float(x.split()[0]) for x in recipe] -ingredients = [x.split()[-1] for x in recipe] - - -def func(pct, allvals): - absolute = int(pct/100.*np.sum(allvals)) - return "{:.1f}%\n({:d} g)".format(pct, absolute) - - -wedges, texts, autotexts = ax.pie(data, autopct=lambda pct: func(pct, data), - textprops=dict(color="w")) - -ax.legend(wedges, ingredients, - title="Ingredients", - loc="center left", - bbox_to_anchor=(1, 0, 0.5, 1)) - -plt.setp(autotexts, size=8, weight="bold") - -ax.set_title("Matplotlib bakery: A pie") - -plt.show() - - -############################################################################### -# Now it's time for the donut. Starting with a donut recipe, we transcribe -# the data to numbers (converting 1 egg to 50 g), and directly plot the pie. -# The pie? Wait... it's going to be donut, is it not? -# Well, as we see here, the donut is a pie, having a certain ``width`` set to -# the wedges, which is different from its radius. It's as easy as it gets. -# This is done via the ``wedgeprops`` argument. -# -# We then want to label the wedges via -# :meth:`annotations `. We first create some -# dictionaries of common properties, which we can later pass as keyword -# argument. We then iterate over all wedges and for each -# -# * calculate the angle of the wedge's center, -# * from that obtain the coordinates of the point at that angle on the -# circumference, -# * determine the horizontal alignment of the text, depending on which side -# of the circle the point lies, -# * update the connection style with the obtained angle to have the annotation -# arrow point outwards from the donut, -# * finally, create the annotation with all the previously -# determined parameters. - - -fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect="equal")) - -recipe = ["225 g flour", - "90 g sugar", - "1 egg", - "60 g butter", - "100 ml milk", - "1/2 package of yeast"] - -data = [225, 90, 50, 60, 100, 5] - -wedges, texts = ax.pie(data, wedgeprops=dict(width=0.5), startangle=-40) - -bbox_props = dict(boxstyle="square,pad=0.3", fc="w", ec="k", lw=0.72) -kw = dict(arrowprops=dict(arrowstyle="-"), - bbox=bbox_props, zorder=0, va="center") - -for i, p in enumerate(wedges): - ang = (p.theta2 - p.theta1)/2. + p.theta1 - y = np.sin(np.deg2rad(ang)) - x = np.cos(np.deg2rad(ang)) - horizontalalignment = {-1: "right", 1: "left"}[int(np.sign(x))] - connectionstyle = "angle,angleA=0,angleB={}".format(ang) - kw["arrowprops"].update({"connectionstyle": connectionstyle}) - ax.annotate(recipe[i], xy=(x, y), xytext=(1.35*np.sign(x), 1.4*y), - horizontalalignment=horizontalalignment, **kw) - -ax.set_title("Matplotlib bakery: A donut") - -plt.show() - -############################################################################### -# And here it is, the donut. Note however, that if we were to use this recipe, -# the ingredients would suffice for around 6 donuts - producing one huge -# donut is untested and might result in kitchen errors. - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend diff --git a/_downloads/71575dc0f2d5f20e0fd0603c5aeb62b1/subplot3d.ipynb b/_downloads/71575dc0f2d5f20e0fd0603c5aeb62b1/subplot3d.ipynb deleted file mode 120000 index afa4d7a994a..00000000000 --- a/_downloads/71575dc0f2d5f20e0fd0603c5aeb62b1/subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/71575dc0f2d5f20e0fd0603c5aeb62b1/subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/7165cb4e03ab60ad28b2fab3e8585143/scatter_star_poly.ipynb b/_downloads/7165cb4e03ab60ad28b2fab3e8585143/scatter_star_poly.ipynb deleted file mode 120000 index 515062f4a04..00000000000 --- a/_downloads/7165cb4e03ab60ad28b2fab3e8585143/scatter_star_poly.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7165cb4e03ab60ad28b2fab3e8585143/scatter_star_poly.ipynb \ No newline at end of file diff --git a/_downloads/716666f5b513853faf4e6e93511ce54a/load_converter.ipynb b/_downloads/716666f5b513853faf4e6e93511ce54a/load_converter.ipynb deleted file mode 120000 index 6a8ad5a5f1d..00000000000 --- a/_downloads/716666f5b513853faf4e6e93511ce54a/load_converter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.0/_downloads/716666f5b513853faf4e6e93511ce54a/load_converter.ipynb \ No newline at end of file diff --git a/_downloads/717459661cfdac223cac9ed19b296648/demo_anchored_direction_arrows.py b/_downloads/717459661cfdac223cac9ed19b296648/demo_anchored_direction_arrows.py deleted file mode 120000 index 4140476b443..00000000000 --- a/_downloads/717459661cfdac223cac9ed19b296648/demo_anchored_direction_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/717459661cfdac223cac9ed19b296648/demo_anchored_direction_arrows.py \ No newline at end of file diff --git a/_downloads/717981ffe69f153805d0e1b370d66336/scatter_masked.py b/_downloads/717981ffe69f153805d0e1b370d66336/scatter_masked.py deleted file mode 100644 index 22c0943bf28..00000000000 --- a/_downloads/717981ffe69f153805d0e1b370d66336/scatter_masked.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============== -Scatter Masked -============== - -Mask some data points and add a line demarking -masked regions. - -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -N = 100 -r0 = 0.6 -x = 0.9 * np.random.rand(N) -y = 0.9 * np.random.rand(N) -area = (20 * np.random.rand(N))**2 # 0 to 10 point radii -c = np.sqrt(area) -r = np.sqrt(x ** 2 + y ** 2) -area1 = np.ma.masked_where(r < r0, area) -area2 = np.ma.masked_where(r >= r0, area) -plt.scatter(x, y, s=area1, marker='^', c=c) -plt.scatter(x, y, s=area2, marker='o', c=c) -# Show the boundary between the regions: -theta = np.arange(0, np.pi / 2, 0.01) -plt.plot(r0 * np.cos(theta), r0 * np.sin(theta)) - -plt.show() diff --git a/_downloads/717cdea2236d418646e19cce6660ee9d/watermark_text.ipynb b/_downloads/717cdea2236d418646e19cce6660ee9d/watermark_text.ipynb deleted file mode 100644 index 9c8d856fda4..00000000000 --- a/_downloads/717cdea2236d418646e19cce6660ee9d/watermark_text.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text watermark\n\n\nAdding a text watermark.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nax.plot(np.random.rand(20), '-o', ms=20, lw=2, alpha=0.7, mfc='orange')\nax.grid()\n\nfig.text(0.95, 0.05, 'Property of MPL',\n fontsize=50, color='gray',\n ha='right', va='bottom', alpha=0.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/71844880eb4c529bfbeec69b497f242b/joinstyle.ipynb b/_downloads/71844880eb4c529bfbeec69b497f242b/joinstyle.ipynb deleted file mode 120000 index b74e3e85081..00000000000 --- a/_downloads/71844880eb4c529bfbeec69b497f242b/joinstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/71844880eb4c529bfbeec69b497f242b/joinstyle.ipynb \ No newline at end of file diff --git a/_downloads/71917f3d8a189a792a16ce0b446e3726/stix_fonts_demo.ipynb b/_downloads/71917f3d8a189a792a16ce0b446e3726/stix_fonts_demo.ipynb deleted file mode 120000 index d4d2f920863..00000000000 --- a/_downloads/71917f3d8a189a792a16ce0b446e3726/stix_fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/71917f3d8a189a792a16ce0b446e3726/stix_fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/7198b0b21cc171ad3aed3fe7128b936d/colormap-manipulation.ipynb b/_downloads/7198b0b21cc171ad3aed3fe7128b936d/colormap-manipulation.ipynb deleted file mode 100644 index 7139e851fad..00000000000 --- a/_downloads/7198b0b21cc171ad3aed3fe7128b936d/colormap-manipulation.ipynb +++ /dev/null @@ -1,234 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n********************************\nCreating Colormaps in Matplotlib\n********************************\n\nMatplotlib has a number of built-in colormaps accessible via\n`.matplotlib.cm.get_cmap`. There are also external libraries like\npalettable_ that have many extra colormaps.\n\n\nHowever, we often want to create or manipulate colormaps in Matplotlib.\nThis can be done using the class `.ListedColormap` and a Nx4 numpy array of\nvalues between 0 and 1 to represent the RGBA values of the colormap. There\nis also a `.LinearSegmentedColormap` class that allows colormaps to be\nspecified with a few anchor points defining segments, and linearly\ninterpolating between the anchor points.\n\nGetting colormaps and accessing their values\n============================================\n\nFirst, getting a named colormap, most of which are listed in\n:doc:`/tutorials/colors/colormaps` requires the use of\n`.matplotlib.cm.get_cmap`, which returns a\n:class:`.matplotlib.colors.ListedColormap` object. The second argument gives\nthe size of the list of colors used to define the colormap, and below we\nuse a modest value of 12 so there are not a lot of values to look at.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom matplotlib.colors import ListedColormap, LinearSegmentedColormap\n\nviridis = cm.get_cmap('viridis', 12)\nprint(viridis)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The object ``viridis`` is a callable, that when passed a float between\n0 and 1 returns an RGBA value from the colormap:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(viridis(0.56))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The list of colors that comprise the colormap can be directly accessed using\nthe ``colors`` property,\nor it can be accessed indirectly by calling ``viridis`` with an array\nof values matching the length of the colormap. Note that the returned list\nis in the form of an RGBA Nx4 array, where N is the length of the colormap.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print('viridis.colors', viridis.colors)\nprint('viridis(range(12))', viridis(range(12)))\nprint('viridis(np.linspace(0, 1, 12))', viridis(np.linspace(0, 1, 12)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The colormap is a lookup table, so \"oversampling\" the colormap returns\nnearest-neighbor interpolation (note the repeated colors in the list below)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print('viridis(np.linspace(0, 1, 15))', viridis(np.linspace(0, 1, 15)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating listed colormaps\n=========================\n\nThis is essential the inverse operation of the above where we supply a\nNx4 numpy array with all values between 0 and 1,\nto `.ListedColormap` to make a new colormap. This means that\nany numpy operations that we can do on a Nx4 array make carpentry of\nnew colormaps from existing colormaps quite straight forward.\n\nSuppose we want to make the first 25 entries of a 256-length \"viridis\"\ncolormap pink for some reason:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "viridis = cm.get_cmap('viridis', 256)\nnewcolors = viridis(np.linspace(0, 1, 256))\npink = np.array([248/256, 24/256, 148/256, 1])\nnewcolors[:25, :] = pink\nnewcmp = ListedColormap(newcolors)\n\n\ndef plot_examples(cms):\n \"\"\"\n helper function to plot two colormaps\n \"\"\"\n np.random.seed(19680801)\n data = np.random.randn(30, 30)\n\n fig, axs = plt.subplots(1, 2, figsize=(6, 3), constrained_layout=True)\n for [ax, cmap] in zip(axs, cms):\n psm = ax.pcolormesh(data, cmap=cmap, rasterized=True, vmin=-4, vmax=4)\n fig.colorbar(psm, ax=ax)\n plt.show()\n\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can easily reduce the dynamic range of a colormap; here we choose the\nmiddle 0.5 of the colormap. However, we need to interpolate from a larger\ncolormap, otherwise the new colormap will have repeated values.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "viridisBig = cm.get_cmap('viridis', 512)\nnewcmp = ListedColormap(viridisBig(np.linspace(0.25, 0.75, 256)))\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "and we can easily concatenate two colormaps:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "top = cm.get_cmap('Oranges_r', 128)\nbottom = cm.get_cmap('Blues', 128)\n\nnewcolors = np.vstack((top(np.linspace(0, 1, 128)),\n bottom(np.linspace(0, 1, 128))))\nnewcmp = ListedColormap(newcolors, name='OrangeBlue')\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Of course we need not start from a named colormap, we just need to create\nthe Nx4 array to pass to `.ListedColormap`. Here we create a\nbrown colormap that goes to white....\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 256\nvals = np.ones((N, 4))\nvals[:, 0] = np.linspace(90/256, 1, N)\nvals[:, 1] = np.linspace(39/256, 1, N)\nvals[:, 2] = np.linspace(41/256, 1, N)\nnewcmp = ListedColormap(vals)\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating linear segmented colormaps\n===================================\n\n`.LinearSegmentedColormap` class specifies colormaps using anchor points\nbetween which RGB(A) values are interpolated.\n\nThe format to specify these colormaps allows discontinuities at the anchor\npoints. Each anchor point is specified as a row in a matrix of the\nform ``[x[i] yleft[i] yright[i]]``, where ``x[i]`` is the anchor, and\n``yleft[i]`` and ``yright[i]`` are the values of the color on either\nside of the anchor point.\n\nIf there are no discontinuities, then ``yleft[i]=yright[i]``:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cdict = {'red': [[0.0, 0.0, 0.0],\n [0.5, 1.0, 1.0],\n [1.0, 1.0, 1.0]],\n 'green': [[0.0, 0.0, 0.0],\n [0.25, 0.0, 0.0],\n [0.75, 1.0, 1.0],\n [1.0, 1.0, 1.0]],\n 'blue': [[0.0, 0.0, 0.0],\n [0.5, 0.0, 0.0],\n [1.0, 1.0, 1.0]]}\n\n\ndef plot_linearmap(cdict):\n newcmp = LinearSegmentedColormap('testCmap', segmentdata=cdict, N=256)\n rgba = newcmp(np.linspace(0, 1, 256))\n fig, ax = plt.subplots(figsize=(4, 3), constrained_layout=True)\n col = ['r', 'g', 'b']\n for xx in [0.25, 0.5, 0.75]:\n ax.axvline(xx, color='0.7', linestyle='--')\n for i in range(3):\n ax.plot(np.arange(256)/256, rgba[:, i], color=col[i])\n ax.set_xlabel('index')\n ax.set_ylabel('RGB')\n plt.show()\n\nplot_linearmap(cdict)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In order to make a discontinuity at an anchor point, the third column is\ndifferent than the second. The matrix for each of \"red\", \"green\", \"blue\",\nand optionally \"alpha\" is set up as::\n\n cdict['red'] = [...\n [x[i] yleft[i] yright[i]],\n [x[i+1] yleft[i+1] yright[i+1]],\n ...]\n\nand for values passed to the colormap between ``x[i]`` and ``x[i+1]``,\nthe interpolation is between ``yright[i]`` and ``yleft[i+1]``.\n\nIn the example below there is a discontinuity in red at 0.5. The\ninterpolation between 0 and 0.5 goes from 0.3 to 1, and between 0.5 and 1\nit goes from 0.9 to 1. Note that red[0, 1], and red[2, 2] are both\nsuperfluous to the interpolation because red[0, 1] is the value to the\nleft of 0, and red[2, 2] is the value to the right of 1.0.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cdict['red'] = [[0.0, 0.0, 0.3],\n [0.5, 1.0, 0.9],\n [1.0, 1.0, 1.0]]\nplot_linearmap(cdict)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pcolormesh\nmatplotlib.figure.Figure.colorbar\nmatplotlib.colors\nmatplotlib.colors.LinearSegmentedColormap\nmatplotlib.colors.ListedColormap\nmatplotlib.cm\nmatplotlib.cm.get_cmap" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/71990c437bae12c5dd26d7dd8d500e08/fill_between_alpha.py b/_downloads/71990c437bae12c5dd26d7dd8d500e08/fill_between_alpha.py deleted file mode 120000 index bdd4b2236ff..00000000000 --- a/_downloads/71990c437bae12c5dd26d7dd8d500e08/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/71990c437bae12c5dd26d7dd8d500e08/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/7199133be41457386fa0ae0d1d8eb724/image_demo.py b/_downloads/7199133be41457386fa0ae0d1d8eb724/image_demo.py deleted file mode 120000 index 4a2d0db63d3..00000000000 --- a/_downloads/7199133be41457386fa0ae0d1d8eb724/image_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7199133be41457386fa0ae0d1d8eb724/image_demo.py \ No newline at end of file diff --git a/_downloads/71ae709647ed6470cf585682154f8b62/font_indexing.ipynb b/_downloads/71ae709647ed6470cf585682154f8b62/font_indexing.ipynb deleted file mode 120000 index c35c2dc985a..00000000000 --- a/_downloads/71ae709647ed6470cf585682154f8b62/font_indexing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/71ae709647ed6470cf585682154f8b62/font_indexing.ipynb \ No newline at end of file diff --git a/_downloads/71b9c4933d10e1f9f7e911482b9d7105/colormapnorms.py b/_downloads/71b9c4933d10e1f9f7e911482b9d7105/colormapnorms.py deleted file mode 120000 index cf45a0f84e2..00000000000 --- a/_downloads/71b9c4933d10e1f9f7e911482b9d7105/colormapnorms.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/71b9c4933d10e1f9f7e911482b9d7105/colormapnorms.py \ No newline at end of file diff --git a/_downloads/71c3d262c71f89970c4b585f7fdea870/marker_fillstyle_reference.py b/_downloads/71c3d262c71f89970c4b585f7fdea870/marker_fillstyle_reference.py deleted file mode 120000 index 28fbc9c8617..00000000000 --- a/_downloads/71c3d262c71f89970c4b585f7fdea870/marker_fillstyle_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/71c3d262c71f89970c4b585f7fdea870/marker_fillstyle_reference.py \ No newline at end of file diff --git a/_downloads/71c883fe497e105bec760c7a8f7cd3fd/radar_chart.ipynb b/_downloads/71c883fe497e105bec760c7a8f7cd3fd/radar_chart.ipynb deleted file mode 120000 index a6fb859f3fd..00000000000 --- a/_downloads/71c883fe497e105bec760c7a8f7cd3fd/radar_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/71c883fe497e105bec760c7a8f7cd3fd/radar_chart.ipynb \ No newline at end of file diff --git a/_downloads/71d708728c5bc230c0a4d8fcdad60b17/auto_subplots_adjust.py b/_downloads/71d708728c5bc230c0a4d8fcdad60b17/auto_subplots_adjust.py deleted file mode 100644 index e6eb620168a..00000000000 --- a/_downloads/71d708728c5bc230c0a4d8fcdad60b17/auto_subplots_adjust.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -==================== -Auto Subplots Adjust -==================== - -Automatically adjust subplot parameters. This example shows a way to determine -a subplot parameter from the extent of the ticklabels using a callback on the -:doc:`draw_event`. - -Note that a similar result would be achieved using `~.Figure.tight_layout` -or `~.Figure.constrained_layout`; this example shows how one could customize -the subplot parameter adjustment. -""" -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms -fig, ax = plt.subplots() -ax.plot(range(10)) -ax.set_yticks((2,5,7)) -labels = ax.set_yticklabels(('really, really, really', 'long', 'labels')) - -def on_draw(event): - bboxes = [] - for label in labels: - bbox = label.get_window_extent() - # the figure transform goes from relative coords->pixels and we - # want the inverse of that - bboxi = bbox.inverse_transformed(fig.transFigure) - bboxes.append(bboxi) - - # this is the bbox that bounds all the bboxes, again in relative - # figure coords - bbox = mtransforms.Bbox.union(bboxes) - if fig.subplotpars.left < bbox.width: - # we need to move it over - fig.subplots_adjust(left=1.1*bbox.width) # pad a little - fig.canvas.draw() - return False - -fig.canvas.mpl_connect('draw_event', on_draw) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.artist.Artist.get_window_extent -matplotlib.transforms.Bbox -matplotlib.transforms.Bbox.inverse_transformed -matplotlib.transforms.Bbox.union -matplotlib.figure.Figure.subplots_adjust -matplotlib.figure.SubplotParams -matplotlib.backend_bases.FigureCanvasBase.mpl_connect diff --git a/_downloads/71daa88a45f89bc1d45d5b54e1f77897/pyplot_mathtext.py b/_downloads/71daa88a45f89bc1d45d5b54e1f77897/pyplot_mathtext.py deleted file mode 120000 index 19e72f82e2a..00000000000 --- a/_downloads/71daa88a45f89bc1d45d5b54e1f77897/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/71daa88a45f89bc1d45d5b54e1f77897/pyplot_mathtext.py \ No newline at end of file diff --git a/_downloads/71db3eb4f8482bc6784c8f9d07034c81/boxplot_demo_pyplot.ipynb b/_downloads/71db3eb4f8482bc6784c8f9d07034c81/boxplot_demo_pyplot.ipynb deleted file mode 120000 index 16983292560..00000000000 --- a/_downloads/71db3eb4f8482bc6784c8f9d07034c81/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/71db3eb4f8482bc6784c8f9d07034c81/boxplot_demo_pyplot.ipynb \ No newline at end of file diff --git a/_downloads/71f1d049f23137568cc50ff02fcde95a/pyplot_simple.ipynb b/_downloads/71f1d049f23137568cc50ff02fcde95a/pyplot_simple.ipynb deleted file mode 120000 index b86c923d70a..00000000000 --- a/_downloads/71f1d049f23137568cc50ff02fcde95a/pyplot_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/71f1d049f23137568cc50ff02fcde95a/pyplot_simple.ipynb \ No newline at end of file diff --git a/_downloads/71f6f1571f197ea4d33c60225bfb2213/polar_demo.py b/_downloads/71f6f1571f197ea4d33c60225bfb2213/polar_demo.py deleted file mode 120000 index 1dd729bb6d6..00000000000 --- a/_downloads/71f6f1571f197ea4d33c60225bfb2213/polar_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/71f6f1571f197ea4d33c60225bfb2213/polar_demo.py \ No newline at end of file diff --git a/_downloads/71feb84ad673aad08f6ce51df0b87ae7/coords_demo.py b/_downloads/71feb84ad673aad08f6ce51df0b87ae7/coords_demo.py deleted file mode 120000 index 01c31439a50..00000000000 --- a/_downloads/71feb84ad673aad08f6ce51df0b87ae7/coords_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/71feb84ad673aad08f6ce51df0b87ae7/coords_demo.py \ No newline at end of file diff --git a/_downloads/720214a8ed90dba1b6e8629560fd1be4/canvasagg.ipynb b/_downloads/720214a8ed90dba1b6e8629560fd1be4/canvasagg.ipynb deleted file mode 100644 index 328dac31a46..00000000000 --- a/_downloads/720214a8ed90dba1b6e8629560fd1be4/canvasagg.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# CanvasAgg demo\n\n\nThis example shows how to use the agg backend directly to create images, which\nmay be of use to web application developers who want full control over their\ncode without using the pyplot interface to manage figures, figure closing etc.\n\n

Note

It is not necessary to avoid using the pyplot interface in order to\n create figures without a graphical front-end - simply setting\n the backend to \"Agg\" would be sufficient.

\n\nIn this example, we show how to save the contents of the agg canvas to a file,\nand how to extract them to a string, which can in turn be passed off to PIL or\nput in a numpy array. The latter functionality allows e.g. to use Matplotlib\ninside a cgi-script *without* needing to write a figure to disk.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_agg import FigureCanvasAgg\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nfig = Figure(figsize=(5, 4), dpi=100)\n# A canvas must be manually attached to the figure (pyplot would automatically\n# do it). This is done by instantiating the canvas with the figure as\n# argument.\ncanvas = FigureCanvasAgg(fig)\n\n# Do some plotting.\nax = fig.add_subplot(111)\nax.plot([1, 2, 3])\n\n# Option 1: Save the figure to a file; can also be a file-like object (BytesIO,\n# etc.).\nfig.savefig(\"test.png\")\n\n# Option 2: Save the figure to a string.\ncanvas.draw()\ns, (width, height) = canvas.print_to_buffer()\n\n# Option 2a: Convert to a NumPy array.\nX = np.frombuffer(s, np.uint8).reshape((height, width, 4))\n\n# Option 2b: Pass off to PIL.\nfrom PIL import Image\nim = Image.frombytes(\"RGBA\", (width, height), s)\n\n# Uncomment this line to display the image using ImageMagick's `display` tool.\n# im.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.backends.backend_agg.FigureCanvasAgg\nmatplotlib.figure.Figure\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.figure.Figure.savefig\nmatplotlib.axes.Axes.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7204374392d93c852b82bfcb81e6728c/arrow_simple_demo.ipynb b/_downloads/7204374392d93c852b82bfcb81e6728c/arrow_simple_demo.ipynb deleted file mode 120000 index d0ea8c2728a..00000000000 --- a/_downloads/7204374392d93c852b82bfcb81e6728c/arrow_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7204374392d93c852b82bfcb81e6728c/arrow_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/720e6348632b055fa4bd26b48eb4baaf/connect_simple01.py b/_downloads/720e6348632b055fa4bd26b48eb4baaf/connect_simple01.py deleted file mode 100644 index 7aea4d71718..00000000000 --- a/_downloads/720e6348632b055fa4bd26b48eb4baaf/connect_simple01.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -================ -Connect Simple01 -================ - -A `ConnectionPatch` can be used to draw a line (possibly with arrow head) -between points defined in different coordinate systems and/or axes. -""" -from matplotlib.patches import ConnectionPatch -import matplotlib.pyplot as plt - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) - -# Draw a simple arrow between two points in axes coordinates -# within a single axes. -xyA = (0.2, 0.2) -xyB = (0.8, 0.8) -coordsA = "data" -coordsB = "data" -con = ConnectionPatch(xyA, xyB, coordsA, coordsB, - arrowstyle="-|>", shrinkA=5, shrinkB=5, - mutation_scale=20, fc="w") -ax1.plot([xyA[0], xyB[0]], [xyA[1], xyB[1]], "o") -ax1.add_artist(con) - -# Draw an arrow between the same point in data coordinates, -# but in different axes. -xy = (0.3, 0.2) -coordsA = "data" -coordsB = "data" -con = ConnectionPatch(xyA=xy, xyB=xy, coordsA=coordsA, coordsB=coordsB, - axesA=ax2, axesB=ax1, - arrowstyle="->", shrinkB=5) -ax2.add_artist(con) - -# Draw a line between the different points, defined in different coordinate -# systems. -xyA = (0.6, 1.0) # in axes coordinates -xyB = (0.0, 0.2) # x in axes coordinates, y in data coordinates -coordsA = "axes fraction" -coordsB = ax2.get_yaxis_transform() -con = ConnectionPatch(xyA=xyA, xyB=xyB, coordsA=coordsA, coordsB=coordsB, - arrowstyle="-") -ax2.add_artist(con) - -ax1.set_xlim(0, 1) -ax1.set_ylim(0, 1) -ax2.set_xlim(0, .5) -ax2.set_ylim(0, .5) - -plt.show() diff --git a/_downloads/7210d2145d075c4a72a06af3a4ca7564/demo_gridspec01.py b/_downloads/7210d2145d075c4a72a06af3a4ca7564/demo_gridspec01.py deleted file mode 120000 index 2f580e240e5..00000000000 --- a/_downloads/7210d2145d075c4a72a06af3a4ca7564/demo_gridspec01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7210d2145d075c4a72a06af3a4ca7564/demo_gridspec01.py \ No newline at end of file diff --git a/_downloads/721e3406f8136c90efcd9d5508b8fcbb/hist_plot.ipynb b/_downloads/721e3406f8136c90efcd9d5508b8fcbb/hist_plot.ipynb deleted file mode 120000 index 9f456220f11..00000000000 --- a/_downloads/721e3406f8136c90efcd9d5508b8fcbb/hist_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/721e3406f8136c90efcd9d5508b8fcbb/hist_plot.ipynb \ No newline at end of file diff --git a/_downloads/7221a4dc30c5dde9c7c5c2275dd3f2c0/errorbars_and_boxes.ipynb b/_downloads/7221a4dc30c5dde9c7c5c2275dd3f2c0/errorbars_and_boxes.ipynb deleted file mode 120000 index 8a6e9566201..00000000000 --- a/_downloads/7221a4dc30c5dde9c7c5c2275dd3f2c0/errorbars_and_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7221a4dc30c5dde9c7c5c2275dd3f2c0/errorbars_and_boxes.ipynb \ No newline at end of file diff --git a/_downloads/72277ed12467def2014b7f003c307369/image_annotated_heatmap.py b/_downloads/72277ed12467def2014b7f003c307369/image_annotated_heatmap.py deleted file mode 120000 index 989156f7b42..00000000000 --- a/_downloads/72277ed12467def2014b7f003c307369/image_annotated_heatmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/72277ed12467def2014b7f003c307369/image_annotated_heatmap.py \ No newline at end of file diff --git a/_downloads/722eafc8b87ab7d29ed9b5121ba5dd68/color_by_yvalue.ipynb b/_downloads/722eafc8b87ab7d29ed9b5121ba5dd68/color_by_yvalue.ipynb deleted file mode 120000 index 4094cb04821..00000000000 --- a/_downloads/722eafc8b87ab7d29ed9b5121ba5dd68/color_by_yvalue.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/722eafc8b87ab7d29ed9b5121ba5dd68/color_by_yvalue.ipynb \ No newline at end of file diff --git a/_downloads/7231e5d7313aa48afea969748ec77d74/units_sample.ipynb b/_downloads/7231e5d7313aa48afea969748ec77d74/units_sample.ipynb deleted file mode 120000 index 4ddf9a50bfc..00000000000 --- a/_downloads/7231e5d7313aa48afea969748ec77d74/units_sample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7231e5d7313aa48afea969748ec77d74/units_sample.ipynb \ No newline at end of file diff --git a/_downloads/723c7705038f0d1984dd231a5cfd0021/embedding_webagg_sgskip.py b/_downloads/723c7705038f0d1984dd231a5cfd0021/embedding_webagg_sgskip.py deleted file mode 120000 index 77223734481..00000000000 --- a/_downloads/723c7705038f0d1984dd231a5cfd0021/embedding_webagg_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/723c7705038f0d1984dd231a5cfd0021/embedding_webagg_sgskip.py \ No newline at end of file diff --git a/_downloads/724f50707805745b41a77c01741edb61/contour3d_3.ipynb b/_downloads/724f50707805745b41a77c01741edb61/contour3d_3.ipynb deleted file mode 120000 index 008eea37457..00000000000 --- a/_downloads/724f50707805745b41a77c01741edb61/contour3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/724f50707805745b41a77c01741edb61/contour3d_3.ipynb \ No newline at end of file diff --git a/_downloads/72533c4d2837c75066517456ec8eb61a/rotate_axes3d_sgskip.py b/_downloads/72533c4d2837c75066517456ec8eb61a/rotate_axes3d_sgskip.py deleted file mode 120000 index d3e02966f9e..00000000000 --- a/_downloads/72533c4d2837c75066517456ec8eb61a/rotate_axes3d_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/72533c4d2837c75066517456ec8eb61a/rotate_axes3d_sgskip.py \ No newline at end of file diff --git a/_downloads/7253d63bc9c29285cfff66ce8354fe40/demo_curvelinear_grid.py b/_downloads/7253d63bc9c29285cfff66ce8354fe40/demo_curvelinear_grid.py deleted file mode 120000 index 4c6a7afb506..00000000000 --- a/_downloads/7253d63bc9c29285cfff66ce8354fe40/demo_curvelinear_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7253d63bc9c29285cfff66ce8354fe40/demo_curvelinear_grid.py \ No newline at end of file diff --git a/_downloads/725566ae02a3259fdae80ddd936f79f8/errorbar_limits.py b/_downloads/725566ae02a3259fdae80ddd936f79f8/errorbar_limits.py deleted file mode 100644 index 15d3d99dd30..00000000000 --- a/_downloads/725566ae02a3259fdae80ddd936f79f8/errorbar_limits.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -============================================== -Including upper and lower limits in error bars -============================================== - -In matplotlib, errors bars can have "limits". Applying limits to the -error bars essentially makes the error unidirectional. Because of that, -upper and lower limits can be applied in both the y- and x-directions -via the ``uplims``, ``lolims``, ``xuplims``, and ``xlolims`` parameters, -respectively. These parameters can be scalar or boolean arrays. - -For example, if ``xlolims`` is ``True``, the x-error bars will only -extend from the data towards increasing values. If ``uplims`` is an -array filled with ``False`` except for the 4th and 7th values, all of the -y-error bars will be bidirectional, except the 4th and 7th bars, which -will extend from the data towards decreasing y-values. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.array([0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0]) -y = np.exp(-x) -xerr = 0.1 -yerr = 0.2 - -# lower & upper limits of the error -lolims = np.array([0, 0, 1, 0, 1, 0, 0, 0, 1, 0], dtype=bool) -uplims = np.array([0, 1, 0, 0, 0, 1, 0, 0, 0, 1], dtype=bool) -ls = 'dotted' - -fig, ax = plt.subplots(figsize=(7, 4)) - -# standard error bars -ax.errorbar(x, y, xerr=xerr, yerr=yerr, linestyle=ls) - -# including upper limits -ax.errorbar(x, y + 0.5, xerr=xerr, yerr=yerr, uplims=uplims, - linestyle=ls) - -# including lower limits -ax.errorbar(x, y + 1.0, xerr=xerr, yerr=yerr, lolims=lolims, - linestyle=ls) - -# including upper and lower limits -ax.errorbar(x, y + 1.5, xerr=xerr, yerr=yerr, - lolims=lolims, uplims=uplims, - marker='o', markersize=8, - linestyle=ls) - -# Plot a series with lower and upper limits in both x & y -# constant x-error with varying y-error -xerr = 0.2 -yerr = np.zeros_like(x) + 0.2 -yerr[[3, 6]] = 0.3 - -# mock up some limits by modifying previous data -xlolims = lolims -xuplims = uplims -lolims = np.zeros(x.shape) -uplims = np.zeros(x.shape) -lolims[[6]] = True # only limited at this index -uplims[[3]] = True # only limited at this index - -# do the plotting -ax.errorbar(x, y + 2.1, xerr=xerr, yerr=yerr, - xlolims=xlolims, xuplims=xuplims, - uplims=uplims, lolims=lolims, - marker='o', markersize=8, - linestyle='none') - -# tidy up the figure -ax.set_xlim((0, 5.5)) -ax.set_title('Errorbar upper and lower limits') -plt.show() diff --git a/_downloads/726191cdda9655ec6240e01a94b66a85/custom_shaded_3d_surface.ipynb b/_downloads/726191cdda9655ec6240e01a94b66a85/custom_shaded_3d_surface.ipynb deleted file mode 120000 index 79d6a310ba6..00000000000 --- a/_downloads/726191cdda9655ec6240e01a94b66a85/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/726191cdda9655ec6240e01a94b66a85/custom_shaded_3d_surface.ipynb \ No newline at end of file diff --git a/_downloads/7269e95ad8deb4c79d68e89c32368315/image_slices_viewer.ipynb b/_downloads/7269e95ad8deb4c79d68e89c32368315/image_slices_viewer.ipynb deleted file mode 100644 index 7ea3e4447c1..00000000000 --- a/_downloads/7269e95ad8deb4c79d68e89c32368315/image_slices_viewer.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Slices Viewer\n\n\nScroll through 2D image slices of a 3D array.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nclass IndexTracker(object):\n def __init__(self, ax, X):\n self.ax = ax\n ax.set_title('use scroll wheel to navigate images')\n\n self.X = X\n rows, cols, self.slices = X.shape\n self.ind = self.slices//2\n\n self.im = ax.imshow(self.X[:, :, self.ind])\n self.update()\n\n def onscroll(self, event):\n print(\"%s %s\" % (event.button, event.step))\n if event.button == 'up':\n self.ind = (self.ind + 1) % self.slices\n else:\n self.ind = (self.ind - 1) % self.slices\n self.update()\n\n def update(self):\n self.im.set_data(self.X[:, :, self.ind])\n self.ax.set_ylabel('slice %s' % self.ind)\n self.im.axes.figure.canvas.draw()\n\n\nfig, ax = plt.subplots(1, 1)\n\nX = np.random.rand(20, 20, 40)\n\ntracker = IndexTracker(ax, X)\n\n\nfig.canvas.mpl_connect('scroll_event', tracker.onscroll)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/726c52cb1e024ddd4551e97f206349b2/contour_corner_mask.ipynb b/_downloads/726c52cb1e024ddd4551e97f206349b2/contour_corner_mask.ipynb deleted file mode 120000 index e827a87f9e7..00000000000 --- a/_downloads/726c52cb1e024ddd4551e97f206349b2/contour_corner_mask.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/726c52cb1e024ddd4551e97f206349b2/contour_corner_mask.ipynb \ No newline at end of file diff --git a/_downloads/727aaf405e9e2693d5609f955fa0030d/whats_new_99_mplot3d.ipynb b/_downloads/727aaf405e9e2693d5609f955fa0030d/whats_new_99_mplot3d.ipynb deleted file mode 100644 index c26903a86f6..00000000000 --- a/_downloads/727aaf405e9e2693d5609f955fa0030d/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================\nWhats New 0.99 Mplot3d\n======================\n\nCreate a 3D surface plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom mpl_toolkits.mplot3d import Axes3D\n\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\nfig = plt.figure()\nax = Axes3D(fig)\nax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits\nmpl_toolkits.mplot3d.Axes3D\nmpl_toolkits.mplot3d.Axes3D.plot_surface" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/727bf90e409d509902e5fe23f40c8a3f/bxp.ipynb b/_downloads/727bf90e409d509902e5fe23f40c8a3f/bxp.ipynb deleted file mode 120000 index 793e26af6b8..00000000000 --- a/_downloads/727bf90e409d509902e5fe23f40c8a3f/bxp.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/727bf90e409d509902e5fe23f40c8a3f/bxp.ipynb \ No newline at end of file diff --git a/_downloads/727c5b19a7178ba13c0cfd84f859692a/tricontour_smooth_user.py b/_downloads/727c5b19a7178ba13c0cfd84f859692a/tricontour_smooth_user.py deleted file mode 100644 index 27481d991df..00000000000 --- a/_downloads/727c5b19a7178ba13c0cfd84f859692a/tricontour_smooth_user.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -====================== -Tricontour Smooth User -====================== - -Demonstrates high-resolution tricontouring on user-defined triangular grids -with `matplotlib.tri.UniformTriRefiner`. -""" -import matplotlib.tri as tri -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import numpy as np - - -#----------------------------------------------------------------------------- -# Analytical test function -#----------------------------------------------------------------------------- -def function_z(x, y): - r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2) - theta1 = np.arctan2(0.5 - x, 0.5 - y) - r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2) - theta2 = np.arctan2(-x - 0.2, -y - 0.2) - z = -(2 * (np.exp((r1 / 10)**2) - 1) * 30. * np.cos(7. * theta1) + - (np.exp((r2 / 10)**2) - 1) * 30. * np.cos(11. * theta2) + - 0.7 * (x**2 + y**2)) - return (np.max(z) - z) / (np.max(z) - np.min(z)) - -#----------------------------------------------------------------------------- -# Creating a Triangulation -#----------------------------------------------------------------------------- -# First create the x and y coordinates of the points. -n_angles = 20 -n_radii = 10 -min_radius = 0.15 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() -z = function_z(x, y) - -# Now create the Triangulation. -# (Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points.) -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -#----------------------------------------------------------------------------- -# Refine data -#----------------------------------------------------------------------------- -refiner = tri.UniformTriRefiner(triang) -tri_refi, z_test_refi = refiner.refine_field(z, subdiv=3) - -#----------------------------------------------------------------------------- -# Plot the triangulation and the high-res iso-contours -#----------------------------------------------------------------------------- -fig, ax = plt.subplots() -ax.set_aspect('equal') -ax.triplot(triang, lw=0.5, color='white') - -levels = np.arange(0., 1., 0.025) -cmap = cm.get_cmap(name='terrain', lut=None) -ax.tricontourf(tri_refi, z_test_refi, levels=levels, cmap=cmap) -ax.tricontour(tri_refi, z_test_refi, levels=levels, - colors=['0.25', '0.5', '0.5', '0.5', '0.5'], - linewidths=[1.0, 0.5, 0.5, 0.5, 0.5]) - -ax.set_title("High-resolution tricontouring") - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.tri -matplotlib.tri.Triangulation -matplotlib.tri.UniformTriRefiner diff --git a/_downloads/727c8eb7ae8c5e61445e880da933e403/close_event.ipynb b/_downloads/727c8eb7ae8c5e61445e880da933e403/close_event.ipynb deleted file mode 120000 index eefa05a0cd2..00000000000 --- a/_downloads/727c8eb7ae8c5e61445e880da933e403/close_event.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/727c8eb7ae8c5e61445e880da933e403/close_event.ipynb \ No newline at end of file diff --git a/_downloads/7280c5f85aac448b871d595407ffdc08/polar_legend.py b/_downloads/7280c5f85aac448b871d595407ffdc08/polar_legend.py deleted file mode 100644 index f7f58a9be17..00000000000 --- a/_downloads/7280c5f85aac448b871d595407ffdc08/polar_legend.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -============ -Polar Legend -============ - -Demo of a legend on a polar-axis plot. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# radar green, solid grid lines -plt.rc('grid', color='#316931', linewidth=1, linestyle='-') -plt.rc('xtick', labelsize=15) -plt.rc('ytick', labelsize=15) - -# force square figure and square axes looks better for polar, IMO -fig = plt.figure(figsize=(8, 8)) -ax = fig.add_axes([0.1, 0.1, 0.8, 0.8], - projection='polar', facecolor='#d5de9c') - -r = np.arange(0, 3.0, 0.01) -theta = 2 * np.pi * r -ax.plot(theta, r, color='#ee8d18', lw=3, label='a line') -ax.plot(0.5 * theta, r, color='blue', ls='--', lw=3, label='another line') -ax.legend() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.legend -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes diff --git a/_downloads/7282c789d1e66884fa31d4ac7d4a5e0a/bars3d.ipynb b/_downloads/7282c789d1e66884fa31d4ac7d4a5e0a/bars3d.ipynb deleted file mode 120000 index 360d688276d..00000000000 --- a/_downloads/7282c789d1e66884fa31d4ac7d4a5e0a/bars3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7282c789d1e66884fa31d4ac7d4a5e0a/bars3d.ipynb \ No newline at end of file diff --git a/_downloads/728a2aba692f0185fa58a8c54944cd8f/fancyarrow_demo.py b/_downloads/728a2aba692f0185fa58a8c54944cd8f/fancyarrow_demo.py deleted file mode 100644 index 59262c81917..00000000000 --- a/_downloads/728a2aba692f0185fa58a8c54944cd8f/fancyarrow_demo.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -=============== -Fancyarrow Demo -=============== - -""" -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -styles = mpatches.ArrowStyle.get_styles() - -ncol = 2 -nrow = (len(styles) + 1) // ncol -figheight = (nrow + 0.5) -fig = plt.figure(figsize=(4 * ncol / 1.5, figheight / 1.5)) -fontsize = 0.2 * 70 - - -ax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1.) - -ax.set_xlim(0, 4 * ncol) -ax.set_ylim(0, figheight) - - -def to_texstring(s): - s = s.replace("<", r"$<$") - s = s.replace(">", r"$>$") - s = s.replace("|", r"$|$") - return s - - -for i, (stylename, styleclass) in enumerate(sorted(styles.items())): - x = 3.2 + (i // nrow) * 4 - y = (figheight - 0.7 - i % nrow) # /figheight - p = mpatches.Circle((x, y), 0.2) - ax.add_patch(p) - - ax.annotate(to_texstring(stylename), (x, y), - (x - 1.2, y), - ha="right", va="center", - size=fontsize, - arrowprops=dict(arrowstyle=stylename, - patchB=p, - shrinkA=5, - shrinkB=5, - fc="k", ec="k", - connectionstyle="arc3,rad=-0.05", - ), - bbox=dict(boxstyle="square", fc="w")) - -ax.xaxis.set_visible(False) -ax.yaxis.set_visible(False) - -plt.show() diff --git a/_downloads/728c0b45e7c360e28a97b8cc83b967b1/simple_annotate01.py b/_downloads/728c0b45e7c360e28a97b8cc83b967b1/simple_annotate01.py deleted file mode 100644 index 0092aaabbf9..00000000000 --- a/_downloads/728c0b45e7c360e28a97b8cc83b967b1/simple_annotate01.py +++ /dev/null @@ -1,89 +0,0 @@ -""" -================= -Simple Annotate01 -================= - -""" - -import matplotlib.pyplot as plt -import matplotlib.patches as mpatches - - -fig, axs = plt.subplots(2, 4) -x1, y1 = 0.3, 0.3 -x2, y2 = 0.7, 0.7 - -ax = axs.flat[0] -ax.plot([x1, x2], [y1, y2], "o") -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->")) -ax.text(.05, .95, "A $->$ B", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[2] -ax.plot([x1, x2], [y1, y2], "o") -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.3", - shrinkB=5) - ) -ax.text(.05, .95, "shrinkB=5", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[3] -ax.plot([x1, x2], [y1, y2], "o") -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.3")) -ax.text(.05, .95, "connectionstyle=arc3", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[4] -ax.plot([x1, x2], [y1, y2], "o") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.2") - ) - -ax = axs.flat[5] -ax.plot([x1, x2], [y1, y2], "o") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=0.2", - patchB=el) - ) -ax.text(.05, .95, "patchB", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[6] -ax.plot([x1], [y1], "o") -ax.annotate("Test", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - ha="center", va="center", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->") - ) -ax.text(.05, .95, "annotate", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[7] -ax.plot([x1], [y1], "o") -ax.annotate("Test", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - ha="center", va="center", - bbox=dict(boxstyle="round", fc="w", ), - arrowprops=dict(arrowstyle="->", relpos=(0., 0.)) - ) -ax.text(.05, .95, "relpos=(0,0)", transform=ax.transAxes, ha="left", va="top") - -for ax in axs.flat: - ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1) - -plt.show() diff --git a/_downloads/72900a67f8e6a55b6560229eec02d34f/multiple_figs_demo.py b/_downloads/72900a67f8e6a55b6560229eec02d34f/multiple_figs_demo.py deleted file mode 100644 index 55ba32347b4..00000000000 --- a/_downloads/72900a67f8e6a55b6560229eec02d34f/multiple_figs_demo.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -================== -Multiple Figs Demo -================== - -Working with multiple figure windows and subplots -""" -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 2.0, 0.01) -s1 = np.sin(2*np.pi*t) -s2 = np.sin(4*np.pi*t) - -############################################################################### -# Create figure 1 - -plt.figure(1) -plt.subplot(211) -plt.plot(t, s1) -plt.subplot(212) -plt.plot(t, 2*s1) - -############################################################################### -# Create figure 2 - -plt.figure(2) -plt.plot(t, s2) - -############################################################################### -# Now switch back to figure 1 and make some changes - -plt.figure(1) -plt.subplot(211) -plt.plot(t, s2, 's') -ax = plt.gca() -ax.set_xticklabels([]) - -plt.show() diff --git a/_downloads/72988ba4396a0da3ca6d50ec5f411286/annotate_simple_coord01.py b/_downloads/72988ba4396a0da3ca6d50ec5f411286/annotate_simple_coord01.py deleted file mode 120000 index d9a28ac6311..00000000000 --- a/_downloads/72988ba4396a0da3ca6d50ec5f411286/annotate_simple_coord01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/72988ba4396a0da3ca6d50ec5f411286/annotate_simple_coord01.py \ No newline at end of file diff --git a/_downloads/729aeb01ff55a044e6c51d079c5d6471/coords_demo.py b/_downloads/729aeb01ff55a044e6c51d079c5d6471/coords_demo.py deleted file mode 100644 index 65047f7a76f..00000000000 --- a/_downloads/729aeb01ff55a044e6c51d079c5d6471/coords_demo.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -=========== -Coords demo -=========== - -An example of how to interact with the plotting canvas by connecting to move -and click events. -""" - -from matplotlib.backend_bases import MouseButton -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2 * np.pi * t) -fig, ax = plt.subplots() -ax.plot(t, s) - - -def on_move(event): - # get the x and y pixel coords - x, y = event.x, event.y - if event.inaxes: - ax = event.inaxes # the axes instance - print('data coords %f %f' % (event.xdata, event.ydata)) - - -def on_click(event): - if event.button is MouseButton.LEFT: - print('disconnecting callback') - plt.disconnect(binding_id) - - -binding_id = plt.connect('motion_notify_event', on_move) -plt.connect('button_press_event', on_click) - -plt.show() diff --git a/_downloads/72beceb1ac0efa1490033e6448129cdb/embedding_in_wx4_sgskip.py b/_downloads/72beceb1ac0efa1490033e6448129cdb/embedding_in_wx4_sgskip.py deleted file mode 100644 index 6c607108c53..00000000000 --- a/_downloads/72beceb1ac0efa1490033e6448129cdb/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -================== -Embedding in wx #4 -================== - -An example of how to use wx or wxagg in an application with a custom toolbar. -""" - -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar -from matplotlib.backends.backend_wx import _load_bitmap -from matplotlib.figure import Figure - -import numpy as np - -import wx - - -class MyNavigationToolbar(NavigationToolbar): - """Extend the default wx toolbar with your own event handlers.""" - - def __init__(self, canvas, cankill): - NavigationToolbar.__init__(self, canvas) - - # for simplicity I'm going to reuse a bitmap from wx, you'll - # probably want to add your own. - tool = self.AddTool(wx.ID_ANY, 'Click me', _load_bitmap('back.png'), - 'Activate custom contol') - self.Bind(wx.EVT_TOOL, self._on_custom, id=tool.GetId()) - - def _on_custom(self, evt): - # add some text to the axes in a random location in axes (0,1) - # coords) with a random color - - # get the axes - ax = self.canvas.figure.axes[0] - - # generate a random location can color - x, y = np.random.rand(2) - rgb = np.random.rand(3) - - # add the text and draw - ax.text(x, y, 'You clicked me', - transform=ax.transAxes, - color=rgb) - self.canvas.draw() - evt.Skip() - - -class CanvasFrame(wx.Frame): - def __init__(self): - wx.Frame.__init__(self, None, -1, - 'CanvasFrame', size=(550, 350)) - - self.figure = Figure(figsize=(5, 4), dpi=100) - self.axes = self.figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2 * np.pi * t) - - self.axes.plot(t, s) - - self.canvas = FigureCanvas(self, -1, self.figure) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.sizer.Add(self.canvas, 1, wx.TOP | wx.LEFT | wx.EXPAND) - - self.toolbar = MyNavigationToolbar(self.canvas, True) - self.toolbar.Realize() - # By adding toolbar in sizer, we are able to put it at the bottom - # of the frame - so appearance is closer to GTK version. - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - - # update the axes menu on the toolbar - self.toolbar.update() - self.SetSizer(self.sizer) - self.Fit() - - -class App(wx.App): - def OnInit(self): - 'Create the main window and insert the custom frame' - frame = CanvasFrame() - frame.Show(True) - - return True - -app = App(0) -app.MainLoop() diff --git a/_downloads/72c2d08f8efbd36cee19f9d98c776d1f/span_selector.py b/_downloads/72c2d08f8efbd36cee19f9d98c776d1f/span_selector.py deleted file mode 120000 index c3fcb500cce..00000000000 --- a/_downloads/72c2d08f8efbd36cee19f9d98c776d1f/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/72c2d08f8efbd36cee19f9d98c776d1f/span_selector.py \ No newline at end of file diff --git a/_downloads/72c3bf88f45408f00bf5e60704c6e236/image_nonuniform.ipynb b/_downloads/72c3bf88f45408f00bf5e60704c6e236/image_nonuniform.ipynb deleted file mode 120000 index 1ce03e53b9a..00000000000 --- a/_downloads/72c3bf88f45408f00bf5e60704c6e236/image_nonuniform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/72c3bf88f45408f00bf5e60704c6e236/image_nonuniform.ipynb \ No newline at end of file diff --git a/_downloads/72c78964eae1834aafc5ce9e5fdd9754/titles_demo.ipynb b/_downloads/72c78964eae1834aafc5ce9e5fdd9754/titles_demo.ipynb deleted file mode 120000 index b1c252de4c9..00000000000 --- a/_downloads/72c78964eae1834aafc5ce9e5fdd9754/titles_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/72c78964eae1834aafc5ce9e5fdd9754/titles_demo.ipynb \ No newline at end of file diff --git a/_downloads/72c7f575d9fac89d7003e5e7579101a7/images.ipynb b/_downloads/72c7f575d9fac89d7003e5e7579101a7/images.ipynb deleted file mode 120000 index ef9d37b6c50..00000000000 --- a/_downloads/72c7f575d9fac89d7003e5e7579101a7/images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/72c7f575d9fac89d7003e5e7579101a7/images.ipynb \ No newline at end of file diff --git a/_downloads/72cad68f16d034dda8f22f3be89ff7e7/colorbar_only.ipynb b/_downloads/72cad68f16d034dda8f22f3be89ff7e7/colorbar_only.ipynb deleted file mode 120000 index bbc1d1bc11c..00000000000 --- a/_downloads/72cad68f16d034dda8f22f3be89ff7e7/colorbar_only.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/72cad68f16d034dda8f22f3be89ff7e7/colorbar_only.ipynb \ No newline at end of file diff --git a/_downloads/72d9c8d6175bf589e501a67cc9e8e654/ggplot.py b/_downloads/72d9c8d6175bf589e501a67cc9e8e654/ggplot.py deleted file mode 120000 index 06f257d071f..00000000000 --- a/_downloads/72d9c8d6175bf589e501a67cc9e8e654/ggplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/72d9c8d6175bf589e501a67cc9e8e654/ggplot.py \ No newline at end of file diff --git a/_downloads/72dc498fdda77f02bdd84286f5bf4fcb/basic_units.ipynb b/_downloads/72dc498fdda77f02bdd84286f5bf4fcb/basic_units.ipynb deleted file mode 120000 index 9025c020d96..00000000000 --- a/_downloads/72dc498fdda77f02bdd84286f5bf4fcb/basic_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/72dc498fdda77f02bdd84286f5bf4fcb/basic_units.ipynb \ No newline at end of file diff --git a/_downloads/72e0513847df9703b4ef8384e9fb536b/simple_rgb.py b/_downloads/72e0513847df9703b4ef8384e9fb536b/simple_rgb.py deleted file mode 100644 index d0d5c576604..00000000000 --- a/_downloads/72e0513847df9703b4ef8384e9fb536b/simple_rgb.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -========== -Simple RGB -========== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def get_rgb(): - Z, extent = get_demo_image() - - Z[Z < 0] = 0. - Z = Z / Z.max() - - R = Z[:13, :13] - G = Z[2:, 2:] - B = Z[:13, 2:] - - return R, G, B - - -fig = plt.figure() -ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8]) - -r, g, b = get_rgb() -kwargs = dict(origin="lower", interpolation="nearest") -ax.imshow_rgb(r, g, b, **kwargs) - -ax.RGB.set_xlim(0., 9.5) -ax.RGB.set_ylim(0.9, 10.6) - -plt.show() diff --git a/_downloads/72fd41e51c23f5ad4a5a0e6d3f8d884f/autoscale.ipynb b/_downloads/72fd41e51c23f5ad4a5a0e6d3f8d884f/autoscale.ipynb deleted file mode 120000 index 34d9e40839c..00000000000 --- a/_downloads/72fd41e51c23f5ad4a5a0e6d3f8d884f/autoscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/72fd41e51c23f5ad4a5a0e6d3f8d884f/autoscale.ipynb \ No newline at end of file diff --git a/_downloads/72fdb015d0a09b3e5ab323cbbb5b4bd9/simple_axis_pad.py b/_downloads/72fdb015d0a09b3e5ab323cbbb5b4bd9/simple_axis_pad.py deleted file mode 100644 index cac9d84915b..00000000000 --- a/_downloads/72fdb015d0a09b3e5ab323cbbb5b4bd9/simple_axis_pad.py +++ /dev/null @@ -1,109 +0,0 @@ -""" -=============== -Simple Axis Pad -=============== - -""" - -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.angle_helper as angle_helper -import mpl_toolkits.axisartist.grid_finder as grid_finder -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D - -import mpl_toolkits.axisartist as axisartist - -from mpl_toolkits.axisartist.grid_helper_curvelinear import \ - GridHelperCurveLinear - - -def setup_axes(fig, rect): - """ - polar projection, but in a rectangular box. - """ - - # see demo_curvelinear_grid.py for details - tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform() - - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle=360, - lat_cycle=None, - lon_minmax=None, - lat_minmax=(0, np.inf), - ) - - grid_locator1 = angle_helper.LocatorDMS(12) - grid_locator2 = grid_finder.MaxNLocator(5) - - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1 - ) - - ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper) - ax1.axis[:].set_visible(False) - - fig.add_subplot(ax1) - - ax1.set_aspect(1.) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - return ax1 - - -def add_floating_axis1(ax1): - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 30) - axis.label.set_text(r"$\theta = 30^{\circ}$") - axis.label.set_visible(True) - - return axis - - -def add_floating_axis2(ax1): - ax1.axis["lon"] = axis = ax1.new_floating_axis(1, 6) - axis.label.set_text(r"$r = 6$") - axis.label.set_visible(True) - - return axis - - -fig = plt.figure(figsize=(9, 3.)) -fig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99, - wspace=0.01, hspace=0.01) - - -def ann(ax1, d): - if plt.rcParams["text.usetex"]: - d = d.replace("_", r"\_") - - ax1.annotate(d, (0.5, 1), (5, -5), - xycoords="axes fraction", textcoords="offset points", - va="top", ha="center") - - -ax1 = setup_axes(fig, rect=141) -axis = add_floating_axis1(ax1) -ann(ax1, r"default") - -ax1 = setup_axes(fig, rect=142) -axis = add_floating_axis1(ax1) -axis.major_ticklabels.set_pad(10) -ann(ax1, r"ticklabels.set_pad(10)") - -ax1 = setup_axes(fig, rect=143) -axis = add_floating_axis1(ax1) -axis.label.set_pad(20) -ann(ax1, r"label.set_pad(20)") - -ax1 = setup_axes(fig, rect=144) -axis = add_floating_axis1(ax1) -axis.major_ticks.set_tick_out(True) -ann(ax1, "ticks.set_tick_out(True)") - -plt.show() diff --git a/_downloads/73107b3cfdfb1468fa9496430f6eb82c/annotate_transform.py b/_downloads/73107b3cfdfb1468fa9496430f6eb82c/annotate_transform.py deleted file mode 120000 index 7e60b005638..00000000000 --- a/_downloads/73107b3cfdfb1468fa9496430f6eb82c/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/73107b3cfdfb1468fa9496430f6eb82c/annotate_transform.py \ No newline at end of file diff --git a/_downloads/7321cb371ae64e1e297722fd92d4feb4/contourf3d.ipynb b/_downloads/7321cb371ae64e1e297722fd92d4feb4/contourf3d.ipynb deleted file mode 120000 index dc1f28ef2f9..00000000000 --- a/_downloads/7321cb371ae64e1e297722fd92d4feb4/contourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7321cb371ae64e1e297722fd92d4feb4/contourf3d.ipynb \ No newline at end of file diff --git a/_downloads/73227239dd245dfba28753c7df812b91/gridspec_nested.py b/_downloads/73227239dd245dfba28753c7df812b91/gridspec_nested.py deleted file mode 120000 index 1a98d781aa0..00000000000 --- a/_downloads/73227239dd245dfba28753c7df812b91/gridspec_nested.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/73227239dd245dfba28753c7df812b91/gridspec_nested.py \ No newline at end of file diff --git a/_downloads/7326477e8664d4dbb25ac637a7d440b5/contourf_log.ipynb b/_downloads/7326477e8664d4dbb25ac637a7d440b5/contourf_log.ipynb deleted file mode 120000 index 0511b555bce..00000000000 --- a/_downloads/7326477e8664d4dbb25ac637a7d440b5/contourf_log.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7326477e8664d4dbb25ac637a7d440b5/contourf_log.ipynb \ No newline at end of file diff --git a/_downloads/735997f41f2c0e3081dd11e18cf2f195/annotation_demo.py b/_downloads/735997f41f2c0e3081dd11e18cf2f195/annotation_demo.py deleted file mode 120000 index b1e0d59b240..00000000000 --- a/_downloads/735997f41f2c0e3081dd11e18cf2f195/annotation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/735997f41f2c0e3081dd11e18cf2f195/annotation_demo.py \ No newline at end of file diff --git a/_downloads/7378f35de8e309aa014f116c7c9cec3a/units_scatter.ipynb b/_downloads/7378f35de8e309aa014f116c7c9cec3a/units_scatter.ipynb deleted file mode 100644 index 9e20ab8806a..00000000000 --- a/_downloads/7378f35de8e309aa014f116c7c9cec3a/units_scatter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Unit handling\n\n\nThe example below shows support for unit conversions over masked\narrays.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom basic_units import secs, hertz, minutes\n\n# create masked array\ndata = (1, 2, 3, 4, 5, 6, 7, 8)\nmask = (1, 0, 1, 0, 0, 0, 1, 0)\nxsecs = secs * np.ma.MaskedArray(data, mask, float)\n\nfig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True)\n\nax1.scatter(xsecs, xsecs)\nax1.yaxis.set_units(secs)\nax2.scatter(xsecs, xsecs, yunits=hertz)\nax3.scatter(xsecs, xsecs, yunits=minutes)\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/737c3d3cc804e02ffc14513e9e4b1194/radar_chart.ipynb b/_downloads/737c3d3cc804e02ffc14513e9e4b1194/radar_chart.ipynb deleted file mode 120000 index 893edb1c42d..00000000000 --- a/_downloads/737c3d3cc804e02ffc14513e9e4b1194/radar_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/737c3d3cc804e02ffc14513e9e4b1194/radar_chart.ipynb \ No newline at end of file diff --git a/_downloads/737fea2556fe46539b3719b32f27bc13/table_demo.py b/_downloads/737fea2556fe46539b3719b32f27bc13/table_demo.py deleted file mode 120000 index 04ed0268cce..00000000000 --- a/_downloads/737fea2556fe46539b3719b32f27bc13/table_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/737fea2556fe46539b3719b32f27bc13/table_demo.py \ No newline at end of file diff --git a/_downloads/73811fb4ecc13372a474da8d7f6e8386/markevery_demo.py b/_downloads/73811fb4ecc13372a474da8d7f6e8386/markevery_demo.py deleted file mode 120000 index 7d00b482662..00000000000 --- a/_downloads/73811fb4ecc13372a474da8d7f6e8386/markevery_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/73811fb4ecc13372a474da8d7f6e8386/markevery_demo.py \ No newline at end of file diff --git a/_downloads/7393bf5548239a03c1f437616d7da22e/errorbar3d.py b/_downloads/7393bf5548239a03c1f437616d7da22e/errorbar3d.py deleted file mode 120000 index ef36fd5671e..00000000000 --- a/_downloads/7393bf5548239a03c1f437616d7da22e/errorbar3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7393bf5548239a03c1f437616d7da22e/errorbar3d.py \ No newline at end of file diff --git a/_downloads/73987d2fdbe049d057c8af47250cd4a0/custom_legends.ipynb b/_downloads/73987d2fdbe049d057c8af47250cd4a0/custom_legends.ipynb deleted file mode 100644 index c372c3eb6c4..00000000000 --- a/_downloads/73987d2fdbe049d057c8af47250cd4a0/custom_legends.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Composing Custom Legends\n\n\nComposing custom legends piece-by-piece.\n\n

Note

For more information on creating and customizing legends, see the following\n pages:\n\n * :doc:`/tutorials/intermediate/legend_guide`\n * :doc:`/gallery/text_labels_and_annotations/legend_demo`

\n\nSometimes you don't want a legend that is explicitly tied to data that\nyou have plotted. For example, say you have plotted 10 lines, but don't\nwant a legend item to show up for each one. If you simply plot the lines\nand call ``ax.legend()``, you will get the following:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 2\nfrom matplotlib import rcParams, cycler\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nN = 10\ndata = [np.logspace(0, 1, 100) + np.random.randn(100) + ii for ii in range(N)]\ndata = np.array(data).T\ncmap = plt.cm.coolwarm\nrcParams['axes.prop_cycle'] = cycler(color=cmap(np.linspace(0, 1, N)))\n\nfig, ax = plt.subplots()\nlines = ax.plot(data)\nax.legend(lines)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that one legend item per line was created.\nIn this case, we can compose a legend using Matplotlib objects that aren't\nexplicitly tied to the data that was plotted. For example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.lines import Line2D\ncustom_lines = [Line2D([0], [0], color=cmap(0.), lw=4),\n Line2D([0], [0], color=cmap(.5), lw=4),\n Line2D([0], [0], color=cmap(1.), lw=4)]\n\nfig, ax = plt.subplots()\nlines = ax.plot(data)\nax.legend(custom_lines, ['Cold', 'Medium', 'Hot'])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are many other Matplotlib objects that can be used in this way. In the\ncode below we've listed a few common ones.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Patch\nfrom matplotlib.lines import Line2D\n\nlegend_elements = [Line2D([0], [0], color='b', lw=4, label='Line'),\n Line2D([0], [0], marker='o', color='w', label='Scatter',\n markerfacecolor='g', markersize=15),\n Patch(facecolor='orange', edgecolor='r',\n label='Color Patch')]\n\n# Create the figure\nfig, ax = plt.subplots()\nax.legend(handles=legend_elements, loc='center')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/73a14f242ea2d43e60e85e826cda136d/text_alignment.py b/_downloads/73a14f242ea2d43e60e85e826cda136d/text_alignment.py deleted file mode 100644 index e92984098c9..00000000000 --- a/_downloads/73a14f242ea2d43e60e85e826cda136d/text_alignment.py +++ /dev/null @@ -1,81 +0,0 @@ -""" -=================== -Precise text layout -=================== - -You can precisely layout text in data or axes (0,1) coordinates. This -example shows you some of the alignment and rotation specifications for text -layout. -""" - -import matplotlib.pyplot as plt - -# Build a rectangle in axes coords -left, width = .25, .5 -bottom, height = .25, .5 -right = left + width -top = bottom + height -ax = plt.gca() -p = plt.Rectangle((left, bottom), width, height, fill=False) -p.set_transform(ax.transAxes) -p.set_clip_on(False) -ax.add_patch(p) - - -ax.text(left, bottom, 'left top', - horizontalalignment='left', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, bottom, 'left bottom', - horizontalalignment='left', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right bottom', - horizontalalignment='right', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right top', - horizontalalignment='right', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(right, bottom, 'center top', - horizontalalignment='center', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, 0.5 * (bottom + top), 'right center', - horizontalalignment='right', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, 0.5 * (bottom + top), 'left center', - horizontalalignment='left', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(0.5 * (left + right), 0.5 * (bottom + top), 'middle', - horizontalalignment='center', - verticalalignment='center', - transform=ax.transAxes) - -ax.text(right, 0.5 * (bottom + top), 'centered', - horizontalalignment='center', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, top, 'rotated\nwith newlines', - horizontalalignment='center', - verticalalignment='center', - rotation=45, - transform=ax.transAxes) - -plt.axis('off') - -plt.show() diff --git a/_downloads/73a60ebdc8c6b15650865a49a3bb7d44/pie_features.ipynb b/_downloads/73a60ebdc8c6b15650865a49a3bb7d44/pie_features.ipynb deleted file mode 120000 index a69850df03e..00000000000 --- a/_downloads/73a60ebdc8c6b15650865a49a3bb7d44/pie_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/73a60ebdc8c6b15650865a49a3bb7d44/pie_features.ipynb \ No newline at end of file diff --git a/_downloads/73adfb79d10b67181bbcf8733bc11d13/text_layout.py b/_downloads/73adfb79d10b67181bbcf8733bc11d13/text_layout.py deleted file mode 120000 index f51a9910e3a..00000000000 --- a/_downloads/73adfb79d10b67181bbcf8733bc11d13/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/73adfb79d10b67181bbcf8733bc11d13/text_layout.py \ No newline at end of file diff --git a/_downloads/73c8b66e9f95fc729f2c19d6bea19c82/broken_axis.ipynb b/_downloads/73c8b66e9f95fc729f2c19d6bea19c82/broken_axis.ipynb deleted file mode 120000 index cf29ec87f6f..00000000000 --- a/_downloads/73c8b66e9f95fc729f2c19d6bea19c82/broken_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/73c8b66e9f95fc729f2c19d6bea19c82/broken_axis.ipynb \ No newline at end of file diff --git a/_downloads/73db7c6ffdaff7aad8986959857ad85b/collections.py b/_downloads/73db7c6ffdaff7aad8986959857ad85b/collections.py deleted file mode 120000 index f5f8d0c7c48..00000000000 --- a/_downloads/73db7c6ffdaff7aad8986959857ad85b/collections.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/73db7c6ffdaff7aad8986959857ad85b/collections.py \ No newline at end of file diff --git a/_downloads/73df2366bcc753b6427d05e83225f0e6/nan_test.ipynb b/_downloads/73df2366bcc753b6427d05e83225f0e6/nan_test.ipynb deleted file mode 100644 index 1878f50d5c6..00000000000 --- a/_downloads/73df2366bcc753b6427d05e83225f0e6/nan_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nan Test\n\n\nExample: simple line plots with NaNs inserted.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0.0, 1.0 + 0.01, 0.01)\ns = np.cos(2 * 2*np.pi * t)\nt[41:60] = np.nan\n\nplt.subplot(2, 1, 1)\nplt.plot(t, s, '-', lw=2)\n\nplt.xlabel('time (s)')\nplt.ylabel('voltage (mV)')\nplt.title('A sine wave with a gap of NaNs between 0.4 and 0.6')\nplt.grid(True)\n\nplt.subplot(2, 1, 2)\nt[0] = np.nan\nt[-1] = np.nan\nplt.plot(t, s, '-', lw=2)\nplt.title('Also with NaN in first and last point')\n\nplt.xlabel('time (s)')\nplt.ylabel('more nans')\nplt.grid(True)\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/73ec908b4d2482583542b038d22aa61d/aspect_loglog.ipynb b/_downloads/73ec908b4d2482583542b038d22aa61d/aspect_loglog.ipynb deleted file mode 100644 index febd8de2794..00000000000 --- a/_downloads/73ec908b4d2482583542b038d22aa61d/aspect_loglog.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Loglog Aspect\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, (ax1, ax2) = plt.subplots(1, 2)\nax1.set_xscale(\"log\")\nax1.set_yscale(\"log\")\nax1.set_xlim(1e1, 1e3)\nax1.set_ylim(1e2, 1e3)\nax1.set_aspect(1)\nax1.set_title(\"adjustable = box\")\n\nax2.set_xscale(\"log\")\nax2.set_yscale(\"log\")\nax2.set_adjustable(\"datalim\")\nax2.plot([1, 3, 10], [1, 9, 100], \"o-\")\nax2.set_xlim(1e-1, 1e2)\nax2.set_ylim(1e-1, 1e3)\nax2.set_aspect(1)\nax2.set_title(\"adjustable = datalim\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7414efa8616c80b0c130dca67ff9c510/arrow_simple_demo.py b/_downloads/7414efa8616c80b0c130dca67ff9c510/arrow_simple_demo.py deleted file mode 120000 index 3c1fdbbf2ed..00000000000 --- a/_downloads/7414efa8616c80b0c130dca67ff9c510/arrow_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/7414efa8616c80b0c130dca67ff9c510/arrow_simple_demo.py \ No newline at end of file diff --git a/_downloads/74188f9e294950a96992d9f2b3847fb4/gridspec_nested.ipynb b/_downloads/74188f9e294950a96992d9f2b3847fb4/gridspec_nested.ipynb deleted file mode 120000 index 737de47aa81..00000000000 --- a/_downloads/74188f9e294950a96992d9f2b3847fb4/gridspec_nested.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/74188f9e294950a96992d9f2b3847fb4/gridspec_nested.ipynb \ No newline at end of file diff --git a/_downloads/7420da1f9b95bf1ef5b42c7e5b924437/surface3d_3.ipynb b/_downloads/7420da1f9b95bf1ef5b42c7e5b924437/surface3d_3.ipynb deleted file mode 120000 index 124154fb322..00000000000 --- a/_downloads/7420da1f9b95bf1ef5b42c7e5b924437/surface3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7420da1f9b95bf1ef5b42c7e5b924437/surface3d_3.ipynb \ No newline at end of file diff --git a/_downloads/74217f0eadb569d4fd19c6dfc8eaa6fb/axis_direction_demo_step04.ipynb b/_downloads/74217f0eadb569d4fd19c6dfc8eaa6fb/axis_direction_demo_step04.ipynb deleted file mode 120000 index 4fca8e18aa5..00000000000 --- a/_downloads/74217f0eadb569d4fd19c6dfc8eaa6fb/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/74217f0eadb569d4fd19c6dfc8eaa6fb/axis_direction_demo_step04.ipynb \ No newline at end of file diff --git a/_downloads/7432dfb322cf17e226c9ac9d3b4c6ba2/axes_demo.ipynb b/_downloads/7432dfb322cf17e226c9ac9d3b4c6ba2/axes_demo.ipynb deleted file mode 120000 index 13d3de7902c..00000000000 --- a/_downloads/7432dfb322cf17e226c9ac9d3b4c6ba2/axes_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7432dfb322cf17e226c9ac9d3b4c6ba2/axes_demo.ipynb \ No newline at end of file diff --git a/_downloads/7436044c6999d5c95a4a545288ab0611/contourf_log.ipynb b/_downloads/7436044c6999d5c95a4a545288ab0611/contourf_log.ipynb deleted file mode 120000 index 2797f3f852c..00000000000 --- a/_downloads/7436044c6999d5c95a4a545288ab0611/contourf_log.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7436044c6999d5c95a4a545288ab0611/contourf_log.ipynb \ No newline at end of file diff --git a/_downloads/743ad63e9e395c77c01d02248326773a/ftface_props.py b/_downloads/743ad63e9e395c77c01d02248326773a/ftface_props.py deleted file mode 120000 index 03729f4fdbc..00000000000 --- a/_downloads/743ad63e9e395c77c01d02248326773a/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/743ad63e9e395c77c01d02248326773a/ftface_props.py \ No newline at end of file diff --git a/_downloads/743b931d46e52edb4a37c2975dcbf2ce/marker_path.py b/_downloads/743b931d46e52edb4a37c2975dcbf2ce/marker_path.py deleted file mode 120000 index 27dc0541bd5..00000000000 --- a/_downloads/743b931d46e52edb4a37c2975dcbf2ce/marker_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/743b931d46e52edb4a37c2975dcbf2ce/marker_path.py \ No newline at end of file diff --git a/_downloads/7440d4c3fb9751f7a7fdf332c6fb47f2/font_file.ipynb b/_downloads/7440d4c3fb9751f7a7fdf332c6fb47f2/font_file.ipynb deleted file mode 100644 index 5cb93a44c91..00000000000 --- a/_downloads/7440d4c3fb9751f7a7fdf332c6fb47f2/font_file.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using a ttf font file in Matplotlib\n\n\nAlthough it is usually not a good idea to explicitly point to a single ttf file\nfor a font instance, you can do so using the `font_manager.FontProperties`\n*fname* argument.\n\nHere, we use the Computer Modern roman font (``cmr10``) shipped with\nMatplotlib.\n\nFor a more flexible solution, see\n:doc:`/gallery/text_labels_and_annotations/font_family_rc_sgskip` and\n:doc:`/gallery/text_labels_and_annotations/fonts_demo`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\nfrom matplotlib import font_manager as fm, rcParams\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nfpath = os.path.join(rcParams[\"datapath\"], \"fonts/ttf/cmr10.ttf\")\nprop = fm.FontProperties(fname=fpath)\nfname = os.path.split(fpath)[1]\nax.set_title('This is a special font: {}'.format(fname), fontproperties=prop)\nax.set_xlabel('This is the default font')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.font_manager.FontProperties\nmatplotlib.axes.Axes.set_title" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7441cf11fb0df652fa0841e96290631c/shading_example.ipynb b/_downloads/7441cf11fb0df652fa0841e96290631c/shading_example.ipynb deleted file mode 120000 index 3fa125d01ee..00000000000 --- a/_downloads/7441cf11fb0df652fa0841e96290631c/shading_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7441cf11fb0df652fa0841e96290631c/shading_example.ipynb \ No newline at end of file diff --git a/_downloads/744eac48b91f6868eb85c98abe8540b8/annotate_transform.ipynb b/_downloads/744eac48b91f6868eb85c98abe8540b8/annotate_transform.ipynb deleted file mode 120000 index 2464a73dbb1..00000000000 --- a/_downloads/744eac48b91f6868eb85c98abe8540b8/annotate_transform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/744eac48b91f6868eb85c98abe8540b8/annotate_transform.ipynb \ No newline at end of file diff --git a/_downloads/744f91617e9c682806aa1a4f232da51e/customizing.py b/_downloads/744f91617e9c682806aa1a4f232da51e/customizing.py deleted file mode 120000 index db29343235a..00000000000 --- a/_downloads/744f91617e9c682806aa1a4f232da51e/customizing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/744f91617e9c682806aa1a4f232da51e/customizing.py \ No newline at end of file diff --git a/_downloads/7464e0a1a609d4e691735c3b7605e941/color_cycler.py b/_downloads/7464e0a1a609d4e691735c3b7605e941/color_cycler.py deleted file mode 120000 index 920fadcb668..00000000000 --- a/_downloads/7464e0a1a609d4e691735c3b7605e941/color_cycler.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7464e0a1a609d4e691735c3b7605e941/color_cycler.py \ No newline at end of file diff --git a/_downloads/74669a07dcd8106b95c699839193f6ce/tutorials_jupyter.zip b/_downloads/74669a07dcd8106b95c699839193f6ce/tutorials_jupyter.zip deleted file mode 120000 index b9c1b00cd44..00000000000 --- a/_downloads/74669a07dcd8106b95c699839193f6ce/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/74669a07dcd8106b95c699839193f6ce/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/746abe9934440d3856e615b0ea3e4a98/histogram_path.py b/_downloads/746abe9934440d3856e615b0ea3e4a98/histogram_path.py deleted file mode 120000 index 8de935e6ff4..00000000000 --- a/_downloads/746abe9934440d3856e615b0ea3e4a98/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/746abe9934440d3856e615b0ea3e4a98/histogram_path.py \ No newline at end of file diff --git a/_downloads/746ef877c0a044ba49b905a27ab6c30c/simple_axes_divider1.py b/_downloads/746ef877c0a044ba49b905a27ab6c30c/simple_axes_divider1.py deleted file mode 120000 index f3635b9e5af..00000000000 --- a/_downloads/746ef877c0a044ba49b905a27ab6c30c/simple_axes_divider1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/746ef877c0a044ba49b905a27ab6c30c/simple_axes_divider1.py \ No newline at end of file diff --git a/_downloads/747e0ecce4bd8d5bfe821b359e14e72f/sankey_links.py b/_downloads/747e0ecce4bd8d5bfe821b359e14e72f/sankey_links.py deleted file mode 120000 index 5e88862c0b4..00000000000 --- a/_downloads/747e0ecce4bd8d5bfe821b359e14e72f/sankey_links.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/747e0ecce4bd8d5bfe821b359e14e72f/sankey_links.py \ No newline at end of file diff --git a/_downloads/74845c781af31f20a3f00f8468535e6a/simple_axes_divider2.py b/_downloads/74845c781af31f20a3f00f8468535e6a/simple_axes_divider2.py deleted file mode 120000 index fca4c874c11..00000000000 --- a/_downloads/74845c781af31f20a3f00f8468535e6a/simple_axes_divider2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/74845c781af31f20a3f00f8468535e6a/simple_axes_divider2.py \ No newline at end of file diff --git a/_downloads/7491fe51c95ec7020a5739a394c0f5a8/tricontourf3d.ipynb b/_downloads/7491fe51c95ec7020a5739a394c0f5a8/tricontourf3d.ipynb deleted file mode 120000 index fb826791537..00000000000 --- a/_downloads/7491fe51c95ec7020a5739a394c0f5a8/tricontourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7491fe51c95ec7020a5739a394c0f5a8/tricontourf3d.ipynb \ No newline at end of file diff --git a/_downloads/749f62f8c73dbbf0d0835f1a8410a38a/demo_agg_filter.ipynb b/_downloads/749f62f8c73dbbf0d0835f1a8410a38a/demo_agg_filter.ipynb deleted file mode 120000 index 212c4eaa5c5..00000000000 --- a/_downloads/749f62f8c73dbbf0d0835f1a8410a38a/demo_agg_filter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/749f62f8c73dbbf0d0835f1a8410a38a/demo_agg_filter.ipynb \ No newline at end of file diff --git a/_downloads/74ab8be29fec183cd891d964c820185f/demo_floating_axis.ipynb b/_downloads/74ab8be29fec183cd891d964c820185f/demo_floating_axis.ipynb deleted file mode 120000 index 1b45284bc2d..00000000000 --- a/_downloads/74ab8be29fec183cd891d964c820185f/demo_floating_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/74ab8be29fec183cd891d964c820185f/demo_floating_axis.ipynb \ No newline at end of file diff --git a/_downloads/74b73a796f758a9993020ff21f52ec57/stackplot_demo.ipynb b/_downloads/74b73a796f758a9993020ff21f52ec57/stackplot_demo.ipynb deleted file mode 120000 index af7066ad9f9..00000000000 --- a/_downloads/74b73a796f758a9993020ff21f52ec57/stackplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/74b73a796f758a9993020ff21f52ec57/stackplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/74b8e9939f8fdfdc669a575164c1b30e/anchored_box03.py b/_downloads/74b8e9939f8fdfdc669a575164c1b30e/anchored_box03.py deleted file mode 100644 index ba673d8471a..00000000000 --- a/_downloads/74b8e9939f8fdfdc669a575164c1b30e/anchored_box03.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -============== -Anchored Box03 -============== - -""" -from matplotlib.patches import Ellipse -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox - - -fig, ax = plt.subplots(figsize=(3, 3)) - -box = AnchoredAuxTransformBox(ax.transData, loc='upper left') -el = Ellipse((0, 0), width=0.1, height=0.4, angle=30) # in data coordinates! -box.drawing_area.add_artist(el) - -ax.add_artist(box) - -plt.show() diff --git a/_downloads/74bdc2fc04a6328e8034f38c45cb6655/tight_layout_guide.ipynb b/_downloads/74bdc2fc04a6328e8034f38c45cb6655/tight_layout_guide.ipynb deleted file mode 100644 index e7a455b73bc..00000000000 --- a/_downloads/74bdc2fc04a6328e8034f38c45cb6655/tight_layout_guide.ipynb +++ /dev/null @@ -1,342 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tight Layout guide\n\n\nHow to use tight-layout to fit plots within your figure cleanly.\n\n*tight_layout* automatically adjusts subplot params so that the\nsubplot(s) fits in to the figure area. This is an experimental\nfeature and may not work for some cases. It only checks the extents\nof ticklabels, axis labels, and titles.\n\nAn alternative to *tight_layout* is :doc:`constrained_layout\n`.\n\n\nSimple Example\n==============\n\nIn matplotlib, the location of axes (including subplots) are specified in\nnormalized figure coordinates. It can happen that your axis labels or\ntitles (or sometimes even ticklabels) go outside the figure area, and are thus\nclipped.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 7\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nplt.rcParams['savefig.facecolor'] = \"0.8\"\n\n\ndef example_plot(ax, fontsize=12):\n ax.plot([1, 2])\n\n ax.locator_params(nbins=3)\n ax.set_xlabel('x-label', fontsize=fontsize)\n ax.set_ylabel('y-label', fontsize=fontsize)\n ax.set_title('Title', fontsize=fontsize)\n\nplt.close('all')\nfig, ax = plt.subplots()\nexample_plot(ax, fontsize=24)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To prevent this, the location of axes needs to be adjusted. For\nsubplots, this can be done by adjusting the subplot params\n(`howto-subplots-adjust`). Matplotlib v1.1 introduces a new\ncommand :func:`~matplotlib.pyplot.tight_layout` that does this\nautomatically for you.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nexample_plot(ax, fontsize=24)\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that :func:`matplotlib.pyplot.tight_layout` will only adjust the\nsubplot params when it is called. In order to perform this adjustment each\ntime the figure is redrawn, you can call ``fig.set_tight_layout(True)``, or,\nequivalently, set the ``figure.autolayout`` rcParam to ``True``.\n\nWhen you have multiple subplots, often you see labels of different\naxes overlapping each other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\n\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":func:`~matplotlib.pyplot.tight_layout` will also adjust spacing between\nsubplots to minimize the overlaps.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":func:`~matplotlib.pyplot.tight_layout` can take keyword arguments of\n*pad*, *w_pad* and *h_pad*. These control the extra padding around the\nfigure border and between subplots. The pads are specified in fraction\nof fontsize.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\nplt.tight_layout(pad=0.4, w_pad=0.5, h_pad=1.0)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":func:`~matplotlib.pyplot.tight_layout` will work even if the sizes of\nsubplots are different as far as their grid specification is\ncompatible. In the example below, *ax1* and *ax2* are subplots of a 2x2\ngrid, while *ax3* is of a 1x2 grid.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\nfig = plt.figure()\n\nax1 = plt.subplot(221)\nax2 = plt.subplot(223)\nax3 = plt.subplot(122)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It works with subplots created with\n:func:`~matplotlib.pyplot.subplot2grid`. In general, subplots created\nfrom the gridspec (:doc:`/tutorials/intermediate/gridspec`) will work.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\nfig = plt.figure()\n\nax1 = plt.subplot2grid((3, 3), (0, 0))\nax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2)\nax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Although not thoroughly tested, it seems to work for subplots with\naspect != \"auto\" (e.g., axes with images).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "arr = np.arange(100).reshape((10, 10))\n\nplt.close('all')\nfig = plt.figure(figsize=(5, 4))\n\nax = plt.subplot(111)\nim = ax.imshow(arr, interpolation=\"none\")\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Caveats\n=======\n\n * :func:`~matplotlib.pyplot.tight_layout` only considers ticklabels, axis\n labels, and titles. Thus, other artists may be clipped and also may\n overlap.\n\n * It assumes that the extra space needed for ticklabels, axis labels,\n and titles is independent of original location of axes. This is\n often true, but there are rare cases where it is not.\n\n * pad=0 clips some of the texts by a few pixels. This may be a bug or\n a limitation of the current algorithm and it is not clear why it\n happens. Meanwhile, use of pad at least larger than 0.3 is\n recommended.\n\nUse with GridSpec\n=================\n\nGridSpec has its own :func:`~matplotlib.gridspec.GridSpec.tight_layout` method\n(the pyplot api :func:`~matplotlib.pyplot.tight_layout` also works).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.gridspec as gridspec\n\nplt.close('all')\nfig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You may provide an optional *rect* parameter, which specifies the bounding box\nthat the subplots will be fit inside. The coordinates must be in normalized\nfigure coordinates and the default is (0, 0, 1, 1).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig, rect=[0, 0, 0.5, 1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For example, this can be used for a figure with multiple gridspecs.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig, rect=[0, 0, 0.5, 1])\n\ngs2 = gridspec.GridSpec(3, 1)\n\nfor ss in gs2:\n ax = fig.add_subplot(ss)\n example_plot(ax)\n ax.set_title(\"\")\n ax.set_xlabel(\"\")\n\nax.set_xlabel(\"x-label\", fontsize=12)\n\ngs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5)\n\n# We may try to match the top and bottom of two grids ::\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.update(top=top, bottom=bottom)\ngs2.update(top=top, bottom=bottom)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "While this should be mostly good enough, adjusting top and bottom\nmay require adjustment of hspace also. To update hspace & vspace, we\ncall :func:`~matplotlib.gridspec.GridSpec.tight_layout` again with updated\nrect argument. Note that the rect argument specifies the area including the\nticklabels, etc. Thus, we will increase the bottom (which is 0 for the normal\ncase) by the difference between the *bottom* from above and the bottom of each\ngridspec. Same thing for the top.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.gcf()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig, rect=[0, 0, 0.5, 1])\n\ngs2 = gridspec.GridSpec(3, 1)\n\nfor ss in gs2:\n ax = fig.add_subplot(ss)\n example_plot(ax)\n ax.set_title(\"\")\n ax.set_xlabel(\"\")\n\nax.set_xlabel(\"x-label\", fontsize=12)\n\ngs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5)\n\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.update(top=top, bottom=bottom)\ngs2.update(top=top, bottom=bottom)\n\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.tight_layout(fig, rect=[None, 0 + (bottom-gs1.bottom),\n 0.5, 1 - (gs1.top-top)])\ngs2.tight_layout(fig, rect=[0.5, 0 + (bottom-gs2.bottom),\n None, 1 - (gs2.top-top)],\n h_pad=0.5)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legends and Annotations\n=======================\n\nPre Matplotlib 2.2, legends and annotations were excluded from the bounding\nbox calculations that decide the layout. Subsequently these artists were\nadded to the calculation, but sometimes it is undesirable to include them.\nFor instance in this case it might be good to have the axes shring a bit\nto make room for the legend:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(4, 3))\nlines = ax.plot(range(10), label='A simple plot')\nax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',)\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "However, sometimes this is not desired (quite often when using\n``fig.savefig('outname.png', bbox_inches='tight')``). In order to\nremove the legend from the bounding box calculation, we simply set its\nbounding ``leg.set_in_layout(False)`` and the legend will be ignored.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(4, 3))\nlines = ax.plot(range(10), label='B simple plot')\nleg = ax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',)\nleg.set_in_layout(False)\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use with AxesGrid1\n==================\n\nWhile limited, the axes_grid1 toolkit is also supported.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import Grid\n\nplt.close('all')\nfig = plt.figure()\ngrid = Grid(fig, rect=111, nrows_ncols=(2, 2),\n axes_pad=0.25, label_mode='L',\n )\n\nfor ax in grid:\n example_plot(ax)\nax.title.set_visible(False)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbar\n========\n\nIf you create a colorbar with the :func:`~matplotlib.pyplot.colorbar`\ncommand, the created colorbar is an instance of Axes, *not* Subplot, so\ntight_layout does not work. With Matplotlib v1.1, you may create a\ncolorbar as a subplot using the gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\narr = np.arange(100).reshape((10, 10))\nfig = plt.figure(figsize=(4, 4))\nim = plt.imshow(arr, interpolation=\"none\")\n\nplt.colorbar(im, use_gridspec=True)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another option is to use AxesGrid1 toolkit to\nexplicitly create an axes for colorbar.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import make_axes_locatable\n\nplt.close('all')\narr = np.arange(100).reshape((10, 10))\nfig = plt.figure(figsize=(4, 4))\nim = plt.imshow(arr, interpolation=\"none\")\n\ndivider = make_axes_locatable(plt.gca())\ncax = divider.append_axes(\"right\", \"5%\", pad=\"3%\")\nplt.colorbar(im, cax=cax)\n\nplt.tight_layout()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/74c1a5048a48f24acdc9bbd7cb7cdcca/image_annotated_heatmap.py b/_downloads/74c1a5048a48f24acdc9bbd7cb7cdcca/image_annotated_heatmap.py deleted file mode 120000 index 33b9982f3c6..00000000000 --- a/_downloads/74c1a5048a48f24acdc9bbd7cb7cdcca/image_annotated_heatmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/74c1a5048a48f24acdc9bbd7cb7cdcca/image_annotated_heatmap.py \ No newline at end of file diff --git a/_downloads/74c7124c5cc49020dd9d290121febc4f/demo_edge_colorbar.ipynb b/_downloads/74c7124c5cc49020dd9d290121febc4f/demo_edge_colorbar.ipynb deleted file mode 120000 index 5bd97264345..00000000000 --- a/_downloads/74c7124c5cc49020dd9d290121febc4f/demo_edge_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/74c7124c5cc49020dd9d290121febc4f/demo_edge_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/74cb84ede00626044484decbbb263e07/interp_demo.py b/_downloads/74cb84ede00626044484decbbb263e07/interp_demo.py deleted file mode 120000 index f19fa58990b..00000000000 --- a/_downloads/74cb84ede00626044484decbbb263e07/interp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/74cb84ede00626044484decbbb263e07/interp_demo.py \ No newline at end of file diff --git a/_downloads/74cdbc4ef28b5be9d079c98e7d25cfab/demo_gridspec01.ipynb b/_downloads/74cdbc4ef28b5be9d079c98e7d25cfab/demo_gridspec01.ipynb deleted file mode 120000 index 6e9feec5ac6..00000000000 --- a/_downloads/74cdbc4ef28b5be9d079c98e7d25cfab/demo_gridspec01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/74cdbc4ef28b5be9d079c98e7d25cfab/demo_gridspec01.ipynb \ No newline at end of file diff --git a/_downloads/74d781b1d078bd15af36021a33cb34f1/layer_images.ipynb b/_downloads/74d781b1d078bd15af36021a33cb34f1/layer_images.ipynb deleted file mode 120000 index 865ddac0645..00000000000 --- a/_downloads/74d781b1d078bd15af36021a33cb34f1/layer_images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/74d781b1d078bd15af36021a33cb34f1/layer_images.ipynb \ No newline at end of file diff --git a/_downloads/74d79b4ec7e16223a56b2cb82e6b5bef/advanced_hillshading.py b/_downloads/74d79b4ec7e16223a56b2cb82e6b5bef/advanced_hillshading.py deleted file mode 120000 index 315d40d3077..00000000000 --- a/_downloads/74d79b4ec7e16223a56b2cb82e6b5bef/advanced_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/74d79b4ec7e16223a56b2cb82e6b5bef/advanced_hillshading.py \ No newline at end of file diff --git a/_downloads/74ea73ed01561b20ca6af5ce2a78f79e/cohere.ipynb b/_downloads/74ea73ed01561b20ca6af5ce2a78f79e/cohere.ipynb deleted file mode 100644 index 3f320257821..00000000000 --- a/_downloads/74ea73ed01561b20ca6af5ce2a78f79e/cohere.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotting the coherence of two signals\n\n\nAn example showing how to plot the coherence of two signals.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ndt = 0.01\nt = np.arange(0, 30, dt)\nnse1 = np.random.randn(len(t)) # white noise 1\nnse2 = np.random.randn(len(t)) # white noise 2\n\n# Two signals with a coherent part at 10Hz and a random part\ns1 = np.sin(2 * np.pi * 10 * t) + nse1\ns2 = np.sin(2 * np.pi * 10 * t) + nse2\n\nfig, axs = plt.subplots(2, 1)\naxs[0].plot(t, s1, t, s2)\naxs[0].set_xlim(0, 2)\naxs[0].set_xlabel('time')\naxs[0].set_ylabel('s1 and s2')\naxs[0].grid(True)\n\ncxy, f = axs[1].cohere(s1, s2, 256, 1. / dt)\naxs[1].set_ylabel('coherence')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/74fb81586bc1fd0a20d111cd7e945c68/rainbow_text.ipynb b/_downloads/74fb81586bc1fd0a20d111cd7e945c68/rainbow_text.ipynb deleted file mode 120000 index 77b45d132ec..00000000000 --- a/_downloads/74fb81586bc1fd0a20d111cd7e945c68/rainbow_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/74fb81586bc1fd0a20d111cd7e945c68/rainbow_text.ipynb \ No newline at end of file diff --git a/_downloads/750b6c0687d25a051ab3aad31a0d8a51/dark_background.ipynb b/_downloads/750b6c0687d25a051ab3aad31a0d8a51/dark_background.ipynb deleted file mode 100644 index 4700287e395..00000000000 --- a/_downloads/750b6c0687d25a051ab3aad31a0d8a51/dark_background.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dark background style sheet\n\n\nThis example demonstrates the \"dark_background\" style, which uses white for\nelements that are typically black (text, borders, etc). Note that not all plot\nelements default to colors defined by an rc parameter.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nplt.style.use('dark_background')\n\nfig, ax = plt.subplots()\n\nL = 6\nx = np.linspace(0, L)\nncolors = len(plt.rcParams['axes.prop_cycle'])\nshift = np.linspace(0, L, ncolors, endpoint=False)\nfor s in shift:\n ax.plot(x, np.sin(x + s), 'o-')\nax.set_xlabel('x-axis')\nax.set_ylabel('y-axis')\nax.set_title(\"'dark_background' style sheet\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/750c2a75968ba0a198571cd1c5058eb9/demo_imagegrid_aspect.py b/_downloads/750c2a75968ba0a198571cd1c5058eb9/demo_imagegrid_aspect.py deleted file mode 120000 index abcd7066b08..00000000000 --- a/_downloads/750c2a75968ba0a198571cd1c5058eb9/demo_imagegrid_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/750c2a75968ba0a198571cd1c5058eb9/demo_imagegrid_aspect.py \ No newline at end of file diff --git a/_downloads/750e49b415bb813567e321e425418e63/spine_placement_demo.ipynb b/_downloads/750e49b415bb813567e321e425418e63/spine_placement_demo.ipynb deleted file mode 120000 index 40dd7df6d64..00000000000 --- a/_downloads/750e49b415bb813567e321e425418e63/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/750e49b415bb813567e321e425418e63/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/751a0fe74e346ea8cdc4131c830e041b/text_props.py b/_downloads/751a0fe74e346ea8cdc4131c830e041b/text_props.py deleted file mode 120000 index 5bb6bd0587e..00000000000 --- a/_downloads/751a0fe74e346ea8cdc4131c830e041b/text_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/751a0fe74e346ea8cdc4131c830e041b/text_props.py \ No newline at end of file diff --git a/_downloads/7524712b806feff5ad147903d9c1b1b1/log_demo.py b/_downloads/7524712b806feff5ad147903d9c1b1b1/log_demo.py deleted file mode 120000 index 39b4ab22b03..00000000000 --- a/_downloads/7524712b806feff5ad147903d9c1b1b1/log_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7524712b806feff5ad147903d9c1b1b1/log_demo.py \ No newline at end of file diff --git a/_downloads/75294d1d79656ffeedb1cc8db7c26235/scatter_hist.ipynb b/_downloads/75294d1d79656ffeedb1cc8db7c26235/scatter_hist.ipynb deleted file mode 100644 index 427ff22877e..00000000000 --- a/_downloads/75294d1d79656ffeedb1cc8db7c26235/scatter_hist.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plot with histograms\n\n\nCreate a scatter plot with histograms to its sides.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# the random data\nx = np.random.randn(1000)\ny = np.random.randn(1000)\n\n# definitions for the axes\nleft, width = 0.1, 0.65\nbottom, height = 0.1, 0.65\nspacing = 0.005\n\n\nrect_scatter = [left, bottom, width, height]\nrect_histx = [left, bottom + height + spacing, width, 0.2]\nrect_histy = [left + width + spacing, bottom, 0.2, height]\n\n# start with a rectangular Figure\nplt.figure(figsize=(8, 8))\n\nax_scatter = plt.axes(rect_scatter)\nax_scatter.tick_params(direction='in', top=True, right=True)\nax_histx = plt.axes(rect_histx)\nax_histx.tick_params(direction='in', labelbottom=False)\nax_histy = plt.axes(rect_histy)\nax_histy.tick_params(direction='in', labelleft=False)\n\n# the scatter plot:\nax_scatter.scatter(x, y)\n\n# now determine nice limits by hand:\nbinwidth = 0.25\nlim = np.ceil(np.abs([x, y]).max() / binwidth) * binwidth\nax_scatter.set_xlim((-lim, lim))\nax_scatter.set_ylim((-lim, lim))\n\nbins = np.arange(-lim, lim + binwidth, binwidth)\nax_histx.hist(x, bins=bins)\nax_histy.hist(y, bins=bins, orientation='horizontal')\n\nax_histx.set_xlim(ax_scatter.get_xlim())\nax_histy.set_ylim(ax_scatter.get_ylim())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/752f148df7fca03fe64dc7d37dbd433e/subplot.ipynb b/_downloads/752f148df7fca03fe64dc7d37dbd433e/subplot.ipynb deleted file mode 120000 index dfb8e8e7254..00000000000 --- a/_downloads/752f148df7fca03fe64dc7d37dbd433e/subplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/752f148df7fca03fe64dc7d37dbd433e/subplot.ipynb \ No newline at end of file diff --git a/_downloads/753ea89661cb7aece97e466df588f542/looking_glass.ipynb b/_downloads/753ea89661cb7aece97e466df588f542/looking_glass.ipynb deleted file mode 120000 index 2e54c286057..00000000000 --- a/_downloads/753ea89661cb7aece97e466df588f542/looking_glass.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/753ea89661cb7aece97e466df588f542/looking_glass.ipynb \ No newline at end of file diff --git a/_downloads/754378126c22c61dce6c995ba7f1ee85/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/754378126c22c61dce6c995ba7f1ee85/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 120000 index 6affbf7227d..00000000000 --- a/_downloads/754378126c22c61dce6c995ba7f1ee85/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/754378126c22c61dce6c995ba7f1ee85/embedding_in_gtk3_panzoom_sgskip.py \ No newline at end of file diff --git a/_downloads/754812cd137cf8a9418881466c9e932c/sample_plots.ipynb b/_downloads/754812cd137cf8a9418881466c9e932c/sample_plots.ipynb deleted file mode 100644 index 0a5aaaa872d..00000000000 --- a/_downloads/754812cd137cf8a9418881466c9e932c/sample_plots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Sample plots in Matplotlib\n\n\nHere you'll find a host of example plots with the code that\ngenerated them.\n\n\nLine Plot\n=========\n\nHere's how to create a line plot with text labels using\n:func:`~matplotlib.pyplot.plot`.\n\n.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_simple_plot_001.png\n :target: ../../gallery/lines_bars_and_markers/simple_plot.html\n :align: center\n :scale: 50\n\n Simple Plot\n\n\nMultiple subplots in one figure\n===============================\n\nMultiple axes (i.e. subplots) are created with the\n:func:`~matplotlib.pyplot.subplot` function:\n\n.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_subplot_001.png\n :target: ../../gallery/subplots_axes_and_figures/subplot.html\n :align: center\n :scale: 50\n\n Subplot\n\n\nImages\n======\n\nMatplotlib can display images (assuming equally spaced\nhorizontal dimensions) using the :func:`~matplotlib.pyplot.imshow` function.\n\n.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_image_demo_003.png\n :target: ../../gallery/images_contours_and_fields/image_demo.html\n :align: center\n :scale: 50\n\n Example of using :func:`~matplotlib.pyplot.imshow` to display a CT scan\n\n\n\nContouring and pseudocolor\n==========================\n\nThe :func:`~matplotlib.pyplot.pcolormesh` function can make a colored\nrepresentation of a two-dimensional array, even if the horizontal dimensions\nare unevenly spaced. The\n:func:`~matplotlib.pyplot.contour` function is another way to represent\nthe same data:\n\n.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_pcolormesh_levels_001.png\n :target: ../../gallery/images_contours_and_fields/pcolormesh_levels.html\n :align: center\n :scale: 50\n\n Example comparing :func:`~matplotlib.pyplot.pcolormesh` and :func:`~matplotlib.pyplot.contour` for plotting two-dimensional data\n\n\nHistograms\n==========\n\nThe :func:`~matplotlib.pyplot.hist` function automatically generates\nhistograms and returns the bin counts or probabilities:\n\n.. figure:: ../../gallery/statistics/images/sphx_glr_histogram_features_001.png\n :target: ../../gallery/statistics/histogram_features.html\n :align: center\n :scale: 50\n\n Histogram Features\n\n\n\nPaths\n=====\n\nYou can add arbitrary paths in Matplotlib using the\n:mod:`matplotlib.path` module:\n\n.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_path_patch_001.png\n :target: ../../gallery/shapes_and_collections/path_patch.html\n :align: center\n :scale: 50\n\n Path Patch\n\n\nThree-dimensional plotting\n==========================\n\nThe mplot3d toolkit (see `toolkit_mplot3d-tutorial` and\n`mplot3d-examples-index`) has support for simple 3d graphs\nincluding surface, wireframe, scatter, and bar charts.\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png\n :target: ../../gallery/mplot3d/surface3d.html\n :align: center\n :scale: 50\n\n Surface3d\n\nThanks to John Porter, Jonathon Taylor, Reinier Heeres, and Ben Root for\nthe `mplot3d` toolkit. This toolkit is included with all standard Matplotlib\ninstalls.\n\n\n\nStreamplot\n==========\n\nThe :meth:`~matplotlib.pyplot.streamplot` function plots the streamlines of\na vector field. In addition to simply plotting the streamlines, it allows you\nto map the colors and/or line widths of streamlines to a separate parameter,\nsuch as the speed or local intensity of the vector field.\n\n.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_plot_streamplot_001.png\n :target: ../../gallery/images_contours_and_fields/plot_streamplot.html\n :align: center\n :scale: 50\n\n Streamplot with various plotting options.\n\nThis feature complements the :meth:`~matplotlib.pyplot.quiver` function for\nplotting vector fields. Thanks to Tom Flannaghan and Tony Yu for adding the\nstreamplot function.\n\n\nEllipses\n========\n\nIn support of the `Phoenix `_\nmission to Mars (which used Matplotlib to display ground tracking of\nspacecraft), Michael Droettboom built on work by Charlie Moad to provide\nan extremely accurate 8-spline approximation to elliptical arcs (see\n:class:`~matplotlib.patches.Arc`), which are insensitive to zoom level.\n\n.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_ellipse_demo_001.png\n :target: ../../gallery/shapes_and_collections/ellipse_demo.html\n :align: center\n :scale: 50\n\n Ellipse Demo\n\n\nBar charts\n==========\n\nUse the :func:`~matplotlib.pyplot.bar` function to make bar charts, which\nincludes customizations such as error bars:\n\n.. figure:: ../../gallery/statistics/images/sphx_glr_barchart_demo_001.png\n :target: ../../gallery/statistics/barchart_demo.html\n :align: center\n :scale: 50\n\n Barchart Demo\n\nYou can also create stacked bars\n(`bar_stacked.py <../../gallery/lines_bars_and_markers/bar_stacked.html>`_),\nor horizontal bar charts\n(`barh.py <../../gallery/lines_bars_and_markers/barh.html>`_).\n\n\n\nPie charts\n==========\n\nThe :func:`~matplotlib.pyplot.pie` function allows you to create pie\ncharts. Optional features include auto-labeling the percentage of area,\nexploding one or more wedges from the center of the pie, and a shadow effect.\nTake a close look at the attached code, which generates this figure in just\na few lines of code.\n\n.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_pie_features_001.png\n :target: ../../gallery/pie_and_polar_charts/pie_features.html\n :align: center\n :scale: 50\n\n Pie Features\n\n\nTables\n======\n\nThe :func:`~matplotlib.pyplot.table` function adds a text table\nto an axes.\n\n.. figure:: ../../gallery/misc/images/sphx_glr_table_demo_001.png\n :target: ../../gallery/misc/table_demo.html\n :align: center\n :scale: 50\n\n Table Demo\n\n\n\n\nScatter plots\n=============\n\nThe :func:`~matplotlib.pyplot.scatter` function makes a scatter plot\nwith (optional) size and color arguments. This example plots changes\nin Google's stock price, with marker sizes reflecting the\ntrading volume and colors varying with time. Here, the\nalpha attribute is used to make semitransparent circle markers.\n\n.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_scatter_demo2_001.png\n :target: ../../gallery/lines_bars_and_markers/scatter_demo2.html\n :align: center\n :scale: 50\n\n Scatter Demo2\n\n\n\nGUI widgets\n===========\n\nMatplotlib has basic GUI widgets that are independent of the graphical\nuser interface you are using, allowing you to write cross GUI figures\nand widgets. See :mod:`matplotlib.widgets` and the\n`widget examples <../../gallery/index.html>`_.\n\n.. figure:: ../../gallery/widgets/images/sphx_glr_slider_demo_001.png\n :target: ../../gallery/widgets/slider_demo.html\n :align: center\n :scale: 50\n\n Slider and radio-button GUI.\n\n\n\nFilled curves\n=============\n\nThe :func:`~matplotlib.pyplot.fill` function lets you\nplot filled curves and polygons:\n\n.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_fill_001.png\n :target: ../../gallery/lines_bars_and_markers/fill.html\n :align: center\n :scale: 50\n\n Fill\n\nThanks to Andrew Straw for adding this function.\n\n\nDate handling\n=============\n\nYou can plot timeseries data with major and minor ticks and custom\ntick formatters for both.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_date_001.png\n :target: ../../gallery/text_labels_and_annotations/date.html\n :align: center\n :scale: 50\n\n Date\n\nSee :mod:`matplotlib.ticker` and :mod:`matplotlib.dates` for details and usage.\n\n\n\nLog plots\n=========\n\nThe :func:`~matplotlib.pyplot.semilogx`,\n:func:`~matplotlib.pyplot.semilogy` and\n:func:`~matplotlib.pyplot.loglog` functions simplify the creation of\nlogarithmic plots.\n\n.. figure:: ../../gallery/scales/images/sphx_glr_log_demo_001.png\n :target: ../../gallery/scales/log_demo.html\n :align: center\n :scale: 50\n\n Log Demo\n\nThanks to Andrew Straw, Darren Dale and Gregory Lielens for contributions\nlog-scaling infrastructure.\n\n\nPolar plots\n===========\n\nThe :func:`~matplotlib.pyplot.polar` function generates polar plots.\n\n.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_polar_demo_001.png\n :target: ../../gallery/pie_and_polar_charts/polar_demo.html\n :align: center\n :scale: 50\n\n Polar Demo\n\n\n\nLegends\n=======\n\nThe :func:`~matplotlib.pyplot.legend` function automatically\ngenerates figure legends, with MATLAB-compatible legend-placement\nfunctions.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_legend_001.png\n :target: ../../gallery/text_labels_and_annotations/legend.html\n :align: center\n :scale: 50\n\n Legend\n\nThanks to Charles Twardy for input on the legend function.\n\n\nTeX-notation for text objects\n=============================\n\nBelow is a sampling of the many TeX expressions now supported by Matplotlib's\ninternal mathtext engine. The mathtext module provides TeX style mathematical\nexpressions using `FreeType `_\nand the DejaVu, BaKoMa computer modern, or `STIX `_\nfonts. See the :mod:`matplotlib.mathtext` module for additional details.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_mathtext_examples_001.png\n :target: ../../gallery/text_labels_and_annotations/mathtext_examples.html\n :align: center\n :scale: 50\n\n Mathtext Examples\n\nMatplotlib's mathtext infrastructure is an independent implementation and\ndoes not require TeX or any external packages installed on your computer. See\nthe tutorial at :doc:`/tutorials/text/mathtext`.\n\n\n\nNative TeX rendering\n====================\n\nAlthough Matplotlib's internal math rendering engine is quite\npowerful, sometimes you need TeX. Matplotlib supports external TeX\nrendering of strings with the *usetex* option.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/tex_demo.html\n :align: center\n :scale: 50\n\n Tex Demo\n\n\nEEG GUI\n=======\n\nYou can embed Matplotlib into pygtk, wx, Tk, or Qt applications.\nHere is a screenshot of an EEG viewer called `pbrain\n`__.\n\n![](../../_static/eeg_small.png)\n\n\nThe lower axes uses :func:`~matplotlib.pyplot.specgram`\nto plot the spectrogram of one of the EEG channels.\n\nFor examples of how to embed Matplotlib in different toolkits, see:\n\n * :doc:`/gallery/user_interfaces/embedding_in_gtk3_sgskip`\n * :doc:`/gallery/user_interfaces/embedding_in_wx2_sgskip`\n * :doc:`/gallery/user_interfaces/mpl_with_glade3_sgskip`\n * :doc:`/gallery/user_interfaces/embedding_in_qt_sgskip`\n * :doc:`/gallery/user_interfaces/embedding_in_tk_sgskip`\n\nXKCD-style sketch plots\n=======================\n\nJust for fun, Matplotlib supports plotting in the style of `xkcd\n`.\n\n.. figure:: ../../gallery/showcase/images/sphx_glr_xkcd_001.png\n :target: ../../gallery/showcase/xkcd.html\n :align: center\n :scale: 50\n\n xkcd\n\nSubplot example\n===============\n\nMany plot types can be combined in one figure to create\npowerful and flexible representations of data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nnp.random.seed(19680801)\ndata = np.random.randn(2, 100)\n\nfig, axs = plt.subplots(2, 2, figsize=(5, 5))\naxs[0, 0].hist(data[0])\naxs[1, 0].scatter(data[0], data[1])\naxs[0, 1].plot(data[0], data[1])\naxs[1, 1].hist2d(data[0], data[1])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7556e03c4aca665047f0376003324362/bars3d.py b/_downloads/7556e03c4aca665047f0376003324362/bars3d.py deleted file mode 120000 index 71812506dcb..00000000000 --- a/_downloads/7556e03c4aca665047f0376003324362/bars3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7556e03c4aca665047f0376003324362/bars3d.py \ No newline at end of file diff --git a/_downloads/7559dca99e4fecbf4f29cae8f9daaff2/trisurf3d.py b/_downloads/7559dca99e4fecbf4f29cae8f9daaff2/trisurf3d.py deleted file mode 120000 index 6301472a5a7..00000000000 --- a/_downloads/7559dca99e4fecbf4f29cae8f9daaff2/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7559dca99e4fecbf4f29cae8f9daaff2/trisurf3d.py \ No newline at end of file diff --git a/_downloads/7569437ed5c39e33ccf6bba070b86d3b/auto_ticks.ipynb b/_downloads/7569437ed5c39e33ccf6bba070b86d3b/auto_ticks.ipynb deleted file mode 120000 index 3ef4415c959..00000000000 --- a/_downloads/7569437ed5c39e33ccf6bba070b86d3b/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/7569437ed5c39e33ccf6bba070b86d3b/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/756a9dd7cf31f2e15bd35724d7a53ade/demo_edge_colorbar.ipynb b/_downloads/756a9dd7cf31f2e15bd35724d7a53ade/demo_edge_colorbar.ipynb deleted file mode 120000 index 84adebe052c..00000000000 --- a/_downloads/756a9dd7cf31f2e15bd35724d7a53ade/demo_edge_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/756a9dd7cf31f2e15bd35724d7a53ade/demo_edge_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/7570a14229239135b4a7ca7ea7684fba/ginput_manual_clabel_sgskip.py b/_downloads/7570a14229239135b4a7ca7ea7684fba/ginput_manual_clabel_sgskip.py deleted file mode 120000 index d0fa4c6179e..00000000000 --- a/_downloads/7570a14229239135b4a7ca7ea7684fba/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7570a14229239135b4a7ca7ea7684fba/ginput_manual_clabel_sgskip.py \ No newline at end of file diff --git a/_downloads/757512fe68953f07685f6592c084829f/data_browser.py b/_downloads/757512fe68953f07685f6592c084829f/data_browser.py deleted file mode 120000 index 41434b04820..00000000000 --- a/_downloads/757512fe68953f07685f6592c084829f/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/757512fe68953f07685f6592c084829f/data_browser.py \ No newline at end of file diff --git a/_downloads/757f99d66fee5cda0ca0701afb6ef530/bayes_update.py b/_downloads/757f99d66fee5cda0ca0701afb6ef530/bayes_update.py deleted file mode 100644 index 242d19ebb3d..00000000000 --- a/_downloads/757f99d66fee5cda0ca0701afb6ef530/bayes_update.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -================ -The Bayes update -================ - -This animation displays the posterior estimate updates as it is refitted when -new data arrives. -The vertical line represents the theoretical value to which the plotted -distribution should converge. -""" - -import math - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.animation import FuncAnimation - - -def beta_pdf(x, a, b): - return (x**(a-1) * (1-x)**(b-1) * math.gamma(a + b) - / (math.gamma(a) * math.gamma(b))) - - -class UpdateDist(object): - def __init__(self, ax, prob=0.5): - self.success = 0 - self.prob = prob - self.line, = ax.plot([], [], 'k-') - self.x = np.linspace(0, 1, 200) - self.ax = ax - - # Set up plot parameters - self.ax.set_xlim(0, 1) - self.ax.set_ylim(0, 15) - self.ax.grid(True) - - # This vertical line represents the theoretical value, to - # which the plotted distribution should converge. - self.ax.axvline(prob, linestyle='--', color='black') - - def init(self): - self.success = 0 - self.line.set_data([], []) - return self.line, - - def __call__(self, i): - # This way the plot can continuously run and we just keep - # watching new realizations of the process - if i == 0: - return self.init() - - # Choose success based on exceed a threshold with a uniform pick - if np.random.rand(1,) < self.prob: - self.success += 1 - y = beta_pdf(self.x, self.success + 1, (i - self.success) + 1) - self.line.set_data(self.x, y) - return self.line, - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -ud = UpdateDist(ax, prob=0.7) -anim = FuncAnimation(fig, ud, frames=np.arange(100), init_func=ud.init, - interval=100, blit=True) -plt.show() diff --git a/_downloads/75891f4072066e08b9e8ed1a4615c57e/color_demo.ipynb b/_downloads/75891f4072066e08b9e8ed1a4615c57e/color_demo.ipynb deleted file mode 120000 index 98317a022f6..00000000000 --- a/_downloads/75891f4072066e08b9e8ed1a4615c57e/color_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/75891f4072066e08b9e8ed1a4615c57e/color_demo.ipynb \ No newline at end of file diff --git a/_downloads/758c39512ff467ae08f5d49cccfb7f30/irregulardatagrid.py b/_downloads/758c39512ff467ae08f5d49cccfb7f30/irregulardatagrid.py deleted file mode 120000 index fdbd57815da..00000000000 --- a/_downloads/758c39512ff467ae08f5d49cccfb7f30/irregulardatagrid.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/758c39512ff467ae08f5d49cccfb7f30/irregulardatagrid.py \ No newline at end of file diff --git a/_downloads/758f55eb5041c262005efe762aa5cd3e/poly_editor.ipynb b/_downloads/758f55eb5041c262005efe762aa5cd3e/poly_editor.ipynb deleted file mode 100644 index dd0b58b2708..00000000000 --- a/_downloads/758f55eb5041c262005efe762aa5cd3e/poly_editor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Poly Editor\n\n\nThis is an example to show how to build cross-GUI applications using\nMatplotlib event handling to interact with objects on the canvas.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.lines import Line2D\nfrom matplotlib.artist import Artist\n\n\ndef dist(x, y):\n \"\"\"\n Return the distance between two points.\n \"\"\"\n d = x - y\n return np.sqrt(np.dot(d, d))\n\n\ndef dist_point_to_segment(p, s0, s1):\n \"\"\"\n Get the distance of a point to a segment.\n *p*, *s0*, *s1* are *xy* sequences\n This algorithm from\n http://geomalgorithms.com/a02-_lines.html\n \"\"\"\n v = s1 - s0\n w = p - s0\n c1 = np.dot(w, v)\n if c1 <= 0:\n return dist(p, s0)\n c2 = np.dot(v, v)\n if c2 <= c1:\n return dist(p, s1)\n b = c1 / c2\n pb = s0 + b * v\n return dist(p, pb)\n\n\nclass PolygonInteractor(object):\n \"\"\"\n A polygon editor.\n\n Key-bindings\n\n 't' toggle vertex markers on and off. When vertex markers are on,\n you can move them, delete them\n\n 'd' delete the vertex under point\n\n 'i' insert a vertex at point. You must be within epsilon of the\n line connecting two existing vertices\n\n \"\"\"\n\n showverts = True\n epsilon = 5 # max pixel distance to count as a vertex hit\n\n def __init__(self, ax, poly):\n if poly.figure is None:\n raise RuntimeError('You must first add the polygon to a figure '\n 'or canvas before defining the interactor')\n self.ax = ax\n canvas = poly.figure.canvas\n self.poly = poly\n\n x, y = zip(*self.poly.xy)\n self.line = Line2D(x, y,\n marker='o', markerfacecolor='r',\n animated=True)\n self.ax.add_line(self.line)\n\n self.cid = self.poly.add_callback(self.poly_changed)\n self._ind = None # the active vert\n\n canvas.mpl_connect('draw_event', self.draw_callback)\n canvas.mpl_connect('button_press_event', self.button_press_callback)\n canvas.mpl_connect('key_press_event', self.key_press_callback)\n canvas.mpl_connect('button_release_event', self.button_release_callback)\n canvas.mpl_connect('motion_notify_event', self.motion_notify_callback)\n self.canvas = canvas\n\n def draw_callback(self, event):\n self.background = self.canvas.copy_from_bbox(self.ax.bbox)\n self.ax.draw_artist(self.poly)\n self.ax.draw_artist(self.line)\n # do not need to blit here, this will fire before the screen is\n # updated\n\n def poly_changed(self, poly):\n 'this method is called whenever the polygon object is called'\n # only copy the artist props to the line (except visibility)\n vis = self.line.get_visible()\n Artist.update_from(self.line, poly)\n self.line.set_visible(vis) # don't use the poly visibility state\n\n def get_ind_under_point(self, event):\n 'get the index of the vertex under point if within epsilon tolerance'\n\n # display coords\n xy = np.asarray(self.poly.xy)\n xyt = self.poly.get_transform().transform(xy)\n xt, yt = xyt[:, 0], xyt[:, 1]\n d = np.hypot(xt - event.x, yt - event.y)\n indseq, = np.nonzero(d == d.min())\n ind = indseq[0]\n\n if d[ind] >= self.epsilon:\n ind = None\n\n return ind\n\n def button_press_callback(self, event):\n 'whenever a mouse button is pressed'\n if not self.showverts:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n self._ind = self.get_ind_under_point(event)\n\n def button_release_callback(self, event):\n 'whenever a mouse button is released'\n if not self.showverts:\n return\n if event.button != 1:\n return\n self._ind = None\n\n def key_press_callback(self, event):\n 'whenever a key is pressed'\n if not event.inaxes:\n return\n if event.key == 't':\n self.showverts = not self.showverts\n self.line.set_visible(self.showverts)\n if not self.showverts:\n self._ind = None\n elif event.key == 'd':\n ind = self.get_ind_under_point(event)\n if ind is not None:\n self.poly.xy = np.delete(self.poly.xy,\n ind, axis=0)\n self.line.set_data(zip(*self.poly.xy))\n elif event.key == 'i':\n xys = self.poly.get_transform().transform(self.poly.xy)\n p = event.x, event.y # display coords\n for i in range(len(xys) - 1):\n s0 = xys[i]\n s1 = xys[i + 1]\n d = dist_point_to_segment(p, s0, s1)\n if d <= self.epsilon:\n self.poly.xy = np.insert(\n self.poly.xy, i+1,\n [event.xdata, event.ydata],\n axis=0)\n self.line.set_data(zip(*self.poly.xy))\n break\n if self.line.stale:\n self.canvas.draw_idle()\n\n def motion_notify_callback(self, event):\n 'on mouse movement'\n if not self.showverts:\n return\n if self._ind is None:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n x, y = event.xdata, event.ydata\n\n self.poly.xy[self._ind] = x, y\n if self._ind == 0:\n self.poly.xy[-1] = x, y\n elif self._ind == len(self.poly.xy) - 1:\n self.poly.xy[0] = x, y\n self.line.set_data(zip(*self.poly.xy))\n\n self.canvas.restore_region(self.background)\n self.ax.draw_artist(self.poly)\n self.ax.draw_artist(self.line)\n self.canvas.blit(self.ax.bbox)\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n from matplotlib.patches import Polygon\n\n theta = np.arange(0, 2*np.pi, 0.1)\n r = 1.5\n\n xs = r * np.cos(theta)\n ys = r * np.sin(theta)\n\n poly = Polygon(np.column_stack([xs, ys]), animated=True)\n\n fig, ax = plt.subplots()\n ax.add_patch(poly)\n p = PolygonInteractor(ax, poly)\n\n ax.set_title('Click and drag a point to move it')\n ax.set_xlim((-2, 2))\n ax.set_ylim((-2, 2))\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/759dd55b84529b4648bf3578032d0974/demo_gridspec01.ipynb b/_downloads/759dd55b84529b4648bf3578032d0974/demo_gridspec01.ipynb deleted file mode 120000 index c968ae80ca1..00000000000 --- a/_downloads/759dd55b84529b4648bf3578032d0974/demo_gridspec01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/759dd55b84529b4648bf3578032d0974/demo_gridspec01.ipynb \ No newline at end of file diff --git a/_downloads/75a4c88444695e93c3c5e8bc7bdf53c7/subplots_adjust.ipynb b/_downloads/75a4c88444695e93c3c5e8bc7bdf53c7/subplots_adjust.ipynb deleted file mode 120000 index 97e9d6997b5..00000000000 --- a/_downloads/75a4c88444695e93c3c5e8bc7bdf53c7/subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/75a4c88444695e93c3c5e8bc7bdf53c7/subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/75acbf6cd630c42505b6caf85ec51ddc/custom_boxstyle01.py b/_downloads/75acbf6cd630c42505b6caf85ec51ddc/custom_boxstyle01.py deleted file mode 120000 index ecfed81e846..00000000000 --- a/_downloads/75acbf6cd630c42505b6caf85ec51ddc/custom_boxstyle01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/75acbf6cd630c42505b6caf85ec51ddc/custom_boxstyle01.py \ No newline at end of file diff --git a/_downloads/75ae89b71aaf36817ecdd58091f5bc72/demo_curvelinear_grid2.py b/_downloads/75ae89b71aaf36817ecdd58091f5bc72/demo_curvelinear_grid2.py deleted file mode 120000 index 7055b460df3..00000000000 --- a/_downloads/75ae89b71aaf36817ecdd58091f5bc72/demo_curvelinear_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/75ae89b71aaf36817ecdd58091f5bc72/demo_curvelinear_grid2.py \ No newline at end of file diff --git a/_downloads/75b142ce611ed529e0ab9510365e4cc4/poly_editor.py b/_downloads/75b142ce611ed529e0ab9510365e4cc4/poly_editor.py deleted file mode 120000 index d300d495f35..00000000000 --- a/_downloads/75b142ce611ed529e0ab9510365e4cc4/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/75b142ce611ed529e0ab9510365e4cc4/poly_editor.py \ No newline at end of file diff --git a/_downloads/75b7527a4a9dc29c6d435694cd51e91e/nested_pie.py b/_downloads/75b7527a4a9dc29c6d435694cd51e91e/nested_pie.py deleted file mode 120000 index e57bdc20eaa..00000000000 --- a/_downloads/75b7527a4a9dc29c6d435694cd51e91e/nested_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/75b7527a4a9dc29c6d435694cd51e91e/nested_pie.py \ No newline at end of file diff --git a/_downloads/75bde35eda2b45972f844999247fbaae/marker_reference.py b/_downloads/75bde35eda2b45972f844999247fbaae/marker_reference.py deleted file mode 120000 index 1e1a487dcb6..00000000000 --- a/_downloads/75bde35eda2b45972f844999247fbaae/marker_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/75bde35eda2b45972f844999247fbaae/marker_reference.py \ No newline at end of file diff --git a/_downloads/75c30be8fc81ac29b5f99f3f1807ed54/color_cycle_default.ipynb b/_downloads/75c30be8fc81ac29b5f99f3f1807ed54/color_cycle_default.ipynb deleted file mode 120000 index 33c3d785fb5..00000000000 --- a/_downloads/75c30be8fc81ac29b5f99f3f1807ed54/color_cycle_default.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/75c30be8fc81ac29b5f99f3f1807ed54/color_cycle_default.ipynb \ No newline at end of file diff --git a/_downloads/75c5c2a0adef5ee5981aeb8213e79a57/toolmanager_sgskip.py b/_downloads/75c5c2a0adef5ee5981aeb8213e79a57/toolmanager_sgskip.py deleted file mode 100644 index 761ffe5edca..00000000000 --- a/_downloads/75c5c2a0adef5ee5981aeb8213e79a57/toolmanager_sgskip.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -============ -Tool Manager -============ - -This example demonstrates how to: - -* Modify the Toolbar -* Create tools -* Add tools -* Remove tools - -Using `matplotlib.backend_managers.ToolManager` -""" - -import matplotlib.pyplot as plt -plt.rcParams['toolbar'] = 'toolmanager' -from matplotlib.backend_tools import ToolBase, ToolToggleBase - - -class ListTools(ToolBase): - '''List all the tools controlled by the `ToolManager`''' - # keyboard shortcut - default_keymap = 'm' - description = 'List Tools' - - def trigger(self, *args, **kwargs): - print('_' * 80) - print("{0:12} {1:45} {2}".format( - 'Name (id)', 'Tool description', 'Keymap')) - print('-' * 80) - tools = self.toolmanager.tools - for name in sorted(tools): - if not tools[name].description: - continue - keys = ', '.join(sorted(self.toolmanager.get_tool_keymap(name))) - print("{0:12} {1:45} {2}".format( - name, tools[name].description, keys)) - print('_' * 80) - print("Active Toggle tools") - print("{0:12} {1:45}".format("Group", "Active")) - print('-' * 80) - for group, active in self.toolmanager.active_toggle.items(): - print("{0:12} {1:45}".format(str(group), str(active))) - - -class GroupHideTool(ToolToggleBase): - '''Show lines with a given gid''' - default_keymap = 'G' - description = 'Show by gid' - default_toggled = True - - def __init__(self, *args, gid, **kwargs): - self.gid = gid - super().__init__(*args, **kwargs) - - def enable(self, *args): - self.set_lines_visibility(True) - - def disable(self, *args): - self.set_lines_visibility(False) - - def set_lines_visibility(self, state): - for ax in self.figure.get_axes(): - for line in ax.get_lines(): - if line.get_gid() == self.gid: - line.set_visible(state) - self.figure.canvas.draw() - - -fig = plt.figure() -plt.plot([1, 2, 3], gid='mygroup') -plt.plot([2, 3, 4], gid='unknown') -plt.plot([3, 2, 1], gid='mygroup') - -# Add the custom tools that we created -fig.canvas.manager.toolmanager.add_tool('List', ListTools) -fig.canvas.manager.toolmanager.add_tool('Show', GroupHideTool, gid='mygroup') - - -# Add an existing tool to new group `foo`. -# It can be added as many times as we want -fig.canvas.manager.toolbar.add_tool('zoom', 'foo') - -# Remove the forward button -fig.canvas.manager.toolmanager.remove_tool('forward') - -# To add a custom tool to the toolbar at specific location inside -# the navigation group -fig.canvas.manager.toolbar.add_tool('Show', 'navigation', 1) - -plt.show() diff --git a/_downloads/75ca98a542d8d39ea3f35046c096fe0e/histogram.py b/_downloads/75ca98a542d8d39ea3f35046c096fe0e/histogram.py deleted file mode 120000 index 2d2cba5cf0a..00000000000 --- a/_downloads/75ca98a542d8d39ea3f35046c096fe0e/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/75ca98a542d8d39ea3f35046c096fe0e/histogram.py \ No newline at end of file diff --git a/_downloads/75cf54d0f13f92d430e8b5c7e61030f5/centered_ticklabels.py b/_downloads/75cf54d0f13f92d430e8b5c7e61030f5/centered_ticklabels.py deleted file mode 120000 index e90aca0f097..00000000000 --- a/_downloads/75cf54d0f13f92d430e8b5c7e61030f5/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/75cf54d0f13f92d430e8b5c7e61030f5/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/75e51284f36ac3b7ed4b94cbbe58a64c/trisurf3d_2.ipynb b/_downloads/75e51284f36ac3b7ed4b94cbbe58a64c/trisurf3d_2.ipynb deleted file mode 120000 index 2a88304ec95..00000000000 --- a/_downloads/75e51284f36ac3b7ed4b94cbbe58a64c/trisurf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/75e51284f36ac3b7ed4b94cbbe58a64c/trisurf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/75e5c650db9cb156f3bc7d599d2c081b/custom_legends.py b/_downloads/75e5c650db9cb156f3bc7d599d2c081b/custom_legends.py deleted file mode 120000 index b35c25b4df6..00000000000 --- a/_downloads/75e5c650db9cb156f3bc7d599d2c081b/custom_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/75e5c650db9cb156f3bc7d599d2c081b/custom_legends.py \ No newline at end of file diff --git a/_downloads/75e9ebf88870c19b79ad61cadb4ac08f/tex_demo.ipynb b/_downloads/75e9ebf88870c19b79ad61cadb4ac08f/tex_demo.ipynb deleted file mode 120000 index 1ad11a5b25d..00000000000 --- a/_downloads/75e9ebf88870c19b79ad61cadb4ac08f/tex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/75e9ebf88870c19b79ad61cadb4ac08f/tex_demo.ipynb \ No newline at end of file diff --git a/_downloads/75f0ab722f4903ed3a67790d39e0ffce/date_demo_convert.ipynb b/_downloads/75f0ab722f4903ed3a67790d39e0ffce/date_demo_convert.ipynb deleted file mode 120000 index 47abd43c7a1..00000000000 --- a/_downloads/75f0ab722f4903ed3a67790d39e0ffce/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/75f0ab722f4903ed3a67790d39e0ffce/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/75f207a47a0864d9e016ccd58dbbb477/marker_reference.py b/_downloads/75f207a47a0864d9e016ccd58dbbb477/marker_reference.py deleted file mode 120000 index 47d29b061e3..00000000000 --- a/_downloads/75f207a47a0864d9e016ccd58dbbb477/marker_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/75f207a47a0864d9e016ccd58dbbb477/marker_reference.py \ No newline at end of file diff --git a/_downloads/75f2f158eecd5b8a8ad466c25c8b982e/toolmanager_sgskip.py b/_downloads/75f2f158eecd5b8a8ad466c25c8b982e/toolmanager_sgskip.py deleted file mode 100644 index 761ffe5edca..00000000000 --- a/_downloads/75f2f158eecd5b8a8ad466c25c8b982e/toolmanager_sgskip.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -============ -Tool Manager -============ - -This example demonstrates how to: - -* Modify the Toolbar -* Create tools -* Add tools -* Remove tools - -Using `matplotlib.backend_managers.ToolManager` -""" - -import matplotlib.pyplot as plt -plt.rcParams['toolbar'] = 'toolmanager' -from matplotlib.backend_tools import ToolBase, ToolToggleBase - - -class ListTools(ToolBase): - '''List all the tools controlled by the `ToolManager`''' - # keyboard shortcut - default_keymap = 'm' - description = 'List Tools' - - def trigger(self, *args, **kwargs): - print('_' * 80) - print("{0:12} {1:45} {2}".format( - 'Name (id)', 'Tool description', 'Keymap')) - print('-' * 80) - tools = self.toolmanager.tools - for name in sorted(tools): - if not tools[name].description: - continue - keys = ', '.join(sorted(self.toolmanager.get_tool_keymap(name))) - print("{0:12} {1:45} {2}".format( - name, tools[name].description, keys)) - print('_' * 80) - print("Active Toggle tools") - print("{0:12} {1:45}".format("Group", "Active")) - print('-' * 80) - for group, active in self.toolmanager.active_toggle.items(): - print("{0:12} {1:45}".format(str(group), str(active))) - - -class GroupHideTool(ToolToggleBase): - '''Show lines with a given gid''' - default_keymap = 'G' - description = 'Show by gid' - default_toggled = True - - def __init__(self, *args, gid, **kwargs): - self.gid = gid - super().__init__(*args, **kwargs) - - def enable(self, *args): - self.set_lines_visibility(True) - - def disable(self, *args): - self.set_lines_visibility(False) - - def set_lines_visibility(self, state): - for ax in self.figure.get_axes(): - for line in ax.get_lines(): - if line.get_gid() == self.gid: - line.set_visible(state) - self.figure.canvas.draw() - - -fig = plt.figure() -plt.plot([1, 2, 3], gid='mygroup') -plt.plot([2, 3, 4], gid='unknown') -plt.plot([3, 2, 1], gid='mygroup') - -# Add the custom tools that we created -fig.canvas.manager.toolmanager.add_tool('List', ListTools) -fig.canvas.manager.toolmanager.add_tool('Show', GroupHideTool, gid='mygroup') - - -# Add an existing tool to new group `foo`. -# It can be added as many times as we want -fig.canvas.manager.toolbar.add_tool('zoom', 'foo') - -# Remove the forward button -fig.canvas.manager.toolmanager.remove_tool('forward') - -# To add a custom tool to the toolbar at specific location inside -# the navigation group -fig.canvas.manager.toolbar.add_tool('Show', 'navigation', 1) - -plt.show() diff --git a/_downloads/75f696840a9e08a2ca7da6ef3d50bec1/colorbar_only.ipynb b/_downloads/75f696840a9e08a2ca7da6ef3d50bec1/colorbar_only.ipynb deleted file mode 120000 index e97b7aa937b..00000000000 --- a/_downloads/75f696840a9e08a2ca7da6ef3d50bec1/colorbar_only.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/75f696840a9e08a2ca7da6ef3d50bec1/colorbar_only.ipynb \ No newline at end of file diff --git a/_downloads/75f97aa0300f3d6205588bf39aaab060/embedding_webagg_sgskip.py b/_downloads/75f97aa0300f3d6205588bf39aaab060/embedding_webagg_sgskip.py deleted file mode 120000 index 3baa7265082..00000000000 --- a/_downloads/75f97aa0300f3d6205588bf39aaab060/embedding_webagg_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/75f97aa0300f3d6205588bf39aaab060/embedding_webagg_sgskip.py \ No newline at end of file diff --git a/_downloads/75fb0e584c6553ec673f625f5e7b30eb/subplot.py b/_downloads/75fb0e584c6553ec673f625f5e7b30eb/subplot.py deleted file mode 120000 index 474e423aaec..00000000000 --- a/_downloads/75fb0e584c6553ec673f625f5e7b30eb/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/75fb0e584c6553ec673f625f5e7b30eb/subplot.py \ No newline at end of file diff --git a/_downloads/7600459cba10d19716daad4a919e2705/zoom_inset_axes.py b/_downloads/7600459cba10d19716daad4a919e2705/zoom_inset_axes.py deleted file mode 120000 index a0778d10d2a..00000000000 --- a/_downloads/7600459cba10d19716daad4a919e2705/zoom_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7600459cba10d19716daad4a919e2705/zoom_inset_axes.py \ No newline at end of file diff --git a/_downloads/760e35464b1ba7d94d0284ba7cf8d1b1/anchored_box03.ipynb b/_downloads/760e35464b1ba7d94d0284ba7cf8d1b1/anchored_box03.ipynb deleted file mode 120000 index 30ffc01930e..00000000000 --- a/_downloads/760e35464b1ba7d94d0284ba7cf8d1b1/anchored_box03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/760e35464b1ba7d94d0284ba7cf8d1b1/anchored_box03.ipynb \ No newline at end of file diff --git a/_downloads/7616edd8e6be21d15da4e605dcbf02d5/accented_text.py b/_downloads/7616edd8e6be21d15da4e605dcbf02d5/accented_text.py deleted file mode 100644 index c7f4523e600..00000000000 --- a/_downloads/7616edd8e6be21d15da4e605dcbf02d5/accented_text.py +++ /dev/null @@ -1,36 +0,0 @@ -r""" -================================= -Using accented text in matplotlib -================================= - -Matplotlib supports accented characters via TeX mathtext or unicode. - -Using mathtext, the following accents are provided: \hat, \breve, \grave, \bar, -\acute, \tilde, \vec, \dot, \ddot. All of them have the same syntax, -e.g., to make an overbar you do \bar{o} or to make an o umlaut you do -\ddot{o}. The shortcuts are also provided, e.g.,: \"o \'e \`e \~n \.x -\^y - -""" -import matplotlib.pyplot as plt - -# Mathtext demo -fig, ax = plt.subplots() -ax.plot(range(10)) -ax.set_title(r'$\ddot{o}\acute{e}\grave{e}\hat{O}' - r'\breve{i}\bar{A}\tilde{n}\vec{q}$', fontsize=20) - -# Shorthand is also supported and curly braces are optional -ax.set_xlabel(r"""$\"o\ddot o \'e\`e\~n\.x\^y$""", fontsize=20) -ax.text(4, 0.5, r"$F=m\ddot{x}$") -fig.tight_layout() - -# Unicode demo -fig, ax = plt.subplots() -ax.set_title("GISCARD CHAHUTÉ À L'ASSEMBLÉE") -ax.set_xlabel("LE COUP DE DÉ DE DE GAULLE") -ax.set_ylabel('André was here!') -ax.text(0.2, 0.8, 'Institut für Festkörperphysik', rotation=45) -ax.text(0.4, 0.2, 'AVA (check kerning)') - -plt.show() diff --git a/_downloads/76190904c461d9a82c9360750013ea54/demo_axis_direction.py b/_downloads/76190904c461d9a82c9360750013ea54/demo_axis_direction.py deleted file mode 120000 index a1312eb3e26..00000000000 --- a/_downloads/76190904c461d9a82c9360750013ea54/demo_axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/76190904c461d9a82c9360750013ea54/demo_axis_direction.py \ No newline at end of file diff --git a/_downloads/76193f844fd405ca7ef8748b11a1322b/pyplot.py b/_downloads/76193f844fd405ca7ef8748b11a1322b/pyplot.py deleted file mode 120000 index 748ff974fb4..00000000000 --- a/_downloads/76193f844fd405ca7ef8748b11a1322b/pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/76193f844fd405ca7ef8748b11a1322b/pyplot.py \ No newline at end of file diff --git a/_downloads/761dec56893fd3f3d5d886fa5b19c1b4/3D.py b/_downloads/761dec56893fd3f3d5d886fa5b19c1b4/3D.py deleted file mode 120000 index 7a3164d11df..00000000000 --- a/_downloads/761dec56893fd3f3d5d886fa5b19c1b4/3D.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/761dec56893fd3f3d5d886fa5b19c1b4/3D.py \ No newline at end of file diff --git a/_downloads/761fa18bff48b948a899cdf40c861b8a/timeline.ipynb b/_downloads/761fa18bff48b948a899cdf40c861b8a/timeline.ipynb deleted file mode 120000 index 0fa9ac8920f..00000000000 --- a/_downloads/761fa18bff48b948a899cdf40c861b8a/timeline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/761fa18bff48b948a899cdf40c861b8a/timeline.ipynb \ No newline at end of file diff --git a/_downloads/762bf0eada0657f3b80a08f289d9cdc8/broken_axis.ipynb b/_downloads/762bf0eada0657f3b80a08f289d9cdc8/broken_axis.ipynb deleted file mode 120000 index f389e41b80d..00000000000 --- a/_downloads/762bf0eada0657f3b80a08f289d9cdc8/broken_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/762bf0eada0657f3b80a08f289d9cdc8/broken_axis.ipynb \ No newline at end of file diff --git a/_downloads/762df12d56245b028a169d15af38c1de/annotate_simple04.ipynb b/_downloads/762df12d56245b028a169d15af38c1de/annotate_simple04.ipynb deleted file mode 120000 index 3be562666fe..00000000000 --- a/_downloads/762df12d56245b028a169d15af38c1de/annotate_simple04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/762df12d56245b028a169d15af38c1de/annotate_simple04.ipynb \ No newline at end of file diff --git a/_downloads/7639a68f4bcfcc6d3d2fd760afb90c6a/major_minor_demo.py b/_downloads/7639a68f4bcfcc6d3d2fd760afb90c6a/major_minor_demo.py deleted file mode 100644 index 1143bf3ebae..00000000000 --- a/_downloads/7639a68f4bcfcc6d3d2fd760afb90c6a/major_minor_demo.py +++ /dev/null @@ -1,76 +0,0 @@ -r""" -===================== -Major and minor ticks -===================== - -Demonstrate how to use major and minor tickers. - -The two relevant classes are `.Locator`\s and `.Formatter`\s. Locators -determine where the ticks are, and formatters control the formatting of tick -labels. - -Minor ticks are off by default (using `.NullLocator` and `.NullFormatter`). -Minor ticks can be turned on without labels by setting the minor locator. -Minor tick labels can be turned on by setting the minor formatter. - -`MultipleLocator` places ticks on multiples of some base. `FormatStrFormatter` -uses a format string (e.g., '%d' or '%1.2f' or '%1.1f cm' ) to format the tick -labels. - -`.pyplot.grid` changes the grid settings of the major ticks of the y and y axis -together. If you want to control the grid of the minor ticks for a given axis, -use for example :: - - ax.xaxis.grid(True, which='minor') - -Note that a given locator or formatter instance can only be used on a single -axis (because the locator stores references to the axis data and view limits). -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.ticker import (MultipleLocator, FormatStrFormatter, - AutoMinorLocator) - - -t = np.arange(0.0, 100.0, 0.1) -s = np.sin(0.1 * np.pi * t) * np.exp(-t * 0.01) - -fig, ax = plt.subplots() -ax.plot(t, s) - -# Make a plot with major ticks that are multiples of 20 and minor ticks that -# are multiples of 5. Label major ticks with '%d' formatting but don't label -# minor ticks. -ax.xaxis.set_major_locator(MultipleLocator(20)) -ax.xaxis.set_major_formatter(FormatStrFormatter('%d')) - -# For the minor ticks, use no labels; default NullFormatter. -ax.xaxis.set_minor_locator(MultipleLocator(5)) - -plt.show() - -############################################################################### -# Automatic tick selection for major and minor ticks. -# -# Use interactive pan and zoom to see how the tick intervals change. There will -# be either 4 or 5 minor tick intervals per major interval, depending on the -# major interval. -# -# One can supply an argument to AutoMinorLocator to specify a fixed number of -# minor intervals per major interval, e.g. ``AutoMinorLocator(2)`` would lead -# to a single minor tick between major ticks. - -t = np.arange(0.0, 100.0, 0.01) -s = np.sin(2 * np.pi * t) * np.exp(-t * 0.01) - -fig, ax = plt.subplots() -ax.plot(t, s) - -ax.xaxis.set_minor_locator(AutoMinorLocator()) - -ax.tick_params(which='both', width=2) -ax.tick_params(which='major', length=7) -ax.tick_params(which='minor', length=4, color='r') - -plt.show() diff --git a/_downloads/763f2e231c35f9d106e11c76f6e0f8b6/looking_glass.py b/_downloads/763f2e231c35f9d106e11c76f6e0f8b6/looking_glass.py deleted file mode 120000 index 00fccee3796..00000000000 --- a/_downloads/763f2e231c35f9d106e11c76f6e0f8b6/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/763f2e231c35f9d106e11c76f6e0f8b6/looking_glass.py \ No newline at end of file diff --git a/_downloads/764239b321df1f4dab55a8a16c76daeb/centered_spines_with_arrows.py b/_downloads/764239b321df1f4dab55a8a16c76daeb/centered_spines_with_arrows.py deleted file mode 120000 index 6d3f5a58eb3..00000000000 --- a/_downloads/764239b321df1f4dab55a8a16c76daeb/centered_spines_with_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/764239b321df1f4dab55a8a16c76daeb/centered_spines_with_arrows.py \ No newline at end of file diff --git a/_downloads/7643aa86fee2c48c0c52585feacd87c5/contourf_hatching.ipynb b/_downloads/7643aa86fee2c48c0c52585feacd87c5/contourf_hatching.ipynb deleted file mode 120000 index b8df1ffee1d..00000000000 --- a/_downloads/7643aa86fee2c48c0c52585feacd87c5/contourf_hatching.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7643aa86fee2c48c0c52585feacd87c5/contourf_hatching.ipynb \ No newline at end of file diff --git a/_downloads/764d024f86340c21c08a08fc2e7361bb/tick_label_right.py b/_downloads/764d024f86340c21c08a08fc2e7361bb/tick_label_right.py deleted file mode 100644 index f49492e93bf..00000000000 --- a/_downloads/764d024f86340c21c08a08fc2e7361bb/tick_label_right.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -============================================ -Set default y-axis tick labels on the right -============================================ - -We can use :rc:`ytick.labelright` (default False) and :rc:`ytick.right` -(default False) and :rc:`ytick.labelleft` (default True) and :rc:`ytick.left` -(default True) to control where on the axes ticks and their labels appear. -These properties can also be set in the ``.matplotlib/matplotlibrc``. - -""" -import matplotlib.pyplot as plt -import numpy as np - -plt.rcParams['ytick.right'] = plt.rcParams['ytick.labelright'] = True -plt.rcParams['ytick.left'] = plt.rcParams['ytick.labelleft'] = False - -x = np.arange(10) - -fig, (ax0, ax1) = plt.subplots(2, 1, sharex=True, figsize=(6, 6)) - -ax0.plot(x) -ax0.yaxis.tick_left() - -# use default parameter in rcParams, not calling tick_right() -ax1.plot(x) - -plt.show() diff --git a/_downloads/765135d2b56f0ee43474a6d58ca3c2f8/unicode_minus.py b/_downloads/765135d2b56f0ee43474a6d58ca3c2f8/unicode_minus.py deleted file mode 120000 index 449a11aa751..00000000000 --- a/_downloads/765135d2b56f0ee43474a6d58ca3c2f8/unicode_minus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/765135d2b56f0ee43474a6d58ca3c2f8/unicode_minus.py \ No newline at end of file diff --git a/_downloads/765ef2ac7219d2777215f138e16cebea/tutorials_python.zip b/_downloads/765ef2ac7219d2777215f138e16cebea/tutorials_python.zip deleted file mode 120000 index c2cd0a6c8d1..00000000000 --- a/_downloads/765ef2ac7219d2777215f138e16cebea/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/765ef2ac7219d2777215f138e16cebea/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/76657858e474789ad93e1f8da487ea92/tutorials_jupyter.zip b/_downloads/76657858e474789ad93e1f8da487ea92/tutorials_jupyter.zip deleted file mode 120000 index d0bb9be0e1f..00000000000 --- a/_downloads/76657858e474789ad93e1f8da487ea92/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/76657858e474789ad93e1f8da487ea92/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/7672645272cb1863dfa347ba46b7be4e/embedding_in_wx3_sgskip.ipynb b/_downloads/7672645272cb1863dfa347ba46b7be4e/embedding_in_wx3_sgskip.ipynb deleted file mode 120000 index 477af652037..00000000000 --- a/_downloads/7672645272cb1863dfa347ba46b7be4e/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7672645272cb1863dfa347ba46b7be4e/embedding_in_wx3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/76729ff594acff59901f8b63383f782c/simple_axesgrid2.ipynb b/_downloads/76729ff594acff59901f8b63383f782c/simple_axesgrid2.ipynb deleted file mode 120000 index b6624bfaf9e..00000000000 --- a/_downloads/76729ff594acff59901f8b63383f782c/simple_axesgrid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/76729ff594acff59901f8b63383f782c/simple_axesgrid2.ipynb \ No newline at end of file diff --git a/_downloads/76770df768e4a082abeaf5d782c5f6e4/markevery_prop_cycle.ipynb b/_downloads/76770df768e4a082abeaf5d782c5f6e4/markevery_prop_cycle.ipynb deleted file mode 120000 index 4c1024231df..00000000000 --- a/_downloads/76770df768e4a082abeaf5d782c5f6e4/markevery_prop_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/76770df768e4a082abeaf5d782c5f6e4/markevery_prop_cycle.ipynb \ No newline at end of file diff --git a/_downloads/767abd83e6cedb0036af0e5bc5ed668b/custom_cmap.ipynb b/_downloads/767abd83e6cedb0036af0e5bc5ed668b/custom_cmap.ipynb deleted file mode 100644 index f2cb4132b8b..00000000000 --- a/_downloads/767abd83e6cedb0036af0e5bc5ed668b/custom_cmap.ipynb +++ /dev/null @@ -1,180 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating a colormap from a list of colors\n\n\nFor more detail on creating and manipulating colormaps see\n:doc:`/tutorials/colors/colormap-manipulation`.\n\nCreating a :doc:`colormap `\nfrom a list of colors can be done with the\n:meth:`~.colors.LinearSegmentedColormap.from_list` method of\n`LinearSegmentedColormap`. You must pass a list of RGB tuples that define the\nmixture of colors from 0 to 1.\n\n\nCreating custom colormaps\n-------------------------\nIt is also possible to create a custom mapping for a colormap. This is\naccomplished by creating dictionary that specifies how the RGB channels\nchange from one end of the cmap to the other.\n\nExample: suppose you want red to increase from 0 to 1 over the bottom\nhalf, green to do the same over the middle half, and blue over the top\nhalf. Then you would use::\n\n cdict = {'red': ((0.0, 0.0, 0.0),\n (0.5, 1.0, 1.0),\n (1.0, 1.0, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (0.25, 0.0, 0.0),\n (0.75, 1.0, 1.0),\n (1.0, 1.0, 1.0)),\n\n 'blue': ((0.0, 0.0, 0.0),\n (0.5, 0.0, 0.0),\n (1.0, 1.0, 1.0))}\n\nIf, as in this example, there are no discontinuities in the r, g, and b\ncomponents, then it is quite simple: the second and third element of\neach tuple, above, is the same--call it \"y\". The first element (\"x\")\ndefines interpolation intervals over the full range of 0 to 1, and it\nmust span that whole range. In other words, the values of x divide the\n0-to-1 range into a set of segments, and y gives the end-point color\nvalues for each segment.\n\nNow consider the green. cdict['green'] is saying that for\n0 <= x <= 0.25, y is zero; no green.\n0.25 < x <= 0.75, y varies linearly from 0 to 1.\nx > 0.75, y remains at 1, full green.\n\nIf there are discontinuities, then it is a little more complicated.\nLabel the 3 elements in each row in the cdict entry for a given color as\n(x, y0, y1). Then for values of x between x[i] and x[i+1] the color\nvalue is interpolated between y1[i] and y0[i+1].\n\nGoing back to the cookbook example, look at cdict['red']; because y0 !=\ny1, it is saying that for x from 0 to 0.5, red increases from 0 to 1,\nbut then it jumps down, so that for x from 0.5 to 1, red increases from\n0.7 to 1. Green ramps from 0 to 1 as x goes from 0 to 0.5, then jumps\nback to 0, and ramps back to 1 as x goes from 0.5 to 1.::\n\n row i: x y0 y1\n /\n /\n row i+1: x y0 y1\n\nAbove is an attempt to show that for x in the range x[i] to x[i+1], the\ninterpolation is between y1[i] and y0[i+1]. So, y0[0] and y1[-1] are\nnever used.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import LinearSegmentedColormap\n\n# Make some illustrative fake data:\n\nx = np.arange(0, np.pi, 0.1)\ny = np.arange(0, 2 * np.pi, 0.1)\nX, Y = np.meshgrid(x, y)\nZ = np.cos(X) * np.sin(Y) * 10" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "--- Colormaps from a list ---\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "colors = [(1, 0, 0), (0, 1, 0), (0, 0, 1)] # R -> G -> B\nn_bins = [3, 6, 10, 100] # Discretizes the interpolation into bins\ncmap_name = 'my_list'\nfig, axs = plt.subplots(2, 2, figsize=(6, 9))\nfig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05)\nfor n_bin, ax in zip(n_bins, axs.ravel()):\n # Create the colormap\n cm = LinearSegmentedColormap.from_list(\n cmap_name, colors, N=n_bin)\n # Fewer bins will result in \"coarser\" colomap interpolation\n im = ax.imshow(Z, interpolation='nearest', origin='lower', cmap=cm)\n ax.set_title(\"N bins: %s\" % n_bin)\n fig.colorbar(im, ax=ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "--- Custom colormaps ---\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cdict1 = {'red': ((0.0, 0.0, 0.0),\n (0.5, 0.0, 0.1),\n (1.0, 1.0, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (1.0, 0.0, 0.0)),\n\n 'blue': ((0.0, 0.0, 1.0),\n (0.5, 0.1, 0.0),\n (1.0, 0.0, 0.0))\n }\n\ncdict2 = {'red': ((0.0, 0.0, 0.0),\n (0.5, 0.0, 1.0),\n (1.0, 0.1, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (1.0, 0.0, 0.0)),\n\n 'blue': ((0.0, 0.0, 0.1),\n (0.5, 1.0, 0.0),\n (1.0, 0.0, 0.0))\n }\n\ncdict3 = {'red': ((0.0, 0.0, 0.0),\n (0.25, 0.0, 0.0),\n (0.5, 0.8, 1.0),\n (0.75, 1.0, 1.0),\n (1.0, 0.4, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (0.25, 0.0, 0.0),\n (0.5, 0.9, 0.9),\n (0.75, 0.0, 0.0),\n (1.0, 0.0, 0.0)),\n\n 'blue': ((0.0, 0.0, 0.4),\n (0.25, 1.0, 1.0),\n (0.5, 1.0, 0.8),\n (0.75, 0.0, 0.0),\n (1.0, 0.0, 0.0))\n }\n\n# Make a modified version of cdict3 with some transparency\n# in the middle of the range.\ncdict4 = {**cdict3,\n 'alpha': ((0.0, 1.0, 1.0),\n # (0.25,1.0, 1.0),\n (0.5, 0.3, 0.3),\n # (0.75,1.0, 1.0),\n (1.0, 1.0, 1.0)),\n }" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we will use this example to illustrate 3 ways of\nhandling custom colormaps.\nFirst, the most direct and explicit:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "blue_red1 = LinearSegmentedColormap('BlueRed1', cdict1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Second, create the map explicitly and register it.\nLike the first method, this method works with any kind\nof Colormap, not just\na LinearSegmentedColormap:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "blue_red2 = LinearSegmentedColormap('BlueRed2', cdict2)\nplt.register_cmap(cmap=blue_red2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Third, for LinearSegmentedColormap only,\nleave everything to register_cmap:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.register_cmap(name='BlueRed3', data=cdict3) # optional lut kwarg\nplt.register_cmap(name='BlueRedAlpha', data=cdict4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make the figure:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(6, 9))\nfig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05)\n\n# Make 4 subplots:\n\nim1 = axs[0, 0].imshow(Z, interpolation='nearest', cmap=blue_red1)\nfig.colorbar(im1, ax=axs[0, 0])\n\ncmap = plt.get_cmap('BlueRed2')\nim2 = axs[1, 0].imshow(Z, interpolation='nearest', cmap=cmap)\nfig.colorbar(im2, ax=axs[1, 0])\n\n# Now we will set the third cmap as the default. One would\n# not normally do this in the middle of a script like this;\n# it is done here just to illustrate the method.\n\nplt.rcParams['image.cmap'] = 'BlueRed3'\n\nim3 = axs[0, 1].imshow(Z, interpolation='nearest')\nfig.colorbar(im3, ax=axs[0, 1])\naxs[0, 1].set_title(\"Alpha = 1\")\n\n# Or as yet another variation, we can replace the rcParams\n# specification *before* the imshow with the following *after*\n# imshow.\n# This sets the new default *and* sets the colormap of the last\n# image-like item plotted via pyplot, if any.\n#\n\n# Draw a line with low zorder so it will be behind the image.\naxs[1, 1].plot([0, 10 * np.pi], [0, 20 * np.pi], color='c', lw=20, zorder=-1)\n\nim4 = axs[1, 1].imshow(Z, interpolation='nearest')\nfig.colorbar(im4, ax=axs[1, 1])\n\n# Here it is: changing the colormap for the current image and its\n# colorbar after they have been plotted.\nim4.set_cmap('BlueRedAlpha')\naxs[1, 1].set_title(\"Varying alpha\")\n#\n\nfig.suptitle('Custom Blue-Red colormaps', fontsize=16)\nfig.subplots_adjust(top=0.9)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors\nmatplotlib.colors.LinearSegmentedColormap\nmatplotlib.colors.LinearSegmentedColormap.from_list\nmatplotlib.cm\nmatplotlib.cm.ScalarMappable.set_cmap\nmatplotlib.pyplot.register_cmap\nmatplotlib.cm.register_cmap" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/767d70dd359be58abcb8ba99496d4432/barcode_demo.py b/_downloads/767d70dd359be58abcb8ba99496d4432/barcode_demo.py deleted file mode 100644 index 9c71084ca49..00000000000 --- a/_downloads/767d70dd359be58abcb8ba99496d4432/barcode_demo.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -============ -Barcode Demo -============ - -This demo shows how to produce a one-dimensional image, or "bar code". -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# the bar -x = np.random.rand(500) > 0.7 - -barprops = dict(aspect='auto', cmap='binary', interpolation='nearest') - -fig = plt.figure() - -# a vertical barcode -ax1 = fig.add_axes([0.1, 0.1, 0.1, 0.8]) -ax1.set_axis_off() -ax1.imshow(x.reshape((-1, 1)), **barprops) - -# a horizontal barcode -ax2 = fig.add_axes([0.3, 0.4, 0.6, 0.2]) -ax2.set_axis_off() -ax2.imshow(x.reshape((1, -1)), **barprops) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/767f1656aeefcea3dd29b8e898482340/broken_axis.py b/_downloads/767f1656aeefcea3dd29b8e898482340/broken_axis.py deleted file mode 100644 index 61395537879..00000000000 --- a/_downloads/767f1656aeefcea3dd29b8e898482340/broken_axis.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -=========== -Broken Axis -=========== - -Broken axis example, where the y-axis will have a portion cut out. -""" -import matplotlib.pyplot as plt -import numpy as np - - -# 30 points between [0, 0.2) originally made using np.random.rand(30)*.2 -pts = np.array([ - 0.015, 0.166, 0.133, 0.159, 0.041, 0.024, 0.195, 0.039, 0.161, 0.018, - 0.143, 0.056, 0.125, 0.096, 0.094, 0.051, 0.043, 0.021, 0.138, 0.075, - 0.109, 0.195, 0.050, 0.074, 0.079, 0.155, 0.020, 0.010, 0.061, 0.008]) - -# Now let's make two outlier points which are far away from everything. -pts[[3, 14]] += .8 - -# If we were to simply plot pts, we'd lose most of the interesting -# details due to the outliers. So let's 'break' or 'cut-out' the y-axis -# into two portions - use the top (ax) for the outliers, and the bottom -# (ax2) for the details of the majority of our data -f, (ax, ax2) = plt.subplots(2, 1, sharex=True) - -# plot the same data on both axes -ax.plot(pts) -ax2.plot(pts) - -# zoom-in / limit the view to different portions of the data -ax.set_ylim(.78, 1.) # outliers only -ax2.set_ylim(0, .22) # most of the data - -# hide the spines between ax and ax2 -ax.spines['bottom'].set_visible(False) -ax2.spines['top'].set_visible(False) -ax.xaxis.tick_top() -ax.tick_params(labeltop=False) # don't put tick labels at the top -ax2.xaxis.tick_bottom() - -# This looks pretty good, and was fairly painless, but you can get that -# cut-out diagonal lines look with just a bit more work. The important -# thing to know here is that in axes coordinates, which are always -# between 0-1, spine endpoints are at these locations (0,0), (0,1), -# (1,0), and (1,1). Thus, we just need to put the diagonals in the -# appropriate corners of each of our axes, and so long as we use the -# right transform and disable clipping. - -d = .015 # how big to make the diagonal lines in axes coordinates -# arguments to pass to plot, just so we don't keep repeating them -kwargs = dict(transform=ax.transAxes, color='k', clip_on=False) -ax.plot((-d, +d), (-d, +d), **kwargs) # top-left diagonal -ax.plot((1 - d, 1 + d), (-d, +d), **kwargs) # top-right diagonal - -kwargs.update(transform=ax2.transAxes) # switch to the bottom axes -ax2.plot((-d, +d), (1 - d, 1 + d), **kwargs) # bottom-left diagonal -ax2.plot((1 - d, 1 + d), (1 - d, 1 + d), **kwargs) # bottom-right diagonal - -# What's cool about this is that now if we vary the distance between -# ax and ax2 via f.subplots_adjust(hspace=...) or plt.subplot_tool(), -# the diagonal lines will move accordingly, and stay right at the tips -# of the spines they are 'breaking' - -plt.show() diff --git a/_downloads/76849ab1134a139edc718fb135ec5957/trisurf3d_2.ipynb b/_downloads/76849ab1134a139edc718fb135ec5957/trisurf3d_2.ipynb deleted file mode 120000 index f82d7d86b93..00000000000 --- a/_downloads/76849ab1134a139edc718fb135ec5957/trisurf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/76849ab1134a139edc718fb135ec5957/trisurf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/769c0e93e3c7b51f6fa3fe275ec30444/path_patch.ipynb b/_downloads/769c0e93e3c7b51f6fa3fe275ec30444/path_patch.ipynb deleted file mode 120000 index 23e21b8c7b9..00000000000 --- a/_downloads/769c0e93e3c7b51f6fa3fe275ec30444/path_patch.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/769c0e93e3c7b51f6fa3fe275ec30444/path_patch.ipynb \ No newline at end of file diff --git a/_downloads/76a9b4244d178c0035ef793b80a7130d/pyplot_scales.py b/_downloads/76a9b4244d178c0035ef793b80a7130d/pyplot_scales.py deleted file mode 100644 index 77536f350c8..00000000000 --- a/_downloads/76a9b4244d178c0035ef793b80a7130d/pyplot_scales.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -============= -Pyplot Scales -============= - -Create plots on different scales. Here a linear, a logarithmic, a symmetric -logarithmic and a logit scale are shown. For further examples also see the -:ref:`scales_examples` section of the gallery. -""" -import numpy as np -import matplotlib.pyplot as plt - -from matplotlib.ticker import NullFormatter # useful for `logit` scale - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# make up some data in the interval ]0, 1[ -y = np.random.normal(loc=0.5, scale=0.4, size=1000) -y = y[(y > 0) & (y < 1)] -y.sort() -x = np.arange(len(y)) - -# plot with various axes scales -plt.figure() - -# linear -plt.subplot(221) -plt.plot(x, y) -plt.yscale('linear') -plt.title('linear') -plt.grid(True) - - -# log -plt.subplot(222) -plt.plot(x, y) -plt.yscale('log') -plt.title('log') -plt.grid(True) - - -# symmetric log -plt.subplot(223) -plt.plot(x, y - y.mean()) -plt.yscale('symlog', linthreshy=0.01) -plt.title('symlog') -plt.grid(True) - -# logit -plt.subplot(224) -plt.plot(x, y) -plt.yscale('logit') -plt.title('logit') -plt.grid(True) -# Format the minor tick labels of the y-axis into empty strings with -# `NullFormatter`, to avoid cumbering the axis with too many labels. -plt.gca().yaxis.set_minor_formatter(NullFormatter()) -# Adjust the subplot layout, because the logit one may take more space -# than usual, due to y-tick labels like "1 - 10^{-3}" -plt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25, - wspace=0.35) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.subplot -matplotlib.pyplot.subplots_adjust -matplotlib.pyplot.gca -matplotlib.pyplot.yscale -matplotlib.ticker.NullFormatter -matplotlib.axis.Axis.set_minor_formatter diff --git a/_downloads/76b1d5e51167398b0c8ffbe7b21ba320/trisurf3d.py b/_downloads/76b1d5e51167398b0c8ffbe7b21ba320/trisurf3d.py deleted file mode 120000 index 5d3eb33588a..00000000000 --- a/_downloads/76b1d5e51167398b0c8ffbe7b21ba320/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/76b1d5e51167398b0c8ffbe7b21ba320/trisurf3d.py \ No newline at end of file diff --git a/_downloads/76b631d4ea203351eb2e0ffee89f9118/spines.ipynb b/_downloads/76b631d4ea203351eb2e0ffee89f9118/spines.ipynb deleted file mode 120000 index 77780273486..00000000000 --- a/_downloads/76b631d4ea203351eb2e0ffee89f9118/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/76b631d4ea203351eb2e0ffee89f9118/spines.ipynb \ No newline at end of file diff --git a/_downloads/76b73d2b97f106d20618b63241c6cc90/errorbar_limits.ipynb b/_downloads/76b73d2b97f106d20618b63241c6cc90/errorbar_limits.ipynb deleted file mode 120000 index aa3acdd22a9..00000000000 --- a/_downloads/76b73d2b97f106d20618b63241c6cc90/errorbar_limits.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/76b73d2b97f106d20618b63241c6cc90/errorbar_limits.ipynb \ No newline at end of file diff --git a/_downloads/76c1fb0d8dc7670dbc315aadde7a45c3/imshow_extent.ipynb b/_downloads/76c1fb0d8dc7670dbc315aadde7a45c3/imshow_extent.ipynb deleted file mode 120000 index 5bf1ae927fc..00000000000 --- a/_downloads/76c1fb0d8dc7670dbc315aadde7a45c3/imshow_extent.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/76c1fb0d8dc7670dbc315aadde7a45c3/imshow_extent.ipynb \ No newline at end of file diff --git a/_downloads/76c633127d97da26c8791a64d332d133/tick_label_right.ipynb b/_downloads/76c633127d97da26c8791a64d332d133/tick_label_right.ipynb deleted file mode 100644 index 9e030724a07..00000000000 --- a/_downloads/76c633127d97da26c8791a64d332d133/tick_label_right.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Set default y-axis tick labels on the right\n\n\nWe can use :rc:`ytick.labelright` (default False) and :rc:`ytick.right`\n(default False) and :rc:`ytick.labelleft` (default True) and :rc:`ytick.left`\n(default True) to control where on the axes ticks and their labels appear.\nThese properties can also be set in the ``.matplotlib/matplotlibrc``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nplt.rcParams['ytick.right'] = plt.rcParams['ytick.labelright'] = True\nplt.rcParams['ytick.left'] = plt.rcParams['ytick.labelleft'] = False\n\nx = np.arange(10)\n\nfig, (ax0, ax1) = plt.subplots(2, 1, sharex=True, figsize=(6, 6))\n\nax0.plot(x)\nax0.yaxis.tick_left()\n\n# use default parameter in rcParams, not calling tick_right()\nax1.plot(x)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/76ca9bbb872ad0a3dea8112738540410/rectangle_selector.py b/_downloads/76ca9bbb872ad0a3dea8112738540410/rectangle_selector.py deleted file mode 100644 index cbdaf802619..00000000000 --- a/_downloads/76ca9bbb872ad0a3dea8112738540410/rectangle_selector.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -================== -Rectangle Selector -================== - -Do a mouseclick somewhere, move the mouse to some destination, release -the button. This class gives click- and release-events and also draws -a line or a box from the click-point to the actual mouseposition -(within the same axes) until the button is released. Within the -method 'self.ignore()' it is checked whether the button from eventpress -and eventrelease are the same. -""" -from matplotlib.widgets import RectangleSelector -import numpy as np -import matplotlib.pyplot as plt - - -def line_select_callback(eclick, erelease): - 'eclick and erelease are the press and release events' - x1, y1 = eclick.xdata, eclick.ydata - x2, y2 = erelease.xdata, erelease.ydata - print("(%3.2f, %3.2f) --> (%3.2f, %3.2f)" % (x1, y1, x2, y2)) - print(" The button you used were: %s %s" % (eclick.button, erelease.button)) - - -def toggle_selector(event): - print(' Key pressed.') - if event.key in ['Q', 'q'] and toggle_selector.RS.active: - print(' RectangleSelector deactivated.') - toggle_selector.RS.set_active(False) - if event.key in ['A', 'a'] and not toggle_selector.RS.active: - print(' RectangleSelector activated.') - toggle_selector.RS.set_active(True) - - -fig, current_ax = plt.subplots() # make a new plotting range -N = 100000 # If N is large one can see -x = np.linspace(0.0, 10.0, N) # improvement by use blitting! - -plt.plot(x, +np.sin(.2*np.pi*x), lw=3.5, c='b', alpha=.7) # plot something -plt.plot(x, +np.cos(.2*np.pi*x), lw=3.5, c='r', alpha=.5) -plt.plot(x, -np.sin(.2*np.pi*x), lw=3.5, c='g', alpha=.3) - -print("\n click --> release") - -# drawtype is 'box' or 'line' or 'none' -toggle_selector.RS = RectangleSelector(current_ax, line_select_callback, - drawtype='box', useblit=True, - button=[1, 3], # don't use middle button - minspanx=5, minspany=5, - spancoords='pixels', - interactive=True) -plt.connect('key_press_event', toggle_selector) -plt.show() diff --git a/_downloads/76cc7bc43b675dff90116352e27785cd/interp_demo.py b/_downloads/76cc7bc43b675dff90116352e27785cd/interp_demo.py deleted file mode 120000 index 1af9a031bc7..00000000000 --- a/_downloads/76cc7bc43b675dff90116352e27785cd/interp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/76cc7bc43b675dff90116352e27785cd/interp_demo.py \ No newline at end of file diff --git a/_downloads/76d22a2a3903f241ad208040f988a3be/errorbar_features.ipynb b/_downloads/76d22a2a3903f241ad208040f988a3be/errorbar_features.ipynb deleted file mode 120000 index fa0aeeb7ee6..00000000000 --- a/_downloads/76d22a2a3903f241ad208040f988a3be/errorbar_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/76d22a2a3903f241ad208040f988a3be/errorbar_features.ipynb \ No newline at end of file diff --git a/_downloads/76d4903c53f6d4313a81e95111d261e5/demo_floating_axis.py b/_downloads/76d4903c53f6d4313a81e95111d261e5/demo_floating_axis.py deleted file mode 100644 index 4915df1c107..00000000000 --- a/_downloads/76d4903c53f6d4313a81e95111d261e5/demo_floating_axis.py +++ /dev/null @@ -1,70 +0,0 @@ -""" -================== -Demo Floating Axis -================== - -Axis within rectangular frame - -The following code demonstrates how to put a floating polar curve within a -rectangular box. In order to get a better sense of polar curves, please look at -demo_curvelinear_grid.py. -""" -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.angle_helper as angle_helper -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D -from mpl_toolkits.axisartist import SubplotHost -from mpl_toolkits.axisartist import GridHelperCurveLinear - - -def curvelinear_test2(fig): - """Polar projection, but in a rectangular box. - """ - # see demo_curvelinear_grid.py for details - tr = Affine2D().scale(np.pi / 180., 1.) + PolarAxes.PolarTransform() - - extreme_finder = angle_helper.ExtremeFinderCycle(20, - 20, - lon_cycle=360, - lat_cycle=None, - lon_minmax=None, - lat_minmax=(0, - np.inf), - ) - - grid_locator1 = angle_helper.LocatorDMS(12) - - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - tick_formatter1=tick_formatter1 - ) - - ax1 = SubplotHost(fig, 1, 1, 1, grid_helper=grid_helper) - - fig.add_subplot(ax1) - - # Now creates floating axis - - # floating axis whose first coordinate (theta) is fixed at 60 - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 60) - axis.label.set_text(r"$\theta = 60^{\circ}$") - axis.label.set_visible(True) - - # floating axis whose second coordinate (r) is fixed at 6 - ax1.axis["lon"] = axis = ax1.new_floating_axis(1, 6) - axis.label.set_text(r"$r = 6$") - - ax1.set_aspect(1.) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - ax1.grid(True) - - -fig = plt.figure(figsize=(5, 5)) -curvelinear_test2(fig) -plt.show() diff --git a/_downloads/76d6c26a60dc4c55561a3d10f161a759/hexbin_demo.ipynb b/_downloads/76d6c26a60dc4c55561a3d10f161a759/hexbin_demo.ipynb deleted file mode 120000 index c7afda8384f..00000000000 --- a/_downloads/76d6c26a60dc4c55561a3d10f161a759/hexbin_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/76d6c26a60dc4c55561a3d10f161a759/hexbin_demo.ipynb \ No newline at end of file diff --git a/_downloads/76dc46e1b1276cea5516039198d5d4ec/custom_boxstyle02.py b/_downloads/76dc46e1b1276cea5516039198d5d4ec/custom_boxstyle02.py deleted file mode 100644 index 5b2ef39d7a7..00000000000 --- a/_downloads/76dc46e1b1276cea5516039198d5d4ec/custom_boxstyle02.py +++ /dev/null @@ -1,79 +0,0 @@ -""" -================= -Custom Boxstyle02 -================= - -""" -from matplotlib.path import Path -from matplotlib.patches import BoxStyle -import matplotlib.pyplot as plt - - -# we may derive from matplotlib.patches.BoxStyle._Base class. -# You need to override transmute method in this case. -class MyStyle(BoxStyle._Base): - """ - A simple box. - """ - - def __init__(self, pad=0.3): - """ - The arguments need to be floating numbers and need to have - default values. - - *pad* - amount of padding - """ - - self.pad = pad - super().__init__() - - def transmute(self, x0, y0, width, height, mutation_size): - """ - Given the location and size of the box, return the path of - the box around it. - - - *x0*, *y0*, *width*, *height* : location and size of the box - - *mutation_size* : a reference scale for the mutation. - - Often, the *mutation_size* is the font size of the text. - You don't need to worry about the rotation as it is - automatically taken care of. - """ - - # padding - pad = mutation_size * self.pad - - # width and height with padding added. - width, height = width + 2.*pad, \ - height + 2.*pad, - - # boundary of the padded box - x0, y0 = x0-pad, y0-pad, - x1, y1 = x0+width, y0 + height - - cp = [(x0, y0), - (x1, y0), (x1, y1), (x0, y1), - (x0-pad, (y0+y1)/2.), (x0, y0), - (x0, y0)] - - com = [Path.MOVETO, - Path.LINETO, Path.LINETO, Path.LINETO, - Path.LINETO, Path.LINETO, - Path.CLOSEPOLY] - - path = Path(cp, com) - - return path - - -# register the custom style -BoxStyle._style_list["angled"] = MyStyle - -fig, ax = plt.subplots(figsize=(3, 3)) -ax.text(0.5, 0.5, "Test", size=30, va="center", ha="center", rotation=30, - bbox=dict(boxstyle="angled,pad=0.5", alpha=0.2)) - -del BoxStyle._style_list["angled"] - -plt.show() diff --git a/_downloads/76eccfdc0c6b932a119e5b09ff3a0d7f/scatter_masked.py b/_downloads/76eccfdc0c6b932a119e5b09ff3a0d7f/scatter_masked.py deleted file mode 100644 index 22c0943bf28..00000000000 --- a/_downloads/76eccfdc0c6b932a119e5b09ff3a0d7f/scatter_masked.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============== -Scatter Masked -============== - -Mask some data points and add a line demarking -masked regions. - -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -N = 100 -r0 = 0.6 -x = 0.9 * np.random.rand(N) -y = 0.9 * np.random.rand(N) -area = (20 * np.random.rand(N))**2 # 0 to 10 point radii -c = np.sqrt(area) -r = np.sqrt(x ** 2 + y ** 2) -area1 = np.ma.masked_where(r < r0, area) -area2 = np.ma.masked_where(r >= r0, area) -plt.scatter(x, y, s=area1, marker='^', c=c) -plt.scatter(x, y, s=area2, marker='o', c=c) -# Show the boundary between the regions: -theta = np.arange(0, np.pi / 2, 0.01) -plt.plot(r0 * np.cos(theta), r0 * np.sin(theta)) - -plt.show() diff --git a/_downloads/76ed59ea914a46d17d07b24a968916ce/offset.ipynb b/_downloads/76ed59ea914a46d17d07b24a968916ce/offset.ipynb deleted file mode 120000 index b82bbe21cdb..00000000000 --- a/_downloads/76ed59ea914a46d17d07b24a968916ce/offset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/76ed59ea914a46d17d07b24a968916ce/offset.ipynb \ No newline at end of file diff --git a/_downloads/76ed725f308c0716e47da0298cbcedb0/power_norm.ipynb b/_downloads/76ed725f308c0716e47da0298cbcedb0/power_norm.ipynb deleted file mode 120000 index 5cb57359198..00000000000 --- a/_downloads/76ed725f308c0716e47da0298cbcedb0/power_norm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/76ed725f308c0716e47da0298cbcedb0/power_norm.ipynb \ No newline at end of file diff --git a/_downloads/76ee206a5b55214ad6fe419c3bf436fa/scales.ipynb b/_downloads/76ee206a5b55214ad6fe419c3bf436fa/scales.ipynb deleted file mode 120000 index 726bd88ebc1..00000000000 --- a/_downloads/76ee206a5b55214ad6fe419c3bf436fa/scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/76ee206a5b55214ad6fe419c3bf436fa/scales.ipynb \ No newline at end of file diff --git a/_downloads/76eeaf2f5875af2093f6f28164b8f123/tripcolor_demo.ipynb b/_downloads/76eeaf2f5875af2093f6f28164b8f123/tripcolor_demo.ipynb deleted file mode 120000 index dbb69d6dc89..00000000000 --- a/_downloads/76eeaf2f5875af2093f6f28164b8f123/tripcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/76eeaf2f5875af2093f6f28164b8f123/tripcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/77032c2b163634e32437dcb55d63f85f/tutorials_python.zip b/_downloads/77032c2b163634e32437dcb55d63f85f/tutorials_python.zip deleted file mode 120000 index 94ad0cb9ff7..00000000000 --- a/_downloads/77032c2b163634e32437dcb55d63f85f/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77032c2b163634e32437dcb55d63f85f/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/770a43913349d2ae760686574b638f2c/gallery_python.zip b/_downloads/770a43913349d2ae760686574b638f2c/gallery_python.zip deleted file mode 120000 index 95825dd3d5d..00000000000 --- a/_downloads/770a43913349d2ae760686574b638f2c/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.1/_downloads/770a43913349d2ae760686574b638f2c/gallery_python.zip \ No newline at end of file diff --git a/_downloads/77149cbcd916ce4a48ba0eba6b2ccfdd/multipage_pdf.ipynb b/_downloads/77149cbcd916ce4a48ba0eba6b2ccfdd/multipage_pdf.ipynb deleted file mode 120000 index 5e5826aa52f..00000000000 --- a/_downloads/77149cbcd916ce4a48ba0eba6b2ccfdd/multipage_pdf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77149cbcd916ce4a48ba0eba6b2ccfdd/multipage_pdf.ipynb \ No newline at end of file diff --git a/_downloads/771a4e16511018684741b42d5c4f8a13/customized_violin.ipynb b/_downloads/771a4e16511018684741b42d5c4f8a13/customized_violin.ipynb deleted file mode 100644 index e2a43ab5fc5..00000000000 --- a/_downloads/771a4e16511018684741b42d5c4f8a13/customized_violin.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Violin plot customization\n\n\nThis example demonstrates how to fully customize violin plots.\nThe first plot shows the default style by providing only\nthe data. The second plot first limits what matplotlib draws\nwith additional kwargs. Then a simplified representation of\na box plot is drawn on top. Lastly, the styles of the artists\nof the violins are modified.\n\nFor more information on violin plots, the scikit-learn docs have a great\nsection: http://scikit-learn.org/stable/modules/density.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef adjacent_values(vals, q1, q3):\n upper_adjacent_value = q3 + (q3 - q1) * 1.5\n upper_adjacent_value = np.clip(upper_adjacent_value, q3, vals[-1])\n\n lower_adjacent_value = q1 - (q3 - q1) * 1.5\n lower_adjacent_value = np.clip(lower_adjacent_value, vals[0], q1)\n return lower_adjacent_value, upper_adjacent_value\n\n\ndef set_axis_style(ax, labels):\n ax.get_xaxis().set_tick_params(direction='out')\n ax.xaxis.set_ticks_position('bottom')\n ax.set_xticks(np.arange(1, len(labels) + 1))\n ax.set_xticklabels(labels)\n ax.set_xlim(0.25, len(labels) + 0.75)\n ax.set_xlabel('Sample name')\n\n\n# create test data\nnp.random.seed(19680801)\ndata = [sorted(np.random.normal(0, std, 100)) for std in range(1, 5)]\n\nfig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2, figsize=(9, 4), sharey=True)\n\nax1.set_title('Default violin plot')\nax1.set_ylabel('Observed values')\nax1.violinplot(data)\n\nax2.set_title('Customized violin plot')\nparts = ax2.violinplot(\n data, showmeans=False, showmedians=False,\n showextrema=False)\n\nfor pc in parts['bodies']:\n pc.set_facecolor('#D43F3A')\n pc.set_edgecolor('black')\n pc.set_alpha(1)\n\nquartile1, medians, quartile3 = np.percentile(data, [25, 50, 75], axis=1)\nwhiskers = np.array([\n adjacent_values(sorted_array, q1, q3)\n for sorted_array, q1, q3 in zip(data, quartile1, quartile3)])\nwhiskersMin, whiskersMax = whiskers[:, 0], whiskers[:, 1]\n\ninds = np.arange(1, len(medians) + 1)\nax2.scatter(inds, medians, marker='o', color='white', s=30, zorder=3)\nax2.vlines(inds, quartile1, quartile3, color='k', linestyle='-', lw=5)\nax2.vlines(inds, whiskersMin, whiskersMax, color='k', linestyle='-', lw=1)\n\n# set style for the axes\nlabels = ['A', 'B', 'C', 'D']\nfor ax in [ax1, ax2]:\n set_axis_style(ax, labels)\n\nplt.subplots_adjust(bottom=0.15, wspace=0.05)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/77232d5780ab2d9b30c347cef2e7f758/demo_axis_direction.py b/_downloads/77232d5780ab2d9b30c347cef2e7f758/demo_axis_direction.py deleted file mode 120000 index 022e5ccb318..00000000000 --- a/_downloads/77232d5780ab2d9b30c347cef2e7f758/demo_axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77232d5780ab2d9b30c347cef2e7f758/demo_axis_direction.py \ No newline at end of file diff --git a/_downloads/772358a333cca348b3cda5b5fbc7ba96/ganged_plots.py b/_downloads/772358a333cca348b3cda5b5fbc7ba96/ganged_plots.py deleted file mode 120000 index ae5b99abbe9..00000000000 --- a/_downloads/772358a333cca348b3cda5b5fbc7ba96/ganged_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/772358a333cca348b3cda5b5fbc7ba96/ganged_plots.py \ No newline at end of file diff --git a/_downloads/772362e9c180fb2cf00a59717ffbdddf/mri_with_eeg.py b/_downloads/772362e9c180fb2cf00a59717ffbdddf/mri_with_eeg.py deleted file mode 100644 index 0f622bf42a6..00000000000 --- a/_downloads/772362e9c180fb2cf00a59717ffbdddf/mri_with_eeg.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============ -MRI With EEG -============ - -Displays a set of subplots with an MRI image, its intensity -histogram and some EEG traces. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import matplotlib.cm as cm - -from matplotlib.collections import LineCollection -from matplotlib.ticker import MultipleLocator - -fig = plt.figure("MRI_with_EEG") - -# Load the MRI data (256x256 16 bit integers) -with cbook.get_sample_data('s1045.ima.gz') as dfile: - im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256)) - -# Plot the MRI image -ax0 = fig.add_subplot(2, 2, 1) -ax0.imshow(im, cmap=cm.gray) -ax0.axis('off') - -# Plot the histogram of MRI intensity -ax1 = fig.add_subplot(2, 2, 2) -im = np.ravel(im) -im = im[np.nonzero(im)] # Ignore the background -im = im / (2**16 - 1) # Normalize -ax1.hist(im, bins=100) -ax1.xaxis.set_major_locator(MultipleLocator(0.4)) -ax1.minorticks_on() -ax1.set_yticks([]) -ax1.set_xlabel('Intensity (a.u.)') -ax1.set_ylabel('MRI density') - -# Load the EEG data -n_samples, n_rows = 800, 4 -with cbook.get_sample_data('eeg.dat') as eegfile: - data = np.fromfile(eegfile, dtype=float).reshape((n_samples, n_rows)) -t = 10 * np.arange(n_samples) / n_samples - -# Plot the EEG -ticklocs = [] -ax2 = fig.add_subplot(2, 1, 2) -ax2.set_xlim(0, 10) -ax2.set_xticks(np.arange(10)) -dmin = data.min() -dmax = data.max() -dr = (dmax - dmin) * 0.7 # Crowd them a bit. -y0 = dmin -y1 = (n_rows - 1) * dr + dmax -ax2.set_ylim(y0, y1) - -segs = [] -for i in range(n_rows): - segs.append(np.column_stack((t, data[:, i]))) - ticklocs.append(i * dr) - -offsets = np.zeros((n_rows, 2), dtype=float) -offsets[:, 1] = ticklocs - -lines = LineCollection(segs, offsets=offsets, transOffset=None) -ax2.add_collection(lines) - -# Set the yticks to use axes coordinates on the y axis -ax2.set_yticks(ticklocs) -ax2.set_yticklabels(['PG3', 'PG5', 'PG7', 'PG9']) - -ax2.set_xlabel('Time (s)') - - -plt.tight_layout() -plt.show() diff --git a/_downloads/772bbcd26b7a1302e630866258c4f443/dynamic_image.ipynb b/_downloads/772bbcd26b7a1302e630866258c4f443/dynamic_image.ipynb deleted file mode 100644 index c9499c4f5d3..00000000000 --- a/_downloads/772bbcd26b7a1302e630866258c4f443/dynamic_image.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated image using a precomputed list of images\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\nfig = plt.figure()\n\n\ndef f(x, y):\n return np.sin(x) + np.cos(y)\n\nx = np.linspace(0, 2 * np.pi, 120)\ny = np.linspace(0, 2 * np.pi, 100).reshape(-1, 1)\n# ims is a list of lists, each row is a list of artists to draw in the\n# current frame; here we are just animating one artist, the image, in\n# each frame\nims = []\nfor i in range(60):\n x += np.pi / 15.\n y += np.pi / 20.\n im = plt.imshow(f(x, y), animated=True)\n ims.append([im])\n\nani = animation.ArtistAnimation(fig, ims, interval=50, blit=True,\n repeat_delay=1000)\n\n# To save the animation, use e.g.\n#\n# ani.save(\"movie.mp4\")\n#\n# or\n#\n# from matplotlib.animation import FFMpegWriter\n# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800)\n# ani.save(\"movie.mp4\", writer=writer)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/773618d1a01ef5c51097762e35e8c58c/evans_test.py b/_downloads/773618d1a01ef5c51097762e35e8c58c/evans_test.py deleted file mode 120000 index d75d6ca693a..00000000000 --- a/_downloads/773618d1a01ef5c51097762e35e8c58c/evans_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/773618d1a01ef5c51097762e35e8c58c/evans_test.py \ No newline at end of file diff --git a/_downloads/77550042a01dcd1a97d5da1ff2cec98a/embedding_webagg_sgskip.py b/_downloads/77550042a01dcd1a97d5da1ff2cec98a/embedding_webagg_sgskip.py deleted file mode 100644 index 91ecd69fe20..00000000000 --- a/_downloads/77550042a01dcd1a97d5da1ff2cec98a/embedding_webagg_sgskip.py +++ /dev/null @@ -1,249 +0,0 @@ -""" -================ -Embedding WebAgg -================ - -This example demonstrates how to embed matplotlib WebAgg interactive -plotting in your own web application and framework. It is not -necessary to do all this if you merely want to display a plot in a -browser or use matplotlib's built-in Tornado-based server "on the -side". - -The framework being used must support web sockets. -""" - -import io - -try: - import tornado -except ImportError: - raise RuntimeError("This example requires tornado.") -import tornado.web -import tornado.httpserver -import tornado.ioloop -import tornado.websocket - - -from matplotlib.backends.backend_webagg_core import ( - FigureManagerWebAgg, new_figure_manager_given_figure) -from matplotlib.figure import Figure - -import numpy as np - -import json - - -def create_figure(): - """ - Creates a simple example figure. - """ - fig = Figure() - a = fig.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2 * np.pi * t) - a.plot(t, s) - return fig - - -# The following is the content of the web page. You would normally -# generate this using some sort of template facility in your web -# framework, but here we just use Python string formatting. -html_content = """ - - - - - - - - - - - - - - matplotlib - - - -
-
- - -""" - - -class MyApplication(tornado.web.Application): - class MainPage(tornado.web.RequestHandler): - """ - Serves the main HTML page. - """ - - def get(self): - manager = self.application.manager - ws_uri = "ws://{req.host}/".format(req=self.request) - content = html_content % { - "ws_uri": ws_uri, "fig_id": manager.num} - self.write(content) - - class MplJs(tornado.web.RequestHandler): - """ - Serves the generated matplotlib javascript file. The content - is dynamically generated based on which toolbar functions the - user has defined. Call `FigureManagerWebAgg` to get its - content. - """ - - def get(self): - self.set_header('Content-Type', 'application/javascript') - js_content = FigureManagerWebAgg.get_javascript() - - self.write(js_content) - - class Download(tornado.web.RequestHandler): - """ - Handles downloading of the figure in various file formats. - """ - - def get(self, fmt): - manager = self.application.manager - - mimetypes = { - 'ps': 'application/postscript', - 'eps': 'application/postscript', - 'pdf': 'application/pdf', - 'svg': 'image/svg+xml', - 'png': 'image/png', - 'jpeg': 'image/jpeg', - 'tif': 'image/tiff', - 'emf': 'application/emf' - } - - self.set_header('Content-Type', mimetypes.get(fmt, 'binary')) - - buff = io.BytesIO() - manager.canvas.figure.savefig(buff, format=fmt) - self.write(buff.getvalue()) - - class WebSocket(tornado.websocket.WebSocketHandler): - """ - A websocket for interactive communication between the plot in - the browser and the server. - - In addition to the methods required by tornado, it is required to - have two callback methods: - - - ``send_json(json_content)`` is called by matplotlib when - it needs to send json to the browser. `json_content` is - a JSON tree (Python dictionary), and it is the responsibility - of this implementation to encode it as a string to send over - the socket. - - - ``send_binary(blob)`` is called to send binary image data - to the browser. - """ - supports_binary = True - - def open(self): - # Register the websocket with the FigureManager. - manager = self.application.manager - manager.add_web_socket(self) - if hasattr(self, 'set_nodelay'): - self.set_nodelay(True) - - def on_close(self): - # When the socket is closed, deregister the websocket with - # the FigureManager. - manager = self.application.manager - manager.remove_web_socket(self) - - def on_message(self, message): - # The 'supports_binary' message is relevant to the - # websocket itself. The other messages get passed along - # to matplotlib as-is. - - # Every message has a "type" and a "figure_id". - message = json.loads(message) - if message['type'] == 'supports_binary': - self.supports_binary = message['value'] - else: - manager = self.application.manager - manager.handle_json(message) - - def send_json(self, content): - self.write_message(json.dumps(content)) - - def send_binary(self, blob): - if self.supports_binary: - self.write_message(blob, binary=True) - else: - data_uri = "data:image/png;base64,{0}".format( - blob.encode('base64').replace('\n', '')) - self.write_message(data_uri) - - def __init__(self, figure): - self.figure = figure - self.manager = new_figure_manager_given_figure(id(figure), figure) - - super().__init__([ - # Static files for the CSS and JS - (r'/_static/(.*)', - tornado.web.StaticFileHandler, - {'path': FigureManagerWebAgg.get_static_file_path()}), - - # The page that contains all of the pieces - ('/', self.MainPage), - - ('/mpl.js', self.MplJs), - - # Sends images and events to the browser, and receives - # events from the browser - ('/ws', self.WebSocket), - - # Handles the downloading (i.e., saving) of static images - (r'/download.([a-z0-9.]+)', self.Download), - ]) - - -if __name__ == "__main__": - figure = create_figure() - application = MyApplication(figure) - - http_server = tornado.httpserver.HTTPServer(application) - http_server.listen(8080) - - print("http://127.0.0.1:8080/") - print("Press Ctrl+C to quit") - - tornado.ioloop.IOLoop.instance().start() diff --git a/_downloads/7757a8adfc46277c355c4ec0d4665573/connect_simple01.py b/_downloads/7757a8adfc46277c355c4ec0d4665573/connect_simple01.py deleted file mode 120000 index 4c12732d1b3..00000000000 --- a/_downloads/7757a8adfc46277c355c4ec0d4665573/connect_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7757a8adfc46277c355c4ec0d4665573/connect_simple01.py \ No newline at end of file diff --git a/_downloads/7759258b4a77d2851fa92aaaa8f172cb/dolphin.ipynb b/_downloads/7759258b4a77d2851fa92aaaa8f172cb/dolphin.ipynb deleted file mode 100644 index 870935b35f5..00000000000 --- a/_downloads/7759258b4a77d2851fa92aaaa8f172cb/dolphin.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dolphins\n\n\nThis example shows how to draw, and manipulate shapes given vertices\nand nodes using the `~.path.Path`, `~.patches.PathPatch` and\n`~matplotlib.transforms` classes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.cm as cm\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Circle, PathPatch\nfrom matplotlib.path import Path\nfrom matplotlib.transforms import Affine2D\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nr = np.random.rand(50)\nt = np.random.rand(50) * np.pi * 2.0\nx = r * np.cos(t)\ny = r * np.sin(t)\n\nfig, ax = plt.subplots(figsize=(6, 6))\ncircle = Circle((0, 0), 1, facecolor='none',\n edgecolor=(0, 0.8, 0.8), linewidth=3, alpha=0.5)\nax.add_patch(circle)\n\nim = plt.imshow(np.random.random((100, 100)),\n origin='lower', cmap=cm.winter,\n interpolation='spline36',\n extent=([-1, 1, -1, 1]))\nim.set_clip_path(circle)\n\nplt.plot(x, y, 'o', color=(0.9, 0.9, 1.0), alpha=0.8)\n\n# Dolphin from OpenClipart library by Andy Fitzsimon\n# \n# \n# \n# \n# \n\ndolphin = \"\"\"\nM -0.59739425,160.18173 C -0.62740401,160.18885 -0.57867129,160.11183\n-0.57867129,160.11183 C -0.57867129,160.11183 -0.5438361,159.89315\n-0.39514638,159.81496 C -0.24645668,159.73678 -0.18316813,159.71981\n-0.18316813,159.71981 C -0.18316813,159.71981 -0.10322971,159.58124\n-0.057804323,159.58725 C -0.029723983,159.58913 -0.061841603,159.60356\n-0.071265813,159.62815 C -0.080250183,159.65325 -0.082918513,159.70554\n-0.061841203,159.71248 C -0.040763903,159.7194 -0.0066711426,159.71091\n0.077336307,159.73612 C 0.16879567,159.76377 0.28380306,159.86448\n0.31516668,159.91533 C 0.3465303,159.96618 0.5011127,160.1771\n0.5011127,160.1771 C 0.63668998,160.19238 0.67763022,160.31259\n0.66556395,160.32668 C 0.65339985,160.34212 0.66350443,160.33642\n0.64907098,160.33088 C 0.63463742,160.32533 0.61309688,160.297\n0.5789627,160.29339 C 0.54348657,160.28968 0.52329693,160.27674\n0.50728856,160.27737 C 0.49060916,160.27795 0.48965803,160.31565\n0.46114204,160.33673 C 0.43329696,160.35786 0.4570711,160.39871\n0.43309565,160.40685 C 0.4105108,160.41442 0.39416631,160.33027\n0.3954995,160.2935 C 0.39683269,160.25672 0.43807996,160.21522\n0.44567915,160.19734 C 0.45327833,160.17946 0.27946869,159.9424\n-0.061852613,159.99845 C -0.083965233,160.0427 -0.26176109,160.06683\n-0.26176109,160.06683 C -0.30127962,160.07028 -0.21167141,160.09731\n-0.24649368,160.1011 C -0.32642366,160.11569 -0.34521187,160.06895\n-0.40622293,160.0819 C -0.467234,160.09485 -0.56738444,160.17461\n-0.59739425,160.18173\n\"\"\"\n\nvertices = []\ncodes = []\nparts = dolphin.split()\ni = 0\ncode_map = {\n 'M': (Path.MOVETO, 1),\n 'C': (Path.CURVE4, 3),\n 'L': (Path.LINETO, 1)}\n\nwhile i < len(parts):\n code = parts[i]\n path_code, npoints = code_map[code]\n codes.extend([path_code] * npoints)\n vertices.extend([[float(x) for x in y.split(',')] for y in\n parts[i + 1:i + npoints + 1]])\n i += npoints + 1\nvertices = np.array(vertices, float)\nvertices[:, 1] -= 160\n\ndolphin_path = Path(vertices, codes)\ndolphin_patch = PathPatch(dolphin_path, facecolor=(0.6, 0.6, 0.6),\n edgecolor=(0.0, 0.0, 0.0))\nax.add_patch(dolphin_patch)\n\nvertices = Affine2D().rotate_deg(60).transform(vertices)\ndolphin_path2 = Path(vertices, codes)\ndolphin_patch2 = PathPatch(dolphin_path2, facecolor=(0.5, 0.5, 0.5),\n edgecolor=(0.0, 0.0, 0.0))\nax.add_patch(dolphin_patch2)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.patches.Circle\nmatplotlib.axes.Axes.add_patch\nmatplotlib.transforms\nmatplotlib.transforms.Affine2D\nmatplotlib.transforms.Affine2D.rotate_deg" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7763133f4729398c10f7dcf7a8171b0e/toolmanager_sgskip.py b/_downloads/7763133f4729398c10f7dcf7a8171b0e/toolmanager_sgskip.py deleted file mode 120000 index ea483dfba3c..00000000000 --- a/_downloads/7763133f4729398c10f7dcf7a8171b0e/toolmanager_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7763133f4729398c10f7dcf7a8171b0e/toolmanager_sgskip.py \ No newline at end of file diff --git a/_downloads/7769822d44c75e67a774a10e19660713/matshow.py b/_downloads/7769822d44c75e67a774a10e19660713/matshow.py deleted file mode 120000 index 460906776ee..00000000000 --- a/_downloads/7769822d44c75e67a774a10e19660713/matshow.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7769822d44c75e67a774a10e19660713/matshow.py \ No newline at end of file diff --git a/_downloads/7773e82aca62130e700b147505be37d4/barcode_demo.py b/_downloads/7773e82aca62130e700b147505be37d4/barcode_demo.py deleted file mode 120000 index 1bf846bd56b..00000000000 --- a/_downloads/7773e82aca62130e700b147505be37d4/barcode_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7773e82aca62130e700b147505be37d4/barcode_demo.py \ No newline at end of file diff --git a/_downloads/77867af61bb84d79f8cebbe8f221b552/mathtext_examples.py b/_downloads/77867af61bb84d79f8cebbe8f221b552/mathtext_examples.py deleted file mode 120000 index ba0307e77b3..00000000000 --- a/_downloads/77867af61bb84d79f8cebbe8f221b552/mathtext_examples.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/77867af61bb84d79f8cebbe8f221b552/mathtext_examples.py \ No newline at end of file diff --git a/_downloads/778bf38d1f62cf91aaca96dd8e9eba0e/aspect_loglog.py b/_downloads/778bf38d1f62cf91aaca96dd8e9eba0e/aspect_loglog.py deleted file mode 120000 index bfc4ea0c809..00000000000 --- a/_downloads/778bf38d1f62cf91aaca96dd8e9eba0e/aspect_loglog.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/778bf38d1f62cf91aaca96dd8e9eba0e/aspect_loglog.py \ No newline at end of file diff --git a/_downloads/778e31acf267f2ef3d4eb971d52af696/usetex_fonteffects.py b/_downloads/778e31acf267f2ef3d4eb971d52af696/usetex_fonteffects.py deleted file mode 120000 index 9747569fc1b..00000000000 --- a/_downloads/778e31acf267f2ef3d4eb971d52af696/usetex_fonteffects.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/778e31acf267f2ef3d4eb971d52af696/usetex_fonteffects.py \ No newline at end of file diff --git a/_downloads/779e848506cf7b3883ee44dd8065793e/polar_demo.ipynb b/_downloads/779e848506cf7b3883ee44dd8065793e/polar_demo.ipynb deleted file mode 120000 index b341b360e97..00000000000 --- a/_downloads/779e848506cf7b3883ee44dd8065793e/polar_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/779e848506cf7b3883ee44dd8065793e/polar_demo.ipynb \ No newline at end of file diff --git a/_downloads/77b180f5c80306344ce2bace0442c040/date.py b/_downloads/77b180f5c80306344ce2bace0442c040/date.py deleted file mode 120000 index a1bc1057cf0..00000000000 --- a/_downloads/77b180f5c80306344ce2bace0442c040/date.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/77b180f5c80306344ce2bace0442c040/date.py \ No newline at end of file diff --git a/_downloads/77b63ffdc0dfbd4e2679392a28f41f58/simple_axisline2.py b/_downloads/77b63ffdc0dfbd4e2679392a28f41f58/simple_axisline2.py deleted file mode 100644 index c0523f33da5..00000000000 --- a/_downloads/77b63ffdc0dfbd4e2679392a28f41f58/simple_axisline2.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -================ -Simple Axisline2 -================ - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axisartist.axislines import SubplotZero -import numpy as np - -fig = plt.figure(figsize=(4, 3)) - -# a subplot with two additional axis, "xzero" and "yzero". "xzero" is -# y=0 line, and "yzero" is x=0 line. -ax = SubplotZero(fig, 1, 1, 1) -fig.add_subplot(ax) - -# make xzero axis (horizontal axis line through y=0) visible. -ax.axis["xzero"].set_visible(True) -ax.axis["xzero"].label.set_text("Axis Zero") - -# make other axis (bottom, top, right) invisible. -for n in ["bottom", "top", "right"]: - ax.axis[n].set_visible(False) - -xx = np.arange(0, 2*np.pi, 0.01) -ax.plot(xx, np.sin(xx)) - -plt.show() diff --git a/_downloads/77bc84a5707b4a8838b4e3b845ec486c/contour_manual.ipynb b/_downloads/77bc84a5707b4a8838b4e3b845ec486c/contour_manual.ipynb deleted file mode 100644 index b0e58b8a6ce..00000000000 --- a/_downloads/77bc84a5707b4a8838b4e3b845ec486c/contour_manual.ipynb +++ /dev/null @@ -1,119 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Manual Contour\n\n\nExample of displaying your own contour lines and polygons using ContourSet.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.contour import ContourSet\nimport matplotlib.cm as cm" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Contour lines for each level are a list/tuple of polygons.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "lines0 = [[[0, 0], [0, 4]]]\nlines1 = [[[2, 0], [1, 2], [1, 3]]]\nlines2 = [[[3, 0], [3, 2]], [[3, 3], [3, 4]]] # Note two lines." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Filled contours between two levels are also a list/tuple of polygons.\nPoints can be ordered clockwise or anticlockwise.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "filled01 = [[[0, 0], [0, 4], [1, 3], [1, 2], [2, 0]]]\nfilled12 = [[[2, 0], [3, 0], [3, 2], [1, 3], [1, 2]], # Note two polygons.\n [[1, 4], [3, 4], [3, 3]]]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\n# Filled contours using filled=True.\ncs = ContourSet(ax, [0, 1, 2], [filled01, filled12], filled=True, cmap=cm.bone)\ncbar = fig.colorbar(cs)\n\n# Contour lines (non-filled).\nlines = ContourSet(\n ax, [0, 1, 2], [lines0, lines1, lines2], cmap=cm.cool, linewidths=3)\ncbar.add_lines(lines)\n\nax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 4.5),\n title='User-specified contours')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Multiple filled contour lines can be specified in a single list of polygon\nvertices along with a list of vertex kinds (code types) as described in the\nPath class. This is particularly useful for polygons with holes.\nHere a code type of 1 is a MOVETO, and 2 is a LINETO.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nfilled01 = [[[0, 0], [3, 0], [3, 3], [0, 3], [1, 1], [1, 2], [2, 2], [2, 1]]]\nkinds01 = [[1, 2, 2, 2, 1, 2, 2, 2]]\ncs = ContourSet(ax, [0, 1], [filled01], [kinds01], filled=True)\ncbar = fig.colorbar(cs)\n\nax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 3.5),\n title='User specified filled contours with holes')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/77c306d2c67a874dadc0272df81f4f5c/barh.py b/_downloads/77c306d2c67a874dadc0272df81f4f5c/barh.py deleted file mode 120000 index 2f70978eaf0..00000000000 --- a/_downloads/77c306d2c67a874dadc0272df81f4f5c/barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77c306d2c67a874dadc0272df81f4f5c/barh.py \ No newline at end of file diff --git a/_downloads/77cc048c19cfe21d6f4d8a0479a0a8cd/lines3d.py b/_downloads/77cc048c19cfe21d6f4d8a0479a0a8cd/lines3d.py deleted file mode 120000 index 36a0044efb9..00000000000 --- a/_downloads/77cc048c19cfe21d6f4d8a0479a0a8cd/lines3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/77cc048c19cfe21d6f4d8a0479a0a8cd/lines3d.py \ No newline at end of file diff --git a/_downloads/77cca4660da2da7dcbf986d62d9fc4ed/demo_gridspec06.ipynb b/_downloads/77cca4660da2da7dcbf986d62d9fc4ed/demo_gridspec06.ipynb deleted file mode 120000 index 5d009f1d23c..00000000000 --- a/_downloads/77cca4660da2da7dcbf986d62d9fc4ed/demo_gridspec06.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77cca4660da2da7dcbf986d62d9fc4ed/demo_gridspec06.ipynb \ No newline at end of file diff --git a/_downloads/77d0d6c2d02582d80df43b9b9e78610c/horizontal_barchart_distribution.py b/_downloads/77d0d6c2d02582d80df43b9b9e78610c/horizontal_barchart_distribution.py deleted file mode 120000 index d78005ad1ed..00000000000 --- a/_downloads/77d0d6c2d02582d80df43b9b9e78610c/horizontal_barchart_distribution.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/77d0d6c2d02582d80df43b9b9e78610c/horizontal_barchart_distribution.py \ No newline at end of file diff --git a/_downloads/77d36e116e4294fbeaa34e1fb620ab24/auto_subplots_adjust.ipynb b/_downloads/77d36e116e4294fbeaa34e1fb620ab24/auto_subplots_adjust.ipynb deleted file mode 120000 index ee809fba302..00000000000 --- a/_downloads/77d36e116e4294fbeaa34e1fb620ab24/auto_subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/77d36e116e4294fbeaa34e1fb620ab24/auto_subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/77d9fa1895777883fc8274b1bdce1579/donut.py b/_downloads/77d9fa1895777883fc8274b1bdce1579/donut.py deleted file mode 120000 index 6f2bde1f901..00000000000 --- a/_downloads/77d9fa1895777883fc8274b1bdce1579/donut.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/77d9fa1895777883fc8274b1bdce1579/donut.py \ No newline at end of file diff --git a/_downloads/77dacdb60f626feb04a50a522de01ef6/scatter_custom_symbol.ipynb b/_downloads/77dacdb60f626feb04a50a522de01ef6/scatter_custom_symbol.ipynb deleted file mode 120000 index 7537ad3b8fb..00000000000 --- a/_downloads/77dacdb60f626feb04a50a522de01ef6/scatter_custom_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/77dacdb60f626feb04a50a522de01ef6/scatter_custom_symbol.ipynb \ No newline at end of file diff --git a/_downloads/77e24022fbb51ef7323f4c70beb15bdf/axes_props.py b/_downloads/77e24022fbb51ef7323f4c70beb15bdf/axes_props.py deleted file mode 120000 index 70146b9ab75..00000000000 --- a/_downloads/77e24022fbb51ef7323f4c70beb15bdf/axes_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/77e24022fbb51ef7323f4c70beb15bdf/axes_props.py \ No newline at end of file diff --git a/_downloads/77ee3e1b3df7385df375457d0b2fd0e7/legend_guide.ipynb b/_downloads/77ee3e1b3df7385df375457d0b2fd0e7/legend_guide.ipynb deleted file mode 120000 index 61620aa47fe..00000000000 --- a/_downloads/77ee3e1b3df7385df375457d0b2fd0e7/legend_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77ee3e1b3df7385df375457d0b2fd0e7/legend_guide.ipynb \ No newline at end of file diff --git a/_downloads/77f53caf20c3697ea59d377ac3f4ebeb/violinplot.py b/_downloads/77f53caf20c3697ea59d377ac3f4ebeb/violinplot.py deleted file mode 120000 index 782bffdcc8e..00000000000 --- a/_downloads/77f53caf20c3697ea59d377ac3f4ebeb/violinplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/77f53caf20c3697ea59d377ac3f4ebeb/violinplot.py \ No newline at end of file diff --git a/_downloads/77faf3b8b70d448cc382489274375bbf/demo_colorbar_with_axes_divider.ipynb b/_downloads/77faf3b8b70d448cc382489274375bbf/demo_colorbar_with_axes_divider.ipynb deleted file mode 120000 index f77f3518197..00000000000 --- a/_downloads/77faf3b8b70d448cc382489274375bbf/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/77faf3b8b70d448cc382489274375bbf/demo_colorbar_with_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/77fc16951ae195034de7e1ba44a833bf/span_selector.py b/_downloads/77fc16951ae195034de7e1ba44a833bf/span_selector.py deleted file mode 120000 index 4799252e3cd..00000000000 --- a/_downloads/77fc16951ae195034de7e1ba44a833bf/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77fc16951ae195034de7e1ba44a833bf/span_selector.py \ No newline at end of file diff --git a/_downloads/77fe2f922beea3ee690c61c6bf96e13f/text_fontdict.ipynb b/_downloads/77fe2f922beea3ee690c61c6bf96e13f/text_fontdict.ipynb deleted file mode 120000 index d8b302a33b0..00000000000 --- a/_downloads/77fe2f922beea3ee690c61c6bf96e13f/text_fontdict.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/77fe2f922beea3ee690c61c6bf96e13f/text_fontdict.ipynb \ No newline at end of file diff --git a/_downloads/77ffa71d6fce108c36b15a0a12f19dfd/ganged_plots.py b/_downloads/77ffa71d6fce108c36b15a0a12f19dfd/ganged_plots.py deleted file mode 120000 index 82deda655d7..00000000000 --- a/_downloads/77ffa71d6fce108c36b15a0a12f19dfd/ganged_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/77ffa71d6fce108c36b15a0a12f19dfd/ganged_plots.py \ No newline at end of file diff --git a/_downloads/780b462840f3bd6481f04f79123c4319/csd_demo.py b/_downloads/780b462840f3bd6481f04f79123c4319/csd_demo.py deleted file mode 120000 index 73414813832..00000000000 --- a/_downloads/780b462840f3bd6481f04f79123c4319/csd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/780b462840f3bd6481f04f79123c4319/csd_demo.py \ No newline at end of file diff --git a/_downloads/780f941844c5390d36f8dcbaedb3da3a/simple_axes_divider1.ipynb b/_downloads/780f941844c5390d36f8dcbaedb3da3a/simple_axes_divider1.ipynb deleted file mode 120000 index 5d81d22931e..00000000000 --- a/_downloads/780f941844c5390d36f8dcbaedb3da3a/simple_axes_divider1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/780f941844c5390d36f8dcbaedb3da3a/simple_axes_divider1.ipynb \ No newline at end of file diff --git a/_downloads/78131b3968637f6ef7aae45749ce3330/contourf3d.py b/_downloads/78131b3968637f6ef7aae45749ce3330/contourf3d.py deleted file mode 120000 index f01b2809d2d..00000000000 --- a/_downloads/78131b3968637f6ef7aae45749ce3330/contourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/78131b3968637f6ef7aae45749ce3330/contourf3d.py \ No newline at end of file diff --git a/_downloads/78153aaa2ec874dcb4b63f4da962bc46/color_by_yvalue.py b/_downloads/78153aaa2ec874dcb4b63f4da962bc46/color_by_yvalue.py deleted file mode 120000 index 325659da01e..00000000000 --- a/_downloads/78153aaa2ec874dcb4b63f4da962bc46/color_by_yvalue.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/78153aaa2ec874dcb4b63f4da962bc46/color_by_yvalue.py \ No newline at end of file diff --git a/_downloads/782074b6501f117dd69c09fc41490a39/figure_axes_enter_leave.py b/_downloads/782074b6501f117dd69c09fc41490a39/figure_axes_enter_leave.py deleted file mode 120000 index 867ad655681..00000000000 --- a/_downloads/782074b6501f117dd69c09fc41490a39/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/782074b6501f117dd69c09fc41490a39/figure_axes_enter_leave.py \ No newline at end of file diff --git a/_downloads/7823a5364ec4391b50c8472ca4057c8a/firefox.ipynb b/_downloads/7823a5364ec4391b50c8472ca4057c8a/firefox.ipynb deleted file mode 120000 index 70db0559307..00000000000 --- a/_downloads/7823a5364ec4391b50c8472ca4057c8a/firefox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7823a5364ec4391b50c8472ca4057c8a/firefox.ipynb \ No newline at end of file diff --git a/_downloads/782d30ffad762271e7d61d5e5cdabb89/text_alignment.py b/_downloads/782d30ffad762271e7d61d5e5cdabb89/text_alignment.py deleted file mode 100644 index e92984098c9..00000000000 --- a/_downloads/782d30ffad762271e7d61d5e5cdabb89/text_alignment.py +++ /dev/null @@ -1,81 +0,0 @@ -""" -=================== -Precise text layout -=================== - -You can precisely layout text in data or axes (0,1) coordinates. This -example shows you some of the alignment and rotation specifications for text -layout. -""" - -import matplotlib.pyplot as plt - -# Build a rectangle in axes coords -left, width = .25, .5 -bottom, height = .25, .5 -right = left + width -top = bottom + height -ax = plt.gca() -p = plt.Rectangle((left, bottom), width, height, fill=False) -p.set_transform(ax.transAxes) -p.set_clip_on(False) -ax.add_patch(p) - - -ax.text(left, bottom, 'left top', - horizontalalignment='left', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, bottom, 'left bottom', - horizontalalignment='left', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right bottom', - horizontalalignment='right', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right top', - horizontalalignment='right', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(right, bottom, 'center top', - horizontalalignment='center', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, 0.5 * (bottom + top), 'right center', - horizontalalignment='right', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, 0.5 * (bottom + top), 'left center', - horizontalalignment='left', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(0.5 * (left + right), 0.5 * (bottom + top), 'middle', - horizontalalignment='center', - verticalalignment='center', - transform=ax.transAxes) - -ax.text(right, 0.5 * (bottom + top), 'centered', - horizontalalignment='center', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, top, 'rotated\nwith newlines', - horizontalalignment='center', - verticalalignment='center', - rotation=45, - transform=ax.transAxes) - -plt.axis('off') - -plt.show() diff --git a/_downloads/782da0bdcc30c20d6b21088ac7d4666f/wire3d_zero_stride.ipynb b/_downloads/782da0bdcc30c20d6b21088ac7d4666f/wire3d_zero_stride.ipynb deleted file mode 100644 index 6cf38d77cd7..00000000000 --- a/_downloads/782da0bdcc30c20d6b21088ac7d4666f/wire3d_zero_stride.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D wireframe plots in one direction\n\n\nDemonstrates that setting rstride or cstride to 0 causes wires to not be\ngenerated in the corresponding direction.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\n\n\nfig, [ax1, ax2] = plt.subplots(2, 1, figsize=(8, 12), subplot_kw={'projection': '3d'})\n\n# Get the test data\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Give the first plot only wireframes of the type y = c\nax1.plot_wireframe(X, Y, Z, rstride=10, cstride=0)\nax1.set_title(\"Column (x) stride set to 0\")\n\n# Give the second plot only wireframes of the type x = c\nax2.plot_wireframe(X, Y, Z, rstride=0, cstride=10)\nax2.set_title(\"Row (y) stride set to 0\")\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/783369d69f691490417e2d52506853ae/demo_floating_axis.ipynb b/_downloads/783369d69f691490417e2d52506853ae/demo_floating_axis.ipynb deleted file mode 100644 index 19e3fa0ed3a..00000000000 --- a/_downloads/783369d69f691490417e2d52506853ae/demo_floating_axis.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Floating Axis\n\n\nAxis within rectangular frame\n\nThe following code demonstrates how to put a floating polar curve within a\nrectangular box. In order to get a better sense of polar curves, please look at\ndemo_curvelinear_grid.py.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\nfrom mpl_toolkits.axisartist import SubplotHost\nfrom mpl_toolkits.axisartist import GridHelperCurveLinear\n\n\ndef curvelinear_test2(fig):\n \"\"\"Polar projection, but in a rectangular box.\n \"\"\"\n # see demo_curvelinear_grid.py for details\n tr = Affine2D().scale(np.pi / 180., 1.) + PolarAxes.PolarTransform()\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20,\n 20,\n lon_cycle=360,\n lat_cycle=None,\n lon_minmax=None,\n lat_minmax=(0,\n np.inf),\n )\n\n grid_locator1 = angle_helper.LocatorDMS(12)\n\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n tick_formatter1=tick_formatter1\n )\n\n ax1 = SubplotHost(fig, 1, 1, 1, grid_helper=grid_helper)\n\n fig.add_subplot(ax1)\n\n # Now creates floating axis\n\n # floating axis whose first coordinate (theta) is fixed at 60\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 60)\n axis.label.set_text(r\"$\\theta = 60^{\\circ}$\")\n axis.label.set_visible(True)\n\n # floating axis whose second coordinate (r) is fixed at 6\n ax1.axis[\"lon\"] = axis = ax1.new_floating_axis(1, 6)\n axis.label.set_text(r\"$r = 6$\")\n\n ax1.set_aspect(1.)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n ax1.grid(True)\n\n\nfig = plt.figure(figsize=(5, 5))\ncurvelinear_test2(fig)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/783aa6f8e9ca53acbb64b894f9c56277/pgf_fonts.py b/_downloads/783aa6f8e9ca53acbb64b894f9c56277/pgf_fonts.py deleted file mode 120000 index 2c001ebb235..00000000000 --- a/_downloads/783aa6f8e9ca53acbb64b894f9c56277/pgf_fonts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/783aa6f8e9ca53acbb64b894f9c56277/pgf_fonts.py \ No newline at end of file diff --git a/_downloads/783d83de69ed43109d791274bfdfad47/simple_axisline3.py b/_downloads/783d83de69ed43109d791274bfdfad47/simple_axisline3.py deleted file mode 120000 index 00c23a5b0c9..00000000000 --- a/_downloads/783d83de69ed43109d791274bfdfad47/simple_axisline3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/783d83de69ed43109d791274bfdfad47/simple_axisline3.py \ No newline at end of file diff --git a/_downloads/7845525244732163be4f5f0890127ea9/polar_scatter.ipynb b/_downloads/7845525244732163be4f5f0890127ea9/polar_scatter.ipynb deleted file mode 120000 index 295dd1b2ea8..00000000000 --- a/_downloads/7845525244732163be4f5f0890127ea9/polar_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7845525244732163be4f5f0890127ea9/polar_scatter.ipynb \ No newline at end of file diff --git a/_downloads/7847db854cea88fc3b814479a338e889/advanced_hillshading.ipynb b/_downloads/7847db854cea88fc3b814479a338e889/advanced_hillshading.ipynb deleted file mode 100644 index eb290f5ee5e..00000000000 --- a/_downloads/7847db854cea88fc3b814479a338e889/advanced_hillshading.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hillshading\n\n\nDemonstrates a few common tricks with shaded plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import LightSource, Normalize\n\n\ndef display_colorbar():\n \"\"\"Display a correct numeric colorbar for a shaded plot.\"\"\"\n y, x = np.mgrid[-4:2:200j, -4:2:200j]\n z = 10 * np.cos(x**2 + y**2)\n\n cmap = plt.cm.copper\n ls = LightSource(315, 45)\n rgb = ls.shade(z, cmap)\n\n fig, ax = plt.subplots()\n ax.imshow(rgb, interpolation='bilinear')\n\n # Use a proxy artist for the colorbar...\n im = ax.imshow(z, cmap=cmap)\n im.remove()\n fig.colorbar(im)\n\n ax.set_title('Using a colorbar with a shaded plot', size='x-large')\n\n\ndef avoid_outliers():\n \"\"\"Use a custom norm to control the displayed z-range of a shaded plot.\"\"\"\n y, x = np.mgrid[-4:2:200j, -4:2:200j]\n z = 10 * np.cos(x**2 + y**2)\n\n # Add some outliers...\n z[100, 105] = 2000\n z[120, 110] = -9000\n\n ls = LightSource(315, 45)\n fig, (ax1, ax2) = plt.subplots(ncols=2, figsize=(8, 4.5))\n\n rgb = ls.shade(z, plt.cm.copper)\n ax1.imshow(rgb, interpolation='bilinear')\n ax1.set_title('Full range of data')\n\n rgb = ls.shade(z, plt.cm.copper, vmin=-10, vmax=10)\n ax2.imshow(rgb, interpolation='bilinear')\n ax2.set_title('Manually set range')\n\n fig.suptitle('Avoiding Outliers in Shaded Plots', size='x-large')\n\n\ndef shade_other_data():\n \"\"\"Demonstrates displaying different variables through shade and color.\"\"\"\n y, x = np.mgrid[-4:2:200j, -4:2:200j]\n z1 = np.sin(x**2) # Data to hillshade\n z2 = np.cos(x**2 + y**2) # Data to color\n\n norm = Normalize(z2.min(), z2.max())\n cmap = plt.cm.RdBu\n\n ls = LightSource(315, 45)\n rgb = ls.shade_rgb(cmap(norm(z2)), z1)\n\n fig, ax = plt.subplots()\n ax.imshow(rgb, interpolation='bilinear')\n ax.set_title('Shade by one variable, color by another', size='x-large')\n\ndisplay_colorbar()\navoid_outliers()\nshade_other_data()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/784e4220473759f17068cd3e5ade61db/gridspec_multicolumn.py b/_downloads/784e4220473759f17068cd3e5ade61db/gridspec_multicolumn.py deleted file mode 120000 index 1669633586c..00000000000 --- a/_downloads/784e4220473759f17068cd3e5ade61db/gridspec_multicolumn.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/784e4220473759f17068cd3e5ade61db/gridspec_multicolumn.py \ No newline at end of file diff --git a/_downloads/784e624667ea437932f1b7daca5c5e2f/ginput_manual_clabel_sgskip.py b/_downloads/784e624667ea437932f1b7daca5c5e2f/ginput_manual_clabel_sgskip.py deleted file mode 120000 index d6420e1638b..00000000000 --- a/_downloads/784e624667ea437932f1b7daca5c5e2f/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/784e624667ea437932f1b7daca5c5e2f/ginput_manual_clabel_sgskip.py \ No newline at end of file diff --git a/_downloads/784eb539a68a0eb49a7d3b1465b80b2a/irregulardatagrid.ipynb b/_downloads/784eb539a68a0eb49a7d3b1465b80b2a/irregulardatagrid.ipynb deleted file mode 100644 index 5a260b0104e..00000000000 --- a/_downloads/784eb539a68a0eb49a7d3b1465b80b2a/irregulardatagrid.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour plot of irregularly spaced data\n\n\nComparison of a contour plot of irregularly spaced data interpolated\non a regular grid versus a tricontour plot for an unstructured triangular grid.\n\nSince `~.axes.Axes.contour` and `~.axes.Axes.contourf` expect the data to live\non a regular grid, plotting a contour plot of irregularly spaced data requires\ndifferent methods. The two options are:\n\n* Interpolate the data to a regular grid first. This can be done with on-board\n means, e.g. via `~.tri.LinearTriInterpolator` or using external functionality\n e.g. via `scipy.interpolate.griddata`. Then plot the interpolated data with\n the usual `~.axes.Axes.contour`.\n* Directly use `~.axes.Axes.tricontour` or `~.axes.Axes.tricontourf` which will\n perform a triangulation internally.\n\nThis example shows both methods in action.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np\n\nnp.random.seed(19680801)\nnpts = 200\nngridx = 100\nngridy = 200\nx = np.random.uniform(-2, 2, npts)\ny = np.random.uniform(-2, 2, npts)\nz = x * np.exp(-x**2 - y**2)\n\nfig, (ax1, ax2) = plt.subplots(nrows=2)\n\n# -----------------------\n# Interpolation on a grid\n# -----------------------\n# A contour plot of irregularly spaced data coordinates\n# via interpolation on a grid.\n\n# Create grid values first.\nxi = np.linspace(-2.1, 2.1, ngridx)\nyi = np.linspace(-2.1, 2.1, ngridy)\n\n# Perform linear interpolation of the data (x,y)\n# on a grid defined by (xi,yi)\ntriang = tri.Triangulation(x, y)\ninterpolator = tri.LinearTriInterpolator(triang, z)\nXi, Yi = np.meshgrid(xi, yi)\nzi = interpolator(Xi, Yi)\n\n# Note that scipy.interpolate provides means to interpolate data on a grid\n# as well. The following would be an alternative to the four lines above:\n#from scipy.interpolate import griddata\n#zi = griddata((x, y), z, (xi[None,:], yi[:,None]), method='linear')\n\n\nax1.contour(xi, yi, zi, levels=14, linewidths=0.5, colors='k')\ncntr1 = ax1.contourf(xi, yi, zi, levels=14, cmap=\"RdBu_r\")\n\nfig.colorbar(cntr1, ax=ax1)\nax1.plot(x, y, 'ko', ms=3)\nax1.set(xlim=(-2, 2), ylim=(-2, 2))\nax1.set_title('grid and contour (%d points, %d grid points)' %\n (npts, ngridx * ngridy))\n\n\n# ----------\n# Tricontour\n# ----------\n# Directly supply the unordered, irregularly spaced coordinates\n# to tricontour.\n\nax2.tricontour(x, y, z, levels=14, linewidths=0.5, colors='k')\ncntr2 = ax2.tricontourf(x, y, z, levels=14, cmap=\"RdBu_r\")\n\nfig.colorbar(cntr2, ax=ax2)\nax2.plot(x, y, 'ko', ms=3)\nax2.set(xlim=(-2, 2), ylim=(-2, 2))\nax2.set_title('tricontour (%d points)' % npts)\n\nplt.subplots_adjust(hspace=0.5)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7857539a3b108077545b19b9713954b8/demo_annotation_box.ipynb b/_downloads/7857539a3b108077545b19b9713954b8/demo_annotation_box.ipynb deleted file mode 120000 index a1661c40749..00000000000 --- a/_downloads/7857539a3b108077545b19b9713954b8/demo_annotation_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7857539a3b108077545b19b9713954b8/demo_annotation_box.ipynb \ No newline at end of file diff --git a/_downloads/786227e5777b2740c78ba155cd583892/two_scales.ipynb b/_downloads/786227e5777b2740c78ba155cd583892/two_scales.ipynb deleted file mode 120000 index 2c87bc77cad..00000000000 --- a/_downloads/786227e5777b2740c78ba155cd583892/two_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/786227e5777b2740c78ba155cd583892/two_scales.ipynb \ No newline at end of file diff --git a/_downloads/786bd1070c4ad24cd5add5cfd93a3df4/anatomy.py b/_downloads/786bd1070c4ad24cd5add5cfd93a3df4/anatomy.py deleted file mode 120000 index 76d30359a13..00000000000 --- a/_downloads/786bd1070c4ad24cd5add5cfd93a3df4/anatomy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/786bd1070c4ad24cd5add5cfd93a3df4/anatomy.py \ No newline at end of file diff --git a/_downloads/786d7fc1854536496f0a54d237e1f07e/date.ipynb b/_downloads/786d7fc1854536496f0a54d237e1f07e/date.ipynb deleted file mode 120000 index a28469e0430..00000000000 --- a/_downloads/786d7fc1854536496f0a54d237e1f07e/date.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/786d7fc1854536496f0a54d237e1f07e/date.ipynb \ No newline at end of file diff --git a/_downloads/786dee4698fe85d2155a509376222fba/lifecycle.py b/_downloads/786dee4698fe85d2155a509376222fba/lifecycle.py deleted file mode 120000 index 954072f317e..00000000000 --- a/_downloads/786dee4698fe85d2155a509376222fba/lifecycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/786dee4698fe85d2155a509376222fba/lifecycle.py \ No newline at end of file diff --git a/_downloads/78733e66736dc3ccebc7ffcde5a71a77/lorenz_attractor.ipynb b/_downloads/78733e66736dc3ccebc7ffcde5a71a77/lorenz_attractor.ipynb deleted file mode 120000 index a46e459bcfa..00000000000 --- a/_downloads/78733e66736dc3ccebc7ffcde5a71a77/lorenz_attractor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/78733e66736dc3ccebc7ffcde5a71a77/lorenz_attractor.ipynb \ No newline at end of file diff --git a/_downloads/78822607e6e4a04338ede00504793ea1/tick_label_right.ipynb b/_downloads/78822607e6e4a04338ede00504793ea1/tick_label_right.ipynb deleted file mode 120000 index ace6f464697..00000000000 --- a/_downloads/78822607e6e4a04338ede00504793ea1/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/78822607e6e4a04338ede00504793ea1/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/78978cde8f6f8ff3d132e70551f73977/text_alignment.ipynb b/_downloads/78978cde8f6f8ff3d132e70551f73977/text_alignment.ipynb deleted file mode 120000 index bf0b01773a8..00000000000 --- a/_downloads/78978cde8f6f8ff3d132e70551f73977/text_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/78978cde8f6f8ff3d132e70551f73977/text_alignment.ipynb \ No newline at end of file diff --git a/_downloads/789d378a354daa8e5550372bdd6647a3/pyplot_mathtext.ipynb b/_downloads/789d378a354daa8e5550372bdd6647a3/pyplot_mathtext.ipynb deleted file mode 120000 index 5cb3856c30b..00000000000 --- a/_downloads/789d378a354daa8e5550372bdd6647a3/pyplot_mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/789d378a354daa8e5550372bdd6647a3/pyplot_mathtext.ipynb \ No newline at end of file diff --git a/_downloads/78a51fb2873ba36d3fc1c6bbc92d9361/create_subplots.ipynb b/_downloads/78a51fb2873ba36d3fc1c6bbc92d9361/create_subplots.ipynb deleted file mode 120000 index a97533d7dbd..00000000000 --- a/_downloads/78a51fb2873ba36d3fc1c6bbc92d9361/create_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/78a51fb2873ba36d3fc1c6bbc92d9361/create_subplots.ipynb \ No newline at end of file diff --git a/_downloads/78abcef48eb640012646077f8566fbb5/artist_reference.ipynb b/_downloads/78abcef48eb640012646077f8566fbb5/artist_reference.ipynb deleted file mode 120000 index f55cd4d7383..00000000000 --- a/_downloads/78abcef48eb640012646077f8566fbb5/artist_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/78abcef48eb640012646077f8566fbb5/artist_reference.ipynb \ No newline at end of file diff --git a/_downloads/78b4eb85b90ccdd4a611a840a3bbb3f6/quadmesh_demo.ipynb b/_downloads/78b4eb85b90ccdd4a611a840a3bbb3f6/quadmesh_demo.ipynb deleted file mode 120000 index 8a2aa6356f0..00000000000 --- a/_downloads/78b4eb85b90ccdd4a611a840a3bbb3f6/quadmesh_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/78b4eb85b90ccdd4a611a840a3bbb3f6/quadmesh_demo.ipynb \ No newline at end of file diff --git a/_downloads/78c0ab12b76d332b81fa673150a10805/annotate_explain.ipynb b/_downloads/78c0ab12b76d332b81fa673150a10805/annotate_explain.ipynb deleted file mode 120000 index cc94468a3a1..00000000000 --- a/_downloads/78c0ab12b76d332b81fa673150a10805/annotate_explain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/78c0ab12b76d332b81fa673150a10805/annotate_explain.ipynb \ No newline at end of file diff --git a/_downloads/78c70b1201e5cfc0f8a9a558ac9796ab/quiver_simple_demo.ipynb b/_downloads/78c70b1201e5cfc0f8a9a558ac9796ab/quiver_simple_demo.ipynb deleted file mode 120000 index 4b7a9115218..00000000000 --- a/_downloads/78c70b1201e5cfc0f8a9a558ac9796ab/quiver_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/78c70b1201e5cfc0f8a9a558ac9796ab/quiver_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/78ceb191d53244994615677db3db88de/pcolor_demo.py b/_downloads/78ceb191d53244994615677db3db88de/pcolor_demo.py deleted file mode 120000 index 7b49a8c4118..00000000000 --- a/_downloads/78ceb191d53244994615677db3db88de/pcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/78ceb191d53244994615677db3db88de/pcolor_demo.py \ No newline at end of file diff --git a/_downloads/78d6a8288c0bc260b1c985f62c7e0e2c/errorbar_limits_simple.py b/_downloads/78d6a8288c0bc260b1c985f62c7e0e2c/errorbar_limits_simple.py deleted file mode 100644 index e314783c276..00000000000 --- a/_downloads/78d6a8288c0bc260b1c985f62c7e0e2c/errorbar_limits_simple.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -======================== -Errorbar limit selection -======================== - -Illustration of selectively drawing lower and/or upper limit symbols on -errorbars using the parameters ``uplims``, ``lolims`` of `~.pyplot.errorbar`. - -Alternatively, you can use 2xN values to draw errorbars in only one direction. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -fig = plt.figure() -x = np.arange(10) -y = 2.5 * np.sin(x / 20 * np.pi) -yerr = np.linspace(0.05, 0.2, 10) - -plt.errorbar(x, y + 3, yerr=yerr, label='both limits (default)') - -plt.errorbar(x, y + 2, yerr=yerr, uplims=True, label='uplims=True') - -plt.errorbar(x, y + 1, yerr=yerr, uplims=True, lolims=True, - label='uplims=True, lolims=True') - -upperlimits = [True, False] * 5 -lowerlimits = [False, True] * 5 -plt.errorbar(x, y, yerr=yerr, uplims=upperlimits, lolims=lowerlimits, - label='subsets of uplims and lolims') - -plt.legend(loc='lower right') - - -############################################################################## -# Similarly ``xuplims``and ``xlolims`` can be used on the horizontal ``xerr`` -# errorbars. - -fig = plt.figure() -x = np.arange(10) / 10 -y = (x + 0.1)**2 - -plt.errorbar(x, y, xerr=0.1, xlolims=True, label='xlolims=True') -y = (x + 0.1)**3 - -plt.errorbar(x + 0.6, y, xerr=0.1, xuplims=upperlimits, xlolims=lowerlimits, - label='subsets of xuplims and xlolims') - -y = (x + 0.1)**4 -plt.errorbar(x + 1.2, y, xerr=0.1, xuplims=True, label='xuplims=True') - -plt.legend() -plt.show() - -############################################################################## -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.errorbar -matplotlib.pyplot.errorbar diff --git a/_downloads/78d8b84f45e360f3a04b9d33e9119ad8/broken_barh.ipynb b/_downloads/78d8b84f45e360f3a04b9d33e9119ad8/broken_barh.ipynb deleted file mode 120000 index 8d96d974abb..00000000000 --- a/_downloads/78d8b84f45e360f3a04b9d33e9119ad8/broken_barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/78d8b84f45e360f3a04b9d33e9119ad8/broken_barh.ipynb \ No newline at end of file diff --git a/_downloads/78e79aca1445d0787f5bec2c44f82c65/quadmesh_demo.ipynb b/_downloads/78e79aca1445d0787f5bec2c44f82c65/quadmesh_demo.ipynb deleted file mode 120000 index 41f6c272b7e..00000000000 --- a/_downloads/78e79aca1445d0787f5bec2c44f82c65/quadmesh_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/78e79aca1445d0787f5bec2c44f82c65/quadmesh_demo.ipynb \ No newline at end of file diff --git a/_downloads/78ee01e2817d279bcff42fbf87b19b9e/scatter_hist.py b/_downloads/78ee01e2817d279bcff42fbf87b19b9e/scatter_hist.py deleted file mode 120000 index 315f6ae9047..00000000000 --- a/_downloads/78ee01e2817d279bcff42fbf87b19b9e/scatter_hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/78ee01e2817d279bcff42fbf87b19b9e/scatter_hist.py \ No newline at end of file diff --git a/_downloads/78efd65dad0eee314e49f33be1f918be/axis_direction_demo_step04.py b/_downloads/78efd65dad0eee314e49f33be1f918be/axis_direction_demo_step04.py deleted file mode 120000 index 1514c30602f..00000000000 --- a/_downloads/78efd65dad0eee314e49f33be1f918be/axis_direction_demo_step04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/78efd65dad0eee314e49f33be1f918be/axis_direction_demo_step04.py \ No newline at end of file diff --git a/_downloads/78f54eb2e2b01ea481822c16c52e0032/3d_bars.py b/_downloads/78f54eb2e2b01ea481822c16c52e0032/3d_bars.py deleted file mode 120000 index db5080cdf14..00000000000 --- a/_downloads/78f54eb2e2b01ea481822c16c52e0032/3d_bars.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/78f54eb2e2b01ea481822c16c52e0032/3d_bars.py \ No newline at end of file diff --git a/_downloads/78f79aa6291c74c928e589d29d7976fa/legend_picking.ipynb b/_downloads/78f79aa6291c74c928e589d29d7976fa/legend_picking.ipynb deleted file mode 120000 index d1987dab2a3..00000000000 --- a/_downloads/78f79aa6291c74c928e589d29d7976fa/legend_picking.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/78f79aa6291c74c928e589d29d7976fa/legend_picking.ipynb \ No newline at end of file diff --git a/_downloads/78ff3752cdc8aa1bf47bc16c6e93d194/pcolor_demo.ipynb b/_downloads/78ff3752cdc8aa1bf47bc16c6e93d194/pcolor_demo.ipynb deleted file mode 120000 index 87513146f25..00000000000 --- a/_downloads/78ff3752cdc8aa1bf47bc16c6e93d194/pcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/78ff3752cdc8aa1bf47bc16c6e93d194/pcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/7903d536ea50c5cf277d2bb0d86666f4/simple_axes_divider3.py b/_downloads/7903d536ea50c5cf277d2bb0d86666f4/simple_axes_divider3.py deleted file mode 120000 index 92361f4b2a9..00000000000 --- a/_downloads/7903d536ea50c5cf277d2bb0d86666f4/simple_axes_divider3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7903d536ea50c5cf277d2bb0d86666f4/simple_axes_divider3.py \ No newline at end of file diff --git a/_downloads/790b429e35d3b5f656b58cf8ea104953/anchored_artists.ipynb b/_downloads/790b429e35d3b5f656b58cf8ea104953/anchored_artists.ipynb deleted file mode 100644 index 6fbd7a9990f..00000000000 --- a/_downloads/790b429e35d3b5f656b58cf8ea104953/anchored_artists.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Artists\n\n\nThis example illustrates the use of the anchored objects without the\nhelper classes found in the `toolkit_axesgrid1-index`. This version\nof the figure is similar to the one found in\n:doc:`/gallery/axes_grid1/simple_anchored_artists`, but it is\nimplemented using only the matplotlib namespace, without the help\nof additional toolkits.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import pyplot as plt\nfrom matplotlib.patches import Rectangle, Ellipse\nfrom matplotlib.offsetbox import (\n AnchoredOffsetbox, AuxTransformBox, DrawingArea, TextArea, VPacker)\n\n\nclass AnchoredText(AnchoredOffsetbox):\n def __init__(self, s, loc, pad=0.4, borderpad=0.5,\n prop=None, frameon=True):\n self.txt = TextArea(s, minimumdescent=False)\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self.txt, prop=prop, frameon=frameon)\n\n\ndef draw_text(ax):\n \"\"\"\n Draw a text-box anchored to the upper-left corner of the figure.\n \"\"\"\n at = AnchoredText(\"Figure 1a\", loc='upper left', frameon=True)\n at.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at)\n\n\nclass AnchoredDrawingArea(AnchoredOffsetbox):\n def __init__(self, width, height, xdescent, ydescent,\n loc, pad=0.4, borderpad=0.5, prop=None, frameon=True):\n self.da = DrawingArea(width, height, xdescent, ydescent)\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self.da, prop=None, frameon=frameon)\n\n\ndef draw_circle(ax):\n \"\"\"\n Draw a circle in axis coordinates\n \"\"\"\n from matplotlib.patches import Circle\n ada = AnchoredDrawingArea(20, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\n p = Circle((10, 10), 10)\n ada.da.add_artist(p)\n ax.add_artist(ada)\n\n\nclass AnchoredEllipse(AnchoredOffsetbox):\n def __init__(self, transform, width, height, angle, loc,\n pad=0.1, borderpad=0.1, prop=None, frameon=True):\n \"\"\"\n Draw an ellipse the size in data coordinate of the give axes.\n\n pad, borderpad in fraction of the legend font size (or prop)\n \"\"\"\n self._box = AuxTransformBox(transform)\n self.ellipse = Ellipse((0, 0), width, height, angle)\n self._box.add_artist(self.ellipse)\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self._box, prop=prop, frameon=frameon)\n\n\ndef draw_ellipse(ax):\n \"\"\"\n Draw an ellipse of width=0.1, height=0.15 in data coordinates\n \"\"\"\n ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0.,\n loc='lower left', pad=0.5, borderpad=0.4,\n frameon=True)\n\n ax.add_artist(ae)\n\n\nclass AnchoredSizeBar(AnchoredOffsetbox):\n def __init__(self, transform, size, label, loc,\n pad=0.1, borderpad=0.1, sep=2, prop=None, frameon=True):\n \"\"\"\n Draw a horizontal bar with the size in data coordinate of the given\n axes. A label will be drawn underneath (center-aligned).\n\n pad, borderpad in fraction of the legend font size (or prop)\n sep in points.\n \"\"\"\n self.size_bar = AuxTransformBox(transform)\n self.size_bar.add_artist(Rectangle((0, 0), size, 0, ec=\"black\", lw=1.0))\n\n self.txt_label = TextArea(label, minimumdescent=False)\n\n self._box = VPacker(children=[self.size_bar, self.txt_label],\n align=\"center\",\n pad=0, sep=sep)\n\n super().__init__(loc, pad=pad, borderpad=borderpad,\n child=self._box, prop=prop, frameon=frameon)\n\n\ndef draw_sizebar(ax):\n \"\"\"\n Draw a horizontal bar with length of 0.1 in data coordinates,\n with a fixed label underneath.\n \"\"\"\n asb = AnchoredSizeBar(ax.transData,\n 0.1,\n r\"1$^{\\prime}$\",\n loc='lower center',\n pad=0.1, borderpad=0.5, sep=5,\n frameon=False)\n ax.add_artist(asb)\n\n\nax = plt.gca()\nax.set_aspect(1.)\n\ndraw_text(ax)\ndraw_circle(ax)\ndraw_ellipse(ax)\ndraw_sizebar(ax)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/790c75945a8416e35a4ff0ed8a32a51b/close_event.py b/_downloads/790c75945a8416e35a4ff0ed8a32a51b/close_event.py deleted file mode 120000 index 5a44b0c7d50..00000000000 --- a/_downloads/790c75945a8416e35a4ff0ed8a32a51b/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/790c75945a8416e35a4ff0ed8a32a51b/close_event.py \ No newline at end of file diff --git a/_downloads/791054b13e7810b245e8d70282c67d3e/arctest.ipynb b/_downloads/791054b13e7810b245e8d70282c67d3e/arctest.ipynb deleted file mode 120000 index 77b45bf3d26..00000000000 --- a/_downloads/791054b13e7810b245e8d70282c67d3e/arctest.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/791054b13e7810b245e8d70282c67d3e/arctest.ipynb \ No newline at end of file diff --git a/_downloads/7914094bf3ca7f5d99c3b7d4a344ef6b/tick_xlabel_top.py b/_downloads/7914094bf3ca7f5d99c3b7d4a344ef6b/tick_xlabel_top.py deleted file mode 100644 index a437810b06a..00000000000 --- a/_downloads/7914094bf3ca7f5d99c3b7d4a344ef6b/tick_xlabel_top.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -========================================== -Set default x-axis tick labels on the top -========================================== - -We can use :rc:`xtick.labeltop` (default False) and :rc:`xtick.top` -(default False) and :rc:`xtick.labelbottom` (default True) and -:rc:`xtick.bottom` (default True) to control where on the axes ticks and -their labels appear. - -These properties can also be set in ``.matplotlib/matplotlibrc``. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -plt.rcParams['xtick.bottom'] = plt.rcParams['xtick.labelbottom'] = False -plt.rcParams['xtick.top'] = plt.rcParams['xtick.labeltop'] = True - -x = np.arange(10) - -fig, ax = plt.subplots() - -ax.plot(x) -ax.set_title('xlabel top') # Note title moves to make room for ticks - -plt.show() diff --git a/_downloads/79160f9f287611d15ccf9a229879d38f/text_layout.py b/_downloads/79160f9f287611d15ccf9a229879d38f/text_layout.py deleted file mode 120000 index 13232015ac5..00000000000 --- a/_downloads/79160f9f287611d15ccf9a229879d38f/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/79160f9f287611d15ccf9a229879d38f/text_layout.py \ No newline at end of file diff --git a/_downloads/792476a4da2c7c2fdc8e83f3fa0ebca0/tricontour_smooth_delaunay.ipynb b/_downloads/792476a4da2c7c2fdc8e83f3fa0ebca0/tricontour_smooth_delaunay.ipynb deleted file mode 120000 index 9b59fab817c..00000000000 --- a/_downloads/792476a4da2c7c2fdc8e83f3fa0ebca0/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/792476a4da2c7c2fdc8e83f3fa0ebca0/tricontour_smooth_delaunay.ipynb \ No newline at end of file diff --git a/_downloads/7926ad9f42bb8c76b420dcb5e818df00/connect_simple01.ipynb b/_downloads/7926ad9f42bb8c76b420dcb5e818df00/connect_simple01.ipynb deleted file mode 100644 index 62edb663ca9..00000000000 --- a/_downloads/7926ad9f42bb8c76b420dcb5e818df00/connect_simple01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Connect Simple01\n\n\nA `ConnectionPatch` can be used to draw a line (possibly with arrow head)\nbetween points defined in different coordinate systems and/or axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import ConnectionPatch\nimport matplotlib.pyplot as plt\n\nfig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3))\n\n# Draw a simple arrow between two points in axes coordinates\n# within a single axes.\nxyA = (0.2, 0.2)\nxyB = (0.8, 0.8)\ncoordsA = \"data\"\ncoordsB = \"data\"\ncon = ConnectionPatch(xyA, xyB, coordsA, coordsB,\n arrowstyle=\"-|>\", shrinkA=5, shrinkB=5,\n mutation_scale=20, fc=\"w\")\nax1.plot([xyA[0], xyB[0]], [xyA[1], xyB[1]], \"o\")\nax1.add_artist(con)\n\n# Draw an arrow between the same point in data coordinates,\n# but in different axes.\nxy = (0.3, 0.2)\ncoordsA = \"data\"\ncoordsB = \"data\"\ncon = ConnectionPatch(xyA=xy, xyB=xy, coordsA=coordsA, coordsB=coordsB,\n axesA=ax2, axesB=ax1,\n arrowstyle=\"->\", shrinkB=5)\nax2.add_artist(con)\n\n# Draw a line between the different points, defined in different coordinate\n# systems.\nxyA = (0.6, 1.0) # in axes coordinates\nxyB = (0.0, 0.2) # x in axes coordinates, y in data coordinates\ncoordsA = \"axes fraction\"\ncoordsB = ax2.get_yaxis_transform()\ncon = ConnectionPatch(xyA=xyA, xyB=xyB, coordsA=coordsA, coordsB=coordsB,\n arrowstyle=\"-\")\nax2.add_artist(con)\n\nax1.set_xlim(0, 1)\nax1.set_ylim(0, 1)\nax2.set_xlim(0, .5)\nax2.set_ylim(0, .5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/79308954b974390d1e23c24cbd141e20/quadmesh_demo.py b/_downloads/79308954b974390d1e23c24cbd141e20/quadmesh_demo.py deleted file mode 120000 index b1a694fe267..00000000000 --- a/_downloads/79308954b974390d1e23c24cbd141e20/quadmesh_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/79308954b974390d1e23c24cbd141e20/quadmesh_demo.py \ No newline at end of file diff --git a/_downloads/79356a23e81a9136a9e54609f624248a/barcode_demo.ipynb b/_downloads/79356a23e81a9136a9e54609f624248a/barcode_demo.ipynb deleted file mode 120000 index 8e6a2f0a29b..00000000000 --- a/_downloads/79356a23e81a9136a9e54609f624248a/barcode_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/79356a23e81a9136a9e54609f624248a/barcode_demo.ipynb \ No newline at end of file diff --git a/_downloads/793939d3bf39f7dc21cb0a9035101654/units_sample.ipynb b/_downloads/793939d3bf39f7dc21cb0a9035101654/units_sample.ipynb deleted file mode 100644 index d00a50d69cc..00000000000 --- a/_downloads/793939d3bf39f7dc21cb0a9035101654/units_sample.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Inches and Centimeters\n\n\nThe example illustrates the ability to override default x and y units (ax1) to\ninches and centimeters using the `xunits` and `yunits` parameters for the\n`plot` function. Note that conversions are applied to get numbers to correct\nunits.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from basic_units import cm, inch\nimport matplotlib.pyplot as plt\nimport numpy as np\n\ncms = cm * np.arange(0, 10, 2)\n\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].plot(cms, cms)\n\naxs[0, 1].plot(cms, cms, xunits=cm, yunits=inch)\n\naxs[1, 0].plot(cms, cms, xunits=inch, yunits=cm)\naxs[1, 0].set_xlim(3, 6) # scalars are interpreted in current units\n\naxs[1, 1].plot(cms, cms, xunits=inch, yunits=inch)\naxs[1, 1].set_xlim(3*cm, 6*cm) # cm are converted to inches\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/793955bf88b9e0384b8eccc7c6b4a3c9/demo_text_rotation_mode.ipynb b/_downloads/793955bf88b9e0384b8eccc7c6b4a3c9/demo_text_rotation_mode.ipynb deleted file mode 120000 index bbecf480223..00000000000 --- a/_downloads/793955bf88b9e0384b8eccc7c6b4a3c9/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/793955bf88b9e0384b8eccc7c6b4a3c9/demo_text_rotation_mode.ipynb \ No newline at end of file diff --git a/_downloads/7945888239c741fbbacb4a90e4158a09/scatter_custom_symbol.py b/_downloads/7945888239c741fbbacb4a90e4158a09/scatter_custom_symbol.py deleted file mode 120000 index 6b9b6d1c54b..00000000000 --- a/_downloads/7945888239c741fbbacb4a90e4158a09/scatter_custom_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7945888239c741fbbacb4a90e4158a09/scatter_custom_symbol.py \ No newline at end of file diff --git a/_downloads/7946588cd776213aeb2471a50a524253/demo_edge_colorbar.ipynb b/_downloads/7946588cd776213aeb2471a50a524253/demo_edge_colorbar.ipynb deleted file mode 100644 index 39d67b27502..00000000000 --- a/_downloads/7946588cd776213aeb2471a50a524253/demo_edge_colorbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Edge Colorbar\n\n\nThis example shows how to use one common colorbar for each row or column\nof an image grid.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import AxesGrid\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef demo_bottom_cbar(fig):\n \"\"\"\n A grid of 2x2 images with a colorbar for each column.\n \"\"\"\n grid = AxesGrid(fig, 121, # similar to subplot(121)\n nrows_ncols=(2, 2),\n axes_pad=0.10,\n share_all=True,\n label_mode=\"1\",\n cbar_location=\"bottom\",\n cbar_mode=\"edge\",\n cbar_pad=0.25,\n cbar_size=\"15%\",\n direction=\"column\"\n )\n\n Z, extent = get_demo_image()\n cmaps = [plt.get_cmap(\"autumn\"), plt.get_cmap(\"summer\")]\n for i in range(4):\n im = grid[i].imshow(Z, extent=extent, interpolation=\"nearest\",\n cmap=cmaps[i//2])\n if i % 2:\n cbar = grid.cbar_axes[i//2].colorbar(im)\n\n for cax in grid.cbar_axes:\n cax.toggle_label(True)\n cax.axis[cax.orientation].set_label(\"Bar\")\n\n # This affects all axes as share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_right_cbar(fig):\n \"\"\"\n A grid of 2x2 images. Each row has its own colorbar.\n \"\"\"\n grid = AxesGrid(fig, 122, # similar to subplot(122)\n nrows_ncols=(2, 2),\n axes_pad=0.10,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"right\",\n cbar_mode=\"edge\",\n cbar_size=\"7%\",\n cbar_pad=\"2%\",\n )\n Z, extent = get_demo_image()\n cmaps = [plt.get_cmap(\"spring\"), plt.get_cmap(\"winter\")]\n for i in range(4):\n im = grid[i].imshow(Z, extent=extent, interpolation=\"nearest\",\n cmap=cmaps[i//2])\n if i % 2:\n grid.cbar_axes[i//2].colorbar(im)\n\n for cax in grid.cbar_axes:\n cax.toggle_label(True)\n cax.axis[cax.orientation].set_label('Foo')\n\n # This affects all axes because we set share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\nfig = plt.figure(figsize=(5.5, 2.5))\nfig.subplots_adjust(left=0.05, right=0.93)\n\ndemo_bottom_cbar(fig)\ndemo_right_cbar(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/794f793abacbb67c73ccfd8da17b7527/path_tutorial.ipynb b/_downloads/794f793abacbb67c73ccfd8da17b7527/path_tutorial.ipynb deleted file mode 100644 index eb2c0027f7e..00000000000 --- a/_downloads/794f793abacbb67c73ccfd8da17b7527/path_tutorial.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Path Tutorial\n\n\nDefining paths in your Matplotlib visualization.\n\nThe object underlying all of the :mod:`matplotlib.patch` objects is\nthe :class:`~matplotlib.path.Path`, which supports the standard set of\nmoveto, lineto, curveto commands to draw simple and compound outlines\nconsisting of line segments and splines. The ``Path`` is instantiated\nwith a (N,2) array of (x,y) vertices, and a N-length array of path\ncodes. For example to draw the unit rectangle from (0,0) to (1,1), we\ncould use this code\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.path import Path\nimport matplotlib.patches as patches\n\nverts = [\n (0., 0.), # left, bottom\n (0., 1.), # left, top\n (1., 1.), # right, top\n (1., 0.), # right, bottom\n (0., 0.), # ignored\n]\n\ncodes = [\n Path.MOVETO,\n Path.LINETO,\n Path.LINETO,\n Path.LINETO,\n Path.CLOSEPOLY,\n]\n\npath = Path(verts, codes)\n\nfig, ax = plt.subplots()\npatch = patches.PathPatch(path, facecolor='orange', lw=2)\nax.add_patch(patch)\nax.set_xlim(-2, 2)\nax.set_ylim(-2, 2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The following path codes are recognized\n\n============== ================================= ====================================================================================================================\nCode Vertices Description\n============== ================================= ====================================================================================================================\n``STOP`` 1 (ignored) A marker for the end of the entire path (currently not required and ignored)\n``MOVETO`` 1 Pick up the pen and move to the given vertex.\n``LINETO`` 1 Draw a line from the current position to the given vertex.\n``CURVE3`` 2 (1 control point, 1 endpoint) Draw a quadratic B\u00e9zier curve from the current position, with the given control point, to the given end point.\n``CURVE4`` 3 (2 control points, 1 endpoint) Draw a cubic B\u00e9zier curve from the current position, with the given control points, to the given end point.\n``CLOSEPOLY`` 1 (point itself is ignored) Draw a line segment to the start point of the current polyline.\n============== ================================= ====================================================================================================================\n\n\n.. path-curves:\n\n\nB\u00e9zier example\n==============\n\nSome of the path components require multiple vertices to specify them:\nfor example CURVE 3 is a `b\u00e9zier\n`_ curve with one\ncontrol point and one end point, and CURVE4 has three vertices for the\ntwo control points and the end point. The example below shows a\nCURVE4 B\u00e9zier spline -- the b\u00e9zier curve will be contained in the\nconvex hull of the start point, the two control points, and the end\npoint\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "verts = [\n (0., 0.), # P0\n (0.2, 1.), # P1\n (1., 0.8), # P2\n (0.8, 0.), # P3\n]\n\ncodes = [\n Path.MOVETO,\n Path.CURVE4,\n Path.CURVE4,\n Path.CURVE4,\n]\n\npath = Path(verts, codes)\n\nfig, ax = plt.subplots()\npatch = patches.PathPatch(path, facecolor='none', lw=2)\nax.add_patch(patch)\n\nxs, ys = zip(*verts)\nax.plot(xs, ys, 'x--', lw=2, color='black', ms=10)\n\nax.text(-0.05, -0.05, 'P0')\nax.text(0.15, 1.05, 'P1')\nax.text(1.05, 0.85, 'P2')\nax.text(0.85, -0.05, 'P3')\n\nax.set_xlim(-0.1, 1.1)\nax.set_ylim(-0.1, 1.1)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ".. compound_paths:\n\nCompound paths\n==============\n\nAll of the simple patch primitives in matplotlib, Rectangle, Circle,\nPolygon, etc, are implemented with simple path. Plotting functions\nlike :meth:`~matplotlib.axes.Axes.hist` and\n:meth:`~matplotlib.axes.Axes.bar`, which create a number of\nprimitives, e.g., a bunch of Rectangles, can usually be implemented more\nefficiently using a compound path. The reason ``bar`` creates a list\nof rectangles and not a compound path is largely historical: the\n:class:`~matplotlib.path.Path` code is comparatively new and ``bar``\npredates it. While we could change it now, it would break old code,\nso here we will cover how to create compound paths, replacing the\nfunctionality in bar, in case you need to do so in your own code for\nefficiency reasons, e.g., you are creating an animated bar plot.\n\nWe will make the histogram chart by creating a series of rectangles\nfor each histogram bar: the rectangle width is the bin width and the\nrectangle height is the number of datapoints in that bin. First we'll\ncreate some random normally distributed data and compute the\nhistogram. Because numpy returns the bin edges and not centers, the\nlength of ``bins`` is 1 greater than the length of ``n`` in the\nexample below::\n\n # histogram our data with numpy\n data = np.random.randn(1000)\n n, bins = np.histogram(data, 100)\n\nWe'll now extract the corners of the rectangles. Each of the\n``left``, ``bottom``, etc, arrays below is ``len(n)``, where ``n`` is\nthe array of counts for each histogram bar::\n\n # get the corners of the rectangles for the histogram\n left = np.array(bins[:-1])\n right = np.array(bins[1:])\n bottom = np.zeros(len(left))\n top = bottom + n\n\nNow we have to construct our compound path, which will consist of a\nseries of ``MOVETO``, ``LINETO`` and ``CLOSEPOLY`` for each rectangle.\nFor each rectangle, we need 5 vertices: 1 for the ``MOVETO``, 3 for\nthe ``LINETO``, and 1 for the ``CLOSEPOLY``. As indicated in the\ntable above, the vertex for the closepoly is ignored but we still need\nit to keep the codes aligned with the vertices::\n\n nverts = nrects*(1+3+1)\n verts = np.zeros((nverts, 2))\n codes = np.ones(nverts, int) * path.Path.LINETO\n codes[0::5] = path.Path.MOVETO\n codes[4::5] = path.Path.CLOSEPOLY\n verts[0::5,0] = left\n verts[0::5,1] = bottom\n verts[1::5,0] = left\n verts[1::5,1] = top\n verts[2::5,0] = right\n verts[2::5,1] = top\n verts[3::5,0] = right\n verts[3::5,1] = bottom\n\nAll that remains is to create the path, attach it to a\n:class:`~matplotlib.patch.PathPatch`, and add it to our axes::\n\n barpath = path.Path(verts, codes)\n patch = patches.PathPatch(barpath, facecolor='green',\n edgecolor='yellow', alpha=0.5)\n ax.add_patch(patch)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.patches as patches\nimport matplotlib.path as path\n\nfig, ax = plt.subplots()\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# histogram our data with numpy\ndata = np.random.randn(1000)\nn, bins = np.histogram(data, 100)\n\n# get the corners of the rectangles for the histogram\nleft = np.array(bins[:-1])\nright = np.array(bins[1:])\nbottom = np.zeros(len(left))\ntop = bottom + n\nnrects = len(left)\n\nnverts = nrects*(1+3+1)\nverts = np.zeros((nverts, 2))\ncodes = np.ones(nverts, int) * path.Path.LINETO\ncodes[0::5] = path.Path.MOVETO\ncodes[4::5] = path.Path.CLOSEPOLY\nverts[0::5, 0] = left\nverts[0::5, 1] = bottom\nverts[1::5, 0] = left\nverts[1::5, 1] = top\nverts[2::5, 0] = right\nverts[2::5, 1] = top\nverts[3::5, 0] = right\nverts[3::5, 1] = bottom\n\nbarpath = path.Path(verts, codes)\npatch = patches.PathPatch(barpath, facecolor='green',\n edgecolor='yellow', alpha=0.5)\nax.add_patch(patch)\n\nax.set_xlim(left[0], right[-1])\nax.set_ylim(bottom.min(), top.max())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/79542250d70967ba859c54eed020f7c5/contour_manual.py b/_downloads/79542250d70967ba859c54eed020f7c5/contour_manual.py deleted file mode 120000 index 11f8b3f5d33..00000000000 --- a/_downloads/79542250d70967ba859c54eed020f7c5/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/79542250d70967ba859c54eed020f7c5/contour_manual.py \ No newline at end of file diff --git a/_downloads/795c26ef57feb73c708c70343f8b5178/pyplot_scales.ipynb b/_downloads/795c26ef57feb73c708c70343f8b5178/pyplot_scales.ipynb deleted file mode 100644 index 6a8cde7b587..00000000000 --- a/_downloads/795c26ef57feb73c708c70343f8b5178/pyplot_scales.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Scales\n\n\nCreate plots on different scales. Here a linear, a logarithmic, a symmetric\nlogarithmic and a logit scale are shown. For further examples also see the\n`scales_examples` section of the gallery.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom matplotlib.ticker import NullFormatter # useful for `logit` scale\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# make up some data in the interval ]0, 1[\ny = np.random.normal(loc=0.5, scale=0.4, size=1000)\ny = y[(y > 0) & (y < 1)]\ny.sort()\nx = np.arange(len(y))\n\n# plot with various axes scales\nplt.figure()\n\n# linear\nplt.subplot(221)\nplt.plot(x, y)\nplt.yscale('linear')\nplt.title('linear')\nplt.grid(True)\n\n\n# log\nplt.subplot(222)\nplt.plot(x, y)\nplt.yscale('log')\nplt.title('log')\nplt.grid(True)\n\n\n# symmetric log\nplt.subplot(223)\nplt.plot(x, y - y.mean())\nplt.yscale('symlog', linthreshy=0.01)\nplt.title('symlog')\nplt.grid(True)\n\n# logit\nplt.subplot(224)\nplt.plot(x, y)\nplt.yscale('logit')\nplt.title('logit')\nplt.grid(True)\n# Format the minor tick labels of the y-axis into empty strings with\n# `NullFormatter`, to avoid cumbering the axis with too many labels.\nplt.gca().yaxis.set_minor_formatter(NullFormatter())\n# Adjust the subplot layout, because the logit one may take more space\n# than usual, due to y-tick labels like \"1 - 10^{-3}\"\nplt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25,\n wspace=0.35)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.subplot\nmatplotlib.pyplot.subplots_adjust\nmatplotlib.pyplot.gca\nmatplotlib.pyplot.yscale\nmatplotlib.ticker.NullFormatter\nmatplotlib.axis.Axis.set_minor_formatter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7968cb7766e7c63346b18d6197e245d9/random_walk.py b/_downloads/7968cb7766e7c63346b18d6197e245d9/random_walk.py deleted file mode 120000 index 186f8bd673b..00000000000 --- a/_downloads/7968cb7766e7c63346b18d6197e245d9/random_walk.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7968cb7766e7c63346b18d6197e245d9/random_walk.py \ No newline at end of file diff --git a/_downloads/79712d3b6eaafa56f122fbcca0c626cf/colormap_reference.py b/_downloads/79712d3b6eaafa56f122fbcca0c626cf/colormap_reference.py deleted file mode 120000 index 011e8407fc5..00000000000 --- a/_downloads/79712d3b6eaafa56f122fbcca0c626cf/colormap_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/79712d3b6eaafa56f122fbcca0c626cf/colormap_reference.py \ No newline at end of file diff --git a/_downloads/797cf74655e11452cf1d1fa73772e13a/font_table.py b/_downloads/797cf74655e11452cf1d1fa73772e13a/font_table.py deleted file mode 120000 index 377c7edc692..00000000000 --- a/_downloads/797cf74655e11452cf1d1fa73772e13a/font_table.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/797cf74655e11452cf1d1fa73772e13a/font_table.py \ No newline at end of file diff --git a/_downloads/798607af9f36f3b0195f05f1a40c6fd0/anscombe.ipynb b/_downloads/798607af9f36f3b0195f05f1a40c6fd0/anscombe.ipynb deleted file mode 100644 index 093519398e8..00000000000 --- a/_downloads/798607af9f36f3b0195f05f1a40c6fd0/anscombe.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nAnscombe's Quartet\n==================\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "\"\"\"\nEdward Tufte uses this example from Anscombe to show 4 datasets of x\nand y that have the same mean, standard deviation, and regression\nline, but which are qualitatively different.\n\"\"\"\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nx = [10, 8, 13, 9, 11, 14, 6, 4, 12, 7, 5]\ny1 = [8.04, 6.95, 7.58, 8.81, 8.33, 9.96, 7.24, 4.26, 10.84, 4.82, 5.68]\ny2 = [9.14, 8.14, 8.74, 8.77, 9.26, 8.10, 6.13, 3.10, 9.13, 7.26, 4.74]\ny3 = [7.46, 6.77, 12.74, 7.11, 7.81, 8.84, 6.08, 5.39, 8.15, 6.42, 5.73]\nx4 = [8, 8, 8, 8, 8, 8, 8, 19, 8, 8, 8]\ny4 = [6.58, 5.76, 7.71, 8.84, 8.47, 7.04, 5.25, 12.50, 5.56, 7.91, 6.89]\n\n\ndef fit(x):\n return 3 + 0.5 * x\n\n\nfig, axs = plt.subplots(2, 2, sharex=True, sharey=True)\naxs[0, 0].set(xlim=(0, 20), ylim=(2, 14))\naxs[0, 0].set(xticks=(0, 10, 20), yticks=(4, 8, 12))\n\nxfit = np.array([np.min(x), np.max(x)])\naxs[0, 0].plot(x, y1, 'ks', xfit, fit(xfit), 'r-', lw=2)\naxs[0, 1].plot(x, y2, 'ks', xfit, fit(xfit), 'r-', lw=2)\naxs[1, 0].plot(x, y3, 'ks', xfit, fit(xfit), 'r-', lw=2)\nxfit = np.array([np.min(x4), np.max(x4)])\naxs[1, 1].plot(x4, y4, 'ks', xfit, fit(xfit), 'r-', lw=2)\n\nfor ax, label in zip(axs.flat, ['I', 'II', 'III', 'IV']):\n ax.label_outer()\n ax.text(3, 12, label, fontsize=20)\n\n# verify the stats\npairs = (x, y1), (x, y2), (x, y3), (x4, y4)\nfor x, y in pairs:\n print('mean=%1.2f, std=%1.2f, r=%1.2f' % (np.mean(y), np.std(y),\n np.corrcoef(x, y)[0][1]))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7987133f2362c997aa79d4ff70891fed/psd_demo.ipynb b/_downloads/7987133f2362c997aa79d4ff70891fed/psd_demo.ipynb deleted file mode 120000 index 602cbcebd00..00000000000 --- a/_downloads/7987133f2362c997aa79d4ff70891fed/psd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7987133f2362c997aa79d4ff70891fed/psd_demo.ipynb \ No newline at end of file diff --git a/_downloads/798c7aea7f8a21d3af3ed277701ee8a3/scalarformatter.py b/_downloads/798c7aea7f8a21d3af3ed277701ee8a3/scalarformatter.py deleted file mode 120000 index 6c840b0be95..00000000000 --- a/_downloads/798c7aea7f8a21d3af3ed277701ee8a3/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/798c7aea7f8a21d3af3ed277701ee8a3/scalarformatter.py \ No newline at end of file diff --git a/_downloads/798db3808e86da53f5213c781fbfa1c6/dfrac_demo.ipynb b/_downloads/798db3808e86da53f5213c781fbfa1c6/dfrac_demo.ipynb deleted file mode 120000 index a3c48b4ad56..00000000000 --- a/_downloads/798db3808e86da53f5213c781fbfa1c6/dfrac_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/798db3808e86da53f5213c781fbfa1c6/dfrac_demo.ipynb \ No newline at end of file diff --git a/_downloads/7999cb7ac13808facbd7e5cb564d64a5/scatter_piecharts.ipynb b/_downloads/7999cb7ac13808facbd7e5cb564d64a5/scatter_piecharts.ipynb deleted file mode 100644 index ddc075d28c3..00000000000 --- a/_downloads/7999cb7ac13808facbd7e5cb564d64a5/scatter_piecharts.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plot with pie chart markers\n\n\nThis example makes custom 'pie charts' as the markers for a scatter plot.\n\nThanks to Manuel Metz for the example\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# first define the ratios\nr1 = 0.2 # 20%\nr2 = r1 + 0.4 # 40%\n\n# define some sizes of the scatter marker\nsizes = np.array([60, 80, 120])\n\n# calculate the points of the first pie marker\n#\n# these are just the origin (0,0) +\n# some points on a circle cos,sin\nx = [0] + np.cos(np.linspace(0, 2 * np.pi * r1, 10)).tolist()\ny = [0] + np.sin(np.linspace(0, 2 * np.pi * r1, 10)).tolist()\nxy1 = np.column_stack([x, y])\ns1 = np.abs(xy1).max()\n\nx = [0] + np.cos(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist()\ny = [0] + np.sin(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist()\nxy2 = np.column_stack([x, y])\ns2 = np.abs(xy2).max()\n\nx = [0] + np.cos(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist()\ny = [0] + np.sin(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist()\nxy3 = np.column_stack([x, y])\ns3 = np.abs(xy3).max()\n\nfig, ax = plt.subplots()\nax.scatter(range(3), range(3), marker=xy1,\n s=s1 ** 2 * sizes, facecolor='blue')\nax.scatter(range(3), range(3), marker=xy2,\n s=s2 ** 2 * sizes, facecolor='green')\nax.scatter(range(3), range(3), marker=xy3,\n s=s3 ** 2 * sizes, facecolor='red')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.scatter\nmatplotlib.pyplot.scatter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/79b1a6d92fd710c232a86323f3f69747/fourier_demo_wx_sgskip.py b/_downloads/79b1a6d92fd710c232a86323f3f69747/fourier_demo_wx_sgskip.py deleted file mode 120000 index 33f40303884..00000000000 --- a/_downloads/79b1a6d92fd710c232a86323f3f69747/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/79b1a6d92fd710c232a86323f3f69747/fourier_demo_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/79bd3e624b069e6d6008c3d9d0a39310/psd_demo.ipynb b/_downloads/79bd3e624b069e6d6008c3d9d0a39310/psd_demo.ipynb deleted file mode 120000 index 2d6bbf05686..00000000000 --- a/_downloads/79bd3e624b069e6d6008c3d9d0a39310/psd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/79bd3e624b069e6d6008c3d9d0a39310/psd_demo.ipynb \ No newline at end of file diff --git a/_downloads/79be7fea784717134727e66935a4b7b4/vline_hline_demo.ipynb b/_downloads/79be7fea784717134727e66935a4b7b4/vline_hline_demo.ipynb deleted file mode 120000 index 9442a11f12c..00000000000 --- a/_downloads/79be7fea784717134727e66935a4b7b4/vline_hline_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/79be7fea784717134727e66935a4b7b4/vline_hline_demo.ipynb \ No newline at end of file diff --git a/_downloads/79c5ee02e64e61823771bb21d19ed77c/histogram_multihist.py b/_downloads/79c5ee02e64e61823771bb21d19ed77c/histogram_multihist.py deleted file mode 100644 index 34e8cad32c0..00000000000 --- a/_downloads/79c5ee02e64e61823771bb21d19ed77c/histogram_multihist.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -===================================================== -The histogram (hist) function with multiple data sets -===================================================== - -Plot histogram with multiple sample sets and demonstrate: - - * Use of legend with multiple sample sets - * Stacked bars - * Step curve with no fill - * Data sets of different sample sizes - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -n_bins = 10 -x = np.random.randn(1000, 3) - -fig, axes = plt.subplots(nrows=2, ncols=2) -ax0, ax1, ax2, ax3 = axes.flatten() - -colors = ['red', 'tan', 'lime'] -ax0.hist(x, n_bins, density=True, histtype='bar', color=colors, label=colors) -ax0.legend(prop={'size': 10}) -ax0.set_title('bars with legend') - -ax1.hist(x, n_bins, density=True, histtype='bar', stacked=True) -ax1.set_title('stacked bar') - -ax2.hist(x, n_bins, histtype='step', stacked=True, fill=False) -ax2.set_title('stack step (unfilled)') - -# Make a multiple-histogram of data-sets with different length. -x_multi = [np.random.randn(n) for n in [10000, 5000, 2000]] -ax3.hist(x_multi, n_bins, histtype='bar') -ax3.set_title('different sample sizes') - -fig.tight_layout() -plt.show() diff --git a/_downloads/79cca01aa25ff65b23b051f7e4ca55f5/linestyles.py b/_downloads/79cca01aa25ff65b23b051f7e4ca55f5/linestyles.py deleted file mode 120000 index 81c0a739dcb..00000000000 --- a/_downloads/79cca01aa25ff65b23b051f7e4ca55f5/linestyles.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/79cca01aa25ff65b23b051f7e4ca55f5/linestyles.py \ No newline at end of file diff --git a/_downloads/79d41c98ca5c56ba3cd899653b27d324/mathtext_wx_sgskip.py b/_downloads/79d41c98ca5c56ba3cd899653b27d324/mathtext_wx_sgskip.py deleted file mode 120000 index 933f4cbc954..00000000000 --- a/_downloads/79d41c98ca5c56ba3cd899653b27d324/mathtext_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/79d41c98ca5c56ba3cd899653b27d324/mathtext_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/79dca4cdc38895ea56cfe03d28563ffa/watermark_image.ipynb b/_downloads/79dca4cdc38895ea56cfe03d28563ffa/watermark_image.ipynb deleted file mode 100644 index f2f66c29e5c..00000000000 --- a/_downloads/79dca4cdc38895ea56cfe03d28563ffa/watermark_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Watermark image\n\n\nUsing a PNG file as a watermark.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cbook as cbook\nimport matplotlib.image as image\nimport matplotlib.pyplot as plt\n\n\nwith cbook.get_sample_data('logo2.png') as file:\n im = image.imread(file)\n\nfig, ax = plt.subplots()\n\nax.plot(np.sin(10 * np.linspace(0, 1)), '-o', ms=20, alpha=0.7, mfc='orange')\nax.grid()\nfig.figimage(im, 10, 10, zorder=3, alpha=.5)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.image\nmatplotlib.image.imread\nmatplotlib.pyplot.imread\nmatplotlib.figure.Figure.figimage" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/79fa3b3042711015c5477f21cfd5d922/power_norm.ipynb b/_downloads/79fa3b3042711015c5477f21cfd5d922/power_norm.ipynb deleted file mode 120000 index c6165e9c8d6..00000000000 --- a/_downloads/79fa3b3042711015c5477f21cfd5d922/power_norm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/79fa3b3042711015c5477f21cfd5d922/power_norm.ipynb \ No newline at end of file diff --git a/_downloads/79fe220b64efef8d5fdcc6589ffc8226/fill.ipynb b/_downloads/79fe220b64efef8d5fdcc6589ffc8226/fill.ipynb deleted file mode 120000 index 3a0884ed0f9..00000000000 --- a/_downloads/79fe220b64efef8d5fdcc6589ffc8226/fill.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/79fe220b64efef8d5fdcc6589ffc8226/fill.ipynb \ No newline at end of file diff --git a/_downloads/7a11b216cc63b206eb9640e556b5f87d/barchart.ipynb b/_downloads/7a11b216cc63b206eb9640e556b5f87d/barchart.ipynb deleted file mode 120000 index cfda11d602f..00000000000 --- a/_downloads/7a11b216cc63b206eb9640e556b5f87d/barchart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7a11b216cc63b206eb9640e556b5f87d/barchart.ipynb \ No newline at end of file diff --git a/_downloads/7a122bc31ecd82863e12e21ce4ca151f/arrow_demo.py b/_downloads/7a122bc31ecd82863e12e21ce4ca151f/arrow_demo.py deleted file mode 120000 index 2a1e2da249a..00000000000 --- a/_downloads/7a122bc31ecd82863e12e21ce4ca151f/arrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7a122bc31ecd82863e12e21ce4ca151f/arrow_demo.py \ No newline at end of file diff --git a/_downloads/7a135133979140df6008a0d65af1881c/spines.py b/_downloads/7a135133979140df6008a0d65af1881c/spines.py deleted file mode 120000 index ebdf610ab4b..00000000000 --- a/_downloads/7a135133979140df6008a0d65af1881c/spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7a135133979140df6008a0d65af1881c/spines.py \ No newline at end of file diff --git a/_downloads/7a17302b1dbec037e5123dbef91a5520/gallery_jupyter.zip b/_downloads/7a17302b1dbec037e5123dbef91a5520/gallery_jupyter.zip deleted file mode 120000 index 127b687cd5e..00000000000 --- a/_downloads/7a17302b1dbec037e5123dbef91a5520/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7a17302b1dbec037e5123dbef91a5520/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/7a1ac6492abd015b810f40bd875482bc/fourier_demo_wx_sgskip.ipynb b/_downloads/7a1ac6492abd015b810f40bd875482bc/fourier_demo_wx_sgskip.ipynb deleted file mode 120000 index 0ba89ba8fc5..00000000000 --- a/_downloads/7a1ac6492abd015b810f40bd875482bc/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7a1ac6492abd015b810f40bd875482bc/fourier_demo_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/7a2214b2ee9e8c22e5ffc03600bdd567/markevery_demo.ipynb b/_downloads/7a2214b2ee9e8c22e5ffc03600bdd567/markevery_demo.ipynb deleted file mode 120000 index 6dcc7dab390..00000000000 --- a/_downloads/7a2214b2ee9e8c22e5ffc03600bdd567/markevery_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7a2214b2ee9e8c22e5ffc03600bdd567/markevery_demo.ipynb \ No newline at end of file diff --git a/_downloads/7a222153a650a0e97d03f638e371556f/bar_of_pie.ipynb b/_downloads/7a222153a650a0e97d03f638e371556f/bar_of_pie.ipynb deleted file mode 120000 index f5d1da3d7ce..00000000000 --- a/_downloads/7a222153a650a0e97d03f638e371556f/bar_of_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7a222153a650a0e97d03f638e371556f/bar_of_pie.ipynb \ No newline at end of file diff --git a/_downloads/7a2c4b29da4ee41d4fc398fb9b1656ad/unicode_minus.ipynb b/_downloads/7a2c4b29da4ee41d4fc398fb9b1656ad/unicode_minus.ipynb deleted file mode 120000 index 3778f8ce959..00000000000 --- a/_downloads/7a2c4b29da4ee41d4fc398fb9b1656ad/unicode_minus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7a2c4b29da4ee41d4fc398fb9b1656ad/unicode_minus.ipynb \ No newline at end of file diff --git a/_downloads/7a2e22d4c9981143a4868f4326ef9c9b/zoom_inset_axes.py b/_downloads/7a2e22d4c9981143a4868f4326ef9c9b/zoom_inset_axes.py deleted file mode 120000 index 7279c39ff4f..00000000000 --- a/_downloads/7a2e22d4c9981143a4868f4326ef9c9b/zoom_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7a2e22d4c9981143a4868f4326ef9c9b/zoom_inset_axes.py \ No newline at end of file diff --git a/_downloads/7a2eab73f806c767fb789616f5c9893b/image_slices_viewer.py b/_downloads/7a2eab73f806c767fb789616f5c9893b/image_slices_viewer.py deleted file mode 100644 index c4f653ccfa5..00000000000 --- a/_downloads/7a2eab73f806c767fb789616f5c9893b/image_slices_viewer.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -=================== -Image Slices Viewer -=================== - -Scroll through 2D image slices of a 3D array. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -class IndexTracker(object): - def __init__(self, ax, X): - self.ax = ax - ax.set_title('use scroll wheel to navigate images') - - self.X = X - rows, cols, self.slices = X.shape - self.ind = self.slices//2 - - self.im = ax.imshow(self.X[:, :, self.ind]) - self.update() - - def onscroll(self, event): - print("%s %s" % (event.button, event.step)) - if event.button == 'up': - self.ind = (self.ind + 1) % self.slices - else: - self.ind = (self.ind - 1) % self.slices - self.update() - - def update(self): - self.im.set_data(self.X[:, :, self.ind]) - self.ax.set_ylabel('slice %s' % self.ind) - self.im.axes.figure.canvas.draw() - - -fig, ax = plt.subplots(1, 1) - -X = np.random.rand(20, 20, 40) - -tracker = IndexTracker(ax, X) - - -fig.canvas.mpl_connect('scroll_event', tracker.onscroll) -plt.show() diff --git a/_downloads/7a2f2e095c2f1423eb962effeedc0172/anscombe.py b/_downloads/7a2f2e095c2f1423eb962effeedc0172/anscombe.py deleted file mode 120000 index e6a9996e05d..00000000000 --- a/_downloads/7a2f2e095c2f1423eb962effeedc0172/anscombe.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7a2f2e095c2f1423eb962effeedc0172/anscombe.py \ No newline at end of file diff --git a/_downloads/7a39fec5cc58feaed29e8cf06af5297e/colormap_normalizations_bounds.py b/_downloads/7a39fec5cc58feaed29e8cf06af5297e/colormap_normalizations_bounds.py deleted file mode 120000 index d49c10e503a..00000000000 --- a/_downloads/7a39fec5cc58feaed29e8cf06af5297e/colormap_normalizations_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7a39fec5cc58feaed29e8cf06af5297e/colormap_normalizations_bounds.py \ No newline at end of file diff --git a/_downloads/7a3a0cafd17c5db0a52090e5e50d253a/rainbow_text.ipynb b/_downloads/7a3a0cafd17c5db0a52090e5e50d253a/rainbow_text.ipynb deleted file mode 120000 index e2afc05a0eb..00000000000 --- a/_downloads/7a3a0cafd17c5db0a52090e5e50d253a/rainbow_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7a3a0cafd17c5db0a52090e5e50d253a/rainbow_text.ipynb \ No newline at end of file diff --git a/_downloads/7a3ac59d63a2d2199b4449c99d5c92a1/collections.py b/_downloads/7a3ac59d63a2d2199b4449c99d5c92a1/collections.py deleted file mode 120000 index f8d811e9d47..00000000000 --- a/_downloads/7a3ac59d63a2d2199b4449c99d5c92a1/collections.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7a3ac59d63a2d2199b4449c99d5c92a1/collections.py \ No newline at end of file diff --git a/_downloads/7a3f8cb42429b64085cd0058b277c208/image_zcoord.ipynb b/_downloads/7a3f8cb42429b64085cd0058b277c208/image_zcoord.ipynb deleted file mode 120000 index 3eec04e7706..00000000000 --- a/_downloads/7a3f8cb42429b64085cd0058b277c208/image_zcoord.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7a3f8cb42429b64085cd0058b277c208/image_zcoord.ipynb \ No newline at end of file diff --git a/_downloads/7a5363ecb40d342a348f0ed093175c07/axis_direction_demo_step03.ipynb b/_downloads/7a5363ecb40d342a348f0ed093175c07/axis_direction_demo_step03.ipynb deleted file mode 120000 index 428f6e2e9c6..00000000000 --- a/_downloads/7a5363ecb40d342a348f0ed093175c07/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7a5363ecb40d342a348f0ed093175c07/axis_direction_demo_step03.ipynb \ No newline at end of file diff --git a/_downloads/7a5a489f18d567fe1ed8c65dd4806079/tricontour3d.py b/_downloads/7a5a489f18d567fe1ed8c65dd4806079/tricontour3d.py deleted file mode 120000 index a687a0dc1bc..00000000000 --- a/_downloads/7a5a489f18d567fe1ed8c65dd4806079/tricontour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7a5a489f18d567fe1ed8c65dd4806079/tricontour3d.py \ No newline at end of file diff --git a/_downloads/7a665f1fd93b6178330c999b566c5bc8/parasite_simple.ipynb b/_downloads/7a665f1fd93b6178330c999b566c5bc8/parasite_simple.ipynb deleted file mode 120000 index 0256fa80f15..00000000000 --- a/_downloads/7a665f1fd93b6178330c999b566c5bc8/parasite_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7a665f1fd93b6178330c999b566c5bc8/parasite_simple.ipynb \ No newline at end of file diff --git a/_downloads/7a66c160a8ebd868c129434d0250ed68/pyplot_two_subplots.ipynb b/_downloads/7a66c160a8ebd868c129434d0250ed68/pyplot_two_subplots.ipynb deleted file mode 120000 index b043127f701..00000000000 --- a/_downloads/7a66c160a8ebd868c129434d0250ed68/pyplot_two_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7a66c160a8ebd868c129434d0250ed68/pyplot_two_subplots.ipynb \ No newline at end of file diff --git a/_downloads/7a779e36ecaeb6bc51a35d6a916e1548/demo_parasite_axes2.ipynb b/_downloads/7a779e36ecaeb6bc51a35d6a916e1548/demo_parasite_axes2.ipynb deleted file mode 120000 index 1276b147dc6..00000000000 --- a/_downloads/7a779e36ecaeb6bc51a35d6a916e1548/demo_parasite_axes2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7a779e36ecaeb6bc51a35d6a916e1548/demo_parasite_axes2.ipynb \ No newline at end of file diff --git a/_downloads/7a8067ef28200d2a791028a1ddf67301/fig_x.ipynb b/_downloads/7a8067ef28200d2a791028a1ddf67301/fig_x.ipynb deleted file mode 100644 index 2ed3d7c787f..00000000000 --- a/_downloads/7a8067ef28200d2a791028a1ddf67301/fig_x.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Adding lines to figures\n\n\nAdding lines to a figure without any axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.lines as lines\n\n\nfig = plt.figure()\nl1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig)\nl2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig)\nfig.lines.extend([l1, l2])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.figure\nmatplotlib.lines\nmatplotlib.lines.Line2D" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7a8253c2d666a70f73ff3e1f3bfe09d1/scatter_demo2.ipynb b/_downloads/7a8253c2d666a70f73ff3e1f3bfe09d1/scatter_demo2.ipynb deleted file mode 120000 index 471aaaee11e..00000000000 --- a/_downloads/7a8253c2d666a70f73ff3e1f3bfe09d1/scatter_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7a8253c2d666a70f73ff3e1f3bfe09d1/scatter_demo2.ipynb \ No newline at end of file diff --git a/_downloads/7a8a8ff8de19b8a5e212d0120ee46be9/scalarformatter.py b/_downloads/7a8a8ff8de19b8a5e212d0120ee46be9/scalarformatter.py deleted file mode 120000 index be18f3f14bc..00000000000 --- a/_downloads/7a8a8ff8de19b8a5e212d0120ee46be9/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7a8a8ff8de19b8a5e212d0120ee46be9/scalarformatter.py \ No newline at end of file diff --git a/_downloads/7a9236bb4e319f67df23e6ade07d81ce/rainbow_text.py b/_downloads/7a9236bb4e319f67df23e6ade07d81ce/rainbow_text.py deleted file mode 120000 index 06442f4217a..00000000000 --- a/_downloads/7a9236bb4e319f67df23e6ade07d81ce/rainbow_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7a9236bb4e319f67df23e6ade07d81ce/rainbow_text.py \ No newline at end of file diff --git a/_downloads/7aa510be32a5c72df8a01d67a5890deb/simple_anchored_artists.py b/_downloads/7aa510be32a5c72df8a01d67a5890deb/simple_anchored_artists.py deleted file mode 120000 index 8d8b832d29b..00000000000 --- a/_downloads/7aa510be32a5c72df8a01d67a5890deb/simple_anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7aa510be32a5c72df8a01d67a5890deb/simple_anchored_artists.py \ No newline at end of file diff --git a/_downloads/7aa769894126484332f4c25d4f8cc722/custom_legends.ipynb b/_downloads/7aa769894126484332f4c25d4f8cc722/custom_legends.ipynb deleted file mode 120000 index 329da8e972f..00000000000 --- a/_downloads/7aa769894126484332f4c25d4f8cc722/custom_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7aa769894126484332f4c25d4f8cc722/custom_legends.ipynb \ No newline at end of file diff --git a/_downloads/7aa9881840dfca3655d1c9fc752ea0d1/demo_gridspec01.py b/_downloads/7aa9881840dfca3655d1c9fc752ea0d1/demo_gridspec01.py deleted file mode 120000 index e5c075e7ecf..00000000000 --- a/_downloads/7aa9881840dfca3655d1c9fc752ea0d1/demo_gridspec01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7aa9881840dfca3655d1c9fc752ea0d1/demo_gridspec01.py \ No newline at end of file diff --git a/_downloads/7aabc3d14f548249b8e302338940dda2/simple_anim.py b/_downloads/7aabc3d14f548249b8e302338940dda2/simple_anim.py deleted file mode 100644 index 59552cd1cfa..00000000000 --- a/_downloads/7aabc3d14f548249b8e302338940dda2/simple_anim.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================== -Animated line plot -================== - -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - -fig, ax = plt.subplots() - -x = np.arange(0, 2*np.pi, 0.01) -line, = ax.plot(x, np.sin(x)) - - -def init(): # only required for blitting to give a clean slate. - line.set_ydata([np.nan] * len(x)) - return line, - - -def animate(i): - line.set_ydata(np.sin(x + i / 100)) # update the data. - return line, - - -ani = animation.FuncAnimation( - fig, animate, init_func=init, interval=2, blit=True, save_count=50) - -# To save the animation, use e.g. -# -# ani.save("movie.mp4") -# -# or -# -# from matplotlib.animation import FFMpegWriter -# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800) -# ani.save("movie.mp4", writer=writer) - -plt.show() diff --git a/_downloads/7aac9fbd1d46dd334282cb599257ac4f/mathtext_examples.ipynb b/_downloads/7aac9fbd1d46dd334282cb599257ac4f/mathtext_examples.ipynb deleted file mode 120000 index 8b9d203026c..00000000000 --- a/_downloads/7aac9fbd1d46dd334282cb599257ac4f/mathtext_examples.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7aac9fbd1d46dd334282cb599257ac4f/mathtext_examples.ipynb \ No newline at end of file diff --git a/_downloads/7aad73a9c2f62049bf362bb085e89971/svg_filter_pie.py b/_downloads/7aad73a9c2f62049bf362bb085e89971/svg_filter_pie.py deleted file mode 120000 index f4e6c3cc9be..00000000000 --- a/_downloads/7aad73a9c2f62049bf362bb085e89971/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7aad73a9c2f62049bf362bb085e89971/svg_filter_pie.py \ No newline at end of file diff --git a/_downloads/7ab9cc8be6dc08b061dd40c6a35da4de/embedding_in_qt_sgskip.py b/_downloads/7ab9cc8be6dc08b061dd40c6a35da4de/embedding_in_qt_sgskip.py deleted file mode 100644 index 54059c62147..00000000000 --- a/_downloads/7ab9cc8be6dc08b061dd40c6a35da4de/embedding_in_qt_sgskip.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -=============== -Embedding in Qt -=============== - -Simple Qt application embedding Matplotlib canvases. This program will work -equally well using Qt4 and Qt5. Either version of Qt can be selected (for -example) by setting the ``MPLBACKEND`` environment variable to "Qt4Agg" or -"Qt5Agg", or by first importing the desired version of PyQt. -""" - -import sys -import time - -import numpy as np - -from matplotlib.backends.qt_compat import QtCore, QtWidgets, is_pyqt5 -if is_pyqt5(): - from matplotlib.backends.backend_qt5agg import ( - FigureCanvas, NavigationToolbar2QT as NavigationToolbar) -else: - from matplotlib.backends.backend_qt4agg import ( - FigureCanvas, NavigationToolbar2QT as NavigationToolbar) -from matplotlib.figure import Figure - - -class ApplicationWindow(QtWidgets.QMainWindow): - def __init__(self): - super().__init__() - self._main = QtWidgets.QWidget() - self.setCentralWidget(self._main) - layout = QtWidgets.QVBoxLayout(self._main) - - static_canvas = FigureCanvas(Figure(figsize=(5, 3))) - layout.addWidget(static_canvas) - self.addToolBar(NavigationToolbar(static_canvas, self)) - - dynamic_canvas = FigureCanvas(Figure(figsize=(5, 3))) - layout.addWidget(dynamic_canvas) - self.addToolBar(QtCore.Qt.BottomToolBarArea, - NavigationToolbar(dynamic_canvas, self)) - - self._static_ax = static_canvas.figure.subplots() - t = np.linspace(0, 10, 501) - self._static_ax.plot(t, np.tan(t), ".") - - self._dynamic_ax = dynamic_canvas.figure.subplots() - self._timer = dynamic_canvas.new_timer( - 100, [(self._update_canvas, (), {})]) - self._timer.start() - - def _update_canvas(self): - self._dynamic_ax.clear() - t = np.linspace(0, 10, 101) - # Shift the sinusoid as a function of time. - self._dynamic_ax.plot(t, np.sin(t + time.time())) - self._dynamic_ax.figure.canvas.draw() - - -if __name__ == "__main__": - qapp = QtWidgets.QApplication(sys.argv) - app = ApplicationWindow() - app.show() - qapp.exec_() diff --git a/_downloads/7ac036e939385ce9361f33e691884cfd/colormap_normalizations_lognorm.py b/_downloads/7ac036e939385ce9361f33e691884cfd/colormap_normalizations_lognorm.py deleted file mode 120000 index 1fa1533794d..00000000000 --- a/_downloads/7ac036e939385ce9361f33e691884cfd/colormap_normalizations_lognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/7ac036e939385ce9361f33e691884cfd/colormap_normalizations_lognorm.py \ No newline at end of file diff --git a/_downloads/7ac44242b86b4a9635fb5c655e48b80b/span_selector.ipynb b/_downloads/7ac44242b86b4a9635fb5c655e48b80b/span_selector.ipynb deleted file mode 120000 index 45472ee2ea4..00000000000 --- a/_downloads/7ac44242b86b4a9635fb5c655e48b80b/span_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7ac44242b86b4a9635fb5c655e48b80b/span_selector.ipynb \ No newline at end of file diff --git a/_downloads/7ad072adf89bfbe7bce8a98b8d01edce/subplots_demo.py b/_downloads/7ad072adf89bfbe7bce8a98b8d01edce/subplots_demo.py deleted file mode 100644 index 6dddeb26ba0..00000000000 --- a/_downloads/7ad072adf89bfbe7bce8a98b8d01edce/subplots_demo.py +++ /dev/null @@ -1,191 +0,0 @@ -""" -================================================= -Creating multiple subplots using ``plt.subplots`` -================================================= - -`.pyplot.subplots` creates a figure and a grid of subplots with a single call, -while providing reasonable control over how the individual plots are created. -For more advanced use cases you can use `.GridSpec` for a more general subplot -layout or `.Figure.add_subplot` for adding subplots at arbitrary locations -within the figure. -""" - -# sphinx_gallery_thumbnail_number = 11 - -import matplotlib.pyplot as plt -import numpy as np - -# Some example data to display -x = np.linspace(0, 2 * np.pi, 400) -y = np.sin(x ** 2) - -############################################################################### -# A figure with just one subplot -# """""""""""""""""""""""""""""" -# -# ``subplots()`` without arguments returns a `.Figure` and a single -# `~.axes.Axes`. -# -# This is actually the simplest and recommended way of creating a single -# Figure and Axes. - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_title('A single plot') - -############################################################################### -# Stacking subplots in one direction -# """""""""""""""""""""""""""""""""" -# -# The first two optional arguments of `.pyplot.subplots` define the number of -# rows and columns of the subplot grid. -# -# When stacking in one direction only, the returned `axs` is a 1D numpy array -# containing the list of created Axes. - -fig, axs = plt.subplots(2) -fig.suptitle('Vertically stacked subplots') -axs[0].plot(x, y) -axs[1].plot(x, -y) - -############################################################################### -# If you are creating just a few Axes, it's handy to unpack them immediately to -# dedicated variables for each Axes. That way, we can use ``ax1`` instead of -# the more verbose ``axs[0]``. - -fig, (ax1, ax2) = plt.subplots(2) -fig.suptitle('Vertically stacked subplots') -ax1.plot(x, y) -ax2.plot(x, -y) - -############################################################################### -# To obtain side-by-side subplots, pass parameters ``1, 2`` for one row and two -# columns. - -fig, (ax1, ax2) = plt.subplots(1, 2) -fig.suptitle('Horizontally stacked subplots') -ax1.plot(x, y) -ax2.plot(x, -y) - -############################################################################### -# Stacking subplots in two directions -# """"""""""""""""""""""""""""""""""" -# -# When stacking in two directions, the returned `axs` is a 2D numpy array. -# -# If you have to set parameters for each subplot it's handy to iterate over -# all subplots in a 2D grid using ``for ax in axs.flat:``. - -fig, axs = plt.subplots(2, 2) -axs[0, 0].plot(x, y) -axs[0, 0].set_title('Axis [0,0]') -axs[0, 1].plot(x, y, 'tab:orange') -axs[0, 1].set_title('Axis [0,1]') -axs[1, 0].plot(x, -y, 'tab:green') -axs[1, 0].set_title('Axis [1,0]') -axs[1, 1].plot(x, -y, 'tab:red') -axs[1, 1].set_title('Axis [1,1]') - -for ax in axs.flat: - ax.set(xlabel='x-label', ylabel='y-label') - -# Hide x labels and tick labels for top plots and y ticks for right plots. -for ax in axs.flat: - ax.label_outer() - -############################################################################### -# You can use tuple-unpacking also in 2D to assign all subplots to dedicated -# variables: - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) -fig.suptitle('Sharing x per column, y per row') -ax1.plot(x, y) -ax2.plot(x, y**2, 'tab:orange') -ax3.plot(x, -y, 'tab:green') -ax4.plot(x, -y**2, 'tab:red') - -for ax in fig.get_axes(): - ax.label_outer() - -############################################################################### -# Sharing axes -# """""""""""" -# -# By default, each Axes is scaled individually. Thus, if the ranges are -# different the tick values of the subplots do not align. - -fig, (ax1, ax2) = plt.subplots(2) -fig.suptitle('Axes values are scaled individually by default') -ax1.plot(x, y) -ax2.plot(x + 1, -y) - -############################################################################### -# You can use *sharex* or *sharey* to align the horizontal or vertical axis. - -fig, (ax1, ax2) = plt.subplots(2, sharex=True) -fig.suptitle('Aligning x-axis using sharex') -ax1.plot(x, y) -ax2.plot(x + 1, -y) - -############################################################################### -# Setting *sharex* or *sharey* to ``True`` enables global sharing across the -# whole grid, i.e. also the y-axes of vertically stacked subplots have the -# same scale when using ``sharey=True``. - -fig, axs = plt.subplots(3, sharex=True, sharey=True) -fig.suptitle('Sharing both axes') -axs[0].plot(x, y ** 2) -axs[1].plot(x, 0.3 * y, 'o') -axs[2].plot(x, y, '+') - -############################################################################### -# For subplots that are sharing axes one set of tick labels is enough. Tick -# labels of inner Axes are automatically removed by *sharex* and *sharey*. -# Still there remains an unused empty space between the subplots. -# -# The parameter *gridspec_kw* of `.pyplot.subplots` controls the grid -# properties (see also `.GridSpec`). For example, we can reduce the height -# between vertical subplots using ``gridspec_kw={'hspace': 0}``. -# -# `.label_outer` is a handy method to remove labels and ticks from subplots -# that are not at the edge of the grid. - -fig, axs = plt.subplots(3, sharex=True, sharey=True, gridspec_kw={'hspace': 0}) -fig.suptitle('Sharing both axes') -axs[0].plot(x, y ** 2) -axs[1].plot(x, 0.3 * y, 'o') -axs[2].plot(x, y, '+') - -# Hide x labels and tick labels for all but bottom plot. -for ax in axs: - ax.label_outer() - -############################################################################### -# Apart from ``True`` and ``False``, both *sharex* and *sharey* accept the -# values 'row' and 'col' to share the values only per row or column. - -fig, axs = plt.subplots(2, 2, sharex='col', sharey='row', - gridspec_kw={'hspace': 0, 'wspace': 0}) -(ax1, ax2), (ax3, ax4) = axs -fig.suptitle('Sharing x per column, y per row') -ax1.plot(x, y) -ax2.plot(x, y**2, 'tab:orange') -ax3.plot(x + 1, -y, 'tab:green') -ax4.plot(x + 2, -y**2, 'tab:red') - -for ax in axs.flat: - ax.label_outer() - -############################################################################### -# Polar axes -# """""""""" -# -# The parameter *subplot_kw* of `.pyplot.subplots` controls the subplot -# properties (see also `.Figure.add_subplot`). In particular, this can be used -# to create a grid of polar Axes. - -fig, (ax1, ax2) = plt.subplots(1, 2, subplot_kw=dict(projection='polar')) -ax1.plot(x, y) -ax2.plot(x, y ** 2) - -plt.show() diff --git a/_downloads/7ad8743d31b5bf4d505e39784cef7bd6/demo_gridspec01.ipynb b/_downloads/7ad8743d31b5bf4d505e39784cef7bd6/demo_gridspec01.ipynb deleted file mode 120000 index 23b0102034b..00000000000 --- a/_downloads/7ad8743d31b5bf4d505e39784cef7bd6/demo_gridspec01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7ad8743d31b5bf4d505e39784cef7bd6/demo_gridspec01.ipynb \ No newline at end of file diff --git a/_downloads/7ae1b8782cb127ea7a35f755052e4647/wire3d_animation_sgskip.py b/_downloads/7ae1b8782cb127ea7a35f755052e4647/wire3d_animation_sgskip.py deleted file mode 120000 index 8130ed2f3b0..00000000000 --- a/_downloads/7ae1b8782cb127ea7a35f755052e4647/wire3d_animation_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7ae1b8782cb127ea7a35f755052e4647/wire3d_animation_sgskip.py \ No newline at end of file diff --git a/_downloads/7ae7882b92eea4ad03cff7c603d2a6dd/lines3d.py b/_downloads/7ae7882b92eea4ad03cff7c603d2a6dd/lines3d.py deleted file mode 120000 index 72c5188f6cb..00000000000 --- a/_downloads/7ae7882b92eea4ad03cff7c603d2a6dd/lines3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7ae7882b92eea4ad03cff7c603d2a6dd/lines3d.py \ No newline at end of file diff --git a/_downloads/7ae92e732d625e46b5b985739557db1e/spy_demos.py b/_downloads/7ae92e732d625e46b5b985739557db1e/spy_demos.py deleted file mode 120000 index 0cb8d75e7a7..00000000000 --- a/_downloads/7ae92e732d625e46b5b985739557db1e/spy_demos.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7ae92e732d625e46b5b985739557db1e/spy_demos.py \ No newline at end of file diff --git a/_downloads/7ae9b246df33a578c55aa2b21e86115c/path_tutorial.py b/_downloads/7ae9b246df33a578c55aa2b21e86115c/path_tutorial.py deleted file mode 120000 index c60ceb5dc26..00000000000 --- a/_downloads/7ae9b246df33a578c55aa2b21e86115c/path_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7ae9b246df33a578c55aa2b21e86115c/path_tutorial.py \ No newline at end of file diff --git a/_downloads/7aecd0ee1c8d945fad9779db5ebd3185/rasterization_demo.py b/_downloads/7aecd0ee1c8d945fad9779db5ebd3185/rasterization_demo.py deleted file mode 120000 index 89201b0cf27..00000000000 --- a/_downloads/7aecd0ee1c8d945fad9779db5ebd3185/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7aecd0ee1c8d945fad9779db5ebd3185/rasterization_demo.py \ No newline at end of file diff --git a/_downloads/7afd1bd4ce57e9fc7b844dcc43ae67f5/annotate_explain.py b/_downloads/7afd1bd4ce57e9fc7b844dcc43ae67f5/annotate_explain.py deleted file mode 100644 index c6410798527..00000000000 --- a/_downloads/7afd1bd4ce57e9fc7b844dcc43ae67f5/annotate_explain.py +++ /dev/null @@ -1,83 +0,0 @@ -""" -================ -Annotate Explain -================ - -""" - -import matplotlib.pyplot as plt -import matplotlib.patches as mpatches - - -fig, axs = plt.subplots(2, 2) -x1, y1 = 0.3, 0.3 -x2, y2 = 0.7, 0.7 - -ax = axs.flat[0] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="-", - color="0.5", - patchB=None, - shrinkB=0, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "connect", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[1] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="-", - color="0.5", - patchB=el, - shrinkB=0, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "clip", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[2] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="-", - color="0.5", - patchB=el, - shrinkB=5, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "shrink", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[3] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="fancy", - color="0.5", - patchB=el, - shrinkB=5, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "mutate", transform=ax.transAxes, ha="left", va="top") - -for ax in axs.flat: - ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1) - -plt.show() diff --git a/_downloads/7afd487d29d3e4007341ca5784ceb850/stackplot_demo.ipynb b/_downloads/7afd487d29d3e4007341ca5784ceb850/stackplot_demo.ipynb deleted file mode 120000 index 2698df084d5..00000000000 --- a/_downloads/7afd487d29d3e4007341ca5784ceb850/stackplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7afd487d29d3e4007341ca5784ceb850/stackplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/7afd630939f3c8877e01fe26f878f86b/fonts_demo.py b/_downloads/7afd630939f3c8877e01fe26f878f86b/fonts_demo.py deleted file mode 120000 index 3fd23d1c033..00000000000 --- a/_downloads/7afd630939f3c8877e01fe26f878f86b/fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7afd630939f3c8877e01fe26f878f86b/fonts_demo.py \ No newline at end of file diff --git a/_downloads/7afdbd2ba05106034ee966908e1db908/image_thumbnail_sgskip.py b/_downloads/7afdbd2ba05106034ee966908e1db908/image_thumbnail_sgskip.py deleted file mode 120000 index b40104da703..00000000000 --- a/_downloads/7afdbd2ba05106034ee966908e1db908/image_thumbnail_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7afdbd2ba05106034ee966908e1db908/image_thumbnail_sgskip.py \ No newline at end of file diff --git a/_downloads/7b05dbcb403f2e01c55144ca9330b78b/demo_colorbar_of_inset_axes.py b/_downloads/7b05dbcb403f2e01c55144ca9330b78b/demo_colorbar_of_inset_axes.py deleted file mode 100644 index 7d330a4de58..00000000000 --- a/_downloads/7b05dbcb403f2e01c55144ca9330b78b/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -=========================== -Demo Colorbar of Inset Axes -=========================== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.inset_locator import inset_axes, zoomed_inset_axes -from mpl_toolkits.axes_grid1.colorbar import colorbar - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - import numpy as np - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -fig, ax = plt.subplots(figsize=[5, 4]) - -Z, extent = get_demo_image() - -ax.set(aspect=1, - xlim=(-15, 15), - ylim=(-20, 5)) - - -axins = zoomed_inset_axes(ax, zoom=2, loc='upper left') -im = axins.imshow(Z, extent=extent, interpolation="nearest", - origin="lower") - -plt.xticks(visible=False) -plt.yticks(visible=False) - - -# colorbar -cax = inset_axes(axins, - width="5%", # width = 10% of parent_bbox width - height="100%", # height : 50% - loc='lower left', - bbox_to_anchor=(1.05, 0., 1, 1), - bbox_transform=axins.transAxes, - borderpad=0, - ) - -colorbar(im, cax=cax) - -plt.show() diff --git a/_downloads/7b0a223c1f949ea7f3e8e9c1fcb91b1a/usetex_fonteffects.ipynb b/_downloads/7b0a223c1f949ea7f3e8e9c1fcb91b1a/usetex_fonteffects.ipynb deleted file mode 120000 index 8274dbb0304..00000000000 --- a/_downloads/7b0a223c1f949ea7f3e8e9c1fcb91b1a/usetex_fonteffects.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7b0a223c1f949ea7f3e8e9c1fcb91b1a/usetex_fonteffects.ipynb \ No newline at end of file diff --git a/_downloads/7b0f509c752f8ccc41afab443f524854/ellipse_collection.ipynb b/_downloads/7b0f509c752f8ccc41afab443f524854/ellipse_collection.ipynb deleted file mode 120000 index 4f2430d77d0..00000000000 --- a/_downloads/7b0f509c752f8ccc41afab443f524854/ellipse_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7b0f509c752f8ccc41afab443f524854/ellipse_collection.ipynb \ No newline at end of file diff --git a/_downloads/7b110fbd9771503600a2fbdfe95889dd/custom_projection.py b/_downloads/7b110fbd9771503600a2fbdfe95889dd/custom_projection.py deleted file mode 120000 index 848af251dcc..00000000000 --- a/_downloads/7b110fbd9771503600a2fbdfe95889dd/custom_projection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7b110fbd9771503600a2fbdfe95889dd/custom_projection.py \ No newline at end of file diff --git a/_downloads/7b123d89f0cb15ea4e3c292bd961e9e8/ggplot.py b/_downloads/7b123d89f0cb15ea4e3c292bd961e9e8/ggplot.py deleted file mode 100644 index 799021e50cf..00000000000 --- a/_downloads/7b123d89f0cb15ea4e3c292bd961e9e8/ggplot.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -================== -ggplot style sheet -================== - -This example demonstrates the "ggplot" style, which adjusts the style to -emulate ggplot_ (a popular plotting package for R_). - -These settings were shamelessly stolen from [1]_ (with permission). - -.. [1] https://web.archive.org/web/20111215111010/http://www.huyng.com/archives/sane-color-scheme-for-matplotlib/691/ - -.. _ggplot: https://ggplot2.tidyverse.org/ -.. _R: https://www.r-project.org/ - -""" -import numpy as np -import matplotlib.pyplot as plt - -plt.style.use('ggplot') - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, axes = plt.subplots(ncols=2, nrows=2) -ax1, ax2, ax3, ax4 = axes.ravel() - -# scatter plot (Note: `plt.scatter` doesn't use default colors) -x, y = np.random.normal(size=(2, 200)) -ax1.plot(x, y, 'o') - -# sinusoidal lines with colors from default color cycle -L = 2*np.pi -x = np.linspace(0, L) -ncolors = len(plt.rcParams['axes.prop_cycle']) -shift = np.linspace(0, L, ncolors, endpoint=False) -for s in shift: - ax2.plot(x, np.sin(x + s), '-') -ax2.margins(0) - -# bar graphs -x = np.arange(5) -y1, y2 = np.random.randint(1, 25, size=(2, 5)) -width = 0.25 -ax3.bar(x, y1, width) -ax3.bar(x + width, y2, width, - color=list(plt.rcParams['axes.prop_cycle'])[2]['color']) -ax3.set_xticks(x + width) -ax3.set_xticklabels(['a', 'b', 'c', 'd', 'e']) - -# circles with colors from default color cycle -for i, color in enumerate(plt.rcParams['axes.prop_cycle']): - xy = np.random.normal(size=2) - ax4.add_patch(plt.Circle(xy, radius=0.3, color=color['color'])) -ax4.axis('equal') -ax4.margins(0) - -plt.show() diff --git a/_downloads/7b1257d0a17e761bb654f64c16a5268a/irregulardatagrid.ipynb b/_downloads/7b1257d0a17e761bb654f64c16a5268a/irregulardatagrid.ipynb deleted file mode 120000 index 89946d2d55e..00000000000 --- a/_downloads/7b1257d0a17e761bb654f64c16a5268a/irregulardatagrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7b1257d0a17e761bb654f64c16a5268a/irregulardatagrid.ipynb \ No newline at end of file diff --git a/_downloads/7b16e8165e2cd7ec5ae952bbc1e3de53/pylab_with_gtk_sgskip.py b/_downloads/7b16e8165e2cd7ec5ae952bbc1e3de53/pylab_with_gtk_sgskip.py deleted file mode 120000 index 396d15e3873..00000000000 --- a/_downloads/7b16e8165e2cd7ec5ae952bbc1e3de53/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7b16e8165e2cd7ec5ae952bbc1e3de53/pylab_with_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/7b1f53f1b9bc20da4cc2e76b4c40314c/fancybox_demo.py b/_downloads/7b1f53f1b9bc20da4cc2e76b4c40314c/fancybox_demo.py deleted file mode 120000 index 472a97e3ea2..00000000000 --- a/_downloads/7b1f53f1b9bc20da4cc2e76b4c40314c/fancybox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7b1f53f1b9bc20da4cc2e76b4c40314c/fancybox_demo.py \ No newline at end of file diff --git a/_downloads/7b1fa5d4a49de303b4818e004380ffea/align_ylabels.py b/_downloads/7b1fa5d4a49de303b4818e004380ffea/align_ylabels.py deleted file mode 120000 index b058ac6337a..00000000000 --- a/_downloads/7b1fa5d4a49de303b4818e004380ffea/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7b1fa5d4a49de303b4818e004380ffea/align_ylabels.py \ No newline at end of file diff --git a/_downloads/7b2376c6fbc47447ce83369ab1ec9d1c/surface3d_3.ipynb b/_downloads/7b2376c6fbc47447ce83369ab1ec9d1c/surface3d_3.ipynb deleted file mode 100644 index c76f5e6acf3..00000000000 --- a/_downloads/7b2376c6fbc47447ce83369ab1ec9d1c/surface3d_3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================\n3D surface (checkerboard)\n=========================\n\nDemonstrates plotting a 3D surface colored in a checkerboard pattern.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import LinearLocator\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make data.\nX = np.arange(-5, 5, 0.25)\nxlen = len(X)\nY = np.arange(-5, 5, 0.25)\nylen = len(Y)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\n# Create an empty array of strings with the same shape as the meshgrid, and\n# populate it with two colors in a checkerboard pattern.\ncolortuple = ('y', 'b')\ncolors = np.empty(X.shape, dtype=str)\nfor y in range(ylen):\n for x in range(xlen):\n colors[x, y] = colortuple[(x + y) % len(colortuple)]\n\n# Plot the surface with face colors taken from the array we made.\nsurf = ax.plot_surface(X, Y, Z, facecolors=colors, linewidth=0)\n\n# Customize the z axis.\nax.set_zlim(-1, 1)\nax.w_zaxis.set_major_locator(LinearLocator(6))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7b23b13a5ad615a7663c60c147d2c8d2/animated_histogram.py b/_downloads/7b23b13a5ad615a7663c60c147d2c8d2/animated_histogram.py deleted file mode 120000 index b5606c679f8..00000000000 --- a/_downloads/7b23b13a5ad615a7663c60c147d2c8d2/animated_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7b23b13a5ad615a7663c60c147d2c8d2/animated_histogram.py \ No newline at end of file diff --git a/_downloads/7b243af058a8b5ae50f4266fb8405ece/demo_colorbar_with_axes_divider.ipynb b/_downloads/7b243af058a8b5ae50f4266fb8405ece/demo_colorbar_with_axes_divider.ipynb deleted file mode 100644 index d0eb2588af6..00000000000 --- a/_downloads/7b243af058a8b5ae50f4266fb8405ece/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Colorbar with Axes Divider\n\n\nThe make_axes_locatable function (part of the axes_divider module) takes an\nexisting axes, creates a divider for it and returns an instance of the\nAxesLocator class. The append_axes method of this AxesLocator can then be used\nto create a new axes on a given side (\"top\", \"right\", \"bottom\", or \"left\") of\nthe original axes. This example uses Axes Divider to add colorbars next to\naxes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_divider import make_axes_locatable\nfrom mpl_toolkits.axes_grid1.colorbar import colorbar\n\nfig, (ax1, ax2) = plt.subplots(1, 2)\nfig.subplots_adjust(wspace=0.5)\n\nim1 = ax1.imshow([[1, 2], [3, 4]])\nax1_divider = make_axes_locatable(ax1)\n# add an axes to the right of the main axes.\ncax1 = ax1_divider.append_axes(\"right\", size=\"7%\", pad=\"2%\")\ncb1 = colorbar(im1, cax=cax1)\n\nim2 = ax2.imshow([[1, 2], [3, 4]])\nax2_divider = make_axes_locatable(ax2)\n# add an axes above the main axes.\ncax2 = ax2_divider.append_axes(\"top\", size=\"7%\", pad=\"2%\")\ncb2 = colorbar(im2, cax=cax2, orientation=\"horizontal\")\n# change tick position to top. Tick position defaults to bottom and overlaps\n# the image.\ncax2.xaxis.set_ticks_position(\"top\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7b30d400757e097a500e15d6520845fc/demo_axisline_style.ipynb b/_downloads/7b30d400757e097a500e15d6520845fc/demo_axisline_style.ipynb deleted file mode 120000 index 4dce2a162c6..00000000000 --- a/_downloads/7b30d400757e097a500e15d6520845fc/demo_axisline_style.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7b30d400757e097a500e15d6520845fc/demo_axisline_style.ipynb \ No newline at end of file diff --git a/_downloads/7b32de53b6b5356dced216af49ad9ad6/errorbar.ipynb b/_downloads/7b32de53b6b5356dced216af49ad9ad6/errorbar.ipynb deleted file mode 120000 index 276e288a0d8..00000000000 --- a/_downloads/7b32de53b6b5356dced216af49ad9ad6/errorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7b32de53b6b5356dced216af49ad9ad6/errorbar.ipynb \ No newline at end of file diff --git a/_downloads/7b35c8180fde91d63fc260375c593a76/unchained.ipynb b/_downloads/7b35c8180fde91d63fc260375c593a76/unchained.ipynb deleted file mode 120000 index f1ceddfbd1d..00000000000 --- a/_downloads/7b35c8180fde91d63fc260375c593a76/unchained.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7b35c8180fde91d63fc260375c593a76/unchained.ipynb \ No newline at end of file diff --git a/_downloads/7b3f27b702005f22cf293befefef0741/tripcolor_demo.py b/_downloads/7b3f27b702005f22cf293befefef0741/tripcolor_demo.py deleted file mode 120000 index 8313addf70f..00000000000 --- a/_downloads/7b3f27b702005f22cf293befefef0741/tripcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7b3f27b702005f22cf293befefef0741/tripcolor_demo.py \ No newline at end of file diff --git a/_downloads/7b4e8ccc1efee032f70e80ac1bfedca3/simple_axisline4.ipynb b/_downloads/7b4e8ccc1efee032f70e80ac1bfedca3/simple_axisline4.ipynb deleted file mode 100644 index 8837cc8b35e..00000000000 --- a/_downloads/7b4e8ccc1efee032f70e80ac1bfedca3/simple_axisline4.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline4\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import host_subplot\nimport numpy as np\n\nax = host_subplot(111)\nxx = np.arange(0, 2*np.pi, 0.01)\nax.plot(xx, np.sin(xx))\n\nax2 = ax.twin() # ax2 is responsible for \"top\" axis and \"right\" axis\nax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi])\nax2.set_xticklabels([\"$0$\", r\"$\\frac{1}{2}\\pi$\",\n r\"$\\pi$\", r\"$\\frac{3}{2}\\pi$\", r\"$2\\pi$\"])\n\nax2.axis[\"right\"].major_ticklabels.set_visible(False)\nax2.axis[\"top\"].major_ticklabels.set_visible(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7b647b036c45ee760c01d8a4613c6cee/demo_curvelinear_grid2.ipynb b/_downloads/7b647b036c45ee760c01d8a4613c6cee/demo_curvelinear_grid2.ipynb deleted file mode 120000 index 0f16c52e0f9..00000000000 --- a/_downloads/7b647b036c45ee760c01d8a4613c6cee/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7b647b036c45ee760c01d8a4613c6cee/demo_curvelinear_grid2.ipynb \ No newline at end of file diff --git a/_downloads/7b66692f7f21b608ada79714b2369dfb/multipage_pdf.ipynb b/_downloads/7b66692f7f21b608ada79714b2369dfb/multipage_pdf.ipynb deleted file mode 120000 index 53990a821bb..00000000000 --- a/_downloads/7b66692f7f21b608ada79714b2369dfb/multipage_pdf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7b66692f7f21b608ada79714b2369dfb/multipage_pdf.ipynb \ No newline at end of file diff --git a/_downloads/7b6d50c6f4bcc4d6c2bbb9405c8ab7c3/subplot_demo.ipynb b/_downloads/7b6d50c6f4bcc4d6c2bbb9405c8ab7c3/subplot_demo.ipynb deleted file mode 120000 index cf314220f5a..00000000000 --- a/_downloads/7b6d50c6f4bcc4d6c2bbb9405c8ab7c3/subplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7b6d50c6f4bcc4d6c2bbb9405c8ab7c3/subplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/7b6fa550c2818194e1684b894628c005/fig_axes_labels_simple.ipynb b/_downloads/7b6fa550c2818194e1684b894628c005/fig_axes_labels_simple.ipynb deleted file mode 120000 index a93d966ffca..00000000000 --- a/_downloads/7b6fa550c2818194e1684b894628c005/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7b6fa550c2818194e1684b894628c005/fig_axes_labels_simple.ipynb \ No newline at end of file diff --git a/_downloads/7b7030beef8f06ae6939c3f0b6cad1c6/anchored_box03.py b/_downloads/7b7030beef8f06ae6939c3f0b6cad1c6/anchored_box03.py deleted file mode 100644 index ba673d8471a..00000000000 --- a/_downloads/7b7030beef8f06ae6939c3f0b6cad1c6/anchored_box03.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -============== -Anchored Box03 -============== - -""" -from matplotlib.patches import Ellipse -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox - - -fig, ax = plt.subplots(figsize=(3, 3)) - -box = AnchoredAuxTransformBox(ax.transData, loc='upper left') -el = Ellipse((0, 0), width=0.1, height=0.4, angle=30) # in data coordinates! -box.drawing_area.add_artist(el) - -ax.add_artist(box) - -plt.show() diff --git a/_downloads/7b7e11a2b599b29ed9620814591b3773/text_rotation_relative_to_line.py b/_downloads/7b7e11a2b599b29ed9620814591b3773/text_rotation_relative_to_line.py deleted file mode 120000 index 96be65c7193..00000000000 --- a/_downloads/7b7e11a2b599b29ed9620814591b3773/text_rotation_relative_to_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7b7e11a2b599b29ed9620814591b3773/text_rotation_relative_to_line.py \ No newline at end of file diff --git a/_downloads/7b8892393cc77b128afa93a66613bc56/font_family_rc_sgskip.ipynb b/_downloads/7b8892393cc77b128afa93a66613bc56/font_family_rc_sgskip.ipynb deleted file mode 120000 index 7481164becc..00000000000 --- a/_downloads/7b8892393cc77b128afa93a66613bc56/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7b8892393cc77b128afa93a66613bc56/font_family_rc_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/7b90455978b291a24ed80956797d3a08/linestyles.ipynb b/_downloads/7b90455978b291a24ed80956797d3a08/linestyles.ipynb deleted file mode 120000 index 58ec487da34..00000000000 --- a/_downloads/7b90455978b291a24ed80956797d3a08/linestyles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7b90455978b291a24ed80956797d3a08/linestyles.ipynb \ No newline at end of file diff --git a/_downloads/7b9781bb3167dbcaa7dc4566d0a634e8/image_thumbnail_sgskip.ipynb b/_downloads/7b9781bb3167dbcaa7dc4566d0a634e8/image_thumbnail_sgskip.ipynb deleted file mode 120000 index 741a0c43a03..00000000000 --- a/_downloads/7b9781bb3167dbcaa7dc4566d0a634e8/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7b9781bb3167dbcaa7dc4566d0a634e8/image_thumbnail_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/7b984ead501dcba59b0c4986c48f6948/demo_constrained_layout.py b/_downloads/7b984ead501dcba59b0c4986c48f6948/demo_constrained_layout.py deleted file mode 100644 index e7aca95777d..00000000000 --- a/_downloads/7b984ead501dcba59b0c4986c48f6948/demo_constrained_layout.py +++ /dev/null @@ -1,74 +0,0 @@ -""" -===================================== -Resizing axes with constrained layout -===================================== - -Constrained layout attempts to resize subplots in -a figure so that there are no overlaps between axes objects and labels -on the axes. - -See :doc:`/tutorials/intermediate/constrainedlayout_guide` for more details and -:doc:`/tutorials/intermediate/tight_layout_guide` for an alternative. - -""" - -import matplotlib.pyplot as plt - - -def example_plot(ax): - ax.plot([1, 2]) - ax.set_xlabel('x-label', fontsize=12) - ax.set_ylabel('y-label', fontsize=12) - ax.set_title('Title', fontsize=14) - - -############################################################################### -# If we don't use constrained_layout, then labels overlap the axes - -fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=False) - -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# adding ``constrained_layout=True`` automatically adjusts. - -fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True) - -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# Below is a more complicated example using nested gridspecs. - -fig = plt.figure(constrained_layout=True) - -import matplotlib.gridspec as gridspec - -gs0 = gridspec.GridSpec(1, 2, figure=fig) - -gs1 = gridspec.GridSpecFromSubplotSpec(3, 1, subplot_spec=gs0[0]) -for n in range(3): - ax = fig.add_subplot(gs1[n]) - example_plot(ax) - - -gs2 = gridspec.GridSpecFromSubplotSpec(2, 1, subplot_spec=gs0[1]) -for n in range(2): - ax = fig.add_subplot(gs2[n]) - example_plot(ax) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.gridspec.GridSpec -matplotlib.gridspec.GridSpecFromSubplotSpec diff --git a/_downloads/7ba5e0e5fce23a73d7778b0e6b6cea9d/fahrenheit_celsius_scales.py b/_downloads/7ba5e0e5fce23a73d7778b0e6b6cea9d/fahrenheit_celsius_scales.py deleted file mode 120000 index 8ed01102e64..00000000000 --- a/_downloads/7ba5e0e5fce23a73d7778b0e6b6cea9d/fahrenheit_celsius_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7ba5e0e5fce23a73d7778b0e6b6cea9d/fahrenheit_celsius_scales.py \ No newline at end of file diff --git a/_downloads/7bb055e6eba51322e79d5e09a3909fa7/font_table_ttf_sgskip.py b/_downloads/7bb055e6eba51322e79d5e09a3909fa7/font_table_ttf_sgskip.py deleted file mode 120000 index d47bc543877..00000000000 --- a/_downloads/7bb055e6eba51322e79d5e09a3909fa7/font_table_ttf_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/7bb055e6eba51322e79d5e09a3909fa7/font_table_ttf_sgskip.py \ No newline at end of file diff --git a/_downloads/7bb1f8c3bcffb1ba2d5d16d946f6e687/boxplot_demo_pyplot.py b/_downloads/7bb1f8c3bcffb1ba2d5d16d946f6e687/boxplot_demo_pyplot.py deleted file mode 100644 index 26e4fcd9b72..00000000000 --- a/_downloads/7bb1f8c3bcffb1ba2d5d16d946f6e687/boxplot_demo_pyplot.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -============ -Boxplot Demo -============ - -Example boxplot code -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# fake up some data -spread = np.random.rand(50) * 100 -center = np.ones(25) * 50 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -data = np.concatenate((spread, center, flier_high, flier_low)) - -############################################################################### - -fig1, ax1 = plt.subplots() -ax1.set_title('Basic Plot') -ax1.boxplot(data) - -############################################################################### - -fig2, ax2 = plt.subplots() -ax2.set_title('Notched boxes') -ax2.boxplot(data, notch=True) - -############################################################################### - -green_diamond = dict(markerfacecolor='g', marker='D') -fig3, ax3 = plt.subplots() -ax3.set_title('Changed Outlier Symbols') -ax3.boxplot(data, flierprops=green_diamond) - -############################################################################### - -fig4, ax4 = plt.subplots() -ax4.set_title('Hide Outlier Points') -ax4.boxplot(data, showfliers=False) - -############################################################################### - -red_square = dict(markerfacecolor='r', marker='s') -fig5, ax5 = plt.subplots() -ax5.set_title('Horizontal Boxes') -ax5.boxplot(data, vert=False, flierprops=red_square) - -############################################################################### - -fig6, ax6 = plt.subplots() -ax6.set_title('Shorter Whisker Length') -ax6.boxplot(data, flierprops=red_square, vert=False, whis=0.75) - -############################################################################### -# Fake up some more data - -spread = np.random.rand(50) * 100 -center = np.ones(25) * 40 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -d2 = np.concatenate((spread, center, flier_high, flier_low)) -data.shape = (-1, 1) -d2.shape = (-1, 1) - -############################################################################### -# Making a 2-D array only works if all the columns are the -# same length. If they are not, then use a list instead. -# This is actually more efficient because boxplot converts -# a 2-D array into a list of vectors internally anyway. - -data = [data, d2, d2[::2,0]] -fig7, ax7 = plt.subplots() -ax7.set_title('Multiple Samples with Different sizes') -ax7.boxplot(data) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.boxplot -matplotlib.pyplot.boxplot diff --git a/_downloads/7bb3dcd01ee9d5f9dfe2f8f85954ac8e/random_walk.ipynb b/_downloads/7bb3dcd01ee9d5f9dfe2f8f85954ac8e/random_walk.ipynb deleted file mode 120000 index 05f0707cf3f..00000000000 --- a/_downloads/7bb3dcd01ee9d5f9dfe2f8f85954ac8e/random_walk.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7bb3dcd01ee9d5f9dfe2f8f85954ac8e/random_walk.ipynb \ No newline at end of file diff --git a/_downloads/7bcb50501dff2222c41e6dd71664c10f/lorenz_attractor.py b/_downloads/7bcb50501dff2222c41e6dd71664c10f/lorenz_attractor.py deleted file mode 120000 index a6a2447f0ba..00000000000 --- a/_downloads/7bcb50501dff2222c41e6dd71664c10f/lorenz_attractor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7bcb50501dff2222c41e6dd71664c10f/lorenz_attractor.py \ No newline at end of file diff --git a/_downloads/7bcb67ddcd476e02249a43e0b0001e32/custom_boxstyle02.py b/_downloads/7bcb67ddcd476e02249a43e0b0001e32/custom_boxstyle02.py deleted file mode 120000 index bf9fd10a4c5..00000000000 --- a/_downloads/7bcb67ddcd476e02249a43e0b0001e32/custom_boxstyle02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/7bcb67ddcd476e02249a43e0b0001e32/custom_boxstyle02.py \ No newline at end of file diff --git a/_downloads/7bcd84144b2ad6b2d0c9e03a7e36d871/image_thumbnail_sgskip.py b/_downloads/7bcd84144b2ad6b2d0c9e03a7e36d871/image_thumbnail_sgskip.py deleted file mode 120000 index 33f10142377..00000000000 --- a/_downloads/7bcd84144b2ad6b2d0c9e03a7e36d871/image_thumbnail_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7bcd84144b2ad6b2d0c9e03a7e36d871/image_thumbnail_sgskip.py \ No newline at end of file diff --git a/_downloads/7bce2fe14c79f5b9ceaee8837c71ca73/line_demo_dash_control.py b/_downloads/7bce2fe14c79f5b9ceaee8837c71ca73/line_demo_dash_control.py deleted file mode 100644 index 78043dfed2f..00000000000 --- a/_downloads/7bce2fe14c79f5b9ceaee8837c71ca73/line_demo_dash_control.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -============================== -Customizing dashed line styles -============================== - -The dashing of a line is controlled via a dash sequence. It can be modified -using `.Line2D.set_dashes`. - -The dash sequence is a series of on/off lengths in points, e.g. -``[3, 1]`` would be 3pt long lines separated by 1pt spaces. - -Some functions like `.Axes.plot` support passing Line properties as keyword -arguments. In such a case, you can already set the dashing when creating the -line. - -*Note*: The dash style can also be configured via a -:doc:`property_cycle ` -by passing a list of dash sequences using the keyword *dashes* to the -cycler. This is not shown within this example. -""" -import numpy as np -import matplotlib.pyplot as plt - -x = np.linspace(0, 10, 500) -y = np.sin(x) - -fig, ax = plt.subplots() - -# Using set_dashes() to modify dashing of an existing line -line1, = ax.plot(x, y, label='Using set_dashes()') -line1.set_dashes([2, 2, 10, 2]) # 2pt line, 2pt break, 10pt line, 2pt break - -# Using plot(..., dashes=...) to set the dashing when creating a line -line2, = ax.plot(x, y - 0.2, dashes=[6, 2], label='Using the dashes parameter') - -ax.legend() -plt.show() diff --git a/_downloads/7bd00b4a56c36cda8d2a9833f08370bc/ticklabels_rotation.py b/_downloads/7bd00b4a56c36cda8d2a9833f08370bc/ticklabels_rotation.py deleted file mode 120000 index 369378a1e67..00000000000 --- a/_downloads/7bd00b4a56c36cda8d2a9833f08370bc/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7bd00b4a56c36cda8d2a9833f08370bc/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/7bd07bea399264b432d4f3897babbdf4/ellipse_with_units.ipynb b/_downloads/7bd07bea399264b432d4f3897babbdf4/ellipse_with_units.ipynb deleted file mode 100644 index 170a6b85412..00000000000 --- a/_downloads/7bd07bea399264b432d4f3897babbdf4/ellipse_with_units.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ellipse With Units\n\n\nCompare the ellipse generated with arcs versus a polygonal approximation\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from basic_units import cm\nimport numpy as np\nfrom matplotlib import patches\nimport matplotlib.pyplot as plt\n\n\nxcenter, ycenter = 0.38*cm, 0.52*cm\nwidth, height = 1e-1*cm, 3e-1*cm\nangle = -30\n\ntheta = np.deg2rad(np.arange(0.0, 360.0, 1.0))\nx = 0.5 * width * np.cos(theta)\ny = 0.5 * height * np.sin(theta)\n\nrtheta = np.radians(angle)\nR = np.array([\n [np.cos(rtheta), -np.sin(rtheta)],\n [np.sin(rtheta), np.cos(rtheta)],\n ])\n\n\nx, y = np.dot(R, np.array([x, y]))\nx += xcenter\ny += ycenter" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(211, aspect='auto')\nax.fill(x, y, alpha=0.2, facecolor='yellow',\n edgecolor='yellow', linewidth=1, zorder=1)\n\ne1 = patches.Ellipse((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\nax.add_patch(e1)\n\nax = fig.add_subplot(212, aspect='equal')\nax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1)\ne2 = patches.Ellipse((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\n\nax.add_patch(e2)\nfig.savefig('ellipse_compare')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(211, aspect='auto')\nax.fill(x, y, alpha=0.2, facecolor='yellow',\n edgecolor='yellow', linewidth=1, zorder=1)\n\ne1 = patches.Arc((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\nax.add_patch(e1)\n\nax = fig.add_subplot(212, aspect='equal')\nax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1)\ne2 = patches.Arc((xcenter, ycenter), width, height,\n angle=angle, linewidth=2, fill=False, zorder=2)\n\n\nax.add_patch(e2)\nfig.savefig('arc_compare')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7bdf044b593339eb64949550ce74fc08/demo_parasite_axes2.ipynb b/_downloads/7bdf044b593339eb64949550ce74fc08/demo_parasite_axes2.ipynb deleted file mode 120000 index 27bba7befbf..00000000000 --- a/_downloads/7bdf044b593339eb64949550ce74fc08/demo_parasite_axes2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7bdf044b593339eb64949550ce74fc08/demo_parasite_axes2.ipynb \ No newline at end of file diff --git a/_downloads/7bec845b7f84613778f69a9a8413e0ab/images.ipynb b/_downloads/7bec845b7f84613778f69a9a8413e0ab/images.ipynb deleted file mode 120000 index 9e18eb777ab..00000000000 --- a/_downloads/7bec845b7f84613778f69a9a8413e0ab/images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7bec845b7f84613778f69a9a8413e0ab/images.ipynb \ No newline at end of file diff --git a/_downloads/7bee05f0f717cb037f6920b038cf1007/timers.ipynb b/_downloads/7bee05f0f717cb037f6920b038cf1007/timers.ipynb deleted file mode 120000 index 27c29d28249..00000000000 --- a/_downloads/7bee05f0f717cb037f6920b038cf1007/timers.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7bee05f0f717cb037f6920b038cf1007/timers.ipynb \ No newline at end of file diff --git a/_downloads/7bf4d1edfaed13e9621e1002a78371ca/demo_floating_axis.ipynb b/_downloads/7bf4d1edfaed13e9621e1002a78371ca/demo_floating_axis.ipynb deleted file mode 120000 index 23a8fa53252..00000000000 --- a/_downloads/7bf4d1edfaed13e9621e1002a78371ca/demo_floating_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7bf4d1edfaed13e9621e1002a78371ca/demo_floating_axis.ipynb \ No newline at end of file diff --git a/_downloads/7bfc8f59028feaa4ced6cc0aee108753/svg_filter_line.ipynb b/_downloads/7bfc8f59028feaa4ced6cc0aee108753/svg_filter_line.ipynb deleted file mode 100644 index 37d72c4242a..00000000000 --- a/_downloads/7bfc8f59028feaa4ced6cc0aee108753/svg_filter_line.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Filter Line\n\n\nDemonstrate SVG filtering effects which might be used with mpl.\n\nNote that the filtering effects are only effective if your svg renderer\nsupport it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\n\nfig1 = plt.figure()\nax = fig1.add_axes([0.1, 0.1, 0.8, 0.8])\n\n# draw lines\nl1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], \"bo-\",\n mec=\"b\", lw=5, ms=10, label=\"Line 1\")\nl2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], \"rs-\",\n mec=\"r\", lw=5, ms=10, color=\"r\", label=\"Line 2\")\n\n\nfor l in [l1, l2]:\n\n # draw shadows with same lines with slight offset and gray colors.\n\n xx = l.get_xdata()\n yy = l.get_ydata()\n shadow, = ax.plot(xx, yy)\n shadow.update_from(l)\n\n # adjust color\n shadow.set_color(\"0.2\")\n # adjust zorder of the shadow lines so that it is drawn below the\n # original lines\n shadow.set_zorder(l.get_zorder() - 0.5)\n\n # offset transform\n ot = mtransforms.offset_copy(l.get_transform(), fig1,\n x=4.0, y=-6.0, units='points')\n\n shadow.set_transform(ot)\n\n # set the id for a later use\n shadow.set_gid(l.get_label() + \"_shadow\")\n\n\nax.set_xlim(0., 1.)\nax.set_ylim(0., 1.)\n\n# save the figure as a bytes string in the svg format.\nfrom io import BytesIO\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\n\nimport xml.etree.cElementTree as ET\n\n# filter definition for a gaussian blur\nfilter_def = \"\"\"\n \n \n \n \n \n\"\"\"\n\n\n# read in the saved svg\ntree, xmlid = ET.XMLID(f.getvalue())\n\n# insert the filter definition in the svg dom tree.\ntree.insert(0, ET.XML(filter_def))\n\nfor l in [l1, l2]:\n # pick up the svg element with given id\n shadow = xmlid[l.get_label() + \"_shadow\"]\n # apply shadow filter\n shadow.set(\"filter\", 'url(#dropshadow)')\n\nfn = \"svg_filter_line.svg\"\nprint(\"Saving '%s'\" % fn)\nET.ElementTree(tree).write(fn)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7c006ece39f4efb04f19ddaeaf75cc6e/image_zcoord.ipynb b/_downloads/7c006ece39f4efb04f19ddaeaf75cc6e/image_zcoord.ipynb deleted file mode 100644 index 28f9b76aafb..00000000000 --- a/_downloads/7c006ece39f4efb04f19ddaeaf75cc6e/image_zcoord.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Modifying the coordinate formatter\n\n\nModify the coordinate formatter to report the image \"z\"\nvalue of the nearest pixel given x and y.\nThis functionality is built in by default, but it\nis still useful to show how to customize the\n`~.axes.Axes.format_coord` function.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nX = 10*np.random.rand(5, 3)\n\nfig, ax = plt.subplots()\nax.imshow(X, interpolation='nearest')\n\nnumrows, numcols = X.shape\n\n\ndef format_coord(x, y):\n col = int(x + 0.5)\n row = int(y + 0.5)\n if col >= 0 and col < numcols and row >= 0 and row < numrows:\n z = X[row, col]\n return 'x=%1.4f, y=%1.4f, z=%1.4f' % (x, y, z)\n else:\n return 'x=%1.4f, y=%1.4f' % (x, y)\n\nax.format_coord = format_coord\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.format_coord\nmatplotlib.axes.Axes.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7c0163a36fed3ce55d87975e3a0305dc/custom_ticker1.ipynb b/_downloads/7c0163a36fed3ce55d87975e3a0305dc/custom_ticker1.ipynb deleted file mode 120000 index f4f5d654d50..00000000000 --- a/_downloads/7c0163a36fed3ce55d87975e3a0305dc/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7c0163a36fed3ce55d87975e3a0305dc/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/7c11c498be29155fac9cf8b5fcfa7a89/grayscale.py b/_downloads/7c11c498be29155fac9cf8b5fcfa7a89/grayscale.py deleted file mode 120000 index 08a74c04723..00000000000 --- a/_downloads/7c11c498be29155fac9cf8b5fcfa7a89/grayscale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7c11c498be29155fac9cf8b5fcfa7a89/grayscale.py \ No newline at end of file diff --git a/_downloads/7c1c0355d383ada156a40adab206a88a/colorbar_tick_labelling_demo.py b/_downloads/7c1c0355d383ada156a40adab206a88a/colorbar_tick_labelling_demo.py deleted file mode 120000 index 2b88ef11dd7..00000000000 --- a/_downloads/7c1c0355d383ada156a40adab206a88a/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7c1c0355d383ada156a40adab206a88a/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/7c2e920e27a58d750c0f6d774fd061f2/histogram_cumulative.py b/_downloads/7c2e920e27a58d750c0f6d774fd061f2/histogram_cumulative.py deleted file mode 120000 index bfcc5fa55ca..00000000000 --- a/_downloads/7c2e920e27a58d750c0f6d774fd061f2/histogram_cumulative.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7c2e920e27a58d750c0f6d774fd061f2/histogram_cumulative.py \ No newline at end of file diff --git a/_downloads/7c35b342b5ef3fb362dde873e82d6d6b/date_index_formatter2.ipynb b/_downloads/7c35b342b5ef3fb362dde873e82d6d6b/date_index_formatter2.ipynb deleted file mode 120000 index 5363c52b68d..00000000000 --- a/_downloads/7c35b342b5ef3fb362dde873e82d6d6b/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7c35b342b5ef3fb362dde873e82d6d6b/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/7c37ce1d56e85d16293246ef171eab4c/agg_buffer.py b/_downloads/7c37ce1d56e85d16293246ef171eab4c/agg_buffer.py deleted file mode 100644 index 806495f4cd3..00000000000 --- a/_downloads/7c37ce1d56e85d16293246ef171eab4c/agg_buffer.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -========== -Agg Buffer -========== - -Use backend agg to access the figure canvas as an RGB string and then -convert it to an array and pass it to Pillow for rendering. -""" - -import numpy as np - -from matplotlib.backends.backend_agg import FigureCanvasAgg -import matplotlib.pyplot as plt - -plt.plot([1, 2, 3]) - -canvas = plt.get_current_fig_manager().canvas - -agg = canvas.switch_backends(FigureCanvasAgg) -agg.draw() -s, (width, height) = agg.print_to_buffer() - -# Convert to a NumPy array. -X = np.frombuffer(s, np.uint8).reshape((height, width, 4)) - -# Pass off to PIL. -from PIL import Image -im = Image.frombytes("RGBA", (width, height), s) - -# Uncomment this line to display the image using ImageMagick's `display` tool. -# im.show() diff --git a/_downloads/7c4bf2de06c94e0c6ae8aaa88b90ef22/fill.py b/_downloads/7c4bf2de06c94e0c6ae8aaa88b90ef22/fill.py deleted file mode 120000 index a123da092ed..00000000000 --- a/_downloads/7c4bf2de06c94e0c6ae8aaa88b90ef22/fill.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7c4bf2de06c94e0c6ae8aaa88b90ef22/fill.py \ No newline at end of file diff --git a/_downloads/7c50662b8434fb6c7fb9a3273e07b6c6/spines_dropped.ipynb b/_downloads/7c50662b8434fb6c7fb9a3273e07b6c6/spines_dropped.ipynb deleted file mode 120000 index e5439ce60a1..00000000000 --- a/_downloads/7c50662b8434fb6c7fb9a3273e07b6c6/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7c50662b8434fb6c7fb9a3273e07b6c6/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/7c62f33362fcfc52550edafefd085710/random_walk.py b/_downloads/7c62f33362fcfc52550edafefd085710/random_walk.py deleted file mode 100644 index ae60ce7c09e..00000000000 --- a/_downloads/7c62f33362fcfc52550edafefd085710/random_walk.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -======================= -Animated 3D random walk -======================= - -""" - -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.mplot3d.axes3d as p3 -import matplotlib.animation as animation - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def Gen_RandLine(length, dims=2): - """ - Create a line using a random walk algorithm - - length is the number of points for the line. - dims is the number of dimensions the line has. - """ - lineData = np.empty((dims, length)) - lineData[:, 0] = np.random.rand(dims) - for index in range(1, length): - # scaling the random numbers by 0.1 so - # movement is small compared to position. - # subtraction by 0.5 is to change the range to [-0.5, 0.5] - # to allow a line to move backwards. - step = ((np.random.rand(dims) - 0.5) * 0.1) - lineData[:, index] = lineData[:, index - 1] + step - - return lineData - - -def update_lines(num, dataLines, lines): - for line, data in zip(lines, dataLines): - # NOTE: there is no .set_data() for 3 dim data... - line.set_data(data[0:2, :num]) - line.set_3d_properties(data[2, :num]) - return lines - -# Attaching 3D axis to the figure -fig = plt.figure() -ax = p3.Axes3D(fig) - -# Fifty lines of random 3-D lines -data = [Gen_RandLine(25, 3) for index in range(50)] - -# Creating fifty line objects. -# NOTE: Can't pass empty arrays into 3d version of plot() -lines = [ax.plot(dat[0, 0:1], dat[1, 0:1], dat[2, 0:1])[0] for dat in data] - -# Setting the axes properties -ax.set_xlim3d([0.0, 1.0]) -ax.set_xlabel('X') - -ax.set_ylim3d([0.0, 1.0]) -ax.set_ylabel('Y') - -ax.set_zlim3d([0.0, 1.0]) -ax.set_zlabel('Z') - -ax.set_title('3D Test') - -# Creating the Animation object -line_ani = animation.FuncAnimation(fig, update_lines, 25, fargs=(data, lines), - interval=50, blit=False) - -plt.show() diff --git a/_downloads/7c6b8fb17d4db0bc29de6267bd99388e/named_colors.py b/_downloads/7c6b8fb17d4db0bc29de6267bd99388e/named_colors.py deleted file mode 100644 index 7175707c0ce..00000000000 --- a/_downloads/7c6b8fb17d4db0bc29de6267bd99388e/named_colors.py +++ /dev/null @@ -1,106 +0,0 @@ -""" -==================== -List of named colors -==================== - -This plots a list of the named colors supported in matplotlib. Note that -:ref:`xkcd colors ` are supported as well, but are not listed here -for brevity. - -For more information on colors in matplotlib see - -* the :doc:`/tutorials/colors/colors` tutorial; -* the `matplotlib.colors` API; -* the :doc:`/gallery/color/color_demo`. -""" - -import matplotlib.pyplot as plt -import matplotlib.colors as mcolors - - -def plot_colortable(colors, title, sort_colors=True, emptycols=0): - - cell_width = 212 - cell_height = 22 - swatch_width = 48 - margin = 12 - topmargin = 40 - - # Sort colors by hue, saturation, value and name. - if sort_colors is True: - by_hsv = sorted((tuple(mcolors.rgb_to_hsv(mcolors.to_rgb(color))), - name) - for name, color in colors.items()) - names = [name for hsv, name in by_hsv] - else: - names = list(colors) - - n = len(names) - ncols = 4 - emptycols - nrows = n // ncols + int(n % ncols > 0) - - width = cell_width * 4 + 2 * margin - height = cell_height * nrows + margin + topmargin - dpi = 72 - - fig, ax = plt.subplots(figsize=(width / dpi, height / dpi), dpi=dpi) - fig.subplots_adjust(margin/width, margin/height, - (width-margin)/width, (height-topmargin)/height) - ax.set_xlim(0, cell_width * 4) - ax.set_ylim(cell_height * (nrows-0.5), -cell_height/2.) - ax.yaxis.set_visible(False) - ax.xaxis.set_visible(False) - ax.set_axis_off() - ax.set_title(title, fontsize=24, loc="left", pad=10) - - for i, name in enumerate(names): - row = i % nrows - col = i // nrows - y = row * cell_height - - swatch_start_x = cell_width * col - swatch_end_x = cell_width * col + swatch_width - text_pos_x = cell_width * col + swatch_width + 7 - - ax.text(text_pos_x, y, name, fontsize=14, - horizontalalignment='left', - verticalalignment='center') - - ax.hlines(y, swatch_start_x, swatch_end_x, - color=colors[name], linewidth=18) - - return fig - -plot_colortable(mcolors.BASE_COLORS, "Base Colors", - sort_colors=False, emptycols=1) -plot_colortable(mcolors.TABLEAU_COLORS, "Tableau Palette", - sort_colors=False, emptycols=2) - -#sphinx_gallery_thumbnail_number = 3 -plot_colortable(mcolors.CSS4_COLORS, "CSS Colors") - -# Optionally plot the XKCD colors (Caution: will produce large figure) -#xkcd_fig = plot_colortable(mcolors.XKCD_COLORS, "XKCD Colors") -#xkcd_fig.savefig("XKCD_Colors.png") - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.colors.rgb_to_hsv -matplotlib.colors.to_rgba -matplotlib.figure.Figure.get_size_inches -matplotlib.figure.Figure.subplots_adjust -matplotlib.axes.Axes.text -matplotlib.axes.Axes.hlines diff --git a/_downloads/7c761cb24d119b68650601ebf48ceedd/advanced_hillshading.py b/_downloads/7c761cb24d119b68650601ebf48ceedd/advanced_hillshading.py deleted file mode 100644 index 1fce393c4fe..00000000000 --- a/_downloads/7c761cb24d119b68650601ebf48ceedd/advanced_hillshading.py +++ /dev/null @@ -1,75 +0,0 @@ -""" -=========== -Hillshading -=========== - -Demonstrates a few common tricks with shaded plots. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.colors import LightSource, Normalize - - -def display_colorbar(): - """Display a correct numeric colorbar for a shaded plot.""" - y, x = np.mgrid[-4:2:200j, -4:2:200j] - z = 10 * np.cos(x**2 + y**2) - - cmap = plt.cm.copper - ls = LightSource(315, 45) - rgb = ls.shade(z, cmap) - - fig, ax = plt.subplots() - ax.imshow(rgb, interpolation='bilinear') - - # Use a proxy artist for the colorbar... - im = ax.imshow(z, cmap=cmap) - im.remove() - fig.colorbar(im) - - ax.set_title('Using a colorbar with a shaded plot', size='x-large') - - -def avoid_outliers(): - """Use a custom norm to control the displayed z-range of a shaded plot.""" - y, x = np.mgrid[-4:2:200j, -4:2:200j] - z = 10 * np.cos(x**2 + y**2) - - # Add some outliers... - z[100, 105] = 2000 - z[120, 110] = -9000 - - ls = LightSource(315, 45) - fig, (ax1, ax2) = plt.subplots(ncols=2, figsize=(8, 4.5)) - - rgb = ls.shade(z, plt.cm.copper) - ax1.imshow(rgb, interpolation='bilinear') - ax1.set_title('Full range of data') - - rgb = ls.shade(z, plt.cm.copper, vmin=-10, vmax=10) - ax2.imshow(rgb, interpolation='bilinear') - ax2.set_title('Manually set range') - - fig.suptitle('Avoiding Outliers in Shaded Plots', size='x-large') - - -def shade_other_data(): - """Demonstrates displaying different variables through shade and color.""" - y, x = np.mgrid[-4:2:200j, -4:2:200j] - z1 = np.sin(x**2) # Data to hillshade - z2 = np.cos(x**2 + y**2) # Data to color - - norm = Normalize(z2.min(), z2.max()) - cmap = plt.cm.RdBu - - ls = LightSource(315, 45) - rgb = ls.shade_rgb(cmap(norm(z2)), z1) - - fig, ax = plt.subplots() - ax.imshow(rgb, interpolation='bilinear') - ax.set_title('Shade by one variable, color by another', size='x-large') - -display_colorbar() -avoid_outliers() -shade_other_data() -plt.show() diff --git a/_downloads/7c870e8347c88ad1696b176a2a20e457/axhspan_demo.py b/_downloads/7c870e8347c88ad1696b176a2a20e457/axhspan_demo.py deleted file mode 120000 index c875d7aeb4e..00000000000 --- a/_downloads/7c870e8347c88ad1696b176a2a20e457/axhspan_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7c870e8347c88ad1696b176a2a20e457/axhspan_demo.py \ No newline at end of file diff --git a/_downloads/7c94ec1957681b92913e93ef8c92e959/wire3d_animation_sgskip.ipynb b/_downloads/7c94ec1957681b92913e93ef8c92e959/wire3d_animation_sgskip.ipynb deleted file mode 120000 index afeb75dd7f5..00000000000 --- a/_downloads/7c94ec1957681b92913e93ef8c92e959/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7c94ec1957681b92913e93ef8c92e959/wire3d_animation_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/7c96fb9a0f5df28f0f24560faa2ea056/simple_legend01.py b/_downloads/7c96fb9a0f5df28f0f24560faa2ea056/simple_legend01.py deleted file mode 100644 index 9e178af9be5..00000000000 --- a/_downloads/7c96fb9a0f5df28f0f24560faa2ea056/simple_legend01.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=============== -Simple Legend01 -=============== - -""" -import matplotlib.pyplot as plt - - -plt.subplot(211) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") -# Place a legend above this subplot, expanding itself to -# fully use the given bounding box. -plt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left', - ncol=2, mode="expand", borderaxespad=0.) - -plt.subplot(223) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") -# Place a legend to the right of this smaller subplot. -plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.) - -plt.show() diff --git a/_downloads/7c9d90e61d0ac9afc4820f2924f8cd6b/confidence_ellipse.ipynb b/_downloads/7c9d90e61d0ac9afc4820f2924f8cd6b/confidence_ellipse.ipynb deleted file mode 120000 index a8bfd97d0b2..00000000000 --- a/_downloads/7c9d90e61d0ac9afc4820f2924f8cd6b/confidence_ellipse.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7c9d90e61d0ac9afc4820f2924f8cd6b/confidence_ellipse.ipynb \ No newline at end of file diff --git a/_downloads/7cb248df3926269ef121f5c5bd9f9620/trisurf3d.py b/_downloads/7cb248df3926269ef121f5c5bd9f9620/trisurf3d.py deleted file mode 100644 index 070a3154f2c..00000000000 --- a/_downloads/7cb248df3926269ef121f5c5bd9f9620/trisurf3d.py +++ /dev/null @@ -1,37 +0,0 @@ -''' -====================== -Triangular 3D surfaces -====================== - -Plot a 3D surface with a triangular mesh. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -n_radii = 8 -n_angles = 36 - -# Make radii and angles spaces (radius r=0 omitted to eliminate duplication). -radii = np.linspace(0.125, 1.0, n_radii) -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)[..., np.newaxis] - -# Convert polar (radii, angles) coords to cartesian (x, y) coords. -# (0, 0) is manually added at this stage, so there will be no duplicate -# points in the (x, y) plane. -x = np.append(0, (radii*np.cos(angles)).flatten()) -y = np.append(0, (radii*np.sin(angles)).flatten()) - -# Compute z to make the pringle surface. -z = np.sin(-x*y) - -fig = plt.figure() -ax = fig.gca(projection='3d') - -ax.plot_trisurf(x, y, z, linewidth=0.2, antialiased=True) - -plt.show() diff --git a/_downloads/7cce118215208459709254a02dc09d69/contourf_hatching.py b/_downloads/7cce118215208459709254a02dc09d69/contourf_hatching.py deleted file mode 120000 index 7ab25cc0ef0..00000000000 --- a/_downloads/7cce118215208459709254a02dc09d69/contourf_hatching.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7cce118215208459709254a02dc09d69/contourf_hatching.py \ No newline at end of file diff --git a/_downloads/7cde5ea64c654f0494cddafd39449630/parasite_simple2.py b/_downloads/7cde5ea64c654f0494cddafd39449630/parasite_simple2.py deleted file mode 120000 index 2fac384ba3c..00000000000 --- a/_downloads/7cde5ea64c654f0494cddafd39449630/parasite_simple2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7cde5ea64c654f0494cddafd39449630/parasite_simple2.py \ No newline at end of file diff --git a/_downloads/7cea36b39a7190b2384d5d867368ebf3/donut.py b/_downloads/7cea36b39a7190b2384d5d867368ebf3/donut.py deleted file mode 120000 index b4031619d44..00000000000 --- a/_downloads/7cea36b39a7190b2384d5d867368ebf3/donut.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7cea36b39a7190b2384d5d867368ebf3/donut.py \ No newline at end of file diff --git a/_downloads/7d0e729f3c69be2c68b4675b674c116c/embedding_in_wx5_sgskip.py b/_downloads/7d0e729f3c69be2c68b4675b674c116c/embedding_in_wx5_sgskip.py deleted file mode 120000 index 29904b76b8c..00000000000 --- a/_downloads/7d0e729f3c69be2c68b4675b674c116c/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7d0e729f3c69be2c68b4675b674c116c/embedding_in_wx5_sgskip.py \ No newline at end of file diff --git a/_downloads/7d0f1647b30aee1567195d0ea7400583/mpl_with_glade3_sgskip.ipynb b/_downloads/7d0f1647b30aee1567195d0ea7400583/mpl_with_glade3_sgskip.ipynb deleted file mode 120000 index 9e581980aee..00000000000 --- a/_downloads/7d0f1647b30aee1567195d0ea7400583/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7d0f1647b30aee1567195d0ea7400583/mpl_with_glade3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/7d110d26a450c27c1f5544666b5215a3/annotation_polar.ipynb b/_downloads/7d110d26a450c27c1f5544666b5215a3/annotation_polar.ipynb deleted file mode 120000 index ff9ea2742e3..00000000000 --- a/_downloads/7d110d26a450c27c1f5544666b5215a3/annotation_polar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7d110d26a450c27c1f5544666b5215a3/annotation_polar.ipynb \ No newline at end of file diff --git a/_downloads/7d1131de6a6fc3af08eed79436966e77/contourf3d_2.ipynb b/_downloads/7d1131de6a6fc3af08eed79436966e77/contourf3d_2.ipynb deleted file mode 120000 index 46b7e1b32fa..00000000000 --- a/_downloads/7d1131de6a6fc3af08eed79436966e77/contourf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7d1131de6a6fc3af08eed79436966e77/contourf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/7d204db8856c295d43761cd93f98892a/bxp.py b/_downloads/7d204db8856c295d43761cd93f98892a/bxp.py deleted file mode 100644 index 62f85d92d55..00000000000 --- a/_downloads/7d204db8856c295d43761cd93f98892a/bxp.py +++ /dev/null @@ -1,104 +0,0 @@ -""" -======================= -Boxplot drawer function -======================= - -This example demonstrates how to pass pre-computed box plot -statistics to the box plot drawer. The first figure demonstrates -how to remove and add individual components (note that the -mean is the only value not shown by default). The second -figure demonstrates how the styles of the artists can -be customized. - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook - -# fake data -np.random.seed(19680801) -data = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75) -labels = list('ABCD') - -# compute the boxplot stats -stats = cbook.boxplot_stats(data, labels=labels, bootstrap=10000) - -############################################################################### -# After we've computed the stats, we can go through and change anything. -# Just to prove it, I'll set the median of each set to the median of all -# the data, and double the means - -for n in range(len(stats)): - stats[n]['med'] = np.median(data) - stats[n]['mean'] *= 2 - -print(list(stats[0])) - -fs = 10 # fontsize - -############################################################################### -# Demonstrate how to toggle the display of different elements: - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True) -axes[0, 0].bxp(stats) -axes[0, 0].set_title('Default', fontsize=fs) - -axes[0, 1].bxp(stats, showmeans=True) -axes[0, 1].set_title('showmeans=True', fontsize=fs) - -axes[0, 2].bxp(stats, showmeans=True, meanline=True) -axes[0, 2].set_title('showmeans=True,\nmeanline=True', fontsize=fs) - -axes[1, 0].bxp(stats, showbox=False, showcaps=False) -tufte_title = 'Tufte Style\n(showbox=False,\nshowcaps=False)' -axes[1, 0].set_title(tufte_title, fontsize=fs) - -axes[1, 1].bxp(stats, shownotches=True) -axes[1, 1].set_title('notch=True', fontsize=fs) - -axes[1, 2].bxp(stats, showfliers=False) -axes[1, 2].set_title('showfliers=False', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.subplots_adjust(hspace=0.4) -plt.show() - -############################################################################### -# Demonstrate how to customize the display different elements: - -boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod') -flierprops = dict(marker='o', markerfacecolor='green', markersize=12, - linestyle='none') -medianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick') -meanpointprops = dict(marker='D', markeredgecolor='black', - markerfacecolor='firebrick') -meanlineprops = dict(linestyle='--', linewidth=2.5, color='purple') - -fig, axes = plt.subplots(nrows=2, ncols=2, figsize=(6, 6), sharey=True) -axes[0, 0].bxp(stats, boxprops=boxprops) -axes[0, 0].set_title('Custom boxprops', fontsize=fs) - -axes[0, 1].bxp(stats, flierprops=flierprops, medianprops=medianprops) -axes[0, 1].set_title('Custom medianprops\nand flierprops', fontsize=fs) - -axes[1, 0].bxp(stats, meanprops=meanpointprops, meanline=False, - showmeans=True) -axes[1, 0].set_title('Custom mean\nas point', fontsize=fs) - -axes[1, 1].bxp(stats, meanprops=meanlineprops, meanline=True, - showmeans=True) -axes[1, 1].set_title('Custom mean\nas line', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.suptitle("I never said they'd be pretty") -fig.subplots_adjust(hspace=0.4) -plt.show() diff --git a/_downloads/7d3bc26bbba7895058cf2bc8165a7234/text_commands.ipynb b/_downloads/7d3bc26bbba7895058cf2bc8165a7234/text_commands.ipynb deleted file mode 120000 index e2b645e4d2d..00000000000 --- a/_downloads/7d3bc26bbba7895058cf2bc8165a7234/text_commands.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7d3bc26bbba7895058cf2bc8165a7234/text_commands.ipynb \ No newline at end of file diff --git a/_downloads/7d40c40c96a62a41226026de985e1260/spines_bounds.py b/_downloads/7d40c40c96a62a41226026de985e1260/spines_bounds.py deleted file mode 120000 index 784d60f2da6..00000000000 --- a/_downloads/7d40c40c96a62a41226026de985e1260/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/7d40c40c96a62a41226026de985e1260/spines_bounds.py \ No newline at end of file diff --git a/_downloads/7d4293ebdbcd654541e19519b73b4238/tricontour3d.py b/_downloads/7d4293ebdbcd654541e19519b73b4238/tricontour3d.py deleted file mode 120000 index de91ccc7fa6..00000000000 --- a/_downloads/7d4293ebdbcd654541e19519b73b4238/tricontour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7d4293ebdbcd654541e19519b73b4238/tricontour3d.py \ No newline at end of file diff --git a/_downloads/7d4317c51334aaa92e3c466710755cee/ftface_props.ipynb b/_downloads/7d4317c51334aaa92e3c466710755cee/ftface_props.ipynb deleted file mode 120000 index 8c30defed1d..00000000000 --- a/_downloads/7d4317c51334aaa92e3c466710755cee/ftface_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7d4317c51334aaa92e3c466710755cee/ftface_props.ipynb \ No newline at end of file diff --git a/_downloads/7d50b8f63a947befcb7800b205bdb297/textbox.ipynb b/_downloads/7d50b8f63a947befcb7800b205bdb297/textbox.ipynb deleted file mode 120000 index 613e9630e2b..00000000000 --- a/_downloads/7d50b8f63a947befcb7800b205bdb297/textbox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7d50b8f63a947befcb7800b205bdb297/textbox.ipynb \ No newline at end of file diff --git a/_downloads/7d51938cc418e612ed07c67ab5658ad2/zoom_inset_axes.ipynb b/_downloads/7d51938cc418e612ed07c67ab5658ad2/zoom_inset_axes.ipynb deleted file mode 120000 index b62ef5c1fbb..00000000000 --- a/_downloads/7d51938cc418e612ed07c67ab5658ad2/zoom_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7d51938cc418e612ed07c67ab5658ad2/zoom_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/7d5a40fdf805fbaed3706721bfe7a74d/demo_curvelinear_grid.ipynb b/_downloads/7d5a40fdf805fbaed3706721bfe7a74d/demo_curvelinear_grid.ipynb deleted file mode 100644 index 74923949101..00000000000 --- a/_downloads/7d5a40fdf805fbaed3706721bfe7a74d/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Curvilinear grid demo\n\n\nCustom grid and ticklines.\n\nThis example demonstrates how to use\n`~.grid_helper_curvelinear.GridHelperCurveLinear` to define custom grids and\nticklines by applying a transformation on the grid. This can be used, as\nshown on the second plot, to create polar projections in a rectangular box.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.pyplot as plt\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\n\nfrom mpl_toolkits.axisartist import (\n angle_helper, Subplot, SubplotHost, ParasiteAxesAuxTrans)\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import (\n GridHelperCurveLinear)\n\n\ndef curvelinear_test1(fig):\n \"\"\"\n Grid for custom transform.\n \"\"\"\n\n def tr(x, y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y - x\n\n def inv_tr(x, y):\n x, y = np.asarray(x), np.asarray(y)\n return x, y + x\n\n grid_helper = GridHelperCurveLinear((tr, inv_tr))\n\n ax1 = Subplot(fig, 1, 2, 1, grid_helper=grid_helper)\n # ax1 will have a ticks and gridlines defined by the given\n # transform (+ transData of the Axes). Note that the transform of\n # the Axes itself (i.e., transData) is not affected by the given\n # transform.\n\n fig.add_subplot(ax1)\n\n xx, yy = tr([3, 6], [5, 10])\n ax1.plot(xx, yy, linewidth=2.0)\n\n ax1.set_aspect(1)\n ax1.set_xlim(0, 10)\n ax1.set_ylim(0, 10)\n\n ax1.axis[\"t\"] = ax1.new_floating_axis(0, 3)\n ax1.axis[\"t2\"] = ax1.new_floating_axis(1, 7)\n ax1.grid(True, zorder=0)\n\n\ndef curvelinear_test2(fig):\n \"\"\"\n Polar projection, but in a rectangular box.\n \"\"\"\n\n # PolarAxes.PolarTransform takes radian. However, we want our coordinate\n # system in degree\n tr = Affine2D().scale(np.pi/180, 1) + PolarAxes.PolarTransform()\n # Polar projection, which involves cycle, and also has limits in\n # its coordinates, needs a special method to find the extremes\n # (min, max of the coordinate within the view).\n extreme_finder = angle_helper.ExtremeFinderCycle(\n nx=20, ny=20, # Number of sampling points in each direction.\n lon_cycle=360, lat_cycle=None,\n lon_minmax=None, lat_minmax=(0, np.inf),\n )\n # Find grid values appropriate for the coordinate (degree, minute, second).\n grid_locator1 = angle_helper.LocatorDMS(12)\n # Use an appropriate formatter. Note that the acceptable Locator and\n # Formatter classes are a bit different than that of Matplotlib, which\n # cannot directly be used here (this may be possible in the future).\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(\n tr, extreme_finder=extreme_finder,\n grid_locator1=grid_locator1, tick_formatter1=tick_formatter1)\n ax1 = SubplotHost(fig, 1, 2, 2, grid_helper=grid_helper)\n\n # make ticklabels of right and top axis visible.\n ax1.axis[\"right\"].major_ticklabels.set_visible(True)\n ax1.axis[\"top\"].major_ticklabels.set_visible(True)\n # let right axis shows ticklabels for 1st coordinate (angle)\n ax1.axis[\"right\"].get_helper().nth_coord_ticks = 0\n # let bottom axis shows ticklabels for 2nd coordinate (radius)\n ax1.axis[\"bottom\"].get_helper().nth_coord_ticks = 1\n\n fig.add_subplot(ax1)\n\n ax1.set_aspect(1)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n ax1.grid(True, zorder=0)\n\n # A parasite axes with given transform\n ax2 = ParasiteAxesAuxTrans(ax1, tr, \"equal\")\n # note that ax2.transData == tr + ax1.transData\n # Anything you draw in ax2 will match the ticks and grids of ax1.\n ax1.parasites.append(ax2)\n ax2.plot(np.linspace(0, 30, 51), np.linspace(10, 10, 51), linewidth=2)\n\n\nif __name__ == \"__main__\":\n fig = plt.figure(figsize=(7, 4))\n\n curvelinear_test1(fig)\n curvelinear_test2(fig)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7d6b8aef761fe2376554b6c454472347/colormap_normalizations_diverging.py b/_downloads/7d6b8aef761fe2376554b6c454472347/colormap_normalizations_diverging.py deleted file mode 120000 index 2c914a373a5..00000000000 --- a/_downloads/7d6b8aef761fe2376554b6c454472347/colormap_normalizations_diverging.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7d6b8aef761fe2376554b6c454472347/colormap_normalizations_diverging.py \ No newline at end of file diff --git a/_downloads/7d6c77bf4893bc66453790ddbba23dea/rotate_axes3d_sgskip.py b/_downloads/7d6c77bf4893bc66453790ddbba23dea/rotate_axes3d_sgskip.py deleted file mode 120000 index f6cdc953740..00000000000 --- a/_downloads/7d6c77bf4893bc66453790ddbba23dea/rotate_axes3d_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7d6c77bf4893bc66453790ddbba23dea/rotate_axes3d_sgskip.py \ No newline at end of file diff --git a/_downloads/7d8dcd96b2c8a7faf4dd154a2bc3314a/anchored_box03.ipynb b/_downloads/7d8dcd96b2c8a7faf4dd154a2bc3314a/anchored_box03.ipynb deleted file mode 120000 index 6a11627bcb6..00000000000 --- a/_downloads/7d8dcd96b2c8a7faf4dd154a2bc3314a/anchored_box03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7d8dcd96b2c8a7faf4dd154a2bc3314a/anchored_box03.ipynb \ No newline at end of file diff --git a/_downloads/7d99ca4bccf958e5edf2d8773c090799/pie_demo2.ipynb b/_downloads/7d99ca4bccf958e5edf2d8773c090799/pie_demo2.ipynb deleted file mode 120000 index 39c063bbcd7..00000000000 --- a/_downloads/7d99ca4bccf958e5edf2d8773c090799/pie_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7d99ca4bccf958e5edf2d8773c090799/pie_demo2.ipynb \ No newline at end of file diff --git a/_downloads/7d9ee9b56fc8c24173d4b9f96d3f0e47/annotate_simple_coord03.py b/_downloads/7d9ee9b56fc8c24173d4b9f96d3f0e47/annotate_simple_coord03.py deleted file mode 120000 index dec50b8086f..00000000000 --- a/_downloads/7d9ee9b56fc8c24173d4b9f96d3f0e47/annotate_simple_coord03.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7d9ee9b56fc8c24173d4b9f96d3f0e47/annotate_simple_coord03.py \ No newline at end of file diff --git a/_downloads/7dab251f3d885b451214041faf6bf57e/scatter_star_poly.ipynb b/_downloads/7dab251f3d885b451214041faf6bf57e/scatter_star_poly.ipynb deleted file mode 120000 index 2b76307ff5c..00000000000 --- a/_downloads/7dab251f3d885b451214041faf6bf57e/scatter_star_poly.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7dab251f3d885b451214041faf6bf57e/scatter_star_poly.ipynb \ No newline at end of file diff --git a/_downloads/7db4f38f527c5e8249a919e25d9fba9a/demo_colorbar_with_inset_locator.ipynb b/_downloads/7db4f38f527c5e8249a919e25d9fba9a/demo_colorbar_with_inset_locator.ipynb deleted file mode 120000 index c9b3d4ef57f..00000000000 --- a/_downloads/7db4f38f527c5e8249a919e25d9fba9a/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7db4f38f527c5e8249a919e25d9fba9a/demo_colorbar_with_inset_locator.ipynb \ No newline at end of file diff --git a/_downloads/7dbbc1f04e410b8b7d01a35071a0bcce/whats_new_99_axes_grid.ipynb b/_downloads/7dbbc1f04e410b8b7d01a35071a0bcce/whats_new_99_axes_grid.ipynb deleted file mode 120000 index 05c688aed5a..00000000000 --- a/_downloads/7dbbc1f04e410b8b7d01a35071a0bcce/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/7dbbc1f04e410b8b7d01a35071a0bcce/whats_new_99_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/7dbe1f1797fa7f2a79e69425d93826df/annotate_simple01.py b/_downloads/7dbe1f1797fa7f2a79e69425d93826df/annotate_simple01.py deleted file mode 100644 index 0376397d0cb..00000000000 --- a/_downloads/7dbe1f1797fa7f2a79e69425d93826df/annotate_simple01.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -================= -Annotate Simple01 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ax.annotate("", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc3"), - ) - -plt.show() diff --git a/_downloads/7dbf9c1491fc40d584b7bfabdcd11a64/dashpointlabel.py b/_downloads/7dbf9c1491fc40d584b7bfabdcd11a64/dashpointlabel.py deleted file mode 120000 index 5930ad9a277..00000000000 --- a/_downloads/7dbf9c1491fc40d584b7bfabdcd11a64/dashpointlabel.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7dbf9c1491fc40d584b7bfabdcd11a64/dashpointlabel.py \ No newline at end of file diff --git a/_downloads/7dc86ec246c27f2413f827ab44d323fa/frame_grabbing_sgskip.py b/_downloads/7dc86ec246c27f2413f827ab44d323fa/frame_grabbing_sgskip.py deleted file mode 100644 index e74576249aa..00000000000 --- a/_downloads/7dc86ec246c27f2413f827ab44d323fa/frame_grabbing_sgskip.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -============== -Frame grabbing -============== - -Use a MovieWriter directly to grab individual frames and write them to a -file. This avoids any event loop integration, and thus works even with the Agg -backend. This is not recommended for use in an interactive setting. -""" - -import numpy as np -import matplotlib -matplotlib.use("Agg") -import matplotlib.pyplot as plt -from matplotlib.animation import FFMpegWriter - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -metadata = dict(title='Movie Test', artist='Matplotlib', - comment='Movie support!') -writer = FFMpegWriter(fps=15, metadata=metadata) - -fig = plt.figure() -l, = plt.plot([], [], 'k-o') - -plt.xlim(-5, 5) -plt.ylim(-5, 5) - -x0, y0 = 0, 0 - -with writer.saving(fig, "writer_test.mp4", 100): - for i in range(100): - x0 += 0.1 * np.random.randn() - y0 += 0.1 * np.random.randn() - l.set_data(x0, y0) - writer.grab_frame() diff --git a/_downloads/7dc95008608d489079b7c2e4f2b60771/units_scatter.py b/_downloads/7dc95008608d489079b7c2e4f2b60771/units_scatter.py deleted file mode 100644 index 8a121b4afd0..00000000000 --- a/_downloads/7dc95008608d489079b7c2e4f2b60771/units_scatter.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============= -Unit handling -============= - -The example below shows support for unit conversions over masked -arrays. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -import numpy as np -import matplotlib.pyplot as plt -from basic_units import secs, hertz, minutes - -# create masked array -data = (1, 2, 3, 4, 5, 6, 7, 8) -mask = (1, 0, 1, 0, 0, 0, 1, 0) -xsecs = secs * np.ma.MaskedArray(data, mask, float) - -fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True) - -ax1.scatter(xsecs, xsecs) -ax1.yaxis.set_units(secs) -ax2.scatter(xsecs, xsecs, yunits=hertz) -ax3.scatter(xsecs, xsecs, yunits=minutes) - -fig.tight_layout() -plt.show() diff --git a/_downloads/7dcc2f6e710dc4f7ec9afc84ad6efd1b/scatter_hist.ipynb b/_downloads/7dcc2f6e710dc4f7ec9afc84ad6efd1b/scatter_hist.ipynb deleted file mode 120000 index 4fe3ad2afc2..00000000000 --- a/_downloads/7dcc2f6e710dc4f7ec9afc84ad6efd1b/scatter_hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7dcc2f6e710dc4f7ec9afc84ad6efd1b/scatter_hist.ipynb \ No newline at end of file diff --git a/_downloads/7dd629c030892b8738bc4c5e86dc6736/tick-locators.py b/_downloads/7dd629c030892b8738bc4c5e86dc6736/tick-locators.py deleted file mode 120000 index 86b44ee5126..00000000000 --- a/_downloads/7dd629c030892b8738bc4c5e86dc6736/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7dd629c030892b8738bc4c5e86dc6736/tick-locators.py \ No newline at end of file diff --git a/_downloads/7ddf1df96a3236fcaeef94a16c06a44d/imshow_extent.ipynb b/_downloads/7ddf1df96a3236fcaeef94a16c06a44d/imshow_extent.ipynb deleted file mode 120000 index a95a10ea3b0..00000000000 --- a/_downloads/7ddf1df96a3236fcaeef94a16c06a44d/imshow_extent.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7ddf1df96a3236fcaeef94a16c06a44d/imshow_extent.ipynb \ No newline at end of file diff --git a/_downloads/7de2c3d9e9d491c83c4f0d5c5dc6dfd4/pcolor_demo.ipynb b/_downloads/7de2c3d9e9d491c83c4f0d5c5dc6dfd4/pcolor_demo.ipynb deleted file mode 120000 index aa168e76559..00000000000 --- a/_downloads/7de2c3d9e9d491c83c4f0d5c5dc6dfd4/pcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7de2c3d9e9d491c83c4f0d5c5dc6dfd4/pcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/7de9988a9f38ff7d44ce44ae461efcd4/simple_axesgrid.py b/_downloads/7de9988a9f38ff7d44ce44ae461efcd4/simple_axesgrid.py deleted file mode 100644 index fdd94cd3224..00000000000 --- a/_downloads/7de9988a9f38ff7d44ce44ae461efcd4/simple_axesgrid.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -================ -Simple ImageGrid -================ - -Align multiple images using `~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`. -""" - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid -import numpy as np - -im1 = np.arange(100).reshape((10, 10)) -im2 = im1.T -im3 = np.flipud(im1) -im4 = np.fliplr(im2) - -fig = plt.figure(figsize=(4., 4.)) -grid = ImageGrid(fig, 111, # similar to subplot(111) - nrows_ncols=(2, 2), # creates 2x2 grid of axes - axes_pad=0.1, # pad between axes in inch. - ) - -for ax, im in zip(grid, [im1, im2, im3, im4]): - # Iterating over the grid returns the Axes. - ax.imshow(im) - -plt.show() diff --git a/_downloads/7deac4ddb6b280578c2ccd11144d720f/demo_text_path.ipynb b/_downloads/7deac4ddb6b280578c2ccd11144d720f/demo_text_path.ipynb deleted file mode 120000 index 1a4b821105d..00000000000 --- a/_downloads/7deac4ddb6b280578c2ccd11144d720f/demo_text_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7deac4ddb6b280578c2ccd11144d720f/demo_text_path.ipynb \ No newline at end of file diff --git a/_downloads/7deae0ccf13f3e1355432e94b151a76b/pyplot_formatstr.ipynb b/_downloads/7deae0ccf13f3e1355432e94b151a76b/pyplot_formatstr.ipynb deleted file mode 120000 index fd2dcdfdc1e..00000000000 --- a/_downloads/7deae0ccf13f3e1355432e94b151a76b/pyplot_formatstr.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7deae0ccf13f3e1355432e94b151a76b/pyplot_formatstr.ipynb \ No newline at end of file diff --git a/_downloads/7df98fd104563968052ef9c60b27a0b2/image_transparency_blend.py b/_downloads/7df98fd104563968052ef9c60b27a0b2/image_transparency_blend.py deleted file mode 120000 index c20bc4cd653..00000000000 --- a/_downloads/7df98fd104563968052ef9c60b27a0b2/image_transparency_blend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7df98fd104563968052ef9c60b27a0b2/image_transparency_blend.py \ No newline at end of file diff --git a/_downloads/7e0626a2a8bb6677c709ed68d7803293/image_nonuniform.ipynb b/_downloads/7e0626a2a8bb6677c709ed68d7803293/image_nonuniform.ipynb deleted file mode 100644 index a0cddea3fcc..00000000000 --- a/_downloads/7e0626a2a8bb6677c709ed68d7803293/image_nonuniform.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Nonuniform\n\n\nThis illustrates the NonUniformImage class. It is not\navailable via an Axes method but it is easily added to an\nAxes instance as shown here.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.image import NonUniformImage\nfrom matplotlib import cm\n\ninterp = 'nearest'\n\n# Linear x array for cell centers:\nx = np.linspace(-4, 4, 9)\n\n# Highly nonlinear x array:\nx2 = x**3\n\ny = np.linspace(-4, 4, 9)\n\nz = np.sqrt(x[np.newaxis, :]**2 + y[:, np.newaxis]**2)\n\nfig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True)\nfig.suptitle('NonUniformImage class', fontsize='large')\nax = axs[0, 0]\nim = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4),\n cmap=cm.Purples)\nim.set_data(x, y, z)\nax.images.append(im)\nax.set_xlim(-4, 4)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\nax = axs[0, 1]\nim = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4),\n cmap=cm.Purples)\nim.set_data(x2, y, z)\nax.images.append(im)\nax.set_xlim(-64, 64)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\ninterp = 'bilinear'\n\nax = axs[1, 0]\nim = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4),\n cmap=cm.Purples)\nim.set_data(x, y, z)\nax.images.append(im)\nax.set_xlim(-4, 4)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\nax = axs[1, 1]\nim = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4),\n cmap=cm.Purples)\nim.set_data(x2, y, z)\nax.images.append(im)\nax.set_xlim(-64, 64)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7e0b823c7d8e528993d996b2ae29a4fb/zorder_demo.ipynb b/_downloads/7e0b823c7d8e528993d996b2ae29a4fb/zorder_demo.ipynb deleted file mode 100644 index 2a381f5e7c5..00000000000 --- a/_downloads/7e0b823c7d8e528993d996b2ae29a4fb/zorder_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Zorder Demo\n\n\nThe default drawing order for axes is patches, lines, text. This\norder is determined by the zorder attribute. The following defaults\nare set\n\n======================= =======\nArtist Z-order\n======================= =======\nPatch / PatchCollection 1\nLine2D / LineCollection 2\nText 3\n======================= =======\n\nYou can change the order for individual artists by setting the zorder. Any\nindividual plot() call can set a value for the zorder of that particular item.\n\nIn the fist subplot below, the lines are drawn above the patch\ncollection from the scatter, which is the default.\n\nIn the subplot below, the order is reversed.\n\nThe second figure shows how to control the zorder of individual lines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx = np.random.random(20)\ny = np.random.random(20)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Lines on top of scatter\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(211)\nplt.plot(x, y, 'C3', lw=3)\nplt.scatter(x, y, s=120)\nplt.title('Lines on top of dots')\n\n# Scatter plot on top of lines\nplt.subplot(212)\nplt.plot(x, y, 'C3', zorder=1, lw=3)\nplt.scatter(x, y, s=120, zorder=2)\nplt.title('Dots on top of lines')\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A new figure, with individually ordered items\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 2*np.pi, 100)\nplt.rcParams['lines.linewidth'] = 10\nplt.figure()\nplt.plot(x, np.sin(x), label='zorder=10', zorder=10) # on top\nplt.plot(x, np.sin(1.1*x), label='zorder=1', zorder=1) # bottom\nplt.plot(x, np.sin(1.2*x), label='zorder=3', zorder=3)\nplt.axhline(0, label='zorder=2', color='grey', zorder=2)\nplt.title('Custom order of elements')\nl = plt.legend(loc='upper right')\nl.set_zorder(20) # put the legend on top\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7e0db0e3632cc4320835107736c210d8/simple_legend02.py b/_downloads/7e0db0e3632cc4320835107736c210d8/simple_legend02.py deleted file mode 120000 index db69647fd39..00000000000 --- a/_downloads/7e0db0e3632cc4320835107736c210d8/simple_legend02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7e0db0e3632cc4320835107736c210d8/simple_legend02.py \ No newline at end of file diff --git a/_downloads/7e0f39ac8c320dfa39e2506528319a60/tricontour_smooth_user.py b/_downloads/7e0f39ac8c320dfa39e2506528319a60/tricontour_smooth_user.py deleted file mode 120000 index 18304ccf188..00000000000 --- a/_downloads/7e0f39ac8c320dfa39e2506528319a60/tricontour_smooth_user.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7e0f39ac8c320dfa39e2506528319a60/tricontour_smooth_user.py \ No newline at end of file diff --git a/_downloads/7e188c989e2bdbbe29ffc0525c81b0b7/logos2.py b/_downloads/7e188c989e2bdbbe29ffc0525c81b0b7/logos2.py deleted file mode 120000 index ff68a9d93b9..00000000000 --- a/_downloads/7e188c989e2bdbbe29ffc0525c81b0b7/logos2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7e188c989e2bdbbe29ffc0525c81b0b7/logos2.py \ No newline at end of file diff --git a/_downloads/7e1bc9ce45a9dcf0c810a6fb06ca4ed9/spines.ipynb b/_downloads/7e1bc9ce45a9dcf0c810a6fb06ca4ed9/spines.ipynb deleted file mode 120000 index 13b4281bc29..00000000000 --- a/_downloads/7e1bc9ce45a9dcf0c810a6fb06ca4ed9/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e1bc9ce45a9dcf0c810a6fb06ca4ed9/spines.ipynb \ No newline at end of file diff --git a/_downloads/7e1e513afb2748b9b6131610d6563f41/mpl_with_glade3_sgskip.py b/_downloads/7e1e513afb2748b9b6131610d6563f41/mpl_with_glade3_sgskip.py deleted file mode 120000 index 6bd7bc34e83..00000000000 --- a/_downloads/7e1e513afb2748b9b6131610d6563f41/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e1e513afb2748b9b6131610d6563f41/mpl_with_glade3_sgskip.py \ No newline at end of file diff --git a/_downloads/7e240254b781ac5d21f15bd0e07fae80/svg_filter_line.py b/_downloads/7e240254b781ac5d21f15bd0e07fae80/svg_filter_line.py deleted file mode 120000 index 2d0743483fa..00000000000 --- a/_downloads/7e240254b781ac5d21f15bd0e07fae80/svg_filter_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e240254b781ac5d21f15bd0e07fae80/svg_filter_line.py \ No newline at end of file diff --git a/_downloads/7e25c4d0e202dde634d627a78a6b1014/mathtext_demo.py b/_downloads/7e25c4d0e202dde634d627a78a6b1014/mathtext_demo.py deleted file mode 120000 index 67727b92ee2..00000000000 --- a/_downloads/7e25c4d0e202dde634d627a78a6b1014/mathtext_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e25c4d0e202dde634d627a78a6b1014/mathtext_demo.py \ No newline at end of file diff --git a/_downloads/7e3543e5e2bf9bf6d9ab538c63e48bd9/demo_colorbar_with_inset_locator.py b/_downloads/7e3543e5e2bf9bf6d9ab538c63e48bd9/demo_colorbar_with_inset_locator.py deleted file mode 120000 index 4c692423a2e..00000000000 --- a/_downloads/7e3543e5e2bf9bf6d9ab538c63e48bd9/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7e3543e5e2bf9bf6d9ab538c63e48bd9/demo_colorbar_with_inset_locator.py \ No newline at end of file diff --git a/_downloads/7e3c6f55559a78bc4e9e0b3ccede3cb5/buttons.ipynb b/_downloads/7e3c6f55559a78bc4e9e0b3ccede3cb5/buttons.ipynb deleted file mode 120000 index 7bd3bb9432c..00000000000 --- a/_downloads/7e3c6f55559a78bc4e9e0b3ccede3cb5/buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e3c6f55559a78bc4e9e0b3ccede3cb5/buttons.ipynb \ No newline at end of file diff --git a/_downloads/7e3f61246081f5d7e28bdcdcc5067259/poly_editor.ipynb b/_downloads/7e3f61246081f5d7e28bdcdcc5067259/poly_editor.ipynb deleted file mode 120000 index 7d20c685d84..00000000000 --- a/_downloads/7e3f61246081f5d7e28bdcdcc5067259/poly_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e3f61246081f5d7e28bdcdcc5067259/poly_editor.ipynb \ No newline at end of file diff --git a/_downloads/7e406faa61604cc10c30a781440a6802/fill_betweenx_demo.ipynb b/_downloads/7e406faa61604cc10c30a781440a6802/fill_betweenx_demo.ipynb deleted file mode 120000 index a75be083bec..00000000000 --- a/_downloads/7e406faa61604cc10c30a781440a6802/fill_betweenx_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7e406faa61604cc10c30a781440a6802/fill_betweenx_demo.ipynb \ No newline at end of file diff --git a/_downloads/7e472e8356f89f7888320f5fd2f92665/3D.ipynb b/_downloads/7e472e8356f89f7888320f5fd2f92665/3D.ipynb deleted file mode 120000 index a92a918e703..00000000000 --- a/_downloads/7e472e8356f89f7888320f5fd2f92665/3D.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7e472e8356f89f7888320f5fd2f92665/3D.ipynb \ No newline at end of file diff --git a/_downloads/7e5f12e66e896258cfb40c07bed1566b/colorbar_only.py b/_downloads/7e5f12e66e896258cfb40c07bed1566b/colorbar_only.py deleted file mode 120000 index 762228f3e85..00000000000 --- a/_downloads/7e5f12e66e896258cfb40c07bed1566b/colorbar_only.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e5f12e66e896258cfb40c07bed1566b/colorbar_only.py \ No newline at end of file diff --git a/_downloads/7e7d909a41a71030c7ade2aa00742f39/toolmanager_sgskip.ipynb b/_downloads/7e7d909a41a71030c7ade2aa00742f39/toolmanager_sgskip.ipynb deleted file mode 120000 index 5275a435f75..00000000000 --- a/_downloads/7e7d909a41a71030c7ade2aa00742f39/toolmanager_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e7d909a41a71030c7ade2aa00742f39/toolmanager_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/7e82f9d134a090a59f3ca0b2597629f0/animation_demo.py b/_downloads/7e82f9d134a090a59f3ca0b2597629f0/animation_demo.py deleted file mode 120000 index c2b05a53944..00000000000 --- a/_downloads/7e82f9d134a090a59f3ca0b2597629f0/animation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7e82f9d134a090a59f3ca0b2597629f0/animation_demo.py \ No newline at end of file diff --git a/_downloads/7e876c3d85b502d8c7357ec3d79975eb/contour_label_demo.ipynb b/_downloads/7e876c3d85b502d8c7357ec3d79975eb/contour_label_demo.ipynb deleted file mode 120000 index 7ce75dd6a84..00000000000 --- a/_downloads/7e876c3d85b502d8c7357ec3d79975eb/contour_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7e876c3d85b502d8c7357ec3d79975eb/contour_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/7e8d59044098045d7d871183e9f363c0/image_zcoord.ipynb b/_downloads/7e8d59044098045d7d871183e9f363c0/image_zcoord.ipynb deleted file mode 120000 index eeb7b8f311e..00000000000 --- a/_downloads/7e8d59044098045d7d871183e9f363c0/image_zcoord.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7e8d59044098045d7d871183e9f363c0/image_zcoord.ipynb \ No newline at end of file diff --git a/_downloads/7e99cfa3c4a1d7d38ea611a0596cdd36/evans_test.py b/_downloads/7e99cfa3c4a1d7d38ea611a0596cdd36/evans_test.py deleted file mode 100644 index c5fe9696d2f..00000000000 --- a/_downloads/7e99cfa3c4a1d7d38ea611a0596cdd36/evans_test.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -========== -Evans test -========== - -A mockup "Foo" units class which supports conversion and different tick -formatting depending on the "unit". Here the "unit" is just a scalar -conversion factor, but this example shows that Matplotlib is entirely agnostic -to what kind of units client packages use. -""" - -import numpy as np - -import matplotlib.units as units -import matplotlib.ticker as ticker -import matplotlib.pyplot as plt - - -class Foo(object): - def __init__(self, val, unit=1.0): - self.unit = unit - self._val = val * unit - - def value(self, unit): - if unit is None: - unit = self.unit - return self._val / unit - - -class FooConverter(units.ConversionInterface): - @staticmethod - def axisinfo(unit, axis): - 'return the Foo AxisInfo' - if unit == 1.0 or unit == 2.0: - return units.AxisInfo( - majloc=ticker.IndexLocator(8, 0), - majfmt=ticker.FormatStrFormatter("VAL: %s"), - label='foo', - ) - - else: - return None - - @staticmethod - def convert(obj, unit, axis): - """ - convert obj using unit. If obj is a sequence, return the - converted sequence - """ - if units.ConversionInterface.is_numlike(obj): - return obj - - if np.iterable(obj): - return [o.value(unit) for o in obj] - else: - return obj.value(unit) - - @staticmethod - def default_units(x, axis): - 'return the default unit for x or None' - if np.iterable(x): - for thisx in x: - return thisx.unit - else: - return x.unit - - -units.registry[Foo] = FooConverter() - -# create some Foos -x = [] -for val in range(0, 50, 2): - x.append(Foo(val, 1.0)) - -# and some arbitrary y data -y = [i for i in range(len(x))] - - -fig, (ax1, ax2) = plt.subplots(1, 2) -fig.suptitle("Custom units") -fig.subplots_adjust(bottom=0.2) - -# plot specifying units -ax2.plot(x, y, 'o', xunits=2.0) -ax2.set_title("xunits = 2.0") -plt.setp(ax2.get_xticklabels(), rotation=30, ha='right') - -# plot without specifying units; will use the None branch for axisinfo -ax1.plot(x, y) # uses default units -ax1.set_title('default units') -plt.setp(ax1.get_xticklabels(), rotation=30, ha='right') - -plt.show() diff --git a/_downloads/7e9c42f7b48909eef24d1d068bdad4ae/cursor.py b/_downloads/7e9c42f7b48909eef24d1d068bdad4ae/cursor.py deleted file mode 120000 index 844988ad045..00000000000 --- a/_downloads/7e9c42f7b48909eef24d1d068bdad4ae/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7e9c42f7b48909eef24d1d068bdad4ae/cursor.py \ No newline at end of file diff --git a/_downloads/7e9d4ca2b6545be94b70ee4c77d152d4/simple_axes_divider1.ipynb b/_downloads/7e9d4ca2b6545be94b70ee4c77d152d4/simple_axes_divider1.ipynb deleted file mode 100644 index b6dba9fbbff..00000000000 --- a/_downloads/7e9d4ca2b6545be94b70ee4c77d152d4/simple_axes_divider1.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axes Divider 1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import Size, Divider\nimport matplotlib.pyplot as plt\n\n\nfig1 = plt.figure(1, (6, 6))\n\n# fixed size in inch\nhoriz = [Size.Fixed(1.), Size.Fixed(.5), Size.Fixed(1.5),\n Size.Fixed(.5)]\nvert = [Size.Fixed(1.5), Size.Fixed(.5), Size.Fixed(1.)]\n\nrect = (0.1, 0.1, 0.8, 0.8)\n# divide the axes rectangle into grid whose size is specified by horiz * vert\ndivider = Divider(fig1, rect, horiz, vert, aspect=False)\n\n# the rect parameter will be ignore as we will set axes_locator\nax1 = fig1.add_axes(rect, label=\"1\")\nax2 = fig1.add_axes(rect, label=\"2\")\nax3 = fig1.add_axes(rect, label=\"3\")\nax4 = fig1.add_axes(rect, label=\"4\")\n\nax1.set_axes_locator(divider.new_locator(nx=0, ny=0))\nax2.set_axes_locator(divider.new_locator(nx=0, ny=2))\nax3.set_axes_locator(divider.new_locator(nx=2, ny=2))\nax4.set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7e9d8e50617423ac51c2bc3b15b42e1a/usetex_baseline_test.ipynb b/_downloads/7e9d8e50617423ac51c2bc3b15b42e1a/usetex_baseline_test.ipynb deleted file mode 120000 index fb9ae4acee5..00000000000 --- a/_downloads/7e9d8e50617423ac51c2bc3b15b42e1a/usetex_baseline_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7e9d8e50617423ac51c2bc3b15b42e1a/usetex_baseline_test.ipynb \ No newline at end of file diff --git a/_downloads/7e9df1348be8f0d0199ff02e9360090d/span_selector.ipynb b/_downloads/7e9df1348be8f0d0199ff02e9360090d/span_selector.ipynb deleted file mode 100644 index 67050e460da..00000000000 --- a/_downloads/7e9df1348be8f0d0199ff02e9360090d/span_selector.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Span Selector\n\n\nThe SpanSelector is a mouse widget to select a xmin/xmax range and plot the\ndetail view of the selected region in the lower axes\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import SpanSelector\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, (ax1, ax2) = plt.subplots(2, figsize=(8, 6))\nax1.set(facecolor='#FFFFCC')\n\nx = np.arange(0.0, 5.0, 0.01)\ny = np.sin(2*np.pi*x) + 0.5*np.random.randn(len(x))\n\nax1.plot(x, y, '-')\nax1.set_ylim(-2, 2)\nax1.set_title('Press left mouse button and drag to test')\n\nax2.set(facecolor='#FFFFCC')\nline2, = ax2.plot(x, y, '-')\n\n\ndef onselect(xmin, xmax):\n indmin, indmax = np.searchsorted(x, (xmin, xmax))\n indmax = min(len(x) - 1, indmax)\n\n thisx = x[indmin:indmax]\n thisy = y[indmin:indmax]\n line2.set_data(thisx, thisy)\n ax2.set_xlim(thisx[0], thisx[-1])\n ax2.set_ylim(thisy.min(), thisy.max())\n fig.canvas.draw()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

If the SpanSelector object is garbage collected you will lose the\n interactivity. You must keep a hard reference to it to prevent this.

\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "span = SpanSelector(ax1, onselect, 'horizontal', useblit=True,\n rectprops=dict(alpha=0.5, facecolor='red'))\n# Set useblit=True on most backends for enhanced performance.\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7ea3a282b87f8795b0f80e3e2af14de6/demo_axes_hbox_divider.py b/_downloads/7ea3a282b87f8795b0f80e3e2af14de6/demo_axes_hbox_divider.py deleted file mode 120000 index e5c8bf9e866..00000000000 --- a/_downloads/7ea3a282b87f8795b0f80e3e2af14de6/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7ea3a282b87f8795b0f80e3e2af14de6/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/_downloads/7eb0129a1e1bbe2fda7fe1c5fa3183d6/hatch_demo.ipynb b/_downloads/7eb0129a1e1bbe2fda7fe1c5fa3183d6/hatch_demo.ipynb deleted file mode 100644 index ecb2180a7ff..00000000000 --- a/_downloads/7eb0129a1e1bbe2fda7fe1c5fa3183d6/hatch_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hatch Demo\n\n\nHatching (pattern filled polygons) is supported currently in the PS,\nPDF, SVG and Agg backends only.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import Ellipse, Polygon\n\nfig, (ax1, ax2, ax3) = plt.subplots(3)\n\nax1.bar(range(1, 5), range(1, 5), color='red', edgecolor='black', hatch=\"/\")\nax1.bar(range(1, 5), [6] * 4, bottom=range(1, 5),\n color='blue', edgecolor='black', hatch='//')\nax1.set_xticks([1.5, 2.5, 3.5, 4.5])\n\nbars = ax2.bar(range(1, 5), range(1, 5), color='yellow', ecolor='black') + \\\n ax2.bar(range(1, 5), [6] * 4, bottom=range(1, 5),\n color='green', ecolor='black')\nax2.set_xticks([1.5, 2.5, 3.5, 4.5])\n\npatterns = ('-', '+', 'x', '\\\\', '*', 'o', 'O', '.')\nfor bar, pattern in zip(bars, patterns):\n bar.set_hatch(pattern)\n\nax3.fill([1, 3, 3, 1], [1, 1, 2, 2], fill=False, hatch='\\\\')\nax3.add_patch(Ellipse((4, 1.5), 4, 0.5, fill=False, hatch='*'))\nax3.add_patch(Polygon([[0, 0], [4, 1.1], [6, 2.5], [2, 1.4]], closed=True,\n fill=False, hatch='/'))\nax3.set_xlim((0, 6))\nax3.set_ylim((0, 2.5))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.Ellipse\nmatplotlib.patches.Polygon\nmatplotlib.axes.Axes.add_patch\nmatplotlib.patches.Patch.set_hatch\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7ebcb5519566353440e8d71cb88c986f/timeline.ipynb b/_downloads/7ebcb5519566353440e8d71cb88c986f/timeline.ipynb deleted file mode 120000 index 530b219d3f6..00000000000 --- a/_downloads/7ebcb5519566353440e8d71cb88c986f/timeline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7ebcb5519566353440e8d71cb88c986f/timeline.ipynb \ No newline at end of file diff --git a/_downloads/7ebe6c25a79c6e3f35e09183397af238/simple_axisartist1.py b/_downloads/7ebe6c25a79c6e3f35e09183397af238/simple_axisartist1.py deleted file mode 120000 index 4a4f010d66a..00000000000 --- a/_downloads/7ebe6c25a79c6e3f35e09183397af238/simple_axisartist1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7ebe6c25a79c6e3f35e09183397af238/simple_axisartist1.py \ No newline at end of file diff --git a/_downloads/7ec3892f330a1e495f615db483d0714e/artist_tests.py b/_downloads/7ec3892f330a1e495f615db483d0714e/artist_tests.py deleted file mode 100644 index 0b078ce5cb6..00000000000 --- a/_downloads/7ec3892f330a1e495f615db483d0714e/artist_tests.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -============ -Artist tests -============ - -Test unit support with each of the Matplotlib primitive artist types. - -The axis handles unit conversions and the artists keep a pointer to their axis -parent. You must initialize the artists with the axis instance if you want to -use them with unit data, or else they will not know how to convert the units -to scalars. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -import random -import matplotlib.lines as lines -import matplotlib.patches as patches -import matplotlib.text as text -import matplotlib.collections as collections - -from basic_units import cm, inch -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() -ax.xaxis.set_units(cm) -ax.yaxis.set_units(cm) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -if 0: - # test a line collection - # Not supported at present. - verts = [] - for i in range(10): - # a random line segment in inches - verts.append(zip(*inch*10*np.random.rand(2, random.randint(2, 15)))) - lc = collections.LineCollection(verts, axes=ax) - ax.add_collection(lc) - -# test a plain-ol-line -line = lines.Line2D([0*cm, 1.5*cm], [0*cm, 2.5*cm], - lw=2, color='black', axes=ax) -ax.add_line(line) - -if 0: - # test a patch - # Not supported at present. - rect = patches.Rectangle((1*cm, 1*cm), width=5*cm, height=2*cm, - alpha=0.2, axes=ax) - ax.add_patch(rect) - - -t = text.Text(3*cm, 2.5*cm, 'text label', ha='left', va='bottom', axes=ax) -ax.add_artist(t) - -ax.set_xlim(-1*cm, 10*cm) -ax.set_ylim(-1*cm, 10*cm) -# ax.xaxis.set_units(inch) -ax.grid(True) -ax.set_title("Artists with units") -plt.show() diff --git a/_downloads/7ec41a6722c6175ed08ae3e85a62d6e5/demo_fixed_size_axes.py b/_downloads/7ec41a6722c6175ed08ae3e85a62d6e5/demo_fixed_size_axes.py deleted file mode 120000 index cbe3cf0abed..00000000000 --- a/_downloads/7ec41a6722c6175ed08ae3e85a62d6e5/demo_fixed_size_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7ec41a6722c6175ed08ae3e85a62d6e5/demo_fixed_size_axes.py \ No newline at end of file diff --git a/_downloads/7ec6720984b4b42a5562af755ffd869f/date_demo_rrule.ipynb b/_downloads/7ec6720984b4b42a5562af755ffd869f/date_demo_rrule.ipynb deleted file mode 120000 index 0b06859a7bc..00000000000 --- a/_downloads/7ec6720984b4b42a5562af755ffd869f/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7ec6720984b4b42a5562af755ffd869f/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/7ecb3c7a61f55cce1c5616cc997150b6/date_demo_convert.ipynb b/_downloads/7ecb3c7a61f55cce1c5616cc997150b6/date_demo_convert.ipynb deleted file mode 120000 index 77aa39272b2..00000000000 --- a/_downloads/7ecb3c7a61f55cce1c5616cc997150b6/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7ecb3c7a61f55cce1c5616cc997150b6/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/7ee3f74fd919cd5826678c9aed68460c/pick_event_demo.py b/_downloads/7ee3f74fd919cd5826678c9aed68460c/pick_event_demo.py deleted file mode 120000 index 4a64c653cef..00000000000 --- a/_downloads/7ee3f74fd919cd5826678c9aed68460c/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7ee3f74fd919cd5826678c9aed68460c/pick_event_demo.py \ No newline at end of file diff --git a/_downloads/7ee5d6c54381b4ec18430ee5b8577207/scatter3d.ipynb b/_downloads/7ee5d6c54381b4ec18430ee5b8577207/scatter3d.ipynb deleted file mode 100644 index ed231b2fc8c..00000000000 --- a/_downloads/7ee5d6c54381b4ec18430ee5b8577207/scatter3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D scatterplot\n\n\nDemonstration of a basic scatterplot in 3D.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef randrange(n, vmin, vmax):\n '''\n Helper function to make an array of random numbers having shape (n, )\n with each number distributed Uniform(vmin, vmax).\n '''\n return (vmax - vmin)*np.random.rand(n) + vmin\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\nn = 100\n\n# For each set of style and range settings, plot n random points in the box\n# defined by x in [23, 32], y in [0, 100], z in [zlow, zhigh].\nfor m, zlow, zhigh in [('o', -50, -25), ('^', -30, -5)]:\n xs = randrange(n, 23, 32)\n ys = randrange(n, 0, 100)\n zs = randrange(n, zlow, zhigh)\n ax.scatter(xs, ys, zs, marker=m)\n\nax.set_xlabel('X Label')\nax.set_ylabel('Y Label')\nax.set_zlabel('Z Label')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7ee7f3f6f6e8caae51e24640a38c4b31/plotfile_demo.py b/_downloads/7ee7f3f6f6e8caae51e24640a38c4b31/plotfile_demo.py deleted file mode 120000 index 72cf5369863..00000000000 --- a/_downloads/7ee7f3f6f6e8caae51e24640a38c4b31/plotfile_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7ee7f3f6f6e8caae51e24640a38c4b31/plotfile_demo.py \ No newline at end of file diff --git a/_downloads/7eeaa10a2a1faac0d0cd8d2921c27931/imshow_extent.py b/_downloads/7eeaa10a2a1faac0d0cd8d2921c27931/imshow_extent.py deleted file mode 120000 index 8c0139d3ace..00000000000 --- a/_downloads/7eeaa10a2a1faac0d0cd8d2921c27931/imshow_extent.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7eeaa10a2a1faac0d0cd8d2921c27931/imshow_extent.py \ No newline at end of file diff --git a/_downloads/7eefc1b1a7d5997510d7c47407412212/colormap_normalizations_symlognorm.ipynb b/_downloads/7eefc1b1a7d5997510d7c47407412212/colormap_normalizations_symlognorm.ipynb deleted file mode 120000 index ba3e903baf4..00000000000 --- a/_downloads/7eefc1b1a7d5997510d7c47407412212/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7eefc1b1a7d5997510d7c47407412212/colormap_normalizations_symlognorm.ipynb \ No newline at end of file diff --git a/_downloads/7f16559f2fb22846cd6708e1708f0081/colorbar_tick_labelling_demo.ipynb b/_downloads/7f16559f2fb22846cd6708e1708f0081/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index a8b10086a02..00000000000 --- a/_downloads/7f16559f2fb22846cd6708e1708f0081/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7f16559f2fb22846cd6708e1708f0081/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/7f1681fa4853a96c07d8a5e22457dfd6/annotate_simple_coord02.py b/_downloads/7f1681fa4853a96c07d8a5e22457dfd6/annotate_simple_coord02.py deleted file mode 120000 index 80b9a1c8a57..00000000000 --- a/_downloads/7f1681fa4853a96c07d8a5e22457dfd6/annotate_simple_coord02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7f1681fa4853a96c07d8a5e22457dfd6/annotate_simple_coord02.py \ No newline at end of file diff --git a/_downloads/7f172e82aed7624dbc2704a47f11ea26/colorbar_only.py b/_downloads/7f172e82aed7624dbc2704a47f11ea26/colorbar_only.py deleted file mode 120000 index 6e14010e1c1..00000000000 --- a/_downloads/7f172e82aed7624dbc2704a47f11ea26/colorbar_only.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7f172e82aed7624dbc2704a47f11ea26/colorbar_only.py \ No newline at end of file diff --git a/_downloads/7f1bc35dda70ec78cb6bf8759d4dba3a/colorbar_placement.ipynb b/_downloads/7f1bc35dda70ec78cb6bf8759d4dba3a/colorbar_placement.ipynb deleted file mode 100644 index 0e179279f09..00000000000 --- a/_downloads/7f1bc35dda70ec78cb6bf8759d4dba3a/colorbar_placement.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Placing Colorbars\n\n\nColorbars indicate the quantitative extent of image data. Placing in\na figure is non-trivial because room needs to be made for them.\n\nThe simplest case is just attaching a colorbar to each axes:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axs = plt.subplots(2, 2)\ncm = ['RdBu_r', 'viridis']\nfor col in range(2):\n for row in range(2):\n ax = axs[row, col]\n pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1),\n cmap=cm[col])\n fig.colorbar(pcm, ax=ax)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The first column has the same type of data in both rows, so it may\nbe desirable to combine the colorbar which we do by calling\n`.Figure.colorbar` with a list of axes instead of a single axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2)\ncm = ['RdBu_r', 'viridis']\nfor col in range(2):\n for row in range(2):\n ax = axs[row, col]\n pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1),\n cmap=cm[col])\n fig.colorbar(pcm, ax=axs[:, col], shrink=0.6)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Relatively complicated colorbar layouts are possible using this\nparadigm. Note that this example works far better with\n``constrained_layout=True``\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 3, constrained_layout=True)\nfor ax in axs.flat:\n pcm = ax.pcolormesh(np.random.random((20, 20)))\n\nfig.colorbar(pcm, ax=axs[0, :2], shrink=0.6, location='bottom')\nfig.colorbar(pcm, ax=[axs[0, 2]], location='bottom')\nfig.colorbar(pcm, ax=axs[1:, :], location='right', shrink=0.6)\nfig.colorbar(pcm, ax=[axs[2, 1]], location='left')\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/7f25ed1e9f7bcb45cb74e45cc73f8ada/ganged_plots.py b/_downloads/7f25ed1e9f7bcb45cb74e45cc73f8ada/ganged_plots.py deleted file mode 120000 index 5425c97e62c..00000000000 --- a/_downloads/7f25ed1e9f7bcb45cb74e45cc73f8ada/ganged_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7f25ed1e9f7bcb45cb74e45cc73f8ada/ganged_plots.py \ No newline at end of file diff --git a/_downloads/7f345f874454e98c89c74cdec6dcb5cb/bbox_intersect.ipynb b/_downloads/7f345f874454e98c89c74cdec6dcb5cb/bbox_intersect.ipynb deleted file mode 120000 index af2027fe6fc..00000000000 --- a/_downloads/7f345f874454e98c89c74cdec6dcb5cb/bbox_intersect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7f345f874454e98c89c74cdec6dcb5cb/bbox_intersect.ipynb \ No newline at end of file diff --git a/_downloads/7f4377230f3a2ab18747ab20b450239f/basic_units.py b/_downloads/7f4377230f3a2ab18747ab20b450239f/basic_units.py deleted file mode 100644 index 50ca20675c5..00000000000 --- a/_downloads/7f4377230f3a2ab18747ab20b450239f/basic_units.py +++ /dev/null @@ -1,385 +0,0 @@ -""" -=========== -Basic Units -=========== - -""" - -import math - -import numpy as np - -import matplotlib.units as units -import matplotlib.ticker as ticker - - -class ProxyDelegate(object): - def __init__(self, fn_name, proxy_type): - self.proxy_type = proxy_type - self.fn_name = fn_name - - def __get__(self, obj, objtype=None): - return self.proxy_type(self.fn_name, obj) - - -class TaggedValueMeta(type): - def __init__(self, name, bases, dict): - for fn_name in self._proxies: - try: - dummy = getattr(self, fn_name) - except AttributeError: - setattr(self, fn_name, - ProxyDelegate(fn_name, self._proxies[fn_name])) - - -class PassThroughProxy(object): - def __init__(self, fn_name, obj): - self.fn_name = fn_name - self.target = obj.proxy_target - - def __call__(self, *args): - fn = getattr(self.target, self.fn_name) - ret = fn(*args) - return ret - - -class ConvertArgsProxy(PassThroughProxy): - def __init__(self, fn_name, obj): - PassThroughProxy.__init__(self, fn_name, obj) - self.unit = obj.unit - - def __call__(self, *args): - converted_args = [] - for a in args: - try: - converted_args.append(a.convert_to(self.unit)) - except AttributeError: - converted_args.append(TaggedValue(a, self.unit)) - converted_args = tuple([c.get_value() for c in converted_args]) - return PassThroughProxy.__call__(self, *converted_args) - - -class ConvertReturnProxy(PassThroughProxy): - def __init__(self, fn_name, obj): - PassThroughProxy.__init__(self, fn_name, obj) - self.unit = obj.unit - - def __call__(self, *args): - ret = PassThroughProxy.__call__(self, *args) - return (NotImplemented if ret is NotImplemented - else TaggedValue(ret, self.unit)) - - -class ConvertAllProxy(PassThroughProxy): - def __init__(self, fn_name, obj): - PassThroughProxy.__init__(self, fn_name, obj) - self.unit = obj.unit - - def __call__(self, *args): - converted_args = [] - arg_units = [self.unit] - for a in args: - if hasattr(a, 'get_unit') and not hasattr(a, 'convert_to'): - # if this arg has a unit type but no conversion ability, - # this operation is prohibited - return NotImplemented - - if hasattr(a, 'convert_to'): - try: - a = a.convert_to(self.unit) - except Exception: - pass - arg_units.append(a.get_unit()) - converted_args.append(a.get_value()) - else: - converted_args.append(a) - if hasattr(a, 'get_unit'): - arg_units.append(a.get_unit()) - else: - arg_units.append(None) - converted_args = tuple(converted_args) - ret = PassThroughProxy.__call__(self, *converted_args) - if ret is NotImplemented: - return NotImplemented - ret_unit = unit_resolver(self.fn_name, arg_units) - if ret_unit is NotImplemented: - return NotImplemented - return TaggedValue(ret, ret_unit) - - -class TaggedValue(metaclass=TaggedValueMeta): - - _proxies = {'__add__': ConvertAllProxy, - '__sub__': ConvertAllProxy, - '__mul__': ConvertAllProxy, - '__rmul__': ConvertAllProxy, - '__cmp__': ConvertAllProxy, - '__lt__': ConvertAllProxy, - '__gt__': ConvertAllProxy, - '__len__': PassThroughProxy} - - def __new__(cls, value, unit): - # generate a new subclass for value - value_class = type(value) - try: - subcls = type(f'TaggedValue_of_{value_class.__name__}', - (cls, value_class), {}) - if subcls not in units.registry: - units.registry[subcls] = basicConverter - return object.__new__(subcls) - except TypeError: - if cls not in units.registry: - units.registry[cls] = basicConverter - return object.__new__(cls) - - def __init__(self, value, unit): - self.value = value - self.unit = unit - self.proxy_target = self.value - - def __getattribute__(self, name): - if name.startswith('__'): - return object.__getattribute__(self, name) - variable = object.__getattribute__(self, 'value') - if hasattr(variable, name) and name not in self.__class__.__dict__: - return getattr(variable, name) - return object.__getattribute__(self, name) - - def __array__(self, dtype=object): - return np.asarray(self.value).astype(dtype) - - def __array_wrap__(self, array, context): - return TaggedValue(array, self.unit) - - def __repr__(self): - return 'TaggedValue({!r}, {!r})'.format(self.value, self.unit) - - def __str__(self): - return str(self.value) + ' in ' + str(self.unit) - - def __len__(self): - return len(self.value) - - def __iter__(self): - # Return a generator expression rather than use `yield`, so that - # TypeError is raised by iter(self) if appropriate when checking for - # iterability. - return (TaggedValue(inner, self.unit) for inner in self.value) - - def get_compressed_copy(self, mask): - new_value = np.ma.masked_array(self.value, mask=mask).compressed() - return TaggedValue(new_value, self.unit) - - def convert_to(self, unit): - if unit == self.unit or not unit: - return self - try: - new_value = self.unit.convert_value_to(self.value, unit) - except AttributeError: - new_value = self - return TaggedValue(new_value, unit) - - def get_value(self): - return self.value - - def get_unit(self): - return self.unit - - -class BasicUnit(object): - def __init__(self, name, fullname=None): - self.name = name - if fullname is None: - fullname = name - self.fullname = fullname - self.conversions = dict() - - def __repr__(self): - return f'BasicUnit({self.name})' - - def __str__(self): - return self.fullname - - def __call__(self, value): - return TaggedValue(value, self) - - def __mul__(self, rhs): - value = rhs - unit = self - if hasattr(rhs, 'get_unit'): - value = rhs.get_value() - unit = rhs.get_unit() - unit = unit_resolver('__mul__', (self, unit)) - if unit is NotImplemented: - return NotImplemented - return TaggedValue(value, unit) - - def __rmul__(self, lhs): - return self*lhs - - def __array_wrap__(self, array, context): - return TaggedValue(array, self) - - def __array__(self, t=None, context=None): - ret = np.array([1]) - if t is not None: - return ret.astype(t) - else: - return ret - - def add_conversion_factor(self, unit, factor): - def convert(x): - return x*factor - self.conversions[unit] = convert - - def add_conversion_fn(self, unit, fn): - self.conversions[unit] = fn - - def get_conversion_fn(self, unit): - return self.conversions[unit] - - def convert_value_to(self, value, unit): - conversion_fn = self.conversions[unit] - ret = conversion_fn(value) - return ret - - def get_unit(self): - return self - - -class UnitResolver(object): - def addition_rule(self, units): - for unit_1, unit_2 in zip(units[:-1], units[1:]): - if unit_1 != unit_2: - return NotImplemented - return units[0] - - def multiplication_rule(self, units): - non_null = [u for u in units if u] - if len(non_null) > 1: - return NotImplemented - return non_null[0] - - op_dict = { - '__mul__': multiplication_rule, - '__rmul__': multiplication_rule, - '__add__': addition_rule, - '__radd__': addition_rule, - '__sub__': addition_rule, - '__rsub__': addition_rule} - - def __call__(self, operation, units): - if operation not in self.op_dict: - return NotImplemented - - return self.op_dict[operation](self, units) - - -unit_resolver = UnitResolver() - -cm = BasicUnit('cm', 'centimeters') -inch = BasicUnit('inch', 'inches') -inch.add_conversion_factor(cm, 2.54) -cm.add_conversion_factor(inch, 1/2.54) - -radians = BasicUnit('rad', 'radians') -degrees = BasicUnit('deg', 'degrees') -radians.add_conversion_factor(degrees, 180.0/np.pi) -degrees.add_conversion_factor(radians, np.pi/180.0) - -secs = BasicUnit('s', 'seconds') -hertz = BasicUnit('Hz', 'Hertz') -minutes = BasicUnit('min', 'minutes') - -secs.add_conversion_fn(hertz, lambda x: 1./x) -secs.add_conversion_factor(minutes, 1/60.0) - - -# radians formatting -def rad_fn(x, pos=None): - if x >= 0: - n = int((x / np.pi) * 2.0 + 0.25) - else: - n = int((x / np.pi) * 2.0 - 0.25) - - if n == 0: - return '0' - elif n == 1: - return r'$\pi/2$' - elif n == 2: - return r'$\pi$' - elif n == -1: - return r'$-\pi/2$' - elif n == -2: - return r'$-\pi$' - elif n % 2 == 0: - return fr'${n//2}\pi$' - else: - return fr'${n}\pi/2$' - - -class BasicUnitConverter(units.ConversionInterface): - @staticmethod - def axisinfo(unit, axis): - 'return AxisInfo instance for x and unit' - - if unit == radians: - return units.AxisInfo( - majloc=ticker.MultipleLocator(base=np.pi/2), - majfmt=ticker.FuncFormatter(rad_fn), - label=unit.fullname, - ) - elif unit == degrees: - return units.AxisInfo( - majloc=ticker.AutoLocator(), - majfmt=ticker.FormatStrFormatter(r'$%i^\circ$'), - label=unit.fullname, - ) - elif unit is not None: - if hasattr(unit, 'fullname'): - return units.AxisInfo(label=unit.fullname) - elif hasattr(unit, 'unit'): - return units.AxisInfo(label=unit.unit.fullname) - return None - - @staticmethod - def convert(val, unit, axis): - if units.ConversionInterface.is_numlike(val): - return val - if np.iterable(val): - if isinstance(val, np.ma.MaskedArray): - val = val.astype(float).filled(np.nan) - out = np.empty(len(val)) - for i, thisval in enumerate(val): - if np.ma.is_masked(thisval): - out[i] = np.nan - else: - try: - out[i] = thisval.convert_to(unit).get_value() - except AttributeError: - out[i] = thisval - return out - if np.ma.is_masked(val): - return np.nan - else: - return val.convert_to(unit).get_value() - - @staticmethod - def default_units(x, axis): - 'return the default unit for x or None' - if np.iterable(x): - for thisx in x: - return thisx.unit - return x.unit - - -def cos(x): - if np.iterable(x): - return [math.cos(val.convert_to(radians).get_value()) for val in x] - else: - return math.cos(x.convert_to(radians).get_value()) - - -basicConverter = BasicUnitConverter() -units.registry[BasicUnit] = basicConverter -units.registry[TaggedValue] = basicConverter diff --git a/_downloads/7f45a89c179804a250a0cf080d51812e/pyplot_three.ipynb b/_downloads/7f45a89c179804a250a0cf080d51812e/pyplot_three.ipynb deleted file mode 120000 index 595a5644ee9..00000000000 --- a/_downloads/7f45a89c179804a250a0cf080d51812e/pyplot_three.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7f45a89c179804a250a0cf080d51812e/pyplot_three.ipynb \ No newline at end of file diff --git a/_downloads/7f5cadcc666fb9df7e4938013dd09c45/horizontal_barchart_distribution.py b/_downloads/7f5cadcc666fb9df7e4938013dd09c45/horizontal_barchart_distribution.py deleted file mode 100644 index c851997ad29..00000000000 --- a/_downloads/7f5cadcc666fb9df7e4938013dd09c45/horizontal_barchart_distribution.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -============================================= -Discrete distribution as horizontal bar chart -============================================= - -Stacked bar charts can be used to visualize discrete distributions. - -This example visualizes the result of a survey in which people could rate -their agreement to questions on a five-element scale. - -The horizontal stacking is achieved by calling `~.Axes.barh()` for each -category and passing the starting point as the cumulative sum of the -already drawn bars via the parameter ``left``. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -category_names = ['Strongly disagree', 'Disagree', - 'Neither agree nor disagree', 'Agree', 'Strongly agree'] -results = { - 'Question 1': [10, 15, 17, 32, 26], - 'Question 2': [26, 22, 29, 10, 13], - 'Question 3': [35, 37, 7, 2, 19], - 'Question 4': [32, 11, 9, 15, 33], - 'Question 5': [21, 29, 5, 5, 40], - 'Question 6': [8, 19, 5, 30, 38] -} - - -def survey(results, category_names): - """ - Parameters - ---------- - results : dict - A mapping from question labels to a list of answers per category. - It is assumed all lists contain the same number of entries and that - it matches the length of *category_names*. - category_names : list of str - The category labels. - """ - labels = list(results.keys()) - data = np.array(list(results.values())) - data_cum = data.cumsum(axis=1) - category_colors = plt.get_cmap('RdYlGn')( - np.linspace(0.15, 0.85, data.shape[1])) - - fig, ax = plt.subplots(figsize=(9.2, 5)) - ax.invert_yaxis() - ax.xaxis.set_visible(False) - ax.set_xlim(0, np.sum(data, axis=1).max()) - - for i, (colname, color) in enumerate(zip(category_names, category_colors)): - widths = data[:, i] - starts = data_cum[:, i] - widths - ax.barh(labels, widths, left=starts, height=0.5, - label=colname, color=color) - xcenters = starts + widths / 2 - - r, g, b, _ = color - text_color = 'white' if r * g * b < 0.5 else 'darkgrey' - for y, (x, c) in enumerate(zip(xcenters, widths)): - ax.text(x, y, str(int(c)), ha='center', va='center', - color=text_color) - ax.legend(ncol=len(category_names), bbox_to_anchor=(0, 1), - loc='lower left', fontsize='small') - - return fig, ax - - -survey(results, category_names) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.barh -matplotlib.pyplot.barh -matplotlib.axes.Axes.text -matplotlib.pyplot.text -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend diff --git a/_downloads/7f6edb79b57993e5e6475bfaaa1cec40/annotate_text_arrow.py b/_downloads/7f6edb79b57993e5e6475bfaaa1cec40/annotate_text_arrow.py deleted file mode 100644 index 193fe52efbb..00000000000 --- a/_downloads/7f6edb79b57993e5e6475bfaaa1cec40/annotate_text_arrow.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=================== -Annotate Text Arrow -=================== - -""" - -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(5, 5)) -ax.set_aspect(1) - -x1 = -1 + np.random.randn(100) -y1 = -1 + np.random.randn(100) -x2 = 1. + np.random.randn(100) -y2 = 1. + np.random.randn(100) - -ax.scatter(x1, y1, color="r") -ax.scatter(x2, y2, color="g") - -bbox_props = dict(boxstyle="round", fc="w", ec="0.5", alpha=0.9) -ax.text(-2, -2, "Sample A", ha="center", va="center", size=20, - bbox=bbox_props) -ax.text(2, 2, "Sample B", ha="center", va="center", size=20, - bbox=bbox_props) - - -bbox_props = dict(boxstyle="rarrow", fc=(0.8, 0.9, 0.9), ec="b", lw=2) -t = ax.text(0, 0, "Direction", ha="center", va="center", rotation=45, - size=15, - bbox=bbox_props) - -bb = t.get_bbox_patch() -bb.set_boxstyle("rarrow", pad=0.6) - -ax.set_xlim(-4, 4) -ax.set_ylim(-4, 4) - -plt.show() diff --git a/_downloads/7f6f4f4fedb8927485df423abb5b9761/boxplot_demo_pyplot.py b/_downloads/7f6f4f4fedb8927485df423abb5b9761/boxplot_demo_pyplot.py deleted file mode 120000 index 019f7aa0180..00000000000 --- a/_downloads/7f6f4f4fedb8927485df423abb5b9761/boxplot_demo_pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7f6f4f4fedb8927485df423abb5b9761/boxplot_demo_pyplot.py \ No newline at end of file diff --git a/_downloads/7f98b601416193bdd6802850a2554fa1/bxp.ipynb b/_downloads/7f98b601416193bdd6802850a2554fa1/bxp.ipynb deleted file mode 120000 index 7e05b6eae9f..00000000000 --- a/_downloads/7f98b601416193bdd6802850a2554fa1/bxp.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7f98b601416193bdd6802850a2554fa1/bxp.ipynb \ No newline at end of file diff --git a/_downloads/7fa04ed2ee245ad31834918151ab724a/autowrap.ipynb b/_downloads/7fa04ed2ee245ad31834918151ab724a/autowrap.ipynb deleted file mode 120000 index 3cced2c1adc..00000000000 --- a/_downloads/7fa04ed2ee245ad31834918151ab724a/autowrap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7fa04ed2ee245ad31834918151ab724a/autowrap.ipynb \ No newline at end of file diff --git a/_downloads/7fa7cfa9bc98d97be23c4ff8d6119fd2/colorbar_basics.py b/_downloads/7fa7cfa9bc98d97be23c4ff8d6119fd2/colorbar_basics.py deleted file mode 120000 index 3a4ec13e31d..00000000000 --- a/_downloads/7fa7cfa9bc98d97be23c4ff8d6119fd2/colorbar_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/7fa7cfa9bc98d97be23c4ff8d6119fd2/colorbar_basics.py \ No newline at end of file diff --git a/_downloads/7faf04ead2d64721943590b790eff717/layer_images.py b/_downloads/7faf04ead2d64721943590b790eff717/layer_images.py deleted file mode 120000 index 91ac26cf3c7..00000000000 --- a/_downloads/7faf04ead2d64721943590b790eff717/layer_images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7faf04ead2d64721943590b790eff717/layer_images.py \ No newline at end of file diff --git a/_downloads/7fb228b7e16a4d768fad805a1db10f0c/annotate_with_units.py b/_downloads/7fb228b7e16a4d768fad805a1db10f0c/annotate_with_units.py deleted file mode 120000 index e98aac66c51..00000000000 --- a/_downloads/7fb228b7e16a4d768fad805a1db10f0c/annotate_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/7fb228b7e16a4d768fad805a1db10f0c/annotate_with_units.py \ No newline at end of file diff --git a/_downloads/7fb40c4ab9ce5931bad6c1e72f55f222/tick_labels_from_values.py b/_downloads/7fb40c4ab9ce5931bad6c1e72f55f222/tick_labels_from_values.py deleted file mode 120000 index 57d39d26116..00000000000 --- a/_downloads/7fb40c4ab9ce5931bad6c1e72f55f222/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/7fb40c4ab9ce5931bad6c1e72f55f222/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/7fb6117e68746335d45cc10d8eff4578/embedding_webagg_sgskip.py b/_downloads/7fb6117e68746335d45cc10d8eff4578/embedding_webagg_sgskip.py deleted file mode 120000 index dda6a6270cd..00000000000 --- a/_downloads/7fb6117e68746335d45cc10d8eff4578/embedding_webagg_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7fb6117e68746335d45cc10d8eff4578/embedding_webagg_sgskip.py \ No newline at end of file diff --git a/_downloads/7fbe9039d13629f10dcf40d2c3d4986e/menu.ipynb b/_downloads/7fbe9039d13629f10dcf40d2c3d4986e/menu.ipynb deleted file mode 120000 index 3d031ab3b3c..00000000000 --- a/_downloads/7fbe9039d13629f10dcf40d2c3d4986e/menu.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7fbe9039d13629f10dcf40d2c3d4986e/menu.ipynb \ No newline at end of file diff --git a/_downloads/7fceed023d9ab7f540f3ab5aa5f87514/fonts_demo.ipynb b/_downloads/7fceed023d9ab7f540f3ab5aa5f87514/fonts_demo.ipynb deleted file mode 120000 index 124de2d590c..00000000000 --- a/_downloads/7fceed023d9ab7f540f3ab5aa5f87514/fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7fceed023d9ab7f540f3ab5aa5f87514/fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/7fdf146c3c6d623af5be110ee345d346/psd_demo.py b/_downloads/7fdf146c3c6d623af5be110ee345d346/psd_demo.py deleted file mode 120000 index 3f9a99bb4c8..00000000000 --- a/_downloads/7fdf146c3c6d623af5be110ee345d346/psd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/7fdf146c3c6d623af5be110ee345d346/psd_demo.py \ No newline at end of file diff --git a/_downloads/7fe091821719d75c91e0cc1cf37be219/annotate_simple02.py b/_downloads/7fe091821719d75c91e0cc1cf37be219/annotate_simple02.py deleted file mode 120000 index 3e5ea201d91..00000000000 --- a/_downloads/7fe091821719d75c91e0cc1cf37be219/annotate_simple02.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/7fe091821719d75c91e0cc1cf37be219/annotate_simple02.py \ No newline at end of file diff --git a/_downloads/7ffd242ab54a73df71df593eda68054f/leftventricle_bulleye.ipynb b/_downloads/7ffd242ab54a73df71df593eda68054f/leftventricle_bulleye.ipynb deleted file mode 100644 index 83840875f4d..00000000000 --- a/_downloads/7ffd242ab54a73df71df593eda68054f/leftventricle_bulleye.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Left ventricle bullseye\n\n\nThis example demonstrates how to create the 17 segment model for the left\nventricle recommended by the American Heart Association (AHA).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\n\n\ndef bullseye_plot(ax, data, seg_bold=None, cmap=None, norm=None):\n \"\"\"\n Bullseye representation for the left ventricle.\n\n Parameters\n ----------\n ax : axes\n data : list of int and float\n The intensity values for each of the 17 segments\n seg_bold : list of int, optional\n A list with the segments to highlight\n cmap : ColorMap or None, optional\n Optional argument to set the desired colormap\n norm : Normalize or None, optional\n Optional argument to normalize data into the [0.0, 1.0] range\n\n\n Notes\n -----\n This function create the 17 segment model for the left ventricle according\n to the American Heart Association (AHA) [1]_\n\n References\n ----------\n .. [1] M. D. Cerqueira, N. J. Weissman, V. Dilsizian, A. K. Jacobs,\n S. Kaul, W. K. Laskey, D. J. Pennell, J. A. Rumberger, T. Ryan,\n and M. S. Verani, \"Standardized myocardial segmentation and\n nomenclature for tomographic imaging of the heart\",\n Circulation, vol. 105, no. 4, pp. 539-542, 2002.\n \"\"\"\n if seg_bold is None:\n seg_bold = []\n\n linewidth = 2\n data = np.array(data).ravel()\n\n if cmap is None:\n cmap = plt.cm.viridis\n\n if norm is None:\n norm = mpl.colors.Normalize(vmin=data.min(), vmax=data.max())\n\n theta = np.linspace(0, 2 * np.pi, 768)\n r = np.linspace(0.2, 1, 4)\n\n # Create the bound for the segment 17\n for i in range(r.shape[0]):\n ax.plot(theta, np.repeat(r[i], theta.shape), '-k', lw=linewidth)\n\n # Create the bounds for the segments 1-12\n for i in range(6):\n theta_i = np.deg2rad(i * 60)\n ax.plot([theta_i, theta_i], [r[1], 1], '-k', lw=linewidth)\n\n # Create the bounds for the segments 13-16\n for i in range(4):\n theta_i = np.deg2rad(i * 90 - 45)\n ax.plot([theta_i, theta_i], [r[0], r[1]], '-k', lw=linewidth)\n\n # Fill the segments 1-6\n r0 = r[2:4]\n r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T\n for i in range(6):\n # First segment start at 60 degrees\n theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60)\n theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1)\n z = np.ones((128, 2)) * data[i]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if i + 1 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n ax.plot(theta0[0], [r[2], r[3]], '-k', lw=linewidth + 1)\n ax.plot(theta0[-1], [r[2], r[3]], '-k', lw=linewidth + 1)\n\n # Fill the segments 7-12\n r0 = r[1:3]\n r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T\n for i in range(6):\n # First segment start at 60 degrees\n theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60)\n theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1)\n z = np.ones((128, 2)) * data[i + 6]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if i + 7 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n ax.plot(theta0[0], [r[1], r[2]], '-k', lw=linewidth + 1)\n ax.plot(theta0[-1], [r[1], r[2]], '-k', lw=linewidth + 1)\n\n # Fill the segments 13-16\n r0 = r[0:2]\n r0 = np.repeat(r0[:, np.newaxis], 192, axis=1).T\n for i in range(4):\n # First segment start at 45 degrees\n theta0 = theta[i * 192:i * 192 + 192] + np.deg2rad(45)\n theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1)\n z = np.ones((192, 2)) * data[i + 12]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if i + 13 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n ax.plot(theta0[0], [r[0], r[1]], '-k', lw=linewidth + 1)\n ax.plot(theta0[-1], [r[0], r[1]], '-k', lw=linewidth + 1)\n\n # Fill the segments 17\n if data.size == 17:\n r0 = np.array([0, r[0]])\n r0 = np.repeat(r0[:, np.newaxis], theta.size, axis=1).T\n theta0 = np.repeat(theta[:, np.newaxis], 2, axis=1)\n z = np.ones((theta.size, 2)) * data[16]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if 17 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n\n ax.set_ylim([0, 1])\n ax.set_yticklabels([])\n ax.set_xticklabels([])\n\n\n# Create the fake data\ndata = np.array(range(17)) + 1\n\n\n# Make a figure and axes with dimensions as desired.\nfig, ax = plt.subplots(figsize=(12, 8), nrows=1, ncols=3,\n subplot_kw=dict(projection='polar'))\nfig.canvas.set_window_title('Left Ventricle Bulls Eyes (AHA)')\n\n# Create the axis for the colorbars\naxl = fig.add_axes([0.14, 0.15, 0.2, 0.05])\naxl2 = fig.add_axes([0.41, 0.15, 0.2, 0.05])\naxl3 = fig.add_axes([0.69, 0.15, 0.2, 0.05])\n\n\n# Set the colormap and norm to correspond to the data for which\n# the colorbar will be used.\ncmap = mpl.cm.viridis\nnorm = mpl.colors.Normalize(vmin=1, vmax=17)\n\n# ColorbarBase derives from ScalarMappable and puts a colorbar\n# in a specified axes, so it has everything needed for a\n# standalone colorbar. There are many more kwargs, but the\n# following gives a basic continuous colorbar with ticks\n# and labels.\ncb1 = mpl.colorbar.ColorbarBase(axl, cmap=cmap, norm=norm,\n orientation='horizontal')\ncb1.set_label('Some Units')\n\n\n# Set the colormap and norm to correspond to the data for which\n# the colorbar will be used.\ncmap2 = mpl.cm.cool\nnorm2 = mpl.colors.Normalize(vmin=1, vmax=17)\n\n# ColorbarBase derives from ScalarMappable and puts a colorbar\n# in a specified axes, so it has everything needed for a\n# standalone colorbar. There are many more kwargs, but the\n# following gives a basic continuous colorbar with ticks\n# and labels.\ncb2 = mpl.colorbar.ColorbarBase(axl2, cmap=cmap2, norm=norm2,\n orientation='horizontal')\ncb2.set_label('Some other units')\n\n\n# The second example illustrates the use of a ListedColormap, a\n# BoundaryNorm, and extended ends to show the \"over\" and \"under\"\n# value colors.\ncmap3 = mpl.colors.ListedColormap(['r', 'g', 'b', 'c'])\ncmap3.set_over('0.35')\ncmap3.set_under('0.75')\n\n# If a ListedColormap is used, the length of the bounds array must be\n# one greater than the length of the color list. The bounds must be\n# monotonically increasing.\nbounds = [2, 3, 7, 9, 15]\nnorm3 = mpl.colors.BoundaryNorm(bounds, cmap3.N)\ncb3 = mpl.colorbar.ColorbarBase(axl3, cmap=cmap3, norm=norm3,\n # to use 'extend', you must\n # specify two extra boundaries:\n boundaries=[0] + bounds + [18],\n extend='both',\n ticks=bounds, # optional\n spacing='proportional',\n orientation='horizontal')\ncb3.set_label('Discrete intervals, some other units')\n\n\n# Create the 17 segment model\nbullseye_plot(ax[0], data, cmap=cmap, norm=norm)\nax[0].set_title('Bulls Eye (AHA)')\n\nbullseye_plot(ax[1], data, cmap=cmap2, norm=norm2)\nax[1].set_title('Bulls Eye (AHA)')\n\nbullseye_plot(ax[2], data, seg_bold=[3, 5, 6, 11, 12, 16],\n cmap=cmap3, norm=norm3)\nax[2].set_title('Segments [3,5,6,11,12,16] in bold')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8001758ca7a6a0a62185dff602f25056/hatch_style_reference.py b/_downloads/8001758ca7a6a0a62185dff602f25056/hatch_style_reference.py deleted file mode 120000 index 6003814f30e..00000000000 --- a/_downloads/8001758ca7a6a0a62185dff602f25056/hatch_style_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8001758ca7a6a0a62185dff602f25056/hatch_style_reference.py \ No newline at end of file diff --git a/_downloads/8003b3feb3d29757c744d61bfef53a46/boxplot.ipynb b/_downloads/8003b3feb3d29757c744d61bfef53a46/boxplot.ipynb deleted file mode 120000 index 7f190037edc..00000000000 --- a/_downloads/8003b3feb3d29757c744d61bfef53a46/boxplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8003b3feb3d29757c744d61bfef53a46/boxplot.ipynb \ No newline at end of file diff --git a/_downloads/8020786079a1433e3fb907ae1eab8dc9/categorical_variables.py b/_downloads/8020786079a1433e3fb907ae1eab8dc9/categorical_variables.py deleted file mode 100644 index fce733581f3..00000000000 --- a/_downloads/8020786079a1433e3fb907ae1eab8dc9/categorical_variables.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -============================== -Plotting categorical variables -============================== - -How to use categorical variables in Matplotlib. - -Many times you want to create a plot that uses categorical variables -in Matplotlib. Matplotlib allows you to pass categorical variables directly to -many plotting functions, which we demonstrate below. -""" -import matplotlib.pyplot as plt - -data = {'apples': 10, 'oranges': 15, 'lemons': 5, 'limes': 20} -names = list(data.keys()) -values = list(data.values()) - -fig, axs = plt.subplots(1, 3, figsize=(9, 3), sharey=True) -axs[0].bar(names, values) -axs[1].scatter(names, values) -axs[2].plot(names, values) -fig.suptitle('Categorical Plotting') - - -############################################################################### -# This works on both axes: - -cat = ["bored", "happy", "bored", "bored", "happy", "bored"] -dog = ["happy", "happy", "happy", "happy", "bored", "bored"] -activity = ["combing", "drinking", "feeding", "napping", "playing", "washing"] - -fig, ax = plt.subplots() -ax.plot(activity, dog, label="dog") -ax.plot(activity, cat, label="cat") -ax.legend() - -plt.show() diff --git a/_downloads/8021b8b59e7c6973a20b19665ed0a814/3D.ipynb b/_downloads/8021b8b59e7c6973a20b19665ed0a814/3D.ipynb deleted file mode 120000 index 76a6a12ad72..00000000000 --- a/_downloads/8021b8b59e7c6973a20b19665ed0a814/3D.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8021b8b59e7c6973a20b19665ed0a814/3D.ipynb \ No newline at end of file diff --git a/_downloads/802340430a7fc797db8ab6a7c89f2619/sankey_basics.py b/_downloads/802340430a7fc797db8ab6a7c89f2619/sankey_basics.py deleted file mode 120000 index 498bd21313e..00000000000 --- a/_downloads/802340430a7fc797db8ab6a7c89f2619/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/802340430a7fc797db8ab6a7c89f2619/sankey_basics.py \ No newline at end of file diff --git a/_downloads/8026226423886940862955507a5a36ba/text_alignment.py b/_downloads/8026226423886940862955507a5a36ba/text_alignment.py deleted file mode 120000 index 3f0609f6fec..00000000000 --- a/_downloads/8026226423886940862955507a5a36ba/text_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8026226423886940862955507a5a36ba/text_alignment.py \ No newline at end of file diff --git a/_downloads/8035d0434a0ed53445620aac2ff0b4ea/fancyarrow_demo.ipynb b/_downloads/8035d0434a0ed53445620aac2ff0b4ea/fancyarrow_demo.ipynb deleted file mode 100644 index fcb484d3b31..00000000000 --- a/_downloads/8035d0434a0ed53445620aac2ff0b4ea/fancyarrow_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fancyarrow Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nstyles = mpatches.ArrowStyle.get_styles()\n\nncol = 2\nnrow = (len(styles) + 1) // ncol\nfigheight = (nrow + 0.5)\nfig = plt.figure(figsize=(4 * ncol / 1.5, figheight / 1.5))\nfontsize = 0.2 * 70\n\n\nax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1.)\n\nax.set_xlim(0, 4 * ncol)\nax.set_ylim(0, figheight)\n\n\ndef to_texstring(s):\n s = s.replace(\"<\", r\"$<$\")\n s = s.replace(\">\", r\"$>$\")\n s = s.replace(\"|\", r\"$|$\")\n return s\n\n\nfor i, (stylename, styleclass) in enumerate(sorted(styles.items())):\n x = 3.2 + (i // nrow) * 4\n y = (figheight - 0.7 - i % nrow) # /figheight\n p = mpatches.Circle((x, y), 0.2)\n ax.add_patch(p)\n\n ax.annotate(to_texstring(stylename), (x, y),\n (x - 1.2, y),\n ha=\"right\", va=\"center\",\n size=fontsize,\n arrowprops=dict(arrowstyle=stylename,\n patchB=p,\n shrinkA=5,\n shrinkB=5,\n fc=\"k\", ec=\"k\",\n connectionstyle=\"arc3,rad=-0.05\",\n ),\n bbox=dict(boxstyle=\"square\", fc=\"w\"))\n\nax.xaxis.set_visible(False)\nax.yaxis.set_visible(False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/80387124f8c923fca7fae80e863ff0d2/units_scatter.py b/_downloads/80387124f8c923fca7fae80e863ff0d2/units_scatter.py deleted file mode 120000 index ae6397c6679..00000000000 --- a/_downloads/80387124f8c923fca7fae80e863ff0d2/units_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/80387124f8c923fca7fae80e863ff0d2/units_scatter.py \ No newline at end of file diff --git a/_downloads/803b89b1a72e009c6a6c64306ef09ffe/stem_plot.ipynb b/_downloads/803b89b1a72e009c6a6c64306ef09ffe/stem_plot.ipynb deleted file mode 100644 index 1b6881512ee..00000000000 --- a/_downloads/803b89b1a72e009c6a6c64306ef09ffe/stem_plot.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Stem Plot\n\n\n`~.pyplot.stem` plots vertical lines from a baseline to the y-coordinate and\nplaces a marker at the tip.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.linspace(0.1, 2 * np.pi, 41)\ny = np.exp(np.sin(x))\n\nplt.stem(x, y, use_line_collection=True)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The position of the baseline can be adapted using *bottom*.\nThe parameters *linefmt*, *markerfmt*, and *basefmt* control basic format\nproperties of the plot. However, in contrast to `~.pyplot.plot` not all\nproperties are configurable via keyword arguments. For more advanced\ncontrol adapt the line objects returned by `~.pyplot`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "markerline, stemlines, baseline = plt.stem(\n x, y, linefmt='grey', markerfmt='D', bottom=1.1, use_line_collection=True)\nmarkerline.set_markerfacecolor('none')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.stem\nmatplotlib.axes.Axes.stem" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8060cf10ba291f830e53c4319152779f/contour3d.py b/_downloads/8060cf10ba291f830e53c4319152779f/contour3d.py deleted file mode 100644 index d4bfdec9693..00000000000 --- a/_downloads/8060cf10ba291f830e53c4319152779f/contour3d.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -================================================== -Demonstrates plotting contour (level) curves in 3D -================================================== - -This is like a contour plot in 2D except that the f(x,y)=c curve is plotted -on the plane z=c. -""" - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot contour curves -cset = ax.contour(X, Y, Z, cmap=cm.coolwarm) - -ax.clabel(cset, fontsize=9, inline=1) - -plt.show() diff --git a/_downloads/80662ceeac75ed87bd178e48c02af692/firefox.py b/_downloads/80662ceeac75ed87bd178e48c02af692/firefox.py deleted file mode 100644 index 0f597812fa8..00000000000 --- a/_downloads/80662ceeac75ed87bd178e48c02af692/firefox.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -======= -Firefox -======= - -This example shows how to create the Firefox logo with path and patches. -""" - -import re -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.path import Path -import matplotlib.patches as patches - -# From: http://raphaeljs.com/icons/#firefox -firefox = "M28.4,22.469c0.479-0.964,0.851-1.991,1.095-3.066c0.953-3.661,0.666-6.854,0.666-6.854l-0.327,2.104c0,0-0.469-3.896-1.044-5.353c-0.881-2.231-1.273-2.214-1.274-2.21c0.542,1.379,0.494,2.169,0.483,2.288c-0.01-0.016-0.019-0.032-0.027-0.047c-0.131-0.324-0.797-1.819-2.225-2.878c-2.502-2.481-5.943-4.014-9.745-4.015c-4.056,0-7.705,1.745-10.238,4.525C5.444,6.5,5.183,5.938,5.159,5.317c0,0-0.002,0.002-0.006,0.005c0-0.011-0.003-0.021-0.003-0.031c0,0-1.61,1.247-1.436,4.612c-0.299,0.574-0.56,1.172-0.777,1.791c-0.375,0.817-0.75,2.004-1.059,3.746c0,0,0.133-0.422,0.399-0.988c-0.064,0.482-0.103,0.971-0.116,1.467c-0.09,0.845-0.118,1.865-0.039,3.088c0,0,0.032-0.406,0.136-1.021c0.834,6.854,6.667,12.165,13.743,12.165l0,0c1.86,0,3.636-0.37,5.256-1.036C24.938,27.771,27.116,25.196,28.4,22.469zM16.002,3.356c2.446,0,4.73,0.68,6.68,1.86c-2.274-0.528-3.433-0.261-3.423-0.248c0.013,0.015,3.384,0.589,3.981,1.411c0,0-1.431,0-2.856,0.41c-0.065,0.019,5.242,0.663,6.327,5.966c0,0-0.582-1.213-1.301-1.42c0.473,1.439,0.351,4.17-0.1,5.528c-0.058,0.174-0.118-0.755-1.004-1.155c0.284,2.037-0.018,5.268-1.432,6.158c-0.109,0.07,0.887-3.189,0.201-1.93c-4.093,6.276-8.959,2.539-10.934,1.208c1.585,0.388,3.267,0.108,4.242-0.559c0.982-0.672,1.564-1.162,2.087-1.047c0.522,0.117,0.87-0.407,0.464-0.872c-0.405-0.466-1.392-1.105-2.725-0.757c-0.94,0.247-2.107,1.287-3.886,0.233c-1.518-0.899-1.507-1.63-1.507-2.095c0-0.366,0.257-0.88,0.734-1.028c0.58,0.062,1.044,0.214,1.537,0.466c0.005-0.135,0.006-0.315-0.001-0.519c0.039-0.077,0.015-0.311-0.047-0.596c-0.036-0.287-0.097-0.582-0.19-0.851c0.01-0.002,0.017-0.007,0.021-0.021c0.076-0.344,2.147-1.544,2.299-1.659c0.153-0.114,0.55-0.378,0.506-1.183c-0.015-0.265-0.058-0.294-2.232-0.286c-0.917,0.003-1.425-0.894-1.589-1.245c0.222-1.231,0.863-2.11,1.919-2.704c0.02-0.011,0.015-0.021-0.008-0.027c0.219-0.127-2.524-0.006-3.76,1.604C9.674,8.045,9.219,7.95,8.71,7.95c-0.638,0-1.139,0.07-1.603,0.187c-0.05,0.013-0.122,0.011-0.208-0.001C6.769,8.04,6.575,7.88,6.365,7.672c0.161-0.18,0.324-0.356,0.495-0.526C9.201,4.804,12.43,3.357,16.002,3.356z" - - -def svg_parse(path): - commands = {'M': (Path.MOVETO,), - 'L': (Path.LINETO,), - 'Q': (Path.CURVE3,)*2, - 'C': (Path.CURVE4,)*3, - 'Z': (Path.CLOSEPOLY,)} - path_re = re.compile(r'([MLHVCSQTAZ])([^MLHVCSQTAZ]+)', re.IGNORECASE) - float_re = re.compile(r'(?:[\s,]*)([+-]?\d+(?:\.\d+)?)') - vertices = [] - codes = [] - last = (0, 0) - for cmd, values in path_re.findall(path): - points = [float(v) for v in float_re.findall(values)] - points = np.array(points).reshape((len(points)//2, 2)) - if cmd.islower(): - points += last - cmd = cmd.capitalize() - last = points[-1] - codes.extend(commands[cmd]) - vertices.extend(points.tolist()) - return codes, vertices - -# SVG to matplotlib -codes, verts = svg_parse(firefox) -verts = np.array(verts) -path = Path(verts, codes) - -# Make upside down -verts[:, 1] *= -1 -xmin, xmax = verts[:, 0].min()-1, verts[:, 0].max()+1 -ymin, ymax = verts[:, 1].min()-1, verts[:, 1].max()+1 - -fig = plt.figure(figsize=(5, 5)) -ax = fig.add_axes([0.0, 0.0, 1.0, 1.0], frameon=False, aspect=1) - -# White outline (width = 6) -patch = patches.PathPatch(path, facecolor='None', edgecolor='w', lw=6) -ax.add_patch(patch) - -# Actual shape with black outline -patch = patches.PathPatch(path, facecolor='orange', edgecolor='k', lw=2) -ax.add_patch(patch) - -# Centering -ax.set_xlim(xmin, xmax) -ax.set_ylim(ymin, ymax) - -# No ticks -ax.set_xticks([]) -ax.set_yticks([]) - -# Display -plt.show() diff --git a/_downloads/806650017414eb770acdf156077cd7ea/simple_anchored_artists.ipynb b/_downloads/806650017414eb770acdf156077cd7ea/simple_anchored_artists.ipynb deleted file mode 120000 index 6d20628a6d1..00000000000 --- a/_downloads/806650017414eb770acdf156077cd7ea/simple_anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/806650017414eb770acdf156077cd7ea/simple_anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/8070b7f242c9cee80725e7717f938002/ggplot.ipynb b/_downloads/8070b7f242c9cee80725e7717f938002/ggplot.ipynb deleted file mode 120000 index 918a7896167..00000000000 --- a/_downloads/8070b7f242c9cee80725e7717f938002/ggplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8070b7f242c9cee80725e7717f938002/ggplot.ipynb \ No newline at end of file diff --git a/_downloads/807520b1274d80a4406a130352e4040b/firefox.ipynb b/_downloads/807520b1274d80a4406a130352e4040b/firefox.ipynb deleted file mode 100644 index ba9c2f82cc4..00000000000 --- a/_downloads/807520b1274d80a4406a130352e4040b/firefox.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Firefox\n\n\nThis example shows how to create the Firefox logo with path and patches.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import re\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.path import Path\nimport matplotlib.patches as patches\n\n# From: http://raphaeljs.com/icons/#firefox\nfirefox = \"M28.4,22.469c0.479-0.964,0.851-1.991,1.095-3.066c0.953-3.661,0.666-6.854,0.666-6.854l-0.327,2.104c0,0-0.469-3.896-1.044-5.353c-0.881-2.231-1.273-2.214-1.274-2.21c0.542,1.379,0.494,2.169,0.483,2.288c-0.01-0.016-0.019-0.032-0.027-0.047c-0.131-0.324-0.797-1.819-2.225-2.878c-2.502-2.481-5.943-4.014-9.745-4.015c-4.056,0-7.705,1.745-10.238,4.525C5.444,6.5,5.183,5.938,5.159,5.317c0,0-0.002,0.002-0.006,0.005c0-0.011-0.003-0.021-0.003-0.031c0,0-1.61,1.247-1.436,4.612c-0.299,0.574-0.56,1.172-0.777,1.791c-0.375,0.817-0.75,2.004-1.059,3.746c0,0,0.133-0.422,0.399-0.988c-0.064,0.482-0.103,0.971-0.116,1.467c-0.09,0.845-0.118,1.865-0.039,3.088c0,0,0.032-0.406,0.136-1.021c0.834,6.854,6.667,12.165,13.743,12.165l0,0c1.86,0,3.636-0.37,5.256-1.036C24.938,27.771,27.116,25.196,28.4,22.469zM16.002,3.356c2.446,0,4.73,0.68,6.68,1.86c-2.274-0.528-3.433-0.261-3.423-0.248c0.013,0.015,3.384,0.589,3.981,1.411c0,0-1.431,0-2.856,0.41c-0.065,0.019,5.242,0.663,6.327,5.966c0,0-0.582-1.213-1.301-1.42c0.473,1.439,0.351,4.17-0.1,5.528c-0.058,0.174-0.118-0.755-1.004-1.155c0.284,2.037-0.018,5.268-1.432,6.158c-0.109,0.07,0.887-3.189,0.201-1.93c-4.093,6.276-8.959,2.539-10.934,1.208c1.585,0.388,3.267,0.108,4.242-0.559c0.982-0.672,1.564-1.162,2.087-1.047c0.522,0.117,0.87-0.407,0.464-0.872c-0.405-0.466-1.392-1.105-2.725-0.757c-0.94,0.247-2.107,1.287-3.886,0.233c-1.518-0.899-1.507-1.63-1.507-2.095c0-0.366,0.257-0.88,0.734-1.028c0.58,0.062,1.044,0.214,1.537,0.466c0.005-0.135,0.006-0.315-0.001-0.519c0.039-0.077,0.015-0.311-0.047-0.596c-0.036-0.287-0.097-0.582-0.19-0.851c0.01-0.002,0.017-0.007,0.021-0.021c0.076-0.344,2.147-1.544,2.299-1.659c0.153-0.114,0.55-0.378,0.506-1.183c-0.015-0.265-0.058-0.294-2.232-0.286c-0.917,0.003-1.425-0.894-1.589-1.245c0.222-1.231,0.863-2.11,1.919-2.704c0.02-0.011,0.015-0.021-0.008-0.027c0.219-0.127-2.524-0.006-3.76,1.604C9.674,8.045,9.219,7.95,8.71,7.95c-0.638,0-1.139,0.07-1.603,0.187c-0.05,0.013-0.122,0.011-0.208-0.001C6.769,8.04,6.575,7.88,6.365,7.672c0.161-0.18,0.324-0.356,0.495-0.526C9.201,4.804,12.43,3.357,16.002,3.356z\"\n\n\ndef svg_parse(path):\n commands = {'M': (Path.MOVETO,),\n 'L': (Path.LINETO,),\n 'Q': (Path.CURVE3,)*2,\n 'C': (Path.CURVE4,)*3,\n 'Z': (Path.CLOSEPOLY,)}\n path_re = re.compile(r'([MLHVCSQTAZ])([^MLHVCSQTAZ]+)', re.IGNORECASE)\n float_re = re.compile(r'(?:[\\s,]*)([+-]?\\d+(?:\\.\\d+)?)')\n vertices = []\n codes = []\n last = (0, 0)\n for cmd, values in path_re.findall(path):\n points = [float(v) for v in float_re.findall(values)]\n points = np.array(points).reshape((len(points)//2, 2))\n if cmd.islower():\n points += last\n cmd = cmd.capitalize()\n last = points[-1]\n codes.extend(commands[cmd])\n vertices.extend(points.tolist())\n return codes, vertices\n\n# SVG to matplotlib\ncodes, verts = svg_parse(firefox)\nverts = np.array(verts)\npath = Path(verts, codes)\n\n# Make upside down\nverts[:, 1] *= -1\nxmin, xmax = verts[:, 0].min()-1, verts[:, 0].max()+1\nymin, ymax = verts[:, 1].min()-1, verts[:, 1].max()+1\n\nfig = plt.figure(figsize=(5, 5))\nax = fig.add_axes([0.0, 0.0, 1.0, 1.0], frameon=False, aspect=1)\n\n# White outline (width = 6)\npatch = patches.PathPatch(path, facecolor='None', edgecolor='w', lw=6)\nax.add_patch(patch)\n\n# Actual shape with black outline\npatch = patches.PathPatch(path, facecolor='orange', edgecolor='k', lw=2)\nax.add_patch(patch)\n\n# Centering\nax.set_xlim(xmin, xmax)\nax.set_ylim(ymin, ymax)\n\n# No ticks\nax.set_xticks([])\nax.set_yticks([])\n\n# Display\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/807c0ed6ee02937c63c73908018034d3/pick_event_demo2.py b/_downloads/807c0ed6ee02937c63c73908018034d3/pick_event_demo2.py deleted file mode 100644 index 72cd4d6f471..00000000000 --- a/_downloads/807c0ed6ee02937c63c73908018034d3/pick_event_demo2.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -================ -Pick Event Demo2 -================ - -compute the mean and standard deviation (stddev) of 100 data sets and plot -mean vs stddev. When you click on one of the mu, sigma points, plot the raw -data from the dataset that generated the mean and stddev. -""" -import numpy as np -import matplotlib.pyplot as plt - - -X = np.random.rand(100, 1000) -xs = np.mean(X, axis=1) -ys = np.std(X, axis=1) - -fig, ax = plt.subplots() -ax.set_title('click on point to plot time series') -line, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance - - -def onpick(event): - - if event.artist != line: - return True - - N = len(event.ind) - if not N: - return True - - figi, axs = plt.subplots(N, squeeze=False) - for ax, dataind in zip(axs.flat, event.ind): - ax.plot(X[dataind]) - ax.text(.05, .9, 'mu=%1.3f\nsigma=%1.3f' % (xs[dataind], ys[dataind]), - transform=ax.transAxes, va='top') - ax.set_ylim(-0.5, 1.5) - figi.show() - return True - -fig.canvas.mpl_connect('pick_event', onpick) - -plt.show() diff --git a/_downloads/8087f345b15692667de342409e5917e7/pathpatch3d.py b/_downloads/8087f345b15692667de342409e5917e7/pathpatch3d.py deleted file mode 120000 index 92784c08313..00000000000 --- a/_downloads/8087f345b15692667de342409e5917e7/pathpatch3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8087f345b15692667de342409e5917e7/pathpatch3d.py \ No newline at end of file diff --git a/_downloads/8087f6618ceeb60da96046a9e3cd0449/scales.ipynb b/_downloads/8087f6618ceeb60da96046a9e3cd0449/scales.ipynb deleted file mode 120000 index bbc4fdc5477..00000000000 --- a/_downloads/8087f6618ceeb60da96046a9e3cd0449/scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8087f6618ceeb60da96046a9e3cd0449/scales.ipynb \ No newline at end of file diff --git a/_downloads/808b18d48324c197e75de7098fc904a2/text_rotation_relative_to_line.ipynb b/_downloads/808b18d48324c197e75de7098fc904a2/text_rotation_relative_to_line.ipynb deleted file mode 120000 index 1d62b94455f..00000000000 --- a/_downloads/808b18d48324c197e75de7098fc904a2/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/808b18d48324c197e75de7098fc904a2/text_rotation_relative_to_line.ipynb \ No newline at end of file diff --git a/_downloads/809f4030a9c5b4037ef017d4143e7501/date_index_formatter2.ipynb b/_downloads/809f4030a9c5b4037ef017d4143e7501/date_index_formatter2.ipynb deleted file mode 120000 index cfe77e85e1a..00000000000 --- a/_downloads/809f4030a9c5b4037ef017d4143e7501/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/809f4030a9c5b4037ef017d4143e7501/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/80a111eec5fe559db0ba808540d08b77/contour_corner_mask.py b/_downloads/80a111eec5fe559db0ba808540d08b77/contour_corner_mask.py deleted file mode 120000 index e36bc36076d..00000000000 --- a/_downloads/80a111eec5fe559db0ba808540d08b77/contour_corner_mask.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/80a111eec5fe559db0ba808540d08b77/contour_corner_mask.py \ No newline at end of file diff --git a/_downloads/80a87855cc5550504151fce685a78fba/simple_axisline.ipynb b/_downloads/80a87855cc5550504151fce685a78fba/simple_axisline.ipynb deleted file mode 120000 index cc2d123488a..00000000000 --- a/_downloads/80a87855cc5550504151fce685a78fba/simple_axisline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/80a87855cc5550504151fce685a78fba/simple_axisline.ipynb \ No newline at end of file diff --git a/_downloads/80b4460a2e36ab6bc4004f56ea780eb1/date_demo_rrule.ipynb b/_downloads/80b4460a2e36ab6bc4004f56ea780eb1/date_demo_rrule.ipynb deleted file mode 100644 index f3606771b93..00000000000 --- a/_downloads/80b4460a2e36ab6bc4004f56ea780eb1/date_demo_rrule.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date Demo Rrule\n\n\nShow how to use an rrule instance to make a custom date ticker - here\nwe put a tick mark on every 5th easter\n\nSee https://dateutil.readthedocs.io/en/stable/ for help with rrules\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.dates import (YEARLY, DateFormatter,\n rrulewrapper, RRuleLocator, drange)\nimport numpy as np\nimport datetime\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# tick every 5th easter\nrule = rrulewrapper(YEARLY, byeaster=1, interval=5)\nloc = RRuleLocator(rule)\nformatter = DateFormatter('%m/%d/%y')\ndate1 = datetime.date(1952, 1, 1)\ndate2 = datetime.date(2004, 4, 12)\ndelta = datetime.timedelta(days=100)\n\ndates = drange(date1, date2, delta)\ns = np.random.rand(len(dates)) # make up some random y values\n\n\nfig, ax = plt.subplots()\nplt.plot_date(dates, s)\nax.xaxis.set_major_locator(loc)\nax.xaxis.set_major_formatter(formatter)\nax.xaxis.set_tick_params(rotation=30, labelsize=10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/80bf77c3ecad2adcf894ecbc1bb2afbc/check_buttons.py b/_downloads/80bf77c3ecad2adcf894ecbc1bb2afbc/check_buttons.py deleted file mode 120000 index ec557d0fb28..00000000000 --- a/_downloads/80bf77c3ecad2adcf894ecbc1bb2afbc/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/80bf77c3ecad2adcf894ecbc1bb2afbc/check_buttons.py \ No newline at end of file diff --git a/_downloads/80c3a4bb74ddd1640377b3bed101269a/lorenz_attractor.ipynb b/_downloads/80c3a4bb74ddd1640377b3bed101269a/lorenz_attractor.ipynb deleted file mode 100644 index 940328183d7..00000000000 --- a/_downloads/80c3a4bb74ddd1640377b3bed101269a/lorenz_attractor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Lorenz Attractor\n\n\nThis is an example of plotting Edward Lorenz's 1963 `\"Deterministic Nonperiodic\nFlow\"`_ in a 3-dimensional space using mplot3d.\n\n http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2\n\n

Note

Because this is a simple non-linear ODE, it would be more easily done using\n SciPy's ODE solver, but this approach depends only upon NumPy.

\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef lorenz(x, y, z, s=10, r=28, b=2.667):\n '''\n Given:\n x, y, z: a point of interest in three dimensional space\n s, r, b: parameters defining the lorenz attractor\n Returns:\n x_dot, y_dot, z_dot: values of the lorenz attractor's partial\n derivatives at the point x, y, z\n '''\n x_dot = s*(y - x)\n y_dot = r*x - y - x*z\n z_dot = x*y - b*z\n return x_dot, y_dot, z_dot\n\n\ndt = 0.01\nnum_steps = 10000\n\n# Need one more for the initial values\nxs = np.empty(num_steps + 1)\nys = np.empty(num_steps + 1)\nzs = np.empty(num_steps + 1)\n\n# Set initial values\nxs[0], ys[0], zs[0] = (0., 1., 1.05)\n\n# Step through \"time\", calculating the partial derivatives at the current point\n# and using them to estimate the next point\nfor i in range(num_steps):\n x_dot, y_dot, z_dot = lorenz(xs[i], ys[i], zs[i])\n xs[i + 1] = xs[i] + (x_dot * dt)\n ys[i + 1] = ys[i] + (y_dot * dt)\n zs[i + 1] = zs[i] + (z_dot * dt)\n\n\n# Plot\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\nax.plot(xs, ys, zs, lw=0.5)\nax.set_xlabel(\"X Axis\")\nax.set_ylabel(\"Y Axis\")\nax.set_zlabel(\"Z Axis\")\nax.set_title(\"Lorenz Attractor\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/80ced13c94f02c3ced4b86585f031984/contour_corner_mask.py b/_downloads/80ced13c94f02c3ced4b86585f031984/contour_corner_mask.py deleted file mode 120000 index b6d6d53c085..00000000000 --- a/_downloads/80ced13c94f02c3ced4b86585f031984/contour_corner_mask.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/80ced13c94f02c3ced4b86585f031984/contour_corner_mask.py \ No newline at end of file diff --git a/_downloads/80e52e63e1725f90995d34b5690e647f/axis_direction_demo_step01.py b/_downloads/80e52e63e1725f90995d34b5690e647f/axis_direction_demo_step01.py deleted file mode 120000 index 38c6f1d3c56..00000000000 --- a/_downloads/80e52e63e1725f90995d34b5690e647f/axis_direction_demo_step01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/80e52e63e1725f90995d34b5690e647f/axis_direction_demo_step01.py \ No newline at end of file diff --git a/_downloads/80f674f8e784c345e6387f2abf70189c/colormap_normalizations_diverging.ipynb b/_downloads/80f674f8e784c345e6387f2abf70189c/colormap_normalizations_diverging.ipynb deleted file mode 100644 index 1aa28a1e39d..00000000000 --- a/_downloads/80f674f8e784c345e6387f2abf70189c/colormap_normalizations_diverging.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# DivergingNorm colormap normalization\n\n\nSometimes we want to have a different colormap on either side of a\nconceptual center point, and we want those two colormaps to have\ndifferent linear scales. An example is a topographic map where the land\nand ocean have a center at zero, but land typically has a greater\nelevation range than the water has depth range, and they are often\nrepresented by a different colormap.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport matplotlib.colors as colors\n\nfilename = cbook.get_sample_data('topobathy.npz', asfileobj=False)\nwith np.load(filename) as dem:\n topo = dem['topo']\n longitude = dem['longitude']\n latitude = dem['latitude']\n\nfig, ax = plt.subplots(constrained_layout=True)\n# make a colormap that has land and ocean clearly delineated and of the\n# same length (256 + 256)\ncolors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256))\ncolors_land = plt.cm.terrain(np.linspace(0.25, 1, 256))\nall_colors = np.vstack((colors_undersea, colors_land))\nterrain_map = colors.LinearSegmentedColormap.from_list('terrain_map',\n all_colors)\n\n# make the norm: Note the center is offset so that the land has more\n# dynamic range:\ndivnorm = colors.DivergingNorm(vmin=-500, vcenter=0, vmax=4000)\n\npcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm,\n cmap=terrain_map,)\nax.set_xlabel('Lon $[^o E]$')\nax.set_ylabel('Lat $[^o N]$')\nax.set_aspect(1 / np.cos(np.deg2rad(49)))\nfig.colorbar(pcm, shrink=0.6, extend='both', label='Elevation [m]')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/810554bf9ddd52f66cc20b8f5e901fe0/bachelors_degrees_by_gender.py b/_downloads/810554bf9ddd52f66cc20b8f5e901fe0/bachelors_degrees_by_gender.py deleted file mode 120000 index dc427ca70e4..00000000000 --- a/_downloads/810554bf9ddd52f66cc20b8f5e901fe0/bachelors_degrees_by_gender.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/810554bf9ddd52f66cc20b8f5e901fe0/bachelors_degrees_by_gender.py \ No newline at end of file diff --git a/_downloads/8124d84a1d88b2c0f01755b8fc2e82e1/errorbar_limits_simple.ipynb b/_downloads/8124d84a1d88b2c0f01755b8fc2e82e1/errorbar_limits_simple.ipynb deleted file mode 120000 index c4fe3f01cb4..00000000000 --- a/_downloads/8124d84a1d88b2c0f01755b8fc2e82e1/errorbar_limits_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8124d84a1d88b2c0f01755b8fc2e82e1/errorbar_limits_simple.ipynb \ No newline at end of file diff --git a/_downloads/812535b0d0a3324d68831cf2d6a1bd76/demo_colorbar_of_inset_axes.ipynb b/_downloads/812535b0d0a3324d68831cf2d6a1bd76/demo_colorbar_of_inset_axes.ipynb deleted file mode 120000 index d2285a194ee..00000000000 --- a/_downloads/812535b0d0a3324d68831cf2d6a1bd76/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/812535b0d0a3324d68831cf2d6a1bd76/demo_colorbar_of_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/8133cc1d112546cb798799dbebc1d742/unchained.py b/_downloads/8133cc1d112546cb798799dbebc1d742/unchained.py deleted file mode 120000 index 5a708a35ad2..00000000000 --- a/_downloads/8133cc1d112546cb798799dbebc1d742/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8133cc1d112546cb798799dbebc1d742/unchained.py \ No newline at end of file diff --git a/_downloads/8134971a7eacf112f71e4f0ceb97b305/cohere.ipynb b/_downloads/8134971a7eacf112f71e4f0ceb97b305/cohere.ipynb deleted file mode 100644 index 5c0a94f07c3..00000000000 --- a/_downloads/8134971a7eacf112f71e4f0ceb97b305/cohere.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotting the coherence of two signals\n\n\nAn example showing how to plot the coherence of two signals.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ndt = 0.01\nt = np.arange(0, 30, dt)\nnse1 = np.random.randn(len(t)) # white noise 1\nnse2 = np.random.randn(len(t)) # white noise 2\n\n# Two signals with a coherent part at 10Hz and a random part\ns1 = np.sin(2 * np.pi * 10 * t) + nse1\ns2 = np.sin(2 * np.pi * 10 * t) + nse2\n\nfig, axs = plt.subplots(2, 1)\naxs[0].plot(t, s1, t, s2)\naxs[0].set_xlim(0, 2)\naxs[0].set_xlabel('time')\naxs[0].set_ylabel('s1 and s2')\naxs[0].grid(True)\n\ncxy, f = axs[1].cohere(s1, s2, 256, 1. / dt)\naxs[1].set_ylabel('coherence')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/813bf93b7876bd1c6a2abbd096d7f28d/animate_decay.py b/_downloads/813bf93b7876bd1c6a2abbd096d7f28d/animate_decay.py deleted file mode 120000 index 78499dad1b2..00000000000 --- a/_downloads/813bf93b7876bd1c6a2abbd096d7f28d/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/813bf93b7876bd1c6a2abbd096d7f28d/animate_decay.py \ No newline at end of file diff --git a/_downloads/81402ce7089596d22663d97c605274ae/stix_fonts_demo.ipynb b/_downloads/81402ce7089596d22663d97c605274ae/stix_fonts_demo.ipynb deleted file mode 100644 index 812c3a9c910..00000000000 --- a/_downloads/81402ce7089596d22663d97c605274ae/stix_fonts_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# STIX Fonts Demo\n\n\nDemonstration of `STIX Fonts `_ used in LaTeX\nrendering.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ncircle123 = \"\\N{CIRCLED DIGIT ONE}\\N{CIRCLED DIGIT TWO}\\N{CIRCLED DIGIT THREE}\"\n\ntests = [\n r'$%s\\;\\mathrm{%s}\\;\\mathbf{%s}$' % ((circle123,) * 3),\n r'$\\mathsf{Sans \\Omega}\\;\\mathrm{\\mathsf{Sans \\Omega}}\\;'\n r'\\mathbf{\\mathsf{Sans \\Omega}}$',\n r'$\\mathtt{Monospace}$',\n r'$\\mathcal{CALLIGRAPHIC}$',\n r'$\\mathbb{Blackboard\\;\\pi}$',\n r'$\\mathrm{\\mathbb{Blackboard\\;\\pi}}$',\n r'$\\mathbf{\\mathbb{Blackboard\\;\\pi}}$',\n r'$\\mathfrak{Fraktur}\\;\\mathbf{\\mathfrak{Fraktur}}$',\n r'$\\mathscr{Script}$',\n]\n\nfig = plt.figure(figsize=(8, len(tests) + 2))\nfor i, s in enumerate(tests[::-1]):\n fig.text(0, (i + .5) / len(tests), s, fontsize=32)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/814073b63600bca7b82e1bbf5470e7b6/hatch_demo.ipynb b/_downloads/814073b63600bca7b82e1bbf5470e7b6/hatch_demo.ipynb deleted file mode 100644 index 22f71073313..00000000000 --- a/_downloads/814073b63600bca7b82e1bbf5470e7b6/hatch_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hatch Demo\n\n\nHatching (pattern filled polygons) is supported currently in the PS,\nPDF, SVG and Agg backends only.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import Ellipse, Polygon\n\nfig, (ax1, ax2, ax3) = plt.subplots(3)\n\nax1.bar(range(1, 5), range(1, 5), color='red', edgecolor='black', hatch=\"/\")\nax1.bar(range(1, 5), [6] * 4, bottom=range(1, 5),\n color='blue', edgecolor='black', hatch='//')\nax1.set_xticks([1.5, 2.5, 3.5, 4.5])\n\nbars = ax2.bar(range(1, 5), range(1, 5), color='yellow', ecolor='black') + \\\n ax2.bar(range(1, 5), [6] * 4, bottom=range(1, 5),\n color='green', ecolor='black')\nax2.set_xticks([1.5, 2.5, 3.5, 4.5])\n\npatterns = ('-', '+', 'x', '\\\\', '*', 'o', 'O', '.')\nfor bar, pattern in zip(bars, patterns):\n bar.set_hatch(pattern)\n\nax3.fill([1, 3, 3, 1], [1, 1, 2, 2], fill=False, hatch='\\\\')\nax3.add_patch(Ellipse((4, 1.5), 4, 0.5, fill=False, hatch='*'))\nax3.add_patch(Polygon([[0, 0], [4, 1.1], [6, 2.5], [2, 1.4]], closed=True,\n fill=False, hatch='/'))\nax3.set_xlim((0, 6))\nax3.set_ylim((0, 2.5))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.Ellipse\nmatplotlib.patches.Polygon\nmatplotlib.axes.Axes.add_patch\nmatplotlib.patches.Patch.set_hatch\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8143c2ac2cf555ebcdcedccba2ac44cd/unicode_minus.ipynb b/_downloads/8143c2ac2cf555ebcdcedccba2ac44cd/unicode_minus.ipynb deleted file mode 120000 index 55e90da50e9..00000000000 --- a/_downloads/8143c2ac2cf555ebcdcedccba2ac44cd/unicode_minus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8143c2ac2cf555ebcdcedccba2ac44cd/unicode_minus.ipynb \ No newline at end of file diff --git a/_downloads/8144721885ae597fe11f4fe82cf2c45f/arrow_simple_demo.py b/_downloads/8144721885ae597fe11f4fe82cf2c45f/arrow_simple_demo.py deleted file mode 120000 index d5f67cf35f5..00000000000 --- a/_downloads/8144721885ae597fe11f4fe82cf2c45f/arrow_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8144721885ae597fe11f4fe82cf2c45f/arrow_simple_demo.py \ No newline at end of file diff --git a/_downloads/815038625e5462ef1970ce70488d0dfb/transoffset.py b/_downloads/815038625e5462ef1970ce70488d0dfb/transoffset.py deleted file mode 120000 index f7fa02aac58..00000000000 --- a/_downloads/815038625e5462ef1970ce70488d0dfb/transoffset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/815038625e5462ef1970ce70488d0dfb/transoffset.py \ No newline at end of file diff --git a/_downloads/815d1202ce1f17bce7feb183e776b21e/fonts_demo_kw.ipynb b/_downloads/815d1202ce1f17bce7feb183e776b21e/fonts_demo_kw.ipynb deleted file mode 120000 index 0c4c2664069..00000000000 --- a/_downloads/815d1202ce1f17bce7feb183e776b21e/fonts_demo_kw.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/815d1202ce1f17bce7feb183e776b21e/fonts_demo_kw.ipynb \ No newline at end of file diff --git a/_downloads/81641d5c673380442f58576128987c89/hist.ipynb b/_downloads/81641d5c673380442f58576128987c89/hist.ipynb deleted file mode 120000 index 2886b63acbf..00000000000 --- a/_downloads/81641d5c673380442f58576128987c89/hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/81641d5c673380442f58576128987c89/hist.ipynb \ No newline at end of file diff --git a/_downloads/8169737d8418d7ba415a019b86c5cc91/placing_text_boxes.ipynb b/_downloads/8169737d8418d7ba415a019b86c5cc91/placing_text_boxes.ipynb deleted file mode 120000 index f35fd89c5d2..00000000000 --- a/_downloads/8169737d8418d7ba415a019b86c5cc91/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8169737d8418d7ba415a019b86c5cc91/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/817b94fa3d922b04a821f6cda5ea3735/legend.ipynb b/_downloads/817b94fa3d922b04a821f6cda5ea3735/legend.ipynb deleted file mode 100644 index ae07e3b570a..00000000000 --- a/_downloads/817b94fa3d922b04a821f6cda5ea3735/legend.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend using pre-defined labels\n\n\nDefining legend labels with plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Make some fake data.\na = b = np.arange(0, 3, .02)\nc = np.exp(a)\nd = c[::-1]\n\n# Create plots with pre-defined labels.\nfig, ax = plt.subplots()\nax.plot(a, c, 'k--', label='Model length')\nax.plot(a, d, 'k:', label='Data length')\nax.plot(a, c + d, 'k', label='Total message length')\n\nlegend = ax.legend(loc='upper center', shadow=True, fontsize='x-large')\n\n# Put a nicer background color on the legend.\nlegend.get_frame().set_facecolor('C0')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/817d2b00d5370411c84c0ba5f70f962e/ellipse_with_units.py b/_downloads/817d2b00d5370411c84c0ba5f70f962e/ellipse_with_units.py deleted file mode 120000 index 2ceca532b4a..00000000000 --- a/_downloads/817d2b00d5370411c84c0ba5f70f962e/ellipse_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/817d2b00d5370411c84c0ba5f70f962e/ellipse_with_units.py \ No newline at end of file diff --git a/_downloads/8181a7d58244c6d589ee225780dc850d/wire3d_animation_sgskip.ipynb b/_downloads/8181a7d58244c6d589ee225780dc850d/wire3d_animation_sgskip.ipynb deleted file mode 120000 index 25ff014725f..00000000000 --- a/_downloads/8181a7d58244c6d589ee225780dc850d/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8181a7d58244c6d589ee225780dc850d/wire3d_animation_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/8196c165cb9fd918cebd2d19c10fb3c0/nested_pie.ipynb b/_downloads/8196c165cb9fd918cebd2d19c10fb3c0/nested_pie.ipynb deleted file mode 120000 index 8ac33a633f5..00000000000 --- a/_downloads/8196c165cb9fd918cebd2d19c10fb3c0/nested_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8196c165cb9fd918cebd2d19c10fb3c0/nested_pie.ipynb \ No newline at end of file diff --git a/_downloads/8198c0bd22200af1349ab93b12044e5a/categorical_variables.ipynb b/_downloads/8198c0bd22200af1349ab93b12044e5a/categorical_variables.ipynb deleted file mode 120000 index 5707ffabd69..00000000000 --- a/_downloads/8198c0bd22200af1349ab93b12044e5a/categorical_variables.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8198c0bd22200af1349ab93b12044e5a/categorical_variables.ipynb \ No newline at end of file diff --git a/_downloads/819c2b277182d8f522414c7e2e0b4535/accented_text.py b/_downloads/819c2b277182d8f522414c7e2e0b4535/accented_text.py deleted file mode 120000 index 71af5055fcc..00000000000 --- a/_downloads/819c2b277182d8f522414c7e2e0b4535/accented_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/819c2b277182d8f522414c7e2e0b4535/accented_text.py \ No newline at end of file diff --git a/_downloads/819d5e3f5b62606157008973e90b1597/fancybox_demo.py b/_downloads/819d5e3f5b62606157008973e90b1597/fancybox_demo.py deleted file mode 120000 index a5c4fb91d7f..00000000000 --- a/_downloads/819d5e3f5b62606157008973e90b1597/fancybox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/819d5e3f5b62606157008973e90b1597/fancybox_demo.py \ No newline at end of file diff --git a/_downloads/819e2f1e607e1c86291ce273efb8c565/tripcolor.ipynb b/_downloads/819e2f1e607e1c86291ce273efb8c565/tripcolor.ipynb deleted file mode 120000 index b3f108ad698..00000000000 --- a/_downloads/819e2f1e607e1c86291ce273efb8c565/tripcolor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/819e2f1e607e1c86291ce273efb8c565/tripcolor.ipynb \ No newline at end of file diff --git a/_downloads/81ae721cec4a93f6292de778b4daec5e/units_scatter.py b/_downloads/81ae721cec4a93f6292de778b4daec5e/units_scatter.py deleted file mode 100644 index 8a121b4afd0..00000000000 --- a/_downloads/81ae721cec4a93f6292de778b4daec5e/units_scatter.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============= -Unit handling -============= - -The example below shows support for unit conversions over masked -arrays. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -import numpy as np -import matplotlib.pyplot as plt -from basic_units import secs, hertz, minutes - -# create masked array -data = (1, 2, 3, 4, 5, 6, 7, 8) -mask = (1, 0, 1, 0, 0, 0, 1, 0) -xsecs = secs * np.ma.MaskedArray(data, mask, float) - -fig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True) - -ax1.scatter(xsecs, xsecs) -ax1.yaxis.set_units(secs) -ax2.scatter(xsecs, xsecs, yunits=hertz) -ax3.scatter(xsecs, xsecs, yunits=minutes) - -fig.tight_layout() -plt.show() diff --git a/_downloads/81b4952b6f519b694f009ece59da2064/usetex_demo.ipynb b/_downloads/81b4952b6f519b694f009ece59da2064/usetex_demo.ipynb deleted file mode 120000 index 98f092defbe..00000000000 --- a/_downloads/81b4952b6f519b694f009ece59da2064/usetex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/81b4952b6f519b694f009ece59da2064/usetex_demo.ipynb \ No newline at end of file diff --git a/_downloads/81b757039a79cb33744ee5e8ce08aa8c/tick-locators.py b/_downloads/81b757039a79cb33744ee5e8ce08aa8c/tick-locators.py deleted file mode 100644 index 7586739558a..00000000000 --- a/_downloads/81b757039a79cb33744ee5e8ce08aa8c/tick-locators.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -============= -Tick locators -============= - -Show the different tick locators. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker - - -# Setup a plot such that only the bottom spine is shown -def setup(ax): - ax.spines['right'].set_color('none') - ax.spines['left'].set_color('none') - ax.yaxis.set_major_locator(ticker.NullLocator()) - ax.spines['top'].set_color('none') - ax.xaxis.set_ticks_position('bottom') - ax.tick_params(which='major', width=1.00) - ax.tick_params(which='major', length=5) - ax.tick_params(which='minor', width=0.75) - ax.tick_params(which='minor', length=2.5) - ax.set_xlim(0, 5) - ax.set_ylim(0, 1) - ax.patch.set_alpha(0.0) - - -plt.figure(figsize=(8, 6)) -n = 8 - -# Null Locator -ax = plt.subplot(n, 1, 1) -setup(ax) -ax.xaxis.set_major_locator(ticker.NullLocator()) -ax.xaxis.set_minor_locator(ticker.NullLocator()) -ax.text(0.0, 0.1, "NullLocator()", fontsize=14, transform=ax.transAxes) - -# Multiple Locator -ax = plt.subplot(n, 1, 2) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(0.5)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.1)) -ax.text(0.0, 0.1, "MultipleLocator(0.5)", fontsize=14, - transform=ax.transAxes) - -# Fixed Locator -ax = plt.subplot(n, 1, 3) -setup(ax) -majors = [0, 1, 5] -ax.xaxis.set_major_locator(ticker.FixedLocator(majors)) -minors = np.linspace(0, 1, 11)[1:-1] -ax.xaxis.set_minor_locator(ticker.FixedLocator(minors)) -ax.text(0.0, 0.1, "FixedLocator([0, 1, 5])", fontsize=14, - transform=ax.transAxes) - -# Linear Locator -ax = plt.subplot(n, 1, 4) -setup(ax) -ax.xaxis.set_major_locator(ticker.LinearLocator(3)) -ax.xaxis.set_minor_locator(ticker.LinearLocator(31)) -ax.text(0.0, 0.1, "LinearLocator(numticks=3)", - fontsize=14, transform=ax.transAxes) - -# Index Locator -ax = plt.subplot(n, 1, 5) -setup(ax) -ax.plot(range(0, 5), [0]*5, color='white') -ax.xaxis.set_major_locator(ticker.IndexLocator(base=.5, offset=.25)) -ax.text(0.0, 0.1, "IndexLocator(base=0.5, offset=0.25)", - fontsize=14, transform=ax.transAxes) - -# Auto Locator -ax = plt.subplot(n, 1, 6) -setup(ax) -ax.xaxis.set_major_locator(ticker.AutoLocator()) -ax.xaxis.set_minor_locator(ticker.AutoMinorLocator()) -ax.text(0.0, 0.1, "AutoLocator()", fontsize=14, transform=ax.transAxes) - -# MaxN Locator -ax = plt.subplot(n, 1, 7) -setup(ax) -ax.xaxis.set_major_locator(ticker.MaxNLocator(4)) -ax.xaxis.set_minor_locator(ticker.MaxNLocator(40)) -ax.text(0.0, 0.1, "MaxNLocator(n=4)", fontsize=14, transform=ax.transAxes) - -# Log Locator -ax = plt.subplot(n, 1, 8) -setup(ax) -ax.set_xlim(10**3, 10**10) -ax.set_xscale('log') -ax.xaxis.set_major_locator(ticker.LogLocator(base=10.0, numticks=15)) -ax.text(0.0, 0.1, "LogLocator(base=10, numticks=15)", - fontsize=15, transform=ax.transAxes) - -# Push the top of the top axes outside the figure because we only show the -# bottom spine. -plt.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05) - -plt.show() diff --git a/_downloads/81bc179821dc9808604c256bcb20b3b0/packed_bubbles.py b/_downloads/81bc179821dc9808604c256bcb20b3b0/packed_bubbles.py deleted file mode 120000 index 033da8062f5..00000000000 --- a/_downloads/81bc179821dc9808604c256bcb20b3b0/packed_bubbles.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/81bc179821dc9808604c256bcb20b3b0/packed_bubbles.py \ No newline at end of file diff --git a/_downloads/81d715cf3a5bd4f97264dd52884ddcd3/step_demo.ipynb b/_downloads/81d715cf3a5bd4f97264dd52884ddcd3/step_demo.ipynb deleted file mode 120000 index 3c16a3e0db8..00000000000 --- a/_downloads/81d715cf3a5bd4f97264dd52884ddcd3/step_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/81d715cf3a5bd4f97264dd52884ddcd3/step_demo.ipynb \ No newline at end of file diff --git a/_downloads/81d7489f4cba021817be41b9edf0e900/spine_placement_demo.ipynb b/_downloads/81d7489f4cba021817be41b9edf0e900/spine_placement_demo.ipynb deleted file mode 120000 index 60a1755e167..00000000000 --- a/_downloads/81d7489f4cba021817be41b9edf0e900/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/81d7489f4cba021817be41b9edf0e900/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/81da810d950b1cf61194bb58fc4ab6df/axes_zoom_effect.py b/_downloads/81da810d950b1cf61194bb58fc4ab6df/axes_zoom_effect.py deleted file mode 100644 index 3f156eba35a..00000000000 --- a/_downloads/81da810d950b1cf61194bb58fc4ab6df/axes_zoom_effect.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -================ -Axes Zoom Effect -================ - -""" - -from matplotlib.transforms import ( - Bbox, TransformedBbox, blended_transform_factory) -from mpl_toolkits.axes_grid1.inset_locator import ( - BboxPatch, BboxConnector, BboxConnectorPatch) - - -def connect_bbox(bbox1, bbox2, - loc1a, loc2a, loc1b, loc2b, - prop_lines, prop_patches=None): - if prop_patches is None: - prop_patches = { - **prop_lines, - "alpha": prop_lines.get("alpha", 1) * 0.2, - } - - c1 = BboxConnector(bbox1, bbox2, loc1=loc1a, loc2=loc2a, **prop_lines) - c1.set_clip_on(False) - c2 = BboxConnector(bbox1, bbox2, loc1=loc1b, loc2=loc2b, **prop_lines) - c2.set_clip_on(False) - - bbox_patch1 = BboxPatch(bbox1, **prop_patches) - bbox_patch2 = BboxPatch(bbox2, **prop_patches) - - p = BboxConnectorPatch(bbox1, bbox2, - # loc1a=3, loc2a=2, loc1b=4, loc2b=1, - loc1a=loc1a, loc2a=loc2a, loc1b=loc1b, loc2b=loc2b, - **prop_patches) - p.set_clip_on(False) - - return c1, c2, bbox_patch1, bbox_patch2, p - - -def zoom_effect01(ax1, ax2, xmin, xmax, **kwargs): - """ - Connect *ax1* and *ax2*. The *xmin*-to-*xmax* range in both axes will - be marked. - - Parameters - ---------- - ax1 - The main axes. - ax2 - The zoomed axes. - xmin, xmax - The limits of the colored area in both plot axes. - **kwargs - Arguments passed to the patch constructor. - """ - - trans1 = blended_transform_factory(ax1.transData, ax1.transAxes) - trans2 = blended_transform_factory(ax2.transData, ax2.transAxes) - - bbox = Bbox.from_extents(xmin, 0, xmax, 1) - - mybbox1 = TransformedBbox(bbox, trans1) - mybbox2 = TransformedBbox(bbox, trans2) - - prop_patches = {**kwargs, "ec": "none", "alpha": 0.2} - - c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox( - mybbox1, mybbox2, - loc1a=3, loc2a=2, loc1b=4, loc2b=1, - prop_lines=kwargs, prop_patches=prop_patches) - - ax1.add_patch(bbox_patch1) - ax2.add_patch(bbox_patch2) - ax2.add_patch(c1) - ax2.add_patch(c2) - ax2.add_patch(p) - - return c1, c2, bbox_patch1, bbox_patch2, p - - -def zoom_effect02(ax1, ax2, **kwargs): - """ - ax1 : the main axes - ax1 : the zoomed axes - - Similar to zoom_effect01. The xmin & xmax will be taken from the - ax1.viewLim. - """ - - tt = ax1.transScale + (ax1.transLimits + ax2.transAxes) - trans = blended_transform_factory(ax2.transData, tt) - - mybbox1 = ax1.bbox - mybbox2 = TransformedBbox(ax1.viewLim, trans) - - prop_patches = {**kwargs, "ec": "none", "alpha": 0.2} - - c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox( - mybbox1, mybbox2, - loc1a=3, loc2a=2, loc1b=4, loc2b=1, - prop_lines=kwargs, prop_patches=prop_patches) - - ax1.add_patch(bbox_patch1) - ax2.add_patch(bbox_patch2) - ax2.add_patch(c1) - ax2.add_patch(c2) - ax2.add_patch(p) - - return c1, c2, bbox_patch1, bbox_patch2, p - - -import matplotlib.pyplot as plt - -plt.figure(figsize=(5, 5)) -ax1 = plt.subplot(221) -ax2 = plt.subplot(212) -ax2.set_xlim(0, 1) -ax2.set_xlim(0, 5) -zoom_effect01(ax1, ax2, 0.2, 0.8) - - -ax1 = plt.subplot(222) -ax1.set_xlim(2, 3) -ax2.set_xlim(0, 5) -zoom_effect02(ax1, ax2) - -plt.show() diff --git a/_downloads/81e348af5ccf0bb95b921b431c08b298/invert_axes.py b/_downloads/81e348af5ccf0bb95b921b431c08b298/invert_axes.py deleted file mode 120000 index f9f1efcf615..00000000000 --- a/_downloads/81e348af5ccf0bb95b921b431c08b298/invert_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/81e348af5ccf0bb95b921b431c08b298/invert_axes.py \ No newline at end of file diff --git a/_downloads/81e386dfa40d34ec67da4b3f0714e194/contourf_log.ipynb b/_downloads/81e386dfa40d34ec67da4b3f0714e194/contourf_log.ipynb deleted file mode 120000 index 9bc26ee401d..00000000000 --- a/_downloads/81e386dfa40d34ec67da4b3f0714e194/contourf_log.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/81e386dfa40d34ec67da4b3f0714e194/contourf_log.ipynb \ No newline at end of file diff --git a/_downloads/81e52239ec18b734a293a18b45150923/color_cycle.py b/_downloads/81e52239ec18b734a293a18b45150923/color_cycle.py deleted file mode 120000 index f5f776c136e..00000000000 --- a/_downloads/81e52239ec18b734a293a18b45150923/color_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/81e52239ec18b734a293a18b45150923/color_cycle.py \ No newline at end of file diff --git a/_downloads/81ecb26b149a2adf4e1132632b16a33d/multiple_figs_demo.py b/_downloads/81ecb26b149a2adf4e1132632b16a33d/multiple_figs_demo.py deleted file mode 120000 index d283160f001..00000000000 --- a/_downloads/81ecb26b149a2adf4e1132632b16a33d/multiple_figs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/81ecb26b149a2adf4e1132632b16a33d/multiple_figs_demo.py \ No newline at end of file diff --git a/_downloads/8203fb95b4c9501a5a3bbcf18825784b/wire3d_animation_sgskip.ipynb b/_downloads/8203fb95b4c9501a5a3bbcf18825784b/wire3d_animation_sgskip.ipynb deleted file mode 120000 index 7b8cef1ecfe..00000000000 --- a/_downloads/8203fb95b4c9501a5a3bbcf18825784b/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8203fb95b4c9501a5a3bbcf18825784b/wire3d_animation_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/8204cfb942802c422b08f59b04d6764f/annotate_explain.py b/_downloads/8204cfb942802c422b08f59b04d6764f/annotate_explain.py deleted file mode 120000 index 7f66278ed0f..00000000000 --- a/_downloads/8204cfb942802c422b08f59b04d6764f/annotate_explain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8204cfb942802c422b08f59b04d6764f/annotate_explain.py \ No newline at end of file diff --git a/_downloads/82202b5b7be30e60130903e2cdcabbcf/zorder_demo.py b/_downloads/82202b5b7be30e60130903e2cdcabbcf/zorder_demo.py deleted file mode 120000 index f255d38c286..00000000000 --- a/_downloads/82202b5b7be30e60130903e2cdcabbcf/zorder_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/82202b5b7be30e60130903e2cdcabbcf/zorder_demo.py \ No newline at end of file diff --git a/_downloads/822ca4b902276f4477001c862abde8b8/frame_grabbing_sgskip.py b/_downloads/822ca4b902276f4477001c862abde8b8/frame_grabbing_sgskip.py deleted file mode 120000 index a7be230c1b2..00000000000 --- a/_downloads/822ca4b902276f4477001c862abde8b8/frame_grabbing_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/822ca4b902276f4477001c862abde8b8/frame_grabbing_sgskip.py \ No newline at end of file diff --git a/_downloads/8240186cd25536b696d5c0bce0e3d5c9/zoom_inset_axes.ipynb b/_downloads/8240186cd25536b696d5c0bce0e3d5c9/zoom_inset_axes.ipynb deleted file mode 120000 index 30b12965dad..00000000000 --- a/_downloads/8240186cd25536b696d5c0bce0e3d5c9/zoom_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8240186cd25536b696d5c0bce0e3d5c9/zoom_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/8248040a71d5b5cca0e679a4d40d62e0/plot_streamplot.ipynb b/_downloads/8248040a71d5b5cca0e679a4d40d62e0/plot_streamplot.ipynb deleted file mode 120000 index 2fab148c996..00000000000 --- a/_downloads/8248040a71d5b5cca0e679a4d40d62e0/plot_streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8248040a71d5b5cca0e679a4d40d62e0/plot_streamplot.ipynb \ No newline at end of file diff --git a/_downloads/824d0c3460ccf682cc84931d77ba935e/toolmanager_sgskip.ipynb b/_downloads/824d0c3460ccf682cc84931d77ba935e/toolmanager_sgskip.ipynb deleted file mode 120000 index 179bfb678ce..00000000000 --- a/_downloads/824d0c3460ccf682cc84931d77ba935e/toolmanager_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/824d0c3460ccf682cc84931d77ba935e/toolmanager_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/82517d922dc61a857cf461d5ed64ca0b/annotate_text_arrow.py b/_downloads/82517d922dc61a857cf461d5ed64ca0b/annotate_text_arrow.py deleted file mode 120000 index 6ced293f66f..00000000000 --- a/_downloads/82517d922dc61a857cf461d5ed64ca0b/annotate_text_arrow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/82517d922dc61a857cf461d5ed64ca0b/annotate_text_arrow.py \ No newline at end of file diff --git a/_downloads/8253fce6d84f56e258ebe6860e5973b3/gradient_bar.ipynb b/_downloads/8253fce6d84f56e258ebe6860e5973b3/gradient_bar.ipynb deleted file mode 120000 index 44a882a3332..00000000000 --- a/_downloads/8253fce6d84f56e258ebe6860e5973b3/gradient_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8253fce6d84f56e258ebe6860e5973b3/gradient_bar.ipynb \ No newline at end of file diff --git a/_downloads/82578af083a87deafe19ae9f1ab41063/mosaic.py b/_downloads/82578af083a87deafe19ae9f1ab41063/mosaic.py deleted file mode 120000 index 5118c549706..00000000000 --- a/_downloads/82578af083a87deafe19ae9f1ab41063/mosaic.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/82578af083a87deafe19ae9f1ab41063/mosaic.py \ No newline at end of file diff --git a/_downloads/8261808bbe2eafd148234aec95760d82/artist_tests.ipynb b/_downloads/8261808bbe2eafd148234aec95760d82/artist_tests.ipynb deleted file mode 120000 index 4e94555b1d9..00000000000 --- a/_downloads/8261808bbe2eafd148234aec95760d82/artist_tests.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8261808bbe2eafd148234aec95760d82/artist_tests.ipynb \ No newline at end of file diff --git a/_downloads/82625f16b71bbb2782eafc4c01e7dc7d/annotate_with_units.py b/_downloads/82625f16b71bbb2782eafc4c01e7dc7d/annotate_with_units.py deleted file mode 120000 index da8783d8309..00000000000 --- a/_downloads/82625f16b71bbb2782eafc4c01e7dc7d/annotate_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/82625f16b71bbb2782eafc4c01e7dc7d/annotate_with_units.py \ No newline at end of file diff --git a/_downloads/826605aed5b61e01d30c0d93975c64c9/spines_bounds.ipynb b/_downloads/826605aed5b61e01d30c0d93975c64c9/spines_bounds.ipynb deleted file mode 100644 index 2c23f9321c8..00000000000 --- a/_downloads/826605aed5b61e01d30c0d93975c64c9/spines_bounds.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom spine bounds\n\n\nDemo of spines using custom bounds to limit the extent of the spine.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx = np.linspace(0, 2*np.pi, 50)\ny = np.sin(x)\ny2 = y + 0.1 * np.random.normal(size=x.shape)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.plot(x, y2)\n\n# set ticks and tick labels\nax.set_xlim((0, 2*np.pi))\nax.set_xticks([0, np.pi, 2*np.pi])\nax.set_xticklabels(['0', r'$\\pi$', r'2$\\pi$'])\nax.set_ylim((-1.5, 1.5))\nax.set_yticks([-1, 0, 1])\n\n# Only draw spine between the y-ticks\nax.spines['left'].set_bounds(-1, 1)\n# Hide the right and top spines\nax.spines['right'].set_visible(False)\nax.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax.yaxis.set_ticks_position('left')\nax.xaxis.set_ticks_position('bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8267d824befce89e7d5b64d657d1915a/custom_figure_class.py b/_downloads/8267d824befce89e7d5b64d657d1915a/custom_figure_class.py deleted file mode 120000 index ed53c0af1ee..00000000000 --- a/_downloads/8267d824befce89e7d5b64d657d1915a/custom_figure_class.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8267d824befce89e7d5b64d657d1915a/custom_figure_class.py \ No newline at end of file diff --git a/_downloads/826f2a436e8ce40df6f82f5fb03de967/simple_axisartist1.py b/_downloads/826f2a436e8ce40df6f82f5fb03de967/simple_axisartist1.py deleted file mode 100644 index ee2b44c5bec..00000000000 --- a/_downloads/826f2a436e8ce40df6f82f5fb03de967/simple_axisartist1.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -================== -Simple Axisartist1 -================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as AA - -fig = plt.figure() -fig.subplots_adjust(right=0.85) -ax = AA.Subplot(fig, 1, 1, 1) -fig.add_subplot(ax) - -# make some axis invisible -ax.axis["bottom", "top", "right"].set_visible(False) - -# make an new axis along the first axis axis (x-axis) which pass -# through y=0. -ax.axis["y=0"] = ax.new_floating_axis(nth_coord=0, value=0, - axis_direction="bottom") -ax.axis["y=0"].toggle(all=True) -ax.axis["y=0"].label.set_text("y = 0") - -ax.set_ylim(-2, 4) - -plt.show() diff --git a/_downloads/82735c5bf818429d5e4758dd14401c61/inset_locator_demo.ipynb b/_downloads/82735c5bf818429d5e4758dd14401c61/inset_locator_demo.ipynb deleted file mode 100644 index 9bc35d5e030..00000000000 --- a/_downloads/82735c5bf818429d5e4758dd14401c61/inset_locator_demo.ipynb +++ /dev/null @@ -1,97 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Inset Locator Demo\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The `.inset_locator`'s `~.inset_locator.inset_axes` allows\neasily placing insets in the corners of the axes by specifying a width and\nheight and optionally a location (loc) that accepts locations as codes,\nsimilar to `~matplotlib.axes.Axes.legend`.\nBy default, the inset is offset by some points from the axes,\ncontrolled via the `borderpad` parameter.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.inset_locator import inset_axes\n\n\nfig, (ax, ax2) = plt.subplots(1, 2, figsize=[5.5, 2.8])\n\n# Create inset of width 1.3 inches and height 0.9 inches\n# at the default upper right location\naxins = inset_axes(ax, width=1.3, height=0.9)\n\n# Create inset of width 30% and height 40% of the parent axes' bounding box\n# at the lower left corner (loc=3)\naxins2 = inset_axes(ax, width=\"30%\", height=\"40%\", loc=3)\n\n# Create inset of mixed specifications in the second subplot;\n# width is 30% of parent axes' bounding box and\n# height is 1 inch at the upper left corner (loc=2)\naxins3 = inset_axes(ax2, width=\"30%\", height=1., loc=2)\n\n# Create an inset in the lower right corner (loc=4) with borderpad=1, i.e.\n# 10 points padding (as 10pt is the default fontsize) to the parent axes\naxins4 = inset_axes(ax2, width=\"20%\", height=\"20%\", loc=4, borderpad=1)\n\n# Turn ticklabels of insets off\nfor axi in [axins, axins2, axins3, axins4]:\n axi.tick_params(labelleft=False, labelbottom=False)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The arguments `bbox_to_anchor` and `bbox_transfrom` can be used for a more\nfine grained control over the inset position and size or even to position\nthe inset at completely arbitrary positions.\nThe `bbox_to_anchor` sets the bounding box in coordinates according to the\n`bbox_transform`.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=[5.5, 2.8])\nax = fig.add_subplot(121)\n\n# We use the axes transform as bbox_transform. Therefore the bounding box\n# needs to be specified in axes coordinates ((0,0) is the lower left corner\n# of the axes, (1,1) is the upper right corner).\n# The bounding box (.2, .4, .6, .5) starts at (.2,.4) and ranges to (.8,.9)\n# in those coordinates.\n# Inside of this bounding box an inset of half the bounding box' width and\n# three quarters of the bounding box' height is created. The lower left corner\n# of the inset is aligned to the lower left corner of the bounding box (loc=3).\n# The inset is then offset by the default 0.5 in units of the font size.\n\naxins = inset_axes(ax, width=\"50%\", height=\"75%\",\n bbox_to_anchor=(.2, .4, .6, .5),\n bbox_transform=ax.transAxes, loc=3)\n\n# For visualization purposes we mark the bounding box by a rectangle\nax.add_patch(plt.Rectangle((.2, .4), .6, .5, ls=\"--\", ec=\"c\", fc=\"None\",\n transform=ax.transAxes))\n\n# We set the axis limits to something other than the default, in order to not\n# distract from the fact that axes coordinates are used here.\nax.set(xlim=(0, 10), ylim=(0, 10))\n\n\n# Note how the two following insets are created at the same positions, one by\n# use of the default parent axes' bbox and the other via a bbox in axes\n# coordinates and the respective transform.\nax2 = fig.add_subplot(222)\naxins2 = inset_axes(ax2, width=\"30%\", height=\"50%\")\n\nax3 = fig.add_subplot(224)\naxins3 = inset_axes(ax3, width=\"100%\", height=\"100%\",\n bbox_to_anchor=(.7, .5, .3, .5),\n bbox_transform=ax3.transAxes)\n\n# For visualization purposes we mark the bounding box by a rectangle\nax2.add_patch(plt.Rectangle((0, 0), 1, 1, ls=\"--\", lw=2, ec=\"c\", fc=\"None\"))\nax3.add_patch(plt.Rectangle((.7, .5), .3, .5, ls=\"--\", lw=2,\n ec=\"c\", fc=\"None\"))\n\n# Turn ticklabels off\nfor axi in [axins2, axins3, ax2, ax3]:\n axi.tick_params(labelleft=False, labelbottom=False)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the above the axes transform together with 4-tuple bounding boxes has been\nused as it mostly is useful to specify an inset relative to the axes it is\nan inset to. However other use cases are equally possible. The following\nexample examines some of those.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=[5.5, 2.8])\nax = fig.add_subplot(131)\n\n# Create an inset outside the axes\naxins = inset_axes(ax, width=\"100%\", height=\"100%\",\n bbox_to_anchor=(1.05, .6, .5, .4),\n bbox_transform=ax.transAxes, loc=2, borderpad=0)\naxins.tick_params(left=False, right=True, labelleft=False, labelright=True)\n\n# Create an inset with a 2-tuple bounding box. Note that this creates a\n# bbox without extent. This hence only makes sense when specifying\n# width and height in absolute units (inches).\naxins2 = inset_axes(ax, width=0.5, height=0.4,\n bbox_to_anchor=(0.33, 0.25),\n bbox_transform=ax.transAxes, loc=3, borderpad=0)\n\n\nax2 = fig.add_subplot(133)\nax2.set_xscale(\"log\")\nax2.set(xlim=(1e-6, 1e6), ylim=(-2, 6))\n\n# Create inset in data coordinates using ax.transData as transform\naxins3 = inset_axes(ax2, width=\"100%\", height=\"100%\",\n bbox_to_anchor=(1e-2, 2, 1e3, 3),\n bbox_transform=ax2.transData, loc=2, borderpad=0)\n\n# Create an inset horizontally centered in figure coordinates and vertically\n# bound to line up with the axes.\nfrom matplotlib.transforms import blended_transform_factory\ntransform = blended_transform_factory(fig.transFigure, ax2.transAxes)\naxins4 = inset_axes(ax2, width=\"16%\", height=\"34%\",\n bbox_to_anchor=(0, 0, 1, 1),\n bbox_transform=transform, loc=8, borderpad=0)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/827a1d72743e3fc3edb7c08e7b5a4f5c/label_subplots.py b/_downloads/827a1d72743e3fc3edb7c08e7b5a4f5c/label_subplots.py deleted file mode 120000 index 4e9c916b9b6..00000000000 --- a/_downloads/827a1d72743e3fc3edb7c08e7b5a4f5c/label_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/827a1d72743e3fc3edb7c08e7b5a4f5c/label_subplots.py \ No newline at end of file diff --git a/_downloads/827ca13ebc5256a3b6bbb73e6a4cfe1b/tutorials_python.zip b/_downloads/827ca13ebc5256a3b6bbb73e6a4cfe1b/tutorials_python.zip deleted file mode 120000 index 4154fe78b5f..00000000000 --- a/_downloads/827ca13ebc5256a3b6bbb73e6a4cfe1b/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.0/_downloads/827ca13ebc5256a3b6bbb73e6a4cfe1b/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/82806b819d5516f91bb92a2c94296201/2dcollections3d.py b/_downloads/82806b819d5516f91bb92a2c94296201/2dcollections3d.py deleted file mode 120000 index d3bb4cb12a1..00000000000 --- a/_downloads/82806b819d5516f91bb92a2c94296201/2dcollections3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/82806b819d5516f91bb92a2c94296201/2dcollections3d.py \ No newline at end of file diff --git a/_downloads/8295b864c2d0f6b4984bbd35877e5fbc/simple_axesgrid2.py b/_downloads/8295b864c2d0f6b4984bbd35877e5fbc/simple_axesgrid2.py deleted file mode 100644 index e07ff9c6a11..00000000000 --- a/_downloads/8295b864c2d0f6b4984bbd35877e5fbc/simple_axesgrid2.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -================== -Simple ImageGrid 2 -================== - -Align multiple images of different sizes using -`~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`. -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -fig = plt.figure(figsize=(5.5, 3.5)) -grid = ImageGrid(fig, 111, # similar to subplot(111) - nrows_ncols=(1, 3), - axes_pad=0.1, - add_all=True, - label_mode="L", - ) - -Z, extent = get_demo_image() # demo image - -im1 = Z -im2 = Z[:, :10] -im3 = Z[:, 10:] -vmin, vmax = Z.min(), Z.max() -for ax, im in zip(grid, [im1, im2, im3]): - ax.imshow(im, origin="lower", vmin=vmin, vmax=vmax, - interpolation="nearest") - -plt.show() diff --git a/_downloads/8299006f60fa9c215161885eda4e6b89/color_by_yvalue.ipynb b/_downloads/8299006f60fa9c215161885eda4e6b89/color_by_yvalue.ipynb deleted file mode 120000 index bb3ada24a62..00000000000 --- a/_downloads/8299006f60fa9c215161885eda4e6b89/color_by_yvalue.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8299006f60fa9c215161885eda4e6b89/color_by_yvalue.ipynb \ No newline at end of file diff --git a/_downloads/82a8551808786120d5a88f371067d558/demo_axes_hbox_divider.ipynb b/_downloads/82a8551808786120d5a88f371067d558/demo_axes_hbox_divider.ipynb deleted file mode 120000 index 49f2e8c3a19..00000000000 --- a/_downloads/82a8551808786120d5a88f371067d558/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/82a8551808786120d5a88f371067d558/demo_axes_hbox_divider.ipynb \ No newline at end of file diff --git a/_downloads/82a9940f7742825edaf57f41ee952e31/rain.py b/_downloads/82a9940f7742825edaf57f41ee952e31/rain.py deleted file mode 120000 index 78d59b6a84d..00000000000 --- a/_downloads/82a9940f7742825edaf57f41ee952e31/rain.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/82a9940f7742825edaf57f41ee952e31/rain.py \ No newline at end of file diff --git a/_downloads/82ac862070a073a69fc9b974db5ab46b/demo_anchored_direction_arrows.py b/_downloads/82ac862070a073a69fc9b974db5ab46b/demo_anchored_direction_arrows.py deleted file mode 120000 index 7349042c021..00000000000 --- a/_downloads/82ac862070a073a69fc9b974db5ab46b/demo_anchored_direction_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/82ac862070a073a69fc9b974db5ab46b/demo_anchored_direction_arrows.py \ No newline at end of file diff --git a/_downloads/82b007fb3a229eebafcf2977b7ef6160/date_concise_formatter.ipynb b/_downloads/82b007fb3a229eebafcf2977b7ef6160/date_concise_formatter.ipynb deleted file mode 120000 index ad569103652..00000000000 --- a/_downloads/82b007fb3a229eebafcf2977b7ef6160/date_concise_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/82b007fb3a229eebafcf2977b7ef6160/date_concise_formatter.ipynb \ No newline at end of file diff --git a/_downloads/82b12a862b932307cd22ca25d33f46e9/customizing.py b/_downloads/82b12a862b932307cd22ca25d33f46e9/customizing.py deleted file mode 120000 index d783d41b0f5..00000000000 --- a/_downloads/82b12a862b932307cd22ca25d33f46e9/customizing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/82b12a862b932307cd22ca25d33f46e9/customizing.py \ No newline at end of file diff --git a/_downloads/82b1ea283e899518868e054aece010ae/color_cycle_default.ipynb b/_downloads/82b1ea283e899518868e054aece010ae/color_cycle_default.ipynb deleted file mode 120000 index 2475cc5bc91..00000000000 --- a/_downloads/82b1ea283e899518868e054aece010ae/color_cycle_default.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/82b1ea283e899518868e054aece010ae/color_cycle_default.ipynb \ No newline at end of file diff --git a/_downloads/82b54aac2811c96179bcf8fc93c758fd/fill.py b/_downloads/82b54aac2811c96179bcf8fc93c758fd/fill.py deleted file mode 100644 index f254949cd21..00000000000 --- a/_downloads/82b54aac2811c96179bcf8fc93c758fd/fill.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -============== -Filled polygon -============== - -`~.Axes.fill()` draws a filled polygon based based on lists of point -coordinates *x*, *y*. - -This example uses the `Koch snowflake`_ as an example polygon. - -.. _Koch snowflake: https://en.wikipedia.org/wiki/Koch_snowflake - -""" - -import numpy as np -import matplotlib.pyplot as plt - - -def koch_snowflake(order, scale=10): - """ - Return two lists x, y of point coordinates of the Koch snowflake. - - Arguments - --------- - order : int - The recursion depth. - scale : float - The extent of the snowflake (edge length of the base triangle). - """ - def _koch_snowflake_complex(order): - if order == 0: - # initial triangle - angles = np.array([0, 120, 240]) + 90 - return scale / np.sqrt(3) * np.exp(np.deg2rad(angles) * 1j) - else: - ZR = 0.5 - 0.5j * np.sqrt(3) / 3 - - p1 = _koch_snowflake_complex(order - 1) # start points - p2 = np.roll(p1, shift=-1) # end points - dp = p2 - p1 # connection vectors - - new_points = np.empty(len(p1) * 4, dtype=np.complex128) - new_points[::4] = p1 - new_points[1::4] = p1 + dp / 3 - new_points[2::4] = p1 + dp * ZR - new_points[3::4] = p1 + dp / 3 * 2 - return new_points - - points = _koch_snowflake_complex(order) - x, y = points.real, points.imag - return x, y - - -############################################################################### -# Basic usage: - -x, y = koch_snowflake(order=5) - -plt.figure(figsize=(8, 8)) -plt.axis('equal') -plt.fill(x, y) -plt.show() - -############################################################################### -# Use keyword arguments *facecolor* and *edgecolor* to modify the the colors -# of the polygon. Since the *linewidth* of the edge is 0 in the default -# Matplotlib style, we have to set it as well for the edge to become visible. - -x, y = koch_snowflake(order=2) - -fig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(9, 3), - subplot_kw={'aspect': 'equal'}) -ax1.fill(x, y) -ax2.fill(x, y, facecolor='lightsalmon', edgecolor='orangered', linewidth=3) -ax3.fill(x, y, facecolor='none', edgecolor='purple', linewidth=3) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.fill -matplotlib.pyplot.fill -matplotlib.axes.Axes.axis -matplotlib.pyplot.axis diff --git a/_downloads/82b8532e4549b74df93391e2ba33b039/tutorials_jupyter.zip b/_downloads/82b8532e4549b74df93391e2ba33b039/tutorials_jupyter.zip deleted file mode 120000 index c9104afe393..00000000000 --- a/_downloads/82b8532e4549b74df93391e2ba33b039/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.0/_downloads/82b8532e4549b74df93391e2ba33b039/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/82c4be36fbb10236994e1e204648c304/fill.py b/_downloads/82c4be36fbb10236994e1e204648c304/fill.py deleted file mode 120000 index 76c084078df..00000000000 --- a/_downloads/82c4be36fbb10236994e1e204648c304/fill.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/82c4be36fbb10236994e1e204648c304/fill.py \ No newline at end of file diff --git a/_downloads/82c8fa6f7fde224ac82e9fb57e603326/boxplot_vs_violin.py b/_downloads/82c8fa6f7fde224ac82e9fb57e603326/boxplot_vs_violin.py deleted file mode 120000 index 68692375a12..00000000000 --- a/_downloads/82c8fa6f7fde224ac82e9fb57e603326/boxplot_vs_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/82c8fa6f7fde224ac82e9fb57e603326/boxplot_vs_violin.py \ No newline at end of file diff --git a/_downloads/82d3d00bc30245eac565740b7000cf47/tricontour3d.ipynb b/_downloads/82d3d00bc30245eac565740b7000cf47/tricontour3d.ipynb deleted file mode 120000 index 2f3149b0b8e..00000000000 --- a/_downloads/82d3d00bc30245eac565740b7000cf47/tricontour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/82d3d00bc30245eac565740b7000cf47/tricontour3d.ipynb \ No newline at end of file diff --git a/_downloads/82d5999730ae1d9202a61e41bdcd415a/demo_axes_rgb.ipynb b/_downloads/82d5999730ae1d9202a61e41bdcd415a/demo_axes_rgb.ipynb deleted file mode 120000 index 2cdb629f3b8..00000000000 --- a/_downloads/82d5999730ae1d9202a61e41bdcd415a/demo_axes_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/82d5999730ae1d9202a61e41bdcd415a/demo_axes_rgb.ipynb \ No newline at end of file diff --git a/_downloads/82e07c9c2a98cf42fc2fbedea209441b/demo_axis_direction.ipynb b/_downloads/82e07c9c2a98cf42fc2fbedea209441b/demo_axis_direction.ipynb deleted file mode 120000 index b3a2f1f48be..00000000000 --- a/_downloads/82e07c9c2a98cf42fc2fbedea209441b/demo_axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/82e07c9c2a98cf42fc2fbedea209441b/demo_axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/82f0e1275a063ac077b19c2162ab5453/demo_gridspec06.py b/_downloads/82f0e1275a063ac077b19c2162ab5453/demo_gridspec06.py deleted file mode 120000 index 5a43586f884..00000000000 --- a/_downloads/82f0e1275a063ac077b19c2162ab5453/demo_gridspec06.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/82f0e1275a063ac077b19c2162ab5453/demo_gridspec06.py \ No newline at end of file diff --git a/_downloads/82f4440bd34b8bc8b5ba4a481d6cfda4/load_converter.py b/_downloads/82f4440bd34b8bc8b5ba4a481d6cfda4/load_converter.py deleted file mode 120000 index 6c6b9fa7261..00000000000 --- a/_downloads/82f4440bd34b8bc8b5ba4a481d6cfda4/load_converter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/82f4440bd34b8bc8b5ba4a481d6cfda4/load_converter.py \ No newline at end of file diff --git a/_downloads/82fe504bb130c591c21e83f35c0e3508/font_table.py b/_downloads/82fe504bb130c591c21e83f35c0e3508/font_table.py deleted file mode 120000 index 868d121e74a..00000000000 --- a/_downloads/82fe504bb130c591c21e83f35c0e3508/font_table.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/82fe504bb130c591c21e83f35c0e3508/font_table.py \ No newline at end of file diff --git a/_downloads/830adf45025f0f05b0c4635c6f91deaa/pipong.py b/_downloads/830adf45025f0f05b0c4635c6f91deaa/pipong.py deleted file mode 120000 index e977bd8f458..00000000000 --- a/_downloads/830adf45025f0f05b0c4635c6f91deaa/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/830adf45025f0f05b0c4635c6f91deaa/pipong.py \ No newline at end of file diff --git a/_downloads/830f914744125ce1862e95f51ed9faa1/align_labels_demo.py b/_downloads/830f914744125ce1862e95f51ed9faa1/align_labels_demo.py deleted file mode 120000 index fd7ceb5a155..00000000000 --- a/_downloads/830f914744125ce1862e95f51ed9faa1/align_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/830f914744125ce1862e95f51ed9faa1/align_labels_demo.py \ No newline at end of file diff --git a/_downloads/831a6303a06fcbf9fe8535823de9682d/violinplot.py b/_downloads/831a6303a06fcbf9fe8535823de9682d/violinplot.py deleted file mode 120000 index 9f860ed8c3e..00000000000 --- a/_downloads/831a6303a06fcbf9fe8535823de9682d/violinplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/831a6303a06fcbf9fe8535823de9682d/violinplot.py \ No newline at end of file diff --git a/_downloads/83212918079879be6bf40e7e9bbec042/image_nonuniform.ipynb b/_downloads/83212918079879be6bf40e7e9bbec042/image_nonuniform.ipynb deleted file mode 100644 index dcde062785e..00000000000 --- a/_downloads/83212918079879be6bf40e7e9bbec042/image_nonuniform.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Nonuniform\n\n\nThis illustrates the NonUniformImage class. It is not\navailable via an Axes method but it is easily added to an\nAxes instance as shown here.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.image import NonUniformImage\nfrom matplotlib import cm\n\ninterp = 'nearest'\n\n# Linear x array for cell centers:\nx = np.linspace(-4, 4, 9)\n\n# Highly nonlinear x array:\nx2 = x**3\n\ny = np.linspace(-4, 4, 9)\n\nz = np.sqrt(x[np.newaxis, :]**2 + y[:, np.newaxis]**2)\n\nfig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True)\nfig.suptitle('NonUniformImage class', fontsize='large')\nax = axs[0, 0]\nim = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4),\n cmap=cm.Purples)\nim.set_data(x, y, z)\nax.images.append(im)\nax.set_xlim(-4, 4)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\nax = axs[0, 1]\nim = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4),\n cmap=cm.Purples)\nim.set_data(x2, y, z)\nax.images.append(im)\nax.set_xlim(-64, 64)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\ninterp = 'bilinear'\n\nax = axs[1, 0]\nim = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4),\n cmap=cm.Purples)\nim.set_data(x, y, z)\nax.images.append(im)\nax.set_xlim(-4, 4)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\nax = axs[1, 1]\nim = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4),\n cmap=cm.Purples)\nim.set_data(x2, y, z)\nax.images.append(im)\nax.set_xlim(-64, 64)\nax.set_ylim(-4, 4)\nax.set_title(interp)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8323aa2f43944c2eb345c63483dc9f7f/timeline.ipynb b/_downloads/8323aa2f43944c2eb345c63483dc9f7f/timeline.ipynb deleted file mode 120000 index 7519312d236..00000000000 --- a/_downloads/8323aa2f43944c2eb345c63483dc9f7f/timeline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8323aa2f43944c2eb345c63483dc9f7f/timeline.ipynb \ No newline at end of file diff --git a/_downloads/832476b1f1a894c408ecb93acb7b935c/bbox_intersect.py b/_downloads/832476b1f1a894c408ecb93acb7b935c/bbox_intersect.py deleted file mode 120000 index 4c7ff1b8398..00000000000 --- a/_downloads/832476b1f1a894c408ecb93acb7b935c/bbox_intersect.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/832476b1f1a894c408ecb93acb7b935c/bbox_intersect.py \ No newline at end of file diff --git a/_downloads/8326b90de4cd3b6b3b39684cb6d732f0/spectrum_demo.ipynb b/_downloads/8326b90de4cd3b6b3b39684cb6d732f0/spectrum_demo.ipynb deleted file mode 120000 index 143ee25cb0e..00000000000 --- a/_downloads/8326b90de4cd3b6b3b39684cb6d732f0/spectrum_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8326b90de4cd3b6b3b39684cb6d732f0/spectrum_demo.ipynb \ No newline at end of file diff --git a/_downloads/8328700bd3cb4750c3b936dbfea384f8/keyword_plotting.ipynb b/_downloads/8328700bd3cb4750c3b936dbfea384f8/keyword_plotting.ipynb deleted file mode 100644 index 9d74e17a1ab..00000000000 --- a/_downloads/8328700bd3cb4750c3b936dbfea384f8/keyword_plotting.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotting with keywords\n\n\nThere are some instances where you have data in a format that lets you\naccess particular variables with strings. For example, with\n:class:`numpy.recarray` or :class:`pandas.DataFrame`.\n\nMatplotlib allows you provide such an object with the ``data`` keyword\nargument. If provided, then you may generate plots with the strings\ncorresponding to these variables.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nnp.random.seed(19680801)\n\ndata = {'a': np.arange(50),\n 'c': np.random.randint(0, 50, 50),\n 'd': np.random.randn(50)}\ndata['b'] = data['a'] + 10 * np.random.randn(50)\ndata['d'] = np.abs(data['d']) * 100\n\nfig, ax = plt.subplots()\nax.scatter('a', 'b', c='c', s='d', data=data)\nax.set(xlabel='entry a', ylabel='entry b')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/833e25177c1678266fcda4fb016bbcd7/demo_imagegrid_aspect.py b/_downloads/833e25177c1678266fcda4fb016bbcd7/demo_imagegrid_aspect.py deleted file mode 120000 index a87672da598..00000000000 --- a/_downloads/833e25177c1678266fcda4fb016bbcd7/demo_imagegrid_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/833e25177c1678266fcda4fb016bbcd7/demo_imagegrid_aspect.py \ No newline at end of file diff --git a/_downloads/834eef3d640250e5c9e02bba6a04051d/annotation_polar.py b/_downloads/834eef3d640250e5c9e02bba6a04051d/annotation_polar.py deleted file mode 120000 index fa60fc5b984..00000000000 --- a/_downloads/834eef3d640250e5c9e02bba6a04051d/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/834eef3d640250e5c9e02bba6a04051d/annotation_polar.py \ No newline at end of file diff --git a/_downloads/8350762ca652e82e8a65ce3fb8607f20/fancyarrow_demo.py b/_downloads/8350762ca652e82e8a65ce3fb8607f20/fancyarrow_demo.py deleted file mode 120000 index 1f74a42bec7..00000000000 --- a/_downloads/8350762ca652e82e8a65ce3fb8607f20/fancyarrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8350762ca652e82e8a65ce3fb8607f20/fancyarrow_demo.py \ No newline at end of file diff --git a/_downloads/836c2d6a76c249c43789e98dc15e96bd/watermark_image.py b/_downloads/836c2d6a76c249c43789e98dc15e96bd/watermark_image.py deleted file mode 120000 index 6d4d0193d4e..00000000000 --- a/_downloads/836c2d6a76c249c43789e98dc15e96bd/watermark_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/836c2d6a76c249c43789e98dc15e96bd/watermark_image.py \ No newline at end of file diff --git a/_downloads/837271c52c3d110b733bcf8b1df5dea4/date_concise_formatter.ipynb b/_downloads/837271c52c3d110b733bcf8b1df5dea4/date_concise_formatter.ipynb deleted file mode 120000 index d810b9f7cc8..00000000000 --- a/_downloads/837271c52c3d110b733bcf8b1df5dea4/date_concise_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/837271c52c3d110b733bcf8b1df5dea4/date_concise_formatter.ipynb \ No newline at end of file diff --git a/_downloads/837a796b65981ac3ca739f65fe038448/textbox.py b/_downloads/837a796b65981ac3ca739f65fe038448/textbox.py deleted file mode 120000 index 5495aed5590..00000000000 --- a/_downloads/837a796b65981ac3ca739f65fe038448/textbox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/837a796b65981ac3ca739f65fe038448/textbox.py \ No newline at end of file diff --git a/_downloads/8388299be706627ae3c9bbd7fe10fc4e/random_walk.ipynb b/_downloads/8388299be706627ae3c9bbd7fe10fc4e/random_walk.ipynb deleted file mode 100644 index a9817e4c17f..00000000000 --- a/_downloads/8388299be706627ae3c9bbd7fe10fc4e/random_walk.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated 3D random walk\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.mplot3d.axes3d as p3\nimport matplotlib.animation as animation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef Gen_RandLine(length, dims=2):\n \"\"\"\n Create a line using a random walk algorithm\n\n length is the number of points for the line.\n dims is the number of dimensions the line has.\n \"\"\"\n lineData = np.empty((dims, length))\n lineData[:, 0] = np.random.rand(dims)\n for index in range(1, length):\n # scaling the random numbers by 0.1 so\n # movement is small compared to position.\n # subtraction by 0.5 is to change the range to [-0.5, 0.5]\n # to allow a line to move backwards.\n step = ((np.random.rand(dims) - 0.5) * 0.1)\n lineData[:, index] = lineData[:, index - 1] + step\n\n return lineData\n\n\ndef update_lines(num, dataLines, lines):\n for line, data in zip(lines, dataLines):\n # NOTE: there is no .set_data() for 3 dim data...\n line.set_data(data[0:2, :num])\n line.set_3d_properties(data[2, :num])\n return lines\n\n# Attaching 3D axis to the figure\nfig = plt.figure()\nax = p3.Axes3D(fig)\n\n# Fifty lines of random 3-D lines\ndata = [Gen_RandLine(25, 3) for index in range(50)]\n\n# Creating fifty line objects.\n# NOTE: Can't pass empty arrays into 3d version of plot()\nlines = [ax.plot(dat[0, 0:1], dat[1, 0:1], dat[2, 0:1])[0] for dat in data]\n\n# Setting the axes properties\nax.set_xlim3d([0.0, 1.0])\nax.set_xlabel('X')\n\nax.set_ylim3d([0.0, 1.0])\nax.set_ylabel('Y')\n\nax.set_zlim3d([0.0, 1.0])\nax.set_zlabel('Z')\n\nax.set_title('3D Test')\n\n# Creating the Animation object\nline_ani = animation.FuncAnimation(fig, update_lines, 25, fargs=(data, lines),\n interval=50, blit=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/83979e5606cb580ae5c650a42a791aa9/trisurf3d_2.ipynb b/_downloads/83979e5606cb580ae5c650a42a791aa9/trisurf3d_2.ipynb deleted file mode 120000 index 8622e5640eb..00000000000 --- a/_downloads/83979e5606cb580ae5c650a42a791aa9/trisurf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/83979e5606cb580ae5c650a42a791aa9/trisurf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/83981ca2660a9a82cb077962ddf519c9/interpolation_methods.py b/_downloads/83981ca2660a9a82cb077962ddf519c9/interpolation_methods.py deleted file mode 120000 index e0ac0331ce4..00000000000 --- a/_downloads/83981ca2660a9a82cb077962ddf519c9/interpolation_methods.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/83981ca2660a9a82cb077962ddf519c9/interpolation_methods.py \ No newline at end of file diff --git a/_downloads/8398cd07274bea6cf0a26cea6a454092/pie_features.py b/_downloads/8398cd07274bea6cf0a26cea6a454092/pie_features.py deleted file mode 120000 index 1464f6d03a4..00000000000 --- a/_downloads/8398cd07274bea6cf0a26cea6a454092/pie_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8398cd07274bea6cf0a26cea6a454092/pie_features.py \ No newline at end of file diff --git a/_downloads/839e310cb18e7f417b8517bd22571ff3/wire3d.ipynb b/_downloads/839e310cb18e7f417b8517bd22571ff3/wire3d.ipynb deleted file mode 120000 index 6d6b73bfe13..00000000000 --- a/_downloads/839e310cb18e7f417b8517bd22571ff3/wire3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/839e310cb18e7f417b8517bd22571ff3/wire3d.ipynb \ No newline at end of file diff --git a/_downloads/839f767b3f9a47c68a3024d5ab83c471/annotate_text_arrow.ipynb b/_downloads/839f767b3f9a47c68a3024d5ab83c471/annotate_text_arrow.ipynb deleted file mode 120000 index 8fbcb293cf9..00000000000 --- a/_downloads/839f767b3f9a47c68a3024d5ab83c471/annotate_text_arrow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/839f767b3f9a47c68a3024d5ab83c471/annotate_text_arrow.ipynb \ No newline at end of file diff --git a/_downloads/83a4da0793b08ae8f45786e3c9b4e373/offset.py b/_downloads/83a4da0793b08ae8f45786e3c9b4e373/offset.py deleted file mode 120000 index 23d1c962c88..00000000000 --- a/_downloads/83a4da0793b08ae8f45786e3c9b4e373/offset.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/83a4da0793b08ae8f45786e3c9b4e373/offset.py \ No newline at end of file diff --git a/_downloads/83a7b2a87f1d1d36c2065840516a0f72/whats_new_99_axes_grid.ipynb b/_downloads/83a7b2a87f1d1d36c2065840516a0f72/whats_new_99_axes_grid.ipynb deleted file mode 120000 index 44800319f45..00000000000 --- a/_downloads/83a7b2a87f1d1d36c2065840516a0f72/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/83a7b2a87f1d1d36c2065840516a0f72/whats_new_99_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/83afb11a0261474b783405dd2737c8b4/marker_path.py b/_downloads/83afb11a0261474b783405dd2737c8b4/marker_path.py deleted file mode 120000 index fb7f60eebd6..00000000000 --- a/_downloads/83afb11a0261474b783405dd2737c8b4/marker_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/83afb11a0261474b783405dd2737c8b4/marker_path.py \ No newline at end of file diff --git a/_downloads/83c17b8629a6702f0418e369549c74e4/legend_guide.py b/_downloads/83c17b8629a6702f0418e369549c74e4/legend_guide.py deleted file mode 120000 index cd434ee6579..00000000000 --- a/_downloads/83c17b8629a6702f0418e369549c74e4/legend_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/83c17b8629a6702f0418e369549c74e4/legend_guide.py \ No newline at end of file diff --git a/_downloads/83c398a9a1d60c1a079840e974afa4a1/tick-locators.ipynb b/_downloads/83c398a9a1d60c1a079840e974afa4a1/tick-locators.ipynb deleted file mode 120000 index be7ada77ecb..00000000000 --- a/_downloads/83c398a9a1d60c1a079840e974afa4a1/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/83c398a9a1d60c1a079840e974afa4a1/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/83c4d34d3e1501c07dc48c21975723fe/fill_between_demo.py b/_downloads/83c4d34d3e1501c07dc48c21975723fe/fill_between_demo.py deleted file mode 120000 index 42f2da7da47..00000000000 --- a/_downloads/83c4d34d3e1501c07dc48c21975723fe/fill_between_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/83c4d34d3e1501c07dc48c21975723fe/fill_between_demo.py \ No newline at end of file diff --git a/_downloads/83c5200b4cb50b2974881f33b4e45b26/errorbar_limits.py b/_downloads/83c5200b4cb50b2974881f33b4e45b26/errorbar_limits.py deleted file mode 120000 index c1c292a261b..00000000000 --- a/_downloads/83c5200b4cb50b2974881f33b4e45b26/errorbar_limits.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/83c5200b4cb50b2974881f33b4e45b26/errorbar_limits.py \ No newline at end of file diff --git a/_downloads/83da69e82f89e76772384322f319bcc3/scatter_custom_symbol.ipynb b/_downloads/83da69e82f89e76772384322f319bcc3/scatter_custom_symbol.ipynb deleted file mode 120000 index 27ee246b32a..00000000000 --- a/_downloads/83da69e82f89e76772384322f319bcc3/scatter_custom_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/83da69e82f89e76772384322f319bcc3/scatter_custom_symbol.ipynb \ No newline at end of file diff --git a/_downloads/83e7d43b9e743254d157f7b317d15b01/ellipse_demo.py b/_downloads/83e7d43b9e743254d157f7b317d15b01/ellipse_demo.py deleted file mode 100644 index 29d8c2694b8..00000000000 --- a/_downloads/83e7d43b9e743254d157f7b317d15b01/ellipse_demo.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============ -Ellipse Demo -============ - -Draw many ellipses. Here individual ellipses are drawn. Compare this -to the :doc:`Ellipse collection example -`. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.patches import Ellipse - -NUM = 250 - -ells = [Ellipse(xy=np.random.rand(2) * 10, - width=np.random.rand(), height=np.random.rand(), - angle=np.random.rand() * 360) - for i in range(NUM)] - -fig, ax = plt.subplots(subplot_kw={'aspect': 'equal'}) -for e in ells: - ax.add_artist(e) - e.set_clip_box(ax.bbox) - e.set_alpha(np.random.rand()) - e.set_facecolor(np.random.rand(3)) - -ax.set_xlim(0, 10) -ax.set_ylim(0, 10) - -plt.show() - -############################################################################# -# =============== -# Ellipse Rotated -# =============== -# -# Draw many ellipses with different angles. -# - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.patches import Ellipse - -delta = 45.0 # degrees - -angles = np.arange(0, 360 + delta, delta) -ells = [Ellipse((1, 1), 4, 2, a) for a in angles] - -a = plt.subplot(111, aspect='equal') - -for e in ells: - e.set_clip_box(a.bbox) - e.set_alpha(0.1) - a.add_artist(e) - -plt.xlim(-2, 4) -plt.ylim(-1, 3) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.Ellipse -matplotlib.axes.Axes.add_artist -matplotlib.artist.Artist.set_clip_box -matplotlib.artist.Artist.set_alpha -matplotlib.patches.Patch.set_facecolor diff --git a/_downloads/83ee970bdd565ede88a8d6ef04188629/usetex_baseline_test.py b/_downloads/83ee970bdd565ede88a8d6ef04188629/usetex_baseline_test.py deleted file mode 120000 index c520c4b2bef..00000000000 --- a/_downloads/83ee970bdd565ede88a8d6ef04188629/usetex_baseline_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/83ee970bdd565ede88a8d6ef04188629/usetex_baseline_test.py \ No newline at end of file diff --git a/_downloads/83f1fba9e639d3e6ca2ba427403c8592/subplot_demo.py b/_downloads/83f1fba9e639d3e6ca2ba427403c8592/subplot_demo.py deleted file mode 120000 index 9fbe25e9798..00000000000 --- a/_downloads/83f1fba9e639d3e6ca2ba427403c8592/subplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/83f1fba9e639d3e6ca2ba427403c8592/subplot_demo.py \ No newline at end of file diff --git a/_downloads/83f21d2ab3e8faa6008f51b12d2ed524/annotate_simple_coord01.py b/_downloads/83f21d2ab3e8faa6008f51b12d2ed524/annotate_simple_coord01.py deleted file mode 120000 index 6371689a8ec..00000000000 --- a/_downloads/83f21d2ab3e8faa6008f51b12d2ed524/annotate_simple_coord01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/83f21d2ab3e8faa6008f51b12d2ed524/annotate_simple_coord01.py \ No newline at end of file diff --git a/_downloads/83f697cee385f5d4cf97f567efe7ee8f/demo_edge_colorbar.ipynb b/_downloads/83f697cee385f5d4cf97f567efe7ee8f/demo_edge_colorbar.ipynb deleted file mode 120000 index 6116602b3d2..00000000000 --- a/_downloads/83f697cee385f5d4cf97f567efe7ee8f/demo_edge_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/83f697cee385f5d4cf97f567efe7ee8f/demo_edge_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/83f6febd0e0227c61d5f6b69d7e5a906/image_slices_viewer.ipynb b/_downloads/83f6febd0e0227c61d5f6b69d7e5a906/image_slices_viewer.ipynb deleted file mode 120000 index ea136a4af8c..00000000000 --- a/_downloads/83f6febd0e0227c61d5f6b69d7e5a906/image_slices_viewer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/83f6febd0e0227c61d5f6b69d7e5a906/image_slices_viewer.ipynb \ No newline at end of file diff --git a/_downloads/8400f442e6e5532039fd242b3e7027ab/marker_path.ipynb b/_downloads/8400f442e6e5532039fd242b3e7027ab/marker_path.ipynb deleted file mode 100644 index 4e75eece399..00000000000 --- a/_downloads/8400f442e6e5532039fd242b3e7027ab/marker_path.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Marker Path\n\n\nUsing a `~.path.Path` as marker for a `~.axes.Axes.plot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.path as mpath\nimport numpy as np\n\n\nstar = mpath.Path.unit_regular_star(6)\ncircle = mpath.Path.unit_circle()\n# concatenate the circle with an internal cutout of the star\nverts = np.concatenate([circle.vertices, star.vertices[::-1, ...]])\ncodes = np.concatenate([circle.codes, star.codes])\ncut_star = mpath.Path(verts, codes)\n\n\nplt.plot(np.arange(10)**2, '--r', marker=cut_star, markersize=15)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.path.Path.unit_regular_star\nmatplotlib.path.Path.unit_circle\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/840b58390bdf8c28e5b1fce8c34173c0/demo_axes_grid.py b/_downloads/840b58390bdf8c28e5b1fce8c34173c0/demo_axes_grid.py deleted file mode 120000 index a9f760e0aed..00000000000 --- a/_downloads/840b58390bdf8c28e5b1fce8c34173c0/demo_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/840b58390bdf8c28e5b1fce8c34173c0/demo_axes_grid.py \ No newline at end of file diff --git a/_downloads/841352d8ea6065fce570abdf6225ef02/simple_plot.py b/_downloads/841352d8ea6065fce570abdf6225ef02/simple_plot.py deleted file mode 120000 index 6cacb744bdb..00000000000 --- a/_downloads/841352d8ea6065fce570abdf6225ef02/simple_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/841352d8ea6065fce570abdf6225ef02/simple_plot.py \ No newline at end of file diff --git a/_downloads/8416405b43307a7475a5a1c6322b1e0e/spectrum_demo.py b/_downloads/8416405b43307a7475a5a1c6322b1e0e/spectrum_demo.py deleted file mode 100644 index bca00e4ea6f..00000000000 --- a/_downloads/8416405b43307a7475a5a1c6322b1e0e/spectrum_demo.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -======================== -Spectrum Representations -======================== - -The plots show different spectrum representations of a sine signal with -additive noise. A (frequency) spectrum of a discrete-time signal is calculated -by utilizing the fast Fourier transform (FFT). -""" -import matplotlib.pyplot as plt -import numpy as np - - -np.random.seed(0) - -dt = 0.01 # sampling interval -Fs = 1 / dt # sampling frequency -t = np.arange(0, 10, dt) - -# generate noise: -nse = np.random.randn(len(t)) -r = np.exp(-t / 0.05) -cnse = np.convolve(nse, r) * dt -cnse = cnse[:len(t)] - -s = 0.1 * np.sin(4 * np.pi * t) + cnse # the signal - -fig, axes = plt.subplots(nrows=3, ncols=2, figsize=(7, 7)) - -# plot time signal: -axes[0, 0].set_title("Signal") -axes[0, 0].plot(t, s, color='C0') -axes[0, 0].set_xlabel("Time") -axes[0, 0].set_ylabel("Amplitude") - -# plot different spectrum types: -axes[1, 0].set_title("Magnitude Spectrum") -axes[1, 0].magnitude_spectrum(s, Fs=Fs, color='C1') - -axes[1, 1].set_title("Log. Magnitude Spectrum") -axes[1, 1].magnitude_spectrum(s, Fs=Fs, scale='dB', color='C1') - -axes[2, 0].set_title("Phase Spectrum ") -axes[2, 0].phase_spectrum(s, Fs=Fs, color='C2') - -axes[2, 1].set_title("Angle Spectrum") -axes[2, 1].angle_spectrum(s, Fs=Fs, color='C2') - -axes[0, 1].remove() # don't display empty ax - -fig.tight_layout() -plt.show() diff --git a/_downloads/8416e38e7470f561a19ec851377cf596/gridspec_nested.py b/_downloads/8416e38e7470f561a19ec851377cf596/gridspec_nested.py deleted file mode 100644 index 75fa34f7b0b..00000000000 --- a/_downloads/8416e38e7470f561a19ec851377cf596/gridspec_nested.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -================ -Nested Gridspecs -================ - -GridSpecs can be nested, so that a subplot from a parent GridSpec can -set the position for a nested grid of subplots. - -""" -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - - -def format_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - - -# gridspec inside gridspec -f = plt.figure() - -gs0 = gridspec.GridSpec(1, 2, figure=f) - -gs00 = gridspec.GridSpecFromSubplotSpec(3, 3, subplot_spec=gs0[0]) - -ax1 = f.add_subplot(gs00[:-1, :]) -ax2 = f.add_subplot(gs00[-1, :-1]) -ax3 = f.add_subplot(gs00[-1, -1]) - -# the following syntax does the same as the GridSpecFromSubplotSpec call above: -gs01 = gs0[1].subgridspec(3, 3) - -ax4 = f.add_subplot(gs01[:, :-1]) -ax5 = f.add_subplot(gs01[:-1, -1]) -ax6 = f.add_subplot(gs01[-1, -1]) - -plt.suptitle("GridSpec Inside GridSpec") -format_axes(f) - -plt.show() diff --git a/_downloads/84173137b190a55e7ea7a5a3a20037e1/tex_demo.ipynb b/_downloads/84173137b190a55e7ea7a5a3a20037e1/tex_demo.ipynb deleted file mode 120000 index ea92ca0a3fc..00000000000 --- a/_downloads/84173137b190a55e7ea7a5a3a20037e1/tex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84173137b190a55e7ea7a5a3a20037e1/tex_demo.ipynb \ No newline at end of file diff --git a/_downloads/8419f3f5ad959a40947f7b5f078707f3/custom_boxstyle01.ipynb b/_downloads/8419f3f5ad959a40947f7b5f078707f3/custom_boxstyle01.ipynb deleted file mode 100644 index 21672b21be7..00000000000 --- a/_downloads/8419f3f5ad959a40947f7b5f078707f3/custom_boxstyle01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Boxstyle01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.path import Path\n\n\ndef custom_box_style(x0, y0, width, height, mutation_size, mutation_aspect=1):\n \"\"\"\n Given the location and size of the box, return the path of\n the box around it.\n\n - *x0*, *y0*, *width*, *height* : location and size of the box\n - *mutation_size* : a reference scale for the mutation.\n - *aspect_ratio* : aspect-ration for the mutation.\n \"\"\"\n\n # note that we are ignoring mutation_aspect. This is okay in general.\n\n # padding\n mypad = 0.3\n pad = mutation_size * mypad\n\n # width and height with padding added.\n width = width + 2 * pad\n height = height + 2 * pad\n\n # boundary of the padded box\n x0, y0 = x0 - pad, y0 - pad\n x1, y1 = x0 + width, y0 + height\n\n cp = [(x0, y0),\n (x1, y0), (x1, y1), (x0, y1),\n (x0-pad, (y0+y1)/2.), (x0, y0),\n (x0, y0)]\n\n com = [Path.MOVETO,\n Path.LINETO, Path.LINETO, Path.LINETO,\n Path.LINETO, Path.LINETO,\n Path.CLOSEPOLY]\n\n path = Path(cp, com)\n\n return path\n\n\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(3, 3))\nax.text(0.5, 0.5, \"Test\", size=30, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=custom_box_style, alpha=0.2))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/841a514c2538fd0de68b22f22b25f56d/usage.py b/_downloads/841a514c2538fd0de68b22f22b25f56d/usage.py deleted file mode 100644 index d110e3b83c5..00000000000 --- a/_downloads/841a514c2538fd0de68b22f22b25f56d/usage.py +++ /dev/null @@ -1,783 +0,0 @@ -""" -*********** -Usage Guide -*********** - -This tutorial covers some basic usage patterns and best-practices to -help you get started with Matplotlib. - -.. _general_concepts: - -General Concepts -================ - -:mod:`matplotlib` has an extensive codebase that can be daunting to many -new users. However, most of matplotlib can be understood with a fairly -simple conceptual framework and knowledge of a few important points. - -Plotting requires action on a range of levels, from the most general -(e.g., 'contour this 2-D array') to the most specific (e.g., 'color -this screen pixel red'). The purpose of a plotting package is to assist -you in visualizing your data as easily as possible, with all the necessary -control -- that is, by using relatively high-level commands most of -the time, and still have the ability to use the low-level commands when -needed. - -Therefore, everything in matplotlib is organized in a hierarchy. At the top -of the hierarchy is the matplotlib "state-machine environment" which is -provided by the :mod:`matplotlib.pyplot` module. At this level, simple -functions are used to add plot elements (lines, images, text, etc.) to -the current axes in the current figure. - -.. note:: - - Pyplot's state-machine environment behaves similarly to MATLAB and - should be most familiar to users with MATLAB experience. - -The next level down in the hierarchy is the first level of the object-oriented -interface, in which pyplot is used only for a few functions such as figure -creation, and the user explicitly creates and keeps track of the figure -and axes objects. At this level, the user uses pyplot to create figures, -and through those figures, one or more axes objects can be created. These -axes objects are then used for most plotting actions. - -For even more control -- which is essential for things like embedding -matplotlib plots in GUI applications -- the pyplot level may be dropped -completely, leaving a purely object-oriented approach. -""" - -# sphinx_gallery_thumbnail_number = 3 -import matplotlib.pyplot as plt -import numpy as np - -############################################################################### -# .. _figure_parts: -# -# Parts of a Figure -# ================= -# -# .. image:: ../../_static/anatomy.png -# -# -# :class:`~matplotlib.figure.Figure` -# ---------------------------------- -# -# The **whole** figure. The figure keeps -# track of all the child :class:`~matplotlib.axes.Axes`, a smattering of -# 'special' artists (titles, figure legends, etc), and the **canvas**. -# (Don't worry too much about the canvas, it is crucial as it is the -# object that actually does the drawing to get you your plot, but as the -# user it is more-or-less invisible to you). A figure can have any -# number of :class:`~matplotlib.axes.Axes`, but to be useful should have -# at least one. -# -# The easiest way to create a new figure is with pyplot: - -fig = plt.figure() # an empty figure with no axes -fig.suptitle('No axes on this figure') # Add a title so we know which it is - -fig, ax_lst = plt.subplots(2, 2) # a figure with a 2x2 grid of Axes - - -############################################################################### -# :class:`~matplotlib.axes.Axes` -# ------------------------------ -# -# This is what you think of as 'a plot', it is the region of the image -# with the data space. A given figure -# can contain many Axes, but a given :class:`~matplotlib.axes.Axes` -# object can only be in one :class:`~matplotlib.figure.Figure`. The -# Axes contains two (or three in the case of 3D) -# :class:`~matplotlib.axis.Axis` objects (be aware of the difference -# between **Axes** and **Axis**) which take care of the data limits (the -# data limits can also be controlled via set via the -# :meth:`~matplotlib.axes.Axes.set_xlim` and -# :meth:`~matplotlib.axes.Axes.set_ylim` :class:`Axes` methods). Each -# :class:`Axes` has a title (set via -# :meth:`~matplotlib.axes.Axes.set_title`), an x-label (set via -# :meth:`~matplotlib.axes.Axes.set_xlabel`), and a y-label set via -# :meth:`~matplotlib.axes.Axes.set_ylabel`). -# -# The :class:`Axes` class and its member functions are the primary entry -# point to working with the OO interface. -# -# :class:`~matplotlib.axis.Axis` -# ------------------------------ -# -# These are the number-line-like objects. They take -# care of setting the graph limits and generating the ticks (the marks -# on the axis) and ticklabels (strings labeling the ticks). The -# location of the ticks is determined by a -# :class:`~matplotlib.ticker.Locator` object and the ticklabel strings -# are formatted by a :class:`~matplotlib.ticker.Formatter`. The -# combination of the correct :class:`Locator` and :class:`Formatter` gives -# very fine control over the tick locations and labels. -# -# :class:`~matplotlib.artist.Artist` -# ---------------------------------- -# -# Basically everything you can see on the figure is an artist (even the -# :class:`Figure`, :class:`Axes`, and :class:`Axis` objects). This -# includes :class:`Text` objects, :class:`Line2D` objects, -# :class:`collection` objects, :class:`Patch` objects ... (you get the -# idea). When the figure is rendered, all of the artists are drawn to -# the **canvas**. Most Artists are tied to an Axes; such an Artist -# cannot be shared by multiple Axes, or moved from one to another. -# -# .. _input_types: -# -# Types of inputs to plotting functions -# ===================================== -# -# All of plotting functions expect `np.array` or `np.ma.masked_array` as -# input. Classes that are 'array-like' such as `pandas` data objects -# and `np.matrix` may or may not work as intended. It is best to -# convert these to `np.array` objects prior to plotting. -# -# For example, to convert a `pandas.DataFrame` :: -# -# a = pandas.DataFrame(np.random.rand(4,5), columns = list('abcde')) -# a_asarray = a.values -# -# and to convert a `np.matrix` :: -# -# b = np.matrix([[1,2],[3,4]]) -# b_asarray = np.asarray(b) -# -# .. _pylab: -# -# Matplotlib, pyplot and pylab: how are they related? -# ==================================================== -# -# Matplotlib is the whole package and :mod:`matplotlib.pyplot` is a module in -# Matplotlib. -# -# For functions in the pyplot module, there is always a "current" figure and -# axes (which is created automatically on request). For example, in the -# following example, the first call to ``plt.plot`` creates the axes, then -# subsequent calls to ``plt.plot`` add additional lines on the same axes, and -# ``plt.xlabel``, ``plt.ylabel``, ``plt.title`` and ``plt.legend`` set the -# axes labels and title and add a legend. - -x = np.linspace(0, 2, 100) - -plt.plot(x, x, label='linear') -plt.plot(x, x**2, label='quadratic') -plt.plot(x, x**3, label='cubic') - -plt.xlabel('x label') -plt.ylabel('y label') - -plt.title("Simple Plot") - -plt.legend() - -plt.show() - -############################################################################### -# :mod:`pylab` is a convenience module that bulk imports -# :mod:`matplotlib.pyplot` (for plotting) and :mod:`numpy` -# (for mathematics and working with arrays) in a single namespace. -# pylab is deprecated and its use is strongly discouraged because -# of namespace pollution. Use pyplot instead. -# -# For non-interactive plotting it is suggested -# to use pyplot to create the figures and then the OO interface for -# plotting. -# -# .. _coding_styles: -# -# Coding Styles -# ================== -# -# When viewing this documentation and examples, you will find different -# coding styles and usage patterns. These styles are perfectly valid -# and have their pros and cons. Just about all of the examples can be -# converted into another style and achieve the same results. -# The only caveat is to avoid mixing the coding styles for your own code. -# -# .. note:: -# Developers for matplotlib have to follow a specific style and guidelines. -# See :ref:`developers-guide-index`. -# -# Of the different styles, there are two that are officially supported. -# Therefore, these are the preferred ways to use matplotlib. -# -# For the pyplot style, the imports at the top of your -# scripts will typically be:: -# -# import matplotlib.pyplot as plt -# import numpy as np -# -# Then one calls, for example, np.arange, np.zeros, np.pi, plt.figure, -# plt.plot, plt.show, etc. Use the pyplot interface -# for creating figures, and then use the object methods for the rest: - -x = np.arange(0, 10, 0.2) -y = np.sin(x) -fig, ax = plt.subplots() -ax.plot(x, y) -plt.show() - -############################################################################### -# So, why all the extra typing instead of the MATLAB-style (which relies -# on global state and a flat namespace)? For very simple things like -# this example, the only advantage is academic: the wordier styles are -# more explicit, more clear as to where things come from and what is -# going on. For more complicated applications, this explicitness and -# clarity becomes increasingly valuable, and the richer and more -# complete object-oriented interface will likely make the program easier -# to write and maintain. -# -# -# Typically one finds oneself making the same plots over and over -# again, but with different data sets, which leads to needing to write -# specialized functions to do the plotting. The recommended function -# signature is something like: - - -def my_plotter(ax, data1, data2, param_dict): - """ - A helper function to make a graph - - Parameters - ---------- - ax : Axes - The axes to draw to - - data1 : array - The x data - - data2 : array - The y data - - param_dict : dict - Dictionary of kwargs to pass to ax.plot - - Returns - ------- - out : list - list of artists added - """ - out = ax.plot(data1, data2, **param_dict) - return out - -# which you would then use as: - -data1, data2, data3, data4 = np.random.randn(4, 100) -fig, ax = plt.subplots(1, 1) -my_plotter(ax, data1, data2, {'marker': 'x'}) - -############################################################################### -# or if you wanted to have 2 sub-plots: -fig, (ax1, ax2) = plt.subplots(1, 2) -my_plotter(ax1, data1, data2, {'marker': 'x'}) -my_plotter(ax2, data3, data4, {'marker': 'o'}) - -############################################################################### -# Again, for these simple examples this style seems like overkill, however -# once the graphs get slightly more complex it pays off. -# -# -# .. _backends: -# -# Backends -# ======== -# -# .. _what-is-a-backend: -# -# What is a backend? -# ------------------ -# -# A lot of documentation on the website and in the mailing lists refers -# to the "backend" and many new users are confused by this term. -# matplotlib targets many different use cases and output formats. Some -# people use matplotlib interactively from the python shell and have -# plotting windows pop up when they type commands. Some people run -# `Jupyter `_ notebooks and draw inline plots for -# quick data analysis. Others embed matplotlib into graphical user -# interfaces like wxpython or pygtk to build rich applications. Some -# people use matplotlib in batch scripts to generate postscript images -# from numerical simulations, and still others run web application -# servers to dynamically serve up graphs. -# -# To support all of these use cases, matplotlib can target different -# outputs, and each of these capabilities is called a backend; the -# "frontend" is the user facing code, i.e., the plotting code, whereas the -# "backend" does all the hard work behind-the-scenes to make the figure. -# There are two types of backends: user interface backends (for use in -# pygtk, wxpython, tkinter, qt4, or macosx; also referred to as -# "interactive backends") and hardcopy backends to make image files -# (PNG, SVG, PDF, PS; also referred to as "non-interactive backends"). -# -# There are four ways to configure your backend. If they conflict each other, -# the method mentioned last in the following list will be used, e.g. calling -# :func:`~matplotlib.use()` will override the setting in your ``matplotlibrc``. -# -# -# #. The ``backend`` parameter in your ``matplotlibrc`` file (see -# :doc:`/tutorials/introductory/customizing`):: -# -# backend : WXAgg # use wxpython with antigrain (agg) rendering -# -# #. Setting the :envvar:`MPLBACKEND` environment variable, either for your -# current shell or for a single script. On Unix:: -# -# > export MPLBACKEND=module://my_backend -# > python simple_plot.py -# -# > MPLBACKEND="module://my_backend" python simple_plot.py -# -# On Windows, only the former is possible:: -# -# > set MPLBACKEND=module://my_backend -# > python simple_plot.py -# -# Setting this environment variable will override the ``backend`` parameter -# in *any* ``matplotlibrc``, even if there is a ``matplotlibrc`` in your -# current working directory. Therefore setting :envvar:`MPLBACKEND` -# globally, e.g. in your ``.bashrc`` or ``.profile``, is discouraged as it -# might lead to counter-intuitive behavior. -# -# #. If your script depends on a specific backend you can use the -# :func:`~matplotlib.use` function:: -# -# import matplotlib -# matplotlib.use('PS') # generate postscript output by default -# -# If you use the :func:`~matplotlib.use` function, this must be done before -# importing :mod:`matplotlib.pyplot`. Calling :func:`~matplotlib.use` after -# pyplot has been imported will have no effect. Using -# :func:`~matplotlib.use` will require changes in your code if users want to -# use a different backend. Therefore, you should avoid explicitly calling -# :func:`~matplotlib.use` unless absolutely necessary. -# -# .. note:: -# Backend name specifications are not case-sensitive; e.g., 'GTK3Agg' -# and 'gtk3agg' are equivalent. -# -# With a typical installation of matplotlib, such as from a -# binary installer or a linux distribution package, a good default -# backend will already be set, allowing both interactive work and -# plotting from scripts, with output to the screen and/or to -# a file, so at least initially you will not need to use any of the -# methods given above. -# -# If, however, you want to write graphical user interfaces, or a web -# application server (:ref:`howto-webapp`), or need a better -# understanding of what is going on, read on. To make things a little -# more customizable for graphical user interfaces, matplotlib separates -# the concept of the renderer (the thing that actually does the drawing) -# from the canvas (the place where the drawing goes). The canonical -# renderer for user interfaces is ``Agg`` which uses the `Anti-Grain -# Geometry`_ C++ library to make a raster (pixel) image of the figure. -# All of the user interfaces except ``macosx`` can be used with -# agg rendering, e.g., ``WXAgg``, ``GTK3Agg``, ``QT4Agg``, ``QT5Agg``, -# ``TkAgg``. In addition, some of the user interfaces support other rendering -# engines. For example, with GTK+ 3, you can also select Cairo rendering -# (backend ``GTK3Cairo``). -# -# For the rendering engines, one can also distinguish between `vector -# `_ or `raster -# `_ renderers. Vector -# graphics languages issue drawing commands like "draw a line from this -# point to this point" and hence are scale free, and raster backends -# generate a pixel representation of the line whose accuracy depends on a -# DPI setting. -# -# Here is a summary of the matplotlib renderers (there is an eponymous -# backend for each; these are *non-interactive backends*, capable of -# writing to a file): -# -# ============= ============ ================================================ -# Renderer Filetypes Description -# ============= ============ ================================================ -# :term:`AGG` :term:`png` :term:`raster graphics` -- high quality images -# using the `Anti-Grain Geometry`_ engine -# PS :term:`ps` :term:`vector graphics` -- Postscript_ output -# :term:`eps` -# PDF :term:`pdf` :term:`vector graphics` -- -# `Portable Document Format`_ -# SVG :term:`svg` :term:`vector graphics` -- -# `Scalable Vector Graphics`_ -# :term:`Cairo` :term:`png` :term:`raster graphics` and -# :term:`ps` :term:`vector graphics` -- using the -# :term:`pdf` `Cairo graphics`_ library -# :term:`svg` -# ============= ============ ================================================ -# -# And here are the user interfaces and renderer combinations supported; -# these are *interactive backends*, capable of displaying to the screen -# and of using appropriate renderers from the table above to write to -# a file: -# -# ========= ================================================================ -# Backend Description -# ========= ================================================================ -# Qt5Agg Agg rendering in a :term:`Qt5` canvas (requires PyQt5_). This -# backend can be activated in IPython with ``%matplotlib qt5``. -# ipympl Agg rendering embedded in a Jupyter widget. (requires ipympl). -# This backend can be enabled in a Jupyter notebook with -# ``%matplotlib ipympl``. -# GTK3Agg Agg rendering to a :term:`GTK` 3.x canvas (requires PyGObject_, -# and pycairo_ or cairocffi_). This backend can be activated in -# IPython with ``%matplotlib gtk3``. -# macosx Agg rendering into a Cocoa canvas in OSX. This backend can be -# activated in IPython with ``%matplotlib osx``. -# TkAgg Agg rendering to a :term:`Tk` canvas (requires TkInter_). This -# backend can be activated in IPython with ``%matplotlib tk``. -# nbAgg Embed an interactive figure in a Jupyter classic notebook. This -# backend can be enabled in Jupyter notebooks via -# ``%matplotlib notebook``. -# WebAgg On ``show()`` will start a tornado server with an interactive -# figure. -# GTK3Cairo Cairo rendering to a :term:`GTK` 3.x canvas (requires PyGObject_, -# and pycairo_ or cairocffi_). -# Qt4Agg Agg rendering to a :term:`Qt4` canvas (requires PyQt4_ or -# ``pyside``). This backend can be activated in IPython with -# ``%matplotlib qt4``. -# WXAgg Agg rendering to a :term:`wxWidgets` canvas (requires wxPython_ 4). -# This backend can be activated in IPython with ``%matplotlib wx``. -# ========= ================================================================ -# -# .. _`Anti-Grain Geometry`: http://antigrain.com/ -# .. _Postscript: https://en.wikipedia.org/wiki/PostScript -# .. _`Portable Document Format`: https://en.wikipedia.org/wiki/Portable_Document_Format -# .. _`Scalable Vector Graphics`: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics -# .. _`Cairo graphics`: https://wwW.cairographics.org -# .. _PyGObject: https://wiki.gnome.org/action/show/Projects/PyGObject -# .. _pycairo: https://www.cairographics.org/pycairo/ -# .. _cairocffi: https://pythonhosted.org/cairocffi/ -# .. _wxPython: https://www.wxpython.org/ -# .. _TkInter: https://wiki.python.org/moin/TkInter -# .. _PyQt4: https://riverbankcomputing.com/software/pyqt/intro -# .. _PyQt5: https://riverbankcomputing.com/software/pyqt/intro -# -# ipympl -# ------ -# -# The Jupyter widget ecosystem is moving too fast to support directly in -# Matplotlib. To install ipympl -# -# .. code-block:: bash -# -# pip install ipympl -# jupyter nbextension enable --py --sys-prefix ipympl -# -# or -# -# .. code-block:: bash -# -# conda install ipympl -c conda-forge -# -# See `jupyter-matplotlib `__ -# for more details. -# -# GTK and Cairo -# ------------- -# -# `GTK3` backends (*both* `GTK3Agg` and `GTK3Cairo`) depend on Cairo -# (pycairo>=1.11.0 or cairocffi). -# -# How do I select PyQt4 or PySide? -# -------------------------------- -# -# The `QT_API` environment variable can be set to either `pyqt` or `pyside` -# to use `PyQt4` or `PySide`, respectively. -# -# Since the default value for the bindings to be used is `PyQt4`, -# :mod:`matplotlib` first tries to import it, if the import fails, it tries to -# import `PySide`. -# -# .. _interactive-mode: -# -# What is interactive mode? -# =================================== -# -# Use of an interactive backend (see :ref:`what-is-a-backend`) -# permits--but does not by itself require or ensure--plotting -# to the screen. Whether and when plotting to the screen occurs, -# and whether a script or shell session continues after a plot -# is drawn on the screen, depends on the functions and methods -# that are called, and on a state variable that determines whether -# matplotlib is in "interactive mode". The default Boolean value is set -# by the :file:`matplotlibrc` file, and may be customized like any other -# configuration parameter (see :doc:`/tutorials/introductory/customizing`). It -# may also be set via :func:`matplotlib.interactive`, and its -# value may be queried via :func:`matplotlib.is_interactive`. Turning -# interactive mode on and off in the middle of a stream of plotting -# commands, whether in a script or in a shell, is rarely needed -# and potentially confusing, so in the following we will assume all -# plotting is done with interactive mode either on or off. -# -# .. note:: -# Major changes related to interactivity, and in particular the -# role and behavior of :func:`~matplotlib.pyplot.show`, were made in the -# transition to matplotlib version 1.0, and bugs were fixed in -# 1.0.1. Here we describe the version 1.0.1 behavior for the -# primary interactive backends, with the partial exception of -# *macosx*. -# -# Interactive mode may also be turned on via :func:`matplotlib.pyplot.ion`, -# and turned off via :func:`matplotlib.pyplot.ioff`. -# -# .. note:: -# Interactive mode works with suitable backends in ipython and in -# the ordinary python shell, but it does *not* work in the IDLE IDE. -# If the default backend does not support interactivity, an interactive -# backend can be explicitly activated using any of the methods discussed in `What is a backend?`_. -# -# -# Interactive example -# -------------------- -# -# From an ordinary python prompt, or after invoking ipython with no options, -# try this:: -# -# import matplotlib.pyplot as plt -# plt.ion() -# plt.plot([1.6, 2.7]) -# -# Assuming you are running version 1.0.1 or higher, and you have -# an interactive backend installed and selected by default, you should -# see a plot, and your terminal prompt should also be active; you -# can type additional commands such as:: -# -# plt.title("interactive test") -# plt.xlabel("index") -# -# and you will see the plot being updated after each line. Since version 1.5, -# modifying the plot by other means *should* also automatically -# update the display on most backends. Get a reference to the :class:`~matplotlib.axes.Axes` instance, -# and call a method of that instance:: -# -# ax = plt.gca() -# ax.plot([3.1, 2.2]) -# -# If you are using certain backends (like `macosx`), or an older version -# of matplotlib, you may not see the new line added to the plot immediately. -# In this case, you need to explicitly call :func:`~matplotlib.pyplot.draw` -# in order to update the plot:: -# -# plt.draw() -# -# -# Non-interactive example -# ----------------------- -# -# Start a fresh session as in the previous example, but now -# turn interactive mode off:: -# -# import matplotlib.pyplot as plt -# plt.ioff() -# plt.plot([1.6, 2.7]) -# -# Nothing happened--or at least nothing has shown up on the -# screen (unless you are using *macosx* backend, which is -# anomalous). To make the plot appear, you need to do this:: -# -# plt.show() -# -# Now you see the plot, but your terminal command line is -# unresponsive; the :func:`show()` command *blocks* the input -# of additional commands until you manually kill the plot -# window. -# -# What good is this--being forced to use a blocking function? -# Suppose you need a script that plots the contents of a file -# to the screen. You want to look at that plot, and then end -# the script. Without some blocking command such as show(), the -# script would flash up the plot and then end immediately, -# leaving nothing on the screen. -# -# In addition, non-interactive mode delays all drawing until -# show() is called; this is more efficient than redrawing -# the plot each time a line in the script adds a new feature. -# -# Prior to version 1.0, show() generally could not be called -# more than once in a single script (although sometimes one -# could get away with it); for version 1.0.1 and above, this -# restriction is lifted, so one can write a script like this:: -# -# import numpy as np -# import matplotlib.pyplot as plt -# -# plt.ioff() -# for i in range(3): -# plt.plot(np.random.rand(10)) -# plt.show() -# -# which makes three plots, one at a time. I.e. the second plot will show up, -# once the first plot is closed. -# -# Summary -# ------- -# -# In interactive mode, pyplot functions automatically draw -# to the screen. -# -# When plotting interactively, if using -# object method calls in addition to pyplot functions, then -# call :func:`~matplotlib.pyplot.draw` whenever you want to -# refresh the plot. -# -# Use non-interactive mode in scripts in which you want to -# generate one or more figures and display them before ending -# or generating a new set of figures. In that case, use -# :func:`~matplotlib.pyplot.show` to display the figure(s) and -# to block execution until you have manually destroyed them. -# -# .. _performance: -# -# Performance -# =========== -# -# Whether exploring data in interactive mode or programmatically -# saving lots of plots, rendering performance can be a painful -# bottleneck in your pipeline. Matplotlib provides a couple -# ways to greatly reduce rendering time at the cost of a slight -# change (to a settable tolerance) in your plot's appearance. -# The methods available to reduce rendering time depend on the -# type of plot that is being created. -# -# Line segment simplification -# --------------------------- -# -# For plots that have line segments (e.g. typical line plots, -# outlines of polygons, etc.), rendering performance can be -# controlled by the ``path.simplify`` and -# ``path.simplify_threshold`` parameters in your -# ``matplotlibrc`` file (see -# :doc:`/tutorials/introductory/customizing` for -# more information about the ``matplotlibrc`` file). -# The ``path.simplify`` parameter is a boolean indicating whether -# or not line segments are simplified at all. The -# ``path.simplify_threshold`` parameter controls how much line -# segments are simplified; higher thresholds result in quicker -# rendering. -# -# The following script will first display the data without any -# simplification, and then display the same data with simplification. -# Try interacting with both of them:: -# -# import numpy as np -# import matplotlib.pyplot as plt -# import matplotlib as mpl -# -# # Setup, and create the data to plot -# y = np.random.rand(100000) -# y[50000:] *= 2 -# y[np.logspace(1, np.log10(50000), 400).astype(int)] = -1 -# mpl.rcParams['path.simplify'] = True -# -# mpl.rcParams['path.simplify_threshold'] = 0.0 -# plt.plot(y) -# plt.show() -# -# mpl.rcParams['path.simplify_threshold'] = 1.0 -# plt.plot(y) -# plt.show() -# -# Matplotlib currently defaults to a conservative simplification -# threshold of ``1/9``. If you want to change your default settings -# to use a different value, you can change your ``matplotlibrc`` -# file. Alternatively, you could create a new style for -# interactive plotting (with maximal simplification) and another -# style for publication quality plotting (with minimal -# simplification) and activate them as necessary. See -# :doc:`/tutorials/introductory/customizing` for -# instructions on how to perform these actions. -# -# The simplification works by iteratively merging line segments -# into a single vector until the next line segment's perpendicular -# distance to the vector (measured in display-coordinate space) -# is greater than the ``path.simplify_threshold`` parameter. -# -# .. note:: -# Changes related to how line segments are simplified were made -# in version 2.1. Rendering time will still be improved by these -# parameters prior to 2.1, but rendering time for some kinds of -# data will be vastly improved in versions 2.1 and greater. -# -# Marker simplification -# --------------------- -# -# Markers can also be simplified, albeit less robustly than -# line segments. Marker simplification is only available -# to :class:`~matplotlib.lines.Line2D` objects (through the -# ``markevery`` property). Wherever -# :class:`~matplotlib.lines.Line2D` construction parameters -# are passed through, such as -# :func:`matplotlib.pyplot.plot` and -# :meth:`matplotlib.axes.Axes.plot`, the ``markevery`` -# parameter can be used:: -# -# plt.plot(x, y, markevery=10) -# -# The markevery argument allows for naive subsampling, or an -# attempt at evenly spaced (along the *x* axis) sampling. See the -# :doc:`/gallery/lines_bars_and_markers/markevery_demo` -# for more information. -# -# Splitting lines into smaller chunks -# ----------------------------------- -# -# If you are using the Agg backend (see :ref:`what-is-a-backend`), -# then you can make use of the ``agg.path.chunksize`` rc parameter. -# This allows you to specify a chunk size, and any lines with -# greater than that many vertices will be split into multiple -# lines, each of which has no more than ``agg.path.chunksize`` -# many vertices. (Unless ``agg.path.chunksize`` is zero, in -# which case there is no chunking.) For some kind of data, -# chunking the line up into reasonable sizes can greatly -# decrease rendering time. -# -# The following script will first display the data without any -# chunk size restriction, and then display the same data with -# a chunk size of 10,000. The difference can best be seen when -# the figures are large, try maximizing the GUI and then -# interacting with them:: -# -# import numpy as np -# import matplotlib.pyplot as plt -# import matplotlib as mpl -# mpl.rcParams['path.simplify_threshold'] = 1.0 -# -# # Setup, and create the data to plot -# y = np.random.rand(100000) -# y[50000:] *= 2 -# y[np.logspace(1,np.log10(50000), 400).astype(int)] = -1 -# mpl.rcParams['path.simplify'] = True -# -# mpl.rcParams['agg.path.chunksize'] = 0 -# plt.plot(y) -# plt.show() -# -# mpl.rcParams['agg.path.chunksize'] = 10000 -# plt.plot(y) -# plt.show() -# -# Legends -# ------- -# -# The default legend behavior for axes attempts to find the location -# that covers the fewest data points (`loc='best'`). This can be a -# very expensive computation if there are lots of data points. In -# this case, you may want to provide a specific location. -# -# Using the *fast* style -# ---------------------- -# -# The *fast* style can be used to automatically set -# simplification and chunking parameters to reasonable -# settings to speed up plotting large amounts of data. -# It can be used simply by running:: -# -# import matplotlib.style as mplstyle -# mplstyle.use('fast') -# -# It is very light weight, so it plays nicely with other -# styles, just make sure the fast style is applied last -# so that other styles do not overwrite the settings:: -# -# mplstyle.use(['dark_background', 'ggplot', 'fast']) diff --git a/_downloads/841b2d8cdbb7d8760dcbefb0f783eb85/date_index_formatter.ipynb b/_downloads/841b2d8cdbb7d8760dcbefb0f783eb85/date_index_formatter.ipynb deleted file mode 100644 index de9201f4efb..00000000000 --- a/_downloads/841b2d8cdbb7d8760dcbefb0f783eb85/date_index_formatter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom tick formatter for time series\n\n\nWhen plotting time series, e.g., financial time series, one often wants\nto leave out days on which there is no data, i.e. weekends. The example\nbelow shows how to use an 'index formatter' to achieve the desired plot\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport matplotlib.ticker as ticker\n\n# Load a numpy record array from yahoo csv data with fields date, open, close,\n# volume, adj_close from the mpl-data/example directory. The record array\n# stores the date as an np.datetime64 with a day unit ('D') in the date column.\nwith cbook.get_sample_data('goog.npz') as datafile:\n r = np.load(datafile)['price_data'].view(np.recarray)\nr = r[-30:] # get the last 30 days\n# Matplotlib works better with datetime.datetime than np.datetime64, but the\n# latter is more portable.\ndate = r.date.astype('O')\n\n# first we'll do it the default way, with gaps on weekends\nfig, axes = plt.subplots(ncols=2, figsize=(8, 4))\nax = axes[0]\nax.plot(date, r.adj_close, 'o-')\nax.set_title(\"Default\")\nfig.autofmt_xdate()\n\n# next we'll write a custom formatter\nN = len(r)\nind = np.arange(N) # the evenly spaced plot indices\n\n\ndef format_date(x, pos=None):\n thisind = np.clip(int(x + 0.5), 0, N - 1)\n return date[thisind].strftime('%Y-%m-%d')\n\nax = axes[1]\nax.plot(ind, r.adj_close, 'o-')\nax.xaxis.set_major_formatter(ticker.FuncFormatter(format_date))\nax.set_title(\"Custom tick formatter\")\nfig.autofmt_xdate()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/841bf2c6092617672ddaf31fa997609b/3d_bars.ipynb b/_downloads/841bf2c6092617672ddaf31fa997609b/3d_bars.ipynb deleted file mode 120000 index a298f91cdeb..00000000000 --- a/_downloads/841bf2c6092617672ddaf31fa997609b/3d_bars.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/841bf2c6092617672ddaf31fa997609b/3d_bars.ipynb \ No newline at end of file diff --git a/_downloads/8424e14cdf5ec93eeb16aa121cf7f524/embedding_in_tk_sgskip.ipynb b/_downloads/8424e14cdf5ec93eeb16aa121cf7f524/embedding_in_tk_sgskip.ipynb deleted file mode 120000 index 49de88143ab..00000000000 --- a/_downloads/8424e14cdf5ec93eeb16aa121cf7f524/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8424e14cdf5ec93eeb16aa121cf7f524/embedding_in_tk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/8426bbf4e4183ce69683f080928be764/demo_parasite_axes.py b/_downloads/8426bbf4e4183ce69683f080928be764/demo_parasite_axes.py deleted file mode 120000 index ff5595e307a..00000000000 --- a/_downloads/8426bbf4e4183ce69683f080928be764/demo_parasite_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8426bbf4e4183ce69683f080928be764/demo_parasite_axes.py \ No newline at end of file diff --git a/_downloads/842e417e751a6c2fbcd478baa639708a/image_clip_path.py b/_downloads/842e417e751a6c2fbcd478baa639708a/image_clip_path.py deleted file mode 120000 index d5327b26e6b..00000000000 --- a/_downloads/842e417e751a6c2fbcd478baa639708a/image_clip_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/842e417e751a6c2fbcd478baa639708a/image_clip_path.py \ No newline at end of file diff --git a/_downloads/8435d3b03a879a6df3d780a3a68a58b0/fill_between_demo.ipynb b/_downloads/8435d3b03a879a6df3d780a3a68a58b0/fill_between_demo.ipynb deleted file mode 120000 index c871f21d47b..00000000000 --- a/_downloads/8435d3b03a879a6df3d780a3a68a58b0/fill_between_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8435d3b03a879a6df3d780a3a68a58b0/fill_between_demo.ipynb \ No newline at end of file diff --git a/_downloads/843740868e6a68884e70cc239fb4da64/barchart_demo.ipynb b/_downloads/843740868e6a68884e70cc239fb4da64/barchart_demo.ipynb deleted file mode 100644 index da4d09cb9f2..00000000000 --- a/_downloads/843740868e6a68884e70cc239fb4da64/barchart_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Percentiles as horizontal bar chart\n\n\nBar charts are useful for visualizing counts, or summary statistics\nwith error bars. Also see the :doc:`/gallery/lines_bars_and_markers/barchart`\nor the :doc:`/gallery/lines_bars_and_markers/barh` example for simpler versions\nof those features.\n\nThis example comes from an application in which grade school gym\nteachers wanted to be able to show parents how their child did across\na handful of fitness tests, and importantly, relative to how other\nchildren did. To extract the plotting code for demo purposes, we'll\njust make up some data for little Johnny Doe.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import MaxNLocator\nfrom collections import namedtuple\n\nnp.random.seed(42)\n\nStudent = namedtuple('Student', ['name', 'grade', 'gender'])\nScore = namedtuple('Score', ['score', 'percentile'])\n\n# GLOBAL CONSTANTS\ntestNames = ['Pacer Test', 'Flexed Arm\\n Hang', 'Mile Run', 'Agility',\n 'Push Ups']\ntestMeta = dict(zip(testNames, ['laps', 'sec', 'min:sec', 'sec', '']))\n\n\ndef attach_ordinal(num):\n \"\"\"helper function to add ordinal string to integers\n\n 1 -> 1st\n 56 -> 56th\n \"\"\"\n suffixes = {str(i): v\n for i, v in enumerate(['th', 'st', 'nd', 'rd', 'th',\n 'th', 'th', 'th', 'th', 'th'])}\n\n v = str(num)\n # special case early teens\n if v in {'11', '12', '13'}:\n return v + 'th'\n return v + suffixes[v[-1]]\n\n\ndef format_score(scr, test):\n \"\"\"\n Build up the score labels for the right Y-axis by first\n appending a carriage return to each string and then tacking on\n the appropriate meta information (i.e., 'laps' vs 'seconds'). We\n want the labels centered on the ticks, so if there is no meta\n info (like for pushups) then don't add the carriage return to\n the string\n \"\"\"\n md = testMeta[test]\n if md:\n return '{0}\\n{1}'.format(scr, md)\n else:\n return scr\n\n\ndef format_ycursor(y):\n y = int(y)\n if y < 0 or y >= len(testNames):\n return ''\n else:\n return testNames[y]\n\n\ndef plot_student_results(student, scores, cohort_size):\n # create the figure\n fig, ax1 = plt.subplots(figsize=(9, 7))\n fig.subplots_adjust(left=0.115, right=0.88)\n fig.canvas.set_window_title('Eldorado K-8 Fitness Chart')\n\n pos = np.arange(len(testNames))\n\n rects = ax1.barh(pos, [scores[k].percentile for k in testNames],\n align='center',\n height=0.5,\n tick_label=testNames)\n\n ax1.set_title(student.name)\n\n ax1.set_xlim([0, 100])\n ax1.xaxis.set_major_locator(MaxNLocator(11))\n ax1.xaxis.grid(True, linestyle='--', which='major',\n color='grey', alpha=.25)\n\n # Plot a solid vertical gridline to highlight the median position\n ax1.axvline(50, color='grey', alpha=0.25)\n\n # Set the right-hand Y-axis ticks and labels\n ax2 = ax1.twinx()\n\n scoreLabels = [format_score(scores[k].score, k) for k in testNames]\n\n # set the tick locations\n ax2.set_yticks(pos)\n # make sure that the limits are set equally on both yaxis so the\n # ticks line up\n ax2.set_ylim(ax1.get_ylim())\n\n # set the tick labels\n ax2.set_yticklabels(scoreLabels)\n\n ax2.set_ylabel('Test Scores')\n\n xlabel = ('Percentile Ranking Across {grade} Grade {gender}s\\n'\n 'Cohort Size: {cohort_size}')\n ax1.set_xlabel(xlabel.format(grade=attach_ordinal(student.grade),\n gender=student.gender.title(),\n cohort_size=cohort_size))\n\n rect_labels = []\n # Lastly, write in the ranking inside each bar to aid in interpretation\n for rect in rects:\n # Rectangle widths are already integer-valued but are floating\n # type, so it helps to remove the trailing decimal point and 0 by\n # converting width to int type\n width = int(rect.get_width())\n\n rankStr = attach_ordinal(width)\n # The bars aren't wide enough to print the ranking inside\n if width < 40:\n # Shift the text to the right side of the right edge\n xloc = 5\n # Black against white background\n clr = 'black'\n align = 'left'\n else:\n # Shift the text to the left side of the right edge\n xloc = -5\n # White on magenta\n clr = 'white'\n align = 'right'\n\n # Center the text vertically in the bar\n yloc = rect.get_y() + rect.get_height() / 2\n label = ax1.annotate(rankStr, xy=(width, yloc), xytext=(xloc, 0),\n textcoords=\"offset points\",\n ha=align, va='center',\n color=clr, weight='bold', clip_on=True)\n rect_labels.append(label)\n\n # make the interactive mouse over give the bar title\n ax2.fmt_ydata = format_ycursor\n # return all of the artists created\n return {'fig': fig,\n 'ax': ax1,\n 'ax_right': ax2,\n 'bars': rects,\n 'perc_labels': rect_labels}\n\n\nstudent = Student('Johnny Doe', 2, 'boy')\nscores = dict(zip(testNames,\n (Score(v, p) for v, p in\n zip(['7', '48', '12:52', '17', '14'],\n np.round(np.random.uniform(0, 1,\n len(testNames)) * 100, 0)))))\ncohort_size = 62 # The number of other 2nd grade boys\n\narts = plot_student_results(student, scores, cohort_size)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate\nmatplotlib.axes.Axes.twinx" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/843954557dd64ae5adf0810afe4f71ec/whats_new_98_4_fill_between.py b/_downloads/843954557dd64ae5adf0810afe4f71ec/whats_new_98_4_fill_between.py deleted file mode 120000 index ab40559d0c0..00000000000 --- a/_downloads/843954557dd64ae5adf0810afe4f71ec/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/843954557dd64ae5adf0810afe4f71ec/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/_downloads/8441b5ca6d56121e30fd7761eea94fa3/secondary_axis.ipynb b/_downloads/8441b5ca6d56121e30fd7761eea94fa3/secondary_axis.ipynb deleted file mode 120000 index 5d4b19e9a43..00000000000 --- a/_downloads/8441b5ca6d56121e30fd7761eea94fa3/secondary_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8441b5ca6d56121e30fd7761eea94fa3/secondary_axis.ipynb \ No newline at end of file diff --git a/_downloads/8443e228c7c87fd62ba1be48ff1ef3bf/2dcollections3d.ipynb b/_downloads/8443e228c7c87fd62ba1be48ff1ef3bf/2dcollections3d.ipynb deleted file mode 120000 index fc49adbae3b..00000000000 --- a/_downloads/8443e228c7c87fd62ba1be48ff1ef3bf/2dcollections3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8443e228c7c87fd62ba1be48ff1ef3bf/2dcollections3d.ipynb \ No newline at end of file diff --git a/_downloads/844e8b64fc92d2e13990e6ad63796743/symlog_demo.ipynb b/_downloads/844e8b64fc92d2e13990e6ad63796743/symlog_demo.ipynb deleted file mode 100644 index 9c545f739cb..00000000000 --- a/_downloads/844e8b64fc92d2e13990e6ad63796743/symlog_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Symlog Demo\n\n\nExample use of symlog (symmetric log) axis scaling.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\ndt = 0.01\nx = np.arange(-50.0, 50.0, dt)\ny = np.arange(0, 100.0, dt)\n\nplt.subplot(311)\nplt.plot(x, y)\nplt.xscale('symlog')\nplt.ylabel('symlogx')\nplt.grid(True)\nplt.gca().xaxis.grid(True, which='minor') # minor grid on too\n\nplt.subplot(312)\nplt.plot(y, x)\nplt.yscale('symlog')\nplt.ylabel('symlogy')\n\nplt.subplot(313)\nplt.plot(x, np.sin(x / 3.0))\nplt.xscale('symlog')\nplt.yscale('symlog', linthreshy=0.015)\nplt.grid(True)\nplt.ylabel('symlog both')\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8456a29d3b37c93723f100bce32eafa3/pcolormesh_levels.ipynb b/_downloads/8456a29d3b37c93723f100bce32eafa3/pcolormesh_levels.ipynb deleted file mode 120000 index ece1de4392c..00000000000 --- a/_downloads/8456a29d3b37c93723f100bce32eafa3/pcolormesh_levels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8456a29d3b37c93723f100bce32eafa3/pcolormesh_levels.ipynb \ No newline at end of file diff --git a/_downloads/845cd587e007b609e65c3375f6b6a702/agg_buffer_to_array.py b/_downloads/845cd587e007b609e65c3375f6b6a702/agg_buffer_to_array.py deleted file mode 120000 index 3163845691e..00000000000 --- a/_downloads/845cd587e007b609e65c3375f6b6a702/agg_buffer_to_array.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/845cd587e007b609e65c3375f6b6a702/agg_buffer_to_array.py \ No newline at end of file diff --git a/_downloads/846438fb3173e9db2fd66378f9f4e2b2/multi_image.py b/_downloads/846438fb3173e9db2fd66378f9f4e2b2/multi_image.py deleted file mode 100644 index e8df23d1d81..00000000000 --- a/_downloads/846438fb3173e9db2fd66378f9f4e2b2/multi_image.py +++ /dev/null @@ -1,74 +0,0 @@ -""" -=========== -Multi Image -=========== - -Make a set of images with a single colormap, norm, and colorbar. -""" - -from matplotlib import colors -import matplotlib.pyplot as plt -import numpy as np - -np.random.seed(19680801) -Nr = 3 -Nc = 2 -cmap = "cool" - -fig, axs = plt.subplots(Nr, Nc) -fig.suptitle('Multiple images') - -images = [] -for i in range(Nr): - for j in range(Nc): - # Generate data with a range that varies from one plot to the next. - data = ((1 + i + j) / 10) * np.random.rand(10, 20) * 1e-6 - images.append(axs[i, j].imshow(data, cmap=cmap)) - axs[i, j].label_outer() - -# Find the min and max of all colors for use in setting the color scale. -vmin = min(image.get_array().min() for image in images) -vmax = max(image.get_array().max() for image in images) -norm = colors.Normalize(vmin=vmin, vmax=vmax) -for im in images: - im.set_norm(norm) - -fig.colorbar(images[0], ax=axs, orientation='horizontal', fraction=.1) - - -# Make images respond to changes in the norm of other images (e.g. via the -# "edit axis, curves and images parameters" GUI on Qt), but be careful not to -# recurse infinitely! -def update(changed_image): - for im in images: - if (changed_image.get_cmap() != im.get_cmap() - or changed_image.get_clim() != im.get_clim()): - im.set_cmap(changed_image.get_cmap()) - im.set_clim(changed_image.get_clim()) - - -for im in images: - im.callbacksSM.connect('changed', update) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.Normalize -matplotlib.cm.ScalarMappable.set_cmap -matplotlib.cm.ScalarMappable.set_norm -matplotlib.cm.ScalarMappable.set_clim -matplotlib.cbook.CallbackRegistry.connect diff --git a/_downloads/846efbc85ae7766606b54f85bacd0927/custom_cmap.py b/_downloads/846efbc85ae7766606b54f85bacd0927/custom_cmap.py deleted file mode 120000 index 53dd8b4f4af..00000000000 --- a/_downloads/846efbc85ae7766606b54f85bacd0927/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/846efbc85ae7766606b54f85bacd0927/custom_cmap.py \ No newline at end of file diff --git a/_downloads/8471e643e553eb1a8dbfd5108dae7fd8/inset_locator_demo.ipynb b/_downloads/8471e643e553eb1a8dbfd5108dae7fd8/inset_locator_demo.ipynb deleted file mode 120000 index a7614e76574..00000000000 --- a/_downloads/8471e643e553eb1a8dbfd5108dae7fd8/inset_locator_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8471e643e553eb1a8dbfd5108dae7fd8/inset_locator_demo.ipynb \ No newline at end of file diff --git a/_downloads/84726a458a6077ac281d6fab2615fe06/annotate_text_arrow.ipynb b/_downloads/84726a458a6077ac281d6fab2615fe06/annotate_text_arrow.ipynb deleted file mode 120000 index 351924d8669..00000000000 --- a/_downloads/84726a458a6077ac281d6fab2615fe06/annotate_text_arrow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/84726a458a6077ac281d6fab2615fe06/annotate_text_arrow.ipynb \ No newline at end of file diff --git a/_downloads/84743212483db08694f82d84e078c3fe/legend.ipynb b/_downloads/84743212483db08694f82d84e078c3fe/legend.ipynb deleted file mode 120000 index 15ebf01ab2e..00000000000 --- a/_downloads/84743212483db08694f82d84e078c3fe/legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84743212483db08694f82d84e078c3fe/legend.ipynb \ No newline at end of file diff --git a/_downloads/84746cf864045e0392a3c7eff7728edd/subplots_adjust.ipynb b/_downloads/84746cf864045e0392a3c7eff7728edd/subplots_adjust.ipynb deleted file mode 100644 index 011ea194268..00000000000 --- a/_downloads/84746cf864045e0392a3c7eff7728edd/subplots_adjust.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Subplots Adjust\n\n\nAdjusting the spacing of margins and subplots using\n:func:`~matplotlib.pyplot.subplots_adjust`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nplt.subplot(211)\nplt.imshow(np.random.random((100, 100)), cmap=plt.cm.BuPu_r)\nplt.subplot(212)\nplt.imshow(np.random.random((100, 100)), cmap=plt.cm.BuPu_r)\n\nplt.subplots_adjust(bottom=0.1, right=0.8, top=0.9)\ncax = plt.axes([0.85, 0.1, 0.075, 0.8])\nplt.colorbar(cax=cax)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8476a07f3053b6c4dd28794aa275b270/broken_barh.py b/_downloads/8476a07f3053b6c4dd28794aa275b270/broken_barh.py deleted file mode 100644 index c0691beaf25..00000000000 --- a/_downloads/8476a07f3053b6c4dd28794aa275b270/broken_barh.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -=========== -Broken Barh -=========== - -Make a "broken" horizontal bar plot, i.e., one with gaps -""" -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() -ax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue') -ax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9), - facecolors=('tab:orange', 'tab:green', 'tab:red')) -ax.set_ylim(5, 35) -ax.set_xlim(0, 200) -ax.set_xlabel('seconds since start') -ax.set_yticks([15, 25]) -ax.set_yticklabels(['Bill', 'Jim']) -ax.grid(True) -ax.annotate('race interrupted', (61, 25), - xytext=(0.8, 0.9), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - fontsize=16, - horizontalalignment='right', verticalalignment='top') - -plt.show() diff --git a/_downloads/847b61cd49ee612198b5da08f5d0be18/simple_plot.py b/_downloads/847b61cd49ee612198b5da08f5d0be18/simple_plot.py deleted file mode 100644 index f51e16015b2..00000000000 --- a/_downloads/847b61cd49ee612198b5da08f5d0be18/simple_plot.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -=========== -Simple Plot -=========== - -Create a simple plot. -""" - -import matplotlib -import matplotlib.pyplot as plt -import numpy as np - -# Data for plotting -t = np.arange(0.0, 2.0, 0.01) -s = 1 + np.sin(2 * np.pi * t) - -fig, ax = plt.subplots() -ax.plot(t, s) - -ax.set(xlabel='time (s)', ylabel='voltage (mV)', - title='About as simple as it gets, folks') -ax.grid() - -fig.savefig("test.png") -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.pyplot.subplots -matplotlib.figure.Figure.savefig diff --git a/_downloads/847f1b9136602c1fa8b02ce4aa82f685/spectrum_demo.py b/_downloads/847f1b9136602c1fa8b02ce4aa82f685/spectrum_demo.py deleted file mode 100644 index bca00e4ea6f..00000000000 --- a/_downloads/847f1b9136602c1fa8b02ce4aa82f685/spectrum_demo.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -======================== -Spectrum Representations -======================== - -The plots show different spectrum representations of a sine signal with -additive noise. A (frequency) spectrum of a discrete-time signal is calculated -by utilizing the fast Fourier transform (FFT). -""" -import matplotlib.pyplot as plt -import numpy as np - - -np.random.seed(0) - -dt = 0.01 # sampling interval -Fs = 1 / dt # sampling frequency -t = np.arange(0, 10, dt) - -# generate noise: -nse = np.random.randn(len(t)) -r = np.exp(-t / 0.05) -cnse = np.convolve(nse, r) * dt -cnse = cnse[:len(t)] - -s = 0.1 * np.sin(4 * np.pi * t) + cnse # the signal - -fig, axes = plt.subplots(nrows=3, ncols=2, figsize=(7, 7)) - -# plot time signal: -axes[0, 0].set_title("Signal") -axes[0, 0].plot(t, s, color='C0') -axes[0, 0].set_xlabel("Time") -axes[0, 0].set_ylabel("Amplitude") - -# plot different spectrum types: -axes[1, 0].set_title("Magnitude Spectrum") -axes[1, 0].magnitude_spectrum(s, Fs=Fs, color='C1') - -axes[1, 1].set_title("Log. Magnitude Spectrum") -axes[1, 1].magnitude_spectrum(s, Fs=Fs, scale='dB', color='C1') - -axes[2, 0].set_title("Phase Spectrum ") -axes[2, 0].phase_spectrum(s, Fs=Fs, color='C2') - -axes[2, 1].set_title("Angle Spectrum") -axes[2, 1].angle_spectrum(s, Fs=Fs, color='C2') - -axes[0, 1].remove() # don't display empty ax - -fig.tight_layout() -plt.show() diff --git a/_downloads/84848c00b5aec777be439748ced5d330/align_ylabels.py b/_downloads/84848c00b5aec777be439748ced5d330/align_ylabels.py deleted file mode 120000 index 120ee0e4bcb..00000000000 --- a/_downloads/84848c00b5aec777be439748ced5d330/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/84848c00b5aec777be439748ced5d330/align_ylabels.py \ No newline at end of file diff --git a/_downloads/848503b9f7d4a4f4528610f8fb5f8c1e/annotate_simple_coord01.py b/_downloads/848503b9f7d4a4f4528610f8fb5f8c1e/annotate_simple_coord01.py deleted file mode 100644 index 71f2642ccaf..00000000000 --- a/_downloads/848503b9f7d4a4f4528610f8fb5f8c1e/annotate_simple_coord01.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -======================= -Annotate Simple Coord01 -======================= - -""" - -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(3, 2)) -an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) -an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1, - xytext=(30, 0), textcoords="offset points", - va="center", ha="left", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) -plt.show() diff --git a/_downloads/8495253059d9978f366a009e232726ce/scatter.py b/_downloads/8495253059d9978f366a009e232726ce/scatter.py deleted file mode 100644 index 673766a6ea4..00000000000 --- a/_downloads/8495253059d9978f366a009e232726ce/scatter.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============ -Scatter plot -============ - -This example showcases a simple scatter plot. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -N = 50 -x = np.random.rand(N) -y = np.random.rand(N) -colors = np.random.rand(N) -area = (30 * np.random.rand(N))**2 # 0 to 15 point radii - -plt.scatter(x, y, s=area, c=colors, alpha=0.5) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: -import matplotlib - -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter diff --git a/_downloads/849603e5d0bb96d4b3cbe113cd6a973b/contour_corner_mask.ipynb b/_downloads/849603e5d0bb96d4b3cbe113cd6a973b/contour_corner_mask.ipynb deleted file mode 120000 index 3713ada61bb..00000000000 --- a/_downloads/849603e5d0bb96d4b3cbe113cd6a973b/contour_corner_mask.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/849603e5d0bb96d4b3cbe113cd6a973b/contour_corner_mask.ipynb \ No newline at end of file diff --git a/_downloads/84a4e3d69e2f382a037fda504d4cf2c6/ticklabels_rotation.ipynb b/_downloads/84a4e3d69e2f382a037fda504d4cf2c6/ticklabels_rotation.ipynb deleted file mode 120000 index 69256d3c364..00000000000 --- a/_downloads/84a4e3d69e2f382a037fda504d4cf2c6/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/84a4e3d69e2f382a037fda504d4cf2c6/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/84a908259ea1119b682065c09885b2e4/subplot_toolbar.ipynb b/_downloads/84a908259ea1119b682065c09885b2e4/subplot_toolbar.ipynb deleted file mode 120000 index 7ae7c1eff06..00000000000 --- a/_downloads/84a908259ea1119b682065c09885b2e4/subplot_toolbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/84a908259ea1119b682065c09885b2e4/subplot_toolbar.ipynb \ No newline at end of file diff --git a/_downloads/84b114a0032e354197d586a360f93499/fill_betweenx_demo.py b/_downloads/84b114a0032e354197d586a360f93499/fill_betweenx_demo.py deleted file mode 120000 index 1213f90cb7a..00000000000 --- a/_downloads/84b114a0032e354197d586a360f93499/fill_betweenx_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/84b114a0032e354197d586a360f93499/fill_betweenx_demo.py \ No newline at end of file diff --git a/_downloads/84b5a439067a8090c29bffdd6e2c8b65/axline.py b/_downloads/84b5a439067a8090c29bffdd6e2c8b65/axline.py deleted file mode 120000 index e4220d0b694..00000000000 --- a/_downloads/84b5a439067a8090c29bffdd6e2c8b65/axline.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84b5a439067a8090c29bffdd6e2c8b65/axline.py \ No newline at end of file diff --git a/_downloads/84bbdcec3d5e8fc879dc337d4510cc3b/mixed_subplots.py b/_downloads/84bbdcec3d5e8fc879dc337d4510cc3b/mixed_subplots.py deleted file mode 100644 index a325171e3c8..00000000000 --- a/_downloads/84bbdcec3d5e8fc879dc337d4510cc3b/mixed_subplots.py +++ /dev/null @@ -1,48 +0,0 @@ -""" -================================= -2D and 3D *Axes* in same *Figure* -================================= - -This example shows a how to plot a 2D and 3D plot on the same figure. -""" -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -def f(t): - return np.cos(2*np.pi*t) * np.exp(-t) - - -# Set up a figure twice as tall as it is wide -fig = plt.figure(figsize=plt.figaspect(2.)) -fig.suptitle('A tale of 2 subplots') - -# First subplot -ax = fig.add_subplot(2, 1, 1) - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) -t3 = np.arange(0.0, 2.0, 0.01) - -ax.plot(t1, f(t1), 'bo', - t2, f(t2), 'k--', markerfacecolor='green') -ax.grid(True) -ax.set_ylabel('Damped oscillation') - -# Second subplot -ax = fig.add_subplot(2, 1, 2, projection='3d') - -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, - linewidth=0, antialiased=False) -ax.set_zlim(-1, 1) - -plt.show() diff --git a/_downloads/84c92e4ee39b295ab6f7f46b0165e7e9/font_family_rc_sgskip.ipynb b/_downloads/84c92e4ee39b295ab6f7f46b0165e7e9/font_family_rc_sgskip.ipynb deleted file mode 120000 index b308064d57e..00000000000 --- a/_downloads/84c92e4ee39b295ab6f7f46b0165e7e9/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/84c92e4ee39b295ab6f7f46b0165e7e9/font_family_rc_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/84cea4077854bc474b4a08848c97538a/colormap_normalizations_lognorm.ipynb b/_downloads/84cea4077854bc474b4a08848c97538a/colormap_normalizations_lognorm.ipynb deleted file mode 120000 index 0bdf6e4da23..00000000000 --- a/_downloads/84cea4077854bc474b4a08848c97538a/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/84cea4077854bc474b4a08848c97538a/colormap_normalizations_lognorm.ipynb \ No newline at end of file diff --git a/_downloads/84cf1e0b617140283094f1ff08db394b/figlegend_demo.py b/_downloads/84cf1e0b617140283094f1ff08db394b/figlegend_demo.py deleted file mode 100644 index 674b7627f09..00000000000 --- a/_downloads/84cf1e0b617140283094f1ff08db394b/figlegend_demo.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -================== -Figure legend demo -================== - -Instead of plotting a legend on each axis, a legend for all the artists on all -the sub-axes of a figure can be plotted instead. -""" - -import numpy as np -import matplotlib.pyplot as plt - -fig, axs = plt.subplots(1, 2) - -x = np.arange(0.0, 2.0, 0.02) -y1 = np.sin(2 * np.pi * x) -y2 = np.exp(-x) -l1, = axs[0].plot(x, y1) -l2, = axs[0].plot(x, y2, marker='o') - -y3 = np.sin(4 * np.pi * x) -y4 = np.exp(-2 * x) -l3, = axs[1].plot(x, y3, color='tab:green') -l4, = axs[1].plot(x, y4, color='tab:red', marker='^') - -fig.legend((l1, l2), ('Line 1', 'Line 2'), 'upper left') -fig.legend((l3, l4), ('Line 3', 'Line 4'), 'upper right') - -plt.tight_layout() -plt.show() diff --git a/_downloads/84d7120eade96f855218bce179274445/errorbar_subsample.ipynb b/_downloads/84d7120eade96f855218bce179274445/errorbar_subsample.ipynb deleted file mode 120000 index fe8b694ef3b..00000000000 --- a/_downloads/84d7120eade96f855218bce179274445/errorbar_subsample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84d7120eade96f855218bce179274445/errorbar_subsample.ipynb \ No newline at end of file diff --git a/_downloads/84dfba5c353d87c98c192766a1a206ab/sankey_links.ipynb b/_downloads/84dfba5c353d87c98c192766a1a206ab/sankey_links.ipynb deleted file mode 120000 index 4dc6f0cb1a9..00000000000 --- a/_downloads/84dfba5c353d87c98c192766a1a206ab/sankey_links.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/84dfba5c353d87c98c192766a1a206ab/sankey_links.ipynb \ No newline at end of file diff --git a/_downloads/84edd6ac27014080dba35f7e0c7e5ac1/linestyles.py b/_downloads/84edd6ac27014080dba35f7e0c7e5ac1/linestyles.py deleted file mode 120000 index c3c38c90872..00000000000 --- a/_downloads/84edd6ac27014080dba35f7e0c7e5ac1/linestyles.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/84edd6ac27014080dba35f7e0c7e5ac1/linestyles.py \ No newline at end of file diff --git a/_downloads/84eff2a8c77323850f456055335bb7ca/contour_frontpage.ipynb b/_downloads/84eff2a8c77323850f456055335bb7ca/contour_frontpage.ipynb deleted file mode 120000 index f7e76a0b934..00000000000 --- a/_downloads/84eff2a8c77323850f456055335bb7ca/contour_frontpage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/84eff2a8c77323850f456055335bb7ca/contour_frontpage.ipynb \ No newline at end of file diff --git a/_downloads/84f6fe1dbfd66ce3495ed3a25b245d12/csd_demo.py b/_downloads/84f6fe1dbfd66ce3495ed3a25b245d12/csd_demo.py deleted file mode 120000 index e22c38825ea..00000000000 --- a/_downloads/84f6fe1dbfd66ce3495ed3a25b245d12/csd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84f6fe1dbfd66ce3495ed3a25b245d12/csd_demo.py \ No newline at end of file diff --git a/_downloads/84f8193e80e39b9696e1bb5bd6522192/barchart.ipynb b/_downloads/84f8193e80e39b9696e1bb5bd6522192/barchart.ipynb deleted file mode 120000 index 4348127f941..00000000000 --- a/_downloads/84f8193e80e39b9696e1bb5bd6522192/barchart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84f8193e80e39b9696e1bb5bd6522192/barchart.ipynb \ No newline at end of file diff --git a/_downloads/84f86ab6ebf7f8b42b665e169d19d4cc/barh.ipynb b/_downloads/84f86ab6ebf7f8b42b665e169d19d4cc/barh.ipynb deleted file mode 120000 index 59e8055afd6..00000000000 --- a/_downloads/84f86ab6ebf7f8b42b665e169d19d4cc/barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84f86ab6ebf7f8b42b665e169d19d4cc/barh.ipynb \ No newline at end of file diff --git a/_downloads/84fa26b2e0742bf9c29e1eaa08e94134/zorder_demo.ipynb b/_downloads/84fa26b2e0742bf9c29e1eaa08e94134/zorder_demo.ipynb deleted file mode 120000 index 9c10c122a43..00000000000 --- a/_downloads/84fa26b2e0742bf9c29e1eaa08e94134/zorder_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/84fa26b2e0742bf9c29e1eaa08e94134/zorder_demo.ipynb \ No newline at end of file diff --git a/_downloads/8502b5925b0e2a090b400fa4870eaec2/subplot_toolbar.py b/_downloads/8502b5925b0e2a090b400fa4870eaec2/subplot_toolbar.py deleted file mode 120000 index 7a8d3dd3717..00000000000 --- a/_downloads/8502b5925b0e2a090b400fa4870eaec2/subplot_toolbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8502b5925b0e2a090b400fa4870eaec2/subplot_toolbar.py \ No newline at end of file diff --git a/_downloads/850440edba2e1c86b8a736d29f5cc466/accented_text.py b/_downloads/850440edba2e1c86b8a736d29f5cc466/accented_text.py deleted file mode 100644 index c7f4523e600..00000000000 --- a/_downloads/850440edba2e1c86b8a736d29f5cc466/accented_text.py +++ /dev/null @@ -1,36 +0,0 @@ -r""" -================================= -Using accented text in matplotlib -================================= - -Matplotlib supports accented characters via TeX mathtext or unicode. - -Using mathtext, the following accents are provided: \hat, \breve, \grave, \bar, -\acute, \tilde, \vec, \dot, \ddot. All of them have the same syntax, -e.g., to make an overbar you do \bar{o} or to make an o umlaut you do -\ddot{o}. The shortcuts are also provided, e.g.,: \"o \'e \`e \~n \.x -\^y - -""" -import matplotlib.pyplot as plt - -# Mathtext demo -fig, ax = plt.subplots() -ax.plot(range(10)) -ax.set_title(r'$\ddot{o}\acute{e}\grave{e}\hat{O}' - r'\breve{i}\bar{A}\tilde{n}\vec{q}$', fontsize=20) - -# Shorthand is also supported and curly braces are optional -ax.set_xlabel(r"""$\"o\ddot o \'e\`e\~n\.x\^y$""", fontsize=20) -ax.text(4, 0.5, r"$F=m\ddot{x}$") -fig.tight_layout() - -# Unicode demo -fig, ax = plt.subplots() -ax.set_title("GISCARD CHAHUTÉ À L'ASSEMBLÉE") -ax.set_xlabel("LE COUP DE DÉ DE DE GAULLE") -ax.set_ylabel('André was here!') -ax.text(0.2, 0.8, 'Institut für Festkörperphysik', rotation=45) -ax.text(0.4, 0.2, 'AVA (check kerning)') - -plt.show() diff --git a/_downloads/850b3ddf937b34fab5b2fd518a55f525/pathpatch3d.ipynb b/_downloads/850b3ddf937b34fab5b2fd518a55f525/pathpatch3d.ipynb deleted file mode 120000 index 911927584fc..00000000000 --- a/_downloads/850b3ddf937b34fab5b2fd518a55f525/pathpatch3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/850b3ddf937b34fab5b2fd518a55f525/pathpatch3d.ipynb \ No newline at end of file diff --git a/_downloads/850f3652bfd1e8438abc26458dc5afb2/ellipse_collection.py b/_downloads/850f3652bfd1e8438abc26458dc5afb2/ellipse_collection.py deleted file mode 120000 index 47dd9e43b90..00000000000 --- a/_downloads/850f3652bfd1e8438abc26458dc5afb2/ellipse_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/850f3652bfd1e8438abc26458dc5afb2/ellipse_collection.py \ No newline at end of file diff --git a/_downloads/851524088fef75f73f0cc7c0d1fce6e1/zorder_demo.py b/_downloads/851524088fef75f73f0cc7c0d1fce6e1/zorder_demo.py deleted file mode 120000 index 98d5d8c8f9f..00000000000 --- a/_downloads/851524088fef75f73f0cc7c0d1fce6e1/zorder_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/851524088fef75f73f0cc7c0d1fce6e1/zorder_demo.py \ No newline at end of file diff --git a/_downloads/851ef371f270e32dd158d0e3c2253c57/pgf.py b/_downloads/851ef371f270e32dd158d0e3c2253c57/pgf.py deleted file mode 100644 index 31b413d065a..00000000000 --- a/_downloads/851ef371f270e32dd158d0e3c2253c57/pgf.py +++ /dev/null @@ -1,195 +0,0 @@ -r""" -********************************* -Typesetting With XeLaTeX/LuaLaTeX -********************************* - -How to typeset text with the ``pgf`` backend in Matplotlib. - -Using the ``pgf`` backend, matplotlib can export figures as pgf drawing commands -that can be processed with pdflatex, xelatex or lualatex. XeLaTeX and LuaLaTeX -have full unicode support and can use any font that is installed in the operating -system, making use of advanced typographic features of OpenType, AAT and -Graphite. Pgf pictures created by ``plt.savefig('figure.pgf')`` can be -embedded as raw commands in LaTeX documents. Figures can also be directly -compiled and saved to PDF with ``plt.savefig('figure.pdf')`` by either -switching to the backend - -.. code-block:: python - - matplotlib.use('pgf') - -or registering it for handling pdf output - -.. code-block:: python - - from matplotlib.backends.backend_pgf import FigureCanvasPgf - matplotlib.backend_bases.register_backend('pdf', FigureCanvasPgf) - -The second method allows you to keep using regular interactive backends and to -save xelatex, lualatex or pdflatex compiled PDF files from the graphical user interface. - -Matplotlib's pgf support requires a recent LaTeX_ installation that includes -the TikZ/PGF packages (such as TeXLive_), preferably with XeLaTeX or LuaLaTeX -installed. If either pdftocairo or ghostscript is present on your system, -figures can optionally be saved to PNG images as well. The executables -for all applications must be located on your :envvar:`PATH`. - -Rc parameters that control the behavior of the pgf backend: - - ================= ===================================================== - Parameter Documentation - ================= ===================================================== - pgf.preamble Lines to be included in the LaTeX preamble - pgf.rcfonts Setup fonts from rc params using the fontspec package - pgf.texsystem Either "xelatex" (default), "lualatex" or "pdflatex" - ================= ===================================================== - -.. note:: - - TeX defines a set of special characters, such as:: - - # $ % & ~ _ ^ \ { } - - Generally, these characters must be escaped correctly. For convenience, - some characters (_,^,%) are automatically escaped outside of math - environments. - -.. _pgf-rcfonts: - - -Multi-Page PDF Files -==================== - -The pgf backend also supports multipage pdf files using ``PdfPages`` - -.. code-block:: python - - from matplotlib.backends.backend_pgf import PdfPages - import matplotlib.pyplot as plt - - with PdfPages('multipage.pdf', metadata={'author': 'Me'}) as pdf: - - fig1, ax1 = plt.subplots() - ax1.plot([1, 5, 3]) - pdf.savefig(fig1) - - fig2, ax2 = plt.subplots() - ax2.plot([1, 5, 3]) - pdf.savefig(fig2) - - -Font specification -================== - -The fonts used for obtaining the size of text elements or when compiling -figures to PDF are usually defined in the matplotlib rc parameters. You can -also use the LaTeX default Computer Modern fonts by clearing the lists for -``font.serif``, ``font.sans-serif`` or ``font.monospace``. Please note that -the glyph coverage of these fonts is very limited. If you want to keep the -Computer Modern font face but require extended unicode support, consider -installing the `Computer Modern Unicode `_ -fonts *CMU Serif*, *CMU Sans Serif*, etc. - -When saving to ``.pgf``, the font configuration matplotlib used for the -layout of the figure is included in the header of the text file. - -.. literalinclude:: ../../gallery/userdemo/pgf_fonts.py - :end-before: plt.savefig - - -.. _pgf-preamble: - -Custom preamble -=============== - -Full customization is possible by adding your own commands to the preamble. -Use the ``pgf.preamble`` parameter if you want to configure the math fonts, -using ``unicode-math`` for example, or for loading additional packages. Also, -if you want to do the font configuration yourself instead of using the fonts -specified in the rc parameters, make sure to disable ``pgf.rcfonts``. - -.. only:: html - - .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py - :end-before: plt.savefig - -.. only:: latex - - .. literalinclude:: ../../gallery/userdemo/pgf_preamble_sgskip.py - :end-before: import matplotlib.pyplot as plt - - -.. _pgf-texsystem: - -Choosing the TeX system -======================= - -The TeX system to be used by matplotlib is chosen by the ``pgf.texsystem`` -parameter. Possible values are ``'xelatex'`` (default), ``'lualatex'`` and -``'pdflatex'``. Please note that when selecting pdflatex the fonts and -unicode handling must be configured in the preamble. - -.. literalinclude:: ../../gallery/userdemo/pgf_texsystem.py - :end-before: plt.savefig - - -.. _pgf-troubleshooting: - -Troubleshooting -=============== - -* Please note that the TeX packages found in some Linux distributions and - MiKTeX installations are dramatically outdated. Make sure to update your - package catalog and upgrade or install a recent TeX distribution. - -* On Windows, the :envvar:`PATH` environment variable may need to be modified - to include the directories containing the latex, dvipng and ghostscript - executables. See :ref:`environment-variables` and - :ref:`setting-windows-environment-variables` for details. - -* A limitation on Windows causes the backend to keep file handles that have - been opened by your application open. As a result, it may not be possible - to delete the corresponding files until the application closes (see - `#1324 `_). - -* Sometimes the font rendering in figures that are saved to png images is - very bad. This happens when the pdftocairo tool is not available and - ghostscript is used for the pdf to png conversion. - -* Make sure what you are trying to do is possible in a LaTeX document, - that your LaTeX syntax is valid and that you are using raw strings - if necessary to avoid unintended escape sequences. - -* The ``pgf.preamble`` rc setting provides lots of flexibility, and lots of - ways to cause problems. When experiencing problems, try to minimalize or - disable the custom preamble. - -* Configuring an ``unicode-math`` environment can be a bit tricky. The - TeXLive distribution for example provides a set of math fonts which are - usually not installed system-wide. XeTeX, unlike LuaLatex, cannot find - these fonts by their name, which is why you might have to specify - ``\setmathfont{xits-math.otf}`` instead of ``\setmathfont{XITS Math}`` or - alternatively make the fonts available to your OS. See this - `tex.stackexchange.com question `_ - for more details. - -* If the font configuration used by matplotlib differs from the font setting - in yout LaTeX document, the alignment of text elements in imported figures - may be off. Check the header of your ``.pgf`` file if you are unsure about - the fonts matplotlib used for the layout. - -* Vector images and hence ``.pgf`` files can become bloated if there are a lot - of objects in the graph. This can be the case for image processing or very - big scatter graphs. In an extreme case this can cause TeX to run out of - memory: "TeX capacity exceeded, sorry" You can configure latex to increase - the amount of memory available to generate the ``.pdf`` image as discussed on - `tex.stackexchange.com `_. - Another way would be to "rasterize" parts of the graph causing problems - using either the ``rasterized=True`` keyword, or ``.set_rasterized(True)`` as per - :doc:`this example `. - -* If you still need help, please see :ref:`reporting-problems` - -.. _LaTeX: http://www.tug.org -.. _TeXLive: http://www.tug.org/texlive/ -""" diff --git a/_downloads/8520292f054498e2cc33dba8c7091677/fill_spiral.py b/_downloads/8520292f054498e2cc33dba8c7091677/fill_spiral.py deleted file mode 120000 index 8b2957fafee..00000000000 --- a/_downloads/8520292f054498e2cc33dba8c7091677/fill_spiral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8520292f054498e2cc33dba8c7091677/fill_spiral.py \ No newline at end of file diff --git a/_downloads/852918662ad0df93985ed3639dbcb328/markevery_prop_cycle.py b/_downloads/852918662ad0df93985ed3639dbcb328/markevery_prop_cycle.py deleted file mode 100644 index 295de475673..00000000000 --- a/_downloads/852918662ad0df93985ed3639dbcb328/markevery_prop_cycle.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -========================================= -prop_cycle property markevery in rcParams -========================================= - -This example demonstrates a working solution to issue #8576, providing full -support of the markevery property for axes.prop_cycle assignments through -rcParams. Makes use of the same list of markevery cases from the -:doc:`markevery demo -`. - -Renders a plot with shifted-sine curves along each column with -a unique markevery value for each sine curve. -""" -from cycler import cycler -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt - -# Define a list of markevery cases and color cases to plot -cases = [None, - 8, - (30, 8), - [16, 24, 30], - [0, -1], - slice(100, 200, 3), - 0.1, - 0.3, - 1.5, - (0.0, 0.1), - (0.45, 0.1)] - -colors = ['#1f77b4', - '#ff7f0e', - '#2ca02c', - '#d62728', - '#9467bd', - '#8c564b', - '#e377c2', - '#7f7f7f', - '#bcbd22', - '#17becf', - '#1a55FF'] - -# Configure rcParams axes.prop_cycle to simultaneously cycle cases and colors. -mpl.rcParams['axes.prop_cycle'] = cycler(markevery=cases, color=colors) - -# Create data points and offsets -x = np.linspace(0, 2 * np.pi) -offsets = np.linspace(0, 2 * np.pi, 11, endpoint=False) -yy = np.transpose([np.sin(x + phi) for phi in offsets]) - -# Set the plot curve with markers and a title -fig = plt.figure() -ax = fig.add_axes([0.1, 0.1, 0.6, 0.75]) - -for i in range(len(cases)): - ax.plot(yy[:, i], marker='o', label=str(cases[i])) - ax.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.) - -plt.title('Support for axes.prop_cycle cycler with markevery') - -plt.show() diff --git a/_downloads/852c09bc4a9ebe1ae444750e1f5d1ecb/tutorials_python.zip b/_downloads/852c09bc4a9ebe1ae444750e1f5d1ecb/tutorials_python.zip deleted file mode 120000 index db628c2008b..00000000000 --- a/_downloads/852c09bc4a9ebe1ae444750e1f5d1ecb/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.3/_downloads/852c09bc4a9ebe1ae444750e1f5d1ecb/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/852ca1ee8c5cc870b366a9f782b7a192/keyword_plotting.ipynb b/_downloads/852ca1ee8c5cc870b366a9f782b7a192/keyword_plotting.ipynb deleted file mode 120000 index fdaa83c63b3..00000000000 --- a/_downloads/852ca1ee8c5cc870b366a9f782b7a192/keyword_plotting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/852ca1ee8c5cc870b366a9f782b7a192/keyword_plotting.ipynb \ No newline at end of file diff --git a/_downloads/852d83af8899629dd953db99e22a2618/demo_colorbar_with_inset_locator.ipynb b/_downloads/852d83af8899629dd953db99e22a2618/demo_colorbar_with_inset_locator.ipynb deleted file mode 100644 index 8657777f27e..00000000000 --- a/_downloads/852d83af8899629dd953db99e22a2618/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Controlling the position and size of colorbars with Inset Axes\n\n\nThis example shows how to control the position, height, and width of\ncolorbars using `~mpl_toolkits.axes_grid1.inset_axes`.\n\nControlling the placement of the inset axes is done similarly as that of the\nlegend: either by providing a location option (\"upper right\", \"best\", ...), or\nby providing a locator with respect to the parent bbox.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.inset_locator import inset_axes\n\nfig, (ax1, ax2) = plt.subplots(1, 2, figsize=[6, 3])\n\naxins1 = inset_axes(ax1,\n width=\"50%\", # width = 50% of parent_bbox width\n height=\"5%\", # height : 5%\n loc='upper right')\n\nim1 = ax1.imshow([[1, 2], [2, 3]])\nfig.colorbar(im1, cax=axins1, orientation=\"horizontal\", ticks=[1, 2, 3])\naxins1.xaxis.set_ticks_position(\"bottom\")\n\naxins = inset_axes(ax2,\n width=\"5%\", # width = 5% of parent_bbox width\n height=\"50%\", # height : 50%\n loc='lower left',\n bbox_to_anchor=(1.05, 0., 1, 1),\n bbox_transform=ax2.transAxes,\n borderpad=0,\n )\n\n# Controlling the placement of the inset axes is basically same as that\n# of the legend. you may want to play with the borderpad value and\n# the bbox_to_anchor coordinate.\n\nim = ax2.imshow([[1, 2], [2, 3]])\nfig.colorbar(im, cax=axins, ticks=[1, 2, 3])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/85325e971fedbc8c7737c243b8d4de92/patheffects_guide.ipynb b/_downloads/85325e971fedbc8c7737c243b8d4de92/patheffects_guide.ipynb deleted file mode 120000 index 5787e6734d7..00000000000 --- a/_downloads/85325e971fedbc8c7737c243b8d4de92/patheffects_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/85325e971fedbc8c7737c243b8d4de92/patheffects_guide.ipynb \ No newline at end of file diff --git a/_downloads/85360533030278449d0fca494d8cb296/fourier_demo_wx_sgskip.py b/_downloads/85360533030278449d0fca494d8cb296/fourier_demo_wx_sgskip.py deleted file mode 120000 index 88f0050a511..00000000000 --- a/_downloads/85360533030278449d0fca494d8cb296/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/85360533030278449d0fca494d8cb296/fourier_demo_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/8543a7a08684870e2a23ac9a44ba1031/aspect_loglog.ipynb b/_downloads/8543a7a08684870e2a23ac9a44ba1031/aspect_loglog.ipynb deleted file mode 100644 index eb406bb524d..00000000000 --- a/_downloads/8543a7a08684870e2a23ac9a44ba1031/aspect_loglog.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Loglog Aspect\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, (ax1, ax2) = plt.subplots(1, 2)\nax1.set_xscale(\"log\")\nax1.set_yscale(\"log\")\nax1.set_xlim(1e1, 1e3)\nax1.set_ylim(1e2, 1e3)\nax1.set_aspect(1)\nax1.set_title(\"adjustable = box\")\n\nax2.set_xscale(\"log\")\nax2.set_yscale(\"log\")\nax2.set_adjustable(\"datalim\")\nax2.plot([1, 3, 10], [1, 9, 100], \"o-\")\nax2.set_xlim(1e-1, 1e2)\nax2.set_ylim(1e-1, 1e3)\nax2.set_aspect(1)\nax2.set_title(\"adjustable = datalim\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/854472eac2533722baf0dc03ccf1fbb9/strip_chart.ipynb b/_downloads/854472eac2533722baf0dc03ccf1fbb9/strip_chart.ipynb deleted file mode 100644 index 0aa9c5dd273..00000000000 --- a/_downloads/854472eac2533722baf0dc03ccf1fbb9/strip_chart.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Oscilloscope\n\n\nEmulates an oscilloscope.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.lines import Line2D\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\n\nclass Scope(object):\n def __init__(self, ax, maxt=2, dt=0.02):\n self.ax = ax\n self.dt = dt\n self.maxt = maxt\n self.tdata = [0]\n self.ydata = [0]\n self.line = Line2D(self.tdata, self.ydata)\n self.ax.add_line(self.line)\n self.ax.set_ylim(-.1, 1.1)\n self.ax.set_xlim(0, self.maxt)\n\n def update(self, y):\n lastt = self.tdata[-1]\n if lastt > self.tdata[0] + self.maxt: # reset the arrays\n self.tdata = [self.tdata[-1]]\n self.ydata = [self.ydata[-1]]\n self.ax.set_xlim(self.tdata[0], self.tdata[0] + self.maxt)\n self.ax.figure.canvas.draw()\n\n t = self.tdata[-1] + self.dt\n self.tdata.append(t)\n self.ydata.append(y)\n self.line.set_data(self.tdata, self.ydata)\n return self.line,\n\n\ndef emitter(p=0.03):\n 'return a random value with probability p, else 0'\n while True:\n v = np.random.rand(1)\n if v > p:\n yield 0.\n else:\n yield np.random.rand(1)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nscope = Scope(ax)\n\n# pass a generator in \"emitter\" to produce data for the update func\nani = animation.FuncAnimation(fig, scope.update, emitter, interval=10,\n blit=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/854f76f431e0abcfa89f3fb15373b27d/invert_axes.ipynb b/_downloads/854f76f431e0abcfa89f3fb15373b27d/invert_axes.ipynb deleted file mode 120000 index 8d666f5fce0..00000000000 --- a/_downloads/854f76f431e0abcfa89f3fb15373b27d/invert_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/854f76f431e0abcfa89f3fb15373b27d/invert_axes.ipynb \ No newline at end of file diff --git a/_downloads/855936a99a293f173680bd8dbc29286e/boxplot_color.ipynb b/_downloads/855936a99a293f173680bd8dbc29286e/boxplot_color.ipynb deleted file mode 120000 index 3b08761e7cd..00000000000 --- a/_downloads/855936a99a293f173680bd8dbc29286e/boxplot_color.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/855936a99a293f173680bd8dbc29286e/boxplot_color.ipynb \ No newline at end of file diff --git a/_downloads/856787ecc895e4456ae92ebcc51d777a/tricontour_smooth_user.py b/_downloads/856787ecc895e4456ae92ebcc51d777a/tricontour_smooth_user.py deleted file mode 100644 index 27481d991df..00000000000 --- a/_downloads/856787ecc895e4456ae92ebcc51d777a/tricontour_smooth_user.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -====================== -Tricontour Smooth User -====================== - -Demonstrates high-resolution tricontouring on user-defined triangular grids -with `matplotlib.tri.UniformTriRefiner`. -""" -import matplotlib.tri as tri -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import numpy as np - - -#----------------------------------------------------------------------------- -# Analytical test function -#----------------------------------------------------------------------------- -def function_z(x, y): - r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2) - theta1 = np.arctan2(0.5 - x, 0.5 - y) - r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2) - theta2 = np.arctan2(-x - 0.2, -y - 0.2) - z = -(2 * (np.exp((r1 / 10)**2) - 1) * 30. * np.cos(7. * theta1) + - (np.exp((r2 / 10)**2) - 1) * 30. * np.cos(11. * theta2) + - 0.7 * (x**2 + y**2)) - return (np.max(z) - z) / (np.max(z) - np.min(z)) - -#----------------------------------------------------------------------------- -# Creating a Triangulation -#----------------------------------------------------------------------------- -# First create the x and y coordinates of the points. -n_angles = 20 -n_radii = 10 -min_radius = 0.15 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() -z = function_z(x, y) - -# Now create the Triangulation. -# (Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points.) -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -#----------------------------------------------------------------------------- -# Refine data -#----------------------------------------------------------------------------- -refiner = tri.UniformTriRefiner(triang) -tri_refi, z_test_refi = refiner.refine_field(z, subdiv=3) - -#----------------------------------------------------------------------------- -# Plot the triangulation and the high-res iso-contours -#----------------------------------------------------------------------------- -fig, ax = plt.subplots() -ax.set_aspect('equal') -ax.triplot(triang, lw=0.5, color='white') - -levels = np.arange(0., 1., 0.025) -cmap = cm.get_cmap(name='terrain', lut=None) -ax.tricontourf(tri_refi, z_test_refi, levels=levels, cmap=cmap) -ax.tricontour(tri_refi, z_test_refi, levels=levels, - colors=['0.25', '0.5', '0.5', '0.5', '0.5'], - linewidths=[1.0, 0.5, 0.5, 0.5, 0.5]) - -ax.set_title("High-resolution tricontouring") - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.tri -matplotlib.tri.Triangulation -matplotlib.tri.UniformTriRefiner diff --git a/_downloads/856fd3565043fd843aeb13af98b4d791/pgf_fonts.py b/_downloads/856fd3565043fd843aeb13af98b4d791/pgf_fonts.py deleted file mode 120000 index be6e7c27ce4..00000000000 --- a/_downloads/856fd3565043fd843aeb13af98b4d791/pgf_fonts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/856fd3565043fd843aeb13af98b4d791/pgf_fonts.py \ No newline at end of file diff --git a/_downloads/85755ab680b377d6c606072098f8f839/table_demo.py b/_downloads/85755ab680b377d6c606072098f8f839/table_demo.py deleted file mode 120000 index 24542e4d508..00000000000 --- a/_downloads/85755ab680b377d6c606072098f8f839/table_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/85755ab680b377d6c606072098f8f839/table_demo.py \ No newline at end of file diff --git a/_downloads/85778403fab1d78816ed197d1ff38bec/poly_editor.py b/_downloads/85778403fab1d78816ed197d1ff38bec/poly_editor.py deleted file mode 120000 index 80642889d75..00000000000 --- a/_downloads/85778403fab1d78816ed197d1ff38bec/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/85778403fab1d78816ed197d1ff38bec/poly_editor.py \ No newline at end of file diff --git a/_downloads/8581e296ffa05e67f29bbd203bdf01c4/color_cycle_default.py b/_downloads/8581e296ffa05e67f29bbd203bdf01c4/color_cycle_default.py deleted file mode 120000 index c991324a8ba..00000000000 --- a/_downloads/8581e296ffa05e67f29bbd203bdf01c4/color_cycle_default.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8581e296ffa05e67f29bbd203bdf01c4/color_cycle_default.py \ No newline at end of file diff --git a/_downloads/85899a011c652a2f495dccd93caec420/axes_demo.py b/_downloads/85899a011c652a2f495dccd93caec420/axes_demo.py deleted file mode 100644 index 5b07f2f2d82..00000000000 --- a/_downloads/85899a011c652a2f495dccd93caec420/axes_demo.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -========= -Axes Demo -========= - -Example use of ``plt.axes`` to create inset axes within the main plot axes. -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# create some data to use for the plot -dt = 0.001 -t = np.arange(0.0, 10.0, dt) -r = np.exp(-t[:1000] / 0.05) # impulse response -x = np.random.randn(len(t)) -s = np.convolve(x, r)[:len(x)] * dt # colored noise - -# the main axes is subplot(111) by default -plt.plot(t, s) -plt.xlim(0, 1) -plt.ylim(1.1 * np.min(s), 2 * np.max(s)) -plt.xlabel('time (s)') -plt.ylabel('current (nA)') -plt.title('Gaussian colored noise') - -# this is an inset axes over the main axes -a = plt.axes([.65, .6, .2, .2], facecolor='k') -n, bins, patches = plt.hist(s, 400, density=True) -plt.title('Probability') -plt.xticks([]) -plt.yticks([]) - -# this is another inset axes over the main axes -a = plt.axes([0.2, 0.6, .2, .2], facecolor='k') -plt.plot(t[:len(r)], r) -plt.title('Impulse response') -plt.xlim(0, 0.2) -plt.xticks([]) -plt.yticks([]) - -plt.show() diff --git a/_downloads/858e3f80e18070fd138751ef26a11bf1/fig_axes_customize_simple.py b/_downloads/858e3f80e18070fd138751ef26a11bf1/fig_axes_customize_simple.py deleted file mode 120000 index 419408806d9..00000000000 --- a/_downloads/858e3f80e18070fd138751ef26a11bf1/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/858e3f80e18070fd138751ef26a11bf1/fig_axes_customize_simple.py \ No newline at end of file diff --git a/_downloads/8591a6f0671d02c692445320b45c6776/date_demo_rrule.py b/_downloads/8591a6f0671d02c692445320b45c6776/date_demo_rrule.py deleted file mode 120000 index ea079f3c6fc..00000000000 --- a/_downloads/8591a6f0671d02c692445320b45c6776/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/8591a6f0671d02c692445320b45c6776/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/8598543b44942e47f5bd45460cb9cfeb/lorenz_attractor.ipynb b/_downloads/8598543b44942e47f5bd45460cb9cfeb/lorenz_attractor.ipynb deleted file mode 120000 index be36d901d00..00000000000 --- a/_downloads/8598543b44942e47f5bd45460cb9cfeb/lorenz_attractor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8598543b44942e47f5bd45460cb9cfeb/lorenz_attractor.ipynb \ No newline at end of file diff --git a/_downloads/859af0dd595232a5df28c5cea8ecc480/looking_glass.ipynb b/_downloads/859af0dd595232a5df28c5cea8ecc480/looking_glass.ipynb deleted file mode 120000 index 44d2c2aa988..00000000000 --- a/_downloads/859af0dd595232a5df28c5cea8ecc480/looking_glass.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/859af0dd595232a5df28c5cea8ecc480/looking_glass.ipynb \ No newline at end of file diff --git a/_downloads/859c810a002468b9cd21089e9a1b50a7/usetex_baseline_test.py b/_downloads/859c810a002468b9cd21089e9a1b50a7/usetex_baseline_test.py deleted file mode 120000 index 175f92c093d..00000000000 --- a/_downloads/859c810a002468b9cd21089e9a1b50a7/usetex_baseline_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/859c810a002468b9cd21089e9a1b50a7/usetex_baseline_test.py \ No newline at end of file diff --git a/_downloads/85a17d6393e96ba8c675faf5d687e9cc/auto_ticks.py b/_downloads/85a17d6393e96ba8c675faf5d687e9cc/auto_ticks.py deleted file mode 120000 index 4b9cf0a61a8..00000000000 --- a/_downloads/85a17d6393e96ba8c675faf5d687e9cc/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/85a17d6393e96ba8c675faf5d687e9cc/auto_ticks.py \ No newline at end of file diff --git a/_downloads/85a3bcf42ff875ef3fc2578540766da8/placing_text_boxes.ipynb b/_downloads/85a3bcf42ff875ef3fc2578540766da8/placing_text_boxes.ipynb deleted file mode 100644 index 2743d70271b..00000000000 --- a/_downloads/85a3bcf42ff875ef3fc2578540766da8/placing_text_boxes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nPlacing text boxes\n==================\n\nWhen decorating axes with text boxes, two useful tricks are to place\nthe text in axes coordinates (see :doc:`/tutorials/advanced/transforms_tutorial`), so the\ntext doesn't move around with changes in x or y limits. You can also\nuse the ``bbox`` property of text to surround the text with a\n:class:`~matplotlib.patches.Patch` instance -- the ``bbox`` keyword\nargument takes a dictionary with keys that are Patch properties.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\nx = 30*np.random.randn(10000)\nmu = x.mean()\nmedian = np.median(x)\nsigma = x.std()\ntextstr = '\\n'.join((\n r'$\\mu=%.2f$' % (mu, ),\n r'$\\mathrm{median}=%.2f$' % (median, ),\n r'$\\sigma=%.2f$' % (sigma, )))\n\nax.hist(x, 50)\n# these are matplotlib.patch.Patch properties\nprops = dict(boxstyle='round', facecolor='wheat', alpha=0.5)\n\n# place a text box in upper left in axes coords\nax.text(0.05, 0.95, textstr, transform=ax.transAxes, fontsize=14,\n verticalalignment='top', bbox=props)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/85b919686be69c5c7cc1c403a7aca0d5/colormap_normalizations_lognorm.py b/_downloads/85b919686be69c5c7cc1c403a7aca0d5/colormap_normalizations_lognorm.py deleted file mode 100644 index 5b2f7c3668a..00000000000 --- a/_downloads/85b919686be69c5c7cc1c403a7aca0d5/colormap_normalizations_lognorm.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=============================== -Colormap Normalizations Lognorm -=============================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -''' -Lognorm: Instead of pcolor log10(Z1) you can have colorbars that have -the exponential labels using a norm. -''' -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out of the top right. Needs to have -# z/colour axis on a log scale so we see both hump and spike. linear -# scale only shows the spike. -Z = np.exp(-X**2 - Y**2) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolor(X, Y, Z, - norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - -plt.show() diff --git a/_downloads/85b93e67a9f9ee73d7703b9990c34ece/marker_fillstyle_reference.py b/_downloads/85b93e67a9f9ee73d7703b9990c34ece/marker_fillstyle_reference.py deleted file mode 120000 index aa38f982045..00000000000 --- a/_downloads/85b93e67a9f9ee73d7703b9990c34ece/marker_fillstyle_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/85b93e67a9f9ee73d7703b9990c34ece/marker_fillstyle_reference.py \ No newline at end of file diff --git a/_downloads/85b9c137ce2184fb69da94a5b97228b1/mplot3d.py b/_downloads/85b9c137ce2184fb69da94a5b97228b1/mplot3d.py deleted file mode 120000 index e34b220404f..00000000000 --- a/_downloads/85b9c137ce2184fb69da94a5b97228b1/mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/85b9c137ce2184fb69da94a5b97228b1/mplot3d.py \ No newline at end of file diff --git a/_downloads/85d7c3e91babdb10e090573c5782e6dc/mathtext_examples.ipynb b/_downloads/85d7c3e91babdb10e090573c5782e6dc/mathtext_examples.ipynb deleted file mode 120000 index c15d59e4656..00000000000 --- a/_downloads/85d7c3e91babdb10e090573c5782e6dc/mathtext_examples.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/85d7c3e91babdb10e090573c5782e6dc/mathtext_examples.ipynb \ No newline at end of file diff --git a/_downloads/85d9be59fab8a02517f514497a37cf68/gallery_python.zip b/_downloads/85d9be59fab8a02517f514497a37cf68/gallery_python.zip deleted file mode 120000 index f78f6f338a7..00000000000 --- a/_downloads/85d9be59fab8a02517f514497a37cf68/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.3/_downloads/85d9be59fab8a02517f514497a37cf68/gallery_python.zip \ No newline at end of file diff --git a/_downloads/85e2911b928f85ff44330b4a8986ff5b/path_editor.ipynb b/_downloads/85e2911b928f85ff44330b4a8986ff5b/path_editor.ipynb deleted file mode 100644 index 20313be2f17..00000000000 --- a/_downloads/85e2911b928f85ff44330b4a8986ff5b/path_editor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Path Editor\n\n\nSharing events across GUIs.\n\nThis example demonstrates a cross-GUI application using Matplotlib event\nhandling to interact with and modify objects on the canvas.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nPath = mpath.Path\n\nfig, ax = plt.subplots()\n\npathdata = [\n (Path.MOVETO, (1.58, -2.57)),\n (Path.CURVE4, (0.35, -1.1)),\n (Path.CURVE4, (-1.75, 2.0)),\n (Path.CURVE4, (0.375, 2.0)),\n (Path.LINETO, (0.85, 1.15)),\n (Path.CURVE4, (2.2, 3.2)),\n (Path.CURVE4, (3, 0.05)),\n (Path.CURVE4, (2.0, -0.5)),\n (Path.CLOSEPOLY, (1.58, -2.57)),\n ]\n\ncodes, verts = zip(*pathdata)\npath = mpath.Path(verts, codes)\npatch = mpatches.PathPatch(path, facecolor='green', edgecolor='yellow', alpha=0.5)\nax.add_patch(patch)\n\n\nclass PathInteractor(object):\n \"\"\"\n An path editor.\n\n Key-bindings\n\n 't' toggle vertex markers on and off. When vertex markers are on,\n you can move them, delete them\n\n\n \"\"\"\n\n showverts = True\n epsilon = 5 # max pixel distance to count as a vertex hit\n\n def __init__(self, pathpatch):\n\n self.ax = pathpatch.axes\n canvas = self.ax.figure.canvas\n self.pathpatch = pathpatch\n self.pathpatch.set_animated(True)\n\n x, y = zip(*self.pathpatch.get_path().vertices)\n\n self.line, = ax.plot(x, y, marker='o', markerfacecolor='r', animated=True)\n\n self._ind = None # the active vert\n\n canvas.mpl_connect('draw_event', self.draw_callback)\n canvas.mpl_connect('button_press_event', self.button_press_callback)\n canvas.mpl_connect('key_press_event', self.key_press_callback)\n canvas.mpl_connect('button_release_event', self.button_release_callback)\n canvas.mpl_connect('motion_notify_event', self.motion_notify_callback)\n self.canvas = canvas\n\n def draw_callback(self, event):\n self.background = self.canvas.copy_from_bbox(self.ax.bbox)\n self.ax.draw_artist(self.pathpatch)\n self.ax.draw_artist(self.line)\n self.canvas.blit(self.ax.bbox)\n\n def pathpatch_changed(self, pathpatch):\n 'this method is called whenever the pathpatchgon object is called'\n # only copy the artist props to the line (except visibility)\n vis = self.line.get_visible()\n plt.Artist.update_from(self.line, pathpatch)\n self.line.set_visible(vis) # don't use the pathpatch visibility state\n\n def get_ind_under_point(self, event):\n 'get the index of the vertex under point if within epsilon tolerance'\n\n # display coords\n xy = np.asarray(self.pathpatch.get_path().vertices)\n xyt = self.pathpatch.get_transform().transform(xy)\n xt, yt = xyt[:, 0], xyt[:, 1]\n d = np.sqrt((xt - event.x)**2 + (yt - event.y)**2)\n ind = d.argmin()\n\n if d[ind] >= self.epsilon:\n ind = None\n\n return ind\n\n def button_press_callback(self, event):\n 'whenever a mouse button is pressed'\n if not self.showverts:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n self._ind = self.get_ind_under_point(event)\n\n def button_release_callback(self, event):\n 'whenever a mouse button is released'\n if not self.showverts:\n return\n if event.button != 1:\n return\n self._ind = None\n\n def key_press_callback(self, event):\n 'whenever a key is pressed'\n if not event.inaxes:\n return\n if event.key == 't':\n self.showverts = not self.showverts\n self.line.set_visible(self.showverts)\n if not self.showverts:\n self._ind = None\n\n self.canvas.draw()\n\n def motion_notify_callback(self, event):\n 'on mouse movement'\n if not self.showverts:\n return\n if self._ind is None:\n return\n if event.inaxes is None:\n return\n if event.button != 1:\n return\n x, y = event.xdata, event.ydata\n\n vertices = self.pathpatch.get_path().vertices\n\n vertices[self._ind] = x, y\n self.line.set_data(zip(*vertices))\n\n self.canvas.restore_region(self.background)\n self.ax.draw_artist(self.pathpatch)\n self.ax.draw_artist(self.line)\n self.canvas.blit(self.ax.bbox)\n\n\ninteractor = PathInteractor(patch)\nax.set_title('drag vertices to update path')\nax.set_xlim(-3, 4)\nax.set_ylim(-3, 4)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/85eea2a9b9c6a3a221733494325998c8/dynamic_image.ipynb b/_downloads/85eea2a9b9c6a3a221733494325998c8/dynamic_image.ipynb deleted file mode 120000 index c0303e50cdc..00000000000 --- a/_downloads/85eea2a9b9c6a3a221733494325998c8/dynamic_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/85eea2a9b9c6a3a221733494325998c8/dynamic_image.ipynb \ No newline at end of file diff --git a/_downloads/85f1ff1604ae0cbb9fb59c0d7d374cab/tick_xlabel_top.ipynb b/_downloads/85f1ff1604ae0cbb9fb59c0d7d374cab/tick_xlabel_top.ipynb deleted file mode 120000 index 8ecb45ae00d..00000000000 --- a/_downloads/85f1ff1604ae0cbb9fb59c0d7d374cab/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/85f1ff1604ae0cbb9fb59c0d7d374cab/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/85f4805179b4c07adee54fb492dc7a14/image_transparency_blend.ipynb b/_downloads/85f4805179b4c07adee54fb492dc7a14/image_transparency_blend.ipynb deleted file mode 120000 index 7b6a5ef0f04..00000000000 --- a/_downloads/85f4805179b4c07adee54fb492dc7a14/image_transparency_blend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/85f4805179b4c07adee54fb492dc7a14/image_transparency_blend.ipynb \ No newline at end of file diff --git a/_downloads/85f6a9606e477490f705e0b6b1ff48a6/hexbin_demo.py b/_downloads/85f6a9606e477490f705e0b6b1ff48a6/hexbin_demo.py deleted file mode 120000 index d66d249ad12..00000000000 --- a/_downloads/85f6a9606e477490f705e0b6b1ff48a6/hexbin_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/85f6a9606e477490f705e0b6b1ff48a6/hexbin_demo.py \ No newline at end of file diff --git a/_downloads/85f7532fe96d74831011e11ec5d0654d/annotate_simple02.ipynb b/_downloads/85f7532fe96d74831011e11ec5d0654d/annotate_simple02.ipynb deleted file mode 100644 index 10ec3b13a23..00000000000 --- a/_downloads/85f7532fe96d74831011e11ec5d0654d/annotate_simple02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n arrowprops=dict(arrowstyle=\"simple\",\n connectionstyle=\"arc3,rad=-0.2\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8602e1b03b4992b458a09ac72ea7d573/pyplot.ipynb b/_downloads/8602e1b03b4992b458a09ac72ea7d573/pyplot.ipynb deleted file mode 120000 index 3ff0d5fe078..00000000000 --- a/_downloads/8602e1b03b4992b458a09ac72ea7d573/pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8602e1b03b4992b458a09ac72ea7d573/pyplot.ipynb \ No newline at end of file diff --git a/_downloads/8619c4a26c9c09eae751cda0a9e317d2/text_layout.ipynb b/_downloads/8619c4a26c9c09eae751cda0a9e317d2/text_layout.ipynb deleted file mode 120000 index 6dca52cd046..00000000000 --- a/_downloads/8619c4a26c9c09eae751cda0a9e317d2/text_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8619c4a26c9c09eae751cda0a9e317d2/text_layout.ipynb \ No newline at end of file diff --git a/_downloads/861cf0b07b083f3c44ddd625a0e99000/named_colors.py b/_downloads/861cf0b07b083f3c44ddd625a0e99000/named_colors.py deleted file mode 120000 index 1d21974579d..00000000000 --- a/_downloads/861cf0b07b083f3c44ddd625a0e99000/named_colors.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/861cf0b07b083f3c44ddd625a0e99000/named_colors.py \ No newline at end of file diff --git a/_downloads/8622d7bac9959d97dc58a25b7b65cc64/matshow.ipynb b/_downloads/8622d7bac9959d97dc58a25b7b65cc64/matshow.ipynb deleted file mode 120000 index 1c0c760cb79..00000000000 --- a/_downloads/8622d7bac9959d97dc58a25b7b65cc64/matshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8622d7bac9959d97dc58a25b7b65cc64/matshow.ipynb \ No newline at end of file diff --git a/_downloads/8628403bf4daa31dd4e8841470ef7f12/line_with_text.py b/_downloads/8628403bf4daa31dd4e8841470ef7f12/line_with_text.py deleted file mode 100644 index c876f688794..00000000000 --- a/_downloads/8628403bf4daa31dd4e8841470ef7f12/line_with_text.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -======================= -Artist within an artist -======================= - -Override basic methods so an artist can contain another -artist. In this case, the line contains a Text instance to label it. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.lines as lines -import matplotlib.transforms as mtransforms -import matplotlib.text as mtext - - -class MyLine(lines.Line2D): - def __init__(self, *args, **kwargs): - # we'll update the position when the line data is set - self.text = mtext.Text(0, 0, '') - lines.Line2D.__init__(self, *args, **kwargs) - - # we can't access the label attr until *after* the line is - # initiated - self.text.set_text(self.get_label()) - - def set_figure(self, figure): - self.text.set_figure(figure) - lines.Line2D.set_figure(self, figure) - - def set_axes(self, axes): - self.text.set_axes(axes) - lines.Line2D.set_axes(self, axes) - - def set_transform(self, transform): - # 2 pixel offset - texttrans = transform + mtransforms.Affine2D().translate(2, 2) - self.text.set_transform(texttrans) - lines.Line2D.set_transform(self, transform) - - def set_data(self, x, y): - if len(x): - self.text.set_position((x[-1], y[-1])) - - lines.Line2D.set_data(self, x, y) - - def draw(self, renderer): - # draw my label at the end of the line with 2 pixel offset - lines.Line2D.draw(self, renderer) - self.text.draw(renderer) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -x, y = np.random.rand(2, 20) -line = MyLine(x, y, mfc='red', ms=12, label='line label') -#line.text.set_text('line label') -line.text.set_color('red') -line.text.set_fontsize(16) - -ax.add_line(line) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.lines -matplotlib.lines.Line2D -matplotlib.lines.Line2D.set_data -matplotlib.artist -matplotlib.artist.Artist -matplotlib.artist.Artist.draw -matplotlib.artist.Artist.set_transform -matplotlib.text -matplotlib.text.Text -matplotlib.text.Text.set_color -matplotlib.text.Text.set_fontsize -matplotlib.text.Text.set_position -matplotlib.axes.Axes.add_line -matplotlib.transforms -matplotlib.transforms.Affine2D diff --git a/_downloads/8643fbd9d0ab5d5f4b05702bca102864/annotation_polar.py b/_downloads/8643fbd9d0ab5d5f4b05702bca102864/annotation_polar.py deleted file mode 120000 index 1000544b762..00000000000 --- a/_downloads/8643fbd9d0ab5d5f4b05702bca102864/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8643fbd9d0ab5d5f4b05702bca102864/annotation_polar.py \ No newline at end of file diff --git a/_downloads/864abdd03d3a7f9d4d4cc85fe4d347af/pgf.ipynb b/_downloads/864abdd03d3a7f9d4d4cc85fe4d347af/pgf.ipynb deleted file mode 120000 index d84965b0cc3..00000000000 --- a/_downloads/864abdd03d3a7f9d4d4cc85fe4d347af/pgf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/864abdd03d3a7f9d4d4cc85fe4d347af/pgf.ipynb \ No newline at end of file diff --git a/_downloads/864b4c58e2218034d91f6b9f3579ae6f/demo_text_rotation_mode.ipynb b/_downloads/864b4c58e2218034d91f6b9f3579ae6f/demo_text_rotation_mode.ipynb deleted file mode 100644 index 2a76cd4b59c..00000000000 --- a/_downloads/864b4c58e2218034d91f6b9f3579ae6f/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Text Rotation Mode\n\n\nThis example illustrates the effect of ``rotation_mode`` on the positioning\nof rotated text.\n\nRotated `.Text`\\s are created by passing the parameter ``rotation`` to\nthe constructor or the axes' method `~.axes.Axes.text`.\n\nThe actual positioning depends on the additional parameters\n``horizontalalignment``, ``verticalalignment`` and ``rotation_mode``.\n``rotation_mode`` determines the order of rotation and alignment:\n\n- ``roation_mode='default'`` (or None) first rotates the text and then aligns\n the bounding box of the rotated text.\n- ``roation_mode='anchor'`` aligns the unrotated text and then rotates the\n text around the point of alignment.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_grid import ImageGrid\n\n\ndef test_rotation_mode(fig, mode, subplot_location):\n ha_list = [\"left\", \"center\", \"right\"]\n va_list = [\"top\", \"center\", \"baseline\", \"bottom\"]\n grid = ImageGrid(fig, subplot_location,\n nrows_ncols=(len(va_list), len(ha_list)),\n share_all=True, aspect=True, cbar_mode=None)\n\n # labels and title\n for ha, ax in zip(ha_list, grid.axes_row[-1]):\n ax.axis[\"bottom\"].label.set_text(ha)\n for va, ax in zip(va_list, grid.axes_column[0]):\n ax.axis[\"left\"].label.set_text(va)\n grid.axes_row[0][1].set_title(f\"rotation_mode='{mode}'\", size=\"large\")\n\n if mode == \"default\":\n kw = dict()\n else:\n kw = dict(\n bbox=dict(boxstyle=\"square,pad=0.\", ec=\"none\", fc=\"C1\", alpha=0.3))\n\n # use a different text alignment in each axes\n texts = []\n for (va, ha), ax in zip([(x, y) for x in va_list for y in ha_list], grid):\n # prepare axes layout\n for axis in ax.axis.values():\n axis.toggle(ticks=False, ticklabels=False)\n ax.axvline(0.5, color=\"skyblue\", zorder=0)\n ax.axhline(0.5, color=\"skyblue\", zorder=0)\n ax.plot(0.5, 0.5, color=\"C0\", marker=\"o\", zorder=1)\n\n # add text with rotation and alignment settings\n tx = ax.text(0.5, 0.5, \"Tpg\",\n size=\"x-large\", rotation=40,\n horizontalalignment=ha, verticalalignment=va,\n rotation_mode=mode, **kw)\n texts.append(tx)\n\n if mode == \"default\":\n # highlight bbox\n fig.canvas.draw()\n for ax, tx in zip(grid, texts):\n bb = tx.get_window_extent().inverse_transformed(ax.transData)\n rect = plt.Rectangle((bb.x0, bb.y0), bb.width, bb.height,\n facecolor=\"C1\", alpha=0.3, zorder=2)\n ax.add_patch(rect)\n\n\nfig = plt.figure(figsize=(8, 6))\ntest_rotation_mode(fig, \"default\", 121)\ntest_rotation_mode(fig, \"anchor\", 122)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following method is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/866aa77d1f1fc1430349205ef674d0d6/wire3d_animation_sgskip.py b/_downloads/866aa77d1f1fc1430349205ef674d0d6/wire3d_animation_sgskip.py deleted file mode 120000 index 1502ac06bb8..00000000000 --- a/_downloads/866aa77d1f1fc1430349205ef674d0d6/wire3d_animation_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/866aa77d1f1fc1430349205ef674d0d6/wire3d_animation_sgskip.py \ No newline at end of file diff --git a/_downloads/866fe4cd8b87442c15449c11f24ccb5c/colormap_reference.ipynb b/_downloads/866fe4cd8b87442c15449c11f24ccb5c/colormap_reference.ipynb deleted file mode 120000 index eee0f7bc219..00000000000 --- a/_downloads/866fe4cd8b87442c15449c11f24ccb5c/colormap_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/866fe4cd8b87442c15449c11f24ccb5c/colormap_reference.ipynb \ No newline at end of file diff --git a/_downloads/867142d6a9d719675786b0da5b95d358/demo_agg_filter.py b/_downloads/867142d6a9d719675786b0da5b95d358/demo_agg_filter.py deleted file mode 120000 index bbdb8d542b0..00000000000 --- a/_downloads/867142d6a9d719675786b0da5b95d358/demo_agg_filter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/867142d6a9d719675786b0da5b95d358/demo_agg_filter.py \ No newline at end of file diff --git a/_downloads/867310876ee398fa5a23a4898c7a5954/pylab_with_gtk_sgskip.py b/_downloads/867310876ee398fa5a23a4898c7a5954/pylab_with_gtk_sgskip.py deleted file mode 120000 index 2d4022057eb..00000000000 --- a/_downloads/867310876ee398fa5a23a4898c7a5954/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/867310876ee398fa5a23a4898c7a5954/pylab_with_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/867a604be5ec8886b7254918995d5a2a/voxels_numpy_logo.py b/_downloads/867a604be5ec8886b7254918995d5a2a/voxels_numpy_logo.py deleted file mode 120000 index 25ff7542f07..00000000000 --- a/_downloads/867a604be5ec8886b7254918995d5a2a/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/867a604be5ec8886b7254918995d5a2a/voxels_numpy_logo.py \ No newline at end of file diff --git a/_downloads/867da156054c554ee0d5cb5c51a40b7e/data_browser.ipynb b/_downloads/867da156054c554ee0d5cb5c51a40b7e/data_browser.ipynb deleted file mode 120000 index 4d567f31a9d..00000000000 --- a/_downloads/867da156054c554ee0d5cb5c51a40b7e/data_browser.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/867da156054c554ee0d5cb5c51a40b7e/data_browser.ipynb \ No newline at end of file diff --git a/_downloads/8691e81c77a9d090acdc837440af1662/lorenz_attractor.py b/_downloads/8691e81c77a9d090acdc837440af1662/lorenz_attractor.py deleted file mode 120000 index 07d3752f571..00000000000 --- a/_downloads/8691e81c77a9d090acdc837440af1662/lorenz_attractor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8691e81c77a9d090acdc837440af1662/lorenz_attractor.py \ No newline at end of file diff --git a/_downloads/869c051f58354f01fa09157c42423e9f/contour_demo.py b/_downloads/869c051f58354f01fa09157c42423e9f/contour_demo.py deleted file mode 100644 index bfbffe41eb4..00000000000 --- a/_downloads/869c051f58354f01fa09157c42423e9f/contour_demo.py +++ /dev/null @@ -1,137 +0,0 @@ -""" -============ -Contour Demo -============ - -Illustrate simple contour plotting, contours on an image with -a colorbar for the contours, and labelled contours. - -See also the :doc:`contour image example -`. -""" -import matplotlib -import numpy as np -import matplotlib.cm as cm -import matplotlib.pyplot as plt - - -delta = 0.025 -x = np.arange(-3.0, 3.0, delta) -y = np.arange(-2.0, 2.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -############################################################################### -# Create a simple contour plot with labels using default colors. The -# inline argument to clabel will control whether the labels are draw -# over the line segments of the contour, removing the lines beneath -# the label - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z) -ax.clabel(CS, inline=1, fontsize=10) -ax.set_title('Simplest default with labels') - - -############################################################################### -# contour labels can be placed manually by providing list of positions -# (in data coordinate). See ginput_manual_clabel.py for interactive -# placement. - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z) -manual_locations = [(-1, -1.4), (-0.62, -0.7), (-2, 0.5), (1.7, 1.2), (2.0, 1.4), (2.4, 1.7)] -ax.clabel(CS, inline=1, fontsize=10, manual=manual_locations) -ax.set_title('labels at selected locations') - - -############################################################################### -# You can force all the contours to be the same color. - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z, 6, - colors='k', # negative contours will be dashed by default - ) -ax.clabel(CS, fontsize=9, inline=1) -ax.set_title('Single color - negative contours dashed') - -############################################################################### -# You can set negative contours to be solid instead of dashed: - -matplotlib.rcParams['contour.negative_linestyle'] = 'solid' -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z, 6, - colors='k', # negative contours will be dashed by default - ) -ax.clabel(CS, fontsize=9, inline=1) -ax.set_title('Single color - negative contours solid') - - -############################################################################### -# And you can manually specify the colors of the contour - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z, 6, - linewidths=np.arange(.5, 4, .5), - colors=('r', 'green', 'blue', (1, 1, 0), '#afeeee', '0.5') - ) -ax.clabel(CS, fontsize=9, inline=1) -ax.set_title('Crazy lines') - - -############################################################################### -# Or you can use a colormap to specify the colors; the default -# colormap will be used for the contour lines - -fig, ax = plt.subplots() -im = ax.imshow(Z, interpolation='bilinear', origin='lower', - cmap=cm.gray, extent=(-3, 3, -2, 2)) -levels = np.arange(-1.2, 1.6, 0.2) -CS = ax.contour(Z, levels, origin='lower', cmap='flag', - linewidths=2, extent=(-3, 3, -2, 2)) - -# Thicken the zero contour. -zc = CS.collections[6] -plt.setp(zc, linewidth=4) - -ax.clabel(CS, levels[1::2], # label every second level - inline=1, fmt='%1.1f', fontsize=14) - -# make a colorbar for the contour lines -CB = fig.colorbar(CS, shrink=0.8, extend='both') - -ax.set_title('Lines with colorbar') - -# We can still add a colorbar for the image, too. -CBI = fig.colorbar(im, orientation='horizontal', shrink=0.8) - -# This makes the original colorbar look a bit out of place, -# so let's improve its position. - -l, b, w, h = ax.get_position().bounds -ll, bb, ww, hh = CB.ax.get_position().bounds -CB.ax.set_position([ll, b + 0.1*h, ww, h*0.8]) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.axes.Axes.clabel -matplotlib.pyplot.clabel -matplotlib.axes.Axes.set_position -matplotlib.axes.Axes.get_position diff --git a/_downloads/86b1d3f59bb26f9277a3e333f14f4cd7/polar_legend.py b/_downloads/86b1d3f59bb26f9277a3e333f14f4cd7/polar_legend.py deleted file mode 100644 index f7f58a9be17..00000000000 --- a/_downloads/86b1d3f59bb26f9277a3e333f14f4cd7/polar_legend.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -============ -Polar Legend -============ - -Demo of a legend on a polar-axis plot. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# radar green, solid grid lines -plt.rc('grid', color='#316931', linewidth=1, linestyle='-') -plt.rc('xtick', labelsize=15) -plt.rc('ytick', labelsize=15) - -# force square figure and square axes looks better for polar, IMO -fig = plt.figure(figsize=(8, 8)) -ax = fig.add_axes([0.1, 0.1, 0.8, 0.8], - projection='polar', facecolor='#d5de9c') - -r = np.arange(0, 3.0, 0.01) -theta = 2 * np.pi * r -ax.plot(theta, r, color='#ee8d18', lw=3, label='a line') -ax.plot(0.5 * theta, r, color='blue', ls='--', lw=3, label='another line') -ax.legend() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.legend -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes diff --git a/_downloads/86b1e7998bae7d79a391ebb92e1e2d56/leftventricle_bulleye.py b/_downloads/86b1e7998bae7d79a391ebb92e1e2d56/leftventricle_bulleye.py deleted file mode 120000 index d17d994b907..00000000000 --- a/_downloads/86b1e7998bae7d79a391ebb92e1e2d56/leftventricle_bulleye.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/86b1e7998bae7d79a391ebb92e1e2d56/leftventricle_bulleye.py \ No newline at end of file diff --git a/_downloads/86c1a65f897916b55247d068baea632d/ggplot.ipynb b/_downloads/86c1a65f897916b55247d068baea632d/ggplot.ipynb deleted file mode 120000 index ecc3fec287c..00000000000 --- a/_downloads/86c1a65f897916b55247d068baea632d/ggplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/86c1a65f897916b55247d068baea632d/ggplot.ipynb \ No newline at end of file diff --git a/_downloads/86cd76f0a414705404176c1c953a99f0/arrow_guide.ipynb b/_downloads/86cd76f0a414705404176c1c953a99f0/arrow_guide.ipynb deleted file mode 120000 index 01ca3f40fb6..00000000000 --- a/_downloads/86cd76f0a414705404176c1c953a99f0/arrow_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/86cd76f0a414705404176c1c953a99f0/arrow_guide.ipynb \ No newline at end of file diff --git a/_downloads/86d90a590e1456bf3c6a47a97c009e43/path_patch.ipynb b/_downloads/86d90a590e1456bf3c6a47a97c009e43/path_patch.ipynb deleted file mode 100644 index 24527105021..00000000000 --- a/_downloads/86d90a590e1456bf3c6a47a97c009e43/path_patch.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# PathPatch object\n\n\nThis example shows how to create `~.path.Path` and `~.patches.PathPatch` objects through\nMatplotlib's API.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots()\n\nPath = mpath.Path\npath_data = [\n (Path.MOVETO, (1.58, -2.57)),\n (Path.CURVE4, (0.35, -1.1)),\n (Path.CURVE4, (-1.75, 2.0)),\n (Path.CURVE4, (0.375, 2.0)),\n (Path.LINETO, (0.85, 1.15)),\n (Path.CURVE4, (2.2, 3.2)),\n (Path.CURVE4, (3, 0.05)),\n (Path.CURVE4, (2.0, -0.5)),\n (Path.CLOSEPOLY, (1.58, -2.57)),\n ]\ncodes, verts = zip(*path_data)\npath = mpath.Path(verts, codes)\npatch = mpatches.PathPatch(path, facecolor='r', alpha=0.5)\nax.add_patch(patch)\n\n# plot control points and connecting lines\nx, y = zip(*path.vertices)\nline, = ax.plot(x, y, 'go-')\n\nax.grid()\nax.axis('equal')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.axes.Axes.add_patch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/86dc495744bd8ddd5d5280da587cf197/line_styles_reference.ipynb b/_downloads/86dc495744bd8ddd5d5280da587cf197/line_styles_reference.ipynb deleted file mode 120000 index 017dee76521..00000000000 --- a/_downloads/86dc495744bd8ddd5d5280da587cf197/line_styles_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/86dc495744bd8ddd5d5280da587cf197/line_styles_reference.ipynb \ No newline at end of file diff --git a/_downloads/86fcfad6481f310b584fff6e17c723ba/anchored_artists.ipynb b/_downloads/86fcfad6481f310b584fff6e17c723ba/anchored_artists.ipynb deleted file mode 120000 index c5d620f5041..00000000000 --- a/_downloads/86fcfad6481f310b584fff6e17c723ba/anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/86fcfad6481f310b584fff6e17c723ba/anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/8701e2147c475b7968f7fdf6cf74da06/text_layout.py b/_downloads/8701e2147c475b7968f7fdf6cf74da06/text_layout.py deleted file mode 100644 index 4e28cf98904..00000000000 --- a/_downloads/8701e2147c475b7968f7fdf6cf74da06/text_layout.py +++ /dev/null @@ -1,98 +0,0 @@ -""" -=========== -Text Layout -=========== - -Create text with different alignment and rotation. -""" -import matplotlib.pyplot as plt -import matplotlib.patches as patches - -# build a rectangle in axes coords -left, width = .25, .5 -bottom, height = .25, .5 -right = left + width -top = bottom + height - -fig = plt.figure() -ax = fig.add_axes([0,0,1,1]) - -# axes coordinates are 0,0 is bottom left and 1,1 is upper right -p = patches.Rectangle( - (left, bottom), width, height, - fill=False, transform=ax.transAxes, clip_on=False - ) - -ax.add_patch(p) - -ax.text(left, bottom, 'left top', - horizontalalignment='left', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, bottom, 'left bottom', - horizontalalignment='left', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right bottom', - horizontalalignment='right', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right top', - horizontalalignment='right', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(right, bottom, 'center top', - horizontalalignment='center', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'right center', - horizontalalignment='right', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'left center', - horizontalalignment='left', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(0.5*(left+right), 0.5*(bottom+top), 'middle', - horizontalalignment='center', - verticalalignment='center', - fontsize=20, color='red', - transform=ax.transAxes) - -ax.text(right, 0.5*(bottom+top), 'centered', - horizontalalignment='center', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, top, 'rotated\nwith newlines', - horizontalalignment='center', - verticalalignment='center', - rotation=45, - transform=ax.transAxes) - -ax.set_axis_off() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.text -matplotlib.pyplot.text diff --git a/_downloads/87030f5cf0751c0dc8cfd839b6437251/multipage_pdf.ipynb b/_downloads/87030f5cf0751c0dc8cfd839b6437251/multipage_pdf.ipynb deleted file mode 120000 index bf8b6cfd6e3..00000000000 --- a/_downloads/87030f5cf0751c0dc8cfd839b6437251/multipage_pdf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/87030f5cf0751c0dc8cfd839b6437251/multipage_pdf.ipynb \ No newline at end of file diff --git a/_downloads/871f1dfe57528195a138d2a28362948e/errorbar.py b/_downloads/871f1dfe57528195a138d2a28362948e/errorbar.py deleted file mode 120000 index 937d3e52695..00000000000 --- a/_downloads/871f1dfe57528195a138d2a28362948e/errorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/871f1dfe57528195a138d2a28362948e/errorbar.py \ No newline at end of file diff --git a/_downloads/8723484594e27eb6b90ddcafa6d3f6e9/fill_spiral.py b/_downloads/8723484594e27eb6b90ddcafa6d3f6e9/fill_spiral.py deleted file mode 120000 index 36fd2c5aca4..00000000000 --- a/_downloads/8723484594e27eb6b90ddcafa6d3f6e9/fill_spiral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8723484594e27eb6b90ddcafa6d3f6e9/fill_spiral.py \ No newline at end of file diff --git a/_downloads/872a01d264fe8ddbfa5d78f2fd65bf61/simple_annotate01.py b/_downloads/872a01d264fe8ddbfa5d78f2fd65bf61/simple_annotate01.py deleted file mode 120000 index 71a17c24f32..00000000000 --- a/_downloads/872a01d264fe8ddbfa5d78f2fd65bf61/simple_annotate01.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/872a01d264fe8ddbfa5d78f2fd65bf61/simple_annotate01.py \ No newline at end of file diff --git a/_downloads/873457c0d9083d3b816aeeb3d600f97a/pathpatch3d.ipynb b/_downloads/873457c0d9083d3b816aeeb3d600f97a/pathpatch3d.ipynb deleted file mode 100644 index e2fad5cf520..00000000000 --- a/_downloads/873457c0d9083d3b816aeeb3d600f97a/pathpatch3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Draw flat objects in 3D plot\n\n\nDemonstrate using pathpatch_2d_to_3d to 'draw' shapes and text on a 3D plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Circle, PathPatch\nfrom matplotlib.text import TextPath\nfrom matplotlib.transforms import Affine2D\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\nimport mpl_toolkits.mplot3d.art3d as art3d\n\n\ndef text3d(ax, xyz, s, zdir=\"z\", size=None, angle=0, usetex=False, **kwargs):\n '''\n Plots the string 's' on the axes 'ax', with position 'xyz', size 'size',\n and rotation angle 'angle'. 'zdir' gives the axis which is to be treated\n as the third dimension. usetex is a boolean indicating whether the string\n should be interpreted as latex or not. Any additional keyword arguments\n are passed on to transform_path.\n\n Note: zdir affects the interpretation of xyz.\n '''\n x, y, z = xyz\n if zdir == \"y\":\n xy1, z1 = (x, z), y\n elif zdir == \"x\":\n xy1, z1 = (y, z), x\n else:\n xy1, z1 = (x, y), z\n\n text_path = TextPath((0, 0), s, size=size, usetex=usetex)\n trans = Affine2D().rotate(angle).translate(xy1[0], xy1[1])\n\n p1 = PathPatch(trans.transform_path(text_path), **kwargs)\n ax.add_patch(p1)\n art3d.pathpatch_2d_to_3d(p1, z=z1, zdir=zdir)\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Draw a circle on the x=0 'wall'\np = Circle((5, 5), 3)\nax.add_patch(p)\nart3d.pathpatch_2d_to_3d(p, z=0, zdir=\"x\")\n\n# Manually label the axes\ntext3d(ax, (4, -2, 0), \"X-axis\", zdir=\"z\", size=.5, usetex=False,\n ec=\"none\", fc=\"k\")\ntext3d(ax, (12, 4, 0), \"Y-axis\", zdir=\"z\", size=.5, usetex=False,\n angle=np.pi / 2, ec=\"none\", fc=\"k\")\ntext3d(ax, (12, 10, 4), \"Z-axis\", zdir=\"y\", size=.5, usetex=False,\n angle=np.pi / 2, ec=\"none\", fc=\"k\")\n\n# Write a Latex formula on the z=0 'floor'\ntext3d(ax, (1, 5, 0),\n r\"$\\displaystyle G_{\\mu\\nu} + \\Lambda g_{\\mu\\nu} = \"\n r\"\\frac{8\\pi G}{c^4} T_{\\mu\\nu} $\",\n zdir=\"z\", size=1, usetex=True,\n ec=\"none\", fc=\"k\")\n\nax.set_xlim(0, 10)\nax.set_ylim(0, 10)\nax.set_zlim(0, 10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/87379da51e027c0ffb3e4f527539d2bc/bar_demo2.ipynb b/_downloads/87379da51e027c0ffb3e4f527539d2bc/bar_demo2.ipynb deleted file mode 120000 index 46954722ba6..00000000000 --- a/_downloads/87379da51e027c0ffb3e4f527539d2bc/bar_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/87379da51e027c0ffb3e4f527539d2bc/bar_demo2.ipynb \ No newline at end of file diff --git a/_downloads/8738ff4ae08df586db03f042a680ece3/agg_buffer_to_array.ipynb b/_downloads/8738ff4ae08df586db03f042a680ece3/agg_buffer_to_array.ipynb deleted file mode 120000 index f6a08d1796a..00000000000 --- a/_downloads/8738ff4ae08df586db03f042a680ece3/agg_buffer_to_array.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8738ff4ae08df586db03f042a680ece3/agg_buffer_to_array.ipynb \ No newline at end of file diff --git a/_downloads/8740f540ba9848d9c5cd46e378d68e10/contourf_demo.ipynb b/_downloads/8740f540ba9848d9c5cd46e378d68e10/contourf_demo.ipynb deleted file mode 120000 index bae55484e2f..00000000000 --- a/_downloads/8740f540ba9848d9c5cd46e378d68e10/contourf_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8740f540ba9848d9c5cd46e378d68e10/contourf_demo.ipynb \ No newline at end of file diff --git a/_downloads/87449719f97c0e3326a57c1a90dc3325/gradient_bar.ipynb b/_downloads/87449719f97c0e3326a57c1a90dc3325/gradient_bar.ipynb deleted file mode 120000 index 272f6c8a9d0..00000000000 --- a/_downloads/87449719f97c0e3326a57c1a90dc3325/gradient_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/87449719f97c0e3326a57c1a90dc3325/gradient_bar.ipynb \ No newline at end of file diff --git a/_downloads/874583eda648283b32d276412fb8e8fa/csd_demo.py b/_downloads/874583eda648283b32d276412fb8e8fa/csd_demo.py deleted file mode 120000 index 08287eb6f46..00000000000 --- a/_downloads/874583eda648283b32d276412fb8e8fa/csd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/874583eda648283b32d276412fb8e8fa/csd_demo.py \ No newline at end of file diff --git a/_downloads/874b70258f2ec5ff98f16fa369315e87/line_demo_dash_control.py b/_downloads/874b70258f2ec5ff98f16fa369315e87/line_demo_dash_control.py deleted file mode 120000 index c733371e77b..00000000000 --- a/_downloads/874b70258f2ec5ff98f16fa369315e87/line_demo_dash_control.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/874b70258f2ec5ff98f16fa369315e87/line_demo_dash_control.py \ No newline at end of file diff --git a/_downloads/876282ee2f7a70c68128f916bbfa33d1/date_index_formatter.ipynb b/_downloads/876282ee2f7a70c68128f916bbfa33d1/date_index_formatter.ipynb deleted file mode 120000 index 3bf8158bf27..00000000000 --- a/_downloads/876282ee2f7a70c68128f916bbfa33d1/date_index_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/876282ee2f7a70c68128f916bbfa33d1/date_index_formatter.ipynb \ No newline at end of file diff --git a/_downloads/876ac5fb2c10c04118fbc56933da5b12/mpl_with_glade3_sgskip.ipynb b/_downloads/876ac5fb2c10c04118fbc56933da5b12/mpl_with_glade3_sgskip.ipynb deleted file mode 120000 index d56184945e2..00000000000 --- a/_downloads/876ac5fb2c10c04118fbc56933da5b12/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/876ac5fb2c10c04118fbc56933da5b12/mpl_with_glade3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/876cb30969fbdb82863a8c565ff49787/contourf3d.py b/_downloads/876cb30969fbdb82863a8c565ff49787/contourf3d.py deleted file mode 120000 index 154f8370792..00000000000 --- a/_downloads/876cb30969fbdb82863a8c565ff49787/contourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/876cb30969fbdb82863a8c565ff49787/contourf3d.py \ No newline at end of file diff --git a/_downloads/8786b621128c45e3943e169a221ce455/constrainedlayout_guide.ipynb b/_downloads/8786b621128c45e3943e169a221ce455/constrainedlayout_guide.ipynb deleted file mode 120000 index 15a65c2fc64..00000000000 --- a/_downloads/8786b621128c45e3943e169a221ce455/constrainedlayout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8786b621128c45e3943e169a221ce455/constrainedlayout_guide.ipynb \ No newline at end of file diff --git a/_downloads/879556b65fbef3f9a518a96e1d5c0f36/surface3d_2.ipynb b/_downloads/879556b65fbef3f9a518a96e1d5c0f36/surface3d_2.ipynb deleted file mode 120000 index 3e3b64f3b75..00000000000 --- a/_downloads/879556b65fbef3f9a518a96e1d5c0f36/surface3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/879556b65fbef3f9a518a96e1d5c0f36/surface3d_2.ipynb \ No newline at end of file diff --git a/_downloads/8796a071837e2ee450f49f8aedd837d8/contourf_demo.py b/_downloads/8796a071837e2ee450f49f8aedd837d8/contourf_demo.py deleted file mode 100644 index 6f3460f948a..00000000000 --- a/_downloads/8796a071837e2ee450f49f8aedd837d8/contourf_demo.py +++ /dev/null @@ -1,130 +0,0 @@ -""" -============= -Contourf Demo -============= - -How to use the :meth:`.axes.Axes.contourf` method to create filled contour plots. -""" -import numpy as np -import matplotlib.pyplot as plt - -origin = 'lower' - -delta = 0.025 - -x = y = np.arange(-3.0, 3.01, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -nr, nc = Z.shape - -# put NaNs in one corner: -Z[-nr // 6:, -nc // 6:] = np.nan -# contourf will convert these to masked - - -Z = np.ma.array(Z) -# mask another corner: -Z[:nr // 6, :nc // 6] = np.ma.masked - -# mask a circle in the middle: -interior = np.sqrt(X**2 + Y**2) < 0.5 -Z[interior] = np.ma.masked - -# We are using automatic selection of contour levels; -# this is usually not such a good idea, because they don't -# occur on nice boundaries, but we do it here for purposes -# of illustration. - -fig1, ax2 = plt.subplots(constrained_layout=True) -CS = ax2.contourf(X, Y, Z, 10, cmap=plt.cm.bone, origin=origin) - -# Note that in the following, we explicitly pass in a subset of -# the contour levels used for the filled contours. Alternatively, -# We could pass in additional levels to provide extra resolution, -# or leave out the levels kwarg to use all of the original levels. - -CS2 = ax2.contour(CS, levels=CS.levels[::2], colors='r', origin=origin) - -ax2.set_title('Nonsense (3 masked regions)') -ax2.set_xlabel('word length anomaly') -ax2.set_ylabel('sentence length anomaly') - -# Make a colorbar for the ContourSet returned by the contourf call. -cbar = fig1.colorbar(CS) -cbar.ax.set_ylabel('verbosity coefficient') -# Add the contour line levels to the colorbar -cbar.add_lines(CS2) - -fig2, ax2 = plt.subplots(constrained_layout=True) -# Now make a contour plot with the levels specified, -# and with the colormap generated automatically from a list -# of colors. -levels = [-1.5, -1, -0.5, 0, 0.5, 1] -CS3 = ax2.contourf(X, Y, Z, levels, - colors=('r', 'g', 'b'), - origin=origin, - extend='both') -# Our data range extends outside the range of levels; make -# data below the lowest contour level yellow, and above the -# highest level cyan: -CS3.cmap.set_under('yellow') -CS3.cmap.set_over('cyan') - -CS4 = ax2.contour(X, Y, Z, levels, - colors=('k',), - linewidths=(3,), - origin=origin) -ax2.set_title('Listed colors (3 masked regions)') -ax2.clabel(CS4, fmt='%2.1f', colors='w', fontsize=14) - -# Notice that the colorbar command gets all the information it -# needs from the ContourSet object, CS3. -fig2.colorbar(CS3) - -# Illustrate all 4 possible "extend" settings: -extends = ["neither", "both", "min", "max"] -cmap = plt.cm.get_cmap("winter") -cmap.set_under("magenta") -cmap.set_over("yellow") -# Note: contouring simply excludes masked or nan regions, so -# instead of using the "bad" colormap value for them, it draws -# nothing at all in them. Therefore the following would have -# no effect: -# cmap.set_bad("red") - -fig, axs = plt.subplots(2, 2, constrained_layout=True) - -for ax, extend in zip(axs.ravel(), extends): - cs = ax.contourf(X, Y, Z, levels, cmap=cmap, extend=extend, origin=origin) - fig.colorbar(cs, ax=ax, shrink=0.9) - ax.set_title("extend = %s" % extend) - ax.locator_params(nbins=4) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.axes.Axes.clabel -matplotlib.pyplot.clabel -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.Colormap -matplotlib.colors.Colormap.set_bad -matplotlib.colors.Colormap.set_under -matplotlib.colors.Colormap.set_over diff --git a/_downloads/879ffa264895a5fbedeb340ce0980526/axis_equal_demo.py b/_downloads/879ffa264895a5fbedeb340ce0980526/axis_equal_demo.py deleted file mode 100644 index 002a2bb62b4..00000000000 --- a/_downloads/879ffa264895a5fbedeb340ce0980526/axis_equal_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=============== -Axis Equal Demo -=============== - -How to set and adjust plots with equal axis ratios. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Plot circle of radius 3. - -an = np.linspace(0, 2 * np.pi, 100) -fig, axs = plt.subplots(2, 2) - -axs[0, 0].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[0, 0].set_title('not equal, looks like ellipse', fontsize=10) - -axs[0, 1].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[0, 1].axis('equal') -axs[0, 1].set_title('equal, looks like circle', fontsize=10) - -axs[1, 0].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[1, 0].axis('equal') -axs[1, 0].set(xlim=(-3, 3), ylim=(-3, 3)) -axs[1, 0].set_title('still a circle, even after changing limits', fontsize=10) - -axs[1, 1].plot(3 * np.cos(an), 3 * np.sin(an)) -axs[1, 1].set_aspect('equal', 'box') -axs[1, 1].set_title('still a circle, auto-adjusted data limits', fontsize=10) - -fig.tight_layout() - -plt.show() diff --git a/_downloads/87a0179ca17fb060dece77aa793421f9/tick-locators.ipynb b/_downloads/87a0179ca17fb060dece77aa793421f9/tick-locators.ipynb deleted file mode 120000 index 0b9a4900625..00000000000 --- a/_downloads/87a0179ca17fb060dece77aa793421f9/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/87a0179ca17fb060dece77aa793421f9/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/87a11b7fe194d39cafe00868cf7459ce/colormap_normalizations_lognorm.py b/_downloads/87a11b7fe194d39cafe00868cf7459ce/colormap_normalizations_lognorm.py deleted file mode 120000 index d172eaf0e51..00000000000 --- a/_downloads/87a11b7fe194d39cafe00868cf7459ce/colormap_normalizations_lognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/87a11b7fe194d39cafe00868cf7459ce/colormap_normalizations_lognorm.py \ No newline at end of file diff --git a/_downloads/87a3e395ec729b8d48fcec1ab9b7ff1b/anchored_box04.py b/_downloads/87a3e395ec729b8d48fcec1ab9b7ff1b/anchored_box04.py deleted file mode 120000 index 08ef66c581a..00000000000 --- a/_downloads/87a3e395ec729b8d48fcec1ab9b7ff1b/anchored_box04.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/87a3e395ec729b8d48fcec1ab9b7ff1b/anchored_box04.py \ No newline at end of file diff --git a/_downloads/87ac3291d9154782c62d38045396d9f6/mixed_subplots.ipynb b/_downloads/87ac3291d9154782c62d38045396d9f6/mixed_subplots.ipynb deleted file mode 120000 index 9f6431eda75..00000000000 --- a/_downloads/87ac3291d9154782c62d38045396d9f6/mixed_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/87ac3291d9154782c62d38045396d9f6/mixed_subplots.ipynb \ No newline at end of file diff --git a/_downloads/87b02fdd47cd91a9a8a895daa970217b/2dcollections3d.ipynb b/_downloads/87b02fdd47cd91a9a8a895daa970217b/2dcollections3d.ipynb deleted file mode 120000 index 1fb97d47f19..00000000000 --- a/_downloads/87b02fdd47cd91a9a8a895daa970217b/2dcollections3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/87b02fdd47cd91a9a8a895daa970217b/2dcollections3d.ipynb \ No newline at end of file diff --git a/_downloads/87b12d04e4c71e9c8a46580e1ac199dc/animated_histogram.ipynb b/_downloads/87b12d04e4c71e9c8a46580e1ac199dc/animated_histogram.ipynb deleted file mode 120000 index b21993460a4..00000000000 --- a/_downloads/87b12d04e4c71e9c8a46580e1ac199dc/animated_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/87b12d04e4c71e9c8a46580e1ac199dc/animated_histogram.ipynb \ No newline at end of file diff --git a/_downloads/87b74ad122fabcdba0d1275696a858ea/surface3d.ipynb b/_downloads/87b74ad122fabcdba0d1275696a858ea/surface3d.ipynb deleted file mode 120000 index bfd4d15752d..00000000000 --- a/_downloads/87b74ad122fabcdba0d1275696a858ea/surface3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/87b74ad122fabcdba0d1275696a858ea/surface3d.ipynb \ No newline at end of file diff --git a/_downloads/87b75d2c0113cb3bc64ad66b6f3723ba/major_minor_demo.py b/_downloads/87b75d2c0113cb3bc64ad66b6f3723ba/major_minor_demo.py deleted file mode 120000 index dc0f7093733..00000000000 --- a/_downloads/87b75d2c0113cb3bc64ad66b6f3723ba/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/87b75d2c0113cb3bc64ad66b6f3723ba/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/87baf802e92e8a80cf5ca41c7b986d75/colormap_normalizations_symlognorm.ipynb b/_downloads/87baf802e92e8a80cf5ca41c7b986d75/colormap_normalizations_symlognorm.ipynb deleted file mode 120000 index 41208e49536..00000000000 --- a/_downloads/87baf802e92e8a80cf5ca41c7b986d75/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/87baf802e92e8a80cf5ca41c7b986d75/colormap_normalizations_symlognorm.ipynb \ No newline at end of file diff --git a/_downloads/87bddbdec075b32badfe4d2981e336a5/anchored_box03.ipynb b/_downloads/87bddbdec075b32badfe4d2981e336a5/anchored_box03.ipynb deleted file mode 100644 index ebbe171838c..00000000000 --- a/_downloads/87bddbdec075b32badfe4d2981e336a5/anchored_box03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Ellipse\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nbox = AnchoredAuxTransformBox(ax.transData, loc='upper left')\nel = Ellipse((0, 0), width=0.1, height=0.4, angle=30) # in data coordinates!\nbox.drawing_area.add_artist(el)\n\nax.add_artist(box)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/87d33775d736a2b5d431dc1a44ed0597/cursor.py b/_downloads/87d33775d736a2b5d431dc1a44ed0597/cursor.py deleted file mode 120000 index 981daa1e10a..00000000000 --- a/_downloads/87d33775d736a2b5d431dc1a44ed0597/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/87d33775d736a2b5d431dc1a44ed0597/cursor.py \ No newline at end of file diff --git a/_downloads/87d38fe38154318a3d94a9e85d1fa94d/cursor.py b/_downloads/87d38fe38154318a3d94a9e85d1fa94d/cursor.py deleted file mode 100644 index 6fa20ca2117..00000000000 --- a/_downloads/87d38fe38154318a3d94a9e85d1fa94d/cursor.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -====== -Cursor -====== - -""" -from matplotlib.widgets import Cursor -import numpy as np -import matplotlib.pyplot as plt - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig = plt.figure(figsize=(8, 6)) -ax = fig.add_subplot(111, facecolor='#FFFFCC') - -x, y = 4*(np.random.rand(2, 100) - .5) -ax.plot(x, y, 'o') -ax.set_xlim(-2, 2) -ax.set_ylim(-2, 2) - -# Set useblit=True on most backends for enhanced performance. -cursor = Cursor(ax, useblit=True, color='red', linewidth=2) - -plt.show() diff --git a/_downloads/87d4c90a7e5e6ca21ec5cc86b40a553a/plot.py b/_downloads/87d4c90a7e5e6ca21ec5cc86b40a553a/plot.py deleted file mode 120000 index 2a0e444777e..00000000000 --- a/_downloads/87d4c90a7e5e6ca21ec5cc86b40a553a/plot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/87d4c90a7e5e6ca21ec5cc86b40a553a/plot.py \ No newline at end of file diff --git a/_downloads/87ecf6c62b5cda024f5fdf13364bed22/date_demo_convert.py b/_downloads/87ecf6c62b5cda024f5fdf13364bed22/date_demo_convert.py deleted file mode 120000 index b172f898a9f..00000000000 --- a/_downloads/87ecf6c62b5cda024f5fdf13364bed22/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/87ecf6c62b5cda024f5fdf13364bed22/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/87f7453845619f7323a26b8fcf80da6b/spine_placement_demo.ipynb b/_downloads/87f7453845619f7323a26b8fcf80da6b/spine_placement_demo.ipynb deleted file mode 120000 index 2504759a173..00000000000 --- a/_downloads/87f7453845619f7323a26b8fcf80da6b/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/87f7453845619f7323a26b8fcf80da6b/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/87fa6a9fdda272c450584161d7109db5/images.py b/_downloads/87fa6a9fdda272c450584161d7109db5/images.py deleted file mode 120000 index 6ec327dc527..00000000000 --- a/_downloads/87fa6a9fdda272c450584161d7109db5/images.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/87fa6a9fdda272c450584161d7109db5/images.py \ No newline at end of file diff --git a/_downloads/880f5776b6b211544438056c6275470c/tutorials_jupyter.zip b/_downloads/880f5776b6b211544438056c6275470c/tutorials_jupyter.zip deleted file mode 120000 index 1743f854993..00000000000 --- a/_downloads/880f5776b6b211544438056c6275470c/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.3.2/_downloads/880f5776b6b211544438056c6275470c/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/8816c87b86ae45fbd8167f1d690a959f/transoffset.py b/_downloads/8816c87b86ae45fbd8167f1d690a959f/transoffset.py deleted file mode 120000 index 4dc92772a37..00000000000 --- a/_downloads/8816c87b86ae45fbd8167f1d690a959f/transoffset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8816c87b86ae45fbd8167f1d690a959f/transoffset.py \ No newline at end of file diff --git a/_downloads/881c247c4e4bce85d3d3eb09dbf200ff/pgf_texsystem.py b/_downloads/881c247c4e4bce85d3d3eb09dbf200ff/pgf_texsystem.py deleted file mode 120000 index 8c18b906c8b..00000000000 --- a/_downloads/881c247c4e4bce85d3d3eb09dbf200ff/pgf_texsystem.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/881c247c4e4bce85d3d3eb09dbf200ff/pgf_texsystem.py \ No newline at end of file diff --git a/_downloads/881c69da60c34aa30b1d84f4f4a27c66/barchart_demo.py b/_downloads/881c69da60c34aa30b1d84f4f4a27c66/barchart_demo.py deleted file mode 100644 index 4e66855bc56..00000000000 --- a/_downloads/881c69da60c34aa30b1d84f4f4a27c66/barchart_demo.py +++ /dev/null @@ -1,188 +0,0 @@ -""" -=================================== -Percentiles as horizontal bar chart -=================================== - -Bar charts are useful for visualizing counts, or summary statistics -with error bars. Also see the :doc:`/gallery/lines_bars_and_markers/barchart` -or the :doc:`/gallery/lines_bars_and_markers/barh` example for simpler versions -of those features. - -This example comes from an application in which grade school gym -teachers wanted to be able to show parents how their child did across -a handful of fitness tests, and importantly, relative to how other -children did. To extract the plotting code for demo purposes, we'll -just make up some data for little Johnny Doe. -""" - -import numpy as np -import matplotlib -import matplotlib.pyplot as plt -from matplotlib.ticker import MaxNLocator -from collections import namedtuple - -np.random.seed(42) - -Student = namedtuple('Student', ['name', 'grade', 'gender']) -Score = namedtuple('Score', ['score', 'percentile']) - -# GLOBAL CONSTANTS -testNames = ['Pacer Test', 'Flexed Arm\n Hang', 'Mile Run', 'Agility', - 'Push Ups'] -testMeta = dict(zip(testNames, ['laps', 'sec', 'min:sec', 'sec', ''])) - - -def attach_ordinal(num): - """helper function to add ordinal string to integers - - 1 -> 1st - 56 -> 56th - """ - suffixes = {str(i): v - for i, v in enumerate(['th', 'st', 'nd', 'rd', 'th', - 'th', 'th', 'th', 'th', 'th'])} - - v = str(num) - # special case early teens - if v in {'11', '12', '13'}: - return v + 'th' - return v + suffixes[v[-1]] - - -def format_score(scr, test): - """ - Build up the score labels for the right Y-axis by first - appending a carriage return to each string and then tacking on - the appropriate meta information (i.e., 'laps' vs 'seconds'). We - want the labels centered on the ticks, so if there is no meta - info (like for pushups) then don't add the carriage return to - the string - """ - md = testMeta[test] - if md: - return '{0}\n{1}'.format(scr, md) - else: - return scr - - -def format_ycursor(y): - y = int(y) - if y < 0 or y >= len(testNames): - return '' - else: - return testNames[y] - - -def plot_student_results(student, scores, cohort_size): - # create the figure - fig, ax1 = plt.subplots(figsize=(9, 7)) - fig.subplots_adjust(left=0.115, right=0.88) - fig.canvas.set_window_title('Eldorado K-8 Fitness Chart') - - pos = np.arange(len(testNames)) - - rects = ax1.barh(pos, [scores[k].percentile for k in testNames], - align='center', - height=0.5, - tick_label=testNames) - - ax1.set_title(student.name) - - ax1.set_xlim([0, 100]) - ax1.xaxis.set_major_locator(MaxNLocator(11)) - ax1.xaxis.grid(True, linestyle='--', which='major', - color='grey', alpha=.25) - - # Plot a solid vertical gridline to highlight the median position - ax1.axvline(50, color='grey', alpha=0.25) - - # Set the right-hand Y-axis ticks and labels - ax2 = ax1.twinx() - - scoreLabels = [format_score(scores[k].score, k) for k in testNames] - - # set the tick locations - ax2.set_yticks(pos) - # make sure that the limits are set equally on both yaxis so the - # ticks line up - ax2.set_ylim(ax1.get_ylim()) - - # set the tick labels - ax2.set_yticklabels(scoreLabels) - - ax2.set_ylabel('Test Scores') - - xlabel = ('Percentile Ranking Across {grade} Grade {gender}s\n' - 'Cohort Size: {cohort_size}') - ax1.set_xlabel(xlabel.format(grade=attach_ordinal(student.grade), - gender=student.gender.title(), - cohort_size=cohort_size)) - - rect_labels = [] - # Lastly, write in the ranking inside each bar to aid in interpretation - for rect in rects: - # Rectangle widths are already integer-valued but are floating - # type, so it helps to remove the trailing decimal point and 0 by - # converting width to int type - width = int(rect.get_width()) - - rankStr = attach_ordinal(width) - # The bars aren't wide enough to print the ranking inside - if width < 40: - # Shift the text to the right side of the right edge - xloc = 5 - # Black against white background - clr = 'black' - align = 'left' - else: - # Shift the text to the left side of the right edge - xloc = -5 - # White on magenta - clr = 'white' - align = 'right' - - # Center the text vertically in the bar - yloc = rect.get_y() + rect.get_height() / 2 - label = ax1.annotate(rankStr, xy=(width, yloc), xytext=(xloc, 0), - textcoords="offset points", - ha=align, va='center', - color=clr, weight='bold', clip_on=True) - rect_labels.append(label) - - # make the interactive mouse over give the bar title - ax2.fmt_ydata = format_ycursor - # return all of the artists created - return {'fig': fig, - 'ax': ax1, - 'ax_right': ax2, - 'bars': rects, - 'perc_labels': rect_labels} - - -student = Student('Johnny Doe', 2, 'boy') -scores = dict(zip(testNames, - (Score(v, p) for v, p in - zip(['7', '48', '12:52', '17', '14'], - np.round(np.random.uniform(0, 1, - len(testNames)) * 100, 0))))) -cohort_size = 62 # The number of other 2nd grade boys - -arts = plot_student_results(student, scores, cohort_size) -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate -matplotlib.axes.Axes.twinx diff --git a/_downloads/88202b665d8f6222af7a70d1737e6584/toolmanager_sgskip.py b/_downloads/88202b665d8f6222af7a70d1737e6584/toolmanager_sgskip.py deleted file mode 120000 index 88ffe7ce790..00000000000 --- a/_downloads/88202b665d8f6222af7a70d1737e6584/toolmanager_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/88202b665d8f6222af7a70d1737e6584/toolmanager_sgskip.py \ No newline at end of file diff --git a/_downloads/8820ea50bdbf3e3c8f185f34a814cdf7/gridspec.py b/_downloads/8820ea50bdbf3e3c8f185f34a814cdf7/gridspec.py deleted file mode 100644 index df46971cd16..00000000000 --- a/_downloads/8820ea50bdbf3e3c8f185f34a814cdf7/gridspec.py +++ /dev/null @@ -1,282 +0,0 @@ -""" -============================================================= -Customizing Figure Layouts Using GridSpec and Other Functions -============================================================= - -How to create grid-shaped combinations of axes. - - :func:`~matplotlib.pyplot.subplots` - Perhaps the primary function used to create figures and axes. - It's also similar to :func:`.matplotlib.pyplot.subplot`, - but creates and places all axes on the figure at once. See also - `matplotlib.Figure.subplots`. - - :class:`~matplotlib.gridspec.GridSpec` - Specifies the geometry of the grid that a subplot will be - placed. The number of rows and number of columns of the grid - need to be set. Optionally, the subplot layout parameters - (e.g., left, right, etc.) can be tuned. - - :class:`~matplotlib.gridspec.SubplotSpec` - Specifies the location of the subplot in the given *GridSpec*. - - :func:`~matplotlib.pyplot.subplot2grid` - A helper function that is similar to - :func:`~matplotlib.pyplot.subplot`, - but uses 0-based indexing and let subplot to occupy multiple cells. - This function is not covered in this tutorial. - -""" - -import matplotlib -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - -############################################################################ -# Basic Quickstart Guide -# ====================== -# -# These first two examples show how to create a basic 2-by-2 grid using -# both :func:`~matplotlib.pyplot.subplots` and :mod:`~matplotlib.gridspec`. -# -# Using :func:`~matplotlib.pyplot.subplots` is quite simple. -# It returns a :class:`~matplotlib.figure.Figure` instance and an array of -# :class:`~matplotlib.axes.Axes` objects. - -fig1, f1_axes = plt.subplots(ncols=2, nrows=2, constrained_layout=True) - -############################################################################ -# For a simple use case such as this, :mod:`~matplotlib.gridspec` is -# perhaps overly verbose. -# You have to create the figure and :class:`~matplotlib.gridspec.GridSpec` -# instance separately, then pass elements of gridspec instance to the -# :func:`~matplotlib.figure.Figure.add_subplot` method to create the axes -# objects. -# The elements of the gridspec are accessed in generally the same manner as -# numpy arrays. - -fig2 = plt.figure(constrained_layout=True) -spec2 = gridspec.GridSpec(ncols=2, nrows=2, figure=fig2) -f2_ax1 = fig2.add_subplot(spec2[0, 0]) -f2_ax2 = fig2.add_subplot(spec2[0, 1]) -f2_ax3 = fig2.add_subplot(spec2[1, 0]) -f2_ax4 = fig2.add_subplot(spec2[1, 1]) - -############################################################################# -# The power of gridspec comes in being able to create subplots that span -# rows and columns. Note the -# `Numpy slice `_ -# syntax for selecting the part of the gridspec each subplot will occupy. -# -# Note that we have also used the convenience method `.Figure.add_gridspec` -# instead of `.gridspec.GridSpec`, potentially saving the user an import, -# and keeping the namespace cleaner. - -fig3 = plt.figure(constrained_layout=True) -gs = fig3.add_gridspec(3, 3) -f3_ax1 = fig3.add_subplot(gs[0, :]) -f3_ax1.set_title('gs[0, :]') -f3_ax2 = fig3.add_subplot(gs[1, :-1]) -f3_ax2.set_title('gs[1, :-1]') -f3_ax3 = fig3.add_subplot(gs[1:, -1]) -f3_ax3.set_title('gs[1:, -1]') -f3_ax4 = fig3.add_subplot(gs[-1, 0]) -f3_ax4.set_title('gs[-1, 0]') -f3_ax5 = fig3.add_subplot(gs[-1, -2]) -f3_ax5.set_title('gs[-1, -2]') - -############################################################################# -# :mod:`~matplotlib.gridspec` is also indispensable for creating subplots -# of different widths via a couple of methods. -# -# The method shown here is similar to the one above and initializes a -# uniform grid specification, -# and then uses numpy indexing and slices to allocate multiple -# "cells" for a given subplot. - -fig4 = plt.figure(constrained_layout=True) -spec4 = fig4.add_gridspec(ncols=2, nrows=2) -anno_opts = dict(xy=(0.5, 0.5), xycoords='axes fraction', - va='center', ha='center') - -f4_ax1 = fig4.add_subplot(spec4[0, 0]) -f4_ax1.annotate('GridSpec[0, 0]', **anno_opts) -fig4.add_subplot(spec4[0, 1]).annotate('GridSpec[0, 1:]', **anno_opts) -fig4.add_subplot(spec4[1, 0]).annotate('GridSpec[1:, 0]', **anno_opts) -fig4.add_subplot(spec4[1, 1]).annotate('GridSpec[1:, 1:]', **anno_opts) - -############################################################################ -# Another option is to use the ``width_ratios`` and ``height_ratios`` -# parameters. These keyword arguments are lists of numbers. -# Note that absolute values are meaningless, only their relative ratios -# matter. That means that ``width_ratios=[2, 4, 8]`` is equivalent to -# ``width_ratios=[1, 2, 4]`` within equally wide figures. -# For the sake of demonstration, we'll blindly create the axes within -# ``for`` loops since we won't need them later. - -fig5 = plt.figure(constrained_layout=True) -widths = [2, 3, 1.5] -heights = [1, 3, 2] -spec5 = fig5.add_gridspec(ncols=3, nrows=3, width_ratios=widths, - height_ratios=heights) -for row in range(3): - for col in range(3): - ax = fig5.add_subplot(spec5[row, col]) - label = 'Width: {}\nHeight: {}'.format(widths[col], heights[row]) - ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center') - -############################################################################ -# Learning to use ``width_ratios`` and ``height_ratios`` is particularly -# useful since the top-level function :func:`~matplotlib.pyplot.subplots` -# accepts them within the ``gridspec_kw`` parameter. -# For that matter, any parameter accepted by -# :class:`~matplotlib.gridspec.GridSpec` can be passed to -# :func:`~matplotlib.pyplot.subplots` via the ``gridspec_kw`` parameter. -# This example recreates the previous figure without directly using a -# gridspec instance. - -gs_kw = dict(width_ratios=widths, height_ratios=heights) -fig6, f6_axes = plt.subplots(ncols=3, nrows=3, constrained_layout=True, - gridspec_kw=gs_kw) -for r, row in enumerate(f6_axes): - for c, ax in enumerate(row): - label = 'Width: {}\nHeight: {}'.format(widths[c], heights[r]) - ax.annotate(label, (0.1, 0.5), xycoords='axes fraction', va='center') - -############################################################################ -# The ``subplots`` and ``gridspec`` methods can be combined since it is -# sometimes more convenient to make most of the subplots using ``subplots`` -# and then remove some and combine them. Here we create a layout with -# the bottom two axes in the last column combined. - -fig7, f7_axs = plt.subplots(ncols=3, nrows=3) -gs = f7_axs[1, 2].get_gridspec() -# remove the underlying axes -for ax in f7_axs[1:, -1]: - ax.remove() -axbig = fig7.add_subplot(gs[1:, -1]) -axbig.annotate('Big Axes \nGridSpec[1:, -1]', (0.1, 0.5), - xycoords='axes fraction', va='center') - -fig7.tight_layout() - -############################################################################### -# Fine Adjustments to a Gridspec Layout -# ===================================== -# -# When a GridSpec is explicitly used, you can adjust the layout -# parameters of subplots that are created from the GridSpec. Note this -# option is not compatible with ``constrained_layout`` or -# `.Figure.tight_layout` which both adjust subplot sizes to fill the -# figure. - -fig8 = plt.figure(constrained_layout=False) -gs1 = fig8.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48, wspace=0.05) -f8_ax1 = fig8.add_subplot(gs1[:-1, :]) -f8_ax2 = fig8.add_subplot(gs1[-1, :-1]) -f8_ax3 = fig8.add_subplot(gs1[-1, -1]) - -############################################################################### -# This is similar to :func:`~matplotlib.pyplot.subplots_adjust`, but it only -# affects the subplots that are created from the given GridSpec. -# -# For example, compare the left and right sides of this figure: - -fig9 = plt.figure(constrained_layout=False) -gs1 = fig9.add_gridspec(nrows=3, ncols=3, left=0.05, right=0.48, - wspace=0.05) -f9_ax1 = fig9.add_subplot(gs1[:-1, :]) -f9_ax2 = fig9.add_subplot(gs1[-1, :-1]) -f9_ax3 = fig9.add_subplot(gs1[-1, -1]) - -gs2 = fig9.add_gridspec(nrows=3, ncols=3, left=0.55, right=0.98, - hspace=0.05) -f9_ax4 = fig9.add_subplot(gs2[:, :-1]) -f9_ax5 = fig9.add_subplot(gs2[:-1, -1]) -f9_ax6 = fig9.add_subplot(gs2[-1, -1]) - -############################################################################### -# GridSpec using SubplotSpec -# ========================== -# -# You can create GridSpec from the :class:`~matplotlib.gridspec.SubplotSpec`, -# in which case its layout parameters are set to that of the location of -# the given SubplotSpec. -# -# Note this is also available from the more verbose -# `.gridspec.GridSpecFromSubplotSpec`. - -fig10 = plt.figure(constrained_layout=True) -gs0 = fig10.add_gridspec(1, 2) - -gs00 = gs0[0].subgridspec(2, 3) -gs01 = gs0[1].subgridspec(3, 2) - -for a in range(2): - for b in range(3): - fig10.add_subplot(gs00[a, b]) - fig10.add_subplot(gs01[b, a]) - -############################################################################### -# A Complex Nested GridSpec using SubplotSpec -# =========================================== -# -# Here's a more sophisticated example of nested GridSpec where we put -# a box around each cell of the outer 4x4 grid, by hiding appropriate -# spines in each of the inner 3x3 grids. - -import numpy as np -from itertools import product - - -def squiggle_xy(a, b, c, d, i=np.arange(0.0, 2*np.pi, 0.05)): - return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d) - - -fig11 = plt.figure(figsize=(8, 8), constrained_layout=False) - -# gridspec inside gridspec -outer_grid = fig11.add_gridspec(4, 4, wspace=0.0, hspace=0.0) - -for i in range(16): - inner_grid = outer_grid[i].subgridspec(3, 3, wspace=0.0, hspace=0.0) - a, b = int(i/4)+1, i % 4+1 - for j, (c, d) in enumerate(product(range(1, 4), repeat=2)): - ax = fig11.add_subplot(inner_grid[j]) - ax.plot(*squiggle_xy(a, b, c, d)) - ax.set_xticks([]) - ax.set_yticks([]) - fig11.add_subplot(ax) - -all_axes = fig11.get_axes() - -# show only the outside spines -for ax in all_axes: - for sp in ax.spines.values(): - sp.set_visible(False) - if ax.is_first_row(): - ax.spines['top'].set_visible(True) - if ax.is_last_row(): - ax.spines['bottom'].set_visible(True) - if ax.is_first_col(): - ax.spines['left'].set_visible(True) - if ax.is_last_col(): - ax.spines['right'].set_visible(True) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The usage of the following functions and methods is shown in this example: - -matplotlib.pyplot.subplots -matplotlib.figure.Figure.add_gridspec -matplotlib.figure.Figure.add_subplot -matplotlib.gridspec.GridSpec -matplotlib.gridspec.SubplotSpec.subgridspec -matplotlib.gridspec.GridSpecFromSubplotSpec diff --git a/_downloads/882344260d8790c80ba30a9886b7a23f/polar_scatter.py b/_downloads/882344260d8790c80ba30a9886b7a23f/polar_scatter.py deleted file mode 120000 index 0a4c38e259f..00000000000 --- a/_downloads/882344260d8790c80ba30a9886b7a23f/polar_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/882344260d8790c80ba30a9886b7a23f/polar_scatter.py \ No newline at end of file diff --git a/_downloads/882766d0eb7a4f6abcb9ab1447051c4d/lines3d.py b/_downloads/882766d0eb7a4f6abcb9ab1447051c4d/lines3d.py deleted file mode 120000 index e0955ea95a5..00000000000 --- a/_downloads/882766d0eb7a4f6abcb9ab1447051c4d/lines3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/882766d0eb7a4f6abcb9ab1447051c4d/lines3d.py \ No newline at end of file diff --git a/_downloads/8827ccd25c6e23ffcc6c35517d6af885/path_tutorial.ipynb b/_downloads/8827ccd25c6e23ffcc6c35517d6af885/path_tutorial.ipynb deleted file mode 120000 index d502ea2f1cb..00000000000 --- a/_downloads/8827ccd25c6e23ffcc6c35517d6af885/path_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8827ccd25c6e23ffcc6c35517d6af885/path_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/88311cd4d158365d72c7d0f661fb58c8/usetex_demo.ipynb b/_downloads/88311cd4d158365d72c7d0f661fb58c8/usetex_demo.ipynb deleted file mode 120000 index 39db9ad2dfd..00000000000 --- a/_downloads/88311cd4d158365d72c7d0f661fb58c8/usetex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/88311cd4d158365d72c7d0f661fb58c8/usetex_demo.ipynb \ No newline at end of file diff --git a/_downloads/8835c337f69d4d27dd60a0013a767024/demo_axisline_style.py b/_downloads/8835c337f69d4d27dd60a0013a767024/demo_axisline_style.py deleted file mode 100644 index fc61375147e..00000000000 --- a/_downloads/8835c337f69d4d27dd60a0013a767024/demo_axisline_style.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -================ -Axis line styles -================ - -This example shows some configurations for axis style. -""" - -from mpl_toolkits.axisartist.axislines import SubplotZero -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = SubplotZero(fig, 111) -fig.add_subplot(ax) - -for direction in ["xzero", "yzero"]: - # adds arrows at the ends of each axis - ax.axis[direction].set_axisline_style("-|>") - - # adds X and Y-axis from the origin - ax.axis[direction].set_visible(True) - -for direction in ["left", "right", "bottom", "top"]: - # hides borders - ax.axis[direction].set_visible(False) - -x = np.linspace(-0.5, 1., 100) -ax.plot(x, np.sin(x*np.pi)) - -plt.show() diff --git a/_downloads/883714d1dd760f8e32c7f09aa32088a3/print_stdout_sgskip.py b/_downloads/883714d1dd760f8e32c7f09aa32088a3/print_stdout_sgskip.py deleted file mode 120000 index 2c5bb5e3ac9..00000000000 --- a/_downloads/883714d1dd760f8e32c7f09aa32088a3/print_stdout_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/883714d1dd760f8e32c7f09aa32088a3/print_stdout_sgskip.py \ No newline at end of file diff --git a/_downloads/883b2824322a3d915ff95f45987c19e8/polygon_selector_demo.ipynb b/_downloads/883b2824322a3d915ff95f45987c19e8/polygon_selector_demo.ipynb deleted file mode 120000 index c9080a4366a..00000000000 --- a/_downloads/883b2824322a3d915ff95f45987c19e8/polygon_selector_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/883b2824322a3d915ff95f45987c19e8/polygon_selector_demo.ipynb \ No newline at end of file diff --git a/_downloads/88487d13448e5a57da4c4b5e4301c984/animated_histogram.ipynb b/_downloads/88487d13448e5a57da4c4b5e4301c984/animated_histogram.ipynb deleted file mode 120000 index 8646996348a..00000000000 --- a/_downloads/88487d13448e5a57da4c4b5e4301c984/animated_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/88487d13448e5a57da4c4b5e4301c984/animated_histogram.ipynb \ No newline at end of file diff --git a/_downloads/8849b49483fad9c1930d11f8118fefd9/pyplot_mathtext.ipynb b/_downloads/8849b49483fad9c1930d11f8118fefd9/pyplot_mathtext.ipynb deleted file mode 120000 index e9ddee8f60f..00000000000 --- a/_downloads/8849b49483fad9c1930d11f8118fefd9/pyplot_mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8849b49483fad9c1930d11f8118fefd9/pyplot_mathtext.ipynb \ No newline at end of file diff --git a/_downloads/884f06416f167cf44d7d666d06d81b6c/sankey_rankine.py b/_downloads/884f06416f167cf44d7d666d06d81b6c/sankey_rankine.py deleted file mode 120000 index 6a85e547f55..00000000000 --- a/_downloads/884f06416f167cf44d7d666d06d81b6c/sankey_rankine.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/884f06416f167cf44d7d666d06d81b6c/sankey_rankine.py \ No newline at end of file diff --git a/_downloads/88568c2c48860e8c5c11859a64c65e92/mplot3d.py b/_downloads/88568c2c48860e8c5c11859a64c65e92/mplot3d.py deleted file mode 120000 index 1a959b5e8d9..00000000000 --- a/_downloads/88568c2c48860e8c5c11859a64c65e92/mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/88568c2c48860e8c5c11859a64c65e92/mplot3d.py \ No newline at end of file diff --git a/_downloads/88735ec9bb0bb7cc6f96497e5f108a45/voxels_rgb.py b/_downloads/88735ec9bb0bb7cc6f96497e5f108a45/voxels_rgb.py deleted file mode 120000 index 39b0fd838d4..00000000000 --- a/_downloads/88735ec9bb0bb7cc6f96497e5f108a45/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/88735ec9bb0bb7cc6f96497e5f108a45/voxels_rgb.py \ No newline at end of file diff --git a/_downloads/8879403bfe246ca1d5b75b0f961c40c6/axes_zoom_effect.ipynb b/_downloads/8879403bfe246ca1d5b75b0f961c40c6/axes_zoom_effect.ipynb deleted file mode 100644 index 52caa30a241..00000000000 --- a/_downloads/8879403bfe246ca1d5b75b0f961c40c6/axes_zoom_effect.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axes Zoom Effect\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.transforms import (\n Bbox, TransformedBbox, blended_transform_factory)\nfrom mpl_toolkits.axes_grid1.inset_locator import (\n BboxPatch, BboxConnector, BboxConnectorPatch)\n\n\ndef connect_bbox(bbox1, bbox2,\n loc1a, loc2a, loc1b, loc2b,\n prop_lines, prop_patches=None):\n if prop_patches is None:\n prop_patches = {\n **prop_lines,\n \"alpha\": prop_lines.get(\"alpha\", 1) * 0.2,\n }\n\n c1 = BboxConnector(bbox1, bbox2, loc1=loc1a, loc2=loc2a, **prop_lines)\n c1.set_clip_on(False)\n c2 = BboxConnector(bbox1, bbox2, loc1=loc1b, loc2=loc2b, **prop_lines)\n c2.set_clip_on(False)\n\n bbox_patch1 = BboxPatch(bbox1, **prop_patches)\n bbox_patch2 = BboxPatch(bbox2, **prop_patches)\n\n p = BboxConnectorPatch(bbox1, bbox2,\n # loc1a=3, loc2a=2, loc1b=4, loc2b=1,\n loc1a=loc1a, loc2a=loc2a, loc1b=loc1b, loc2b=loc2b,\n **prop_patches)\n p.set_clip_on(False)\n\n return c1, c2, bbox_patch1, bbox_patch2, p\n\n\ndef zoom_effect01(ax1, ax2, xmin, xmax, **kwargs):\n \"\"\"\n Connect *ax1* and *ax2*. The *xmin*-to-*xmax* range in both axes will\n be marked.\n\n Parameters\n ----------\n ax1\n The main axes.\n ax2\n The zoomed axes.\n xmin, xmax\n The limits of the colored area in both plot axes.\n **kwargs\n Arguments passed to the patch constructor.\n \"\"\"\n\n trans1 = blended_transform_factory(ax1.transData, ax1.transAxes)\n trans2 = blended_transform_factory(ax2.transData, ax2.transAxes)\n\n bbox = Bbox.from_extents(xmin, 0, xmax, 1)\n\n mybbox1 = TransformedBbox(bbox, trans1)\n mybbox2 = TransformedBbox(bbox, trans2)\n\n prop_patches = {**kwargs, \"ec\": \"none\", \"alpha\": 0.2}\n\n c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox(\n mybbox1, mybbox2,\n loc1a=3, loc2a=2, loc1b=4, loc2b=1,\n prop_lines=kwargs, prop_patches=prop_patches)\n\n ax1.add_patch(bbox_patch1)\n ax2.add_patch(bbox_patch2)\n ax2.add_patch(c1)\n ax2.add_patch(c2)\n ax2.add_patch(p)\n\n return c1, c2, bbox_patch1, bbox_patch2, p\n\n\ndef zoom_effect02(ax1, ax2, **kwargs):\n \"\"\"\n ax1 : the main axes\n ax1 : the zoomed axes\n\n Similar to zoom_effect01. The xmin & xmax will be taken from the\n ax1.viewLim.\n \"\"\"\n\n tt = ax1.transScale + (ax1.transLimits + ax2.transAxes)\n trans = blended_transform_factory(ax2.transData, tt)\n\n mybbox1 = ax1.bbox\n mybbox2 = TransformedBbox(ax1.viewLim, trans)\n\n prop_patches = {**kwargs, \"ec\": \"none\", \"alpha\": 0.2}\n\n c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox(\n mybbox1, mybbox2,\n loc1a=3, loc2a=2, loc1b=4, loc2b=1,\n prop_lines=kwargs, prop_patches=prop_patches)\n\n ax1.add_patch(bbox_patch1)\n ax2.add_patch(bbox_patch2)\n ax2.add_patch(c1)\n ax2.add_patch(c2)\n ax2.add_patch(p)\n\n return c1, c2, bbox_patch1, bbox_patch2, p\n\n\nimport matplotlib.pyplot as plt\n\nplt.figure(figsize=(5, 5))\nax1 = plt.subplot(221)\nax2 = plt.subplot(212)\nax2.set_xlim(0, 1)\nax2.set_xlim(0, 5)\nzoom_effect01(ax1, ax2, 0.2, 0.8)\n\n\nax1 = plt.subplot(222)\nax1.set_xlim(2, 3)\nax2.set_xlim(0, 5)\nzoom_effect02(ax1, ax2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/887bbe053ff9db7228524973bc10a4ea/transforms_tutorial.py b/_downloads/887bbe053ff9db7228524973bc10a4ea/transforms_tutorial.py deleted file mode 120000 index f56c3765450..00000000000 --- a/_downloads/887bbe053ff9db7228524973bc10a4ea/transforms_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/887bbe053ff9db7228524973bc10a4ea/transforms_tutorial.py \ No newline at end of file diff --git a/_downloads/887e73e2e20f2e12f5909dfaaa40e6cc/imshow_extent.ipynb b/_downloads/887e73e2e20f2e12f5909dfaaa40e6cc/imshow_extent.ipynb deleted file mode 120000 index 0f0bef0ce82..00000000000 --- a/_downloads/887e73e2e20f2e12f5909dfaaa40e6cc/imshow_extent.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/887e73e2e20f2e12f5909dfaaa40e6cc/imshow_extent.ipynb \ No newline at end of file diff --git a/_downloads/887eeafcb3d338e69b5906b918884b5b/contour_corner_mask.py b/_downloads/887eeafcb3d338e69b5906b918884b5b/contour_corner_mask.py deleted file mode 120000 index 047956168c5..00000000000 --- a/_downloads/887eeafcb3d338e69b5906b918884b5b/contour_corner_mask.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/887eeafcb3d338e69b5906b918884b5b/contour_corner_mask.py \ No newline at end of file diff --git a/_downloads/8886b6e1d972ba5ddc276ebfa7b973f8/demo_parasite_axes2.py b/_downloads/8886b6e1d972ba5ddc276ebfa7b973f8/demo_parasite_axes2.py deleted file mode 100644 index 77bb674c272..00000000000 --- a/_downloads/8886b6e1d972ba5ddc276ebfa7b973f8/demo_parasite_axes2.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -=================== -Demo Parasite Axes2 -=================== - -Parasite axis demo - -The following code is an example of a parasite axis. It aims to show how -to plot multiple different values onto one single plot. Notice how in this -example, par1 and par2 are both calling twinx meaning both are tied directly to -the x-axis. From there, each of those two axis can behave separately from the -each other, meaning they can take on separate values from themselves as well as -the x-axis. - -Note that this approach uses the `mpl_toolkits.axes_grid1.parasite_axes`\' -`~mpl_toolkits.axes_grid1.parasite_axes.host_subplot` and -`mpl_toolkits.axisartist.axislines.Axes`. An alternative approach using the -`~mpl_toolkits.axes_grid1.parasite_axes`\'s -`~.mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and -`~.mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes` is the -:doc:`/gallery/axisartist/demo_parasite_axes` example. -An alternative approach using the usual matplotlib subplots is shown in -the :doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example. -""" -from mpl_toolkits.axes_grid1 import host_subplot -import mpl_toolkits.axisartist as AA -import matplotlib.pyplot as plt - -host = host_subplot(111, axes_class=AA.Axes) -plt.subplots_adjust(right=0.75) - -par1 = host.twinx() -par2 = host.twinx() - -offset = 60 -new_fixed_axis = par2.get_grid_helper().new_fixed_axis -par2.axis["right"] = new_fixed_axis(loc="right", - axes=par2, - offset=(offset, 0)) - -par1.axis["right"].toggle(all=True) -par2.axis["right"].toggle(all=True) - -host.set_xlim(0, 2) -host.set_ylim(0, 2) - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par1.set_ylabel("Temperature") -par2.set_ylabel("Velocity") - -p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density") -p2, = par1.plot([0, 1, 2], [0, 3, 2], label="Temperature") -p3, = par2.plot([0, 1, 2], [50, 30, 15], label="Velocity") - -par1.set_ylim(0, 4) -par2.set_ylim(1, 65) - -host.legend() - -host.axis["left"].label.set_color(p1.get_color()) -par1.axis["right"].label.set_color(p2.get_color()) -par2.axis["right"].label.set_color(p3.get_color()) - -plt.show() diff --git a/_downloads/888b575f4c929727a190817ec6525d8c/text_fontdict.ipynb b/_downloads/888b575f4c929727a190817ec6525d8c/text_fontdict.ipynb deleted file mode 100644 index 1543144c1eb..00000000000 --- a/_downloads/888b575f4c929727a190817ec6525d8c/text_fontdict.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Controlling style of text and labels using a dictionary\n\n\nThis example shows how to share parameters across many text objects and labels\nby creating a dictionary of options passed across several functions.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nfont = {'family': 'serif',\n 'color': 'darkred',\n 'weight': 'normal',\n 'size': 16,\n }\n\nx = np.linspace(0.0, 5.0, 100)\ny = np.cos(2*np.pi*x) * np.exp(-x)\n\nplt.plot(x, y, 'k')\nplt.title('Damped exponential decay', fontdict=font)\nplt.text(2, 0.65, r'$\\cos(2 \\pi t) \\exp(-t)$', fontdict=font)\nplt.xlabel('time (s)', fontdict=font)\nplt.ylabel('voltage (mV)', fontdict=font)\n\n# Tweak spacing to prevent clipping of ylabel\nplt.subplots_adjust(left=0.15)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/888b6f74b777d7e41131fdbd89dda8b5/figlegend_demo.py b/_downloads/888b6f74b777d7e41131fdbd89dda8b5/figlegend_demo.py deleted file mode 120000 index 04fb36d3bba..00000000000 --- a/_downloads/888b6f74b777d7e41131fdbd89dda8b5/figlegend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/888b6f74b777d7e41131fdbd89dda8b5/figlegend_demo.py \ No newline at end of file diff --git a/_downloads/8891064b00e55af25df92955dbdf2229/custom_figure_class.py b/_downloads/8891064b00e55af25df92955dbdf2229/custom_figure_class.py deleted file mode 120000 index 3e19a5325c9..00000000000 --- a/_downloads/8891064b00e55af25df92955dbdf2229/custom_figure_class.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8891064b00e55af25df92955dbdf2229/custom_figure_class.py \ No newline at end of file diff --git a/_downloads/88a1f48d8206c177782f4d446cc5020c/gridspec_and_subplots.py b/_downloads/88a1f48d8206c177782f4d446cc5020c/gridspec_and_subplots.py deleted file mode 120000 index 2834d24e180..00000000000 --- a/_downloads/88a1f48d8206c177782f4d446cc5020c/gridspec_and_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/88a1f48d8206c177782f4d446cc5020c/gridspec_and_subplots.py \ No newline at end of file diff --git a/_downloads/88a68d33e6dc95f3756002ca22961251/demo_fixed_size_axes.py b/_downloads/88a68d33e6dc95f3756002ca22961251/demo_fixed_size_axes.py deleted file mode 120000 index b03a34311c7..00000000000 --- a/_downloads/88a68d33e6dc95f3756002ca22961251/demo_fixed_size_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/88a68d33e6dc95f3756002ca22961251/demo_fixed_size_axes.py \ No newline at end of file diff --git a/_downloads/88a902b6a9fa15572b2c27fe4a0d1127/custom_ticker1.ipynb b/_downloads/88a902b6a9fa15572b2c27fe4a0d1127/custom_ticker1.ipynb deleted file mode 120000 index e30e4a8e72b..00000000000 --- a/_downloads/88a902b6a9fa15572b2c27fe4a0d1127/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/88a902b6a9fa15572b2c27fe4a0d1127/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/88ad12e90a4c8c93f13b433c0f9c244f/parasite_simple.py b/_downloads/88ad12e90a4c8c93f13b433c0f9c244f/parasite_simple.py deleted file mode 120000 index d1457f2bf72..00000000000 --- a/_downloads/88ad12e90a4c8c93f13b433c0f9c244f/parasite_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/88ad12e90a4c8c93f13b433c0f9c244f/parasite_simple.py \ No newline at end of file diff --git a/_downloads/88af767ae5a1580daf802853d8a265da/customizing.ipynb b/_downloads/88af767ae5a1580daf802853d8a265da/customizing.ipynb deleted file mode 100644 index 59efc779bd1..00000000000 --- a/_downloads/88af767ae5a1580daf802853d8a265da/customizing.ipynb +++ /dev/null @@ -1,133 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nCustomizing Matplotlib with style sheets and rcParams\n=====================================================\n\nTips for customizing the properties and default styles of Matplotlib.\n\nUsing style sheets\n------------------\n\nThe ``style`` package adds support for easy-to-switch plotting \"styles\" with\nthe same parameters as a\n`matplotlib rc ` file (which is read\nat startup to configure matplotlib).\n\nThere are a number of pre-defined styles `provided by Matplotlib`_. For\nexample, there's a pre-defined style called \"ggplot\", which emulates the\naesthetics of ggplot_ (a popular plotting package for R_). To use this style,\njust add:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib as mpl\nplt.style.use('ggplot')\ndata = np.random.randn(50)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To list all available styles, use:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(plt.style.available)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Defining your own style\n-----------------------\n\nYou can create custom styles and use them by calling ``style.use`` with the\npath or URL to the style sheet. Additionally, if you add your\n``.mplstyle`` file to ``mpl_configdir/stylelib``, you can reuse\nyour custom style sheet with a call to ``style.use()``. By default\n``mpl_configdir`` should be ``~/.config/matplotlib``, but you can check where\nyours is with ``matplotlib.get_configdir()``; you may need to create this\ndirectory. You also can change the directory where matplotlib looks for\nthe stylelib/ folder by setting the MPLCONFIGDIR environment variable,\nsee `locating-matplotlib-config-dir`.\n\nNote that a custom style sheet in ``mpl_configdir/stylelib`` will\noverride a style sheet defined by matplotlib if the styles have the same name.\n\nFor example, you might want to create\n``mpl_configdir/stylelib/presentation.mplstyle`` with the following::\n\n axes.titlesize : 24\n axes.labelsize : 20\n lines.linewidth : 3\n lines.markersize : 10\n xtick.labelsize : 16\n ytick.labelsize : 16\n\nThen, when you want to adapt a plot designed for a paper to one that looks\ngood in a presentation, you can just add::\n\n >>> import matplotlib.pyplot as plt\n >>> plt.style.use('presentation')\n\n\nComposing styles\n----------------\n\nStyle sheets are designed to be composed together. So you can have a style\nsheet that customizes colors and a separate style sheet that alters element\nsizes for presentations. These styles can easily be combined by passing\na list of styles::\n\n >>> import matplotlib.pyplot as plt\n >>> plt.style.use(['dark_background', 'presentation'])\n\nNote that styles further to the right will overwrite values that are already\ndefined by styles on the left.\n\n\nTemporary styling\n-----------------\n\nIf you only want to use a style for a specific block of code but don't want\nto change the global styling, the style package provides a context manager\nfor limiting your changes to a specific scope. To isolate your styling\nchanges, you can write something like the following:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.style.context('dark_background'):\n plt.plot(np.sin(np.linspace(0, 2 * np.pi)), 'r-o')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nmatplotlib rcParams\n===================\n\n\nDynamic rc settings\n-------------------\n\nYou can also dynamically change the default rc settings in a python script or\ninteractively from the python shell. All of the rc settings are stored in a\ndictionary-like variable called :data:`matplotlib.rcParams`, which is global to\nthe matplotlib package. rcParams can be modified directly, for example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rcParams['lines.linewidth'] = 2\nmpl.rcParams['lines.color'] = 'r'\nplt.plot(data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Matplotlib also provides a couple of convenience functions for modifying rc\nsettings. The :func:`matplotlib.rc` command can be used to modify multiple\nsettings in a single group at once, using keyword arguments:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rc('lines', linewidth=4, color='g')\nplt.plot(data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The :func:`matplotlib.rcdefaults` command will restore the standard matplotlib\ndefault settings.\n\nThere is some degree of validation when setting the values of rcParams, see\n:mod:`matplotlib.rcsetup` for details.\n\n\nThe :file:`matplotlibrc` file\n-----------------------------\n\nmatplotlib uses :file:`matplotlibrc` configuration files to customize all kinds\nof properties, which we call `rc settings` or `rc parameters`. You can control\nthe defaults of almost every property in matplotlib: figure size and dpi, line\nwidth, color and style, axes, axis and grid properties, text and font\nproperties and so on. matplotlib looks for :file:`matplotlibrc` in four\nlocations, in the following order:\n\n1. :file:`matplotlibrc` in the current working directory, usually used for\n specific customizations that you do not want to apply elsewhere.\n\n2. :file:`$MATPLOTLIBRC` if it is a file, else :file:`$MATPLOTLIBRC/matplotlibrc`.\n\n3. It next looks in a user-specific place, depending on your platform:\n\n - On Linux and FreeBSD, it looks in :file:`.config/matplotlib/matplotlibrc`\n (or `$XDG_CONFIG_HOME/matplotlib/matplotlibrc`) if you've customized\n your environment.\n\n - On other platforms, it looks in :file:`.matplotlib/matplotlibrc`.\n\n See `locating-matplotlib-config-dir`.\n\n4. :file:`{INSTALL}/matplotlib/mpl-data/matplotlibrc`, where\n :file:`{INSTALL}` is something like\n :file:`/usr/lib/python3.7/site-packages` on Linux, and maybe\n :file:`C:\\\\Python37\\\\Lib\\\\site-packages` on Windows. Every time you\n install matplotlib, this file will be overwritten, so if you want\n your customizations to be saved, please move this file to your\n user-specific matplotlib directory.\n\nOnce a :file:`matplotlibrc` file has been found, it will *not* search any of\nthe other paths.\n\nTo display where the currently active :file:`matplotlibrc` file was\nloaded from, one can do the following::\n\n >>> import matplotlib\n >>> matplotlib.matplotlib_fname()\n '/home/foo/.config/matplotlib/matplotlibrc'\n\nSee below for a sample `matplotlibrc file`.\n\n\nA sample matplotlibrc file\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. literalinclude:: ../../../matplotlibrc.template\n\n\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/88b9059e41662e9d8487e2f0dfa797d5/markevery_demo.py b/_downloads/88b9059e41662e9d8487e2f0dfa797d5/markevery_demo.py deleted file mode 120000 index fde0d542be3..00000000000 --- a/_downloads/88b9059e41662e9d8487e2f0dfa797d5/markevery_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/88b9059e41662e9d8487e2f0dfa797d5/markevery_demo.py \ No newline at end of file diff --git a/_downloads/88d850f8169954c34476ae75f30f32b0/colormap_normalizations_lognorm.py b/_downloads/88d850f8169954c34476ae75f30f32b0/colormap_normalizations_lognorm.py deleted file mode 100644 index 5b2f7c3668a..00000000000 --- a/_downloads/88d850f8169954c34476ae75f30f32b0/colormap_normalizations_lognorm.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=============================== -Colormap Normalizations Lognorm -=============================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -''' -Lognorm: Instead of pcolor log10(Z1) you can have colorbars that have -the exponential labels using a norm. -''' -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out of the top right. Needs to have -# z/colour axis on a log scale so we see both hump and spike. linear -# scale only shows the spike. -Z = np.exp(-X**2 - Y**2) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolor(X, Y, Z, - norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - -plt.show() diff --git a/_downloads/88dda0a66bfaf40c7f4e5d31d1becc98/colors.ipynb b/_downloads/88dda0a66bfaf40c7f4e5d31d1becc98/colors.ipynb deleted file mode 100644 index 443b256a855..00000000000 --- a/_downloads/88dda0a66bfaf40c7f4e5d31d1becc98/colors.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*****************\nSpecifying Colors\n*****************\n\nMatplotlib recognizes the following formats to specify a color:\n\n* an RGB or RGBA (red, green, blue, alpha) tuple of float values in ``[0, 1]``\n (e.g., ``(0.1, 0.2, 0.5)`` or ``(0.1, 0.2, 0.5, 0.3)``);\n* a hex RGB or RGBA string (e.g., ``'#0f0f0f'`` or ``'#0f0f0f80'``;\n case-insensitive);\n* a string representation of a float value in ``[0, 1]`` inclusive for gray\n level (e.g., ``'0.5'``);\n* one of ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``;\n* a X11/CSS4 color name (case-insensitive);\n* a name from the `xkcd color survey`_, prefixed with ``'xkcd:'`` (e.g.,\n ``'xkcd:sky blue'``; case insensitive);\n* one of the Tableau Colors from the 'T10' categorical palette (the default\n color cycle): ``{'tab:blue', 'tab:orange', 'tab:green', 'tab:red',\n 'tab:purple', 'tab:brown', 'tab:pink', 'tab:gray', 'tab:olive', 'tab:cyan'}``\n (case-insensitive);\n* a \"CN\" color spec, i.e. `'C'` followed by a number, which is an index into\n the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the\n indexing is intended to occur at rendering time, and defaults to black if the\n cycle does not include color.\n\n\n\"Red\", \"Green\", and \"Blue\" are the intensities of those colors, the combination\nof which span the colorspace.\n\nHow \"Alpha\" behaves depends on the ``zorder`` of the Artist. Higher\n``zorder`` Artists are drawn on top of lower Artists, and \"Alpha\" determines\nwhether the lower artist is covered by the higher.\nIf the old RGB of a pixel is ``RGBold`` and the RGB of the\npixel of the Artist being added is ``RGBnew`` with Alpha ``alpha``,\nthen the RGB of the pixel is updated to:\n``RGB = RGBOld * (1 - Alpha) + RGBnew * Alpha``. Alpha\nof 1 means the old color is completely covered by the new Artist, Alpha of 0\nmeans that pixel of the Artist is transparent.\n\nFor more information on colors in matplotlib see\n\n* the :doc:`/gallery/color/color_demo` example;\n* the `matplotlib.colors` API;\n* the :doc:`/gallery/color/named_colors` example.\n\n\"CN\" color selection\n--------------------\n\n\"CN\" colors are converted to RGBA as soon as the artist is created. For\nexample,\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib as mpl\n\nth = np.linspace(0, 2*np.pi, 128)\n\n\ndef demo(sty):\n mpl.style.use(sty)\n fig, ax = plt.subplots(figsize=(3, 3))\n\n ax.set_title('style: {!r}'.format(sty), color='C0')\n\n ax.plot(th, np.cos(th), 'C1', label='C1')\n ax.plot(th, np.sin(th), 'C2', label='C2')\n ax.legend()\n\ndemo('default')\ndemo('seaborn')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "will use the first color for the title and then plot using the second\nand third colors of each style's ``mpl.rcParams['axes.prop_cycle']``.\n\n\n\nxkcd v X11/CSS4\n---------------\n\nThe xkcd colors are derived from a user survey conducted by the\nwebcomic xkcd. `Details of the survey are available on the xkcd blog\n`__.\n\nOut of 148 colors in the CSS color list, there are 95 name collisions\nbetween the X11/CSS4 names and the xkcd names, all but 3 of which have\ndifferent hex values. For example ``'blue'`` maps to ``'#0000FF'``\nwhere as ``'xkcd:blue'`` maps to ``'#0343DF'``. Due to these name\ncollisions all of the xkcd colors have ``'xkcd:'`` prefixed. As noted in\nthe blog post, while it might be interesting to re-define the X11/CSS4 names\nbased on such a survey, we do not do so unilaterally.\n\nThe name collisions are shown in the table below; the color names\nwhere the hex values agree are shown in bold.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib._color_data as mcd\nimport matplotlib.patches as mpatch\n\noverlap = {name for name in mcd.CSS4_COLORS\n if \"xkcd:\" + name in mcd.XKCD_COLORS}\n\nfig = plt.figure(figsize=[4.8, 16])\nax = fig.add_axes([0, 0, 1, 1])\n\nfor j, n in enumerate(sorted(overlap, reverse=True)):\n weight = None\n cn = mcd.CSS4_COLORS[n]\n xkcd = mcd.XKCD_COLORS[\"xkcd:\" + n].upper()\n if cn == xkcd:\n weight = 'bold'\n\n r1 = mpatch.Rectangle((0, j), 1, 1, color=cn)\n r2 = mpatch.Rectangle((1, j), 1, 1, color=xkcd)\n txt = ax.text(2, j+.5, ' ' + n, va='center', fontsize=10,\n weight=weight)\n ax.add_patch(r1)\n ax.add_patch(r2)\n ax.axhline(j, color='k')\n\nax.text(.5, j + 1.5, 'X11', ha='center', va='center')\nax.text(1.5, j + 1.5, 'xkcd', ha='center', va='center')\nax.set_xlim(0, 3)\nax.set_ylim(0, j + 2)\nax.axis('off')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/88e7a5567161eaafba8cbb047a73798d/sample_plots.ipynb b/_downloads/88e7a5567161eaafba8cbb047a73798d/sample_plots.ipynb deleted file mode 120000 index 7760b4f4433..00000000000 --- a/_downloads/88e7a5567161eaafba8cbb047a73798d/sample_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/88e7a5567161eaafba8cbb047a73798d/sample_plots.ipynb \ No newline at end of file diff --git a/_downloads/88ea14e67b18c498fc50ac6fe37d2f4b/svg_histogram_sgskip.ipynb b/_downloads/88ea14e67b18c498fc50ac6fe37d2f4b/svg_histogram_sgskip.ipynb deleted file mode 120000 index 5abdc6063d4..00000000000 --- a/_downloads/88ea14e67b18c498fc50ac6fe37d2f4b/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/88ea14e67b18c498fc50ac6fe37d2f4b/svg_histogram_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/88eda809d31e8371f471ef52ef5f8f03/eventcollection_demo.ipynb b/_downloads/88eda809d31e8371f471ef52ef5f8f03/eventcollection_demo.ipynb deleted file mode 120000 index f812bea342b..00000000000 --- a/_downloads/88eda809d31e8371f471ef52ef5f8f03/eventcollection_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/88eda809d31e8371f471ef52ef5f8f03/eventcollection_demo.ipynb \ No newline at end of file diff --git a/_downloads/88f2f688ebf457c942dd7e03425bd4a3/placing_text_boxes.py b/_downloads/88f2f688ebf457c942dd7e03425bd4a3/placing_text_boxes.py deleted file mode 100644 index ef64337f007..00000000000 --- a/_downloads/88f2f688ebf457c942dd7e03425bd4a3/placing_text_boxes.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -Placing text boxes -================== - -When decorating axes with text boxes, two useful tricks are to place -the text in axes coordinates (see :doc:`/tutorials/advanced/transforms_tutorial`), so the -text doesn't move around with changes in x or y limits. You can also -use the ``bbox`` property of text to surround the text with a -:class:`~matplotlib.patches.Patch` instance -- the ``bbox`` keyword -argument takes a dictionary with keys that are Patch properties. -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -fig, ax = plt.subplots() -x = 30*np.random.randn(10000) -mu = x.mean() -median = np.median(x) -sigma = x.std() -textstr = '\n'.join(( - r'$\mu=%.2f$' % (mu, ), - r'$\mathrm{median}=%.2f$' % (median, ), - r'$\sigma=%.2f$' % (sigma, ))) - -ax.hist(x, 50) -# these are matplotlib.patch.Patch properties -props = dict(boxstyle='round', facecolor='wheat', alpha=0.5) - -# place a text box in upper left in axes coords -ax.text(0.05, 0.95, textstr, transform=ax.transAxes, fontsize=14, - verticalalignment='top', bbox=props) - -plt.show() diff --git a/_downloads/88f936e737af6bb60002402d0632afbe/bars3d.ipynb b/_downloads/88f936e737af6bb60002402d0632afbe/bars3d.ipynb deleted file mode 100644 index 53171455a23..00000000000 --- a/_downloads/88f936e737af6bb60002402d0632afbe/bars3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Create 2D bar graphs in different planes\n\n\nDemonstrates making a 3D plot which has 2D bar graphs projected onto\nplanes y=0, y=1, etc.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\ncolors = ['r', 'g', 'b', 'y']\nyticks = [3, 2, 1, 0]\nfor c, k in zip(colors, yticks):\n # Generate the random data for the y=k 'layer'.\n xs = np.arange(20)\n ys = np.random.rand(20)\n\n # You can provide either a single color or an array with the same length as\n # xs and ys. To demonstrate this, we color the first bar of each set cyan.\n cs = [c] * len(xs)\n cs[0] = 'c'\n\n # Plot the bar graph given by xs and ys on the plane y=k with 80% opacity.\n ax.bar(xs, ys, zs=k, zdir='y', color=cs, alpha=0.8)\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\n# On the y axis let's only label the discrete values that we have data for.\nax.set_yticks(yticks)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/88fedec34bc53c003715bd220c733f13/keyword_plotting.py b/_downloads/88fedec34bc53c003715bd220c733f13/keyword_plotting.py deleted file mode 100644 index c7aa93e0f7b..00000000000 --- a/_downloads/88fedec34bc53c003715bd220c733f13/keyword_plotting.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -====================== -Plotting with keywords -====================== - -There are some instances where you have data in a format that lets you -access particular variables with strings. For example, with -:class:`numpy.recarray` or :class:`pandas.DataFrame`. - -Matplotlib allows you provide such an object with the ``data`` keyword -argument. If provided, then you may generate plots with the strings -corresponding to these variables. -""" - -import numpy as np -import matplotlib.pyplot as plt -np.random.seed(19680801) - -data = {'a': np.arange(50), - 'c': np.random.randint(0, 50, 50), - 'd': np.random.randn(50)} -data['b'] = data['a'] + 10 * np.random.randn(50) -data['d'] = np.abs(data['d']) * 100 - -fig, ax = plt.subplots() -ax.scatter('a', 'b', c='c', s='d', data=data) -ax.set(xlabel='entry a', ylabel='entry b') -plt.show() diff --git a/_downloads/88ffe1eedcef831a6e657d32c3a043d8/fig_axes_labels_simple.ipynb b/_downloads/88ffe1eedcef831a6e657d32c3a043d8/fig_axes_labels_simple.ipynb deleted file mode 120000 index 763a88ea781..00000000000 --- a/_downloads/88ffe1eedcef831a6e657d32c3a043d8/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/88ffe1eedcef831a6e657d32c3a043d8/fig_axes_labels_simple.ipynb \ No newline at end of file diff --git a/_downloads/89045b92647541a5cc9f0dc64ded55a5/log_test.ipynb b/_downloads/89045b92647541a5cc9f0dc64ded55a5/log_test.ipynb deleted file mode 100644 index 66ecfe35f8d..00000000000 --- a/_downloads/89045b92647541a5cc9f0dc64ded55a5/log_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Log Axis\n\n\nThis is an example of assigning a log-scale for the x-axis using\n`semilogx`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, ax = plt.subplots()\n\ndt = 0.01\nt = np.arange(dt, 20.0, dt)\n\nax.semilogx(t, np.exp(-t / 5.0))\nax.grid()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8910e46a94e146d5b0a4a403fed32667/text_rotation.py b/_downloads/8910e46a94e146d5b0a4a403fed32667/text_rotation.py deleted file mode 100644 index 0e22ee02d63..00000000000 --- a/_downloads/8910e46a94e146d5b0a4a403fed32667/text_rotation.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -=================================== -Default text rotation demonstration -=================================== - -The way Matplotlib does text layout by default is counter-intuitive to some, so -this example is designed to make it a little clearer. - -The text is aligned by its bounding box (the rectangular box that surrounds the -ink rectangle). The order of operations is rotation then alignment. -Basically, the text is centered at your x,y location, rotated around this -point, and then aligned according to the bounding box of the rotated text. - -So if you specify left, bottom alignment, the bottom left of the -bounding box of the rotated text will be at the x,y coordinate of the -text. - -But a picture is worth a thousand words! -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def addtext(ax, props): - ax.text(0.5, 0.5, 'text 0', props, rotation=0) - ax.text(1.5, 0.5, 'text 45', props, rotation=45) - ax.text(2.5, 0.5, 'text 135', props, rotation=135) - ax.text(3.5, 0.5, 'text 225', props, rotation=225) - ax.text(4.5, 0.5, 'text -45', props, rotation=-45) - for x in range(0, 5): - ax.scatter(x + 0.5, 0.5, color='r', alpha=0.5) - ax.set_yticks([0, .5, 1]) - ax.set_xlim(0, 5) - ax.grid(True) - - -# the text bounding box -bbox = {'fc': '0.8', 'pad': 0} - -fig, axs = plt.subplots(2, 1) - -addtext(axs[0], {'ha': 'center', 'va': 'center', 'bbox': bbox}) -axs[0].set_xticks(np.arange(0, 5.1, 0.5), []) -axs[0].set_ylabel('center / center') - -addtext(axs[1], {'ha': 'left', 'va': 'bottom', 'bbox': bbox}) -axs[1].set_xticks(np.arange(0, 5.1, 0.5)) -axs[1].set_ylabel('left / bottom') - -plt.show() diff --git a/_downloads/8915862cb7b650b161264158e1019acd/layer_images.py b/_downloads/8915862cb7b650b161264158e1019acd/layer_images.py deleted file mode 120000 index c6c0582aee5..00000000000 --- a/_downloads/8915862cb7b650b161264158e1019acd/layer_images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8915862cb7b650b161264158e1019acd/layer_images.py \ No newline at end of file diff --git a/_downloads/891647ef6d6b8d2fc56546c5f1c9dd89/masked_demo.py b/_downloads/891647ef6d6b8d2fc56546c5f1c9dd89/masked_demo.py deleted file mode 120000 index 065aa94c50a..00000000000 --- a/_downloads/891647ef6d6b8d2fc56546c5f1c9dd89/masked_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/891647ef6d6b8d2fc56546c5f1c9dd89/masked_demo.py \ No newline at end of file diff --git a/_downloads/891c0deb05e636b4ec0f64f30bee6d1d/timers.py b/_downloads/891c0deb05e636b4ec0f64f30bee6d1d/timers.py deleted file mode 120000 index 82ad6958c68..00000000000 --- a/_downloads/891c0deb05e636b4ec0f64f30bee6d1d/timers.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/891c0deb05e636b4ec0f64f30bee6d1d/timers.py \ No newline at end of file diff --git a/_downloads/8928849f5505b3c346d07b906ffbe636/contourf3d_2.ipynb b/_downloads/8928849f5505b3c346d07b906ffbe636/contourf3d_2.ipynb deleted file mode 100644 index 7ffcccd3104..00000000000 --- a/_downloads/8928849f5505b3c346d07b906ffbe636/contourf3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Projecting filled contour onto a graph\n\n\nDemonstrates displaying a 3D surface while also projecting filled contour\n'profiles' onto the 'walls' of the graph.\n\nSee contour3d_demo2 for the unfilled version.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot the 3D surface\nax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3)\n\n# Plot projections of the contours for each dimension. By choosing offsets\n# that match the appropriate axes limits, the projected contours will sit on\n# the 'walls' of the graph\ncset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)\ncset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)\ncset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)\n\nax.set_xlim(-40, 40)\nax.set_ylim(-40, 40)\nax.set_zlim(-100, 100)\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/892fc9d13fbdb867358db9300194a364/surface3d.py b/_downloads/892fc9d13fbdb867358db9300194a364/surface3d.py deleted file mode 120000 index ec4961fe8bb..00000000000 --- a/_downloads/892fc9d13fbdb867358db9300194a364/surface3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/892fc9d13fbdb867358db9300194a364/surface3d.py \ No newline at end of file diff --git a/_downloads/89351757d9d68d56c7b98167fd3b6b67/multicolored_line.ipynb b/_downloads/89351757d9d68d56c7b98167fd3b6b67/multicolored_line.ipynb deleted file mode 120000 index 8c7405f5fe0..00000000000 --- a/_downloads/89351757d9d68d56c7b98167fd3b6b67/multicolored_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/89351757d9d68d56c7b98167fd3b6b67/multicolored_line.ipynb \ No newline at end of file diff --git a/_downloads/89378cf2f5b8fc3231299e14def130b0/bar_unit_demo.ipynb b/_downloads/89378cf2f5b8fc3231299e14def130b0/bar_unit_demo.ipynb deleted file mode 120000 index 228fb733bf3..00000000000 --- a/_downloads/89378cf2f5b8fc3231299e14def130b0/bar_unit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/89378cf2f5b8fc3231299e14def130b0/bar_unit_demo.ipynb \ No newline at end of file diff --git a/_downloads/8937a60078bb2f3dd0fddfe98bd08f37/demo_axes_divider.py b/_downloads/8937a60078bb2f3dd0fddfe98bd08f37/demo_axes_divider.py deleted file mode 120000 index d39e3ab68af..00000000000 --- a/_downloads/8937a60078bb2f3dd0fddfe98bd08f37/demo_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8937a60078bb2f3dd0fddfe98bd08f37/demo_axes_divider.py \ No newline at end of file diff --git a/_downloads/893a551b4910cb1187cb7253d5bbdbc3/whats_new_98_4_legend.ipynb b/_downloads/893a551b4910cb1187cb7253d5bbdbc3/whats_new_98_4_legend.ipynb deleted file mode 100644 index 3df097017e6..00000000000 --- a/_downloads/893a551b4910cb1187cb7253d5bbdbc3/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=======================\nWhats New 0.98.4 Legend\n=======================\n\nCreate a legend and tweak it with a shadow and a box.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nax = plt.subplot(111)\nt1 = np.arange(0.0, 1.0, 0.01)\nfor n in [1, 2, 3, 4]:\n plt.plot(t1, t1**n, label=\"n=%d\"%(n,))\n\nleg = plt.legend(loc='best', ncol=2, mode=\"expand\", shadow=True, fancybox=True)\nleg.get_frame().set_alpha(0.5)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.legend.Legend\nmatplotlib.legend.Legend.get_frame" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8944cd378da4f5b85f0514429c986934/annotate_explain.ipynb b/_downloads/8944cd378da4f5b85f0514429c986934/annotate_explain.ipynb deleted file mode 120000 index c33186a6ec2..00000000000 --- a/_downloads/8944cd378da4f5b85f0514429c986934/annotate_explain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8944cd378da4f5b85f0514429c986934/annotate_explain.ipynb \ No newline at end of file diff --git a/_downloads/89498d14ff74cd9ead6e4fe552f5db5b/annotate_simple01.py b/_downloads/89498d14ff74cd9ead6e4fe552f5db5b/annotate_simple01.py deleted file mode 100644 index 0376397d0cb..00000000000 --- a/_downloads/89498d14ff74cd9ead6e4fe552f5db5b/annotate_simple01.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -================= -Annotate Simple01 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ax.annotate("", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc3"), - ) - -plt.show() diff --git a/_downloads/894cc343c33bd93c253f67c3a6070568/lifecycle.py b/_downloads/894cc343c33bd93c253f67c3a6070568/lifecycle.py deleted file mode 120000 index a5bd1529426..00000000000 --- a/_downloads/894cc343c33bd93c253f67c3a6070568/lifecycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/894cc343c33bd93c253f67c3a6070568/lifecycle.py \ No newline at end of file diff --git a/_downloads/894ce06e06b78a79d045d5bbc8989f43/patheffects_guide.py b/_downloads/894ce06e06b78a79d045d5bbc8989f43/patheffects_guide.py deleted file mode 120000 index f900faab704..00000000000 --- a/_downloads/894ce06e06b78a79d045d5bbc8989f43/patheffects_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/894ce06e06b78a79d045d5bbc8989f43/patheffects_guide.py \ No newline at end of file diff --git a/_downloads/894e5a3fdb3bdeeb1320084d4d84e65b/contour_manual.py b/_downloads/894e5a3fdb3bdeeb1320084d4d84e65b/contour_manual.py deleted file mode 120000 index f725008e92c..00000000000 --- a/_downloads/894e5a3fdb3bdeeb1320084d4d84e65b/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/894e5a3fdb3bdeeb1320084d4d84e65b/contour_manual.py \ No newline at end of file diff --git a/_downloads/89579a09a071701c2d05ad18044dece8/engineering_formatter.ipynb b/_downloads/89579a09a071701c2d05ad18044dece8/engineering_formatter.ipynb deleted file mode 120000 index 2012a3873b1..00000000000 --- a/_downloads/89579a09a071701c2d05ad18044dece8/engineering_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/89579a09a071701c2d05ad18044dece8/engineering_formatter.ipynb \ No newline at end of file diff --git a/_downloads/89593ecf3d829130e4f6fd6149a91158/embedding_in_wx3_sgskip.ipynb b/_downloads/89593ecf3d829130e4f6fd6149a91158/embedding_in_wx3_sgskip.ipynb deleted file mode 120000 index 70d8c306c43..00000000000 --- a/_downloads/89593ecf3d829130e4f6fd6149a91158/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/89593ecf3d829130e4f6fd6149a91158/embedding_in_wx3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/895e033f3e90d7bad0327860f9067fa8/simple_axisline3.ipynb b/_downloads/895e033f3e90d7bad0327860f9067fa8/simple_axisline3.ipynb deleted file mode 120000 index c267b472a31..00000000000 --- a/_downloads/895e033f3e90d7bad0327860f9067fa8/simple_axisline3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/895e033f3e90d7bad0327860f9067fa8/simple_axisline3.ipynb \ No newline at end of file diff --git a/_downloads/89632737c0cc7ed9cda9db28e639880f/tricontour_smooth_delaunay.py b/_downloads/89632737c0cc7ed9cda9db28e639880f/tricontour_smooth_delaunay.py deleted file mode 120000 index ddf629037fa..00000000000 --- a/_downloads/89632737c0cc7ed9cda9db28e639880f/tricontour_smooth_delaunay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/89632737c0cc7ed9cda9db28e639880f/tricontour_smooth_delaunay.py \ No newline at end of file diff --git a/_downloads/89647c145c34caf868ddb5bc57fb345d/date_index_formatter.py b/_downloads/89647c145c34caf868ddb5bc57fb345d/date_index_formatter.py deleted file mode 120000 index b66f597d903..00000000000 --- a/_downloads/89647c145c34caf868ddb5bc57fb345d/date_index_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/89647c145c34caf868ddb5bc57fb345d/date_index_formatter.py \ No newline at end of file diff --git a/_downloads/896deaeb5122f8b2baa770ca92603eb0/animate_decay.ipynb b/_downloads/896deaeb5122f8b2baa770ca92603eb0/animate_decay.ipynb deleted file mode 120000 index b0f4e4fb4fd..00000000000 --- a/_downloads/896deaeb5122f8b2baa770ca92603eb0/animate_decay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/896deaeb5122f8b2baa770ca92603eb0/animate_decay.ipynb \ No newline at end of file diff --git a/_downloads/896ef0e120c163c2eb6ab4d276ac6714/pong_sgskip.ipynb b/_downloads/896ef0e120c163c2eb6ab4d276ac6714/pong_sgskip.ipynb deleted file mode 100644 index 13405b33ba4..00000000000 --- a/_downloads/896ef0e120c163c2eb6ab4d276ac6714/pong_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pong\n\n\nA small game demo using Matplotlib.\n\n.. only:: builder_html\n\n This example requires :download:`pipong.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import time\n\n\nimport matplotlib.pyplot as plt\nimport pipong\n\n\nfig, ax = plt.subplots()\ncanvas = ax.figure.canvas\nanimation = pipong.Game(ax)\n\n# disable the default key bindings\nif fig.canvas.manager.key_press_handler_id is not None:\n canvas.mpl_disconnect(fig.canvas.manager.key_press_handler_id)\n\n\n# reset the blitting background on redraw\ndef handle_redraw(event):\n animation.background = None\n\n\n# bootstrap after the first draw\ndef start_anim(event):\n canvas.mpl_disconnect(start_anim.cid)\n\n def local_draw():\n if animation.ax.get_renderer_cache():\n animation.draw(None)\n start_anim.timer.add_callback(local_draw)\n start_anim.timer.start()\n canvas.mpl_connect('draw_event', handle_redraw)\n\n\nstart_anim.cid = canvas.mpl_connect('draw_event', start_anim)\nstart_anim.timer = animation.canvas.new_timer()\nstart_anim.timer.interval = 1\n\ntstart = time.time()\n\nplt.show()\nprint('FPS: %f' % (animation.cnt/(time.time() - tstart)))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/89723eba9801ef0ae2f5c93490c10219/lasso_demo.py b/_downloads/89723eba9801ef0ae2f5c93490c10219/lasso_demo.py deleted file mode 100644 index df3a88ce672..00000000000 --- a/_downloads/89723eba9801ef0ae2f5c93490c10219/lasso_demo.py +++ /dev/null @@ -1,90 +0,0 @@ -""" -========== -Lasso Demo -========== - -Show how to use a lasso to select a set of points and get the indices -of the selected points. A callback is used to change the color of the -selected points - -This is currently a proof-of-concept implementation (though it is -usable as is). There will be some refinement of the API. -""" - -from matplotlib import colors as mcolors, path -from matplotlib.collections import RegularPolyCollection -import matplotlib.pyplot as plt -from matplotlib.widgets import Lasso -import numpy as np - - -class Datum(object): - colorin = mcolors.to_rgba("red") - colorout = mcolors.to_rgba("blue") - - def __init__(self, x, y, include=False): - self.x = x - self.y = y - if include: - self.color = self.colorin - else: - self.color = self.colorout - - -class LassoManager(object): - def __init__(self, ax, data): - self.axes = ax - self.canvas = ax.figure.canvas - self.data = data - - self.Nxy = len(data) - - facecolors = [d.color for d in data] - self.xys = [(d.x, d.y) for d in data] - self.collection = RegularPolyCollection( - 6, sizes=(100,), - facecolors=facecolors, - offsets=self.xys, - transOffset=ax.transData) - - ax.add_collection(self.collection) - - self.cid = self.canvas.mpl_connect('button_press_event', self.onpress) - - def callback(self, verts): - facecolors = self.collection.get_facecolors() - p = path.Path(verts) - ind = p.contains_points(self.xys) - for i in range(len(self.xys)): - if ind[i]: - facecolors[i] = Datum.colorin - else: - facecolors[i] = Datum.colorout - - self.canvas.draw_idle() - self.canvas.widgetlock.release(self.lasso) - del self.lasso - - def onpress(self, event): - if self.canvas.widgetlock.locked(): - return - if event.inaxes is None: - return - self.lasso = Lasso(event.inaxes, - (event.xdata, event.ydata), - self.callback) - # acquire a lock on the widget drawing - self.canvas.widgetlock(self.lasso) - - -if __name__ == '__main__': - - np.random.seed(19680801) - - data = [Datum(*xy) for xy in np.random.rand(100, 2)] - ax = plt.axes(xlim=(0, 1), ylim=(0, 1), autoscale_on=False) - ax.set_title('Lasso points using left mouse button') - - lman = LassoManager(ax, data) - - plt.show() diff --git a/_downloads/897e9e4380139e6ef0928346644968ff/simple_legend02.ipynb b/_downloads/897e9e4380139e6ef0928346644968ff/simple_legend02.ipynb deleted file mode 120000 index 49b2132e822..00000000000 --- a/_downloads/897e9e4380139e6ef0928346644968ff/simple_legend02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/897e9e4380139e6ef0928346644968ff/simple_legend02.ipynb \ No newline at end of file diff --git a/_downloads/8986da518b1087c50cbdfedb5a4cbb2d/inset_locator_demo2.ipynb b/_downloads/8986da518b1087c50cbdfedb5a4cbb2d/inset_locator_demo2.ipynb deleted file mode 120000 index 64de91a8aca..00000000000 --- a/_downloads/8986da518b1087c50cbdfedb5a4cbb2d/inset_locator_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8986da518b1087c50cbdfedb5a4cbb2d/inset_locator_demo2.ipynb \ No newline at end of file diff --git a/_downloads/8992648156d2fc8b49e1839bbf10fe4b/contour.ipynb b/_downloads/8992648156d2fc8b49e1839bbf10fe4b/contour.ipynb deleted file mode 120000 index c837ac75e10..00000000000 --- a/_downloads/8992648156d2fc8b49e1839bbf10fe4b/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8992648156d2fc8b49e1839bbf10fe4b/contour.ipynb \ No newline at end of file diff --git a/_downloads/8999cf3f9a19da0a174c09f110f294a9/custom_projection.ipynb b/_downloads/8999cf3f9a19da0a174c09f110f294a9/custom_projection.ipynb deleted file mode 120000 index d79cdba3d6a..00000000000 --- a/_downloads/8999cf3f9a19da0a174c09f110f294a9/custom_projection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8999cf3f9a19da0a174c09f110f294a9/custom_projection.ipynb \ No newline at end of file diff --git a/_downloads/899e21a296fff380192187f877ec9266/simple_plot.ipynb b/_downloads/899e21a296fff380192187f877ec9266/simple_plot.ipynb deleted file mode 120000 index df9f2d02eba..00000000000 --- a/_downloads/899e21a296fff380192187f877ec9266/simple_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/899e21a296fff380192187f877ec9266/simple_plot.ipynb \ No newline at end of file diff --git a/_downloads/89a482ab7808801a615fcbab4a8f2263/dollar_ticks.py b/_downloads/89a482ab7808801a615fcbab4a8f2263/dollar_ticks.py deleted file mode 120000 index 792de384c99..00000000000 --- a/_downloads/89a482ab7808801a615fcbab4a8f2263/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/89a482ab7808801a615fcbab4a8f2263/dollar_ticks.py \ No newline at end of file diff --git a/_downloads/89b51ac2d12327370b35fec63dee0d2f/trifinder_event_demo.py b/_downloads/89b51ac2d12327370b35fec63dee0d2f/trifinder_event_demo.py deleted file mode 100644 index 3cc96f1aac3..00000000000 --- a/_downloads/89b51ac2d12327370b35fec63dee0d2f/trifinder_event_demo.py +++ /dev/null @@ -1,61 +0,0 @@ -""" -==================== -Trifinder Event Demo -==================== - -Example showing the use of a TriFinder object. As the mouse is moved over the -triangulation, the triangle under the cursor is highlighted and the index of -the triangle is displayed in the plot title. -""" -import matplotlib.pyplot as plt -from matplotlib.tri import Triangulation -from matplotlib.patches import Polygon -import numpy as np - - -def update_polygon(tri): - if tri == -1: - points = [0, 0, 0] - else: - points = triang.triangles[tri] - xs = triang.x[points] - ys = triang.y[points] - polygon.set_xy(np.column_stack([xs, ys])) - - -def motion_notify(event): - if event.inaxes is None: - tri = -1 - else: - tri = trifinder(event.xdata, event.ydata) - update_polygon(tri) - plt.title('In triangle %i' % tri) - event.canvas.draw() - - -# Create a Triangulation. -n_angles = 16 -n_radii = 5 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -triang = Triangulation(x, y) -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -# Use the triangulation's default TriFinder object. -trifinder = triang.get_trifinder() - -# Setup plot and callbacks. -plt.subplot(111, aspect='equal') -plt.triplot(triang, 'bo-') -polygon = Polygon([[0, 0], [0, 0]], facecolor='y') # dummy data for xs,ys -update_polygon(-1) -plt.gca().add_patch(polygon) -plt.gcf().canvas.mpl_connect('motion_notify_event', motion_notify) -plt.show() diff --git a/_downloads/89b56c96c328efd090d41d96f55fba38/legend.ipynb b/_downloads/89b56c96c328efd090d41d96f55fba38/legend.ipynb deleted file mode 120000 index 235bc747403..00000000000 --- a/_downloads/89b56c96c328efd090d41d96f55fba38/legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/89b56c96c328efd090d41d96f55fba38/legend.ipynb \ No newline at end of file diff --git a/_downloads/89b61becf2e0c701373e39916f7b5428/legend_guide.ipynb b/_downloads/89b61becf2e0c701373e39916f7b5428/legend_guide.ipynb deleted file mode 100644 index 026e2047bcf..00000000000 --- a/_downloads/89b61becf2e0c701373e39916f7b5428/legend_guide.ipynb +++ /dev/null @@ -1,198 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend guide\n\n\nGenerating legends flexibly in Matplotlib.\n\n.. currentmodule:: matplotlib.pyplot\n\nThis legend guide is an extension of the documentation available at\n:func:`~matplotlib.pyplot.legend` - please ensure you are familiar with\ncontents of that documentation before proceeding with this guide.\n\n\nThis guide makes use of some common terms, which are documented here for clarity:\n\n.. glossary::\n\n legend entry\n A legend is made up of one or more legend entries. An entry is made up of\n exactly one key and one label.\n\n legend key\n The colored/patterned marker to the left of each legend label.\n\n legend label\n The text which describes the handle represented by the key.\n\n legend handle\n The original object which is used to generate an appropriate entry in\n the legend.\n\n\nControlling the legend entries\n==============================\n\nCalling :func:`legend` with no arguments automatically fetches the legend\nhandles and their associated labels. This functionality is equivalent to::\n\n handles, labels = ax.get_legend_handles_labels()\n ax.legend(handles, labels)\n\nThe :meth:`~matplotlib.axes.Axes.get_legend_handles_labels` function returns\na list of handles/artists which exist on the Axes which can be used to\ngenerate entries for the resulting legend - it is worth noting however that\nnot all artists can be added to a legend, at which point a \"proxy\" will have\nto be created (see `proxy_legend_handles` for further details).\n\nFor full control of what is being added to the legend, it is common to pass\nthe appropriate handles directly to :func:`legend`::\n\n line_up, = plt.plot([1,2,3], label='Line 2')\n line_down, = plt.plot([3,2,1], label='Line 1')\n plt.legend(handles=[line_up, line_down])\n\nIn some cases, it is not possible to set the label of the handle, so it is\npossible to pass through the list of labels to :func:`legend`::\n\n line_up, = plt.plot([1,2,3], label='Line 2')\n line_down, = plt.plot([3,2,1], label='Line 1')\n plt.legend([line_up, line_down], ['Line Up', 'Line Down'])\n\n\n\nCreating artists specifically for adding to the legend (aka. Proxy artists)\n===========================================================================\n\nNot all handles can be turned into legend entries automatically,\nso it is often necessary to create an artist which *can*. Legend handles\ndon't have to exists on the Figure or Axes in order to be used.\n\nSuppose we wanted to create a legend which has an entry for some data which\nis represented by a red color:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nred_patch = mpatches.Patch(color='red', label='The red data')\nplt.legend(handles=[red_patch])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are many supported legend handles, instead of creating a patch of color\nwe could have created a line with a marker:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.lines as mlines\n\nblue_line = mlines.Line2D([], [], color='blue', marker='*',\n markersize=15, label='Blue stars')\nplt.legend(handles=[blue_line])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legend location\n===============\n\nThe location of the legend can be specified by the keyword argument\n*loc*. Please see the documentation at :func:`legend` for more details.\n\nThe ``bbox_to_anchor`` keyword gives a great degree of control for manual\nlegend placement. For example, if you want your axes legend located at the\nfigure's top right-hand corner instead of the axes' corner, simply specify\nthe corner's location, and the coordinate system of that location::\n\n plt.legend(bbox_to_anchor=(1, 1),\n bbox_transform=plt.gcf().transFigure)\n\nMore examples of custom legend placement:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.subplot(211)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n\n# Place a legend above this subplot, expanding itself to\n# fully use the given bounding box.\nplt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left',\n ncol=2, mode=\"expand\", borderaxespad=0.)\n\nplt.subplot(223)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n# Place a legend to the right of this smaller subplot.\nplt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Multiple legends on the same Axes\n=================================\n\nSometimes it is more clear to split legend entries across multiple\nlegends. Whilst the instinctive approach to doing this might be to call\nthe :func:`legend` function multiple times, you will find that only one\nlegend ever exists on the Axes. This has been done so that it is possible\nto call :func:`legend` repeatedly to update the legend to the latest\nhandles on the Axes, so to persist old legend instances, we must add them\nmanually to the Axes:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "line1, = plt.plot([1, 2, 3], label=\"Line 1\", linestyle='--')\nline2, = plt.plot([3, 2, 1], label=\"Line 2\", linewidth=4)\n\n# Create a legend for the first line.\nfirst_legend = plt.legend(handles=[line1], loc='upper right')\n\n# Add the legend manually to the current Axes.\nax = plt.gca().add_artist(first_legend)\n\n# Create another legend for the second line.\nplt.legend(handles=[line2], loc='lower right')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legend Handlers\n===============\n\nIn order to create legend entries, handles are given as an argument to an\nappropriate :class:`~matplotlib.legend_handler.HandlerBase` subclass.\nThe choice of handler subclass is determined by the following rules:\n\n 1. Update :func:`~matplotlib.legend.Legend.get_legend_handler_map`\n with the value in the ``handler_map`` keyword.\n 2. Check if the ``handle`` is in the newly created ``handler_map``.\n 3. Check if the type of ``handle`` is in the newly created\n ``handler_map``.\n 4. Check if any of the types in the ``handle``'s mro is in the newly\n created ``handler_map``.\n\nFor completeness, this logic is mostly implemented in\n:func:`~matplotlib.legend.Legend.get_legend_handler`.\n\nAll of this flexibility means that we have the necessary hooks to implement\ncustom handlers for our own type of legend key.\n\nThe simplest example of using custom handlers is to instantiate one of the\nexisting :class:`~matplotlib.legend_handler.HandlerBase` subclasses. For the\nsake of simplicity, let's choose :class:`matplotlib.legend_handler.HandlerLine2D`\nwhich accepts a ``numpoints`` argument (note numpoints is a keyword\non the :func:`legend` function for convenience). We can then pass the mapping\nof instance to Handler as a keyword to legend.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.legend_handler import HandlerLine2D\n\nline1, = plt.plot([3, 2, 1], marker='o', label='Line 1')\nline2, = plt.plot([1, 2, 3], marker='o', label='Line 2')\n\nplt.legend(handler_map={line1: HandlerLine2D(numpoints=4)})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "As you can see, \"Line 1\" now has 4 marker points, where \"Line 2\" has 2 (the\ndefault). Try the above code, only change the map's key from ``line1`` to\n``type(line1)``. Notice how now both :class:`~matplotlib.lines.Line2D` instances\nget 4 markers.\n\nAlong with handlers for complex plot types such as errorbars, stem plots\nand histograms, the default ``handler_map`` has a special ``tuple`` handler\n(:class:`~matplotlib.legend_handler.HandlerTuple`) which simply plots\nthe handles on top of one another for each item in the given tuple. The\nfollowing example demonstrates combining two legend keys on top of one another:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from numpy.random import randn\n\nz = randn(10)\n\nred_dot, = plt.plot(z, \"ro\", markersize=15)\n# Put a white cross over some of the data.\nwhite_cross, = plt.plot(z[:5], \"w+\", markeredgewidth=3, markersize=15)\n\nplt.legend([red_dot, (red_dot, white_cross)], [\"Attr A\", \"Attr A+B\"])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The :class:`~matplotlib.legend_handler.HandlerTuple` class can also be used to\nassign several legend keys to the same entry:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.legend_handler import HandlerLine2D, HandlerTuple\n\np1, = plt.plot([1, 2.5, 3], 'r-d')\np2, = plt.plot([3, 2, 1], 'k-o')\n\nl = plt.legend([(p1, p2)], ['Two keys'], numpoints=1,\n handler_map={tuple: HandlerTuple(ndivide=None)})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Implementing a custom legend handler\n------------------------------------\n\nA custom handler can be implemented to turn any handle into a legend key (handles\ndon't necessarily need to be matplotlib artists).\nThe handler must implement a \"legend_artist\" method which returns a\nsingle artist for the legend to use. Signature details about the \"legend_artist\"\nare documented at :meth:`~matplotlib.legend_handler.HandlerBase.legend_artist`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\n\n\nclass AnyObject(object):\n pass\n\n\nclass AnyObjectHandler(object):\n def legend_artist(self, legend, orig_handle, fontsize, handlebox):\n x0, y0 = handlebox.xdescent, handlebox.ydescent\n width, height = handlebox.width, handlebox.height\n patch = mpatches.Rectangle([x0, y0], width, height, facecolor='red',\n edgecolor='black', hatch='xx', lw=3,\n transform=handlebox.get_transform())\n handlebox.add_artist(patch)\n return patch\n\n\nplt.legend([AnyObject()], ['My first handler'],\n handler_map={AnyObject: AnyObjectHandler()})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Alternatively, had we wanted to globally accept ``AnyObject`` instances without\nneeding to manually set the ``handler_map`` keyword all the time, we could have\nregistered the new handler with::\n\n from matplotlib.legend import Legend\n Legend.update_default_handler_map({AnyObject: AnyObjectHandler()})\n\nWhilst the power here is clear, remember that there are already many handlers\nimplemented and what you want to achieve may already be easily possible with\nexisting classes. For example, to produce elliptical legend keys, rather than\nrectangular ones:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.legend_handler import HandlerPatch\n\n\nclass HandlerEllipse(HandlerPatch):\n def create_artists(self, legend, orig_handle,\n xdescent, ydescent, width, height, fontsize, trans):\n center = 0.5 * width - 0.5 * xdescent, 0.5 * height - 0.5 * ydescent\n p = mpatches.Ellipse(xy=center, width=width + xdescent,\n height=height + ydescent)\n self.update_prop(p, orig_handle, legend)\n p.set_transform(trans)\n return [p]\n\n\nc = mpatches.Circle((0.5, 0.5), 0.25, facecolor=\"green\",\n edgecolor=\"red\", linewidth=3)\nplt.gca().add_patch(c)\n\nplt.legend([c], [\"An ellipse, not a rectangle\"],\n handler_map={mpatches.Circle: HandlerEllipse()})" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/89b6330816c5203d51e34d94d7e7659a/ellipse_with_units.ipynb b/_downloads/89b6330816c5203d51e34d94d7e7659a/ellipse_with_units.ipynb deleted file mode 120000 index 219316a8356..00000000000 --- a/_downloads/89b6330816c5203d51e34d94d7e7659a/ellipse_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/89b6330816c5203d51e34d94d7e7659a/ellipse_with_units.ipynb \ No newline at end of file diff --git a/_downloads/89b7c3dfc070e26c09179ba0b2b7de81/whats_new_98_4_fill_between.ipynb b/_downloads/89b7c3dfc070e26c09179ba0b2b7de81/whats_new_98_4_fill_between.ipynb deleted file mode 120000 index 67da4252f92..00000000000 --- a/_downloads/89b7c3dfc070e26c09179ba0b2b7de81/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/89b7c3dfc070e26c09179ba0b2b7de81/whats_new_98_4_fill_between.ipynb \ No newline at end of file diff --git a/_downloads/89bcffa85728ef8c09a8c94e84b43418/custom_scale.ipynb b/_downloads/89bcffa85728ef8c09a8c94e84b43418/custom_scale.ipynb deleted file mode 120000 index 9951f9aa532..00000000000 --- a/_downloads/89bcffa85728ef8c09a8c94e84b43418/custom_scale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/89bcffa85728ef8c09a8c94e84b43418/custom_scale.ipynb \ No newline at end of file diff --git a/_downloads/89c8cad6e35c07b13f3b604c6963b243/colorbar_basics.ipynb b/_downloads/89c8cad6e35c07b13f3b604c6963b243/colorbar_basics.ipynb deleted file mode 120000 index 9abccc4ce25..00000000000 --- a/_downloads/89c8cad6e35c07b13f3b604c6963b243/colorbar_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/89c8cad6e35c07b13f3b604c6963b243/colorbar_basics.ipynb \ No newline at end of file diff --git a/_downloads/89cb89c3d4aed7d29d853c368dd2e6d7/radian_demo.py b/_downloads/89cb89c3d4aed7d29d853c368dd2e6d7/radian_demo.py deleted file mode 100644 index f9da342defc..00000000000 --- a/_downloads/89cb89c3d4aed7d29d853c368dd2e6d7/radian_demo.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============ -Radian ticks -============ - -Plot with radians from the basic_units mockup example package. - - -This example shows how the unit class can determine the tick locating, -formatting and axis labeling. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" - -import matplotlib.pyplot as plt -import numpy as np - -from basic_units import radians, degrees, cos - -x = [val*radians for val in np.arange(0, 15, 0.01)] - -fig, axs = plt.subplots(2) - -axs[0].plot(x, cos(x), xunits=radians) -axs[1].plot(x, cos(x), xunits=degrees) - -fig.tight_layout() -plt.show() diff --git a/_downloads/89cc5ac758b3ca3b1ddefc7a8f7e6ac0/pgf_fonts.ipynb b/_downloads/89cc5ac758b3ca3b1ddefc7a8f7e6ac0/pgf_fonts.ipynb deleted file mode 120000 index 659b6640e58..00000000000 --- a/_downloads/89cc5ac758b3ca3b1ddefc7a8f7e6ac0/pgf_fonts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/89cc5ac758b3ca3b1ddefc7a8f7e6ac0/pgf_fonts.ipynb \ No newline at end of file diff --git a/_downloads/89cd98d7448e8ea22a992d881f6c0c2a/major_minor_demo.ipynb b/_downloads/89cd98d7448e8ea22a992d881f6c0c2a/major_minor_demo.ipynb deleted file mode 120000 index 8053a495b16..00000000000 --- a/_downloads/89cd98d7448e8ea22a992d881f6c0c2a/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/89cd98d7448e8ea22a992d881f6c0c2a/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/89d66c2d55eb29f8099d41804c07a968/bxp.ipynb b/_downloads/89d66c2d55eb29f8099d41804c07a968/bxp.ipynb deleted file mode 100644 index c7b4e5fa94b..00000000000 --- a/_downloads/89d66c2d55eb29f8099d41804c07a968/bxp.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Boxplot drawer function\n\n\nThis example demonstrates how to pass pre-computed box plot\nstatistics to the box plot drawer. The first figure demonstrates\nhow to remove and add individual components (note that the\nmean is the only value not shown by default). The second\nfigure demonstrates how the styles of the artists can\nbe customized.\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\n\n# fake data\nnp.random.seed(19680801)\ndata = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75)\nlabels = list('ABCD')\n\n# compute the boxplot stats\nstats = cbook.boxplot_stats(data, labels=labels, bootstrap=10000)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "After we've computed the stats, we can go through and change anything.\nJust to prove it, I'll set the median of each set to the median of all\nthe data, and double the means\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "for n in range(len(stats)):\n stats[n]['med'] = np.median(data)\n stats[n]['mean'] *= 2\n\nprint(list(stats[0]))\n\nfs = 10 # fontsize" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to toggle the display of different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True)\naxes[0, 0].bxp(stats)\naxes[0, 0].set_title('Default', fontsize=fs)\n\naxes[0, 1].bxp(stats, showmeans=True)\naxes[0, 1].set_title('showmeans=True', fontsize=fs)\n\naxes[0, 2].bxp(stats, showmeans=True, meanline=True)\naxes[0, 2].set_title('showmeans=True,\\nmeanline=True', fontsize=fs)\n\naxes[1, 0].bxp(stats, showbox=False, showcaps=False)\ntufte_title = 'Tufte Style\\n(showbox=False,\\nshowcaps=False)'\naxes[1, 0].set_title(tufte_title, fontsize=fs)\n\naxes[1, 1].bxp(stats, shownotches=True)\naxes[1, 1].set_title('notch=True', fontsize=fs)\n\naxes[1, 2].bxp(stats, showfliers=False)\naxes[1, 2].set_title('showfliers=False', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to customize the display different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod')\nflierprops = dict(marker='o', markerfacecolor='green', markersize=12,\n linestyle='none')\nmedianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick')\nmeanpointprops = dict(marker='D', markeredgecolor='black',\n markerfacecolor='firebrick')\nmeanlineprops = dict(linestyle='--', linewidth=2.5, color='purple')\n\nfig, axes = plt.subplots(nrows=2, ncols=2, figsize=(6, 6), sharey=True)\naxes[0, 0].bxp(stats, boxprops=boxprops)\naxes[0, 0].set_title('Custom boxprops', fontsize=fs)\n\naxes[0, 1].bxp(stats, flierprops=flierprops, medianprops=medianprops)\naxes[0, 1].set_title('Custom medianprops\\nand flierprops', fontsize=fs)\n\naxes[1, 0].bxp(stats, meanprops=meanpointprops, meanline=False,\n showmeans=True)\naxes[1, 0].set_title('Custom mean\\nas point', fontsize=fs)\n\naxes[1, 1].bxp(stats, meanprops=meanlineprops, meanline=True,\n showmeans=True)\naxes[1, 1].set_title('Custom mean\\nas line', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.suptitle(\"I never said they'd be pretty\")\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/89e283b893bcf86703713a264ebd1ff5/mpl_with_glade3_sgskip.py b/_downloads/89e283b893bcf86703713a264ebd1ff5/mpl_with_glade3_sgskip.py deleted file mode 120000 index 24c2bb7fc48..00000000000 --- a/_downloads/89e283b893bcf86703713a264ebd1ff5/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/89e283b893bcf86703713a264ebd1ff5/mpl_with_glade3_sgskip.py \ No newline at end of file diff --git a/_downloads/89ec5017a88800298098fd50d9b8fde3/bar_unit_demo.py b/_downloads/89ec5017a88800298098fd50d9b8fde3/bar_unit_demo.py deleted file mode 120000 index 74e10cbdff9..00000000000 --- a/_downloads/89ec5017a88800298098fd50d9b8fde3/bar_unit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/89ec5017a88800298098fd50d9b8fde3/bar_unit_demo.py \ No newline at end of file diff --git a/_downloads/89f5e704b05dca4a6d02da4982008fdc/bar_demo2.ipynb b/_downloads/89f5e704b05dca4a6d02da4982008fdc/bar_demo2.ipynb deleted file mode 100644 index 14af21039cb..00000000000 --- a/_downloads/89f5e704b05dca4a6d02da4982008fdc/bar_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bar demo with units\n\n\nA plot using a variety of centimetre and inch conversions. This example shows\nhow default unit introspection works (ax1), how various keywords can be used to\nset the x and y units to override the defaults (ax2, ax3, ax4) and how one can\nset the xlimits using scalars (ax3, current units assumed) or units\n(conversions applied to get the numbers to current units).\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom basic_units import cm, inch\nimport matplotlib.pyplot as plt\n\ncms = cm * np.arange(0, 10, 2)\nbottom = 0 * cm\nwidth = 0.8 * cm\n\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].bar(cms, cms, bottom=bottom)\n\naxs[0, 1].bar(cms, cms, bottom=bottom, width=width, xunits=cm, yunits=inch)\n\naxs[1, 0].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=cm)\naxs[1, 0].set_xlim(2, 6) # scalars are interpreted in current units\n\naxs[1, 1].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=inch)\naxs[1, 1].set_xlim(2 * cm, 6 * cm) # cm are converted to inches\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/89f9daa9c4b96c222e9d70ceeb235f60/histogram_histtypes.py b/_downloads/89f9daa9c4b96c222e9d70ceeb235f60/histogram_histtypes.py deleted file mode 120000 index 6c5c2f2fe48..00000000000 --- a/_downloads/89f9daa9c4b96c222e9d70ceeb235f60/histogram_histtypes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/89f9daa9c4b96c222e9d70ceeb235f60/histogram_histtypes.py \ No newline at end of file diff --git a/_downloads/89fa541f5cfc1c09e393733db688afb1/custom_legends.py b/_downloads/89fa541f5cfc1c09e393733db688afb1/custom_legends.py deleted file mode 100644 index f37cd2ab61f..00000000000 --- a/_downloads/89fa541f5cfc1c09e393733db688afb1/custom_legends.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -======================== -Composing Custom Legends -======================== - -Composing custom legends piece-by-piece. - -.. note:: - - For more information on creating and customizing legends, see the following - pages: - - * :doc:`/tutorials/intermediate/legend_guide` - * :doc:`/gallery/text_labels_and_annotations/legend_demo` - -Sometimes you don't want a legend that is explicitly tied to data that -you have plotted. For example, say you have plotted 10 lines, but don't -want a legend item to show up for each one. If you simply plot the lines -and call ``ax.legend()``, you will get the following: -""" -# sphinx_gallery_thumbnail_number = 2 -from matplotlib import rcParams, cycler -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -N = 10 -data = [np.logspace(0, 1, 100) + np.random.randn(100) + ii for ii in range(N)] -data = np.array(data).T -cmap = plt.cm.coolwarm -rcParams['axes.prop_cycle'] = cycler(color=cmap(np.linspace(0, 1, N))) - -fig, ax = plt.subplots() -lines = ax.plot(data) -ax.legend(lines) - -############################################################################## -# Note that one legend item per line was created. -# In this case, we can compose a legend using Matplotlib objects that aren't -# explicitly tied to the data that was plotted. For example: - -from matplotlib.lines import Line2D -custom_lines = [Line2D([0], [0], color=cmap(0.), lw=4), - Line2D([0], [0], color=cmap(.5), lw=4), - Line2D([0], [0], color=cmap(1.), lw=4)] - -fig, ax = plt.subplots() -lines = ax.plot(data) -ax.legend(custom_lines, ['Cold', 'Medium', 'Hot']) - - -############################################################################### -# There are many other Matplotlib objects that can be used in this way. In the -# code below we've listed a few common ones. - -from matplotlib.patches import Patch -from matplotlib.lines import Line2D - -legend_elements = [Line2D([0], [0], color='b', lw=4, label='Line'), - Line2D([0], [0], marker='o', color='w', label='Scatter', - markerfacecolor='g', markersize=15), - Patch(facecolor='orange', edgecolor='r', - label='Color Patch')] - -# Create the figure -fig, ax = plt.subplots() -ax.legend(handles=legend_elements, loc='center') - -plt.show() diff --git a/_downloads/8a02fd1cc502f15c7058cd4b9243eb25/whats_new_99_spines.py b/_downloads/8a02fd1cc502f15c7058cd4b9243eb25/whats_new_99_spines.py deleted file mode 100644 index a4050836c7c..00000000000 --- a/_downloads/8a02fd1cc502f15c7058cd4b9243eb25/whats_new_99_spines.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -===================== -Whats New 0.99 Spines -===================== - -""" -import matplotlib.pyplot as plt -import numpy as np - - -def adjust_spines(ax,spines): - for loc, spine in ax.spines.items(): - if loc in spines: - spine.set_position(('outward', 10)) # outward by 10 points - else: - spine.set_color('none') # don't draw spine - - # turn off ticks where there is no spine - if 'left' in spines: - ax.yaxis.set_ticks_position('left') - else: - # no yaxis ticks - ax.yaxis.set_ticks([]) - - if 'bottom' in spines: - ax.xaxis.set_ticks_position('bottom') - else: - # no xaxis ticks - ax.xaxis.set_ticks([]) - -fig = plt.figure() - -x = np.linspace(0,2*np.pi,100) -y = 2*np.sin(x) - -ax = fig.add_subplot(2,2,1) -ax.plot(x,y) -adjust_spines(ax,['left']) - -ax = fig.add_subplot(2,2,2) -ax.plot(x,y) -adjust_spines(ax,[]) - -ax = fig.add_subplot(2,2,3) -ax.plot(x,y) -adjust_spines(ax,['left','bottom']) - -ax = fig.add_subplot(2,2,4) -ax.plot(x,y) -adjust_spines(ax,['bottom']) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axis.Axis.set_ticks -matplotlib.axis.XAxis.set_ticks_position -matplotlib.axis.YAxis.set_ticks_position -matplotlib.spines -matplotlib.spines.Spine -matplotlib.spines.Spine.set_color -matplotlib.spines.Spine.set_position diff --git a/_downloads/8a0cb8a59d79a3492b5fbf36b7faf79b/timeline.ipynb b/_downloads/8a0cb8a59d79a3492b5fbf36b7faf79b/timeline.ipynb deleted file mode 120000 index 66316feb84c..00000000000 --- a/_downloads/8a0cb8a59d79a3492b5fbf36b7faf79b/timeline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8a0cb8a59d79a3492b5fbf36b7faf79b/timeline.ipynb \ No newline at end of file diff --git a/_downloads/8a12fbc7359044e96fee5207216fceb2/demo_axes_rgb.ipynb b/_downloads/8a12fbc7359044e96fee5207216fceb2/demo_axes_rgb.ipynb deleted file mode 120000 index 313923a6de0..00000000000 --- a/_downloads/8a12fbc7359044e96fee5207216fceb2/demo_axes_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8a12fbc7359044e96fee5207216fceb2/demo_axes_rgb.ipynb \ No newline at end of file diff --git a/_downloads/8a1e61de9e8945cfa899d5457afd5838/errorbars_and_boxes.py b/_downloads/8a1e61de9e8945cfa899d5457afd5838/errorbars_and_boxes.py deleted file mode 120000 index 8cfaf0df95c..00000000000 --- a/_downloads/8a1e61de9e8945cfa899d5457afd5838/errorbars_and_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8a1e61de9e8945cfa899d5457afd5838/errorbars_and_boxes.py \ No newline at end of file diff --git a/_downloads/8a2a17cc796bab794ebdd48d6bd5e3ff/gridspec.py b/_downloads/8a2a17cc796bab794ebdd48d6bd5e3ff/gridspec.py deleted file mode 120000 index baa967b25cd..00000000000 --- a/_downloads/8a2a17cc796bab794ebdd48d6bd5e3ff/gridspec.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8a2a17cc796bab794ebdd48d6bd5e3ff/gridspec.py \ No newline at end of file diff --git a/_downloads/8a2ff25ab36d899da6c1187a40d64075/xkcd.py b/_downloads/8a2ff25ab36d899da6c1187a40d64075/xkcd.py deleted file mode 120000 index a287ed68d18..00000000000 --- a/_downloads/8a2ff25ab36d899da6c1187a40d64075/xkcd.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8a2ff25ab36d899da6c1187a40d64075/xkcd.py \ No newline at end of file diff --git a/_downloads/8a396e1dbe25417baecef14801f890d1/demo_axes_grid.ipynb b/_downloads/8a396e1dbe25417baecef14801f890d1/demo_axes_grid.ipynb deleted file mode 120000 index 5ac3d1b5b9c..00000000000 --- a/_downloads/8a396e1dbe25417baecef14801f890d1/demo_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8a396e1dbe25417baecef14801f890d1/demo_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/8a436981352221789cbb3e33ecc647ee/whats_new_98_4_fill_between.ipynb b/_downloads/8a436981352221789cbb3e33ecc647ee/whats_new_98_4_fill_between.ipynb deleted file mode 100644 index f92238eb7b7..00000000000 --- a/_downloads/8a436981352221789cbb3e33ecc647ee/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fill Between\n\n\nFill the area between two curves.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(-5, 5, 0.01)\ny1 = -5*x*x + x + 10\ny2 = 5*x*x + x\n\nfig, ax = plt.subplots()\nax.plot(x, y1, x, y2, color='black')\nax.fill_between(x, y1, y2, where=y2 >y1, facecolor='yellow', alpha=0.5)\nax.fill_between(x, y1, y2, where=y2 <=y1, facecolor='red', alpha=0.5)\nax.set_title('Fill Between')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.fill_between" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8a4664dc177b4c9d9f846668a9b20a3a/axes_zoom_effect.ipynb b/_downloads/8a4664dc177b4c9d9f846668a9b20a3a/axes_zoom_effect.ipynb deleted file mode 100644 index c5b435da971..00000000000 --- a/_downloads/8a4664dc177b4c9d9f846668a9b20a3a/axes_zoom_effect.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axes Zoom Effect\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.transforms import (\n Bbox, TransformedBbox, blended_transform_factory)\nfrom mpl_toolkits.axes_grid1.inset_locator import (\n BboxPatch, BboxConnector, BboxConnectorPatch)\n\n\ndef connect_bbox(bbox1, bbox2,\n loc1a, loc2a, loc1b, loc2b,\n prop_lines, prop_patches=None):\n if prop_patches is None:\n prop_patches = {\n **prop_lines,\n \"alpha\": prop_lines.get(\"alpha\", 1) * 0.2,\n }\n\n c1 = BboxConnector(bbox1, bbox2, loc1=loc1a, loc2=loc2a, **prop_lines)\n c1.set_clip_on(False)\n c2 = BboxConnector(bbox1, bbox2, loc1=loc1b, loc2=loc2b, **prop_lines)\n c2.set_clip_on(False)\n\n bbox_patch1 = BboxPatch(bbox1, **prop_patches)\n bbox_patch2 = BboxPatch(bbox2, **prop_patches)\n\n p = BboxConnectorPatch(bbox1, bbox2,\n # loc1a=3, loc2a=2, loc1b=4, loc2b=1,\n loc1a=loc1a, loc2a=loc2a, loc1b=loc1b, loc2b=loc2b,\n **prop_patches)\n p.set_clip_on(False)\n\n return c1, c2, bbox_patch1, bbox_patch2, p\n\n\ndef zoom_effect01(ax1, ax2, xmin, xmax, **kwargs):\n \"\"\"\n Connect *ax1* and *ax2*. The *xmin*-to-*xmax* range in both axes will\n be marked.\n\n Parameters\n ----------\n ax1\n The main axes.\n ax2\n The zoomed axes.\n xmin, xmax\n The limits of the colored area in both plot axes.\n **kwargs\n Arguments passed to the patch constructor.\n \"\"\"\n\n trans1 = blended_transform_factory(ax1.transData, ax1.transAxes)\n trans2 = blended_transform_factory(ax2.transData, ax2.transAxes)\n\n bbox = Bbox.from_extents(xmin, 0, xmax, 1)\n\n mybbox1 = TransformedBbox(bbox, trans1)\n mybbox2 = TransformedBbox(bbox, trans2)\n\n prop_patches = {**kwargs, \"ec\": \"none\", \"alpha\": 0.2}\n\n c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox(\n mybbox1, mybbox2,\n loc1a=3, loc2a=2, loc1b=4, loc2b=1,\n prop_lines=kwargs, prop_patches=prop_patches)\n\n ax1.add_patch(bbox_patch1)\n ax2.add_patch(bbox_patch2)\n ax2.add_patch(c1)\n ax2.add_patch(c2)\n ax2.add_patch(p)\n\n return c1, c2, bbox_patch1, bbox_patch2, p\n\n\ndef zoom_effect02(ax1, ax2, **kwargs):\n \"\"\"\n ax1 : the main axes\n ax1 : the zoomed axes\n\n Similar to zoom_effect01. The xmin & xmax will be taken from the\n ax1.viewLim.\n \"\"\"\n\n tt = ax1.transScale + (ax1.transLimits + ax2.transAxes)\n trans = blended_transform_factory(ax2.transData, tt)\n\n mybbox1 = ax1.bbox\n mybbox2 = TransformedBbox(ax1.viewLim, trans)\n\n prop_patches = {**kwargs, \"ec\": \"none\", \"alpha\": 0.2}\n\n c1, c2, bbox_patch1, bbox_patch2, p = connect_bbox(\n mybbox1, mybbox2,\n loc1a=3, loc2a=2, loc1b=4, loc2b=1,\n prop_lines=kwargs, prop_patches=prop_patches)\n\n ax1.add_patch(bbox_patch1)\n ax2.add_patch(bbox_patch2)\n ax2.add_patch(c1)\n ax2.add_patch(c2)\n ax2.add_patch(p)\n\n return c1, c2, bbox_patch1, bbox_patch2, p\n\n\nimport matplotlib.pyplot as plt\n\nplt.figure(figsize=(5, 5))\nax1 = plt.subplot(221)\nax2 = plt.subplot(212)\nax2.set_xlim(0, 1)\nax2.set_xlim(0, 5)\nzoom_effect01(ax1, ax2, 0.2, 0.8)\n\n\nax1 = plt.subplot(222)\nax1.set_xlim(2, 3)\nax2.set_xlim(0, 5)\nzoom_effect02(ax1, ax2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8a47afdc69de7ff3741816d106779cb7/simple_anchored_artists.ipynb b/_downloads/8a47afdc69de7ff3741816d106779cb7/simple_anchored_artists.ipynb deleted file mode 100644 index b495411c6cf..00000000000 --- a/_downloads/8a47afdc69de7ff3741816d106779cb7/simple_anchored_artists.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Anchored Artists\n\n\nThis example illustrates the use of the anchored helper classes found in\n:py:mod:`~matplotlib.offsetbox` and in the `toolkit_axesgrid1-index`.\nAn implementation of a similar figure, but without use of the toolkit,\ncan be found in :doc:`/gallery/misc/anchored_artists`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef draw_text(ax):\n \"\"\"\n Draw two text-boxes, anchored by different corners to the upper-left\n corner of the figure.\n \"\"\"\n from matplotlib.offsetbox import AnchoredText\n at = AnchoredText(\"Figure 1a\",\n loc='upper left', prop=dict(size=8), frameon=True,\n )\n at.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at)\n\n at2 = AnchoredText(\"Figure 1(b)\",\n loc='lower left', prop=dict(size=8), frameon=True,\n bbox_to_anchor=(0., 1.),\n bbox_transform=ax.transAxes\n )\n at2.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at2)\n\n\ndef draw_circle(ax):\n \"\"\"\n Draw a circle in axis coordinates\n \"\"\"\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea\n from matplotlib.patches import Circle\n ada = AnchoredDrawingArea(20, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\n p = Circle((10, 10), 10)\n ada.da.add_artist(p)\n ax.add_artist(ada)\n\n\ndef draw_ellipse(ax):\n \"\"\"\n Draw an ellipse of width=0.1, height=0.15 in data coordinates\n \"\"\"\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredEllipse\n ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0.,\n loc='lower left', pad=0.5, borderpad=0.4,\n frameon=True)\n\n ax.add_artist(ae)\n\n\ndef draw_sizebar(ax):\n \"\"\"\n Draw a horizontal bar with length of 0.1 in data coordinates,\n with a fixed label underneath.\n \"\"\"\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar\n asb = AnchoredSizeBar(ax.transData,\n 0.1,\n r\"1$^{\\prime}$\",\n loc='lower center',\n pad=0.1, borderpad=0.5, sep=5,\n frameon=False)\n ax.add_artist(asb)\n\n\nax = plt.gca()\nax.set_aspect(1.)\n\ndraw_text(ax)\ndraw_circle(ax)\ndraw_ellipse(ax)\ndraw_sizebar(ax)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8a483567eb51ac9b84c4b63fd3aae468/timers.ipynb b/_downloads/8a483567eb51ac9b84c4b63fd3aae468/timers.ipynb deleted file mode 100644 index 8507aacebbf..00000000000 --- a/_downloads/8a483567eb51ac9b84c4b63fd3aae468/timers.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Timers\n\n\nSimple example of using general timer objects. This is used to update\nthe time placed in the title of the figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom datetime import datetime\n\n\ndef update_title(axes):\n axes.set_title(datetime.now())\n axes.figure.canvas.draw()\n\nfig, ax = plt.subplots()\n\nx = np.linspace(-3, 3)\nax.plot(x, x ** 2)\n\n# Create a new timer object. Set the interval to 100 milliseconds\n# (1000 is default) and tell the timer what function should be called.\ntimer = fig.canvas.new_timer(interval=100)\ntimer.add_callback(update_title, ax)\ntimer.start()\n\n# Or could start the timer on first figure draw\n#def start_timer(evt):\n# timer.start()\n# fig.canvas.mpl_disconnect(drawid)\n#drawid = fig.canvas.mpl_connect('draw_event', start_timer)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8a564aad80854158aef0b20f71b22cc7/dynamic_image.ipynb b/_downloads/8a564aad80854158aef0b20f71b22cc7/dynamic_image.ipynb deleted file mode 120000 index 249509c6cd2..00000000000 --- a/_downloads/8a564aad80854158aef0b20f71b22cc7/dynamic_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8a564aad80854158aef0b20f71b22cc7/dynamic_image.ipynb \ No newline at end of file diff --git a/_downloads/8a57784041339c9ec9261bc7875e8d16/simple_axisline3.py b/_downloads/8a57784041339c9ec9261bc7875e8d16/simple_axisline3.py deleted file mode 100644 index c0b8d16b4e0..00000000000 --- a/_downloads/8a57784041339c9ec9261bc7875e8d16/simple_axisline3.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -================ -Simple Axisline3 -================ - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axisartist.axislines import Subplot - -fig = plt.figure(figsize=(3, 3)) - -ax = Subplot(fig, 111) -fig.add_subplot(ax) - -ax.axis["right"].set_visible(False) -ax.axis["top"].set_visible(False) - -plt.show() diff --git a/_downloads/8a60d29766c09914693fdb84483cd71e/wxcursor_demo_sgskip.ipynb b/_downloads/8a60d29766c09914693fdb84483cd71e/wxcursor_demo_sgskip.ipynb deleted file mode 120000 index e87a21a5094..00000000000 --- a/_downloads/8a60d29766c09914693fdb84483cd71e/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8a60d29766c09914693fdb84483cd71e/wxcursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/8a7b33c5817f6183be4cb2d495bda44b/dolphin.ipynb b/_downloads/8a7b33c5817f6183be4cb2d495bda44b/dolphin.ipynb deleted file mode 120000 index 9096d63873f..00000000000 --- a/_downloads/8a7b33c5817f6183be4cb2d495bda44b/dolphin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8a7b33c5817f6183be4cb2d495bda44b/dolphin.ipynb \ No newline at end of file diff --git a/_downloads/8a7bc244b779f32b1eef94952a453ba3/font_file.ipynb b/_downloads/8a7bc244b779f32b1eef94952a453ba3/font_file.ipynb deleted file mode 120000 index 6f3f96fc16b..00000000000 --- a/_downloads/8a7bc244b779f32b1eef94952a453ba3/font_file.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8a7bc244b779f32b1eef94952a453ba3/font_file.ipynb \ No newline at end of file diff --git a/_downloads/8a7cdb5a75e7faf091b84487ee4b5ec3/random_walk.ipynb b/_downloads/8a7cdb5a75e7faf091b84487ee4b5ec3/random_walk.ipynb deleted file mode 120000 index 95250326b52..00000000000 --- a/_downloads/8a7cdb5a75e7faf091b84487ee4b5ec3/random_walk.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8a7cdb5a75e7faf091b84487ee4b5ec3/random_walk.ipynb \ No newline at end of file diff --git a/_downloads/8a85941232740328c31f64f20506d9e0/double_pendulum_sgskip.py b/_downloads/8a85941232740328c31f64f20506d9e0/double_pendulum_sgskip.py deleted file mode 100644 index 55657f336e8..00000000000 --- a/_downloads/8a85941232740328c31f64f20506d9e0/double_pendulum_sgskip.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -=========================== -The double pendulum problem -=========================== - -This animation illustrates the double pendulum problem. - -Double pendulum formula translated from the C code at -http://www.physics.usyd.edu.au/~wheat/dpend_html/solve_dpend.c -""" - -from numpy import sin, cos -import numpy as np -import matplotlib.pyplot as plt -import scipy.integrate as integrate -import matplotlib.animation as animation - -G = 9.8 # acceleration due to gravity, in m/s^2 -L1 = 1.0 # length of pendulum 1 in m -L2 = 1.0 # length of pendulum 2 in m -M1 = 1.0 # mass of pendulum 1 in kg -M2 = 1.0 # mass of pendulum 2 in kg - - -def derivs(state, t): - - dydx = np.zeros_like(state) - dydx[0] = state[1] - - delta = state[2] - state[0] - den1 = (M1+M2) * L1 - M2 * L1 * cos(delta) * cos(delta) - dydx[1] = ((M2 * L1 * state[1] * state[1] * sin(delta) * cos(delta) - + M2 * G * sin(state[2]) * cos(delta) - + M2 * L2 * state[3] * state[3] * sin(delta) - - (M1+M2) * G * sin(state[0])) - / den1) - - dydx[2] = state[3] - - den2 = (L2/L1) * den1 - dydx[3] = ((- M2 * L2 * state[3] * state[3] * sin(delta) * cos(delta) - + (M1+M2) * G * sin(state[0]) * cos(delta) - - (M1+M2) * L1 * state[1] * state[1] * sin(delta) - - (M1+M2) * G * sin(state[2])) - / den2) - - return dydx - -# create a time array from 0..100 sampled at 0.05 second steps -dt = 0.05 -t = np.arange(0, 20, dt) - -# th1 and th2 are the initial angles (degrees) -# w10 and w20 are the initial angular velocities (degrees per second) -th1 = 120.0 -w1 = 0.0 -th2 = -10.0 -w2 = 0.0 - -# initial state -state = np.radians([th1, w1, th2, w2]) - -# integrate your ODE using scipy.integrate. -y = integrate.odeint(derivs, state, t) - -x1 = L1*sin(y[:, 0]) -y1 = -L1*cos(y[:, 0]) - -x2 = L2*sin(y[:, 2]) + x1 -y2 = -L2*cos(y[:, 2]) + y1 - -fig = plt.figure() -ax = fig.add_subplot(111, autoscale_on=False, xlim=(-2, 2), ylim=(-2, 2)) -ax.set_aspect('equal') -ax.grid() - -line, = ax.plot([], [], 'o-', lw=2) -time_template = 'time = %.1fs' -time_text = ax.text(0.05, 0.9, '', transform=ax.transAxes) - - -def init(): - line.set_data([], []) - time_text.set_text('') - return line, time_text - - -def animate(i): - thisx = [0, x1[i], x2[i]] - thisy = [0, y1[i], y2[i]] - - line.set_data(thisx, thisy) - time_text.set_text(time_template % (i*dt)) - return line, time_text - - -ani = animation.FuncAnimation(fig, animate, range(1, len(y)), - interval=dt*1000, blit=True, init_func=init) -plt.show() diff --git a/_downloads/8a8fd5b1a49c828f307a22e08cdbc591/pgf_fonts.ipynb b/_downloads/8a8fd5b1a49c828f307a22e08cdbc591/pgf_fonts.ipynb deleted file mode 120000 index f2e0a042123..00000000000 --- a/_downloads/8a8fd5b1a49c828f307a22e08cdbc591/pgf_fonts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8a8fd5b1a49c828f307a22e08cdbc591/pgf_fonts.ipynb \ No newline at end of file diff --git a/_downloads/8aa0d2c0d2d59fa3a36e2653f008998e/align_ylabels.ipynb b/_downloads/8aa0d2c0d2d59fa3a36e2653f008998e/align_ylabels.ipynb deleted file mode 120000 index 1ce9f424d31..00000000000 --- a/_downloads/8aa0d2c0d2d59fa3a36e2653f008998e/align_ylabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8aa0d2c0d2d59fa3a36e2653f008998e/align_ylabels.ipynb \ No newline at end of file diff --git a/_downloads/8ab1bb735ea2adabcd0f669513ecad8d/evans_test.ipynb b/_downloads/8ab1bb735ea2adabcd0f669513ecad8d/evans_test.ipynb deleted file mode 100644 index e7ccd67b99e..00000000000 --- a/_downloads/8ab1bb735ea2adabcd0f669513ecad8d/evans_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Evans test\n\n\nA mockup \"Foo\" units class which supports conversion and different tick\nformatting depending on the \"unit\". Here the \"unit\" is just a scalar\nconversion factor, but this example shows that Matplotlib is entirely agnostic\nto what kind of units client packages use.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport matplotlib.units as units\nimport matplotlib.ticker as ticker\nimport matplotlib.pyplot as plt\n\n\nclass Foo(object):\n def __init__(self, val, unit=1.0):\n self.unit = unit\n self._val = val * unit\n\n def value(self, unit):\n if unit is None:\n unit = self.unit\n return self._val / unit\n\n\nclass FooConverter(units.ConversionInterface):\n @staticmethod\n def axisinfo(unit, axis):\n 'return the Foo AxisInfo'\n if unit == 1.0 or unit == 2.0:\n return units.AxisInfo(\n majloc=ticker.IndexLocator(8, 0),\n majfmt=ticker.FormatStrFormatter(\"VAL: %s\"),\n label='foo',\n )\n\n else:\n return None\n\n @staticmethod\n def convert(obj, unit, axis):\n \"\"\"\n convert obj using unit. If obj is a sequence, return the\n converted sequence\n \"\"\"\n if units.ConversionInterface.is_numlike(obj):\n return obj\n\n if np.iterable(obj):\n return [o.value(unit) for o in obj]\n else:\n return obj.value(unit)\n\n @staticmethod\n def default_units(x, axis):\n 'return the default unit for x or None'\n if np.iterable(x):\n for thisx in x:\n return thisx.unit\n else:\n return x.unit\n\n\nunits.registry[Foo] = FooConverter()\n\n# create some Foos\nx = []\nfor val in range(0, 50, 2):\n x.append(Foo(val, 1.0))\n\n# and some arbitrary y data\ny = [i for i in range(len(x))]\n\n\nfig, (ax1, ax2) = plt.subplots(1, 2)\nfig.suptitle(\"Custom units\")\nfig.subplots_adjust(bottom=0.2)\n\n# plot specifying units\nax2.plot(x, y, 'o', xunits=2.0)\nax2.set_title(\"xunits = 2.0\")\nplt.setp(ax2.get_xticklabels(), rotation=30, ha='right')\n\n# plot without specifying units; will use the None branch for axisinfo\nax1.plot(x, y) # uses default units\nax1.set_title('default units')\nplt.setp(ax1.get_xticklabels(), rotation=30, ha='right')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8abdfd76abd6d1cd40232cabbe7ec040/simple_legend01.ipynb b/_downloads/8abdfd76abd6d1cd40232cabbe7ec040/simple_legend01.ipynb deleted file mode 120000 index 9e5f8734ae6..00000000000 --- a/_downloads/8abdfd76abd6d1cd40232cabbe7ec040/simple_legend01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8abdfd76abd6d1cd40232cabbe7ec040/simple_legend01.ipynb \ No newline at end of file diff --git a/_downloads/8ac98b3f97c76d10e337fb95c6e6c232/gridspec.ipynb b/_downloads/8ac98b3f97c76d10e337fb95c6e6c232/gridspec.ipynb deleted file mode 120000 index f7426b94666..00000000000 --- a/_downloads/8ac98b3f97c76d10e337fb95c6e6c232/gridspec.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8ac98b3f97c76d10e337fb95c6e6c232/gridspec.ipynb \ No newline at end of file diff --git a/_downloads/8ad95e133f4f4fbcecbb03c904e94dd8/path_editor.py b/_downloads/8ad95e133f4f4fbcecbb03c904e94dd8/path_editor.py deleted file mode 100644 index 727712609d3..00000000000 --- a/_downloads/8ad95e133f4f4fbcecbb03c904e94dd8/path_editor.py +++ /dev/null @@ -1,159 +0,0 @@ -""" -=========== -Path Editor -=========== - -Sharing events across GUIs. - -This example demonstrates a cross-GUI application using Matplotlib event -handling to interact with and modify objects on the canvas. -""" -import numpy as np -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -Path = mpath.Path - -fig, ax = plt.subplots() - -pathdata = [ - (Path.MOVETO, (1.58, -2.57)), - (Path.CURVE4, (0.35, -1.1)), - (Path.CURVE4, (-1.75, 2.0)), - (Path.CURVE4, (0.375, 2.0)), - (Path.LINETO, (0.85, 1.15)), - (Path.CURVE4, (2.2, 3.2)), - (Path.CURVE4, (3, 0.05)), - (Path.CURVE4, (2.0, -0.5)), - (Path.CLOSEPOLY, (1.58, -2.57)), - ] - -codes, verts = zip(*pathdata) -path = mpath.Path(verts, codes) -patch = mpatches.PathPatch(path, facecolor='green', edgecolor='yellow', alpha=0.5) -ax.add_patch(patch) - - -class PathInteractor(object): - """ - An path editor. - - Key-bindings - - 't' toggle vertex markers on and off. When vertex markers are on, - you can move them, delete them - - - """ - - showverts = True - epsilon = 5 # max pixel distance to count as a vertex hit - - def __init__(self, pathpatch): - - self.ax = pathpatch.axes - canvas = self.ax.figure.canvas - self.pathpatch = pathpatch - self.pathpatch.set_animated(True) - - x, y = zip(*self.pathpatch.get_path().vertices) - - self.line, = ax.plot(x, y, marker='o', markerfacecolor='r', animated=True) - - self._ind = None # the active vert - - canvas.mpl_connect('draw_event', self.draw_callback) - canvas.mpl_connect('button_press_event', self.button_press_callback) - canvas.mpl_connect('key_press_event', self.key_press_callback) - canvas.mpl_connect('button_release_event', self.button_release_callback) - canvas.mpl_connect('motion_notify_event', self.motion_notify_callback) - self.canvas = canvas - - def draw_callback(self, event): - self.background = self.canvas.copy_from_bbox(self.ax.bbox) - self.ax.draw_artist(self.pathpatch) - self.ax.draw_artist(self.line) - self.canvas.blit(self.ax.bbox) - - def pathpatch_changed(self, pathpatch): - 'this method is called whenever the pathpatchgon object is called' - # only copy the artist props to the line (except visibility) - vis = self.line.get_visible() - plt.Artist.update_from(self.line, pathpatch) - self.line.set_visible(vis) # don't use the pathpatch visibility state - - def get_ind_under_point(self, event): - 'get the index of the vertex under point if within epsilon tolerance' - - # display coords - xy = np.asarray(self.pathpatch.get_path().vertices) - xyt = self.pathpatch.get_transform().transform(xy) - xt, yt = xyt[:, 0], xyt[:, 1] - d = np.sqrt((xt - event.x)**2 + (yt - event.y)**2) - ind = d.argmin() - - if d[ind] >= self.epsilon: - ind = None - - return ind - - def button_press_callback(self, event): - 'whenever a mouse button is pressed' - if not self.showverts: - return - if event.inaxes is None: - return - if event.button != 1: - return - self._ind = self.get_ind_under_point(event) - - def button_release_callback(self, event): - 'whenever a mouse button is released' - if not self.showverts: - return - if event.button != 1: - return - self._ind = None - - def key_press_callback(self, event): - 'whenever a key is pressed' - if not event.inaxes: - return - if event.key == 't': - self.showverts = not self.showverts - self.line.set_visible(self.showverts) - if not self.showverts: - self._ind = None - - self.canvas.draw() - - def motion_notify_callback(self, event): - 'on mouse movement' - if not self.showverts: - return - if self._ind is None: - return - if event.inaxes is None: - return - if event.button != 1: - return - x, y = event.xdata, event.ydata - - vertices = self.pathpatch.get_path().vertices - - vertices[self._ind] = x, y - self.line.set_data(zip(*vertices)) - - self.canvas.restore_region(self.background) - self.ax.draw_artist(self.pathpatch) - self.ax.draw_artist(self.line) - self.canvas.blit(self.ax.bbox) - - -interactor = PathInteractor(patch) -ax.set_title('drag vertices to update path') -ax.set_xlim(-3, 4) -ax.set_ylim(-3, 4) - -plt.show() diff --git a/_downloads/8adb508e40925602de868481cae300fd/spines_bounds.ipynb b/_downloads/8adb508e40925602de868481cae300fd/spines_bounds.ipynb deleted file mode 120000 index a1f9aff299c..00000000000 --- a/_downloads/8adb508e40925602de868481cae300fd/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8adb508e40925602de868481cae300fd/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/8af4d712cf934e6fa1af0f6eb3e02f6d/simple_axis_direction01.ipynb b/_downloads/8af4d712cf934e6fa1af0f6eb3e02f6d/simple_axis_direction01.ipynb deleted file mode 120000 index 197f3c131bf..00000000000 --- a/_downloads/8af4d712cf934e6fa1af0f6eb3e02f6d/simple_axis_direction01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8af4d712cf934e6fa1af0f6eb3e02f6d/simple_axis_direction01.ipynb \ No newline at end of file diff --git a/_downloads/8af77108294190ffc5ab95f1688e4f93/annotate_simple04.ipynb b/_downloads/8af77108294190ffc5ab95f1688e4f93/annotate_simple04.ipynb deleted file mode 120000 index 2d1667e85a5..00000000000 --- a/_downloads/8af77108294190ffc5ab95f1688e4f93/annotate_simple04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8af77108294190ffc5ab95f1688e4f93/annotate_simple04.ipynb \ No newline at end of file diff --git a/_downloads/8af7f4beefd424a856370787ea7c183b/polar_bar.py b/_downloads/8af7f4beefd424a856370787ea7c183b/polar_bar.py deleted file mode 100644 index 2d9a8dee325..00000000000 --- a/_downloads/8af7f4beefd424a856370787ea7c183b/polar_bar.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -======================= -Bar chart on polar axis -======================= - -Demo of bar plot on a polar axis. -""" -import numpy as np -import matplotlib.pyplot as plt - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# Compute pie slices -N = 20 -theta = np.linspace(0.0, 2 * np.pi, N, endpoint=False) -radii = 10 * np.random.rand(N) -width = np.pi / 4 * np.random.rand(N) -colors = plt.cm.viridis(radii / 10.) - -ax = plt.subplot(111, projection='polar') -ax.bar(theta, radii, width=width, bottom=0.0, color=colors, alpha=0.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.projections.polar diff --git a/_downloads/8b02a6b1bf41a0841dd9b6931229503c/gtk_spreadsheet_sgskip.py b/_downloads/8b02a6b1bf41a0841dd9b6931229503c/gtk_spreadsheet_sgskip.py deleted file mode 120000 index e0dae9f2e12..00000000000 --- a/_downloads/8b02a6b1bf41a0841dd9b6931229503c/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b02a6b1bf41a0841dd9b6931229503c/gtk_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/8b0da2fd038df05260f125a7123aba66/strip_chart.py b/_downloads/8b0da2fd038df05260f125a7123aba66/strip_chart.py deleted file mode 120000 index 7c92028b591..00000000000 --- a/_downloads/8b0da2fd038df05260f125a7123aba66/strip_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b0da2fd038df05260f125a7123aba66/strip_chart.py \ No newline at end of file diff --git a/_downloads/8b0e1ae6dc1bbeb3f7ff568e7982870e/scatter_symbol.ipynb b/_downloads/8b0e1ae6dc1bbeb3f7ff568e7982870e/scatter_symbol.ipynb deleted file mode 120000 index 2afae97fab7..00000000000 --- a/_downloads/8b0e1ae6dc1bbeb3f7ff568e7982870e/scatter_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8b0e1ae6dc1bbeb3f7ff568e7982870e/scatter_symbol.ipynb \ No newline at end of file diff --git a/_downloads/8b12585cce03ce5073a1d04e58a21ceb/ftface_props.py b/_downloads/8b12585cce03ce5073a1d04e58a21ceb/ftface_props.py deleted file mode 120000 index a30d87f930e..00000000000 --- a/_downloads/8b12585cce03ce5073a1d04e58a21ceb/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b12585cce03ce5073a1d04e58a21ceb/ftface_props.py \ No newline at end of file diff --git a/_downloads/8b129e658765e60b048d4ee3500e4860/whats_new_98_4_fancy.ipynb b/_downloads/8b129e658765e60b048d4ee3500e4860/whats_new_98_4_fancy.ipynb deleted file mode 120000 index 156763dcb1b..00000000000 --- a/_downloads/8b129e658765e60b048d4ee3500e4860/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b129e658765e60b048d4ee3500e4860/whats_new_98_4_fancy.ipynb \ No newline at end of file diff --git a/_downloads/8b19be14bab39b1a7333877810a77bc4/specgram_demo.ipynb b/_downloads/8b19be14bab39b1a7333877810a77bc4/specgram_demo.ipynb deleted file mode 120000 index 0b03c8ae571..00000000000 --- a/_downloads/8b19be14bab39b1a7333877810a77bc4/specgram_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8b19be14bab39b1a7333877810a77bc4/specgram_demo.ipynb \ No newline at end of file diff --git a/_downloads/8b2a086d0e0d21ce9b1c70879afe5cf9/named_colors.py b/_downloads/8b2a086d0e0d21ce9b1c70879afe5cf9/named_colors.py deleted file mode 120000 index 8f1abfdd9df..00000000000 --- a/_downloads/8b2a086d0e0d21ce9b1c70879afe5cf9/named_colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8b2a086d0e0d21ce9b1c70879afe5cf9/named_colors.py \ No newline at end of file diff --git a/_downloads/8b2c8a8b3bdee4093c59bebb32ddfee4/anchored_box04.py b/_downloads/8b2c8a8b3bdee4093c59bebb32ddfee4/anchored_box04.py deleted file mode 120000 index 9ac746d6ef1..00000000000 --- a/_downloads/8b2c8a8b3bdee4093c59bebb32ddfee4/anchored_box04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b2c8a8b3bdee4093c59bebb32ddfee4/anchored_box04.py \ No newline at end of file diff --git a/_downloads/8b2ccb4624d1567681d38577821e85c3/date_concise_formatter.py b/_downloads/8b2ccb4624d1567681d38577821e85c3/date_concise_formatter.py deleted file mode 120000 index 8abbf3fa980..00000000000 --- a/_downloads/8b2ccb4624d1567681d38577821e85c3/date_concise_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b2ccb4624d1567681d38577821e85c3/date_concise_formatter.py \ No newline at end of file diff --git a/_downloads/8b2d4227b6962f56b1c646af2a1043e2/pong_sgskip.py b/_downloads/8b2d4227b6962f56b1c646af2a1043e2/pong_sgskip.py deleted file mode 120000 index bc89041014d..00000000000 --- a/_downloads/8b2d4227b6962f56b1c646af2a1043e2/pong_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8b2d4227b6962f56b1c646af2a1043e2/pong_sgskip.py \ No newline at end of file diff --git a/_downloads/8b32dac4f3661c0ab58c25458083690a/date_demo_rrule.py b/_downloads/8b32dac4f3661c0ab58c25458083690a/date_demo_rrule.py deleted file mode 120000 index a3c741107bc..00000000000 --- a/_downloads/8b32dac4f3661c0ab58c25458083690a/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8b32dac4f3661c0ab58c25458083690a/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/8b350902fcfe66d062d837393cb2a3ba/simple_axis_pad.py b/_downloads/8b350902fcfe66d062d837393cb2a3ba/simple_axis_pad.py deleted file mode 120000 index c86b2c6f548..00000000000 --- a/_downloads/8b350902fcfe66d062d837393cb2a3ba/simple_axis_pad.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8b350902fcfe66d062d837393cb2a3ba/simple_axis_pad.py \ No newline at end of file diff --git a/_downloads/8b38a7daaab867b31d9ac2509e6a54fa/demo_bboximage.py b/_downloads/8b38a7daaab867b31d9ac2509e6a54fa/demo_bboximage.py deleted file mode 120000 index b1e47d51e86..00000000000 --- a/_downloads/8b38a7daaab867b31d9ac2509e6a54fa/demo_bboximage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b38a7daaab867b31d9ac2509e6a54fa/demo_bboximage.py \ No newline at end of file diff --git a/_downloads/8b599504d9ee8c318ceb384dfe6577f2/hist.py b/_downloads/8b599504d9ee8c318ceb384dfe6577f2/hist.py deleted file mode 100644 index b5ff5ad0034..00000000000 --- a/_downloads/8b599504d9ee8c318ceb384dfe6577f2/hist.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -========== -Histograms -========== - -Demonstrates how to plot histograms with matplotlib. -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import colors -from matplotlib.ticker import PercentFormatter - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -############################################################################### -# Generate data and plot a simple histogram -# ----------------------------------------- -# -# To generate a 1D histogram we only need a single vector of numbers. For a 2D -# histogram we'll need a second vector. We'll generate both below, and show -# the histogram for each vector. - -N_points = 100000 -n_bins = 20 - -# Generate a normal distribution, center at x=0 and y=5 -x = np.random.randn(N_points) -y = .4 * x + np.random.randn(100000) + 5 - -fig, axs = plt.subplots(1, 2, sharey=True, tight_layout=True) - -# We can set the number of bins with the `bins` kwarg -axs[0].hist(x, bins=n_bins) -axs[1].hist(y, bins=n_bins) - - -############################################################################### -# Updating histogram colors -# ------------------------- -# -# The histogram method returns (among other things) a `patches` object. This -# gives us access to the properties of the objects drawn. Using this, we can -# edit the histogram to our liking. Let's change the color of each bar -# based on its y value. - -fig, axs = plt.subplots(1, 2, tight_layout=True) - -# N is the count in each bin, bins is the lower-limit of the bin -N, bins, patches = axs[0].hist(x, bins=n_bins) - -# We'll color code by height, but you could use any scalar -fracs = N / N.max() - -# we need to normalize the data to 0..1 for the full range of the colormap -norm = colors.Normalize(fracs.min(), fracs.max()) - -# Now, we'll loop through our objects and set the color of each accordingly -for thisfrac, thispatch in zip(fracs, patches): - color = plt.cm.viridis(norm(thisfrac)) - thispatch.set_facecolor(color) - -# We can also normalize our inputs by the total number of counts -axs[1].hist(x, bins=n_bins, density=True) - -# Now we format the y-axis to display percentage -axs[1].yaxis.set_major_formatter(PercentFormatter(xmax=1)) - - -############################################################################### -# Plot a 2D histogram -# ------------------- -# -# To plot a 2D histogram, one only needs two vectors of the same length, -# corresponding to each axis of the histogram. - -fig, ax = plt.subplots(tight_layout=True) -hist = ax.hist2d(x, y) - - -############################################################################### -# Customizing your histogram -# -------------------------- -# -# Customizing a 2D histogram is similar to the 1D case, you can control -# visual components such as the bin size or color normalization. - -fig, axs = plt.subplots(3, 1, figsize=(5, 15), sharex=True, sharey=True, - tight_layout=True) - -# We can increase the number of bins on each axis -axs[0].hist2d(x, y, bins=40) - -# As well as define normalization of the colors -axs[1].hist2d(x, y, bins=40, norm=colors.LogNorm()) - -# We can also define custom numbers of bins for each axis -axs[2].hist2d(x, y, bins=(80, 10), norm=colors.LogNorm()) - -plt.show() diff --git a/_downloads/8b5ed8bd187bfdd767318df012e05495/zoom_inset_axes.ipynb b/_downloads/8b5ed8bd187bfdd767318df012e05495/zoom_inset_axes.ipynb deleted file mode 120000 index c745fb04a47..00000000000 --- a/_downloads/8b5ed8bd187bfdd767318df012e05495/zoom_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8b5ed8bd187bfdd767318df012e05495/zoom_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/8b65a1f0a1ed734e8424a825872b7a55/spines_bounds.ipynb b/_downloads/8b65a1f0a1ed734e8424a825872b7a55/spines_bounds.ipynb deleted file mode 120000 index 3f5f3f3ed0e..00000000000 --- a/_downloads/8b65a1f0a1ed734e8424a825872b7a55/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8b65a1f0a1ed734e8424a825872b7a55/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/8b7cd7acfe176e5a509064664f0da9b4/multicursor.py b/_downloads/8b7cd7acfe176e5a509064664f0da9b4/multicursor.py deleted file mode 120000 index 88b8c8ab3fc..00000000000 --- a/_downloads/8b7cd7acfe176e5a509064664f0da9b4/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b7cd7acfe176e5a509064664f0da9b4/multicursor.py \ No newline at end of file diff --git a/_downloads/8b84fdc199d41f0a68cbbaa7cb37567e/triplot_demo.py b/_downloads/8b84fdc199d41f0a68cbbaa7cb37567e/triplot_demo.py deleted file mode 120000 index 726577fe285..00000000000 --- a/_downloads/8b84fdc199d41f0a68cbbaa7cb37567e/triplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b84fdc199d41f0a68cbbaa7cb37567e/triplot_demo.py \ No newline at end of file diff --git a/_downloads/8b878c3bb230b555e5b72377afc1448d/spectrum_demo.ipynb b/_downloads/8b878c3bb230b555e5b72377afc1448d/spectrum_demo.ipynb deleted file mode 120000 index 55d2b3792d6..00000000000 --- a/_downloads/8b878c3bb230b555e5b72377afc1448d/spectrum_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b878c3bb230b555e5b72377afc1448d/spectrum_demo.ipynb \ No newline at end of file diff --git a/_downloads/8b892d9b3f7f9a11b4208ca6cda549d7/toolmanager_sgskip.py b/_downloads/8b892d9b3f7f9a11b4208ca6cda549d7/toolmanager_sgskip.py deleted file mode 120000 index 2242ba2a739..00000000000 --- a/_downloads/8b892d9b3f7f9a11b4208ca6cda549d7/toolmanager_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8b892d9b3f7f9a11b4208ca6cda549d7/toolmanager_sgskip.py \ No newline at end of file diff --git a/_downloads/8b906ea4e75c3f5ebe8b702916d801a2/toolmanager_sgskip.ipynb b/_downloads/8b906ea4e75c3f5ebe8b702916d801a2/toolmanager_sgskip.ipynb deleted file mode 120000 index 907fe882bd9..00000000000 --- a/_downloads/8b906ea4e75c3f5ebe8b702916d801a2/toolmanager_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b906ea4e75c3f5ebe8b702916d801a2/toolmanager_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/8b9dde4c8ff2f0859623be895f5ad3fa/custom_boxstyle02.py b/_downloads/8b9dde4c8ff2f0859623be895f5ad3fa/custom_boxstyle02.py deleted file mode 120000 index 30a9ac16704..00000000000 --- a/_downloads/8b9dde4c8ff2f0859623be895f5ad3fa/custom_boxstyle02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8b9dde4c8ff2f0859623be895f5ad3fa/custom_boxstyle02.py \ No newline at end of file diff --git a/_downloads/8b9e3cc4b8fee6f8c697f1e86e641505/trisurf3d_2.py b/_downloads/8b9e3cc4b8fee6f8c697f1e86e641505/trisurf3d_2.py deleted file mode 120000 index ec930866eee..00000000000 --- a/_downloads/8b9e3cc4b8fee6f8c697f1e86e641505/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8b9e3cc4b8fee6f8c697f1e86e641505/trisurf3d_2.py \ No newline at end of file diff --git a/_downloads/8ba0825c80c6fbb2dc20eac33b501c2b/quadmesh_demo.py b/_downloads/8ba0825c80c6fbb2dc20eac33b501c2b/quadmesh_demo.py deleted file mode 120000 index c1a895d9781..00000000000 --- a/_downloads/8ba0825c80c6fbb2dc20eac33b501c2b/quadmesh_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8ba0825c80c6fbb2dc20eac33b501c2b/quadmesh_demo.py \ No newline at end of file diff --git a/_downloads/8ba27e500b6391ff307a374c5785c8cb/line_with_text.ipynb b/_downloads/8ba27e500b6391ff307a374c5785c8cb/line_with_text.ipynb deleted file mode 120000 index ea3b69c4020..00000000000 --- a/_downloads/8ba27e500b6391ff307a374c5785c8cb/line_with_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8ba27e500b6391ff307a374c5785c8cb/line_with_text.ipynb \ No newline at end of file diff --git a/_downloads/8ba946d899f59d30f4f2ae9bf93dbe90/axes_margins.py b/_downloads/8ba946d899f59d30f4f2ae9bf93dbe90/axes_margins.py deleted file mode 120000 index 032506bd0c5..00000000000 --- a/_downloads/8ba946d899f59d30f4f2ae9bf93dbe90/axes_margins.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8ba946d899f59d30f4f2ae9bf93dbe90/axes_margins.py \ No newline at end of file diff --git a/_downloads/8bad1e245db1adfa0be564e7a208370a/tick-locators.ipynb b/_downloads/8bad1e245db1adfa0be564e7a208370a/tick-locators.ipynb deleted file mode 120000 index f4e5f056b4b..00000000000 --- a/_downloads/8bad1e245db1adfa0be564e7a208370a/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8bad1e245db1adfa0be564e7a208370a/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/8bb311b1054fbcf9790d07a482f5e9ff/errorbar_limits.py b/_downloads/8bb311b1054fbcf9790d07a482f5e9ff/errorbar_limits.py deleted file mode 120000 index baa8681fe63..00000000000 --- a/_downloads/8bb311b1054fbcf9790d07a482f5e9ff/errorbar_limits.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8bb311b1054fbcf9790d07a482f5e9ff/errorbar_limits.py \ No newline at end of file diff --git a/_downloads/8bc38f8fc050c47ec8df04cd40e365a1/text_rotation.ipynb b/_downloads/8bc38f8fc050c47ec8df04cd40e365a1/text_rotation.ipynb deleted file mode 120000 index 6a421e3f410..00000000000 --- a/_downloads/8bc38f8fc050c47ec8df04cd40e365a1/text_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8bc38f8fc050c47ec8df04cd40e365a1/text_rotation.ipynb \ No newline at end of file diff --git a/_downloads/8bc3969ddb86d23c32ea9ff6ef7dbb9b/tick-formatters.py b/_downloads/8bc3969ddb86d23c32ea9ff6ef7dbb9b/tick-formatters.py deleted file mode 120000 index c0c21b4047d..00000000000 --- a/_downloads/8bc3969ddb86d23c32ea9ff6ef7dbb9b/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8bc3969ddb86d23c32ea9ff6ef7dbb9b/tick-formatters.py \ No newline at end of file diff --git a/_downloads/8bc974e1d99d3b9a30eb92135a5c5816/histogram.ipynb b/_downloads/8bc974e1d99d3b9a30eb92135a5c5816/histogram.ipynb deleted file mode 120000 index e8adcc15e58..00000000000 --- a/_downloads/8bc974e1d99d3b9a30eb92135a5c5816/histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8bc974e1d99d3b9a30eb92135a5c5816/histogram.ipynb \ No newline at end of file diff --git a/_downloads/8bcc457667553b02aa3bc680b67198ed/tex_demo.py b/_downloads/8bcc457667553b02aa3bc680b67198ed/tex_demo.py deleted file mode 120000 index 12d9e4f7512..00000000000 --- a/_downloads/8bcc457667553b02aa3bc680b67198ed/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8bcc457667553b02aa3bc680b67198ed/tex_demo.py \ No newline at end of file diff --git a/_downloads/8bd1bcf35bded44bcd7ae485dc9a860a/leftventricle_bulleye.py b/_downloads/8bd1bcf35bded44bcd7ae485dc9a860a/leftventricle_bulleye.py deleted file mode 120000 index f052dd86cbc..00000000000 --- a/_downloads/8bd1bcf35bded44bcd7ae485dc9a860a/leftventricle_bulleye.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8bd1bcf35bded44bcd7ae485dc9a860a/leftventricle_bulleye.py \ No newline at end of file diff --git a/_downloads/8bd2b161e23eba5651b9bb1bf6538dfa/log_bar.ipynb b/_downloads/8bd2b161e23eba5651b9bb1bf6538dfa/log_bar.ipynb deleted file mode 120000 index 1a35f5c46bd..00000000000 --- a/_downloads/8bd2b161e23eba5651b9bb1bf6538dfa/log_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8bd2b161e23eba5651b9bb1bf6538dfa/log_bar.ipynb \ No newline at end of file diff --git a/_downloads/8bdab91d77937f4546c0f79b486aca21/boxplot.py b/_downloads/8bdab91d77937f4546c0f79b486aca21/boxplot.py deleted file mode 120000 index a38ad75ef00..00000000000 --- a/_downloads/8bdab91d77937f4546c0f79b486aca21/boxplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8bdab91d77937f4546c0f79b486aca21/boxplot.py \ No newline at end of file diff --git a/_downloads/8bdd0ae2ec56c8b8438bdbc84339ce2c/svg_histogram_sgskip.ipynb b/_downloads/8bdd0ae2ec56c8b8438bdbc84339ce2c/svg_histogram_sgskip.ipynb deleted file mode 100644 index 0c36a020343..00000000000 --- a/_downloads/8bdd0ae2ec56c8b8438bdbc84339ce2c/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Histogram\n\n\nDemonstrate how to create an interactive histogram, in which bars\nare hidden or shown by clicking on legend markers.\n\nThe interactivity is encoded in ecmascript (javascript) and inserted in\nthe SVG code in a post-processing step. To render the image, open it in\na web browser. SVG is supported in most web browsers used by Linux and\nOSX users. Windows IE9 supports SVG, but earlier versions do not.\n\nNotes\n-----\nThe matplotlib backend lets us assign ids to each object. This is the\nmechanism used here to relate matplotlib objects created in python and\nthe corresponding SVG constructs that are parsed in the second step.\nWhile flexible, ids are cumbersome to use for large collection of\nobjects. Two mechanisms could be used to simplify things:\n\n* systematic grouping of objects into SVG tags,\n* assigning classes to each SVG object according to its origin.\n\nFor example, instead of modifying the properties of each individual bar,\nthe bars from the `hist` function could either be grouped in\na PatchCollection, or be assigned a class=\"hist_##\" attribute.\n\nCSS could also be used more extensively to replace repetitive markup\nthroughout the generated SVG.\n\nAuthor: david.huard@gmail.com\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport xml.etree.ElementTree as ET\nfrom io import BytesIO\nimport json\n\n\nplt.rcParams['svg.fonttype'] = 'none'\n\n# Apparently, this `register_namespace` method works only with\n# python 2.7 and up and is necessary to avoid garbling the XML name\n# space with ns0.\nET.register_namespace(\"\", \"http://www.w3.org/2000/svg\")\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# --- Create histogram, legend and title ---\nplt.figure()\nr = np.random.randn(100)\nr1 = r + 1\nlabels = ['Rabbits', 'Frogs']\nH = plt.hist([r, r1], label=labels)\ncontainers = H[-1]\nleg = plt.legend(frameon=False)\nplt.title(\"From a web browser, click on the legend\\n\"\n \"marker to toggle the corresponding histogram.\")\n\n\n# --- Add ids to the svg objects we'll modify\n\nhist_patches = {}\nfor ic, c in enumerate(containers):\n hist_patches['hist_%d' % ic] = []\n for il, element in enumerate(c):\n element.set_gid('hist_%d_patch_%d' % (ic, il))\n hist_patches['hist_%d' % ic].append('hist_%d_patch_%d' % (ic, il))\n\n# Set ids for the legend patches\nfor i, t in enumerate(leg.get_patches()):\n t.set_gid('leg_patch_%d' % i)\n\n# Set ids for the text patches\nfor i, t in enumerate(leg.get_texts()):\n t.set_gid('leg_text_%d' % i)\n\n# Save SVG in a fake file object.\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\n# Create XML tree from the SVG file.\ntree, xmlid = ET.XMLID(f.getvalue())\n\n\n# --- Add interactivity ---\n\n# Add attributes to the patch objects.\nfor i, t in enumerate(leg.get_patches()):\n el = xmlid['leg_patch_%d' % i]\n el.set('cursor', 'pointer')\n el.set('onclick', \"toggle_hist(this)\")\n\n# Add attributes to the text objects.\nfor i, t in enumerate(leg.get_texts()):\n el = xmlid['leg_text_%d' % i]\n el.set('cursor', 'pointer')\n el.set('onclick', \"toggle_hist(this)\")\n\n# Create script defining the function `toggle_hist`.\n# We create a global variable `container` that stores the patches id\n# belonging to each histogram. Then a function \"toggle_element\" sets the\n# visibility attribute of all patches of each histogram and the opacity\n# of the marker itself.\n\nscript = \"\"\"\n\n\"\"\" % json.dumps(hist_patches)\n\n# Add a transition effect\ncss = tree.getchildren()[0][0]\ncss.text = css.text + \"g {-webkit-transition:opacity 0.4s ease-out;\" + \\\n \"-moz-transition:opacity 0.4s ease-out;}\"\n\n# Insert the script and save to file.\ntree.insert(0, ET.XML(script))\n\nET.ElementTree(tree).write(\"svg_histogram.svg\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8bddb9c3db6f062462fa0c2c9a77ac05/embedding_in_tk_sgskip.py b/_downloads/8bddb9c3db6f062462fa0c2c9a77ac05/embedding_in_tk_sgskip.py deleted file mode 120000 index 941570ca0e8..00000000000 --- a/_downloads/8bddb9c3db6f062462fa0c2c9a77ac05/embedding_in_tk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8bddb9c3db6f062462fa0c2c9a77ac05/embedding_in_tk_sgskip.py \ No newline at end of file diff --git a/_downloads/8be11ebc64bed0a19d87a6a8a6f22062/wxcursor_demo_sgskip.py b/_downloads/8be11ebc64bed0a19d87a6a8a6f22062/wxcursor_demo_sgskip.py deleted file mode 120000 index 64524cd2b3b..00000000000 --- a/_downloads/8be11ebc64bed0a19d87a6a8a6f22062/wxcursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8be11ebc64bed0a19d87a6a8a6f22062/wxcursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/8be4b0edca27c5a417c0dab4715b7d2a/membrane.py b/_downloads/8be4b0edca27c5a417c0dab4715b7d2a/membrane.py deleted file mode 120000 index 895f45db101..00000000000 --- a/_downloads/8be4b0edca27c5a417c0dab4715b7d2a/membrane.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8be4b0edca27c5a417c0dab4715b7d2a/membrane.py \ No newline at end of file diff --git a/_downloads/8be9636ac8174a0e9b2467af6e746164/images.ipynb b/_downloads/8be9636ac8174a0e9b2467af6e746164/images.ipynb deleted file mode 120000 index 3b139c97e26..00000000000 --- a/_downloads/8be9636ac8174a0e9b2467af6e746164/images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8be9636ac8174a0e9b2467af6e746164/images.ipynb \ No newline at end of file diff --git a/_downloads/8bf0e87d4b4eb66aa6c5ff46614c5c96/tick_label_right.py b/_downloads/8bf0e87d4b4eb66aa6c5ff46614c5c96/tick_label_right.py deleted file mode 120000 index 0bf569563e7..00000000000 --- a/_downloads/8bf0e87d4b4eb66aa6c5ff46614c5c96/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8bf0e87d4b4eb66aa6c5ff46614c5c96/tick_label_right.py \ No newline at end of file diff --git a/_downloads/8c07ec01de4543330e20aaf1c06b242b/barchart_demo.py b/_downloads/8c07ec01de4543330e20aaf1c06b242b/barchart_demo.py deleted file mode 120000 index cc39ccd3faf..00000000000 --- a/_downloads/8c07ec01de4543330e20aaf1c06b242b/barchart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8c07ec01de4543330e20aaf1c06b242b/barchart_demo.py \ No newline at end of file diff --git a/_downloads/8c0b838c2b8e597d12aaa240cfbc5b6a/topographic_hillshading.py b/_downloads/8c0b838c2b8e597d12aaa240cfbc5b6a/topographic_hillshading.py deleted file mode 120000 index 22e5cbebf9d..00000000000 --- a/_downloads/8c0b838c2b8e597d12aaa240cfbc5b6a/topographic_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8c0b838c2b8e597d12aaa240cfbc5b6a/topographic_hillshading.py \ No newline at end of file diff --git a/_downloads/8c129d66cff5829c233955ce752df7eb/geo_demo.py b/_downloads/8c129d66cff5829c233955ce752df7eb/geo_demo.py deleted file mode 120000 index 09a628065bf..00000000000 --- a/_downloads/8c129d66cff5829c233955ce752df7eb/geo_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8c129d66cff5829c233955ce752df7eb/geo_demo.py \ No newline at end of file diff --git a/_downloads/8c1407a150636fc90c01034899f0a989/ellipse_with_units.ipynb b/_downloads/8c1407a150636fc90c01034899f0a989/ellipse_with_units.ipynb deleted file mode 120000 index 25d80351d8f..00000000000 --- a/_downloads/8c1407a150636fc90c01034899f0a989/ellipse_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8c1407a150636fc90c01034899f0a989/ellipse_with_units.ipynb \ No newline at end of file diff --git a/_downloads/8c1db8aa7a23d098a933df3b999e4d4f/image_demo.py b/_downloads/8c1db8aa7a23d098a933df3b999e4d4f/image_demo.py deleted file mode 100644 index 58ae0c9e290..00000000000 --- a/_downloads/8c1db8aa7a23d098a933df3b999e4d4f/image_demo.py +++ /dev/null @@ -1,187 +0,0 @@ -""" -========== -Image Demo -========== - -Many ways to plot images in Matplotlib. - -The most common way to plot images in Matplotlib is with -:meth:`~.axes.Axes.imshow`. The following examples demonstrate much of the -functionality of imshow and the many images you can create. -""" - -import numpy as np -import matplotlib.cm as cm -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -from matplotlib.path import Path -from matplotlib.patches import PathPatch - -############################################################################### -# First we'll generate a simple bivariate normal distribution. - -delta = 0.025 -x = y = np.arange(-3.0, 3.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots() -im = ax.imshow(Z, interpolation='bilinear', cmap=cm.RdYlGn, - origin='lower', extent=[-3, 3, -3, 3], - vmax=abs(Z).max(), vmin=-abs(Z).max()) - -plt.show() - - -############################################################################### -# It is also possible to show images of pictures. - -# A sample image -with cbook.get_sample_data('ada.png') as image_file: - image = plt.imread(image_file) - -fig, ax = plt.subplots() -ax.imshow(image) -ax.axis('off') # clear x-axis and y-axis - - -# And another image - -w, h = 512, 512 - -with cbook.get_sample_data('ct.raw.gz') as datafile: - s = datafile.read() -A = np.frombuffer(s, np.uint16).astype(float).reshape((w, h)) -A /= A.max() - -fig, ax = plt.subplots() -extent = (0, 25, 0, 25) -im = ax.imshow(A, cmap=plt.cm.hot, origin='upper', extent=extent) - -markers = [(15.9, 14.5), (16.8, 15)] -x, y = zip(*markers) -ax.plot(x, y, 'o') - -ax.set_title('CT density') - -plt.show() - - -############################################################################### -# Interpolating images -# -------------------- -# -# It is also possible to interpolate images before displaying them. Be careful, -# as this may manipulate the way your data looks, but it can be helpful for -# achieving the look you want. Below we'll display the same (small) array, -# interpolated with three different interpolation methods. -# -# The center of the pixel at A[i,j] is plotted at i+0.5, i+0.5. If you -# are using interpolation='nearest', the region bounded by (i,j) and -# (i+1,j+1) will have the same color. If you are using interpolation, -# the pixel center will have the same color as it does with nearest, but -# other pixels will be interpolated between the neighboring pixels. -# -# To prevent edge effects when doing interpolation, Matplotlib pads the input -# array with identical pixels around the edge: if you have a 5x5 array with -# colors a-y as below:: -# -# a b c d e -# f g h i j -# k l m n o -# p q r s t -# u v w x y -# -# Matplotlib computes the interpolation and resizing on the padded array :: -# -# a a b c d e e -# a a b c d e e -# f f g h i j j -# k k l m n o o -# p p q r s t t -# o u v w x y y -# o u v w x y y -# -# and then extracts the central region of the result. (Extremely old versions -# of Matplotlib (<0.63) did not pad the array, but instead adjusted the view -# limits to hide the affected edge areas.) -# -# This approach allows plotting the full extent of an array without -# edge effects, and for example to layer multiple images of different -# sizes over one another with different interpolation methods -- see -# :doc:`/gallery/images_contours_and_fields/layer_images`. It also implies -# a performance hit, as this new temporary, padded array must be created. -# Sophisticated interpolation also implies a performance hit; for maximal -# performance or very large images, interpolation='nearest' is suggested. - -A = np.random.rand(5, 5) - -fig, axs = plt.subplots(1, 3, figsize=(10, 3)) -for ax, interp in zip(axs, ['nearest', 'bilinear', 'bicubic']): - ax.imshow(A, interpolation=interp) - ax.set_title(interp.capitalize()) - ax.grid(True) - -plt.show() - - -############################################################################### -# You can specify whether images should be plotted with the array origin -# x[0,0] in the upper left or lower right by using the origin parameter. -# You can also control the default setting image.origin in your -# :ref:`matplotlibrc file `. For more on -# this topic see the :doc:`complete guide on origin and extent -# `. - -x = np.arange(120).reshape((10, 12)) - -interp = 'bilinear' -fig, axs = plt.subplots(nrows=2, sharex=True, figsize=(3, 5)) -axs[0].set_title('blue should be up') -axs[0].imshow(x, origin='upper', interpolation=interp) - -axs[1].set_title('blue should be down') -axs[1].imshow(x, origin='lower', interpolation=interp) -plt.show() - - -############################################################################### -# Finally, we'll show an image using a clip path. - -delta = 0.025 -x = y = np.arange(-3.0, 3.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -path = Path([[0, 1], [1, 0], [0, -1], [-1, 0], [0, 1]]) -patch = PathPatch(path, facecolor='none') - -fig, ax = plt.subplots() -ax.add_patch(patch) - -im = ax.imshow(Z, interpolation='bilinear', cmap=cm.gray, - origin='lower', extent=[-3, 3, -3, 3], - clip_path=patch, clip_on=True) -im.set_clip_path(patch) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.artist.Artist.set_clip_path -matplotlib.patches.PathPatch diff --git a/_downloads/8c2a9ffdea1bfaba20054b19c70cb0d5/colormapnorms.ipynb b/_downloads/8c2a9ffdea1bfaba20054b19c70cb0d5/colormapnorms.ipynb deleted file mode 120000 index ce6b0cb60d7..00000000000 --- a/_downloads/8c2a9ffdea1bfaba20054b19c70cb0d5/colormapnorms.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8c2a9ffdea1bfaba20054b19c70cb0d5/colormapnorms.ipynb \ No newline at end of file diff --git a/_downloads/8c3de07d09a344c1d2815903f5f635f0/embedding_in_wx2_sgskip.py b/_downloads/8c3de07d09a344c1d2815903f5f635f0/embedding_in_wx2_sgskip.py deleted file mode 120000 index c4f1794f3d5..00000000000 --- a/_downloads/8c3de07d09a344c1d2815903f5f635f0/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8c3de07d09a344c1d2815903f5f635f0/embedding_in_wx2_sgskip.py \ No newline at end of file diff --git a/_downloads/8c3ec7012171582824c07bc57d312682/pythonic_matplotlib.ipynb b/_downloads/8c3ec7012171582824c07bc57d312682/pythonic_matplotlib.ipynb deleted file mode 120000 index 42e97a10651..00000000000 --- a/_downloads/8c3ec7012171582824c07bc57d312682/pythonic_matplotlib.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8c3ec7012171582824c07bc57d312682/pythonic_matplotlib.ipynb \ No newline at end of file diff --git a/_downloads/8c4d33fa779a63773cdce072cbd54fa6/pgf.py b/_downloads/8c4d33fa779a63773cdce072cbd54fa6/pgf.py deleted file mode 120000 index 27e51156710..00000000000 --- a/_downloads/8c4d33fa779a63773cdce072cbd54fa6/pgf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8c4d33fa779a63773cdce072cbd54fa6/pgf.py \ No newline at end of file diff --git a/_downloads/8c579ee9c04b61ff2fb825077f9035d7/errorbars_and_boxes.ipynb b/_downloads/8c579ee9c04b61ff2fb825077f9035d7/errorbars_and_boxes.ipynb deleted file mode 100644 index 1fec9211451..00000000000 --- a/_downloads/8c579ee9c04b61ff2fb825077f9035d7/errorbars_and_boxes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating boxes from error bars using PatchCollection\n\n\nIn this example, we snazz up a pretty standard error bar plot by adding\na rectangle patch defined by the limits of the bars in both the x- and\ny- directions. To do this, we have to write our own custom function\ncalled ``make_error_boxes``. Close inspection of this function will\nreveal the preferred pattern in writing functions for matplotlib:\n\n 1. an ``Axes`` object is passed directly to the function\n 2. the function operates on the `Axes` methods directly, not through\n the ``pyplot`` interface\n 3. plotting kwargs that could be abbreviated are spelled out for\n better code readability in the future (for example we use\n ``facecolor`` instead of ``fc``)\n 4. the artists returned by the ``Axes`` plotting methods are then\n returned by the function so that, if desired, their styles\n can be modified later outside of the function (they are not\n modified in this example).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.collections import PatchCollection\nfrom matplotlib.patches import Rectangle\n\n# Number of data points\nn = 5\n\n# Dummy data\nnp.random.seed(19680801)\nx = np.arange(0, n, 1)\ny = np.random.rand(n) * 5.\n\n# Dummy errors (above and below)\nxerr = np.random.rand(2, n) + 0.1\nyerr = np.random.rand(2, n) + 0.2\n\n\ndef make_error_boxes(ax, xdata, ydata, xerror, yerror, facecolor='r',\n edgecolor='None', alpha=0.5):\n\n # Create list for all the error patches\n errorboxes = []\n\n # Loop over data points; create box from errors at each point\n for x, y, xe, ye in zip(xdata, ydata, xerror.T, yerror.T):\n rect = Rectangle((x - xe[0], y - ye[0]), xe.sum(), ye.sum())\n errorboxes.append(rect)\n\n # Create patch collection with specified colour/alpha\n pc = PatchCollection(errorboxes, facecolor=facecolor, alpha=alpha,\n edgecolor=edgecolor)\n\n # Add collection to axes\n ax.add_collection(pc)\n\n # Plot errorbars\n artists = ax.errorbar(xdata, ydata, xerr=xerror, yerr=yerror,\n fmt='None', ecolor='k')\n\n return artists\n\n\n# Create figure and axes\nfig, ax = plt.subplots(1)\n\n# Call function to create error boxes\n_ = make_error_boxes(ax, x, y, xerr, yerr)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8c61481fe79d3382665350e546ae5c73/dollar_ticks.ipynb b/_downloads/8c61481fe79d3382665350e546ae5c73/dollar_ticks.ipynb deleted file mode 120000 index dab1533279a..00000000000 --- a/_downloads/8c61481fe79d3382665350e546ae5c73/dollar_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8c61481fe79d3382665350e546ae5c73/dollar_ticks.ipynb \ No newline at end of file diff --git a/_downloads/8c654193a114587d792e16b5755f02e5/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/8c654193a114587d792e16b5755f02e5/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 120000 index 4718b8ea5af..00000000000 --- a/_downloads/8c654193a114587d792e16b5755f02e5/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8c654193a114587d792e16b5755f02e5/make_room_for_ylabel_using_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/8c721646b014badd54da7e521a259d89/membrane.ipynb b/_downloads/8c721646b014badd54da7e521a259d89/membrane.ipynb deleted file mode 120000 index 136b936eaf7..00000000000 --- a/_downloads/8c721646b014badd54da7e521a259d89/membrane.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8c721646b014badd54da7e521a259d89/membrane.ipynb \ No newline at end of file diff --git a/_downloads/8c7a63570a60e8e2c1f8876aa771d958/spine_placement_demo.ipynb b/_downloads/8c7a63570a60e8e2c1f8876aa771d958/spine_placement_demo.ipynb deleted file mode 120000 index a857e9a9ada..00000000000 --- a/_downloads/8c7a63570a60e8e2c1f8876aa771d958/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8c7a63570a60e8e2c1f8876aa771d958/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/8c7b9b24a54f9e78a6782767ddbf7870/polar_bar.py b/_downloads/8c7b9b24a54f9e78a6782767ddbf7870/polar_bar.py deleted file mode 120000 index e116fc2e436..00000000000 --- a/_downloads/8c7b9b24a54f9e78a6782767ddbf7870/polar_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8c7b9b24a54f9e78a6782767ddbf7870/polar_bar.py \ No newline at end of file diff --git a/_downloads/8c7d1852b45441783923ce539e13da1c/colorbar_placement.py b/_downloads/8c7d1852b45441783923ce539e13da1c/colorbar_placement.py deleted file mode 120000 index 83bfea26c06..00000000000 --- a/_downloads/8c7d1852b45441783923ce539e13da1c/colorbar_placement.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8c7d1852b45441783923ce539e13da1c/colorbar_placement.py \ No newline at end of file diff --git a/_downloads/8c890b9241243bbb0149036657d00ea1/custom_boxstyle02.ipynb b/_downloads/8c890b9241243bbb0149036657d00ea1/custom_boxstyle02.ipynb deleted file mode 120000 index fb804737335..00000000000 --- a/_downloads/8c890b9241243bbb0149036657d00ea1/custom_boxstyle02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/8c890b9241243bbb0149036657d00ea1/custom_boxstyle02.ipynb \ No newline at end of file diff --git a/_downloads/8cc87653a6d8fc3ccdd26472409f955d/pie_features.ipynb b/_downloads/8cc87653a6d8fc3ccdd26472409f955d/pie_features.ipynb deleted file mode 120000 index 82d203948c6..00000000000 --- a/_downloads/8cc87653a6d8fc3ccdd26472409f955d/pie_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8cc87653a6d8fc3ccdd26472409f955d/pie_features.ipynb \ No newline at end of file diff --git a/_downloads/8ccc27687e832118a85d3c746c15f6fa/time_series_histogram.py b/_downloads/8ccc27687e832118a85d3c746c15f6fa/time_series_histogram.py deleted file mode 120000 index 8590353865e..00000000000 --- a/_downloads/8ccc27687e832118a85d3c746c15f6fa/time_series_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8ccc27687e832118a85d3c746c15f6fa/time_series_histogram.py \ No newline at end of file diff --git a/_downloads/8cce6a04d69c4512832c24d5fcb065e8/tick-locators.py b/_downloads/8cce6a04d69c4512832c24d5fcb065e8/tick-locators.py deleted file mode 120000 index 331ad74794d..00000000000 --- a/_downloads/8cce6a04d69c4512832c24d5fcb065e8/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8cce6a04d69c4512832c24d5fcb065e8/tick-locators.py \ No newline at end of file diff --git a/_downloads/8cd2a5ade466257e709d158169443d8c/demo_text_rotation_mode.py b/_downloads/8cd2a5ade466257e709d158169443d8c/demo_text_rotation_mode.py deleted file mode 120000 index 1c256d33d62..00000000000 --- a/_downloads/8cd2a5ade466257e709d158169443d8c/demo_text_rotation_mode.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8cd2a5ade466257e709d158169443d8c/demo_text_rotation_mode.py \ No newline at end of file diff --git a/_downloads/8cd5b751e4271dda11c57898ef2bf88f/tick_label_right.ipynb b/_downloads/8cd5b751e4271dda11c57898ef2bf88f/tick_label_right.ipynb deleted file mode 120000 index aaec6d0fe56..00000000000 --- a/_downloads/8cd5b751e4271dda11c57898ef2bf88f/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8cd5b751e4271dda11c57898ef2bf88f/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/8cd6cfc0a6086782b0b524d78047b6a8/arrow_demo.ipynb b/_downloads/8cd6cfc0a6086782b0b524d78047b6a8/arrow_demo.ipynb deleted file mode 120000 index dd8fc256f5b..00000000000 --- a/_downloads/8cd6cfc0a6086782b0b524d78047b6a8/arrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8cd6cfc0a6086782b0b524d78047b6a8/arrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/8cd91916a39cbcaa41ec28eaa04d6e2e/categorical_variables.py b/_downloads/8cd91916a39cbcaa41ec28eaa04d6e2e/categorical_variables.py deleted file mode 120000 index 7aaec638f11..00000000000 --- a/_downloads/8cd91916a39cbcaa41ec28eaa04d6e2e/categorical_variables.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8cd91916a39cbcaa41ec28eaa04d6e2e/categorical_variables.py \ No newline at end of file diff --git a/_downloads/8ce808c06b44b11115abf8cb998d1396/tricontourf3d.py b/_downloads/8ce808c06b44b11115abf8cb998d1396/tricontourf3d.py deleted file mode 120000 index 369bd9f9a54..00000000000 --- a/_downloads/8ce808c06b44b11115abf8cb998d1396/tricontourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8ce808c06b44b11115abf8cb998d1396/tricontourf3d.py \ No newline at end of file diff --git a/_downloads/8cf827618b73578936e9bb2860a84f49/mixed_subplots.ipynb b/_downloads/8cf827618b73578936e9bb2860a84f49/mixed_subplots.ipynb deleted file mode 120000 index 695ffd760c4..00000000000 --- a/_downloads/8cf827618b73578936e9bb2860a84f49/mixed_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8cf827618b73578936e9bb2860a84f49/mixed_subplots.ipynb \ No newline at end of file diff --git a/_downloads/8cfccbd78ffb8c835b01ef4bc1937a85/fivethirtyeight.ipynb b/_downloads/8cfccbd78ffb8c835b01ef4bc1937a85/fivethirtyeight.ipynb deleted file mode 120000 index 6ad93b18c75..00000000000 --- a/_downloads/8cfccbd78ffb8c835b01ef4bc1937a85/fivethirtyeight.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8cfccbd78ffb8c835b01ef4bc1937a85/fivethirtyeight.ipynb \ No newline at end of file diff --git a/_downloads/8d0b7cc46b14ef82f6a49ecc3971f5e9/make_room_for_ylabel_using_axesgrid.py b/_downloads/8d0b7cc46b14ef82f6a49ecc3971f5e9/make_room_for_ylabel_using_axesgrid.py deleted file mode 120000 index 80a8c45d042..00000000000 --- a/_downloads/8d0b7cc46b14ef82f6a49ecc3971f5e9/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8d0b7cc46b14ef82f6a49ecc3971f5e9/make_room_for_ylabel_using_axesgrid.py \ No newline at end of file diff --git a/_downloads/8d0fef4d3b7a482fcd3c5e9d4611b7b5/boxplot_vs_violin.py b/_downloads/8d0fef4d3b7a482fcd3c5e9d4611b7b5/boxplot_vs_violin.py deleted file mode 120000 index 6f446cc5a12..00000000000 --- a/_downloads/8d0fef4d3b7a482fcd3c5e9d4611b7b5/boxplot_vs_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8d0fef4d3b7a482fcd3c5e9d4611b7b5/boxplot_vs_violin.py \ No newline at end of file diff --git a/_downloads/8d2bd91a918af716ba02647dda6668f5/textbox.ipynb b/_downloads/8d2bd91a918af716ba02647dda6668f5/textbox.ipynb deleted file mode 120000 index ec15e3a7053..00000000000 --- a/_downloads/8d2bd91a918af716ba02647dda6668f5/textbox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8d2bd91a918af716ba02647dda6668f5/textbox.ipynb \ No newline at end of file diff --git a/_downloads/8d34558571e1c80bb617d38ed56792e0/demo_tight_layout.py b/_downloads/8d34558571e1c80bb617d38ed56792e0/demo_tight_layout.py deleted file mode 120000 index c0a1da1633b..00000000000 --- a/_downloads/8d34558571e1c80bb617d38ed56792e0/demo_tight_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8d34558571e1c80bb617d38ed56792e0/demo_tight_layout.py \ No newline at end of file diff --git a/_downloads/8d3d4cd13152e9b700fd2892e349c6b6/errorbar_subsample.py b/_downloads/8d3d4cd13152e9b700fd2892e349c6b6/errorbar_subsample.py deleted file mode 100644 index 8b4d11087ac..00000000000 --- a/_downloads/8d3d4cd13152e9b700fd2892e349c6b6/errorbar_subsample.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -================== -Errorbar Subsample -================== - -Demo for the errorevery keyword to show data full accuracy data plots with -few errorbars. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.arange(0.1, 4, 0.1) -y = np.exp(-x) - -# example variable error bar values -yerr = 0.1 + 0.1 * np.sqrt(x) - - -# Now switch to a more OO interface to exercise more features. -fig, axs = plt.subplots(nrows=1, ncols=2, sharex=True) -ax = axs[0] -ax.errorbar(x, y, yerr=yerr) -ax.set_title('all errorbars') - -ax = axs[1] -ax.errorbar(x, y, yerr=yerr, errorevery=5) -ax.set_title('only every 5th errorbar') - - -fig.suptitle('Errorbar subsampling for better appearance') - -plt.show() diff --git a/_downloads/8d439415694036c33d5fcb984ec1575a/multiple_yaxis_with_spines.py b/_downloads/8d439415694036c33d5fcb984ec1575a/multiple_yaxis_with_spines.py deleted file mode 100644 index 19d41f49c21..00000000000 --- a/_downloads/8d439415694036c33d5fcb984ec1575a/multiple_yaxis_with_spines.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -========================== -Multiple Yaxis With Spines -========================== - -Create multiple y axes with a shared x axis. This is done by creating -a `~.axes.Axes.twinx` axes, turning all spines but the right one invisible -and offset its position using `~.spines.Spine.set_position`. - -Note that this approach uses `matplotlib.axes.Axes` and their -:class:`Spines<~matplotlib.spines.Spine>`. An alternative approach for parasite -axes is shown in the :doc:`/gallery/axisartist/demo_parasite_axes` and -:doc:`/gallery/axisartist/demo_parasite_axes2` examples. -""" -import matplotlib.pyplot as plt - - -def make_patch_spines_invisible(ax): - ax.set_frame_on(True) - ax.patch.set_visible(False) - for sp in ax.spines.values(): - sp.set_visible(False) - - -fig, host = plt.subplots() -fig.subplots_adjust(right=0.75) - -par1 = host.twinx() -par2 = host.twinx() - -# Offset the right spine of par2. The ticks and label have already been -# placed on the right by twinx above. -par2.spines["right"].set_position(("axes", 1.2)) -# Having been created by twinx, par2 has its frame off, so the line of its -# detached spine is invisible. First, activate the frame but make the patch -# and spines invisible. -make_patch_spines_invisible(par2) -# Second, show the right spine. -par2.spines["right"].set_visible(True) - -p1, = host.plot([0, 1, 2], [0, 1, 2], "b-", label="Density") -p2, = par1.plot([0, 1, 2], [0, 3, 2], "r-", label="Temperature") -p3, = par2.plot([0, 1, 2], [50, 30, 15], "g-", label="Velocity") - -host.set_xlim(0, 2) -host.set_ylim(0, 2) -par1.set_ylim(0, 4) -par2.set_ylim(1, 65) - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par1.set_ylabel("Temperature") -par2.set_ylabel("Velocity") - -host.yaxis.label.set_color(p1.get_color()) -par1.yaxis.label.set_color(p2.get_color()) -par2.yaxis.label.set_color(p3.get_color()) - -tkw = dict(size=4, width=1.5) -host.tick_params(axis='y', colors=p1.get_color(), **tkw) -par1.tick_params(axis='y', colors=p2.get_color(), **tkw) -par2.tick_params(axis='y', colors=p3.get_color(), **tkw) -host.tick_params(axis='x', **tkw) - -lines = [p1, p2, p3] - -host.legend(lines, [l.get_label() for l in lines]) - -plt.show() diff --git a/_downloads/8d48018fd8d45c9a4ff4c7c628d3e297/simple_axis_pad.py b/_downloads/8d48018fd8d45c9a4ff4c7c628d3e297/simple_axis_pad.py deleted file mode 120000 index 81b4ef7acca..00000000000 --- a/_downloads/8d48018fd8d45c9a4ff4c7c628d3e297/simple_axis_pad.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8d48018fd8d45c9a4ff4c7c628d3e297/simple_axis_pad.py \ No newline at end of file diff --git a/_downloads/8d4daa1fa5a2ef35068189a11904422c/dark_background.py b/_downloads/8d4daa1fa5a2ef35068189a11904422c/dark_background.py deleted file mode 100644 index 4342667cfbe..00000000000 --- a/_downloads/8d4daa1fa5a2ef35068189a11904422c/dark_background.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -=========================== -Dark background style sheet -=========================== - -This example demonstrates the "dark_background" style, which uses white for -elements that are typically black (text, borders, etc). Note that not all plot -elements default to colors defined by an rc parameter. - -""" -import numpy as np -import matplotlib.pyplot as plt - - -plt.style.use('dark_background') - -fig, ax = plt.subplots() - -L = 6 -x = np.linspace(0, L) -ncolors = len(plt.rcParams['axes.prop_cycle']) -shift = np.linspace(0, L, ncolors, endpoint=False) -for s in shift: - ax.plot(x, np.sin(x + s), 'o-') -ax.set_xlabel('x-axis') -ax.set_ylabel('y-axis') -ax.set_title("'dark_background' style sheet") - -plt.show() diff --git a/_downloads/8d4f80d1268ddcc3d69f214496582e8c/axes_demo.ipynb b/_downloads/8d4f80d1268ddcc3d69f214496582e8c/axes_demo.ipynb deleted file mode 120000 index b269f2f5f6e..00000000000 --- a/_downloads/8d4f80d1268ddcc3d69f214496582e8c/axes_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8d4f80d1268ddcc3d69f214496582e8c/axes_demo.ipynb \ No newline at end of file diff --git a/_downloads/8d5498afbbad50cf47507b79b44a585e/common_date_problems.ipynb b/_downloads/8d5498afbbad50cf47507b79b44a585e/common_date_problems.ipynb deleted file mode 100644 index b9e6f618f53..00000000000 --- a/_downloads/8d5498afbbad50cf47507b79b44a585e/common_date_problems.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nFixing common date annoyances\n=============================\n\nMatplotlib allows you to natively plots python datetime instances, and\nfor the most part does a good job picking tick locations and string\nformats. There are a couple of things it does not handle so\ngracefully, and here are some tricks to help you work around them.\nWe'll load up some sample date data which contains datetime.date\nobjects in a numpy record array::\n\n In [63]: datafile = cbook.get_sample_data('goog.npz')\n\n In [64]: r = np.load(datafile)['price_data'].view(np.recarray)\n\n In [65]: r.dtype\n Out[65]: dtype([('date', ']\n\nyou will see that the x tick labels are all squashed together.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.cbook as cbook\nimport matplotlib.dates as mdates\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nwith cbook.get_sample_data('goog.npz') as datafile:\n r = np.load(datafile)['price_data'].view(np.recarray)\n\n# Matplotlib prefers datetime instead of np.datetime64.\ndate = r.date.astype('O')\nfig, ax = plt.subplots()\nax.plot(date, r.close)\nax.set_title('Default date handling can cause overlapping labels')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another annoyance is that if you hover the mouse over the window and\nlook in the lower right corner of the matplotlib toolbar\n(`navigation-toolbar`) at the x and y coordinates, you see that\nthe x locations are formatted the same way the tick labels are, e.g.,\n\"Dec 2004\".\n\nWhat we'd like is for the location in the toolbar to have\na higher degree of precision, e.g., giving us the exact date out mouse is\nhovering over. To fix the first problem, we can use\n:func:`matplotlib.figure.Figure.autofmt_xdate` and to fix the second\nproblem we can use the ``ax.fmt_xdata`` attribute which can be set to\nany function that takes a scalar and returns a string. matplotlib has\na number of date formatters built in, so we'll use one of those.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.plot(date, r.close)\n\n# rotate and align the tick labels so they look better\nfig.autofmt_xdate()\n\n# use a more precise date string for the x axis locations in the\n# toolbar\nax.fmt_xdata = mdates.DateFormatter('%Y-%m-%d')\nax.set_title('fig.autofmt_xdate fixes the labels')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now when you hover your mouse over the plotted data, you'll see date\nformat strings like 2004-12-01 in the toolbar.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8d57aae9d22353bda3cdaff9a6c97986/contourf.ipynb b/_downloads/8d57aae9d22353bda3cdaff9a6c97986/contourf.ipynb deleted file mode 120000 index 4aa19ffe78f..00000000000 --- a/_downloads/8d57aae9d22353bda3cdaff9a6c97986/contourf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8d57aae9d22353bda3cdaff9a6c97986/contourf.ipynb \ No newline at end of file diff --git a/_downloads/8d5d7ee8fdc1bc88750d81affb20823a/text_commands.py b/_downloads/8d5d7ee8fdc1bc88750d81affb20823a/text_commands.py deleted file mode 100644 index 1f6647faede..00000000000 --- a/_downloads/8d5d7ee8fdc1bc88750d81affb20823a/text_commands.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -============= -Text Commands -============= - -Plotting text of many different kinds. -""" - -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold') - -ax = fig.add_subplot(111) -fig.subplots_adjust(top=0.85) -ax.set_title('axes title') - -ax.set_xlabel('xlabel') -ax.set_ylabel('ylabel') - -ax.text(3, 8, 'boxed italics text in data coords', style='italic', - bbox={'facecolor':'red', 'alpha':0.5, 'pad':10}) - -ax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15) - -ax.text(3, 2, 'unicode: Institut f\374r Festk\366rperphysik') - -ax.text(0.95, 0.01, 'colored text in axes coords', - verticalalignment='bottom', horizontalalignment='right', - transform=ax.transAxes, - color='green', fontsize=15) - - -ax.plot([2], [1], 'o') -ax.annotate('annotate', xy=(2, 1), xytext=(3, 4), - arrowprops=dict(facecolor='black', shrink=0.05)) - -ax.set(xlim=(0, 10), ylim=(0, 10)) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure.suptitle -matplotlib.figure.Figure.add_subplot -matplotlib.figure.Figure.subplots_adjust -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.text -matplotlib.axes.Axes.annotate diff --git a/_downloads/8d69838c25dde182ef3c79799cb64830/scatter.ipynb b/_downloads/8d69838c25dde182ef3c79799cb64830/scatter.ipynb deleted file mode 120000 index dc8eb4d74e3..00000000000 --- a/_downloads/8d69838c25dde182ef3c79799cb64830/scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8d69838c25dde182ef3c79799cb64830/scatter.ipynb \ No newline at end of file diff --git a/_downloads/8d809a5eb64c8ab0135b1036acf321eb/canvasagg.py b/_downloads/8d809a5eb64c8ab0135b1036acf321eb/canvasagg.py deleted file mode 100644 index d3082bc48f2..00000000000 --- a/_downloads/8d809a5eb64c8ab0135b1036acf321eb/canvasagg.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -============== -CanvasAgg demo -============== - -This example shows how to use the agg backend directly to create images, which -may be of use to web application developers who want full control over their -code without using the pyplot interface to manage figures, figure closing etc. - -.. note:: - - It is not necessary to avoid using the pyplot interface in order to - create figures without a graphical front-end - simply setting - the backend to "Agg" would be sufficient. - -In this example, we show how to save the contents of the agg canvas to a file, -and how to extract them to a string, which can in turn be passed off to PIL or -put in a numpy array. The latter functionality allows e.g. to use Matplotlib -inside a cgi-script *without* needing to write a figure to disk. -""" - -from matplotlib.backends.backend_agg import FigureCanvasAgg -from matplotlib.figure import Figure -import numpy as np - -fig = Figure(figsize=(5, 4), dpi=100) -# A canvas must be manually attached to the figure (pyplot would automatically -# do it). This is done by instantiating the canvas with the figure as -# argument. -canvas = FigureCanvasAgg(fig) - -# Do some plotting. -ax = fig.add_subplot(111) -ax.plot([1, 2, 3]) - -# Option 1: Save the figure to a file; can also be a file-like object (BytesIO, -# etc.). -fig.savefig("test.png") - -# Option 2: Save the figure to a string. -canvas.draw() -s, (width, height) = canvas.print_to_buffer() - -# Option 2a: Convert to a NumPy array. -X = np.frombuffer(s, np.uint8).reshape((height, width, 4)) - -# Option 2b: Pass off to PIL. -from PIL import Image -im = Image.frombytes("RGBA", (width, height), s) - -# Uncomment this line to display the image using ImageMagick's `display` tool. -# im.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.backends.backend_agg.FigureCanvasAgg -matplotlib.figure.Figure -matplotlib.figure.Figure.add_subplot -matplotlib.figure.Figure.savefig -matplotlib.axes.Axes.plot diff --git a/_downloads/8d8330a6f5e0254f556ef74095176b5c/coords_report.py b/_downloads/8d8330a6f5e0254f556ef74095176b5c/coords_report.py deleted file mode 120000 index 5070b5fd7c3..00000000000 --- a/_downloads/8d8330a6f5e0254f556ef74095176b5c/coords_report.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8d8330a6f5e0254f556ef74095176b5c/coords_report.py \ No newline at end of file diff --git a/_downloads/8d8793fe2fa0c2af09a6a260e2d2a549/annotate_simple04.py b/_downloads/8d8793fe2fa0c2af09a6a260e2d2a549/annotate_simple04.py deleted file mode 100644 index 7b0bff038b4..00000000000 --- a/_downloads/8d8793fe2fa0c2af09a6a260e2d2a549/annotate_simple04.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -================= -Annotate Simple04 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ann = ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - bbox=dict(boxstyle="round4", fc="w"), - arrowprops=dict(arrowstyle="-|>", - connectionstyle="arc3,rad=0.2", - relpos=(0., 0.), - fc="w"), - ) - -ann = ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - bbox=dict(boxstyle="round4", fc="w"), - arrowprops=dict(arrowstyle="-|>", - connectionstyle="arc3,rad=-0.2", - relpos=(1., 0.), - fc="w"), - ) - -plt.show() diff --git a/_downloads/8d8f407341159681ab1272ab68fc9dac/annotate_transform.py b/_downloads/8d8f407341159681ab1272ab68fc9dac/annotate_transform.py deleted file mode 120000 index 258828d9add..00000000000 --- a/_downloads/8d8f407341159681ab1272ab68fc9dac/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8d8f407341159681ab1272ab68fc9dac/annotate_transform.py \ No newline at end of file diff --git a/_downloads/8d90e3470e01345c7ae57d5a33e3320e/contour_image.ipynb b/_downloads/8d90e3470e01345c7ae57d5a33e3320e/contour_image.ipynb deleted file mode 120000 index 0e1e511bdba..00000000000 --- a/_downloads/8d90e3470e01345c7ae57d5a33e3320e/contour_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8d90e3470e01345c7ae57d5a33e3320e/contour_image.ipynb \ No newline at end of file diff --git a/_downloads/8da6c1cdd4f89d398ff27f76e8d7b037/dfrac_demo.ipynb b/_downloads/8da6c1cdd4f89d398ff27f76e8d7b037/dfrac_demo.ipynb deleted file mode 120000 index 43d10aa0764..00000000000 --- a/_downloads/8da6c1cdd4f89d398ff27f76e8d7b037/dfrac_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8da6c1cdd4f89d398ff27f76e8d7b037/dfrac_demo.ipynb \ No newline at end of file diff --git a/_downloads/8dc60936fa60b19b78710960b1abf368/simple_axesgrid2.ipynb b/_downloads/8dc60936fa60b19b78710960b1abf368/simple_axesgrid2.ipynb deleted file mode 120000 index 29ab1d63345..00000000000 --- a/_downloads/8dc60936fa60b19b78710960b1abf368/simple_axesgrid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8dc60936fa60b19b78710960b1abf368/simple_axesgrid2.ipynb \ No newline at end of file diff --git a/_downloads/8dca89728a7f17fe56456479a6e9eb2f/menu.ipynb b/_downloads/8dca89728a7f17fe56456479a6e9eb2f/menu.ipynb deleted file mode 120000 index ada9510092d..00000000000 --- a/_downloads/8dca89728a7f17fe56456479a6e9eb2f/menu.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8dca89728a7f17fe56456479a6e9eb2f/menu.ipynb \ No newline at end of file diff --git a/_downloads/8dce48ab37b19e8e35e9be752b792136/bar_demo2.ipynb b/_downloads/8dce48ab37b19e8e35e9be752b792136/bar_demo2.ipynb deleted file mode 100644 index 63746d44330..00000000000 --- a/_downloads/8dce48ab37b19e8e35e9be752b792136/bar_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bar demo with units\n\n\nA plot using a variety of centimetre and inch conversions. This example shows\nhow default unit introspection works (ax1), how various keywords can be used to\nset the x and y units to override the defaults (ax2, ax3, ax4) and how one can\nset the xlimits using scalars (ax3, current units assumed) or units\n(conversions applied to get the numbers to current units).\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom basic_units import cm, inch\nimport matplotlib.pyplot as plt\n\ncms = cm * np.arange(0, 10, 2)\nbottom = 0 * cm\nwidth = 0.8 * cm\n\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].bar(cms, cms, bottom=bottom)\n\naxs[0, 1].bar(cms, cms, bottom=bottom, width=width, xunits=cm, yunits=inch)\n\naxs[1, 0].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=cm)\naxs[1, 0].set_xlim(2, 6) # scalars are interpreted in current units\n\naxs[1, 1].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=inch)\naxs[1, 1].set_xlim(2 * cm, 6 * cm) # cm are converted to inches\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8dd364cb039bb0a5992f308bbaaa9890/artist_reference.ipynb b/_downloads/8dd364cb039bb0a5992f308bbaaa9890/artist_reference.ipynb deleted file mode 120000 index 724cd03f5d6..00000000000 --- a/_downloads/8dd364cb039bb0a5992f308bbaaa9890/artist_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8dd364cb039bb0a5992f308bbaaa9890/artist_reference.ipynb \ No newline at end of file diff --git a/_downloads/8dd54bec740ad862bc2cd868e8e06fc2/scatter_star_poly.ipynb b/_downloads/8dd54bec740ad862bc2cd868e8e06fc2/scatter_star_poly.ipynb deleted file mode 100644 index 94c7b7885c0..00000000000 --- a/_downloads/8dd54bec740ad862bc2cd868e8e06fc2/scatter_star_poly.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Star Poly\n\n\nCreate multiple scatter plots with different\nstar symbols.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx = np.random.rand(10)\ny = np.random.rand(10)\nz = np.sqrt(x**2 + y**2)\n\nplt.subplot(321)\nplt.scatter(x, y, s=80, c=z, marker=\">\")\n\nplt.subplot(322)\nplt.scatter(x, y, s=80, c=z, marker=(5, 0))\n\nverts = np.array([[-1, -1], [1, -1], [1, 1], [-1, -1]])\nplt.subplot(323)\nplt.scatter(x, y, s=80, c=z, marker=verts)\n\nplt.subplot(324)\nplt.scatter(x, y, s=80, c=z, marker=(5, 1))\n\nplt.subplot(325)\nplt.scatter(x, y, s=80, c=z, marker='+')\n\nplt.subplot(326)\nplt.scatter(x, y, s=80, c=z, marker=(5, 2))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8de2a2f60040beccbd4c734ab4c0a017/wxcursor_demo_sgskip.py b/_downloads/8de2a2f60040beccbd4c734ab4c0a017/wxcursor_demo_sgskip.py deleted file mode 100644 index 1112b285fb7..00000000000 --- a/_downloads/8de2a2f60040beccbd4c734ab4c0a017/wxcursor_demo_sgskip.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -============= -WXcursor Demo -============= - -Example to draw a cursor and report the data coords in wx. -""" - -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wx import NavigationToolbar2Wx -from matplotlib.figure import Figure -import numpy as np - -import wx - - -class CanvasFrame(wx.Frame): - def __init__(self, ): - wx.Frame.__init__(self, None, -1, 'CanvasFrame', size=(550, 350)) - - self.figure = Figure() - self.axes = self.figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2*np.pi*t) - - self.axes.plot(t, s) - self.axes.set_xlabel('t') - self.axes.set_ylabel('sin(t)') - self.figure_canvas = FigureCanvas(self, -1, self.figure) - - # Note that event is a MplEvent - self.figure_canvas.mpl_connect( - 'motion_notify_event', self.UpdateStatusBar) - self.figure_canvas.Bind(wx.EVT_ENTER_WINDOW, self.ChangeCursor) - - self.sizer = wx.BoxSizer(wx.VERTICAL) - self.sizer.Add(self.figure_canvas, 1, wx.LEFT | wx.TOP | wx.GROW) - self.SetSizer(self.sizer) - self.Fit() - - self.statusBar = wx.StatusBar(self, -1) - self.SetStatusBar(self.statusBar) - - self.toolbar = NavigationToolbar2Wx(self.figure_canvas) - self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - self.toolbar.Show() - - def ChangeCursor(self, event): - self.figure_canvas.SetCursor(wx.Cursor(wx.CURSOR_BULLSEYE)) - - def UpdateStatusBar(self, event): - if event.inaxes: - self.statusBar.SetStatusText( - "x={} y={}".format(event.xdata, event.ydata)) - - -class App(wx.App): - def OnInit(self): - 'Create the main window and insert the custom frame' - frame = CanvasFrame() - self.SetTopWindow(frame) - frame.Show(True) - return True - - -if __name__ == '__main__': - app = App(0) - app.MainLoop() diff --git a/_downloads/8de84afc7fabe79721c817bf26d1d5b6/close_event.py b/_downloads/8de84afc7fabe79721c817bf26d1d5b6/close_event.py deleted file mode 120000 index a541731caf8..00000000000 --- a/_downloads/8de84afc7fabe79721c817bf26d1d5b6/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8de84afc7fabe79721c817bf26d1d5b6/close_event.py \ No newline at end of file diff --git a/_downloads/8de8a4f3af74034e14fcb32f453a991f/contour.ipynb b/_downloads/8de8a4f3af74034e14fcb32f453a991f/contour.ipynb deleted file mode 120000 index 42c187736c8..00000000000 --- a/_downloads/8de8a4f3af74034e14fcb32f453a991f/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8de8a4f3af74034e14fcb32f453a991f/contour.ipynb \ No newline at end of file diff --git a/_downloads/8df4431047e50c7f7dd880426cfb9c5c/scatter_symbol.py b/_downloads/8df4431047e50c7f7dd880426cfb9c5c/scatter_symbol.py deleted file mode 120000 index 80964cbe202..00000000000 --- a/_downloads/8df4431047e50c7f7dd880426cfb9c5c/scatter_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8df4431047e50c7f7dd880426cfb9c5c/scatter_symbol.py \ No newline at end of file diff --git a/_downloads/8dfda11cf920b7e818e5d33404891488/polys3d.py b/_downloads/8dfda11cf920b7e818e5d33404891488/polys3d.py deleted file mode 120000 index 512481d4700..00000000000 --- a/_downloads/8dfda11cf920b7e818e5d33404891488/polys3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8dfda11cf920b7e818e5d33404891488/polys3d.py \ No newline at end of file diff --git a/_downloads/8e026d8a7725b9d9850076cb0095c99f/contour.py b/_downloads/8e026d8a7725b9d9850076cb0095c99f/contour.py deleted file mode 120000 index 36e6f5bda6d..00000000000 --- a/_downloads/8e026d8a7725b9d9850076cb0095c99f/contour.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8e026d8a7725b9d9850076cb0095c99f/contour.py \ No newline at end of file diff --git a/_downloads/8e1bc8636ea18d713a8fe77b2117fafa/bachelors_degrees_by_gender.py b/_downloads/8e1bc8636ea18d713a8fe77b2117fafa/bachelors_degrees_by_gender.py deleted file mode 120000 index b44b93066e2..00000000000 --- a/_downloads/8e1bc8636ea18d713a8fe77b2117fafa/bachelors_degrees_by_gender.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8e1bc8636ea18d713a8fe77b2117fafa/bachelors_degrees_by_gender.py \ No newline at end of file diff --git a/_downloads/8e1d0b6fef065d94731b94a74f512083/barh.py b/_downloads/8e1d0b6fef065d94731b94a74f512083/barh.py deleted file mode 120000 index 1dc9b76df57..00000000000 --- a/_downloads/8e1d0b6fef065d94731b94a74f512083/barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8e1d0b6fef065d94731b94a74f512083/barh.py \ No newline at end of file diff --git a/_downloads/8e2d70581a45233aefa5ff2241b5e04f/font_indexing.py b/_downloads/8e2d70581a45233aefa5ff2241b5e04f/font_indexing.py deleted file mode 120000 index 13d321496ee..00000000000 --- a/_downloads/8e2d70581a45233aefa5ff2241b5e04f/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8e2d70581a45233aefa5ff2241b5e04f/font_indexing.py \ No newline at end of file diff --git a/_downloads/8e363fce2ea3eff4c3d71b25b82bf766/barchart.ipynb b/_downloads/8e363fce2ea3eff4c3d71b25b82bf766/barchart.ipynb deleted file mode 120000 index 43a6242d213..00000000000 --- a/_downloads/8e363fce2ea3eff4c3d71b25b82bf766/barchart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8e363fce2ea3eff4c3d71b25b82bf766/barchart.ipynb \ No newline at end of file diff --git a/_downloads/8e3f0df7d5a1bc210547e01432d1d4d1/artist_reference.py b/_downloads/8e3f0df7d5a1bc210547e01432d1d4d1/artist_reference.py deleted file mode 120000 index 643080c7ae5..00000000000 --- a/_downloads/8e3f0df7d5a1bc210547e01432d1d4d1/artist_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8e3f0df7d5a1bc210547e01432d1d4d1/artist_reference.py \ No newline at end of file diff --git a/_downloads/8e40cd8fc4808e27c99b844036356560/simple_anim.ipynb b/_downloads/8e40cd8fc4808e27c99b844036356560/simple_anim.ipynb deleted file mode 100644 index a48fa8dfd67..00000000000 --- a/_downloads/8e40cd8fc4808e27c99b844036356560/simple_anim.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated line plot\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\nfig, ax = plt.subplots()\n\nx = np.arange(0, 2*np.pi, 0.01)\nline, = ax.plot(x, np.sin(x))\n\n\ndef init(): # only required for blitting to give a clean slate.\n line.set_ydata([np.nan] * len(x))\n return line,\n\n\ndef animate(i):\n line.set_ydata(np.sin(x + i / 100)) # update the data.\n return line,\n\n\nani = animation.FuncAnimation(\n fig, animate, init_func=init, interval=2, blit=True, save_count=50)\n\n# To save the animation, use e.g.\n#\n# ani.save(\"movie.mp4\")\n#\n# or\n#\n# from matplotlib.animation import FFMpegWriter\n# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800)\n# ani.save(\"movie.mp4\", writer=writer)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8e4819ad569fff1b4d7208d61a438837/surface3d_2.ipynb b/_downloads/8e4819ad569fff1b4d7208d61a438837/surface3d_2.ipynb deleted file mode 100644 index 2b587b41eec..00000000000 --- a/_downloads/8e4819ad569fff1b4d7208d61a438837/surface3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n========================\n3D surface (solid color)\n========================\n\nDemonstrates a very basic plot of a 3D surface using a solid color.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Make data\nu = np.linspace(0, 2 * np.pi, 100)\nv = np.linspace(0, np.pi, 100)\nx = 10 * np.outer(np.cos(u), np.sin(v))\ny = 10 * np.outer(np.sin(u), np.sin(v))\nz = 10 * np.outer(np.ones(np.size(u)), np.cos(v))\n\n# Plot the surface\nax.plot_surface(x, y, z)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8e5856aefa6a1a82c38db87faf8fe13d/aspect_loglog.py b/_downloads/8e5856aefa6a1a82c38db87faf8fe13d/aspect_loglog.py deleted file mode 120000 index 065ecb14b82..00000000000 --- a/_downloads/8e5856aefa6a1a82c38db87faf8fe13d/aspect_loglog.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8e5856aefa6a1a82c38db87faf8fe13d/aspect_loglog.py \ No newline at end of file diff --git a/_downloads/8e5ade7384d6fcfaedd7f1481611cb38/embedding_in_wx3_sgskip.py b/_downloads/8e5ade7384d6fcfaedd7f1481611cb38/embedding_in_wx3_sgskip.py deleted file mode 100644 index a06a82174e2..00000000000 --- a/_downloads/8e5ade7384d6fcfaedd7f1481611cb38/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1,148 +0,0 @@ -""" -================== -Embedding in wx #3 -================== - -Copyright (C) 2003-2004 Andrew Straw, Jeremy O'Donoghue and others - -License: This work is licensed under the PSF. A copy should be included -with this source code, and is also available at -https://docs.python.org/3/license.html - -This is yet another example of using matplotlib with wx. Hopefully -this is pretty full-featured: - - - both matplotlib toolbar and WX buttons manipulate plot - - full wxApp framework, including widget interaction - - XRC (XML wxWidgets resource) file to create GUI (made with XRCed) - -This was derived from embedding_in_wx and dynamic_image_wxagg. - -Thanks to matplotlib and wx teams for creating such great software! -""" - -import matplotlib -import matplotlib.cm as cm -import matplotlib.cbook as cbook -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar -from matplotlib.figure import Figure -import numpy as np - -import wx -import wx.xrc as xrc - -ERR_TOL = 1e-5 # floating point slop for peak-detection - - -matplotlib.rc('image', origin='lower') - - -class PlotPanel(wx.Panel): - def __init__(self, parent): - wx.Panel.__init__(self, parent, -1) - - self.fig = Figure((5, 4), 75) - self.canvas = FigureCanvas(self, -1, self.fig) - self.toolbar = NavigationToolbar(self.canvas) # matplotlib toolbar - self.toolbar.Realize() - # self.toolbar.set_active([0,1]) - - # Now put all into a sizer - sizer = wx.BoxSizer(wx.VERTICAL) - # This way of adding to sizer allows resizing - sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW) - # Best to allow the toolbar to resize! - sizer.Add(self.toolbar, 0, wx.GROW) - self.SetSizer(sizer) - self.Fit() - - def init_plot_data(self): - a = self.fig.add_subplot(111) - - x = np.arange(120.0) * 2 * np.pi / 60.0 - y = np.arange(100.0) * 2 * np.pi / 50.0 - self.x, self.y = np.meshgrid(x, y) - z = np.sin(self.x) + np.cos(self.y) - self.im = a.imshow(z, cmap=cm.RdBu) # , interpolation='nearest') - - zmax = np.max(z) - ERR_TOL - ymax_i, xmax_i = np.nonzero(z >= zmax) - if self.im.origin == 'upper': - ymax_i = z.shape[0] - ymax_i - self.lines = a.plot(xmax_i, ymax_i, 'ko') - - self.toolbar.update() # Not sure why this is needed - ADS - - def GetToolBar(self): - # You will need to override GetToolBar if you are using an - # unmanaged toolbar in your frame - return self.toolbar - - def OnWhiz(self, evt): - self.x += np.pi / 15 - self.y += np.pi / 20 - z = np.sin(self.x) + np.cos(self.y) - self.im.set_array(z) - - zmax = np.max(z) - ERR_TOL - ymax_i, xmax_i = np.nonzero(z >= zmax) - if self.im.origin == 'upper': - ymax_i = z.shape[0] - ymax_i - self.lines[0].set_data(xmax_i, ymax_i) - - self.canvas.draw() - - -class MyApp(wx.App): - def OnInit(self): - xrcfile = cbook.get_sample_data('embedding_in_wx3.xrc', - asfileobj=False) - print('loading', xrcfile) - - self.res = xrc.XmlResource(xrcfile) - - # main frame and panel --------- - - self.frame = self.res.LoadFrame(None, "MainFrame") - self.panel = xrc.XRCCTRL(self.frame, "MainPanel") - - # matplotlib panel ------------- - - # container for matplotlib panel (I like to make a container - # panel for our panel so I know where it'll go when in XRCed.) - plot_container = xrc.XRCCTRL(self.frame, "plot_container_panel") - sizer = wx.BoxSizer(wx.VERTICAL) - - # matplotlib panel itself - self.plotpanel = PlotPanel(plot_container) - self.plotpanel.init_plot_data() - - # wx boilerplate - sizer.Add(self.plotpanel, 1, wx.EXPAND) - plot_container.SetSizer(sizer) - - # whiz button ------------------ - whiz_button = xrc.XRCCTRL(self.frame, "whiz_button") - whiz_button.Bind(wx.EVT_BUTTON, self.plotpanel.OnWhiz) - - # bang button ------------------ - bang_button = xrc.XRCCTRL(self.frame, "bang_button") - bang_button.Bind(wx.EVT_BUTTON, self.OnBang) - - # final setup ------------------ - self.frame.Show(1) - - self.SetTopWindow(self.frame) - - return True - - def OnBang(self, event): - bang_count = xrc.XRCCTRL(self.frame, "bang_count") - bangs = bang_count.GetValue() - bangs = int(bangs) + 1 - bang_count.SetValue(str(bangs)) - -if __name__ == '__main__': - app = MyApp(0) - app.MainLoop() diff --git a/_downloads/8e6553d5d8ee4023a2c56525c1a07a7c/annotate_simple_coord02.py b/_downloads/8e6553d5d8ee4023a2c56525c1a07a7c/annotate_simple_coord02.py deleted file mode 120000 index a156561aa76..00000000000 --- a/_downloads/8e6553d5d8ee4023a2c56525c1a07a7c/annotate_simple_coord02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8e6553d5d8ee4023a2c56525c1a07a7c/annotate_simple_coord02.py \ No newline at end of file diff --git a/_downloads/8e6580d4f123846ecd4dc5b904b6e3ee/pyplot_text.py b/_downloads/8e6580d4f123846ecd4dc5b904b6e3ee/pyplot_text.py deleted file mode 120000 index 7fe008e8135..00000000000 --- a/_downloads/8e6580d4f123846ecd4dc5b904b6e3ee/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8e6580d4f123846ecd4dc5b904b6e3ee/pyplot_text.py \ No newline at end of file diff --git a/_downloads/8e6cc1a17d5af8ea9b1ad773bade37f8/tick_labels_from_values.ipynb b/_downloads/8e6cc1a17d5af8ea9b1ad773bade37f8/tick_labels_from_values.ipynb deleted file mode 120000 index 1706c8b8799..00000000000 --- a/_downloads/8e6cc1a17d5af8ea9b1ad773bade37f8/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/8e6cc1a17d5af8ea9b1ad773bade37f8/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/8e6ed9ba9bc0b00216f5491438cd57c0/integral.py b/_downloads/8e6ed9ba9bc0b00216f5491438cd57c0/integral.py deleted file mode 120000 index 7ac3d49a36b..00000000000 --- a/_downloads/8e6ed9ba9bc0b00216f5491438cd57c0/integral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8e6ed9ba9bc0b00216f5491438cd57c0/integral.py \ No newline at end of file diff --git a/_downloads/8e7ca2f95dc0adc5f08e4d39eed4a681/whats_new_99_axes_grid.py b/_downloads/8e7ca2f95dc0adc5f08e4d39eed4a681/whats_new_99_axes_grid.py deleted file mode 120000 index 780927dd70a..00000000000 --- a/_downloads/8e7ca2f95dc0adc5f08e4d39eed4a681/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8e7ca2f95dc0adc5f08e4d39eed4a681/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/_downloads/8e82a6ec731526e1e6f855b56b9ec2ce/units_sample.py b/_downloads/8e82a6ec731526e1e6f855b56b9ec2ce/units_sample.py deleted file mode 120000 index 71ba2c4b3e1..00000000000 --- a/_downloads/8e82a6ec731526e1e6f855b56b9ec2ce/units_sample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8e82a6ec731526e1e6f855b56b9ec2ce/units_sample.py \ No newline at end of file diff --git a/_downloads/8e872efb5e549c6c43273efa50da6d39/xcorr_acorr_demo.py b/_downloads/8e872efb5e549c6c43273efa50da6d39/xcorr_acorr_demo.py deleted file mode 120000 index f9aa401f92a..00000000000 --- a/_downloads/8e872efb5e549c6c43273efa50da6d39/xcorr_acorr_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8e872efb5e549c6c43273efa50da6d39/xcorr_acorr_demo.py \ No newline at end of file diff --git a/_downloads/8e9d9a6392eb1013e0fa6ec6daff0f3a/log_test.py b/_downloads/8e9d9a6392eb1013e0fa6ec6daff0f3a/log_test.py deleted file mode 100644 index 3641a1ac646..00000000000 --- a/_downloads/8e9d9a6392eb1013e0fa6ec6daff0f3a/log_test.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -======== -Log Axis -======== - -This is an example of assigning a log-scale for the x-axis using -`semilogx`. -""" - -import matplotlib.pyplot as plt -import numpy as np - -fig, ax = plt.subplots() - -dt = 0.01 -t = np.arange(dt, 20.0, dt) - -ax.semilogx(t, np.exp(-t / 5.0)) -ax.grid() - -plt.show() diff --git a/_downloads/8e9ea08920a50fd406d801f66d4533ac/tick_labels_from_values.py b/_downloads/8e9ea08920a50fd406d801f66d4533ac/tick_labels_from_values.py deleted file mode 120000 index 8394b93758a..00000000000 --- a/_downloads/8e9ea08920a50fd406d801f66d4533ac/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/8e9ea08920a50fd406d801f66d4533ac/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/8eaaf831359c2a1ca02decf08c7219f2/matshow.py b/_downloads/8eaaf831359c2a1ca02decf08c7219f2/matshow.py deleted file mode 120000 index 6575cd25ac7..00000000000 --- a/_downloads/8eaaf831359c2a1ca02decf08c7219f2/matshow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8eaaf831359c2a1ca02decf08c7219f2/matshow.py \ No newline at end of file diff --git a/_downloads/8eabade166e04019a9d7e78fd9d24363/wire3d_zero_stride.ipynb b/_downloads/8eabade166e04019a9d7e78fd9d24363/wire3d_zero_stride.ipynb deleted file mode 120000 index a3440828729..00000000000 --- a/_downloads/8eabade166e04019a9d7e78fd9d24363/wire3d_zero_stride.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8eabade166e04019a9d7e78fd9d24363/wire3d_zero_stride.ipynb \ No newline at end of file diff --git a/_downloads/8eb0ffc2c6df861468409855d9d5dfee/errorbars_and_boxes.ipynb b/_downloads/8eb0ffc2c6df861468409855d9d5dfee/errorbars_and_boxes.ipynb deleted file mode 120000 index ecb411858c9..00000000000 --- a/_downloads/8eb0ffc2c6df861468409855d9d5dfee/errorbars_and_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8eb0ffc2c6df861468409855d9d5dfee/errorbars_and_boxes.ipynb \ No newline at end of file diff --git a/_downloads/8eb60df6d58aa9916cf85d2fa7e32b65/date_index_formatter2.py b/_downloads/8eb60df6d58aa9916cf85d2fa7e32b65/date_index_formatter2.py deleted file mode 120000 index abe8860c671..00000000000 --- a/_downloads/8eb60df6d58aa9916cf85d2fa7e32b65/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8eb60df6d58aa9916cf85d2fa7e32b65/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/8ebd3172fc6b351a6ad9f03104a99e24/embedding_in_wx5_sgskip.ipynb b/_downloads/8ebd3172fc6b351a6ad9f03104a99e24/embedding_in_wx5_sgskip.ipynb deleted file mode 120000 index e783bfac3ae..00000000000 --- a/_downloads/8ebd3172fc6b351a6ad9f03104a99e24/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8ebd3172fc6b351a6ad9f03104a99e24/embedding_in_wx5_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/8ebec24f00b0075452bf3e47ad84e92d/demo_gridspec06.py b/_downloads/8ebec24f00b0075452bf3e47ad84e92d/demo_gridspec06.py deleted file mode 120000 index c734d62212f..00000000000 --- a/_downloads/8ebec24f00b0075452bf3e47ad84e92d/demo_gridspec06.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8ebec24f00b0075452bf3e47ad84e92d/demo_gridspec06.py \ No newline at end of file diff --git a/_downloads/8ec77d1189fea4239ef800d910b24f38/sample_plots.py b/_downloads/8ec77d1189fea4239ef800d910b24f38/sample_plots.py deleted file mode 120000 index efb23b2e315..00000000000 --- a/_downloads/8ec77d1189fea4239ef800d910b24f38/sample_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8ec77d1189fea4239ef800d910b24f38/sample_plots.py \ No newline at end of file diff --git a/_downloads/8ecafbf25a88d26d23db5991334bcd4e/svg_tooltip_sgskip.py b/_downloads/8ecafbf25a88d26d23db5991334bcd4e/svg_tooltip_sgskip.py deleted file mode 120000 index 5e4cc0f3f4f..00000000000 --- a/_downloads/8ecafbf25a88d26d23db5991334bcd4e/svg_tooltip_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8ecafbf25a88d26d23db5991334bcd4e/svg_tooltip_sgskip.py \ No newline at end of file diff --git a/_downloads/8ecdfd594df7e4d6632cf5ae2d9a5764/artist_reference.ipynb b/_downloads/8ecdfd594df7e4d6632cf5ae2d9a5764/artist_reference.ipynb deleted file mode 120000 index 4c629e99dc7..00000000000 --- a/_downloads/8ecdfd594df7e4d6632cf5ae2d9a5764/artist_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8ecdfd594df7e4d6632cf5ae2d9a5764/artist_reference.ipynb \ No newline at end of file diff --git a/_downloads/8ecf2628a1cae9681d6919a3fa3863c2/tight_layout_guide.ipynb b/_downloads/8ecf2628a1cae9681d6919a3fa3863c2/tight_layout_guide.ipynb deleted file mode 120000 index 54ad8215049..00000000000 --- a/_downloads/8ecf2628a1cae9681d6919a3fa3863c2/tight_layout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8ecf2628a1cae9681d6919a3fa3863c2/tight_layout_guide.ipynb \ No newline at end of file diff --git a/_downloads/8ed08d9dbc242413ccd12ab15529485a/demo_axes_grid.ipynb b/_downloads/8ed08d9dbc242413ccd12ab15529485a/demo_axes_grid.ipynb deleted file mode 120000 index 79f72864b1d..00000000000 --- a/_downloads/8ed08d9dbc242413ccd12ab15529485a/demo_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8ed08d9dbc242413ccd12ab15529485a/demo_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/8ed1e29a579a88786554fc9a9e28eb4b/path_tutorial.ipynb b/_downloads/8ed1e29a579a88786554fc9a9e28eb4b/path_tutorial.ipynb deleted file mode 120000 index 7813ab52a74..00000000000 --- a/_downloads/8ed1e29a579a88786554fc9a9e28eb4b/path_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8ed1e29a579a88786554fc9a9e28eb4b/path_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/8ee22af689f150f3c8eb06591249b5c1/text_rotation.py b/_downloads/8ee22af689f150f3c8eb06591249b5c1/text_rotation.py deleted file mode 120000 index 8dbc039a9d6..00000000000 --- a/_downloads/8ee22af689f150f3c8eb06591249b5c1/text_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8ee22af689f150f3c8eb06591249b5c1/text_rotation.py \ No newline at end of file diff --git a/_downloads/8eeacd0a48953caa8d20de07b4c4ef50/text_intro.py b/_downloads/8eeacd0a48953caa8d20de07b4c4ef50/text_intro.py deleted file mode 100644 index 34336c52e5d..00000000000 --- a/_downloads/8eeacd0a48953caa8d20de07b4c4ef50/text_intro.py +++ /dev/null @@ -1,422 +0,0 @@ -""" -======================== -Text in Matplotlib Plots -======================== - -Introduction to plotting and working with text in Matplotlib. - -Matplotlib has extensive text support, including support for -mathematical expressions, truetype support for raster and -vector outputs, newline separated text with arbitrary -rotations, and unicode support. - -Because it embeds fonts directly in output documents, e.g., for postscript -or PDF, what you see on the screen is what you get in the hardcopy. -`FreeType `_ support -produces very nice, antialiased fonts, that look good even at small -raster sizes. Matplotlib includes its own -:mod:`matplotlib.font_manager` (thanks to Paul Barrett), which -implements a cross platform, `W3C ` -compliant font finding algorithm. - -The user has a great deal of control over text properties (font size, font -weight, text location and color, etc.) with sensible defaults set in -the :doc:`rc file `. -And significantly, for those interested in mathematical -or scientific figures, Matplotlib implements a large number of TeX -math symbols and commands, supporting :doc:`mathematical expressions -` anywhere in your figure. - - -Basic text commands -=================== - -The following commands are used to create text in the pyplot -interface and the object-oriented API: - -=================== =================== ====================================== -`.pyplot` API OO API description -=================== =================== ====================================== -`~.pyplot.text` `~.Axes.text` Add text at an arbitrary location of - the `~matplotlib.axes.Axes`. - -`~.pyplot.annotate` `~.Axes.annotate` Add an annotation, with an optional - arrow, at an arbitrary location of the - `~matplotlib.axes.Axes`. - -`~.pyplot.xlabel` `~.Axes.set_xlabel` Add a label to the - `~matplotlib.axes.Axes`\\'s x-axis. - -`~.pyplot.ylabel` `~.Axes.set_ylabel` Add a label to the - `~matplotlib.axes.Axes`\\'s y-axis. - -`~.pyplot.title` `~.Axes.set_title` Add a title to the - `~matplotlib.axes.Axes`. - -`~.pyplot.figtext` `~.Figure.text` Add text at an arbitrary location of - the `.Figure`. - -`~.pyplot.suptitle` `~.Figure.suptitle` Add a title to the `.Figure`. -=================== =================== ====================================== - -All of these functions create and return a `.Text` instance, which can be -configured with a variety of font and other properties. The example below -shows all of these commands in action, and more detail is provided in the -sections that follow. -""" - -import matplotlib -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold') - -ax = fig.add_subplot(111) -fig.subplots_adjust(top=0.85) -ax.set_title('axes title') - -ax.set_xlabel('xlabel') -ax.set_ylabel('ylabel') - -ax.text(3, 8, 'boxed italics text in data coords', style='italic', - bbox={'facecolor': 'red', 'alpha': 0.5, 'pad': 10}) - -ax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15) - -ax.text(3, 2, 'unicode: Institut für Festkörperphysik') - -ax.text(0.95, 0.01, 'colored text in axes coords', - verticalalignment='bottom', horizontalalignment='right', - transform=ax.transAxes, - color='green', fontsize=15) - - -ax.plot([2], [1], 'o') -ax.annotate('annotate', xy=(2, 1), xytext=(3, 4), - arrowprops=dict(facecolor='black', shrink=0.05)) - -ax.axis([0, 10, 0, 10]) - -plt.show() - -############################################################################### -# Labels for x- and y-axis -# ======================== -# -# Specifying the labels for the x- and y-axis is straightforward, via the -# `~matplotlib.axes.Axes.set_xlabel` and `~matplotlib.axes.Axes.set_ylabel` -# methods. - -import matplotlib.pyplot as plt -import numpy as np - -x1 = np.linspace(0.0, 5.0, 100) -y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1) -ax.set_xlabel('time [s]') -ax.set_ylabel('Damped oscillation [V]') - -plt.show() - -############################################################################### -# The x- and y-labels are automatically placed so that they clear the x- and -# y-ticklabels. Compare the plot below with that above, and note the y-label -# is to the left of the one above. - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1*10000) -ax.set_xlabel('time [s]') -ax.set_ylabel('Damped oscillation [V]') - -plt.show() - -############################################################################### -# If you want to move the labels, you can specify the *labelpad* keyword -# argument, where the value is points (1/72", the same unit used to specify -# fontsizes). - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1*10000) -ax.set_xlabel('time [s]') -ax.set_ylabel('Damped oscillation [V]', labelpad=18) - -plt.show() - -############################################################################### -# Or, the labels accept all the `.Text` keyword arguments, including -# *position*, via which we can manually specify the label positions. Here we -# put the xlabel to the far left of the axis. Note, that the y-coordinate of -# this position has no effect - to adjust the y-position we need to use the -# *labelpad* kwarg. - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1) -ax.set_xlabel('time [s]', position=(0., 1e6), - horizontalalignment='left') -ax.set_ylabel('Damped oscillation [V]') - -plt.show() - -############################################################################## -# All the labelling in this tutorial can be changed by manipulating the -# `matplotlib.font_manager.FontProperties` method, or by named kwargs to -# `~matplotlib.axes.Axes.set_xlabel` - -from matplotlib.font_manager import FontProperties - -font = FontProperties() -font.set_family('serif') -font.set_name('Times New Roman') -font.set_style('italic') - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.15, left=0.2) -ax.plot(x1, y1) -ax.set_xlabel('time [s]', fontsize='large', fontweight='bold') -ax.set_ylabel('Damped oscillation [V]', fontproperties=font) - -plt.show() - -############################################################################## -# Finally, we can use native TeX rendering in all text objects and have -# multiple lines: - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(bottom=0.2, left=0.2) -ax.plot(x1, np.cumsum(y1**2)) -ax.set_xlabel('time [s] \n This was a long experiment') -ax.set_ylabel(r'$\int\ Y^2\ dt\ \ [V^2 s]$') -plt.show() - - -############################################################################## -# Titles -# ====== -# -# Subplot titles are set in much the same way as labels, but there is -# the *loc* keyword arguments that can change the position and justification -# from the default value of ``loc=center``. - -fig, axs = plt.subplots(3, 1, figsize=(5, 6), tight_layout=True) -locs = ['center', 'left', 'right'] -for ax, loc in zip(axs, locs): - ax.plot(x1, y1) - ax.set_title('Title with loc at '+loc, loc=loc) -plt.show() - -############################################################################## -# Vertical spacing for titles is controlled via :rc:`axes.titlepad`, which -# defaults to 5 points. Setting to a different value moves the title. - -fig, ax = plt.subplots(figsize=(5, 3)) -fig.subplots_adjust(top=0.8) -ax.plot(x1, y1) -ax.set_title('Vertically offset title', pad=30) -plt.show() - - -############################################################################## -# Ticks and ticklabels -# ==================== -# -# Placing ticks and ticklabels is a very tricky aspect of making a figure. -# Matplotlib does the best it can automatically, but it also offers a very -# flexible framework for determining the choices for tick locations, and -# how they are labelled. -# -# Terminology -# ~~~~~~~~~~~ -# -# *Axes* have an `matplotlib.axis` object for the ``ax.xaxis`` -# and ``ax.yaxis`` that -# contain the information about how the labels in the axis are laid out. -# -# The axis API is explained in detail in the documentation to -# `~matplotlib.axis`. -# -# An Axis object has major and minor ticks. The Axis has a -# `matplotlib.xaxis.set_major_locator` and -# `matplotlib.xaxis.set_minor_locator` methods that use the data being plotted -# to determine -# the location of major and minor ticks. There are also -# `matplotlib.xaxis.set_major_formatter` and -# `matplotlib.xaxis.set_minor_formatters` methods that format the tick labels. -# -# Simple ticks -# ~~~~~~~~~~~~ -# -# It often is convenient to simply define the -# tick values, and sometimes the tick labels, overriding the default -# locators and formatters. This is discouraged because it breaks itneractive -# navigation of the plot. It also can reset the axis limits: note that -# the second plot has the ticks we asked for, including ones that are -# well outside the automatic view limits. - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -axs[1].xaxis.set_ticks(np.arange(0., 8.1, 2.)) -plt.show() - -############################################################################# -# We can of course fix this after the fact, but it does highlight a -# weakness of hard-coding the ticks. This example also changes the format -# of the ticks: - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -ticks = np.arange(0., 8.1, 2.) -# list comprehension to get all tick labels... -tickla = ['%1.2f' % tick for tick in ticks] -axs[1].xaxis.set_ticks(ticks) -axs[1].xaxis.set_ticklabels(tickla) -axs[1].set_xlim(axs[0].get_xlim()) -plt.show() - -############################################################################# -# Tick Locators and Formatters -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# Instead of making a list of all the tickalbels, we could have -# used a `matplotlib.ticker.FormatStrFormatter` and passed it to the -# ``ax.xaxis`` - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -ticks = np.arange(0., 8.1, 2.) -# list comprehension to get all tick labels... -formatter = matplotlib.ticker.StrMethodFormatter('{x:1.1f}') -axs[1].xaxis.set_ticks(ticks) -axs[1].xaxis.set_major_formatter(formatter) -axs[1].set_xlim(axs[0].get_xlim()) -plt.show() - -############################################################################# -# And of course we could have used a non-default locator to set the -# tick locations. Note we still pass in the tick values, but the -# x-limit fix used above is *not* needed. - -fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True) -axs[0].plot(x1, y1) -axs[1].plot(x1, y1) -formatter = matplotlib.ticker.FormatStrFormatter('%1.1f') -locator = matplotlib.ticker.FixedLocator(ticks) -axs[1].xaxis.set_major_locator(locator) -axs[1].xaxis.set_major_formatter(formatter) -plt.show() - -############################################################################# -# The default formatter is the `matplotlib.ticker.MaxNLocator` called as -# ``ticker.MaxNLocator(self, nbins='auto', steps=[1, 2, 2.5, 5, 10])`` -# The *steps* keyword contains a list of multiples that can be used for -# tick values. i.e. in this case, 2, 4, 6 would be acceptable ticks, -# as would 20, 40, 60 or 0.2, 0.4, 0.6. However, 3, 6, 9 would not be -# acceptable because 3 doesn't appear in the list of steps. -# -# ``nbins=auto`` uses an algorithm to determine how many ticks will -# be acceptable based on how long the axis is. The fontsize of the -# ticklabel is taken into account, but the length of the tick string -# is not (because its not yet known.) In the bottom row, the -# ticklabels are quite large, so we set ``nbins=4`` to make the -# labels fit in the right-hand plot. - -fig, axs = plt.subplots(2, 2, figsize=(8, 5), tight_layout=True) -for n, ax in enumerate(axs.flat): - ax.plot(x1*10., y1) - -formatter = matplotlib.ticker.FormatStrFormatter('%1.1f') -locator = matplotlib.ticker.MaxNLocator(nbins='auto', steps=[1, 4, 10]) -axs[0, 1].xaxis.set_major_locator(locator) -axs[0, 1].xaxis.set_major_formatter(formatter) - -formatter = matplotlib.ticker.FormatStrFormatter('%1.5f') -locator = matplotlib.ticker.AutoLocator() -axs[1, 0].xaxis.set_major_formatter(formatter) -axs[1, 0].xaxis.set_major_locator(locator) - -formatter = matplotlib.ticker.FormatStrFormatter('%1.5f') -locator = matplotlib.ticker.MaxNLocator(nbins=4) -axs[1, 1].xaxis.set_major_formatter(formatter) -axs[1, 1].xaxis.set_major_locator(locator) - -plt.show() - -############################################################################## -# Finally, we can specify functions for the formatter using -# `matplotlib.ticker.FuncFormatter`. - - -def formatoddticks(x, pos): - """Format odd tick positions - """ - if x % 2: - return '%1.2f' % x - else: - return '' - -fig, ax = plt.subplots(figsize=(5, 3), tight_layout=True) -ax.plot(x1, y1) -formatter = matplotlib.ticker.FuncFormatter(formatoddticks) -locator = matplotlib.ticker.MaxNLocator(nbins=6) -ax.xaxis.set_major_formatter(formatter) -ax.xaxis.set_major_locator(locator) - -plt.show() - -############################################################################## -# Dateticks -# ~~~~~~~~~ -# -# Matplotlib can accept `datetime.datetime` and `numpy.datetime64` -# objects as plotting arguments. Dates and times require special -# formatting, which can often benefit from manual intervention. In -# order to help, dates have special Locators and Formatters, -# defined in the `matplotlib.dates` module. -# -# A simple example is as follows. Note how we have to rotate the -# tick labels so that they don't over-run each other. -import datetime - -fig, ax = plt.subplots(figsize=(5, 3), tight_layout=True) -base = datetime.datetime(2017, 1, 1, 0, 0, 1) -time = [base + datetime.timedelta(days=x) for x in range(len(y1))] - -ax.plot(time, y1) -ax.tick_params(axis='x', rotation=70) -plt.show() - - -############################################################################## -# We can pass a format -# to `matplotlib.dates.DateFormatter`. Also note that the 29th and the -# next month are very close together. We can fix this by using the -# `dates.DayLocator` class, which allows us to specify a list of days of the -# month to use. Similar formatters are listed in the `matplotlib.dates` module. - -import matplotlib.dates as mdates - -locator = mdates.DayLocator(bymonthday=[1, 15]) -formatter = mdates.DateFormatter('%b %d') - -fig, ax = plt.subplots(figsize=(5, 3), tight_layout=True) -ax.xaxis.set_major_locator(locator) -ax.xaxis.set_major_formatter(formatter) -ax.plot(time, y1) -ax.tick_params(axis='x', rotation=70) -plt.show() - -############################################################################## -# Legends and Annotations -# ======================= -# -# - Legends: :doc:`/tutorials/intermediate/legend_guide` -# - Annotations: :doc:`/tutorials/text/annotations` -# diff --git a/_downloads/8eebbcbbcb9c5ff2c78bb33510d1809c/usage.py b/_downloads/8eebbcbbcb9c5ff2c78bb33510d1809c/usage.py deleted file mode 120000 index d33fb751b26..00000000000 --- a/_downloads/8eebbcbbcb9c5ff2c78bb33510d1809c/usage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8eebbcbbcb9c5ff2c78bb33510d1809c/usage.py \ No newline at end of file diff --git a/_downloads/8f00b77a73a0de601c34f706c9800a53/artist_tests.ipynb b/_downloads/8f00b77a73a0de601c34f706c9800a53/artist_tests.ipynb deleted file mode 100644 index 7c3ffaa0e59..00000000000 --- a/_downloads/8f00b77a73a0de601c34f706c9800a53/artist_tests.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Artist tests\n\n\nTest unit support with each of the Matplotlib primitive artist types.\n\nThe axis handles unit conversions and the artists keep a pointer to their axis\nparent. You must initialize the artists with the axis instance if you want to\nuse them with unit data, or else they will not know how to convert the units\nto scalars.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import random\nimport matplotlib.lines as lines\nimport matplotlib.patches as patches\nimport matplotlib.text as text\nimport matplotlib.collections as collections\n\nfrom basic_units import cm, inch\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\nax.xaxis.set_units(cm)\nax.yaxis.set_units(cm)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nif 0:\n # test a line collection\n # Not supported at present.\n verts = []\n for i in range(10):\n # a random line segment in inches\n verts.append(zip(*inch*10*np.random.rand(2, random.randint(2, 15))))\n lc = collections.LineCollection(verts, axes=ax)\n ax.add_collection(lc)\n\n# test a plain-ol-line\nline = lines.Line2D([0*cm, 1.5*cm], [0*cm, 2.5*cm],\n lw=2, color='black', axes=ax)\nax.add_line(line)\n\nif 0:\n # test a patch\n # Not supported at present.\n rect = patches.Rectangle((1*cm, 1*cm), width=5*cm, height=2*cm,\n alpha=0.2, axes=ax)\n ax.add_patch(rect)\n\n\nt = text.Text(3*cm, 2.5*cm, 'text label', ha='left', va='bottom', axes=ax)\nax.add_artist(t)\n\nax.set_xlim(-1*cm, 10*cm)\nax.set_ylim(-1*cm, 10*cm)\n# ax.xaxis.set_units(inch)\nax.grid(True)\nax.set_title(\"Artists with units\")\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8f0209c86400ad70577572a0f7b68104/usage.ipynb b/_downloads/8f0209c86400ad70577572a0f7b68104/usage.ipynb deleted file mode 120000 index 6a2697fd0ca..00000000000 --- a/_downloads/8f0209c86400ad70577572a0f7b68104/usage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/8f0209c86400ad70577572a0f7b68104/usage.ipynb \ No newline at end of file diff --git a/_downloads/8f0f7efb74187c958ad8cb03f9b1ba84/fill_between_alpha.py b/_downloads/8f0f7efb74187c958ad8cb03f9b1ba84/fill_between_alpha.py deleted file mode 120000 index aad4300cc27..00000000000 --- a/_downloads/8f0f7efb74187c958ad8cb03f9b1ba84/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/8f0f7efb74187c958ad8cb03f9b1ba84/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/8f1133e243e42e8b51a02871af9dc81e/buttons.py b/_downloads/8f1133e243e42e8b51a02871af9dc81e/buttons.py deleted file mode 120000 index 3fb55d10698..00000000000 --- a/_downloads/8f1133e243e42e8b51a02871af9dc81e/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/8f1133e243e42e8b51a02871af9dc81e/buttons.py \ No newline at end of file diff --git a/_downloads/8f123c74b42557e48a042c1e5467bc10/demo_axes_grid2.py b/_downloads/8f123c74b42557e48a042c1e5467bc10/demo_axes_grid2.py deleted file mode 100644 index 320d19c9fe1..00000000000 --- a/_downloads/8f123c74b42557e48a042c1e5467bc10/demo_axes_grid2.py +++ /dev/null @@ -1,116 +0,0 @@ -""" -=============== -Demo Axes Grid2 -=============== - -Grid of images with shared xaxis and yaxis. -""" -import numpy as np - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid -import matplotlib.colors - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def add_inner_title(ax, title, loc, **kwargs): - from matplotlib.offsetbox import AnchoredText - from matplotlib.patheffects import withStroke - prop = dict(path_effects=[withStroke(foreground='w', linewidth=3)], - size=plt.rcParams['legend.fontsize']) - at = AnchoredText(title, loc=loc, prop=prop, - pad=0., borderpad=0.5, - frameon=False, **kwargs) - ax.add_artist(at) - return at - - -fig = plt.figure(figsize=(6, 6)) - -# Prepare images -Z, extent = get_demo_image() -ZS = [Z[i::3, :] for i in range(3)] -extent = extent[0], extent[1]/3., extent[2], extent[3] - -# *** Demo 1: colorbar at each axes *** -grid = ImageGrid(fig, 211, # similar to subplot(211) - nrows_ncols=(1, 3), - direction="row", - axes_pad=0.05, - add_all=True, - label_mode="1", - share_all=True, - cbar_location="top", - cbar_mode="each", - cbar_size="7%", - cbar_pad="1%", - ) - -for ax, z in zip(grid, ZS): - im = ax.imshow( - z, origin="lower", extent=extent, interpolation="nearest") - ax.cax.colorbar(im) - -for ax, im_title in zip(grid, ["Image 1", "Image 2", "Image 3"]): - t = add_inner_title(ax, im_title, loc='lower left') - t.patch.set_alpha(0.5) - -for ax, z in zip(grid, ZS): - ax.cax.toggle_label(True) - #axis = ax.cax.axis[ax.cax.orientation] - #axis.label.set_text("counts s$^{-1}$") - #axis.label.set_size(10) - #axis.major_ticklabels.set_size(6) - -# Changing the colorbar ticks -grid[1].cax.set_xticks([-1, 0, 1]) -grid[2].cax.set_xticks([-1, 0, 1]) - -grid[0].set_xticks([-2, 0]) -grid[0].set_yticks([-2, 0, 2]) - -# *** Demo 2: shared colorbar *** -grid2 = ImageGrid(fig, 212, - nrows_ncols=(1, 3), - direction="row", - axes_pad=0.05, - add_all=True, - label_mode="1", - share_all=True, - cbar_location="right", - cbar_mode="single", - cbar_size="10%", - cbar_pad=0.05, - ) - -grid2[0].set_xlabel("X") -grid2[0].set_ylabel("Y") - -vmax, vmin = np.max(ZS), np.min(ZS) -norm = matplotlib.colors.Normalize(vmax=vmax, vmin=vmin) - -for ax, z in zip(grid2, ZS): - im = ax.imshow(z, norm=norm, - origin="lower", extent=extent, - interpolation="nearest") - -# With cbar_mode="single", cax attribute of all axes are identical. -ax.cax.colorbar(im) -ax.cax.toggle_label(True) - -for ax, im_title in zip(grid2, ["(a)", "(b)", "(c)"]): - t = add_inner_title(ax, im_title, loc='upper left') - t.patch.set_ec("none") - t.patch.set_alpha(0.5) - -grid2[0].set_xticks([-2, 0]) -grid2[0].set_yticks([-2, 0, 2]) - -plt.show() diff --git a/_downloads/8f1400b09227a711b4a071b869b4c162/colorbar_only.py b/_downloads/8f1400b09227a711b4a071b869b4c162/colorbar_only.py deleted file mode 120000 index f438231b313..00000000000 --- a/_downloads/8f1400b09227a711b4a071b869b4c162/colorbar_only.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8f1400b09227a711b4a071b869b4c162/colorbar_only.py \ No newline at end of file diff --git a/_downloads/8f16e7209ae55ded9253ed7784156653/create_subplots.py b/_downloads/8f16e7209ae55ded9253ed7784156653/create_subplots.py deleted file mode 120000 index 3a4ad485289..00000000000 --- a/_downloads/8f16e7209ae55ded9253ed7784156653/create_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8f16e7209ae55ded9253ed7784156653/create_subplots.py \ No newline at end of file diff --git a/_downloads/8f17b17a7a9d68c1aba587e3d78250f1/hyperlinks_sgskip.ipynb b/_downloads/8f17b17a7a9d68c1aba587e3d78250f1/hyperlinks_sgskip.ipynb deleted file mode 100644 index fd0d1d8e26d..00000000000 --- a/_downloads/8f17b17a7a9d68c1aba587e3d78250f1/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hyperlinks\n\n\nThis example demonstrates how to set a hyperlinks on various kinds of elements.\n\nThis currently only works with the SVG backend.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "f = plt.figure()\ns = plt.scatter([1, 2, 3], [4, 5, 6])\ns.set_urls(['http://www.bbc.co.uk/news', 'http://www.google.com', None])\nf.savefig('scatter.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "f = plt.figure()\ndelta = 0.025\nx = y = np.arange(-3.0, 3.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nim = plt.imshow(Z, interpolation='bilinear', cmap=cm.gray,\n origin='lower', extent=[-3, 3, -3, 3])\n\nim.set_url('http://www.google.com')\nf.savefig('image.svg')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8f1c5cf43585a41ce079816abd97946d/plot_solarizedlight2.ipynb b/_downloads/8f1c5cf43585a41ce079816abd97946d/plot_solarizedlight2.ipynb deleted file mode 120000 index 7d9704fee03..00000000000 --- a/_downloads/8f1c5cf43585a41ce079816abd97946d/plot_solarizedlight2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8f1c5cf43585a41ce079816abd97946d/plot_solarizedlight2.ipynb \ No newline at end of file diff --git a/_downloads/8f21e53649952a78b4960ba4e48c3439/annotate_simple03.py b/_downloads/8f21e53649952a78b4960ba4e48c3439/annotate_simple03.py deleted file mode 120000 index e7eb09e8131..00000000000 --- a/_downloads/8f21e53649952a78b4960ba4e48c3439/annotate_simple03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8f21e53649952a78b4960ba4e48c3439/annotate_simple03.py \ No newline at end of file diff --git a/_downloads/8f24fe0f781655f8a68eb861f7cb3eac/sample_plots.ipynb b/_downloads/8f24fe0f781655f8a68eb861f7cb3eac/sample_plots.ipynb deleted file mode 120000 index 5d67992e038..00000000000 --- a/_downloads/8f24fe0f781655f8a68eb861f7cb3eac/sample_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8f24fe0f781655f8a68eb861f7cb3eac/sample_plots.ipynb \ No newline at end of file diff --git a/_downloads/8f2be0e4add3173050e6f7878083791c/nan_test.ipynb b/_downloads/8f2be0e4add3173050e6f7878083791c/nan_test.ipynb deleted file mode 120000 index 721303643c3..00000000000 --- a/_downloads/8f2be0e4add3173050e6f7878083791c/nan_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8f2be0e4add3173050e6f7878083791c/nan_test.ipynb \ No newline at end of file diff --git a/_downloads/8f377735e7030ccd0f0d6b5470271837/tight_layout_guide.py b/_downloads/8f377735e7030ccd0f0d6b5470271837/tight_layout_guide.py deleted file mode 120000 index 46f79af968b..00000000000 --- a/_downloads/8f377735e7030ccd0f0d6b5470271837/tight_layout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8f377735e7030ccd0f0d6b5470271837/tight_layout_guide.py \ No newline at end of file diff --git a/_downloads/8f46e9733d1ce7f9830abea476d2fecb/pyplot.ipynb b/_downloads/8f46e9733d1ce7f9830abea476d2fecb/pyplot.ipynb deleted file mode 120000 index 44e03dad24c..00000000000 --- a/_downloads/8f46e9733d1ce7f9830abea476d2fecb/pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8f46e9733d1ce7f9830abea476d2fecb/pyplot.ipynb \ No newline at end of file diff --git a/_downloads/8f4a4a6f4d88fbdffaf3a16c5dd8cda6/engineering_formatter.py b/_downloads/8f4a4a6f4d88fbdffaf3a16c5dd8cda6/engineering_formatter.py deleted file mode 100644 index 7be2d0fe59c..00000000000 --- a/_downloads/8f4a4a6f4d88fbdffaf3a16c5dd8cda6/engineering_formatter.py +++ /dev/null @@ -1,44 +0,0 @@ -''' -========================================= -Labeling ticks using engineering notation -========================================= - -Use of the engineering Formatter. -''' - -import matplotlib.pyplot as plt -import numpy as np - -from matplotlib.ticker import EngFormatter - -# Fixing random state for reproducibility -prng = np.random.RandomState(19680801) - -# Create artificial data to plot. -# The x data span over several decades to demonstrate several SI prefixes. -xs = np.logspace(1, 9, 100) -ys = (0.8 + 0.4 * prng.uniform(size=100)) * np.log10(xs)**2 - -# Figure width is doubled (2*6.4) to display nicely 2 subplots side by side. -fig, (ax0, ax1) = plt.subplots(nrows=2, figsize=(7, 9.6)) -for ax in (ax0, ax1): - ax.set_xscale('log') - -# Demo of the default settings, with a user-defined unit label. -ax0.set_title('Full unit ticklabels, w/ default precision & space separator') -formatter0 = EngFormatter(unit='Hz') -ax0.xaxis.set_major_formatter(formatter0) -ax0.plot(xs, ys) -ax0.set_xlabel('Frequency') - -# Demo of the options `places` (number of digit after decimal point) and -# `sep` (separator between the number and the prefix/unit). -ax1.set_title('SI-prefix only ticklabels, 1-digit precision & ' - 'thin space separator') -formatter1 = EngFormatter(places=1, sep="\N{THIN SPACE}") # U+2009 -ax1.xaxis.set_major_formatter(formatter1) -ax1.plot(xs, ys) -ax1.set_xlabel('Frequency [Hz]') - -plt.tight_layout() -plt.show() diff --git a/_downloads/8f61f3398919b39dc769c80eac842532/connectionstyle_demo.py b/_downloads/8f61f3398919b39dc769c80eac842532/connectionstyle_demo.py deleted file mode 120000 index d5090af015f..00000000000 --- a/_downloads/8f61f3398919b39dc769c80eac842532/connectionstyle_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8f61f3398919b39dc769c80eac842532/connectionstyle_demo.py \ No newline at end of file diff --git a/_downloads/8f62eff37ebfde7ce1fd13d7f4a50228/surface3d_radial.py b/_downloads/8f62eff37ebfde7ce1fd13d7f4a50228/surface3d_radial.py deleted file mode 120000 index 7d53982be31..00000000000 --- a/_downloads/8f62eff37ebfde7ce1fd13d7f4a50228/surface3d_radial.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8f62eff37ebfde7ce1fd13d7f4a50228/surface3d_radial.py \ No newline at end of file diff --git a/_downloads/8f6428f8042efc4cc5df06e624012c6f/gradient_bar.ipynb b/_downloads/8f6428f8042efc4cc5df06e624012c6f/gradient_bar.ipynb deleted file mode 100644 index 7931b22e3f9..00000000000 --- a/_downloads/8f6428f8042efc4cc5df06e624012c6f/gradient_bar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bar chart with gradients\n\n\nMatplotlib does not natively support gradients. However, we can emulate a\ngradient-filled rectangle by an `.AxesImage` of the right size and coloring.\n\nIn particular, we use a colormap to generate the actual colors. It is then\nsufficient to define the underlying values on the corners of the image and\nlet bicubic interpolation fill out the area. We define the gradient direction\nby a unit vector *v*. The values at the corners are then obtained by the\nlengths of the projections of the corner vectors on *v*.\n\nA similar approach can be used to create a gradient background for an axes.\nIn that case, it is helpful to uses Axes coordinates\n(`extent=(0, 1, 0, 1), transform=ax.transAxes`) to be independent of the data\ncoordinates.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nnp.random.seed(19680801)\n\n\ndef gradient_image(ax, extent, direction=0.3, cmap_range=(0, 1), **kwargs):\n \"\"\"\n Draw a gradient image based on a colormap.\n\n Parameters\n ----------\n ax : Axes\n The axes to draw on.\n extent\n The extent of the image as (xmin, xmax, ymin, ymax).\n By default, this is in Axes coordinates but may be\n changed using the *transform* kwarg.\n direction : float\n The direction of the gradient. This is a number in\n range 0 (=vertical) to 1 (=horizontal).\n cmap_range : float, float\n The fraction (cmin, cmax) of the colormap that should be\n used for the gradient, where the complete colormap is (0, 1).\n **kwargs\n Other parameters are passed on to `.Axes.imshow()`.\n In particular useful is *cmap*.\n \"\"\"\n phi = direction * np.pi / 2\n v = np.array([np.cos(phi), np.sin(phi)])\n X = np.array([[v @ [1, 0], v @ [1, 1]],\n [v @ [0, 0], v @ [0, 1]]])\n a, b = cmap_range\n X = a + (b - a) / X.max() * X\n im = ax.imshow(X, extent=extent, interpolation='bicubic',\n vmin=0, vmax=1, **kwargs)\n return im\n\n\ndef gradient_bar(ax, x, y, width=0.5, bottom=0):\n for left, top in zip(x, y):\n right = left + width\n gradient_image(ax, extent=(left, right, bottom, top),\n cmap=plt.cm.Blues_r, cmap_range=(0, 0.8))\n\n\nxmin, xmax = xlim = 0, 10\nymin, ymax = ylim = 0, 1\n\nfig, ax = plt.subplots()\nax.set(xlim=xlim, ylim=ylim, autoscale_on=False)\n\n# background image\ngradient_image(ax, direction=0, extent=(0, 1, 0, 1), transform=ax.transAxes,\n cmap=plt.cm.Oranges, cmap_range=(0.1, 0.6))\n\nN = 10\nx = np.arange(N) + 0.15\ny = np.random.rand(N)\ngradient_bar(ax, x, y, width=0.7)\nax.set_aspect('auto')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8f72383ba26aaafc43e68b69bdd4fffc/curve_error_band.py b/_downloads/8f72383ba26aaafc43e68b69bdd4fffc/curve_error_band.py deleted file mode 120000 index c77c0cad697..00000000000 --- a/_downloads/8f72383ba26aaafc43e68b69bdd4fffc/curve_error_band.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8f72383ba26aaafc43e68b69bdd4fffc/curve_error_band.py \ No newline at end of file diff --git a/_downloads/8f807fb84a072ec2862554ff24933aa5/collections.py b/_downloads/8f807fb84a072ec2862554ff24933aa5/collections.py deleted file mode 100644 index 853d95ff35f..00000000000 --- a/_downloads/8f807fb84a072ec2862554ff24933aa5/collections.py +++ /dev/null @@ -1,148 +0,0 @@ -''' -========================================================= -Line, Poly and RegularPoly Collection with autoscaling -========================================================= - -For the first two subplots, we will use spirals. Their -size will be set in plot units, not data units. Their positions -will be set in data units by using the "offsets" and "transOffset" -kwargs of the `~.collections.LineCollection` and -`~.collections.PolyCollection`. - -The third subplot will make regular polygons, with the same -type of scaling and positioning as in the first two. - -The last subplot illustrates the use of "offsets=(xo,yo)", -that is, a single tuple instead of a list of tuples, to generate -successively offset curves, with the offset given in data -units. This behavior is available only for the LineCollection. - -''' - -import matplotlib.pyplot as plt -from matplotlib import collections, colors, transforms -import numpy as np - -nverts = 50 -npts = 100 - -# Make some spirals -r = np.arange(nverts) -theta = np.linspace(0, 2*np.pi, nverts) -xx = r * np.sin(theta) -yy = r * np.cos(theta) -spiral = np.column_stack([xx, yy]) - -# Fixing random state for reproducibility -rs = np.random.RandomState(19680801) - -# Make some offsets -xyo = rs.randn(npts, 2) - -# Make a list of colors cycling through the default series. -colors = [colors.to_rgba(c) - for c in plt.rcParams['axes.prop_cycle'].by_key()['color']] - -fig, axes = plt.subplots(2, 2) -fig.subplots_adjust(top=0.92, left=0.07, right=0.97, - hspace=0.3, wspace=0.3) -((ax1, ax2), (ax3, ax4)) = axes # unpack the axes - - -col = collections.LineCollection([spiral], offsets=xyo, - transOffset=ax1.transData) -trans = fig.dpi_scale_trans + transforms.Affine2D().scale(1.0/72.0) -col.set_transform(trans) # the points to pixels transform -# Note: the first argument to the collection initializer -# must be a list of sequences of x,y tuples; we have only -# one sequence, but we still have to put it in a list. -ax1.add_collection(col, autolim=True) -# autolim=True enables autoscaling. For collections with -# offsets like this, it is neither efficient nor accurate, -# but it is good enough to generate a plot that you can use -# as a starting point. If you know beforehand the range of -# x and y that you want to show, it is better to set them -# explicitly, leave out the autolim kwarg (or set it to False), -# and omit the 'ax1.autoscale_view()' call below. - -# Make a transform for the line segments such that their size is -# given in points: -col.set_color(colors) - -ax1.autoscale_view() # See comment above, after ax1.add_collection. -ax1.set_title('LineCollection using offsets') - - -# The same data as above, but fill the curves. -col = collections.PolyCollection([spiral], offsets=xyo, - transOffset=ax2.transData) -trans = transforms.Affine2D().scale(fig.dpi/72.0) -col.set_transform(trans) # the points to pixels transform -ax2.add_collection(col, autolim=True) -col.set_color(colors) - - -ax2.autoscale_view() -ax2.set_title('PolyCollection using offsets') - -# 7-sided regular polygons - -col = collections.RegularPolyCollection( - 7, sizes=np.abs(xx) * 10.0, offsets=xyo, transOffset=ax3.transData) -trans = transforms.Affine2D().scale(fig.dpi / 72.0) -col.set_transform(trans) # the points to pixels transform -ax3.add_collection(col, autolim=True) -col.set_color(colors) -ax3.autoscale_view() -ax3.set_title('RegularPolyCollection using offsets') - - -# Simulate a series of ocean current profiles, successively -# offset by 0.1 m/s so that they form what is sometimes called -# a "waterfall" plot or a "stagger" plot. - -nverts = 60 -ncurves = 20 -offs = (0.1, 0.0) - -yy = np.linspace(0, 2*np.pi, nverts) -ym = np.max(yy) -xx = (0.2 + (ym - yy) / ym) ** 2 * np.cos(yy - 0.4) * 0.5 -segs = [] -for i in range(ncurves): - xxx = xx + 0.02*rs.randn(nverts) - curve = np.column_stack([xxx, yy * 100]) - segs.append(curve) - -col = collections.LineCollection(segs, offsets=offs) -ax4.add_collection(col, autolim=True) -col.set_color(colors) -ax4.autoscale_view() -ax4.set_title('Successive data offsets') -ax4.set_xlabel('Zonal velocity component (m/s)') -ax4.set_ylabel('Depth (m)') -# Reverse the y-axis so depth increases downward -ax4.set_ylim(ax4.get_ylim()[::-1]) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure -matplotlib.collections -matplotlib.collections.LineCollection -matplotlib.collections.RegularPolyCollection -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.autoscale_view -matplotlib.transforms.Affine2D -matplotlib.transforms.Affine2D.scale diff --git a/_downloads/8f89023cf81471d09260d7fcc2bc8008/dollar_ticks.ipynb b/_downloads/8f89023cf81471d09260d7fcc2bc8008/dollar_ticks.ipynb deleted file mode 120000 index fac250983ef..00000000000 --- a/_downloads/8f89023cf81471d09260d7fcc2bc8008/dollar_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8f89023cf81471d09260d7fcc2bc8008/dollar_ticks.ipynb \ No newline at end of file diff --git a/_downloads/8f8964e173a4b95160a8595de75794d4/demo_annotation_box.py b/_downloads/8f8964e173a4b95160a8595de75794d4/demo_annotation_box.py deleted file mode 120000 index 75308f24f72..00000000000 --- a/_downloads/8f8964e173a4b95160a8595de75794d4/demo_annotation_box.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/8f8964e173a4b95160a8595de75794d4/demo_annotation_box.py \ No newline at end of file diff --git a/_downloads/8f89ab79f9bc93e1fbaa719d0d2b451c/fill_between_demo.py b/_downloads/8f89ab79f9bc93e1fbaa719d0d2b451c/fill_between_demo.py deleted file mode 100644 index ada25f0de55..00000000000 --- a/_downloads/8f89ab79f9bc93e1fbaa719d0d2b451c/fill_between_demo.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============================== -Filling the area between lines -============================== - -This example shows how to use ``fill_between`` to color between lines based on -user-defined logic. -""" - -import matplotlib.pyplot as plt -import numpy as np - -x = np.arange(0.0, 2, 0.01) -y1 = np.sin(2 * np.pi * x) -y2 = 1.2 * np.sin(4 * np.pi * x) - -############################################################################### - -fig, (ax1, ax2, ax3) = plt.subplots(3, 1, sharex=True) - -ax1.fill_between(x, 0, y1) -ax1.set_ylabel('between y1 and 0') - -ax2.fill_between(x, y1, 1) -ax2.set_ylabel('between y1 and 1') - -ax3.fill_between(x, y1, y2) -ax3.set_ylabel('between y1 and y2') -ax3.set_xlabel('x') - -############################################################################### -# Now fill between y1 and y2 where a logical condition is met. Note -# this is different than calling -# ``fill_between(x[where], y1[where], y2[where] ...)`` -# because of edge effects over multiple contiguous regions. - -fig, (ax, ax1) = plt.subplots(2, 1, sharex=True) -ax.plot(x, y1, x, y2, color='black') -ax.fill_between(x, y1, y2, where=y2 >= y1, facecolor='green', interpolate=True) -ax.fill_between(x, y1, y2, where=y2 <= y1, facecolor='red', interpolate=True) -ax.set_title('fill between where') - -# Test support for masked arrays. -y2 = np.ma.masked_greater(y2, 1.0) -ax1.plot(x, y1, x, y2, color='black') -ax1.fill_between(x, y1, y2, where=y2 >= y1, - facecolor='green', interpolate=True) -ax1.fill_between(x, y1, y2, where=y2 <= y1, - facecolor='red', interpolate=True) -ax1.set_title('Now regions with y2>1 are masked') - -############################################################################### -# This example illustrates a problem; because of the data -# gridding, there are undesired unfilled triangles at the crossover -# points. A brute-force solution would be to interpolate all -# arrays to a very fine grid before plotting. - - -############################################################################### -# Use transforms to create axes spans where a certain condition is satisfied: - -fig, ax = plt.subplots() -y = np.sin(4 * np.pi * x) -ax.plot(x, y, color='black') - -# use data coordinates for the x-axis and the axes coordinates for the y-axis -import matplotlib.transforms as mtransforms -trans = mtransforms.blended_transform_factory(ax.transData, ax.transAxes) -theta = 0.9 -ax.axhline(theta, color='green', lw=2, alpha=0.5) -ax.axhline(-theta, color='red', lw=2, alpha=0.5) -ax.fill_between(x, 0, 1, where=y > theta, - facecolor='green', alpha=0.5, transform=trans) -ax.fill_between(x, 0, 1, where=y < -theta, - facecolor='red', alpha=0.5, transform=trans) - - -plt.show() diff --git a/_downloads/8f926f8a63b3e9ad617770320255706b/simple_axisline3.ipynb b/_downloads/8f926f8a63b3e9ad617770320255706b/simple_axisline3.ipynb deleted file mode 100644 index 7a0894913e4..00000000000 --- a/_downloads/8f926f8a63b3e9ad617770320255706b/simple_axisline3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axisartist.axislines import Subplot\n\nfig = plt.figure(figsize=(3, 3))\n\nax = Subplot(fig, 111)\nfig.add_subplot(ax)\n\nax.axis[\"right\"].set_visible(False)\nax.axis[\"top\"].set_visible(False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8f937c3de12bcbb1555e6eb80a9d6f31/contourf3d_2.py b/_downloads/8f937c3de12bcbb1555e6eb80a9d6f31/contourf3d_2.py deleted file mode 120000 index 57b9bae8a24..00000000000 --- a/_downloads/8f937c3de12bcbb1555e6eb80a9d6f31/contourf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8f937c3de12bcbb1555e6eb80a9d6f31/contourf3d_2.py \ No newline at end of file diff --git a/_downloads/8fa07bde17411cffcd1b959bd78bce0f/whats_new_98_4_fancy.ipynb b/_downloads/8fa07bde17411cffcd1b959bd78bce0f/whats_new_98_4_fancy.ipynb deleted file mode 100644 index 351b4c7673e..00000000000 --- a/_downloads/8fa07bde17411cffcd1b959bd78bce0f/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================\nWhats New 0.98.4 Fancy\n======================\n\nCreate fancy box and arrow styles.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatch\nimport matplotlib.pyplot as plt\n\nfigheight = 8\nfig = plt.figure(figsize=(9, figheight), dpi=80)\nfontsize = 0.4 * fig.dpi\n\ndef make_boxstyles(ax):\n styles = mpatch.BoxStyle.get_styles()\n\n for i, (stylename, styleclass) in enumerate(sorted(styles.items())):\n ax.text(0.5, (float(len(styles)) - 0.5 - i)/len(styles), stylename,\n ha=\"center\",\n size=fontsize,\n transform=ax.transAxes,\n bbox=dict(boxstyle=stylename, fc=\"w\", ec=\"k\"))\n\ndef make_arrowstyles(ax):\n styles = mpatch.ArrowStyle.get_styles()\n\n ax.set_xlim(0, 4)\n ax.set_ylim(0, figheight)\n\n for i, (stylename, styleclass) in enumerate(sorted(styles.items())):\n y = (float(len(styles)) - 0.25 - i) # /figheight\n p = mpatch.Circle((3.2, y), 0.2, fc=\"w\")\n ax.add_patch(p)\n\n ax.annotate(stylename, (3.2, y),\n (2., y),\n # xycoords=\"figure fraction\", textcoords=\"figure fraction\",\n ha=\"right\", va=\"center\",\n size=fontsize,\n arrowprops=dict(arrowstyle=stylename,\n patchB=p,\n shrinkA=5,\n shrinkB=5,\n fc=\"w\", ec=\"k\",\n connectionstyle=\"arc3,rad=-0.05\",\n ),\n bbox=dict(boxstyle=\"square\", fc=\"w\"))\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\nax1 = fig.add_subplot(121, frameon=False, xticks=[], yticks=[])\nmake_boxstyles(ax1)\n\nax2 = fig.add_subplot(122, frameon=False, xticks=[], yticks=[])\nmake_arrowstyles(ax2)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.BoxStyle\nmatplotlib.patches.BoxStyle.get_styles\nmatplotlib.patches.ArrowStyle\nmatplotlib.patches.ArrowStyle.get_styles\nmatplotlib.axes.Axes.text\nmatplotlib.axes.Axes.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8fa177bf8967685ca8b901620477ab71/table_demo.py b/_downloads/8fa177bf8967685ca8b901620477ab71/table_demo.py deleted file mode 100644 index cc23492d553..00000000000 --- a/_downloads/8fa177bf8967685ca8b901620477ab71/table_demo.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -========== -Table Demo -========== - -Demo of table function to display a table within a plot. -""" -import numpy as np -import matplotlib.pyplot as plt - - -data = [[ 66386, 174296, 75131, 577908, 32015], - [ 58230, 381139, 78045, 99308, 160454], - [ 89135, 80552, 152558, 497981, 603535], - [ 78415, 81858, 150656, 193263, 69638], - [139361, 331509, 343164, 781380, 52269]] - -columns = ('Freeze', 'Wind', 'Flood', 'Quake', 'Hail') -rows = ['%d year' % x for x in (100, 50, 20, 10, 5)] - -values = np.arange(0, 2500, 500) -value_increment = 1000 - -# Get some pastel shades for the colors -colors = plt.cm.BuPu(np.linspace(0, 0.5, len(rows))) -n_rows = len(data) - -index = np.arange(len(columns)) + 0.3 -bar_width = 0.4 - -# Initialize the vertical-offset for the stacked bar chart. -y_offset = np.zeros(len(columns)) - -# Plot bars and create text labels for the table -cell_text = [] -for row in range(n_rows): - plt.bar(index, data[row], bar_width, bottom=y_offset, color=colors[row]) - y_offset = y_offset + data[row] - cell_text.append(['%1.1f' % (x / 1000.0) for x in y_offset]) -# Reverse colors and text labels to display the last value at the top. -colors = colors[::-1] -cell_text.reverse() - -# Add a table at the bottom of the axes -the_table = plt.table(cellText=cell_text, - rowLabels=rows, - rowColours=colors, - colLabels=columns, - loc='bottom') - -# Adjust layout to make room for the table: -plt.subplots_adjust(left=0.2, bottom=0.2) - -plt.ylabel("Loss in ${0}'s".format(value_increment)) -plt.yticks(values * value_increment, ['%d' % val for val in values]) -plt.xticks([]) -plt.title('Loss by Disaster') - -plt.show() diff --git a/_downloads/8fa70b83b572b5c7b16f54815557f657/common_date_problems.py b/_downloads/8fa70b83b572b5c7b16f54815557f657/common_date_problems.py deleted file mode 100644 index 5ef4fb64fc8..00000000000 --- a/_downloads/8fa70b83b572b5c7b16f54815557f657/common_date_problems.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -Fixing common date annoyances -============================= - -Matplotlib allows you to natively plots python datetime instances, and -for the most part does a good job picking tick locations and string -formats. There are a couple of things it does not handle so -gracefully, and here are some tricks to help you work around them. -We'll load up some sample date data which contains datetime.date -objects in a numpy record array:: - - In [63]: datafile = cbook.get_sample_data('goog.npz') - - In [64]: r = np.load(datafile)['price_data'].view(np.recarray) - - In [65]: r.dtype - Out[65]: dtype([('date', '] - -you will see that the x tick labels are all squashed together. -""" -import matplotlib.cbook as cbook -import matplotlib.dates as mdates -import numpy as np -import matplotlib.pyplot as plt - -with cbook.get_sample_data('goog.npz') as datafile: - r = np.load(datafile)['price_data'].view(np.recarray) - -# Matplotlib prefers datetime instead of np.datetime64. -date = r.date.astype('O') -fig, ax = plt.subplots() -ax.plot(date, r.close) -ax.set_title('Default date handling can cause overlapping labels') - -############################################################################### -# Another annoyance is that if you hover the mouse over the window and -# look in the lower right corner of the matplotlib toolbar -# (:ref:`navigation-toolbar`) at the x and y coordinates, you see that -# the x locations are formatted the same way the tick labels are, e.g., -# "Dec 2004". -# -# What we'd like is for the location in the toolbar to have -# a higher degree of precision, e.g., giving us the exact date out mouse is -# hovering over. To fix the first problem, we can use -# :func:`matplotlib.figure.Figure.autofmt_xdate` and to fix the second -# problem we can use the ``ax.fmt_xdata`` attribute which can be set to -# any function that takes a scalar and returns a string. matplotlib has -# a number of date formatters built in, so we'll use one of those. - -fig, ax = plt.subplots() -ax.plot(date, r.close) - -# rotate and align the tick labels so they look better -fig.autofmt_xdate() - -# use a more precise date string for the x axis locations in the -# toolbar -ax.fmt_xdata = mdates.DateFormatter('%Y-%m-%d') -ax.set_title('fig.autofmt_xdate fixes the labels') - -############################################################################### -# Now when you hover your mouse over the plotted data, you'll see date -# format strings like 2004-12-01 in the toolbar. - -plt.show() diff --git a/_downloads/8faa5d02da18cf7af517d1d48b585390/pick_event_demo.py b/_downloads/8faa5d02da18cf7af517d1d48b585390/pick_event_demo.py deleted file mode 120000 index ef00e9bfaf4..00000000000 --- a/_downloads/8faa5d02da18cf7af517d1d48b585390/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8faa5d02da18cf7af517d1d48b585390/pick_event_demo.py \ No newline at end of file diff --git a/_downloads/8faac7c3c8892ebff29bd5653d34baa4/font_table.ipynb b/_downloads/8faac7c3c8892ebff29bd5653d34baa4/font_table.ipynb deleted file mode 100644 index e73f670cfb7..00000000000 --- a/_downloads/8faac7c3c8892ebff29bd5653d34baa4/font_table.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Font table\n\n\nMatplotlib's font support is provided by the FreeType library.\n\nHere, we use `~.Axes.table` to draw a table that shows the glyphs by Unicode\ncodepoint. For brevity, the table only contains the first 256 glyphs.\n\nThe example is a full working script. You can download it and use it to\ninvestigate a font by running ::\n\n python font_table.py /path/to/font/file\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import unicodedata\n\nimport matplotlib.font_manager as fm\nfrom matplotlib.ft2font import FT2Font\nimport matplotlib.pyplot as plt\n\n\ndef print_glyphs(path):\n \"\"\"\n Print the all glyphs in the given font file to stdout.\n\n Parameters\n ----------\n path : str or None\n The path to the font file. If None, use Matplotlib's default font.\n \"\"\"\n if path is None:\n path = fm.findfont(fm.FontProperties()) # The default font.\n\n font = FT2Font(path)\n\n charmap = font.get_charmap()\n max_indices_len = len(str(max(charmap.values())))\n\n print(\"The font face contains the following glyphs:\")\n for char_code, glyph_index in charmap.items():\n char = chr(char_code)\n name = unicodedata.name(\n char,\n f\"{char_code:#x} ({font.get_glyph_name(glyph_index)})\")\n print(f\"{glyph_index:>{max_indices_len}} {char} {name}\")\n\n\ndef draw_font_table(path):\n \"\"\"\n Draw a font table of the first 255 chars of the given font.\n\n Parameters\n ----------\n path : str or None\n The path to the font file. If None, use Matplotlib's default font.\n \"\"\"\n if path is None:\n path = fm.findfont(fm.FontProperties()) # The default font.\n\n font = FT2Font(path)\n # A charmap is a mapping of \"character codes\" (in the sense of a character\n # encoding, e.g. latin-1) to glyph indices (i.e. the internal storage table\n # of the font face).\n # In FreeType>=2.1, a Unicode charmap (i.e. mapping Unicode codepoints)\n # is selected by default. Moreover, recent versions of FreeType will\n # automatically synthesize such a charmap if the font does not include one\n # (this behavior depends on the font format; for example it is present\n # since FreeType 2.0 for Type 1 fonts but only since FreeType 2.8 for\n # TrueType (actually, SFNT) fonts).\n # The code below (specifically, the ``chr(char_code)`` call) assumes that\n # we have indeed selected a Unicode charmap.\n codes = font.get_charmap().items()\n\n labelc = [\"{:X}\".format(i) for i in range(16)]\n labelr = [\"{:02X}\".format(16 * i) for i in range(16)]\n chars = [[\"\" for c in range(16)] for r in range(16)]\n\n for char_code, glyph_index in codes:\n if char_code >= 256:\n continue\n row, col = divmod(char_code, 16)\n chars[row][col] = chr(char_code)\n\n fig, ax = plt.subplots(figsize=(8, 4))\n ax.set_title(path)\n ax.set_axis_off()\n\n table = ax.table(\n cellText=chars,\n rowLabels=labelr,\n colLabels=labelc,\n rowColours=[\"palegreen\"] * 16,\n colColours=[\"palegreen\"] * 16,\n cellColours=[[\".95\" for c in range(16)] for r in range(16)],\n cellLoc='center',\n loc='upper left',\n )\n for key, cell in table.get_celld().items():\n row, col = key\n if row > 0 and col > -1: # Beware of table's idiosyncratic indexing...\n cell.set_text_props(fontproperties=fm.FontProperties(fname=path))\n\n fig.tight_layout()\n plt.show()\n\n\nif __name__ == \"__main__\":\n from argparse import ArgumentParser\n\n parser = ArgumentParser(description=\"Display a font table.\")\n parser.add_argument(\"path\", nargs=\"?\", help=\"Path to the font file.\")\n parser.add_argument(\"--print-all\", action=\"store_true\",\n help=\"Additionally, print all chars to stdout.\")\n args = parser.parse_args()\n\n if args.print_all:\n print_glyphs(args.path)\n draw_font_table(args.path)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/8faced3ee40c04cf88de316947d00b87/scales.py b/_downloads/8faced3ee40c04cf88de316947d00b87/scales.py deleted file mode 120000 index 8d5e095c7e3..00000000000 --- a/_downloads/8faced3ee40c04cf88de316947d00b87/scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8faced3ee40c04cf88de316947d00b87/scales.py \ No newline at end of file diff --git a/_downloads/8fb6dfde0db5f6422a7627d0d4e328b2/colors.py b/_downloads/8fb6dfde0db5f6422a7627d0d4e328b2/colors.py deleted file mode 100644 index 92ca563b3ad..00000000000 --- a/_downloads/8fb6dfde0db5f6422a7627d0d4e328b2/colors.py +++ /dev/null @@ -1,129 +0,0 @@ -""" -***************** -Specifying Colors -***************** - -Matplotlib recognizes the following formats to specify a color: - -* an RGB or RGBA (red, green, blue, alpha) tuple of float values in ``[0, 1]`` - (e.g., ``(0.1, 0.2, 0.5)`` or ``(0.1, 0.2, 0.5, 0.3)``); -* a hex RGB or RGBA string (e.g., ``'#0f0f0f'`` or ``'#0f0f0f80'``; - case-insensitive); -* a string representation of a float value in ``[0, 1]`` inclusive for gray - level (e.g., ``'0.5'``); -* one of ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``; -* a X11/CSS4 color name (case-insensitive); -* a name from the `xkcd color survey`_, prefixed with ``'xkcd:'`` (e.g., - ``'xkcd:sky blue'``; case insensitive); -* one of the Tableau Colors from the 'T10' categorical palette (the default - color cycle): ``{'tab:blue', 'tab:orange', 'tab:green', 'tab:red', - 'tab:purple', 'tab:brown', 'tab:pink', 'tab:gray', 'tab:olive', 'tab:cyan'}`` - (case-insensitive); -* a "CN" color spec, i.e. `'C'` followed by a number, which is an index into - the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the - indexing is intended to occur at rendering time, and defaults to black if the - cycle does not include color. - -.. _xkcd color survey: https://xkcd.com/color/rgb/ - -"Red", "Green", and "Blue" are the intensities of those colors, the combination -of which span the colorspace. - -How "Alpha" behaves depends on the ``zorder`` of the Artist. Higher -``zorder`` Artists are drawn on top of lower Artists, and "Alpha" determines -whether the lower artist is covered by the higher. -If the old RGB of a pixel is ``RGBold`` and the RGB of the -pixel of the Artist being added is ``RGBnew`` with Alpha ``alpha``, -then the RGB of the pixel is updated to: -``RGB = RGBOld * (1 - Alpha) + RGBnew * Alpha``. Alpha -of 1 means the old color is completely covered by the new Artist, Alpha of 0 -means that pixel of the Artist is transparent. - -For more information on colors in matplotlib see - -* the :doc:`/gallery/color/color_demo` example; -* the `matplotlib.colors` API; -* the :doc:`/gallery/color/named_colors` example. - -"CN" color selection --------------------- - -"CN" colors are converted to RGBA as soon as the artist is created. For -example, -""" - - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl - -th = np.linspace(0, 2*np.pi, 128) - - -def demo(sty): - mpl.style.use(sty) - fig, ax = plt.subplots(figsize=(3, 3)) - - ax.set_title('style: {!r}'.format(sty), color='C0') - - ax.plot(th, np.cos(th), 'C1', label='C1') - ax.plot(th, np.sin(th), 'C2', label='C2') - ax.legend() - -demo('default') -demo('seaborn') - -############################################################################### -# will use the first color for the title and then plot using the second -# and third colors of each style's ``mpl.rcParams['axes.prop_cycle']``. -# -# -# .. _xkcd-colors: -# -# xkcd v X11/CSS4 -# --------------- -# -# The xkcd colors are derived from a user survey conducted by the -# webcomic xkcd. `Details of the survey are available on the xkcd blog -# `__. -# -# Out of 148 colors in the CSS color list, there are 95 name collisions -# between the X11/CSS4 names and the xkcd names, all but 3 of which have -# different hex values. For example ``'blue'`` maps to ``'#0000FF'`` -# where as ``'xkcd:blue'`` maps to ``'#0343DF'``. Due to these name -# collisions all of the xkcd colors have ``'xkcd:'`` prefixed. As noted in -# the blog post, while it might be interesting to re-define the X11/CSS4 names -# based on such a survey, we do not do so unilaterally. -# -# The name collisions are shown in the table below; the color names -# where the hex values agree are shown in bold. - -import matplotlib._color_data as mcd -import matplotlib.patches as mpatch - -overlap = {name for name in mcd.CSS4_COLORS - if "xkcd:" + name in mcd.XKCD_COLORS} - -fig = plt.figure(figsize=[4.8, 16]) -ax = fig.add_axes([0, 0, 1, 1]) - -for j, n in enumerate(sorted(overlap, reverse=True)): - weight = None - cn = mcd.CSS4_COLORS[n] - xkcd = mcd.XKCD_COLORS["xkcd:" + n].upper() - if cn == xkcd: - weight = 'bold' - - r1 = mpatch.Rectangle((0, j), 1, 1, color=cn) - r2 = mpatch.Rectangle((1, j), 1, 1, color=xkcd) - txt = ax.text(2, j+.5, ' ' + n, va='center', fontsize=10, - weight=weight) - ax.add_patch(r1) - ax.add_patch(r2) - ax.axhline(j, color='k') - -ax.text(.5, j + 1.5, 'X11', ha='center', va='center') -ax.text(1.5, j + 1.5, 'xkcd', ha='center', va='center') -ax.set_xlim(0, 3) -ax.set_ylim(0, j + 2) -ax.axis('off') diff --git a/_downloads/8fbd33641a520a14ea6549fddc9047cd/usetex_baseline_test.py b/_downloads/8fbd33641a520a14ea6549fddc9047cd/usetex_baseline_test.py deleted file mode 100644 index 349fa5915b0..00000000000 --- a/_downloads/8fbd33641a520a14ea6549fddc9047cd/usetex_baseline_test.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -==================== -Usetex Baseline Test -==================== - -""" - -import matplotlib.pyplot as plt -import matplotlib.axes as maxes - -from matplotlib import rcParams -rcParams['text.usetex'] = True - - -class Axes(maxes.Axes): - """ - A hackish way to simultaneously draw texts w/ usetex=True and - usetex=False in the same figure. It does not work in the ps backend. - """ - - def __init__(self, *args, usetex=False, preview=False, **kwargs): - self.usetex = usetex - self.preview = preview - super().__init__(*args, **kwargs) - - def draw(self, renderer): - with plt.rc_context({"text.usetex": self.usetex, - "text.latex.preview": self.preview}): - super().draw(renderer) - - -subplot = maxes.subplot_class_factory(Axes) - - -def test_window_extent(ax, usetex, preview): - - va = "baseline" - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - text_kw = dict(va=va, - size=50, - bbox=dict(pad=0., ec="k", fc="none")) - - test_strings = ["lg", r"$\frac{1}{2}\pi$", - r"$p^{3^A}$", r"$p_{3_2}$"] - - ax.axvline(0, color="r") - - for i, s in enumerate(test_strings): - - ax.axhline(i, color="r") - ax.text(0., 3 - i, s, **text_kw) - - ax.set_xlim(-0.1, 1.1) - ax.set_ylim(-.8, 3.9) - - ax.set_title("usetex=%s\npreview=%s" % (str(usetex), str(preview))) - - -fig = plt.figure(figsize=(2 * 3, 6.5)) - -for i, usetex, preview in [[0, False, False], - [1, True, False], - [2, True, True]]: - ax = subplot(fig, 1, 3, i + 1, usetex=usetex, preview=preview) - fig.add_subplot(ax) - fig.subplots_adjust(top=0.85) - - test_window_extent(ax, usetex=usetex, preview=preview) - - -plt.show() diff --git a/_downloads/8fc7adde36f0b705a49baa2fa4718a6d/demo_colorbar_with_inset_locator.py b/_downloads/8fc7adde36f0b705a49baa2fa4718a6d/demo_colorbar_with_inset_locator.py deleted file mode 120000 index d6f22e66473..00000000000 --- a/_downloads/8fc7adde36f0b705a49baa2fa4718a6d/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8fc7adde36f0b705a49baa2fa4718a6d/demo_colorbar_with_inset_locator.py \ No newline at end of file diff --git a/_downloads/8fca23d333b18e8cc6cff6df214b70cf/annotate_text_arrow.py b/_downloads/8fca23d333b18e8cc6cff6df214b70cf/annotate_text_arrow.py deleted file mode 120000 index c63164b2999..00000000000 --- a/_downloads/8fca23d333b18e8cc6cff6df214b70cf/annotate_text_arrow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/8fca23d333b18e8cc6cff6df214b70cf/annotate_text_arrow.py \ No newline at end of file diff --git a/_downloads/8fd3dd609502d8adeb07d360720d784f/pipong.py b/_downloads/8fd3dd609502d8adeb07d360720d784f/pipong.py deleted file mode 120000 index 83c6fb0e3b0..00000000000 --- a/_downloads/8fd3dd609502d8adeb07d360720d784f/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8fd3dd609502d8adeb07d360720d784f/pipong.py \ No newline at end of file diff --git a/_downloads/8ff0e37887a983aec484f0d44b8fdff1/anscombe.py b/_downloads/8ff0e37887a983aec484f0d44b8fdff1/anscombe.py deleted file mode 120000 index 4a140d77b45..00000000000 --- a/_downloads/8ff0e37887a983aec484f0d44b8fdff1/anscombe.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8ff0e37887a983aec484f0d44b8fdff1/anscombe.py \ No newline at end of file diff --git a/_downloads/8ff83bd99061fcf8eaf95fe1ece83a71/strip_chart.py b/_downloads/8ff83bd99061fcf8eaf95fe1ece83a71/strip_chart.py deleted file mode 120000 index 86ca8552f5a..00000000000 --- a/_downloads/8ff83bd99061fcf8eaf95fe1ece83a71/strip_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/8ff83bd99061fcf8eaf95fe1ece83a71/strip_chart.py \ No newline at end of file diff --git a/_downloads/8ff9e495d829dea9b10ccb480bcaa323/check_buttons.ipynb b/_downloads/8ff9e495d829dea9b10ccb480bcaa323/check_buttons.ipynb deleted file mode 120000 index d395979f1bb..00000000000 --- a/_downloads/8ff9e495d829dea9b10ccb480bcaa323/check_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/8ff9e495d829dea9b10ccb480bcaa323/check_buttons.ipynb \ No newline at end of file diff --git a/_downloads/9005f9f11a1f971391693a85b8a78144/strip_chart.ipynb b/_downloads/9005f9f11a1f971391693a85b8a78144/strip_chart.ipynb deleted file mode 120000 index e78118bb167..00000000000 --- a/_downloads/9005f9f11a1f971391693a85b8a78144/strip_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9005f9f11a1f971391693a85b8a78144/strip_chart.ipynb \ No newline at end of file diff --git a/_downloads/900a54e9f58bec3c62ab0e67045911c6/data_browser.py b/_downloads/900a54e9f58bec3c62ab0e67045911c6/data_browser.py deleted file mode 100644 index 461bf0afb60..00000000000 --- a/_downloads/900a54e9f58bec3c62ab0e67045911c6/data_browser.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -============ -Data Browser -============ - -Connecting data between multiple canvases. - -This example covers how to interact data with multiple canvases. This -let's you select and highlight a point on one axis, and generating the -data of that point on the other axis. -""" -import numpy as np - - -class PointBrowser(object): - """ - Click on a point to select and highlight it -- the data that - generated the point will be shown in the lower axes. Use the 'n' - and 'p' keys to browse through the next and previous points - """ - - def __init__(self): - self.lastind = 0 - - self.text = ax.text(0.05, 0.95, 'selected: none', - transform=ax.transAxes, va='top') - self.selected, = ax.plot([xs[0]], [ys[0]], 'o', ms=12, alpha=0.4, - color='yellow', visible=False) - - def onpress(self, event): - if self.lastind is None: - return - if event.key not in ('n', 'p'): - return - if event.key == 'n': - inc = 1 - else: - inc = -1 - - self.lastind += inc - self.lastind = np.clip(self.lastind, 0, len(xs) - 1) - self.update() - - def onpick(self, event): - - if event.artist != line: - return True - - N = len(event.ind) - if not N: - return True - - # the click locations - x = event.mouseevent.xdata - y = event.mouseevent.ydata - - distances = np.hypot(x - xs[event.ind], y - ys[event.ind]) - indmin = distances.argmin() - dataind = event.ind[indmin] - - self.lastind = dataind - self.update() - - def update(self): - if self.lastind is None: - return - - dataind = self.lastind - - ax2.cla() - ax2.plot(X[dataind]) - - ax2.text(0.05, 0.9, 'mu=%1.3f\nsigma=%1.3f' % (xs[dataind], ys[dataind]), - transform=ax2.transAxes, va='top') - ax2.set_ylim(-0.5, 1.5) - self.selected.set_visible(True) - self.selected.set_data(xs[dataind], ys[dataind]) - - self.text.set_text('selected: %d' % dataind) - fig.canvas.draw() - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - # Fixing random state for reproducibility - np.random.seed(19680801) - - X = np.random.rand(100, 200) - xs = np.mean(X, axis=1) - ys = np.std(X, axis=1) - - fig, (ax, ax2) = plt.subplots(2, 1) - ax.set_title('click on point to plot time series') - line, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance - - browser = PointBrowser() - - fig.canvas.mpl_connect('pick_event', browser.onpick) - fig.canvas.mpl_connect('key_press_event', browser.onpress) - - plt.show() diff --git a/_downloads/9011b00c98a45cafe64d3341bf134398/custom_boxstyle01.ipynb b/_downloads/9011b00c98a45cafe64d3341bf134398/custom_boxstyle01.ipynb deleted file mode 120000 index 9b7d6004fe9..00000000000 --- a/_downloads/9011b00c98a45cafe64d3341bf134398/custom_boxstyle01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9011b00c98a45cafe64d3341bf134398/custom_boxstyle01.ipynb \ No newline at end of file diff --git a/_downloads/901574d7628e2f058f5e8be8998bf88f/bar_demo2.py b/_downloads/901574d7628e2f058f5e8be8998bf88f/bar_demo2.py deleted file mode 120000 index 926302f60d1..00000000000 --- a/_downloads/901574d7628e2f058f5e8be8998bf88f/bar_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/901574d7628e2f058f5e8be8998bf88f/bar_demo2.py \ No newline at end of file diff --git a/_downloads/902360d5b515dbcbef3e63a4ed00c0cc/two_scales.ipynb b/_downloads/902360d5b515dbcbef3e63a4ed00c0cc/two_scales.ipynb deleted file mode 120000 index b49b94e3229..00000000000 --- a/_downloads/902360d5b515dbcbef3e63a4ed00c0cc/two_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/902360d5b515dbcbef3e63a4ed00c0cc/two_scales.ipynb \ No newline at end of file diff --git a/_downloads/902a9ed2cb626415ad1932524d97f805/bar_unit_demo.py b/_downloads/902a9ed2cb626415ad1932524d97f805/bar_unit_demo.py deleted file mode 120000 index 1d82f9fe75d..00000000000 --- a/_downloads/902a9ed2cb626415ad1932524d97f805/bar_unit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/902a9ed2cb626415ad1932524d97f805/bar_unit_demo.py \ No newline at end of file diff --git a/_downloads/902eba3779d0da84c66ebd3f2bb4084b/whats_new_98_4_legend.ipynb b/_downloads/902eba3779d0da84c66ebd3f2bb4084b/whats_new_98_4_legend.ipynb deleted file mode 120000 index 4d23295bd89..00000000000 --- a/_downloads/902eba3779d0da84c66ebd3f2bb4084b/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/902eba3779d0da84c66ebd3f2bb4084b/whats_new_98_4_legend.ipynb \ No newline at end of file diff --git a/_downloads/903546a74d98b50584f748bb2a3f9492/align_labels_demo.ipynb b/_downloads/903546a74d98b50584f748bb2a3f9492/align_labels_demo.ipynb deleted file mode 120000 index 57c5f379a20..00000000000 --- a/_downloads/903546a74d98b50584f748bb2a3f9492/align_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/903546a74d98b50584f748bb2a3f9492/align_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/903b199613501399a761dd7a6bab8b5a/colormap_normalizations_bounds.py b/_downloads/903b199613501399a761dd7a6bab8b5a/colormap_normalizations_bounds.py deleted file mode 120000 index 3d7a23c80b6..00000000000 --- a/_downloads/903b199613501399a761dd7a6bab8b5a/colormap_normalizations_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/903b199613501399a761dd7a6bab8b5a/colormap_normalizations_bounds.py \ No newline at end of file diff --git a/_downloads/903c0d45e1b6272706d0722b2d5a754f/annotate_simple04.ipynb b/_downloads/903c0d45e1b6272706d0722b2d5a754f/annotate_simple04.ipynb deleted file mode 120000 index af3df15bff9..00000000000 --- a/_downloads/903c0d45e1b6272706d0722b2d5a754f/annotate_simple04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/903c0d45e1b6272706d0722b2d5a754f/annotate_simple04.ipynb \ No newline at end of file diff --git a/_downloads/9043467757ec9319fcc79f1cc7b53112/demo_axes_divider.py b/_downloads/9043467757ec9319fcc79f1cc7b53112/demo_axes_divider.py deleted file mode 120000 index 416d5e98bb7..00000000000 --- a/_downloads/9043467757ec9319fcc79f1cc7b53112/demo_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9043467757ec9319fcc79f1cc7b53112/demo_axes_divider.py \ No newline at end of file diff --git a/_downloads/9051c2121cac088cab5ec2fcc16789e4/wire3d_animation_sgskip.ipynb b/_downloads/9051c2121cac088cab5ec2fcc16789e4/wire3d_animation_sgskip.ipynb deleted file mode 100644 index b20dac5d256..00000000000 --- a/_downloads/9051c2121cac088cab5ec2fcc16789e4/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rotating 3D wireframe plot\n\n\nA very simple 'animation' of a 3D plot. See also rotate_axes3d_demo.\n\n(This example is skipped when building the documentation gallery because it\nintentionally takes a long time to run)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport 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(111, 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)))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/90535e94fff093fcdb951bbf368308ed/sankey_rankine.ipynb b/_downloads/90535e94fff093fcdb951bbf368308ed/sankey_rankine.ipynb deleted file mode 100644 index dd8d5c38b35..00000000000 --- a/_downloads/90535e94fff093fcdb951bbf368308ed/sankey_rankine.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rankine power cycle\n\n\nDemonstrate the Sankey class with a practical example of a Rankine power cycle.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom matplotlib.sankey import Sankey\n\nfig = plt.figure(figsize=(8, 9))\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[],\n title=\"Rankine Power Cycle: Example 8.6 from Moran and \"\n \"Shapiro\\n\\x22Fundamentals of Engineering Thermodynamics \"\n \"\\x22, 6th ed., 2008\")\nHdot = [260.431, 35.078, 180.794, 221.115, 22.700,\n 142.361, 10.193, 10.210, 43.670, 44.312,\n 68.631, 10.758, 10.758, 0.017, 0.642,\n 232.121, 44.559, 100.613, 132.168] # MW\nsankey = Sankey(ax=ax, format='%.3G', unit=' MW', gap=0.5, scale=1.0/Hdot[0])\nsankey.add(patchlabel='\\n\\nPump 1', rotation=90, facecolor='#37c959',\n flows=[Hdot[13], Hdot[6], -Hdot[7]],\n labels=['Shaft power', '', None],\n pathlengths=[0.4, 0.883, 0.25],\n orientations=[1, -1, 0])\nsankey.add(patchlabel='\\n\\nOpen\\nheater', facecolor='#37c959',\n flows=[Hdot[11], Hdot[7], Hdot[4], -Hdot[8]],\n labels=[None, '', None, None],\n pathlengths=[0.25, 0.25, 1.93, 0.25],\n orientations=[1, 0, -1, 0], prior=0, connect=(2, 1))\nsankey.add(patchlabel='\\n\\nPump 2', facecolor='#37c959',\n flows=[Hdot[14], Hdot[8], -Hdot[9]],\n labels=['Shaft power', '', None],\n pathlengths=[0.4, 0.25, 0.25],\n orientations=[1, 0, 0], prior=1, connect=(3, 1))\nsankey.add(patchlabel='Closed\\nheater', trunklength=2.914, fc='#37c959',\n flows=[Hdot[9], Hdot[1], -Hdot[11], -Hdot[10]],\n pathlengths=[0.25, 1.543, 0.25, 0.25],\n labels=['', '', None, None],\n orientations=[0, -1, 1, -1], prior=2, connect=(2, 0))\nsankey.add(patchlabel='Trap', facecolor='#37c959', trunklength=5.102,\n flows=[Hdot[11], -Hdot[12]],\n labels=['\\n', None],\n pathlengths=[1.0, 1.01],\n orientations=[1, 1], prior=3, connect=(2, 0))\nsankey.add(patchlabel='Steam\\ngenerator', facecolor='#ff5555',\n flows=[Hdot[15], Hdot[10], Hdot[2], -Hdot[3], -Hdot[0]],\n labels=['Heat rate', '', '', None, None],\n pathlengths=0.25,\n orientations=[1, 0, -1, -1, -1], prior=3, connect=(3, 1))\nsankey.add(patchlabel='\\n\\n\\nTurbine 1', facecolor='#37c959',\n flows=[Hdot[0], -Hdot[16], -Hdot[1], -Hdot[2]],\n labels=['', None, None, None],\n pathlengths=[0.25, 0.153, 1.543, 0.25],\n orientations=[0, 1, -1, -1], prior=5, connect=(4, 0))\nsankey.add(patchlabel='\\n\\n\\nReheat', facecolor='#37c959',\n flows=[Hdot[2], -Hdot[2]],\n labels=[None, None],\n pathlengths=[0.725, 0.25],\n orientations=[-1, 0], prior=6, connect=(3, 0))\nsankey.add(patchlabel='Turbine 2', trunklength=3.212, facecolor='#37c959',\n flows=[Hdot[3], Hdot[16], -Hdot[5], -Hdot[4], -Hdot[17]],\n labels=[None, 'Shaft power', None, '', 'Shaft power'],\n pathlengths=[0.751, 0.15, 0.25, 1.93, 0.25],\n orientations=[0, -1, 0, -1, 1], prior=6, connect=(1, 1))\nsankey.add(patchlabel='Condenser', facecolor='#58b1fa', trunklength=1.764,\n flows=[Hdot[5], -Hdot[18], -Hdot[6]],\n labels=['', 'Heat rate', None],\n pathlengths=[0.45, 0.25, 0.883],\n orientations=[-1, 1, 0], prior=8, connect=(2, 0))\ndiagrams = sankey.finish()\nfor diagram in diagrams:\n diagram.text.set_fontweight('bold')\n diagram.text.set_fontsize('10')\n for text in diagram.texts:\n text.set_fontsize('10')\n# Notice that the explicit connections are handled automatically, but the\n# implicit ones currently are not. The lengths of the paths and the trunks\n# must be adjusted manually, and that is a bit tricky.\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.sankey\nmatplotlib.sankey.Sankey\nmatplotlib.sankey.Sankey.add\nmatplotlib.sankey.Sankey.finish" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/90597598699ba296818bb2c2c690e6c9/pyplot_scales.ipynb b/_downloads/90597598699ba296818bb2c2c690e6c9/pyplot_scales.ipynb deleted file mode 120000 index e4b412af5b4..00000000000 --- a/_downloads/90597598699ba296818bb2c2c690e6c9/pyplot_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/90597598699ba296818bb2c2c690e6c9/pyplot_scales.ipynb \ No newline at end of file diff --git a/_downloads/905f12f54e8c8ec8907c9484579192c6/whats_new_1_subplot3d.py b/_downloads/905f12f54e8c8ec8907c9484579192c6/whats_new_1_subplot3d.py deleted file mode 120000 index a21a7093421..00000000000 --- a/_downloads/905f12f54e8c8ec8907c9484579192c6/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/905f12f54e8c8ec8907c9484579192c6/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/_downloads/90669de650d72e572986fe2fe09dc4d2/text_fontdict.py b/_downloads/90669de650d72e572986fe2fe09dc4d2/text_fontdict.py deleted file mode 120000 index 632d9cbf90f..00000000000 --- a/_downloads/90669de650d72e572986fe2fe09dc4d2/text_fontdict.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/90669de650d72e572986fe2fe09dc4d2/text_fontdict.py \ No newline at end of file diff --git a/_downloads/9079c7956239a0c7507bbae7d553ce77/barchart.py b/_downloads/9079c7956239a0c7507bbae7d553ce77/barchart.py deleted file mode 120000 index 3524fd67a8e..00000000000 --- a/_downloads/9079c7956239a0c7507bbae7d553ce77/barchart.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9079c7956239a0c7507bbae7d553ce77/barchart.py \ No newline at end of file diff --git a/_downloads/907bd37847189cad4c42dfa3ee07fa89/simple_axis_direction03.py b/_downloads/907bd37847189cad4c42dfa3ee07fa89/simple_axis_direction03.py deleted file mode 120000 index 90778bc80a1..00000000000 --- a/_downloads/907bd37847189cad4c42dfa3ee07fa89/simple_axis_direction03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/907bd37847189cad4c42dfa3ee07fa89/simple_axis_direction03.py \ No newline at end of file diff --git a/_downloads/907c0927e95f1228591a05741083ae5f/colorbar_basics.py b/_downloads/907c0927e95f1228591a05741083ae5f/colorbar_basics.py deleted file mode 120000 index 9f17b55f302..00000000000 --- a/_downloads/907c0927e95f1228591a05741083ae5f/colorbar_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/907c0927e95f1228591a05741083ae5f/colorbar_basics.py \ No newline at end of file diff --git a/_downloads/9084981113f3192721fe8f707418ceae/demo_colorbar_with_inset_locator.ipynb b/_downloads/9084981113f3192721fe8f707418ceae/demo_colorbar_with_inset_locator.ipynb deleted file mode 120000 index 48df4caa005..00000000000 --- a/_downloads/9084981113f3192721fe8f707418ceae/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9084981113f3192721fe8f707418ceae/demo_colorbar_with_inset_locator.ipynb \ No newline at end of file diff --git a/_downloads/9094acae1435ff99b44daf539aab8adb/font_family_rc_sgskip.py b/_downloads/9094acae1435ff99b44daf539aab8adb/font_family_rc_sgskip.py deleted file mode 120000 index f4c8657d101..00000000000 --- a/_downloads/9094acae1435ff99b44daf539aab8adb/font_family_rc_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9094acae1435ff99b44daf539aab8adb/font_family_rc_sgskip.py \ No newline at end of file diff --git a/_downloads/90a3c16e5b418f82add4ec57cc9b41db/markevery_demo.ipynb b/_downloads/90a3c16e5b418f82add4ec57cc9b41db/markevery_demo.ipynb deleted file mode 120000 index b9c1d018d25..00000000000 --- a/_downloads/90a3c16e5b418f82add4ec57cc9b41db/markevery_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/90a3c16e5b418f82add4ec57cc9b41db/markevery_demo.ipynb \ No newline at end of file diff --git a/_downloads/90abee1d702972c17fc7b1534e3de976/annotation_polar.py b/_downloads/90abee1d702972c17fc7b1534e3de976/annotation_polar.py deleted file mode 100644 index e900c70d102..00000000000 --- a/_downloads/90abee1d702972c17fc7b1534e3de976/annotation_polar.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -================ -Annotation Polar -================ - -This example shows how to create an annotation on a polar graph. - -For a complete overview of the annotation capabilities, also see the -:doc:`annotation tutorial`. -""" -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -ax = fig.add_subplot(111, polar=True) -r = np.arange(0,1,0.001) -theta = 2 * 2*np.pi * r -line, = ax.plot(theta, r, color='#ee8d18', lw=3) - -ind = 800 -thisr, thistheta = r[ind], theta[ind] -ax.plot([thistheta], [thisr], 'o') -ax.annotate('a polar annotation', - xy=(thistheta, thisr), # theta, radius - xytext=(0.05, 0.05), # fraction, fraction - textcoords='figure fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='left', - verticalalignment='bottom', - ) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.projections.polar -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/90ac1c34c514003b61c36fda9093471c/transoffset.py b/_downloads/90ac1c34c514003b61c36fda9093471c/transoffset.py deleted file mode 120000 index 5af13394fa9..00000000000 --- a/_downloads/90ac1c34c514003b61c36fda9093471c/transoffset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/90ac1c34c514003b61c36fda9093471c/transoffset.py \ No newline at end of file diff --git a/_downloads/90acce79f237eb2820f7dc49645e211c/data_browser.py b/_downloads/90acce79f237eb2820f7dc49645e211c/data_browser.py deleted file mode 120000 index d0671dbb4d6..00000000000 --- a/_downloads/90acce79f237eb2820f7dc49645e211c/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/90acce79f237eb2820f7dc49645e211c/data_browser.py \ No newline at end of file diff --git a/_downloads/90ad61771e4ed181e601ca350734597e/integral.py b/_downloads/90ad61771e4ed181e601ca350734597e/integral.py deleted file mode 120000 index 79fd4614ac8..00000000000 --- a/_downloads/90ad61771e4ed181e601ca350734597e/integral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/90ad61771e4ed181e601ca350734597e/integral.py \ No newline at end of file diff --git a/_downloads/90c0399bc16275da59b88fa6adf86fa8/fig_axes_customize_simple.ipynb b/_downloads/90c0399bc16275da59b88fa6adf86fa8/fig_axes_customize_simple.ipynb deleted file mode 120000 index 1bc60550b0f..00000000000 --- a/_downloads/90c0399bc16275da59b88fa6adf86fa8/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/90c0399bc16275da59b88fa6adf86fa8/fig_axes_customize_simple.ipynb \ No newline at end of file diff --git a/_downloads/90c5c5d651eb604f59e34950cfc5e777/annotations.py b/_downloads/90c5c5d651eb604f59e34950cfc5e777/annotations.py deleted file mode 120000 index 4d69df12d50..00000000000 --- a/_downloads/90c5c5d651eb604f59e34950cfc5e777/annotations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/90c5c5d651eb604f59e34950cfc5e777/annotations.py \ No newline at end of file diff --git a/_downloads/90cea2029c94a210371cd828b09acbf8/histogram_histtypes.py b/_downloads/90cea2029c94a210371cd828b09acbf8/histogram_histtypes.py deleted file mode 120000 index 6a0acbff1b7..00000000000 --- a/_downloads/90cea2029c94a210371cd828b09acbf8/histogram_histtypes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/90cea2029c94a210371cd828b09acbf8/histogram_histtypes.py \ No newline at end of file diff --git a/_downloads/90e0b0d4cafadba1a90bfbb5a4c0ebbd/rainbow_text.py b/_downloads/90e0b0d4cafadba1a90bfbb5a4c0ebbd/rainbow_text.py deleted file mode 120000 index 572853a66f0..00000000000 --- a/_downloads/90e0b0d4cafadba1a90bfbb5a4c0ebbd/rainbow_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/90e0b0d4cafadba1a90bfbb5a4c0ebbd/rainbow_text.py \ No newline at end of file diff --git a/_downloads/90e445cfee5db20fca7b822f27a41fc3/customize_rc.ipynb b/_downloads/90e445cfee5db20fca7b822f27a41fc3/customize_rc.ipynb deleted file mode 120000 index 480adf425b4..00000000000 --- a/_downloads/90e445cfee5db20fca7b822f27a41fc3/customize_rc.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/90e445cfee5db20fca7b822f27a41fc3/customize_rc.ipynb \ No newline at end of file diff --git a/_downloads/90eb137a650ef4ca519579e01ea356d0/pyplot_formatstr.ipynb b/_downloads/90eb137a650ef4ca519579e01ea356d0/pyplot_formatstr.ipynb deleted file mode 120000 index f0e86a55ac9..00000000000 --- a/_downloads/90eb137a650ef4ca519579e01ea356d0/pyplot_formatstr.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/90eb137a650ef4ca519579e01ea356d0/pyplot_formatstr.ipynb \ No newline at end of file diff --git a/_downloads/90ef2fce9ddcead901c704cd08aa966d/scatter_symbol.ipynb b/_downloads/90ef2fce9ddcead901c704cd08aa966d/scatter_symbol.ipynb deleted file mode 120000 index 5e02ee07640..00000000000 --- a/_downloads/90ef2fce9ddcead901c704cd08aa966d/scatter_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/90ef2fce9ddcead901c704cd08aa966d/scatter_symbol.ipynb \ No newline at end of file diff --git a/_downloads/90f2ab80d16b9afbf1d6eca979e06850/fahrenheit_celsius_scales.ipynb b/_downloads/90f2ab80d16b9afbf1d6eca979e06850/fahrenheit_celsius_scales.ipynb deleted file mode 120000 index 77e5c7f212d..00000000000 --- a/_downloads/90f2ab80d16b9afbf1d6eca979e06850/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/90f2ab80d16b9afbf1d6eca979e06850/fahrenheit_celsius_scales.ipynb \ No newline at end of file diff --git a/_downloads/90f2ddccb3b3c452a590a282b33d8b94/voxels_numpy_logo.ipynb b/_downloads/90f2ddccb3b3c452a590a282b33d8b94/voxels_numpy_logo.ipynb deleted file mode 120000 index 2bb1cfa4b74..00000000000 --- a/_downloads/90f2ddccb3b3c452a590a282b33d8b94/voxels_numpy_logo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/90f2ddccb3b3c452a590a282b33d8b94/voxels_numpy_logo.ipynb \ No newline at end of file diff --git a/_downloads/90f3bc38e4e063bd310918b6c269591f/font_indexing.ipynb b/_downloads/90f3bc38e4e063bd310918b6c269591f/font_indexing.ipynb deleted file mode 120000 index 5e07945a743..00000000000 --- a/_downloads/90f3bc38e4e063bd310918b6c269591f/font_indexing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/90f3bc38e4e063bd310918b6c269591f/font_indexing.ipynb \ No newline at end of file diff --git a/_downloads/910588788187a1c7825558a1c9431237/span_regions.py b/_downloads/910588788187a1c7825558a1c9431237/span_regions.py deleted file mode 100644 index e1a9b85c140..00000000000 --- a/_downloads/910588788187a1c7825558a1c9431237/span_regions.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -================ -Using span_where -================ - -Illustrate some helper functions for shading regions where a logical -mask is True. - -See :meth:`matplotlib.collections.BrokenBarHCollection.span_where` -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.collections as collections - - -t = np.arange(0.0, 2, 0.01) -s1 = np.sin(2*np.pi*t) -s2 = 1.2*np.sin(4*np.pi*t) - - -fig, ax = plt.subplots() -ax.set_title('using span_where') -ax.plot(t, s1, color='black') -ax.axhline(0, color='black', lw=2) - -collection = collections.BrokenBarHCollection.span_where( - t, ymin=0, ymax=1, where=s1 > 0, facecolor='green', alpha=0.5) -ax.add_collection(collection) - -collection = collections.BrokenBarHCollection.span_where( - t, ymin=-1, ymax=0, where=s1 < 0, facecolor='red', alpha=0.5) -ax.add_collection(collection) - - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.collections.BrokenBarHCollection -matplotlib.collections.BrokenBarHCollection.span_where -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.axhline diff --git a/_downloads/9134d240a6baf5048df23aa1d99cf0cc/simple_legend02.py b/_downloads/9134d240a6baf5048df23aa1d99cf0cc/simple_legend02.py deleted file mode 120000 index 6f268e786d9..00000000000 --- a/_downloads/9134d240a6baf5048df23aa1d99cf0cc/simple_legend02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9134d240a6baf5048df23aa1d99cf0cc/simple_legend02.py \ No newline at end of file diff --git a/_downloads/9137104732745ad07b29a18f88a153e0/pythonic_matplotlib.py b/_downloads/9137104732745ad07b29a18f88a153e0/pythonic_matplotlib.py deleted file mode 100644 index b04d931264f..00000000000 --- a/_downloads/9137104732745ad07b29a18f88a153e0/pythonic_matplotlib.py +++ /dev/null @@ -1,79 +0,0 @@ -""" -=================== -Pythonic Matplotlib -=================== - -Some people prefer to write more pythonic, object-oriented code -rather than use the pyplot interface to matplotlib. This example shows -you how. - -Unless you are an application developer, I recommend using part of the -pyplot interface, particularly the figure, close, subplot, axes, and -show commands. These hide a lot of complexity from you that you don't -need to see in normal figure creation, like instantiating DPI -instances, managing the bounding boxes of the figure elements, -creating and realizing GUI windows and embedding figures in them. - -If you are an application developer and want to embed matplotlib in -your application, follow the lead of examples/embedding_in_wx.py, -examples/embedding_in_gtk.py or examples/embedding_in_tk.py. In this -case you will want to control the creation of all your figures, -embedding them in application windows, etc. - -If you are a web application developer, you may want to use the -example in webapp_demo.py, which shows how to use the backend agg -figure canvas directly, with none of the globals (current figure, -current axes) that are present in the pyplot interface. Note that -there is no reason why the pyplot interface won't work for web -application developers, however. - -If you see an example in the examples dir written in pyplot interface, -and you want to emulate that using the true python method calls, there -is an easy mapping. Many of those examples use 'set' to control -figure properties. Here's how to map those commands onto instance -methods - -The syntax of set is:: - - plt.setp(object or sequence, somestring, attribute) - -if called with an object, set calls:: - - object.set_somestring(attribute) - -if called with a sequence, set does:: - - for object in sequence: - object.set_somestring(attribute) - -So for your example, if a is your axes object, you can do:: - - a.set_xticklabels([]) - a.set_yticklabels([]) - a.set_xticks([]) - a.set_yticks([]) -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 1.0, 0.01) - -fig, (ax1, ax2) = plt.subplots(2) - -ax1.plot(t, np.sin(2*np.pi * t)) -ax1.grid(True) -ax1.set_ylim((-2, 2)) -ax1.set_ylabel('1 Hz') -ax1.set_title('A sine wave or two') - -ax1.xaxis.set_tick_params(labelcolor='r') - -ax2.plot(t, np.sin(2 * 2*np.pi * t)) -ax2.grid(True) -ax2.set_ylim((-2, 2)) -l = ax2.set_xlabel('Hi mom') -l.set_color('g') -l.set_fontsize('large') - -plt.show() diff --git a/_downloads/913b3bc4f0cabfe46cc39a34a9979557/keyword_plotting.py b/_downloads/913b3bc4f0cabfe46cc39a34a9979557/keyword_plotting.py deleted file mode 120000 index 638438a2582..00000000000 --- a/_downloads/913b3bc4f0cabfe46cc39a34a9979557/keyword_plotting.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/913b3bc4f0cabfe46cc39a34a9979557/keyword_plotting.py \ No newline at end of file diff --git a/_downloads/914f41c56b0eca85abd7696cf6b7ffc0/simple_annotate01.ipynb b/_downloads/914f41c56b0eca85abd7696cf6b7ffc0/simple_annotate01.ipynb deleted file mode 120000 index 8fefd9123b8..00000000000 --- a/_downloads/914f41c56b0eca85abd7696cf6b7ffc0/simple_annotate01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/914f41c56b0eca85abd7696cf6b7ffc0/simple_annotate01.ipynb \ No newline at end of file diff --git a/_downloads/916b13f167fdf4d5c5d5afe7aea5ade7/tricontour3d.ipynb b/_downloads/916b13f167fdf4d5c5d5afe7aea5ade7/tricontour3d.ipynb deleted file mode 120000 index 426cc686253..00000000000 --- a/_downloads/916b13f167fdf4d5c5d5afe7aea5ade7/tricontour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/916b13f167fdf4d5c5d5afe7aea5ade7/tricontour3d.ipynb \ No newline at end of file diff --git a/_downloads/916ce0c10e823df773366750ed556ec7/tex_demo.py b/_downloads/916ce0c10e823df773366750ed556ec7/tex_demo.py deleted file mode 120000 index 52cfd074557..00000000000 --- a/_downloads/916ce0c10e823df773366750ed556ec7/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/916ce0c10e823df773366750ed556ec7/tex_demo.py \ No newline at end of file diff --git a/_downloads/916da975cb935e2ba96a1e181a23b6a5/custom_legends.py b/_downloads/916da975cb935e2ba96a1e181a23b6a5/custom_legends.py deleted file mode 120000 index d86aa4ec743..00000000000 --- a/_downloads/916da975cb935e2ba96a1e181a23b6a5/custom_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/916da975cb935e2ba96a1e181a23b6a5/custom_legends.py \ No newline at end of file diff --git a/_downloads/916de599812a466d5bb1de724ab2f9f5/plot_streamplot.py b/_downloads/916de599812a466d5bb1de724ab2f9f5/plot_streamplot.py deleted file mode 100644 index ab18519d12a..00000000000 --- a/_downloads/916de599812a466d5bb1de724ab2f9f5/plot_streamplot.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -========== -Streamplot -========== - -A stream plot, or streamline plot, is used to display 2D vector fields. This -example shows a few features of the :meth:`~.axes.Axes.streamplot` function: - - * Varying the color along a streamline. - * Varying the density of streamlines. - * Varying the line width along a streamline. - * Controlling the starting points of streamlines. - * Streamlines skipping masked regions and NaN values. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - -w = 3 -Y, X = np.mgrid[-w:w:100j, -w:w:100j] -U = -1 - X**2 + Y -V = 1 + X - Y**2 -speed = np.sqrt(U**2 + V**2) - -fig = plt.figure(figsize=(7, 9)) -gs = gridspec.GridSpec(nrows=3, ncols=2, height_ratios=[1, 1, 2]) - -# Varying density along a streamline -ax0 = fig.add_subplot(gs[0, 0]) -ax0.streamplot(X, Y, U, V, density=[0.5, 1]) -ax0.set_title('Varying Density') - -# Varying color along a streamline -ax1 = fig.add_subplot(gs[0, 1]) -strm = ax1.streamplot(X, Y, U, V, color=U, linewidth=2, cmap='autumn') -fig.colorbar(strm.lines) -ax1.set_title('Varying Color') - -# Varying line width along a streamline -ax2 = fig.add_subplot(gs[1, 0]) -lw = 5*speed / speed.max() -ax2.streamplot(X, Y, U, V, density=0.6, color='k', linewidth=lw) -ax2.set_title('Varying Line Width') - -# Controlling the starting points of the streamlines -seed_points = np.array([[-2, -1, 0, 1, 2, -1], [-2, -1, 0, 1, 2, 2]]) - -ax3 = fig.add_subplot(gs[1, 1]) -strm = ax3.streamplot(X, Y, U, V, color=U, linewidth=2, - cmap='autumn', start_points=seed_points.T) -fig.colorbar(strm.lines) -ax3.set_title('Controlling Starting Points') - -# Displaying the starting points with blue symbols. -ax3.plot(seed_points[0], seed_points[1], 'bo') -ax3.set(xlim=(-w, w), ylim=(-w, w)) - -# Create a mask -mask = np.zeros(U.shape, dtype=bool) -mask[40:60, 40:60] = True -U[:20, :20] = np.nan -U = np.ma.array(U, mask=mask) - -ax4 = fig.add_subplot(gs[2:, :]) -ax4.streamplot(X, Y, U, V, color='r') -ax4.set_title('Streamplot with Masking') - -ax4.imshow(~mask, extent=(-w, w, -w, w), alpha=0.5, - interpolation='nearest', cmap='gray', aspect='auto') -ax4.set_aspect('equal') - -plt.tight_layout() -plt.show() -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.streamplot -matplotlib.pyplot.streamplot -matplotlib.gridspec -matplotlib.gridspec.GridSpec diff --git a/_downloads/91807ca683a623e8daa1476c6f5d0302/step_demo.ipynb b/_downloads/91807ca683a623e8daa1476c6f5d0302/step_demo.ipynb deleted file mode 120000 index a1ab2d29ed8..00000000000 --- a/_downloads/91807ca683a623e8daa1476c6f5d0302/step_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/91807ca683a623e8daa1476c6f5d0302/step_demo.ipynb \ No newline at end of file diff --git a/_downloads/9181fc62a11c541f7c452c08ce091bd4/sankey_basics.py b/_downloads/9181fc62a11c541f7c452c08ce091bd4/sankey_basics.py deleted file mode 100644 index f625a59a8c4..00000000000 --- a/_downloads/9181fc62a11c541f7c452c08ce091bd4/sankey_basics.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -================ -The Sankey class -================ - -Demonstrate the Sankey class by producing three basic diagrams. -""" - -import matplotlib.pyplot as plt - -from matplotlib.sankey import Sankey - - -############################################################################### -# Example 1 -- Mostly defaults -# -# This demonstrates how to create a simple diagram by implicitly calling the -# Sankey.add() method and by appending finish() to the call to the class. - -Sankey(flows=[0.25, 0.15, 0.60, -0.20, -0.15, -0.05, -0.50, -0.10], - labels=['', '', '', 'First', 'Second', 'Third', 'Fourth', 'Fifth'], - orientations=[-1, 1, 0, 1, 1, 1, 0, -1]).finish() -plt.title("The default settings produce a diagram like this.") - -############################################################################### -# Notice: -# -# 1. Axes weren't provided when Sankey() was instantiated, so they were -# created automatically. -# 2. The scale argument wasn't necessary since the data was already -# normalized. -# 3. By default, the lengths of the paths are justified. - - -############################################################################### -# Example 2 -# -# This demonstrates: -# -# 1. Setting one path longer than the others -# 2. Placing a label in the middle of the diagram -# 3. Using the scale argument to normalize the flows -# 4. Implicitly passing keyword arguments to PathPatch() -# 5. Changing the angle of the arrow heads -# 6. Changing the offset between the tips of the paths and their labels -# 7. Formatting the numbers in the path labels and the associated unit -# 8. Changing the appearance of the patch and the labels after the figure is -# created - -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], - title="Flow Diagram of a Widget") -sankey = Sankey(ax=ax, scale=0.01, offset=0.2, head_angle=180, - format='%.0f', unit='%') -sankey.add(flows=[25, 0, 60, -10, -20, -5, -15, -10, -40], - labels=['', '', '', 'First', 'Second', 'Third', 'Fourth', - 'Fifth', 'Hurray!'], - orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0], - pathlengths=[0.25, 0.25, 0.25, 0.25, 0.25, 0.6, 0.25, 0.25, - 0.25], - patchlabel="Widget\nA") # Arguments to matplotlib.patches.PathPatch() -diagrams = sankey.finish() -diagrams[0].texts[-1].set_color('r') -diagrams[0].text.set_fontweight('bold') - -############################################################################### -# Notice: -# -# 1. Since the sum of the flows is nonzero, the width of the trunk isn't -# uniform. The matplotlib logging system logs this at the DEBUG level. -# 2. The second flow doesn't appear because its value is zero. Again, this is -# logged at the DEBUG level. - - -############################################################################### -# Example 3 -# -# This demonstrates: -# -# 1. Connecting two systems -# 2. Turning off the labels of the quantities -# 3. Adding a legend - -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], title="Two Systems") -flows = [0.25, 0.15, 0.60, -0.10, -0.05, -0.25, -0.15, -0.10, -0.35] -sankey = Sankey(ax=ax, unit=None) -sankey.add(flows=flows, label='one', - orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0]) -sankey.add(flows=[-0.25, 0.15, 0.1], label='two', - orientations=[-1, -1, -1], prior=0, connect=(0, 0)) -diagrams = sankey.finish() -diagrams[-1].patch.set_hatch('/') -plt.legend() - -############################################################################### -# Notice that only one connection is specified, but the systems form a -# circuit since: (1) the lengths of the paths are justified and (2) the -# orientation and ordering of the flows is mirrored. - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.sankey -matplotlib.sankey.Sankey -matplotlib.sankey.Sankey.add -matplotlib.sankey.Sankey.finish diff --git a/_downloads/9190c77d11ac91107a94426202763299/masked_demo.ipynb b/_downloads/9190c77d11ac91107a94426202763299/masked_demo.ipynb deleted file mode 120000 index 7d3b3834a21..00000000000 --- a/_downloads/9190c77d11ac91107a94426202763299/masked_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9190c77d11ac91107a94426202763299/masked_demo.ipynb \ No newline at end of file diff --git a/_downloads/9199752ea4ae31247c929af180858046/multipage_pdf.ipynb b/_downloads/9199752ea4ae31247c929af180858046/multipage_pdf.ipynb deleted file mode 100644 index c184fdf1be8..00000000000 --- a/_downloads/9199752ea4ae31247c929af180858046/multipage_pdf.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multipage PDF\n\n\nThis is a demo of creating a pdf file with several pages,\nas well as adding metadata and annotations to pdf files.\n\nIf you want to use a multipage pdf file using LaTeX, you need\nto use `from matplotlib.backends.backend_pgf import PdfPages`.\nThis version however does not support `attach_note`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\nimport numpy as np\nfrom matplotlib.backends.backend_pdf import PdfPages\nimport matplotlib.pyplot as plt\n\n# Create the PdfPages object to which we will save the pages:\n# The with statement makes sure that the PdfPages object is closed properly at\n# the end of the block, even if an Exception occurs.\nwith PdfPages('multipage_pdf.pdf') as pdf:\n plt.figure(figsize=(3, 3))\n plt.plot(range(7), [3, 1, 4, 1, 5, 9, 2], 'r-o')\n plt.title('Page One')\n pdf.savefig() # saves the current figure into a pdf page\n plt.close()\n\n # if LaTeX is not installed or error caught, change to `usetex=False`\n plt.rc('text', usetex=True)\n plt.figure(figsize=(8, 6))\n x = np.arange(0, 5, 0.1)\n plt.plot(x, np.sin(x), 'b-')\n plt.title('Page Two')\n pdf.attach_note(\"plot of sin(x)\") # you can add a pdf note to\n # attach metadata to a page\n pdf.savefig()\n plt.close()\n\n plt.rc('text', usetex=False)\n fig = plt.figure(figsize=(4, 5))\n plt.plot(x, x ** 2, 'ko')\n plt.title('Page Three')\n pdf.savefig(fig) # or you can pass a Figure object to pdf.savefig\n plt.close()\n\n # We can also set the file's metadata via the PdfPages object:\n d = pdf.infodict()\n d['Title'] = 'Multipage PDF Example'\n d['Author'] = 'Jouni K. Sepp\\xe4nen'\n d['Subject'] = 'How to create a multipage pdf file and set its metadata'\n d['Keywords'] = 'PdfPages multipage keywords author title subject'\n d['CreationDate'] = datetime.datetime(2009, 11, 13)\n d['ModDate'] = datetime.datetime.today()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/919fb41d444956d61d33e2cf0b44d6df/auto_subplots_adjust.py b/_downloads/919fb41d444956d61d33e2cf0b44d6df/auto_subplots_adjust.py deleted file mode 120000 index 1fc854cf0e5..00000000000 --- a/_downloads/919fb41d444956d61d33e2cf0b44d6df/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/919fb41d444956d61d33e2cf0b44d6df/auto_subplots_adjust.py \ No newline at end of file diff --git a/_downloads/91aaa6180be0d5e097e2254461d879a7/pick_event_demo.py b/_downloads/91aaa6180be0d5e097e2254461d879a7/pick_event_demo.py deleted file mode 100644 index 5e8586aaa13..00000000000 --- a/_downloads/91aaa6180be0d5e097e2254461d879a7/pick_event_demo.py +++ /dev/null @@ -1,189 +0,0 @@ -""" -=============== -Pick Event Demo -=============== - - -You can enable picking by setting the "picker" property of an artist -(for example, a matplotlib Line2D, Text, Patch, Polygon, AxesImage, -etc...) - -There are a variety of meanings of the picker property - - None - picking is disabled for this artist (default) - - boolean - if True then picking will be enabled and the - artist will fire a pick event if the mouse event is over - the artist - - float - if picker is a number it is interpreted as an - epsilon tolerance in points and the artist will fire - off an event if it's data is within epsilon of the mouse - event. For some artists like lines and patch collections, - the artist may provide additional data to the pick event - that is generated, for example, the indices of the data within - epsilon of the pick event - - function - if picker is callable, it is a user supplied - function which determines whether the artist is hit by the - mouse event. - - hit, props = picker(artist, mouseevent) - - to determine the hit test. If the mouse event is over the - artist, return hit=True and props is a dictionary of properties - you want added to the PickEvent attributes - - -After you have enabled an artist for picking by setting the "picker" -property, you need to connect to the figure canvas pick_event to get -pick callbacks on mouse press events. For example, - - def pick_handler(event): - mouseevent = event.mouseevent - artist = event.artist - # now do something with this... - - -The pick event (matplotlib.backend_bases.PickEvent) which is passed to -your callback is always fired with two attributes: - - mouseevent - the mouse event that generate the pick event. The - mouse event in turn has attributes like x and y (the coordinates in - display space, such as pixels from left, bottom) and xdata, ydata (the - coords in data space). Additionally, you can get information about - which buttons were pressed, which keys were pressed, which Axes - the mouse is over, etc. See matplotlib.backend_bases.MouseEvent - for details. - - artist - the matplotlib.artist that generated the pick event. - -Additionally, certain artists like Line2D and PatchCollection may -attach additional meta data like the indices into the data that meet -the picker criteria (for example, all the points in the line that are within -the specified epsilon tolerance) - -The examples below illustrate each of these methods. -""" - -import matplotlib.pyplot as plt -from matplotlib.lines import Line2D -from matplotlib.patches import Rectangle -from matplotlib.text import Text -from matplotlib.image import AxesImage -import numpy as np -from numpy.random import rand - - -def pick_simple(): - # simple picking, lines, rectangles and text - fig, (ax1, ax2) = plt.subplots(2, 1) - ax1.set_title('click on points, rectangles or text', picker=True) - ax1.set_ylabel('ylabel', picker=True, bbox=dict(facecolor='red')) - line, = ax1.plot(rand(100), 'o', picker=5) # 5 points tolerance - - # pick the rectangle - bars = ax2.bar(range(10), rand(10), picker=True) - for label in ax2.get_xticklabels(): # make the xtick labels pickable - label.set_picker(True) - - def onpick1(event): - if isinstance(event.artist, Line2D): - thisline = event.artist - xdata = thisline.get_xdata() - ydata = thisline.get_ydata() - ind = event.ind - print('onpick1 line:', np.column_stack([xdata[ind], ydata[ind]])) - elif isinstance(event.artist, Rectangle): - patch = event.artist - print('onpick1 patch:', patch.get_path()) - elif isinstance(event.artist, Text): - text = event.artist - print('onpick1 text:', text.get_text()) - - fig.canvas.mpl_connect('pick_event', onpick1) - - -def pick_custom_hit(): - # picking with a custom hit test function - # you can define custom pickers by setting picker to a callable - # function. The function has the signature - # - # hit, props = func(artist, mouseevent) - # - # to determine the hit test. if the mouse event is over the artist, - # return hit=True and props is a dictionary of - # properties you want added to the PickEvent attributes - - def line_picker(line, mouseevent): - """ - find the points within a certain distance from the mouseclick in - data coords and attach some extra attributes, pickx and picky - which are the data points that were picked - """ - if mouseevent.xdata is None: - return False, dict() - xdata = line.get_xdata() - ydata = line.get_ydata() - maxd = 0.05 - d = np.sqrt( - (xdata - mouseevent.xdata)**2 + (ydata - mouseevent.ydata)**2) - - ind, = np.nonzero(d <= maxd) - if len(ind): - pickx = xdata[ind] - picky = ydata[ind] - props = dict(ind=ind, pickx=pickx, picky=picky) - return True, props - else: - return False, dict() - - def onpick2(event): - print('onpick2 line:', event.pickx, event.picky) - - fig, ax = plt.subplots() - ax.set_title('custom picker for line data') - line, = ax.plot(rand(100), rand(100), 'o', picker=line_picker) - fig.canvas.mpl_connect('pick_event', onpick2) - - -def pick_scatter_plot(): - # picking on a scatter plot (matplotlib.collections.RegularPolyCollection) - - x, y, c, s = rand(4, 100) - - def onpick3(event): - ind = event.ind - print('onpick3 scatter:', ind, x[ind], y[ind]) - - fig, ax = plt.subplots() - col = ax.scatter(x, y, 100*s, c, picker=True) - #fig.savefig('pscoll.eps') - fig.canvas.mpl_connect('pick_event', onpick3) - - -def pick_image(): - # picking images (matplotlib.image.AxesImage) - fig, ax = plt.subplots() - ax.imshow(rand(10, 5), extent=(1, 2, 1, 2), picker=True) - ax.imshow(rand(5, 10), extent=(3, 4, 1, 2), picker=True) - ax.imshow(rand(20, 25), extent=(1, 2, 3, 4), picker=True) - ax.imshow(rand(30, 12), extent=(3, 4, 3, 4), picker=True) - ax.set(xlim=(0, 5), ylim=(0, 5)) - - def onpick4(event): - artist = event.artist - if isinstance(artist, AxesImage): - im = artist - A = im.get_array() - print('onpick4 image', A.shape) - - fig.canvas.mpl_connect('pick_event', onpick4) - - -if __name__ == '__main__': - pick_simple() - pick_custom_hit() - pick_scatter_plot() - pick_image() - plt.show() diff --git a/_downloads/91abe4de5ca79e572a8ac42e38cc49f7/polar_scatter.ipynb b/_downloads/91abe4de5ca79e572a8ac42e38cc49f7/polar_scatter.ipynb deleted file mode 120000 index 76c3cafadcc..00000000000 --- a/_downloads/91abe4de5ca79e572a8ac42e38cc49f7/polar_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/91abe4de5ca79e572a8ac42e38cc49f7/polar_scatter.ipynb \ No newline at end of file diff --git a/_downloads/91ac2643d1cc74c97ee8cc8578d8a552/tricontour_smooth_user.py b/_downloads/91ac2643d1cc74c97ee8cc8578d8a552/tricontour_smooth_user.py deleted file mode 120000 index 8f340a4f8a8..00000000000 --- a/_downloads/91ac2643d1cc74c97ee8cc8578d8a552/tricontour_smooth_user.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/91ac2643d1cc74c97ee8cc8578d8a552/tricontour_smooth_user.py \ No newline at end of file diff --git a/_downloads/91adea27e76c8d79bf5b3a5ef646ed58/voxels.ipynb b/_downloads/91adea27e76c8d79bf5b3a5ef646ed58/voxels.ipynb deleted file mode 120000 index 6cf0f099d83..00000000000 --- a/_downloads/91adea27e76c8d79bf5b3a5ef646ed58/voxels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/91adea27e76c8d79bf5b3a5ef646ed58/voxels.ipynb \ No newline at end of file diff --git a/_downloads/91afeab6be7a1337ef5e46f820b4f00a/invert_axes.ipynb b/_downloads/91afeab6be7a1337ef5e46f820b4f00a/invert_axes.ipynb deleted file mode 120000 index d1227baad4e..00000000000 --- a/_downloads/91afeab6be7a1337ef5e46f820b4f00a/invert_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/91afeab6be7a1337ef5e46f820b4f00a/invert_axes.ipynb \ No newline at end of file diff --git a/_downloads/91c4c47baa0ef126edb22e358b87dd93/annotate_text_arrow.py b/_downloads/91c4c47baa0ef126edb22e358b87dd93/annotate_text_arrow.py deleted file mode 120000 index aac91384c31..00000000000 --- a/_downloads/91c4c47baa0ef126edb22e358b87dd93/annotate_text_arrow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/91c4c47baa0ef126edb22e358b87dd93/annotate_text_arrow.py \ No newline at end of file diff --git a/_downloads/91c5717f55885cab437f4742baabd35c/scatter_star_poly.py b/_downloads/91c5717f55885cab437f4742baabd35c/scatter_star_poly.py deleted file mode 120000 index 605bef405db..00000000000 --- a/_downloads/91c5717f55885cab437f4742baabd35c/scatter_star_poly.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/91c5717f55885cab437f4742baabd35c/scatter_star_poly.py \ No newline at end of file diff --git a/_downloads/91cd01a6a64d86fd53adbc6a9b6bf04c/axis_direction_demo_step04.py b/_downloads/91cd01a6a64d86fd53adbc6a9b6bf04c/axis_direction_demo_step04.py deleted file mode 100644 index 25ea10c0cff..00000000000 --- a/_downloads/91cd01a6a64d86fd53adbc6a9b6bf04c/axis_direction_demo_step04.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -========================== -Axis Direction Demo Step04 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - ax.axis[:].set_visible(False) - - ax.axis["x1"] = ax.new_floating_axis(1, 0.3) - ax.axis["x1"].set_axisline_style("->", size=1.5) - - ax.axis["x2"] = ax.new_floating_axis(1, 0.7) - ax.axis["x2"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(6, 2.5)) -fig.subplots_adjust(bottom=0.2, top=0.8) - -ax1 = setup_axes(fig, "121") -ax1.axis["x1"].label.set_text("rotation=0") -ax1.axis["x1"].toggle(ticklabels=False) - -ax1.axis["x2"].label.set_text("rotation=10") -ax1.axis["x2"].label.set_rotation(10) -ax1.axis["x2"].toggle(ticklabels=False) - -ax1.annotate("label direction=$+$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -ax2 = setup_axes(fig, "122") - -ax2.axis["x1"].set_axislabel_direction("-") -ax2.axis["x2"].set_axislabel_direction("-") - -ax2.axis["x1"].label.set_text("rotation=0") -ax2.axis["x1"].toggle(ticklabels=False) - -ax2.axis["x2"].label.set_text("rotation=10") -ax2.axis["x2"].label.set_rotation(10) -ax2.axis["x2"].toggle(ticklabels=False) - -ax2.annotate("label direction=$-$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -plt.show() diff --git a/_downloads/91da0f31756f11cccb3fc31afb600c4d/demo_parasite_axes.ipynb b/_downloads/91da0f31756f11cccb3fc31afb600c4d/demo_parasite_axes.ipynb deleted file mode 120000 index 6451447a277..00000000000 --- a/_downloads/91da0f31756f11cccb3fc31afb600c4d/demo_parasite_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/91da0f31756f11cccb3fc31afb600c4d/demo_parasite_axes.ipynb \ No newline at end of file diff --git a/_downloads/91dc9e7d0ebab67e96441a5bb4cb8ae3/demo_annotation_box.py b/_downloads/91dc9e7d0ebab67e96441a5bb4cb8ae3/demo_annotation_box.py deleted file mode 120000 index b01561f59e6..00000000000 --- a/_downloads/91dc9e7d0ebab67e96441a5bb4cb8ae3/demo_annotation_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/91dc9e7d0ebab67e96441a5bb4cb8ae3/demo_annotation_box.py \ No newline at end of file diff --git a/_downloads/91e0d0fab354a73fa9330139a9fac0f5/random_walk.py b/_downloads/91e0d0fab354a73fa9330139a9fac0f5/random_walk.py deleted file mode 120000 index eb52666922f..00000000000 --- a/_downloads/91e0d0fab354a73fa9330139a9fac0f5/random_walk.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/91e0d0fab354a73fa9330139a9fac0f5/random_walk.py \ No newline at end of file diff --git a/_downloads/91e972afcac4aaef04b2fc121ff0082b/power_norm.ipynb b/_downloads/91e972afcac4aaef04b2fc121ff0082b/power_norm.ipynb deleted file mode 100644 index 700d87394be..00000000000 --- a/_downloads/91e972afcac4aaef04b2fc121ff0082b/power_norm.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Exploring normalizations\n\n\nVarious normalization on a multivariate normal distribution.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.colors as mcolors\nimport numpy as np\nfrom numpy.random import multivariate_normal\n\ndata = np.vstack([\n multivariate_normal([10, 10], [[3, 2], [2, 3]], size=100000),\n multivariate_normal([30, 20], [[2, 3], [1, 3]], size=1000)\n])\n\ngammas = [0.8, 0.5, 0.3]\n\nfig, axes = plt.subplots(nrows=2, ncols=2)\n\naxes[0, 0].set_title('Linear normalization')\naxes[0, 0].hist2d(data[:, 0], data[:, 1], bins=100)\n\nfor ax, gamma in zip(axes.flat[1:], gammas):\n ax.set_title(r'Power law $(\\gamma=%1.1f)$' % gamma)\n ax.hist2d(data[:, 0], data[:, 1],\n bins=100, norm=mcolors.PowerNorm(gamma))\n\nfig.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.colors.PowerNorm\nmatplotlib.axes.Axes.hist2d\nmatplotlib.pyplot.hist2d" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/91eae76e954fa871772e65b23de96ffe/boxplot.py b/_downloads/91eae76e954fa871772e65b23de96ffe/boxplot.py deleted file mode 120000 index 79fb1f4bf3c..00000000000 --- a/_downloads/91eae76e954fa871772e65b23de96ffe/boxplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/91eae76e954fa871772e65b23de96ffe/boxplot.py \ No newline at end of file diff --git a/_downloads/91ed4d24e15ee88d7be55f2a69c5e54a/animation_demo.ipynb b/_downloads/91ed4d24e15ee88d7be55f2a69c5e54a/animation_demo.ipynb deleted file mode 120000 index a416d77ed1d..00000000000 --- a/_downloads/91ed4d24e15ee88d7be55f2a69c5e54a/animation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/91ed4d24e15ee88d7be55f2a69c5e54a/animation_demo.ipynb \ No newline at end of file diff --git a/_downloads/91ed6199a78f673d0af75137fae31765/axis_direction_demo_step01.py b/_downloads/91ed6199a78f673d0af75137fae31765/axis_direction_demo_step01.py deleted file mode 120000 index f1dbbd3985e..00000000000 --- a/_downloads/91ed6199a78f673d0af75137fae31765/axis_direction_demo_step01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/91ed6199a78f673d0af75137fae31765/axis_direction_demo_step01.py \ No newline at end of file diff --git a/_downloads/91f22990514946c3765a84044904bb84/fourier_demo_wx_sgskip.py b/_downloads/91f22990514946c3765a84044904bb84/fourier_demo_wx_sgskip.py deleted file mode 120000 index a9e31ac6ad5..00000000000 --- a/_downloads/91f22990514946c3765a84044904bb84/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/91f22990514946c3765a84044904bb84/fourier_demo_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/91f26399d32ac51f9a777b8acec2cc8e/multicursor.ipynb b/_downloads/91f26399d32ac51f9a777b8acec2cc8e/multicursor.ipynb deleted file mode 120000 index 74fe074a88f..00000000000 --- a/_downloads/91f26399d32ac51f9a777b8acec2cc8e/multicursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/91f26399d32ac51f9a777b8acec2cc8e/multicursor.ipynb \ No newline at end of file diff --git a/_downloads/91f2951f9fb8b732fb5fb3b4cb2fc178/specgram_demo.py b/_downloads/91f2951f9fb8b732fb5fb3b4cb2fc178/specgram_demo.py deleted file mode 100644 index 514d27af877..00000000000 --- a/_downloads/91f2951f9fb8b732fb5fb3b4cb2fc178/specgram_demo.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -================ -Spectrogram Demo -================ - -Demo of a spectrogram plot (`~.axes.Axes.specgram`). -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -dt = 0.0005 -t = np.arange(0.0, 20.0, dt) -s1 = np.sin(2 * np.pi * 100 * t) -s2 = 2 * np.sin(2 * np.pi * 400 * t) - -# create a transient "chirp" -s2[t <= 10] = s2[12 <= t] = 0 - -# add some noise into the mix -nse = 0.01 * np.random.random(size=len(t)) - -x = s1 + s2 + nse # the signal -NFFT = 1024 # the length of the windowing segments -Fs = int(1.0 / dt) # the sampling frequency - -fig, (ax1, ax2) = plt.subplots(nrows=2) -ax1.plot(t, x) -Pxx, freqs, bins, im = ax2.specgram(x, NFFT=NFFT, Fs=Fs, noverlap=900) -# The `specgram` method returns 4 objects. They are: -# - Pxx: the periodogram -# - freqs: the frequency vector -# - bins: the centers of the time bins -# - im: the matplotlib.image.AxesImage instance representing the data in the plot -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.specgram -matplotlib.pyplot.specgram diff --git a/_downloads/91f8a3f30b120e0df450dec32a066155/multipage_pdf.py b/_downloads/91f8a3f30b120e0df450dec32a066155/multipage_pdf.py deleted file mode 120000 index b7cff488900..00000000000 --- a/_downloads/91f8a3f30b120e0df450dec32a066155/multipage_pdf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/91f8a3f30b120e0df450dec32a066155/multipage_pdf.py \ No newline at end of file diff --git a/_downloads/91fa4e5192619870e762ebdb4e2479b5/irregulardatagrid.py b/_downloads/91fa4e5192619870e762ebdb4e2479b5/irregulardatagrid.py deleted file mode 120000 index 6b114c4e9a4..00000000000 --- a/_downloads/91fa4e5192619870e762ebdb4e2479b5/irregulardatagrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/91fa4e5192619870e762ebdb4e2479b5/irregulardatagrid.py \ No newline at end of file diff --git a/_downloads/9209cae6fbf2db1085b6fd42dff75ef8/multiline.ipynb b/_downloads/9209cae6fbf2db1085b6fd42dff75ef8/multiline.ipynb deleted file mode 120000 index ed1db357d4a..00000000000 --- a/_downloads/9209cae6fbf2db1085b6fd42dff75ef8/multiline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9209cae6fbf2db1085b6fd42dff75ef8/multiline.ipynb \ No newline at end of file diff --git a/_downloads/9212d1d17f5b85543a7304f75f5f70b8/arrow_demo.py b/_downloads/9212d1d17f5b85543a7304f75f5f70b8/arrow_demo.py deleted file mode 100644 index cc1f8dd127a..00000000000 --- a/_downloads/9212d1d17f5b85543a7304f75f5f70b8/arrow_demo.py +++ /dev/null @@ -1,303 +0,0 @@ -""" -========== -Arrow Demo -========== - -Arrow drawing example for the new fancy_arrow facilities. - -Code contributed by: Rob Knight - -usage: - - python arrow_demo.py realistic|full|sample|extreme - - -""" -import matplotlib.pyplot as plt -import numpy as np - -rates_to_bases = {'r1': 'AT', 'r2': 'TA', 'r3': 'GA', 'r4': 'AG', 'r5': 'CA', - 'r6': 'AC', 'r7': 'GT', 'r8': 'TG', 'r9': 'CT', 'r10': 'TC', - 'r11': 'GC', 'r12': 'CG'} -numbered_bases_to_rates = {v: k for k, v in rates_to_bases.items()} -lettered_bases_to_rates = {v: 'r' + v for k, v in rates_to_bases.items()} - - -def make_arrow_plot(data, size=4, display='length', shape='right', - max_arrow_width=0.03, arrow_sep=0.02, alpha=0.5, - normalize_data=False, ec=None, labelcolor=None, - head_starts_at_zero=True, - rate_labels=lettered_bases_to_rates, - **kwargs): - """Makes an arrow plot. - - Parameters: - - data: dict with probabilities for the bases and pair transitions. - size: size of the graph in inches. - display: 'length', 'width', or 'alpha' for arrow property to change. - shape: 'full', 'left', or 'right' for full or half arrows. - max_arrow_width: maximum width of an arrow, data coordinates. - arrow_sep: separation between arrows in a pair, data coordinates. - alpha: maximum opacity of arrows, default 0.8. - - **kwargs can be anything allowed by a Arrow object, e.g. - linewidth and edgecolor. - """ - - plt.xlim(-0.5, 1.5) - plt.ylim(-0.5, 1.5) - plt.gcf().set_size_inches(size, size) - plt.xticks([]) - plt.yticks([]) - max_text_size = size * 12 - min_text_size = size - label_text_size = size * 2.5 - text_params = {'ha': 'center', 'va': 'center', 'family': 'sans-serif', - 'fontweight': 'bold'} - r2 = np.sqrt(2) - - deltas = { - 'AT': (1, 0), - 'TA': (-1, 0), - 'GA': (0, 1), - 'AG': (0, -1), - 'CA': (-1 / r2, 1 / r2), - 'AC': (1 / r2, -1 / r2), - 'GT': (1 / r2, 1 / r2), - 'TG': (-1 / r2, -1 / r2), - 'CT': (0, 1), - 'TC': (0, -1), - 'GC': (1, 0), - 'CG': (-1, 0)} - - colors = { - 'AT': 'r', - 'TA': 'k', - 'GA': 'g', - 'AG': 'r', - 'CA': 'b', - 'AC': 'r', - 'GT': 'g', - 'TG': 'k', - 'CT': 'b', - 'TC': 'k', - 'GC': 'g', - 'CG': 'b'} - - label_positions = { - 'AT': 'center', - 'TA': 'center', - 'GA': 'center', - 'AG': 'center', - 'CA': 'left', - 'AC': 'left', - 'GT': 'left', - 'TG': 'left', - 'CT': 'center', - 'TC': 'center', - 'GC': 'center', - 'CG': 'center'} - - def do_fontsize(k): - return float(np.clip(max_text_size * np.sqrt(data[k]), - min_text_size, max_text_size)) - - A = plt.text(0, 1, '$A_3$', color='r', size=do_fontsize('A'), - **text_params) - T = plt.text(1, 1, '$T_3$', color='k', size=do_fontsize('T'), - **text_params) - G = plt.text(0, 0, '$G_3$', color='g', size=do_fontsize('G'), - **text_params) - C = plt.text(1, 0, '$C_3$', color='b', size=do_fontsize('C'), - **text_params) - - arrow_h_offset = 0.25 # data coordinates, empirically determined - max_arrow_length = 1 - 2 * arrow_h_offset - max_head_width = 2.5 * max_arrow_width - max_head_length = 2 * max_arrow_width - arrow_params = {'length_includes_head': True, 'shape': shape, - 'head_starts_at_zero': head_starts_at_zero} - sf = 0.6 # max arrow size represents this in data coords - - d = (r2 / 2 + arrow_h_offset - 0.5) / r2 # distance for diags - r2v = arrow_sep / r2 # offset for diags - - # tuple of x, y for start position - positions = { - 'AT': (arrow_h_offset, 1 + arrow_sep), - 'TA': (1 - arrow_h_offset, 1 - arrow_sep), - 'GA': (-arrow_sep, arrow_h_offset), - 'AG': (arrow_sep, 1 - arrow_h_offset), - 'CA': (1 - d - r2v, d - r2v), - 'AC': (d + r2v, 1 - d + r2v), - 'GT': (d - r2v, d + r2v), - 'TG': (1 - d + r2v, 1 - d - r2v), - 'CT': (1 - arrow_sep, arrow_h_offset), - 'TC': (1 + arrow_sep, 1 - arrow_h_offset), - 'GC': (arrow_h_offset, arrow_sep), - 'CG': (1 - arrow_h_offset, -arrow_sep)} - - if normalize_data: - # find maximum value for rates, i.e. where keys are 2 chars long - max_val = max((v for k, v in data.items() if len(k) == 2), default=0) - # divide rates by max val, multiply by arrow scale factor - for k, v in data.items(): - data[k] = v / max_val * sf - - def draw_arrow(pair, alpha=alpha, ec=ec, labelcolor=labelcolor): - # set the length of the arrow - if display == 'length': - length = (max_head_length - + data[pair] / sf * (max_arrow_length - max_head_length)) - else: - length = max_arrow_length - # set the transparency of the arrow - if display == 'alpha': - alpha = min(data[pair] / sf, alpha) - - # set the width of the arrow - if display == 'width': - scale = data[pair] / sf - width = max_arrow_width * scale - head_width = max_head_width * scale - head_length = max_head_length * scale - else: - width = max_arrow_width - head_width = max_head_width - head_length = max_head_length - - fc = colors[pair] - ec = ec or fc - - x_scale, y_scale = deltas[pair] - x_pos, y_pos = positions[pair] - plt.arrow(x_pos, y_pos, x_scale * length, y_scale * length, - fc=fc, ec=ec, alpha=alpha, width=width, - head_width=head_width, head_length=head_length, - **arrow_params) - - # figure out coordinates for text - # if drawing relative to base: x and y are same as for arrow - # dx and dy are one arrow width left and up - # need to rotate based on direction of arrow, use x_scale and y_scale - # as sin x and cos x? - sx, cx = y_scale, x_scale - - where = label_positions[pair] - if where == 'left': - orig_position = 3 * np.array([[max_arrow_width, max_arrow_width]]) - elif where == 'absolute': - orig_position = np.array([[max_arrow_length / 2.0, - 3 * max_arrow_width]]) - elif where == 'right': - orig_position = np.array([[length - 3 * max_arrow_width, - 3 * max_arrow_width]]) - elif where == 'center': - orig_position = np.array([[length / 2.0, 3 * max_arrow_width]]) - else: - raise ValueError("Got unknown position parameter %s" % where) - - M = np.array([[cx, sx], [-sx, cx]]) - coords = np.dot(orig_position, M) + [[x_pos, y_pos]] - x, y = np.ravel(coords) - orig_label = rate_labels[pair] - label = r'$%s_{_{\mathrm{%s}}}$' % (orig_label[0], orig_label[1:]) - - plt.text(x, y, label, size=label_text_size, ha='center', va='center', - color=labelcolor or fc) - - for p in sorted(positions): - draw_arrow(p) - - -# test data -all_on_max = dict([(i, 1) for i in 'TCAG'] + - [(i + j, 0.6) for i in 'TCAG' for j in 'TCAG']) - -realistic_data = { - 'A': 0.4, - 'T': 0.3, - 'G': 0.5, - 'C': 0.2, - 'AT': 0.4, - 'AC': 0.3, - 'AG': 0.2, - 'TA': 0.2, - 'TC': 0.3, - 'TG': 0.4, - 'CT': 0.2, - 'CG': 0.3, - 'CA': 0.2, - 'GA': 0.1, - 'GT': 0.4, - 'GC': 0.1} - -extreme_data = { - 'A': 0.75, - 'T': 0.10, - 'G': 0.10, - 'C': 0.05, - 'AT': 0.6, - 'AC': 0.3, - 'AG': 0.1, - 'TA': 0.02, - 'TC': 0.3, - 'TG': 0.01, - 'CT': 0.2, - 'CG': 0.5, - 'CA': 0.2, - 'GA': 0.1, - 'GT': 0.4, - 'GC': 0.2} - -sample_data = { - 'A': 0.2137, - 'T': 0.3541, - 'G': 0.1946, - 'C': 0.2376, - 'AT': 0.0228, - 'AC': 0.0684, - 'AG': 0.2056, - 'TA': 0.0315, - 'TC': 0.0629, - 'TG': 0.0315, - 'CT': 0.1355, - 'CG': 0.0401, - 'CA': 0.0703, - 'GA': 0.1824, - 'GT': 0.0387, - 'GC': 0.1106} - - -if __name__ == '__main__': - from sys import argv - d = None - if len(argv) > 1: - if argv[1] == 'full': - d = all_on_max - scaled = False - elif argv[1] == 'extreme': - d = extreme_data - scaled = False - elif argv[1] == 'realistic': - d = realistic_data - scaled = False - elif argv[1] == 'sample': - d = sample_data - scaled = True - if d is None: - d = all_on_max - scaled = False - if len(argv) > 2: - display = argv[2] - else: - display = 'length' - - size = 4 - plt.figure(figsize=(size, size)) - - make_arrow_plot(d, display=display, linewidth=0.001, edgecolor=None, - normalize_data=scaled, head_starts_at_zero=True, size=size) - - plt.show() diff --git a/_downloads/921978eecd034ca01db2e9ec8a4cfd3f/text_rotation.ipynb b/_downloads/921978eecd034ca01db2e9ec8a4cfd3f/text_rotation.ipynb deleted file mode 100644 index 0e61a026ef3..00000000000 --- a/_downloads/921978eecd034ca01db2e9ec8a4cfd3f/text_rotation.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Default text rotation demonstration\n\n\nThe way Matplotlib does text layout by default is counter-intuitive to some, so\nthis example is designed to make it a little clearer.\n\nThe text is aligned by its bounding box (the rectangular box that surrounds the\nink rectangle). The order of operations is rotation then alignment.\nBasically, the text is centered at your x,y location, rotated around this\npoint, and then aligned according to the bounding box of the rotated text.\n\nSo if you specify left, bottom alignment, the bottom left of the\nbounding box of the rotated text will be at the x,y coordinate of the\ntext.\n\nBut a picture is worth a thousand words!\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef addtext(ax, props):\n ax.text(0.5, 0.5, 'text 0', props, rotation=0)\n ax.text(1.5, 0.5, 'text 45', props, rotation=45)\n ax.text(2.5, 0.5, 'text 135', props, rotation=135)\n ax.text(3.5, 0.5, 'text 225', props, rotation=225)\n ax.text(4.5, 0.5, 'text -45', props, rotation=-45)\n for x in range(0, 5):\n ax.scatter(x + 0.5, 0.5, color='r', alpha=0.5)\n ax.set_yticks([0, .5, 1])\n ax.set_xlim(0, 5)\n ax.grid(True)\n\n\n# the text bounding box\nbbox = {'fc': '0.8', 'pad': 0}\n\nfig, axs = plt.subplots(2, 1)\n\naddtext(axs[0], {'ha': 'center', 'va': 'center', 'bbox': bbox})\naxs[0].set_xticks(np.arange(0, 5.1, 0.5), [])\naxs[0].set_ylabel('center / center')\n\naddtext(axs[1], {'ha': 'left', 'va': 'bottom', 'bbox': bbox})\naxs[1].set_xticks(np.arange(0, 5.1, 0.5))\naxs[1].set_ylabel('left / bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/921ad1405f48b25a693bcab92b4d2492/whats_new_98_4_fancy.ipynb b/_downloads/921ad1405f48b25a693bcab92b4d2492/whats_new_98_4_fancy.ipynb deleted file mode 100644 index f22b38cfd40..00000000000 --- a/_downloads/921ad1405f48b25a693bcab92b4d2492/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================\nWhats New 0.98.4 Fancy\n======================\n\nCreate fancy box and arrow styles.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatch\nimport matplotlib.pyplot as plt\n\nfigheight = 8\nfig = plt.figure(figsize=(9, figheight), dpi=80)\nfontsize = 0.4 * fig.dpi\n\ndef make_boxstyles(ax):\n styles = mpatch.BoxStyle.get_styles()\n\n for i, (stylename, styleclass) in enumerate(sorted(styles.items())):\n ax.text(0.5, (float(len(styles)) - 0.5 - i)/len(styles), stylename,\n ha=\"center\",\n size=fontsize,\n transform=ax.transAxes,\n bbox=dict(boxstyle=stylename, fc=\"w\", ec=\"k\"))\n\ndef make_arrowstyles(ax):\n styles = mpatch.ArrowStyle.get_styles()\n\n ax.set_xlim(0, 4)\n ax.set_ylim(0, figheight)\n\n for i, (stylename, styleclass) in enumerate(sorted(styles.items())):\n y = (float(len(styles)) - 0.25 - i) # /figheight\n p = mpatch.Circle((3.2, y), 0.2, fc=\"w\")\n ax.add_patch(p)\n\n ax.annotate(stylename, (3.2, y),\n (2., y),\n # xycoords=\"figure fraction\", textcoords=\"figure fraction\",\n ha=\"right\", va=\"center\",\n size=fontsize,\n arrowprops=dict(arrowstyle=stylename,\n patchB=p,\n shrinkA=5,\n shrinkB=5,\n fc=\"w\", ec=\"k\",\n connectionstyle=\"arc3,rad=-0.05\",\n ),\n bbox=dict(boxstyle=\"square\", fc=\"w\"))\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\nax1 = fig.add_subplot(121, frameon=False, xticks=[], yticks=[])\nmake_boxstyles(ax1)\n\nax2 = fig.add_subplot(122, frameon=False, xticks=[], yticks=[])\nmake_arrowstyles(ax2)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.BoxStyle\nmatplotlib.patches.BoxStyle.get_styles\nmatplotlib.patches.ArrowStyle\nmatplotlib.patches.ArrowStyle.get_styles\nmatplotlib.axes.Axes.text\nmatplotlib.axes.Axes.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/921c6fb5aee4de7c73df68b18fa386a9/font_indexing.ipynb b/_downloads/921c6fb5aee4de7c73df68b18fa386a9/font_indexing.ipynb deleted file mode 120000 index 8925c5c5642..00000000000 --- a/_downloads/921c6fb5aee4de7c73df68b18fa386a9/font_indexing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/921c6fb5aee4de7c73df68b18fa386a9/font_indexing.ipynb \ No newline at end of file diff --git a/_downloads/92216abe86c9aba9fc02160c65415efb/contour_manual.py b/_downloads/92216abe86c9aba9fc02160c65415efb/contour_manual.py deleted file mode 100644 index cc47bce184c..00000000000 --- a/_downloads/92216abe86c9aba9fc02160c65415efb/contour_manual.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -============== -Manual Contour -============== - -Example of displaying your own contour lines and polygons using ContourSet. -""" -import matplotlib.pyplot as plt -from matplotlib.contour import ContourSet -import matplotlib.cm as cm - - -############################################################################### -# Contour lines for each level are a list/tuple of polygons. -lines0 = [[[0, 0], [0, 4]]] -lines1 = [[[2, 0], [1, 2], [1, 3]]] -lines2 = [[[3, 0], [3, 2]], [[3, 3], [3, 4]]] # Note two lines. - -############################################################################### -# Filled contours between two levels are also a list/tuple of polygons. -# Points can be ordered clockwise or anticlockwise. -filled01 = [[[0, 0], [0, 4], [1, 3], [1, 2], [2, 0]]] -filled12 = [[[2, 0], [3, 0], [3, 2], [1, 3], [1, 2]], # Note two polygons. - [[1, 4], [3, 4], [3, 3]]] - -############################################################################### - -fig, ax = plt.subplots() - -# Filled contours using filled=True. -cs = ContourSet(ax, [0, 1, 2], [filled01, filled12], filled=True, cmap=cm.bone) -cbar = fig.colorbar(cs) - -# Contour lines (non-filled). -lines = ContourSet( - ax, [0, 1, 2], [lines0, lines1, lines2], cmap=cm.cool, linewidths=3) -cbar.add_lines(lines) - -ax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 4.5), - title='User-specified contours') - -############################################################################### -# Multiple filled contour lines can be specified in a single list of polygon -# vertices along with a list of vertex kinds (code types) as described in the -# Path class. This is particularly useful for polygons with holes. -# Here a code type of 1 is a MOVETO, and 2 is a LINETO. - -fig, ax = plt.subplots() -filled01 = [[[0, 0], [3, 0], [3, 3], [0, 3], [1, 1], [1, 2], [2, 2], [2, 1]]] -kinds01 = [[1, 2, 2, 2, 1, 2, 2, 2]] -cs = ContourSet(ax, [0, 1], [filled01], [kinds01], filled=True) -cbar = fig.colorbar(cs) - -ax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 3.5), - title='User specified filled contours with holes') - -plt.show() diff --git a/_downloads/9221cb78e333a9ede94fd29917ae5973/eventplot.ipynb b/_downloads/9221cb78e333a9ede94fd29917ae5973/eventplot.ipynb deleted file mode 120000 index deefe130e50..00000000000 --- a/_downloads/9221cb78e333a9ede94fd29917ae5973/eventplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9221cb78e333a9ede94fd29917ae5973/eventplot.ipynb \ No newline at end of file diff --git a/_downloads/922cd61ac00bed5504e646c8f4a2c371/colormap_normalizations_lognorm.ipynb b/_downloads/922cd61ac00bed5504e646c8f4a2c371/colormap_normalizations_lognorm.ipynb deleted file mode 100644 index 0ed2f570fcc..00000000000 --- a/_downloads/922cd61ac00bed5504e646c8f4a2c371/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Lognorm\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\n'''\nLognorm: Instead of pcolor log10(Z1) you can have colorbars that have\nthe exponential labels using a norm.\n'''\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out of the top right. Needs to have\n# z/colour axis on a log scale so we see both hump and spike. linear\n# scale only shows the spike.\nZ = np.exp(-X**2 - Y**2)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolor(X, Y, Z,\n norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9232c0157d571bc3502d8a1431e1431d/whats_new_98_4_legend.ipynb b/_downloads/9232c0157d571bc3502d8a1431e1431d/whats_new_98_4_legend.ipynb deleted file mode 100644 index 732bb920ad1..00000000000 --- a/_downloads/9232c0157d571bc3502d8a1431e1431d/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=======================\nWhats New 0.98.4 Legend\n=======================\n\nCreate a legend and tweak it with a shadow and a box.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nax = plt.subplot(111)\nt1 = np.arange(0.0, 1.0, 0.01)\nfor n in [1, 2, 3, 4]:\n plt.plot(t1, t1**n, label=\"n=%d\"%(n,))\n\nleg = plt.legend(loc='best', ncol=2, mode=\"expand\", shadow=True, fancybox=True)\nleg.get_frame().set_alpha(0.5)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.legend.Legend\nmatplotlib.legend.Legend.get_frame" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/923508d9a74fe2831eee5093433f94c5/customizing.py b/_downloads/923508d9a74fe2831eee5093433f94c5/customizing.py deleted file mode 120000 index 39a8ed96dd1..00000000000 --- a/_downloads/923508d9a74fe2831eee5093433f94c5/customizing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/923508d9a74fe2831eee5093433f94c5/customizing.py \ No newline at end of file diff --git a/_downloads/9238e713e20cd99a2b4d8c32732580ca/demo_colorbar_with_inset_locator.py b/_downloads/9238e713e20cd99a2b4d8c32732580ca/demo_colorbar_with_inset_locator.py deleted file mode 100644 index 0133da3f22b..00000000000 --- a/_downloads/9238e713e20cd99a2b4d8c32732580ca/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -============================================================== -Controlling the position and size of colorbars with Inset Axes -============================================================== - -This example shows how to control the position, height, and width of -colorbars using `~mpl_toolkits.axes_grid1.inset_axes`. - -Controlling the placement of the inset axes is done similarly as that of the -legend: either by providing a location option ("upper right", "best", ...), or -by providing a locator with respect to the parent bbox. - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.inset_locator import inset_axes - -fig, (ax1, ax2) = plt.subplots(1, 2, figsize=[6, 3]) - -axins1 = inset_axes(ax1, - width="50%", # width = 50% of parent_bbox width - height="5%", # height : 5% - loc='upper right') - -im1 = ax1.imshow([[1, 2], [2, 3]]) -fig.colorbar(im1, cax=axins1, orientation="horizontal", ticks=[1, 2, 3]) -axins1.xaxis.set_ticks_position("bottom") - -axins = inset_axes(ax2, - width="5%", # width = 5% of parent_bbox width - height="50%", # height : 50% - loc='lower left', - bbox_to_anchor=(1.05, 0., 1, 1), - bbox_transform=ax2.transAxes, - borderpad=0, - ) - -# Controlling the placement of the inset axes is basically same as that -# of the legend. you may want to play with the borderpad value and -# the bbox_to_anchor coordinate. - -im = ax2.imshow([[1, 2], [2, 3]]) -fig.colorbar(im, cax=axins, ticks=[1, 2, 3]) - -plt.show() diff --git a/_downloads/923b968b7e947287d0f379782cff96df/demo_edge_colorbar.py b/_downloads/923b968b7e947287d0f379782cff96df/demo_edge_colorbar.py deleted file mode 120000 index 6f1c6270837..00000000000 --- a/_downloads/923b968b7e947287d0f379782cff96df/demo_edge_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/923b968b7e947287d0f379782cff96df/demo_edge_colorbar.py \ No newline at end of file diff --git a/_downloads/9246e7c5a498c4db24332803a8baa78d/simple_axisline2.ipynb b/_downloads/9246e7c5a498c4db24332803a8baa78d/simple_axisline2.ipynb deleted file mode 100644 index 43ae58490ae..00000000000 --- a/_downloads/9246e7c5a498c4db24332803a8baa78d/simple_axisline2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axisartist.axislines import SubplotZero\nimport numpy as np\n\nfig = plt.figure(figsize=(4, 3))\n\n# a subplot with two additional axis, \"xzero\" and \"yzero\". \"xzero\" is\n# y=0 line, and \"yzero\" is x=0 line.\nax = SubplotZero(fig, 1, 1, 1)\nfig.add_subplot(ax)\n\n# make xzero axis (horizontal axis line through y=0) visible.\nax.axis[\"xzero\"].set_visible(True)\nax.axis[\"xzero\"].label.set_text(\"Axis Zero\")\n\n# make other axis (bottom, top, right) invisible.\nfor n in [\"bottom\", \"top\", \"right\"]:\n ax.axis[n].set_visible(False)\n\nxx = np.arange(0, 2*np.pi, 0.01)\nax.plot(xx, np.sin(xx))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/924a8aca05ebf5d011b4381443b3a0f3/masked_demo.py b/_downloads/924a8aca05ebf5d011b4381443b3a0f3/masked_demo.py deleted file mode 120000 index fcb10b952df..00000000000 --- a/_downloads/924a8aca05ebf5d011b4381443b3a0f3/masked_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/924a8aca05ebf5d011b4381443b3a0f3/masked_demo.py \ No newline at end of file diff --git a/_downloads/924dc25d58ae9f7e6d19e501e3dcaf9c/embedding_in_qt_sgskip.py b/_downloads/924dc25d58ae9f7e6d19e501e3dcaf9c/embedding_in_qt_sgskip.py deleted file mode 120000 index dcbbb4ada88..00000000000 --- a/_downloads/924dc25d58ae9f7e6d19e501e3dcaf9c/embedding_in_qt_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/924dc25d58ae9f7e6d19e501e3dcaf9c/embedding_in_qt_sgskip.py \ No newline at end of file diff --git a/_downloads/9257343d3945a66a96513d90afe47c74/canvasagg.py b/_downloads/9257343d3945a66a96513d90afe47c74/canvasagg.py deleted file mode 120000 index 85c220041ad..00000000000 --- a/_downloads/9257343d3945a66a96513d90afe47c74/canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9257343d3945a66a96513d90afe47c74/canvasagg.py \ No newline at end of file diff --git a/_downloads/92691ce6a72fa350c3c753696b255b7a/bachelors_degrees_by_gender.ipynb b/_downloads/92691ce6a72fa350c3c753696b255b7a/bachelors_degrees_by_gender.ipynb deleted file mode 120000 index 042af0c398e..00000000000 --- a/_downloads/92691ce6a72fa350c3c753696b255b7a/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/92691ce6a72fa350c3c753696b255b7a/bachelors_degrees_by_gender.ipynb \ No newline at end of file diff --git a/_downloads/9274edc85a4669ec786beaf48d13e1a7/demo_floating_axes.ipynb b/_downloads/9274edc85a4669ec786beaf48d13e1a7/demo_floating_axes.ipynb deleted file mode 120000 index 0023d304c20..00000000000 --- a/_downloads/9274edc85a4669ec786beaf48d13e1a7/demo_floating_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9274edc85a4669ec786beaf48d13e1a7/demo_floating_axes.ipynb \ No newline at end of file diff --git a/_downloads/9275b8abc9678a7aa8b8a82ea44c1435/scatter_demo2.py b/_downloads/9275b8abc9678a7aa8b8a82ea44c1435/scatter_demo2.py deleted file mode 120000 index fb02c2f0f17..00000000000 --- a/_downloads/9275b8abc9678a7aa8b8a82ea44c1435/scatter_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9275b8abc9678a7aa8b8a82ea44c1435/scatter_demo2.py \ No newline at end of file diff --git a/_downloads/927fb06dbfe29efc54db97a6e6dc2cf3/annotate_simple01.py b/_downloads/927fb06dbfe29efc54db97a6e6dc2cf3/annotate_simple01.py deleted file mode 120000 index 83cb2027f70..00000000000 --- a/_downloads/927fb06dbfe29efc54db97a6e6dc2cf3/annotate_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/927fb06dbfe29efc54db97a6e6dc2cf3/annotate_simple01.py \ No newline at end of file diff --git a/_downloads/928a69cc266f0e5b56506f0c2d203582/anchored_artists.ipynb b/_downloads/928a69cc266f0e5b56506f0c2d203582/anchored_artists.ipynb deleted file mode 120000 index e111c094dde..00000000000 --- a/_downloads/928a69cc266f0e5b56506f0c2d203582/anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/928a69cc266f0e5b56506f0c2d203582/anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/9290bfea41e1fbe2766c66b20a5c773e/colormap_normalizations_custom.ipynb b/_downloads/9290bfea41e1fbe2766c66b20a5c773e/colormap_normalizations_custom.ipynb deleted file mode 100644 index 532de3439d4..00000000000 --- a/_downloads/9290bfea41e1fbe2766c66b20a5c773e/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Custom\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\nN = 100\n'''\nCustom Norm: An example with a customized normalization. This one\nuses the example above, and normalizes the negative data differently\nfrom the positive.\n'''\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n\n# Example of making your own norm. Also see matplotlib.colors.\n# From Joe Kington: This one gives two different linear ramps:\nclass MidpointNormalize(colors.Normalize):\n def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False):\n self.midpoint = midpoint\n colors.Normalize.__init__(self, vmin, vmax, clip)\n\n def __call__(self, value, clip=None):\n # I'm ignoring masked values and all kinds of edge cases to make a\n # simple example...\n x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1]\n return np.ma.masked_array(np.interp(value, x, y))\n\n\n#####\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=MidpointNormalize(midpoint=0.),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/92ad99e38c13085980b2b16cd1059f47/log_test.ipynb b/_downloads/92ad99e38c13085980b2b16cd1059f47/log_test.ipynb deleted file mode 100644 index 3215172f893..00000000000 --- a/_downloads/92ad99e38c13085980b2b16cd1059f47/log_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Log Axis\n\n\nThis is an example of assigning a log-scale for the x-axis using\n`semilogx`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, ax = plt.subplots()\n\ndt = 0.01\nt = np.arange(dt, 20.0, dt)\n\nax.semilogx(t, np.exp(-t / 5.0))\nax.grid()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/92b0214ba24dc53057dfbaac5a9bc8ab/path_tutorial.py b/_downloads/92b0214ba24dc53057dfbaac5a9bc8ab/path_tutorial.py deleted file mode 120000 index 8b0cd1cb891..00000000000 --- a/_downloads/92b0214ba24dc53057dfbaac5a9bc8ab/path_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/92b0214ba24dc53057dfbaac5a9bc8ab/path_tutorial.py \ No newline at end of file diff --git a/_downloads/92cb5421e63aa4f5f33bfeca0ebd0723/scatter_masked.py b/_downloads/92cb5421e63aa4f5f33bfeca0ebd0723/scatter_masked.py deleted file mode 120000 index 60226366a4c..00000000000 --- a/_downloads/92cb5421e63aa4f5f33bfeca0ebd0723/scatter_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/92cb5421e63aa4f5f33bfeca0ebd0723/scatter_masked.py \ No newline at end of file diff --git a/_downloads/92d1084c1a1529237127123b55900bdf/image_zcoord.ipynb b/_downloads/92d1084c1a1529237127123b55900bdf/image_zcoord.ipynb deleted file mode 120000 index 315693db1aa..00000000000 --- a/_downloads/92d1084c1a1529237127123b55900bdf/image_zcoord.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/92d1084c1a1529237127123b55900bdf/image_zcoord.ipynb \ No newline at end of file diff --git a/_downloads/92e2b1303efba64a799c581acc09e30a/boxplot_color.ipynb b/_downloads/92e2b1303efba64a799c581acc09e30a/boxplot_color.ipynb deleted file mode 120000 index d66aece8300..00000000000 --- a/_downloads/92e2b1303efba64a799c581acc09e30a/boxplot_color.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/92e2b1303efba64a799c581acc09e30a/boxplot_color.ipynb \ No newline at end of file diff --git a/_downloads/92e6bde5c7d07a4e36f7e960f298c5c2/eventcollection_demo.py b/_downloads/92e6bde5c7d07a4e36f7e960f298c5c2/eventcollection_demo.py deleted file mode 120000 index 24ed5253f9d..00000000000 --- a/_downloads/92e6bde5c7d07a4e36f7e960f298c5c2/eventcollection_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/92e6bde5c7d07a4e36f7e960f298c5c2/eventcollection_demo.py \ No newline at end of file diff --git a/_downloads/92ea6355320503cc87722e790f7c5baa/create_subplots.ipynb b/_downloads/92ea6355320503cc87722e790f7c5baa/create_subplots.ipynb deleted file mode 120000 index f37f296e597..00000000000 --- a/_downloads/92ea6355320503cc87722e790f7c5baa/create_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/92ea6355320503cc87722e790f7c5baa/create_subplots.ipynb \ No newline at end of file diff --git a/_downloads/92fab9917ca6fa9ac0463f184d217ecf/polar_demo.py b/_downloads/92fab9917ca6fa9ac0463f184d217ecf/polar_demo.py deleted file mode 120000 index af79fbbb122..00000000000 --- a/_downloads/92fab9917ca6fa9ac0463f184d217ecf/polar_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/92fab9917ca6fa9ac0463f184d217ecf/polar_demo.py \ No newline at end of file diff --git a/_downloads/9317d1881ed154b82d3129aeb0e94802/boxplot_demo_pyplot.py b/_downloads/9317d1881ed154b82d3129aeb0e94802/boxplot_demo_pyplot.py deleted file mode 120000 index 516bd206ecb..00000000000 --- a/_downloads/9317d1881ed154b82d3129aeb0e94802/boxplot_demo_pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9317d1881ed154b82d3129aeb0e94802/boxplot_demo_pyplot.py \ No newline at end of file diff --git a/_downloads/9331041b9cf03f632004f527ea92680e/irregulardatagrid.py b/_downloads/9331041b9cf03f632004f527ea92680e/irregulardatagrid.py deleted file mode 120000 index 99636342b97..00000000000 --- a/_downloads/9331041b9cf03f632004f527ea92680e/irregulardatagrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9331041b9cf03f632004f527ea92680e/irregulardatagrid.py \ No newline at end of file diff --git a/_downloads/93371c28a34c59ae450e6f8ac33c672a/autowrap.py b/_downloads/93371c28a34c59ae450e6f8ac33c672a/autowrap.py deleted file mode 120000 index 9f2da6de8d7..00000000000 --- a/_downloads/93371c28a34c59ae450e6f8ac33c672a/autowrap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/93371c28a34c59ae450e6f8ac33c672a/autowrap.py \ No newline at end of file diff --git a/_downloads/9343625c98c6bbc87a39b45062e6965f/dfrac_demo.ipynb b/_downloads/9343625c98c6bbc87a39b45062e6965f/dfrac_demo.ipynb deleted file mode 120000 index 61661383656..00000000000 --- a/_downloads/9343625c98c6bbc87a39b45062e6965f/dfrac_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9343625c98c6bbc87a39b45062e6965f/dfrac_demo.ipynb \ No newline at end of file diff --git a/_downloads/93445b35a7a868f6808f2b8566d5a998/line_demo_dash_control.ipynb b/_downloads/93445b35a7a868f6808f2b8566d5a998/line_demo_dash_control.ipynb deleted file mode 100644 index f921a391f2b..00000000000 --- a/_downloads/93445b35a7a868f6808f2b8566d5a998/line_demo_dash_control.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customizing dashed line styles\n\n\nThe dashing of a line is controlled via a dash sequence. It can be modified\nusing `.Line2D.set_dashes`.\n\nThe dash sequence is a series of on/off lengths in points, e.g.\n``[3, 1]`` would be 3pt long lines separated by 1pt spaces.\n\nSome functions like `.Axes.plot` support passing Line properties as keyword\narguments. In such a case, you can already set the dashing when creating the\nline.\n\n*Note*: The dash style can also be configured via a\n:doc:`property_cycle `\nby passing a list of dash sequences using the keyword *dashes* to the\ncycler. This is not shown within this example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = np.linspace(0, 10, 500)\ny = np.sin(x)\n\nfig, ax = plt.subplots()\n\n# Using set_dashes() to modify dashing of an existing line\nline1, = ax.plot(x, y, label='Using set_dashes()')\nline1.set_dashes([2, 2, 10, 2]) # 2pt line, 2pt break, 10pt line, 2pt break\n\n# Using plot(..., dashes=...) to set the dashing when creating a line\nline2, = ax.plot(x, y - 0.2, dashes=[6, 2], label='Using the dashes parameter')\n\nax.legend()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/934ae4fd92aea14e1fc7c0cb614f723d/dynamic_image.py b/_downloads/934ae4fd92aea14e1fc7c0cb614f723d/dynamic_image.py deleted file mode 120000 index 6062e890a26..00000000000 --- a/_downloads/934ae4fd92aea14e1fc7c0cb614f723d/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/934ae4fd92aea14e1fc7c0cb614f723d/dynamic_image.py \ No newline at end of file diff --git a/_downloads/934f3919daf6b6a47f2a033b42b3e52a/fill_spiral.ipynb b/_downloads/934f3919daf6b6a47f2a033b42b3e52a/fill_spiral.ipynb deleted file mode 100644 index 024feb573da..00000000000 --- a/_downloads/934f3919daf6b6a47f2a033b42b3e52a/fill_spiral.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fill Spiral\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\ntheta = np.arange(0, 8*np.pi, 0.1)\na = 1\nb = .2\n\nfor dt in np.arange(0, 2*np.pi, np.pi/2.0):\n\n x = a*np.cos(theta + dt)*np.exp(b*theta)\n y = a*np.sin(theta + dt)*np.exp(b*theta)\n\n dt = dt + np.pi/4.0\n\n x2 = a*np.cos(theta + dt)*np.exp(b*theta)\n y2 = a*np.sin(theta + dt)*np.exp(b*theta)\n\n xf = np.concatenate((x, x2[::-1]))\n yf = np.concatenate((y, y2[::-1]))\n\n p1 = plt.fill(xf, yf)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/934fb1dde12c24144bb4c0afbf3f0164/scatter_demo2.ipynb b/_downloads/934fb1dde12c24144bb4c0afbf3f0164/scatter_demo2.ipynb deleted file mode 120000 index 8b5502c8413..00000000000 --- a/_downloads/934fb1dde12c24144bb4c0afbf3f0164/scatter_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/934fb1dde12c24144bb4c0afbf3f0164/scatter_demo2.ipynb \ No newline at end of file diff --git a/_downloads/935236d692582223af3faf13103c5390/hist.ipynb b/_downloads/935236d692582223af3faf13103c5390/hist.ipynb deleted file mode 120000 index 67dc4b36f5a..00000000000 --- a/_downloads/935236d692582223af3faf13103c5390/hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/935236d692582223af3faf13103c5390/hist.ipynb \ No newline at end of file diff --git a/_downloads/935352c70f05471d68bf62e15ede2c4e/font_family_rc_sgskip.ipynb b/_downloads/935352c70f05471d68bf62e15ede2c4e/font_family_rc_sgskip.ipynb deleted file mode 120000 index 0eae8b14306..00000000000 --- a/_downloads/935352c70f05471d68bf62e15ede2c4e/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/935352c70f05471d68bf62e15ede2c4e/font_family_rc_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/93647a62d161726170f5579159704ca5/dolphin.py b/_downloads/93647a62d161726170f5579159704ca5/dolphin.py deleted file mode 100644 index 90d48469f42..00000000000 --- a/_downloads/93647a62d161726170f5579159704ca5/dolphin.py +++ /dev/null @@ -1,124 +0,0 @@ -""" -======== -Dolphins -======== - -This example shows how to draw, and manipulate shapes given vertices -and nodes using the `~.path.Path`, `~.patches.PathPatch` and -`~matplotlib.transforms` classes. -""" - -import matplotlib.cm as cm -import matplotlib.pyplot as plt -from matplotlib.patches import Circle, PathPatch -from matplotlib.path import Path -from matplotlib.transforms import Affine2D -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -r = np.random.rand(50) -t = np.random.rand(50) * np.pi * 2.0 -x = r * np.cos(t) -y = r * np.sin(t) - -fig, ax = plt.subplots(figsize=(6, 6)) -circle = Circle((0, 0), 1, facecolor='none', - edgecolor=(0, 0.8, 0.8), linewidth=3, alpha=0.5) -ax.add_patch(circle) - -im = plt.imshow(np.random.random((100, 100)), - origin='lower', cmap=cm.winter, - interpolation='spline36', - extent=([-1, 1, -1, 1])) -im.set_clip_path(circle) - -plt.plot(x, y, 'o', color=(0.9, 0.9, 1.0), alpha=0.8) - -# Dolphin from OpenClipart library by Andy Fitzsimon -# -# -# -# -# - -dolphin = """ -M -0.59739425,160.18173 C -0.62740401,160.18885 -0.57867129,160.11183 --0.57867129,160.11183 C -0.57867129,160.11183 -0.5438361,159.89315 --0.39514638,159.81496 C -0.24645668,159.73678 -0.18316813,159.71981 --0.18316813,159.71981 C -0.18316813,159.71981 -0.10322971,159.58124 --0.057804323,159.58725 C -0.029723983,159.58913 -0.061841603,159.60356 --0.071265813,159.62815 C -0.080250183,159.65325 -0.082918513,159.70554 --0.061841203,159.71248 C -0.040763903,159.7194 -0.0066711426,159.71091 -0.077336307,159.73612 C 0.16879567,159.76377 0.28380306,159.86448 -0.31516668,159.91533 C 0.3465303,159.96618 0.5011127,160.1771 -0.5011127,160.1771 C 0.63668998,160.19238 0.67763022,160.31259 -0.66556395,160.32668 C 0.65339985,160.34212 0.66350443,160.33642 -0.64907098,160.33088 C 0.63463742,160.32533 0.61309688,160.297 -0.5789627,160.29339 C 0.54348657,160.28968 0.52329693,160.27674 -0.50728856,160.27737 C 0.49060916,160.27795 0.48965803,160.31565 -0.46114204,160.33673 C 0.43329696,160.35786 0.4570711,160.39871 -0.43309565,160.40685 C 0.4105108,160.41442 0.39416631,160.33027 -0.3954995,160.2935 C 0.39683269,160.25672 0.43807996,160.21522 -0.44567915,160.19734 C 0.45327833,160.17946 0.27946869,159.9424 --0.061852613,159.99845 C -0.083965233,160.0427 -0.26176109,160.06683 --0.26176109,160.06683 C -0.30127962,160.07028 -0.21167141,160.09731 --0.24649368,160.1011 C -0.32642366,160.11569 -0.34521187,160.06895 --0.40622293,160.0819 C -0.467234,160.09485 -0.56738444,160.17461 --0.59739425,160.18173 -""" - -vertices = [] -codes = [] -parts = dolphin.split() -i = 0 -code_map = { - 'M': (Path.MOVETO, 1), - 'C': (Path.CURVE4, 3), - 'L': (Path.LINETO, 1)} - -while i < len(parts): - code = parts[i] - path_code, npoints = code_map[code] - codes.extend([path_code] * npoints) - vertices.extend([[float(x) for x in y.split(',')] for y in - parts[i + 1:i + npoints + 1]]) - i += npoints + 1 -vertices = np.array(vertices, float) -vertices[:, 1] -= 160 - -dolphin_path = Path(vertices, codes) -dolphin_patch = PathPatch(dolphin_path, facecolor=(0.6, 0.6, 0.6), - edgecolor=(0.0, 0.0, 0.0)) -ax.add_patch(dolphin_patch) - -vertices = Affine2D().rotate_deg(60).transform(vertices) -dolphin_path2 = Path(vertices, codes) -dolphin_patch2 = PathPatch(dolphin_path2, facecolor=(0.5, 0.5, 0.5), - edgecolor=(0.0, 0.0, 0.0)) -ax.add_patch(dolphin_patch2) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.patches.Circle -matplotlib.axes.Axes.add_patch -matplotlib.transforms -matplotlib.transforms.Affine2D -matplotlib.transforms.Affine2D.rotate_deg diff --git a/_downloads/936601527b3f0d2faf49eb05960c7eb7/tricontourf3d.py b/_downloads/936601527b3f0d2faf49eb05960c7eb7/tricontourf3d.py deleted file mode 100644 index d25b2dbd1ea..00000000000 --- a/_downloads/936601527b3f0d2faf49eb05960c7eb7/tricontourf3d.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -================================= -Triangular 3D filled contour plot -================================= - -Filled contour plots of unstructured triangular grids. - -The data used is the same as in the second plot of trisurf3d_demo2. -tricontour3d_demo shows the unfilled version of this example. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -# First create the x, y, z coordinates of the points. -n_angles = 48 -n_radii = 8 -min_radius = 0.25 - -# Create the mesh in polar coordinates and compute x, y, z. -radii = np.linspace(min_radius, 0.95, n_radii) -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi/n_angles - -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -z = (np.cos(radii)*np.cos(3*angles)).flatten() - -# Create a custom triangulation. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.tricontourf(triang, z, cmap=plt.cm.CMRmap) - -# Customize the view angle so it's easier to understand the plot. -ax.view_init(elev=45.) - -plt.show() diff --git a/_downloads/9375f551ad4e6bbf85c1e2386fb6ccb0/gallery_python.zip b/_downloads/9375f551ad4e6bbf85c1e2386fb6ccb0/gallery_python.zip deleted file mode 120000 index 4b40523fd5b..00000000000 --- a/_downloads/9375f551ad4e6bbf85c1e2386fb6ccb0/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9375f551ad4e6bbf85c1e2386fb6ccb0/gallery_python.zip \ No newline at end of file diff --git a/_downloads/937f13f5abdaa4c95fc70e4a01013255/demo_ticklabel_direction.ipynb b/_downloads/937f13f5abdaa4c95fc70e4a01013255/demo_ticklabel_direction.ipynb deleted file mode 100644 index ed27890a74c..00000000000 --- a/_downloads/937f13f5abdaa4c95fc70e4a01013255/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Ticklabel Direction\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.axislines as axislines\n\n\ndef setup_axes(fig, rect):\n ax = axislines.Subplot(fig, rect)\n fig.add_subplot(ax)\n\n ax.set_yticks([0.2, 0.8])\n ax.set_xticks([0.2, 0.8])\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 3))\nfig.subplots_adjust(bottom=0.2)\n\nax = setup_axes(fig, 131)\nfor axis in ax.axis.values():\n axis.major_ticks.set_tick_out(True)\n# or you can simply do \"ax.axis[:].major_ticks.set_tick_out(True)\"\n\nax = setup_axes(fig, 132)\nax.axis[\"left\"].set_axis_direction(\"right\")\nax.axis[\"bottom\"].set_axis_direction(\"top\")\nax.axis[\"right\"].set_axis_direction(\"left\")\nax.axis[\"top\"].set_axis_direction(\"bottom\")\n\nax = setup_axes(fig, 133)\nax.axis[\"left\"].set_axis_direction(\"right\")\nax.axis[:].major_ticks.set_tick_out(True)\n\nax.axis[\"left\"].label.set_text(\"Long Label Left\")\nax.axis[\"bottom\"].label.set_text(\"Label Bottom\")\nax.axis[\"right\"].label.set_text(\"Long Label Right\")\nax.axis[\"right\"].label.set_visible(True)\nax.axis[\"left\"].label.set_pad(0)\nax.axis[\"bottom\"].label.set_pad(10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/938359bcbaae16432b778aecd07ff623/check_buttons.py b/_downloads/938359bcbaae16432b778aecd07ff623/check_buttons.py deleted file mode 120000 index 5078e0ed6ff..00000000000 --- a/_downloads/938359bcbaae16432b778aecd07ff623/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/938359bcbaae16432b778aecd07ff623/check_buttons.py \ No newline at end of file diff --git a/_downloads/938c0af578c28a8ac016fcfd46e7a2b6/figure_axes_enter_leave.ipynb b/_downloads/938c0af578c28a8ac016fcfd46e7a2b6/figure_axes_enter_leave.ipynb deleted file mode 120000 index c144658ae41..00000000000 --- a/_downloads/938c0af578c28a8ac016fcfd46e7a2b6/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/938c0af578c28a8ac016fcfd46e7a2b6/figure_axes_enter_leave.ipynb \ No newline at end of file diff --git a/_downloads/938f0150227973620760a897733f7aae/mri_demo.ipynb b/_downloads/938f0150227973620760a897733f7aae/mri_demo.ipynb deleted file mode 100644 index 29a6c00487b..00000000000 --- a/_downloads/938f0150227973620760a897733f7aae/mri_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# MRI\n\n\nThis example illustrates how to read an image (of an MRI) into a NumPy\narray, and display it in greyscale using `imshow`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport numpy as np\n\n\n# Data are 256x256 16 bit integers.\nwith cbook.get_sample_data('s1045.ima.gz') as dfile:\n im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256))\n\nfig, ax = plt.subplots(num=\"MRI_demo\")\nax.imshow(im, cmap=\"gray\")\nax.axis('off')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9396d1efe66ddb87f0dd83cfa1262030/align_ylabels.py b/_downloads/9396d1efe66ddb87f0dd83cfa1262030/align_ylabels.py deleted file mode 120000 index bcf4c0707c5..00000000000 --- a/_downloads/9396d1efe66ddb87f0dd83cfa1262030/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9396d1efe66ddb87f0dd83cfa1262030/align_ylabels.py \ No newline at end of file diff --git a/_downloads/93b2b8790ffbed3a861a526174262f15/annotation_basic.py b/_downloads/93b2b8790ffbed3a861a526174262f15/annotation_basic.py deleted file mode 120000 index 32cec9b47a7..00000000000 --- a/_downloads/93b2b8790ffbed3a861a526174262f15/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/93b2b8790ffbed3a861a526174262f15/annotation_basic.py \ No newline at end of file diff --git a/_downloads/93b34e52ed47576dcc8ea60110b1e60c/cohere.ipynb b/_downloads/93b34e52ed47576dcc8ea60110b1e60c/cohere.ipynb deleted file mode 120000 index 4251bf7eb8f..00000000000 --- a/_downloads/93b34e52ed47576dcc8ea60110b1e60c/cohere.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/93b34e52ed47576dcc8ea60110b1e60c/cohere.ipynb \ No newline at end of file diff --git a/_downloads/93bec028cf5664bc4dfb8a8ca1f825c6/lorenz_attractor.py b/_downloads/93bec028cf5664bc4dfb8a8ca1f825c6/lorenz_attractor.py deleted file mode 120000 index b1f210dab3c..00000000000 --- a/_downloads/93bec028cf5664bc4dfb8a8ca1f825c6/lorenz_attractor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/93bec028cf5664bc4dfb8a8ca1f825c6/lorenz_attractor.py \ No newline at end of file diff --git a/_downloads/93c43c5c6df08471fcae1128d014ef32/inset_locator_demo2.py b/_downloads/93c43c5c6df08471fcae1128d014ef32/inset_locator_demo2.py deleted file mode 120000 index 70b4f952101..00000000000 --- a/_downloads/93c43c5c6df08471fcae1128d014ef32/inset_locator_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/93c43c5c6df08471fcae1128d014ef32/inset_locator_demo2.py \ No newline at end of file diff --git a/_downloads/93c6f9cf47cda772b4c5cc614ebfd9a8/fancytextbox_demo.ipynb b/_downloads/93c6f9cf47cda772b4c5cc614ebfd9a8/fancytextbox_demo.ipynb deleted file mode 100644 index 0401bed942a..00000000000 --- a/_downloads/93c6f9cf47cda772b4c5cc614ebfd9a8/fancytextbox_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fancytextbox Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nplt.text(0.6, 0.7, \"eggs\", size=50, rotation=30.,\n ha=\"center\", va=\"center\",\n bbox=dict(boxstyle=\"round\",\n ec=(1., 0.5, 0.5),\n fc=(1., 0.8, 0.8),\n )\n )\n\nplt.text(0.55, 0.6, \"spam\", size=50, rotation=-25.,\n ha=\"right\", va=\"top\",\n bbox=dict(boxstyle=\"square\",\n ec=(1., 0.5, 0.5),\n fc=(1., 0.8, 0.8),\n )\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/93d0362a5c2880c9101fc212dc9a62ef/transforms_tutorial.py b/_downloads/93d0362a5c2880c9101fc212dc9a62ef/transforms_tutorial.py deleted file mode 120000 index d13f2f51ce5..00000000000 --- a/_downloads/93d0362a5c2880c9101fc212dc9a62ef/transforms_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/93d0362a5c2880c9101fc212dc9a62ef/transforms_tutorial.py \ No newline at end of file diff --git a/_downloads/93d2cd17c904f1099d2c8ee9c26bec1c/sankey_basics.ipynb b/_downloads/93d2cd17c904f1099d2c8ee9c26bec1c/sankey_basics.ipynb deleted file mode 120000 index 38c49d6b02c..00000000000 --- a/_downloads/93d2cd17c904f1099d2c8ee9c26bec1c/sankey_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/93d2cd17c904f1099d2c8ee9c26bec1c/sankey_basics.ipynb \ No newline at end of file diff --git a/_downloads/93d69c4fd5834500cc4fe59677313bf4/gradient_bar.py b/_downloads/93d69c4fd5834500cc4fe59677313bf4/gradient_bar.py deleted file mode 120000 index a4ca40d906b..00000000000 --- a/_downloads/93d69c4fd5834500cc4fe59677313bf4/gradient_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/93d69c4fd5834500cc4fe59677313bf4/gradient_bar.py \ No newline at end of file diff --git a/_downloads/93db2677cd0b2ce1b55df1ee44934043/collections.ipynb b/_downloads/93db2677cd0b2ce1b55df1ee44934043/collections.ipynb deleted file mode 120000 index 1698e50f579..00000000000 --- a/_downloads/93db2677cd0b2ce1b55df1ee44934043/collections.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/93db2677cd0b2ce1b55df1ee44934043/collections.ipynb \ No newline at end of file diff --git a/_downloads/93f4fc631365c60c37210fbbdff7ffd2/contour3d.ipynb b/_downloads/93f4fc631365c60c37210fbbdff7ffd2/contour3d.ipynb deleted file mode 100644 index 13e79a94394..00000000000 --- a/_downloads/93f4fc631365c60c37210fbbdff7ffd2/contour3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================================================\nDemonstrates plotting contour (level) curves in 3D\n==================================================\n\nThis is like a contour plot in 2D except that the f(x,y)=c curve is plotted\non the plane z=c.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot contour curves\ncset = ax.contour(X, Y, Z, cmap=cm.coolwarm)\n\nax.clabel(cset, fontsize=9, inline=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/93f600c1c76b79b06d7f7da46eda042c/simple_plot.ipynb b/_downloads/93f600c1c76b79b06d7f7da46eda042c/simple_plot.ipynb deleted file mode 100644 index bcae9728459..00000000000 --- a/_downloads/93f600c1c76b79b06d7f7da46eda042c/simple_plot.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Plot\n\n\nCreate a simple plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Data for plotting\nt = np.arange(0.0, 2.0, 0.01)\ns = 1 + np.sin(2 * np.pi * t)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\nax.set(xlabel='time (s)', ylabel='voltage (mV)',\n title='About as simple as it gets, folks')\nax.grid()\n\nfig.savefig(\"test.png\")\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.pyplot.subplots\nmatplotlib.figure.Figure.savefig" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/93fb938ca1674b609c1d06e5d44dde8f/custom_ticker1.py b/_downloads/93fb938ca1674b609c1d06e5d44dde8f/custom_ticker1.py deleted file mode 120000 index 2442712a9e4..00000000000 --- a/_downloads/93fb938ca1674b609c1d06e5d44dde8f/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/93fb938ca1674b609c1d06e5d44dde8f/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/93fc3f095109858b59cfae104ea39356/multiple_yaxis_with_spines.py b/_downloads/93fc3f095109858b59cfae104ea39356/multiple_yaxis_with_spines.py deleted file mode 100644 index 19d41f49c21..00000000000 --- a/_downloads/93fc3f095109858b59cfae104ea39356/multiple_yaxis_with_spines.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -========================== -Multiple Yaxis With Spines -========================== - -Create multiple y axes with a shared x axis. This is done by creating -a `~.axes.Axes.twinx` axes, turning all spines but the right one invisible -and offset its position using `~.spines.Spine.set_position`. - -Note that this approach uses `matplotlib.axes.Axes` and their -:class:`Spines<~matplotlib.spines.Spine>`. An alternative approach for parasite -axes is shown in the :doc:`/gallery/axisartist/demo_parasite_axes` and -:doc:`/gallery/axisartist/demo_parasite_axes2` examples. -""" -import matplotlib.pyplot as plt - - -def make_patch_spines_invisible(ax): - ax.set_frame_on(True) - ax.patch.set_visible(False) - for sp in ax.spines.values(): - sp.set_visible(False) - - -fig, host = plt.subplots() -fig.subplots_adjust(right=0.75) - -par1 = host.twinx() -par2 = host.twinx() - -# Offset the right spine of par2. The ticks and label have already been -# placed on the right by twinx above. -par2.spines["right"].set_position(("axes", 1.2)) -# Having been created by twinx, par2 has its frame off, so the line of its -# detached spine is invisible. First, activate the frame but make the patch -# and spines invisible. -make_patch_spines_invisible(par2) -# Second, show the right spine. -par2.spines["right"].set_visible(True) - -p1, = host.plot([0, 1, 2], [0, 1, 2], "b-", label="Density") -p2, = par1.plot([0, 1, 2], [0, 3, 2], "r-", label="Temperature") -p3, = par2.plot([0, 1, 2], [50, 30, 15], "g-", label="Velocity") - -host.set_xlim(0, 2) -host.set_ylim(0, 2) -par1.set_ylim(0, 4) -par2.set_ylim(1, 65) - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par1.set_ylabel("Temperature") -par2.set_ylabel("Velocity") - -host.yaxis.label.set_color(p1.get_color()) -par1.yaxis.label.set_color(p2.get_color()) -par2.yaxis.label.set_color(p3.get_color()) - -tkw = dict(size=4, width=1.5) -host.tick_params(axis='y', colors=p1.get_color(), **tkw) -par1.tick_params(axis='y', colors=p2.get_color(), **tkw) -par2.tick_params(axis='y', colors=p3.get_color(), **tkw) -host.tick_params(axis='x', **tkw) - -lines = [p1, p2, p3] - -host.legend(lines, [l.get_label() for l in lines]) - -plt.show() diff --git a/_downloads/94027cd10e1f002a45d34cfae40d7d0a/annotate_with_units.ipynb b/_downloads/94027cd10e1f002a45d34cfae40d7d0a/annotate_with_units.ipynb deleted file mode 100644 index 3964567c7fc..00000000000 --- a/_downloads/94027cd10e1f002a45d34cfae40d7d0a/annotate_with_units.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotation with units\n\n\nThe example illustrates how to create text and arrow\nannotations using a centimeter-scale plot.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom basic_units import cm\n\nfig, ax = plt.subplots()\n\nax.annotate(\"Note 01\", [0.5*cm, 0.5*cm])\n\n# xy and text both unitized\nax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data',\n xytext=(0.8*cm, 0.95*cm), textcoords='data',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top')\n\n# mixing units w/ nonunits\nax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data',\n xytext=(0.8, 0.95), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top')\n\n\nax.set_xlim(0*cm, 4*cm)\nax.set_ylim(0*cm, 4*cm)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/940406fc01a44a341b7c2f9d7ee69be5/grayscale.py b/_downloads/940406fc01a44a341b7c2f9d7ee69be5/grayscale.py deleted file mode 100644 index bbcab02e022..00000000000 --- a/_downloads/940406fc01a44a341b7c2f9d7ee69be5/grayscale.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -===================== -Grayscale style sheet -===================== - -This example demonstrates the "grayscale" style sheet, which changes all colors -that are defined as rc parameters to grayscale. Note, however, that not all -plot elements default to colors defined by an rc parameter. - -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def color_cycle_example(ax): - L = 6 - x = np.linspace(0, L) - ncolors = len(plt.rcParams['axes.prop_cycle']) - shift = np.linspace(0, L, ncolors, endpoint=False) - for s in shift: - ax.plot(x, np.sin(x + s), 'o-') - - -def image_and_patch_example(ax): - ax.imshow(np.random.random(size=(20, 20)), interpolation='none') - c = plt.Circle((5, 5), radius=5, label='patch') - ax.add_patch(c) - - -plt.style.use('grayscale') - -fig, (ax1, ax2) = plt.subplots(ncols=2) -fig.suptitle("'grayscale' style sheet") - -color_cycle_example(ax1) -image_and_patch_example(ax2) - -plt.show() diff --git a/_downloads/940df964c05c80d436d3c80ab81a4fec/tricontour.py b/_downloads/940df964c05c80d436d3c80ab81a4fec/tricontour.py deleted file mode 120000 index 3ab03fa67c1..00000000000 --- a/_downloads/940df964c05c80d436d3c80ab81a4fec/tricontour.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/940df964c05c80d436d3c80ab81a4fec/tricontour.py \ No newline at end of file diff --git a/_downloads/941200ea5d1e35c99002f797af6ac207/surface3d_radial.ipynb b/_downloads/941200ea5d1e35c99002f797af6ac207/surface3d_radial.ipynb deleted file mode 120000 index 8cfd773ae9c..00000000000 --- a/_downloads/941200ea5d1e35c99002f797af6ac207/surface3d_radial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/941200ea5d1e35c99002f797af6ac207/surface3d_radial.ipynb \ No newline at end of file diff --git a/_downloads/9414dc1feb31e3f85dc240471f6ae002/colormap_normalizations_symlognorm.py b/_downloads/9414dc1feb31e3f85dc240471f6ae002/colormap_normalizations_symlognorm.py deleted file mode 100644 index 780381e43da..00000000000 --- a/_downloads/9414dc1feb31e3f85dc240471f6ae002/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -================================== -Colormap Normalizations Symlognorm -================================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -""" -SymLogNorm: two humps, one negative and one positive, The positive -with 5-times the amplitude. Linearly, you cannot see detail in the -negative hump. Here we logarithmically scale the positive and -negative data separately. - -Note that colorbar labels do not come out looking very good. -""" - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03, - vmin=-1.0, vmax=1.0), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') - -plt.show() diff --git a/_downloads/941f538cbb7441f6bbd6fcb0391ecb8b/pyplot_text.py b/_downloads/941f538cbb7441f6bbd6fcb0391ecb8b/pyplot_text.py deleted file mode 120000 index 7c8d009acf6..00000000000 --- a/_downloads/941f538cbb7441f6bbd6fcb0391ecb8b/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/941f538cbb7441f6bbd6fcb0391ecb8b/pyplot_text.py \ No newline at end of file diff --git a/_downloads/94252e4ed853f0ab9ceef7a07f587eb5/artists.py b/_downloads/94252e4ed853f0ab9ceef7a07f587eb5/artists.py deleted file mode 120000 index 35801c9ce92..00000000000 --- a/_downloads/94252e4ed853f0ab9ceef7a07f587eb5/artists.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/94252e4ed853f0ab9ceef7a07f587eb5/artists.py \ No newline at end of file diff --git a/_downloads/94400b68c8c44997093041d930886627/axline.ipynb b/_downloads/94400b68c8c44997093041d930886627/axline.ipynb deleted file mode 120000 index b3885ab943b..00000000000 --- a/_downloads/94400b68c8c44997093041d930886627/axline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/94400b68c8c44997093041d930886627/axline.ipynb \ No newline at end of file diff --git a/_downloads/945a3cb57e8cb36e61dffbdec85bebfb/placing_text_boxes.ipynb b/_downloads/945a3cb57e8cb36e61dffbdec85bebfb/placing_text_boxes.ipynb deleted file mode 120000 index 07a355ce9fb..00000000000 --- a/_downloads/945a3cb57e8cb36e61dffbdec85bebfb/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/945a3cb57e8cb36e61dffbdec85bebfb/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/945f29f0bf6c76d0d50e21c751f06f2a/image_thumbnail_sgskip.ipynb b/_downloads/945f29f0bf6c76d0d50e21c751f06f2a/image_thumbnail_sgskip.ipynb deleted file mode 120000 index dfd1ccdb924..00000000000 --- a/_downloads/945f29f0bf6c76d0d50e21c751f06f2a/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/945f29f0bf6c76d0d50e21c751f06f2a/image_thumbnail_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/946296d0066335d302047120e2a49f8a/fill_between_demo.ipynb b/_downloads/946296d0066335d302047120e2a49f8a/fill_between_demo.ipynb deleted file mode 120000 index c9b3336b4d8..00000000000 --- a/_downloads/946296d0066335d302047120e2a49f8a/fill_between_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/946296d0066335d302047120e2a49f8a/fill_between_demo.ipynb \ No newline at end of file diff --git a/_downloads/9472d3450f5e4fd62809637e936b44d4/agg_buffer_to_array.py b/_downloads/9472d3450f5e4fd62809637e936b44d4/agg_buffer_to_array.py deleted file mode 120000 index 89bdb342808..00000000000 --- a/_downloads/9472d3450f5e4fd62809637e936b44d4/agg_buffer_to_array.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9472d3450f5e4fd62809637e936b44d4/agg_buffer_to_array.py \ No newline at end of file diff --git a/_downloads/94787f9c47575df4241aa2111ab8a19e/errorbar_features.ipynb b/_downloads/94787f9c47575df4241aa2111ab8a19e/errorbar_features.ipynb deleted file mode 120000 index 553e316f573..00000000000 --- a/_downloads/94787f9c47575df4241aa2111ab8a19e/errorbar_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/94787f9c47575df4241aa2111ab8a19e/errorbar_features.ipynb \ No newline at end of file diff --git a/_downloads/947a2c0d2087fb7f078e80d3a601b670/pick_event_demo2.ipynb b/_downloads/947a2c0d2087fb7f078e80d3a601b670/pick_event_demo2.ipynb deleted file mode 100644 index 24d9ca4cd20..00000000000 --- a/_downloads/947a2c0d2087fb7f078e80d3a601b670/pick_event_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pick Event Demo2\n\n\ncompute the mean and standard deviation (stddev) of 100 data sets and plot\nmean vs stddev. When you click on one of the mu, sigma points, plot the raw\ndata from the dataset that generated the mean and stddev.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nX = np.random.rand(100, 1000)\nxs = np.mean(X, axis=1)\nys = np.std(X, axis=1)\n\nfig, ax = plt.subplots()\nax.set_title('click on point to plot time series')\nline, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance\n\n\ndef onpick(event):\n\n if event.artist != line:\n return True\n\n N = len(event.ind)\n if not N:\n return True\n\n figi, axs = plt.subplots(N, squeeze=False)\n for ax, dataind in zip(axs.flat, event.ind):\n ax.plot(X[dataind])\n ax.text(.05, .9, 'mu=%1.3f\\nsigma=%1.3f' % (xs[dataind], ys[dataind]),\n transform=ax.transAxes, va='top')\n ax.set_ylim(-0.5, 1.5)\n figi.show()\n return True\n\nfig.canvas.mpl_connect('pick_event', onpick)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/948ce6d13beb452da966e5bf48ef78ba/demo_axisline_style.py b/_downloads/948ce6d13beb452da966e5bf48ef78ba/demo_axisline_style.py deleted file mode 120000 index cc04284a293..00000000000 --- a/_downloads/948ce6d13beb452da966e5bf48ef78ba/demo_axisline_style.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/948ce6d13beb452da966e5bf48ef78ba/demo_axisline_style.py \ No newline at end of file diff --git a/_downloads/948f8c5400159d068c51914a2701f4ff/ticklabels_rotation.py b/_downloads/948f8c5400159d068c51914a2701f4ff/ticklabels_rotation.py deleted file mode 120000 index d53eb848c4d..00000000000 --- a/_downloads/948f8c5400159d068c51914a2701f4ff/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/948f8c5400159d068c51914a2701f4ff/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/9495662027648aec2d42ac414d0174b6/histogram.ipynb b/_downloads/9495662027648aec2d42ac414d0174b6/histogram.ipynb deleted file mode 120000 index 4ccc20e126d..00000000000 --- a/_downloads/9495662027648aec2d42ac414d0174b6/histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9495662027648aec2d42ac414d0174b6/histogram.ipynb \ No newline at end of file diff --git a/_downloads/9499ba4468c7572505720f15b3177c7d/errorbar_features.ipynb b/_downloads/9499ba4468c7572505720f15b3177c7d/errorbar_features.ipynb deleted file mode 120000 index 137f79e6589..00000000000 --- a/_downloads/9499ba4468c7572505720f15b3177c7d/errorbar_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9499ba4468c7572505720f15b3177c7d/errorbar_features.ipynb \ No newline at end of file diff --git a/_downloads/94a4ec6f51ddabab903c0a7a4d4f8087/plotfile_demo.py b/_downloads/94a4ec6f51ddabab903c0a7a4d4f8087/plotfile_demo.py deleted file mode 120000 index f0ef3f905ea..00000000000 --- a/_downloads/94a4ec6f51ddabab903c0a7a4d4f8087/plotfile_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/94a4ec6f51ddabab903c0a7a4d4f8087/plotfile_demo.py \ No newline at end of file diff --git a/_downloads/94a804491d8aff29b79fc71d248607bf/color_cycle_default.ipynb b/_downloads/94a804491d8aff29b79fc71d248607bf/color_cycle_default.ipynb deleted file mode 120000 index c9a75643597..00000000000 --- a/_downloads/94a804491d8aff29b79fc71d248607bf/color_cycle_default.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/94a804491d8aff29b79fc71d248607bf/color_cycle_default.ipynb \ No newline at end of file diff --git a/_downloads/94ae53536dc95a079d3077a26aef53b2/boxplot_demo.ipynb b/_downloads/94ae53536dc95a079d3077a26aef53b2/boxplot_demo.ipynb deleted file mode 120000 index 422230b795b..00000000000 --- a/_downloads/94ae53536dc95a079d3077a26aef53b2/boxplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/94ae53536dc95a079d3077a26aef53b2/boxplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/94b6e9415e7a2b9a797cd5b4dbebf12b/pyplot.py b/_downloads/94b6e9415e7a2b9a797cd5b4dbebf12b/pyplot.py deleted file mode 120000 index 5a80e94c29a..00000000000 --- a/_downloads/94b6e9415e7a2b9a797cd5b4dbebf12b/pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/94b6e9415e7a2b9a797cd5b4dbebf12b/pyplot.py \ No newline at end of file diff --git a/_downloads/94b8d58b7666399210b551b2d5c8a208/date_index_formatter.py b/_downloads/94b8d58b7666399210b551b2d5c8a208/date_index_formatter.py deleted file mode 100644 index 389fd2e0353..00000000000 --- a/_downloads/94b8d58b7666399210b551b2d5c8a208/date_index_formatter.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -===================================== -Custom tick formatter for time series -===================================== - -When plotting time series, e.g., financial time series, one often wants -to leave out days on which there is no data, i.e. weekends. The example -below shows how to use an 'index formatter' to achieve the desired plot -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import matplotlib.ticker as ticker - -# Load a numpy record array from yahoo csv data with fields date, open, close, -# volume, adj_close from the mpl-data/example directory. The record array -# stores the date as an np.datetime64 with a day unit ('D') in the date column. -with cbook.get_sample_data('goog.npz') as datafile: - r = np.load(datafile)['price_data'].view(np.recarray) -r = r[-30:] # get the last 30 days -# Matplotlib works better with datetime.datetime than np.datetime64, but the -# latter is more portable. -date = r.date.astype('O') - -# first we'll do it the default way, with gaps on weekends -fig, axes = plt.subplots(ncols=2, figsize=(8, 4)) -ax = axes[0] -ax.plot(date, r.adj_close, 'o-') -ax.set_title("Default") -fig.autofmt_xdate() - -# next we'll write a custom formatter -N = len(r) -ind = np.arange(N) # the evenly spaced plot indices - - -def format_date(x, pos=None): - thisind = np.clip(int(x + 0.5), 0, N - 1) - return date[thisind].strftime('%Y-%m-%d') - -ax = axes[1] -ax.plot(ind, r.adj_close, 'o-') -ax.xaxis.set_major_formatter(ticker.FuncFormatter(format_date)) -ax.set_title("Custom tick formatter") -fig.autofmt_xdate() - -plt.show() diff --git a/_downloads/94c11f2f1ad8663a21caefce8726e65d/centered_ticklabels.ipynb b/_downloads/94c11f2f1ad8663a21caefce8726e65d/centered_ticklabels.ipynb deleted file mode 120000 index f939d3463e9..00000000000 --- a/_downloads/94c11f2f1ad8663a21caefce8726e65d/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/94c11f2f1ad8663a21caefce8726e65d/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/94c18aa67dfb4ff98df958208be8e3ed/frame_grabbing_sgskip.py b/_downloads/94c18aa67dfb4ff98df958208be8e3ed/frame_grabbing_sgskip.py deleted file mode 120000 index 72ac4955983..00000000000 --- a/_downloads/94c18aa67dfb4ff98df958208be8e3ed/frame_grabbing_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/94c18aa67dfb4ff98df958208be8e3ed/frame_grabbing_sgskip.py \ No newline at end of file diff --git a/_downloads/94d802e9e4d2674f86cd30a49fe93d2a/demo_text_path.py b/_downloads/94d802e9e4d2674f86cd30a49fe93d2a/demo_text_path.py deleted file mode 120000 index ebb5c7b2a67..00000000000 --- a/_downloads/94d802e9e4d2674f86cd30a49fe93d2a/demo_text_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/94d802e9e4d2674f86cd30a49fe93d2a/demo_text_path.py \ No newline at end of file diff --git a/_downloads/94dac7932302dcc1eb263bed2e4f620d/viewlims.ipynb b/_downloads/94dac7932302dcc1eb263bed2e4f620d/viewlims.ipynb deleted file mode 100644 index d398f224733..00000000000 --- a/_downloads/94dac7932302dcc1eb263bed2e4f620d/viewlims.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Viewlims\n\n\nCreates two identical panels. Zooming in on the right panel will show\na rectangle in the first panel, denoting the zoomed region.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Rectangle\n\n\n# We just subclass Rectangle so that it can be called with an Axes\n# instance, causing the rectangle to update its shape to match the\n# bounds of the Axes\nclass UpdatingRect(Rectangle):\n def __call__(self, ax):\n self.set_bounds(*ax.viewLim.bounds)\n ax.figure.canvas.draw_idle()\n\n\n# A class that will regenerate a fractal set as we zoom in, so that you\n# can actually see the increasing detail. A box in the left panel will show\n# the area to which we are zoomed.\nclass MandelbrotDisplay(object):\n def __init__(self, h=500, w=500, niter=50, radius=2., power=2):\n self.height = h\n self.width = w\n self.niter = niter\n self.radius = radius\n self.power = power\n\n def __call__(self, xstart, xend, ystart, yend):\n self.x = np.linspace(xstart, xend, self.width)\n self.y = np.linspace(ystart, yend, self.height).reshape(-1, 1)\n c = self.x + 1.0j * self.y\n threshold_time = np.zeros((self.height, self.width))\n z = np.zeros(threshold_time.shape, dtype=complex)\n mask = np.ones(threshold_time.shape, dtype=bool)\n for i in range(self.niter):\n z[mask] = z[mask]**self.power + c[mask]\n mask = (np.abs(z) < self.radius)\n threshold_time += mask\n return threshold_time\n\n def ax_update(self, ax):\n ax.set_autoscale_on(False) # Otherwise, infinite loop\n\n # Get the number of points from the number of pixels in the window\n dims = ax.patch.get_window_extent().bounds\n self.width = int(dims[2] + 0.5)\n self.height = int(dims[2] + 0.5)\n\n # Get the range for the new area\n xstart, ystart, xdelta, ydelta = ax.viewLim.bounds\n xend = xstart + xdelta\n yend = ystart + ydelta\n\n # Update the image object with our new data and extent\n im = ax.images[-1]\n im.set_data(self.__call__(xstart, xend, ystart, yend))\n im.set_extent((xstart, xend, ystart, yend))\n ax.figure.canvas.draw_idle()\n\nmd = MandelbrotDisplay()\nZ = md(-2., 0.5, -1.25, 1.25)\n\nfig1, (ax1, ax2) = plt.subplots(1, 2)\nax1.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max()))\nax2.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max()))\n\nrect = UpdatingRect([0, 0], 0, 0, facecolor='None', edgecolor='black', linewidth=1.0)\nrect.set_bounds(*ax2.viewLim.bounds)\nax1.add_patch(rect)\n\n# Connect for changing the view limits\nax2.callbacks.connect('xlim_changed', rect)\nax2.callbacks.connect('ylim_changed', rect)\n\nax2.callbacks.connect('xlim_changed', md.ax_update)\nax2.callbacks.connect('ylim_changed', md.ax_update)\nax2.set_title(\"Zoom here\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/94df6c35a77bb6904d7d72dbae69332b/demo_ticklabel_direction.ipynb b/_downloads/94df6c35a77bb6904d7d72dbae69332b/demo_ticklabel_direction.ipynb deleted file mode 120000 index 7d3a3a7deaf..00000000000 --- a/_downloads/94df6c35a77bb6904d7d72dbae69332b/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/94df6c35a77bb6904d7d72dbae69332b/demo_ticklabel_direction.ipynb \ No newline at end of file diff --git a/_downloads/94e9de22df40863c34fba3facafc634d/whats_new_98_4_fancy.ipynb b/_downloads/94e9de22df40863c34fba3facafc634d/whats_new_98_4_fancy.ipynb deleted file mode 120000 index 8c0eb44812e..00000000000 --- a/_downloads/94e9de22df40863c34fba3facafc634d/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/94e9de22df40863c34fba3facafc634d/whats_new_98_4_fancy.ipynb \ No newline at end of file diff --git a/_downloads/94ec5ba08416ff4913abc1edcd4c5433/colormap-manipulation.py b/_downloads/94ec5ba08416ff4913abc1edcd4c5433/colormap-manipulation.py deleted file mode 120000 index 22f2cbbdd30..00000000000 --- a/_downloads/94ec5ba08416ff4913abc1edcd4c5433/colormap-manipulation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/94ec5ba08416ff4913abc1edcd4c5433/colormap-manipulation.py \ No newline at end of file diff --git a/_downloads/94f090b5681d03c73af586b01557835a/bxp.py b/_downloads/94f090b5681d03c73af586b01557835a/bxp.py deleted file mode 100644 index 62f85d92d55..00000000000 --- a/_downloads/94f090b5681d03c73af586b01557835a/bxp.py +++ /dev/null @@ -1,104 +0,0 @@ -""" -======================= -Boxplot drawer function -======================= - -This example demonstrates how to pass pre-computed box plot -statistics to the box plot drawer. The first figure demonstrates -how to remove and add individual components (note that the -mean is the only value not shown by default). The second -figure demonstrates how the styles of the artists can -be customized. - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook - -# fake data -np.random.seed(19680801) -data = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75) -labels = list('ABCD') - -# compute the boxplot stats -stats = cbook.boxplot_stats(data, labels=labels, bootstrap=10000) - -############################################################################### -# After we've computed the stats, we can go through and change anything. -# Just to prove it, I'll set the median of each set to the median of all -# the data, and double the means - -for n in range(len(stats)): - stats[n]['med'] = np.median(data) - stats[n]['mean'] *= 2 - -print(list(stats[0])) - -fs = 10 # fontsize - -############################################################################### -# Demonstrate how to toggle the display of different elements: - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True) -axes[0, 0].bxp(stats) -axes[0, 0].set_title('Default', fontsize=fs) - -axes[0, 1].bxp(stats, showmeans=True) -axes[0, 1].set_title('showmeans=True', fontsize=fs) - -axes[0, 2].bxp(stats, showmeans=True, meanline=True) -axes[0, 2].set_title('showmeans=True,\nmeanline=True', fontsize=fs) - -axes[1, 0].bxp(stats, showbox=False, showcaps=False) -tufte_title = 'Tufte Style\n(showbox=False,\nshowcaps=False)' -axes[1, 0].set_title(tufte_title, fontsize=fs) - -axes[1, 1].bxp(stats, shownotches=True) -axes[1, 1].set_title('notch=True', fontsize=fs) - -axes[1, 2].bxp(stats, showfliers=False) -axes[1, 2].set_title('showfliers=False', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.subplots_adjust(hspace=0.4) -plt.show() - -############################################################################### -# Demonstrate how to customize the display different elements: - -boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod') -flierprops = dict(marker='o', markerfacecolor='green', markersize=12, - linestyle='none') -medianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick') -meanpointprops = dict(marker='D', markeredgecolor='black', - markerfacecolor='firebrick') -meanlineprops = dict(linestyle='--', linewidth=2.5, color='purple') - -fig, axes = plt.subplots(nrows=2, ncols=2, figsize=(6, 6), sharey=True) -axes[0, 0].bxp(stats, boxprops=boxprops) -axes[0, 0].set_title('Custom boxprops', fontsize=fs) - -axes[0, 1].bxp(stats, flierprops=flierprops, medianprops=medianprops) -axes[0, 1].set_title('Custom medianprops\nand flierprops', fontsize=fs) - -axes[1, 0].bxp(stats, meanprops=meanpointprops, meanline=False, - showmeans=True) -axes[1, 0].set_title('Custom mean\nas point', fontsize=fs) - -axes[1, 1].bxp(stats, meanprops=meanlineprops, meanline=True, - showmeans=True) -axes[1, 1].set_title('Custom mean\nas line', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.suptitle("I never said they'd be pretty") -fig.subplots_adjust(hspace=0.4) -plt.show() diff --git a/_downloads/94f0bbdbd35fd001bf8f3db095320063/text_rotation.py b/_downloads/94f0bbdbd35fd001bf8f3db095320063/text_rotation.py deleted file mode 120000 index 702674e2a72..00000000000 --- a/_downloads/94f0bbdbd35fd001bf8f3db095320063/text_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/94f0bbdbd35fd001bf8f3db095320063/text_rotation.py \ No newline at end of file diff --git a/_downloads/94f277283e8d25b3ab07c3f1fe50ede5/share_axis_lims_views.py b/_downloads/94f277283e8d25b3ab07c3f1fe50ede5/share_axis_lims_views.py deleted file mode 120000 index 98f848aa3ad..00000000000 --- a/_downloads/94f277283e8d25b3ab07c3f1fe50ede5/share_axis_lims_views.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/94f277283e8d25b3ab07c3f1fe50ede5/share_axis_lims_views.py \ No newline at end of file diff --git a/_downloads/94f644789fdedbdf0190b993470bd0ad/anchored_box02.py b/_downloads/94f644789fdedbdf0190b993470bd0ad/anchored_box02.py deleted file mode 120000 index 80c0c6e79f1..00000000000 --- a/_downloads/94f644789fdedbdf0190b993470bd0ad/anchored_box02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/94f644789fdedbdf0190b993470bd0ad/anchored_box02.py \ No newline at end of file diff --git a/_downloads/94f95e88e3b8d80f90ddb6b4960ac2ed/multiple_figs_demo.py b/_downloads/94f95e88e3b8d80f90ddb6b4960ac2ed/multiple_figs_demo.py deleted file mode 120000 index f4bb746f698..00000000000 --- a/_downloads/94f95e88e3b8d80f90ddb6b4960ac2ed/multiple_figs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/94f95e88e3b8d80f90ddb6b4960ac2ed/multiple_figs_demo.py \ No newline at end of file diff --git a/_downloads/950fb6b647d019bf0bf27d74db039535/colormap_normalizations_custom.py b/_downloads/950fb6b647d019bf0bf27d74db039535/colormap_normalizations_custom.py deleted file mode 100644 index 2eb042f1f4c..00000000000 --- a/_downloads/950fb6b647d019bf0bf27d74db039535/colormap_normalizations_custom.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -============================== -Colormap Normalizations Custom -============================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -N = 100 -''' -Custom Norm: An example with a customized normalization. This one -uses the example above, and normalizes the negative data differently -from the positive. -''' -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - - -# Example of making your own norm. Also see matplotlib.colors. -# From Joe Kington: This one gives two different linear ramps: -class MidpointNormalize(colors.Normalize): - def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False): - self.midpoint = midpoint - colors.Normalize.__init__(self, vmin, vmax, clip) - - def __call__(self, value, clip=None): - # I'm ignoring masked values and all kinds of edge cases to make a - # simple example... - x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1] - return np.ma.masked_array(np.interp(value, x, y)) - - -##### -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=MidpointNormalize(midpoint=0.), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') - -plt.show() diff --git a/_downloads/951926ba5f6925790e41b620019a6406/annotation_polar.ipynb b/_downloads/951926ba5f6925790e41b620019a6406/annotation_polar.ipynb deleted file mode 120000 index 1b5cad74435..00000000000 --- a/_downloads/951926ba5f6925790e41b620019a6406/annotation_polar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/951926ba5f6925790e41b620019a6406/annotation_polar.ipynb \ No newline at end of file diff --git a/_downloads/951d396a76981001571f36818ae37fe6/gallery_jupyter.zip b/_downloads/951d396a76981001571f36818ae37fe6/gallery_jupyter.zip deleted file mode 120000 index 2b9c7ae352b..00000000000 --- a/_downloads/951d396a76981001571f36818ae37fe6/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.0/_downloads/951d396a76981001571f36818ae37fe6/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/952a7cfab9e66c7dda65a4a56fdf1976/axes_zoom_effect.ipynb b/_downloads/952a7cfab9e66c7dda65a4a56fdf1976/axes_zoom_effect.ipynb deleted file mode 120000 index 5244f643c23..00000000000 --- a/_downloads/952a7cfab9e66c7dda65a4a56fdf1976/axes_zoom_effect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/952a7cfab9e66c7dda65a4a56fdf1976/axes_zoom_effect.ipynb \ No newline at end of file diff --git a/_downloads/952c9966f0b202283203e326001c651f/hinton_demo.ipynb b/_downloads/952c9966f0b202283203e326001c651f/hinton_demo.ipynb deleted file mode 120000 index b90615a72aa..00000000000 --- a/_downloads/952c9966f0b202283203e326001c651f/hinton_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/952c9966f0b202283203e326001c651f/hinton_demo.ipynb \ No newline at end of file diff --git a/_downloads/953adc52a638855f0815466d723fca0d/mathtext.ipynb b/_downloads/953adc52a638855f0815466d723fca0d/mathtext.ipynb deleted file mode 100644 index 27e812cba71..00000000000 --- a/_downloads/953adc52a638855f0815466d723fca0d/mathtext.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nWriting mathematical expressions\n================================\n\nAn introduction to writing mathematical expressions in Matplotlib.\n\nYou can use a subset TeX markup in any matplotlib text string by placing it\ninside a pair of dollar signs ($).\n\nNote that you do not need to have TeX installed, since Matplotlib ships\nits own TeX expression parser, layout engine, and fonts. The layout engine\nis a fairly direct adaptation of the layout algorithms in Donald Knuth's\nTeX, so the quality is quite good (matplotlib also provides a ``usetex``\noption for those who do want to call out to TeX to generate their text (see\n:doc:`/tutorials/text/usetex`).\n\nAny text element can use math text. You should use raw strings (precede the\nquotes with an ``'r'``), and surround the math text with dollar signs ($), as\nin TeX. Regular text and mathtext can be interleaved within the same string.\nMathtext can use DejaVu Sans (default), DejaVu Serif, the Computer Modern fonts\n(from (La)TeX), `STIX `_ fonts (with are designed\nto blend well with Times), or a Unicode font that you provide. The mathtext\nfont can be selected with the customization variable ``mathtext.fontset`` (see\n:doc:`/tutorials/introductory/customizing`)\n\nHere is a simple example::\n\n # plain text\n plt.title('alpha > beta')\n\nproduces \"alpha > beta\".\n\nWhereas this::\n\n # math text\n plt.title(r'$\\alpha > \\beta$')\n\nproduces \":mathmpl:`\\alpha > \\beta`\".\n\n

Note

Mathtext should be placed between a pair of dollar signs ($). To make it\n easy to display monetary values, e.g., \"$100.00\", if a single dollar sign\n is present in the entire string, it will be displayed verbatim as a dollar\n sign. This is a small change from regular TeX, where the dollar sign in\n non-math text would have to be escaped ('\\\\\\$').

\n\n

Note

While the syntax inside the pair of dollar signs ($) aims to be TeX-like,\n the text outside does not. In particular, characters such as::\n\n # $ % & ~ _ ^ \\ { } \\( \\) \\[ \\]\n\n have special meaning outside of math mode in TeX. Therefore, these\n characters will behave differently depending on the rcParam ``text.usetex``\n flag. See the :doc:`usetex tutorial ` for more\n information.

\n\nSubscripts and superscripts\n---------------------------\n\nTo make subscripts and superscripts, use the ``'_'`` and ``'^'`` symbols::\n\n r'$\\alpha_i > \\beta_i$'\n\n\\begin{align}\\alpha_i > \\beta_i\\end{align}\n\nSome symbols automatically put their sub/superscripts under and over the\noperator. For example, to write the sum of :mathmpl:`x_i` from :mathmpl:`0` to\n:mathmpl:`\\infty`, you could do::\n\n r'$\\sum_{i=0}^\\infty x_i$'\n\n\\begin{align}\\sum_{i=0}^\\infty x_i\\end{align}\n\nFractions, binomials, and stacked numbers\n-----------------------------------------\n\nFractions, binomials, and stacked numbers can be created with the\n``\\frac{}{}``, ``\\binom{}{}`` and ``\\genfrac{}{}{}{}{}{}`` commands,\nrespectively::\n\n r'$\\frac{3}{4} \\binom{3}{4} \\genfrac{}{}{0}{}{3}{4}$'\n\nproduces\n\n\\begin{align}\\frac{3}{4} \\binom{3}{4} \\stackrel{}{}{0}{}{3}{4}\\end{align}\n\nFractions can be arbitrarily nested::\n\n r'$\\frac{5 - \\frac{1}{x}}{4}$'\n\nproduces\n\n\\begin{align}\\frac{5 - \\frac{1}{x}}{4}\\end{align}\n\nNote that special care needs to be taken to place parentheses and brackets\naround fractions. Doing things the obvious way produces brackets that are too\nsmall::\n\n r'$(\\frac{5 - \\frac{1}{x}}{4})$'\n\n.. math ::\n\n (\\frac{5 - \\frac{1}{x}}{4})\n\nThe solution is to precede the bracket with ``\\left`` and ``\\right`` to inform\nthe parser that those brackets encompass the entire object.::\n\n r'$\\left(\\frac{5 - \\frac{1}{x}}{4}\\right)$'\n\n.. math ::\n\n \\left(\\frac{5 - \\frac{1}{x}}{4}\\right)\n\nRadicals\n--------\n\nRadicals can be produced with the ``\\sqrt[]{}`` command. For example::\n\n r'$\\sqrt{2}$'\n\n.. math ::\n\n \\sqrt{2}\n\nAny base can (optionally) be provided inside square brackets. Note that the\nbase must be a simple expression, and can not contain layout commands such as\nfractions or sub/superscripts::\n\n r'$\\sqrt[3]{x}$'\n\n.. math ::\n\n \\sqrt[3]{x}\n\n\nFonts\n-----\n\nThe default font is *italics* for mathematical symbols.\n\n

Note

This default can be changed using the ``mathtext.default`` rcParam. This is\n useful, for example, to use the same font as regular non-math text for math\n text, by setting it to ``regular``.

\n\nTo change fonts, e.g., to write \"sin\" in a Roman font, enclose the text in a\nfont command::\n\n r'$s(t) = \\mathcal{A}\\mathrm{sin}(2 \\omega t)$'\n\n\\begin{align}s(t) = \\mathcal{A}\\mathrm{sin}(2 \\omega t)\\end{align}\n\nMore conveniently, many commonly used function names that are typeset in\na Roman font have shortcuts. So the expression above could be written as\nfollows::\n\n r'$s(t) = \\mathcal{A}\\sin(2 \\omega t)$'\n\n\\begin{align}s(t) = \\mathcal{A}\\sin(2 \\omega t)\\end{align}\n\nHere \"s\" and \"t\" are variable in italics font (default), \"sin\" is in Roman\nfont, and the amplitude \"A\" is in calligraphy font. Note in the example above\nthe calligraphy ``A`` is squished into the ``sin``. You can use a spacing\ncommand to add a little whitespace between them::\n\n r's(t) = \\mathcal{A}\\/\\sin(2 \\omega t)'\n\n.. Here we cheat a bit: for HTML math rendering, Sphinx relies on MathJax which\n doesn't actually support the italic correction (\\/); instead, use a thin\n space (\\,) which is supported.\n\n\\begin{align}s(t) = \\mathcal{A}\\,\\sin(2 \\omega t)\\end{align}\n\nThe choices available with all fonts are:\n\n ========================= ================================\n Command Result\n ========================= ================================\n ``\\mathrm{Roman}`` :mathmpl:`\\mathrm{Roman}`\n ``\\mathit{Italic}`` :mathmpl:`\\mathit{Italic}`\n ``\\mathtt{Typewriter}`` :mathmpl:`\\mathtt{Typewriter}`\n ``\\mathcal{CALLIGRAPHY}`` :mathmpl:`\\mathcal{CALLIGRAPHY}`\n ========================= ================================\n\n.. role:: math-stix(mathmpl)\n :fontset: stix\n\nWhen using the `STIX `_ fonts, you also have the\nchoice of:\n\n ================================ =========================================\n Command Result\n ================================ =========================================\n ``\\mathbb{blackboard}`` :math-stix:`\\mathbb{blackboard}`\n ``\\mathrm{\\mathbb{blackboard}}`` :math-stix:`\\mathrm{\\mathbb{blackboard}}`\n ``\\mathfrak{Fraktur}`` :math-stix:`\\mathfrak{Fraktur}`\n ``\\mathsf{sansserif}`` :math-stix:`\\mathsf{sansserif}`\n ``\\mathrm{\\mathsf{sansserif}}`` :math-stix:`\\mathrm{\\mathsf{sansserif}}`\n ================================ =========================================\n\nThere are also three global \"font sets\" to choose from, which are\nselected using the ``mathtext.fontset`` parameter in `matplotlibrc\n`.\n\n``cm``: **Computer Modern (TeX)**\n\n![](../../_static/cm_fontset.png)\n\n\n``stix``: **STIX** (designed to blend well with Times)\n\n![](../../_static/stix_fontset.png)\n\n\n``stixsans``: **STIX sans-serif**\n\n![](../../_static/stixsans_fontset.png)\n\n\nAdditionally, you can use ``\\mathdefault{...}`` or its alias\n``\\mathregular{...}`` to use the font used for regular text outside of\nmathtext. There are a number of limitations to this approach, most notably\nthat far fewer symbols will be available, but it can be useful to make math\nexpressions blend well with other text in the plot.\n\nCustom fonts\n~~~~~~~~~~~~\n\nmathtext also provides a way to use custom fonts for math. This method is\nfairly tricky to use, and should be considered an experimental feature for\npatient users only. By setting the rcParam ``mathtext.fontset`` to ``custom``,\nyou can then set the following parameters, which control which font file to use\nfor a particular set of math characters.\n\n ============================== =================================\n Parameter Corresponds to\n ============================== =================================\n ``mathtext.it`` ``\\mathit{}`` or default italic\n ``mathtext.rm`` ``\\mathrm{}`` Roman (upright)\n ``mathtext.tt`` ``\\mathtt{}`` Typewriter (monospace)\n ``mathtext.bf`` ``\\mathbf{}`` bold italic\n ``mathtext.cal`` ``\\mathcal{}`` calligraphic\n ``mathtext.sf`` ``\\mathsf{}`` sans-serif\n ============================== =================================\n\nEach parameter should be set to a fontconfig font descriptor (as defined in the\nyet-to-be-written font chapter).\n\n.. TODO: Link to font chapter\n\nThe fonts used should have a Unicode mapping in order to find any\nnon-Latin characters, such as Greek. If you want to use a math symbol\nthat is not contained in your custom fonts, you can set the rcParam\n``mathtext.fallback_to_cm`` to ``True`` which will cause the mathtext system\nto use characters from the default Computer Modern fonts whenever a particular\ncharacter can not be found in the custom font.\n\nNote that the math glyphs specified in Unicode have evolved over time, and many\nfonts may not have glyphs in the correct place for mathtext.\n\nAccents\n-------\n\nAn accent command may precede any symbol to add an accent above it. There are\nlong and short forms for some of them.\n\n ============================== =================================\n Command Result\n ============================== =================================\n ``\\acute a`` or ``\\'a`` :mathmpl:`\\acute a`\n ``\\bar a`` :mathmpl:`\\bar a`\n ``\\breve a`` :mathmpl:`\\breve a`\n ``\\ddot a`` or ``\\''a`` :mathmpl:`\\ddot a`\n ``\\dot a`` or ``\\.a`` :mathmpl:`\\dot a`\n ``\\grave a`` or ``\\`a`` :mathmpl:`\\grave a`\n ``\\hat a`` or ``\\^a`` :mathmpl:`\\hat a`\n ``\\tilde a`` or ``\\~a`` :mathmpl:`\\tilde a`\n ``\\vec a`` :mathmpl:`\\vec a`\n ``\\overline{abc}`` :mathmpl:`\\overline{abc}`\n ============================== =================================\n\nIn addition, there are two special accents that automatically adjust to the\nwidth of the symbols below:\n\n ============================== =================================\n Command Result\n ============================== =================================\n ``\\widehat{xyz}`` :mathmpl:`\\widehat{xyz}`\n ``\\widetilde{xyz}`` :mathmpl:`\\widetilde{xyz}`\n ============================== =================================\n\nCare should be taken when putting accents on lower-case i's and j's. Note that\nin the following ``\\imath`` is used to avoid the extra dot over the i::\n\n r\"$\\hat i\\ \\ \\hat \\imath$\"\n\n\\begin{align}\\hat i\\ \\ \\hat \\imath\\end{align}\n\nSymbols\n-------\n\nYou can also use a large number of the TeX symbols, as in ``\\infty``,\n``\\leftarrow``, ``\\sum``, ``\\int``.\n\n.. math_symbol_table::\n\nIf a particular symbol does not have a name (as is true of many of the more\nobscure symbols in the STIX fonts), Unicode characters can also be used::\n\n ur'$\\u23ce$'\n\nExample\n-------\n\nHere is an example illustrating many of these features in context.\n\n.. figure:: ../../gallery/pyplots/images/sphx_glr_pyplot_mathtext_001.png\n :target: ../../gallery/pyplots/pyplot_mathtext.html\n :align: center\n :scale: 50\n\n Pyplot Mathtext\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9543d8c83e7c3094631b217b2811665a/contour_image.ipynb b/_downloads/9543d8c83e7c3094631b217b2811665a/contour_image.ipynb deleted file mode 100644 index e650e52b98e..00000000000 --- a/_downloads/9543d8c83e7c3094631b217b2811665a/contour_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Image\n\n\nTest combinations of contouring, filled contouring, and image plotting.\nFor contour labelling, see also the :doc:`contour demo example\n`.\n\nThe emphasis in this demo is on showing how to make contours register\ncorrectly on images, and on how to get both of them oriented as desired.\nIn particular, note the usage of the :doc:`\"origin\" and \"extent\"\n` keyword arguments to imshow and\ncontour.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import cm\n\n# Default delta is large because that makes it fast, and it illustrates\n# the correct registration between image and contours.\ndelta = 0.5\n\nextent = (-3, 4, -4, 3)\n\nx = np.arange(-3.0, 4.001, delta)\ny = np.arange(-4.0, 3.001, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n# Boost the upper limit to avoid truncation errors.\nlevels = np.arange(-2.0, 1.601, 0.4)\n\nnorm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max())\ncmap = cm.PRGn\n\nfig, _axs = plt.subplots(nrows=2, ncols=2)\nfig.subplots_adjust(hspace=0.3)\naxs = _axs.flatten()\n\ncset1 = axs[0].contourf(X, Y, Z, levels, norm=norm,\n cmap=cm.get_cmap(cmap, len(levels) - 1))\n# It is not necessary, but for the colormap, we need only the\n# number of levels minus 1. To avoid discretization error, use\n# either this number or a large number such as the default (256).\n\n# If we want lines as well as filled regions, we need to call\n# contour separately; don't try to change the edgecolor or edgewidth\n# of the polygons in the collections returned by contourf.\n# Use levels output from previous call to guarantee they are the same.\n\ncset2 = axs[0].contour(X, Y, Z, cset1.levels, colors='k')\n\n# We don't really need dashed contour lines to indicate negative\n# regions, so let's turn them off.\n\nfor c in cset2.collections:\n c.set_linestyle('solid')\n\n# It is easier here to make a separate call to contour than\n# to set up an array of colors and linewidths.\n# We are making a thick green line as a zero contour.\n# Specify the zero level as a tuple with only 0 in it.\n\ncset3 = axs[0].contour(X, Y, Z, (0,), colors='g', linewidths=2)\naxs[0].set_title('Filled contours')\nfig.colorbar(cset1, ax=axs[0])\n\n\naxs[1].imshow(Z, extent=extent, cmap=cmap, norm=norm)\naxs[1].contour(Z, levels, colors='k', origin='upper', extent=extent)\naxs[1].set_title(\"Image, origin 'upper'\")\n\naxs[2].imshow(Z, origin='lower', extent=extent, cmap=cmap, norm=norm)\naxs[2].contour(Z, levels, colors='k', origin='lower', extent=extent)\naxs[2].set_title(\"Image, origin 'lower'\")\n\n# We will use the interpolation \"nearest\" here to show the actual\n# image pixels.\n# Note that the contour lines don't extend to the edge of the box.\n# This is intentional. The Z values are defined at the center of each\n# image pixel (each color block on the following subplot), so the\n# domain that is contoured does not extend beyond these pixel centers.\nim = axs[3].imshow(Z, interpolation='nearest', extent=extent,\n cmap=cmap, norm=norm)\naxs[3].contour(Z, levels, colors='k', origin='image', extent=extent)\nylim = axs[3].get_ylim()\naxs[3].set_ylim(ylim[::-1])\naxs[3].set_title(\"Origin from rc, reversed y-axis\")\nfig.colorbar(im, ax=axs[3])\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.Normalize" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/955998df014ad33da942fbee06c3613c/contour3d_2.py b/_downloads/955998df014ad33da942fbee06c3613c/contour3d_2.py deleted file mode 100644 index 3500eac6871..00000000000 --- a/_downloads/955998df014ad33da942fbee06c3613c/contour3d_2.py +++ /dev/null @@ -1,22 +0,0 @@ -''' -============================================================================ -Demonstrates plotting contour (level) curves in 3D using the extend3d option -============================================================================ - -This modification of the contour3d_demo example uses extend3d=True to -extend the curves vertically into 'ribbons'. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -cset = ax.contour(X, Y, Z, extend3d=True, cmap=cm.coolwarm) - -ax.clabel(cset, fontsize=9, inline=1) - -plt.show() diff --git a/_downloads/955a38646b2f2da156eda8a83ec4b706/axes_grid.ipynb b/_downloads/955a38646b2f2da156eda8a83ec4b706/axes_grid.ipynb deleted file mode 120000 index a92b4a3f0eb..00000000000 --- a/_downloads/955a38646b2f2da156eda8a83ec4b706/axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/955a38646b2f2da156eda8a83ec4b706/axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/955cef1a1175c3d27e3ead5a899a989e/sankey_links.ipynb b/_downloads/955cef1a1175c3d27e3ead5a899a989e/sankey_links.ipynb deleted file mode 100644 index e05bbeb56f6..00000000000 --- a/_downloads/955cef1a1175c3d27e3ead5a899a989e/sankey_links.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Long chain of connections using Sankey\n\n\nDemonstrate/test the Sankey class by producing a long chain of connections.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.sankey import Sankey\n\nlinks_per_side = 6\n\n\ndef side(sankey, n=1):\n \"\"\"Generate a side chain.\"\"\"\n prior = len(sankey.diagrams)\n for i in range(0, 2*n, 2):\n sankey.add(flows=[1, -1], orientations=[-1, -1],\n patchlabel=str(prior + i),\n prior=prior + i - 1, connect=(1, 0), alpha=0.5)\n sankey.add(flows=[1, -1], orientations=[1, 1],\n patchlabel=str(prior + i + 1),\n prior=prior + i, connect=(1, 0), alpha=0.5)\n\n\ndef corner(sankey):\n \"\"\"Generate a corner link.\"\"\"\n prior = len(sankey.diagrams)\n sankey.add(flows=[1, -1], orientations=[0, 1],\n patchlabel=str(prior), facecolor='k',\n prior=prior - 1, connect=(1, 0), alpha=0.5)\n\n\nfig = plt.figure()\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[],\n title=\"Why would you want to do this?\\n(But you could.)\")\nsankey = Sankey(ax=ax, unit=None)\nsankey.add(flows=[1, -1], orientations=[0, 1],\n patchlabel=\"0\", facecolor='k',\n rotation=45)\nside(sankey, n=links_per_side)\ncorner(sankey)\nside(sankey, n=links_per_side)\ncorner(sankey)\nside(sankey, n=links_per_side)\ncorner(sankey)\nside(sankey, n=links_per_side)\nsankey.finish()\n# Notice:\n# 1. The alignment doesn't drift significantly (if at all; with 16007\n# subdiagrams there is still closure).\n# 2. The first diagram is rotated 45 deg, so all other diagrams are rotated\n# accordingly.\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.sankey\nmatplotlib.sankey.Sankey\nmatplotlib.sankey.Sankey.add\nmatplotlib.sankey.Sankey.finish" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/95600097c1d9af9dd3ec9e5c260fdea8/axes_props.py b/_downloads/95600097c1d9af9dd3ec9e5c260fdea8/axes_props.py deleted file mode 100644 index f2e52febed3..00000000000 --- a/_downloads/95600097c1d9af9dd3ec9e5c260fdea8/axes_props.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -========== -Axes Props -========== - -You can control the axis tick and grid properties -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 2.0, 0.01) -s = np.sin(2 * np.pi * t) - -fig, ax = plt.subplots() -ax.plot(t, s) - -ax.grid(True, linestyle='-.') -ax.tick_params(labelcolor='r', labelsize='medium', width=3) - -plt.show() diff --git a/_downloads/9561a7a65bdc0fb371afc79abb3a5d14/matshow.ipynb b/_downloads/9561a7a65bdc0fb371afc79abb3a5d14/matshow.ipynb deleted file mode 100644 index 68143e198b2..00000000000 --- a/_downloads/9561a7a65bdc0fb371afc79abb3a5d14/matshow.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Matshow\n\n\nSimple `~.axes.Axes.matshow` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef samplemat(dims):\n \"\"\"Make a matrix with all zeros and increasing elements on the diagonal\"\"\"\n aa = np.zeros(dims)\n for i in range(min(dims)):\n aa[i, i] = i\n return aa\n\n\n# Display matrix\nplt.matshow(samplemat((15, 15)))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.matshow\nmatplotlib.pyplot.matshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9564ff917a1fa84efdb4cc1626ada5ab/dollar_ticks.ipynb b/_downloads/9564ff917a1fa84efdb4cc1626ada5ab/dollar_ticks.ipynb deleted file mode 120000 index bb851d4d54d..00000000000 --- a/_downloads/9564ff917a1fa84efdb4cc1626ada5ab/dollar_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9564ff917a1fa84efdb4cc1626ada5ab/dollar_ticks.ipynb \ No newline at end of file diff --git a/_downloads/9569abf526e14038aaf3badaaec10550/multiple_histograms_side_by_side.py b/_downloads/9569abf526e14038aaf3badaaec10550/multiple_histograms_side_by_side.py deleted file mode 100644 index 2c4ff176ce4..00000000000 --- a/_downloads/9569abf526e14038aaf3badaaec10550/multiple_histograms_side_by_side.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -========================================== -Producing multiple histograms side by side -========================================== - -This example plots horizontal histograms of different samples along -a categorical x-axis. Additionally, the histograms are plotted to -be symmetrical about their x-position, thus making them very similar -to violin plots. - -To make this highly specialized plot, we can't use the standard ``hist`` -method. Instead we use ``barh`` to draw the horizontal bars directly. The -vertical positions and lengths of the bars are computed via the -``np.histogram`` function. The histograms for all the samples are -computed using the same range (min and max values) and number of bins, -so that the bins for each sample are in the same vertical positions. - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) -number_of_bins = 20 - -# An example of three data sets to compare -number_of_data_points = 387 -labels = ["A", "B", "C"] -data_sets = [np.random.normal(0, 1, number_of_data_points), - np.random.normal(6, 1, number_of_data_points), - np.random.normal(-3, 1, number_of_data_points)] - -# Computed quantities to aid plotting -hist_range = (np.min(data_sets), np.max(data_sets)) -binned_data_sets = [ - np.histogram(d, range=hist_range, bins=number_of_bins)[0] - for d in data_sets -] -binned_maximums = np.max(binned_data_sets, axis=1) -x_locations = np.arange(0, sum(binned_maximums), np.max(binned_maximums)) - -# The bin_edges are the same for all of the histograms -bin_edges = np.linspace(hist_range[0], hist_range[1], number_of_bins + 1) -centers = 0.5 * (bin_edges + np.roll(bin_edges, 1))[:-1] -heights = np.diff(bin_edges) - -# Cycle through and plot each histogram -fig, ax = plt.subplots() -for x_loc, binned_data in zip(x_locations, binned_data_sets): - lefts = x_loc - 0.5 * binned_data - ax.barh(centers, binned_data, height=heights, left=lefts) - -ax.set_xticks(x_locations) -ax.set_xticklabels(labels) - -ax.set_ylabel("Data values") -ax.set_xlabel("Data sets") - -plt.show() diff --git a/_downloads/957625ff6df3fc574320e9c1e2473d9a/embedding_in_gtk3_sgskip.ipynb b/_downloads/957625ff6df3fc574320e9c1e2473d9a/embedding_in_gtk3_sgskip.ipynb deleted file mode 120000 index 77523d05982..00000000000 --- a/_downloads/957625ff6df3fc574320e9c1e2473d9a/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/957625ff6df3fc574320e9c1e2473d9a/embedding_in_gtk3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/957d15ab64274c42ad427f034338a60e/unicode_minus.ipynb b/_downloads/957d15ab64274c42ad427f034338a60e/unicode_minus.ipynb deleted file mode 100644 index b4eb571a676..00000000000 --- a/_downloads/957d15ab64274c42ad427f034338a60e/unicode_minus.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Unicode minus\n\n\nYou can use the proper typesetting `Unicode minus`__ or the ASCII hyphen for\nminus, which some people prefer. :rc:`axes.unicode_minus` controls the default\nbehavior.\n\n__ https://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes\n\nThe default is to use the Unicode minus.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nmatplotlib.rcParams['axes.unicode_minus'] = False\nfig, ax = plt.subplots()\nax.plot(10*np.random.randn(100), 10*np.random.randn(100), 'o')\nax.set_title('Using hyphen instead of Unicode minus')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/957ec6f8a7e40a61a2352b83baeaa59f/custom_shaded_3d_surface.py b/_downloads/957ec6f8a7e40a61a2352b83baeaa59f/custom_shaded_3d_surface.py deleted file mode 120000 index 9946d5b4109..00000000000 --- a/_downloads/957ec6f8a7e40a61a2352b83baeaa59f/custom_shaded_3d_surface.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/957ec6f8a7e40a61a2352b83baeaa59f/custom_shaded_3d_surface.py \ No newline at end of file diff --git a/_downloads/958ba75a83e53893ae8c26ee5d0ebeb2/multi_image.ipynb b/_downloads/958ba75a83e53893ae8c26ee5d0ebeb2/multi_image.ipynb deleted file mode 120000 index 439f0f6dca5..00000000000 --- a/_downloads/958ba75a83e53893ae8c26ee5d0ebeb2/multi_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/958ba75a83e53893ae8c26ee5d0ebeb2/multi_image.ipynb \ No newline at end of file diff --git a/_downloads/958d2383f5eacbfa651543559b13c476/slider_demo.ipynb b/_downloads/958d2383f5eacbfa651543559b13c476/slider_demo.ipynb deleted file mode 100644 index 7059d8a4699..00000000000 --- a/_downloads/958d2383f5eacbfa651543559b13c476/slider_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Slider Demo\n\n\nUsing the slider widget to control visual properties of your plot.\n\nIn this example, a slider is used to choose the frequency of a sine\nwave. You can control many continuously-varying properties of your plot in\nthis way.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import Slider, Button, RadioButtons\n\nfig, ax = plt.subplots()\nplt.subplots_adjust(left=0.25, bottom=0.25)\nt = np.arange(0.0, 1.0, 0.001)\na0 = 5\nf0 = 3\ndelta_f = 5.0\ns = a0 * np.sin(2 * np.pi * f0 * t)\nl, = plt.plot(t, s, lw=2)\nax.margins(x=0)\n\naxcolor = 'lightgoldenrodyellow'\naxfreq = plt.axes([0.25, 0.1, 0.65, 0.03], facecolor=axcolor)\naxamp = plt.axes([0.25, 0.15, 0.65, 0.03], facecolor=axcolor)\n\nsfreq = Slider(axfreq, 'Freq', 0.1, 30.0, valinit=f0, valstep=delta_f)\nsamp = Slider(axamp, 'Amp', 0.1, 10.0, valinit=a0)\n\n\ndef update(val):\n amp = samp.val\n freq = sfreq.val\n l.set_ydata(amp*np.sin(2*np.pi*freq*t))\n fig.canvas.draw_idle()\n\n\nsfreq.on_changed(update)\nsamp.on_changed(update)\n\nresetax = plt.axes([0.8, 0.025, 0.1, 0.04])\nbutton = Button(resetax, 'Reset', color=axcolor, hovercolor='0.975')\n\n\ndef reset(event):\n sfreq.reset()\n samp.reset()\nbutton.on_clicked(reset)\n\nrax = plt.axes([0.025, 0.5, 0.15, 0.15], facecolor=axcolor)\nradio = RadioButtons(rax, ('red', 'blue', 'green'), active=0)\n\n\ndef colorfunc(label):\n l.set_color(label)\n fig.canvas.draw_idle()\nradio.on_clicked(colorfunc)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/959435dc802e58a173b672a5557f5927/barh.py b/_downloads/959435dc802e58a173b672a5557f5927/barh.py deleted file mode 100644 index c537c0d9b21..00000000000 --- a/_downloads/959435dc802e58a173b672a5557f5927/barh.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -==================== -Horizontal bar chart -==================== - -This example showcases a simple horizontal bar chart. -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -plt.rcdefaults() -fig, ax = plt.subplots() - -# Example data -people = ('Tom', 'Dick', 'Harry', 'Slim', 'Jim') -y_pos = np.arange(len(people)) -performance = 3 + 10 * np.random.rand(len(people)) -error = np.random.rand(len(people)) - -ax.barh(y_pos, performance, xerr=error, align='center') -ax.set_yticks(y_pos) -ax.set_yticklabels(people) -ax.invert_yaxis() # labels read top-to-bottom -ax.set_xlabel('Performance') -ax.set_title('How fast do you want to go today?') - -plt.show() diff --git a/_downloads/9594e654c17d82cdacb63f57898b2bf3/colormaps.ipynb b/_downloads/9594e654c17d82cdacb63f57898b2bf3/colormaps.ipynb deleted file mode 120000 index 5334a51f980..00000000000 --- a/_downloads/9594e654c17d82cdacb63f57898b2bf3/colormaps.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9594e654c17d82cdacb63f57898b2bf3/colormaps.ipynb \ No newline at end of file diff --git a/_downloads/959d7ad21c495080950ee84dc5d9f025/constrainedlayout_guide.py b/_downloads/959d7ad21c495080950ee84dc5d9f025/constrainedlayout_guide.py deleted file mode 120000 index c0ef3c5d0b3..00000000000 --- a/_downloads/959d7ad21c495080950ee84dc5d9f025/constrainedlayout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/959d7ad21c495080950ee84dc5d9f025/constrainedlayout_guide.py \ No newline at end of file diff --git a/_downloads/959ea3280bece2e5ca30e04c13705cf9/major_minor_demo.py b/_downloads/959ea3280bece2e5ca30e04c13705cf9/major_minor_demo.py deleted file mode 120000 index 96b4b74c6f8..00000000000 --- a/_downloads/959ea3280bece2e5ca30e04c13705cf9/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/959ea3280bece2e5ca30e04c13705cf9/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/95a5cdf9f81b64fe726f9a0b72717872/date_index_formatter.py b/_downloads/95a5cdf9f81b64fe726f9a0b72717872/date_index_formatter.py deleted file mode 120000 index 6ef80dbbfbb..00000000000 --- a/_downloads/95a5cdf9f81b64fe726f9a0b72717872/date_index_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/95a5cdf9f81b64fe726f9a0b72717872/date_index_formatter.py \ No newline at end of file diff --git a/_downloads/95abeb9ea753e4e02ca3888ad6501f04/resample.ipynb b/_downloads/95abeb9ea753e4e02ca3888ad6501f04/resample.ipynb deleted file mode 120000 index 3478a4c9917..00000000000 --- a/_downloads/95abeb9ea753e4e02ca3888ad6501f04/resample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/95abeb9ea753e4e02ca3888ad6501f04/resample.ipynb \ No newline at end of file diff --git a/_downloads/95ac5653d15561e1442f7193390c7f6d/timers.py b/_downloads/95ac5653d15561e1442f7193390c7f6d/timers.py deleted file mode 120000 index 42adb943a55..00000000000 --- a/_downloads/95ac5653d15561e1442f7193390c7f6d/timers.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/95ac5653d15561e1442f7193390c7f6d/timers.py \ No newline at end of file diff --git a/_downloads/95b188aac698de5638f3e74632b85eda/customized_violin.py b/_downloads/95b188aac698de5638f3e74632b85eda/customized_violin.py deleted file mode 120000 index adaec66703d..00000000000 --- a/_downloads/95b188aac698de5638f3e74632b85eda/customized_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/95b188aac698de5638f3e74632b85eda/customized_violin.py \ No newline at end of file diff --git a/_downloads/95b27eadd6cb61119baa274f75f6cc80/demo_gridspec03.py b/_downloads/95b27eadd6cb61119baa274f75f6cc80/demo_gridspec03.py deleted file mode 120000 index b0226d9e1f7..00000000000 --- a/_downloads/95b27eadd6cb61119baa274f75f6cc80/demo_gridspec03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/95b27eadd6cb61119baa274f75f6cc80/demo_gridspec03.py \ No newline at end of file diff --git a/_downloads/95b2b148785712d316c9130f28a1da9c/marker_path.py b/_downloads/95b2b148785712d316c9130f28a1da9c/marker_path.py deleted file mode 120000 index a5dcd9a01a1..00000000000 --- a/_downloads/95b2b148785712d316c9130f28a1da9c/marker_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/95b2b148785712d316c9130f28a1da9c/marker_path.py \ No newline at end of file diff --git a/_downloads/95b477903c8df8bdf4a7e920865a4a3a/mathtext_examples.ipynb b/_downloads/95b477903c8df8bdf4a7e920865a4a3a/mathtext_examples.ipynb deleted file mode 120000 index 2664f3a8c17..00000000000 --- a/_downloads/95b477903c8df8bdf4a7e920865a4a3a/mathtext_examples.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/95b477903c8df8bdf4a7e920865a4a3a/mathtext_examples.ipynb \ No newline at end of file diff --git a/_downloads/95b4df0a5413dfbaef398af668c9d60b/lifecycle.py b/_downloads/95b4df0a5413dfbaef398af668c9d60b/lifecycle.py deleted file mode 100644 index 515c3b1c75f..00000000000 --- a/_downloads/95b4df0a5413dfbaef398af668c9d60b/lifecycle.py +++ /dev/null @@ -1,271 +0,0 @@ -""" -======================= -The Lifecycle of a Plot -======================= - -This tutorial aims to show the beginning, middle, and end of a single -visualization using Matplotlib. We'll begin with some raw data and -end by saving a figure of a customized visualization. Along the way we'll try -to highlight some neat features and best-practices using Matplotlib. - -.. currentmodule:: matplotlib - -.. note:: - - This tutorial is based off of - `this excellent blog post `_ - by Chris Moffitt. It was transformed into this tutorial by Chris Holdgraf. - -A note on the Object-Oriented API vs Pyplot -=========================================== - -Matplotlib has two interfaces. The first is an object-oriented (OO) -interface. In this case, we utilize an instance of :class:`axes.Axes` -in order to render visualizations on an instance of :class:`figure.Figure`. - -The second is based on MATLAB and uses a state-based interface. This is -encapsulated in the :mod:`pyplot` module. See the :doc:`pyplot tutorials -` for a more in-depth look at the pyplot -interface. - -Most of the terms are straightforward but the main thing to remember -is that: - -* The Figure is the final image that may contain 1 or more Axes. -* The Axes represent an individual plot (don't confuse this with the word - "axis", which refers to the x/y axis of a plot). - -We call methods that do the plotting directly from the Axes, which gives -us much more flexibility and power in customizing our plot. - -.. note:: - - In general, try to use the object-oriented interface over the pyplot - interface. - -Our data -======== - -We'll use the data from the post from which this tutorial was derived. -It contains sales information for a number of companies. -""" - -# sphinx_gallery_thumbnail_number = 10 -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.ticker import FuncFormatter - -data = {'Barton LLC': 109438.50, - 'Frami, Hills and Schmidt': 103569.59, - 'Fritsch, Russel and Anderson': 112214.71, - 'Jerde-Hilpert': 112591.43, - 'Keeling LLC': 100934.30, - 'Koepp Ltd': 103660.54, - 'Kulas Inc': 137351.96, - 'Trantow-Barrows': 123381.38, - 'White-Trantow': 135841.99, - 'Will LLC': 104437.60} -group_data = list(data.values()) -group_names = list(data.keys()) -group_mean = np.mean(group_data) - -############################################################################### -# Getting started -# =============== -# -# This data is naturally visualized as a barplot, with one bar per -# group. To do this with the object-oriented approach, we'll first generate -# an instance of :class:`figure.Figure` and -# :class:`axes.Axes`. The Figure is like a canvas, and the Axes -# is a part of that canvas on which we will make a particular visualization. -# -# .. note:: -# -# Figures can have multiple axes on them. For information on how to do this, -# see the :doc:`Tight Layout tutorial -# `. - -fig, ax = plt.subplots() - -############################################################################### -# Now that we have an Axes instance, we can plot on top of it. - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) - -############################################################################### -# Controlling the style -# ===================== -# -# There are many styles available in Matplotlib in order to let you tailor -# your visualization to your needs. To see a list of styles, we can use -# :mod:`pyplot.style`. - -print(plt.style.available) - -############################################################################### -# You can activate a style with the following: - -plt.style.use('fivethirtyeight') - -############################################################################### -# Now let's remake the above plot to see how it looks: - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) - -############################################################################### -# The style controls many things, such as color, linewidths, backgrounds, -# etc. -# -# Customizing the plot -# ==================== -# -# Now we've got a plot with the general look that we want, so let's fine-tune -# it so that it's ready for print. First let's rotate the labels on the x-axis -# so that they show up more clearly. We can gain access to these labels -# with the :meth:`axes.Axes.get_xticklabels` method: - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() - -############################################################################### -# If we'd like to set the property of many items at once, it's useful to use -# the :func:`pyplot.setp` function. This will take a list (or many lists) of -# Matplotlib objects, and attempt to set some style element of each one. - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -############################################################################### -# It looks like this cut off some of the labels on the bottom. We can -# tell Matplotlib to automatically make room for elements in the figures -# that we create. To do this we'll set the ``autolayout`` value of our -# rcParams. For more information on controlling the style, layout, and -# other features of plots with rcParams, see -# :doc:`/tutorials/introductory/customizing`. - -plt.rcParams.update({'figure.autolayout': True}) - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -############################################################################### -# Next, we'll add labels to the plot. To do this with the OO interface, -# we can use the :meth:`axes.Axes.set` method to set properties of this -# Axes object. - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') - -############################################################################### -# We can also adjust the size of this plot using the :func:`pyplot.subplots` -# function. We can do this with the ``figsize`` kwarg. -# -# .. note:: -# -# While indexing in NumPy follows the form (row, column), the figsize -# kwarg follows the form (width, height). This follows conventions in -# visualization, which unfortunately are different from those of linear -# algebra. - -fig, ax = plt.subplots(figsize=(8, 4)) -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') - -############################################################################### -# For labels, we can specify custom formatting guidelines in the form of -# functions by using the :class:`ticker.FuncFormatter` class. Below we'll -# define a function that takes an integer as input, and returns a string -# as an output. - - -def currency(x, pos): - """The two args are the value and tick position""" - if x >= 1e6: - s = '${:1.1f}M'.format(x*1e-6) - else: - s = '${:1.0f}K'.format(x*1e-3) - return s - -formatter = FuncFormatter(currency) - -############################################################################### -# We can then apply this formatter to the labels on our plot. To do this, -# we'll use the ``xaxis`` attribute of our axis. This lets you perform -# actions on a specific axis on our plot. - -fig, ax = plt.subplots(figsize=(6, 8)) -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') -ax.xaxis.set_major_formatter(formatter) - -############################################################################### -# Combining multiple visualizations -# ================================= -# -# It is possible to draw multiple plot elements on the same instance of -# :class:`axes.Axes`. To do this we simply need to call another one of -# the plot methods on that axes object. - -fig, ax = plt.subplots(figsize=(8, 8)) -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -# Add a vertical line, here we set the style in the function call -ax.axvline(group_mean, ls='--', color='r') - -# Annotate new companies -for group in [3, 5, 8]: - ax.text(145000, group, "New Company", fontsize=10, - verticalalignment="center") - -# Now we'll move our title up since it's getting a little cramped -ax.title.set(y=1.05) - -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') -ax.xaxis.set_major_formatter(formatter) -ax.set_xticks([0, 25e3, 50e3, 75e3, 100e3, 125e3]) -fig.subplots_adjust(right=.1) - -plt.show() - -############################################################################### -# Saving our plot -# =============== -# -# Now that we're happy with the outcome of our plot, we want to save it to -# disk. There are many file formats we can save to in Matplotlib. To see -# a list of available options, use: - -print(fig.canvas.get_supported_filetypes()) - -############################################################################### -# We can then use the :meth:`figure.Figure.savefig` in order to save the figure -# to disk. Note that there are several useful flags we'll show below: -# -# * ``transparent=True`` makes the background of the saved figure transparent -# if the format supports it. -# * ``dpi=80`` controls the resolution (dots per square inch) of the output. -# * ``bbox_inches="tight"`` fits the bounds of the figure to our plot. - -# Uncomment this line to save the figure. -# fig.savefig('sales.png', transparent=False, dpi=80, bbox_inches="tight") diff --git a/_downloads/95b84f569fde0255852fc983e78ec7b7/rain.ipynb b/_downloads/95b84f569fde0255852fc983e78ec7b7/rain.ipynb deleted file mode 120000 index 1c38636ec48..00000000000 --- a/_downloads/95b84f569fde0255852fc983e78ec7b7/rain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/95b84f569fde0255852fc983e78ec7b7/rain.ipynb \ No newline at end of file diff --git a/_downloads/95c407847a485cafb01b3463109b61b0/spine_placement_demo.py b/_downloads/95c407847a485cafb01b3463109b61b0/spine_placement_demo.py deleted file mode 120000 index 074f1c8bde2..00000000000 --- a/_downloads/95c407847a485cafb01b3463109b61b0/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/95c407847a485cafb01b3463109b61b0/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/95c7fa66a2f3fff1a18165a1bf108519/contourf_hatching.ipynb b/_downloads/95c7fa66a2f3fff1a18165a1bf108519/contourf_hatching.ipynb deleted file mode 120000 index 29eee4c8799..00000000000 --- a/_downloads/95c7fa66a2f3fff1a18165a1bf108519/contourf_hatching.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/95c7fa66a2f3fff1a18165a1bf108519/contourf_hatching.ipynb \ No newline at end of file diff --git a/_downloads/95cf0ab97b47f8ed5aa72b2ae16e7762/barchart.py b/_downloads/95cf0ab97b47f8ed5aa72b2ae16e7762/barchart.py deleted file mode 120000 index 0ee3b1a90ef..00000000000 --- a/_downloads/95cf0ab97b47f8ed5aa72b2ae16e7762/barchart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/95cf0ab97b47f8ed5aa72b2ae16e7762/barchart.py \ No newline at end of file diff --git a/_downloads/95d180758438b7c93429090d14c62a4f/watermark_text.py b/_downloads/95d180758438b7c93429090d14c62a4f/watermark_text.py deleted file mode 120000 index e4cae1e0da1..00000000000 --- a/_downloads/95d180758438b7c93429090d14c62a4f/watermark_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/95d180758438b7c93429090d14c62a4f/watermark_text.py \ No newline at end of file diff --git a/_downloads/95d36c8415ba1b864e8ee9935dd6c230/anchored_box01.py b/_downloads/95d36c8415ba1b864e8ee9935dd6c230/anchored_box01.py deleted file mode 120000 index c9077e0fc45..00000000000 --- a/_downloads/95d36c8415ba1b864e8ee9935dd6c230/anchored_box01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/95d36c8415ba1b864e8ee9935dd6c230/anchored_box01.py \ No newline at end of file diff --git a/_downloads/95d7bd760b012e1abb235fb20612f80c/voxels_rgb.ipynb b/_downloads/95d7bd760b012e1abb235fb20612f80c/voxels_rgb.ipynb deleted file mode 120000 index c602dafe7bc..00000000000 --- a/_downloads/95d7bd760b012e1abb235fb20612f80c/voxels_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/95d7bd760b012e1abb235fb20612f80c/voxels_rgb.ipynb \ No newline at end of file diff --git a/_downloads/95e6823bf7e69373cd0c7bc77c320bb4/pylab_with_gtk_sgskip.ipynb b/_downloads/95e6823bf7e69373cd0c7bc77c320bb4/pylab_with_gtk_sgskip.ipynb deleted file mode 120000 index e252fc8fba6..00000000000 --- a/_downloads/95e6823bf7e69373cd0c7bc77c320bb4/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/95e6823bf7e69373cd0c7bc77c320bb4/pylab_with_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/95eb5b7df685d4cd82058e9ff8f8cef0/mathtext_demo.py b/_downloads/95eb5b7df685d4cd82058e9ff8f8cef0/mathtext_demo.py deleted file mode 120000 index 0eb10f0579f..00000000000 --- a/_downloads/95eb5b7df685d4cd82058e9ff8f8cef0/mathtext_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/95eb5b7df685d4cd82058e9ff8f8cef0/mathtext_demo.py \ No newline at end of file diff --git a/_downloads/95f3eabb9c3f435475cd37e1970fc5c4/unchained.ipynb b/_downloads/95f3eabb9c3f435475cd37e1970fc5c4/unchained.ipynb deleted file mode 100644 index db0306d9f36..00000000000 --- a/_downloads/95f3eabb9c3f435475cd37e1970fc5c4/unchained.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n========================\nMATPLOTLIB **UNCHAINED**\n========================\n\nComparative path demonstration of frequency from a fake signal of a pulsar\n(mostly known because of the cover for Joy Division's Unknown Pleasures).\n\nAuthor: Nicolas P. Rougier\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# Create new Figure with black background\nfig = plt.figure(figsize=(8, 8), facecolor='black')\n\n# Add a subplot with no frame\nax = plt.subplot(111, frameon=False)\n\n# Generate random data\ndata = np.random.uniform(0, 1, (64, 75))\nX = np.linspace(-1, 1, data.shape[-1])\nG = 1.5 * np.exp(-4 * X ** 2)\n\n# Generate line plots\nlines = []\nfor i in range(len(data)):\n # Small reduction of the X extents to get a cheap perspective effect\n xscale = 1 - i / 200.\n # Same for linewidth (thicker strokes on bottom)\n lw = 1.5 - i / 100.0\n line, = ax.plot(xscale * X, i + G * data[i], color=\"w\", lw=lw)\n lines.append(line)\n\n# Set y limit (or first line is cropped because of thickness)\nax.set_ylim(-1, 70)\n\n# No ticks\nax.set_xticks([])\nax.set_yticks([])\n\n# 2 part titles to get different font weights\nax.text(0.5, 1.0, \"MATPLOTLIB \", transform=ax.transAxes,\n ha=\"right\", va=\"bottom\", color=\"w\",\n family=\"sans-serif\", fontweight=\"light\", fontsize=16)\nax.text(0.5, 1.0, \"UNCHAINED\", transform=ax.transAxes,\n ha=\"left\", va=\"bottom\", color=\"w\",\n family=\"sans-serif\", fontweight=\"bold\", fontsize=16)\n\n\ndef update(*args):\n # Shift all data to the right\n data[:, 1:] = data[:, :-1]\n\n # Fill-in new values\n data[:, 0] = np.random.uniform(0, 1, len(data))\n\n # Update data\n for i in range(len(data)):\n lines[i].set_ydata(i + G * data[i])\n\n # Return modified artists\n return lines\n\n# Construct the animation, using the update function as the animation director.\nanim = animation.FuncAnimation(fig, update, interval=10)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/95f4eb5015ebcfd7d05fc6b37f6a865f/demo_curvelinear_grid2.py b/_downloads/95f4eb5015ebcfd7d05fc6b37f6a865f/demo_curvelinear_grid2.py deleted file mode 100644 index 88b656b32cd..00000000000 --- a/_downloads/95f4eb5015ebcfd7d05fc6b37f6a865f/demo_curvelinear_grid2.py +++ /dev/null @@ -1,70 +0,0 @@ -""" -====================== -Demo Curvelinear Grid2 -====================== - -Custom grid and ticklines. - -This example demonstrates how to use GridHelperCurveLinear to define -custom grids and ticklines by applying a transformation on the grid. -As showcase on the plot, a 5x5 matrix is displayed on the axes. -""" - -import numpy as np -import matplotlib.pyplot as plt - -from mpl_toolkits.axisartist.grid_helper_curvelinear import \ - GridHelperCurveLinear -from mpl_toolkits.axisartist.grid_finder import MaxNLocator -from mpl_toolkits.axisartist.axislines import Subplot - -import mpl_toolkits.axisartist.angle_helper as angle_helper - - -def curvelinear_test1(fig): - """ - grid for custom transform. - """ - - def tr(x, y): - sgn = np.sign(x) - x, y = np.abs(np.asarray(x)), np.asarray(y) - return sgn*x**.5, y - - def inv_tr(x, y): - sgn = np.sign(x) - x, y = np.asarray(x), np.asarray(y) - return sgn*x**2, y - - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle=None, - lat_cycle=None, - # (0, np.inf), - lon_minmax=None, - lat_minmax=None, - ) - - grid_helper = GridHelperCurveLinear((tr, inv_tr), - extreme_finder=extreme_finder, - # better tick density - grid_locator1=MaxNLocator(nbins=6), - grid_locator2=MaxNLocator(nbins=6)) - - ax1 = Subplot(fig, 111, grid_helper=grid_helper) - # ax1 will have a ticks and gridlines defined by the given - # transform (+ transData of the Axes). Note that the transform of - # the Axes itself (i.e., transData) is not affected by the given - # transform. - - fig.add_subplot(ax1) - - ax1.imshow(np.arange(25).reshape(5, 5), - vmax=50, cmap=plt.cm.gray_r, - interpolation="nearest", - origin="lower") - - -if __name__ == "__main__": - fig = plt.figure(figsize=(7, 4)) - curvelinear_test1(fig) - plt.show() diff --git a/_downloads/9600ba232332b30392a86c9c9165f145/broken_axis.ipynb b/_downloads/9600ba232332b30392a86c9c9165f145/broken_axis.ipynb deleted file mode 100644 index 974485e7a04..00000000000 --- a/_downloads/9600ba232332b30392a86c9c9165f145/broken_axis.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Broken Axis\n\n\nBroken axis example, where the y-axis will have a portion cut out.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\n# 30 points between [0, 0.2) originally made using np.random.rand(30)*.2\npts = np.array([\n 0.015, 0.166, 0.133, 0.159, 0.041, 0.024, 0.195, 0.039, 0.161, 0.018,\n 0.143, 0.056, 0.125, 0.096, 0.094, 0.051, 0.043, 0.021, 0.138, 0.075,\n 0.109, 0.195, 0.050, 0.074, 0.079, 0.155, 0.020, 0.010, 0.061, 0.008])\n\n# Now let's make two outlier points which are far away from everything.\npts[[3, 14]] += .8\n\n# If we were to simply plot pts, we'd lose most of the interesting\n# details due to the outliers. So let's 'break' or 'cut-out' the y-axis\n# into two portions - use the top (ax) for the outliers, and the bottom\n# (ax2) for the details of the majority of our data\nf, (ax, ax2) = plt.subplots(2, 1, sharex=True)\n\n# plot the same data on both axes\nax.plot(pts)\nax2.plot(pts)\n\n# zoom-in / limit the view to different portions of the data\nax.set_ylim(.78, 1.) # outliers only\nax2.set_ylim(0, .22) # most of the data\n\n# hide the spines between ax and ax2\nax.spines['bottom'].set_visible(False)\nax2.spines['top'].set_visible(False)\nax.xaxis.tick_top()\nax.tick_params(labeltop=False) # don't put tick labels at the top\nax2.xaxis.tick_bottom()\n\n# This looks pretty good, and was fairly painless, but you can get that\n# cut-out diagonal lines look with just a bit more work. The important\n# thing to know here is that in axes coordinates, which are always\n# between 0-1, spine endpoints are at these locations (0,0), (0,1),\n# (1,0), and (1,1). Thus, we just need to put the diagonals in the\n# appropriate corners of each of our axes, and so long as we use the\n# right transform and disable clipping.\n\nd = .015 # how big to make the diagonal lines in axes coordinates\n# arguments to pass to plot, just so we don't keep repeating them\nkwargs = dict(transform=ax.transAxes, color='k', clip_on=False)\nax.plot((-d, +d), (-d, +d), **kwargs) # top-left diagonal\nax.plot((1 - d, 1 + d), (-d, +d), **kwargs) # top-right diagonal\n\nkwargs.update(transform=ax2.transAxes) # switch to the bottom axes\nax2.plot((-d, +d), (1 - d, 1 + d), **kwargs) # bottom-left diagonal\nax2.plot((1 - d, 1 + d), (1 - d, 1 + d), **kwargs) # bottom-right diagonal\n\n# What's cool about this is that now if we vary the distance between\n# ax and ax2 via f.subplots_adjust(hspace=...) or plt.subplot_tool(),\n# the diagonal lines will move accordingly, and stay right at the tips\n# of the spines they are 'breaking'\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/960a1833066e8c839fface758ae5dc17/simple_axes_divider1.py b/_downloads/960a1833066e8c839fface758ae5dc17/simple_axes_divider1.py deleted file mode 120000 index 58f6b33f552..00000000000 --- a/_downloads/960a1833066e8c839fface758ae5dc17/simple_axes_divider1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/960a1833066e8c839fface758ae5dc17/simple_axes_divider1.py \ No newline at end of file diff --git a/_downloads/96176bed9726ec79fb1cbccb1f276cbc/major_minor_demo.py b/_downloads/96176bed9726ec79fb1cbccb1f276cbc/major_minor_demo.py deleted file mode 120000 index a02f1ab3a35..00000000000 --- a/_downloads/96176bed9726ec79fb1cbccb1f276cbc/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/96176bed9726ec79fb1cbccb1f276cbc/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/96183bc3412446cee572b025510399a2/pythonic_matplotlib.py b/_downloads/96183bc3412446cee572b025510399a2/pythonic_matplotlib.py deleted file mode 120000 index 4309a0478f4..00000000000 --- a/_downloads/96183bc3412446cee572b025510399a2/pythonic_matplotlib.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/96183bc3412446cee572b025510399a2/pythonic_matplotlib.py \ No newline at end of file diff --git a/_downloads/9626e66f433c8617d3f8c2dd883c7967/common_date_problems.py b/_downloads/9626e66f433c8617d3f8c2dd883c7967/common_date_problems.py deleted file mode 120000 index 3e95b49c091..00000000000 --- a/_downloads/9626e66f433c8617d3f8c2dd883c7967/common_date_problems.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/9626e66f433c8617d3f8c2dd883c7967/common_date_problems.py \ No newline at end of file diff --git a/_downloads/9627e4a1136f7f00a0fca3678f943b8c/demo_fixed_size_axes.py b/_downloads/9627e4a1136f7f00a0fca3678f943b8c/demo_fixed_size_axes.py deleted file mode 120000 index ef53a917437..00000000000 --- a/_downloads/9627e4a1136f7f00a0fca3678f943b8c/demo_fixed_size_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9627e4a1136f7f00a0fca3678f943b8c/demo_fixed_size_axes.py \ No newline at end of file diff --git a/_downloads/963d054bbe78978022be8351ea34fe68/timeline.py b/_downloads/963d054bbe78978022be8351ea34fe68/timeline.py deleted file mode 120000 index ba4ed979ef0..00000000000 --- a/_downloads/963d054bbe78978022be8351ea34fe68/timeline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/963d054bbe78978022be8351ea34fe68/timeline.py \ No newline at end of file diff --git a/_downloads/9644c1d628cfb4e6ee7b373c10caab73/demo_constrained_layout.py b/_downloads/9644c1d628cfb4e6ee7b373c10caab73/demo_constrained_layout.py deleted file mode 120000 index 2805e081ef7..00000000000 --- a/_downloads/9644c1d628cfb4e6ee7b373c10caab73/demo_constrained_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9644c1d628cfb4e6ee7b373c10caab73/demo_constrained_layout.py \ No newline at end of file diff --git a/_downloads/965f0048afa9635d8153739da47c476b/subplot_toolbar.ipynb b/_downloads/965f0048afa9635d8153739da47c476b/subplot_toolbar.ipynb deleted file mode 120000 index bae55750110..00000000000 --- a/_downloads/965f0048afa9635d8153739da47c476b/subplot_toolbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/965f0048afa9635d8153739da47c476b/subplot_toolbar.ipynb \ No newline at end of file diff --git a/_downloads/96665e4afdbf967053616a4c9aa3aad5/boxplot.py b/_downloads/96665e4afdbf967053616a4c9aa3aad5/boxplot.py deleted file mode 120000 index e55fddea402..00000000000 --- a/_downloads/96665e4afdbf967053616a4c9aa3aad5/boxplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/96665e4afdbf967053616a4c9aa3aad5/boxplot.py \ No newline at end of file diff --git a/_downloads/9669819854befc0918ab74b8cfcc8874/line_with_text.py b/_downloads/9669819854befc0918ab74b8cfcc8874/line_with_text.py deleted file mode 120000 index eb4eae878bc..00000000000 --- a/_downloads/9669819854befc0918ab74b8cfcc8874/line_with_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9669819854befc0918ab74b8cfcc8874/line_with_text.py \ No newline at end of file diff --git a/_downloads/967b4bc7dd4b6facfc6658ae165fa179/timers.py b/_downloads/967b4bc7dd4b6facfc6658ae165fa179/timers.py deleted file mode 120000 index 98fb8d41371..00000000000 --- a/_downloads/967b4bc7dd4b6facfc6658ae165fa179/timers.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/967b4bc7dd4b6facfc6658ae165fa179/timers.py \ No newline at end of file diff --git a/_downloads/967ce4dd04ce9628b993a5a4e402046a/tight_layout_guide.ipynb b/_downloads/967ce4dd04ce9628b993a5a4e402046a/tight_layout_guide.ipynb deleted file mode 100644 index 645cdafafd7..00000000000 --- a/_downloads/967ce4dd04ce9628b993a5a4e402046a/tight_layout_guide.ipynb +++ /dev/null @@ -1,342 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tight Layout guide\n\n\nHow to use tight-layout to fit plots within your figure cleanly.\n\n*tight_layout* automatically adjusts subplot params so that the\nsubplot(s) fits in to the figure area. This is an experimental\nfeature and may not work for some cases. It only checks the extents\nof ticklabels, axis labels, and titles.\n\nAn alternative to *tight_layout* is :doc:`constrained_layout\n`.\n\n\nSimple Example\n==============\n\nIn matplotlib, the location of axes (including subplots) are specified in\nnormalized figure coordinates. It can happen that your axis labels or\ntitles (or sometimes even ticklabels) go outside the figure area, and are thus\nclipped.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 7\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nplt.rcParams['savefig.facecolor'] = \"0.8\"\n\n\ndef example_plot(ax, fontsize=12):\n ax.plot([1, 2])\n\n ax.locator_params(nbins=3)\n ax.set_xlabel('x-label', fontsize=fontsize)\n ax.set_ylabel('y-label', fontsize=fontsize)\n ax.set_title('Title', fontsize=fontsize)\n\nplt.close('all')\nfig, ax = plt.subplots()\nexample_plot(ax, fontsize=24)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To prevent this, the location of axes needs to be adjusted. For\nsubplots, this can be done by adjusting the subplot params\n(`howto-subplots-adjust`). Matplotlib v1.1 introduces a new\ncommand :func:`~matplotlib.pyplot.tight_layout` that does this\nautomatically for you.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nexample_plot(ax, fontsize=24)\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that :func:`matplotlib.pyplot.tight_layout` will only adjust the\nsubplot params when it is called. In order to perform this adjustment each\ntime the figure is redrawn, you can call ``fig.set_tight_layout(True)``, or,\nequivalently, set the ``figure.autolayout`` rcParam to ``True``.\n\nWhen you have multiple subplots, often you see labels of different\naxes overlapping each other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\n\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":func:`~matplotlib.pyplot.tight_layout` will also adjust spacing between\nsubplots to minimize the overlaps.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":func:`~matplotlib.pyplot.tight_layout` can take keyword arguments of\n*pad*, *w_pad* and *h_pad*. These control the extra padding around the\nfigure border and between subplots. The pads are specified in fraction\nof fontsize.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\nplt.tight_layout(pad=0.4, w_pad=0.5, h_pad=1.0)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":func:`~matplotlib.pyplot.tight_layout` will work even if the sizes of\nsubplots are different as far as their grid specification is\ncompatible. In the example below, *ax1* and *ax2* are subplots of a 2x2\ngrid, while *ax3* is of a 1x2 grid.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\nfig = plt.figure()\n\nax1 = plt.subplot(221)\nax2 = plt.subplot(223)\nax3 = plt.subplot(122)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It works with subplots created with\n:func:`~matplotlib.pyplot.subplot2grid`. In general, subplots created\nfrom the gridspec (:doc:`/tutorials/intermediate/gridspec`) will work.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\nfig = plt.figure()\n\nax1 = plt.subplot2grid((3, 3), (0, 0))\nax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2)\nax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Although not thoroughly tested, it seems to work for subplots with\naspect != \"auto\" (e.g., axes with images).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "arr = np.arange(100).reshape((10, 10))\n\nplt.close('all')\nfig = plt.figure(figsize=(5, 4))\n\nax = plt.subplot(111)\nim = ax.imshow(arr, interpolation=\"none\")\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Caveats\n=======\n\n * :func:`~matplotlib.pyplot.tight_layout` only considers ticklabels, axis\n labels, and titles. Thus, other artists may be clipped and also may\n overlap.\n\n * It assumes that the extra space needed for ticklabels, axis labels,\n and titles is independent of original location of axes. This is\n often true, but there are rare cases where it is not.\n\n * pad=0 clips some of the texts by a few pixels. This may be a bug or\n a limitation of the current algorithm and it is not clear why it\n happens. Meanwhile, use of pad at least larger than 0.3 is\n recommended.\n\nUse with GridSpec\n=================\n\nGridSpec has its own :func:`~matplotlib.gridspec.GridSpec.tight_layout` method\n(the pyplot api :func:`~matplotlib.pyplot.tight_layout` also works).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.gridspec as gridspec\n\nplt.close('all')\nfig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You may provide an optional *rect* parameter, which specifies the bounding box\nthat the subplots will be fit inside. The coordinates must be in normalized\nfigure coordinates and the default is (0, 0, 1, 1).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig, rect=[0, 0, 0.5, 1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For example, this can be used for a figure with multiple gridspecs.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig, rect=[0, 0, 0.5, 1])\n\ngs2 = gridspec.GridSpec(3, 1)\n\nfor ss in gs2:\n ax = fig.add_subplot(ss)\n example_plot(ax)\n ax.set_title(\"\")\n ax.set_xlabel(\"\")\n\nax.set_xlabel(\"x-label\", fontsize=12)\n\ngs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5)\n\n# We may try to match the top and bottom of two grids ::\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.update(top=top, bottom=bottom)\ngs2.update(top=top, bottom=bottom)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "While this should be mostly good enough, adjusting top and bottom\nmay require adjustment of hspace also. To update hspace & vspace, we\ncall :func:`~matplotlib.gridspec.GridSpec.tight_layout` again with updated\nrect argument. Note that the rect argument specifies the area including the\nticklabels, etc. Thus, we will increase the bottom (which is 0 for the normal\ncase) by the difference between the *bottom* from above and the bottom of each\ngridspec. Same thing for the top.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.gcf()\n\ngs1 = gridspec.GridSpec(2, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\n\nexample_plot(ax1)\nexample_plot(ax2)\n\ngs1.tight_layout(fig, rect=[0, 0, 0.5, 1])\n\ngs2 = gridspec.GridSpec(3, 1)\n\nfor ss in gs2:\n ax = fig.add_subplot(ss)\n example_plot(ax)\n ax.set_title(\"\")\n ax.set_xlabel(\"\")\n\nax.set_xlabel(\"x-label\", fontsize=12)\n\ngs2.tight_layout(fig, rect=[0.5, 0, 1, 1], h_pad=0.5)\n\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.update(top=top, bottom=bottom)\ngs2.update(top=top, bottom=bottom)\n\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.tight_layout(fig, rect=[None, 0 + (bottom-gs1.bottom),\n 0.5, 1 - (gs1.top-top)])\ngs2.tight_layout(fig, rect=[0.5, 0 + (bottom-gs2.bottom),\n None, 1 - (gs2.top-top)],\n h_pad=0.5)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legends and Annotations\n=======================\n\nPre Matplotlib 2.2, legends and annotations were excluded from the bounding\nbox calculations that decide the layout. Subsequently these artists were\nadded to the calculation, but sometimes it is undesirable to include them.\nFor instance in this case it might be good to have the axes shring a bit\nto make room for the legend:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(4, 3))\nlines = ax.plot(range(10), label='A simple plot')\nax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',)\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "However, sometimes this is not desired (quite often when using\n``fig.savefig('outname.png', bbox_inches='tight')``). In order to\nremove the legend from the bounding box calculation, we simply set its\nbounding ``leg.set_in_layout(False)`` and the legend will be ignored.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(4, 3))\nlines = ax.plot(range(10), label='B simple plot')\nleg = ax.legend(bbox_to_anchor=(0.7, 0.5), loc='center left',)\nleg.set_in_layout(False)\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use with AxesGrid1\n==================\n\nWhile limited, the axes_grid1 toolkit is also supported.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import Grid\n\nplt.close('all')\nfig = plt.figure()\ngrid = Grid(fig, rect=111, nrows_ncols=(2, 2),\n axes_pad=0.25, label_mode='L',\n )\n\nfor ax in grid:\n example_plot(ax)\nax.title.set_visible(False)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Colorbar\n========\n\nIf you create a colorbar with the :func:`~matplotlib.pyplot.colorbar`\ncommand, the created colorbar is an instance of Axes, *not* Subplot, so\ntight_layout does not work. With Matplotlib v1.1, you may create a\ncolorbar as a subplot using the gridspec.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.close('all')\narr = np.arange(100).reshape((10, 10))\nfig = plt.figure(figsize=(4, 4))\nim = plt.imshow(arr, interpolation=\"none\")\n\nplt.colorbar(im, use_gridspec=True)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another option is to use AxesGrid1 toolkit to\nexplicitly create an axes for colorbar.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import make_axes_locatable\n\nplt.close('all')\narr = np.arange(100).reshape((10, 10))\nfig = plt.figure(figsize=(4, 4))\nim = plt.imshow(arr, interpolation=\"none\")\n\ndivider = make_axes_locatable(plt.gca())\ncax = divider.append_axes(\"right\", \"5%\", pad=\"3%\")\nplt.colorbar(im, cax=cax)\n\nplt.tight_layout()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9682347fff97915a1e4a5fb04da2e565/patch_collection.ipynb b/_downloads/9682347fff97915a1e4a5fb04da2e565/patch_collection.ipynb deleted file mode 120000 index 78845c0e52f..00000000000 --- a/_downloads/9682347fff97915a1e4a5fb04da2e565/patch_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9682347fff97915a1e4a5fb04da2e565/patch_collection.ipynb \ No newline at end of file diff --git a/_downloads/969cb0e1dc19d33a607ccbe4cc663ecc/contour_corner_mask.ipynb b/_downloads/969cb0e1dc19d33a607ccbe4cc663ecc/contour_corner_mask.ipynb deleted file mode 120000 index 2b6d5bbf013..00000000000 --- a/_downloads/969cb0e1dc19d33a607ccbe4cc663ecc/contour_corner_mask.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/969cb0e1dc19d33a607ccbe4cc663ecc/contour_corner_mask.ipynb \ No newline at end of file diff --git a/_downloads/96ae6e539ec8bad2be29a30c9bb04b5a/simple_axes_divider3.py b/_downloads/96ae6e539ec8bad2be29a30c9bb04b5a/simple_axes_divider3.py deleted file mode 100644 index 6b7d9b4dd09..00000000000 --- a/_downloads/96ae6e539ec8bad2be29a30c9bb04b5a/simple_axes_divider3.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -===================== -Simple Axes Divider 3 -===================== - -""" -import mpl_toolkits.axes_grid1.axes_size as Size -from mpl_toolkits.axes_grid1 import Divider -import matplotlib.pyplot as plt - - -fig = plt.figure(figsize=(5.5, 4)) - -# the rect parameter will be ignore as we will set axes_locator -rect = (0.1, 0.1, 0.8, 0.8) -ax = [fig.add_axes(rect, label="%d" % i) for i in range(4)] - - -horiz = [Size.AxesX(ax[0]), Size.Fixed(.5), Size.AxesX(ax[1])] -vert = [Size.AxesY(ax[0]), Size.Fixed(.5), Size.AxesY(ax[2])] - -# divide the axes rectangle into grid whose size is specified by horiz * vert -divider = Divider(fig, rect, horiz, vert, aspect=False) - - -ax[0].set_axes_locator(divider.new_locator(nx=0, ny=0)) -ax[1].set_axes_locator(divider.new_locator(nx=2, ny=0)) -ax[2].set_axes_locator(divider.new_locator(nx=0, ny=2)) -ax[3].set_axes_locator(divider.new_locator(nx=2, ny=2)) - -ax[0].set_xlim(0, 2) -ax[1].set_xlim(0, 1) - -ax[0].set_ylim(0, 1) -ax[2].set_ylim(0, 2) - -divider.set_aspect(1.) - -for ax1 in ax: - ax1.tick_params(labelbottom=False, labelleft=False) - -plt.show() diff --git a/_downloads/96bd812521fa31c76077054e435aca9a/demo_text_path.ipynb b/_downloads/96bd812521fa31c76077054e435aca9a/demo_text_path.ipynb deleted file mode 120000 index 9ec3508a68c..00000000000 --- a/_downloads/96bd812521fa31c76077054e435aca9a/demo_text_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/96bd812521fa31c76077054e435aca9a/demo_text_path.ipynb \ No newline at end of file diff --git a/_downloads/96d14f44dda4ec3bbef91145f09f84ea/contour_demo.py b/_downloads/96d14f44dda4ec3bbef91145f09f84ea/contour_demo.py deleted file mode 120000 index 827dd97e506..00000000000 --- a/_downloads/96d14f44dda4ec3bbef91145f09f84ea/contour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/96d14f44dda4ec3bbef91145f09f84ea/contour_demo.py \ No newline at end of file diff --git a/_downloads/96d262f7dec505517c30030ecf81493c/annotate_simple_coord02.ipynb b/_downloads/96d262f7dec505517c30030ecf81493c/annotate_simple_coord02.ipynb deleted file mode 120000 index 1193af2874c..00000000000 --- a/_downloads/96d262f7dec505517c30030ecf81493c/annotate_simple_coord02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/96d262f7dec505517c30030ecf81493c/annotate_simple_coord02.ipynb \ No newline at end of file diff --git a/_downloads/96dfb78e5dc87b48afee09aaf6a84cd4/violin.ipynb b/_downloads/96dfb78e5dc87b48afee09aaf6a84cd4/violin.ipynb deleted file mode 120000 index 62f1deae1e8..00000000000 --- a/_downloads/96dfb78e5dc87b48afee09aaf6a84cd4/violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/96dfb78e5dc87b48afee09aaf6a84cd4/violin.ipynb \ No newline at end of file diff --git a/_downloads/96dfd5094ba54fd852082f5268314876/gtk3_spreadsheet_sgskip.ipynb b/_downloads/96dfd5094ba54fd852082f5268314876/gtk3_spreadsheet_sgskip.ipynb deleted file mode 120000 index 77d262b8f4e..00000000000 --- a/_downloads/96dfd5094ba54fd852082f5268314876/gtk3_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/96dfd5094ba54fd852082f5268314876/gtk3_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/96efac573cbb4097c0546d04a5ab5ec7/image_transparency_blend.py b/_downloads/96efac573cbb4097c0546d04a5ab5ec7/image_transparency_blend.py deleted file mode 100644 index d21992aa57a..00000000000 --- a/_downloads/96efac573cbb4097c0546d04a5ab5ec7/image_transparency_blend.py +++ /dev/null @@ -1,143 +0,0 @@ -""" -=========================================== -Blend transparency with color in 2-D images -=========================================== - -Blend transparency with color to highlight parts of data with imshow. - -A common use for :func:`matplotlib.pyplot.imshow` is to plot a 2-D statistical -map. While ``imshow`` makes it easy to visualize a 2-D matrix as an image, -it doesn't easily let you add transparency to the output. For example, one can -plot a statistic (such as a t-statistic) and color the transparency of -each pixel according to its p-value. This example demonstrates how you can -achieve this effect using :class:`matplotlib.colors.Normalize`. Note that it is -not possible to directly pass alpha values to :func:`matplotlib.pyplot.imshow`. - -First we will generate some data, in this case, we'll create two 2-D "blobs" -in a 2-D grid. One blob will be positive, and the other negative. -""" -# sphinx_gallery_thumbnail_number = 3 -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.colors import Normalize - - -def normal_pdf(x, mean, var): - return np.exp(-(x - mean)**2 / (2*var)) - - -# Generate the space in which the blobs will live -xmin, xmax, ymin, ymax = (0, 100, 0, 100) -n_bins = 100 -xx = np.linspace(xmin, xmax, n_bins) -yy = np.linspace(ymin, ymax, n_bins) - -# Generate the blobs. The range of the values is roughly -.0002 to .0002 -means_high = [20, 50] -means_low = [50, 60] -var = [150, 200] - -gauss_x_high = normal_pdf(xx, means_high[0], var[0]) -gauss_y_high = normal_pdf(yy, means_high[1], var[0]) - -gauss_x_low = normal_pdf(xx, means_low[0], var[1]) -gauss_y_low = normal_pdf(yy, means_low[1], var[1]) - -weights_high = np.array(np.meshgrid(gauss_x_high, gauss_y_high)).prod(0) -weights_low = -1 * np.array(np.meshgrid(gauss_x_low, gauss_y_low)).prod(0) -weights = weights_high + weights_low - -# We'll also create a grey background into which the pixels will fade -greys = np.full((*weights.shape, 3), 70, dtype=np.uint8) - -# First we'll plot these blobs using only ``imshow``. -vmax = np.abs(weights).max() -vmin = -vmax -cmap = plt.cm.RdYlBu - -fig, ax = plt.subplots() -ax.imshow(greys) -ax.imshow(weights, extent=(xmin, xmax, ymin, ymax), cmap=cmap) -ax.set_axis_off() - -############################################################################### -# Blending in transparency -# ======================== -# -# The simplest way to include transparency when plotting data with -# :func:`matplotlib.pyplot.imshow` is to convert the 2-D data array to a -# 3-D image array of rgba values. This can be done with -# :class:`matplotlib.colors.Normalize`. For example, we'll create a gradient -# moving from left to right below. - -# Create an alpha channel of linearly increasing values moving to the right. -alphas = np.ones(weights.shape) -alphas[:, 30:] = np.linspace(1, 0, 70) - -# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow -colors = Normalize(vmin, vmax, clip=True)(weights) -colors = cmap(colors) - -# Now set the alpha channel to the one we created above -colors[..., -1] = alphas - -# Create the figure and image -# Note that the absolute values may be slightly different -fig, ax = plt.subplots() -ax.imshow(greys) -ax.imshow(colors, extent=(xmin, xmax, ymin, ymax)) -ax.set_axis_off() - -############################################################################### -# Using transparency to highlight values with high amplitude -# ========================================================== -# -# Finally, we'll recreate the same plot, but this time we'll use transparency -# to highlight the extreme values in the data. This is often used to highlight -# data points with smaller p-values. We'll also add in contour lines to -# highlight the image values. - -# Create an alpha channel based on weight values -# Any value whose absolute value is > .0001 will have zero transparency -alphas = Normalize(0, .3, clip=True)(np.abs(weights)) -alphas = np.clip(alphas, .4, 1) # alpha value clipped at the bottom at .4 - -# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow -colors = Normalize(vmin, vmax)(weights) -colors = cmap(colors) - -# Now set the alpha channel to the one we created above -colors[..., -1] = alphas - -# Create the figure and image -# Note that the absolute values may be slightly different -fig, ax = plt.subplots() -ax.imshow(greys) -ax.imshow(colors, extent=(xmin, xmax, ymin, ymax)) - -# Add contour lines to further highlight different levels. -ax.contour(weights[::-1], levels=[-.1, .1], colors='k', linestyles='-') -ax.set_axis_off() -plt.show() - -ax.contour(weights[::-1], levels=[-.0001, .0001], colors='k', linestyles='-') -ax.set_axis_off() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.colors.Normalize -matplotlib.axes.Axes.set_axis_off diff --git a/_downloads/96f0c79a184df262497dbb666b400d2d/stackplot_demo.ipynb b/_downloads/96f0c79a184df262497dbb666b400d2d/stackplot_demo.ipynb deleted file mode 100644 index 90e240c2c98..00000000000 --- a/_downloads/96f0c79a184df262497dbb666b400d2d/stackplot_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Stackplot Demo\n\n\nHow to create stackplots with Matplotlib.\n\nStackplots are generated by plotting different datasets vertically on\ntop of one another rather than overlapping with one another. Below we\nshow some examples to accomplish this with Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = [1, 2, 3, 4, 5]\ny1 = [1, 1, 2, 3, 5]\ny2 = [0, 4, 2, 6, 8]\ny3 = [1, 3, 5, 7, 9]\n\ny = np.vstack([y1, y2, y3])\n\nlabels = [\"Fibonacci \", \"Evens\", \"Odds\"]\n\nfig, ax = plt.subplots()\nax.stackplot(x, y1, y2, y3, labels=labels)\nax.legend(loc='upper left')\nplt.show()\n\nfig, ax = plt.subplots()\nax.stackplot(x, y)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we show an example of making a streamgraph using stackplot\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def layers(n, m):\n \"\"\"\n Return *n* random Gaussian mixtures, each of length *m*.\n \"\"\"\n def bump(a):\n x = 1 / (.1 + np.random.random())\n y = 2 * np.random.random() - .5\n z = 10 / (.1 + np.random.random())\n for i in range(m):\n w = (i / m - y) * z\n a[i] += x * np.exp(-w * w)\n a = np.zeros((m, n))\n for i in range(n):\n for j in range(5):\n bump(a[:, i])\n return a\n\n\nd = layers(3, 100)\n\nfig, ax = plt.subplots()\nax.stackplot(range(100), d.T, baseline='wiggle')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/96f3001791d7696bb5a70dfc4ae68db9/multiple_yaxis_with_spines.ipynb b/_downloads/96f3001791d7696bb5a70dfc4ae68db9/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index cf9d1f61464..00000000000 --- a/_downloads/96f3001791d7696bb5a70dfc4ae68db9/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/96f3001791d7696bb5a70dfc4ae68db9/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/970337272431561e50c907d7b3770a43/svg_tooltip_sgskip.ipynb b/_downloads/970337272431561e50c907d7b3770a43/svg_tooltip_sgskip.ipynb deleted file mode 120000 index d34315809a8..00000000000 --- a/_downloads/970337272431561e50c907d7b3770a43/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/970337272431561e50c907d7b3770a43/svg_tooltip_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/971d06df440941179dfdec3a81a5a048/anscombe.ipynb b/_downloads/971d06df440941179dfdec3a81a5a048/anscombe.ipynb deleted file mode 120000 index 5f3d040cdac..00000000000 --- a/_downloads/971d06df440941179dfdec3a81a5a048/anscombe.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/971d06df440941179dfdec3a81a5a048/anscombe.ipynb \ No newline at end of file diff --git a/_downloads/97206f1064f8290d6834666c4e083c2b/demo_gridspec05.py b/_downloads/97206f1064f8290d6834666c4e083c2b/demo_gridspec05.py deleted file mode 120000 index 61bdf03daa0..00000000000 --- a/_downloads/97206f1064f8290d6834666c4e083c2b/demo_gridspec05.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/97206f1064f8290d6834666c4e083c2b/demo_gridspec05.py \ No newline at end of file diff --git a/_downloads/973339d1ea370423625a51417117b271/log_test.py b/_downloads/973339d1ea370423625a51417117b271/log_test.py deleted file mode 120000 index e2f192430ba..00000000000 --- a/_downloads/973339d1ea370423625a51417117b271/log_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/973339d1ea370423625a51417117b271/log_test.py \ No newline at end of file diff --git a/_downloads/9733467855a980142f0a305cfaca57be/pie_features.ipynb b/_downloads/9733467855a980142f0a305cfaca57be/pie_features.ipynb deleted file mode 120000 index 3aba03b4642..00000000000 --- a/_downloads/9733467855a980142f0a305cfaca57be/pie_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9733467855a980142f0a305cfaca57be/pie_features.ipynb \ No newline at end of file diff --git a/_downloads/97751665f52cf61d9c3101d70e30d452/3d_bars.py b/_downloads/97751665f52cf61d9c3101d70e30d452/3d_bars.py deleted file mode 120000 index 93e32bd6e30..00000000000 --- a/_downloads/97751665f52cf61d9c3101d70e30d452/3d_bars.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/97751665f52cf61d9c3101d70e30d452/3d_bars.py \ No newline at end of file diff --git a/_downloads/97828c4ca7f6b77b6e730054b5a53a86/dolphin.py b/_downloads/97828c4ca7f6b77b6e730054b5a53a86/dolphin.py deleted file mode 120000 index e297cde1399..00000000000 --- a/_downloads/97828c4ca7f6b77b6e730054b5a53a86/dolphin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/97828c4ca7f6b77b6e730054b5a53a86/dolphin.py \ No newline at end of file diff --git a/_downloads/97871b7a7c2a7805d4af3df0fd5becfa/evans_test.ipynb b/_downloads/97871b7a7c2a7805d4af3df0fd5becfa/evans_test.ipynb deleted file mode 120000 index e76d0cf3322..00000000000 --- a/_downloads/97871b7a7c2a7805d4af3df0fd5becfa/evans_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/97871b7a7c2a7805d4af3df0fd5becfa/evans_test.ipynb \ No newline at end of file diff --git a/_downloads/9787ab1f9cf2a45d97792ee8188212ac/svg_filter_line.ipynb b/_downloads/9787ab1f9cf2a45d97792ee8188212ac/svg_filter_line.ipynb deleted file mode 120000 index b751c95e338..00000000000 --- a/_downloads/9787ab1f9cf2a45d97792ee8188212ac/svg_filter_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9787ab1f9cf2a45d97792ee8188212ac/svg_filter_line.ipynb \ No newline at end of file diff --git a/_downloads/9788bd0434ac6126ca8448cdd02b5b76/colors.py b/_downloads/9788bd0434ac6126ca8448cdd02b5b76/colors.py deleted file mode 120000 index 68852acc9f5..00000000000 --- a/_downloads/9788bd0434ac6126ca8448cdd02b5b76/colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9788bd0434ac6126ca8448cdd02b5b76/colors.py \ No newline at end of file diff --git a/_downloads/978c1517cc1559e79f1bd9dd6cb718bd/dollar_ticks.py b/_downloads/978c1517cc1559e79f1bd9dd6cb718bd/dollar_ticks.py deleted file mode 100644 index 0ed36764557..00000000000 --- a/_downloads/978c1517cc1559e79f1bd9dd6cb718bd/dollar_ticks.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============ -Dollar Ticks -============ - -Use a `~.ticker.FormatStrFormatter` to prepend dollar signs on y axis labels. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() -ax.plot(100*np.random.rand(20)) - -formatter = ticker.FormatStrFormatter('$%1.2f') -ax.yaxis.set_major_formatter(formatter) - -for tick in ax.yaxis.get_major_ticks(): - tick.label1.set_visible(False) - tick.label2.set_visible(True) - tick.label2.set_color('green') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.ticker -matplotlib.ticker.FormatStrFormatter -matplotlib.axis.Axis.set_major_formatter -matplotlib.axis.Axis.get_major_ticks -matplotlib.axis.Tick diff --git a/_downloads/978c1e6ddb02ef6a8806b82590410838/axhspan_demo.py b/_downloads/978c1e6ddb02ef6a8806b82590410838/axhspan_demo.py deleted file mode 120000 index 4091b2cd935..00000000000 --- a/_downloads/978c1e6ddb02ef6a8806b82590410838/axhspan_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/978c1e6ddb02ef6a8806b82590410838/axhspan_demo.py \ No newline at end of file diff --git a/_downloads/979598886c6d7c1a812bbbefdc639f4e/embedding_in_qt_sgskip.ipynb b/_downloads/979598886c6d7c1a812bbbefdc639f4e/embedding_in_qt_sgskip.ipynb deleted file mode 120000 index 05ff09e0cd6..00000000000 --- a/_downloads/979598886c6d7c1a812bbbefdc639f4e/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/979598886c6d7c1a812bbbefdc639f4e/embedding_in_qt_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/979cd89bd7a256cbd436224cfe8073a3/watermark_text.ipynb b/_downloads/979cd89bd7a256cbd436224cfe8073a3/watermark_text.ipynb deleted file mode 120000 index 23e5144c555..00000000000 --- a/_downloads/979cd89bd7a256cbd436224cfe8073a3/watermark_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/979cd89bd7a256cbd436224cfe8073a3/watermark_text.ipynb \ No newline at end of file diff --git a/_downloads/979f54d08c0e4d24b847d98d98c41a26/date_concise_formatter.py b/_downloads/979f54d08c0e4d24b847d98d98c41a26/date_concise_formatter.py deleted file mode 120000 index b2489234748..00000000000 --- a/_downloads/979f54d08c0e4d24b847d98d98c41a26/date_concise_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/979f54d08c0e4d24b847d98d98c41a26/date_concise_formatter.py \ No newline at end of file diff --git a/_downloads/979fc752f0e8f03ef683d2d7c9e7947b/log_bar.ipynb b/_downloads/979fc752f0e8f03ef683d2d7c9e7947b/log_bar.ipynb deleted file mode 120000 index f49d882aa96..00000000000 --- a/_downloads/979fc752f0e8f03ef683d2d7c9e7947b/log_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/979fc752f0e8f03ef683d2d7c9e7947b/log_bar.ipynb \ No newline at end of file diff --git a/_downloads/97a2bcca617446048839b0f86011c0cc/triplot_demo.ipynb b/_downloads/97a2bcca617446048839b0f86011c0cc/triplot_demo.ipynb deleted file mode 120000 index 2cda62a3fa7..00000000000 --- a/_downloads/97a2bcca617446048839b0f86011c0cc/triplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/97a2bcca617446048839b0f86011c0cc/triplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/97a49efda04165d372834a648876296b/hist.ipynb b/_downloads/97a49efda04165d372834a648876296b/hist.ipynb deleted file mode 100644 index 56f64e76185..00000000000 --- a/_downloads/97a49efda04165d372834a648876296b/hist.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Histograms\n\n\nDemonstrates how to plot histograms with matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import colors\nfrom matplotlib.ticker import PercentFormatter\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Generate data and plot a simple histogram\n-----------------------------------------\n\nTo generate a 1D histogram we only need a single vector of numbers. For a 2D\nhistogram we'll need a second vector. We'll generate both below, and show\nthe histogram for each vector.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N_points = 100000\nn_bins = 20\n\n# Generate a normal distribution, center at x=0 and y=5\nx = np.random.randn(N_points)\ny = .4 * x + np.random.randn(100000) + 5\n\nfig, axs = plt.subplots(1, 2, sharey=True, tight_layout=True)\n\n# We can set the number of bins with the `bins` kwarg\naxs[0].hist(x, bins=n_bins)\naxs[1].hist(y, bins=n_bins)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Updating histogram colors\n-------------------------\n\nThe histogram method returns (among other things) a `patches` object. This\ngives us access to the properties of the objects drawn. Using this, we can\nedit the histogram to our liking. Let's change the color of each bar\nbased on its y value.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, tight_layout=True)\n\n# N is the count in each bin, bins is the lower-limit of the bin\nN, bins, patches = axs[0].hist(x, bins=n_bins)\n\n# We'll color code by height, but you could use any scalar\nfracs = N / N.max()\n\n# we need to normalize the data to 0..1 for the full range of the colormap\nnorm = colors.Normalize(fracs.min(), fracs.max())\n\n# Now, we'll loop through our objects and set the color of each accordingly\nfor thisfrac, thispatch in zip(fracs, patches):\n color = plt.cm.viridis(norm(thisfrac))\n thispatch.set_facecolor(color)\n\n# We can also normalize our inputs by the total number of counts\naxs[1].hist(x, bins=n_bins, density=True)\n\n# Now we format the y-axis to display percentage\naxs[1].yaxis.set_major_formatter(PercentFormatter(xmax=1))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot a 2D histogram\n-------------------\n\nTo plot a 2D histogram, one only needs two vectors of the same length,\ncorresponding to each axis of the histogram.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(tight_layout=True)\nhist = ax.hist2d(x, y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Customizing your histogram\n--------------------------\n\nCustomizing a 2D histogram is similar to the 1D case, you can control\nvisual components such as the bin size or color normalization.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(5, 15), sharex=True, sharey=True,\n tight_layout=True)\n\n# We can increase the number of bins on each axis\naxs[0].hist2d(x, y, bins=40)\n\n# As well as define normalization of the colors\naxs[1].hist2d(x, y, bins=40, norm=colors.LogNorm())\n\n# We can also define custom numbers of bins for each axis\naxs[2].hist2d(x, y, bins=(80, 10), norm=colors.LogNorm())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/97a86798f3fff1700bba2c122d922421/watermark_image.ipynb b/_downloads/97a86798f3fff1700bba2c122d922421/watermark_image.ipynb deleted file mode 120000 index 02bab7e2366..00000000000 --- a/_downloads/97a86798f3fff1700bba2c122d922421/watermark_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/97a86798f3fff1700bba2c122d922421/watermark_image.ipynb \ No newline at end of file diff --git a/_downloads/97ba487971c1a1e6bcae9745d6915742/simple_axisline3.ipynb b/_downloads/97ba487971c1a1e6bcae9745d6915742/simple_axisline3.ipynb deleted file mode 120000 index 4f5954b537e..00000000000 --- a/_downloads/97ba487971c1a1e6bcae9745d6915742/simple_axisline3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/97ba487971c1a1e6bcae9745d6915742/simple_axisline3.ipynb \ No newline at end of file diff --git a/_downloads/97bb858386eea7e1aebaf6bbd303903e/firefox.ipynb b/_downloads/97bb858386eea7e1aebaf6bbd303903e/firefox.ipynb deleted file mode 120000 index 4759620840c..00000000000 --- a/_downloads/97bb858386eea7e1aebaf6bbd303903e/firefox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/97bb858386eea7e1aebaf6bbd303903e/firefox.ipynb \ No newline at end of file diff --git a/_downloads/97bcffbb1f60980e1ed023c1abf6b9f3/pick_event_demo.py b/_downloads/97bcffbb1f60980e1ed023c1abf6b9f3/pick_event_demo.py deleted file mode 120000 index 00b64a170b4..00000000000 --- a/_downloads/97bcffbb1f60980e1ed023c1abf6b9f3/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/97bcffbb1f60980e1ed023c1abf6b9f3/pick_event_demo.py \ No newline at end of file diff --git a/_downloads/97c4c9181099e932ac8eadc2de411aa7/parasite_simple.ipynb b/_downloads/97c4c9181099e932ac8eadc2de411aa7/parasite_simple.ipynb deleted file mode 120000 index 71206dd91cb..00000000000 --- a/_downloads/97c4c9181099e932ac8eadc2de411aa7/parasite_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/97c4c9181099e932ac8eadc2de411aa7/parasite_simple.ipynb \ No newline at end of file diff --git a/_downloads/97ca19d4a14590a93860dd317457c9cf/fahrenheit_celsius_scales.ipynb b/_downloads/97ca19d4a14590a93860dd317457c9cf/fahrenheit_celsius_scales.ipynb deleted file mode 120000 index f4d3e85fe22..00000000000 --- a/_downloads/97ca19d4a14590a93860dd317457c9cf/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/97ca19d4a14590a93860dd317457c9cf/fahrenheit_celsius_scales.ipynb \ No newline at end of file diff --git a/_downloads/97d182004997b17b767f4c217261ded9/markevery_demo.ipynb b/_downloads/97d182004997b17b767f4c217261ded9/markevery_demo.ipynb deleted file mode 120000 index c309011bb16..00000000000 --- a/_downloads/97d182004997b17b767f4c217261ded9/markevery_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/97d182004997b17b767f4c217261ded9/markevery_demo.ipynb \ No newline at end of file diff --git a/_downloads/97d664e771dc8bfd11386df73985f399/usetex.py b/_downloads/97d664e771dc8bfd11386df73985f399/usetex.py deleted file mode 120000 index f538684e2a9..00000000000 --- a/_downloads/97d664e771dc8bfd11386df73985f399/usetex.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/97d664e771dc8bfd11386df73985f399/usetex.py \ No newline at end of file diff --git a/_downloads/97dc3c13a0cf6d7a09791d2725e31515/line_with_text.ipynb b/_downloads/97dc3c13a0cf6d7a09791d2725e31515/line_with_text.ipynb deleted file mode 120000 index c998fb0f5d2..00000000000 --- a/_downloads/97dc3c13a0cf6d7a09791d2725e31515/line_with_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/97dc3c13a0cf6d7a09791d2725e31515/line_with_text.ipynb \ No newline at end of file diff --git a/_downloads/97ec47d007f099eecc5b6af672ff63ec/multiple_figs_demo.ipynb b/_downloads/97ec47d007f099eecc5b6af672ff63ec/multiple_figs_demo.ipynb deleted file mode 120000 index 056f7a3e3d8..00000000000 --- a/_downloads/97ec47d007f099eecc5b6af672ff63ec/multiple_figs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/97ec47d007f099eecc5b6af672ff63ec/multiple_figs_demo.ipynb \ No newline at end of file diff --git a/_downloads/97fba2697becf1ad899d59e10254366f/annotation_polar.ipynb b/_downloads/97fba2697becf1ad899d59e10254366f/annotation_polar.ipynb deleted file mode 120000 index 680d7a11235..00000000000 --- a/_downloads/97fba2697becf1ad899d59e10254366f/annotation_polar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/97fba2697becf1ad899d59e10254366f/annotation_polar.ipynb \ No newline at end of file diff --git a/_downloads/98018f91cc2f8b941d979ec9da588754/custom_ticker1.py b/_downloads/98018f91cc2f8b941d979ec9da588754/custom_ticker1.py deleted file mode 120000 index 952c4947f45..00000000000 --- a/_downloads/98018f91cc2f8b941d979ec9da588754/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/98018f91cc2f8b941d979ec9da588754/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/9802019831216b7f4b13a4c81eaf6bbd/logos2.py b/_downloads/9802019831216b7f4b13a4c81eaf6bbd/logos2.py deleted file mode 120000 index 8111eba1f53..00000000000 --- a/_downloads/9802019831216b7f4b13a4c81eaf6bbd/logos2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9802019831216b7f4b13a4c81eaf6bbd/logos2.py \ No newline at end of file diff --git a/_downloads/98108525b431b60293ef00cb1360ffe9/mathtext_demo.py b/_downloads/98108525b431b60293ef00cb1360ffe9/mathtext_demo.py deleted file mode 100644 index ab7e1b2bde8..00000000000 --- a/_downloads/98108525b431b60293ef00cb1360ffe9/mathtext_demo.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============= -Mathtext Demo -============= - -Use Matplotlib's internal LaTeX parser and layout engine. For true LaTeX -rendering, see the text.usetex option. -""" - -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -ax.plot([1, 2, 3], label=r'$\sqrt{x^2}$') -ax.legend() - -ax.set_xlabel(r'$\Delta_i^j$', fontsize=20) -ax.set_ylabel(r'$\Delta_{i+1}^j$', fontsize=20) -ax.set_title(r'$\Delta_i^j \hspace{0.4} \mathrm{versus} \hspace{0.4} ' - r'\Delta_{i+1}^j$', fontsize=20) - -tex = r'$\mathcal{R}\prod_{i=\alpha_{i+1}}^\infty a_i\sin(2 \pi f x_i)$' -ax.text(1, 1.6, tex, fontsize=20, va='bottom') - -fig.tight_layout() -plt.show() diff --git a/_downloads/981d330b746a359209a844e5fbcb2db8/pie_and_donut_labels.ipynb b/_downloads/981d330b746a359209a844e5fbcb2db8/pie_and_donut_labels.ipynb deleted file mode 120000 index 2a647f58d21..00000000000 --- a/_downloads/981d330b746a359209a844e5fbcb2db8/pie_and_donut_labels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/981d330b746a359209a844e5fbcb2db8/pie_and_donut_labels.ipynb \ No newline at end of file diff --git a/_downloads/981ef13e550e1c6d65b61db89c1396f7/demo_tight_layout.ipynb b/_downloads/981ef13e550e1c6d65b61db89c1396f7/demo_tight_layout.ipynb deleted file mode 120000 index 3257c1d7777..00000000000 --- a/_downloads/981ef13e550e1c6d65b61db89c1396f7/demo_tight_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/981ef13e550e1c6d65b61db89c1396f7/demo_tight_layout.ipynb \ No newline at end of file diff --git a/_downloads/982150f6f72db2a6042ea9a81adacb7e/tick-formatters.py b/_downloads/982150f6f72db2a6042ea9a81adacb7e/tick-formatters.py deleted file mode 120000 index 1a1876176b3..00000000000 --- a/_downloads/982150f6f72db2a6042ea9a81adacb7e/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/982150f6f72db2a6042ea9a81adacb7e/tick-formatters.py \ No newline at end of file diff --git a/_downloads/982fb81523e6b14c8d66e57af66db18f/customize_rc.ipynb b/_downloads/982fb81523e6b14c8d66e57af66db18f/customize_rc.ipynb deleted file mode 120000 index ccdbe97a9c1..00000000000 --- a/_downloads/982fb81523e6b14c8d66e57af66db18f/customize_rc.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/982fb81523e6b14c8d66e57af66db18f/customize_rc.ipynb \ No newline at end of file diff --git a/_downloads/983012f0c1ca50a7d8560886c8b27470/mathtext_examples.ipynb b/_downloads/983012f0c1ca50a7d8560886c8b27470/mathtext_examples.ipynb deleted file mode 120000 index ebd8f7176ab..00000000000 --- a/_downloads/983012f0c1ca50a7d8560886c8b27470/mathtext_examples.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/983012f0c1ca50a7d8560886c8b27470/mathtext_examples.ipynb \ No newline at end of file diff --git a/_downloads/9834a32486df95416285cb7595811144/evans_test.py b/_downloads/9834a32486df95416285cb7595811144/evans_test.py deleted file mode 120000 index 77d9bc4694d..00000000000 --- a/_downloads/9834a32486df95416285cb7595811144/evans_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9834a32486df95416285cb7595811144/evans_test.py \ No newline at end of file diff --git a/_downloads/98351e64c40ec8099262729ba5f5ba0e/contours_in_optimization_demo.ipynb b/_downloads/98351e64c40ec8099262729ba5f5ba0e/contours_in_optimization_demo.ipynb deleted file mode 120000 index 14b3d1cfef9..00000000000 --- a/_downloads/98351e64c40ec8099262729ba5f5ba0e/contours_in_optimization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/98351e64c40ec8099262729ba5f5ba0e/contours_in_optimization_demo.ipynb \ No newline at end of file diff --git a/_downloads/984cdbaa6dd235a04afa6c5d58d1d05f/demo_floating_axes.ipynb b/_downloads/984cdbaa6dd235a04afa6c5d58d1d05f/demo_floating_axes.ipynb deleted file mode 100644 index 053e4fb8403..00000000000 --- a/_downloads/984cdbaa6dd235a04afa6c5d58d1d05f/demo_floating_axes.ipynb +++ /dev/null @@ -1,65 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================================================\n:mod:`mpl_toolkits.axisartist.floating_axes` features\n=====================================================\n\nDemonstration of features of the :mod:`.floating_axes` module:\n\n* Using `scatter` and `bar` with changing the shape of the plot.\n* Using `GridHelperCurveLinear` to rotate the plot and set the plot boundary.\n* Using `FloatingSubplot` to create a subplot using the return value from\n `GridHelperCurveLinear`.\n* Making a sector plot by adding more features to `GridHelperCurveLinear`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.transforms import Affine2D\nimport mpl_toolkits.axisartist.floating_axes as floating_axes\nimport numpy as np\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nfrom matplotlib.projections import PolarAxes\nfrom mpl_toolkits.axisartist.grid_finder import (FixedLocator, MaxNLocator,\n DictFormatter)\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef setup_axes1(fig, rect):\n \"\"\"\n A simple one.\n \"\"\"\n tr = Affine2D().scale(2, 1).rotate_deg(30)\n\n grid_helper = floating_axes.GridHelperCurveLinear(\n tr, extremes=(-0.5, 3.5, 0, 4),\n grid_locator1=MaxNLocator(nbins=4),\n grid_locator2=MaxNLocator(nbins=4))\n\n ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper)\n fig.add_subplot(ax1)\n\n aux_ax = ax1.get_aux_axes(tr)\n\n return ax1, aux_ax\n\n\ndef setup_axes2(fig, rect):\n \"\"\"\n With custom locator and formatter.\n Note that the extreme values are swapped.\n \"\"\"\n tr = PolarAxes.PolarTransform()\n\n pi = np.pi\n angle_ticks = [(0, r\"$0$\"),\n (.25*pi, r\"$\\frac{1}{4}\\pi$\"),\n (.5*pi, r\"$\\frac{1}{2}\\pi$\")]\n grid_locator1 = FixedLocator([v for v, s in angle_ticks])\n tick_formatter1 = DictFormatter(dict(angle_ticks))\n\n grid_locator2 = MaxNLocator(2)\n\n grid_helper = floating_axes.GridHelperCurveLinear(\n tr, extremes=(.5*pi, 0, 2, 1),\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1,\n tick_formatter2=None)\n\n ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper)\n fig.add_subplot(ax1)\n\n # create a parasite axes whose transData in RA, cz\n aux_ax = ax1.get_aux_axes(tr)\n\n aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax\n ax1.patch.zorder = 0.9 # but this has a side effect that the patch is\n # drawn twice, and possibly over some other\n # artists. So, we decrease the zorder a bit to\n # prevent this.\n\n return ax1, aux_ax\n\n\ndef setup_axes3(fig, rect):\n \"\"\"\n Sometimes, things like axis_direction need to be adjusted.\n \"\"\"\n\n # rotate a bit for better orientation\n tr_rotate = Affine2D().translate(-95, 0)\n\n # scale degree to radians\n tr_scale = Affine2D().scale(np.pi/180., 1.)\n\n tr = tr_rotate + tr_scale + PolarAxes.PolarTransform()\n\n grid_locator1 = angle_helper.LocatorHMS(4)\n tick_formatter1 = angle_helper.FormatterHMS()\n\n grid_locator2 = MaxNLocator(3)\n\n # Specify theta limits in degrees\n ra0, ra1 = 8.*15, 14.*15\n # Specify radial limits\n cz0, cz1 = 0, 14000\n grid_helper = floating_axes.GridHelperCurveLinear(\n tr, extremes=(ra0, ra1, cz0, cz1),\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1,\n tick_formatter2=None)\n\n ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper)\n fig.add_subplot(ax1)\n\n # adjust axis\n ax1.axis[\"left\"].set_axis_direction(\"bottom\")\n ax1.axis[\"right\"].set_axis_direction(\"top\")\n\n ax1.axis[\"bottom\"].set_visible(False)\n ax1.axis[\"top\"].set_axis_direction(\"bottom\")\n ax1.axis[\"top\"].toggle(ticklabels=True, label=True)\n ax1.axis[\"top\"].major_ticklabels.set_axis_direction(\"top\")\n ax1.axis[\"top\"].label.set_axis_direction(\"top\")\n\n ax1.axis[\"left\"].label.set_text(r\"cz [km$^{-1}$]\")\n ax1.axis[\"top\"].label.set_text(r\"$\\alpha_{1950}$\")\n\n # create a parasite axes whose transData in RA, cz\n aux_ax = ax1.get_aux_axes(tr)\n\n aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax\n ax1.patch.zorder = 0.9 # but this has a side effect that the patch is\n # drawn twice, and possibly over some other\n # artists. So, we decrease the zorder a bit to\n # prevent this.\n\n return ax1, aux_ax" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(8, 4))\nfig.subplots_adjust(wspace=0.3, left=0.05, right=0.95)\n\nax1, aux_ax1 = setup_axes1(fig, 131)\naux_ax1.bar([0, 1, 2, 3], [3, 2, 1, 3])\n\nax2, aux_ax2 = setup_axes2(fig, 132)\ntheta = np.random.rand(10)*.5*np.pi\nradius = np.random.rand(10) + 1.\naux_ax2.scatter(theta, radius)\n\nax3, aux_ax3 = setup_axes3(fig, 133)\n\ntheta = (8 + np.random.rand(10)*(14 - 8))*15. # in degrees\nradius = np.random.rand(10)*14000.\naux_ax3.scatter(theta, radius)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/984f8fe5e3e9cfa2977e340d42aac038/lasso_selector_demo_sgskip.ipynb b/_downloads/984f8fe5e3e9cfa2977e340d42aac038/lasso_selector_demo_sgskip.ipynb deleted file mode 120000 index 77dc733edaf..00000000000 --- a/_downloads/984f8fe5e3e9cfa2977e340d42aac038/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/984f8fe5e3e9cfa2977e340d42aac038/lasso_selector_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/98526566b0d22ec5ff08e14a28c30744/errorbar.py b/_downloads/98526566b0d22ec5ff08e14a28c30744/errorbar.py deleted file mode 100644 index 8c2de1dfc5a..00000000000 --- a/_downloads/98526566b0d22ec5ff08e14a28c30744/errorbar.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -================= -Errorbar function -================= - -This exhibits the most basic use of the error bar method. -In this case, constant values are provided for the error -in both the x- and y-directions. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.arange(0.1, 4, 0.5) -y = np.exp(-x) - -fig, ax = plt.subplots() -ax.errorbar(x, y, xerr=0.2, yerr=0.4) -plt.show() diff --git a/_downloads/98574ea1931f4568d45e20daee091b4e/cursor_demo_sgskip.ipynb b/_downloads/98574ea1931f4568d45e20daee091b4e/cursor_demo_sgskip.ipynb deleted file mode 120000 index 42bca71f684..00000000000 --- a/_downloads/98574ea1931f4568d45e20daee091b4e/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/98574ea1931f4568d45e20daee091b4e/cursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/9865fa063fe1ac332b618a88274c1566/simple_axis_direction03.ipynb b/_downloads/9865fa063fe1ac332b618a88274c1566/simple_axis_direction03.ipynb deleted file mode 100644 index db7262b29ac..00000000000 --- a/_downloads/9865fa063fe1ac332b618a88274c1566/simple_axis_direction03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axis Direction03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_subplot(ax)\n\n ax.set_yticks([0.2, 0.8])\n ax.set_xticks([0.2, 0.8])\n\n return ax\n\n\nfig = plt.figure(figsize=(5, 2))\nfig.subplots_adjust(wspace=0.4, bottom=0.3)\n\nax1 = setup_axes(fig, \"121\")\nax1.set_xlabel(\"X-label\")\nax1.set_ylabel(\"Y-label\")\n\nax1.axis[:].invert_ticklabel_direction()\n\nax2 = setup_axes(fig, \"122\")\nax2.set_xlabel(\"X-label\")\nax2.set_ylabel(\"Y-label\")\n\nax2.axis[:].major_ticks.set_tick_out(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/986997c8a8bb17b365f417251e167454/demo_text_path.py b/_downloads/986997c8a8bb17b365f417251e167454/demo_text_path.py deleted file mode 120000 index 6465738c52d..00000000000 --- a/_downloads/986997c8a8bb17b365f417251e167454/demo_text_path.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/986997c8a8bb17b365f417251e167454/demo_text_path.py \ No newline at end of file diff --git a/_downloads/986f9813aab8361271491080033cc2dc/lines3d.py b/_downloads/986f9813aab8361271491080033cc2dc/lines3d.py deleted file mode 120000 index b93c9ff2dc1..00000000000 --- a/_downloads/986f9813aab8361271491080033cc2dc/lines3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/986f9813aab8361271491080033cc2dc/lines3d.py \ No newline at end of file diff --git a/_downloads/98769f31684924ba66a93794b06e8e51/tutorials_jupyter.zip b/_downloads/98769f31684924ba66a93794b06e8e51/tutorials_jupyter.zip deleted file mode 120000 index deb53eff631..00000000000 --- a/_downloads/98769f31684924ba66a93794b06e8e51/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/98769f31684924ba66a93794b06e8e51/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/987ca84eaf55ffcb26b535aae647e409/tutorials_jupyter.zip b/_downloads/987ca84eaf55ffcb26b535aae647e409/tutorials_jupyter.zip deleted file mode 100644 index d5760636730..00000000000 Binary files a/_downloads/987ca84eaf55ffcb26b535aae647e409/tutorials_jupyter.zip and /dev/null differ diff --git a/_downloads/987cf7e97a923e2b052c7e681f9bfa7c/font_file.py b/_downloads/987cf7e97a923e2b052c7e681f9bfa7c/font_file.py deleted file mode 120000 index 6c5bd0b5244..00000000000 --- a/_downloads/987cf7e97a923e2b052c7e681f9bfa7c/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/987cf7e97a923e2b052c7e681f9bfa7c/font_file.py \ No newline at end of file diff --git a/_downloads/988156979649c93ee8b03eedf953c2fe/viewlims.ipynb b/_downloads/988156979649c93ee8b03eedf953c2fe/viewlims.ipynb deleted file mode 120000 index 20a12ea6d70..00000000000 --- a/_downloads/988156979649c93ee8b03eedf953c2fe/viewlims.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/988156979649c93ee8b03eedf953c2fe/viewlims.ipynb \ No newline at end of file diff --git a/_downloads/988e6cbf3178d4173eafdf144090ccdd/simple_axis_direction01.ipynb b/_downloads/988e6cbf3178d4173eafdf144090ccdd/simple_axis_direction01.ipynb deleted file mode 100644 index 9b9b3dfb09c..00000000000 --- a/_downloads/988e6cbf3178d4173eafdf144090ccdd/simple_axis_direction01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axis Direction01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\nfig = plt.figure(figsize=(4, 2.5))\nax1 = fig.add_subplot(axisartist.Subplot(fig, \"111\"))\nfig.subplots_adjust(right=0.8)\n\nax1.axis[\"left\"].major_ticklabels.set_axis_direction(\"top\")\nax1.axis[\"left\"].label.set_text(\"Label\")\n\nax1.axis[\"right\"].label.set_visible(True)\nax1.axis[\"right\"].label.set_text(\"Label\")\nax1.axis[\"right\"].label.set_axis_direction(\"left\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9899f6bc4040e6bd39bac0878f27b4ae/fourier_demo_wx_sgskip.py b/_downloads/9899f6bc4040e6bd39bac0878f27b4ae/fourier_demo_wx_sgskip.py deleted file mode 120000 index e3076f8781c..00000000000 --- a/_downloads/9899f6bc4040e6bd39bac0878f27b4ae/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9899f6bc4040e6bd39bac0878f27b4ae/fourier_demo_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/989bd22af8bd780644aa177bc7644333/zoom_inset_axes.ipynb b/_downloads/989bd22af8bd780644aa177bc7644333/zoom_inset_axes.ipynb deleted file mode 120000 index edb197b1b06..00000000000 --- a/_downloads/989bd22af8bd780644aa177bc7644333/zoom_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/989bd22af8bd780644aa177bc7644333/zoom_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/989c2e4000c4c8b291412a0970f5f606/demo_gridspec01.ipynb b/_downloads/989c2e4000c4c8b291412a0970f5f606/demo_gridspec01.ipynb deleted file mode 120000 index d5896fa313e..00000000000 --- a/_downloads/989c2e4000c4c8b291412a0970f5f606/demo_gridspec01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/989c2e4000c4c8b291412a0970f5f606/demo_gridspec01.ipynb \ No newline at end of file diff --git a/_downloads/98ae04503d7ccf93b6b0fc34f12cd0b4/grayscale.py b/_downloads/98ae04503d7ccf93b6b0fc34f12cd0b4/grayscale.py deleted file mode 120000 index c9ad211eec3..00000000000 --- a/_downloads/98ae04503d7ccf93b6b0fc34f12cd0b4/grayscale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/98ae04503d7ccf93b6b0fc34f12cd0b4/grayscale.py \ No newline at end of file diff --git a/_downloads/98b6a16627fda4b6e44ed584d66f83c9/pathpatch3d.py b/_downloads/98b6a16627fda4b6e44ed584d66f83c9/pathpatch3d.py deleted file mode 120000 index f86f2b0249d..00000000000 --- a/_downloads/98b6a16627fda4b6e44ed584d66f83c9/pathpatch3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/98b6a16627fda4b6e44ed584d66f83c9/pathpatch3d.py \ No newline at end of file diff --git a/_downloads/98d299e7a03687fe561f9a70a5ac8f1f/titles_demo.py b/_downloads/98d299e7a03687fe561f9a70a5ac8f1f/titles_demo.py deleted file mode 100644 index 5fb5544e9dc..00000000000 --- a/_downloads/98d299e7a03687fe561f9a70a5ac8f1f/titles_demo.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -=========== -Titles Demo -=========== - -matplotlib can display plot titles centered, flush with the left side of -a set of axes, and flush with the right side of a set of axes. - -""" -import matplotlib.pyplot as plt - -plt.plot(range(10)) - -plt.title('Center Title') -plt.title('Left Title', loc='left') -plt.title('Right Title', loc='right') - -plt.show() diff --git a/_downloads/98ed701cb864255dcc8628fb8e06492a/annotate_transform.ipynb b/_downloads/98ed701cb864255dcc8628fb8e06492a/annotate_transform.ipynb deleted file mode 120000 index 637c031e23a..00000000000 --- a/_downloads/98ed701cb864255dcc8628fb8e06492a/annotate_transform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/98ed701cb864255dcc8628fb8e06492a/annotate_transform.ipynb \ No newline at end of file diff --git a/_downloads/98f4398e8df51e31bd4ccd9d20fb7b50/image_nonuniform.ipynb b/_downloads/98f4398e8df51e31bd4ccd9d20fb7b50/image_nonuniform.ipynb deleted file mode 120000 index f385ff1f7c1..00000000000 --- a/_downloads/98f4398e8df51e31bd4ccd9d20fb7b50/image_nonuniform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/98f4398e8df51e31bd4ccd9d20fb7b50/image_nonuniform.ipynb \ No newline at end of file diff --git a/_downloads/9909b003a8047e9ff05c898434c8eb23/polys3d.py b/_downloads/9909b003a8047e9ff05c898434c8eb23/polys3d.py deleted file mode 120000 index 905dbcfd393..00000000000 --- a/_downloads/9909b003a8047e9ff05c898434c8eb23/polys3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9909b003a8047e9ff05c898434c8eb23/polys3d.py \ No newline at end of file diff --git a/_downloads/9914d00fd37506ec48bab3b13bc23ae8/spines_bounds.py b/_downloads/9914d00fd37506ec48bab3b13bc23ae8/spines_bounds.py deleted file mode 100644 index d38f5f450a7..00000000000 --- a/_downloads/9914d00fd37506ec48bab3b13bc23ae8/spines_bounds.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -=================== -Custom spine bounds -=================== - -Demo of spines using custom bounds to limit the extent of the spine. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x = np.linspace(0, 2*np.pi, 50) -y = np.sin(x) -y2 = y + 0.1 * np.random.normal(size=x.shape) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.plot(x, y2) - -# set ticks and tick labels -ax.set_xlim((0, 2*np.pi)) -ax.set_xticks([0, np.pi, 2*np.pi]) -ax.set_xticklabels(['0', r'$\pi$', r'2$\pi$']) -ax.set_ylim((-1.5, 1.5)) -ax.set_yticks([-1, 0, 1]) - -# Only draw spine between the y-ticks -ax.spines['left'].set_bounds(-1, 1) -# Hide the right and top spines -ax.spines['right'].set_visible(False) -ax.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax.yaxis.set_ticks_position('left') -ax.xaxis.set_ticks_position('bottom') - -plt.show() diff --git a/_downloads/991588ba1efd91da1b1b4eb6f2026f8e/image_clip_path.py b/_downloads/991588ba1efd91da1b1b4eb6f2026f8e/image_clip_path.py deleted file mode 120000 index 46f69a1ed47..00000000000 --- a/_downloads/991588ba1efd91da1b1b4eb6f2026f8e/image_clip_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/991588ba1efd91da1b1b4eb6f2026f8e/image_clip_path.py \ No newline at end of file diff --git a/_downloads/9916fd43f8d71be40812b3fcacf3ba4a/axis_direction_demo_step03.ipynb b/_downloads/9916fd43f8d71be40812b3fcacf3ba4a/axis_direction_demo_step03.ipynb deleted file mode 120000 index f271e5b4cc7..00000000000 --- a/_downloads/9916fd43f8d71be40812b3fcacf3ba4a/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9916fd43f8d71be40812b3fcacf3ba4a/axis_direction_demo_step03.ipynb \ No newline at end of file diff --git a/_downloads/9927e6d7460c8c0dabb8ad5926c49f0c/colormap_interactive_adjustment.py b/_downloads/9927e6d7460c8c0dabb8ad5926c49f0c/colormap_interactive_adjustment.py deleted file mode 120000 index bd869a71c48..00000000000 --- a/_downloads/9927e6d7460c8c0dabb8ad5926c49f0c/colormap_interactive_adjustment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/9927e6d7460c8c0dabb8ad5926c49f0c/colormap_interactive_adjustment.py \ No newline at end of file diff --git a/_downloads/9932844032c444daba6174061986c478/share_axis_lims_views.py b/_downloads/9932844032c444daba6174061986c478/share_axis_lims_views.py deleted file mode 100644 index 6b266f8a6ae..00000000000 --- a/_downloads/9932844032c444daba6174061986c478/share_axis_lims_views.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -Sharing axis limits and views -============================= - -It's common to make two or more plots which share an axis, e.g., two -subplots with time as a common axis. When you pan and zoom around on -one, you want the other to move around with you. To facilitate this, -matplotlib Axes support a ``sharex`` and ``sharey`` attribute. When -you create a :func:`~matplotlib.pyplot.subplot` or -:func:`~matplotlib.pyplot.axes` instance, you can pass in a keyword -indicating what axes you want to share with -""" - -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0, 10, 0.01) - -ax1 = plt.subplot(211) -ax1.plot(t, np.sin(2*np.pi*t)) - -ax2 = plt.subplot(212, sharex=ax1) -ax2.plot(t, np.sin(4*np.pi*t)) - -plt.show() diff --git a/_downloads/99365a7e6051e674bc912fef3c7b9ba5/advanced_hillshading.ipynb b/_downloads/99365a7e6051e674bc912fef3c7b9ba5/advanced_hillshading.ipynb deleted file mode 120000 index 563028a12ad..00000000000 --- a/_downloads/99365a7e6051e674bc912fef3c7b9ba5/advanced_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/99365a7e6051e674bc912fef3c7b9ba5/advanced_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/99376156ba437c2f90ad78319c230d1e/pcolormesh_levels.ipynb b/_downloads/99376156ba437c2f90ad78319c230d1e/pcolormesh_levels.ipynb deleted file mode 120000 index 75836e1c492..00000000000 --- a/_downloads/99376156ba437c2f90ad78319c230d1e/pcolormesh_levels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/99376156ba437c2f90ad78319c230d1e/pcolormesh_levels.ipynb \ No newline at end of file diff --git a/_downloads/993f5e55d9164981daf0dc56b72392b9/connect_simple01.py b/_downloads/993f5e55d9164981daf0dc56b72392b9/connect_simple01.py deleted file mode 120000 index 78da54805fe..00000000000 --- a/_downloads/993f5e55d9164981daf0dc56b72392b9/connect_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/993f5e55d9164981daf0dc56b72392b9/connect_simple01.py \ No newline at end of file diff --git a/_downloads/9942d586d6b8316f1b59e86d1468ba77/patch_collection.ipynb b/_downloads/9942d586d6b8316f1b59e86d1468ba77/patch_collection.ipynb deleted file mode 120000 index 8c45010c3b9..00000000000 --- a/_downloads/9942d586d6b8316f1b59e86d1468ba77/patch_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9942d586d6b8316f1b59e86d1468ba77/patch_collection.ipynb \ No newline at end of file diff --git a/_downloads/99434764e2d633792c87e5f3e43222ca/demo_axes_grid.ipynb b/_downloads/99434764e2d633792c87e5f3e43222ca/demo_axes_grid.ipynb deleted file mode 120000 index e59da8b17e0..00000000000 --- a/_downloads/99434764e2d633792c87e5f3e43222ca/demo_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/99434764e2d633792c87e5f3e43222ca/demo_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/99533df458ec3950be6c1e56f7503ef8/tripcolor_demo.py b/_downloads/99533df458ec3950be6c1e56f7503ef8/tripcolor_demo.py deleted file mode 120000 index b98da3e5b25..00000000000 --- a/_downloads/99533df458ec3950be6c1e56f7503ef8/tripcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/99533df458ec3950be6c1e56f7503ef8/tripcolor_demo.py \ No newline at end of file diff --git a/_downloads/9959e6dcf94e9baaa8ebc534ef5782c5/date_index_formatter2.ipynb b/_downloads/9959e6dcf94e9baaa8ebc534ef5782c5/date_index_formatter2.ipynb deleted file mode 100644 index b6aae71eb62..00000000000 --- a/_downloads/9959e6dcf94e9baaa8ebc534ef5782c5/date_index_formatter2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date Index Formatter\n\n\nWhen plotting daily data, a frequent request is to plot the data\nignoring skips, e.g., no extra spaces for weekends. This is particularly\ncommon in financial time series, when you may have data for M-F and\nnot Sat, Sun and you don't want gaps in the x axis. The approach is\nto simply use the integer index for the xdata and a custom tick\nFormatter to get the appropriate date string for a given index.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import dateutil.parser\nfrom matplotlib import cbook, dates\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import Formatter\nimport numpy as np\n\n\ndatafile = cbook.get_sample_data('msft.csv', asfileobj=False)\nprint('loading %s' % datafile)\nmsft_data = np.genfromtxt(\n datafile, delimiter=',', names=True,\n converters={0: lambda s: dates.date2num(dateutil.parser.parse(s))})\n\n\nclass MyFormatter(Formatter):\n def __init__(self, dates, fmt='%Y-%m-%d'):\n self.dates = dates\n self.fmt = fmt\n\n def __call__(self, x, pos=0):\n 'Return the label for time x at position pos'\n ind = int(np.round(x))\n if ind >= len(self.dates) or ind < 0:\n return ''\n return dates.num2date(self.dates[ind]).strftime(self.fmt)\n\n\nfig, ax = plt.subplots()\nax.xaxis.set_major_formatter(MyFormatter(msft_data['Date']))\nax.plot(msft_data['Close'], 'o-')\nfig.autofmt_xdate()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/995f2de20aa1f31d4d326c0cd9fab6ae/svg_filter_line.ipynb b/_downloads/995f2de20aa1f31d4d326c0cd9fab6ae/svg_filter_line.ipynb deleted file mode 100644 index 01f8004ff26..00000000000 --- a/_downloads/995f2de20aa1f31d4d326c0cd9fab6ae/svg_filter_line.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Filter Line\n\n\nDemonstrate SVG filtering effects which might be used with mpl.\n\nNote that the filtering effects are only effective if your svg renderer\nsupport it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\n\nfig1 = plt.figure()\nax = fig1.add_axes([0.1, 0.1, 0.8, 0.8])\n\n# draw lines\nl1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], \"bo-\",\n mec=\"b\", lw=5, ms=10, label=\"Line 1\")\nl2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], \"rs-\",\n mec=\"r\", lw=5, ms=10, color=\"r\", label=\"Line 2\")\n\n\nfor l in [l1, l2]:\n\n # draw shadows with same lines with slight offset and gray colors.\n\n xx = l.get_xdata()\n yy = l.get_ydata()\n shadow, = ax.plot(xx, yy)\n shadow.update_from(l)\n\n # adjust color\n shadow.set_color(\"0.2\")\n # adjust zorder of the shadow lines so that it is drawn below the\n # original lines\n shadow.set_zorder(l.get_zorder() - 0.5)\n\n # offset transform\n ot = mtransforms.offset_copy(l.get_transform(), fig1,\n x=4.0, y=-6.0, units='points')\n\n shadow.set_transform(ot)\n\n # set the id for a later use\n shadow.set_gid(l.get_label() + \"_shadow\")\n\n\nax.set_xlim(0., 1.)\nax.set_ylim(0., 1.)\n\n# save the figure as a bytes string in the svg format.\nfrom io import BytesIO\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\n\nimport xml.etree.cElementTree as ET\n\n# filter definition for a gaussian blur\nfilter_def = \"\"\"\n \n \n \n \n \n\"\"\"\n\n\n# read in the saved svg\ntree, xmlid = ET.XMLID(f.getvalue())\n\n# insert the filter definition in the svg dom tree.\ntree.insert(0, ET.XML(filter_def))\n\nfor l in [l1, l2]:\n # pick up the svg element with given id\n shadow = xmlid[l.get_label() + \"_shadow\"]\n # apply shadow filter\n shadow.set(\"filter\", 'url(#dropshadow)')\n\nfn = \"svg_filter_line.svg\"\nprint(\"Saving '%s'\" % fn)\nET.ElementTree(tree).write(fn)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9966b435072080a1f63eeda8d1bd72ed/whats_new_1_subplot3d.ipynb b/_downloads/9966b435072080a1f63eeda8d1bd72ed/whats_new_1_subplot3d.ipynb deleted file mode 120000 index 2d704bd383a..00000000000 --- a/_downloads/9966b435072080a1f63eeda8d1bd72ed/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9966b435072080a1f63eeda8d1bd72ed/whats_new_1_subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/996e8bde00eed8bf24b097ac1f670683/placing_text_boxes.py b/_downloads/996e8bde00eed8bf24b097ac1f670683/placing_text_boxes.py deleted file mode 120000 index efd06fb2ff7..00000000000 --- a/_downloads/996e8bde00eed8bf24b097ac1f670683/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/996e8bde00eed8bf24b097ac1f670683/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/99842cf7ff8701968b0eef98284c3e16/span_regions.py b/_downloads/99842cf7ff8701968b0eef98284c3e16/span_regions.py deleted file mode 120000 index 01f14f34c36..00000000000 --- a/_downloads/99842cf7ff8701968b0eef98284c3e16/span_regions.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/99842cf7ff8701968b0eef98284c3e16/span_regions.py \ No newline at end of file diff --git a/_downloads/9986a66a0bd489ee76c824e5b2879641/legend.py b/_downloads/9986a66a0bd489ee76c824e5b2879641/legend.py deleted file mode 120000 index 8e6e8f47014..00000000000 --- a/_downloads/9986a66a0bd489ee76c824e5b2879641/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9986a66a0bd489ee76c824e5b2879641/legend.py \ No newline at end of file diff --git a/_downloads/998c6a7300c7f09c73069069fffa4ab3/legend_demo.ipynb b/_downloads/998c6a7300c7f09c73069069fffa4ab3/legend_demo.ipynb deleted file mode 120000 index 95624f6abc1..00000000000 --- a/_downloads/998c6a7300c7f09c73069069fffa4ab3/legend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/998c6a7300c7f09c73069069fffa4ab3/legend_demo.ipynb \ No newline at end of file diff --git a/_downloads/998d1b0a61572e6e8215a3d7b3f37acc/surface3d_2.ipynb b/_downloads/998d1b0a61572e6e8215a3d7b3f37acc/surface3d_2.ipynb deleted file mode 120000 index 4139b708d66..00000000000 --- a/_downloads/998d1b0a61572e6e8215a3d7b3f37acc/surface3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/998d1b0a61572e6e8215a3d7b3f37acc/surface3d_2.ipynb \ No newline at end of file diff --git a/_downloads/99a289b0fedf2127ceed16a3342aac5a/histogram_features.ipynb b/_downloads/99a289b0fedf2127ceed16a3342aac5a/histogram_features.ipynb deleted file mode 100644 index b231446308e..00000000000 --- a/_downloads/99a289b0fedf2127ceed16a3342aac5a/histogram_features.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================================================\nDemo of the histogram (hist) function with a few features\n=========================================================\n\nIn addition to the basic histogram, this demo shows a few optional features:\n\n* Setting the number of data bins.\n* The ``normed`` flag, which normalizes bin heights so that the integral of\n the histogram is 1. The resulting histogram is an approximation of the\n probability density function.\n* Setting the face color of the bars.\n* Setting the opacity (alpha value).\n\nSelecting different bin counts and sizes can significantly affect the shape\nof a histogram. The Astropy docs have a great section_ on how to select these\nparameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\n# example data\nmu = 100 # mean of distribution\nsigma = 15 # standard deviation of distribution\nx = mu + sigma * np.random.randn(437)\n\nnum_bins = 50\n\nfig, ax = plt.subplots()\n\n# the histogram of the data\nn, bins, patches = ax.hist(x, num_bins, density=1)\n\n# add a 'best fit' line\ny = ((1 / (np.sqrt(2 * np.pi) * sigma)) *\n np.exp(-0.5 * (1 / sigma * (bins - mu))**2))\nax.plot(bins, y, '--')\nax.set_xlabel('Smarts')\nax.set_ylabel('Probability density')\nax.set_title(r'Histogram of IQ: $\\mu=100$, $\\sigma=15$')\n\n# Tweak spacing to prevent clipping of ylabel\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.hist\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/99b2228ef8ead5b15771558e042ee4f3/stairs_demo.py b/_downloads/99b2228ef8ead5b15771558e042ee4f3/stairs_demo.py deleted file mode 120000 index 2ee9609787e..00000000000 --- a/_downloads/99b2228ef8ead5b15771558e042ee4f3/stairs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/99b2228ef8ead5b15771558e042ee4f3/stairs_demo.py \ No newline at end of file diff --git a/_downloads/99b2684afac2af68411080e2d73ac4f9/resample.py b/_downloads/99b2684afac2af68411080e2d73ac4f9/resample.py deleted file mode 100644 index b9811942b85..00000000000 --- a/_downloads/99b2684afac2af68411080e2d73ac4f9/resample.py +++ /dev/null @@ -1,70 +0,0 @@ -""" -=============== -Resampling Data -=============== - -Downsampling lowers the sample rate or sample size of a signal. In -this tutorial, the signal is downsampled when the plot is adjusted -through dragging and zooming. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -# A class that will downsample the data and recompute when zoomed. -class DataDisplayDownsampler(object): - def __init__(self, xdata, ydata): - self.origYData = ydata - self.origXData = xdata - self.max_points = 50 - self.delta = xdata[-1] - xdata[0] - - def downsample(self, xstart, xend): - # get the points in the view range - mask = (self.origXData > xstart) & (self.origXData < xend) - # dilate the mask by one to catch the points just outside - # of the view range to not truncate the line - mask = np.convolve([1, 1], mask, mode='same').astype(bool) - # sort out how many points to drop - ratio = max(np.sum(mask) // self.max_points, 1) - - # mask data - xdata = self.origXData[mask] - ydata = self.origYData[mask] - - # downsample data - xdata = xdata[::ratio] - ydata = ydata[::ratio] - - print("using {} of {} visible points".format( - len(ydata), np.sum(mask))) - - return xdata, ydata - - def update(self, ax): - # Update the line - lims = ax.viewLim - if np.abs(lims.width - self.delta) > 1e-8: - self.delta = lims.width - xstart, xend = lims.intervalx - self.line.set_data(*self.downsample(xstart, xend)) - ax.figure.canvas.draw_idle() - - -# Create a signal -xdata = np.linspace(16, 365, (365-16)*4) -ydata = np.sin(2*np.pi*xdata/153) + np.cos(2*np.pi*xdata/127) - -d = DataDisplayDownsampler(xdata, ydata) - -fig, ax = plt.subplots() - -# Hook up the line -d.line, = ax.plot(xdata, ydata, 'o-') -ax.set_autoscale_on(False) # Otherwise, infinite loop - -# Connect for changing the view limits -ax.callbacks.connect('xlim_changed', d.update) -ax.set_xlim(16, 365) -plt.show() diff --git a/_downloads/99b67589601589641c440729acc569c2/polar_scatter.ipynb b/_downloads/99b67589601589641c440729acc569c2/polar_scatter.ipynb deleted file mode 100644 index b5b9d6e56fb..00000000000 --- a/_downloads/99b67589601589641c440729acc569c2/polar_scatter.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plot on polar axis\n\n\nSize increases radially in this example and color increases with angle\n(just to verify the symbols are being scattered correctly).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# Compute areas and colors\nN = 150\nr = 2 * np.random.rand(N)\ntheta = 2 * np.pi * np.random.rand(N)\narea = 200 * r**2\ncolors = theta\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='polar')\nc = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Scatter plot on polar axis, with offset origin\n----------------------------------------------\n\nThe main difference with the previous plot is the configuration of the origin\nradius, producing an annulus. Additionally, the theta zero location is set to\nrotate the plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(111, polar=True)\nc = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)\n\nax.set_rorigin(-2.5)\nax.set_theta_zero_location('W', offset=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Scatter plot on polar axis confined to a sector\n-----------------------------------------------\n\nThe main difference with the previous plots is the configuration of the\ntheta start and end limits, producing a sector instead of a full circle.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(111, polar=True)\nc = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75)\n\nax.set_thetamin(45)\nax.set_thetamax(135)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.scatter\nmatplotlib.pyplot.scatter\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes.set_rorigin\nmatplotlib.projections.polar.PolarAxes.set_theta_zero_location\nmatplotlib.projections.polar.PolarAxes.set_thetamin\nmatplotlib.projections.polar.PolarAxes.set_thetamax" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/99ba00e7695fc2ce4c0bac2a2f416755/custom_boxstyle02.py b/_downloads/99ba00e7695fc2ce4c0bac2a2f416755/custom_boxstyle02.py deleted file mode 120000 index 46bd1af4ea6..00000000000 --- a/_downloads/99ba00e7695fc2ce4c0bac2a2f416755/custom_boxstyle02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/99ba00e7695fc2ce4c0bac2a2f416755/custom_boxstyle02.py \ No newline at end of file diff --git a/_downloads/99c06061757dcba920b27e8fdd1d2665/image_demo.ipynb b/_downloads/99c06061757dcba920b27e8fdd1d2665/image_demo.ipynb deleted file mode 100644 index 204960b3b27..00000000000 --- a/_downloads/99c06061757dcba920b27e8fdd1d2665/image_demo.ipynb +++ /dev/null @@ -1,162 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Demo\n\n\nMany ways to plot images in Matplotlib.\n\nThe most common way to plot images in Matplotlib is with\n:meth:`~.axes.Axes.imshow`. The following examples demonstrate much of the\nfunctionality of imshow and the many images you can create.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nfrom matplotlib.path import Path\nfrom matplotlib.patches import PathPatch" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First we'll generate a simple bivariate normal distribution.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "delta = 0.025\nx = y = np.arange(-3.0, 3.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots()\nim = ax.imshow(Z, interpolation='bilinear', cmap=cm.RdYlGn,\n origin='lower', extent=[-3, 3, -3, 3],\n vmax=abs(Z).max(), vmin=-abs(Z).max())\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It is also possible to show images of pictures.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# A sample image\nwith cbook.get_sample_data('ada.png') as image_file:\n image = plt.imread(image_file)\n\nfig, ax = plt.subplots()\nax.imshow(image)\nax.axis('off') # clear x-axis and y-axis\n\n\n# And another image\n\nw, h = 512, 512\n\nwith cbook.get_sample_data('ct.raw.gz') as datafile:\n s = datafile.read()\nA = np.frombuffer(s, np.uint16).astype(float).reshape((w, h))\nA /= A.max()\n\nfig, ax = plt.subplots()\nextent = (0, 25, 0, 25)\nim = ax.imshow(A, cmap=plt.cm.hot, origin='upper', extent=extent)\n\nmarkers = [(15.9, 14.5), (16.8, 15)]\nx, y = zip(*markers)\nax.plot(x, y, 'o')\n\nax.set_title('CT density')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Interpolating images\n--------------------\n\nIt is also possible to interpolate images before displaying them. Be careful,\nas this may manipulate the way your data looks, but it can be helpful for\nachieving the look you want. Below we'll display the same (small) array,\ninterpolated with three different interpolation methods.\n\nThe center of the pixel at A[i,j] is plotted at i+0.5, i+0.5. If you\nare using interpolation='nearest', the region bounded by (i,j) and\n(i+1,j+1) will have the same color. If you are using interpolation,\nthe pixel center will have the same color as it does with nearest, but\nother pixels will be interpolated between the neighboring pixels.\n\nTo prevent edge effects when doing interpolation, Matplotlib pads the input\narray with identical pixels around the edge: if you have a 5x5 array with\ncolors a-y as below::\n\n a b c d e\n f g h i j\n k l m n o\n p q r s t\n u v w x y\n\nMatplotlib computes the interpolation and resizing on the padded array ::\n\n a a b c d e e\n a a b c d e e\n f f g h i j j\n k k l m n o o\n p p q r s t t\n o u v w x y y\n o u v w x y y\n\nand then extracts the central region of the result. (Extremely old versions\nof Matplotlib (<0.63) did not pad the array, but instead adjusted the view\nlimits to hide the affected edge areas.)\n\nThis approach allows plotting the full extent of an array without\nedge effects, and for example to layer multiple images of different\nsizes over one another with different interpolation methods -- see\n:doc:`/gallery/images_contours_and_fields/layer_images`. It also implies\na performance hit, as this new temporary, padded array must be created.\nSophisticated interpolation also implies a performance hit; for maximal\nperformance or very large images, interpolation='nearest' is suggested.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "A = np.random.rand(5, 5)\n\nfig, axs = plt.subplots(1, 3, figsize=(10, 3))\nfor ax, interp in zip(axs, ['nearest', 'bilinear', 'bicubic']):\n ax.imshow(A, interpolation=interp)\n ax.set_title(interp.capitalize())\n ax.grid(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify whether images should be plotted with the array origin\nx[0,0] in the upper left or lower right by using the origin parameter.\nYou can also control the default setting image.origin in your\n`matplotlibrc file `. For more on\nthis topic see the :doc:`complete guide on origin and extent\n`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(120).reshape((10, 12))\n\ninterp = 'bilinear'\nfig, axs = plt.subplots(nrows=2, sharex=True, figsize=(3, 5))\naxs[0].set_title('blue should be up')\naxs[0].imshow(x, origin='upper', interpolation=interp)\n\naxs[1].set_title('blue should be down')\naxs[1].imshow(x, origin='lower', interpolation=interp)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, we'll show an image using a clip path.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "delta = 0.025\nx = y = np.arange(-3.0, 3.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\npath = Path([[0, 1], [1, 0], [0, -1], [-1, 0], [0, 1]])\npatch = PathPatch(path, facecolor='none')\n\nfig, ax = plt.subplots()\nax.add_patch(patch)\n\nim = ax.imshow(Z, interpolation='bilinear', cmap=cm.gray,\n origin='lower', extent=[-3, 3, -3, 3],\n clip_path=patch, clip_on=True)\nim.set_clip_path(patch)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.artist.Artist.set_clip_path\nmatplotlib.patches.PathPatch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/99cb114bb9c04567a3886e7b5f7e8a3c/customized_violin.py b/_downloads/99cb114bb9c04567a3886e7b5f7e8a3c/customized_violin.py deleted file mode 100644 index c686b309677..00000000000 --- a/_downloads/99cb114bb9c04567a3886e7b5f7e8a3c/customized_violin.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -========================= -Violin plot customization -========================= - -This example demonstrates how to fully customize violin plots. -The first plot shows the default style by providing only -the data. The second plot first limits what matplotlib draws -with additional kwargs. Then a simplified representation of -a box plot is drawn on top. Lastly, the styles of the artists -of the violins are modified. - -For more information on violin plots, the scikit-learn docs have a great -section: http://scikit-learn.org/stable/modules/density.html -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def adjacent_values(vals, q1, q3): - upper_adjacent_value = q3 + (q3 - q1) * 1.5 - upper_adjacent_value = np.clip(upper_adjacent_value, q3, vals[-1]) - - lower_adjacent_value = q1 - (q3 - q1) * 1.5 - lower_adjacent_value = np.clip(lower_adjacent_value, vals[0], q1) - return lower_adjacent_value, upper_adjacent_value - - -def set_axis_style(ax, labels): - ax.get_xaxis().set_tick_params(direction='out') - ax.xaxis.set_ticks_position('bottom') - ax.set_xticks(np.arange(1, len(labels) + 1)) - ax.set_xticklabels(labels) - ax.set_xlim(0.25, len(labels) + 0.75) - ax.set_xlabel('Sample name') - - -# create test data -np.random.seed(19680801) -data = [sorted(np.random.normal(0, std, 100)) for std in range(1, 5)] - -fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2, figsize=(9, 4), sharey=True) - -ax1.set_title('Default violin plot') -ax1.set_ylabel('Observed values') -ax1.violinplot(data) - -ax2.set_title('Customized violin plot') -parts = ax2.violinplot( - data, showmeans=False, showmedians=False, - showextrema=False) - -for pc in parts['bodies']: - pc.set_facecolor('#D43F3A') - pc.set_edgecolor('black') - pc.set_alpha(1) - -quartile1, medians, quartile3 = np.percentile(data, [25, 50, 75], axis=1) -whiskers = np.array([ - adjacent_values(sorted_array, q1, q3) - for sorted_array, q1, q3 in zip(data, quartile1, quartile3)]) -whiskersMin, whiskersMax = whiskers[:, 0], whiskers[:, 1] - -inds = np.arange(1, len(medians) + 1) -ax2.scatter(inds, medians, marker='o', color='white', s=30, zorder=3) -ax2.vlines(inds, quartile1, quartile3, color='k', linestyle='-', lw=5) -ax2.vlines(inds, whiskersMin, whiskersMax, color='k', linestyle='-', lw=1) - -# set style for the axes -labels = ['A', 'B', 'C', 'D'] -for ax in [ax1, ax2]: - set_axis_style(ax, labels) - -plt.subplots_adjust(bottom=0.15, wspace=0.05) -plt.show() diff --git a/_downloads/99cbf25b3f3fab0fe11b5d265af14565/pie_and_donut_labels.py b/_downloads/99cbf25b3f3fab0fe11b5d265af14565/pie_and_donut_labels.py deleted file mode 120000 index 00a8dd2750e..00000000000 --- a/_downloads/99cbf25b3f3fab0fe11b5d265af14565/pie_and_donut_labels.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/99cbf25b3f3fab0fe11b5d265af14565/pie_and_donut_labels.py \ No newline at end of file diff --git a/_downloads/99cdcfee5fc3b62dee0d919ed725a7f9/legend.py b/_downloads/99cdcfee5fc3b62dee0d919ed725a7f9/legend.py deleted file mode 100644 index 7e6162a51c2..00000000000 --- a/_downloads/99cdcfee5fc3b62dee0d919ed725a7f9/legend.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=============================== -Legend using pre-defined labels -=============================== - -Defining legend labels with plots. -""" - - -import numpy as np -import matplotlib.pyplot as plt - -# Make some fake data. -a = b = np.arange(0, 3, .02) -c = np.exp(a) -d = c[::-1] - -# Create plots with pre-defined labels. -fig, ax = plt.subplots() -ax.plot(a, c, 'k--', label='Model length') -ax.plot(a, d, 'k:', label='Data length') -ax.plot(a, c + d, 'k', label='Total message length') - -legend = ax.legend(loc='upper center', shadow=True, fontsize='x-large') - -# Put a nicer background color on the legend. -legend.get_frame().set_facecolor('C0') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend diff --git a/_downloads/99d9cfd02b1d86ff094b7022a76d305e/lorenz_attractor.ipynb b/_downloads/99d9cfd02b1d86ff094b7022a76d305e/lorenz_attractor.ipynb deleted file mode 120000 index b87c452c3be..00000000000 --- a/_downloads/99d9cfd02b1d86ff094b7022a76d305e/lorenz_attractor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/99d9cfd02b1d86ff094b7022a76d305e/lorenz_attractor.ipynb \ No newline at end of file diff --git a/_downloads/99dbffe0015e84139c7cd450571769ab/custom_legends.ipynb b/_downloads/99dbffe0015e84139c7cd450571769ab/custom_legends.ipynb deleted file mode 120000 index 41d6c8111bd..00000000000 --- a/_downloads/99dbffe0015e84139c7cd450571769ab/custom_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/99dbffe0015e84139c7cd450571769ab/custom_legends.ipynb \ No newline at end of file diff --git a/_downloads/99eeefbeb27f6cbdd9a588dd2c6b61df/tight_layout_guide.py b/_downloads/99eeefbeb27f6cbdd9a588dd2c6b61df/tight_layout_guide.py deleted file mode 120000 index a507bed81b0..00000000000 --- a/_downloads/99eeefbeb27f6cbdd9a588dd2c6b61df/tight_layout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/99eeefbeb27f6cbdd9a588dd2c6b61df/tight_layout_guide.py \ No newline at end of file diff --git a/_downloads/99f3600853793bfc0870efe9d232ec00/mri_demo.py b/_downloads/99f3600853793bfc0870efe9d232ec00/mri_demo.py deleted file mode 100644 index 7834a3c9f58..00000000000 --- a/_downloads/99f3600853793bfc0870efe9d232ec00/mri_demo.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -=== -MRI -=== - -This example illustrates how to read an image (of an MRI) into a NumPy -array, and display it in greyscale using `imshow`. -""" - -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import numpy as np - - -# Data are 256x256 16 bit integers. -with cbook.get_sample_data('s1045.ima.gz') as dfile: - im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256)) - -fig, ax = plt.subplots(num="MRI_demo") -ax.imshow(im, cmap="gray") -ax.axis('off') - -plt.show() diff --git a/_downloads/9a01fa978097847fdb6558cdeacbe564/units_scatter.ipynb b/_downloads/9a01fa978097847fdb6558cdeacbe564/units_scatter.ipynb deleted file mode 100644 index ade99d95ba1..00000000000 --- a/_downloads/9a01fa978097847fdb6558cdeacbe564/units_scatter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Unit handling\n\n\nThe example below shows support for unit conversions over masked\narrays.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom basic_units import secs, hertz, minutes\n\n# create masked array\ndata = (1, 2, 3, 4, 5, 6, 7, 8)\nmask = (1, 0, 1, 0, 0, 0, 1, 0)\nxsecs = secs * np.ma.MaskedArray(data, mask, float)\n\nfig, (ax1, ax2, ax3) = plt.subplots(nrows=3, sharex=True)\n\nax1.scatter(xsecs, xsecs)\nax1.yaxis.set_units(secs)\nax2.scatter(xsecs, xsecs, yunits=hertz)\nax3.scatter(xsecs, xsecs, yunits=minutes)\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9a0785a0a15638a736f7c29ff78d9bfd/pie_and_donut_labels.ipynb b/_downloads/9a0785a0a15638a736f7c29ff78d9bfd/pie_and_donut_labels.ipynb deleted file mode 120000 index 93dd2bdfaf2..00000000000 --- a/_downloads/9a0785a0a15638a736f7c29ff78d9bfd/pie_and_donut_labels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9a0785a0a15638a736f7c29ff78d9bfd/pie_and_donut_labels.ipynb \ No newline at end of file diff --git a/_downloads/9a0a9867b200997c589a1e2697a0f249/usetex.py b/_downloads/9a0a9867b200997c589a1e2697a0f249/usetex.py deleted file mode 100644 index 5e292e4b4f4..00000000000 --- a/_downloads/9a0a9867b200997c589a1e2697a0f249/usetex.py +++ /dev/null @@ -1,165 +0,0 @@ -r""" -************************* -Text rendering With LaTeX -************************* - -Rendering text with LaTeX in Matplotlib. - -Matplotlib has the option to use LaTeX to manage all text layout. This -option is available with the following backends: - -* Agg -* PS -* PDF - -The LaTeX option is activated by setting ``text.usetex : True`` in your rc -settings. Text handling with matplotlib's LaTeX support is slower than -matplotlib's very capable :doc:`mathtext `, but is -more flexible, since different LaTeX packages (font packages, math packages, -etc.) can be used. The results can be striking, especially when you take care -to use the same fonts in your figures as in the main document. - -Matplotlib's LaTeX support requires a working LaTeX_ installation, dvipng_ -(which may be included with your LaTeX installation), and Ghostscript_ -(GPL Ghostscript 9.0 or later is required). The executables for these -external dependencies must all be located on your :envvar:`PATH`. - -There are a couple of options to mention, which can be changed using -:doc:`rc settings `. Here is an example -matplotlibrc file:: - - font.family : serif - font.serif : Times, Palatino, New Century Schoolbook, Bookman, Computer Modern Roman - font.sans-serif : Helvetica, Avant Garde, Computer Modern Sans serif - font.cursive : Zapf Chancery - font.monospace : Courier, Computer Modern Typewriter - - text.usetex : true - -The first valid font in each family is the one that will be loaded. If the -fonts are not specified, the Computer Modern fonts are used by default. All of -the other fonts are Adobe fonts. Times and Palatino each have their own -accompanying math fonts, while the other Adobe serif fonts make use of the -Computer Modern math fonts. See the PSNFSS_ documentation for more details. - -To use LaTeX and select Helvetica as the default font, without editing -matplotlibrc use:: - - from matplotlib import rc - rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']}) - ## for Palatino and other serif fonts use: - #rc('font',**{'family':'serif','serif':['Palatino']}) - rc('text', usetex=True) - -Here is the standard example, `tex_demo.py`: - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png - :target: ../../gallery/text_labels_and_annotations/tex_demo.html - :align: center - :scale: 50 - - TeX Demo - -Note that display math mode (``$$ e=mc^2 $$``) is not supported, but adding the -command ``\displaystyle``, as in `tex_demo.py`, will produce the same -results. - -.. note:: - Certain characters require special escaping in TeX, such as:: - - # $ % & ~ _ ^ \ { } \( \) \[ \] - - Therefore, these characters will behave differently depending on - the rcParam ``text.usetex`` flag. - -.. _usetex-unicode: - -usetex with unicode -=================== - -It is also possible to use unicode strings with the LaTeX text manager, here is -an example taken from `tex_demo.py`. The axis labels include Unicode text: - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png - :target: ../../gallery/text_labels_and_annotations/tex_demo.html - :align: center - :scale: 50 - - TeX Unicode Demo - -.. _usetex-postscript: - -Postscript options -================== - -In order to produce encapsulated postscript files that can be embedded in a new -LaTeX document, the default behavior of matplotlib is to distill the output, -which removes some postscript operators used by LaTeX that are illegal in an -eps file. This step produces results which may be unacceptable to some users, -because the text is coarsely rasterized and converted to bitmaps, which are not -scalable like standard postscript, and the text is not searchable. One -workaround is to set ``ps.distiller.res`` to a higher value (perhaps 6000) -in your rc settings, which will produce larger files but may look better and -scale reasonably. A better workaround, which requires Poppler_ or Xpdf_, can be -activated by changing the ``ps.usedistiller`` rc setting to ``xpdf``. This -alternative produces postscript without rasterizing text, so it scales -properly, can be edited in Adobe Illustrator, and searched text in pdf -documents. - -.. _usetex-hangups: - -Possible hangups -================ - -* On Windows, the :envvar:`PATH` environment variable may need to be modified - to include the directories containing the latex, dvipng and ghostscript - executables. See :ref:`environment-variables` and - :ref:`setting-windows-environment-variables` for details. - -* Using MiKTeX with Computer Modern fonts, if you get odd \*Agg and PNG - results, go to MiKTeX/Options and update your format files - -* On Ubuntu and Gentoo, the base texlive install does not ship with - the type1cm package. You may need to install some of the extra - packages to get all the goodies that come bundled with other latex - distributions. - -* Some progress has been made so matplotlib uses the dvi files - directly for text layout. This allows latex to be used for text - layout with the pdf and svg backends, as well as the \*Agg and PS - backends. In the future, a latex installation may be the only - external dependency. - -.. _usetex-troubleshooting: - -Troubleshooting -=============== - -* Try deleting your :file:`.matplotlib/tex.cache` directory. If you don't know - where to find :file:`.matplotlib`, see :ref:`locating-matplotlib-config-dir`. - -* Make sure LaTeX, dvipng and ghostscript are each working and on your - :envvar:`PATH`. - -* Make sure what you are trying to do is possible in a LaTeX document, - that your LaTeX syntax is valid and that you are using raw strings - if necessary to avoid unintended escape sequences. - -* Most problems reported on the mailing list have been cleared up by - upgrading Ghostscript_. If possible, please try upgrading to the - latest release before reporting problems to the list. - -* The ``text.latex.preamble`` rc setting is not officially supported. This - option provides lots of flexibility, and lots of ways to cause - problems. Please disable this option before reporting problems to - the mailing list. - -* If you still need help, please see :ref:`reporting-problems` - -.. _LaTeX: http://www.tug.org -.. _dvipng: http://www.nongnu.org/dvipng/ -.. _Ghostscript: https://ghostscript.com/ -.. _PSNFSS: http://www.ctan.org/tex-archive/macros/latex/required/psnfss/psnfss2e.pdf -.. _Poppler: https://poppler.freedesktop.org/ -.. _Xpdf: http://www.xpdfreader.com/ -""" diff --git a/_downloads/9a114eda1d1440759307c91eeeacebd4/image_nonuniform.py b/_downloads/9a114eda1d1440759307c91eeeacebd4/image_nonuniform.py deleted file mode 100644 index b429826c828..00000000000 --- a/_downloads/9a114eda1d1440759307c91eeeacebd4/image_nonuniform.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -================ -Image Nonuniform -================ - -This illustrates the NonUniformImage class. It is not -available via an Axes method but it is easily added to an -Axes instance as shown here. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.image import NonUniformImage -from matplotlib import cm - -interp = 'nearest' - -# Linear x array for cell centers: -x = np.linspace(-4, 4, 9) - -# Highly nonlinear x array: -x2 = x**3 - -y = np.linspace(-4, 4, 9) - -z = np.sqrt(x[np.newaxis, :]**2 + y[:, np.newaxis]**2) - -fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True) -fig.suptitle('NonUniformImage class', fontsize='large') -ax = axs[0, 0] -im = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4), - cmap=cm.Purples) -im.set_data(x, y, z) -ax.images.append(im) -ax.set_xlim(-4, 4) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -ax = axs[0, 1] -im = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4), - cmap=cm.Purples) -im.set_data(x2, y, z) -ax.images.append(im) -ax.set_xlim(-64, 64) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -interp = 'bilinear' - -ax = axs[1, 0] -im = NonUniformImage(ax, interpolation=interp, extent=(-4, 4, -4, 4), - cmap=cm.Purples) -im.set_data(x, y, z) -ax.images.append(im) -ax.set_xlim(-4, 4) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -ax = axs[1, 1] -im = NonUniformImage(ax, interpolation=interp, extent=(-64, 64, -4, 4), - cmap=cm.Purples) -im.set_data(x2, y, z) -ax.images.append(im) -ax.set_xlim(-64, 64) -ax.set_ylim(-4, 4) -ax.set_title(interp) - -plt.show() diff --git a/_downloads/9a142420f8ee94b2e0671eb27daf2fa6/pie_demo2.ipynb b/_downloads/9a142420f8ee94b2e0671eb27daf2fa6/pie_demo2.ipynb deleted file mode 120000 index dcc825d8806..00000000000 --- a/_downloads/9a142420f8ee94b2e0671eb27daf2fa6/pie_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9a142420f8ee94b2e0671eb27daf2fa6/pie_demo2.ipynb \ No newline at end of file diff --git a/_downloads/9a17ec7267fb55ecc795c56057cd5083/voxels_numpy_logo.ipynb b/_downloads/9a17ec7267fb55ecc795c56057cd5083/voxels_numpy_logo.ipynb deleted file mode 120000 index 267ea1ba62f..00000000000 --- a/_downloads/9a17ec7267fb55ecc795c56057cd5083/voxels_numpy_logo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9a17ec7267fb55ecc795c56057cd5083/voxels_numpy_logo.ipynb \ No newline at end of file diff --git a/_downloads/9a2d2c527d869cd1b03d9560d75d6a71/pipong.py b/_downloads/9a2d2c527d869cd1b03d9560d75d6a71/pipong.py deleted file mode 120000 index 9c61890fb76..00000000000 --- a/_downloads/9a2d2c527d869cd1b03d9560d75d6a71/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9a2d2c527d869cd1b03d9560d75d6a71/pipong.py \ No newline at end of file diff --git a/_downloads/9a2d86b60083b6170a8c0c1847ca7690/gtk_spreadsheet_sgskip.py b/_downloads/9a2d86b60083b6170a8c0c1847ca7690/gtk_spreadsheet_sgskip.py deleted file mode 120000 index 550c79426a5..00000000000 --- a/_downloads/9a2d86b60083b6170a8c0c1847ca7690/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9a2d86b60083b6170a8c0c1847ca7690/gtk_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/9a32cbf165ace2213b9798f2484238b5/subplots_adjust.py b/_downloads/9a32cbf165ace2213b9798f2484238b5/subplots_adjust.py deleted file mode 120000 index 458564bda11..00000000000 --- a/_downloads/9a32cbf165ace2213b9798f2484238b5/subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9a32cbf165ace2213b9798f2484238b5/subplots_adjust.py \ No newline at end of file diff --git a/_downloads/9a349c6cb00664bcb1416cbfbb675f3c/simple_axisline4.ipynb b/_downloads/9a349c6cb00664bcb1416cbfbb675f3c/simple_axisline4.ipynb deleted file mode 120000 index 29c0af5a22d..00000000000 --- a/_downloads/9a349c6cb00664bcb1416cbfbb675f3c/simple_axisline4.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9a349c6cb00664bcb1416cbfbb675f3c/simple_axisline4.ipynb \ No newline at end of file diff --git a/_downloads/9a3c14ecd6fa7983792dd02a6528f415/fill_betweenx_demo.py b/_downloads/9a3c14ecd6fa7983792dd02a6528f415/fill_betweenx_demo.py deleted file mode 120000 index 0d315009d70..00000000000 --- a/_downloads/9a3c14ecd6fa7983792dd02a6528f415/fill_betweenx_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9a3c14ecd6fa7983792dd02a6528f415/fill_betweenx_demo.py \ No newline at end of file diff --git a/_downloads/9a3ed7eb20dba42899530084e71f5280/contour.ipynb b/_downloads/9a3ed7eb20dba42899530084e71f5280/contour.ipynb deleted file mode 120000 index 071b9f18b9e..00000000000 --- a/_downloads/9a3ed7eb20dba42899530084e71f5280/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9a3ed7eb20dba42899530084e71f5280/contour.ipynb \ No newline at end of file diff --git a/_downloads/9a46d0a6b2f658dce2df81d8684cc977/lasso_selector_demo_sgskip.ipynb b/_downloads/9a46d0a6b2f658dce2df81d8684cc977/lasso_selector_demo_sgskip.ipynb deleted file mode 120000 index b9e3f80dbbf..00000000000 --- a/_downloads/9a46d0a6b2f658dce2df81d8684cc977/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9a46d0a6b2f658dce2df81d8684cc977/lasso_selector_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/9a566359e1ce3cd72d2f794ca1ad785a/shading_example.ipynb b/_downloads/9a566359e1ce3cd72d2f794ca1ad785a/shading_example.ipynb deleted file mode 120000 index 351e95f5599..00000000000 --- a/_downloads/9a566359e1ce3cd72d2f794ca1ad785a/shading_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9a566359e1ce3cd72d2f794ca1ad785a/shading_example.ipynb \ No newline at end of file diff --git a/_downloads/9a586dc8954b5de89bc8930080a0a8a8/markevery_demo.py b/_downloads/9a586dc8954b5de89bc8930080a0a8a8/markevery_demo.py deleted file mode 120000 index b5c335fa4c4..00000000000 --- a/_downloads/9a586dc8954b5de89bc8930080a0a8a8/markevery_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9a586dc8954b5de89bc8930080a0a8a8/markevery_demo.py \ No newline at end of file diff --git a/_downloads/9a59da6f1cd0792d431094a1f6c3cae8/scatter_hist.py b/_downloads/9a59da6f1cd0792d431094a1f6c3cae8/scatter_hist.py deleted file mode 100644 index 80bb8b3b304..00000000000 --- a/_downloads/9a59da6f1cd0792d431094a1f6c3cae8/scatter_hist.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============================ -Scatter plot with histograms -============================ - -Create a scatter plot with histograms to its sides. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# the random data -x = np.random.randn(1000) -y = np.random.randn(1000) - -# definitions for the axes -left, width = 0.1, 0.65 -bottom, height = 0.1, 0.65 -spacing = 0.005 - - -rect_scatter = [left, bottom, width, height] -rect_histx = [left, bottom + height + spacing, width, 0.2] -rect_histy = [left + width + spacing, bottom, 0.2, height] - -# start with a rectangular Figure -plt.figure(figsize=(8, 8)) - -ax_scatter = plt.axes(rect_scatter) -ax_scatter.tick_params(direction='in', top=True, right=True) -ax_histx = plt.axes(rect_histx) -ax_histx.tick_params(direction='in', labelbottom=False) -ax_histy = plt.axes(rect_histy) -ax_histy.tick_params(direction='in', labelleft=False) - -# the scatter plot: -ax_scatter.scatter(x, y) - -# now determine nice limits by hand: -binwidth = 0.25 -lim = np.ceil(np.abs([x, y]).max() / binwidth) * binwidth -ax_scatter.set_xlim((-lim, lim)) -ax_scatter.set_ylim((-lim, lim)) - -bins = np.arange(-lim, lim + binwidth, binwidth) -ax_histx.hist(x, bins=bins) -ax_histy.hist(y, bins=bins, orientation='horizontal') - -ax_histx.set_xlim(ax_scatter.get_xlim()) -ax_histy.set_ylim(ax_scatter.get_ylim()) - -plt.show() diff --git a/_downloads/9a65fd1f649b777ced3504d1e77b5484/gridspec_and_subplots.py b/_downloads/9a65fd1f649b777ced3504d1e77b5484/gridspec_and_subplots.py deleted file mode 120000 index e4f38b1577c..00000000000 --- a/_downloads/9a65fd1f649b777ced3504d1e77b5484/gridspec_and_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9a65fd1f649b777ced3504d1e77b5484/gridspec_and_subplots.py \ No newline at end of file diff --git a/_downloads/9a68d2c7343bd186ccfcdb512a99be56/quiver_simple_demo.ipynb b/_downloads/9a68d2c7343bd186ccfcdb512a99be56/quiver_simple_demo.ipynb deleted file mode 100644 index 5dc77ab52b0..00000000000 --- a/_downloads/9a68d2c7343bd186ccfcdb512a99be56/quiver_simple_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Quiver Simple Demo\n\n\nA simple example of a `~.axes.Axes.quiver` plot with a `~.axes.Axes.quiverkey`.\n\nFor more advanced options refer to\n:doc:`/gallery/images_contours_and_fields/quiver_demo`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nX = np.arange(-10, 10, 1)\nY = np.arange(-10, 10, 1)\nU, V = np.meshgrid(X, Y)\n\nfig, ax = plt.subplots()\nq = ax.quiver(X, Y, U, V)\nax.quiverkey(q, X=0.3, Y=1.1, U=10,\n label='Quiver key, length = 10', labelpos='E')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.quiver\nmatplotlib.pyplot.quiver\nmatplotlib.axes.Axes.quiverkey\nmatplotlib.pyplot.quiverkey" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9a727899d3f2ef3acf0bd2794fdface3/mandelbrot.ipynb b/_downloads/9a727899d3f2ef3acf0bd2794fdface3/mandelbrot.ipynb deleted file mode 120000 index 31edb5e224c..00000000000 --- a/_downloads/9a727899d3f2ef3acf0bd2794fdface3/mandelbrot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9a727899d3f2ef3acf0bd2794fdface3/mandelbrot.ipynb \ No newline at end of file diff --git a/_downloads/9a75b927b31e8045e7eea8e697f0524b/tick_xlabel_top.py b/_downloads/9a75b927b31e8045e7eea8e697f0524b/tick_xlabel_top.py deleted file mode 120000 index 19c4dc2ea77..00000000000 --- a/_downloads/9a75b927b31e8045e7eea8e697f0524b/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9a75b927b31e8045e7eea8e697f0524b/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/9a839849b69aa507156dd27ff951da85/pgf_preamble_sgskip.ipynb b/_downloads/9a839849b69aa507156dd27ff951da85/pgf_preamble_sgskip.ipynb deleted file mode 120000 index ed0488f9705..00000000000 --- a/_downloads/9a839849b69aa507156dd27ff951da85/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9a839849b69aa507156dd27ff951da85/pgf_preamble_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/9a9c8ab515a92a91eda7dac9bcb348ec/subplot.py b/_downloads/9a9c8ab515a92a91eda7dac9bcb348ec/subplot.py deleted file mode 120000 index d6c0cd85098..00000000000 --- a/_downloads/9a9c8ab515a92a91eda7dac9bcb348ec/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9a9c8ab515a92a91eda7dac9bcb348ec/subplot.py \ No newline at end of file diff --git a/_downloads/9ab81260f4b76e7b6527550fd886315c/demo_text_path.ipynb b/_downloads/9ab81260f4b76e7b6527550fd886315c/demo_text_path.ipynb deleted file mode 120000 index 66100edc4c8..00000000000 --- a/_downloads/9ab81260f4b76e7b6527550fd886315c/demo_text_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9ab81260f4b76e7b6527550fd886315c/demo_text_path.ipynb \ No newline at end of file diff --git a/_downloads/9ac3ce81668032c6b891a0ea139bece2/membrane.py b/_downloads/9ac3ce81668032c6b891a0ea139bece2/membrane.py deleted file mode 120000 index 67fc8bcb8f0..00000000000 --- a/_downloads/9ac3ce81668032c6b891a0ea139bece2/membrane.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9ac3ce81668032c6b891a0ea139bece2/membrane.py \ No newline at end of file diff --git a/_downloads/9aca1bf360d41f212c94ee148666fd7c/invert_axes.ipynb b/_downloads/9aca1bf360d41f212c94ee148666fd7c/invert_axes.ipynb deleted file mode 120000 index c08ed2fa6fe..00000000000 --- a/_downloads/9aca1bf360d41f212c94ee148666fd7c/invert_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9aca1bf360d41f212c94ee148666fd7c/invert_axes.ipynb \ No newline at end of file diff --git a/_downloads/9acae61eaee0fef02822b84a72153777/markevery_prop_cycle.py b/_downloads/9acae61eaee0fef02822b84a72153777/markevery_prop_cycle.py deleted file mode 120000 index dd06518e805..00000000000 --- a/_downloads/9acae61eaee0fef02822b84a72153777/markevery_prop_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9acae61eaee0fef02822b84a72153777/markevery_prop_cycle.py \ No newline at end of file diff --git a/_downloads/9ad55f09e42f4ff59a007c4413d03a06/annotate_text_arrow.ipynb b/_downloads/9ad55f09e42f4ff59a007c4413d03a06/annotate_text_arrow.ipynb deleted file mode 120000 index 2ed48fe26d4..00000000000 --- a/_downloads/9ad55f09e42f4ff59a007c4413d03a06/annotate_text_arrow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9ad55f09e42f4ff59a007c4413d03a06/annotate_text_arrow.ipynb \ No newline at end of file diff --git a/_downloads/9ad7ad0e7ca6056d379f824ac0fc9ff4/axisartist.ipynb b/_downloads/9ad7ad0e7ca6056d379f824ac0fc9ff4/axisartist.ipynb deleted file mode 120000 index 54d8218041b..00000000000 --- a/_downloads/9ad7ad0e7ca6056d379f824ac0fc9ff4/axisartist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9ad7ad0e7ca6056d379f824ac0fc9ff4/axisartist.ipynb \ No newline at end of file diff --git a/_downloads/9adace99db2339b451f0cba54fe87503/power_norm.ipynb b/_downloads/9adace99db2339b451f0cba54fe87503/power_norm.ipynb deleted file mode 120000 index e777b3700fb..00000000000 --- a/_downloads/9adace99db2339b451f0cba54fe87503/power_norm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9adace99db2339b451f0cba54fe87503/power_norm.ipynb \ No newline at end of file diff --git a/_downloads/9adad2a08ff0c16d394006726042fe14/transforms_tutorial.ipynb b/_downloads/9adad2a08ff0c16d394006726042fe14/transforms_tutorial.ipynb deleted file mode 100644 index 94232ee0db1..00000000000 --- a/_downloads/9adad2a08ff0c16d394006726042fe14/transforms_tutorial.ipynb +++ /dev/null @@ -1,205 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Transformations Tutorial\n\n\nLike any graphics packages, Matplotlib is built on top of a\ntransformation framework to easily move between coordinate systems,\nthe userland `data` coordinate system, the `axes` coordinate system,\nthe `figure` coordinate system, and the `display` coordinate system.\nIn 95% of your plotting, you won't need to think about this, as it\nhappens under the hood, but as you push the limits of custom figure\ngeneration, it helps to have an understanding of these objects so you\ncan reuse the existing transformations Matplotlib makes available to\nyou, or create your own (see :mod:`matplotlib.transforms`). The table\nbelow summarizes the some useful coordinate systems, the transformation\nobject you should use to work in that coordinate system, and the\ndescription of that system. In the `Transformation Object` column,\n``ax`` is a :class:`~matplotlib.axes.Axes` instance, and ``fig`` is a\n:class:`~matplotlib.figure.Figure` instance.\n\n+----------------+-----------------------------+-----------------------------------+\n|Coordinates |Transformation object |Description |\n+================+=============================+===================================+\n|\"data\" |``ax.transData`` |The coordinate system for the data,|\n| | |controlled by xlim and ylim. |\n+----------------+-----------------------------+-----------------------------------+\n|\"axes\" |``ax.transAxes`` |The coordinate system of the |\n| | |`~matplotlib.axes.Axes`; (0, 0) |\n| | |is bottom left of the axes, and |\n| | |(1, 1) is top right of the axes. |\n+----------------+-----------------------------+-----------------------------------+\n|\"figure\" |``fig.transFigure`` |The coordinate system of the |\n| | |`.Figure`; (0, 0) is bottom left |\n| | |of the figure, and (1, 1) is top |\n| | |right of the figure. |\n+----------------+-----------------------------+-----------------------------------+\n|\"figure-inches\" |``fig.dpi_scale_trans`` |The coordinate system of the |\n| | |`.Figure` in inches; (0, 0) is |\n| | |bottom left of the figure, and |\n| | |(width, height) is the top right |\n| | |of the figure in inches. |\n+----------------+-----------------------------+-----------------------------------+\n|\"display\" |``None``, or |The pixel coordinate system of the |\n| |``IdentityTransform()`` |display window; (0, 0) is bottom |\n| | |left of the window, and (width, |\n| | |height) is top right of the |\n| | |display window in pixels. |\n+----------------+-----------------------------+-----------------------------------+\n|\"xaxis\", |``ax.get_xaxis_transform()``,|Blended coordinate systems; use |\n|\"yaxis\" |``ax.get_yaxis_transform()`` |data coordinates on one of the axis|\n| | |and axes coordinates on the other. |\n+----------------+-----------------------------+-----------------------------------+\n\nAll of the transformation objects in the table above take inputs in\ntheir coordinate system, and transform the input to the ``display``\ncoordinate system. That is why the ``display`` coordinate system has\n``None`` for the ``Transformation Object`` column -- it already is in\ndisplay coordinates. The transformations also know how to invert\nthemselves, to go from ``display`` back to the native coordinate system.\nThis is particularly useful when processing events from the user\ninterface, which typically occur in display space, and you want to\nknow where the mouse click or key-press occurred in your data\ncoordinate system.\n\nNote that specifying objects in ``display`` coordinates will change their\nlocation if the ``dpi`` of the figure changes. This can cause confusion when\nprinting or changing screen resolution, because the object can change location\nand size. Therefore it is most common\nfor artists placed in an axes or figure to have their transform set to\nsomething *other* than the `~.transforms.IdentityTransform()`; the default when\nan artist is placed on an axes using `~.Axes.axes.add_artist` is for the\ntransform to be ``ax.transData``.\n\n\nData coordinates\n================\n\nLet's start with the most commonly used coordinate, the `data`\ncoordinate system. Whenever you add data to the axes, Matplotlib\nupdates the datalimits, most commonly updated with the\n:meth:`~matplotlib.axes.Axes.set_xlim` and\n:meth:`~matplotlib.axes.Axes.set_ylim` methods. For example, in the\nfigure below, the data limits stretch from 0 to 10 on the x-axis, and\n-1 to 1 on the y-axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as mpatches\n\nx = np.arange(0, 10, 0.005)\ny = np.exp(-x/2.) * np.sin(2*np.pi*x)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.set_xlim(0, 10)\nax.set_ylim(-1, 1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can use the ``ax.transData`` instance to transform from your\n`data` to your `display` coordinate system, either a single point or a\nsequence of points as shown below:\n\n.. sourcecode:: ipython\n\n In [14]: type(ax.transData)\n Out[14]: \n\n In [15]: ax.transData.transform((5, 0))\n Out[15]: array([ 335.175, 247. ])\n\n In [16]: ax.transData.transform([(5, 0), (1, 2)])\n Out[16]:\n array([[ 335.175, 247. ],\n [ 132.435, 642.2 ]])\n\nYou can use the :meth:`~matplotlib.transforms.Transform.inverted`\nmethod to create a transform which will take you from display to data\ncoordinates:\n\n.. sourcecode:: ipython\n\n In [41]: inv = ax.transData.inverted()\n\n In [42]: type(inv)\n Out[42]: \n\n In [43]: inv.transform((335.175, 247.))\n Out[43]: array([ 5., 0.])\n\nIf your are typing along with this tutorial, the exact values of the\ndisplay coordinates may differ if you have a different window size or\ndpi setting. Likewise, in the figure below, the display labeled\npoints are probably not the same as in the ipython session because the\ndocumentation figure size defaults are different.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 10, 0.005)\ny = np.exp(-x/2.) * np.sin(2*np.pi*x)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.set_xlim(0, 10)\nax.set_ylim(-1, 1)\n\nxdata, ydata = 5, 0\nxdisplay, ydisplay = ax.transData.transform_point((xdata, ydata))\n\nbbox = dict(boxstyle=\"round\", fc=\"0.8\")\narrowprops = dict(\n arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\")\n\noffset = 72\nax.annotate('data = (%.1f, %.1f)' % (xdata, ydata),\n (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\ndisp = ax.annotate('display = (%.1f, %.1f)' % (xdisplay, ydisplay),\n (xdisplay, ydisplay), xytext=(0.5*offset, -offset),\n xycoords='figure pixels',\n textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

If you run the source code in the example above in a GUI backend,\n you may also find that the two arrows for the `data` and `display`\n annotations do not point to exactly the same point. This is because\n the display point was computed before the figure was displayed, and\n the GUI backend may slightly resize the figure when it is created.\n The effect is more pronounced if you resize the figure yourself.\n This is one good reason why you rarely want to work in display\n space, but you can connect to the ``'on_draw'``\n :class:`~matplotlib.backend_bases.Event` to update figure\n coordinates on figure draws; see `event-handling-tutorial`.

\n\nWhen you change the x or y limits of your axes, the data limits are\nupdated so the transformation yields a new display point. Note that\nwhen we just change the ylim, only the y-display coordinate is\naltered, and when we change the xlim too, both are altered. More on\nthis later when we talk about the\n:class:`~matplotlib.transforms.Bbox`.\n\n.. sourcecode:: ipython\n\n In [54]: ax.transData.transform((5, 0))\n Out[54]: array([ 335.175, 247. ])\n\n In [55]: ax.set_ylim(-1, 2)\n Out[55]: (-1, 2)\n\n In [56]: ax.transData.transform((5, 0))\n Out[56]: array([ 335.175 , 181.13333333])\n\n In [57]: ax.set_xlim(10, 20)\n Out[57]: (10, 20)\n\n In [58]: ax.transData.transform((5, 0))\n Out[58]: array([-171.675 , 181.13333333])\n\n\n\nAxes coordinates\n================\n\nAfter the `data` coordinate system, `axes` is probably the second most\nuseful coordinate system. Here the point (0, 0) is the bottom left of\nyour axes or subplot, (0.5, 0.5) is the center, and (1.0, 1.0) is the\ntop right. You can also refer to points outside the range, so (-0.1,\n1.1) is to the left and above your axes. This coordinate system is\nextremely useful when placing text in your axes, because you often\nwant a text bubble in a fixed, location, e.g., the upper left of the axes\npane, and have that location remain fixed when you pan or zoom. Here\nis a simple example that creates four panels and labels them 'A', 'B',\n'C', 'D' as you often see in journals.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nfor i, label in enumerate(('A', 'B', 'C', 'D')):\n ax = fig.add_subplot(2, 2, i+1)\n ax.text(0.05, 0.95, label, transform=ax.transAxes,\n fontsize=16, fontweight='bold', va='top')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also make lines or patches in the axes coordinate system, but\nthis is less useful in my experience than using ``ax.transAxes`` for\nplacing text. Nonetheless, here is a silly example which plots some\nrandom dots in `data` space, and overlays a semi-transparent\n:class:`~matplotlib.patches.Circle` centered in the middle of the axes\nwith a radius one quarter of the axes -- if your axes does not\npreserve aspect ratio (see :meth:`~matplotlib.axes.Axes.set_aspect`),\nthis will look like an ellipse. Use the pan/zoom tool to move around,\nor manually change the data xlim and ylim, and you will see the data\nmove, but the circle will remain fixed because it is not in `data`\ncoordinates and will always remain at the center of the axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nx, y = 10*np.random.rand(2, 1000)\nax.plot(x, y, 'go', alpha=0.2) # plot some data in data coordinates\n\ncirc = mpatches.Circle((0.5, 0.5), 0.25, transform=ax.transAxes,\n facecolor='blue', alpha=0.75)\nax.add_patch(circ)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nBlended transformations\n=======================\n\nDrawing in `blended` coordinate spaces which mix `axes` with `data`\ncoordinates is extremely useful, for example to create a horizontal\nspan which highlights some region of the y-data but spans across the\nx-axis regardless of the data limits, pan or zoom level, etc. In fact\nthese blended lines and spans are so useful, we have built in\nfunctions to make them easy to plot (see\n:meth:`~matplotlib.axes.Axes.axhline`,\n:meth:`~matplotlib.axes.Axes.axvline`,\n:meth:`~matplotlib.axes.Axes.axhspan`,\n:meth:`~matplotlib.axes.Axes.axvspan`) but for didactic purposes we\nwill implement the horizontal span here using a blended\ntransformation. This trick only works for separable transformations,\nlike you see in normal Cartesian coordinate systems, but not on\ninseparable transformations like the\n:class:`~matplotlib.projections.polar.PolarAxes.PolarTransform`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.transforms as transforms\n\nfig, ax = plt.subplots()\nx = np.random.randn(1000)\n\nax.hist(x, 30)\nax.set_title(r'$\\sigma=1 \\/ \\dots \\/ \\sigma=2$', fontsize=16)\n\n# the x coords of this transformation are data, and the\n# y coord are axes\ntrans = transforms.blended_transform_factory(\n ax.transData, ax.transAxes)\n\n# highlight the 1..2 stddev region with a span.\n# We want x to be in data coordinates and y to\n# span from 0..1 in axes coords\nrect = mpatches.Rectangle((1, 0), width=1, height=1,\n transform=trans, color='yellow',\n alpha=0.5)\n\nax.add_patch(rect)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

The blended transformations where x is in data coords and y in axes\n coordinates is so useful that we have helper methods to return the\n versions mpl uses internally for drawing ticks, ticklabels, etc.\n The methods are :meth:`matplotlib.axes.Axes.get_xaxis_transform` and\n :meth:`matplotlib.axes.Axes.get_yaxis_transform`. So in the example\n above, the call to\n :meth:`~matplotlib.transforms.blended_transform_factory` can be\n replaced by ``get_xaxis_transform``::\n\n trans = ax.get_xaxis_transform()

\n\n\nPlotting in physical units\n==========================\n\nSometimes we want an object to be a certain physical size on the plot.\nHere we draw the same circle as above, but in physical units. If done\ninteractively, you can see that changing the size of the figure does\nnot change the offset of the circle from the lower-left corner,\ndoes not change its size, and the circle remains a circle regardless of\nthe aspect ratio of the axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 4))\nx, y = 10*np.random.rand(2, 1000)\nax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates\n# add a circle in fixed-units\ncirc = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans,\n facecolor='blue', alpha=0.75)\nax.add_patch(circ)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If we change the figure size, the circle does not change its absolute\nposition and is cropped.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(7, 2))\nx, y = 10*np.random.rand(2, 1000)\nax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates\n# add a circle in fixed-units\ncirc = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans,\n facecolor='blue', alpha=0.75)\nax.add_patch(circ)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another use is putting a patch with a set physical dimension around a\ndata point on the axes. Here we add together two transforms. The\nfirst sets the scaling of how large the ellipse should be and the second\nsets its position. The ellipse is then placed at the origin, and then\nwe use the helper transform :class:`~matplotlib.transforms.ScaledTranslation`\nto move it\nto the right place in the ``ax.transData`` coordinate system.\nThis helper is instantiated with::\n\n trans = ScaledTranslation(xt, yt, scale_trans)\n\nwhere `xt` and `yt` are the translation offsets, and `scale_trans` is\na transformation which scales `xt` and `yt` at transformation time\nbefore applying the offsets.\n\nNote the use of the plus operator on the transforms below.\nThis code says: first apply the scale transformation ``fig.dpi_scale_trans``\nto make the ellipse the proper size, but still centered at (0, 0),\nand then translate the data to `xdata[0]` and `ydata[0]` in data space.\n\nIn interactive use, the ellipse stays the same size even if the\naxes limits are changed via zoom.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nxdata, ydata = (0.2, 0.7), (0.5, 0.5)\nax.plot(xdata, ydata, \"o\")\nax.set_xlim((0, 1))\n\ntrans = (fig.dpi_scale_trans +\n transforms.ScaledTranslation(xdata[0], ydata[0], ax.transData))\n\n# plot an ellipse around the point that is 150 x 130 points in diameter...\ncircle = mpatches.Ellipse((0, 0), 150/72, 130/72, angle=40,\n fill=None, transform=trans)\nax.add_patch(circle)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

The order of transformation matters. Here the ellipse\n is given the right dimensions in display space *first* and then moved\n in data space to the correct spot.\n If we had done the ``ScaledTranslation`` first, then\n ``xdata[0]`` and ``ydata[0]`` would\n first be transformed to ``display`` coordinates (``[ 358.4 475.2]`` on\n a 200-dpi monitor) and then those coordinates\n would be scaled by ``fig.dpi_scale_trans`` pushing the center of\n the ellipse well off the screen (i.e. ``[ 71680. 95040.]``).

\n\n\nUsing offset transforms to create a shadow effect\n=================================================\n\nAnother use of :class:`~matplotlib.transforms.ScaledTranslation` is to create\na new transformation that is\noffset from another transformation, e.g., to place one object shifted a\nbit relative to another object. Typically you want the shift to be in\nsome physical dimension, like points or inches rather than in data\ncoordinates, so that the shift effect is constant at different zoom\nlevels and dpi settings.\n\nOne use for an offset is to create a shadow effect, where you draw one\nobject identical to the first just to the right of it, and just below\nit, adjusting the zorder to make sure the shadow is drawn first and\nthen the object it is shadowing above it.\n\nHere we apply the transforms in the *opposite* order to the use of\n:class:`~matplotlib.transforms.ScaledTranslation` above. The plot is\nfirst made in data units (``ax.transData``) and then shifted by\n``dx`` and ``dy`` points using `fig.dpi_scale_trans`. (In typography,\na`point `_ is\n1/72 inches, and by specifying your offsets in points, your figure\nwill look the same regardless of the dpi resolution it is saved in.)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\n# make a simple sine wave\nx = np.arange(0., 2., 0.01)\ny = np.sin(2*np.pi*x)\nline, = ax.plot(x, y, lw=3, color='blue')\n\n# shift the object over 2 points, and down 2 points\ndx, dy = 2/72., -2/72.\noffset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)\nshadow_transform = ax.transData + offset\n\n# now plot the same data with our offset transform;\n# use the zorder to make sure we are below the line\nax.plot(x, y, lw=3, color='gray',\n transform=shadow_transform,\n zorder=0.5*line.get_zorder())\n\nax.set_title('creating a shadow effect with an offset transform')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

The dpi and inches offset is a\n common-enough use case that we have a special helper function to\n create it in :func:`matplotlib.transforms.offset_copy`, which returns\n a new transform with an added offset. So above we could have done::\n\n shadow_transform = transforms.offset_copy(ax.transData,\n fig=fig, dx, dy, units='inches')

\n\n\n\nThe transformation pipeline\n===========================\n\nThe ``ax.transData`` transform we have been working with in this\ntutorial is a composite of three different transformations that\ncomprise the transformation pipeline from `data` -> `display`\ncoordinates. Michael Droettboom implemented the transformations\nframework, taking care to provide a clean API that segregated the\nnonlinear projections and scales that happen in polar and logarithmic\nplots, from the linear affine transformations that happen when you pan\nand zoom. There is an efficiency here, because you can pan and zoom\nin your axes which affects the affine transformation, but you may not\nneed to compute the potentially expensive nonlinear scales or\nprojections on simple navigation events. It is also possible to\nmultiply affine transformation matrices together, and then apply them\nto coordinates in one step. This is not true of all possible\ntransformations.\n\n\nHere is how the ``ax.transData`` instance is defined in the basic\nseparable axis :class:`~matplotlib.axes.Axes` class::\n\n self.transData = self.transScale + (self.transLimits + self.transAxes)\n\nWe've been introduced to the ``transAxes`` instance above in\n`axes-coords`, which maps the (0, 0), (1, 1) corners of the\naxes or subplot bounding box to `display` space, so let's look at\nthese other two pieces.\n\n``self.transLimits`` is the transformation that takes you from\n``data`` to ``axes`` coordinates; i.e., it maps your view xlim and ylim\nto the unit space of the axes (and ``transAxes`` then takes that unit\nspace to display space). We can see this in action here\n\n.. sourcecode:: ipython\n\n In [80]: ax = subplot(111)\n\n In [81]: ax.set_xlim(0, 10)\n Out[81]: (0, 10)\n\n In [82]: ax.set_ylim(-1, 1)\n Out[82]: (-1, 1)\n\n In [84]: ax.transLimits.transform((0, -1))\n Out[84]: array([ 0., 0.])\n\n In [85]: ax.transLimits.transform((10, -1))\n Out[85]: array([ 1., 0.])\n\n In [86]: ax.transLimits.transform((10, 1))\n Out[86]: array([ 1., 1.])\n\n In [87]: ax.transLimits.transform((5, 0))\n Out[87]: array([ 0.5, 0.5])\n\nand we can use this same inverted transformation to go from the unit\n`axes` coordinates back to `data` coordinates.\n\n.. sourcecode:: ipython\n\n In [90]: inv.transform((0.25, 0.25))\n Out[90]: array([ 2.5, -0.5])\n\nThe final piece is the ``self.transScale`` attribute, which is\nresponsible for the optional non-linear scaling of the data, e.g., for\nlogarithmic axes. When an Axes is initially setup, this is just set to\nthe identity transform, since the basic Matplotlib axes has linear\nscale, but when you call a logarithmic scaling function like\n:meth:`~matplotlib.axes.Axes.semilogx` or explicitly set the scale to\nlogarithmic with :meth:`~matplotlib.axes.Axes.set_xscale`, then the\n``ax.transScale`` attribute is set to handle the nonlinear projection.\nThe scales transforms are properties of the respective ``xaxis`` and\n``yaxis`` :class:`~matplotlib.axis.Axis` instances. For example, when\nyou call ``ax.set_xscale('log')``, the xaxis updates its scale to a\n:class:`matplotlib.scale.LogScale` instance.\n\nFor non-separable axes the PolarAxes, there is one more piece to\nconsider, the projection transformation. The ``transData``\n:class:`matplotlib.projections.polar.PolarAxes` is similar to that for\nthe typical separable matplotlib Axes, with one additional piece\n``transProjection``::\n\n self.transData = self.transScale + self.transProjection + \\\n (self.transProjectionAffine + self.transAxes)\n\n``transProjection`` handles the projection from the space,\ne.g., latitude and longitude for map data, or radius and theta for polar\ndata, to a separable Cartesian coordinate system. There are several\nprojection examples in the ``matplotlib.projections`` package, and the\nbest way to learn more is to open the source for those packages and\nsee how to make your own, since Matplotlib supports extensible axes\nand projections. Michael Droettboom has provided a nice tutorial\nexample of creating a Hammer projection axes; see\n:doc:`/gallery/misc/custom_projection`.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9add2868ec4a4aecbd16be0ace0408fd/errorbar_subsample.ipynb b/_downloads/9add2868ec4a4aecbd16be0ace0408fd/errorbar_subsample.ipynb deleted file mode 120000 index 3388edfd288..00000000000 --- a/_downloads/9add2868ec4a4aecbd16be0ace0408fd/errorbar_subsample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9add2868ec4a4aecbd16be0ace0408fd/errorbar_subsample.ipynb \ No newline at end of file diff --git a/_downloads/9ae9d64658183a367724086d0da3d11e/barb_demo.ipynb b/_downloads/9ae9d64658183a367724086d0da3d11e/barb_demo.ipynb deleted file mode 120000 index d762fd4b88b..00000000000 --- a/_downloads/9ae9d64658183a367724086d0da3d11e/barb_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9ae9d64658183a367724086d0da3d11e/barb_demo.ipynb \ No newline at end of file diff --git a/_downloads/9aed62c991d110b87eae5ab69198c445/surface3d_3.py b/_downloads/9aed62c991d110b87eae5ab69198c445/surface3d_3.py deleted file mode 120000 index e6ad00a956b..00000000000 --- a/_downloads/9aed62c991d110b87eae5ab69198c445/surface3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9aed62c991d110b87eae5ab69198c445/surface3d_3.py \ No newline at end of file diff --git a/_downloads/9aef93dd98636f104a0614dba420526e/marker_fillstyle_reference.ipynb b/_downloads/9aef93dd98636f104a0614dba420526e/marker_fillstyle_reference.ipynb deleted file mode 120000 index 8ab472bec26..00000000000 --- a/_downloads/9aef93dd98636f104a0614dba420526e/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9aef93dd98636f104a0614dba420526e/marker_fillstyle_reference.ipynb \ No newline at end of file diff --git a/_downloads/9af1076c2fab3dbe816bfbf4cfe1b9f5/textbox.py b/_downloads/9af1076c2fab3dbe816bfbf4cfe1b9f5/textbox.py deleted file mode 120000 index 2c151715f5a..00000000000 --- a/_downloads/9af1076c2fab3dbe816bfbf4cfe1b9f5/textbox.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9af1076c2fab3dbe816bfbf4cfe1b9f5/textbox.py \ No newline at end of file diff --git a/_downloads/9af2737ec804056497a25e45aede82c9/colormap_normalizations_diverging.ipynb b/_downloads/9af2737ec804056497a25e45aede82c9/colormap_normalizations_diverging.ipynb deleted file mode 120000 index 27ca76d6b86..00000000000 --- a/_downloads/9af2737ec804056497a25e45aede82c9/colormap_normalizations_diverging.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9af2737ec804056497a25e45aede82c9/colormap_normalizations_diverging.ipynb \ No newline at end of file diff --git a/_downloads/9afb3e25c202283173733a366ec0df8f/demo_fixed_size_axes.ipynb b/_downloads/9afb3e25c202283173733a366ec0df8f/demo_fixed_size_axes.ipynb deleted file mode 120000 index 2c44239d234..00000000000 --- a/_downloads/9afb3e25c202283173733a366ec0df8f/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9afb3e25c202283173733a366ec0df8f/demo_fixed_size_axes.ipynb \ No newline at end of file diff --git a/_downloads/9b080b74551f49ca3e9462b33992b219/voxels.py b/_downloads/9b080b74551f49ca3e9462b33992b219/voxels.py deleted file mode 120000 index df635e6ade8..00000000000 --- a/_downloads/9b080b74551f49ca3e9462b33992b219/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b080b74551f49ca3e9462b33992b219/voxels.py \ No newline at end of file diff --git a/_downloads/9b0889fba5230a0177c08eb05de1ba3e/colormap_normalizations_power.ipynb b/_downloads/9b0889fba5230a0177c08eb05de1ba3e/colormap_normalizations_power.ipynb deleted file mode 100644 index a1d2a0fecf6..00000000000 --- a/_downloads/9b0889fba5230a0177c08eb05de1ba3e/colormap_normalizations_power.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Power\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n'''\nPowerNorm: Here a power-law trend in X partially obscures a rectified\nsine wave in Y. We can remove the power law using a PowerNorm.\n'''\nX, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)]\nZ1 = (1 + np.sin(Y * 10.)) * X**(2.)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1./2.),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9b1ecf8775d308359db8e148e08ebe54/connectionstyle_demo.ipynb b/_downloads/9b1ecf8775d308359db8e148e08ebe54/connectionstyle_demo.ipynb deleted file mode 100644 index 0e4a5b5cdf7..00000000000 --- a/_downloads/9b1ecf8775d308359db8e148e08ebe54/connectionstyle_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Connectionstyle Demo\n\n\nWhen creating an annotation using `~.Axes.annotate`, the arrow shape can be\ncontrolled via the *connectionstyle* parameter of *arrowprops*. For further\ndetails see the description of `.FancyArrowPatch`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef demo_con_style(ax, connectionstyle):\n x1, y1 = 0.3, 0.2\n x2, y2 = 0.8, 0.6\n\n ax.plot([x1, x2], [y1, y2], \".\")\n ax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", color=\"0.5\",\n shrinkA=5, shrinkB=5,\n patchA=None, patchB=None,\n connectionstyle=connectionstyle,\n ),\n )\n\n ax.text(.05, .95, connectionstyle.replace(\",\", \",\\n\"),\n transform=ax.transAxes, ha=\"left\", va=\"top\")\n\n\nfig, axs = plt.subplots(3, 5, figsize=(8, 4.8))\ndemo_con_style(axs[0, 0], \"angle3,angleA=90,angleB=0\")\ndemo_con_style(axs[1, 0], \"angle3,angleA=0,angleB=90\")\ndemo_con_style(axs[0, 1], \"arc3,rad=0.\")\ndemo_con_style(axs[1, 1], \"arc3,rad=0.3\")\ndemo_con_style(axs[2, 1], \"arc3,rad=-0.3\")\ndemo_con_style(axs[0, 2], \"angle,angleA=-90,angleB=180,rad=0\")\ndemo_con_style(axs[1, 2], \"angle,angleA=-90,angleB=180,rad=5\")\ndemo_con_style(axs[2, 2], \"angle,angleA=-90,angleB=10,rad=5\")\ndemo_con_style(axs[0, 3], \"arc,angleA=-90,angleB=0,armA=30,armB=30,rad=0\")\ndemo_con_style(axs[1, 3], \"arc,angleA=-90,angleB=0,armA=30,armB=30,rad=5\")\ndemo_con_style(axs[2, 3], \"arc,angleA=-90,angleB=0,armA=0,armB=40,rad=0\")\ndemo_con_style(axs[0, 4], \"bar,fraction=0.3\")\ndemo_con_style(axs[1, 4], \"bar,fraction=-0.3\")\ndemo_con_style(axs[2, 4], \"bar,angle=180,fraction=-0.2\")\n\nfor ax in axs.flat:\n ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1)\nfig.tight_layout(pad=0.2)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.annotate\nmatplotlib.patches.FancyArrowPatch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9b2428c1bcfe1669bedc9110940dd120/errorbar.ipynb b/_downloads/9b2428c1bcfe1669bedc9110940dd120/errorbar.ipynb deleted file mode 100644 index 146e919284a..00000000000 --- a/_downloads/9b2428c1bcfe1669bedc9110940dd120/errorbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Errorbar function\n\n\nThis exhibits the most basic use of the error bar method.\nIn this case, constant values are provided for the error\nin both the x- and y-directions.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.arange(0.1, 4, 0.5)\ny = np.exp(-x)\n\nfig, ax = plt.subplots()\nax.errorbar(x, y, xerr=0.2, yerr=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9b2ba2fbfff3c5b46e410dc4e4ac6868/pong_sgskip.ipynb b/_downloads/9b2ba2fbfff3c5b46e410dc4e4ac6868/pong_sgskip.ipynb deleted file mode 120000 index 918d209503d..00000000000 --- a/_downloads/9b2ba2fbfff3c5b46e410dc4e4ac6868/pong_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b2ba2fbfff3c5b46e410dc4e4ac6868/pong_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/9b2f5899499a9e0fafad4e798dc8aca5/legend_picking.py b/_downloads/9b2f5899499a9e0fafad4e798dc8aca5/legend_picking.py deleted file mode 120000 index 67af08f72f3..00000000000 --- a/_downloads/9b2f5899499a9e0fafad4e798dc8aca5/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9b2f5899499a9e0fafad4e798dc8aca5/legend_picking.py \ No newline at end of file diff --git a/_downloads/9b396f2d16b1ff51112fb36ef7ef9902/hist.py b/_downloads/9b396f2d16b1ff51112fb36ef7ef9902/hist.py deleted file mode 120000 index f9e147145a5..00000000000 --- a/_downloads/9b396f2d16b1ff51112fb36ef7ef9902/hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b396f2d16b1ff51112fb36ef7ef9902/hist.py \ No newline at end of file diff --git a/_downloads/9b41b6b91082ad73b32d83101ac5024f/simple_annotate01.ipynb b/_downloads/9b41b6b91082ad73b32d83101ac5024f/simple_annotate01.ipynb deleted file mode 120000 index 7db0965a991..00000000000 --- a/_downloads/9b41b6b91082ad73b32d83101ac5024f/simple_annotate01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b41b6b91082ad73b32d83101ac5024f/simple_annotate01.ipynb \ No newline at end of file diff --git a/_downloads/9b42655ec8a3f8a8a9e620145ef4238d/trifinder_event_demo.py b/_downloads/9b42655ec8a3f8a8a9e620145ef4238d/trifinder_event_demo.py deleted file mode 120000 index 3890da02a1a..00000000000 --- a/_downloads/9b42655ec8a3f8a8a9e620145ef4238d/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9b42655ec8a3f8a8a9e620145ef4238d/trifinder_event_demo.py \ No newline at end of file diff --git a/_downloads/9b44cc11428cb643b26d3f4deb4d31bb/colors.ipynb b/_downloads/9b44cc11428cb643b26d3f4deb4d31bb/colors.ipynb deleted file mode 120000 index e10aba474f8..00000000000 --- a/_downloads/9b44cc11428cb643b26d3f4deb4d31bb/colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b44cc11428cb643b26d3f4deb4d31bb/colors.ipynb \ No newline at end of file diff --git a/_downloads/9b4870517d71540e7263ae7925c84a8f/demo_bboximage.py b/_downloads/9b4870517d71540e7263ae7925c84a8f/demo_bboximage.py deleted file mode 120000 index ab10a3982e4..00000000000 --- a/_downloads/9b4870517d71540e7263ae7925c84a8f/demo_bboximage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9b4870517d71540e7263ae7925c84a8f/demo_bboximage.py \ No newline at end of file diff --git a/_downloads/9b4999284c0337ebcc268c4340dd566e/skewt.py b/_downloads/9b4999284c0337ebcc268c4340dd566e/skewt.py deleted file mode 120000 index 87bcc30f8e2..00000000000 --- a/_downloads/9b4999284c0337ebcc268c4340dd566e/skewt.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b4999284c0337ebcc268c4340dd566e/skewt.py \ No newline at end of file diff --git a/_downloads/9b521aad52e3c8011a5a78210322caa2/close_event.ipynb b/_downloads/9b521aad52e3c8011a5a78210322caa2/close_event.ipynb deleted file mode 120000 index c86c6af82c4..00000000000 --- a/_downloads/9b521aad52e3c8011a5a78210322caa2/close_event.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b521aad52e3c8011a5a78210322caa2/close_event.ipynb \ No newline at end of file diff --git a/_downloads/9b77f8ce039435878f22b34be149d8c8/bar_stacked.ipynb b/_downloads/9b77f8ce039435878f22b34be149d8c8/bar_stacked.ipynb deleted file mode 120000 index 38fed393d06..00000000000 --- a/_downloads/9b77f8ce039435878f22b34be149d8c8/bar_stacked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b77f8ce039435878f22b34be149d8c8/bar_stacked.ipynb \ No newline at end of file diff --git a/_downloads/9b7ad47641760ad6ee1d9fb037fd0bb5/geo_demo.py b/_downloads/9b7ad47641760ad6ee1d9fb037fd0bb5/geo_demo.py deleted file mode 120000 index 99e67eebcd8..00000000000 --- a/_downloads/9b7ad47641760ad6ee1d9fb037fd0bb5/geo_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9b7ad47641760ad6ee1d9fb037fd0bb5/geo_demo.py \ No newline at end of file diff --git a/_downloads/9b7ce703d8ce4801199d80e1e23d3b6c/multiline.py b/_downloads/9b7ce703d8ce4801199d80e1e23d3b6c/multiline.py deleted file mode 120000 index 905e16b9284..00000000000 --- a/_downloads/9b7ce703d8ce4801199d80e1e23d3b6c/multiline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b7ce703d8ce4801199d80e1e23d3b6c/multiline.py \ No newline at end of file diff --git a/_downloads/9b82c6b56f76090c388591802fe4c3c5/multiple_histograms_side_by_side.py b/_downloads/9b82c6b56f76090c388591802fe4c3c5/multiple_histograms_side_by_side.py deleted file mode 120000 index 673c169e7c1..00000000000 --- a/_downloads/9b82c6b56f76090c388591802fe4c3c5/multiple_histograms_side_by_side.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9b82c6b56f76090c388591802fe4c3c5/multiple_histograms_side_by_side.py \ No newline at end of file diff --git a/_downloads/9b85822beff2e9b6daa83479b3f4c159/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/9b85822beff2e9b6daa83479b3f4c159/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 100644 index a31f890d501..00000000000 --- a/_downloads/9b85822beff2e9b6daa83479b3f4c159/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -=========================================== -Embedding in GTK3 with a navigation toolbar -=========================================== - -Demonstrate NavigationToolbar with GTK3 accessed via pygobject. -""" - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - -from matplotlib.backends.backend_gtk3 import ( - NavigationToolbar2GTK3 as NavigationToolbar) -from matplotlib.backends.backend_gtk3agg import ( - FigureCanvasGTK3Agg as FigureCanvas) -from matplotlib.figure import Figure -import numpy as np - -win = Gtk.Window() -win.connect("delete-event", Gtk.main_quit) -win.set_default_size(400, 300) -win.set_title("Embedding in GTK") - -f = Figure(figsize=(5, 4), dpi=100) -a = f.add_subplot(1, 1, 1) -t = np.arange(0.0, 3.0, 0.01) -s = np.sin(2*np.pi*t) -a.plot(t, s) - -vbox = Gtk.VBox() -win.add(vbox) - -# Add canvas to vbox -canvas = FigureCanvas(f) # a Gtk.DrawingArea -vbox.pack_start(canvas, True, True, 0) - -# Create toolbar -toolbar = NavigationToolbar(canvas, win) -vbox.pack_start(toolbar, False, False, 0) - -win.show_all() -Gtk.main() diff --git a/_downloads/9b94da4130b98d403d3fd8f36b3b454c/cohere.py b/_downloads/9b94da4130b98d403d3fd8f36b3b454c/cohere.py deleted file mode 100644 index 37014969539..00000000000 --- a/_downloads/9b94da4130b98d403d3fd8f36b3b454c/cohere.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -===================================== -Plotting the coherence of two signals -===================================== - -An example showing how to plot the coherence of two signals. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -dt = 0.01 -t = np.arange(0, 30, dt) -nse1 = np.random.randn(len(t)) # white noise 1 -nse2 = np.random.randn(len(t)) # white noise 2 - -# Two signals with a coherent part at 10Hz and a random part -s1 = np.sin(2 * np.pi * 10 * t) + nse1 -s2 = np.sin(2 * np.pi * 10 * t) + nse2 - -fig, axs = plt.subplots(2, 1) -axs[0].plot(t, s1, t, s2) -axs[0].set_xlim(0, 2) -axs[0].set_xlabel('time') -axs[0].set_ylabel('s1 and s2') -axs[0].grid(True) - -cxy, f = axs[1].cohere(s1, s2, 256, 1. / dt) -axs[1].set_ylabel('coherence') - -fig.tight_layout() -plt.show() diff --git a/_downloads/9ba2f77284933ae5c06a1ac8e0e15ba1/parasite_simple.ipynb b/_downloads/9ba2f77284933ae5c06a1ac8e0e15ba1/parasite_simple.ipynb deleted file mode 120000 index 56113914323..00000000000 --- a/_downloads/9ba2f77284933ae5c06a1ac8e0e15ba1/parasite_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9ba2f77284933ae5c06a1ac8e0e15ba1/parasite_simple.ipynb \ No newline at end of file diff --git a/_downloads/9ba32c976097460da204f6f780d8b8f7/demo_axes_divider.ipynb b/_downloads/9ba32c976097460da204f6f780d8b8f7/demo_axes_divider.ipynb deleted file mode 120000 index 81c125143b2..00000000000 --- a/_downloads/9ba32c976097460da204f6f780d8b8f7/demo_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9ba32c976097460da204f6f780d8b8f7/demo_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/9bb146524d4291857179a30031ea856a/pcolormesh.py b/_downloads/9bb146524d4291857179a30031ea856a/pcolormesh.py deleted file mode 120000 index 47a8680da5b..00000000000 --- a/_downloads/9bb146524d4291857179a30031ea856a/pcolormesh.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9bb146524d4291857179a30031ea856a/pcolormesh.py \ No newline at end of file diff --git a/_downloads/9bb3669bc97b8aa62bb1f34921a4f338/histogram_features.ipynb b/_downloads/9bb3669bc97b8aa62bb1f34921a4f338/histogram_features.ipynb deleted file mode 120000 index 83e8ffaa0af..00000000000 --- a/_downloads/9bb3669bc97b8aa62bb1f34921a4f338/histogram_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9bb3669bc97b8aa62bb1f34921a4f338/histogram_features.ipynb \ No newline at end of file diff --git a/_downloads/9bb79b2604857151de76c83aac1a92bc/mandelbrot.ipynb b/_downloads/9bb79b2604857151de76c83aac1a92bc/mandelbrot.ipynb deleted file mode 100644 index d0b3274e0f6..00000000000 --- a/_downloads/9bb79b2604857151de76c83aac1a92bc/mandelbrot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===================================\nShaded & power normalized rendering\n===================================\n\nThe Mandelbrot set rendering can be improved by using a normalized recount\nassociated with a power normalized colormap (gamma=0.3). Rendering can be\nfurther enhanced thanks to shading.\n\nThe `maxiter` gives the precision of the computation. `maxiter=200` should\ntake a few seconds on most modern laptops.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\n\ndef mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon=2.0):\n X = np.linspace(xmin, xmax, xn).astype(np.float32)\n Y = np.linspace(ymin, ymax, yn).astype(np.float32)\n C = X + Y[:, None] * 1j\n N = np.zeros_like(C, dtype=int)\n Z = np.zeros_like(C)\n for n in range(maxiter):\n I = abs(Z) < horizon\n N[I] = n\n Z[I] = Z[I]**2 + C[I]\n N[N == maxiter-1] = 0\n return Z, N\n\n\nif __name__ == '__main__':\n import time\n import matplotlib\n from matplotlib import colors\n import matplotlib.pyplot as plt\n\n xmin, xmax, xn = -2.25, +0.75, 3000 // 2\n ymin, ymax, yn = -1.25, +1.25, 2500 // 2\n maxiter = 200\n horizon = 2.0 ** 40\n log_horizon = np.log2(np.log(horizon))\n Z, N = mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon)\n\n # Normalized recount as explained in:\n # https://linas.org/art-gallery/escape/smooth.html\n # https://www.ibm.com/developerworks/community/blogs/jfp/entry/My_Christmas_Gift\n\n # This line will generate warnings for null values but it is faster to\n # process them afterwards using the nan_to_num\n with np.errstate(invalid='ignore'):\n M = np.nan_to_num(N + 1 - np.log2(np.log(abs(Z))) + log_horizon)\n\n dpi = 72\n width = 10\n height = 10*yn/xn\n fig = plt.figure(figsize=(width, height), dpi=dpi)\n ax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1)\n\n # Shaded rendering\n light = colors.LightSource(azdeg=315, altdeg=10)\n M = light.shade(M, cmap=plt.cm.hot, vert_exag=1.5,\n norm=colors.PowerNorm(0.3), blend_mode='hsv')\n ax.imshow(M, extent=[xmin, xmax, ymin, ymax], interpolation=\"bicubic\")\n ax.set_xticks([])\n ax.set_yticks([])\n\n # Some advertisement for matplotlib\n year = time.strftime(\"%Y\")\n text = (\"The Mandelbrot fractal set\\n\"\n \"Rendered with matplotlib %s, %s - http://matplotlib.org\"\n % (matplotlib.__version__, year))\n ax.text(xmin+.025, ymin+.025, text, color=\"white\", fontsize=12, alpha=0.5)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9bbf40c55437cc5cb8ce81eee706bd66/ticklabels_rotation.ipynb b/_downloads/9bbf40c55437cc5cb8ce81eee706bd66/ticklabels_rotation.ipynb deleted file mode 120000 index c9432d10f26..00000000000 --- a/_downloads/9bbf40c55437cc5cb8ce81eee706bd66/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/9bbf40c55437cc5cb8ce81eee706bd66/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/9bc31900f15b38b9652093716801bcbe/date_precision_and_epochs.ipynb b/_downloads/9bc31900f15b38b9652093716801bcbe/date_precision_and_epochs.ipynb deleted file mode 120000 index 056d3d3aa65..00000000000 --- a/_downloads/9bc31900f15b38b9652093716801bcbe/date_precision_and_epochs.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/9bc31900f15b38b9652093716801bcbe/date_precision_and_epochs.ipynb \ No newline at end of file diff --git a/_downloads/9bc4ec5918d20f664cb162c232b37fa1/demo_axisline_style.ipynb b/_downloads/9bc4ec5918d20f664cb162c232b37fa1/demo_axisline_style.ipynb deleted file mode 120000 index 4941326480c..00000000000 --- a/_downloads/9bc4ec5918d20f664cb162c232b37fa1/demo_axisline_style.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9bc4ec5918d20f664cb162c232b37fa1/demo_axisline_style.ipynb \ No newline at end of file diff --git a/_downloads/9bcc6d8fff0f401a7f3b75dc70e84be5/trigradient_demo.ipynb b/_downloads/9bcc6d8fff0f401a7f3b75dc70e84be5/trigradient_demo.ipynb deleted file mode 120000 index 84c180b05e4..00000000000 --- a/_downloads/9bcc6d8fff0f401a7f3b75dc70e84be5/trigradient_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9bcc6d8fff0f401a7f3b75dc70e84be5/trigradient_demo.ipynb \ No newline at end of file diff --git a/_downloads/9bda597c0e44707d03fec7a6ab6a9176/voxels.ipynb b/_downloads/9bda597c0e44707d03fec7a6ab6a9176/voxels.ipynb deleted file mode 120000 index 3c15b7fecd3..00000000000 --- a/_downloads/9bda597c0e44707d03fec7a6ab6a9176/voxels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9bda597c0e44707d03fec7a6ab6a9176/voxels.ipynb \ No newline at end of file diff --git a/_downloads/9bdceb61590fad74aef1e106f876a05f/annotate_simple03.py b/_downloads/9bdceb61590fad74aef1e106f876a05f/annotate_simple03.py deleted file mode 120000 index f83f726dfa9..00000000000 --- a/_downloads/9bdceb61590fad74aef1e106f876a05f/annotate_simple03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9bdceb61590fad74aef1e106f876a05f/annotate_simple03.py \ No newline at end of file diff --git a/_downloads/9bdd4bf57c7bff79b64fb6e248f6bce8/contourf_hatching.py b/_downloads/9bdd4bf57c7bff79b64fb6e248f6bce8/contourf_hatching.py deleted file mode 120000 index 4b9960185a6..00000000000 --- a/_downloads/9bdd4bf57c7bff79b64fb6e248f6bce8/contourf_hatching.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9bdd4bf57c7bff79b64fb6e248f6bce8/contourf_hatching.py \ No newline at end of file diff --git a/_downloads/9be2f79e9f72a1a605d6c5e931513691/quad_bezier.py b/_downloads/9be2f79e9f72a1a605d6c5e931513691/quad_bezier.py deleted file mode 100644 index 0aacd26c55f..00000000000 --- a/_downloads/9be2f79e9f72a1a605d6c5e931513691/quad_bezier.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============ -Bezier Curve -============ - -This example showcases the `~.patches.PathPatch` object to create a Bezier -polycurve path patch. -""" - -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - -Path = mpath.Path - -fig, ax = plt.subplots() -pp1 = mpatches.PathPatch( - Path([(0, 0), (1, 0), (1, 1), (0, 0)], - [Path.MOVETO, Path.CURVE3, Path.CURVE3, Path.CLOSEPOLY]), - fc="none", transform=ax.transData) - -ax.add_patch(pp1) -ax.plot([0.75], [0.25], "ro") -ax.set_title('The red point should be on the path') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.axes.Axes.add_patch diff --git a/_downloads/9bf65c27387a8fbc58adc7cc6bd5234f/pong_sgskip.ipynb b/_downloads/9bf65c27387a8fbc58adc7cc6bd5234f/pong_sgskip.ipynb deleted file mode 120000 index 2a3bdfc54b9..00000000000 --- a/_downloads/9bf65c27387a8fbc58adc7cc6bd5234f/pong_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9bf65c27387a8fbc58adc7cc6bd5234f/pong_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/9bfa04c8b8c3111873c975168200a4c6/customize_rc.py b/_downloads/9bfa04c8b8c3111873c975168200a4c6/customize_rc.py deleted file mode 100644 index 37bc5b8d4bc..00000000000 --- a/_downloads/9bfa04c8b8c3111873c975168200a4c6/customize_rc.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -============ -Customize Rc -============ - -I'm not trying to make a good looking figure here, but just to show -some examples of customizing rc params on the fly - -If you like to work interactively, and need to create different sets -of defaults for figures (e.g., one set of defaults for publication, one -set for interactive exploration), you may want to define some -functions in a custom module that set the defaults, e.g.,:: - - def set_pub(): - rc('font', weight='bold') # bold fonts are easier to see - rc('tick', labelsize=15) # tick labels bigger - rc('lines', lw=1, color='k') # thicker black lines - rc('grid', c='0.5', ls='-', lw=0.5) # solid gray grid lines - rc('savefig', dpi=300) # higher res outputs - -Then as you are working interactively, you just need to do:: - - >>> set_pub() - >>> subplot(111) - >>> plot([1,2,3]) - >>> savefig('myfig') - >>> rcdefaults() # restore the defaults - -""" -import matplotlib.pyplot as plt - -plt.subplot(311) -plt.plot([1, 2, 3]) - -# the axes attributes need to be set before the call to subplot -plt.rc('font', weight='bold') -plt.rc('xtick.major', size=5, pad=7) -plt.rc('xtick', labelsize=15) - -# using aliases for color, linestyle and linewidth; gray, solid, thick -plt.rc('grid', c='0.5', ls='-', lw=5) -plt.rc('lines', lw=2, color='g') -plt.subplot(312) - -plt.plot([1, 2, 3]) -plt.grid(True) - -plt.rcdefaults() -plt.subplot(313) -plt.plot([1, 2, 3]) -plt.grid(True) -plt.show() diff --git a/_downloads/9bfac995ac1b3ea90b5549d623715fe6/quiver_simple_demo.ipynb b/_downloads/9bfac995ac1b3ea90b5549d623715fe6/quiver_simple_demo.ipynb deleted file mode 120000 index 93bee552cf8..00000000000 --- a/_downloads/9bfac995ac1b3ea90b5549d623715fe6/quiver_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9bfac995ac1b3ea90b5549d623715fe6/quiver_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/9c00352c401926fc83c2639b2cf3fc79/xcorr_acorr_demo.ipynb b/_downloads/9c00352c401926fc83c2639b2cf3fc79/xcorr_acorr_demo.ipynb deleted file mode 100644 index bf962d57ac8..00000000000 --- a/_downloads/9c00352c401926fc83c2639b2cf3fc79/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Cross- and Auto-Correlation Demo\n\n\nExample use of cross-correlation (`~.Axes.xcorr`) and auto-correlation\n(`~.Axes.acorr`) plots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx, y = np.random.randn(2, 100)\nfig, [ax1, ax2] = plt.subplots(2, 1, sharex=True)\nax1.xcorr(x, y, usevlines=True, maxlags=50, normed=True, lw=2)\nax1.grid(True)\n\nax2.acorr(x, usevlines=True, normed=True, maxlags=50, lw=2)\nax2.grid(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.acorr\nmatplotlib.axes.Axes.xcorr\nmatplotlib.pyplot.acorr\nmatplotlib.pyplot.xcorr" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9c0c5f4b684090e64fc1930bd82c8903/mri_with_eeg.ipynb b/_downloads/9c0c5f4b684090e64fc1930bd82c8903/mri_with_eeg.ipynb deleted file mode 120000 index cc1e20f7ca2..00000000000 --- a/_downloads/9c0c5f4b684090e64fc1930bd82c8903/mri_with_eeg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9c0c5f4b684090e64fc1930bd82c8903/mri_with_eeg.ipynb \ No newline at end of file diff --git a/_downloads/9c1e364fa492542425a63c5876765321/figimage_demo.ipynb b/_downloads/9c1e364fa492542425a63c5876765321/figimage_demo.ipynb deleted file mode 120000 index ae236c9930e..00000000000 --- a/_downloads/9c1e364fa492542425a63c5876765321/figimage_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9c1e364fa492542425a63c5876765321/figimage_demo.ipynb \ No newline at end of file diff --git a/_downloads/9c2221a0cb59c7e278d3365bd5ff1641/span_regions.ipynb b/_downloads/9c2221a0cb59c7e278d3365bd5ff1641/span_regions.ipynb deleted file mode 100644 index aad5c7bd1af..00000000000 --- a/_downloads/9c2221a0cb59c7e278d3365bd5ff1641/span_regions.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using span_where\n\n\nIllustrate some helper functions for shading regions where a logical\nmask is True.\n\nSee :meth:`matplotlib.collections.BrokenBarHCollection.span_where`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.collections as collections\n\n\nt = np.arange(0.0, 2, 0.01)\ns1 = np.sin(2*np.pi*t)\ns2 = 1.2*np.sin(4*np.pi*t)\n\n\nfig, ax = plt.subplots()\nax.set_title('using span_where')\nax.plot(t, s1, color='black')\nax.axhline(0, color='black', lw=2)\n\ncollection = collections.BrokenBarHCollection.span_where(\n t, ymin=0, ymax=1, where=s1 > 0, facecolor='green', alpha=0.5)\nax.add_collection(collection)\n\ncollection = collections.BrokenBarHCollection.span_where(\n t, ymin=-1, ymax=0, where=s1 < 0, facecolor='red', alpha=0.5)\nax.add_collection(collection)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.collections.BrokenBarHCollection\nmatplotlib.collections.BrokenBarHCollection.span_where\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.axhline" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9c28205a039506bb0e5515212b95838a/markevery_demo.ipynb b/_downloads/9c28205a039506bb0e5515212b95838a/markevery_demo.ipynb deleted file mode 120000 index a6da8dfbf3e..00000000000 --- a/_downloads/9c28205a039506bb0e5515212b95838a/markevery_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9c28205a039506bb0e5515212b95838a/markevery_demo.ipynb \ No newline at end of file diff --git a/_downloads/9c38c3d1069f226e4546d4fe1803c95e/tex_demo.ipynb b/_downloads/9c38c3d1069f226e4546d4fe1803c95e/tex_demo.ipynb deleted file mode 120000 index d8e830d7c81..00000000000 --- a/_downloads/9c38c3d1069f226e4546d4fe1803c95e/tex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9c38c3d1069f226e4546d4fe1803c95e/tex_demo.ipynb \ No newline at end of file diff --git a/_downloads/9c47acbc47c2ba4caf5e022a21f1844a/plotfile_demo.ipynb b/_downloads/9c47acbc47c2ba4caf5e022a21f1844a/plotfile_demo.ipynb deleted file mode 100644 index ae02569f133..00000000000 --- a/_downloads/9c47acbc47c2ba4caf5e022a21f1844a/plotfile_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plotfile Demo\n\n\nExample use of ``plotfile`` to plot data directly from a file.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\n\nfname = cbook.get_sample_data('msft.csv', asfileobj=False)\nfname2 = cbook.get_sample_data('data_x_x2_x3.csv', asfileobj=False)\n\n# test 1; use ints\nplt.plotfile(fname, (0, 5, 6))\n\n# test 2; use names\nplt.plotfile(fname, ('date', 'volume', 'adj_close'))\n\n# test 3; use semilogy for volume\nplt.plotfile(fname, ('date', 'volume', 'adj_close'),\n plotfuncs={'volume': 'semilogy'})\n\n# test 4; use semilogy for volume\nplt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'semilogy'})\n\n# test 5; single subplot\nplt.plotfile(fname, ('date', 'open', 'high', 'low', 'close'), subplots=False)\n\n# test 6; labeling, if no names in csv-file\nplt.plotfile(fname2, cols=(0, 1, 2), delimiter=' ',\n names=['$x$', '$f(x)=x^2$', '$f(x)=x^3$'])\n\n# test 7; more than one file per figure--illustrated here with a single file\nplt.plotfile(fname2, cols=(0, 1), delimiter=' ')\nplt.plotfile(fname2, cols=(0, 2), newfig=False,\n delimiter=' ') # use current figure\nplt.xlabel(r'$x$')\nplt.ylabel(r'$f(x) = x^2, x^3$')\n\n# test 8; use bar for volume\nplt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'bar'})\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9c47d872942711ff6f2d83120a1ed2b5/bayes_update.py b/_downloads/9c47d872942711ff6f2d83120a1ed2b5/bayes_update.py deleted file mode 120000 index 6f90b127834..00000000000 --- a/_downloads/9c47d872942711ff6f2d83120a1ed2b5/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9c47d872942711ff6f2d83120a1ed2b5/bayes_update.py \ No newline at end of file diff --git a/_downloads/9c566b4c2afa8eba43320e0b976c06d5/gridspec_and_subplots.ipynb b/_downloads/9c566b4c2afa8eba43320e0b976c06d5/gridspec_and_subplots.ipynb deleted file mode 120000 index 5af4f068e50..00000000000 --- a/_downloads/9c566b4c2afa8eba43320e0b976c06d5/gridspec_and_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9c566b4c2afa8eba43320e0b976c06d5/gridspec_and_subplots.ipynb \ No newline at end of file diff --git a/_downloads/9c5f5b75a1364025604ffb07f11a7118/fonts_demo_kw.py b/_downloads/9c5f5b75a1364025604ffb07f11a7118/fonts_demo_kw.py deleted file mode 120000 index bdab8304fa3..00000000000 --- a/_downloads/9c5f5b75a1364025604ffb07f11a7118/fonts_demo_kw.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9c5f5b75a1364025604ffb07f11a7118/fonts_demo_kw.py \ No newline at end of file diff --git a/_downloads/9c692c9dd15c5b0626bda04784dac20c/simple_axis_direction01.py b/_downloads/9c692c9dd15c5b0626bda04784dac20c/simple_axis_direction01.py deleted file mode 120000 index ad02c578556..00000000000 --- a/_downloads/9c692c9dd15c5b0626bda04784dac20c/simple_axis_direction01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9c692c9dd15c5b0626bda04784dac20c/simple_axis_direction01.py \ No newline at end of file diff --git a/_downloads/9c786f31bd2914ddbf409193d50a6767/poly_editor.ipynb b/_downloads/9c786f31bd2914ddbf409193d50a6767/poly_editor.ipynb deleted file mode 120000 index 17559a94973..00000000000 --- a/_downloads/9c786f31bd2914ddbf409193d50a6767/poly_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9c786f31bd2914ddbf409193d50a6767/poly_editor.ipynb \ No newline at end of file diff --git a/_downloads/9c7932dafef2e2ebbb9d76f44ffa2ce8/fill_betweenx_demo.ipynb b/_downloads/9c7932dafef2e2ebbb9d76f44ffa2ce8/fill_betweenx_demo.ipynb deleted file mode 120000 index 5f41c4b9c51..00000000000 --- a/_downloads/9c7932dafef2e2ebbb9d76f44ffa2ce8/fill_betweenx_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9c7932dafef2e2ebbb9d76f44ffa2ce8/fill_betweenx_demo.ipynb \ No newline at end of file diff --git a/_downloads/9c7abfdf1ac04654be6bb90b12a0a8d4/text3d.py b/_downloads/9c7abfdf1ac04654be6bb90b12a0a8d4/text3d.py deleted file mode 120000 index 4471bf5a10e..00000000000 --- a/_downloads/9c7abfdf1ac04654be6bb90b12a0a8d4/text3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9c7abfdf1ac04654be6bb90b12a0a8d4/text3d.py \ No newline at end of file diff --git a/_downloads/9c80df539f3a4fbd13ed3e26f1d4bc81/layer_images.ipynb b/_downloads/9c80df539f3a4fbd13ed3e26f1d4bc81/layer_images.ipynb deleted file mode 100644 index 075489f8d9f..00000000000 --- a/_downloads/9c80df539f3a4fbd13ed3e26f1d4bc81/layer_images.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Layer Images\n\n\nLayer images above one another using alpha blending\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef func3(x, y):\n return (1 - x / 2 + x**5 + y**3) * np.exp(-(x**2 + y**2))\n\n\n# make these smaller to increase the resolution\ndx, dy = 0.05, 0.05\n\nx = np.arange(-3.0, 3.0, dx)\ny = np.arange(-3.0, 3.0, dy)\nX, Y = np.meshgrid(x, y)\n\n# when layering multiple images, the images need to have the same\n# extent. This does not mean they need to have the same shape, but\n# they both need to render to the same coordinate system determined by\n# xmin, xmax, ymin, ymax. Note if you use different interpolations\n# for the images their apparent extent could be different due to\n# interpolation edge effects\n\nextent = np.min(x), np.max(x), np.min(y), np.max(y)\nfig = plt.figure(frameon=False)\n\nZ1 = np.add.outer(range(8), range(8)) % 2 # chessboard\nim1 = plt.imshow(Z1, cmap=plt.cm.gray, interpolation='nearest',\n extent=extent)\n\nZ2 = func3(X, Y)\n\nim2 = plt.imshow(Z2, cmap=plt.cm.viridis, alpha=.9, interpolation='bilinear',\n extent=extent)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9c8c2d65864aea7819fe105e149ec332/hexbin_demo.ipynb b/_downloads/9c8c2d65864aea7819fe105e149ec332/hexbin_demo.ipynb deleted file mode 120000 index 4e286f126e8..00000000000 --- a/_downloads/9c8c2d65864aea7819fe105e149ec332/hexbin_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9c8c2d65864aea7819fe105e149ec332/hexbin_demo.ipynb \ No newline at end of file diff --git a/_downloads/9c926d9640eb300a4371051b738c91f9/date_demo_convert.ipynb b/_downloads/9c926d9640eb300a4371051b738c91f9/date_demo_convert.ipynb deleted file mode 120000 index 0b0287b655b..00000000000 --- a/_downloads/9c926d9640eb300a4371051b738c91f9/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9c926d9640eb300a4371051b738c91f9/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/9c933ef30476f97b751852d03d3d5d4d/ganged_plots.ipynb b/_downloads/9c933ef30476f97b751852d03d3d5d4d/ganged_plots.ipynb deleted file mode 120000 index 678fd54dcec..00000000000 --- a/_downloads/9c933ef30476f97b751852d03d3d5d4d/ganged_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9c933ef30476f97b751852d03d3d5d4d/ganged_plots.ipynb \ No newline at end of file diff --git a/_downloads/9c943d499d680b5677bc05688a1f2c01/simple_rgb.py b/_downloads/9c943d499d680b5677bc05688a1f2c01/simple_rgb.py deleted file mode 120000 index 687a95c1027..00000000000 --- a/_downloads/9c943d499d680b5677bc05688a1f2c01/simple_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9c943d499d680b5677bc05688a1f2c01/simple_rgb.py \ No newline at end of file diff --git a/_downloads/9c9637d4fbbd72e40b5ef87c60f991f9/scatter_hist.py b/_downloads/9c9637d4fbbd72e40b5ef87c60f991f9/scatter_hist.py deleted file mode 100644 index 80bb8b3b304..00000000000 --- a/_downloads/9c9637d4fbbd72e40b5ef87c60f991f9/scatter_hist.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============================ -Scatter plot with histograms -============================ - -Create a scatter plot with histograms to its sides. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# the random data -x = np.random.randn(1000) -y = np.random.randn(1000) - -# definitions for the axes -left, width = 0.1, 0.65 -bottom, height = 0.1, 0.65 -spacing = 0.005 - - -rect_scatter = [left, bottom, width, height] -rect_histx = [left, bottom + height + spacing, width, 0.2] -rect_histy = [left + width + spacing, bottom, 0.2, height] - -# start with a rectangular Figure -plt.figure(figsize=(8, 8)) - -ax_scatter = plt.axes(rect_scatter) -ax_scatter.tick_params(direction='in', top=True, right=True) -ax_histx = plt.axes(rect_histx) -ax_histx.tick_params(direction='in', labelbottom=False) -ax_histy = plt.axes(rect_histy) -ax_histy.tick_params(direction='in', labelleft=False) - -# the scatter plot: -ax_scatter.scatter(x, y) - -# now determine nice limits by hand: -binwidth = 0.25 -lim = np.ceil(np.abs([x, y]).max() / binwidth) * binwidth -ax_scatter.set_xlim((-lim, lim)) -ax_scatter.set_ylim((-lim, lim)) - -bins = np.arange(-lim, lim + binwidth, binwidth) -ax_histx.hist(x, bins=bins) -ax_histy.hist(y, bins=bins, orientation='horizontal') - -ax_histx.set_xlim(ax_scatter.get_xlim()) -ax_histy.set_ylim(ax_scatter.get_ylim()) - -plt.show() diff --git a/_downloads/9c98682c8694c998746c0dde3a59a97c/create_subplots.ipynb b/_downloads/9c98682c8694c998746c0dde3a59a97c/create_subplots.ipynb deleted file mode 120000 index c3924e0e3bb..00000000000 --- a/_downloads/9c98682c8694c998746c0dde3a59a97c/create_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9c98682c8694c998746c0dde3a59a97c/create_subplots.ipynb \ No newline at end of file diff --git a/_downloads/9ca5b4dc489ae4713bf4b8c4229f9e27/bar_unit_demo.ipynb b/_downloads/9ca5b4dc489ae4713bf4b8c4229f9e27/bar_unit_demo.ipynb deleted file mode 120000 index b303fa7e7a4..00000000000 --- a/_downloads/9ca5b4dc489ae4713bf4b8c4229f9e27/bar_unit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9ca5b4dc489ae4713bf4b8c4229f9e27/bar_unit_demo.ipynb \ No newline at end of file diff --git a/_downloads/9ca9bfbb10e27456f491446038f620a6/cohere.ipynb b/_downloads/9ca9bfbb10e27456f491446038f620a6/cohere.ipynb deleted file mode 120000 index ab544419cfa..00000000000 --- a/_downloads/9ca9bfbb10e27456f491446038f620a6/cohere.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9ca9bfbb10e27456f491446038f620a6/cohere.ipynb \ No newline at end of file diff --git a/_downloads/9caa10aaac6a22c46b6d1ac3ade654e5/demo_parasite_axes2.py b/_downloads/9caa10aaac6a22c46b6d1ac3ade654e5/demo_parasite_axes2.py deleted file mode 100644 index 77bb674c272..00000000000 --- a/_downloads/9caa10aaac6a22c46b6d1ac3ade654e5/demo_parasite_axes2.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -=================== -Demo Parasite Axes2 -=================== - -Parasite axis demo - -The following code is an example of a parasite axis. It aims to show how -to plot multiple different values onto one single plot. Notice how in this -example, par1 and par2 are both calling twinx meaning both are tied directly to -the x-axis. From there, each of those two axis can behave separately from the -each other, meaning they can take on separate values from themselves as well as -the x-axis. - -Note that this approach uses the `mpl_toolkits.axes_grid1.parasite_axes`\' -`~mpl_toolkits.axes_grid1.parasite_axes.host_subplot` and -`mpl_toolkits.axisartist.axislines.Axes`. An alternative approach using the -`~mpl_toolkits.axes_grid1.parasite_axes`\'s -`~.mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and -`~.mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes` is the -:doc:`/gallery/axisartist/demo_parasite_axes` example. -An alternative approach using the usual matplotlib subplots is shown in -the :doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example. -""" -from mpl_toolkits.axes_grid1 import host_subplot -import mpl_toolkits.axisartist as AA -import matplotlib.pyplot as plt - -host = host_subplot(111, axes_class=AA.Axes) -plt.subplots_adjust(right=0.75) - -par1 = host.twinx() -par2 = host.twinx() - -offset = 60 -new_fixed_axis = par2.get_grid_helper().new_fixed_axis -par2.axis["right"] = new_fixed_axis(loc="right", - axes=par2, - offset=(offset, 0)) - -par1.axis["right"].toggle(all=True) -par2.axis["right"].toggle(all=True) - -host.set_xlim(0, 2) -host.set_ylim(0, 2) - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par1.set_ylabel("Temperature") -par2.set_ylabel("Velocity") - -p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density") -p2, = par1.plot([0, 1, 2], [0, 3, 2], label="Temperature") -p3, = par2.plot([0, 1, 2], [50, 30, 15], label="Velocity") - -par1.set_ylim(0, 4) -par2.set_ylim(1, 65) - -host.legend() - -host.axis["left"].label.set_color(p1.get_color()) -par1.axis["right"].label.set_color(p2.get_color()) -par2.axis["right"].label.set_color(p3.get_color()) - -plt.show() diff --git a/_downloads/9caae1d556a0709760c0bf8af01ed3c0/surface3d_2.ipynb b/_downloads/9caae1d556a0709760c0bf8af01ed3c0/surface3d_2.ipynb deleted file mode 120000 index 255f80e91e9..00000000000 --- a/_downloads/9caae1d556a0709760c0bf8af01ed3c0/surface3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9caae1d556a0709760c0bf8af01ed3c0/surface3d_2.ipynb \ No newline at end of file diff --git a/_downloads/9cac384ea37c5eb3367a9eee9b81aa22/specgram_demo.py b/_downloads/9cac384ea37c5eb3367a9eee9b81aa22/specgram_demo.py deleted file mode 120000 index 2b610468260..00000000000 --- a/_downloads/9cac384ea37c5eb3367a9eee9b81aa22/specgram_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9cac384ea37c5eb3367a9eee9b81aa22/specgram_demo.py \ No newline at end of file diff --git a/_downloads/9cad32d240b26f1061da869dff318859/pcolor_demo.ipynb b/_downloads/9cad32d240b26f1061da869dff318859/pcolor_demo.ipynb deleted file mode 120000 index 07b376d2b5b..00000000000 --- a/_downloads/9cad32d240b26f1061da869dff318859/pcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9cad32d240b26f1061da869dff318859/pcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/9cbc42a7b152c030607438913f1e632e/fivethirtyeight.ipynb b/_downloads/9cbc42a7b152c030607438913f1e632e/fivethirtyeight.ipynb deleted file mode 100644 index 7ba34f9147a..00000000000 --- a/_downloads/9cbc42a7b152c030607438913f1e632e/fivethirtyeight.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# FiveThirtyEight style sheet\n\n\nThis shows an example of the \"fivethirtyeight\" styling, which\ntries to replicate the styles from FiveThirtyEight.com.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nplt.style.use('fivethirtyeight')\n\nx = np.linspace(0, 10)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\n\nax.plot(x, np.sin(x) + x + np.random.randn(50))\nax.plot(x, np.sin(x) + 0.5 * x + np.random.randn(50))\nax.plot(x, np.sin(x) + 2 * x + np.random.randn(50))\nax.plot(x, np.sin(x) - 0.5 * x + np.random.randn(50))\nax.plot(x, np.sin(x) - 2 * x + np.random.randn(50))\nax.plot(x, np.sin(x) + np.random.randn(50))\nax.set_title(\"'fivethirtyeight' style sheet\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9cc082e8bd516a9446c797f7dab3bf99/custom_ticker1.ipynb b/_downloads/9cc082e8bd516a9446c797f7dab3bf99/custom_ticker1.ipynb deleted file mode 120000 index f825c03783a..00000000000 --- a/_downloads/9cc082e8bd516a9446c797f7dab3bf99/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9cc082e8bd516a9446c797f7dab3bf99/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/9cc0d8349b0cb855167e982d3d95c593/barb_demo.py b/_downloads/9cc0d8349b0cb855167e982d3d95c593/barb_demo.py deleted file mode 100644 index b485ba26962..00000000000 --- a/_downloads/9cc0d8349b0cb855167e982d3d95c593/barb_demo.py +++ /dev/null @@ -1,69 +0,0 @@ -''' -========= -Barb Demo -========= - -Demonstration of wind barb plots -''' -import matplotlib.pyplot as plt -import numpy as np - -x = np.linspace(-5, 5, 5) -X, Y = np.meshgrid(x, x) -U, V = 12 * X, 12 * Y - -data = [(-1.5, .5, -6, -6), - (1, -1, -46, 46), - (-3, -1, 11, -11), - (1, 1.5, 80, 80), - (0.5, 0.25, 25, 15), - (-1.5, -0.5, -5, 40)] - -data = np.array(data, dtype=[('x', np.float32), ('y', np.float32), - ('u', np.float32), ('v', np.float32)]) - -fig1, axs1 = plt.subplots(nrows=2, ncols=2) -# Default parameters, uniform grid -axs1[0, 0].barbs(X, Y, U, V) - -# Arbitrary set of vectors, make them longer and change the pivot point -# (point around which they're rotated) to be the middle -axs1[0, 1].barbs( - data['x'], data['y'], data['u'], data['v'], length=8, pivot='middle') - -# Showing colormapping with uniform grid. Fill the circle for an empty barb, -# don't round the values, and change some of the size parameters -axs1[1, 0].barbs( - X, Y, U, V, np.sqrt(U ** 2 + V ** 2), fill_empty=True, rounding=False, - sizes=dict(emptybarb=0.25, spacing=0.2, height=0.3)) - -# Change colors as well as the increments for parts of the barbs -axs1[1, 1].barbs(data['x'], data['y'], data['u'], data['v'], flagcolor='r', - barbcolor=['b', 'g'], flip_barb=True, - barb_increments=dict(half=10, full=20, flag=100)) - -# Masked arrays are also supported -masked_u = np.ma.masked_array(data['u']) -masked_u[4] = 1000 # Bad value that should not be plotted when masked -masked_u[4] = np.ma.masked - -# Identical plot to panel 2 in the first figure, but with the point at -# (0.5, 0.25) missing (masked) -fig2, ax2 = plt.subplots() -ax2.barbs(data['x'], data['y'], masked_u, data['v'], length=8, pivot='middle') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.barbs -matplotlib.pyplot.barbs diff --git a/_downloads/9cc3dc820c0d8e2b3b770185f77eee1c/contour_label_demo.py b/_downloads/9cc3dc820c0d8e2b3b770185f77eee1c/contour_label_demo.py deleted file mode 120000 index f6e3e7b8349..00000000000 --- a/_downloads/9cc3dc820c0d8e2b3b770185f77eee1c/contour_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9cc3dc820c0d8e2b3b770185f77eee1c/contour_label_demo.py \ No newline at end of file diff --git a/_downloads/9cd27c130148706cfd532cc28ab333e3/units_scatter.py b/_downloads/9cd27c130148706cfd532cc28ab333e3/units_scatter.py deleted file mode 120000 index 6e128ef1b03..00000000000 --- a/_downloads/9cd27c130148706cfd532cc28ab333e3/units_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9cd27c130148706cfd532cc28ab333e3/units_scatter.py \ No newline at end of file diff --git a/_downloads/9cda9bb52fcf8e6c323cc251d06321d3/dolphin.ipynb b/_downloads/9cda9bb52fcf8e6c323cc251d06321d3/dolphin.ipynb deleted file mode 120000 index 176cf3473a9..00000000000 --- a/_downloads/9cda9bb52fcf8e6c323cc251d06321d3/dolphin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9cda9bb52fcf8e6c323cc251d06321d3/dolphin.ipynb \ No newline at end of file diff --git a/_downloads/9cdc74c853be87d3198be41b9a2cb4a5/bar_stacked.ipynb b/_downloads/9cdc74c853be87d3198be41b9a2cb4a5/bar_stacked.ipynb deleted file mode 120000 index ca8c7d2c15e..00000000000 --- a/_downloads/9cdc74c853be87d3198be41b9a2cb4a5/bar_stacked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9cdc74c853be87d3198be41b9a2cb4a5/bar_stacked.ipynb \ No newline at end of file diff --git a/_downloads/9cf6028e0be303c982a9eba8fb9ba9fc/matshow.ipynb b/_downloads/9cf6028e0be303c982a9eba8fb9ba9fc/matshow.ipynb deleted file mode 120000 index 61181251be2..00000000000 --- a/_downloads/9cf6028e0be303c982a9eba8fb9ba9fc/matshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9cf6028e0be303c982a9eba8fb9ba9fc/matshow.ipynb \ No newline at end of file diff --git a/_downloads/9cf6066b36e31b8cf31bd9fd081d1dba/usetex_demo.py b/_downloads/9cf6066b36e31b8cf31bd9fd081d1dba/usetex_demo.py deleted file mode 120000 index 0f06e4d63b0..00000000000 --- a/_downloads/9cf6066b36e31b8cf31bd9fd081d1dba/usetex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/9cf6066b36e31b8cf31bd9fd081d1dba/usetex_demo.py \ No newline at end of file diff --git a/_downloads/9cfa2e14d35ca4059090a932410c58ad/csd_demo.ipynb b/_downloads/9cfa2e14d35ca4059090a932410c58ad/csd_demo.ipynb deleted file mode 120000 index 339e7b44011..00000000000 --- a/_downloads/9cfa2e14d35ca4059090a932410c58ad/csd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9cfa2e14d35ca4059090a932410c58ad/csd_demo.ipynb \ No newline at end of file diff --git a/_downloads/9cfbfa8c16a0c92dbe8eea6dd0998fa5/contourf_log.py b/_downloads/9cfbfa8c16a0c92dbe8eea6dd0998fa5/contourf_log.py deleted file mode 100644 index f728946dae6..00000000000 --- a/_downloads/9cfbfa8c16a0c92dbe8eea6dd0998fa5/contourf_log.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -============================ -Contourf and log color scale -============================ - -Demonstrate use of a log color scale in contourf -""" - -import matplotlib.pyplot as plt -import numpy as np -from numpy import ma -from matplotlib import ticker, cm - -N = 100 -x = np.linspace(-3.0, 3.0, N) -y = np.linspace(-2.0, 2.0, N) - -X, Y = np.meshgrid(x, y) - -# A low hump with a spike coming out. -# Needs to have z/colour axis on a log scale so we see both hump and spike. -# linear scale only shows the spike. -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -z = Z1 + 50 * Z2 - -# Put in some negative values (lower left corner) to cause trouble with logs: -z[:5, :5] = -1 - -# The following is not strictly essential, but it will eliminate -# a warning. Comment it out to see the warning. -z = ma.masked_where(z <= 0, z) - - -# Automatic selection of levels works; setting the -# log locator tells contourf to use a log scale: -fig, ax = plt.subplots() -cs = ax.contourf(X, Y, z, locator=ticker.LogLocator(), cmap=cm.PuBu_r) - -# Alternatively, you can manually set the levels -# and the norm: -# lev_exp = np.arange(np.floor(np.log10(z.min())-1), -# np.ceil(np.log10(z.max())+1)) -# levs = np.power(10, lev_exp) -# cs = ax.contourf(X, Y, z, levs, norm=colors.LogNorm()) - -cbar = fig.colorbar(cs) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.ticker.LogLocator diff --git a/_downloads/9d03c037c9a2b3a35e6c6914b5b46399/whats_new_99_spines.py b/_downloads/9d03c037c9a2b3a35e6c6914b5b46399/whats_new_99_spines.py deleted file mode 120000 index 74f764a3ed2..00000000000 --- a/_downloads/9d03c037c9a2b3a35e6c6914b5b46399/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9d03c037c9a2b3a35e6c6914b5b46399/whats_new_99_spines.py \ No newline at end of file diff --git a/_downloads/9d244dcc497facded18bcafc88cb6c75/customizing.py b/_downloads/9d244dcc497facded18bcafc88cb6c75/customizing.py deleted file mode 100644 index 18cff878f0a..00000000000 --- a/_downloads/9d244dcc497facded18bcafc88cb6c75/customizing.py +++ /dev/null @@ -1,185 +0,0 @@ -""" -Customizing Matplotlib with style sheets and rcParams -===================================================== - -Tips for customizing the properties and default styles of Matplotlib. - -Using style sheets ------------------- - -The ``style`` package adds support for easy-to-switch plotting "styles" with -the same parameters as a -:ref:`matplotlib rc ` file (which is read -at startup to configure matplotlib). - -There are a number of pre-defined styles `provided by Matplotlib`_. For -example, there's a pre-defined style called "ggplot", which emulates the -aesthetics of ggplot_ (a popular plotting package for R_). To use this style, -just add: -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl -plt.style.use('ggplot') -data = np.random.randn(50) - -############################################################################### -# To list all available styles, use: - -print(plt.style.available) - -############################################################################### -# Defining your own style -# ----------------------- -# -# You can create custom styles and use them by calling ``style.use`` with the -# path or URL to the style sheet. Additionally, if you add your -# ``.mplstyle`` file to ``mpl_configdir/stylelib``, you can reuse -# your custom style sheet with a call to ``style.use()``. By default -# ``mpl_configdir`` should be ``~/.config/matplotlib``, but you can check where -# yours is with ``matplotlib.get_configdir()``; you may need to create this -# directory. You also can change the directory where matplotlib looks for -# the stylelib/ folder by setting the MPLCONFIGDIR environment variable, -# see :ref:`locating-matplotlib-config-dir`. -# -# Note that a custom style sheet in ``mpl_configdir/stylelib`` will -# override a style sheet defined by matplotlib if the styles have the same name. -# -# For example, you might want to create -# ``mpl_configdir/stylelib/presentation.mplstyle`` with the following:: -# -# axes.titlesize : 24 -# axes.labelsize : 20 -# lines.linewidth : 3 -# lines.markersize : 10 -# xtick.labelsize : 16 -# ytick.labelsize : 16 -# -# Then, when you want to adapt a plot designed for a paper to one that looks -# good in a presentation, you can just add:: -# -# >>> import matplotlib.pyplot as plt -# >>> plt.style.use('presentation') -# -# -# Composing styles -# ---------------- -# -# Style sheets are designed to be composed together. So you can have a style -# sheet that customizes colors and a separate style sheet that alters element -# sizes for presentations. These styles can easily be combined by passing -# a list of styles:: -# -# >>> import matplotlib.pyplot as plt -# >>> plt.style.use(['dark_background', 'presentation']) -# -# Note that styles further to the right will overwrite values that are already -# defined by styles on the left. -# -# -# Temporary styling -# ----------------- -# -# If you only want to use a style for a specific block of code but don't want -# to change the global styling, the style package provides a context manager -# for limiting your changes to a specific scope. To isolate your styling -# changes, you can write something like the following: - -with plt.style.context('dark_background'): - plt.plot(np.sin(np.linspace(0, 2 * np.pi)), 'r-o') -plt.show() - -############################################################################### -# .. _matplotlib-rcparams: -# -# matplotlib rcParams -# =================== -# -# .. _customizing-with-dynamic-rc-settings: -# -# Dynamic rc settings -# ------------------- -# -# You can also dynamically change the default rc settings in a python script or -# interactively from the python shell. All of the rc settings are stored in a -# dictionary-like variable called :data:`matplotlib.rcParams`, which is global to -# the matplotlib package. rcParams can be modified directly, for example: - -mpl.rcParams['lines.linewidth'] = 2 -mpl.rcParams['lines.color'] = 'r' -plt.plot(data) - -############################################################################### -# Matplotlib also provides a couple of convenience functions for modifying rc -# settings. The :func:`matplotlib.rc` command can be used to modify multiple -# settings in a single group at once, using keyword arguments: - -mpl.rc('lines', linewidth=4, color='g') -plt.plot(data) - -############################################################################### -# The :func:`matplotlib.rcdefaults` command will restore the standard matplotlib -# default settings. -# -# There is some degree of validation when setting the values of rcParams, see -# :mod:`matplotlib.rcsetup` for details. -# -# .. _customizing-with-matplotlibrc-files: -# -# The :file:`matplotlibrc` file -# ----------------------------- -# -# matplotlib uses :file:`matplotlibrc` configuration files to customize all kinds -# of properties, which we call `rc settings` or `rc parameters`. You can control -# the defaults of almost every property in matplotlib: figure size and dpi, line -# width, color and style, axes, axis and grid properties, text and font -# properties and so on. matplotlib looks for :file:`matplotlibrc` in four -# locations, in the following order: -# -# 1. :file:`matplotlibrc` in the current working directory, usually used for -# specific customizations that you do not want to apply elsewhere. -# -# 2. :file:`$MATPLOTLIBRC` if it is a file, else :file:`$MATPLOTLIBRC/matplotlibrc`. -# -# 3. It next looks in a user-specific place, depending on your platform: -# -# - On Linux and FreeBSD, it looks in :file:`.config/matplotlib/matplotlibrc` -# (or `$XDG_CONFIG_HOME/matplotlib/matplotlibrc`) if you've customized -# your environment. -# -# - On other platforms, it looks in :file:`.matplotlib/matplotlibrc`. -# -# See :ref:`locating-matplotlib-config-dir`. -# -# 4. :file:`{INSTALL}/matplotlib/mpl-data/matplotlibrc`, where -# :file:`{INSTALL}` is something like -# :file:`/usr/lib/python3.7/site-packages` on Linux, and maybe -# :file:`C:\\Python37\\Lib\\site-packages` on Windows. Every time you -# install matplotlib, this file will be overwritten, so if you want -# your customizations to be saved, please move this file to your -# user-specific matplotlib directory. -# -# Once a :file:`matplotlibrc` file has been found, it will *not* search any of -# the other paths. -# -# To display where the currently active :file:`matplotlibrc` file was -# loaded from, one can do the following:: -# -# >>> import matplotlib -# >>> matplotlib.matplotlib_fname() -# '/home/foo/.config/matplotlib/matplotlibrc' -# -# See below for a sample :ref:`matplotlibrc file`. -# -# .. _matplotlibrc-sample: -# -# A sample matplotlibrc file -# ~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# .. literalinclude:: ../../../matplotlibrc.template -# -# -# .. _ggplot: https://ggplot2.tidyverse.org/ -# .. _R: https://www.r-project.org/ -# .. _provided by Matplotlib: https://github.com/matplotlib/matplotlib/tree/master/lib/matplotlib/mpl-data/stylelib diff --git a/_downloads/9d25e6e57389fbff250b51f32d7bf0dd/multicursor.ipynb b/_downloads/9d25e6e57389fbff250b51f32d7bf0dd/multicursor.ipynb deleted file mode 120000 index 2c96d475ae6..00000000000 --- a/_downloads/9d25e6e57389fbff250b51f32d7bf0dd/multicursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9d25e6e57389fbff250b51f32d7bf0dd/multicursor.ipynb \ No newline at end of file diff --git a/_downloads/9d2dd806bbe9333da747fbf48f15ced9/style_sheets_reference.py b/_downloads/9d2dd806bbe9333da747fbf48f15ced9/style_sheets_reference.py deleted file mode 120000 index d77dc9d9b15..00000000000 --- a/_downloads/9d2dd806bbe9333da747fbf48f15ced9/style_sheets_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9d2dd806bbe9333da747fbf48f15ced9/style_sheets_reference.py \ No newline at end of file diff --git a/_downloads/9d2e27be5ffb490ce8767c923be9d8d6/plot_solarizedlight2.ipynb b/_downloads/9d2e27be5ffb490ce8767c923be9d8d6/plot_solarizedlight2.ipynb deleted file mode 120000 index 1f27def2084..00000000000 --- a/_downloads/9d2e27be5ffb490ce8767c923be9d8d6/plot_solarizedlight2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9d2e27be5ffb490ce8767c923be9d8d6/plot_solarizedlight2.ipynb \ No newline at end of file diff --git a/_downloads/9d4516c3563883120b2f4174904e2a6d/axis_direction_demo_step04.py b/_downloads/9d4516c3563883120b2f4174904e2a6d/axis_direction_demo_step04.py deleted file mode 120000 index 6f19738f137..00000000000 --- a/_downloads/9d4516c3563883120b2f4174904e2a6d/axis_direction_demo_step04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9d4516c3563883120b2f4174904e2a6d/axis_direction_demo_step04.py \ No newline at end of file diff --git a/_downloads/9d564613b5b847dcca38d607bfae08fa/close_event.ipynb b/_downloads/9d564613b5b847dcca38d607bfae08fa/close_event.ipynb deleted file mode 120000 index 12dc10e8bc3..00000000000 --- a/_downloads/9d564613b5b847dcca38d607bfae08fa/close_event.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9d564613b5b847dcca38d607bfae08fa/close_event.ipynb \ No newline at end of file diff --git a/_downloads/9d58fe6457dd00aae0fb01dacbcd08bd/image_transparency_blend.ipynb b/_downloads/9d58fe6457dd00aae0fb01dacbcd08bd/image_transparency_blend.ipynb deleted file mode 100644 index 92f112b4ddf..00000000000 --- a/_downloads/9d58fe6457dd00aae0fb01dacbcd08bd/image_transparency_blend.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Blend transparency with color in 2-D images\n\n\nBlend transparency with color to highlight parts of data with imshow.\n\nA common use for :func:`matplotlib.pyplot.imshow` is to plot a 2-D statistical\nmap. While ``imshow`` makes it easy to visualize a 2-D matrix as an image,\nit doesn't easily let you add transparency to the output. For example, one can\nplot a statistic (such as a t-statistic) and color the transparency of\neach pixel according to its p-value. This example demonstrates how you can\nachieve this effect using :class:`matplotlib.colors.Normalize`. Note that it is\nnot possible to directly pass alpha values to :func:`matplotlib.pyplot.imshow`.\n\nFirst we will generate some data, in this case, we'll create two 2-D \"blobs\"\nin a 2-D grid. One blob will be positive, and the other negative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 3\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import Normalize\n\n\ndef normal_pdf(x, mean, var):\n return np.exp(-(x - mean)**2 / (2*var))\n\n\n# Generate the space in which the blobs will live\nxmin, xmax, ymin, ymax = (0, 100, 0, 100)\nn_bins = 100\nxx = np.linspace(xmin, xmax, n_bins)\nyy = np.linspace(ymin, ymax, n_bins)\n\n# Generate the blobs. The range of the values is roughly -.0002 to .0002\nmeans_high = [20, 50]\nmeans_low = [50, 60]\nvar = [150, 200]\n\ngauss_x_high = normal_pdf(xx, means_high[0], var[0])\ngauss_y_high = normal_pdf(yy, means_high[1], var[0])\n\ngauss_x_low = normal_pdf(xx, means_low[0], var[1])\ngauss_y_low = normal_pdf(yy, means_low[1], var[1])\n\nweights_high = np.array(np.meshgrid(gauss_x_high, gauss_y_high)).prod(0)\nweights_low = -1 * np.array(np.meshgrid(gauss_x_low, gauss_y_low)).prod(0)\nweights = weights_high + weights_low\n\n# We'll also create a grey background into which the pixels will fade\ngreys = np.full((*weights.shape, 3), 70, dtype=np.uint8)\n\n# First we'll plot these blobs using only ``imshow``.\nvmax = np.abs(weights).max()\nvmin = -vmax\ncmap = plt.cm.RdYlBu\n\nfig, ax = plt.subplots()\nax.imshow(greys)\nax.imshow(weights, extent=(xmin, xmax, ymin, ymax), cmap=cmap)\nax.set_axis_off()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Blending in transparency\n========================\n\nThe simplest way to include transparency when plotting data with\n:func:`matplotlib.pyplot.imshow` is to convert the 2-D data array to a\n3-D image array of rgba values. This can be done with\n:class:`matplotlib.colors.Normalize`. For example, we'll create a gradient\nmoving from left to right below.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Create an alpha channel of linearly increasing values moving to the right.\nalphas = np.ones(weights.shape)\nalphas[:, 30:] = np.linspace(1, 0, 70)\n\n# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow\ncolors = Normalize(vmin, vmax, clip=True)(weights)\ncolors = cmap(colors)\n\n# Now set the alpha channel to the one we created above\ncolors[..., -1] = alphas\n\n# Create the figure and image\n# Note that the absolute values may be slightly different\nfig, ax = plt.subplots()\nax.imshow(greys)\nax.imshow(colors, extent=(xmin, xmax, ymin, ymax))\nax.set_axis_off()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using transparency to highlight values with high amplitude\n==========================================================\n\nFinally, we'll recreate the same plot, but this time we'll use transparency\nto highlight the extreme values in the data. This is often used to highlight\ndata points with smaller p-values. We'll also add in contour lines to\nhighlight the image values.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Create an alpha channel based on weight values\n# Any value whose absolute value is > .0001 will have zero transparency\nalphas = Normalize(0, .3, clip=True)(np.abs(weights))\nalphas = np.clip(alphas, .4, 1) # alpha value clipped at the bottom at .4\n\n# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow\ncolors = Normalize(vmin, vmax)(weights)\ncolors = cmap(colors)\n\n# Now set the alpha channel to the one we created above\ncolors[..., -1] = alphas\n\n# Create the figure and image\n# Note that the absolute values may be slightly different\nfig, ax = plt.subplots()\nax.imshow(greys)\nax.imshow(colors, extent=(xmin, xmax, ymin, ymax))\n\n# Add contour lines to further highlight different levels.\nax.contour(weights[::-1], levels=[-.1, .1], colors='k', linestyles='-')\nax.set_axis_off()\nplt.show()\n\nax.contour(weights[::-1], levels=[-.0001, .0001], colors='k', linestyles='-')\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.colors.Normalize\nmatplotlib.axes.Axes.set_axis_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9d5938d99a50833b622c0b89c2db882b/quiver_simple_demo.py b/_downloads/9d5938d99a50833b622c0b89c2db882b/quiver_simple_demo.py deleted file mode 120000 index 18746ca0b41..00000000000 --- a/_downloads/9d5938d99a50833b622c0b89c2db882b/quiver_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9d5938d99a50833b622c0b89c2db882b/quiver_simple_demo.py \ No newline at end of file diff --git a/_downloads/9d5e1cd61b65e3455103d1858a17de3b/artist_reference.ipynb b/_downloads/9d5e1cd61b65e3455103d1858a17de3b/artist_reference.ipynb deleted file mode 120000 index 58ca3be6ae3..00000000000 --- a/_downloads/9d5e1cd61b65e3455103d1858a17de3b/artist_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9d5e1cd61b65e3455103d1858a17de3b/artist_reference.ipynb \ No newline at end of file diff --git a/_downloads/9d5e6a785f66db62e7604e4daf385608/histogram_multihist.py b/_downloads/9d5e6a785f66db62e7604e4daf385608/histogram_multihist.py deleted file mode 100644 index 34e8cad32c0..00000000000 --- a/_downloads/9d5e6a785f66db62e7604e4daf385608/histogram_multihist.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -===================================================== -The histogram (hist) function with multiple data sets -===================================================== - -Plot histogram with multiple sample sets and demonstrate: - - * Use of legend with multiple sample sets - * Stacked bars - * Step curve with no fill - * Data sets of different sample sizes - -Selecting different bin counts and sizes can significantly affect the -shape of a histogram. The Astropy docs have a great section on how to -select these parameters: -http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -n_bins = 10 -x = np.random.randn(1000, 3) - -fig, axes = plt.subplots(nrows=2, ncols=2) -ax0, ax1, ax2, ax3 = axes.flatten() - -colors = ['red', 'tan', 'lime'] -ax0.hist(x, n_bins, density=True, histtype='bar', color=colors, label=colors) -ax0.legend(prop={'size': 10}) -ax0.set_title('bars with legend') - -ax1.hist(x, n_bins, density=True, histtype='bar', stacked=True) -ax1.set_title('stacked bar') - -ax2.hist(x, n_bins, histtype='step', stacked=True, fill=False) -ax2.set_title('stack step (unfilled)') - -# Make a multiple-histogram of data-sets with different length. -x_multi = [np.random.randn(n) for n in [10000, 5000, 2000]] -ax3.hist(x_multi, n_bins, histtype='bar') -ax3.set_title('different sample sizes') - -fig.tight_layout() -plt.show() diff --git a/_downloads/9d65170b4536016b70e985854e3bf0f2/scatter_custom_symbol.ipynb b/_downloads/9d65170b4536016b70e985854e3bf0f2/scatter_custom_symbol.ipynb deleted file mode 100644 index a5ab6bfaed4..00000000000 --- a/_downloads/9d65170b4536016b70e985854e3bf0f2/scatter_custom_symbol.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Custom Symbol\n\n\nCreating a custom ellipse symbol in scatter plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# unit area ellipse\nrx, ry = 3., 1.\narea = rx * ry * np.pi\ntheta = np.arange(0, 2 * np.pi + 0.01, 0.1)\nverts = np.column_stack([rx / area * np.cos(theta), ry / area * np.sin(theta)])\n\nx, y, s, c = np.random.rand(4, 30)\ns *= 10**2.\n\nfig, ax = plt.subplots()\nax.scatter(x, y, s, c, marker=verts)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9d733661286db9db95e18f4aedd5eab4/axes_demo.ipynb b/_downloads/9d733661286db9db95e18f4aedd5eab4/axes_demo.ipynb deleted file mode 100644 index 26f29b28808..00000000000 --- a/_downloads/9d733661286db9db95e18f4aedd5eab4/axes_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axes Demo\n\n\nExample use of ``fig.add_axes`` to create inset axes within the main plot axes.\n\nPlease see also the `axes_grid_examples` section, and the following three\nexamples:\n\n - :doc:`/gallery/subplots_axes_and_figures/zoom_inset_axes`\n - :doc:`/gallery/axes_grid1/inset_locator_demo`\n - :doc:`/gallery/axes_grid1/inset_locator_demo2`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# create some data to use for the plot\ndt = 0.001\nt = np.arange(0.0, 10.0, dt)\nr = np.exp(-t[:1000] / 0.05) # impulse response\nx = np.random.randn(len(t))\ns = np.convolve(x, r)[:len(x)] * dt # colored noise\n\nfig, main_ax = plt.subplots()\nmain_ax.plot(t, s)\nmain_ax.set_xlim(0, 1)\nmain_ax.set_ylim(1.1 * np.min(s), 2 * np.max(s))\nmain_ax.set_xlabel('time (s)')\nmain_ax.set_ylabel('current (nA)')\nmain_ax.set_title('Gaussian colored noise')\n\n# this is an inset axes over the main axes\nright_inset_ax = fig.add_axes([.65, .6, .2, .2], facecolor='k')\nright_inset_ax.hist(s, 400, density=True)\nright_inset_ax.set_title('Probability')\nright_inset_ax.set_xticks([])\nright_inset_ax.set_yticks([])\n\n# this is another inset axes over the main axes\nleft_inset_ax = fig.add_axes([.2, .6, .2, .2], facecolor='k')\nleft_inset_ax.plot(t[:len(r)], r)\nleft_inset_ax.set_title('Impulse response')\nleft_inset_ax.set_xlim(0, 0.2)\nleft_inset_ax.set_xticks([])\nleft_inset_ax.set_yticks([])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9d77c196f95efa5440b558569caec6b3/image_slices_viewer.ipynb b/_downloads/9d77c196f95efa5440b558569caec6b3/image_slices_viewer.ipynb deleted file mode 120000 index 9ef7859afd3..00000000000 --- a/_downloads/9d77c196f95efa5440b558569caec6b3/image_slices_viewer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9d77c196f95efa5440b558569caec6b3/image_slices_viewer.ipynb \ No newline at end of file diff --git a/_downloads/9d7f2412ff705756c2811a8958874842/confidence_ellipse.ipynb b/_downloads/9d7f2412ff705756c2811a8958874842/confidence_ellipse.ipynb deleted file mode 120000 index 8fc058f0057..00000000000 --- a/_downloads/9d7f2412ff705756c2811a8958874842/confidence_ellipse.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9d7f2412ff705756c2811a8958874842/confidence_ellipse.ipynb \ No newline at end of file diff --git a/_downloads/9d80904919866b17d7614d0c1773fef5/joinstyle.ipynb b/_downloads/9d80904919866b17d7614d0c1773fef5/joinstyle.ipynb deleted file mode 120000 index be6ada615dd..00000000000 --- a/_downloads/9d80904919866b17d7614d0c1773fef5/joinstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9d80904919866b17d7614d0c1773fef5/joinstyle.ipynb \ No newline at end of file diff --git a/_downloads/9d80f2455fa4f9256df1d632ac44dc4b/simple_anchored_artists.py b/_downloads/9d80f2455fa4f9256df1d632ac44dc4b/simple_anchored_artists.py deleted file mode 100644 index 9a8ae92335e..00000000000 --- a/_downloads/9d80f2455fa4f9256df1d632ac44dc4b/simple_anchored_artists.py +++ /dev/null @@ -1,84 +0,0 @@ -""" -======================= -Simple Anchored Artists -======================= - -This example illustrates the use of the anchored helper classes found in -:py:mod:`~matplotlib.offsetbox` and in the :ref:`toolkit_axesgrid1-index`. -An implementation of a similar figure, but without use of the toolkit, -can be found in :doc:`/gallery/misc/anchored_artists`. -""" - -import matplotlib.pyplot as plt - - -def draw_text(ax): - """ - Draw two text-boxes, anchored by different corners to the upper-left - corner of the figure. - """ - from matplotlib.offsetbox import AnchoredText - at = AnchoredText("Figure 1a", - loc='upper left', prop=dict(size=8), frameon=True, - ) - at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at) - - at2 = AnchoredText("Figure 1(b)", - loc='lower left', prop=dict(size=8), frameon=True, - bbox_to_anchor=(0., 1.), - bbox_transform=ax.transAxes - ) - at2.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at2) - - -def draw_circle(ax): - """ - Draw a circle in axis coordinates - """ - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea - from matplotlib.patches import Circle - ada = AnchoredDrawingArea(20, 20, 0, 0, - loc='upper right', pad=0., frameon=False) - p = Circle((10, 10), 10) - ada.da.add_artist(p) - ax.add_artist(ada) - - -def draw_ellipse(ax): - """ - Draw an ellipse of width=0.1, height=0.15 in data coordinates - """ - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredEllipse - ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0., - loc='lower left', pad=0.5, borderpad=0.4, - frameon=True) - - ax.add_artist(ae) - - -def draw_sizebar(ax): - """ - Draw a horizontal bar with length of 0.1 in data coordinates, - with a fixed label underneath. - """ - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar - asb = AnchoredSizeBar(ax.transData, - 0.1, - r"1$^{\prime}$", - loc='lower center', - pad=0.1, borderpad=0.5, sep=5, - frameon=False) - ax.add_artist(asb) - - -ax = plt.gca() -ax.set_aspect(1.) - -draw_text(ax) -draw_circle(ax) -draw_ellipse(ax) -draw_sizebar(ax) - -plt.show() diff --git a/_downloads/9d85b73b53f831146ff3343cfb38890e/ellipse_collection.ipynb b/_downloads/9d85b73b53f831146ff3343cfb38890e/ellipse_collection.ipynb deleted file mode 120000 index f8339c02783..00000000000 --- a/_downloads/9d85b73b53f831146ff3343cfb38890e/ellipse_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9d85b73b53f831146ff3343cfb38890e/ellipse_collection.ipynb \ No newline at end of file diff --git a/_downloads/9d8894d6769fb413514179203a72d47d/axes_zoom_effect.py b/_downloads/9d8894d6769fb413514179203a72d47d/axes_zoom_effect.py deleted file mode 120000 index 6e919fb4413..00000000000 --- a/_downloads/9d8894d6769fb413514179203a72d47d/axes_zoom_effect.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9d8894d6769fb413514179203a72d47d/axes_zoom_effect.py \ No newline at end of file diff --git a/_downloads/9d8991b74881feed808d85bd52439fe2/horizontal_barchart_distribution.ipynb b/_downloads/9d8991b74881feed808d85bd52439fe2/horizontal_barchart_distribution.ipynb deleted file mode 100644 index a68b484e65b..00000000000 --- a/_downloads/9d8991b74881feed808d85bd52439fe2/horizontal_barchart_distribution.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Discrete distribution as horizontal bar chart\n\n\nStacked bar charts can be used to visualize discrete distributions.\n\nThis example visualizes the result of a survey in which people could rate\ntheir agreement to questions on a five-element scale.\n\nThe horizontal stacking is achieved by calling `~.Axes.barh()` for each\ncategory and passing the starting point as the cumulative sum of the\nalready drawn bars via the parameter ``left``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ncategory_names = ['Strongly disagree', 'Disagree',\n 'Neither agree nor disagree', 'Agree', 'Strongly agree']\nresults = {\n 'Question 1': [10, 15, 17, 32, 26],\n 'Question 2': [26, 22, 29, 10, 13],\n 'Question 3': [35, 37, 7, 2, 19],\n 'Question 4': [32, 11, 9, 15, 33],\n 'Question 5': [21, 29, 5, 5, 40],\n 'Question 6': [8, 19, 5, 30, 38]\n}\n\n\ndef survey(results, category_names):\n \"\"\"\n Parameters\n ----------\n results : dict\n A mapping from question labels to a list of answers per category.\n It is assumed all lists contain the same number of entries and that\n it matches the length of *category_names*.\n category_names : list of str\n The category labels.\n \"\"\"\n labels = list(results.keys())\n data = np.array(list(results.values()))\n data_cum = data.cumsum(axis=1)\n category_colors = plt.get_cmap('RdYlGn')(\n np.linspace(0.15, 0.85, data.shape[1]))\n\n fig, ax = plt.subplots(figsize=(9.2, 5))\n ax.invert_yaxis()\n ax.xaxis.set_visible(False)\n ax.set_xlim(0, np.sum(data, axis=1).max())\n\n for i, (colname, color) in enumerate(zip(category_names, category_colors)):\n widths = data[:, i]\n starts = data_cum[:, i] - widths\n ax.barh(labels, widths, left=starts, height=0.5,\n label=colname, color=color)\n xcenters = starts + widths / 2\n\n r, g, b, _ = color\n text_color = 'white' if r * g * b < 0.5 else 'darkgrey'\n for y, (x, c) in enumerate(zip(xcenters, widths)):\n ax.text(x, y, str(int(c)), ha='center', va='center',\n color=text_color)\n ax.legend(ncol=len(category_names), bbox_to_anchor=(0, 1),\n loc='lower left', fontsize='small')\n\n return fig, ax\n\n\nsurvey(results, category_names)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.barh\nmatplotlib.pyplot.barh\nmatplotlib.axes.Axes.text\nmatplotlib.pyplot.text\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9d8ac7523e641cdcb75dc22210d46f6f/gradient_bar.ipynb b/_downloads/9d8ac7523e641cdcb75dc22210d46f6f/gradient_bar.ipynb deleted file mode 120000 index c933c486c07..00000000000 --- a/_downloads/9d8ac7523e641cdcb75dc22210d46f6f/gradient_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9d8ac7523e641cdcb75dc22210d46f6f/gradient_bar.ipynb \ No newline at end of file diff --git a/_downloads/9d94f4d9dda360d1ba0d79f8b1dd307d/tick_labels_from_values.py b/_downloads/9d94f4d9dda360d1ba0d79f8b1dd307d/tick_labels_from_values.py deleted file mode 120000 index 0884d9a53ca..00000000000 --- a/_downloads/9d94f4d9dda360d1ba0d79f8b1dd307d/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9d94f4d9dda360d1ba0d79f8b1dd307d/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/9d95dc25959019394fd896eacae2fab0/whats_new_99_axes_grid.py b/_downloads/9d95dc25959019394fd896eacae2fab0/whats_new_99_axes_grid.py deleted file mode 120000 index ea9b729b633..00000000000 --- a/_downloads/9d95dc25959019394fd896eacae2fab0/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9d95dc25959019394fd896eacae2fab0/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/_downloads/9d96180b95284e8b343a57a142c401be/multi_image.ipynb b/_downloads/9d96180b95284e8b343a57a142c401be/multi_image.ipynb deleted file mode 100644 index 417cc19f95a..00000000000 --- a/_downloads/9d96180b95284e8b343a57a142c401be/multi_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multi Image\n\n\nMake a set of images with a single colormap, norm, and colorbar.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import colors\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nnp.random.seed(19680801)\nNr = 3\nNc = 2\ncmap = \"cool\"\n\nfig, axs = plt.subplots(Nr, Nc)\nfig.suptitle('Multiple images')\n\nimages = []\nfor i in range(Nr):\n for j in range(Nc):\n # Generate data with a range that varies from one plot to the next.\n data = ((1 + i + j) / 10) * np.random.rand(10, 20) * 1e-6\n images.append(axs[i, j].imshow(data, cmap=cmap))\n axs[i, j].label_outer()\n\n# Find the min and max of all colors for use in setting the color scale.\nvmin = min(image.get_array().min() for image in images)\nvmax = max(image.get_array().max() for image in images)\nnorm = colors.Normalize(vmin=vmin, vmax=vmax)\nfor im in images:\n im.set_norm(norm)\n\nfig.colorbar(images[0], ax=axs, orientation='horizontal', fraction=.1)\n\n\n# Make images respond to changes in the norm of other images (e.g. via the\n# \"edit axis, curves and images parameters\" GUI on Qt), but be careful not to\n# recurse infinitely!\ndef update(changed_image):\n for im in images:\n if (changed_image.get_cmap() != im.get_cmap()\n or changed_image.get_clim() != im.get_clim()):\n im.set_cmap(changed_image.get_cmap())\n im.set_clim(changed_image.get_clim())\n\n\nfor im in images:\n im.callbacksSM.connect('changed', update)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.Normalize\nmatplotlib.cm.ScalarMappable.set_cmap\nmatplotlib.cm.ScalarMappable.set_norm\nmatplotlib.cm.ScalarMappable.set_clim\nmatplotlib.cbook.CallbackRegistry.connect" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9d974404e1899ef476673b8910df1ee4/irregulardatagrid.py b/_downloads/9d974404e1899ef476673b8910df1ee4/irregulardatagrid.py deleted file mode 120000 index 6d7e03e2d6c..00000000000 --- a/_downloads/9d974404e1899ef476673b8910df1ee4/irregulardatagrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9d974404e1899ef476673b8910df1ee4/irregulardatagrid.py \ No newline at end of file diff --git a/_downloads/9d98b4c898552a9e8548e07234c461b0/polys3d.ipynb b/_downloads/9d98b4c898552a9e8548e07234c461b0/polys3d.ipynb deleted file mode 120000 index c691a29d7d7..00000000000 --- a/_downloads/9d98b4c898552a9e8548e07234c461b0/polys3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9d98b4c898552a9e8548e07234c461b0/polys3d.ipynb \ No newline at end of file diff --git a/_downloads/9d98eabb13ab2fef3bbbd8ef1509c506/grayscale.py b/_downloads/9d98eabb13ab2fef3bbbd8ef1509c506/grayscale.py deleted file mode 120000 index 1105ba4d3b6..00000000000 --- a/_downloads/9d98eabb13ab2fef3bbbd8ef1509c506/grayscale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9d98eabb13ab2fef3bbbd8ef1509c506/grayscale.py \ No newline at end of file diff --git a/_downloads/9d9e065de89f1666f743d014a09fc0b4/image_annotated_heatmap.py b/_downloads/9d9e065de89f1666f743d014a09fc0b4/image_annotated_heatmap.py deleted file mode 120000 index 5fdca2b02ae..00000000000 --- a/_downloads/9d9e065de89f1666f743d014a09fc0b4/image_annotated_heatmap.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9d9e065de89f1666f743d014a09fc0b4/image_annotated_heatmap.py \ No newline at end of file diff --git a/_downloads/9d9ed7b3658e48fedd8cf6b9ce68ab46/coords_report.ipynb b/_downloads/9d9ed7b3658e48fedd8cf6b9ce68ab46/coords_report.ipynb deleted file mode 100644 index d3b575e2e67..00000000000 --- a/_downloads/9d9ed7b3658e48fedd8cf6b9ce68ab46/coords_report.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Coords Report\n\n\nOverride the default reporting of coords.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef millions(x):\n return '$%1.1fM' % (x*1e-6)\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx = np.random.rand(20)\ny = 1e7*np.random.rand(20)\n\nfig, ax = plt.subplots()\nax.fmt_ydata = millions\nplt.plot(x, y, 'o')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9da1685ec30a994b659de72fc33f9223/demo_annotation_box.py b/_downloads/9da1685ec30a994b659de72fc33f9223/demo_annotation_box.py deleted file mode 120000 index da4e27954e9..00000000000 --- a/_downloads/9da1685ec30a994b659de72fc33f9223/demo_annotation_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9da1685ec30a994b659de72fc33f9223/demo_annotation_box.py \ No newline at end of file diff --git a/_downloads/9daa8258cfedffc30e0297f456add74e/whats_new_98_4_legend.py b/_downloads/9daa8258cfedffc30e0297f456add74e/whats_new_98_4_legend.py deleted file mode 120000 index 0ae624927e4..00000000000 --- a/_downloads/9daa8258cfedffc30e0297f456add74e/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9daa8258cfedffc30e0297f456add74e/whats_new_98_4_legend.py \ No newline at end of file diff --git a/_downloads/9dab75d36dea228edc8a175b02d0121b/layer_images.ipynb b/_downloads/9dab75d36dea228edc8a175b02d0121b/layer_images.ipynb deleted file mode 120000 index 422d316e0cd..00000000000 --- a/_downloads/9dab75d36dea228edc8a175b02d0121b/layer_images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9dab75d36dea228edc8a175b02d0121b/layer_images.ipynb \ No newline at end of file diff --git a/_downloads/9db84f8f9493c0d754d9ab3a04183e6c/scatter_hist_locatable_axes.py b/_downloads/9db84f8f9493c0d754d9ab3a04183e6c/scatter_hist_locatable_axes.py deleted file mode 120000 index 067b07b0222..00000000000 --- a/_downloads/9db84f8f9493c0d754d9ab3a04183e6c/scatter_hist_locatable_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9db84f8f9493c0d754d9ab3a04183e6c/scatter_hist_locatable_axes.py \ No newline at end of file diff --git a/_downloads/9db95ed82651ffdf3396bf1a81bb28d6/whats_new_99_mplot3d.py b/_downloads/9db95ed82651ffdf3396bf1a81bb28d6/whats_new_99_mplot3d.py deleted file mode 120000 index 3ac3e4a2d7f..00000000000 --- a/_downloads/9db95ed82651ffdf3396bf1a81bb28d6/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9db95ed82651ffdf3396bf1a81bb28d6/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/_downloads/9de34249050465bb2b5a44653ec37ba6/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/9de34249050465bb2b5a44653ec37ba6/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 120000 index 5f934777e14..00000000000 --- a/_downloads/9de34249050465bb2b5a44653ec37ba6/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9de34249050465bb2b5a44653ec37ba6/embedding_in_gtk3_panzoom_sgskip.py \ No newline at end of file diff --git a/_downloads/9deab954de6a0dc640078a548210209a/date_demo_convert.py b/_downloads/9deab954de6a0dc640078a548210209a/date_demo_convert.py deleted file mode 120000 index 89e6e85eb09..00000000000 --- a/_downloads/9deab954de6a0dc640078a548210209a/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9deab954de6a0dc640078a548210209a/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/9df0748eeda573fbccab51a7272f7d81/colormaps.py b/_downloads/9df0748eeda573fbccab51a7272f7d81/colormaps.py deleted file mode 100644 index 3e7cf114136..00000000000 --- a/_downloads/9df0748eeda573fbccab51a7272f7d81/colormaps.py +++ /dev/null @@ -1,425 +0,0 @@ -""" -******************************** -Choosing Colormaps in Matplotlib -******************************** - -Matplotlib has a number of built-in colormaps accessible via -`.matplotlib.cm.get_cmap`. There are also external libraries like -[palettable]_ and [colorcet]_ that have many extra colormaps. -Here we briefly discuss how to choose between the many options. For -help on creating your own colormaps, see -:doc:`/tutorials/colors/colormap-manipulation`. - -Overview -======== - -The idea behind choosing a good colormap is to find a good representation in 3D -colorspace for your data set. The best colormap for any given data set depends -on many things including: - -- Whether representing form or metric data ([Ware]_) - -- Your knowledge of the data set (*e.g.*, is there a critical value - from which the other values deviate?) - -- If there is an intuitive color scheme for the parameter you are plotting - -- If there is a standard in the field the audience may be expecting - -For many applications, a perceptually uniform colormap is the best -choice --- one in which equal steps in data are perceived as equal -steps in the color space. Researchers have found that the human brain -perceives changes in the lightness parameter as changes in the data -much better than, for example, changes in hue. Therefore, colormaps -which have monotonically increasing lightness through the colormap -will be better interpreted by the viewer. A wonderful example of -perceptually uniform colormaps is [colorcet]_. - -Color can be represented in 3D space in various ways. One way to represent color -is using CIELAB. In CIELAB, color space is represented by lightness, -:math:`L^*`; red-green, :math:`a^*`; and yellow-blue, :math:`b^*`. The lightness -parameter :math:`L^*` can then be used to learn more about how the matplotlib -colormaps will be perceived by viewers. - -An excellent starting resource for learning about human perception of colormaps -is from [IBM]_. - - -Classes of colormaps -==================== - -Colormaps are often split into several categories based on their function (see, -*e.g.*, [Moreland]_): - -1. Sequential: change in lightness and often saturation of color - incrementally, often using a single hue; should be used for - representing information that has ordering. - -2. Diverging: change in lightness and possibly saturation of two - different colors that meet in the middle at an unsaturated color; - should be used when the information being plotted has a critical - middle value, such as topography or when the data deviates around - zero. - -3. Cyclic: change in lightness of two different colors that meet in - the middle and beginning/end at an unsaturated color; should be - used for values that wrap around at the endpoints, such as phase - angle, wind direction, or time of day. - -4. Qualitative: often are miscellaneous colors; should be used to - represent information which does not have ordering or - relationships. -""" - -# sphinx_gallery_thumbnail_number = 2 - -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt -from matplotlib import cm -from colorspacious import cspace_converter -from collections import OrderedDict - -cmaps = OrderedDict() - -############################################################################### -# Sequential -# ---------- -# -# For the Sequential plots, the lightness value increases monotonically through -# the colormaps. This is good. Some of the :math:`L^*` values in the colormaps -# span from 0 to 100 (binary and the other grayscale), and others start around -# :math:`L^*=20`. Those that have a smaller range of :math:`L^*` will accordingly -# have a smaller perceptual range. Note also that the :math:`L^*` function varies -# amongst the colormaps: some are approximately linear in :math:`L^*` and others -# are more curved. - -cmaps['Perceptually Uniform Sequential'] = [ - 'viridis', 'plasma', 'inferno', 'magma', 'cividis'] - -cmaps['Sequential'] = [ - 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds', - 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu', - 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn'] - -############################################################################### -# Sequential2 -# ----------- -# -# Many of the :math:`L^*` values from the Sequential2 plots are monotonically -# increasing, but some (autumn, cool, spring, and winter) plateau or even go both -# up and down in :math:`L^*` space. Others (afmhot, copper, gist_heat, and hot) -# have kinks in the :math:`L^*` functions. Data that is being represented in a -# region of the colormap that is at a plateau or kink will lead to a perception of -# banding of the data in those values in the colormap (see [mycarta-banding]_ for -# an excellent example of this). - -cmaps['Sequential (2)'] = [ - 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink', - 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia', - 'hot', 'afmhot', 'gist_heat', 'copper'] - -############################################################################### -# Diverging -# --------- -# -# For the Diverging maps, we want to have monotonically increasing :math:`L^*` -# values up to a maximum, which should be close to :math:`L^*=100`, followed by -# monotonically decreasing :math:`L^*` values. We are looking for approximately -# equal minimum :math:`L^*` values at opposite ends of the colormap. By these -# measures, BrBG and RdBu are good options. coolwarm is a good option, but it -# doesn't span a wide range of :math:`L^*` values (see grayscale section below). - -cmaps['Diverging'] = [ - 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu', - 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic'] - -############################################################################### -# Cyclic -# ------ -# -# For Cyclic maps, we want to start and end on the same color, and meet a -# symmetric center point in the middle. :math:`L^*` should change monotonically -# from start to middle, and inversely from middle to end. It should be symmetric -# on the increasing and decreasing side, and only differ in hue. At the ends and -# middle, :math:`L^*` will reverse direction, which should be smoothed in -# :math:`L^*` space to reduce artifacts. See [kovesi-colormaps]_ for more -# information on the design of cyclic maps. -# -# The often-used HSV colormap is included in this set of colormaps, although it -# is not symmetric to a center point. Additionally, the :math:`L^*` values vary -# widely throughout the colormap, making it a poor choice for representing data -# for viewers to see perceptually. See an extension on this idea at -# [mycarta-jet]_. - -cmaps['Cyclic'] = ['twilight', 'twilight_shifted', 'hsv'] - -############################################################################### -# Qualitative -# ----------- -# -# Qualitative colormaps are not aimed at being perceptual maps, but looking at the -# lightness parameter can verify that for us. The :math:`L^*` values move all over -# the place throughout the colormap, and are clearly not monotonically increasing. -# These would not be good options for use as perceptual colormaps. - -cmaps['Qualitative'] = ['Pastel1', 'Pastel2', 'Paired', 'Accent', - 'Dark2', 'Set1', 'Set2', 'Set3', - 'tab10', 'tab20', 'tab20b', 'tab20c'] - -############################################################################### -# Miscellaneous -# ------------- -# -# Some of the miscellaneous colormaps have particular uses for which -# they have been created. For example, gist_earth, ocean, and terrain -# all seem to be created for plotting topography (green/brown) and water -# depths (blue) together. We would expect to see a divergence in these -# colormaps, then, but multiple kinks may not be ideal, such as in -# gist_earth and terrain. CMRmap was created to convert well to -# grayscale, though it does appear to have some small kinks in -# :math:`L^*`. cubehelix was created to vary smoothly in both lightness -# and hue, but appears to have a small hump in the green hue area. -# -# The often-used jet colormap is included in this set of colormaps. We can see -# that the :math:`L^*` values vary widely throughout the colormap, making it a -# poor choice for representing data for viewers to see perceptually. See an -# extension on this idea at [mycarta-jet]_. - -cmaps['Miscellaneous'] = [ - 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern', - 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg', - 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar'] - -############################################################################### -# .. _color-colormaps_reference: -# -# First, we'll show the range of each colormap. Note that some seem -# to change more "quickly" than others. - -nrows = max(len(cmap_list) for cmap_category, cmap_list in cmaps.items()) -gradient = np.linspace(0, 1, 256) -gradient = np.vstack((gradient, gradient)) - - -def plot_color_gradients(cmap_category, cmap_list, nrows): - fig, axes = plt.subplots(nrows=nrows) - fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99) - axes[0].set_title(cmap_category + ' colormaps', fontsize=14) - - for ax, name in zip(axes, cmap_list): - ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name)) - pos = list(ax.get_position().bounds) - x_text = pos[0] - 0.01 - y_text = pos[1] + pos[3]/2. - fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10) - - # Turn off *all* ticks & spines, not just the ones with colormaps. - for ax in axes: - ax.set_axis_off() - - -for cmap_category, cmap_list in cmaps.items(): - plot_color_gradients(cmap_category, cmap_list, nrows) - -plt.show() - -############################################################################### -# Lightness of matplotlib colormaps -# ================================= -# -# Here we examine the lightness values of the matplotlib colormaps. -# Note that some documentation on the colormaps is available -# ([list-colormaps]_). - -mpl.rcParams.update({'font.size': 12}) - -# Number of colormap per subplot for particular cmap categories -_DSUBS = {'Perceptually Uniform Sequential': 5, 'Sequential': 6, - 'Sequential (2)': 6, 'Diverging': 6, 'Cyclic': 3, - 'Qualitative': 4, 'Miscellaneous': 6} - -# Spacing between the colormaps of a subplot -_DC = {'Perceptually Uniform Sequential': 1.4, 'Sequential': 0.7, - 'Sequential (2)': 1.4, 'Diverging': 1.4, 'Cyclic': 1.4, - 'Qualitative': 1.4, 'Miscellaneous': 1.4} - -# Indices to step through colormap -x = np.linspace(0.0, 1.0, 100) - -# Do plot -for cmap_category, cmap_list in cmaps.items(): - - # Do subplots so that colormaps have enough space. - # Default is 6 colormaps per subplot. - dsub = _DSUBS.get(cmap_category, 6) - nsubplots = int(np.ceil(len(cmap_list) / dsub)) - - # squeeze=False to handle similarly the case of a single subplot - fig, axes = plt.subplots(nrows=nsubplots, squeeze=False, - figsize=(7, 2.6*nsubplots)) - - for i, ax in enumerate(axes.flat): - - locs = [] # locations for text labels - - for j, cmap in enumerate(cmap_list[i*dsub:(i+1)*dsub]): - - # Get RGB values for colormap and convert the colormap in - # CAM02-UCS colorspace. lab[0, :, 0] is the lightness. - rgb = cm.get_cmap(cmap)(x)[np.newaxis, :, :3] - lab = cspace_converter("sRGB1", "CAM02-UCS")(rgb) - - # Plot colormap L values. Do separately for each category - # so each plot can be pretty. To make scatter markers change - # color along plot: - # http://stackoverflow.com/questions/8202605/ - - if cmap_category == 'Sequential': - # These colormaps all start at high lightness but we want them - # reversed to look nice in the plot, so reverse the order. - y_ = lab[0, ::-1, 0] - c_ = x[::-1] - else: - y_ = lab[0, :, 0] - c_ = x - - dc = _DC.get(cmap_category, 1.4) # cmaps horizontal spacing - ax.scatter(x + j*dc, y_, c=c_, cmap=cmap, s=300, linewidths=0.0) - - # Store locations for colormap labels - if cmap_category in ('Perceptually Uniform Sequential', - 'Sequential'): - locs.append(x[-1] + j*dc) - elif cmap_category in ('Diverging', 'Qualitative', 'Cyclic', - 'Miscellaneous', 'Sequential (2)'): - locs.append(x[int(x.size/2.)] + j*dc) - - # Set up the axis limits: - # * the 1st subplot is used as a reference for the x-axis limits - # * lightness values goes from 0 to 100 (y-axis limits) - ax.set_xlim(axes[0, 0].get_xlim()) - ax.set_ylim(0.0, 100.0) - - # Set up labels for colormaps - ax.xaxis.set_ticks_position('top') - ticker = mpl.ticker.FixedLocator(locs) - ax.xaxis.set_major_locator(ticker) - formatter = mpl.ticker.FixedFormatter(cmap_list[i*dsub:(i+1)*dsub]) - ax.xaxis.set_major_formatter(formatter) - ax.xaxis.set_tick_params(rotation=50) - - ax.set_xlabel(cmap_category + ' colormaps', fontsize=14) - fig.text(0.0, 0.55, 'Lightness $L^*$', fontsize=12, - transform=fig.transFigure, rotation=90) - - fig.tight_layout(h_pad=0.0, pad=1.5) - plt.show() - - -############################################################################### -# Grayscale conversion -# ==================== -# -# It is important to pay attention to conversion to grayscale for color -# plots, since they may be printed on black and white printers. If not -# carefully considered, your readers may end up with indecipherable -# plots because the grayscale changes unpredictably through the -# colormap. -# -# Conversion to grayscale is done in many different ways [bw]_. Some of the -# better ones use a linear combination of the rgb values of a pixel, but -# weighted according to how we perceive color intensity. A nonlinear method of -# conversion to grayscale is to use the :math:`L^*` values of the pixels. In -# general, similar principles apply for this question as they do for presenting -# one's information perceptually; that is, if a colormap is chosen that is -# monotonically increasing in :math:`L^*` values, it will print in a reasonable -# manner to grayscale. -# -# With this in mind, we see that the Sequential colormaps have reasonable -# representations in grayscale. Some of the Sequential2 colormaps have decent -# enough grayscale representations, though some (autumn, spring, summer, -# winter) have very little grayscale change. If a colormap like this was used -# in a plot and then the plot was printed to grayscale, a lot of the -# information may map to the same gray values. The Diverging colormaps mostly -# vary from darker gray on the outer edges to white in the middle. Some -# (PuOr and seismic) have noticeably darker gray on one side than the other -# and therefore are not very symmetric. coolwarm has little range of gray scale -# and would print to a more uniform plot, losing a lot of detail. Note that -# overlaid, labeled contours could help differentiate between one side of the -# colormap vs. the other since color cannot be used once a plot is printed to -# grayscale. Many of the Qualitative and Miscellaneous colormaps, such as -# Accent, hsv, and jet, change from darker to lighter and back to darker gray -# throughout the colormap. This would make it impossible for a viewer to -# interpret the information in a plot once it is printed in grayscale. - -mpl.rcParams.update({'font.size': 14}) - -# Indices to step through colormap. -x = np.linspace(0.0, 1.0, 100) - -gradient = np.linspace(0, 1, 256) -gradient = np.vstack((gradient, gradient)) - - -def plot_color_gradients(cmap_category, cmap_list): - fig, axes = plt.subplots(nrows=len(cmap_list), ncols=2) - fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99, - wspace=0.05) - fig.suptitle(cmap_category + ' colormaps', fontsize=14, y=1.0, x=0.6) - - for ax, name in zip(axes, cmap_list): - - # Get RGB values for colormap. - rgb = cm.get_cmap(plt.get_cmap(name))(x)[np.newaxis, :, :3] - - # Get colormap in CAM02-UCS colorspace. We want the lightness. - lab = cspace_converter("sRGB1", "CAM02-UCS")(rgb) - L = lab[0, :, 0] - L = np.float32(np.vstack((L, L, L))) - - ax[0].imshow(gradient, aspect='auto', cmap=plt.get_cmap(name)) - ax[1].imshow(L, aspect='auto', cmap='binary_r', vmin=0., vmax=100.) - pos = list(ax[0].get_position().bounds) - x_text = pos[0] - 0.01 - y_text = pos[1] + pos[3]/2. - fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10) - - # Turn off *all* ticks & spines, not just the ones with colormaps. - for ax in axes.flat: - ax.set_axis_off() - - plt.show() - - -for cmap_category, cmap_list in cmaps.items(): - - plot_color_gradients(cmap_category, cmap_list) - -############################################################################### -# Color vision deficiencies -# ========================= -# -# There is a lot of information available about color blindness (*e.g.*, -# [colorblindness]_). Additionally, there are tools available to convert images -# to how they look for different types of color vision deficiencies. -# -# The most common form of color vision deficiency involves differentiating -# between red and green. Thus, avoiding colormaps with both red and green will -# avoid many problems in general. -# -# -# References -# ========== -# -# .. [colorcet] https://colorcet.pyviz.org -# .. [Ware] http://ccom.unh.edu/sites/default/files/publications/Ware_1988_CGA_Color_sequences_univariate_maps.pdf -# .. [Moreland] http://www.kennethmoreland.com/color-maps/ColorMapsExpanded.pdf -# .. [list-colormaps] https://gist.github.com/endolith/2719900#id7 -# .. [mycarta-banding] https://mycarta.wordpress.com/2012/10/14/the-rainbow-is-deadlong-live-the-rainbow-part-4-cie-lab-heated-body/ -# .. [mycarta-jet] https://mycarta.wordpress.com/2012/10/06/the-rainbow-is-deadlong-live-the-rainbow-part-3/ -# .. [kovesi-colormaps] https://arxiv.org/abs/1509.03700 -# .. [bw] http://www.tannerhelland.com/3643/grayscale-image-algorithm-vb6/ -# .. [colorblindness] http://www.color-blindness.com/ -# .. [IBM] https://doi.org/10.1109/VISUAL.1995.480803 -# .. [palettable] https://jiffyclub.github.io/palettable/ diff --git a/_downloads/9dfbd13300480a22d5de19af35b2dee2/spines.ipynb b/_downloads/9dfbd13300480a22d5de19af35b2dee2/spines.ipynb deleted file mode 120000 index 20b111d9548..00000000000 --- a/_downloads/9dfbd13300480a22d5de19af35b2dee2/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9dfbd13300480a22d5de19af35b2dee2/spines.ipynb \ No newline at end of file diff --git a/_downloads/9dfc121634d0c7c076c0af97eabe5762/scales.py b/_downloads/9dfc121634d0c7c076c0af97eabe5762/scales.py deleted file mode 120000 index 6d00eb46749..00000000000 --- a/_downloads/9dfc121634d0c7c076c0af97eabe5762/scales.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9dfc121634d0c7c076c0af97eabe5762/scales.py \ No newline at end of file diff --git a/_downloads/9e0017d0c6eefc90e30ce45252cb02d7/offset.ipynb b/_downloads/9e0017d0c6eefc90e30ce45252cb02d7/offset.ipynb deleted file mode 120000 index 60ce75fc0c5..00000000000 --- a/_downloads/9e0017d0c6eefc90e30ce45252cb02d7/offset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9e0017d0c6eefc90e30ce45252cb02d7/offset.ipynb \ No newline at end of file diff --git a/_downloads/9e02147c17b001420f9393a5b3dfa261/legend_demo.py b/_downloads/9e02147c17b001420f9393a5b3dfa261/legend_demo.py deleted file mode 120000 index c3159ff1879..00000000000 --- a/_downloads/9e02147c17b001420f9393a5b3dfa261/legend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9e02147c17b001420f9393a5b3dfa261/legend_demo.py \ No newline at end of file diff --git a/_downloads/9e096cb29ef84bc4b51dedba9ab916be/leftventricle_bulleye.ipynb b/_downloads/9e096cb29ef84bc4b51dedba9ab916be/leftventricle_bulleye.ipynb deleted file mode 120000 index c030c812fe2..00000000000 --- a/_downloads/9e096cb29ef84bc4b51dedba9ab916be/leftventricle_bulleye.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9e096cb29ef84bc4b51dedba9ab916be/leftventricle_bulleye.ipynb \ No newline at end of file diff --git a/_downloads/9e1a296ae9a5b356a0981880bbf3b8eb/figlegend_demo.py b/_downloads/9e1a296ae9a5b356a0981880bbf3b8eb/figlegend_demo.py deleted file mode 120000 index 4141d685280..00000000000 --- a/_downloads/9e1a296ae9a5b356a0981880bbf3b8eb/figlegend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9e1a296ae9a5b356a0981880bbf3b8eb/figlegend_demo.py \ No newline at end of file diff --git a/_downloads/9e1f069c55386e27c9d5c4be29853bcf/date.ipynb b/_downloads/9e1f069c55386e27c9d5c4be29853bcf/date.ipynb deleted file mode 120000 index f762c7c8e9d..00000000000 --- a/_downloads/9e1f069c55386e27c9d5c4be29853bcf/date.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9e1f069c55386e27c9d5c4be29853bcf/date.ipynb \ No newline at end of file diff --git a/_downloads/9e2d1e07965f015edf40148d0d7e0edb/anscombe.py b/_downloads/9e2d1e07965f015edf40148d0d7e0edb/anscombe.py deleted file mode 120000 index 1504d04c9f8..00000000000 --- a/_downloads/9e2d1e07965f015edf40148d0d7e0edb/anscombe.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9e2d1e07965f015edf40148d0d7e0edb/anscombe.py \ No newline at end of file diff --git a/_downloads/9e2e57de09dadda8c744689f2abc443f/annotate_simple_coord03.ipynb b/_downloads/9e2e57de09dadda8c744689f2abc443f/annotate_simple_coord03.ipynb deleted file mode 120000 index ab09e7fba62..00000000000 --- a/_downloads/9e2e57de09dadda8c744689f2abc443f/annotate_simple_coord03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9e2e57de09dadda8c744689f2abc443f/annotate_simple_coord03.ipynb \ No newline at end of file diff --git a/_downloads/9e318f740e8d5d997a898bbafe39646b/unchained.py b/_downloads/9e318f740e8d5d997a898bbafe39646b/unchained.py deleted file mode 120000 index 15f8f3b1c19..00000000000 --- a/_downloads/9e318f740e8d5d997a898bbafe39646b/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9e318f740e8d5d997a898bbafe39646b/unchained.py \ No newline at end of file diff --git a/_downloads/9e33060f46fefe0ebb4d9458526e82be/common_date_problems.ipynb b/_downloads/9e33060f46fefe0ebb4d9458526e82be/common_date_problems.ipynb deleted file mode 120000 index 32639996ebb..00000000000 --- a/_downloads/9e33060f46fefe0ebb4d9458526e82be/common_date_problems.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/9e33060f46fefe0ebb4d9458526e82be/common_date_problems.ipynb \ No newline at end of file diff --git a/_downloads/9e3417e05ce02fb34a41bcd8d048d37d/vline_hline_demo.ipynb b/_downloads/9e3417e05ce02fb34a41bcd8d048d37d/vline_hline_demo.ipynb deleted file mode 100644 index f7baa968ca7..00000000000 --- a/_downloads/9e3417e05ce02fb34a41bcd8d048d37d/vline_hline_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# hlines and vlines\n\n\nThis example showcases the functions hlines and vlines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nt = np.arange(0.0, 5.0, 0.1)\ns = np.exp(-t) + np.sin(2 * np.pi * t) + 1\nnse = np.random.normal(0.0, 0.3, t.shape) * s\n\nfig, (vax, hax) = plt.subplots(1, 2, figsize=(12, 6))\n\nvax.plot(t, s + nse, '^')\nvax.vlines(t, [0], s)\n# By using ``transform=vax.get_xaxis_transform()`` the y coordinates are scaled\n# such that 0 maps to the bottom of the axes and 1 to the top.\nvax.vlines([1, 2], 0, 1, transform=vax.get_xaxis_transform(), colors='r')\nvax.set_xlabel('time (s)')\nvax.set_title('Vertical lines demo')\n\nhax.plot(s + nse, t, '^')\nhax.hlines(t, [0], s, lw=2)\nhax.set_xlabel('time (s)')\nhax.set_title('Horizontal lines demo')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9e34d20fb701b83a2141f9756c29c4dd/scatter_with_legend.py b/_downloads/9e34d20fb701b83a2141f9756c29c4dd/scatter_with_legend.py deleted file mode 100644 index fbbbd58614e..00000000000 --- a/_downloads/9e34d20fb701b83a2141f9756c29c4dd/scatter_with_legend.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -=========================== -Scatter plots with a legend -=========================== - -To create a scatter plot with a legend one may use a loop and create one -`~.Axes.scatter` plot per item to appear in the legend and set the ``label`` -accordingly. - -The following also demonstrates how transparency of the markers -can be adjusted by giving ``alpha`` a value between 0 and 1. -""" - -import numpy as np -np.random.seed(19680801) -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots() -for color in ['tab:blue', 'tab:orange', 'tab:green']: - n = 750 - x, y = np.random.rand(2, n) - scale = 200.0 * np.random.rand(n) - ax.scatter(x, y, c=color, s=scale, label=color, - alpha=0.3, edgecolors='none') - -ax.legend() -ax.grid(True) - -plt.show() - - -############################################################################## -# .. _automatedlegendcreation: -# -# Automated legend creation -# ------------------------- -# -# Another option for creating a legend for a scatter is to use the -# :class:`~matplotlib.collections.PathCollection`'s -# :meth:`~.PathCollection.legend_elements` method. -# It will automatically try to determine a useful number of legend entries -# to be shown and return a tuple of handles and labels. Those can be passed -# to the call to :meth:`~.axes.Axes.legend`. - - -N = 45 -x, y = np.random.rand(2, N) -c = np.random.randint(1, 5, size=N) -s = np.random.randint(10, 220, size=N) - -fig, ax = plt.subplots() - -scatter = ax.scatter(x, y, c=c, s=s) - -# produce a legend with the unique colors from the scatter -legend1 = ax.legend(*scatter.legend_elements(), - loc="lower left", title="Classes") -ax.add_artist(legend1) - -# produce a legend with a cross section of sizes from the scatter -handles, labels = scatter.legend_elements(prop="sizes", alpha=0.6) -legend2 = ax.legend(handles, labels, loc="upper right", title="Sizes") - -plt.show() - - -############################################################################## -# Further arguments to the :meth:`~.PathCollection.legend_elements` method -# can be used to steer how many legend entries are to be created and how they -# should be labeled. The following shows how to use some of them. -# - -volume = np.random.rayleigh(27, size=40) -amount = np.random.poisson(10, size=40) -ranking = np.random.normal(size=40) -price = np.random.uniform(1, 10, size=40) - -fig, ax = plt.subplots() - -# Because the price is much too small when being provided as size for ``s``, -# we normalize it to some useful point sizes, s=0.3*(price*3)**2 -scatter = ax.scatter(volume, amount, c=ranking, s=0.3*(price*3)**2, - vmin=-3, vmax=3, cmap="Spectral") - -# Produce a legend for the ranking (colors). Even though there are 40 different -# rankings, we only want to show 5 of them in the legend. -legend1 = ax.legend(*scatter.legend_elements(num=5), - loc="upper left", title="Ranking") -ax.add_artist(legend1) - -# Produce a legend for the price (sizes). Because we want to show the prices -# in dollars, we use the *func* argument to supply the inverse of the function -# used to calculate the sizes from above. The *fmt* ensures to show the price -# in dollars. Note how we target at 5 elements here, but obtain only 4 in the -# created legend due to the automatic round prices that are chosen for us. -kw = dict(prop="sizes", num=5, color=scatter.cmap(0.7), fmt="$ {x:.2f}", - func=lambda s: np.sqrt(s/.3)/3) -legend2 = ax.legend(*scatter.legend_elements(**kw), - loc="lower right", title="Price") - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The usage of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.collections.PathCollection.legend_elements diff --git a/_downloads/9e35f6ffd7bf484a11a580ee4cd0bee9/color_cycler.py b/_downloads/9e35f6ffd7bf484a11a580ee4cd0bee9/color_cycler.py deleted file mode 100644 index 44aa6754088..00000000000 --- a/_downloads/9e35f6ffd7bf484a11a580ee4cd0bee9/color_cycler.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -=================== -Styling with cycler -=================== - -Demo of custom property-cycle settings to control colors and other style -properties for multi-line plots. - -This example demonstrates two different APIs: - -1. Setting the default :doc:`rc parameter` - specifying the property cycle. This affects all subsequent axes (but not - axes already created). -2. Setting the property cycle for a single pair of axes. -""" -from cycler import cycler -import numpy as np -import matplotlib.pyplot as plt - - -x = np.linspace(0, 2 * np.pi) -offsets = np.linspace(0, 2*np.pi, 4, endpoint=False) -# Create array with shifted-sine curve along each column -yy = np.transpose([np.sin(x + phi) for phi in offsets]) - -# 1. Setting prop cycle on default rc parameter -plt.rc('lines', linewidth=4) -plt.rc('axes', prop_cycle=(cycler(color=['r', 'g', 'b', 'y']) + - cycler(linestyle=['-', '--', ':', '-.']))) -fig, (ax0, ax1) = plt.subplots(nrows=2, constrained_layout=True) -ax0.plot(yy) -ax0.set_title('Set default color cycle to rgby') - -# 2. Define prop cycle for single set of axes -# For the most general use-case, you can provide a cycler to -# `.set_prop_cycle`. -# Here, we use the convenient shortcut that we can alternatively pass -# one or more properties as keyword arguments. This creates and sets -# a cycler iterating simultaneously over all properties. -ax1.set_prop_cycle(color=['c', 'm', 'y', 'k'], lw=[1, 2, 3, 4]) -ax1.plot(yy) -ax1.set_title('Set axes color cycle to cmyk') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.set_prop_cycle diff --git a/_downloads/9e401c97327ed59e6ba5f058d1bbe907/legend.py b/_downloads/9e401c97327ed59e6ba5f058d1bbe907/legend.py deleted file mode 120000 index 6c59fe211e2..00000000000 --- a/_downloads/9e401c97327ed59e6ba5f058d1bbe907/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9e401c97327ed59e6ba5f058d1bbe907/legend.py \ No newline at end of file diff --git a/_downloads/9e4053291f2cac25c4d0c16d3019ea2d/artist_tests.py b/_downloads/9e4053291f2cac25c4d0c16d3019ea2d/artist_tests.py deleted file mode 100644 index 0b078ce5cb6..00000000000 --- a/_downloads/9e4053291f2cac25c4d0c16d3019ea2d/artist_tests.py +++ /dev/null @@ -1,65 +0,0 @@ -""" -============ -Artist tests -============ - -Test unit support with each of the Matplotlib primitive artist types. - -The axis handles unit conversions and the artists keep a pointer to their axis -parent. You must initialize the artists with the axis instance if you want to -use them with unit data, or else they will not know how to convert the units -to scalars. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -import random -import matplotlib.lines as lines -import matplotlib.patches as patches -import matplotlib.text as text -import matplotlib.collections as collections - -from basic_units import cm, inch -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() -ax.xaxis.set_units(cm) -ax.yaxis.set_units(cm) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -if 0: - # test a line collection - # Not supported at present. - verts = [] - for i in range(10): - # a random line segment in inches - verts.append(zip(*inch*10*np.random.rand(2, random.randint(2, 15)))) - lc = collections.LineCollection(verts, axes=ax) - ax.add_collection(lc) - -# test a plain-ol-line -line = lines.Line2D([0*cm, 1.5*cm], [0*cm, 2.5*cm], - lw=2, color='black', axes=ax) -ax.add_line(line) - -if 0: - # test a patch - # Not supported at present. - rect = patches.Rectangle((1*cm, 1*cm), width=5*cm, height=2*cm, - alpha=0.2, axes=ax) - ax.add_patch(rect) - - -t = text.Text(3*cm, 2.5*cm, 'text label', ha='left', va='bottom', axes=ax) -ax.add_artist(t) - -ax.set_xlim(-1*cm, 10*cm) -ax.set_ylim(-1*cm, 10*cm) -# ax.xaxis.set_units(inch) -ax.grid(True) -ax.set_title("Artists with units") -plt.show() diff --git a/_downloads/9e4962e4e63fc12b55e3dce38b0a0269/multiprocess_sgskip.ipynb b/_downloads/9e4962e4e63fc12b55e3dce38b0a0269/multiprocess_sgskip.ipynb deleted file mode 120000 index bdf81bae0e7..00000000000 --- a/_downloads/9e4962e4e63fc12b55e3dce38b0a0269/multiprocess_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9e4962e4e63fc12b55e3dce38b0a0269/multiprocess_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/9e4f4763f7be51f5dc13b191b0dc83d5/simple_axisline.py b/_downloads/9e4f4763f7be51f5dc13b191b0dc83d5/simple_axisline.py deleted file mode 120000 index 8c2c67971c0..00000000000 --- a/_downloads/9e4f4763f7be51f5dc13b191b0dc83d5/simple_axisline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9e4f4763f7be51f5dc13b191b0dc83d5/simple_axisline.py \ No newline at end of file diff --git a/_downloads/9e66f36770a500ffeb2071ab3807c96c/demo_axes_hbox_divider.ipynb b/_downloads/9e66f36770a500ffeb2071ab3807c96c/demo_axes_hbox_divider.ipynb deleted file mode 100644 index b9d16ad4d1c..00000000000 --- a/_downloads/9e66f36770a500ffeb2071ab3807c96c/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Hbox Divider\n\n\nHbox Divider to arrange subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_divider import HBoxDivider\nimport mpl_toolkits.axes_grid1.axes_size as Size\n\n\ndef make_heights_equal(fig, rect, ax1, ax2, pad):\n # pad in inches\n\n h1, v1 = Size.AxesX(ax1), Size.AxesY(ax1)\n h2, v2 = Size.AxesX(ax2), Size.AxesY(ax2)\n\n pad_v = Size.Scaled(1)\n pad_h = Size.Fixed(pad)\n\n my_divider = HBoxDivider(fig, rect,\n horizontal=[h1, pad_h, h2],\n vertical=[v1, pad_v, v2])\n\n ax1.set_axes_locator(my_divider.new_locator(0))\n ax2.set_axes_locator(my_divider.new_locator(2))\n\n\nif __name__ == \"__main__\":\n\n arr1 = np.arange(20).reshape((4, 5))\n arr2 = np.arange(20).reshape((5, 4))\n\n fig, (ax1, ax2) = plt.subplots(1, 2)\n ax1.imshow(arr1, interpolation=\"nearest\")\n ax2.imshow(arr2, interpolation=\"nearest\")\n\n rect = 111 # subplot param for combined axes\n make_heights_equal(fig, rect, ax1, ax2, pad=0.5) # pad in inches\n\n for ax in [ax1, ax2]:\n ax.locator_params(nbins=4)\n\n # annotate\n ax3 = plt.axes([0.5, 0.5, 0.001, 0.001], frameon=False)\n ax3.xaxis.set_visible(False)\n ax3.yaxis.set_visible(False)\n ax3.annotate(\"Location of two axes are adjusted\\n\"\n \"so that they have equal heights\\n\"\n \"while maintaining their aspect ratios\", (0.5, 0.5),\n xycoords=\"axes fraction\", va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round, pad=1\", fc=\"w\"))\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9e717f525f83529b6cb2588b932e726f/step_demo.ipynb b/_downloads/9e717f525f83529b6cb2588b932e726f/step_demo.ipynb deleted file mode 100644 index a41e0b5d880..00000000000 --- a/_downloads/9e717f525f83529b6cb2588b932e726f/step_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Step Demo\n\n\nThis example demonstrates the use of `.pyplot.step` for piece-wise constant\ncurves. In particular, it illustrates the effect of the parameter *where*\non the step position.\n\nThe circular markers created with `.pyplot.plot` show the actual data\npositions so that it's easier to see the effect of *where*.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = np.arange(14)\ny = np.sin(x / 2)\n\nplt.step(x, y + 2, label='pre (default)')\nplt.plot(x, y + 2, 'C0o', alpha=0.5)\n\nplt.step(x, y + 1, where='mid', label='mid')\nplt.plot(x, y + 1, 'C1o', alpha=0.5)\n\nplt.step(x, y, where='post', label='post')\nplt.plot(x, y, 'C2o', alpha=0.5)\n\nplt.legend(title='Parameter where:')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.step\nmatplotlib.pyplot.step" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9e75a30b6429596eeed3f32946237729/line_styles_reference.ipynb b/_downloads/9e75a30b6429596eeed3f32946237729/line_styles_reference.ipynb deleted file mode 120000 index 116b03522ce..00000000000 --- a/_downloads/9e75a30b6429596eeed3f32946237729/line_styles_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/9e75a30b6429596eeed3f32946237729/line_styles_reference.ipynb \ No newline at end of file diff --git a/_downloads/9e75adc497c112bc8de0767554b72794/resample.py b/_downloads/9e75adc497c112bc8de0767554b72794/resample.py deleted file mode 120000 index 583d1b2b1fa..00000000000 --- a/_downloads/9e75adc497c112bc8de0767554b72794/resample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9e75adc497c112bc8de0767554b72794/resample.py \ No newline at end of file diff --git a/_downloads/9e7825d90e60fb3c3044cff4cbe03d14/timers.ipynb b/_downloads/9e7825d90e60fb3c3044cff4cbe03d14/timers.ipynb deleted file mode 120000 index d9fe6ae9a41..00000000000 --- a/_downloads/9e7825d90e60fb3c3044cff4cbe03d14/timers.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9e7825d90e60fb3c3044cff4cbe03d14/timers.ipynb \ No newline at end of file diff --git a/_downloads/9e78776d550f86fa15de4c6108f07a44/custom_ticker1.ipynb b/_downloads/9e78776d550f86fa15de4c6108f07a44/custom_ticker1.ipynb deleted file mode 120000 index 3e73df13d14..00000000000 --- a/_downloads/9e78776d550f86fa15de4c6108f07a44/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9e78776d550f86fa15de4c6108f07a44/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/9e7947bef84b082ceabe2837d082f77d/ellipse_with_units.py b/_downloads/9e7947bef84b082ceabe2837d082f77d/ellipse_with_units.py deleted file mode 100644 index 4377d91d9d5..00000000000 --- a/_downloads/9e7947bef84b082ceabe2837d082f77d/ellipse_with_units.py +++ /dev/null @@ -1,79 +0,0 @@ -""" -================== -Ellipse With Units -================== - -Compare the ellipse generated with arcs versus a polygonal approximation - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -from basic_units import cm -import numpy as np -from matplotlib import patches -import matplotlib.pyplot as plt - - -xcenter, ycenter = 0.38*cm, 0.52*cm -width, height = 1e-1*cm, 3e-1*cm -angle = -30 - -theta = np.deg2rad(np.arange(0.0, 360.0, 1.0)) -x = 0.5 * width * np.cos(theta) -y = 0.5 * height * np.sin(theta) - -rtheta = np.radians(angle) -R = np.array([ - [np.cos(rtheta), -np.sin(rtheta)], - [np.sin(rtheta), np.cos(rtheta)], - ]) - - -x, y = np.dot(R, np.array([x, y])) -x += xcenter -y += ycenter - -############################################################################### - -fig = plt.figure() -ax = fig.add_subplot(211, aspect='auto') -ax.fill(x, y, alpha=0.2, facecolor='yellow', - edgecolor='yellow', linewidth=1, zorder=1) - -e1 = patches.Ellipse((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - -ax.add_patch(e1) - -ax = fig.add_subplot(212, aspect='equal') -ax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1) -e2 = patches.Ellipse((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - - -ax.add_patch(e2) -fig.savefig('ellipse_compare') - -############################################################################### - -fig = plt.figure() -ax = fig.add_subplot(211, aspect='auto') -ax.fill(x, y, alpha=0.2, facecolor='yellow', - edgecolor='yellow', linewidth=1, zorder=1) - -e1 = patches.Arc((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - -ax.add_patch(e1) - -ax = fig.add_subplot(212, aspect='equal') -ax.fill(x, y, alpha=0.2, facecolor='green', edgecolor='green', zorder=1) -e2 = patches.Arc((xcenter, ycenter), width, height, - angle=angle, linewidth=2, fill=False, zorder=2) - - -ax.add_patch(e2) -fig.savefig('arc_compare') - -plt.show() diff --git a/_downloads/9e7a113e24611c98a409d35d08b1d8a9/mathtext.py b/_downloads/9e7a113e24611c98a409d35d08b1d8a9/mathtext.py deleted file mode 120000 index d48ecdd45cf..00000000000 --- a/_downloads/9e7a113e24611c98a409d35d08b1d8a9/mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9e7a113e24611c98a409d35d08b1d8a9/mathtext.py \ No newline at end of file diff --git a/_downloads/9e85b797f6fb0ea4d61a30b7780a968e/subplot_demo.ipynb b/_downloads/9e85b797f6fb0ea4d61a30b7780a968e/subplot_demo.ipynb deleted file mode 100644 index 640dc9cb6b9..00000000000 --- a/_downloads/9e85b797f6fb0ea4d61a30b7780a968e/subplot_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Basic Subplot Demo\n\n\nDemo with two subplots.\nFor more options, see\n:doc:`/gallery/subplots_axes_and_figures/subplots_demo`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Data for plotting\nx1 = np.linspace(0.0, 5.0)\nx2 = np.linspace(0.0, 2.0)\ny1 = np.cos(2 * np.pi * x1) * np.exp(-x1)\ny2 = np.cos(2 * np.pi * x2)\n\n# Create two subplots sharing y axis\nfig, (ax1, ax2) = plt.subplots(2, sharey=True)\n\nax1.plot(x1, y1, 'ko-')\nax1.set(title='A tale of 2 subplots', ylabel='Damped oscillation')\n\nax2.plot(x2, y2, 'r.-')\nax2.set(xlabel='time (s)', ylabel='Undamped')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9e88d30ceef73bc9eb5d8b564637f8f4/log_test.py b/_downloads/9e88d30ceef73bc9eb5d8b564637f8f4/log_test.py deleted file mode 120000 index 6c46e61055e..00000000000 --- a/_downloads/9e88d30ceef73bc9eb5d8b564637f8f4/log_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/9e88d30ceef73bc9eb5d8b564637f8f4/log_test.py \ No newline at end of file diff --git a/_downloads/9e98467fc7dd017d5f516684853304b0/pcolor_demo.ipynb b/_downloads/9e98467fc7dd017d5f516684853304b0/pcolor_demo.ipynb deleted file mode 100644 index de1226e826f..00000000000 --- a/_downloads/9e98467fc7dd017d5f516684853304b0/pcolor_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pcolor Demo\n\n\nGenerating images with :meth:`~.axes.Axes.pcolor`.\n\nPcolor allows you to generate 2-D image-style plots. Below we will show how\nto do so in Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.colors import LogNorm" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A simple pcolor demo\n--------------------\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Z = np.random.rand(6, 10)\n\nfig, (ax0, ax1) = plt.subplots(2, 1)\n\nc = ax0.pcolor(Z)\nax0.set_title('default: no edges')\n\nc = ax1.pcolor(Z, edgecolors='k', linewidths=4)\nax1.set_title('thick edges')\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Comparing pcolor with similar functions\n---------------------------------------\n\nDemonstrates similarities between :meth:`~.axes.Axes.pcolor`,\n:meth:`~.axes.Axes.pcolormesh`, :meth:`~.axes.Axes.imshow` and\n:meth:`~.axes.Axes.pcolorfast` for drawing quadrilateral grids.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# make these smaller to increase the resolution\ndx, dy = 0.15, 0.05\n\n# generate 2 2d grids for the x & y bounds\ny, x = np.mgrid[slice(-3, 3 + dy, dy),\n slice(-3, 3 + dx, dx)]\nz = (1 - x / 2. + x ** 5 + y ** 3) * np.exp(-x ** 2 - y ** 2)\n# x and y are bounds, so z should be the value *inside* those bounds.\n# Therefore, remove the last value from the z array.\nz = z[:-1, :-1]\nz_min, z_max = -np.abs(z).max(), np.abs(z).max()\n\nfig, axs = plt.subplots(2, 2)\n\nax = axs[0, 0]\nc = ax.pcolor(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max)\nax.set_title('pcolor')\nfig.colorbar(c, ax=ax)\n\nax = axs[0, 1]\nc = ax.pcolormesh(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max)\nax.set_title('pcolormesh')\nfig.colorbar(c, ax=ax)\n\nax = axs[1, 0]\nc = ax.imshow(z, cmap='RdBu', vmin=z_min, vmax=z_max,\n extent=[x.min(), x.max(), y.min(), y.max()],\n interpolation='nearest', origin='lower')\nax.set_title('image (nearest)')\nfig.colorbar(c, ax=ax)\n\nax = axs[1, 1]\nc = ax.pcolorfast(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max)\nax.set_title('pcolorfast')\nfig.colorbar(c, ax=ax)\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Pcolor with a log scale\n-----------------------\n\nThe following shows pcolor plots with a log scale.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out.\n# Needs to have z/colour axis on a log scale so we see both hump and spike.\n# linear scale only shows the spike.\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nZ = Z1 + 50 * Z2\n\nfig, (ax0, ax1) = plt.subplots(2, 1)\n\nc = ax0.pcolor(X, Y, Z,\n norm=LogNorm(vmin=Z.min(), vmax=Z.max()), cmap='PuBu_r')\nfig.colorbar(c, ax=ax0)\n\nc = ax1.pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(c, ax=ax1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pcolor\nmatplotlib.pyplot.pcolor\nmatplotlib.axes.Axes.pcolormesh\nmatplotlib.pyplot.pcolormesh\nmatplotlib.axes.Axes.pcolorfast\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.LogNorm" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9ea16bd95fddb5afa4d9039017b8d610/scatter_with_legend.ipynb b/_downloads/9ea16bd95fddb5afa4d9039017b8d610/scatter_with_legend.ipynb deleted file mode 100644 index 1bbe89f6807..00000000000 --- a/_downloads/9ea16bd95fddb5afa4d9039017b8d610/scatter_with_legend.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plots with a legend\n\n\nTo create a scatter plot with a legend one may use a loop and create one\n`~.Axes.scatter` plot per item to appear in the legend and set the ``label``\naccordingly.\n\nThe following also demonstrates how transparency of the markers\ncan be adjusted by giving ``alpha`` a value between 0 and 1.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nnp.random.seed(19680801)\nimport matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots()\nfor color in ['tab:blue', 'tab:orange', 'tab:green']:\n n = 750\n x, y = np.random.rand(2, n)\n scale = 200.0 * np.random.rand(n)\n ax.scatter(x, y, c=color, s=scale, label=color,\n alpha=0.3, edgecolors='none')\n\nax.legend()\nax.grid(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nAutomated legend creation\n-------------------------\n\nAnother option for creating a legend for a scatter is to use the\n:class:`~matplotlib.collections.PathCollection`'s\n:meth:`~.PathCollection.legend_elements` method.\nIt will automatically try to determine a useful number of legend entries\nto be shown and return a tuple of handles and labels. Those can be passed\nto the call to :meth:`~.axes.Axes.legend`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 45\nx, y = np.random.rand(2, N)\nc = np.random.randint(1, 5, size=N)\ns = np.random.randint(10, 220, size=N)\n\nfig, ax = plt.subplots()\n\nscatter = ax.scatter(x, y, c=c, s=s)\n\n# produce a legend with the unique colors from the scatter\nlegend1 = ax.legend(*scatter.legend_elements(),\n loc=\"lower left\", title=\"Classes\")\nax.add_artist(legend1)\n\n# produce a legend with a cross section of sizes from the scatter\nhandles, labels = scatter.legend_elements(prop=\"sizes\", alpha=0.6)\nlegend2 = ax.legend(handles, labels, loc=\"upper right\", title=\"Sizes\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Further arguments to the :meth:`~.PathCollection.legend_elements` method\ncan be used to steer how many legend entries are to be created and how they\nshould be labeled. The following shows how to use some of them.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "volume = np.random.rayleigh(27, size=40)\namount = np.random.poisson(10, size=40)\nranking = np.random.normal(size=40)\nprice = np.random.uniform(1, 10, size=40)\n\nfig, ax = plt.subplots()\n\n# Because the price is much too small when being provided as size for ``s``,\n# we normalize it to some useful point sizes, s=0.3*(price*3)**2\nscatter = ax.scatter(volume, amount, c=ranking, s=0.3*(price*3)**2,\n vmin=-3, vmax=3, cmap=\"Spectral\")\n\n# Produce a legend for the ranking (colors). Even though there are 40 different\n# rankings, we only want to show 5 of them in the legend.\nlegend1 = ax.legend(*scatter.legend_elements(num=5),\n loc=\"upper left\", title=\"Ranking\")\nax.add_artist(legend1)\n\n# Produce a legend for the price (sizes). Because we want to show the prices\n# in dollars, we use the *func* argument to supply the inverse of the function\n# used to calculate the sizes from above. The *fmt* ensures to show the price\n# in dollars. Note how we target at 5 elements here, but obtain only 4 in the\n# created legend due to the automatic round prices that are chosen for us.\nkw = dict(prop=\"sizes\", num=5, color=scatter.cmap(0.7), fmt=\"$ {x:.2f}\",\n func=lambda s: np.sqrt(s/.3)/3)\nlegend2 = ax.legend(*scatter.legend_elements(**kw),\n loc=\"lower right\", title=\"Price\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe usage of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.scatter\nmatplotlib.pyplot.scatter\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.collections.PathCollection.legend_elements" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9ea34255ad059512650b158f3c8a4aeb/load_converter.py b/_downloads/9ea34255ad059512650b158f3c8a4aeb/load_converter.py deleted file mode 100644 index 5f0d7940f1c..00000000000 --- a/_downloads/9ea34255ad059512650b158f3c8a4aeb/load_converter.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============== -Load converter -============== - -This example demonstrates passing a custom converter to `numpy.genfromtxt` to -extract dates from a CSV file. -""" - -import dateutil.parser -from matplotlib import cbook, dates -import matplotlib.pyplot as plt -import numpy as np - - -datafile = cbook.get_sample_data('msft.csv', asfileobj=False) -print('loading', datafile) - -data = np.genfromtxt( - datafile, delimiter=',', names=True, - dtype=None, converters={0: dateutil.parser.parse}) - -fig, ax = plt.subplots() -ax.plot(data['Date'], data['High'], '-') -fig.autofmt_xdate() -plt.show() diff --git a/_downloads/9eb3bf342b983673e5d18e3bcea94683/frame_grabbing_sgskip.py b/_downloads/9eb3bf342b983673e5d18e3bcea94683/frame_grabbing_sgskip.py deleted file mode 100644 index e74576249aa..00000000000 --- a/_downloads/9eb3bf342b983673e5d18e3bcea94683/frame_grabbing_sgskip.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -============== -Frame grabbing -============== - -Use a MovieWriter directly to grab individual frames and write them to a -file. This avoids any event loop integration, and thus works even with the Agg -backend. This is not recommended for use in an interactive setting. -""" - -import numpy as np -import matplotlib -matplotlib.use("Agg") -import matplotlib.pyplot as plt -from matplotlib.animation import FFMpegWriter - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -metadata = dict(title='Movie Test', artist='Matplotlib', - comment='Movie support!') -writer = FFMpegWriter(fps=15, metadata=metadata) - -fig = plt.figure() -l, = plt.plot([], [], 'k-o') - -plt.xlim(-5, 5) -plt.ylim(-5, 5) - -x0, y0 = 0, 0 - -with writer.saving(fig, "writer_test.mp4", 100): - for i in range(100): - x0 += 0.1 * np.random.randn() - y0 += 0.1 * np.random.randn() - l.set_data(x0, y0) - writer.grab_frame() diff --git a/_downloads/9ec5104086c4cee130be2c1a63dfd4d6/pyplot_mathtext.py b/_downloads/9ec5104086c4cee130be2c1a63dfd4d6/pyplot_mathtext.py deleted file mode 120000 index d5245ce51f7..00000000000 --- a/_downloads/9ec5104086c4cee130be2c1a63dfd4d6/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9ec5104086c4cee130be2c1a63dfd4d6/pyplot_mathtext.py \ No newline at end of file diff --git a/_downloads/9ed62c573caef58daa9451c15be03167/keypress_demo.ipynb b/_downloads/9ed62c573caef58daa9451c15be03167/keypress_demo.ipynb deleted file mode 120000 index 4832712d736..00000000000 --- a/_downloads/9ed62c573caef58daa9451c15be03167/keypress_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9ed62c573caef58daa9451c15be03167/keypress_demo.ipynb \ No newline at end of file diff --git a/_downloads/9edc866078c8d2f5c4b1d68a9856d0fc/engineering_formatter.py b/_downloads/9edc866078c8d2f5c4b1d68a9856d0fc/engineering_formatter.py deleted file mode 120000 index 10bcd82e114..00000000000 --- a/_downloads/9edc866078c8d2f5c4b1d68a9856d0fc/engineering_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9edc866078c8d2f5c4b1d68a9856d0fc/engineering_formatter.py \ No newline at end of file diff --git a/_downloads/9edef343f5892fd36f10a1f33099c516/axis_direction_demo_step01.py b/_downloads/9edef343f5892fd36f10a1f33099c516/axis_direction_demo_step01.py deleted file mode 100644 index df5d8e57017..00000000000 --- a/_downloads/9edef343f5892fd36f10a1f33099c516/axis_direction_demo_step01.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -========================== -Axis Direction Demo Step01 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - ax.axis[:].set_visible(False) - - ax.axis["x"] = ax.new_floating_axis(1, 0.5) - ax.axis["x"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(3, 2.5)) -fig.subplots_adjust(top=0.8) -ax1 = setup_axes(fig, "111") - -ax1.axis["x"].set_axis_direction("left") - -plt.show() diff --git a/_downloads/9ee48b8f0efb1263257dd51a979b7e74/pipong.py b/_downloads/9ee48b8f0efb1263257dd51a979b7e74/pipong.py deleted file mode 120000 index 348c80c1afd..00000000000 --- a/_downloads/9ee48b8f0efb1263257dd51a979b7e74/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9ee48b8f0efb1263257dd51a979b7e74/pipong.py \ No newline at end of file diff --git a/_downloads/9ee5329d3391cff4bcdeb7786d4cc9c4/pgf_fonts.ipynb b/_downloads/9ee5329d3391cff4bcdeb7786d4cc9c4/pgf_fonts.ipynb deleted file mode 120000 index f1faa48054c..00000000000 --- a/_downloads/9ee5329d3391cff4bcdeb7786d4cc9c4/pgf_fonts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9ee5329d3391cff4bcdeb7786d4cc9c4/pgf_fonts.ipynb \ No newline at end of file diff --git a/_downloads/9ee6fa8ef30a30648a2c41743c24d783/evans_test.ipynb b/_downloads/9ee6fa8ef30a30648a2c41743c24d783/evans_test.ipynb deleted file mode 120000 index 1cf612b8fbc..00000000000 --- a/_downloads/9ee6fa8ef30a30648a2c41743c24d783/evans_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9ee6fa8ef30a30648a2c41743c24d783/evans_test.ipynb \ No newline at end of file diff --git a/_downloads/9ef69631965afeca01de4c5ac9e56e25/skewt.py b/_downloads/9ef69631965afeca01de4c5ac9e56e25/skewt.py deleted file mode 120000 index d4128baff66..00000000000 --- a/_downloads/9ef69631965afeca01de4c5ac9e56e25/skewt.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9ef69631965afeca01de4c5ac9e56e25/skewt.py \ No newline at end of file diff --git a/_downloads/9ef730a1072e50278be2e652af1a9501/annotate_explain.py b/_downloads/9ef730a1072e50278be2e652af1a9501/annotate_explain.py deleted file mode 100644 index c6410798527..00000000000 --- a/_downloads/9ef730a1072e50278be2e652af1a9501/annotate_explain.py +++ /dev/null @@ -1,83 +0,0 @@ -""" -================ -Annotate Explain -================ - -""" - -import matplotlib.pyplot as plt -import matplotlib.patches as mpatches - - -fig, axs = plt.subplots(2, 2) -x1, y1 = 0.3, 0.3 -x2, y2 = 0.7, 0.7 - -ax = axs.flat[0] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="-", - color="0.5", - patchB=None, - shrinkB=0, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "connect", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[1] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="-", - color="0.5", - patchB=el, - shrinkB=0, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "clip", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[2] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="-", - color="0.5", - patchB=el, - shrinkB=5, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "shrink", transform=ax.transAxes, ha="left", va="top") - -ax = axs.flat[3] -ax.plot([x1, x2], [y1, y2], ".") -el = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.2) -ax.add_artist(el) -ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="fancy", - color="0.5", - patchB=el, - shrinkB=5, - connectionstyle="arc3,rad=0.3", - ), - ) -ax.text(.05, .95, "mutate", transform=ax.transAxes, ha="left", va="top") - -for ax in axs.flat: - ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1) - -plt.show() diff --git a/_downloads/9ef80ad6fa3defcdd05c3f50f07421c8/dollar_ticks.ipynb b/_downloads/9ef80ad6fa3defcdd05c3f50f07421c8/dollar_ticks.ipynb deleted file mode 100644 index 47c325c78cd..00000000000 --- a/_downloads/9ef80ad6fa3defcdd05c3f50f07421c8/dollar_ticks.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dollar Ticks\n\n\nUse a `~.ticker.FormatStrFormatter` to prepend dollar signs on y axis labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\nax.plot(100*np.random.rand(20))\n\nformatter = ticker.FormatStrFormatter('$%1.2f')\nax.yaxis.set_major_formatter(formatter)\n\nfor tick in ax.yaxis.get_major_ticks():\n tick.label1.set_visible(False)\n tick.label2.set_visible(True)\n tick.label2.set_color('green')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.ticker\nmatplotlib.ticker.FormatStrFormatter\nmatplotlib.axis.Axis.set_major_formatter\nmatplotlib.axis.Axis.get_major_ticks\nmatplotlib.axis.Tick" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9f01e34e44bf384a3ea53ae63e11d59d/histogram_cumulative.ipynb b/_downloads/9f01e34e44bf384a3ea53ae63e11d59d/histogram_cumulative.ipynb deleted file mode 120000 index 22a6e68f492..00000000000 --- a/_downloads/9f01e34e44bf384a3ea53ae63e11d59d/histogram_cumulative.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9f01e34e44bf384a3ea53ae63e11d59d/histogram_cumulative.ipynb \ No newline at end of file diff --git a/_downloads/9f036d74dfeb81da27ff317136c99d65/demo_text_path.py b/_downloads/9f036d74dfeb81da27ff317136c99d65/demo_text_path.py deleted file mode 120000 index 02d6992a09a..00000000000 --- a/_downloads/9f036d74dfeb81da27ff317136c99d65/demo_text_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9f036d74dfeb81da27ff317136c99d65/demo_text_path.py \ No newline at end of file diff --git a/_downloads/9f10bf79fdc06209eb0df3cd3f355d71/colormaps.ipynb b/_downloads/9f10bf79fdc06209eb0df3cd3f355d71/colormaps.ipynb deleted file mode 120000 index ed20e0ad2e0..00000000000 --- a/_downloads/9f10bf79fdc06209eb0df3cd3f355d71/colormaps.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9f10bf79fdc06209eb0df3cd3f355d71/colormaps.ipynb \ No newline at end of file diff --git a/_downloads/9f11dc3b73ba069017149818f542d735/csd_demo.ipynb b/_downloads/9f11dc3b73ba069017149818f542d735/csd_demo.ipynb deleted file mode 120000 index 382bc79707e..00000000000 --- a/_downloads/9f11dc3b73ba069017149818f542d735/csd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9f11dc3b73ba069017149818f542d735/csd_demo.ipynb \ No newline at end of file diff --git a/_downloads/9f155b12d52020ad0807f88ec7f4c73c/leftventricle_bulleye.ipynb b/_downloads/9f155b12d52020ad0807f88ec7f4c73c/leftventricle_bulleye.ipynb deleted file mode 100644 index 71abdf426d4..00000000000 --- a/_downloads/9f155b12d52020ad0807f88ec7f4c73c/leftventricle_bulleye.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Left ventricle bullseye\n\n\nThis example demonstrates how to create the 17 segment model for the left\nventricle recommended by the American Heart Association (AHA).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\n\n\ndef bullseye_plot(ax, data, seg_bold=None, cmap=None, norm=None):\n \"\"\"\n Bullseye representation for the left ventricle.\n\n Parameters\n ----------\n ax : axes\n data : list of int and float\n The intensity values for each of the 17 segments\n seg_bold : list of int, optional\n A list with the segments to highlight\n cmap : ColorMap or None, optional\n Optional argument to set the desired colormap\n norm : Normalize or None, optional\n Optional argument to normalize data into the [0.0, 1.0] range\n\n\n Notes\n -----\n This function create the 17 segment model for the left ventricle according\n to the American Heart Association (AHA) [1]_\n\n References\n ----------\n .. [1] M. D. Cerqueira, N. J. Weissman, V. Dilsizian, A. K. Jacobs,\n S. Kaul, W. K. Laskey, D. J. Pennell, J. A. Rumberger, T. Ryan,\n and M. S. Verani, \"Standardized myocardial segmentation and\n nomenclature for tomographic imaging of the heart\",\n Circulation, vol. 105, no. 4, pp. 539-542, 2002.\n \"\"\"\n if seg_bold is None:\n seg_bold = []\n\n linewidth = 2\n data = np.array(data).ravel()\n\n if cmap is None:\n cmap = plt.cm.viridis\n\n if norm is None:\n norm = mpl.colors.Normalize(vmin=data.min(), vmax=data.max())\n\n theta = np.linspace(0, 2 * np.pi, 768)\n r = np.linspace(0.2, 1, 4)\n\n # Create the bound for the segment 17\n for i in range(r.shape[0]):\n ax.plot(theta, np.repeat(r[i], theta.shape), '-k', lw=linewidth)\n\n # Create the bounds for the segments 1-12\n for i in range(6):\n theta_i = np.deg2rad(i * 60)\n ax.plot([theta_i, theta_i], [r[1], 1], '-k', lw=linewidth)\n\n # Create the bounds for the segments 13-16\n for i in range(4):\n theta_i = np.deg2rad(i * 90 - 45)\n ax.plot([theta_i, theta_i], [r[0], r[1]], '-k', lw=linewidth)\n\n # Fill the segments 1-6\n r0 = r[2:4]\n r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T\n for i in range(6):\n # First segment start at 60 degrees\n theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60)\n theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1)\n z = np.ones((128, 2)) * data[i]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if i + 1 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n ax.plot(theta0[0], [r[2], r[3]], '-k', lw=linewidth + 1)\n ax.plot(theta0[-1], [r[2], r[3]], '-k', lw=linewidth + 1)\n\n # Fill the segments 7-12\n r0 = r[1:3]\n r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T\n for i in range(6):\n # First segment start at 60 degrees\n theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60)\n theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1)\n z = np.ones((128, 2)) * data[i + 6]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if i + 7 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n ax.plot(theta0[0], [r[1], r[2]], '-k', lw=linewidth + 1)\n ax.plot(theta0[-1], [r[1], r[2]], '-k', lw=linewidth + 1)\n\n # Fill the segments 13-16\n r0 = r[0:2]\n r0 = np.repeat(r0[:, np.newaxis], 192, axis=1).T\n for i in range(4):\n # First segment start at 45 degrees\n theta0 = theta[i * 192:i * 192 + 192] + np.deg2rad(45)\n theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1)\n z = np.ones((192, 2)) * data[i + 12]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if i + 13 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n ax.plot(theta0[0], [r[0], r[1]], '-k', lw=linewidth + 1)\n ax.plot(theta0[-1], [r[0], r[1]], '-k', lw=linewidth + 1)\n\n # Fill the segments 17\n if data.size == 17:\n r0 = np.array([0, r[0]])\n r0 = np.repeat(r0[:, np.newaxis], theta.size, axis=1).T\n theta0 = np.repeat(theta[:, np.newaxis], 2, axis=1)\n z = np.ones((theta.size, 2)) * data[16]\n ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm)\n if 17 in seg_bold:\n ax.plot(theta0, r0, '-k', lw=linewidth + 2)\n\n ax.set_ylim([0, 1])\n ax.set_yticklabels([])\n ax.set_xticklabels([])\n\n\n# Create the fake data\ndata = np.array(range(17)) + 1\n\n\n# Make a figure and axes with dimensions as desired.\nfig, ax = plt.subplots(figsize=(12, 8), nrows=1, ncols=3,\n subplot_kw=dict(projection='polar'))\nfig.canvas.set_window_title('Left Ventricle Bulls Eyes (AHA)')\n\n# Create the axis for the colorbars\naxl = fig.add_axes([0.14, 0.15, 0.2, 0.05])\naxl2 = fig.add_axes([0.41, 0.15, 0.2, 0.05])\naxl3 = fig.add_axes([0.69, 0.15, 0.2, 0.05])\n\n\n# Set the colormap and norm to correspond to the data for which\n# the colorbar will be used.\ncmap = mpl.cm.viridis\nnorm = mpl.colors.Normalize(vmin=1, vmax=17)\n\n# ColorbarBase derives from ScalarMappable and puts a colorbar\n# in a specified axes, so it has everything needed for a\n# standalone colorbar. There are many more kwargs, but the\n# following gives a basic continuous colorbar with ticks\n# and labels.\ncb1 = mpl.colorbar.ColorbarBase(axl, cmap=cmap, norm=norm,\n orientation='horizontal')\ncb1.set_label('Some Units')\n\n\n# Set the colormap and norm to correspond to the data for which\n# the colorbar will be used.\ncmap2 = mpl.cm.cool\nnorm2 = mpl.colors.Normalize(vmin=1, vmax=17)\n\n# ColorbarBase derives from ScalarMappable and puts a colorbar\n# in a specified axes, so it has everything needed for a\n# standalone colorbar. There are many more kwargs, but the\n# following gives a basic continuous colorbar with ticks\n# and labels.\ncb2 = mpl.colorbar.ColorbarBase(axl2, cmap=cmap2, norm=norm2,\n orientation='horizontal')\ncb2.set_label('Some other units')\n\n\n# The second example illustrates the use of a ListedColormap, a\n# BoundaryNorm, and extended ends to show the \"over\" and \"under\"\n# value colors.\ncmap3 = mpl.colors.ListedColormap(['r', 'g', 'b', 'c'])\ncmap3.set_over('0.35')\ncmap3.set_under('0.75')\n\n# If a ListedColormap is used, the length of the bounds array must be\n# one greater than the length of the color list. The bounds must be\n# monotonically increasing.\nbounds = [2, 3, 7, 9, 15]\nnorm3 = mpl.colors.BoundaryNorm(bounds, cmap3.N)\ncb3 = mpl.colorbar.ColorbarBase(axl3, cmap=cmap3, norm=norm3,\n # to use 'extend', you must\n # specify two extra boundaries:\n boundaries=[0] + bounds + [18],\n extend='both',\n ticks=bounds, # optional\n spacing='proportional',\n orientation='horizontal')\ncb3.set_label('Discrete intervals, some other units')\n\n\n# Create the 17 segment model\nbullseye_plot(ax[0], data, cmap=cmap, norm=norm)\nax[0].set_title('Bulls Eye (AHA)')\n\nbullseye_plot(ax[1], data, cmap=cmap2, norm=norm2)\nax[1].set_title('Bulls Eye (AHA)')\n\nbullseye_plot(ax[2], data, seg_bold=[3, 5, 6, 11, 12, 16],\n cmap=cmap3, norm=norm3)\nax[2].set_title('Segments [3,5,6,11,12,16] in bold')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9f156457174e314294e1b8df29d34724/marker_fillstyle_reference.py b/_downloads/9f156457174e314294e1b8df29d34724/marker_fillstyle_reference.py deleted file mode 120000 index 03a2c351684..00000000000 --- a/_downloads/9f156457174e314294e1b8df29d34724/marker_fillstyle_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9f156457174e314294e1b8df29d34724/marker_fillstyle_reference.py \ No newline at end of file diff --git a/_downloads/9f1987c7258c5b2d2b6a74c254e79624/agg_buffer.py b/_downloads/9f1987c7258c5b2d2b6a74c254e79624/agg_buffer.py deleted file mode 120000 index 547e660ff62..00000000000 --- a/_downloads/9f1987c7258c5b2d2b6a74c254e79624/agg_buffer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9f1987c7258c5b2d2b6a74c254e79624/agg_buffer.py \ No newline at end of file diff --git a/_downloads/9f28ab6a9957702d2b00de295200de2f/pie_demo2.ipynb b/_downloads/9f28ab6a9957702d2b00de295200de2f/pie_demo2.ipynb deleted file mode 120000 index 812341d2632..00000000000 --- a/_downloads/9f28ab6a9957702d2b00de295200de2f/pie_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9f28ab6a9957702d2b00de295200de2f/pie_demo2.ipynb \ No newline at end of file diff --git a/_downloads/9f3192fb37db205664591521c93a446e/embedding_in_gtk3_sgskip.py b/_downloads/9f3192fb37db205664591521c93a446e/embedding_in_gtk3_sgskip.py deleted file mode 100644 index eae425e520a..00000000000 --- a/_downloads/9f3192fb37db205664591521c93a446e/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -================= -Embedding in GTK3 -================= - -Demonstrate adding a FigureCanvasGTK3Agg widget to a Gtk.ScrolledWindow using -GTK3 accessed via pygobject. -""" - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - -from matplotlib.backends.backend_gtk3agg import ( - FigureCanvasGTK3Agg as FigureCanvas) -from matplotlib.figure import Figure -import numpy as np - -win = Gtk.Window() -win.connect("delete-event", Gtk.main_quit) -win.set_default_size(400, 300) -win.set_title("Embedding in GTK") - -f = Figure(figsize=(5, 4), dpi=100) -a = f.add_subplot(111) -t = np.arange(0.0, 3.0, 0.01) -s = np.sin(2*np.pi*t) -a.plot(t, s) - -sw = Gtk.ScrolledWindow() -win.add(sw) -# A scrolled window border goes outside the scrollbars and viewport -sw.set_border_width(10) - -canvas = FigureCanvas(f) # a Gtk.DrawingArea -canvas.set_size_request(800, 600) -sw.add_with_viewport(canvas) - -win.show_all() -Gtk.main() diff --git a/_downloads/9f3bf0432e29938f7055be06b9778fb1/animation_demo.py b/_downloads/9f3bf0432e29938f7055be06b9778fb1/animation_demo.py deleted file mode 120000 index f15cd96da61..00000000000 --- a/_downloads/9f3bf0432e29938f7055be06b9778fb1/animation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9f3bf0432e29938f7055be06b9778fb1/animation_demo.py \ No newline at end of file diff --git a/_downloads/9f3d176be895661ff5c081a6a0d818ab/mplot3d.ipynb b/_downloads/9f3d176be895661ff5c081a6a0d818ab/mplot3d.ipynb deleted file mode 120000 index 144f15cd0c8..00000000000 --- a/_downloads/9f3d176be895661ff5c081a6a0d818ab/mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9f3d176be895661ff5c081a6a0d818ab/mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/9f451f0dbd92133330eb46ae57013b6d/common_date_problems.ipynb b/_downloads/9f451f0dbd92133330eb46ae57013b6d/common_date_problems.ipynb deleted file mode 120000 index 4d1187ca7bc..00000000000 --- a/_downloads/9f451f0dbd92133330eb46ae57013b6d/common_date_problems.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9f451f0dbd92133330eb46ae57013b6d/common_date_problems.ipynb \ No newline at end of file diff --git a/_downloads/9f52da14435fc6071e4e8aab91f621a0/anchored_box04.ipynb b/_downloads/9f52da14435fc6071e4e8aab91f621a0/anchored_box04.ipynb deleted file mode 120000 index eb8ee470506..00000000000 --- a/_downloads/9f52da14435fc6071e4e8aab91f621a0/anchored_box04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9f52da14435fc6071e4e8aab91f621a0/anchored_box04.ipynb \ No newline at end of file diff --git a/_downloads/9f541044df988ea64594333bfb2b00df/sankey_rankine.py b/_downloads/9f541044df988ea64594333bfb2b00df/sankey_rankine.py deleted file mode 100644 index 379d2d65f7b..00000000000 --- a/_downloads/9f541044df988ea64594333bfb2b00df/sankey_rankine.py +++ /dev/null @@ -1,100 +0,0 @@ -""" -=================== -Rankine power cycle -=================== - -Demonstrate the Sankey class with a practical example of a Rankine power cycle. -""" - -import matplotlib.pyplot as plt - -from matplotlib.sankey import Sankey - -fig = plt.figure(figsize=(8, 9)) -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], - title="Rankine Power Cycle: Example 8.6 from Moran and " - "Shapiro\n\x22Fundamentals of Engineering Thermodynamics " - "\x22, 6th ed., 2008") -Hdot = [260.431, 35.078, 180.794, 221.115, 22.700, - 142.361, 10.193, 10.210, 43.670, 44.312, - 68.631, 10.758, 10.758, 0.017, 0.642, - 232.121, 44.559, 100.613, 132.168] # MW -sankey = Sankey(ax=ax, format='%.3G', unit=' MW', gap=0.5, scale=1.0/Hdot[0]) -sankey.add(patchlabel='\n\nPump 1', rotation=90, facecolor='#37c959', - flows=[Hdot[13], Hdot[6], -Hdot[7]], - labels=['Shaft power', '', None], - pathlengths=[0.4, 0.883, 0.25], - orientations=[1, -1, 0]) -sankey.add(patchlabel='\n\nOpen\nheater', facecolor='#37c959', - flows=[Hdot[11], Hdot[7], Hdot[4], -Hdot[8]], - labels=[None, '', None, None], - pathlengths=[0.25, 0.25, 1.93, 0.25], - orientations=[1, 0, -1, 0], prior=0, connect=(2, 1)) -sankey.add(patchlabel='\n\nPump 2', facecolor='#37c959', - flows=[Hdot[14], Hdot[8], -Hdot[9]], - labels=['Shaft power', '', None], - pathlengths=[0.4, 0.25, 0.25], - orientations=[1, 0, 0], prior=1, connect=(3, 1)) -sankey.add(patchlabel='Closed\nheater', trunklength=2.914, fc='#37c959', - flows=[Hdot[9], Hdot[1], -Hdot[11], -Hdot[10]], - pathlengths=[0.25, 1.543, 0.25, 0.25], - labels=['', '', None, None], - orientations=[0, -1, 1, -1], prior=2, connect=(2, 0)) -sankey.add(patchlabel='Trap', facecolor='#37c959', trunklength=5.102, - flows=[Hdot[11], -Hdot[12]], - labels=['\n', None], - pathlengths=[1.0, 1.01], - orientations=[1, 1], prior=3, connect=(2, 0)) -sankey.add(patchlabel='Steam\ngenerator', facecolor='#ff5555', - flows=[Hdot[15], Hdot[10], Hdot[2], -Hdot[3], -Hdot[0]], - labels=['Heat rate', '', '', None, None], - pathlengths=0.25, - orientations=[1, 0, -1, -1, -1], prior=3, connect=(3, 1)) -sankey.add(patchlabel='\n\n\nTurbine 1', facecolor='#37c959', - flows=[Hdot[0], -Hdot[16], -Hdot[1], -Hdot[2]], - labels=['', None, None, None], - pathlengths=[0.25, 0.153, 1.543, 0.25], - orientations=[0, 1, -1, -1], prior=5, connect=(4, 0)) -sankey.add(patchlabel='\n\n\nReheat', facecolor='#37c959', - flows=[Hdot[2], -Hdot[2]], - labels=[None, None], - pathlengths=[0.725, 0.25], - orientations=[-1, 0], prior=6, connect=(3, 0)) -sankey.add(patchlabel='Turbine 2', trunklength=3.212, facecolor='#37c959', - flows=[Hdot[3], Hdot[16], -Hdot[5], -Hdot[4], -Hdot[17]], - labels=[None, 'Shaft power', None, '', 'Shaft power'], - pathlengths=[0.751, 0.15, 0.25, 1.93, 0.25], - orientations=[0, -1, 0, -1, 1], prior=6, connect=(1, 1)) -sankey.add(patchlabel='Condenser', facecolor='#58b1fa', trunklength=1.764, - flows=[Hdot[5], -Hdot[18], -Hdot[6]], - labels=['', 'Heat rate', None], - pathlengths=[0.45, 0.25, 0.883], - orientations=[-1, 1, 0], prior=8, connect=(2, 0)) -diagrams = sankey.finish() -for diagram in diagrams: - diagram.text.set_fontweight('bold') - diagram.text.set_fontsize('10') - for text in diagram.texts: - text.set_fontsize('10') -# Notice that the explicit connections are handled automatically, but the -# implicit ones currently are not. The lengths of the paths and the trunks -# must be adjusted manually, and that is a bit tricky. - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.sankey -matplotlib.sankey.Sankey -matplotlib.sankey.Sankey.add -matplotlib.sankey.Sankey.finish diff --git a/_downloads/9f5ac9b6a2f945faef991888593fb878/surface3d_radial.ipynb b/_downloads/9f5ac9b6a2f945faef991888593fb878/surface3d_radial.ipynb deleted file mode 120000 index c721c6113f9..00000000000 --- a/_downloads/9f5ac9b6a2f945faef991888593fb878/surface3d_radial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9f5ac9b6a2f945faef991888593fb878/surface3d_radial.ipynb \ No newline at end of file diff --git a/_downloads/9f5af95225ff5984a6cc962463c43459/lifecycle.py b/_downloads/9f5af95225ff5984a6cc962463c43459/lifecycle.py deleted file mode 100644 index 515c3b1c75f..00000000000 --- a/_downloads/9f5af95225ff5984a6cc962463c43459/lifecycle.py +++ /dev/null @@ -1,271 +0,0 @@ -""" -======================= -The Lifecycle of a Plot -======================= - -This tutorial aims to show the beginning, middle, and end of a single -visualization using Matplotlib. We'll begin with some raw data and -end by saving a figure of a customized visualization. Along the way we'll try -to highlight some neat features and best-practices using Matplotlib. - -.. currentmodule:: matplotlib - -.. note:: - - This tutorial is based off of - `this excellent blog post `_ - by Chris Moffitt. It was transformed into this tutorial by Chris Holdgraf. - -A note on the Object-Oriented API vs Pyplot -=========================================== - -Matplotlib has two interfaces. The first is an object-oriented (OO) -interface. In this case, we utilize an instance of :class:`axes.Axes` -in order to render visualizations on an instance of :class:`figure.Figure`. - -The second is based on MATLAB and uses a state-based interface. This is -encapsulated in the :mod:`pyplot` module. See the :doc:`pyplot tutorials -` for a more in-depth look at the pyplot -interface. - -Most of the terms are straightforward but the main thing to remember -is that: - -* The Figure is the final image that may contain 1 or more Axes. -* The Axes represent an individual plot (don't confuse this with the word - "axis", which refers to the x/y axis of a plot). - -We call methods that do the plotting directly from the Axes, which gives -us much more flexibility and power in customizing our plot. - -.. note:: - - In general, try to use the object-oriented interface over the pyplot - interface. - -Our data -======== - -We'll use the data from the post from which this tutorial was derived. -It contains sales information for a number of companies. -""" - -# sphinx_gallery_thumbnail_number = 10 -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.ticker import FuncFormatter - -data = {'Barton LLC': 109438.50, - 'Frami, Hills and Schmidt': 103569.59, - 'Fritsch, Russel and Anderson': 112214.71, - 'Jerde-Hilpert': 112591.43, - 'Keeling LLC': 100934.30, - 'Koepp Ltd': 103660.54, - 'Kulas Inc': 137351.96, - 'Trantow-Barrows': 123381.38, - 'White-Trantow': 135841.99, - 'Will LLC': 104437.60} -group_data = list(data.values()) -group_names = list(data.keys()) -group_mean = np.mean(group_data) - -############################################################################### -# Getting started -# =============== -# -# This data is naturally visualized as a barplot, with one bar per -# group. To do this with the object-oriented approach, we'll first generate -# an instance of :class:`figure.Figure` and -# :class:`axes.Axes`. The Figure is like a canvas, and the Axes -# is a part of that canvas on which we will make a particular visualization. -# -# .. note:: -# -# Figures can have multiple axes on them. For information on how to do this, -# see the :doc:`Tight Layout tutorial -# `. - -fig, ax = plt.subplots() - -############################################################################### -# Now that we have an Axes instance, we can plot on top of it. - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) - -############################################################################### -# Controlling the style -# ===================== -# -# There are many styles available in Matplotlib in order to let you tailor -# your visualization to your needs. To see a list of styles, we can use -# :mod:`pyplot.style`. - -print(plt.style.available) - -############################################################################### -# You can activate a style with the following: - -plt.style.use('fivethirtyeight') - -############################################################################### -# Now let's remake the above plot to see how it looks: - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) - -############################################################################### -# The style controls many things, such as color, linewidths, backgrounds, -# etc. -# -# Customizing the plot -# ==================== -# -# Now we've got a plot with the general look that we want, so let's fine-tune -# it so that it's ready for print. First let's rotate the labels on the x-axis -# so that they show up more clearly. We can gain access to these labels -# with the :meth:`axes.Axes.get_xticklabels` method: - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() - -############################################################################### -# If we'd like to set the property of many items at once, it's useful to use -# the :func:`pyplot.setp` function. This will take a list (or many lists) of -# Matplotlib objects, and attempt to set some style element of each one. - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -############################################################################### -# It looks like this cut off some of the labels on the bottom. We can -# tell Matplotlib to automatically make room for elements in the figures -# that we create. To do this we'll set the ``autolayout`` value of our -# rcParams. For more information on controlling the style, layout, and -# other features of plots with rcParams, see -# :doc:`/tutorials/introductory/customizing`. - -plt.rcParams.update({'figure.autolayout': True}) - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -############################################################################### -# Next, we'll add labels to the plot. To do this with the OO interface, -# we can use the :meth:`axes.Axes.set` method to set properties of this -# Axes object. - -fig, ax = plt.subplots() -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') - -############################################################################### -# We can also adjust the size of this plot using the :func:`pyplot.subplots` -# function. We can do this with the ``figsize`` kwarg. -# -# .. note:: -# -# While indexing in NumPy follows the form (row, column), the figsize -# kwarg follows the form (width, height). This follows conventions in -# visualization, which unfortunately are different from those of linear -# algebra. - -fig, ax = plt.subplots(figsize=(8, 4)) -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') - -############################################################################### -# For labels, we can specify custom formatting guidelines in the form of -# functions by using the :class:`ticker.FuncFormatter` class. Below we'll -# define a function that takes an integer as input, and returns a string -# as an output. - - -def currency(x, pos): - """The two args are the value and tick position""" - if x >= 1e6: - s = '${:1.1f}M'.format(x*1e-6) - else: - s = '${:1.0f}K'.format(x*1e-3) - return s - -formatter = FuncFormatter(currency) - -############################################################################### -# We can then apply this formatter to the labels on our plot. To do this, -# we'll use the ``xaxis`` attribute of our axis. This lets you perform -# actions on a specific axis on our plot. - -fig, ax = plt.subplots(figsize=(6, 8)) -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') -ax.xaxis.set_major_formatter(formatter) - -############################################################################### -# Combining multiple visualizations -# ================================= -# -# It is possible to draw multiple plot elements on the same instance of -# :class:`axes.Axes`. To do this we simply need to call another one of -# the plot methods on that axes object. - -fig, ax = plt.subplots(figsize=(8, 8)) -ax.barh(group_names, group_data) -labels = ax.get_xticklabels() -plt.setp(labels, rotation=45, horizontalalignment='right') - -# Add a vertical line, here we set the style in the function call -ax.axvline(group_mean, ls='--', color='r') - -# Annotate new companies -for group in [3, 5, 8]: - ax.text(145000, group, "New Company", fontsize=10, - verticalalignment="center") - -# Now we'll move our title up since it's getting a little cramped -ax.title.set(y=1.05) - -ax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company', - title='Company Revenue') -ax.xaxis.set_major_formatter(formatter) -ax.set_xticks([0, 25e3, 50e3, 75e3, 100e3, 125e3]) -fig.subplots_adjust(right=.1) - -plt.show() - -############################################################################### -# Saving our plot -# =============== -# -# Now that we're happy with the outcome of our plot, we want to save it to -# disk. There are many file formats we can save to in Matplotlib. To see -# a list of available options, use: - -print(fig.canvas.get_supported_filetypes()) - -############################################################################### -# We can then use the :meth:`figure.Figure.savefig` in order to save the figure -# to disk. Note that there are several useful flags we'll show below: -# -# * ``transparent=True`` makes the background of the saved figure transparent -# if the format supports it. -# * ``dpi=80`` controls the resolution (dots per square inch) of the output. -# * ``bbox_inches="tight"`` fits the bounds of the figure to our plot. - -# Uncomment this line to save the figure. -# fig.savefig('sales.png', transparent=False, dpi=80, bbox_inches="tight") diff --git a/_downloads/9f5dd024779eafffe30e0acba52d0d73/colormap_normalizations_bounds.ipynb b/_downloads/9f5dd024779eafffe30e0acba52d0d73/colormap_normalizations_bounds.ipynb deleted file mode 120000 index 267c9ca407b..00000000000 --- a/_downloads/9f5dd024779eafffe30e0acba52d0d73/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9f5dd024779eafffe30e0acba52d0d73/colormap_normalizations_bounds.ipynb \ No newline at end of file diff --git a/_downloads/9f65e76f97761c73b5cf4713776c1abf/membrane.ipynb b/_downloads/9f65e76f97761c73b5cf4713776c1abf/membrane.ipynb deleted file mode 120000 index 56d16a99b72..00000000000 --- a/_downloads/9f65e76f97761c73b5cf4713776c1abf/membrane.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9f65e76f97761c73b5cf4713776c1abf/membrane.ipynb \ No newline at end of file diff --git a/_downloads/9f66b983ac6f509585da7124b5876de1/legend.py b/_downloads/9f66b983ac6f509585da7124b5876de1/legend.py deleted file mode 100644 index 7e6162a51c2..00000000000 --- a/_downloads/9f66b983ac6f509585da7124b5876de1/legend.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=============================== -Legend using pre-defined labels -=============================== - -Defining legend labels with plots. -""" - - -import numpy as np -import matplotlib.pyplot as plt - -# Make some fake data. -a = b = np.arange(0, 3, .02) -c = np.exp(a) -d = c[::-1] - -# Create plots with pre-defined labels. -fig, ax = plt.subplots() -ax.plot(a, c, 'k--', label='Model length') -ax.plot(a, d, 'k:', label='Data length') -ax.plot(a, c + d, 'k', label='Total message length') - -legend = ax.legend(loc='upper center', shadow=True, fontsize='x-large') - -# Put a nicer background color on the legend. -legend.get_frame().set_facecolor('C0') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend diff --git a/_downloads/9f7bada58fc22e82b0c6302874380f2a/axhspan_demo.py b/_downloads/9f7bada58fc22e82b0c6302874380f2a/axhspan_demo.py deleted file mode 100644 index ab1164076e7..00000000000 --- a/_downloads/9f7bada58fc22e82b0c6302874380f2a/axhspan_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============ -axhspan Demo -============ - -Create lines or rectangles that span the axes in either the horizontal or -vertical direction. -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(-1, 2, .01) -s = np.sin(2 * np.pi * t) - -plt.plot(t, s) -# Draw a thick red hline at y=0 that spans the xrange -plt.axhline(linewidth=8, color='#d62728') - -# Draw a default hline at y=1 that spans the xrange -plt.axhline(y=1) - -# Draw a default vline at x=1 that spans the yrange -plt.axvline(x=1) - -# Draw a thick blue vline at x=0 that spans the upper quadrant of the yrange -plt.axvline(x=0, ymin=0.75, linewidth=8, color='#1f77b4') - -# Draw a default hline at y=.5 that spans the middle half of the axes -plt.axhline(y=.5, xmin=0.25, xmax=0.75) - -plt.axhspan(0.25, 0.75, facecolor='0.5', alpha=0.5) - -plt.axvspan(1.25, 1.55, facecolor='#2ca02c', alpha=0.5) - -plt.show() diff --git a/_downloads/9f7bfee62336d980639b03f1c304c4f7/wire3d.ipynb b/_downloads/9f7bfee62336d980639b03f1c304c4f7/wire3d.ipynb deleted file mode 120000 index 4ad8e2528b1..00000000000 --- a/_downloads/9f7bfee62336d980639b03f1c304c4f7/wire3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9f7bfee62336d980639b03f1c304c4f7/wire3d.ipynb \ No newline at end of file diff --git a/_downloads/9f7e80965b7fdad04dd6019a69c025e6/line_styles_reference.py b/_downloads/9f7e80965b7fdad04dd6019a69c025e6/line_styles_reference.py deleted file mode 120000 index 5655ddbc68d..00000000000 --- a/_downloads/9f7e80965b7fdad04dd6019a69c025e6/line_styles_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/9f7e80965b7fdad04dd6019a69c025e6/line_styles_reference.py \ No newline at end of file diff --git a/_downloads/9f884e3b1caced0001a7df99c7774500/scatter_hist.py b/_downloads/9f884e3b1caced0001a7df99c7774500/scatter_hist.py deleted file mode 120000 index f5ea395325a..00000000000 --- a/_downloads/9f884e3b1caced0001a7df99c7774500/scatter_hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9f884e3b1caced0001a7df99c7774500/scatter_hist.py \ No newline at end of file diff --git a/_downloads/9f8aa7731c3c1bf0306b6dce55bacda0/svg_filter_line.py b/_downloads/9f8aa7731c3c1bf0306b6dce55bacda0/svg_filter_line.py deleted file mode 120000 index 807f8575663..00000000000 --- a/_downloads/9f8aa7731c3c1bf0306b6dce55bacda0/svg_filter_line.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/9f8aa7731c3c1bf0306b6dce55bacda0/svg_filter_line.py \ No newline at end of file diff --git a/_downloads/9f8cdd4f36b7d358a648b995f6eb72ae/simple_annotate01.py b/_downloads/9f8cdd4f36b7d358a648b995f6eb72ae/simple_annotate01.py deleted file mode 120000 index 1e1e16ccfe1..00000000000 --- a/_downloads/9f8cdd4f36b7d358a648b995f6eb72ae/simple_annotate01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9f8cdd4f36b7d358a648b995f6eb72ae/simple_annotate01.py \ No newline at end of file diff --git a/_downloads/9f95b7a45c6f4a2a8b9c6b2309081141/tricontourf3d.ipynb b/_downloads/9f95b7a45c6f4a2a8b9c6b2309081141/tricontourf3d.ipynb deleted file mode 120000 index 560a9b011a4..00000000000 --- a/_downloads/9f95b7a45c6f4a2a8b9c6b2309081141/tricontourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9f95b7a45c6f4a2a8b9c6b2309081141/tricontourf3d.ipynb \ No newline at end of file diff --git a/_downloads/9f97e4628915d4d977cc703996cc54f6/surface3d.py b/_downloads/9f97e4628915d4d977cc703996cc54f6/surface3d.py deleted file mode 100644 index eac122b6aa1..00000000000 --- a/_downloads/9f97e4628915d4d977cc703996cc54f6/surface3d.py +++ /dev/null @@ -1,44 +0,0 @@ -''' -====================== -3D surface (color map) -====================== - -Demonstrates plotting a 3D surface colored with the coolwarm color map. -The surface is made opaque by using antialiased=False. - -Also demonstrates using the LinearLocator and custom formatting for the -z axis tick labels. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -from matplotlib import cm -from matplotlib.ticker import LinearLocator, FormatStrFormatter -import numpy as np - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make data. -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -# Plot the surface. -surf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm, - linewidth=0, antialiased=False) - -# Customize the z axis. -ax.set_zlim(-1.01, 1.01) -ax.zaxis.set_major_locator(LinearLocator(10)) -ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f')) - -# Add a color bar which maps values to colors. -fig.colorbar(surf, shrink=0.5, aspect=5) - -plt.show() diff --git a/_downloads/9f9801cd316e93b711080d6e49aa161b/print_stdout_sgskip.ipynb b/_downloads/9f9801cd316e93b711080d6e49aa161b/print_stdout_sgskip.ipynb deleted file mode 120000 index e6aeb66ae57..00000000000 --- a/_downloads/9f9801cd316e93b711080d6e49aa161b/print_stdout_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9f9801cd316e93b711080d6e49aa161b/print_stdout_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/9f9d0f732424cc0f7e7012dbd5dcee4e/scatter_masked.py b/_downloads/9f9d0f732424cc0f7e7012dbd5dcee4e/scatter_masked.py deleted file mode 120000 index 238da0f7989..00000000000 --- a/_downloads/9f9d0f732424cc0f7e7012dbd5dcee4e/scatter_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9f9d0f732424cc0f7e7012dbd5dcee4e/scatter_masked.py \ No newline at end of file diff --git a/_downloads/9fb09947ce2f545c77ac316bedb0803a/pyplot_formatstr.ipynb b/_downloads/9fb09947ce2f545c77ac316bedb0803a/pyplot_formatstr.ipynb deleted file mode 120000 index 351a27e6078..00000000000 --- a/_downloads/9fb09947ce2f545c77ac316bedb0803a/pyplot_formatstr.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9fb09947ce2f545c77ac316bedb0803a/pyplot_formatstr.ipynb \ No newline at end of file diff --git a/_downloads/9fb33f66704e5426386ae961c49803d1/2dcollections3d.ipynb b/_downloads/9fb33f66704e5426386ae961c49803d1/2dcollections3d.ipynb deleted file mode 120000 index 00946e378a7..00000000000 --- a/_downloads/9fb33f66704e5426386ae961c49803d1/2dcollections3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/9fb33f66704e5426386ae961c49803d1/2dcollections3d.ipynb \ No newline at end of file diff --git a/_downloads/9fb43872a0ccbd5826ed9ca884e9a2cb/boxplot_vs_violin.py b/_downloads/9fb43872a0ccbd5826ed9ca884e9a2cb/boxplot_vs_violin.py deleted file mode 120000 index cc5fde764c5..00000000000 --- a/_downloads/9fb43872a0ccbd5826ed9ca884e9a2cb/boxplot_vs_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/9fb43872a0ccbd5826ed9ca884e9a2cb/boxplot_vs_violin.py \ No newline at end of file diff --git a/_downloads/9fcf0b53b8a6c540899c011769786842/demo_anchored_direction_arrows.py b/_downloads/9fcf0b53b8a6c540899c011769786842/demo_anchored_direction_arrows.py deleted file mode 120000 index bfae2a37ae7..00000000000 --- a/_downloads/9fcf0b53b8a6c540899c011769786842/demo_anchored_direction_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9fcf0b53b8a6c540899c011769786842/demo_anchored_direction_arrows.py \ No newline at end of file diff --git a/_downloads/9fd4a0ac1479f2a6637e6bcfa7b64411/pyplot_three.ipynb b/_downloads/9fd4a0ac1479f2a6637e6bcfa7b64411/pyplot_three.ipynb deleted file mode 120000 index 713840ea867..00000000000 --- a/_downloads/9fd4a0ac1479f2a6637e6bcfa7b64411/pyplot_three.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/9fd4a0ac1479f2a6637e6bcfa7b64411/pyplot_three.ipynb \ No newline at end of file diff --git a/_downloads/9fec507ff0393ffdc2bd42ee39d7126d/looking_glass.ipynb b/_downloads/9fec507ff0393ffdc2bd42ee39d7126d/looking_glass.ipynb deleted file mode 100644 index b6f82f204de..00000000000 --- a/_downloads/9fec507ff0393ffdc2bd42ee39d7126d/looking_glass.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Looking Glass\n\n\nExample using mouse events to simulate a looking glass for inspecting data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx, y = np.random.rand(2, 200)\n\nfig, ax = plt.subplots()\ncirc = patches.Circle((0.5, 0.5), 0.25, alpha=0.8, fc='yellow')\nax.add_patch(circ)\n\n\nax.plot(x, y, alpha=0.2)\nline, = ax.plot(x, y, alpha=1.0, clip_path=circ)\nax.set_title(\"Left click and drag to move looking glass\")\n\n\nclass EventHandler(object):\n def __init__(self):\n fig.canvas.mpl_connect('button_press_event', self.onpress)\n fig.canvas.mpl_connect('button_release_event', self.onrelease)\n fig.canvas.mpl_connect('motion_notify_event', self.onmove)\n self.x0, self.y0 = circ.center\n self.pressevent = None\n\n def onpress(self, event):\n if event.inaxes != ax:\n return\n\n if not circ.contains(event)[0]:\n return\n\n self.pressevent = event\n\n def onrelease(self, event):\n self.pressevent = None\n self.x0, self.y0 = circ.center\n\n def onmove(self, event):\n if self.pressevent is None or event.inaxes != self.pressevent.inaxes:\n return\n\n dx = event.xdata - self.pressevent.xdata\n dy = event.ydata - self.pressevent.ydata\n circ.center = self.x0 + dx, self.y0 + dy\n line.set_clip_path(circ)\n fig.canvas.draw()\n\nhandler = EventHandler()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/9ff67dfe6f9f2940c3fd222f161ac46c/customized_violin.py b/_downloads/9ff67dfe6f9f2940c3fd222f161ac46c/customized_violin.py deleted file mode 120000 index a5b6706cba2..00000000000 --- a/_downloads/9ff67dfe6f9f2940c3fd222f161ac46c/customized_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/9ff67dfe6f9f2940c3fd222f161ac46c/customized_violin.py \ No newline at end of file diff --git a/_downloads/a000e7ccd116595d4d5cd89c4a9f8ebd/scatter_with_legend.py b/_downloads/a000e7ccd116595d4d5cd89c4a9f8ebd/scatter_with_legend.py deleted file mode 120000 index 007ce1508ff..00000000000 --- a/_downloads/a000e7ccd116595d4d5cd89c4a9f8ebd/scatter_with_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a000e7ccd116595d4d5cd89c4a9f8ebd/scatter_with_legend.py \ No newline at end of file diff --git a/_downloads/a002526788d85343f129da25c1694086/gridspec.ipynb b/_downloads/a002526788d85343f129da25c1694086/gridspec.ipynb deleted file mode 120000 index 8671499a5ff..00000000000 --- a/_downloads/a002526788d85343f129da25c1694086/gridspec.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a002526788d85343f129da25c1694086/gridspec.ipynb \ No newline at end of file diff --git a/_downloads/a00878546a57593e801c23b20668d112/streamplot.py b/_downloads/a00878546a57593e801c23b20668d112/streamplot.py deleted file mode 120000 index a02ea8fc845..00000000000 --- a/_downloads/a00878546a57593e801c23b20668d112/streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a00878546a57593e801c23b20668d112/streamplot.py \ No newline at end of file diff --git a/_downloads/a00b7c2870dfc79b424c018d468bfbcc/legend_picking.ipynb b/_downloads/a00b7c2870dfc79b424c018d468bfbcc/legend_picking.ipynb deleted file mode 120000 index 4300d56ec05..00000000000 --- a/_downloads/a00b7c2870dfc79b424c018d468bfbcc/legend_picking.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a00b7c2870dfc79b424c018d468bfbcc/legend_picking.ipynb \ No newline at end of file diff --git a/_downloads/a015f6a1d84d78b7d704f04083be7f2a/date_demo_convert.py b/_downloads/a015f6a1d84d78b7d704f04083be7f2a/date_demo_convert.py deleted file mode 100644 index e1f266cbe09..00000000000 --- a/_downloads/a015f6a1d84d78b7d704f04083be7f2a/date_demo_convert.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -================= -Date Demo Convert -================= - -""" -import datetime -import matplotlib.pyplot as plt -from matplotlib.dates import DayLocator, HourLocator, DateFormatter, drange -import numpy as np - -date1 = datetime.datetime(2000, 3, 2) -date2 = datetime.datetime(2000, 3, 6) -delta = datetime.timedelta(hours=6) -dates = drange(date1, date2, delta) - -y = np.arange(len(dates)) - -fig, ax = plt.subplots() -ax.plot_date(dates, y ** 2) - -# this is superfluous, since the autoscaler should get it right, but -# use date2num and num2date to convert between dates and floats if -# you want; both date2num and num2date convert an instance or sequence -ax.set_xlim(dates[0], dates[-1]) - -# The hour locator takes the hour or sequence of hours you want to -# tick, not the base multiple - -ax.xaxis.set_major_locator(DayLocator()) -ax.xaxis.set_minor_locator(HourLocator(range(0, 25, 6))) -ax.xaxis.set_major_formatter(DateFormatter('%Y-%m-%d')) - -ax.fmt_xdata = DateFormatter('%Y-%m-%d %H:%M:%S') -fig.autofmt_xdate() - -plt.show() diff --git a/_downloads/a019dd7efd523438063f5b82553a706c/text_rotation.py b/_downloads/a019dd7efd523438063f5b82553a706c/text_rotation.py deleted file mode 120000 index 261df65713c..00000000000 --- a/_downloads/a019dd7efd523438063f5b82553a706c/text_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a019dd7efd523438063f5b82553a706c/text_rotation.py \ No newline at end of file diff --git a/_downloads/a01fa5268b1dbe865695aea348625f0c/simple_axis_direction03.ipynb b/_downloads/a01fa5268b1dbe865695aea348625f0c/simple_axis_direction03.ipynb deleted file mode 120000 index 13a49b1e49b..00000000000 --- a/_downloads/a01fa5268b1dbe865695aea348625f0c/simple_axis_direction03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a01fa5268b1dbe865695aea348625f0c/simple_axis_direction03.ipynb \ No newline at end of file diff --git a/_downloads/a0289e4cd6b578b6ef381a39dc81f44a/tick-formatters.ipynb b/_downloads/a0289e4cd6b578b6ef381a39dc81f44a/tick-formatters.ipynb deleted file mode 120000 index b36495caf31..00000000000 --- a/_downloads/a0289e4cd6b578b6ef381a39dc81f44a/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a0289e4cd6b578b6ef381a39dc81f44a/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/a03a8a23b090a5731ea6fd8c900db662/cursor_demo_sgskip.py b/_downloads/a03a8a23b090a5731ea6fd8c900db662/cursor_demo_sgskip.py deleted file mode 120000 index bc07a749f47..00000000000 --- a/_downloads/a03a8a23b090a5731ea6fd8c900db662/cursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a03a8a23b090a5731ea6fd8c900db662/cursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/a03abc989e44abe331b7fbd3669cba88/sankey_rankine.ipynb b/_downloads/a03abc989e44abe331b7fbd3669cba88/sankey_rankine.ipynb deleted file mode 120000 index bed1268c97d..00000000000 --- a/_downloads/a03abc989e44abe331b7fbd3669cba88/sankey_rankine.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a03abc989e44abe331b7fbd3669cba88/sankey_rankine.ipynb \ No newline at end of file diff --git a/_downloads/a06fbaf66a44a47cc32196f6d127526e/gridspec.py b/_downloads/a06fbaf66a44a47cc32196f6d127526e/gridspec.py deleted file mode 120000 index b4fc86f9af6..00000000000 --- a/_downloads/a06fbaf66a44a47cc32196f6d127526e/gridspec.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a06fbaf66a44a47cc32196f6d127526e/gridspec.py \ No newline at end of file diff --git a/_downloads/a06fd3bfb2ec534a9c15eed61c988d44/gridspec_and_subplots.py b/_downloads/a06fd3bfb2ec534a9c15eed61c988d44/gridspec_and_subplots.py deleted file mode 120000 index 26de179d572..00000000000 --- a/_downloads/a06fd3bfb2ec534a9c15eed61c988d44/gridspec_and_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a06fd3bfb2ec534a9c15eed61c988d44/gridspec_and_subplots.py \ No newline at end of file diff --git a/_downloads/a074c5407d650034039eb6cdcd6b69e9/autowrap.ipynb b/_downloads/a074c5407d650034039eb6cdcd6b69e9/autowrap.ipynb deleted file mode 120000 index e3a37255a62..00000000000 --- a/_downloads/a074c5407d650034039eb6cdcd6b69e9/autowrap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a074c5407d650034039eb6cdcd6b69e9/autowrap.ipynb \ No newline at end of file diff --git a/_downloads/a07bce3b8c951bc705e75bec35657f3d/demo_constrained_layout.ipynb b/_downloads/a07bce3b8c951bc705e75bec35657f3d/demo_constrained_layout.ipynb deleted file mode 120000 index ca57a17c0d9..00000000000 --- a/_downloads/a07bce3b8c951bc705e75bec35657f3d/demo_constrained_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a07bce3b8c951bc705e75bec35657f3d/demo_constrained_layout.ipynb \ No newline at end of file diff --git a/_downloads/a07ccc7ac96893982528857f66715b4d/fonts_demo.py b/_downloads/a07ccc7ac96893982528857f66715b4d/fonts_demo.py deleted file mode 120000 index 3e62a2de427..00000000000 --- a/_downloads/a07ccc7ac96893982528857f66715b4d/fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a07ccc7ac96893982528857f66715b4d/fonts_demo.py \ No newline at end of file diff --git a/_downloads/a0801fb12a71ca3d339e0c8d90ca5e7b/usetex_baseline_test.ipynb b/_downloads/a0801fb12a71ca3d339e0c8d90ca5e7b/usetex_baseline_test.ipynb deleted file mode 120000 index c99ca7d784d..00000000000 --- a/_downloads/a0801fb12a71ca3d339e0c8d90ca5e7b/usetex_baseline_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a0801fb12a71ca3d339e0c8d90ca5e7b/usetex_baseline_test.ipynb \ No newline at end of file diff --git a/_downloads/a08bdc513063818683cb02a7e7eb5c1d/annotate_explain.ipynb b/_downloads/a08bdc513063818683cb02a7e7eb5c1d/annotate_explain.ipynb deleted file mode 120000 index 1487669a12b..00000000000 --- a/_downloads/a08bdc513063818683cb02a7e7eb5c1d/annotate_explain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a08bdc513063818683cb02a7e7eb5c1d/annotate_explain.ipynb \ No newline at end of file diff --git a/_downloads/a094955838d0e0619de8c65099ae6398/annotate_simple01.ipynb b/_downloads/a094955838d0e0619de8c65099ae6398/annotate_simple01.ipynb deleted file mode 120000 index b39238631a3..00000000000 --- a/_downloads/a094955838d0e0619de8c65099ae6398/annotate_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a094955838d0e0619de8c65099ae6398/annotate_simple01.ipynb \ No newline at end of file diff --git a/_downloads/a096ebed172a812ac1c95fe8b276c1da/voxels_torus.ipynb b/_downloads/a096ebed172a812ac1c95fe8b276c1da/voxels_torus.ipynb deleted file mode 120000 index 525c767094c..00000000000 --- a/_downloads/a096ebed172a812ac1c95fe8b276c1da/voxels_torus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a096ebed172a812ac1c95fe8b276c1da/voxels_torus.ipynb \ No newline at end of file diff --git a/_downloads/a097b606c57f8b39aef72406235d3768/stackplot_demo.py b/_downloads/a097b606c57f8b39aef72406235d3768/stackplot_demo.py deleted file mode 120000 index 4c8c4337d4b..00000000000 --- a/_downloads/a097b606c57f8b39aef72406235d3768/stackplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a097b606c57f8b39aef72406235d3768/stackplot_demo.py \ No newline at end of file diff --git a/_downloads/a0a363c70be4615c2fa4d20cbc8f042e/colormap_interactive_adjustment.ipynb b/_downloads/a0a363c70be4615c2fa4d20cbc8f042e/colormap_interactive_adjustment.ipynb deleted file mode 120000 index bf17ff2d028..00000000000 --- a/_downloads/a0a363c70be4615c2fa4d20cbc8f042e/colormap_interactive_adjustment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/a0a363c70be4615c2fa4d20cbc8f042e/colormap_interactive_adjustment.ipynb \ No newline at end of file diff --git a/_downloads/a0a529da5b0b0e99a8b7061062b64890/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/a0a529da5b0b0e99a8b7061062b64890/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 120000 index 2495b9d8654..00000000000 --- a/_downloads/a0a529da5b0b0e99a8b7061062b64890/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a0a529da5b0b0e99a8b7061062b64890/embedding_in_gtk3_panzoom_sgskip.py \ No newline at end of file diff --git a/_downloads/a0a83459327835520c2639e629b81f2c/contour.ipynb b/_downloads/a0a83459327835520c2639e629b81f2c/contour.ipynb deleted file mode 120000 index a6ff86f97ca..00000000000 --- a/_downloads/a0a83459327835520c2639e629b81f2c/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a0a83459327835520c2639e629b81f2c/contour.ipynb \ No newline at end of file diff --git a/_downloads/a0acd54a96b40e271115ea0964417a12/customizing.ipynb b/_downloads/a0acd54a96b40e271115ea0964417a12/customizing.ipynb deleted file mode 100644 index da60267fc0a..00000000000 --- a/_downloads/a0acd54a96b40e271115ea0964417a12/customizing.ipynb +++ /dev/null @@ -1,133 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nCustomizing Matplotlib with style sheets and rcParams\n=====================================================\n\nTips for customizing the properties and default styles of Matplotlib.\n\nUsing style sheets\n------------------\n\nThe ``style`` package adds support for easy-to-switch plotting \"styles\" with\nthe same parameters as a\n`matplotlib rc ` file (which is read\nat startup to configure matplotlib).\n\nThere are a number of pre-defined styles `provided by Matplotlib`_. For\nexample, there's a pre-defined style called \"ggplot\", which emulates the\naesthetics of ggplot_ (a popular plotting package for R_). To use this style,\njust add:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib as mpl\nplt.style.use('ggplot')\ndata = np.random.randn(50)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To list all available styles, use:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(plt.style.available)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Defining your own style\n-----------------------\n\nYou can create custom styles and use them by calling ``style.use`` with the\npath or URL to the style sheet. Additionally, if you add your\n``.mplstyle`` file to ``mpl_configdir/stylelib``, you can reuse\nyour custom style sheet with a call to ``style.use()``. By default\n``mpl_configdir`` should be ``~/.config/matplotlib``, but you can check where\nyours is with ``matplotlib.get_configdir()``; you may need to create this\ndirectory. You also can change the directory where matplotlib looks for\nthe stylelib/ folder by setting the MPLCONFIGDIR environment variable,\nsee `locating-matplotlib-config-dir`.\n\nNote that a custom style sheet in ``mpl_configdir/stylelib`` will\noverride a style sheet defined by matplotlib if the styles have the same name.\n\nFor example, you might want to create\n``mpl_configdir/stylelib/presentation.mplstyle`` with the following::\n\n axes.titlesize : 24\n axes.labelsize : 20\n lines.linewidth : 3\n lines.markersize : 10\n xtick.labelsize : 16\n ytick.labelsize : 16\n\nThen, when you want to adapt a plot designed for a paper to one that looks\ngood in a presentation, you can just add::\n\n >>> import matplotlib.pyplot as plt\n >>> plt.style.use('presentation')\n\n\nComposing styles\n----------------\n\nStyle sheets are designed to be composed together. So you can have a style\nsheet that customizes colors and a separate style sheet that alters element\nsizes for presentations. These styles can easily be combined by passing\na list of styles::\n\n >>> import matplotlib.pyplot as plt\n >>> plt.style.use(['dark_background', 'presentation'])\n\nNote that styles further to the right will overwrite values that are already\ndefined by styles on the left.\n\n\nTemporary styling\n-----------------\n\nIf you only want to use a style for a specific block of code but don't want\nto change the global styling, the style package provides a context manager\nfor limiting your changes to a specific scope. To isolate your styling\nchanges, you can write something like the following:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.style.context('dark_background'):\n plt.plot(np.sin(np.linspace(0, 2 * np.pi)), 'r-o')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nmatplotlib rcParams\n===================\n\n\nDynamic rc settings\n-------------------\n\nYou can also dynamically change the default rc settings in a python script or\ninteractively from the python shell. All of the rc settings are stored in a\ndictionary-like variable called :data:`matplotlib.rcParams`, which is global to\nthe matplotlib package. rcParams can be modified directly, for example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rcParams['lines.linewidth'] = 2\nmpl.rcParams['lines.color'] = 'r'\nplt.plot(data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Matplotlib also provides a couple of convenience functions for modifying rc\nsettings. The :func:`matplotlib.rc` command can be used to modify multiple\nsettings in a single group at once, using keyword arguments:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rc('lines', linewidth=4, color='g')\nplt.plot(data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The :func:`matplotlib.rcdefaults` command will restore the standard matplotlib\ndefault settings.\n\nThere is some degree of validation when setting the values of rcParams, see\n:mod:`matplotlib.rcsetup` for details.\n\n\nThe :file:`matplotlibrc` file\n-----------------------------\n\nmatplotlib uses :file:`matplotlibrc` configuration files to customize all kinds\nof properties, which we call `rc settings` or `rc parameters`. You can control\nthe defaults of almost every property in matplotlib: figure size and dpi, line\nwidth, color and style, axes, axis and grid properties, text and font\nproperties and so on. matplotlib looks for :file:`matplotlibrc` in four\nlocations, in the following order:\n\n1. :file:`matplotlibrc` in the current working directory, usually used for\n specific customizations that you do not want to apply elsewhere.\n\n2. :file:`$MATPLOTLIBRC` if it is a file, else :file:`$MATPLOTLIBRC/matplotlibrc`.\n\n3. It next looks in a user-specific place, depending on your platform:\n\n - On Linux and FreeBSD, it looks in :file:`.config/matplotlib/matplotlibrc`\n (or `$XDG_CONFIG_HOME/matplotlib/matplotlibrc`) if you've customized\n your environment.\n\n - On other platforms, it looks in :file:`.matplotlib/matplotlibrc`.\n\n See `locating-matplotlib-config-dir`.\n\n4. :file:`{INSTALL}/matplotlib/mpl-data/matplotlibrc`, where\n :file:`{INSTALL}` is something like\n :file:`/usr/lib/python3.7/site-packages` on Linux, and maybe\n :file:`C:\\\\Python37\\\\Lib\\\\site-packages` on Windows. Every time you\n install matplotlib, this file will be overwritten, so if you want\n your customizations to be saved, please move this file to your\n user-specific matplotlib directory.\n\nOnce a :file:`matplotlibrc` file has been found, it will *not* search any of\nthe other paths.\n\nTo display where the currently active :file:`matplotlibrc` file was\nloaded from, one can do the following::\n\n >>> import matplotlib\n >>> matplotlib.matplotlib_fname()\n '/home/foo/.config/matplotlib/matplotlibrc'\n\nSee below for a sample `matplotlibrc file`.\n\n\nA sample matplotlibrc file\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. literalinclude:: ../../../matplotlibrc.template\n\n\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a0b2b7cdf0874a461ed8e295cb1bff3d/histogram_path.py b/_downloads/a0b2b7cdf0874a461ed8e295cb1bff3d/histogram_path.py deleted file mode 120000 index 2156843031b..00000000000 --- a/_downloads/a0b2b7cdf0874a461ed8e295cb1bff3d/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a0b2b7cdf0874a461ed8e295cb1bff3d/histogram_path.py \ No newline at end of file diff --git a/_downloads/a0b3abeca4a4f2ff7cd963cdfc47fb47/spy_demos.py b/_downloads/a0b3abeca4a4f2ff7cd963cdfc47fb47/spy_demos.py deleted file mode 100644 index a24f134e407..00000000000 --- a/_downloads/a0b3abeca4a4f2ff7cd963cdfc47fb47/spy_demos.py +++ /dev/null @@ -1,42 +0,0 @@ -""" -========= -Spy Demos -========= - -Plot the sparsity pattern of arrays. -""" - -import matplotlib.pyplot as plt -import numpy as np - -fig, axs = plt.subplots(2, 2) -ax1 = axs[0, 0] -ax2 = axs[0, 1] -ax3 = axs[1, 0] -ax4 = axs[1, 1] - -x = np.random.randn(20, 20) -x[5, :] = 0. -x[:, 12] = 0. - -ax1.spy(x, markersize=5) -ax2.spy(x, precision=0.1, markersize=5) - -ax3.spy(x) -ax4.spy(x, precision=0.1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.spy -matplotlib.pyplot.spy diff --git a/_downloads/a0b9c95662d8b27f0cbc9115ce8cd71e/auto_ticks.py b/_downloads/a0b9c95662d8b27f0cbc9115ce8cd71e/auto_ticks.py deleted file mode 120000 index 50d669f15a4..00000000000 --- a/_downloads/a0b9c95662d8b27f0cbc9115ce8cd71e/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a0b9c95662d8b27f0cbc9115ce8cd71e/auto_ticks.py \ No newline at end of file diff --git a/_downloads/a0ba87a82fe3b31fd9b06f25a2c11522/affine_image.py b/_downloads/a0ba87a82fe3b31fd9b06f25a2c11522/affine_image.py deleted file mode 120000 index e8c9426b157..00000000000 --- a/_downloads/a0ba87a82fe3b31fd9b06f25a2c11522/affine_image.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a0ba87a82fe3b31fd9b06f25a2c11522/affine_image.py \ No newline at end of file diff --git a/_downloads/a0c514000487bc98ba7f8a5b6a5c778d/bxp.ipynb b/_downloads/a0c514000487bc98ba7f8a5b6a5c778d/bxp.ipynb deleted file mode 120000 index e482e4a6b40..00000000000 --- a/_downloads/a0c514000487bc98ba7f8a5b6a5c778d/bxp.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a0c514000487bc98ba7f8a5b6a5c778d/bxp.ipynb \ No newline at end of file diff --git a/_downloads/a0db4a9a86e568f7449e048dc16a7412/simple_axisartist1.ipynb b/_downloads/a0db4a9a86e568f7449e048dc16a7412/simple_axisartist1.ipynb deleted file mode 100644 index 63c6872e1af..00000000000 --- a/_downloads/a0db4a9a86e568f7449e048dc16a7412/simple_axisartist1.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisartist1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as AA\n\nfig = plt.figure()\nfig.subplots_adjust(right=0.85)\nax = AA.Subplot(fig, 1, 1, 1)\nfig.add_subplot(ax)\n\n# make some axis invisible\nax.axis[\"bottom\", \"top\", \"right\"].set_visible(False)\n\n# make an new axis along the first axis axis (x-axis) which pass\n# through y=0.\nax.axis[\"y=0\"] = ax.new_floating_axis(nth_coord=0, value=0,\n axis_direction=\"bottom\")\nax.axis[\"y=0\"].toggle(all=True)\nax.axis[\"y=0\"].label.set_text(\"y = 0\")\n\nax.set_ylim(-2, 4)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a0e0e2f5e972020e7fa5562b2d03c8cc/common_date_problems.py b/_downloads/a0e0e2f5e972020e7fa5562b2d03c8cc/common_date_problems.py deleted file mode 120000 index eb8794abd9e..00000000000 --- a/_downloads/a0e0e2f5e972020e7fa5562b2d03c8cc/common_date_problems.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a0e0e2f5e972020e7fa5562b2d03c8cc/common_date_problems.py \ No newline at end of file diff --git a/_downloads/a0e86663d543ed61329cd06205bcdd62/axes_box_aspect.py b/_downloads/a0e86663d543ed61329cd06205bcdd62/axes_box_aspect.py deleted file mode 120000 index d65babda768..00000000000 --- a/_downloads/a0e86663d543ed61329cd06205bcdd62/axes_box_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a0e86663d543ed61329cd06205bcdd62/axes_box_aspect.py \ No newline at end of file diff --git a/_downloads/a0fac4335cd8e11403892ad98b4702e9/demo_axis_direction.ipynb b/_downloads/a0fac4335cd8e11403892ad98b4702e9/demo_axis_direction.ipynb deleted file mode 120000 index 369421843a0..00000000000 --- a/_downloads/a0fac4335cd8e11403892ad98b4702e9/demo_axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a0fac4335cd8e11403892ad98b4702e9/demo_axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/a0fb8527e65df628df6271ddb86fa85d/demo_axisline_style.py b/_downloads/a0fb8527e65df628df6271ddb86fa85d/demo_axisline_style.py deleted file mode 120000 index 7663a4befd7..00000000000 --- a/_downloads/a0fb8527e65df628df6271ddb86fa85d/demo_axisline_style.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a0fb8527e65df628df6271ddb86fa85d/demo_axisline_style.py \ No newline at end of file diff --git a/_downloads/a0fc55ca05cf1a253c4942a3a19886c0/simple_axis_pad.ipynb b/_downloads/a0fc55ca05cf1a253c4942a3a19886c0/simple_axis_pad.ipynb deleted file mode 120000 index 1f23f1185c0..00000000000 --- a/_downloads/a0fc55ca05cf1a253c4942a3a19886c0/simple_axis_pad.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a0fc55ca05cf1a253c4942a3a19886c0/simple_axis_pad.ipynb \ No newline at end of file diff --git a/_downloads/a0fd5c21ddcf35f19ee073f623f094e5/image_annotated_heatmap.py b/_downloads/a0fd5c21ddcf35f19ee073f623f094e5/image_annotated_heatmap.py deleted file mode 120000 index 3ea37f6c3f8..00000000000 --- a/_downloads/a0fd5c21ddcf35f19ee073f623f094e5/image_annotated_heatmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a0fd5c21ddcf35f19ee073f623f094e5/image_annotated_heatmap.py \ No newline at end of file diff --git a/_downloads/a0fe491ca6a065d7779849287e39c4e0/toolmanager_sgskip.ipynb b/_downloads/a0fe491ca6a065d7779849287e39c4e0/toolmanager_sgskip.ipynb deleted file mode 120000 index 0654db718be..00000000000 --- a/_downloads/a0fe491ca6a065d7779849287e39c4e0/toolmanager_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a0fe491ca6a065d7779849287e39c4e0/toolmanager_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/a101c88976d472bedd54c05a090c2e1e/xcorr_acorr_demo.ipynb b/_downloads/a101c88976d472bedd54c05a090c2e1e/xcorr_acorr_demo.ipynb deleted file mode 120000 index 38c92681c4b..00000000000 --- a/_downloads/a101c88976d472bedd54c05a090c2e1e/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a101c88976d472bedd54c05a090c2e1e/xcorr_acorr_demo.ipynb \ No newline at end of file diff --git a/_downloads/a101e8e1a467e65908f23d68b1302ac9/mri_with_eeg.ipynb b/_downloads/a101e8e1a467e65908f23d68b1302ac9/mri_with_eeg.ipynb deleted file mode 120000 index a4a0bec9edb..00000000000 --- a/_downloads/a101e8e1a467e65908f23d68b1302ac9/mri_with_eeg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a101e8e1a467e65908f23d68b1302ac9/mri_with_eeg.ipynb \ No newline at end of file diff --git a/_downloads/a10e79abb8d09065569136029f509834/symlog_demo.py b/_downloads/a10e79abb8d09065569136029f509834/symlog_demo.py deleted file mode 120000 index edb890a9594..00000000000 --- a/_downloads/a10e79abb8d09065569136029f509834/symlog_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a10e79abb8d09065569136029f509834/symlog_demo.py \ No newline at end of file diff --git a/_downloads/a1135525ac068d1a13497e500325a646/annotation_basic.ipynb b/_downloads/a1135525ac068d1a13497e500325a646/annotation_basic.ipynb deleted file mode 120000 index 425e3dc5e6f..00000000000 --- a/_downloads/a1135525ac068d1a13497e500325a646/annotation_basic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a1135525ac068d1a13497e500325a646/annotation_basic.ipynb \ No newline at end of file diff --git a/_downloads/a1184326ee167f819dcb202176008e4f/two_scales.ipynb b/_downloads/a1184326ee167f819dcb202176008e4f/two_scales.ipynb deleted file mode 120000 index 8f284df8233..00000000000 --- a/_downloads/a1184326ee167f819dcb202176008e4f/two_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a1184326ee167f819dcb202176008e4f/two_scales.ipynb \ No newline at end of file diff --git a/_downloads/a11ebb277042fee3371966bd385ad26a/scalarformatter.py b/_downloads/a11ebb277042fee3371966bd385ad26a/scalarformatter.py deleted file mode 120000 index 9c28b827e23..00000000000 --- a/_downloads/a11ebb277042fee3371966bd385ad26a/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a11ebb277042fee3371966bd385ad26a/scalarformatter.py \ No newline at end of file diff --git a/_downloads/a124e9d7b931763b0b87991dd7cf0a5a/contour_manual.ipynb b/_downloads/a124e9d7b931763b0b87991dd7cf0a5a/contour_manual.ipynb deleted file mode 120000 index bb140499d8f..00000000000 --- a/_downloads/a124e9d7b931763b0b87991dd7cf0a5a/contour_manual.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a124e9d7b931763b0b87991dd7cf0a5a/contour_manual.ipynb \ No newline at end of file diff --git a/_downloads/a142094ef6dd795bf6723d681a498deb/multicursor.py b/_downloads/a142094ef6dd795bf6723d681a498deb/multicursor.py deleted file mode 100644 index 7622792dd22..00000000000 --- a/_downloads/a142094ef6dd795bf6723d681a498deb/multicursor.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=========== -Multicursor -=========== - -Showing a cursor on multiple plots simultaneously. - -This example generates two subplots and on hovering the cursor over data in one -subplot, the values of that datapoint are shown in both respectively. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import MultiCursor - -t = np.arange(0.0, 2.0, 0.01) -s1 = np.sin(2*np.pi*t) -s2 = np.sin(4*np.pi*t) - -fig, (ax1, ax2) = plt.subplots(2, sharex=True) -ax1.plot(t, s1) -ax2.plot(t, s2) - -multi = MultiCursor(fig.canvas, (ax1, ax2), color='r', lw=1) -plt.show() diff --git a/_downloads/a142232654a80b89c5e8ff9ca307dbd4/gridspec_nested.ipynb b/_downloads/a142232654a80b89c5e8ff9ca307dbd4/gridspec_nested.ipynb deleted file mode 120000 index de01414b975..00000000000 --- a/_downloads/a142232654a80b89c5e8ff9ca307dbd4/gridspec_nested.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a142232654a80b89c5e8ff9ca307dbd4/gridspec_nested.ipynb \ No newline at end of file diff --git a/_downloads/a1456f98b737dd72569817d4f42bce01/figure_axes_enter_leave.py b/_downloads/a1456f98b737dd72569817d4f42bce01/figure_axes_enter_leave.py deleted file mode 100644 index b1c81b6dd5b..00000000000 --- a/_downloads/a1456f98b737dd72569817d4f42bce01/figure_axes_enter_leave.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -======================= -Figure Axes Enter Leave -======================= - -Illustrate the figure and axes enter and leave events by changing the -frame colors on enter and leave -""" -import matplotlib.pyplot as plt - - -def enter_axes(event): - print('enter_axes', event.inaxes) - event.inaxes.patch.set_facecolor('yellow') - event.canvas.draw() - - -def leave_axes(event): - print('leave_axes', event.inaxes) - event.inaxes.patch.set_facecolor('white') - event.canvas.draw() - - -def enter_figure(event): - print('enter_figure', event.canvas.figure) - event.canvas.figure.patch.set_facecolor('red') - event.canvas.draw() - - -def leave_figure(event): - print('leave_figure', event.canvas.figure) - event.canvas.figure.patch.set_facecolor('grey') - event.canvas.draw() - -############################################################################### - -fig1, (ax, ax2) = plt.subplots(2, 1) -fig1.suptitle('mouse hover over figure or axes to trigger events') - -fig1.canvas.mpl_connect('figure_enter_event', enter_figure) -fig1.canvas.mpl_connect('figure_leave_event', leave_figure) -fig1.canvas.mpl_connect('axes_enter_event', enter_axes) -fig1.canvas.mpl_connect('axes_leave_event', leave_axes) - -############################################################################### - -fig2, (ax, ax2) = plt.subplots(2, 1) -fig2.suptitle('mouse hover over figure or axes to trigger events') - -fig2.canvas.mpl_connect('figure_enter_event', enter_figure) -fig2.canvas.mpl_connect('figure_leave_event', leave_figure) -fig2.canvas.mpl_connect('axes_enter_event', enter_axes) -fig2.canvas.mpl_connect('axes_leave_event', leave_axes) - -plt.show() diff --git a/_downloads/a14b84554a3c9fd1b890ef950520352c/offset.ipynb b/_downloads/a14b84554a3c9fd1b890ef950520352c/offset.ipynb deleted file mode 120000 index 2ff931d2345..00000000000 --- a/_downloads/a14b84554a3c9fd1b890ef950520352c/offset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a14b84554a3c9fd1b890ef950520352c/offset.ipynb \ No newline at end of file diff --git a/_downloads/a15d8e4e2348d8c1b8b29a80ac99144c/dollar_ticks.py b/_downloads/a15d8e4e2348d8c1b8b29a80ac99144c/dollar_ticks.py deleted file mode 100644 index 0ed36764557..00000000000 --- a/_downloads/a15d8e4e2348d8c1b8b29a80ac99144c/dollar_ticks.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============ -Dollar Ticks -============ - -Use a `~.ticker.FormatStrFormatter` to prepend dollar signs on y axis labels. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() -ax.plot(100*np.random.rand(20)) - -formatter = ticker.FormatStrFormatter('$%1.2f') -ax.yaxis.set_major_formatter(formatter) - -for tick in ax.yaxis.get_major_ticks(): - tick.label1.set_visible(False) - tick.label2.set_visible(True) - tick.label2.set_color('green') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.ticker -matplotlib.ticker.FormatStrFormatter -matplotlib.axis.Axis.set_major_formatter -matplotlib.axis.Axis.get_major_ticks -matplotlib.axis.Tick diff --git a/_downloads/a17095ea3389329fe3ad5d60f5a5f910/errorbar_limits.ipynb b/_downloads/a17095ea3389329fe3ad5d60f5a5f910/errorbar_limits.ipynb deleted file mode 120000 index 17128b843f9..00000000000 --- a/_downloads/a17095ea3389329fe3ad5d60f5a5f910/errorbar_limits.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a17095ea3389329fe3ad5d60f5a5f910/errorbar_limits.ipynb \ No newline at end of file diff --git a/_downloads/a17d68c3df5d5435fb334cc0a751ad90/vline_hline_demo.py b/_downloads/a17d68c3df5d5435fb334cc0a751ad90/vline_hline_demo.py deleted file mode 120000 index dfa1fce28b8..00000000000 --- a/_downloads/a17d68c3df5d5435fb334cc0a751ad90/vline_hline_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a17d68c3df5d5435fb334cc0a751ad90/vline_hline_demo.py \ No newline at end of file diff --git a/_downloads/a18365d572242ad1c2a687108c0c710c/contourf_log.ipynb b/_downloads/a18365d572242ad1c2a687108c0c710c/contourf_log.ipynb deleted file mode 120000 index 14ab9c8b317..00000000000 --- a/_downloads/a18365d572242ad1c2a687108c0c710c/contourf_log.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a18365d572242ad1c2a687108c0c710c/contourf_log.ipynb \ No newline at end of file diff --git a/_downloads/a1864552db7c65c7d6ba6abe05cfe4a8/anscombe.py b/_downloads/a1864552db7c65c7d6ba6abe05cfe4a8/anscombe.py deleted file mode 120000 index a96068ed943..00000000000 --- a/_downloads/a1864552db7c65c7d6ba6abe05cfe4a8/anscombe.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a1864552db7c65c7d6ba6abe05cfe4a8/anscombe.py \ No newline at end of file diff --git a/_downloads/a18f20cf9833e14581eb066afd980f0a/axes_grid.py b/_downloads/a18f20cf9833e14581eb066afd980f0a/axes_grid.py deleted file mode 120000 index a67c47286f3..00000000000 --- a/_downloads/a18f20cf9833e14581eb066afd980f0a/axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a18f20cf9833e14581eb066afd980f0a/axes_grid.py \ No newline at end of file diff --git a/_downloads/a18f4a2f831db820fc36f18b154efb54/path_tutorial.ipynb b/_downloads/a18f4a2f831db820fc36f18b154efb54/path_tutorial.ipynb deleted file mode 120000 index 7d615486e00..00000000000 --- a/_downloads/a18f4a2f831db820fc36f18b154efb54/path_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a18f4a2f831db820fc36f18b154efb54/path_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/a1a4cafc1035d4bc60863741d9c5c2ca/double_pendulum_sgskip.py b/_downloads/a1a4cafc1035d4bc60863741d9c5c2ca/double_pendulum_sgskip.py deleted file mode 120000 index 1f92c5bcd9b..00000000000 --- a/_downloads/a1a4cafc1035d4bc60863741d9c5c2ca/double_pendulum_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/a1a4cafc1035d4bc60863741d9c5c2ca/double_pendulum_sgskip.py \ No newline at end of file diff --git a/_downloads/a1af7f6346f97eb4399fa0da65f5eba5/parasite_simple.py b/_downloads/a1af7f6346f97eb4399fa0da65f5eba5/parasite_simple.py deleted file mode 120000 index 8e32a6717e7..00000000000 --- a/_downloads/a1af7f6346f97eb4399fa0da65f5eba5/parasite_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a1af7f6346f97eb4399fa0da65f5eba5/parasite_simple.py \ No newline at end of file diff --git a/_downloads/a1ca0839931b98906c052c891ac15c9a/svg_histogram_sgskip.py b/_downloads/a1ca0839931b98906c052c891ac15c9a/svg_histogram_sgskip.py deleted file mode 100644 index 3791fe1ae93..00000000000 --- a/_downloads/a1ca0839931b98906c052c891ac15c9a/svg_histogram_sgskip.py +++ /dev/null @@ -1,160 +0,0 @@ -""" -============= -SVG Histogram -============= - -Demonstrate how to create an interactive histogram, in which bars -are hidden or shown by clicking on legend markers. - -The interactivity is encoded in ecmascript (javascript) and inserted in -the SVG code in a post-processing step. To render the image, open it in -a web browser. SVG is supported in most web browsers used by Linux and -OSX users. Windows IE9 supports SVG, but earlier versions do not. - -Notes ------ -The matplotlib backend lets us assign ids to each object. This is the -mechanism used here to relate matplotlib objects created in python and -the corresponding SVG constructs that are parsed in the second step. -While flexible, ids are cumbersome to use for large collection of -objects. Two mechanisms could be used to simplify things: - -* systematic grouping of objects into SVG tags, -* assigning classes to each SVG object according to its origin. - -For example, instead of modifying the properties of each individual bar, -the bars from the `hist` function could either be grouped in -a PatchCollection, or be assigned a class="hist_##" attribute. - -CSS could also be used more extensively to replace repetitive markup -throughout the generated SVG. - -Author: david.huard@gmail.com - -""" - - -import numpy as np -import matplotlib.pyplot as plt -import xml.etree.ElementTree as ET -from io import BytesIO -import json - - -plt.rcParams['svg.fonttype'] = 'none' - -# Apparently, this `register_namespace` method works only with -# python 2.7 and up and is necessary to avoid garbling the XML name -# space with ns0. -ET.register_namespace("", "http://www.w3.org/2000/svg") - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# --- Create histogram, legend and title --- -plt.figure() -r = np.random.randn(100) -r1 = r + 1 -labels = ['Rabbits', 'Frogs'] -H = plt.hist([r, r1], label=labels) -containers = H[-1] -leg = plt.legend(frameon=False) -plt.title("From a web browser, click on the legend\n" - "marker to toggle the corresponding histogram.") - - -# --- Add ids to the svg objects we'll modify - -hist_patches = {} -for ic, c in enumerate(containers): - hist_patches['hist_%d' % ic] = [] - for il, element in enumerate(c): - element.set_gid('hist_%d_patch_%d' % (ic, il)) - hist_patches['hist_%d' % ic].append('hist_%d_patch_%d' % (ic, il)) - -# Set ids for the legend patches -for i, t in enumerate(leg.get_patches()): - t.set_gid('leg_patch_%d' % i) - -# Set ids for the text patches -for i, t in enumerate(leg.get_texts()): - t.set_gid('leg_text_%d' % i) - -# Save SVG in a fake file object. -f = BytesIO() -plt.savefig(f, format="svg") - -# Create XML tree from the SVG file. -tree, xmlid = ET.XMLID(f.getvalue()) - - -# --- Add interactivity --- - -# Add attributes to the patch objects. -for i, t in enumerate(leg.get_patches()): - el = xmlid['leg_patch_%d' % i] - el.set('cursor', 'pointer') - el.set('onclick', "toggle_hist(this)") - -# Add attributes to the text objects. -for i, t in enumerate(leg.get_texts()): - el = xmlid['leg_text_%d' % i] - el.set('cursor', 'pointer') - el.set('onclick', "toggle_hist(this)") - -# Create script defining the function `toggle_hist`. -# We create a global variable `container` that stores the patches id -# belonging to each histogram. Then a function "toggle_element" sets the -# visibility attribute of all patches of each histogram and the opacity -# of the marker itself. - -script = """ - -""" % json.dumps(hist_patches) - -# Add a transition effect -css = tree.getchildren()[0][0] -css.text = css.text + "g {-webkit-transition:opacity 0.4s ease-out;" + \ - "-moz-transition:opacity 0.4s ease-out;}" - -# Insert the script and save to file. -tree.insert(0, ET.XML(script)) - -ET.ElementTree(tree).write("svg_histogram.svg") diff --git a/_downloads/a1cbb0b9f3b2094953772a9a30135a92/contourf3d_2.py b/_downloads/a1cbb0b9f3b2094953772a9a30135a92/contourf3d_2.py deleted file mode 120000 index 829f1824dfd..00000000000 --- a/_downloads/a1cbb0b9f3b2094953772a9a30135a92/contourf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a1cbb0b9f3b2094953772a9a30135a92/contourf3d_2.py \ No newline at end of file diff --git a/_downloads/a1cc54622e19320f27578fd2bfe11c0e/scatter3d.py b/_downloads/a1cc54622e19320f27578fd2bfe11c0e/scatter3d.py deleted file mode 100644 index 46648d3a806..00000000000 --- a/_downloads/a1cc54622e19320f27578fd2bfe11c0e/scatter3d.py +++ /dev/null @@ -1,43 +0,0 @@ -''' -============== -3D scatterplot -============== - -Demonstration of a basic scatterplot in 3D. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def randrange(n, vmin, vmax): - ''' - Helper function to make an array of random numbers having shape (n, ) - with each number distributed Uniform(vmin, vmax). - ''' - return (vmax - vmin)*np.random.rand(n) + vmin - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -n = 100 - -# For each set of style and range settings, plot n random points in the box -# defined by x in [23, 32], y in [0, 100], z in [zlow, zhigh]. -for m, zlow, zhigh in [('o', -50, -25), ('^', -30, -5)]: - xs = randrange(n, 23, 32) - ys = randrange(n, 0, 100) - zs = randrange(n, zlow, zhigh) - ax.scatter(xs, ys, zs, marker=m) - -ax.set_xlabel('X Label') -ax.set_ylabel('Y Label') -ax.set_zlabel('Z Label') - -plt.show() diff --git a/_downloads/a1d3863a4e17854ce129ffd689dc0c80/style_sheets_reference.py b/_downloads/a1d3863a4e17854ce129ffd689dc0c80/style_sheets_reference.py deleted file mode 120000 index 11109399890..00000000000 --- a/_downloads/a1d3863a4e17854ce129ffd689dc0c80/style_sheets_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a1d3863a4e17854ce129ffd689dc0c80/style_sheets_reference.py \ No newline at end of file diff --git a/_downloads/a1d4ed7e173ec03baeff8a7f18642bb6/contour.py b/_downloads/a1d4ed7e173ec03baeff8a7f18642bb6/contour.py deleted file mode 100644 index ddb0721c120..00000000000 --- a/_downloads/a1d4ed7e173ec03baeff8a7f18642bb6/contour.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -========================= -Frontpage contour example -========================= - -This example reproduces the frontpage contour example. -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import cm - -extent = (-3, 3, -3, 3) - -delta = 0.5 -x = np.arange(-3.0, 4.001, delta) -y = np.arange(-4.0, 3.001, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = Z1 - Z2 - -norm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max()) - -fig, ax = plt.subplots() -cset1 = ax.contourf( - X, Y, Z, 40, - norm=norm) -ax.set_xlim(-2, 2) -ax.set_ylim(-2, 2) -ax.set_xticks([]) -ax.set_yticks([]) -fig.savefig("contour_frontpage.png", dpi=25) # results in 160x120 px image -plt.show() diff --git a/_downloads/a1d818fe24d2bf6404a4978088e533bd/log_demo.ipynb b/_downloads/a1d818fe24d2bf6404a4978088e533bd/log_demo.ipynb deleted file mode 120000 index 7be63676fb1..00000000000 --- a/_downloads/a1d818fe24d2bf6404a4978088e533bd/log_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a1d818fe24d2bf6404a4978088e533bd/log_demo.ipynb \ No newline at end of file diff --git a/_downloads/a1dddf20d6ee66b1b0d26da634ce5302/annotate_text_arrow.ipynb b/_downloads/a1dddf20d6ee66b1b0d26da634ce5302/annotate_text_arrow.ipynb deleted file mode 120000 index f311001e181..00000000000 --- a/_downloads/a1dddf20d6ee66b1b0d26da634ce5302/annotate_text_arrow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a1dddf20d6ee66b1b0d26da634ce5302/annotate_text_arrow.ipynb \ No newline at end of file diff --git a/_downloads/a1e08d02e6c0dc7ea8ee2ff2c4b82db0/multiple_figs_demo.ipynb b/_downloads/a1e08d02e6c0dc7ea8ee2ff2c4b82db0/multiple_figs_demo.ipynb deleted file mode 120000 index 2aa523b50aa..00000000000 --- a/_downloads/a1e08d02e6c0dc7ea8ee2ff2c4b82db0/multiple_figs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a1e08d02e6c0dc7ea8ee2ff2c4b82db0/multiple_figs_demo.ipynb \ No newline at end of file diff --git a/_downloads/a1e5e0f74044c9aa12da64424d6b2632/embedding_in_wx5_sgskip.py b/_downloads/a1e5e0f74044c9aa12da64424d6b2632/embedding_in_wx5_sgskip.py deleted file mode 120000 index e815fccc6a4..00000000000 --- a/_downloads/a1e5e0f74044c9aa12da64424d6b2632/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a1e5e0f74044c9aa12da64424d6b2632/embedding_in_wx5_sgskip.py \ No newline at end of file diff --git a/_downloads/a1e8abef996b274af371201c7786a041/color_cycle.ipynb b/_downloads/a1e8abef996b274af371201c7786a041/color_cycle.ipynb deleted file mode 120000 index 193d09f3306..00000000000 --- a/_downloads/a1e8abef996b274af371201c7786a041/color_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a1e8abef996b274af371201c7786a041/color_cycle.ipynb \ No newline at end of file diff --git a/_downloads/a1f41ec56ceecad988841a7ebd0e8157/hist3d.py b/_downloads/a1f41ec56ceecad988841a7ebd0e8157/hist3d.py deleted file mode 100644 index c7c71d12f53..00000000000 --- a/_downloads/a1f41ec56ceecad988841a7ebd0e8157/hist3d.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -============================== -Create 3D histogram of 2D data -============================== - -Demo of a histogram for 2 dimensional data as a bar graph in 3D. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') -x, y = np.random.rand(2, 100) * 4 -hist, xedges, yedges = np.histogram2d(x, y, bins=4, range=[[0, 4], [0, 4]]) - -# Construct arrays for the anchor positions of the 16 bars. -xpos, ypos = np.meshgrid(xedges[:-1] + 0.25, yedges[:-1] + 0.25, indexing="ij") -xpos = xpos.ravel() -ypos = ypos.ravel() -zpos = 0 - -# Construct arrays with the dimensions for the 16 bars. -dx = dy = 0.5 * np.ones_like(zpos) -dz = hist.ravel() - -ax.bar3d(xpos, ypos, zpos, dx, dy, dz, zsort='average') - -plt.show() diff --git a/_downloads/a1f4bc080bfe24e1945857869d6c3e4c/boxplot_color.ipynb b/_downloads/a1f4bc080bfe24e1945857869d6c3e4c/boxplot_color.ipynb deleted file mode 120000 index 809adac2531..00000000000 --- a/_downloads/a1f4bc080bfe24e1945857869d6c3e4c/boxplot_color.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a1f4bc080bfe24e1945857869d6c3e4c/boxplot_color.ipynb \ No newline at end of file diff --git a/_downloads/a1f931630c1440701454f05250d0b529/plot_solarizedlight2.py b/_downloads/a1f931630c1440701454f05250d0b529/plot_solarizedlight2.py deleted file mode 120000 index 38d739950f1..00000000000 --- a/_downloads/a1f931630c1440701454f05250d0b529/plot_solarizedlight2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a1f931630c1440701454f05250d0b529/plot_solarizedlight2.py \ No newline at end of file diff --git a/_downloads/a1fba5019f8e3fabc8fff1b51ead77a0/text_props.py b/_downloads/a1fba5019f8e3fabc8fff1b51ead77a0/text_props.py deleted file mode 100644 index 27567507db3..00000000000 --- a/_downloads/a1fba5019f8e3fabc8fff1b51ead77a0/text_props.py +++ /dev/null @@ -1,237 +0,0 @@ -""" -============================ - Text properties and layout -============================ - -Controlling properties of text and its layout with Matplotlib. - -The :class:`matplotlib.text.Text` instances have a variety of -properties which can be configured via keyword arguments to the text -commands (e.g., :func:`~matplotlib.pyplot.title`, -:func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.text`). - -========================== ====================================================================================================================== -Property Value Type -========================== ====================================================================================================================== -alpha `float` -backgroundcolor any matplotlib :doc:`color ` -bbox `~matplotlib.patches.Rectangle` prop dict plus key ``'pad'`` which is a pad in points -clip_box a matplotlib.transform.Bbox instance -clip_on bool -clip_path a `~matplotlib.path.Path` instance and a `~matplotlib.transforms.Transform` instance, a `~matplotlib.patches.Patch` -color any matplotlib :doc:`color ` -family [ ``'serif'`` | ``'sans-serif'`` | ``'cursive'`` | ``'fantasy'`` | ``'monospace'`` ] -fontproperties a `~matplotlib.font_manager.FontProperties` instance -horizontalalignment or ha [ ``'center'`` | ``'right'`` | ``'left'`` ] -label any string -linespacing `float` -multialignment [``'left'`` | ``'right'`` | ``'center'`` ] -name or fontname string e.g., [``'Sans'`` | ``'Courier'`` | ``'Helvetica'`` ...] -picker [None|float|boolean|callable] -position (x, y) -rotation [ angle in degrees | ``'vertical'`` | ``'horizontal'`` ] -size or fontsize [ size in points | relative size, e.g., ``'smaller'``, ``'x-large'`` ] -style or fontstyle [ ``'normal'`` | ``'italic'`` | ``'oblique'`` ] -text string or anything printable with '%s' conversion -transform a `~matplotlib.transforms.Transform` instance -variant [ ``'normal'`` | ``'small-caps'`` ] -verticalalignment or va [ ``'center'`` | ``'top'`` | ``'bottom'`` | ``'baseline'`` ] -visible bool -weight or fontweight [ ``'normal'`` | ``'bold'`` | ``'heavy'`` | ``'light'`` | ``'ultrabold'`` | ``'ultralight'``] -x `float` -y `float` -zorder any number -========================== ====================================================================================================================== - - -You can lay out text with the alignment arguments -``horizontalalignment``, ``verticalalignment``, and -``multialignment``. ``horizontalalignment`` controls whether the x -positional argument for the text indicates the left, center or right -side of the text bounding box. ``verticalalignment`` controls whether -the y positional argument for the text indicates the bottom, center or -top side of the text bounding box. ``multialignment``, for newline -separated strings only, controls whether the different lines are left, -center or right justified. Here is an example which uses the -:func:`~matplotlib.pyplot.text` command to show the various alignment -possibilities. The use of ``transform=ax.transAxes`` throughout the -code indicates that the coordinates are given relative to the axes -bounding box, with 0,0 being the lower left of the axes and 1,1 the -upper right. -""" - -import matplotlib.pyplot as plt -import matplotlib.patches as patches - -# build a rectangle in axes coords -left, width = .25, .5 -bottom, height = .25, .5 -right = left + width -top = bottom + height - -fig = plt.figure() -ax = fig.add_axes([0, 0, 1, 1]) - -# axes coordinates are 0,0 is bottom left and 1,1 is upper right -p = patches.Rectangle( - (left, bottom), width, height, - fill=False, transform=ax.transAxes, clip_on=False - ) - -ax.add_patch(p) - -ax.text(left, bottom, 'left top', - horizontalalignment='left', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, bottom, 'left bottom', - horizontalalignment='left', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right bottom', - horizontalalignment='right', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right top', - horizontalalignment='right', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(right, bottom, 'center top', - horizontalalignment='center', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'right center', - horizontalalignment='right', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'left center', - horizontalalignment='left', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(0.5*(left+right), 0.5*(bottom+top), 'middle', - horizontalalignment='center', - verticalalignment='center', - fontsize=20, color='red', - transform=ax.transAxes) - -ax.text(right, 0.5*(bottom+top), 'centered', - horizontalalignment='center', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, top, 'rotated\nwith newlines', - horizontalalignment='center', - verticalalignment='center', - rotation=45, - transform=ax.transAxes) - -ax.set_axis_off() -plt.show() - -############################################################################### -# ============== -# Default Font -# ============== -# -# The base default font is controlled by a set of rcParams. To set the font -# for mathematical expressions, use the rcParams beginning with ``mathtext`` -# (see :ref:`mathtext `). -# -# +---------------------+----------------------------------------------------+ -# | rcParam | usage | -# +=====================+====================================================+ -# | ``'font.family'`` | List of either names of font or ``{'cursive', | -# | | 'fantasy', 'monospace', 'sans', 'sans serif', | -# | | 'sans-serif', 'serif'}``. | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.style'`` | The default style, ex ``'normal'``, | -# | | ``'italic'``. | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.variant'`` | Default variant, ex ``'normal'``, ``'small-caps'`` | -# | | (untested) | -# +---------------------+----------------------------------------------------+ -# | ``'font.stretch'`` | Default stretch, ex ``'normal'``, ``'condensed'`` | -# | | (incomplete) | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.weight'`` | Default weight. Either string or integer | -# | | | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.size'`` | Default font size in points. Relative font sizes | -# | | (``'large'``, ``'x-small'``) are computed against | -# | | this size. | -# +---------------------+----------------------------------------------------+ -# -# The mapping between the family aliases (``{'cursive', 'fantasy', -# 'monospace', 'sans', 'sans serif', 'sans-serif', 'serif'}``) and actual font names -# is controlled by the following rcParams: -# -# -# +------------------------------------------+--------------------------------+ -# | family alias | rcParam with mappings | -# +==========================================+================================+ -# | ``'serif'`` | ``'font.serif'`` | -# +------------------------------------------+--------------------------------+ -# | ``'monospace'`` | ``'font.monospace'`` | -# +------------------------------------------+--------------------------------+ -# | ``'fantasy'`` | ``'font.fantasy'`` | -# +------------------------------------------+--------------------------------+ -# | ``'cursive'`` | ``'font.cursive'`` | -# +------------------------------------------+--------------------------------+ -# | ``{'sans', 'sans serif', 'sans-serif'}`` | ``'font.sans-serif'`` | -# +------------------------------------------+--------------------------------+ -# -# -# which are lists of font names. -# -# Text with non-latin glyphs -# ========================== -# -# As of v2.0 the :ref:`default font ` contains -# glyphs for many western alphabets, but still does not cover all of the -# glyphs that may be required by mpl users. For example, DejaVu has no -# coverage of Chinese, Korean, or Japanese. -# -# -# To set the default font to be one that supports the code points you -# need, prepend the font name to ``'font.family'`` or the desired alias -# lists :: -# -# matplotlib.rcParams['font.sans-serif'] = ['Source Han Sans TW', 'sans-serif'] -# -# or set it in your :file:`.matplotlibrc` file:: -# -# font.sans-serif: Source Han Sans TW, Arial, sans-serif -# -# To control the font used on per-artist basis use the ``'name'``, -# ``'fontname'`` or ``'fontproperties'`` kwargs documented :doc:`above -# `. -# -# -# On linux, `fc-list `__ can be a -# useful tool to discover the font name; for example :: -# -# $ fc-list :lang=zh family -# Noto to Sans Mono CJK TC,Noto Sans Mono CJK TC Bold -# Noto Sans CJK TC,Noto Sans CJK TC Medium -# Noto Sans CJK TC,Noto Sans CJK TC DemiLight -# Noto Sans CJK KR,Noto Sans CJK KR Black -# Noto Sans CJK TC,Noto Sans CJK TC Black -# Noto Sans Mono CJK TC,Noto Sans Mono CJK TC Regular -# Noto Sans CJK SC,Noto Sans CJK SC Light -# -# lists all of the fonts that support Chinese. -# diff --git a/_downloads/a1fdc7c90eb874a0267977326881154c/simple_axisline2.ipynb b/_downloads/a1fdc7c90eb874a0267977326881154c/simple_axisline2.ipynb deleted file mode 120000 index 6c6efd1a18d..00000000000 --- a/_downloads/a1fdc7c90eb874a0267977326881154c/simple_axisline2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a1fdc7c90eb874a0267977326881154c/simple_axisline2.ipynb \ No newline at end of file diff --git a/_downloads/a1fdfa33f4f2c32f26a46c99a8fa5692/pgf.ipynb b/_downloads/a1fdfa33f4f2c32f26a46c99a8fa5692/pgf.ipynb deleted file mode 120000 index 4b4211435d6..00000000000 --- a/_downloads/a1fdfa33f4f2c32f26a46c99a8fa5692/pgf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a1fdfa33f4f2c32f26a46c99a8fa5692/pgf.ipynb \ No newline at end of file diff --git a/_downloads/a20063993a5fb05b21dcb939298f727d/simple_colorbar.py b/_downloads/a20063993a5fb05b21dcb939298f727d/simple_colorbar.py deleted file mode 120000 index a970a208ac7..00000000000 --- a/_downloads/a20063993a5fb05b21dcb939298f727d/simple_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a20063993a5fb05b21dcb939298f727d/simple_colorbar.py \ No newline at end of file diff --git a/_downloads/a209d398996b5e5fa1542119df3c251c/demo_axis_direction.py b/_downloads/a209d398996b5e5fa1542119df3c251c/demo_axis_direction.py deleted file mode 120000 index 20a0b8c57f0..00000000000 --- a/_downloads/a209d398996b5e5fa1542119df3c251c/demo_axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a209d398996b5e5fa1542119df3c251c/demo_axis_direction.py \ No newline at end of file diff --git a/_downloads/a20b156d61885ea62fde19636a63df61/fonts_demo_kw.ipynb b/_downloads/a20b156d61885ea62fde19636a63df61/fonts_demo_kw.ipynb deleted file mode 100644 index 21abc244cde..00000000000 --- a/_downloads/a20b156d61885ea62fde19636a63df61/fonts_demo_kw.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===================\nFonts demo (kwargs)\n===================\n\nSet font properties using kwargs.\n\nSee :doc:`fonts_demo` to achieve the same effect using setters.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nalignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'}\n\n# Show family options\n\nfamilies = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace']\n\nt = plt.figtext(0.1, 0.9, 'family', size='large', **alignment)\n\nyp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2]\n\nfor k, family in enumerate(families):\n t = plt.figtext(0.1, yp[k], family, family=family, **alignment)\n\n# Show style options\n\nstyles = ['normal', 'italic', 'oblique']\n\nt = plt.figtext(0.3, 0.9, 'style', **alignment)\n\nfor k, style in enumerate(styles):\n t = plt.figtext(0.3, yp[k], style, family='sans-serif', style=style,\n **alignment)\n\n# Show variant options\n\nvariants = ['normal', 'small-caps']\n\nt = plt.figtext(0.5, 0.9, 'variant', **alignment)\n\nfor k, variant in enumerate(variants):\n t = plt.figtext(0.5, yp[k], variant, family='serif', variant=variant,\n **alignment)\n\n# Show weight options\n\nweights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black']\n\nt = plt.figtext(0.7, 0.9, 'weight', **alignment)\n\nfor k, weight in enumerate(weights):\n t = plt.figtext(0.7, yp[k], weight, weight=weight, **alignment)\n\n# Show size options\n\nsizes = ['xx-small', 'x-small', 'small', 'medium', 'large',\n 'x-large', 'xx-large']\n\nt = plt.figtext(0.9, 0.9, 'size', **alignment)\n\nfor k, size in enumerate(sizes):\n t = plt.figtext(0.9, yp[k], size, size=size, **alignment)\n\n# Show bold italic\nt = plt.figtext(0.3, 0.1, 'bold italic', style='italic',\n weight='bold', size='x-small',\n **alignment)\nt = plt.figtext(0.3, 0.2, 'bold italic',\n style='italic', weight='bold', size='medium',\n **alignment)\nt = plt.figtext(0.3, 0.3, 'bold italic',\n style='italic', weight='bold', size='x-large',\n **alignment)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a20b45e0887effe28683b45ff5fe05ef/images.py b/_downloads/a20b45e0887effe28683b45ff5fe05ef/images.py deleted file mode 120000 index ae79392c593..00000000000 --- a/_downloads/a20b45e0887effe28683b45ff5fe05ef/images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a20b45e0887effe28683b45ff5fe05ef/images.py \ No newline at end of file diff --git a/_downloads/a210dfa858dc2f29e0211e3ce3d3ce47/simple_annotate01.ipynb b/_downloads/a210dfa858dc2f29e0211e3ce3d3ce47/simple_annotate01.ipynb deleted file mode 100644 index 6d884979a63..00000000000 --- a/_downloads/a210dfa858dc2f29e0211e3ce3d3ce47/simple_annotate01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Annotate01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as mpatches\n\n\nfig, axs = plt.subplots(2, 4)\nx1, y1 = 0.3, 0.3\nx2, y2 = 0.7, 0.7\n\nax = axs.flat[0]\nax.plot([x1, x2], [y1, y2], \"o\")\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\"))\nax.text(.05, .95, \"A $->$ B\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[2]\nax.plot([x1, x2], [y1, y2], \"o\")\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.3\",\n shrinkB=5)\n )\nax.text(.05, .95, \"shrinkB=5\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[3]\nax.plot([x1, x2], [y1, y2], \"o\")\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.3\"))\nax.text(.05, .95, \"connectionstyle=arc3\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[4]\nax.plot([x1, x2], [y1, y2], \"o\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.2\")\n )\n\nax = axs.flat[5]\nax.plot([x1, x2], [y1, y2], \"o\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.2\",\n patchB=el)\n )\nax.text(.05, .95, \"patchB\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[6]\nax.plot([x1], [y1], \"o\")\nax.annotate(\"Test\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n ha=\"center\", va=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\")\n )\nax.text(.05, .95, \"annotate\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[7]\nax.plot([x1], [y1], \"o\")\nax.annotate(\"Test\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n ha=\"center\", va=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\", ),\n arrowprops=dict(arrowstyle=\"->\", relpos=(0., 0.))\n )\nax.text(.05, .95, \"relpos=(0,0)\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nfor ax in axs.flat:\n ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a21ad2e8c5a8ff3225365a947ea8059b/contourf_hatching.ipynb b/_downloads/a21ad2e8c5a8ff3225365a947ea8059b/contourf_hatching.ipynb deleted file mode 120000 index d3f91096dbd..00000000000 --- a/_downloads/a21ad2e8c5a8ff3225365a947ea8059b/contourf_hatching.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a21ad2e8c5a8ff3225365a947ea8059b/contourf_hatching.ipynb \ No newline at end of file diff --git a/_downloads/a2298827019c2c94b5fc1bf606e6d29b/multiple_histograms_side_by_side.py b/_downloads/a2298827019c2c94b5fc1bf606e6d29b/multiple_histograms_side_by_side.py deleted file mode 120000 index d1ff9f082c7..00000000000 --- a/_downloads/a2298827019c2c94b5fc1bf606e6d29b/multiple_histograms_side_by_side.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a2298827019c2c94b5fc1bf606e6d29b/multiple_histograms_side_by_side.py \ No newline at end of file diff --git a/_downloads/a23199e2c1431981bceb603a75525420/path_editor.ipynb b/_downloads/a23199e2c1431981bceb603a75525420/path_editor.ipynb deleted file mode 120000 index fc48a6043ab..00000000000 --- a/_downloads/a23199e2c1431981bceb603a75525420/path_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a23199e2c1431981bceb603a75525420/path_editor.ipynb \ No newline at end of file diff --git a/_downloads/a23700a98c905fe89fe727e707c03d88/auto_subplots_adjust.ipynb b/_downloads/a23700a98c905fe89fe727e707c03d88/auto_subplots_adjust.ipynb deleted file mode 120000 index ab03d9f0d01..00000000000 --- a/_downloads/a23700a98c905fe89fe727e707c03d88/auto_subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a23700a98c905fe89fe727e707c03d88/auto_subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/a23746dec35126eb16ccdba57f59d094/histogram_multihist.py b/_downloads/a23746dec35126eb16ccdba57f59d094/histogram_multihist.py deleted file mode 120000 index c3b6cef65fd..00000000000 --- a/_downloads/a23746dec35126eb16ccdba57f59d094/histogram_multihist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a23746dec35126eb16ccdba57f59d094/histogram_multihist.py \ No newline at end of file diff --git a/_downloads/a2386639aff88cc32bc239cf5e39e9eb/hinton_demo.py b/_downloads/a2386639aff88cc32bc239cf5e39e9eb/hinton_demo.py deleted file mode 120000 index be78dcac286..00000000000 --- a/_downloads/a2386639aff88cc32bc239cf5e39e9eb/hinton_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a2386639aff88cc32bc239cf5e39e9eb/hinton_demo.py \ No newline at end of file diff --git a/_downloads/a24e7beb60cf11dc4bc8fc0ed31769f5/multiple_figs_demo.ipynb b/_downloads/a24e7beb60cf11dc4bc8fc0ed31769f5/multiple_figs_demo.ipynb deleted file mode 120000 index cc480b916c1..00000000000 --- a/_downloads/a24e7beb60cf11dc4bc8fc0ed31769f5/multiple_figs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a24e7beb60cf11dc4bc8fc0ed31769f5/multiple_figs_demo.ipynb \ No newline at end of file diff --git a/_downloads/a258d727f7f1c50eedb412dbcd159436/pylab_with_gtk_sgskip.py b/_downloads/a258d727f7f1c50eedb412dbcd159436/pylab_with_gtk_sgskip.py deleted file mode 100644 index 82cb3d3e82b..00000000000 --- a/_downloads/a258d727f7f1c50eedb412dbcd159436/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -=============== -pyplot with GTK -=============== - -An example of how to use pyplot to manage your figure windows, but modify the -GUI by accessing the underlying GTK widgets. -""" - -import matplotlib -matplotlib.use('GTK3Agg') # or 'GTK3Cairo' -import matplotlib.pyplot as plt - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - - -fig, ax = plt.subplots() -ax.plot([1, 2, 3], 'ro-', label='easy as 1 2 3') -ax.plot([1, 4, 9], 'gs--', label='easy as 1 2 3 squared') -ax.legend() - -manager = fig.canvas.manager -# you can access the window or vbox attributes this way -toolbar = manager.toolbar -vbox = manager.vbox - -# now let's add a button to the toolbar -button = Gtk.Button(label='Click me') -button.show() -button.connect('clicked', lambda button: print('hi mom')) - -toolitem = Gtk.ToolItem() -toolitem.show() -toolitem.set_tooltip_text('Click me for fun and profit') -toolitem.add(button) - -pos = 8 # where to insert this in the mpl toolbar -toolbar.insert(toolitem, pos) - -# now let's add a widget to the vbox -label = Gtk.Label() -label.set_markup('Drag mouse over axes for position') -label.show() -vbox.pack_start(label, False, False, 0) -vbox.reorder_child(toolbar, -1) - -def update(event): - if event.xdata is None: - label.set_markup('Drag mouse over axes for position') - else: - label.set_markup( - f'x,y=({event.xdata}, {event.ydata})') - -fig.canvas.mpl_connect('motion_notify_event', update) - -plt.show() diff --git a/_downloads/a25b22f4b69d60f329e7dffbdb28f965/surface3d.py b/_downloads/a25b22f4b69d60f329e7dffbdb28f965/surface3d.py deleted file mode 120000 index 22062422551..00000000000 --- a/_downloads/a25b22f4b69d60f329e7dffbdb28f965/surface3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a25b22f4b69d60f329e7dffbdb28f965/surface3d.py \ No newline at end of file diff --git a/_downloads/a25cab8d93a56f51374e29b1adcd88e7/fancyarrow_demo.ipynb b/_downloads/a25cab8d93a56f51374e29b1adcd88e7/fancyarrow_demo.ipynb deleted file mode 100644 index 9aba7959cd4..00000000000 --- a/_downloads/a25cab8d93a56f51374e29b1adcd88e7/fancyarrow_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fancyarrow Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nstyles = mpatches.ArrowStyle.get_styles()\n\nncol = 2\nnrow = (len(styles) + 1) // ncol\nfigheight = (nrow + 0.5)\nfig = plt.figure(figsize=(4 * ncol / 1.5, figheight / 1.5))\nfontsize = 0.2 * 70\n\n\nax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1.)\n\nax.set_xlim(0, 4 * ncol)\nax.set_ylim(0, figheight)\n\n\ndef to_texstring(s):\n s = s.replace(\"<\", r\"$<$\")\n s = s.replace(\">\", r\"$>$\")\n s = s.replace(\"|\", r\"$|$\")\n return s\n\n\nfor i, (stylename, styleclass) in enumerate(sorted(styles.items())):\n x = 3.2 + (i // nrow) * 4\n y = (figheight - 0.7 - i % nrow) # /figheight\n p = mpatches.Circle((x, y), 0.2)\n ax.add_patch(p)\n\n ax.annotate(to_texstring(stylename), (x, y),\n (x - 1.2, y),\n ha=\"right\", va=\"center\",\n size=fontsize,\n arrowprops=dict(arrowstyle=stylename,\n patchB=p,\n shrinkA=5,\n shrinkB=5,\n fc=\"k\", ec=\"k\",\n connectionstyle=\"arc3,rad=-0.05\",\n ),\n bbox=dict(boxstyle=\"square\", fc=\"w\"))\n\nax.xaxis.set_visible(False)\nax.yaxis.set_visible(False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a25f64f68c544f65649b2c7ac3686277/xcorr_acorr_demo.ipynb b/_downloads/a25f64f68c544f65649b2c7ac3686277/xcorr_acorr_demo.ipynb deleted file mode 120000 index dfda5a60949..00000000000 --- a/_downloads/a25f64f68c544f65649b2c7ac3686277/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a25f64f68c544f65649b2c7ac3686277/xcorr_acorr_demo.ipynb \ No newline at end of file diff --git a/_downloads/a260a31c20adac90e92c2d6799457dbf/contourf_demo.py b/_downloads/a260a31c20adac90e92c2d6799457dbf/contourf_demo.py deleted file mode 120000 index 90750df2559..00000000000 --- a/_downloads/a260a31c20adac90e92c2d6799457dbf/contourf_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a260a31c20adac90e92c2d6799457dbf/contourf_demo.py \ No newline at end of file diff --git a/_downloads/a26417110b221a6f17a10104646b6870/date_concise_formatter.ipynb b/_downloads/a26417110b221a6f17a10104646b6870/date_concise_formatter.ipynb deleted file mode 120000 index f203b9ff142..00000000000 --- a/_downloads/a26417110b221a6f17a10104646b6870/date_concise_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a26417110b221a6f17a10104646b6870/date_concise_formatter.ipynb \ No newline at end of file diff --git a/_downloads/a27435b298713cad733e2660d98af7a4/scatter_hist.py b/_downloads/a27435b298713cad733e2660d98af7a4/scatter_hist.py deleted file mode 120000 index 36566719e26..00000000000 --- a/_downloads/a27435b298713cad733e2660d98af7a4/scatter_hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a27435b298713cad733e2660d98af7a4/scatter_hist.py \ No newline at end of file diff --git a/_downloads/a27876fb33de2cc085904b70ca2f94c6/demo_axes_grid.py b/_downloads/a27876fb33de2cc085904b70ca2f94c6/demo_axes_grid.py deleted file mode 120000 index 8749029935c..00000000000 --- a/_downloads/a27876fb33de2cc085904b70ca2f94c6/demo_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a27876fb33de2cc085904b70ca2f94c6/demo_axes_grid.py \ No newline at end of file diff --git a/_downloads/a27c3a49fe2bb2bdcd71dbecabec7ebe/imshow_extent.py b/_downloads/a27c3a49fe2bb2bdcd71dbecabec7ebe/imshow_extent.py deleted file mode 100644 index 7b52afdcd0f..00000000000 --- a/_downloads/a27c3a49fe2bb2bdcd71dbecabec7ebe/imshow_extent.py +++ /dev/null @@ -1,265 +0,0 @@ -""" -*origin* and *extent* in `~.Axes.imshow` -======================================== - -:meth:`~.Axes.imshow` allows you to render an image (either a 2D array -which will be color-mapped (based on *norm* and *cmap*) or and 3D RGB(A) -array which will be used as-is) to a rectangular region in dataspace. -The orientation of the image in the final rendering is controlled by -the *origin* and *extent* kwargs (and attributes on the resulting -`~.AxesImage` instance) and the data limits of the axes. - -The *extent* kwarg controls the bounding box in data coordinates that -the image will fill specified as ``(left, right, bottom, top)`` in -**data coordinates**, the *origin* kwarg controls how the image fills -that bounding box, and the orientation in the final rendered image is -also affected by the axes limits. - -.. hint:: Most of the code below is used for adding labels and informative - text to the plots. The described effects of *origin* and *extent* can be - seen in the plots without the need to follow all code details. - - For a quick understanding, you may want to skip the code details below and - directly continue with the discussion of the results. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.gridspec import GridSpec - - -def index_to_coordinate(index, extent, origin): - """Return the pixel center of an index.""" - left, right, bottom, top = extent - - hshift = 0.5 * np.sign(right - left) - left, right = left + hshift, right - hshift - vshift = 0.5 * np.sign(top - bottom) - bottom, top = bottom + vshift, top - vshift - - if origin == 'upper': - bottom, top = top, bottom - - return { - "[0, 0]": (left, bottom), - "[M', 0]": (left, top), - "[0, N']": (right, bottom), - "[M', N']": (right, top), - }[index] - - -def get_index_label_pos(index, extent, origin, inverted_xindex): - """ - Return the desired position and horizontal alignment of an index label. - """ - if extent is None: - extent = lookup_extent(origin) - left, right, bottom, top = extent - x, y = index_to_coordinate(index, extent, origin) - - is_x0 = index[-2:] == "0]" - halign = 'left' if is_x0 ^ inverted_xindex else 'right' - hshift = 0.5 * np.sign(left - right) - x += hshift * (1 if is_x0 else -1) - return x, y, halign - - -def get_color(index, data, cmap): - """Return the data color of an index.""" - val = { - "[0, 0]": data[0, 0], - "[0, N']": data[0, -1], - "[M', 0]": data[-1, 0], - "[M', N']": data[-1, -1], - }[index] - return cmap(val / data.max()) - - -def lookup_extent(origin): - """Return extent for label positioning when not given explicitly.""" - if origin == 'lower': - return (-0.5, 6.5, -0.5, 5.5) - else: - return (-0.5, 6.5, 5.5, -0.5) - - -def set_extent_None_text(ax): - ax.text(3, 2.5, 'equals\nextent=None', size='large', - ha='center', va='center', color='w') - - -def plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim): - """Actually run ``imshow()`` and add extent and index labels.""" - im = ax.imshow(data, origin=origin, extent=extent) - - # extent labels (left, right, bottom, top) - left, right, bottom, top = im.get_extent() - if xlim is None or top > bottom: - upper_string, lower_string = 'top', 'bottom' - else: - upper_string, lower_string = 'bottom', 'top' - if ylim is None or left < right: - port_string, starboard_string = 'left', 'right' - inverted_xindex = False - else: - port_string, starboard_string = 'right', 'left' - inverted_xindex = True - bbox_kwargs = {'fc': 'w', 'alpha': .75, 'boxstyle': "round4"} - ann_kwargs = {'xycoords': 'axes fraction', - 'textcoords': 'offset points', - 'bbox': bbox_kwargs} - ax.annotate(upper_string, xy=(.5, 1), xytext=(0, -1), - ha='center', va='top', **ann_kwargs) - ax.annotate(lower_string, xy=(.5, 0), xytext=(0, 1), - ha='center', va='bottom', **ann_kwargs) - ax.annotate(port_string, xy=(0, .5), xytext=(1, 0), - ha='left', va='center', rotation=90, - **ann_kwargs) - ax.annotate(starboard_string, xy=(1, .5), xytext=(-1, 0), - ha='right', va='center', rotation=-90, - **ann_kwargs) - ax.set_title('origin: {origin}'.format(origin=origin)) - - # index labels - for index in ["[0, 0]", "[0, N']", "[M', 0]", "[M', N']"]: - tx, ty, halign = get_index_label_pos(index, extent, origin, - inverted_xindex) - facecolor = get_color(index, data, im.get_cmap()) - ax.text(tx, ty, index, color='white', ha=halign, va='center', - bbox={'boxstyle': 'square', 'facecolor': facecolor}) - if xlim: - ax.set_xlim(*xlim) - if ylim: - ax.set_ylim(*ylim) - - -def generate_imshow_demo_grid(extents, xlim=None, ylim=None): - N = len(extents) - fig = plt.figure(tight_layout=True) - fig.set_size_inches(6, N * (11.25) / 5) - gs = GridSpec(N, 5, figure=fig) - - columns = {'label': [fig.add_subplot(gs[j, 0]) for j in range(N)], - 'upper': [fig.add_subplot(gs[j, 1:3]) for j in range(N)], - 'lower': [fig.add_subplot(gs[j, 3:5]) for j in range(N)]} - x, y = np.ogrid[0:6, 0:7] - data = x + y - - for origin in ['upper', 'lower']: - for ax, extent in zip(columns[origin], extents): - plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim) - - for ax, extent in zip(columns['label'], extents): - text_kwargs = {'ha': 'right', - 'va': 'center', - 'xycoords': 'axes fraction', - 'xy': (1, .5)} - if extent is None: - ax.annotate('None', **text_kwargs) - ax.set_title('extent=') - else: - left, right, bottom, top = extent - text = ('left: {left:0.1f}\nright: {right:0.1f}\n' + - 'bottom: {bottom:0.1f}\ntop: {top:0.1f}\n').format( - left=left, right=right, bottom=bottom, top=top) - - ax.annotate(text, **text_kwargs) - ax.axis('off') - return columns - - -############################################################################### -# -# Default extent -# -------------- -# -# First, let's have a look at the default `extent=None` - -generate_imshow_demo_grid(extents=[None]) - -############################################################################### -# -# Generally, for an array of shape (M, N), the first index runs along the -# vertical, the second index runs along the horizontal. -# The pixel centers are at integer positions ranging from 0 to ``N' = N - 1`` -# horizontally and from 0 to ``M' = M - 1`` vertically. -# *origin* determines how to the data is filled in the bounding box. -# -# For ``origin='lower'``: -# -# - [0, 0] is at (left, bottom) -# - [M', 0] is at (left, top) -# - [0, N'] is at (right, bottom) -# - [M', N'] is at (right, top) -# -# ``origin='upper'`` reverses the vertical axes direction and filling: -# -# - [0, 0] is at (left, top) -# - [M', 0] is at (left, bottom) -# - [0, N'] is at (right, top) -# - [M', N'] is at (right, bottom) -# -# In summary, the position of the [0, 0] index as well as the extent are -# influenced by *origin*: -# -# ====== =============== ========================================== -# origin [0, 0] position extent -# ====== =============== ========================================== -# upper top left ``(-0.5, numcols-0.5, numrows-0.5, -0.5)`` -# lower bottom left ``(-0.5, numcols-0.5, -0.5, numrows-0.5)`` -# ====== =============== ========================================== -# -# The default value of *origin* is set by :rc:`image.origin` which defaults -# to ``'upper'`` to match the matrix indexing conventions in math and -# computer graphics image indexing conventions. -# -# -# Explicit extent -# --------------- -# -# By setting *extent* we define the coordinates of the image area. The -# underlying image data is interpolated/resampled to fill that area. -# -# If the axes is set to autoscale, then the view limits of the axes are set -# to match the *extent* which ensures that the coordinate set by -# ``(left, bottom)`` is at the bottom left of the axes! However, this -# may invert the axis so they do not increase in the 'natural' direction. -# - -extents = [(-0.5, 6.5, -0.5, 5.5), - (-0.5, 6.5, 5.5, -0.5), - (6.5, -0.5, -0.5, 5.5), - (6.5, -0.5, 5.5, -0.5)] - -columns = generate_imshow_demo_grid(extents) -set_extent_None_text(columns['upper'][1]) -set_extent_None_text(columns['lower'][0]) - - -############################################################################### -# -# Explicit extent and axes limits -# ------------------------------- -# -# If we fix the axes limits by explicitly setting `set_xlim` / `set_ylim`, we -# force a certain size and orientation of the axes. -# This can decouple the 'left-right' and 'top-bottom' sense of the image from -# the orientation on the screen. -# -# In the example below we have chosen the limits slightly larger than the -# extent (note the white areas within the Axes). -# -# While we keep the extents as in the examples before, the coordinate (0, 0) -# is now explicitly put at the bottom left and values increase to up and to -# the right (from the viewer point of view). -# We can see that: -# -# - The coordinate ``(left, bottom)`` anchors the image which then fills the -# box going towards the ``(right, top)`` point in data space. -# - The first column is always closest to the 'left'. -# - *origin* controls if the first row is closest to 'top' or 'bottom'. -# - The image may be inverted along either direction. -# - The 'left-right' and 'top-bottom' sense of the image may be uncoupled from -# the orientation on the screen. - -generate_imshow_demo_grid(extents=[None] + extents, - xlim=(-2, 8), ylim=(-1, 6)) diff --git a/_downloads/a280727e1985dd33cea96fb78fa52125/centered_ticklabels.py b/_downloads/a280727e1985dd33cea96fb78fa52125/centered_ticklabels.py deleted file mode 120000 index a1dad79ae32..00000000000 --- a/_downloads/a280727e1985dd33cea96fb78fa52125/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a280727e1985dd33cea96fb78fa52125/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/a28765be19887476469c03569a192293/simple_legend02.py b/_downloads/a28765be19887476469c03569a192293/simple_legend02.py deleted file mode 120000 index 4facd5c6cd5..00000000000 --- a/_downloads/a28765be19887476469c03569a192293/simple_legend02.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a28765be19887476469c03569a192293/simple_legend02.py \ No newline at end of file diff --git a/_downloads/a299a91e09e82f19c72104106e7aeae1/nested_pie.ipynb b/_downloads/a299a91e09e82f19c72104106e7aeae1/nested_pie.ipynb deleted file mode 100644 index 6b0fdfe4226..00000000000 --- a/_downloads/a299a91e09e82f19c72104106e7aeae1/nested_pie.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nested pie charts\n\n\nThe following examples show two ways to build a nested pie chart\nin Matplotlib. Such charts are often referred to as donut charts.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The most straightforward way to build a pie chart is to use the\n:meth:`pie method `\n\nIn this case, pie takes values corresponding to counts in a group.\nWe'll first generate some fake data, corresponding to three groups.\nIn the inner circle, we'll treat each number as belonging to its\nown group. In the outer circle, we'll plot them as members of their\noriginal 3 groups.\n\nThe effect of the donut shape is achieved by setting a `width` to\nthe pie's wedges through the `wedgeprops` argument.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\nsize = 0.3\nvals = np.array([[60., 32.], [37., 40.], [29., 10.]])\n\ncmap = plt.get_cmap(\"tab20c\")\nouter_colors = cmap(np.arange(3)*4)\ninner_colors = cmap(np.array([1, 2, 5, 6, 9, 10]))\n\nax.pie(vals.sum(axis=1), radius=1, colors=outer_colors,\n wedgeprops=dict(width=size, edgecolor='w'))\n\nax.pie(vals.flatten(), radius=1-size, colors=inner_colors,\n wedgeprops=dict(width=size, edgecolor='w'))\n\nax.set(aspect=\"equal\", title='Pie plot with `ax.pie`')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "However, you can accomplish the same output by using a bar plot on\naxes with a polar coordinate system. This may give more flexibility on\nthe exact design of the plot.\n\nIn this case, we need to map x-values of the bar chart onto radians of\na circle. The cumulative sum of the values are used as the edges\nof the bars.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(subplot_kw=dict(polar=True))\n\nsize = 0.3\nvals = np.array([[60., 32.], [37., 40.], [29., 10.]])\n#normalize vals to 2 pi\nvalsnorm = vals/np.sum(vals)*2*np.pi\n#obtain the ordinates of the bar edges\nvalsleft = np.cumsum(np.append(0, valsnorm.flatten()[:-1])).reshape(vals.shape)\n\ncmap = plt.get_cmap(\"tab20c\")\nouter_colors = cmap(np.arange(3)*4)\ninner_colors = cmap(np.array([1, 2, 5, 6, 9, 10]))\n\nax.bar(x=valsleft[:, 0],\n width=valsnorm.sum(axis=1), bottom=1-size, height=size,\n color=outer_colors, edgecolor='w', linewidth=1, align=\"edge\")\n\nax.bar(x=valsleft.flatten(),\n width=valsnorm.flatten(), bottom=1-2*size, height=size,\n color=inner_colors, edgecolor='w', linewidth=1, align=\"edge\")\n\nax.set(title=\"Pie plot with `ax.bar` and polar coordinates\")\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.projections.polar\nmatplotlib.axes.Axes.set\nmatplotlib.axes.Axes.set_axis_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a29b9058594caa4f86962a20a6122401/trigradient_demo.py b/_downloads/a29b9058594caa4f86962a20a6122401/trigradient_demo.py deleted file mode 120000 index 8b6da33e15c..00000000000 --- a/_downloads/a29b9058594caa4f86962a20a6122401/trigradient_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a29b9058594caa4f86962a20a6122401/trigradient_demo.py \ No newline at end of file diff --git a/_downloads/a29ce23cba9558060b3e881dcd7d5d11/tricontour_smooth_delaunay.ipynb b/_downloads/a29ce23cba9558060b3e881dcd7d5d11/tricontour_smooth_delaunay.ipynb deleted file mode 120000 index 00d8a4cfb33..00000000000 --- a/_downloads/a29ce23cba9558060b3e881dcd7d5d11/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a29ce23cba9558060b3e881dcd7d5d11/tricontour_smooth_delaunay.ipynb \ No newline at end of file diff --git a/_downloads/a2a725357db889118909dfd04d0b2069/demo_curvelinear_grid2.ipynb b/_downloads/a2a725357db889118909dfd04d0b2069/demo_curvelinear_grid2.ipynb deleted file mode 120000 index be214c94101..00000000000 --- a/_downloads/a2a725357db889118909dfd04d0b2069/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a2a725357db889118909dfd04d0b2069/demo_curvelinear_grid2.ipynb \ No newline at end of file diff --git a/_downloads/a2a93adcdf001d5651a986921a6bedd2/whats_new_98_4_fill_between.ipynb b/_downloads/a2a93adcdf001d5651a986921a6bedd2/whats_new_98_4_fill_between.ipynb deleted file mode 120000 index 8aff6165045..00000000000 --- a/_downloads/a2a93adcdf001d5651a986921a6bedd2/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/a2a93adcdf001d5651a986921a6bedd2/whats_new_98_4_fill_between.ipynb \ No newline at end of file diff --git a/_downloads/a2b08698fbe238751256e0390645337f/customized_violin.ipynb b/_downloads/a2b08698fbe238751256e0390645337f/customized_violin.ipynb deleted file mode 100644 index 363c6a5b992..00000000000 --- a/_downloads/a2b08698fbe238751256e0390645337f/customized_violin.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Violin plot customization\n\n\nThis example demonstrates how to fully customize violin plots.\nThe first plot shows the default style by providing only\nthe data. The second plot first limits what matplotlib draws\nwith additional kwargs. Then a simplified representation of\na box plot is drawn on top. Lastly, the styles of the artists\nof the violins are modified.\n\nFor more information on violin plots, the scikit-learn docs have a great\nsection: http://scikit-learn.org/stable/modules/density.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef adjacent_values(vals, q1, q3):\n upper_adjacent_value = q3 + (q3 - q1) * 1.5\n upper_adjacent_value = np.clip(upper_adjacent_value, q3, vals[-1])\n\n lower_adjacent_value = q1 - (q3 - q1) * 1.5\n lower_adjacent_value = np.clip(lower_adjacent_value, vals[0], q1)\n return lower_adjacent_value, upper_adjacent_value\n\n\ndef set_axis_style(ax, labels):\n ax.get_xaxis().set_tick_params(direction='out')\n ax.xaxis.set_ticks_position('bottom')\n ax.set_xticks(np.arange(1, len(labels) + 1))\n ax.set_xticklabels(labels)\n ax.set_xlim(0.25, len(labels) + 0.75)\n ax.set_xlabel('Sample name')\n\n\n# create test data\nnp.random.seed(19680801)\ndata = [sorted(np.random.normal(0, std, 100)) for std in range(1, 5)]\n\nfig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2, figsize=(9, 4), sharey=True)\n\nax1.set_title('Default violin plot')\nax1.set_ylabel('Observed values')\nax1.violinplot(data)\n\nax2.set_title('Customized violin plot')\nparts = ax2.violinplot(\n data, showmeans=False, showmedians=False,\n showextrema=False)\n\nfor pc in parts['bodies']:\n pc.set_facecolor('#D43F3A')\n pc.set_edgecolor('black')\n pc.set_alpha(1)\n\nquartile1, medians, quartile3 = np.percentile(data, [25, 50, 75], axis=1)\nwhiskers = np.array([\n adjacent_values(sorted_array, q1, q3)\n for sorted_array, q1, q3 in zip(data, quartile1, quartile3)])\nwhiskersMin, whiskersMax = whiskers[:, 0], whiskers[:, 1]\n\ninds = np.arange(1, len(medians) + 1)\nax2.scatter(inds, medians, marker='o', color='white', s=30, zorder=3)\nax2.vlines(inds, quartile1, quartile3, color='k', linestyle='-', lw=5)\nax2.vlines(inds, whiskersMin, whiskersMax, color='k', linestyle='-', lw=1)\n\n# set style for the axes\nlabels = ['A', 'B', 'C', 'D']\nfor ax in [ax1, ax2]:\n set_axis_style(ax, labels)\n\nplt.subplots_adjust(bottom=0.15, wspace=0.05)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a2b090be9d26eb95a421690851a81a38/tricontour_demo.py b/_downloads/a2b090be9d26eb95a421690851a81a38/tricontour_demo.py deleted file mode 120000 index 78e4f3b935b..00000000000 --- a/_downloads/a2b090be9d26eb95a421690851a81a38/tricontour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a2b090be9d26eb95a421690851a81a38/tricontour_demo.py \ No newline at end of file diff --git a/_downloads/a2b1d4fc7bd6cb4c804aee04691c8d1d/demo_gridspec05.ipynb b/_downloads/a2b1d4fc7bd6cb4c804aee04691c8d1d/demo_gridspec05.ipynb deleted file mode 120000 index 37a2ec1d382..00000000000 --- a/_downloads/a2b1d4fc7bd6cb4c804aee04691c8d1d/demo_gridspec05.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/a2b1d4fc7bd6cb4c804aee04691c8d1d/demo_gridspec05.ipynb \ No newline at end of file diff --git a/_downloads/a2b7a67318043bc3b886f67dba2fa09c/animate_decay.ipynb b/_downloads/a2b7a67318043bc3b886f67dba2fa09c/animate_decay.ipynb deleted file mode 120000 index f1a4d7f61df..00000000000 --- a/_downloads/a2b7a67318043bc3b886f67dba2fa09c/animate_decay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a2b7a67318043bc3b886f67dba2fa09c/animate_decay.ipynb \ No newline at end of file diff --git a/_downloads/a2b801f410afc3c47aa5b22d4e188707/bar_label_demo.py b/_downloads/a2b801f410afc3c47aa5b22d4e188707/bar_label_demo.py deleted file mode 120000 index 44293fb4552..00000000000 --- a/_downloads/a2b801f410afc3c47aa5b22d4e188707/bar_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a2b801f410afc3c47aa5b22d4e188707/bar_label_demo.py \ No newline at end of file diff --git a/_downloads/a2d354e70b748212de8532e8229c840c/demo_ticklabel_alignment.py b/_downloads/a2d354e70b748212de8532e8229c840c/demo_ticklabel_alignment.py deleted file mode 120000 index 0c8e40a41fb..00000000000 --- a/_downloads/a2d354e70b748212de8532e8229c840c/demo_ticklabel_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a2d354e70b748212de8532e8229c840c/demo_ticklabel_alignment.py \ No newline at end of file diff --git a/_downloads/a2d46964df58d317d427b64ff9986715/basic_units.ipynb b/_downloads/a2d46964df58d317d427b64ff9986715/basic_units.ipynb deleted file mode 120000 index 0361bf9a3bb..00000000000 --- a/_downloads/a2d46964df58d317d427b64ff9986715/basic_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a2d46964df58d317d427b64ff9986715/basic_units.ipynb \ No newline at end of file diff --git a/_downloads/a2e0edb5207767291aa96331a2b34669/fourier_demo_wx_sgskip.ipynb b/_downloads/a2e0edb5207767291aa96331a2b34669/fourier_demo_wx_sgskip.ipynb deleted file mode 120000 index 4a22b7065ae..00000000000 --- a/_downloads/a2e0edb5207767291aa96331a2b34669/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a2e0edb5207767291aa96331a2b34669/fourier_demo_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/a2e519edac91392edcc2dbf7816709ca/wire3d.py b/_downloads/a2e519edac91392edcc2dbf7816709ca/wire3d.py deleted file mode 120000 index b9452ede9ee..00000000000 --- a/_downloads/a2e519edac91392edcc2dbf7816709ca/wire3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a2e519edac91392edcc2dbf7816709ca/wire3d.py \ No newline at end of file diff --git a/_downloads/a2e71f2566d90a7c78c94af40134d810/coords_report.ipynb b/_downloads/a2e71f2566d90a7c78c94af40134d810/coords_report.ipynb deleted file mode 120000 index 75938861c79..00000000000 --- a/_downloads/a2e71f2566d90a7c78c94af40134d810/coords_report.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a2e71f2566d90a7c78c94af40134d810/coords_report.ipynb \ No newline at end of file diff --git a/_downloads/a2f0d01c97da9f085c0acad9f125f075/tricontour_demo.py b/_downloads/a2f0d01c97da9f085c0acad9f125f075/tricontour_demo.py deleted file mode 120000 index 7e04cf6c7c7..00000000000 --- a/_downloads/a2f0d01c97da9f085c0acad9f125f075/tricontour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a2f0d01c97da9f085c0acad9f125f075/tricontour_demo.py \ No newline at end of file diff --git a/_downloads/a3093c701d323922449158cf95265ef1/multiprocess_sgskip.py b/_downloads/a3093c701d323922449158cf95265ef1/multiprocess_sgskip.py deleted file mode 120000 index 303b02e9da8..00000000000 --- a/_downloads/a3093c701d323922449158cf95265ef1/multiprocess_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a3093c701d323922449158cf95265ef1/multiprocess_sgskip.py \ No newline at end of file diff --git a/_downloads/a3158d500bfd11f602b4931feb2cf590/contour3d_3.py b/_downloads/a3158d500bfd11f602b4931feb2cf590/contour3d_3.py deleted file mode 120000 index fab3feb299e..00000000000 --- a/_downloads/a3158d500bfd11f602b4931feb2cf590/contour3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a3158d500bfd11f602b4931feb2cf590/contour3d_3.py \ No newline at end of file diff --git a/_downloads/a3174c999e3fc527fed1ae9be0315c5d/histogram_cumulative.ipynb b/_downloads/a3174c999e3fc527fed1ae9be0315c5d/histogram_cumulative.ipynb deleted file mode 120000 index 2afe0adf0f2..00000000000 --- a/_downloads/a3174c999e3fc527fed1ae9be0315c5d/histogram_cumulative.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a3174c999e3fc527fed1ae9be0315c5d/histogram_cumulative.ipynb \ No newline at end of file diff --git a/_downloads/a31917224104830fdd62d659316ba198/date_demo_rrule.py b/_downloads/a31917224104830fdd62d659316ba198/date_demo_rrule.py deleted file mode 120000 index 26291ea1939..00000000000 --- a/_downloads/a31917224104830fdd62d659316ba198/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a31917224104830fdd62d659316ba198/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/a319bec4b46d9f1a6ea08e8eaa61cc5b/zoom_window.py b/_downloads/a319bec4b46d9f1a6ea08e8eaa61cc5b/zoom_window.py deleted file mode 120000 index c1b9a391822..00000000000 --- a/_downloads/a319bec4b46d9f1a6ea08e8eaa61cc5b/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a319bec4b46d9f1a6ea08e8eaa61cc5b/zoom_window.py \ No newline at end of file diff --git a/_downloads/a32d02eae468647297d6a1944c6a272e/box3d.ipynb b/_downloads/a32d02eae468647297d6a1944c6a272e/box3d.ipynb deleted file mode 120000 index 8875cea27dc..00000000000 --- a/_downloads/a32d02eae468647297d6a1944c6a272e/box3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a32d02eae468647297d6a1944c6a272e/box3d.ipynb \ No newline at end of file diff --git a/_downloads/a33284636efa27d2f833c9d74b990c4b/demo_floating_axes.ipynb b/_downloads/a33284636efa27d2f833c9d74b990c4b/demo_floating_axes.ipynb deleted file mode 120000 index afbc17e0f1d..00000000000 --- a/_downloads/a33284636efa27d2f833c9d74b990c4b/demo_floating_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a33284636efa27d2f833c9d74b990c4b/demo_floating_axes.ipynb \ No newline at end of file diff --git a/_downloads/a339d5376e5e5fd36fc33e5bfd4aab9d/scatter_masked.ipynb b/_downloads/a339d5376e5e5fd36fc33e5bfd4aab9d/scatter_masked.ipynb deleted file mode 120000 index e424e93fce0..00000000000 --- a/_downloads/a339d5376e5e5fd36fc33e5bfd4aab9d/scatter_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a339d5376e5e5fd36fc33e5bfd4aab9d/scatter_masked.ipynb \ No newline at end of file diff --git a/_downloads/a33c05e66c0798df7cad30d2189fdf53/mathtext_examples.ipynb b/_downloads/a33c05e66c0798df7cad30d2189fdf53/mathtext_examples.ipynb deleted file mode 120000 index de160503bbe..00000000000 --- a/_downloads/a33c05e66c0798df7cad30d2189fdf53/mathtext_examples.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a33c05e66c0798df7cad30d2189fdf53/mathtext_examples.ipynb \ No newline at end of file diff --git a/_downloads/a34bdc8d86b130a33d92221e0c320b5b/text_props.ipynb b/_downloads/a34bdc8d86b130a33d92221e0c320b5b/text_props.ipynb deleted file mode 100644 index 04e909e786c..00000000000 --- a/_downloads/a34bdc8d86b130a33d92221e0c320b5b/text_props.ipynb +++ /dev/null @@ -1,61 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text properties and layout\n\n\nControlling properties of text and its layout with Matplotlib.\n\nThe :class:`matplotlib.text.Text` instances have a variety of\nproperties which can be configured via keyword arguments to the text\ncommands (e.g., :func:`~matplotlib.pyplot.title`,\n:func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.text`).\n\n========================== ======================================================================================================================\nProperty Value Type\n========================== ======================================================================================================================\nalpha `float`\nbackgroundcolor any matplotlib :doc:`color `\nbbox `~matplotlib.patches.Rectangle` prop dict plus key ``'pad'`` which is a pad in points\nclip_box a matplotlib.transform.Bbox instance\nclip_on bool\nclip_path a `~matplotlib.path.Path` instance and a `~matplotlib.transforms.Transform` instance, a `~matplotlib.patches.Patch`\ncolor any matplotlib :doc:`color `\nfamily [ ``'serif'`` | ``'sans-serif'`` | ``'cursive'`` | ``'fantasy'`` | ``'monospace'`` ]\nfontproperties a `~matplotlib.font_manager.FontProperties` instance\nhorizontalalignment or ha [ ``'center'`` | ``'right'`` | ``'left'`` ]\nlabel any string\nlinespacing `float`\nmultialignment [``'left'`` | ``'right'`` | ``'center'`` ]\nname or fontname string e.g., [``'Sans'`` | ``'Courier'`` | ``'Helvetica'`` ...]\npicker [None|float|boolean|callable]\nposition (x, y)\nrotation [ angle in degrees | ``'vertical'`` | ``'horizontal'`` ]\nsize or fontsize [ size in points | relative size, e.g., ``'smaller'``, ``'x-large'`` ]\nstyle or fontstyle [ ``'normal'`` | ``'italic'`` | ``'oblique'`` ]\ntext string or anything printable with '%s' conversion\ntransform a `~matplotlib.transforms.Transform` instance\nvariant [ ``'normal'`` | ``'small-caps'`` ]\nverticalalignment or va [ ``'center'`` | ``'top'`` | ``'bottom'`` | ``'baseline'`` ]\nvisible bool\nweight or fontweight [ ``'normal'`` | ``'bold'`` | ``'heavy'`` | ``'light'`` | ``'ultrabold'`` | ``'ultralight'``]\nx `float`\ny `float`\nzorder any number\n========================== ======================================================================================================================\n\n\nYou can lay out text with the alignment arguments\n``horizontalalignment``, ``verticalalignment``, and\n``multialignment``. ``horizontalalignment`` controls whether the x\npositional argument for the text indicates the left, center or right\nside of the text bounding box. ``verticalalignment`` controls whether\nthe y positional argument for the text indicates the bottom, center or\ntop side of the text bounding box. ``multialignment``, for newline\nseparated strings only, controls whether the different lines are left,\ncenter or right justified. Here is an example which uses the\n:func:`~matplotlib.pyplot.text` command to show the various alignment\npossibilities. The use of ``transform=ax.transAxes`` throughout the\ncode indicates that the coordinates are given relative to the axes\nbounding box, with 0,0 being the lower left of the axes and 1,1 the\nupper right.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as patches\n\n# build a rectangle in axes coords\nleft, width = .25, .5\nbottom, height = .25, .5\nright = left + width\ntop = bottom + height\n\nfig = plt.figure()\nax = fig.add_axes([0, 0, 1, 1])\n\n# axes coordinates are 0,0 is bottom left and 1,1 is upper right\np = patches.Rectangle(\n (left, bottom), width, height,\n fill=False, transform=ax.transAxes, clip_on=False\n )\n\nax.add_patch(p)\n\nax.text(left, bottom, 'left top',\n horizontalalignment='left',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, bottom, 'left bottom',\n horizontalalignment='left',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right bottom',\n horizontalalignment='right',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right top',\n horizontalalignment='right',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(right, bottom, 'center top',\n horizontalalignment='center',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'right center',\n horizontalalignment='right',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'left center',\n horizontalalignment='left',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(0.5*(left+right), 0.5*(bottom+top), 'middle',\n horizontalalignment='center',\n verticalalignment='center',\n fontsize=20, color='red',\n transform=ax.transAxes)\n\nax.text(right, 0.5*(bottom+top), 'centered',\n horizontalalignment='center',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, top, 'rotated\\nwith newlines',\n horizontalalignment='center',\n verticalalignment='center',\n rotation=45,\n transform=ax.transAxes)\n\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Default Font\n\n\nThe base default font is controlled by a set of rcParams. To set the font\nfor mathematical expressions, use the rcParams beginning with ``mathtext``\n(see `mathtext `).\n\n+---------------------+----------------------------------------------------+\n| rcParam | usage |\n+=====================+====================================================+\n| ``'font.family'`` | List of either names of font or ``{'cursive', |\n| | 'fantasy', 'monospace', 'sans', 'sans serif', |\n| | 'sans-serif', 'serif'}``. |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.style'`` | The default style, ex ``'normal'``, |\n| | ``'italic'``. |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.variant'`` | Default variant, ex ``'normal'``, ``'small-caps'`` |\n| | (untested) |\n+---------------------+----------------------------------------------------+\n| ``'font.stretch'`` | Default stretch, ex ``'normal'``, ``'condensed'`` |\n| | (incomplete) |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.weight'`` | Default weight. Either string or integer |\n| | |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.size'`` | Default font size in points. Relative font sizes |\n| | (``'large'``, ``'x-small'``) are computed against |\n| | this size. |\n+---------------------+----------------------------------------------------+\n\nThe mapping between the family aliases (``{'cursive', 'fantasy',\n'monospace', 'sans', 'sans serif', 'sans-serif', 'serif'}``) and actual font names\nis controlled by the following rcParams:\n\n\n+------------------------------------------+--------------------------------+\n| family alias | rcParam with mappings |\n+==========================================+================================+\n| ``'serif'`` | ``'font.serif'`` |\n+------------------------------------------+--------------------------------+\n| ``'monospace'`` | ``'font.monospace'`` |\n+------------------------------------------+--------------------------------+\n| ``'fantasy'`` | ``'font.fantasy'`` |\n+------------------------------------------+--------------------------------+\n| ``'cursive'`` | ``'font.cursive'`` |\n+------------------------------------------+--------------------------------+\n| ``{'sans', 'sans serif', 'sans-serif'}`` | ``'font.sans-serif'`` |\n+------------------------------------------+--------------------------------+\n\n\nwhich are lists of font names.\n\nText with non-latin glyphs\n==========================\n\nAs of v2.0 the `default font ` contains\nglyphs for many western alphabets, but still does not cover all of the\nglyphs that may be required by mpl users. For example, DejaVu has no\ncoverage of Chinese, Korean, or Japanese.\n\n\nTo set the default font to be one that supports the code points you\nneed, prepend the font name to ``'font.family'`` or the desired alias\nlists ::\n\n matplotlib.rcParams['font.sans-serif'] = ['Source Han Sans TW', 'sans-serif']\n\nor set it in your :file:`.matplotlibrc` file::\n\n font.sans-serif: Source Han Sans TW, Arial, sans-serif\n\nTo control the font used on per-artist basis use the ``'name'``,\n``'fontname'`` or ``'fontproperties'`` kwargs documented :doc:`above\n`.\n\n\nOn linux, `fc-list `__ can be a\nuseful tool to discover the font name; for example ::\n\n $ fc-list :lang=zh family\n Noto to Sans Mono CJK TC,Noto Sans Mono CJK TC Bold\n Noto Sans CJK TC,Noto Sans CJK TC Medium\n Noto Sans CJK TC,Noto Sans CJK TC DemiLight\n Noto Sans CJK KR,Noto Sans CJK KR Black\n Noto Sans CJK TC,Noto Sans CJK TC Black\n Noto Sans Mono CJK TC,Noto Sans Mono CJK TC Regular\n Noto Sans CJK SC,Noto Sans CJK SC Light\n\nlists all of the fonts that support Chinese.\n\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a34c1373ea0f53cfa10f0f00cf9be233/fill.ipynb b/_downloads/a34c1373ea0f53cfa10f0f00cf9be233/fill.ipynb deleted file mode 120000 index 775333a3cca..00000000000 --- a/_downloads/a34c1373ea0f53cfa10f0f00cf9be233/fill.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a34c1373ea0f53cfa10f0f00cf9be233/fill.ipynb \ No newline at end of file diff --git a/_downloads/a34c60b470396eaf850ef5f9ad57a0c8/errorbar_limits_simple.ipynb b/_downloads/a34c60b470396eaf850ef5f9ad57a0c8/errorbar_limits_simple.ipynb deleted file mode 120000 index 9b431fc591c..00000000000 --- a/_downloads/a34c60b470396eaf850ef5f9ad57a0c8/errorbar_limits_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a34c60b470396eaf850ef5f9ad57a0c8/errorbar_limits_simple.ipynb \ No newline at end of file diff --git a/_downloads/a34ce712bfa4dbed78c5388cfff389d8/axis_equal_demo.py b/_downloads/a34ce712bfa4dbed78c5388cfff389d8/axis_equal_demo.py deleted file mode 120000 index b39e8cd497c..00000000000 --- a/_downloads/a34ce712bfa4dbed78c5388cfff389d8/axis_equal_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a34ce712bfa4dbed78c5388cfff389d8/axis_equal_demo.py \ No newline at end of file diff --git a/_downloads/a35b828c62f6d56bd84f2ca8d6670a5e/bar_stacked.py b/_downloads/a35b828c62f6d56bd84f2ca8d6670a5e/bar_stacked.py deleted file mode 120000 index 907cd6c79f5..00000000000 --- a/_downloads/a35b828c62f6d56bd84f2ca8d6670a5e/bar_stacked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a35b828c62f6d56bd84f2ca8d6670a5e/bar_stacked.py \ No newline at end of file diff --git a/_downloads/a35e31ea878e9401cec589717d7a402c/simple_colorbar.py b/_downloads/a35e31ea878e9401cec589717d7a402c/simple_colorbar.py deleted file mode 120000 index 7754fdba627..00000000000 --- a/_downloads/a35e31ea878e9401cec589717d7a402c/simple_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a35e31ea878e9401cec589717d7a402c/simple_colorbar.py \ No newline at end of file diff --git a/_downloads/a35efb8c3035075c36edcd541d9fa9f6/embedding_in_wx5_sgskip.py b/_downloads/a35efb8c3035075c36edcd541d9fa9f6/embedding_in_wx5_sgskip.py deleted file mode 120000 index 82f6ebc5e7e..00000000000 --- a/_downloads/a35efb8c3035075c36edcd541d9fa9f6/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a35efb8c3035075c36edcd541d9fa9f6/embedding_in_wx5_sgskip.py \ No newline at end of file diff --git a/_downloads/a361b892515c7ce379002857d85aa240/pgf_texsystem.ipynb b/_downloads/a361b892515c7ce379002857d85aa240/pgf_texsystem.ipynb deleted file mode 100644 index 4f9f77cb003..00000000000 --- a/_downloads/a361b892515c7ce379002857d85aa240/pgf_texsystem.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pgf Texsystem\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.rcParams.update({\n \"pgf.texsystem\": \"pdflatex\",\n \"pgf.preamble\": [\n r\"\\usepackage[utf8x]{inputenc}\",\n r\"\\usepackage[T1]{fontenc}\",\n r\"\\usepackage{cmbright}\",\n ]\n})\n\nplt.figure(figsize=(4.5, 2.5))\nplt.plot(range(5))\nplt.text(0.5, 3., \"serif\", family=\"serif\")\nplt.text(0.5, 2., \"monospace\", family=\"monospace\")\nplt.text(2.5, 2., \"sans-serif\", family=\"sans-serif\")\nplt.xlabel(r\"\u00b5 is not $\\mu$\")\nplt.tight_layout(.5)\n\nplt.savefig(\"pgf_texsystem.pdf\")\nplt.savefig(\"pgf_texsystem.png\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a362478658dd89337f47edea1fe05416/animate_decay.py b/_downloads/a362478658dd89337f47edea1fe05416/animate_decay.py deleted file mode 120000 index 77f805db3a9..00000000000 --- a/_downloads/a362478658dd89337f47edea1fe05416/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a362478658dd89337f47edea1fe05416/animate_decay.py \ No newline at end of file diff --git a/_downloads/a364014a5f36334503afa0b0e133160e/firefox.ipynb b/_downloads/a364014a5f36334503afa0b0e133160e/firefox.ipynb deleted file mode 120000 index afcfc5eb912..00000000000 --- a/_downloads/a364014a5f36334503afa0b0e133160e/firefox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a364014a5f36334503afa0b0e133160e/firefox.ipynb \ No newline at end of file diff --git a/_downloads/a36628fd18098cfa6e38de79da4645d1/boxplot.py b/_downloads/a36628fd18098cfa6e38de79da4645d1/boxplot.py deleted file mode 120000 index c812908e9a8..00000000000 --- a/_downloads/a36628fd18098cfa6e38de79da4645d1/boxplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a36628fd18098cfa6e38de79da4645d1/boxplot.py \ No newline at end of file diff --git a/_downloads/a370faf15f11ba341e51dd334ce22c0a/demo_parasite_axes.py b/_downloads/a370faf15f11ba341e51dd334ce22c0a/demo_parasite_axes.py deleted file mode 120000 index f6734bbdc52..00000000000 --- a/_downloads/a370faf15f11ba341e51dd334ce22c0a/demo_parasite_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a370faf15f11ba341e51dd334ce22c0a/demo_parasite_axes.py \ No newline at end of file diff --git a/_downloads/a373108b373a2ec7450403e183dc3c5d/sankey_links.py b/_downloads/a373108b373a2ec7450403e183dc3c5d/sankey_links.py deleted file mode 120000 index 6aa8e9121e6..00000000000 --- a/_downloads/a373108b373a2ec7450403e183dc3c5d/sankey_links.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a373108b373a2ec7450403e183dc3c5d/sankey_links.py \ No newline at end of file diff --git a/_downloads/a373ffb4fecaccc7f4de76f6c16f786b/scatter_demo2.py b/_downloads/a373ffb4fecaccc7f4de76f6c16f786b/scatter_demo2.py deleted file mode 120000 index bc6c8f0a406..00000000000 --- a/_downloads/a373ffb4fecaccc7f4de76f6c16f786b/scatter_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a373ffb4fecaccc7f4de76f6c16f786b/scatter_demo2.py \ No newline at end of file diff --git a/_downloads/a37883057bd156e2081b1e3404cbd44e/constrainedlayout_guide.ipynb b/_downloads/a37883057bd156e2081b1e3404cbd44e/constrainedlayout_guide.ipynb deleted file mode 120000 index 7b3354c086a..00000000000 --- a/_downloads/a37883057bd156e2081b1e3404cbd44e/constrainedlayout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a37883057bd156e2081b1e3404cbd44e/constrainedlayout_guide.ipynb \ No newline at end of file diff --git a/_downloads/a37bcdf215a2a6e882db02f2e74d1e54/specgram_demo.py b/_downloads/a37bcdf215a2a6e882db02f2e74d1e54/specgram_demo.py deleted file mode 120000 index 92e86170ba0..00000000000 --- a/_downloads/a37bcdf215a2a6e882db02f2e74d1e54/specgram_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a37bcdf215a2a6e882db02f2e74d1e54/specgram_demo.py \ No newline at end of file diff --git a/_downloads/a38b41aa0442ba05f8f631c1b66c7dd8/colorbar_only.ipynb b/_downloads/a38b41aa0442ba05f8f631c1b66c7dd8/colorbar_only.ipynb deleted file mode 120000 index 02a44435cd3..00000000000 --- a/_downloads/a38b41aa0442ba05f8f631c1b66c7dd8/colorbar_only.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a38b41aa0442ba05f8f631c1b66c7dd8/colorbar_only.ipynb \ No newline at end of file diff --git a/_downloads/a38e6da1d98008cae636407e90afe692/contourf_hatching.ipynb b/_downloads/a38e6da1d98008cae636407e90afe692/contourf_hatching.ipynb deleted file mode 100644 index 4f1d59591d4..00000000000 --- a/_downloads/a38e6da1d98008cae636407e90afe692/contourf_hatching.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contourf Hatching\n\n\nDemo filled contour plots with hatched patterns.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# invent some numbers, turning the x and y arrays into simple\n# 2d arrays, which make combining them together easier.\nx = np.linspace(-3, 5, 150).reshape(1, -1)\ny = np.linspace(-3, 5, 120).reshape(-1, 1)\nz = np.cos(x) + np.sin(y)\n\n# we no longer need x and y to be 2 dimensional, so flatten them.\nx, y = x.flatten(), y.flatten()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot 1: the simplest hatched plot with a colorbar\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\ncs = ax1.contourf(x, y, z, hatches=['-', '/', '\\\\', '//'],\n cmap='gray', extend='both', alpha=0.5)\nfig1.colorbar(cs)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot 2: a plot of hatches without color with a legend\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nn_levels = 6\nax2.contour(x, y, z, n_levels, colors='black', linestyles='-')\ncs = ax2.contourf(x, y, z, n_levels, colors='none',\n hatches=['.', '/', '\\\\', None, '\\\\\\\\', '*'],\n extend='lower')\n\n# create a legend for the contour set\nartists, labels = cs.legend_elements()\nax2.legend(artists, labels, handleheight=2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.contour.ContourSet\nmatplotlib.contour.ContourSet.legend_elements" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a390b215be70ff7c3d109e80745fcea5/histogram_histtypes.ipynb b/_downloads/a390b215be70ff7c3d109e80745fcea5/histogram_histtypes.ipynb deleted file mode 120000 index 65fa4b55bff..00000000000 --- a/_downloads/a390b215be70ff7c3d109e80745fcea5/histogram_histtypes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a390b215be70ff7c3d109e80745fcea5/histogram_histtypes.ipynb \ No newline at end of file diff --git a/_downloads/a3952c0d3dcbfd821caae13704e763c2/viewlims.ipynb b/_downloads/a3952c0d3dcbfd821caae13704e763c2/viewlims.ipynb deleted file mode 120000 index 42090650e77..00000000000 --- a/_downloads/a3952c0d3dcbfd821caae13704e763c2/viewlims.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a3952c0d3dcbfd821caae13704e763c2/viewlims.ipynb \ No newline at end of file diff --git a/_downloads/a39c13d5be206cba1f97bd5a82adc68d/custom_scale.py b/_downloads/a39c13d5be206cba1f97bd5a82adc68d/custom_scale.py deleted file mode 120000 index 68b66bc3a07..00000000000 --- a/_downloads/a39c13d5be206cba1f97bd5a82adc68d/custom_scale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a39c13d5be206cba1f97bd5a82adc68d/custom_scale.py \ No newline at end of file diff --git a/_downloads/a39c9815bf879b947aa589265a8fb3ef/print_stdout_sgskip.ipynb b/_downloads/a39c9815bf879b947aa589265a8fb3ef/print_stdout_sgskip.ipynb deleted file mode 120000 index 3461e7f600f..00000000000 --- a/_downloads/a39c9815bf879b947aa589265a8fb3ef/print_stdout_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a39c9815bf879b947aa589265a8fb3ef/print_stdout_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/a3a27597be74ad461d3e4bb3b78fd140/named_colors.py b/_downloads/a3a27597be74ad461d3e4bb3b78fd140/named_colors.py deleted file mode 100644 index 7175707c0ce..00000000000 --- a/_downloads/a3a27597be74ad461d3e4bb3b78fd140/named_colors.py +++ /dev/null @@ -1,106 +0,0 @@ -""" -==================== -List of named colors -==================== - -This plots a list of the named colors supported in matplotlib. Note that -:ref:`xkcd colors ` are supported as well, but are not listed here -for brevity. - -For more information on colors in matplotlib see - -* the :doc:`/tutorials/colors/colors` tutorial; -* the `matplotlib.colors` API; -* the :doc:`/gallery/color/color_demo`. -""" - -import matplotlib.pyplot as plt -import matplotlib.colors as mcolors - - -def plot_colortable(colors, title, sort_colors=True, emptycols=0): - - cell_width = 212 - cell_height = 22 - swatch_width = 48 - margin = 12 - topmargin = 40 - - # Sort colors by hue, saturation, value and name. - if sort_colors is True: - by_hsv = sorted((tuple(mcolors.rgb_to_hsv(mcolors.to_rgb(color))), - name) - for name, color in colors.items()) - names = [name for hsv, name in by_hsv] - else: - names = list(colors) - - n = len(names) - ncols = 4 - emptycols - nrows = n // ncols + int(n % ncols > 0) - - width = cell_width * 4 + 2 * margin - height = cell_height * nrows + margin + topmargin - dpi = 72 - - fig, ax = plt.subplots(figsize=(width / dpi, height / dpi), dpi=dpi) - fig.subplots_adjust(margin/width, margin/height, - (width-margin)/width, (height-topmargin)/height) - ax.set_xlim(0, cell_width * 4) - ax.set_ylim(cell_height * (nrows-0.5), -cell_height/2.) - ax.yaxis.set_visible(False) - ax.xaxis.set_visible(False) - ax.set_axis_off() - ax.set_title(title, fontsize=24, loc="left", pad=10) - - for i, name in enumerate(names): - row = i % nrows - col = i // nrows - y = row * cell_height - - swatch_start_x = cell_width * col - swatch_end_x = cell_width * col + swatch_width - text_pos_x = cell_width * col + swatch_width + 7 - - ax.text(text_pos_x, y, name, fontsize=14, - horizontalalignment='left', - verticalalignment='center') - - ax.hlines(y, swatch_start_x, swatch_end_x, - color=colors[name], linewidth=18) - - return fig - -plot_colortable(mcolors.BASE_COLORS, "Base Colors", - sort_colors=False, emptycols=1) -plot_colortable(mcolors.TABLEAU_COLORS, "Tableau Palette", - sort_colors=False, emptycols=2) - -#sphinx_gallery_thumbnail_number = 3 -plot_colortable(mcolors.CSS4_COLORS, "CSS Colors") - -# Optionally plot the XKCD colors (Caution: will produce large figure) -#xkcd_fig = plot_colortable(mcolors.XKCD_COLORS, "XKCD Colors") -#xkcd_fig.savefig("XKCD_Colors.png") - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.colors.rgb_to_hsv -matplotlib.colors.to_rgba -matplotlib.figure.Figure.get_size_inches -matplotlib.figure.Figure.subplots_adjust -matplotlib.axes.Axes.text -matplotlib.axes.Axes.hlines diff --git a/_downloads/a3a9db5b6392224a898cf24c11b2f368/ellipse_with_units.py b/_downloads/a3a9db5b6392224a898cf24c11b2f368/ellipse_with_units.py deleted file mode 120000 index e64e78d1de1..00000000000 --- a/_downloads/a3a9db5b6392224a898cf24c11b2f368/ellipse_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a3a9db5b6392224a898cf24c11b2f368/ellipse_with_units.py \ No newline at end of file diff --git a/_downloads/a3aabd24e19d6b79dea942a23187e7c3/radar_chart.py b/_downloads/a3aabd24e19d6b79dea942a23187e7c3/radar_chart.py deleted file mode 120000 index 0abc7da35f7..00000000000 --- a/_downloads/a3aabd24e19d6b79dea942a23187e7c3/radar_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a3aabd24e19d6b79dea942a23187e7c3/radar_chart.py \ No newline at end of file diff --git a/_downloads/a3b66e291dde7c3aebf9b450c8a750b1/custom_boxstyle02.py b/_downloads/a3b66e291dde7c3aebf9b450c8a750b1/custom_boxstyle02.py deleted file mode 120000 index d5ad32d4f68..00000000000 --- a/_downloads/a3b66e291dde7c3aebf9b450c8a750b1/custom_boxstyle02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a3b66e291dde7c3aebf9b450c8a750b1/custom_boxstyle02.py \ No newline at end of file diff --git a/_downloads/a3bc39e6cd6b1cfd02a472e74678ab3b/tick_xlabel_top.ipynb b/_downloads/a3bc39e6cd6b1cfd02a472e74678ab3b/tick_xlabel_top.ipynb deleted file mode 120000 index 5e8ff485a9e..00000000000 --- a/_downloads/a3bc39e6cd6b1cfd02a472e74678ab3b/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/a3bc39e6cd6b1cfd02a472e74678ab3b/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/a3be5c815e8ed0d8ff5657ed028e755e/pie_features.ipynb b/_downloads/a3be5c815e8ed0d8ff5657ed028e755e/pie_features.ipynb deleted file mode 100644 index 30b57934336..00000000000 --- a/_downloads/a3be5c815e8ed0d8ff5657ed028e755e/pie_features.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Basic pie chart\n\n\nDemo of a basic pie chart plus a few additional features.\n\nIn addition to the basic pie chart, this demo shows a few optional features:\n\n * slice labels\n * auto-labeling the percentage\n * offsetting a slice with \"explode\"\n * drop-shadow\n * custom start angle\n\nNote about the custom start angle:\n\nThe default ``startangle`` is 0, which would start the \"Frogs\" slice on the\npositive x-axis. This example sets ``startangle = 90`` such that everything is\nrotated counter-clockwise by 90 degrees, and the frog slice starts on the\npositive y-axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Pie chart, where the slices will be ordered and plotted counter-clockwise:\nlabels = 'Frogs', 'Hogs', 'Dogs', 'Logs'\nsizes = [15, 30, 45, 10]\nexplode = (0, 0.1, 0, 0) # only \"explode\" the 2nd slice (i.e. 'Hogs')\n\nfig1, ax1 = plt.subplots()\nax1.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%',\n shadow=True, startangle=90)\nax1.axis('equal') # Equal aspect ratio ensures that pie is drawn as a circle.\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a3c1cad47bdc471a440b69e949e3af19/image_zcoord.py b/_downloads/a3c1cad47bdc471a440b69e949e3af19/image_zcoord.py deleted file mode 120000 index 4a7465ed411..00000000000 --- a/_downloads/a3c1cad47bdc471a440b69e949e3af19/image_zcoord.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a3c1cad47bdc471a440b69e949e3af19/image_zcoord.py \ No newline at end of file diff --git a/_downloads/a3ce05b0730f5023e3e524339140a3b9/multicursor.ipynb b/_downloads/a3ce05b0730f5023e3e524339140a3b9/multicursor.ipynb deleted file mode 120000 index 820a38a50e5..00000000000 --- a/_downloads/a3ce05b0730f5023e3e524339140a3b9/multicursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a3ce05b0730f5023e3e524339140a3b9/multicursor.ipynb \ No newline at end of file diff --git a/_downloads/a3d48318d4fe2e20a6bc4c9adab03b59/lifecycle.py b/_downloads/a3d48318d4fe2e20a6bc4c9adab03b59/lifecycle.py deleted file mode 120000 index addd97823fa..00000000000 --- a/_downloads/a3d48318d4fe2e20a6bc4c9adab03b59/lifecycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a3d48318d4fe2e20a6bc4c9adab03b59/lifecycle.py \ No newline at end of file diff --git a/_downloads/a3de40e57ef69c154a4856d1f21f1a53/ellipse_demo.ipynb b/_downloads/a3de40e57ef69c154a4856d1f21f1a53/ellipse_demo.ipynb deleted file mode 120000 index 7bddbc917de..00000000000 --- a/_downloads/a3de40e57ef69c154a4856d1f21f1a53/ellipse_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a3de40e57ef69c154a4856d1f21f1a53/ellipse_demo.ipynb \ No newline at end of file diff --git a/_downloads/a3dea7d2f39a3878ff8efebc841ea7c8/hyperlinks_sgskip.ipynb b/_downloads/a3dea7d2f39a3878ff8efebc841ea7c8/hyperlinks_sgskip.ipynb deleted file mode 120000 index d8cb612ef5b..00000000000 --- a/_downloads/a3dea7d2f39a3878ff8efebc841ea7c8/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a3dea7d2f39a3878ff8efebc841ea7c8/hyperlinks_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/a3e2b5c6e0c37a16dc1855b40f4e0b2c/line_demo_dash_control.py b/_downloads/a3e2b5c6e0c37a16dc1855b40f4e0b2c/line_demo_dash_control.py deleted file mode 100644 index 78043dfed2f..00000000000 --- a/_downloads/a3e2b5c6e0c37a16dc1855b40f4e0b2c/line_demo_dash_control.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -============================== -Customizing dashed line styles -============================== - -The dashing of a line is controlled via a dash sequence. It can be modified -using `.Line2D.set_dashes`. - -The dash sequence is a series of on/off lengths in points, e.g. -``[3, 1]`` would be 3pt long lines separated by 1pt spaces. - -Some functions like `.Axes.plot` support passing Line properties as keyword -arguments. In such a case, you can already set the dashing when creating the -line. - -*Note*: The dash style can also be configured via a -:doc:`property_cycle ` -by passing a list of dash sequences using the keyword *dashes* to the -cycler. This is not shown within this example. -""" -import numpy as np -import matplotlib.pyplot as plt - -x = np.linspace(0, 10, 500) -y = np.sin(x) - -fig, ax = plt.subplots() - -# Using set_dashes() to modify dashing of an existing line -line1, = ax.plot(x, y, label='Using set_dashes()') -line1.set_dashes([2, 2, 10, 2]) # 2pt line, 2pt break, 10pt line, 2pt break - -# Using plot(..., dashes=...) to set the dashing when creating a line -line2, = ax.plot(x, y - 0.2, dashes=[6, 2], label='Using the dashes parameter') - -ax.legend() -plt.show() diff --git a/_downloads/a3e417910e0fcda5592e5d5985bf0010/polar_scatter.py b/_downloads/a3e417910e0fcda5592e5d5985bf0010/polar_scatter.py deleted file mode 120000 index c8a33cc348f..00000000000 --- a/_downloads/a3e417910e0fcda5592e5d5985bf0010/polar_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a3e417910e0fcda5592e5d5985bf0010/polar_scatter.py \ No newline at end of file diff --git a/_downloads/a3f2c888523615da94baf1f6caab1b95/scatter_demo2.ipynb b/_downloads/a3f2c888523615da94baf1f6caab1b95/scatter_demo2.ipynb deleted file mode 120000 index 50dad28166c..00000000000 --- a/_downloads/a3f2c888523615da94baf1f6caab1b95/scatter_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a3f2c888523615da94baf1f6caab1b95/scatter_demo2.ipynb \ No newline at end of file diff --git a/_downloads/a40243f51088a44216094551bb149d3f/annotate_simple_coord02.ipynb b/_downloads/a40243f51088a44216094551bb149d3f/annotate_simple_coord02.ipynb deleted file mode 120000 index aa6c9ee41fe..00000000000 --- a/_downloads/a40243f51088a44216094551bb149d3f/annotate_simple_coord02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a40243f51088a44216094551bb149d3f/annotate_simple_coord02.ipynb \ No newline at end of file diff --git a/_downloads/a404133c5d5b4c4adf933a192d64dd7f/contour3d_3.ipynb b/_downloads/a404133c5d5b4c4adf933a192d64dd7f/contour3d_3.ipynb deleted file mode 120000 index 8e67381f10b..00000000000 --- a/_downloads/a404133c5d5b4c4adf933a192d64dd7f/contour3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a404133c5d5b4c4adf933a192d64dd7f/contour3d_3.ipynb \ No newline at end of file diff --git a/_downloads/a40733c2dbe54a80bbccd096a26263af/legend_picking.py b/_downloads/a40733c2dbe54a80bbccd096a26263af/legend_picking.py deleted file mode 100644 index 0fca59b1593..00000000000 --- a/_downloads/a40733c2dbe54a80bbccd096a26263af/legend_picking.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -============== -Legend Picking -============== - -Enable picking on the legend to toggle the original line on and off -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0.0, 0.2, 0.1) -y1 = 2*np.sin(2*np.pi*t) -y2 = 4*np.sin(2*np.pi*2*t) - -fig, ax = plt.subplots() -ax.set_title('Click on legend line to toggle line on/off') -line1, = ax.plot(t, y1, lw=2, label='1 HZ') -line2, = ax.plot(t, y2, lw=2, label='2 HZ') -leg = ax.legend(loc='upper left', fancybox=True, shadow=True) -leg.get_frame().set_alpha(0.4) - - -# we will set up a dict mapping legend line to orig line, and enable -# picking on the legend line -lines = [line1, line2] -lined = dict() -for legline, origline in zip(leg.get_lines(), lines): - legline.set_picker(5) # 5 pts tolerance - lined[legline] = origline - - -def onpick(event): - # on the pick event, find the orig line corresponding to the - # legend proxy line, and toggle the visibility - legline = event.artist - origline = lined[legline] - vis = not origline.get_visible() - origline.set_visible(vis) - # Change the alpha on the line in the legend so we can see what lines - # have been toggled - if vis: - legline.set_alpha(1.0) - else: - legline.set_alpha(0.2) - fig.canvas.draw() - -fig.canvas.mpl_connect('pick_event', onpick) - -plt.show() diff --git a/_downloads/a40c9b05a473b4a2147d3e39f5db3f3c/bar_demo2.py b/_downloads/a40c9b05a473b4a2147d3e39f5db3f3c/bar_demo2.py deleted file mode 120000 index 26a81f661cc..00000000000 --- a/_downloads/a40c9b05a473b4a2147d3e39f5db3f3c/bar_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a40c9b05a473b4a2147d3e39f5db3f3c/bar_demo2.py \ No newline at end of file diff --git a/_downloads/a40f97e314dadd7c9cc8f4228551b906/demo_curvelinear_grid.ipynb b/_downloads/a40f97e314dadd7c9cc8f4228551b906/demo_curvelinear_grid.ipynb deleted file mode 120000 index e4b206d14e8..00000000000 --- a/_downloads/a40f97e314dadd7c9cc8f4228551b906/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a40f97e314dadd7c9cc8f4228551b906/demo_curvelinear_grid.ipynb \ No newline at end of file diff --git a/_downloads/a41093afc9c6b5503e3cd2cba37abbf0/demo_anchored_direction_arrows.py b/_downloads/a41093afc9c6b5503e3cd2cba37abbf0/demo_anchored_direction_arrows.py deleted file mode 120000 index 33f407beeff..00000000000 --- a/_downloads/a41093afc9c6b5503e3cd2cba37abbf0/demo_anchored_direction_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a41093afc9c6b5503e3cd2cba37abbf0/demo_anchored_direction_arrows.py \ No newline at end of file diff --git a/_downloads/a417710b6079a895018fca06be0b1186/fig_axes_customize_simple.ipynb b/_downloads/a417710b6079a895018fca06be0b1186/fig_axes_customize_simple.ipynb deleted file mode 100644 index 1b30eb17714..00000000000 --- a/_downloads/a417710b6079a895018fca06be0b1186/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fig Axes Customize Simple\n\n\nCustomize the background, labels and ticks of a simple plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "``plt.figure`` creates a ```matplotlib.figure.Figure`` instance\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nrect = fig.patch # a rectangle instance\nrect.set_facecolor('lightgoldenrodyellow')\n\nax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4])\nrect = ax1.patch\nrect.set_facecolor('lightslategray')\n\n\nfor label in ax1.xaxis.get_ticklabels():\n # label is a Text instance\n label.set_color('tab:red')\n label.set_rotation(45)\n label.set_fontsize(16)\n\nfor line in ax1.yaxis.get_ticklines():\n # line is a Line2D instance\n line.set_color('tab:green')\n line.set_markersize(25)\n line.set_markeredgewidth(3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axis.Axis.get_ticklabels\nmatplotlib.axis.Axis.get_ticklines\nmatplotlib.text.Text.set_rotation\nmatplotlib.text.Text.set_fontsize\nmatplotlib.text.Text.set_color\nmatplotlib.lines.Line2D\nmatplotlib.lines.Line2D.set_color\nmatplotlib.lines.Line2D.set_markersize\nmatplotlib.lines.Line2D.set_markeredgewidth\nmatplotlib.patches.Patch.set_facecolor" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a417cb93637d86d502fc3c148130c483/multiline.ipynb b/_downloads/a417cb93637d86d502fc3c148130c483/multiline.ipynb deleted file mode 120000 index 11259514b10..00000000000 --- a/_downloads/a417cb93637d86d502fc3c148130c483/multiline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a417cb93637d86d502fc3c148130c483/multiline.ipynb \ No newline at end of file diff --git a/_downloads/a41a4a6f61a4f8a3ad42eeb9193b8562/demo_floating_axis.py b/_downloads/a41a4a6f61a4f8a3ad42eeb9193b8562/demo_floating_axis.py deleted file mode 120000 index 02c680385ec..00000000000 --- a/_downloads/a41a4a6f61a4f8a3ad42eeb9193b8562/demo_floating_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a41a4a6f61a4f8a3ad42eeb9193b8562/demo_floating_axis.py \ No newline at end of file diff --git a/_downloads/a4263cc686fc7c85aa6b77588f63f91d/contour_image.py b/_downloads/a4263cc686fc7c85aa6b77588f63f91d/contour_image.py deleted file mode 100644 index df2cc7c381f..00000000000 --- a/_downloads/a4263cc686fc7c85aa6b77588f63f91d/contour_image.py +++ /dev/null @@ -1,115 +0,0 @@ -""" -============= -Contour Image -============= - -Test combinations of contouring, filled contouring, and image plotting. -For contour labelling, see also the :doc:`contour demo example -`. - -The emphasis in this demo is on showing how to make contours register -correctly on images, and on how to get both of them oriented as desired. -In particular, note the usage of the :doc:`"origin" and "extent" -` keyword arguments to imshow and -contour. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import cm - -# Default delta is large because that makes it fast, and it illustrates -# the correct registration between image and contours. -delta = 0.5 - -extent = (-3, 4, -4, 3) - -x = np.arange(-3.0, 4.001, delta) -y = np.arange(-4.0, 3.001, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -# Boost the upper limit to avoid truncation errors. -levels = np.arange(-2.0, 1.601, 0.4) - -norm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max()) -cmap = cm.PRGn - -fig, _axs = plt.subplots(nrows=2, ncols=2) -fig.subplots_adjust(hspace=0.3) -axs = _axs.flatten() - -cset1 = axs[0].contourf(X, Y, Z, levels, norm=norm, - cmap=cm.get_cmap(cmap, len(levels) - 1)) -# It is not necessary, but for the colormap, we need only the -# number of levels minus 1. To avoid discretization error, use -# either this number or a large number such as the default (256). - -# If we want lines as well as filled regions, we need to call -# contour separately; don't try to change the edgecolor or edgewidth -# of the polygons in the collections returned by contourf. -# Use levels output from previous call to guarantee they are the same. - -cset2 = axs[0].contour(X, Y, Z, cset1.levels, colors='k') - -# We don't really need dashed contour lines to indicate negative -# regions, so let's turn them off. - -for c in cset2.collections: - c.set_linestyle('solid') - -# It is easier here to make a separate call to contour than -# to set up an array of colors and linewidths. -# We are making a thick green line as a zero contour. -# Specify the zero level as a tuple with only 0 in it. - -cset3 = axs[0].contour(X, Y, Z, (0,), colors='g', linewidths=2) -axs[0].set_title('Filled contours') -fig.colorbar(cset1, ax=axs[0]) - - -axs[1].imshow(Z, extent=extent, cmap=cmap, norm=norm) -axs[1].contour(Z, levels, colors='k', origin='upper', extent=extent) -axs[1].set_title("Image, origin 'upper'") - -axs[2].imshow(Z, origin='lower', extent=extent, cmap=cmap, norm=norm) -axs[2].contour(Z, levels, colors='k', origin='lower', extent=extent) -axs[2].set_title("Image, origin 'lower'") - -# We will use the interpolation "nearest" here to show the actual -# image pixels. -# Note that the contour lines don't extend to the edge of the box. -# This is intentional. The Z values are defined at the center of each -# image pixel (each color block on the following subplot), so the -# domain that is contoured does not extend beyond these pixel centers. -im = axs[3].imshow(Z, interpolation='nearest', extent=extent, - cmap=cmap, norm=norm) -axs[3].contour(Z, levels, colors='k', origin='image', extent=extent) -ylim = axs[3].get_ylim() -axs[3].set_ylim(ylim[::-1]) -axs[3].set_title("Origin from rc, reversed y-axis") -fig.colorbar(im, ax=axs[3]) - -fig.tight_layout() -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.Normalize diff --git a/_downloads/a42a8959f216b5e0c6ab12a671397cc0/demo_axes_grid2.py b/_downloads/a42a8959f216b5e0c6ab12a671397cc0/demo_axes_grid2.py deleted file mode 120000 index 979a5684999..00000000000 --- a/_downloads/a42a8959f216b5e0c6ab12a671397cc0/demo_axes_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a42a8959f216b5e0c6ab12a671397cc0/demo_axes_grid2.py \ No newline at end of file diff --git a/_downloads/a4372fd128b6d9e0cc63c617997ef759/pcolor_demo.py b/_downloads/a4372fd128b6d9e0cc63c617997ef759/pcolor_demo.py deleted file mode 120000 index 22a9beae1a2..00000000000 --- a/_downloads/a4372fd128b6d9e0cc63c617997ef759/pcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a4372fd128b6d9e0cc63c617997ef759/pcolor_demo.py \ No newline at end of file diff --git a/_downloads/a43d3252398fd4d7b5f790fd06632270/demo_axis_direction.ipynb b/_downloads/a43d3252398fd4d7b5f790fd06632270/demo_axis_direction.ipynb deleted file mode 100644 index 639f33159cd..00000000000 --- a/_downloads/a43d3252398fd4d7b5f790fd06632270/demo_axis_direction.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axis Direction\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nimport mpl_toolkits.axisartist.grid_finder as grid_finder\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\n\nimport mpl_toolkits.axisartist as axisartist\n\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import \\\n GridHelperCurveLinear\n\n\ndef setup_axes(fig, rect):\n \"\"\"\n polar projection, but in a rectangular box.\n \"\"\"\n\n # see demo_curvelinear_grid.py for details\n tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform()\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle=360,\n lat_cycle=None,\n lon_minmax=None,\n lat_minmax=(0, np.inf),\n )\n\n grid_locator1 = angle_helper.LocatorDMS(12)\n grid_locator2 = grid_finder.MaxNLocator(5)\n\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1\n )\n\n ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper)\n ax1.axis[:].toggle(ticklabels=False)\n\n fig.add_subplot(ax1)\n\n ax1.set_aspect(1.)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n return ax1\n\n\ndef add_floating_axis1(ax1):\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 30)\n axis.label.set_text(r\"$\\theta = 30^{\\circ}$\")\n axis.label.set_visible(True)\n\n return axis\n\n\ndef add_floating_axis2(ax1):\n ax1.axis[\"lon\"] = axis = ax1.new_floating_axis(1, 6)\n axis.label.set_text(r\"$r = 6$\")\n axis.label.set_visible(True)\n\n return axis\n\n\nfig = plt.figure(figsize=(8, 4))\nfig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99,\n wspace=0.01, hspace=0.01)\n\nfor i, d in enumerate([\"bottom\", \"left\", \"top\", \"right\"]):\n ax1 = setup_axes(fig, rect=241++i)\n axis = add_floating_axis1(ax1)\n axis.set_axis_direction(d)\n ax1.annotate(d, (0, 1), (5, -5),\n xycoords=\"axes fraction\", textcoords=\"offset points\",\n va=\"top\", ha=\"left\")\n\nfor i, d in enumerate([\"bottom\", \"left\", \"top\", \"right\"]):\n ax1 = setup_axes(fig, rect=245++i)\n axis = add_floating_axis2(ax1)\n axis.set_axis_direction(d)\n ax1.annotate(d, (0, 1), (5, -5),\n xycoords=\"axes fraction\", textcoords=\"offset points\",\n va=\"top\", ha=\"left\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a444c054ed141b09cce92df357db9763/scatter_demo2.ipynb b/_downloads/a444c054ed141b09cce92df357db9763/scatter_demo2.ipynb deleted file mode 120000 index d526b6a916c..00000000000 --- a/_downloads/a444c054ed141b09cce92df357db9763/scatter_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a444c054ed141b09cce92df357db9763/scatter_demo2.ipynb \ No newline at end of file diff --git a/_downloads/a446156acd631818ecf8f1596acd3026/masked_demo.ipynb b/_downloads/a446156acd631818ecf8f1596acd3026/masked_demo.ipynb deleted file mode 120000 index 2922e6c02bf..00000000000 --- a/_downloads/a446156acd631818ecf8f1596acd3026/masked_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a446156acd631818ecf8f1596acd3026/masked_demo.ipynb \ No newline at end of file diff --git a/_downloads/a45549a6c4589346bb8eae69e3052b30/tricontourf3d.py b/_downloads/a45549a6c4589346bb8eae69e3052b30/tricontourf3d.py deleted file mode 120000 index bfa22a8e9dd..00000000000 --- a/_downloads/a45549a6c4589346bb8eae69e3052b30/tricontourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a45549a6c4589346bb8eae69e3052b30/tricontourf3d.py \ No newline at end of file diff --git a/_downloads/a4652ca1a4a18201065bbd62194250c2/annotate_with_units.ipynb b/_downloads/a4652ca1a4a18201065bbd62194250c2/annotate_with_units.ipynb deleted file mode 100644 index ce6f1da3b46..00000000000 --- a/_downloads/a4652ca1a4a18201065bbd62194250c2/annotate_with_units.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotation with units\n\n\nThe example illustrates how to create text and arrow\nannotations using a centimeter-scale plot.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom basic_units import cm\n\nfig, ax = plt.subplots()\n\nax.annotate(\"Note 01\", [0.5*cm, 0.5*cm])\n\n# xy and text both unitized\nax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data',\n xytext=(0.8*cm, 0.95*cm), textcoords='data',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top')\n\n# mixing units w/ nonunits\nax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data',\n xytext=(0.8, 0.95), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top')\n\n\nax.set_xlim(0*cm, 4*cm)\nax.set_ylim(0*cm, 4*cm)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a47622c814e2d06262d6314d6ecde3b7/barchart_demo.ipynb b/_downloads/a47622c814e2d06262d6314d6ecde3b7/barchart_demo.ipynb deleted file mode 100644 index 3e4c57f378d..00000000000 --- a/_downloads/a47622c814e2d06262d6314d6ecde3b7/barchart_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Percentiles as horizontal bar chart\n\n\nBar charts are useful for visualizing counts, or summary statistics\nwith error bars. Also see the :doc:`/gallery/lines_bars_and_markers/barchart`\nor the :doc:`/gallery/lines_bars_and_markers/barh` example for simpler versions\nof those features.\n\nThis example comes from an application in which grade school gym\nteachers wanted to be able to show parents how their child did across\na handful of fitness tests, and importantly, relative to how other\nchildren did. To extract the plotting code for demo purposes, we'll\njust make up some data for little Johnny Doe.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import MaxNLocator\nfrom collections import namedtuple\n\nnp.random.seed(42)\n\nStudent = namedtuple('Student', ['name', 'grade', 'gender'])\nScore = namedtuple('Score', ['score', 'percentile'])\n\n# GLOBAL CONSTANTS\ntestNames = ['Pacer Test', 'Flexed Arm\\n Hang', 'Mile Run', 'Agility',\n 'Push Ups']\ntestMeta = dict(zip(testNames, ['laps', 'sec', 'min:sec', 'sec', '']))\n\n\ndef attach_ordinal(num):\n \"\"\"helper function to add ordinal string to integers\n\n 1 -> 1st\n 56 -> 56th\n \"\"\"\n suffixes = {str(i): v\n for i, v in enumerate(['th', 'st', 'nd', 'rd', 'th',\n 'th', 'th', 'th', 'th', 'th'])}\n\n v = str(num)\n # special case early teens\n if v in {'11', '12', '13'}:\n return v + 'th'\n return v + suffixes[v[-1]]\n\n\ndef format_score(scr, test):\n \"\"\"\n Build up the score labels for the right Y-axis by first\n appending a carriage return to each string and then tacking on\n the appropriate meta information (i.e., 'laps' vs 'seconds'). We\n want the labels centered on the ticks, so if there is no meta\n info (like for pushups) then don't add the carriage return to\n the string\n \"\"\"\n md = testMeta[test]\n if md:\n return '{0}\\n{1}'.format(scr, md)\n else:\n return scr\n\n\ndef format_ycursor(y):\n y = int(y)\n if y < 0 or y >= len(testNames):\n return ''\n else:\n return testNames[y]\n\n\ndef plot_student_results(student, scores, cohort_size):\n # create the figure\n fig, ax1 = plt.subplots(figsize=(9, 7))\n fig.subplots_adjust(left=0.115, right=0.88)\n fig.canvas.set_window_title('Eldorado K-8 Fitness Chart')\n\n pos = np.arange(len(testNames))\n\n rects = ax1.barh(pos, [scores[k].percentile for k in testNames],\n align='center',\n height=0.5,\n tick_label=testNames)\n\n ax1.set_title(student.name)\n\n ax1.set_xlim([0, 100])\n ax1.xaxis.set_major_locator(MaxNLocator(11))\n ax1.xaxis.grid(True, linestyle='--', which='major',\n color='grey', alpha=.25)\n\n # Plot a solid vertical gridline to highlight the median position\n ax1.axvline(50, color='grey', alpha=0.25)\n\n # Set the right-hand Y-axis ticks and labels\n ax2 = ax1.twinx()\n\n scoreLabels = [format_score(scores[k].score, k) for k in testNames]\n\n # set the tick locations\n ax2.set_yticks(pos)\n # make sure that the limits are set equally on both yaxis so the\n # ticks line up\n ax2.set_ylim(ax1.get_ylim())\n\n # set the tick labels\n ax2.set_yticklabels(scoreLabels)\n\n ax2.set_ylabel('Test Scores')\n\n xlabel = ('Percentile Ranking Across {grade} Grade {gender}s\\n'\n 'Cohort Size: {cohort_size}')\n ax1.set_xlabel(xlabel.format(grade=attach_ordinal(student.grade),\n gender=student.gender.title(),\n cohort_size=cohort_size))\n\n rect_labels = []\n # Lastly, write in the ranking inside each bar to aid in interpretation\n for rect in rects:\n # Rectangle widths are already integer-valued but are floating\n # type, so it helps to remove the trailing decimal point and 0 by\n # converting width to int type\n width = int(rect.get_width())\n\n rankStr = attach_ordinal(width)\n # The bars aren't wide enough to print the ranking inside\n if width < 40:\n # Shift the text to the right side of the right edge\n xloc = 5\n # Black against white background\n clr = 'black'\n align = 'left'\n else:\n # Shift the text to the left side of the right edge\n xloc = -5\n # White on magenta\n clr = 'white'\n align = 'right'\n\n # Center the text vertically in the bar\n yloc = rect.get_y() + rect.get_height() / 2\n label = ax1.annotate(rankStr, xy=(width, yloc), xytext=(xloc, 0),\n textcoords=\"offset points\",\n ha=align, va='center',\n color=clr, weight='bold', clip_on=True)\n rect_labels.append(label)\n\n # make the interactive mouse over give the bar title\n ax2.fmt_ydata = format_ycursor\n # return all of the artists created\n return {'fig': fig,\n 'ax': ax1,\n 'ax_right': ax2,\n 'bars': rects,\n 'perc_labels': rect_labels}\n\n\nstudent = Student('Johnny Doe', 2, 'boy')\nscores = dict(zip(testNames,\n (Score(v, p) for v, p in\n zip(['7', '48', '12:52', '17', '14'],\n np.round(np.random.uniform(0, 1,\n len(testNames)) * 100, 0)))))\ncohort_size = 62 # The number of other 2nd grade boys\n\narts = plot_student_results(student, scores, cohort_size)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate\nmatplotlib.axes.Axes.twinx" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a47caee90e2208e64f6f354ef1e28e96/fill_spiral.py b/_downloads/a47caee90e2208e64f6f354ef1e28e96/fill_spiral.py deleted file mode 120000 index e2e055af66f..00000000000 --- a/_downloads/a47caee90e2208e64f6f354ef1e28e96/fill_spiral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a47caee90e2208e64f6f354ef1e28e96/fill_spiral.py \ No newline at end of file diff --git a/_downloads/a47e8c7a9ce5c8ebb4f177bc863b7238/fill_between_alpha.py b/_downloads/a47e8c7a9ce5c8ebb4f177bc863b7238/fill_between_alpha.py deleted file mode 100644 index dc0eaaf9326..00000000000 --- a/_downloads/a47e8c7a9ce5c8ebb4f177bc863b7238/fill_between_alpha.py +++ /dev/null @@ -1,138 +0,0 @@ -""" -Fill Between and Alpha -====================== - -The :meth:`~matplotlib.axes.Axes.fill_between` function generates a -shaded region between a min and max boundary that is useful for -illustrating ranges. It has a very handy ``where`` argument to -combine filling with logical ranges, e.g., to just fill in a curve over -some threshold value. - -At its most basic level, ``fill_between`` can be use to enhance a -graphs visual appearance. Let's compare two graphs of a financial -times with a simple line plot on the left and a filled line on the -right. -""" - -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.cbook as cbook - -# load up some sample financial data -with cbook.get_sample_data('goog.npz') as datafile: - r = np.load(datafile)['price_data'].view(np.recarray) -# Matplotlib prefers datetime instead of np.datetime64. -date = r.date.astype('O') -# create two subplots with the shared x and y axes -fig, (ax1, ax2) = plt.subplots(1, 2, sharex=True, sharey=True) - -pricemin = r.close.min() - -ax1.plot(date, r.close, lw=2) -ax2.fill_between(date, pricemin, r.close, facecolor='blue', alpha=0.5) - -for ax in ax1, ax2: - ax.grid(True) - -ax1.set_ylabel('price') -for label in ax2.get_yticklabels(): - label.set_visible(False) - -fig.suptitle('Google (GOOG) daily closing price') -fig.autofmt_xdate() - -############################################################################### -# The alpha channel is not necessary here, but it can be used to soften -# colors for more visually appealing plots. In other examples, as we'll -# see below, the alpha channel is functionally useful as the shaded -# regions can overlap and alpha allows you to see both. Note that the -# postscript format does not support alpha (this is a postscript -# limitation, not a matplotlib limitation), so when using alpha save -# your figures in PNG, PDF or SVG. -# -# Our next example computes two populations of random walkers with a -# different mean and standard deviation of the normal distributions from -# which the steps are drawn. We use shared regions to plot +/- one -# standard deviation of the mean position of the population. Here the -# alpha channel is useful, not just aesthetic. - -Nsteps, Nwalkers = 100, 250 -t = np.arange(Nsteps) - -# an (Nsteps x Nwalkers) array of random walk steps -S1 = 0.002 + 0.01*np.random.randn(Nsteps, Nwalkers) -S2 = 0.004 + 0.02*np.random.randn(Nsteps, Nwalkers) - -# an (Nsteps x Nwalkers) array of random walker positions -X1 = S1.cumsum(axis=0) -X2 = S2.cumsum(axis=0) - - -# Nsteps length arrays empirical means and standard deviations of both -# populations over time -mu1 = X1.mean(axis=1) -sigma1 = X1.std(axis=1) -mu2 = X2.mean(axis=1) -sigma2 = X2.std(axis=1) - -# plot it! -fig, ax = plt.subplots(1) -ax.plot(t, mu1, lw=2, label='mean population 1', color='blue') -ax.plot(t, mu2, lw=2, label='mean population 2', color='yellow') -ax.fill_between(t, mu1+sigma1, mu1-sigma1, facecolor='blue', alpha=0.5) -ax.fill_between(t, mu2+sigma2, mu2-sigma2, facecolor='yellow', alpha=0.5) -ax.set_title(r'random walkers empirical $\mu$ and $\pm \sigma$ interval') -ax.legend(loc='upper left') -ax.set_xlabel('num steps') -ax.set_ylabel('position') -ax.grid() - -############################################################################### -# The ``where`` keyword argument is very handy for highlighting certain -# regions of the graph. ``where`` takes a boolean mask the same length -# as the x, ymin and ymax arguments, and only fills in the region where -# the boolean mask is True. In the example below, we simulate a single -# random walker and compute the analytic mean and standard deviation of -# the population positions. The population mean is shown as the black -# dashed line, and the plus/minus one sigma deviation from the mean is -# shown as the yellow filled region. We use the where mask -# ``X > upper_bound`` to find the region where the walker is above the one -# sigma boundary, and shade that region blue. - -Nsteps = 500 -t = np.arange(Nsteps) - -mu = 0.002 -sigma = 0.01 - -# the steps and position -S = mu + sigma*np.random.randn(Nsteps) -X = S.cumsum() - -# the 1 sigma upper and lower analytic population bounds -lower_bound = mu*t - sigma*np.sqrt(t) -upper_bound = mu*t + sigma*np.sqrt(t) - -fig, ax = plt.subplots(1) -ax.plot(t, X, lw=2, label='walker position', color='blue') -ax.plot(t, mu*t, lw=1, label='population mean', color='black', ls='--') -ax.fill_between(t, lower_bound, upper_bound, facecolor='yellow', alpha=0.5, - label='1 sigma range') -ax.legend(loc='upper left') - -# here we use the where argument to only fill the region where the -# walker is above the population 1 sigma boundary -ax.fill_between(t, upper_bound, X, where=X > upper_bound, facecolor='blue', - alpha=0.5) -ax.set_xlabel('num steps') -ax.set_ylabel('position') -ax.grid() - -############################################################################### -# Another handy use of filled regions is to highlight horizontal or -# vertical spans of an axes -- for that matplotlib has some helper -# functions :meth:`~matplotlib.axes.Axes.axhspan` and -# :meth:`~matplotlib.axes.Axes.axvspan` and example -# :doc:`/gallery/subplots_axes_and_figures/axhspan_demo`. - -plt.show() diff --git a/_downloads/a487909087d4b5697f617f4e14206dad/pyplot_simple.ipynb b/_downloads/a487909087d4b5697f617f4e14206dad/pyplot_simple.ipynb deleted file mode 100644 index e97461f0f8b..00000000000 --- a/_downloads/a487909087d4b5697f617f4e14206dad/pyplot_simple.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Simple\n\n\nA most simple plot, where a list of numbers is plotted against their index.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.plot([1,2,3,4])\nplt.ylabel('some numbers')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.plot\nmatplotlib.pyplot.ylabel\nmatplotlib.pyplot.show" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a48ff1ec7887c2c22320f7b9e3d27b01/embedding_in_wx4_sgskip.ipynb b/_downloads/a48ff1ec7887c2c22320f7b9e3d27b01/embedding_in_wx4_sgskip.ipynb deleted file mode 120000 index 0f9e0eb9b41..00000000000 --- a/_downloads/a48ff1ec7887c2c22320f7b9e3d27b01/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a48ff1ec7887c2c22320f7b9e3d27b01/embedding_in_wx4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/a48ff35166ac9f21e516f491100a015e/text3d.ipynb b/_downloads/a48ff35166ac9f21e516f491100a015e/text3d.ipynb deleted file mode 120000 index 470d9f2de28..00000000000 --- a/_downloads/a48ff35166ac9f21e516f491100a015e/text3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a48ff35166ac9f21e516f491100a015e/text3d.ipynb \ No newline at end of file diff --git a/_downloads/a49310fd1b7cb5d54d3023a6ff2771da/annotate_transform.py b/_downloads/a49310fd1b7cb5d54d3023a6ff2771da/annotate_transform.py deleted file mode 120000 index 48a0853a617..00000000000 --- a/_downloads/a49310fd1b7cb5d54d3023a6ff2771da/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a49310fd1b7cb5d54d3023a6ff2771da/annotate_transform.py \ No newline at end of file diff --git a/_downloads/a4a001582ccdadae52d2c1e265f2e3b2/simple_axes_divider2.ipynb b/_downloads/a4a001582ccdadae52d2c1e265f2e3b2/simple_axes_divider2.ipynb deleted file mode 100644 index cfb64cd4e3b..00000000000 --- a/_downloads/a4a001582ccdadae52d2c1e265f2e3b2/simple_axes_divider2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axes Divider 2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits.axes_grid1.axes_size as Size\nfrom mpl_toolkits.axes_grid1 import Divider\nimport matplotlib.pyplot as plt\n\nfig = plt.figure(figsize=(5.5, 4.))\n\n# the rect parameter will be ignore as we will set axes_locator\nrect = (0.1, 0.1, 0.8, 0.8)\nax = [fig.add_axes(rect, label=\"%d\" % i) for i in range(4)]\n\nhoriz = [Size.Scaled(1.5), Size.Fixed(.5), Size.Scaled(1.),\n Size.Scaled(.5)]\n\nvert = [Size.Scaled(1.), Size.Fixed(.5), Size.Scaled(1.5)]\n\n# divide the axes rectangle into grid whose size is specified by horiz * vert\ndivider = Divider(fig, rect, horiz, vert, aspect=False)\n\nax[0].set_axes_locator(divider.new_locator(nx=0, ny=0))\nax[1].set_axes_locator(divider.new_locator(nx=0, ny=2))\nax[2].set_axes_locator(divider.new_locator(nx=2, ny=2))\nax[3].set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0))\n\nfor ax1 in ax:\n ax1.tick_params(labelbottom=False, labelleft=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a4a4ae5bf5764fb5f9245d2358c4addc/fig_axes_labels_simple.ipynb b/_downloads/a4a4ae5bf5764fb5f9245d2358c4addc/fig_axes_labels_simple.ipynb deleted file mode 120000 index 257db19f384..00000000000 --- a/_downloads/a4a4ae5bf5764fb5f9245d2358c4addc/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a4a4ae5bf5764fb5f9245d2358c4addc/fig_axes_labels_simple.ipynb \ No newline at end of file diff --git a/_downloads/a4af59b9e114b598423837fd8f634a16/subplot_toolbar.py b/_downloads/a4af59b9e114b598423837fd8f634a16/subplot_toolbar.py deleted file mode 120000 index c7cd2e6ec36..00000000000 --- a/_downloads/a4af59b9e114b598423837fd8f634a16/subplot_toolbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a4af59b9e114b598423837fd8f634a16/subplot_toolbar.py \ No newline at end of file diff --git a/_downloads/a4b35296f7b50e2f4d43fbd82b6da2c3/demo_agg_filter.ipynb b/_downloads/a4b35296f7b50e2f4d43fbd82b6da2c3/demo_agg_filter.ipynb deleted file mode 120000 index 1ebfc09f796..00000000000 --- a/_downloads/a4b35296f7b50e2f4d43fbd82b6da2c3/demo_agg_filter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a4b35296f7b50e2f4d43fbd82b6da2c3/demo_agg_filter.ipynb \ No newline at end of file diff --git a/_downloads/a4be7b107da4f0dd66600d36f0787c4a/tick-locators.ipynb b/_downloads/a4be7b107da4f0dd66600d36f0787c4a/tick-locators.ipynb deleted file mode 120000 index 93489408bf0..00000000000 --- a/_downloads/a4be7b107da4f0dd66600d36f0787c4a/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/a4be7b107da4f0dd66600d36f0787c4a/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/a4c7e9b06a11622a34e5ee7b09b097f2/simple_legend02.ipynb b/_downloads/a4c7e9b06a11622a34e5ee7b09b097f2/simple_legend02.ipynb deleted file mode 120000 index 017ee78759f..00000000000 --- a/_downloads/a4c7e9b06a11622a34e5ee7b09b097f2/simple_legend02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a4c7e9b06a11622a34e5ee7b09b097f2/simple_legend02.ipynb \ No newline at end of file diff --git a/_downloads/a4ca2d398a778f09d428679d85cdef43/stackplot_demo.py b/_downloads/a4ca2d398a778f09d428679d85cdef43/stackplot_demo.py deleted file mode 120000 index 8d87ca1d85e..00000000000 --- a/_downloads/a4ca2d398a778f09d428679d85cdef43/stackplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a4ca2d398a778f09d428679d85cdef43/stackplot_demo.py \ No newline at end of file diff --git a/_downloads/a4d3e814001599595c67a0a064cfd093/simple_annotate01.ipynb b/_downloads/a4d3e814001599595c67a0a064cfd093/simple_annotate01.ipynb deleted file mode 100644 index ed892ffe510..00000000000 --- a/_downloads/a4d3e814001599595c67a0a064cfd093/simple_annotate01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Annotate01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as mpatches\n\n\nfig, axs = plt.subplots(2, 4)\nx1, y1 = 0.3, 0.3\nx2, y2 = 0.7, 0.7\n\nax = axs.flat[0]\nax.plot([x1, x2], [y1, y2], \"o\")\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\"))\nax.text(.05, .95, \"A $->$ B\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[2]\nax.plot([x1, x2], [y1, y2], \"o\")\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.3\",\n shrinkB=5)\n )\nax.text(.05, .95, \"shrinkB=5\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[3]\nax.plot([x1, x2], [y1, y2], \"o\")\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.3\"))\nax.text(.05, .95, \"connectionstyle=arc3\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[4]\nax.plot([x1, x2], [y1, y2], \"o\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.2\")\n )\n\nax = axs.flat[5]\nax.plot([x1, x2], [y1, y2], \"o\")\nel = mpatches.Ellipse((x1, y1), 0.3, 0.4, angle=30, alpha=0.5)\nax.add_artist(el)\nax.annotate(\"\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\", connectionstyle=\"arc3,rad=0.2\",\n patchB=el)\n )\nax.text(.05, .95, \"patchB\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[6]\nax.plot([x1], [y1], \"o\")\nax.annotate(\"Test\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n ha=\"center\", va=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\")\n )\nax.text(.05, .95, \"annotate\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nax = axs.flat[7]\nax.plot([x1], [y1], \"o\")\nax.annotate(\"Test\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='data',\n ha=\"center\", va=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\", ),\n arrowprops=dict(arrowstyle=\"->\", relpos=(0., 0.))\n )\nax.text(.05, .95, \"relpos=(0,0)\", transform=ax.transAxes, ha=\"left\", va=\"top\")\n\nfor ax in axs.flat:\n ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a4d880e902d6453607b2c4007565face/scatter_with_legend.py b/_downloads/a4d880e902d6453607b2c4007565face/scatter_with_legend.py deleted file mode 100644 index fbbbd58614e..00000000000 --- a/_downloads/a4d880e902d6453607b2c4007565face/scatter_with_legend.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -=========================== -Scatter plots with a legend -=========================== - -To create a scatter plot with a legend one may use a loop and create one -`~.Axes.scatter` plot per item to appear in the legend and set the ``label`` -accordingly. - -The following also demonstrates how transparency of the markers -can be adjusted by giving ``alpha`` a value between 0 and 1. -""" - -import numpy as np -np.random.seed(19680801) -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots() -for color in ['tab:blue', 'tab:orange', 'tab:green']: - n = 750 - x, y = np.random.rand(2, n) - scale = 200.0 * np.random.rand(n) - ax.scatter(x, y, c=color, s=scale, label=color, - alpha=0.3, edgecolors='none') - -ax.legend() -ax.grid(True) - -plt.show() - - -############################################################################## -# .. _automatedlegendcreation: -# -# Automated legend creation -# ------------------------- -# -# Another option for creating a legend for a scatter is to use the -# :class:`~matplotlib.collections.PathCollection`'s -# :meth:`~.PathCollection.legend_elements` method. -# It will automatically try to determine a useful number of legend entries -# to be shown and return a tuple of handles and labels. Those can be passed -# to the call to :meth:`~.axes.Axes.legend`. - - -N = 45 -x, y = np.random.rand(2, N) -c = np.random.randint(1, 5, size=N) -s = np.random.randint(10, 220, size=N) - -fig, ax = plt.subplots() - -scatter = ax.scatter(x, y, c=c, s=s) - -# produce a legend with the unique colors from the scatter -legend1 = ax.legend(*scatter.legend_elements(), - loc="lower left", title="Classes") -ax.add_artist(legend1) - -# produce a legend with a cross section of sizes from the scatter -handles, labels = scatter.legend_elements(prop="sizes", alpha=0.6) -legend2 = ax.legend(handles, labels, loc="upper right", title="Sizes") - -plt.show() - - -############################################################################## -# Further arguments to the :meth:`~.PathCollection.legend_elements` method -# can be used to steer how many legend entries are to be created and how they -# should be labeled. The following shows how to use some of them. -# - -volume = np.random.rayleigh(27, size=40) -amount = np.random.poisson(10, size=40) -ranking = np.random.normal(size=40) -price = np.random.uniform(1, 10, size=40) - -fig, ax = plt.subplots() - -# Because the price is much too small when being provided as size for ``s``, -# we normalize it to some useful point sizes, s=0.3*(price*3)**2 -scatter = ax.scatter(volume, amount, c=ranking, s=0.3*(price*3)**2, - vmin=-3, vmax=3, cmap="Spectral") - -# Produce a legend for the ranking (colors). Even though there are 40 different -# rankings, we only want to show 5 of them in the legend. -legend1 = ax.legend(*scatter.legend_elements(num=5), - loc="upper left", title="Ranking") -ax.add_artist(legend1) - -# Produce a legend for the price (sizes). Because we want to show the prices -# in dollars, we use the *func* argument to supply the inverse of the function -# used to calculate the sizes from above. The *fmt* ensures to show the price -# in dollars. Note how we target at 5 elements here, but obtain only 4 in the -# created legend due to the automatic round prices that are chosen for us. -kw = dict(prop="sizes", num=5, color=scatter.cmap(0.7), fmt="$ {x:.2f}", - func=lambda s: np.sqrt(s/.3)/3) -legend2 = ax.legend(*scatter.legend_elements(**kw), - loc="lower right", title="Price") - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The usage of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.collections.PathCollection.legend_elements diff --git a/_downloads/a4d92708feb585e3ce7dcb7036b41450/boxplot_demo_pyplot.ipynb b/_downloads/a4d92708feb585e3ce7dcb7036b41450/boxplot_demo_pyplot.ipynb deleted file mode 100644 index f1cc3707608..00000000000 --- a/_downloads/a4d92708feb585e3ce7dcb7036b41450/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1,174 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Boxplot Demo\n\n\nExample boxplot code\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# fake up some data\nspread = np.random.rand(50) * 100\ncenter = np.ones(25) * 50\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\ndata = np.concatenate((spread, center, flier_high, flier_low))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_title('Basic Plot')\nax1.boxplot(data)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_title('Notched boxes')\nax2.boxplot(data, notch=True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "green_diamond = dict(markerfacecolor='g', marker='D')\nfig3, ax3 = plt.subplots()\nax3.set_title('Changed Outlier Symbols')\nax3.boxplot(data, flierprops=green_diamond)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig4, ax4 = plt.subplots()\nax4.set_title('Hide Outlier Points')\nax4.boxplot(data, showfliers=False)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "red_square = dict(markerfacecolor='r', marker='s')\nfig5, ax5 = plt.subplots()\nax5.set_title('Horizontal Boxes')\nax5.boxplot(data, vert=False, flierprops=red_square)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig6, ax6 = plt.subplots()\nax6.set_title('Shorter Whisker Length')\nax6.boxplot(data, flierprops=red_square, vert=False, whis=0.75)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Fake up some more data\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "spread = np.random.rand(50) * 100\ncenter = np.ones(25) * 40\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\nd2 = np.concatenate((spread, center, flier_high, flier_low))\ndata.shape = (-1, 1)\nd2.shape = (-1, 1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Making a 2-D array only works if all the columns are the\nsame length. If they are not, then use a list instead.\nThis is actually more efficient because boxplot converts\na 2-D array into a list of vectors internally anyway.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "data = [data, d2, d2[::2,0]]\nfig7, ax7 = plt.subplots()\nax7.set_title('Multiple Samples with Different sizes')\nax7.boxplot(data)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.boxplot\nmatplotlib.pyplot.boxplot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a4e438dc0cb2546a798f3ffe13441aaa/whats_new_99_spines.ipynb b/_downloads/a4e438dc0cb2546a798f3ffe13441aaa/whats_new_99_spines.ipynb deleted file mode 120000 index dc1f31fa7d8..00000000000 --- a/_downloads/a4e438dc0cb2546a798f3ffe13441aaa/whats_new_99_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/a4e438dc0cb2546a798f3ffe13441aaa/whats_new_99_spines.ipynb \ No newline at end of file diff --git a/_downloads/a4e65bafb8e5cd159cc1995957bed072/svg_histogram_sgskip.py b/_downloads/a4e65bafb8e5cd159cc1995957bed072/svg_histogram_sgskip.py deleted file mode 120000 index b9ad9a38fb4..00000000000 --- a/_downloads/a4e65bafb8e5cd159cc1995957bed072/svg_histogram_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a4e65bafb8e5cd159cc1995957bed072/svg_histogram_sgskip.py \ No newline at end of file diff --git a/_downloads/a4f053f1cc4c41ee02d447f65ca73004/svg_tooltip_sgskip.ipynb b/_downloads/a4f053f1cc4c41ee02d447f65ca73004/svg_tooltip_sgskip.ipynb deleted file mode 100644 index d837fd87e60..00000000000 --- a/_downloads/a4f053f1cc4c41ee02d447f65ca73004/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Tooltip\n\n\nThis example shows how to create a tooltip that will show up when\nhovering over a matplotlib patch.\n\nAlthough it is possible to create the tooltip from CSS or javascript,\nhere we create it in matplotlib and simply toggle its visibility on\nwhen hovering over the patch. This approach provides total control over\nthe tooltip placement and appearance, at the expense of more code up\nfront.\n\nThe alternative approach would be to put the tooltip content in `title`\nattributes of SVG objects. Then, using an existing js/CSS library, it\nwould be relatively straightforward to create the tooltip in the\nbrowser. The content would be dictated by the `title` attribute, and\nthe appearance by the CSS.\n\n\n:author: David Huard\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport xml.etree.ElementTree as ET\nfrom io import BytesIO\n\nET.register_namespace(\"\", \"http://www.w3.org/2000/svg\")\n\nfig, ax = plt.subplots()\n\n# Create patches to which tooltips will be assigned.\nrect1 = plt.Rectangle((10, -20), 10, 5, fc='blue')\nrect2 = plt.Rectangle((-20, 15), 10, 5, fc='green')\n\nshapes = [rect1, rect2]\nlabels = ['This is a blue rectangle.', 'This is a green rectangle']\n\nfor i, (item, label) in enumerate(zip(shapes, labels)):\n patch = ax.add_patch(item)\n annotate = ax.annotate(labels[i], xy=item.get_xy(), xytext=(0, 0),\n textcoords='offset points', color='w', ha='center',\n fontsize=8, bbox=dict(boxstyle='round, pad=.5',\n fc=(.1, .1, .1, .92),\n ec=(1., 1., 1.), lw=1,\n zorder=1))\n\n ax.add_patch(patch)\n patch.set_gid('mypatch_{:03d}'.format(i))\n annotate.set_gid('mytooltip_{:03d}'.format(i))\n\n# Save the figure in a fake file object\nax.set_xlim(-30, 30)\nax.set_ylim(-30, 30)\nax.set_aspect('equal')\n\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\n# --- Add interactivity ---\n\n# Create XML tree from the SVG file.\ntree, xmlid = ET.XMLID(f.getvalue())\ntree.set('onload', 'init(evt)')\n\nfor i in shapes:\n # Get the index of the shape\n index = shapes.index(i)\n # Hide the tooltips\n tooltip = xmlid['mytooltip_{:03d}'.format(index)]\n tooltip.set('visibility', 'hidden')\n # Assign onmouseover and onmouseout callbacks to patches.\n mypatch = xmlid['mypatch_{:03d}'.format(index)]\n mypatch.set('onmouseover', \"ShowTooltip(this)\")\n mypatch.set('onmouseout', \"HideTooltip(this)\")\n\n# This is the script defining the ShowTooltip and HideTooltip functions.\nscript = \"\"\"\n \n \"\"\"\n\n# Insert the script at the top of the file and save it.\ntree.insert(0, ET.XML(script))\nET.ElementTree(tree).write('svg_tooltip.svg')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a4f0654e3df7859609635d268582e562/evans_test.py b/_downloads/a4f0654e3df7859609635d268582e562/evans_test.py deleted file mode 120000 index ca61bd098eb..00000000000 --- a/_downloads/a4f0654e3df7859609635d268582e562/evans_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a4f0654e3df7859609635d268582e562/evans_test.py \ No newline at end of file diff --git a/_downloads/a4f7b70d350829d0127d2217d1bf3b66/gallery_jupyter.zip b/_downloads/a4f7b70d350829d0127d2217d1bf3b66/gallery_jupyter.zip deleted file mode 100644 index 1875c12e6b5..00000000000 Binary files a/_downloads/a4f7b70d350829d0127d2217d1bf3b66/gallery_jupyter.zip and /dev/null differ diff --git a/_downloads/a4fc4a3e3ba9a26f18149290c5e5ebc7/colormap-manipulation.ipynb b/_downloads/a4fc4a3e3ba9a26f18149290c5e5ebc7/colormap-manipulation.ipynb deleted file mode 120000 index 5c9490e68c2..00000000000 --- a/_downloads/a4fc4a3e3ba9a26f18149290c5e5ebc7/colormap-manipulation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a4fc4a3e3ba9a26f18149290c5e5ebc7/colormap-manipulation.ipynb \ No newline at end of file diff --git a/_downloads/a4fe442953ba586f0498e644a8e9d184/font_family_rc_sgskip.py b/_downloads/a4fe442953ba586f0498e644a8e9d184/font_family_rc_sgskip.py deleted file mode 120000 index ceedcf107b5..00000000000 --- a/_downloads/a4fe442953ba586f0498e644a8e9d184/font_family_rc_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a4fe442953ba586f0498e644a8e9d184/font_family_rc_sgskip.py \ No newline at end of file diff --git a/_downloads/a4fe8728d9546d6b4068dd8454481e3c/lorenz_attractor.py b/_downloads/a4fe8728d9546d6b4068dd8454481e3c/lorenz_attractor.py deleted file mode 120000 index ea9c37c4d6e..00000000000 --- a/_downloads/a4fe8728d9546d6b4068dd8454481e3c/lorenz_attractor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a4fe8728d9546d6b4068dd8454481e3c/lorenz_attractor.py \ No newline at end of file diff --git a/_downloads/a500386fc8f36b1faf1dd88f824f9917/demo_floating_axis.py b/_downloads/a500386fc8f36b1faf1dd88f824f9917/demo_floating_axis.py deleted file mode 100644 index 4915df1c107..00000000000 --- a/_downloads/a500386fc8f36b1faf1dd88f824f9917/demo_floating_axis.py +++ /dev/null @@ -1,70 +0,0 @@ -""" -================== -Demo Floating Axis -================== - -Axis within rectangular frame - -The following code demonstrates how to put a floating polar curve within a -rectangular box. In order to get a better sense of polar curves, please look at -demo_curvelinear_grid.py. -""" -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.angle_helper as angle_helper -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D -from mpl_toolkits.axisartist import SubplotHost -from mpl_toolkits.axisartist import GridHelperCurveLinear - - -def curvelinear_test2(fig): - """Polar projection, but in a rectangular box. - """ - # see demo_curvelinear_grid.py for details - tr = Affine2D().scale(np.pi / 180., 1.) + PolarAxes.PolarTransform() - - extreme_finder = angle_helper.ExtremeFinderCycle(20, - 20, - lon_cycle=360, - lat_cycle=None, - lon_minmax=None, - lat_minmax=(0, - np.inf), - ) - - grid_locator1 = angle_helper.LocatorDMS(12) - - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - tick_formatter1=tick_formatter1 - ) - - ax1 = SubplotHost(fig, 1, 1, 1, grid_helper=grid_helper) - - fig.add_subplot(ax1) - - # Now creates floating axis - - # floating axis whose first coordinate (theta) is fixed at 60 - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 60) - axis.label.set_text(r"$\theta = 60^{\circ}$") - axis.label.set_visible(True) - - # floating axis whose second coordinate (r) is fixed at 6 - ax1.axis["lon"] = axis = ax1.new_floating_axis(1, 6) - axis.label.set_text(r"$r = 6$") - - ax1.set_aspect(1.) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - ax1.grid(True) - - -fig = plt.figure(figsize=(5, 5)) -curvelinear_test2(fig) -plt.show() diff --git a/_downloads/a500908f7f46b4bf540568e815f00d2c/filled_step.py b/_downloads/a500908f7f46b4bf540568e815f00d2c/filled_step.py deleted file mode 120000 index 26ff3da3b61..00000000000 --- a/_downloads/a500908f7f46b4bf540568e815f00d2c/filled_step.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a500908f7f46b4bf540568e815f00d2c/filled_step.py \ No newline at end of file diff --git a/_downloads/a504d4ff17a232cafe670c7836d9354f/sankey_basics.ipynb b/_downloads/a504d4ff17a232cafe670c7836d9354f/sankey_basics.ipynb deleted file mode 120000 index 329fa744440..00000000000 --- a/_downloads/a504d4ff17a232cafe670c7836d9354f/sankey_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a504d4ff17a232cafe670c7836d9354f/sankey_basics.ipynb \ No newline at end of file diff --git a/_downloads/a507eb0b209518377519abcef8031760/table_demo.py b/_downloads/a507eb0b209518377519abcef8031760/table_demo.py deleted file mode 100644 index cc23492d553..00000000000 --- a/_downloads/a507eb0b209518377519abcef8031760/table_demo.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -========== -Table Demo -========== - -Demo of table function to display a table within a plot. -""" -import numpy as np -import matplotlib.pyplot as plt - - -data = [[ 66386, 174296, 75131, 577908, 32015], - [ 58230, 381139, 78045, 99308, 160454], - [ 89135, 80552, 152558, 497981, 603535], - [ 78415, 81858, 150656, 193263, 69638], - [139361, 331509, 343164, 781380, 52269]] - -columns = ('Freeze', 'Wind', 'Flood', 'Quake', 'Hail') -rows = ['%d year' % x for x in (100, 50, 20, 10, 5)] - -values = np.arange(0, 2500, 500) -value_increment = 1000 - -# Get some pastel shades for the colors -colors = plt.cm.BuPu(np.linspace(0, 0.5, len(rows))) -n_rows = len(data) - -index = np.arange(len(columns)) + 0.3 -bar_width = 0.4 - -# Initialize the vertical-offset for the stacked bar chart. -y_offset = np.zeros(len(columns)) - -# Plot bars and create text labels for the table -cell_text = [] -for row in range(n_rows): - plt.bar(index, data[row], bar_width, bottom=y_offset, color=colors[row]) - y_offset = y_offset + data[row] - cell_text.append(['%1.1f' % (x / 1000.0) for x in y_offset]) -# Reverse colors and text labels to display the last value at the top. -colors = colors[::-1] -cell_text.reverse() - -# Add a table at the bottom of the axes -the_table = plt.table(cellText=cell_text, - rowLabels=rows, - rowColours=colors, - colLabels=columns, - loc='bottom') - -# Adjust layout to make room for the table: -plt.subplots_adjust(left=0.2, bottom=0.2) - -plt.ylabel("Loss in ${0}'s".format(value_increment)) -plt.yticks(values * value_increment, ['%d' % val for val in values]) -plt.xticks([]) -plt.title('Loss by Disaster') - -plt.show() diff --git a/_downloads/a51172aeffc6e91b743adde2d41b9afc/anchored_box04.ipynb b/_downloads/a51172aeffc6e91b743adde2d41b9afc/anchored_box04.ipynb deleted file mode 120000 index 6bb7acbc088..00000000000 --- a/_downloads/a51172aeffc6e91b743adde2d41b9afc/anchored_box04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a51172aeffc6e91b743adde2d41b9afc/anchored_box04.ipynb \ No newline at end of file diff --git a/_downloads/a515fb72c6b16e6613215d96cb9390d4/major_minor_demo.ipynb b/_downloads/a515fb72c6b16e6613215d96cb9390d4/major_minor_demo.ipynb deleted file mode 100644 index 84bda2f1c42..00000000000 --- a/_downloads/a515fb72c6b16e6613215d96cb9390d4/major_minor_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Major and minor ticks\n\n\nDemonstrate how to use major and minor tickers.\n\nThe two relevant classes are `.Locator`\\s and `.Formatter`\\s. Locators\ndetermine where the ticks are, and formatters control the formatting of tick\nlabels.\n\nMinor ticks are off by default (using `.NullLocator` and `.NullFormatter`).\nMinor ticks can be turned on without labels by setting the minor locator.\nMinor tick labels can be turned on by setting the minor formatter.\n\n`MultipleLocator` places ticks on multiples of some base. `FormatStrFormatter`\nuses a format string (e.g., '%d' or '%1.2f' or '%1.1f cm' ) to format the tick\nlabels.\n\n`.pyplot.grid` changes the grid settings of the major ticks of the y and y axis\ntogether. If you want to control the grid of the minor ticks for a given axis,\nuse for example ::\n\n ax.xaxis.grid(True, which='minor')\n\nNote that a given locator or formatter instance can only be used on a single\naxis (because the locator stores references to the axis data and view limits).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.ticker import (MultipleLocator, FormatStrFormatter,\n AutoMinorLocator)\n\n\nt = np.arange(0.0, 100.0, 0.1)\ns = np.sin(0.1 * np.pi * t) * np.exp(-t * 0.01)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\n# Make a plot with major ticks that are multiples of 20 and minor ticks that\n# are multiples of 5. Label major ticks with '%d' formatting but don't label\n# minor ticks.\nax.xaxis.set_major_locator(MultipleLocator(20))\nax.xaxis.set_major_formatter(FormatStrFormatter('%d'))\n\n# For the minor ticks, use no labels; default NullFormatter.\nax.xaxis.set_minor_locator(MultipleLocator(5))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Automatic tick selection for major and minor ticks.\n\nUse interactive pan and zoom to see how the tick intervals change. There will\nbe either 4 or 5 minor tick intervals per major interval, depending on the\nmajor interval.\n\nOne can supply an argument to AutoMinorLocator to specify a fixed number of\nminor intervals per major interval, e.g. ``AutoMinorLocator(2)`` would lead\nto a single minor tick between major ticks.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "t = np.arange(0.0, 100.0, 0.01)\ns = np.sin(2 * np.pi * t) * np.exp(-t * 0.01)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\nax.xaxis.set_minor_locator(AutoMinorLocator())\n\nax.tick_params(which='both', width=2)\nax.tick_params(which='major', length=7)\nax.tick_params(which='minor', length=4, color='r')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a5184f7b80c871ee41f981e55127b720/stackplot_demo.ipynb b/_downloads/a5184f7b80c871ee41f981e55127b720/stackplot_demo.ipynb deleted file mode 120000 index 53f7a974966..00000000000 --- a/_downloads/a5184f7b80c871ee41f981e55127b720/stackplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a5184f7b80c871ee41f981e55127b720/stackplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/a51e93c90f870fa9fd528c1228e07b06/ellipse_collection.ipynb b/_downloads/a51e93c90f870fa9fd528c1228e07b06/ellipse_collection.ipynb deleted file mode 120000 index e2482f9c77c..00000000000 --- a/_downloads/a51e93c90f870fa9fd528c1228e07b06/ellipse_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a51e93c90f870fa9fd528c1228e07b06/ellipse_collection.ipynb \ No newline at end of file diff --git a/_downloads/a521adda95f7c08169fef4882cf30a8f/accented_text.py b/_downloads/a521adda95f7c08169fef4882cf30a8f/accented_text.py deleted file mode 120000 index 9e1913e40df..00000000000 --- a/_downloads/a521adda95f7c08169fef4882cf30a8f/accented_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a521adda95f7c08169fef4882cf30a8f/accented_text.py \ No newline at end of file diff --git a/_downloads/a522aca9efd3798e7b8dfe6a1c8276e4/fill_between_alpha.ipynb b/_downloads/a522aca9efd3798e7b8dfe6a1c8276e4/fill_between_alpha.ipynb deleted file mode 120000 index 886241b6cb1..00000000000 --- a/_downloads/a522aca9efd3798e7b8dfe6a1c8276e4/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a522aca9efd3798e7b8dfe6a1c8276e4/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/a52412fb166313e5e680d93e734a64bb/transoffset.ipynb b/_downloads/a52412fb166313e5e680d93e734a64bb/transoffset.ipynb deleted file mode 120000 index 75c0aa85d08..00000000000 --- a/_downloads/a52412fb166313e5e680d93e734a64bb/transoffset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a52412fb166313e5e680d93e734a64bb/transoffset.ipynb \ No newline at end of file diff --git a/_downloads/a526c52334279da4b979cc4fd0291e0c/demo_curvelinear_grid.py b/_downloads/a526c52334279da4b979cc4fd0291e0c/demo_curvelinear_grid.py deleted file mode 120000 index 50ab7ee921e..00000000000 --- a/_downloads/a526c52334279da4b979cc4fd0291e0c/demo_curvelinear_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a526c52334279da4b979cc4fd0291e0c/demo_curvelinear_grid.py \ No newline at end of file diff --git a/_downloads/a52c74c9e887aab174195704d3bd9a62/path_patch.ipynb b/_downloads/a52c74c9e887aab174195704d3bd9a62/path_patch.ipynb deleted file mode 120000 index b82d10dd306..00000000000 --- a/_downloads/a52c74c9e887aab174195704d3bd9a62/path_patch.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a52c74c9e887aab174195704d3bd9a62/path_patch.ipynb \ No newline at end of file diff --git a/_downloads/a52d4e733a8d30eb8fc7fa5eb796e9bb/tight_bbox_test.ipynb b/_downloads/a52d4e733a8d30eb8fc7fa5eb796e9bb/tight_bbox_test.ipynb deleted file mode 120000 index ba89e9702db..00000000000 --- a/_downloads/a52d4e733a8d30eb8fc7fa5eb796e9bb/tight_bbox_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/a52d4e733a8d30eb8fc7fa5eb796e9bb/tight_bbox_test.ipynb \ No newline at end of file diff --git a/_downloads/a52f7867c611696172eac535adcb9c6d/fill.py b/_downloads/a52f7867c611696172eac535adcb9c6d/fill.py deleted file mode 120000 index 790d74f66b3..00000000000 --- a/_downloads/a52f7867c611696172eac535adcb9c6d/fill.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a52f7867c611696172eac535adcb9c6d/fill.py \ No newline at end of file diff --git a/_downloads/a539f519a1850cb8abfecc3567ce7803/surface3d.py b/_downloads/a539f519a1850cb8abfecc3567ce7803/surface3d.py deleted file mode 120000 index 97c7dce8873..00000000000 --- a/_downloads/a539f519a1850cb8abfecc3567ce7803/surface3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a539f519a1850cb8abfecc3567ce7803/surface3d.py \ No newline at end of file diff --git a/_downloads/a547e615f136669ba60e65714435e6d8/share_axis_lims_views.py b/_downloads/a547e615f136669ba60e65714435e6d8/share_axis_lims_views.py deleted file mode 100644 index 6b266f8a6ae..00000000000 --- a/_downloads/a547e615f136669ba60e65714435e6d8/share_axis_lims_views.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -Sharing axis limits and views -============================= - -It's common to make two or more plots which share an axis, e.g., two -subplots with time as a common axis. When you pan and zoom around on -one, you want the other to move around with you. To facilitate this, -matplotlib Axes support a ``sharex`` and ``sharey`` attribute. When -you create a :func:`~matplotlib.pyplot.subplot` or -:func:`~matplotlib.pyplot.axes` instance, you can pass in a keyword -indicating what axes you want to share with -""" - -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0, 10, 0.01) - -ax1 = plt.subplot(211) -ax1.plot(t, np.sin(2*np.pi*t)) - -ax2 = plt.subplot(212, sharex=ax1) -ax2.plot(t, np.sin(4*np.pi*t)) - -plt.show() diff --git a/_downloads/a55e934aae74c16220f59bdbdefd84f9/fig_axes_labels_simple.py b/_downloads/a55e934aae74c16220f59bdbdefd84f9/fig_axes_labels_simple.py deleted file mode 120000 index f7c9e2e114e..00000000000 --- a/_downloads/a55e934aae74c16220f59bdbdefd84f9/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a55e934aae74c16220f59bdbdefd84f9/fig_axes_labels_simple.py \ No newline at end of file diff --git a/_downloads/a5656511560a214e4398f78a8caa00ce/coords_report.py b/_downloads/a5656511560a214e4398f78a8caa00ce/coords_report.py deleted file mode 120000 index eb9e3e81c45..00000000000 --- a/_downloads/a5656511560a214e4398f78a8caa00ce/coords_report.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a5656511560a214e4398f78a8caa00ce/coords_report.py \ No newline at end of file diff --git a/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip b/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip deleted file mode 120000 index a335aa120e7..00000000000 --- a/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/a56787ab456ecb415a9e2c5110dff293/demo_floating_axis.py b/_downloads/a56787ab456ecb415a9e2c5110dff293/demo_floating_axis.py deleted file mode 120000 index 18cb91c80ca..00000000000 --- a/_downloads/a56787ab456ecb415a9e2c5110dff293/demo_floating_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a56787ab456ecb415a9e2c5110dff293/demo_floating_axis.py \ No newline at end of file diff --git a/_downloads/a567ad6aa779cedfeb5c790653ddb77c/tick_labels_from_values.ipynb b/_downloads/a567ad6aa779cedfeb5c790653ddb77c/tick_labels_from_values.ipynb deleted file mode 100644 index 39bab8c8f95..00000000000 --- a/_downloads/a567ad6aa779cedfeb5c790653ddb77c/tick_labels_from_values.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Setting tick labels from a list of values\n\n\nUsing ax.set_xticks causes the tick labels to be set on the currently\nchosen ticks. However, you may want to allow matplotlib to dynamically\nchoose the number of ticks and their spacing.\n\nIn this case it may be better to determine the tick label from the\nvalue at the tick. The following example shows how to do this.\n\nNB: The MaxNLocator is used here to ensure that the tick values\ntake integer values.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.ticker import FuncFormatter, MaxNLocator\nfig, ax = plt.subplots()\nxs = range(26)\nys = range(26)\nlabels = list('abcdefghijklmnopqrstuvwxyz')\n\n\ndef format_fn(tick_val, tick_pos):\n if int(tick_val) in xs:\n return labels[int(tick_val)]\n else:\n return ''\n\n\nax.xaxis.set_major_formatter(FuncFormatter(format_fn))\nax.xaxis.set_major_locator(MaxNLocator(integer=True))\nax.plot(xs, ys)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a58f76c3f4138f8d102428c14b49d926/findobj_demo.ipynb b/_downloads/a58f76c3f4138f8d102428c14b49d926/findobj_demo.ipynb deleted file mode 100644 index 3ed5200ec25..00000000000 --- a/_downloads/a58f76c3f4138f8d102428c14b49d926/findobj_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Findobj Demo\n\n\nRecursively find all objects that match some criteria\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.text as text\n\na = np.arange(0, 3, .02)\nb = np.arange(0, 3, .02)\nc = np.exp(a)\nd = c[::-1]\n\nfig, ax = plt.subplots()\nplt.plot(a, c, 'k--', a, d, 'k:', a, c + d, 'k')\nplt.legend(('Model length', 'Data length', 'Total message length'),\n loc='upper center', shadow=True)\nplt.ylim([-1, 20])\nplt.grid(False)\nplt.xlabel('Model complexity --->')\nplt.ylabel('Message length --->')\nplt.title('Minimum Message Length')\n\n\n# match on arbitrary function\ndef myfunc(x):\n return hasattr(x, 'set_color') and not hasattr(x, 'set_facecolor')\n\n\nfor o in fig.findobj(myfunc):\n o.set_color('blue')\n\n# match on class instances\nfor o in fig.findobj(text.Text):\n o.set_fontstyle('italic')\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a5a3d7a4a08ccb9c55b82cd4cddb1468/quadmesh_demo.py b/_downloads/a5a3d7a4a08ccb9c55b82cd4cddb1468/quadmesh_demo.py deleted file mode 100644 index 5488ddd8363..00000000000 --- a/_downloads/a5a3d7a4a08ccb9c55b82cd4cddb1468/quadmesh_demo.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -============= -QuadMesh Demo -============= - -`~.axes.Axes.pcolormesh` uses a `~matplotlib.collections.QuadMesh`, -a faster generalization of `~.axes.Axes.pcolor`, but with some restrictions. - -This demo illustrates a bug in quadmesh with masked data. -""" - -import copy - -from matplotlib import cm, pyplot as plt -import numpy as np - -n = 12 -x = np.linspace(-1.5, 1.5, n) -y = np.linspace(-1.5, 1.5, n * 2) -X, Y = np.meshgrid(x, y) -Qx = np.cos(Y) - np.cos(X) -Qz = np.sin(Y) + np.sin(X) -Z = np.sqrt(X**2 + Y**2) / 5 -Z = (Z - Z.min()) / (Z.max() - Z.min()) - -# The color array can include masked values. -Zm = np.ma.masked_where(np.abs(Qz) < 0.5 * np.max(Qz), Z) - -fig, axs = plt.subplots(nrows=1, ncols=3) -axs[0].pcolormesh(Qx, Qz, Z, shading='gouraud') -axs[0].set_title('Without masked values') - -# You can control the color of the masked region. We copy the default colormap -# before modifying it. -cmap = copy.copy(cm.get_cmap(plt.rcParams['image.cmap'])) -cmap.set_bad('y', 1.0) -axs[1].pcolormesh(Qx, Qz, Zm, shading='gouraud', cmap=cmap) -axs[1].set_title('With masked values') - -# Or use the default, which is transparent. -axs[2].pcolormesh(Qx, Qz, Zm, shading='gouraud') -axs[2].set_title('With masked values') - -fig.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.pcolormesh -matplotlib.pyplot.pcolormesh diff --git a/_downloads/a5aa83b600a31de629d3861fbb3a4c68/customize_rc.ipynb b/_downloads/a5aa83b600a31de629d3861fbb3a4c68/customize_rc.ipynb deleted file mode 120000 index 129ede963cc..00000000000 --- a/_downloads/a5aa83b600a31de629d3861fbb3a4c68/customize_rc.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a5aa83b600a31de629d3861fbb3a4c68/customize_rc.ipynb \ No newline at end of file diff --git a/_downloads/a5ae50576c7f07701df768667558c9c3/cursor.ipynb b/_downloads/a5ae50576c7f07701df768667558c9c3/cursor.ipynb deleted file mode 120000 index 2c3427fe728..00000000000 --- a/_downloads/a5ae50576c7f07701df768667558c9c3/cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a5ae50576c7f07701df768667558c9c3/cursor.ipynb \ No newline at end of file diff --git a/_downloads/a5b07b02cbcb6a67ca2c623a32262d00/simple_axes_divider3.ipynb b/_downloads/a5b07b02cbcb6a67ca2c623a32262d00/simple_axes_divider3.ipynb deleted file mode 120000 index 7d10e21c80c..00000000000 --- a/_downloads/a5b07b02cbcb6a67ca2c623a32262d00/simple_axes_divider3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a5b07b02cbcb6a67ca2c623a32262d00/simple_axes_divider3.ipynb \ No newline at end of file diff --git a/_downloads/a5b1b27b253a398d3be98e610212b873/sankey_rankine.py b/_downloads/a5b1b27b253a398d3be98e610212b873/sankey_rankine.py deleted file mode 120000 index 5edea82971c..00000000000 --- a/_downloads/a5b1b27b253a398d3be98e610212b873/sankey_rankine.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a5b1b27b253a398d3be98e610212b873/sankey_rankine.py \ No newline at end of file diff --git a/_downloads/a5b6cfad5a914962a881f60a919c0ca7/rainbow_text.py b/_downloads/a5b6cfad5a914962a881f60a919c0ca7/rainbow_text.py deleted file mode 120000 index d10b3529184..00000000000 --- a/_downloads/a5b6cfad5a914962a881f60a919c0ca7/rainbow_text.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a5b6cfad5a914962a881f60a919c0ca7/rainbow_text.py \ No newline at end of file diff --git a/_downloads/a5bedcff7d80d53a6e0f982aef12a2e7/pythonic_matplotlib.ipynb b/_downloads/a5bedcff7d80d53a6e0f982aef12a2e7/pythonic_matplotlib.ipynb deleted file mode 120000 index ffdfb1e0cc9..00000000000 --- a/_downloads/a5bedcff7d80d53a6e0f982aef12a2e7/pythonic_matplotlib.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a5bedcff7d80d53a6e0f982aef12a2e7/pythonic_matplotlib.ipynb \ No newline at end of file diff --git a/_downloads/a5ce0ca75945f3a98a5072f477d9bd19/arctest.ipynb b/_downloads/a5ce0ca75945f3a98a5072f477d9bd19/arctest.ipynb deleted file mode 120000 index df6043eb80a..00000000000 --- a/_downloads/a5ce0ca75945f3a98a5072f477d9bd19/arctest.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/a5ce0ca75945f3a98a5072f477d9bd19/arctest.ipynb \ No newline at end of file diff --git a/_downloads/a5d09473b82821f8a7203a3d071d953a/pyplot.ipynb b/_downloads/a5d09473b82821f8a7203a3d071d953a/pyplot.ipynb deleted file mode 100644 index 48956d3d0fb..00000000000 --- a/_downloads/a5d09473b82821f8a7203a3d071d953a/pyplot.ipynb +++ /dev/null @@ -1,230 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot tutorial\n\n\nAn introduction to the pyplot interface.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Intro to pyplot\n===============\n\n:mod:`matplotlib.pyplot` is a collection of command style functions\nthat make matplotlib work like MATLAB.\nEach ``pyplot`` function makes\nsome change to a figure: e.g., creates a figure, creates a plotting area\nin a figure, plots some lines in a plotting area, decorates the plot\nwith labels, etc.\n\nIn :mod:`matplotlib.pyplot` various states are preserved\nacross function calls, so that it keeps track of things like\nthe current figure and plotting area, and the plotting\nfunctions are directed to the current axes (please note that \"axes\" here\nand in most places in the documentation refers to the *axes*\n`part of a figure `\nand not the strict mathematical term for more than one axis).\n\n

Note

the pyplot API is generally less-flexible than the object-oriented API.\n Most of the function calls you see here can also be called as methods\n from an ``Axes`` object. We recommend browsing the tutorials and\n examples to see how this works.

\n\nGenerating visualizations with pyplot is very quick:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.plot([1, 2, 3, 4])\nplt.ylabel('some numbers')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You may be wondering why the x-axis ranges from 0-3 and the y-axis\nfrom 1-4. If you provide a single list or array to the\n:func:`~matplotlib.pyplot.plot` command, matplotlib assumes it is a\nsequence of y values, and automatically generates the x values for\nyou. Since python ranges start with 0, the default x vector has the\nsame length as y but starts with 0. Hence the x data are\n``[0,1,2,3]``.\n\n:func:`~matplotlib.pyplot.plot` is a versatile command, and will take\nan arbitrary number of arguments. For example, to plot x versus y,\nyou can issue the command:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.plot([1, 2, 3, 4], [1, 4, 9, 16])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Formatting the style of your plot\n---------------------------------\n\nFor every x, y pair of arguments, there is an optional third argument\nwhich is the format string that indicates the color and line type of\nthe plot. The letters and symbols of the format string are from\nMATLAB, and you concatenate a color string with a line style string.\nThe default format string is 'b-', which is a solid blue line. For\nexample, to plot the above with red circles, you would issue\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro')\nplt.axis([0, 6, 0, 20])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "See the :func:`~matplotlib.pyplot.plot` documentation for a complete\nlist of line styles and format strings. The\n:func:`~matplotlib.pyplot.axis` command in the example above takes a\nlist of ``[xmin, xmax, ymin, ymax]`` and specifies the viewport of the\naxes.\n\nIf matplotlib were limited to working with lists, it would be fairly\nuseless for numeric processing. Generally, you will use `numpy\n`_ arrays. In fact, all sequences are\nconverted to numpy arrays internally. The example below illustrates a\nplotting several lines with different format styles in one command\nusing arrays.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\n# evenly sampled time at 200ms intervals\nt = np.arange(0., 5., 0.2)\n\n# red dashes, blue squares and green triangles\nplt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nPlotting with keyword strings\n=============================\n\nThere are some instances where you have data in a format that lets you\naccess particular variables with strings. For example, with\n:class:`numpy.recarray` or :class:`pandas.DataFrame`.\n\nMatplotlib allows you provide such an object with\nthe ``data`` keyword argument. If provided, then you may generate plots with\nthe strings corresponding to these variables.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "data = {'a': np.arange(50),\n 'c': np.random.randint(0, 50, 50),\n 'd': np.random.randn(50)}\ndata['b'] = data['a'] + 10 * np.random.randn(50)\ndata['d'] = np.abs(data['d']) * 100\n\nplt.scatter('a', 'b', c='c', s='d', data=data)\nplt.xlabel('entry a')\nplt.ylabel('entry b')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nPlotting with categorical variables\n===================================\n\nIt is also possible to create a plot using categorical variables.\nMatplotlib allows you to pass categorical variables directly to\nmany plotting functions. For example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "names = ['group_a', 'group_b', 'group_c']\nvalues = [1, 10, 100]\n\nplt.figure(figsize=(9, 3))\n\nplt.subplot(131)\nplt.bar(names, values)\nplt.subplot(132)\nplt.scatter(names, values)\nplt.subplot(133)\nplt.plot(names, values)\nplt.suptitle('Categorical Plotting')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nControlling line properties\n===========================\n\nLines have many attributes that you can set: linewidth, dash style,\nantialiased, etc; see :class:`matplotlib.lines.Line2D`. There are\nseveral ways to set line properties\n\n* Use keyword args::\n\n plt.plot(x, y, linewidth=2.0)\n\n\n* Use the setter methods of a ``Line2D`` instance. ``plot`` returns a list\n of ``Line2D`` objects; e.g., ``line1, line2 = plot(x1, y1, x2, y2)``. In the code\n below we will suppose that we have only\n one line so that the list returned is of length 1. We use tuple unpacking with\n ``line,`` to get the first element of that list::\n\n line, = plt.plot(x, y, '-')\n line.set_antialiased(False) # turn off antialiasing\n\n* Use the :func:`~matplotlib.pyplot.setp` command. The example below\n uses a MATLAB-style command to set multiple properties\n on a list of lines. ``setp`` works transparently with a list of objects\n or a single object. You can either use python keyword arguments or\n MATLAB-style string/value pairs::\n\n lines = plt.plot(x1, y1, x2, y2)\n # use keyword args\n plt.setp(lines, color='r', linewidth=2.0)\n # or MATLAB style string value pairs\n plt.setp(lines, 'color', 'r', 'linewidth', 2.0)\n\n\nHere are the available :class:`~matplotlib.lines.Line2D` properties.\n\n====================== ==================================================\nProperty Value Type\n====================== ==================================================\nalpha float\nanimated [True | False]\nantialiased or aa [True | False]\nclip_box a matplotlib.transform.Bbox instance\nclip_on [True | False]\nclip_path a Path instance and a Transform instance, a Patch\ncolor or c any matplotlib color\ncontains the hit testing function\ndash_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``]\ndash_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``]\ndashes sequence of on/off ink in points\ndata (np.array xdata, np.array ydata)\nfigure a matplotlib.figure.Figure instance\nlabel any string\nlinestyle or ls [ ``'-'`` | ``'--'`` | ``'-.'`` | ``':'`` | ``'steps'`` | ...]\nlinewidth or lw float value in points\nmarker [ ``'+'`` | ``','`` | ``'.'`` | ``'1'`` | ``'2'`` | ``'3'`` | ``'4'`` ]\nmarkeredgecolor or mec any matplotlib color\nmarkeredgewidth or mew float value in points\nmarkerfacecolor or mfc any matplotlib color\nmarkersize or ms float\nmarkevery [ None | integer | (startind, stride) ]\npicker used in interactive line selection\npickradius the line pick selection radius\nsolid_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``]\nsolid_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``]\ntransform a matplotlib.transforms.Transform instance\nvisible [True | False]\nxdata np.array\nydata np.array\nzorder any number\n====================== ==================================================\n\nTo get a list of settable line properties, call the\n:func:`~matplotlib.pyplot.setp` function with a line or lines\nas argument\n\n.. sourcecode:: ipython\n\n In [69]: lines = plt.plot([1, 2, 3])\n\n In [70]: plt.setp(lines)\n alpha: float\n animated: [True | False]\n antialiased or aa: [True | False]\n ...snip\n\n\n\nWorking with multiple figures and axes\n======================================\n\nMATLAB, and :mod:`~matplotlib.pyplot`, have the concept of the current\nfigure and the current axes. All plotting commands apply to the\ncurrent axes. The function :func:`~matplotlib.pyplot.gca` returns the\ncurrent axes (a :class:`matplotlib.axes.Axes` instance), and\n:func:`~matplotlib.pyplot.gcf` returns the current figure\n(:class:`matplotlib.figure.Figure` instance). Normally, you don't have\nto worry about this, because it is all taken care of behind the\nscenes. Below is a script to create two subplots.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def f(t):\n return np.exp(-t) * np.cos(2*np.pi*t)\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\n\nplt.figure()\nplt.subplot(211)\nplt.plot(t1, f(t1), 'bo', t2, f(t2), 'k')\n\nplt.subplot(212)\nplt.plot(t2, np.cos(2*np.pi*t2), 'r--')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The :func:`~matplotlib.pyplot.figure` command here is optional because\n``figure(1)`` will be created by default, just as a ``subplot(111)``\nwill be created by default if you don't manually specify any axes. The\n:func:`~matplotlib.pyplot.subplot` command specifies ``numrows,\nnumcols, plot_number`` where ``plot_number`` ranges from 1 to\n``numrows*numcols``. The commas in the ``subplot`` command are\noptional if ``numrows*numcols<10``. So ``subplot(211)`` is identical\nto ``subplot(2, 1, 1)``.\n\nYou can create an arbitrary number of subplots\nand axes. If you want to place an axes manually, i.e., not on a\nrectangular grid, use the :func:`~matplotlib.pyplot.axes` command,\nwhich allows you to specify the location as ``axes([left, bottom,\nwidth, height])`` where all values are in fractional (0 to 1)\ncoordinates. See :doc:`/gallery/subplots_axes_and_figures/axes_demo` for an example of\nplacing axes manually and :doc:`/gallery/subplots_axes_and_figures/subplot_demo` for an\nexample with lots of subplots.\n\n\nYou can create multiple figures by using multiple\n:func:`~matplotlib.pyplot.figure` calls with an increasing figure\nnumber. Of course, each figure can contain as many axes and subplots\nas your heart desires::\n\n import matplotlib.pyplot as plt\n plt.figure(1) # the first figure\n plt.subplot(211) # the first subplot in the first figure\n plt.plot([1, 2, 3])\n plt.subplot(212) # the second subplot in the first figure\n plt.plot([4, 5, 6])\n\n\n plt.figure(2) # a second figure\n plt.plot([4, 5, 6]) # creates a subplot(111) by default\n\n plt.figure(1) # figure 1 current; subplot(212) still current\n plt.subplot(211) # make subplot(211) in figure1 current\n plt.title('Easy as 1, 2, 3') # subplot 211 title\n\nYou can clear the current figure with :func:`~matplotlib.pyplot.clf`\nand the current axes with :func:`~matplotlib.pyplot.cla`. If you find\nit annoying that states (specifically the current image, figure and axes)\nare being maintained for you behind the scenes, don't despair: this is just a thin\nstateful wrapper around an object oriented API, which you can use\ninstead (see :doc:`/tutorials/intermediate/artists`)\n\nIf you are making lots of figures, you need to be aware of one\nmore thing: the memory required for a figure is not completely\nreleased until the figure is explicitly closed with\n:func:`~matplotlib.pyplot.close`. Deleting all references to the\nfigure, and/or using the window manager to kill the window in which\nthe figure appears on the screen, is not enough, because pyplot\nmaintains internal references until :func:`~matplotlib.pyplot.close`\nis called.\n\n\nWorking with text\n=================\n\nThe :func:`~matplotlib.pyplot.text` command can be used to add text in\nan arbitrary location, and the :func:`~matplotlib.pyplot.xlabel`,\n:func:`~matplotlib.pyplot.ylabel` and :func:`~matplotlib.pyplot.title`\nare used to add text in the indicated locations (see :doc:`/tutorials/text/text_intro`\nfor a more detailed example)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mu, sigma = 100, 15\nx = mu + sigma * np.random.randn(10000)\n\n# the histogram of the data\nn, bins, patches = plt.hist(x, 50, density=1, facecolor='g', alpha=0.75)\n\n\nplt.xlabel('Smarts')\nplt.ylabel('Probability')\nplt.title('Histogram of IQ')\nplt.text(60, .025, r'$\\mu=100,\\ \\sigma=15$')\nplt.axis([40, 160, 0, 0.03])\nplt.grid(True)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "All of the :func:`~matplotlib.pyplot.text` commands return an\n:class:`matplotlib.text.Text` instance. Just as with with lines\nabove, you can customize the properties by passing keyword arguments\ninto the text functions or using :func:`~matplotlib.pyplot.setp`::\n\n t = plt.xlabel('my data', fontsize=14, color='red')\n\nThese properties are covered in more detail in :doc:`/tutorials/text/text_props`.\n\n\nUsing mathematical expressions in text\n--------------------------------------\n\nmatplotlib accepts TeX equation expressions in any text expression.\nFor example to write the expression $\\sigma_i=15$ in the title,\nyou can write a TeX expression surrounded by dollar signs::\n\n plt.title(r'$\\sigma_i=15$')\n\nThe ``r`` preceding the title string is important -- it signifies\nthat the string is a *raw* string and not to treat backslashes as\npython escapes. matplotlib has a built-in TeX expression parser and\nlayout engine, and ships its own math fonts -- for details see\n:doc:`/tutorials/text/mathtext`. Thus you can use mathematical text across platforms\nwithout requiring a TeX installation. For those who have LaTeX and\ndvipng installed, you can also use LaTeX to format your text and\nincorporate the output directly into your display figures or saved\npostscript -- see :doc:`/tutorials/text/usetex`.\n\n\nAnnotating text\n---------------\n\nThe uses of the basic :func:`~matplotlib.pyplot.text` command above\nplace text at an arbitrary position on the Axes. A common use for\ntext is to annotate some feature of the plot, and the\n:func:`~matplotlib.pyplot.annotate` method provides helper\nfunctionality to make annotations easy. In an annotation, there are\ntwo points to consider: the location being annotated represented by\nthe argument ``xy`` and the location of the text ``xytext``. Both of\nthese arguments are ``(x,y)`` tuples.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "ax = plt.subplot(111)\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\nline, = plt.plot(t, s, lw=2)\n\nplt.annotate('local max', xy=(2, 1), xytext=(3, 1.5),\n arrowprops=dict(facecolor='black', shrink=0.05),\n )\n\nplt.ylim(-2, 2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In this basic example, both the ``xy`` (arrow tip) and ``xytext``\nlocations (text location) are in data coordinates. There are a\nvariety of other coordinate systems one can choose -- see\n`annotations-tutorial` and `plotting-guide-annotation` for\ndetails. More examples can be found in\n:doc:`/gallery/text_labels_and_annotations/annotation_demo`.\n\n\nLogarithmic and other nonlinear axes\n====================================\n\n:mod:`matplotlib.pyplot` supports not only linear axis scales, but also\nlogarithmic and logit scales. This is commonly used if data spans many orders\nof magnitude. Changing the scale of an axis is easy:\n\n plt.xscale('log')\n\nAn example of four plots with the same data and different scales for the y axis\nis shown below.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.ticker import NullFormatter # useful for `logit` scale\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# make up some data in the interval ]0, 1[\ny = np.random.normal(loc=0.5, scale=0.4, size=1000)\ny = y[(y > 0) & (y < 1)]\ny.sort()\nx = np.arange(len(y))\n\n# plot with various axes scales\nplt.figure()\n\n# linear\nplt.subplot(221)\nplt.plot(x, y)\nplt.yscale('linear')\nplt.title('linear')\nplt.grid(True)\n\n\n# log\nplt.subplot(222)\nplt.plot(x, y)\nplt.yscale('log')\nplt.title('log')\nplt.grid(True)\n\n\n# symmetric log\nplt.subplot(223)\nplt.plot(x, y - y.mean())\nplt.yscale('symlog', linthreshy=0.01)\nplt.title('symlog')\nplt.grid(True)\n\n# logit\nplt.subplot(224)\nplt.plot(x, y)\nplt.yscale('logit')\nplt.title('logit')\nplt.grid(True)\n# Format the minor tick labels of the y-axis into empty strings with\n# `NullFormatter`, to avoid cumbering the axis with too many labels.\nplt.gca().yaxis.set_minor_formatter(NullFormatter())\n# Adjust the subplot layout, because the logit one may take more space\n# than usual, due to y-tick labels like \"1 - 10^{-3}\"\nplt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25,\n wspace=0.35)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It is also possible to add your own scale, see `adding-new-scales` for\ndetails.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a5dad601b739cd09bfff2ed7ade50d0f/colorbar_basics.py b/_downloads/a5dad601b739cd09bfff2ed7ade50d0f/colorbar_basics.py deleted file mode 120000 index dce49e1b752..00000000000 --- a/_downloads/a5dad601b739cd09bfff2ed7ade50d0f/colorbar_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a5dad601b739cd09bfff2ed7ade50d0f/colorbar_basics.py \ No newline at end of file diff --git a/_downloads/a5ee738b5631d6fd6ed617dcef72531f/svg_tooltip_sgskip.py b/_downloads/a5ee738b5631d6fd6ed617dcef72531f/svg_tooltip_sgskip.py deleted file mode 120000 index d1264402e8f..00000000000 --- a/_downloads/a5ee738b5631d6fd6ed617dcef72531f/svg_tooltip_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a5ee738b5631d6fd6ed617dcef72531f/svg_tooltip_sgskip.py \ No newline at end of file diff --git a/_downloads/a5f26de6c945d6535e13480030a1d0de/axis_direction_demo_step01.ipynb b/_downloads/a5f26de6c945d6535e13480030a1d0de/axis_direction_demo_step01.ipynb deleted file mode 120000 index 55dd63b1ba9..00000000000 --- a/_downloads/a5f26de6c945d6535e13480030a1d0de/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a5f26de6c945d6535e13480030a1d0de/axis_direction_demo_step01.ipynb \ No newline at end of file diff --git a/_downloads/a5f381e972d9237c84cc0119e7c8ad29/ellipse_demo.ipynb b/_downloads/a5f381e972d9237c84cc0119e7c8ad29/ellipse_demo.ipynb deleted file mode 120000 index c82a945a842..00000000000 --- a/_downloads/a5f381e972d9237c84cc0119e7c8ad29/ellipse_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a5f381e972d9237c84cc0119e7c8ad29/ellipse_demo.ipynb \ No newline at end of file diff --git a/_downloads/a5f4026de0f13bca474e14a731d3e0f3/transforms_tutorial.py b/_downloads/a5f4026de0f13bca474e14a731d3e0f3/transforms_tutorial.py deleted file mode 120000 index 959cc5d9372..00000000000 --- a/_downloads/a5f4026de0f13bca474e14a731d3e0f3/transforms_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a5f4026de0f13bca474e14a731d3e0f3/transforms_tutorial.py \ No newline at end of file diff --git a/_downloads/a5f4cd6e62523f109bb7dc4fe13f9373/contour_demo.ipynb b/_downloads/a5f4cd6e62523f109bb7dc4fe13f9373/contour_demo.ipynb deleted file mode 120000 index d5fedc01502..00000000000 --- a/_downloads/a5f4cd6e62523f109bb7dc4fe13f9373/contour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a5f4cd6e62523f109bb7dc4fe13f9373/contour_demo.ipynb \ No newline at end of file diff --git a/_downloads/a5fa79b93a1a7fd4a24ef75b865706d6/pyplot_text.py b/_downloads/a5fa79b93a1a7fd4a24ef75b865706d6/pyplot_text.py deleted file mode 100644 index b5952ba0070..00000000000 --- a/_downloads/a5fa79b93a1a7fd4a24ef75b865706d6/pyplot_text.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=========== -Pyplot Text -=========== - -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -mu, sigma = 100, 15 -x = mu + sigma * np.random.randn(10000) - -# the histogram of the data -n, bins, patches = plt.hist(x, 50, density=True, facecolor='g', alpha=0.75) - - -plt.xlabel('Smarts') -plt.ylabel('Probability') -plt.title('Histogram of IQ') -plt.text(60, .025, r'$\mu=100,\ \sigma=15$') -plt.xlim(40, 160) -plt.ylim(0, 0.03) -plt.grid(True) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.hist -matplotlib.pyplot.xlabel -matplotlib.pyplot.ylabel -matplotlib.pyplot.text -matplotlib.pyplot.grid -matplotlib.pyplot.show diff --git a/_downloads/a602dcd9386adfbc6f617642ea1f2196/image_slices_viewer.ipynb b/_downloads/a602dcd9386adfbc6f617642ea1f2196/image_slices_viewer.ipynb deleted file mode 120000 index bebf8044dbe..00000000000 --- a/_downloads/a602dcd9386adfbc6f617642ea1f2196/image_slices_viewer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a602dcd9386adfbc6f617642ea1f2196/image_slices_viewer.ipynb \ No newline at end of file diff --git a/_downloads/a60356179d869b35542a3d173b45b6dc/colorbar_only.ipynb b/_downloads/a60356179d869b35542a3d173b45b6dc/colorbar_only.ipynb deleted file mode 120000 index 24d384a4cf1..00000000000 --- a/_downloads/a60356179d869b35542a3d173b45b6dc/colorbar_only.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a60356179d869b35542a3d173b45b6dc/colorbar_only.ipynb \ No newline at end of file diff --git a/_downloads/a60754145540b6f52bb0c4d7dc2cd3df/simple_axisline2.py b/_downloads/a60754145540b6f52bb0c4d7dc2cd3df/simple_axisline2.py deleted file mode 120000 index 9490f7f57bd..00000000000 --- a/_downloads/a60754145540b6f52bb0c4d7dc2cd3df/simple_axisline2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a60754145540b6f52bb0c4d7dc2cd3df/simple_axisline2.py \ No newline at end of file diff --git a/_downloads/a60fd01ed70531c8e03f55f32b6c55ff/subfigures.py b/_downloads/a60fd01ed70531c8e03f55f32b6c55ff/subfigures.py deleted file mode 120000 index 960b08063de..00000000000 --- a/_downloads/a60fd01ed70531c8e03f55f32b6c55ff/subfigures.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a60fd01ed70531c8e03f55f32b6c55ff/subfigures.py \ No newline at end of file diff --git a/_downloads/a61107d6501f47001794c7ee03f63ad0/demo_curvelinear_grid2.py b/_downloads/a61107d6501f47001794c7ee03f63ad0/demo_curvelinear_grid2.py deleted file mode 120000 index 425c0e86d9b..00000000000 --- a/_downloads/a61107d6501f47001794c7ee03f63ad0/demo_curvelinear_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a61107d6501f47001794c7ee03f63ad0/demo_curvelinear_grid2.py \ No newline at end of file diff --git a/_downloads/a61627dd457f58a63af35e3d77c1e08a/close_event.ipynb b/_downloads/a61627dd457f58a63af35e3d77c1e08a/close_event.ipynb deleted file mode 120000 index ab57ab35d44..00000000000 --- a/_downloads/a61627dd457f58a63af35e3d77c1e08a/close_event.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a61627dd457f58a63af35e3d77c1e08a/close_event.ipynb \ No newline at end of file diff --git a/_downloads/a624954ffe6e337a7b12f81502add508/scatter_hist_locatable_axes.py b/_downloads/a624954ffe6e337a7b12f81502add508/scatter_hist_locatable_axes.py deleted file mode 100644 index 5786a382e31..00000000000 --- a/_downloads/a624954ffe6e337a7b12f81502add508/scatter_hist_locatable_axes.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============ -Scatter Hist -============ - -""" -import numpy as np -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import make_axes_locatable - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# the random data -x = np.random.randn(1000) -y = np.random.randn(1000) - - -fig, axScatter = plt.subplots(figsize=(5.5, 5.5)) - -# the scatter plot: -axScatter.scatter(x, y) -axScatter.set_aspect(1.) - -# create new axes on the right and on the top of the current axes -# The first argument of the new_vertical(new_horizontal) method is -# the height (width) of the axes to be created in inches. -divider = make_axes_locatable(axScatter) -axHistx = divider.append_axes("top", 1.2, pad=0.1, sharex=axScatter) -axHisty = divider.append_axes("right", 1.2, pad=0.1, sharey=axScatter) - -# make some labels invisible -axHistx.xaxis.set_tick_params(labelbottom=False) -axHisty.yaxis.set_tick_params(labelleft=False) - -# now determine nice limits by hand: -binwidth = 0.25 -xymax = max(np.max(np.abs(x)), np.max(np.abs(y))) -lim = (int(xymax/binwidth) + 1)*binwidth - -bins = np.arange(-lim, lim + binwidth, binwidth) -axHistx.hist(x, bins=bins) -axHisty.hist(y, bins=bins, orientation='horizontal') - -# the xaxis of axHistx and yaxis of axHisty are shared with axScatter, -# thus there is no need to manually adjust the xlim and ylim of these -# axis. - -axHistx.set_yticks([0, 50, 100]) - -axHisty.set_xticks([0, 50, 100]) - -plt.show() diff --git a/_downloads/a649c8fe0bfee68723340f64713291ab/sankey_basics.ipynb b/_downloads/a649c8fe0bfee68723340f64713291ab/sankey_basics.ipynb deleted file mode 100644 index 979fbaf34eb..00000000000 --- a/_downloads/a649c8fe0bfee68723340f64713291ab/sankey_basics.ipynb +++ /dev/null @@ -1,158 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The Sankey class\n\n\nDemonstrate the Sankey class by producing three basic diagrams.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom matplotlib.sankey import Sankey" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 1 -- Mostly defaults\n\nThis demonstrates how to create a simple diagram by implicitly calling the\nSankey.add() method and by appending finish() to the call to the class.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Sankey(flows=[0.25, 0.15, 0.60, -0.20, -0.15, -0.05, -0.50, -0.10],\n labels=['', '', '', 'First', 'Second', 'Third', 'Fourth', 'Fifth'],\n orientations=[-1, 1, 0, 1, 1, 1, 0, -1]).finish()\nplt.title(\"The default settings produce a diagram like this.\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice:\n\n1. Axes weren't provided when Sankey() was instantiated, so they were\n created automatically.\n2. The scale argument wasn't necessary since the data was already\n normalized.\n3. By default, the lengths of the paths are justified.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 2\n\nThis demonstrates:\n\n1. Setting one path longer than the others\n2. Placing a label in the middle of the diagram\n3. Using the scale argument to normalize the flows\n4. Implicitly passing keyword arguments to PathPatch()\n5. Changing the angle of the arrow heads\n6. Changing the offset between the tips of the paths and their labels\n7. Formatting the numbers in the path labels and the associated unit\n8. Changing the appearance of the patch and the labels after the figure is\n created\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[],\n title=\"Flow Diagram of a Widget\")\nsankey = Sankey(ax=ax, scale=0.01, offset=0.2, head_angle=180,\n format='%.0f', unit='%')\nsankey.add(flows=[25, 0, 60, -10, -20, -5, -15, -10, -40],\n labels=['', '', '', 'First', 'Second', 'Third', 'Fourth',\n 'Fifth', 'Hurray!'],\n orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0],\n pathlengths=[0.25, 0.25, 0.25, 0.25, 0.25, 0.6, 0.25, 0.25,\n 0.25],\n patchlabel=\"Widget\\nA\") # Arguments to matplotlib.patches.PathPatch()\ndiagrams = sankey.finish()\ndiagrams[0].texts[-1].set_color('r')\ndiagrams[0].text.set_fontweight('bold')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice:\n\n1. Since the sum of the flows is nonzero, the width of the trunk isn't\n uniform. The matplotlib logging system logs this at the DEBUG level.\n2. The second flow doesn't appear because its value is zero. Again, this is\n logged at the DEBUG level.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 3\n\nThis demonstrates:\n\n1. Connecting two systems\n2. Turning off the labels of the quantities\n3. Adding a legend\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], title=\"Two Systems\")\nflows = [0.25, 0.15, 0.60, -0.10, -0.05, -0.25, -0.15, -0.10, -0.35]\nsankey = Sankey(ax=ax, unit=None)\nsankey.add(flows=flows, label='one',\n orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0])\nsankey.add(flows=[-0.25, 0.15, 0.1], label='two',\n orientations=[-1, -1, -1], prior=0, connect=(0, 0))\ndiagrams = sankey.finish()\ndiagrams[-1].patch.set_hatch('/')\nplt.legend()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice that only one connection is specified, but the systems form a\ncircuit since: (1) the lengths of the paths are justified and (2) the\norientation and ordering of the flows is mirrored.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.sankey\nmatplotlib.sankey.Sankey\nmatplotlib.sankey.Sankey.add\nmatplotlib.sankey.Sankey.finish" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a65146db3d3d41a947466060ccd12bc1/2dcollections3d.py b/_downloads/a65146db3d3d41a947466060ccd12bc1/2dcollections3d.py deleted file mode 120000 index d9232b0a8ec..00000000000 --- a/_downloads/a65146db3d3d41a947466060ccd12bc1/2dcollections3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a65146db3d3d41a947466060ccd12bc1/2dcollections3d.py \ No newline at end of file diff --git a/_downloads/a652071adf79bbd1de5a86eb1e3be78c/spy_demos.ipynb b/_downloads/a652071adf79bbd1de5a86eb1e3be78c/spy_demos.ipynb deleted file mode 120000 index 0503f7e170c..00000000000 --- a/_downloads/a652071adf79bbd1de5a86eb1e3be78c/spy_demos.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a652071adf79bbd1de5a86eb1e3be78c/spy_demos.ipynb \ No newline at end of file diff --git a/_downloads/a65f953ec1ef53116b3b180c5b0cb44b/axes_grid.py b/_downloads/a65f953ec1ef53116b3b180c5b0cb44b/axes_grid.py deleted file mode 100644 index 03111a581c1..00000000000 --- a/_downloads/a65f953ec1ef53116b3b180c5b0cb44b/axes_grid.py +++ /dev/null @@ -1,508 +0,0 @@ -r""" -============================== -Overview of axes_grid1 toolkit -============================== - -Controlling the layout of plots with the axes_grid toolkit. - -.. _axes_grid1_users-guide-index: - -What is axes_grid1 toolkit? -=========================== - -*axes_grid1* is a collection of helper classes to ease displaying -(multiple) images with matplotlib. In matplotlib, the axes location -(and size) is specified in the normalized figure coordinates, which -may not be ideal for displaying images that needs to have a given -aspect ratio. For example, it helps if you have a colorbar whose -height always matches that of the image. `ImageGrid`_, `RGB Axes`_ and -`AxesDivider`_ are helper classes that deals with adjusting the -location of (multiple) Axes. They provides a framework to adjust the -position of multiple axes at the drawing time. `ParasiteAxes`_ -provides twinx(or twiny)-like features so that you can plot different -data (e.g., different y-scale) in a same Axes. `AnchoredArtists`_ -includes custom artists which are placed at some anchored position, -like the legend. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png - :target: ../../gallery/axes_grid1/demo_axes_grid.html - :align: center - :scale: 50 - - Demo Axes Grid - - -axes_grid1 -========== - -ImageGrid ---------- - - -A class that creates a grid of Axes. In matplotlib, the axes location -(and size) is specified in the normalized figure coordinates. This may -not be ideal for images that needs to be displayed with a given aspect -ratio. For example, displaying images of a same size with some fixed -padding between them cannot be easily done in matplotlib. ImageGrid is -used in such case. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid_001.png - :target: ../../gallery/axes_grid1/simple_axesgrid.html - :align: center - :scale: 50 - - Simple Axesgrid - -* The position of each axes is determined at the drawing time (see - `AxesDivider`_), so that the size of the entire grid fits in the - given rectangle (like the aspect of axes). Note that in this example, - the paddings between axes are fixed even if you changes the figure - size. - -* axes in the same column has a same axes width (in figure - coordinate), and similarly, axes in the same row has a same - height. The widths (height) of the axes in the same row (column) are - scaled according to their view limits (xlim or ylim). - - .. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid2_001.png - :target: ../../gallery/axes_grid1/simple_axesgrid2.html - :align: center - :scale: 50 - - Simple Axes Grid - -* xaxis are shared among axes in a same column. Similarly, yaxis are - shared among axes in a same row. Therefore, changing axis properties - (view limits, tick location, etc. either by plot commands or using - your mouse in interactive backends) of one axes will affect all - other shared axes. - - - -When initialized, ImageGrid creates given number (*ngrids* or *ncols* * -*nrows* if *ngrids* is None) of Axes instances. A sequence-like -interface is provided to access the individual Axes instances (e.g., -grid[0] is the first Axes in the grid. See below for the order of -axes). - - - -ImageGrid takes following arguments, - - - ============= ======== ================================================ - Name Default Description - ============= ======== ================================================ - fig - rect - nrows_ncols number of rows and cols. e.g., (2,2) - ngrids None number of grids. nrows x ncols if None - direction "row" increasing direction of axes number. [row|column] - axes_pad 0.02 pad between axes in inches - add_all True Add axes to figures if True - share_all False xaxis & yaxis of all axes are shared if True - aspect True aspect of axes - label_mode "L" location of tick labels thaw will be displayed. - "1" (only the lower left axes), - "L" (left most and bottom most axes), - or "all". - cbar_mode None [None|single|each] - cbar_location "right" [right|top] - cbar_pad None pad between image axes and colorbar axes - cbar_size "5%" size of the colorbar - axes_class None - ============= ======== ================================================ - - *rect* - specifies the location of the grid. You can either specify - coordinates of the rectangle to be used (e.g., (0.1, 0.1, 0.8, 0.8) - as in the Axes), or the subplot-like position (e.g., "121"). - - *direction* - means the increasing direction of the axes number. - - *aspect* - By default (False), widths and heights of axes in the grid are - scaled independently. If True, they are scaled according to their - data limits (similar to aspect parameter in mpl). - - *share_all* - if True, xaxis and yaxis of all axes are shared. - - *direction* - direction of increasing axes number. For "row", - - +---------+---------+ - | grid[0] | grid[1] | - +---------+---------+ - | grid[2] | grid[3] | - +---------+---------+ - - For "column", - - +---------+---------+ - | grid[0] | grid[2] | - +---------+---------+ - | grid[1] | grid[3] | - +---------+---------+ - -You can also create a colorbar (or colorbars). You can have colorbar -for each axes (cbar_mode="each"), or you can have a single colorbar -for the grid (cbar_mode="single"). The colorbar can be placed on your -right, or top. The axes for each colorbar is stored as a *cbar_axes* -attribute. - - - -The examples below show what you can do with ImageGrid. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png - :target: ../../gallery/axes_grid1/demo_axes_grid.html - :align: center - :scale: 50 - - Demo Axes Grid - - -AxesDivider Class ------------------ - -Behind the scene, the ImageGrid class and the RGBAxes class utilize the -AxesDivider class, whose role is to calculate the location of the axes -at drawing time. While a more about the AxesDivider is (will be) -explained in (yet to be written) AxesDividerGuide, direct use of the -AxesDivider class will not be necessary for most users. The -axes_divider module provides a helper function make_axes_locatable, -which can be useful. It takes a existing axes instance and create a -divider for it. :: - - ax = subplot(1,1,1) - divider = make_axes_locatable(ax) - - - - -*make_axes_locatable* returns an instance of the AxesLocator class, -derived from the Locator. It provides *append_axes* method that -creates a new axes on the given side of ("top", "right", "bottom" and -"left") of the original axes. - - - -colorbar whose height (or width) in sync with the master axes -------------------------------------------------------------- - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_colorbar_001.png - :target: ../../gallery/axes_grid1/simple_colorbar.html - :align: center - :scale: 50 - - Simple Colorbar - - - - -scatter_hist.py with AxesDivider -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The "scatter_hist.py" example in mpl can be rewritten using -*make_axes_locatable*. :: - - axScatter = subplot(111) - axScatter.scatter(x, y) - axScatter.set_aspect(1.) - - # create new axes on the right and on the top of the current axes. - divider = make_axes_locatable(axScatter) - axHistx = divider.append_axes("top", size=1.2, pad=0.1, sharex=axScatter) - axHisty = divider.append_axes("right", size=1.2, pad=0.1, sharey=axScatter) - - # the scatter plot: - # histograms - bins = np.arange(-lim, lim + binwidth, binwidth) - axHistx.hist(x, bins=bins) - axHisty.hist(y, bins=bins, orientation='horizontal') - - -See the full source code below. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_scatter_hist_locatable_axes_001.png - :target: ../../gallery/axes_grid1/scatter_hist_locatable_axes.html - :align: center - :scale: 50 - - Scatter Hist - - -The scatter_hist using the AxesDivider has some advantage over the -original scatter_hist.py in mpl. For example, you can set the aspect -ratio of the scatter plot, even with the x-axis or y-axis is shared -accordingly. - - -ParasiteAxes ------------- - -The ParasiteAxes is an axes whose location is identical to its host -axes. The location is adjusted in the drawing time, thus it works even -if the host change its location (e.g., images). - -In most cases, you first create a host axes, which provides a few -method that can be used to create parasite axes. They are *twinx*, -*twiny* (which are similar to twinx and twiny in the matplotlib) and -*twin*. *twin* takes an arbitrary transformation that maps between the -data coordinates of the host axes and the parasite axes. *draw* -method of the parasite axes are never called. Instead, host axes -collects artists in parasite axes and draw them as if they belong to -the host axes, i.e., artists in parasite axes are merged to those of -the host axes and then drawn according to their zorder. The host and -parasite axes modifies some of the axes behavior. For example, color -cycle for plot lines are shared between host and parasites. Also, the -legend command in host, creates a legend that includes lines in the -parasite axes. To create a host axes, you may use *host_subplot* or -*host_axes* command. - - -Example 1. twinx -~~~~~~~~~~~~~~~~ - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple_001.png - :target: ../../gallery/axes_grid1/parasite_simple.html - :align: center - :scale: 50 - - Parasite Simple - -Example 2. twin -~~~~~~~~~~~~~~~ - -*twin* without a transform argument assumes that the parasite axes has the -same data transform as the host. This can be useful when you want the -top(or right)-axis to have different tick-locations, tick-labels, or -tick-formatter for bottom(or left)-axis. :: - - ax2 = ax.twin() # now, ax2 is responsible for "top" axis and "right" axis - ax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi]) - ax2.set_xticklabels(["0", r"$\frac{1}{2}\pi$", - r"$\pi$", r"$\frac{3}{2}\pi$", r"$2\pi$"]) - - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axisline4_001.png - :target: ../../gallery/axes_grid1/simple_axisline4.html - :align: center - :scale: 50 - - Simple Axisline4 - - - -A more sophisticated example using twin. Note that if you change the -x-limit in the host axes, the x-limit of the parasite axes will change -accordingly. - - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple2_001.png - :target: ../../gallery/axes_grid1/parasite_simple2.html - :align: center - :scale: 50 - - Parasite Simple2 - - -AnchoredArtists ---------------- - -It's a collection of artists whose location is anchored to the (axes) -bbox, like the legend. It is derived from *OffsetBox* in mpl, and -artist need to be drawn in the canvas coordinate. But, there is a -limited support for an arbitrary transform. For example, the ellipse -in the example below will have width and height in the data -coordinate. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_anchored_artists_001.png - :target: ../../gallery/axes_grid1/simple_anchored_artists.html - :align: center - :scale: 50 - - Simple Anchored Artists - - -InsetLocator ------------- - -:mod:`mpl_toolkits.axes_grid1.inset_locator` provides helper classes -and functions to place your (inset) axes at the anchored position of -the parent axes, similarly to AnchoredArtist. - -Using :func:`mpl_toolkits.axes_grid1.inset_locator.inset_axes`, you -can have inset axes whose size is either fixed, or a fixed proportion -of the parent axes. For example,:: - - inset_axes = inset_axes(parent_axes, - width="30%", # width = 30% of parent_bbox - height=1., # height : 1 inch - loc='lower left') - -creates an inset axes whose width is 30% of the parent axes and whose -height is fixed at 1 inch. - -You may creates your inset whose size is determined so that the data -scale of the inset axes to be that of the parent axes multiplied by -some factor. For example, :: - - inset_axes = zoomed_inset_axes(ax, - 0.5, # zoom = 0.5 - loc='upper right') - -creates an inset axes whose data scale is half of the parent axes. -Here is complete examples. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo_001.png - :target: ../../gallery/axes_grid1/inset_locator_demo.html - :align: center - :scale: 50 - - Inset Locator Demo - -For example, :func:`zoomed_inset_axes` can be used when you want the -inset represents the zoom-up of the small portion in the parent axes. -And :mod:`~mpl_toolkits/axes_grid/inset_locator` provides a helper -function :func:`mark_inset` to mark the location of the area -represented by the inset axes. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo2_001.png - :target: ../../gallery/axes_grid1/inset_locator_demo2.html - :align: center - :scale: 50 - - Inset Locator Demo2 - - -RGB Axes -~~~~~~~~ - -RGBAxes is a helper class to conveniently show RGB composite -images. Like ImageGrid, the location of axes are adjusted so that the -area occupied by them fits in a given rectangle. Also, the xaxis and -yaxis of each axes are shared. :: - - from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes - - fig = plt.figure() - ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8]) - - r, g, b = get_rgb() # r,g,b are 2-d images - ax.imshow_rgb(r, g, b, - origin="lower", interpolation="nearest") - - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_rgb_001.png - :target: ../../gallery/axes_grid1/simple_rgb.html - :align: center - :scale: 50 - - Simple Rgb - - -AxesDivider -=========== - -The axes_divider module provides helper classes to adjust the axes -positions of a set of images at drawing time. - -* :mod:`~mpl_toolkits.axes_grid1.axes_size` provides a class of - units that are used to determine the size of each axes. For example, - you can specify a fixed size. - -* :class:`~mpl_toolkits.axes_grid1.axes_size.Divider` is the class - that calculates the axes position. It divides the given - rectangular area into several areas. The divider is initialized by - setting the lists of horizontal and vertical sizes on which the division - will be based. Then use - :meth:`~mpl_toolkits.axes_grid1.axes_size.Divider.new_locator`, - which returns a callable object that can be used to set the - axes_locator of the axes. - - -First, initialize the divider by specifying its grids, i.e., -horizontal and vertical. - -for example,:: - - rect = [0.2, 0.2, 0.6, 0.6] - horiz=[h0, h1, h2, h3] - vert=[v0, v1, v2] - divider = Divider(fig, rect, horiz, vert) - -where, rect is a bounds of the box that will be divided and h0,..h3, -v0,..v2 need to be an instance of classes in the -:mod:`~mpl_toolkits.axes_grid1.axes_size`. They have *get_size* method -that returns a tuple of two floats. The first float is the relative -size, and the second float is the absolute size. Consider a following -grid. - -+-----+-----+-----+-----+ -| v0 | | | | -+-----+-----+-----+-----+ -| v1 | | | | -+-----+-----+-----+-----+ -|h0,v2| h1 | h2 | h3 | -+-----+-----+-----+-----+ - - -* v0 => 0, 2 -* v1 => 2, 0 -* v2 => 3, 0 - -The height of the bottom row is always 2 (axes_divider internally -assumes that the unit is inches). The first and the second rows have a -height ratio of 2:3. For example, if the total height of the grid is 6, -then the first and second row will each occupy 2/(2+3) and 3/(2+3) of -(6-1) inches. The widths of the horizontal columns will be similarly -determined. When the aspect ratio is set, the total height (or width) will -be adjusted accordingly. - - -The :mod:`mpl_toolkits.axes_grid1.axes_size` contains several classes -that can be used to set the horizontal and vertical configurations. For -example, for vertical configuration one could use:: - - from mpl_toolkits.axes_grid1.axes_size import Fixed, Scaled - vert = [Fixed(2), Scaled(2), Scaled(3)] - -After you set up the divider object, then you create a locator -instance that will be given to the axes object.:: - - locator = divider.new_locator(nx=0, ny=1) - ax.set_axes_locator(locator) - -The return value of the new_locator method is an instance of the -AxesLocator class. It is a callable object that returns the -location and size of the cell at the first column and the second row. -You may create a locator that spans over multiple cells.:: - - locator = divider.new_locator(nx=0, nx=2, ny=1) - -The above locator, when called, will return the position and size of -the cells spanning the first and second column and the first row. In -this example, it will return [0:2, 1]. - -See the example, - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider2_001.png - :target: ../../gallery/axes_grid1/simple_axes_divider2.html - :align: center - :scale: 50 - - Simple Axes Divider2 - -You can adjust the size of each axes according to its x or y -data limits (AxesX and AxesY). - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider3_001.png - :target: ../../gallery/axes_grid1/simple_axes_divider3.html - :align: center - :scale: 50 - - Simple Axes Divider3 -""" diff --git a/_downloads/a6797689b80e24bfa67f625cbfc9324a/histogram_features.py b/_downloads/a6797689b80e24bfa67f625cbfc9324a/histogram_features.py deleted file mode 100644 index 5baf7e4b1ef..00000000000 --- a/_downloads/a6797689b80e24bfa67f625cbfc9324a/histogram_features.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -========================================================= -Demo of the histogram (hist) function with a few features -========================================================= - -In addition to the basic histogram, this demo shows a few optional features: - -* Setting the number of data bins. -* The ``normed`` flag, which normalizes bin heights so that the integral of - the histogram is 1. The resulting histogram is an approximation of the - probability density function. -* Setting the face color of the bars. -* Setting the opacity (alpha value). - -Selecting different bin counts and sizes can significantly affect the shape -of a histogram. The Astropy docs have a great section_ on how to select these -parameters. - -.. _section: http://docs.astropy.org/en/stable/visualization/histogram.html -""" - -import matplotlib -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -# example data -mu = 100 # mean of distribution -sigma = 15 # standard deviation of distribution -x = mu + sigma * np.random.randn(437) - -num_bins = 50 - -fig, ax = plt.subplots() - -# the histogram of the data -n, bins, patches = ax.hist(x, num_bins, density=1) - -# add a 'best fit' line -y = ((1 / (np.sqrt(2 * np.pi) * sigma)) * - np.exp(-0.5 * (1 / sigma * (bins - mu))**2)) -ax.plot(bins, y, '--') -ax.set_xlabel('Smarts') -ax.set_ylabel('Probability density') -ax.set_title(r'Histogram of IQ: $\mu=100$, $\sigma=15$') - -# Tweak spacing to prevent clipping of ylabel -fig.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -matplotlib.axes.Axes.hist -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel diff --git a/_downloads/a68a02e9c3017138c0cdfc31e4d7b2d2/path_editor.ipynb b/_downloads/a68a02e9c3017138c0cdfc31e4d7b2d2/path_editor.ipynb deleted file mode 120000 index 241596f9c84..00000000000 --- a/_downloads/a68a02e9c3017138c0cdfc31e4d7b2d2/path_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a68a02e9c3017138c0cdfc31e4d7b2d2/path_editor.ipynb \ No newline at end of file diff --git a/_downloads/a68b0a880cd698b3356f7bef7b041be1/anchored_box02.ipynb b/_downloads/a68b0a880cd698b3356f7bef7b041be1/anchored_box02.ipynb deleted file mode 100644 index c33acfa9fb8..00000000000 --- a/_downloads/a68b0a880cd698b3356f7bef7b041be1/anchored_box02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Circle\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nada = AnchoredDrawingArea(40, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\np1 = Circle((10, 10), 10)\nada.drawing_area.add_artist(p1)\np2 = Circle((30, 10), 5, fc=\"r\")\nada.drawing_area.add_artist(p2)\n\nax.add_artist(ada)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a68ba9936b67fb3ccaa9f454adac1552/color_demo.ipynb b/_downloads/a68ba9936b67fb3ccaa9f454adac1552/color_demo.ipynb deleted file mode 100644 index d1df3f0a068..00000000000 --- a/_downloads/a68ba9936b67fb3ccaa9f454adac1552/color_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Color Demo\n\n\nMatplotlib recognizes the following formats to specify a color:\n\n1) an RGB or RGBA tuple of float values in ``[0, 1]`` (e.g. ``(0.1, 0.2, 0.5)``\n or ``(0.1, 0.2, 0.5, 0.3)``). RGBA is short for Red, Green, Blue, Alpha;\n2) a hex RGB or RGBA string (e.g., ``'#0F0F0F'`` or ``'#0F0F0F0F'``);\n3) a string representation of a float value in ``[0, 1]`` inclusive for gray\n level (e.g., ``'0.5'``);\n4) a single letter string, i.e. one of\n ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``;\n5) a X11/CSS4 (\"html\") color name, e.g. ``\"blue\"``;\n6) a name from the `xkcd color survey `__,\n prefixed with ``'xkcd:'`` (e.g., ``'xkcd:sky blue'``);\n7) a \"Cn\" color spec, i.e. `'C'` followed by a number, which is an index into\n the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the\n indexing is intended to occur at rendering time, and defaults to black if\n the cycle does not include color.\n8) one of ``{'tab:blue', 'tab:orange', 'tab:green',\n 'tab:red', 'tab:purple', 'tab:brown', 'tab:pink',\n 'tab:gray', 'tab:olive', 'tab:cyan'}`` which are the Tableau Colors from the\n 'tab10' categorical palette (which is the default color cycle);\n\nFor more information on colors in matplotlib see\n\n* the :doc:`/tutorials/colors/colors` tutorial;\n* the `matplotlib.colors` API;\n* the :doc:`/gallery/color/named_colors` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.linspace(0.0, 2.0, 201)\ns = np.sin(2 * np.pi * t)\n\n# 1) RGB tuple:\nfig, ax = plt.subplots(facecolor=(.18, .31, .31))\n# 2) hex string:\nax.set_facecolor('#eafff5')\n# 3) gray level string:\nax.set_title('Voltage vs. time chart', color='0.7')\n# 4) single letter color string\nax.set_xlabel('time (s)', color='c')\n# 5) a named color:\nax.set_ylabel('voltage (mV)', color='peachpuff')\n# 6) a named xkcd color:\nax.plot(t, s, 'xkcd:crimson')\n# 7) Cn notation:\nax.plot(t, .7*s, color='C4', linestyle='--')\n# 8) tab notation:\nax.tick_params(labelcolor='tab:orange')\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.set_facecolor\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.tick_params" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a691201c82fbfb9ec3314ccf29fbbb21/demo_tight_layout.ipynb b/_downloads/a691201c82fbfb9ec3314ccf29fbbb21/demo_tight_layout.ipynb deleted file mode 120000 index a612e7f6c4a..00000000000 --- a/_downloads/a691201c82fbfb9ec3314ccf29fbbb21/demo_tight_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a691201c82fbfb9ec3314ccf29fbbb21/demo_tight_layout.ipynb \ No newline at end of file diff --git a/_downloads/a69721f85ada9a2690bebd94e0745da7/broken_axis.py b/_downloads/a69721f85ada9a2690bebd94e0745da7/broken_axis.py deleted file mode 120000 index 9c2e8e652c8..00000000000 --- a/_downloads/a69721f85ada9a2690bebd94e0745da7/broken_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a69721f85ada9a2690bebd94e0745da7/broken_axis.py \ No newline at end of file diff --git a/_downloads/a69a52bc756bdf5d6797665a3067da84/colormap_normalizations.ipynb b/_downloads/a69a52bc756bdf5d6797665a3067da84/colormap_normalizations.ipynb deleted file mode 120000 index f5c4673d9ec..00000000000 --- a/_downloads/a69a52bc756bdf5d6797665a3067da84/colormap_normalizations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a69a52bc756bdf5d6797665a3067da84/colormap_normalizations.ipynb \ No newline at end of file diff --git a/_downloads/a6a1a2d5f1d2cd3f2135ba4cf542a630/simple_anchored_artists.py b/_downloads/a6a1a2d5f1d2cd3f2135ba4cf542a630/simple_anchored_artists.py deleted file mode 120000 index eb10613a15b..00000000000 --- a/_downloads/a6a1a2d5f1d2cd3f2135ba4cf542a630/simple_anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a6a1a2d5f1d2cd3f2135ba4cf542a630/simple_anchored_artists.py \ No newline at end of file diff --git a/_downloads/a6ad00eba58ae9416320abe2e9249385/multiple_histograms_side_by_side.py b/_downloads/a6ad00eba58ae9416320abe2e9249385/multiple_histograms_side_by_side.py deleted file mode 120000 index cdf71c121ea..00000000000 --- a/_downloads/a6ad00eba58ae9416320abe2e9249385/multiple_histograms_side_by_side.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a6ad00eba58ae9416320abe2e9249385/multiple_histograms_side_by_side.py \ No newline at end of file diff --git a/_downloads/a6c08c44d34036e75a52837ce4a090ed/fancyarrow_demo.py b/_downloads/a6c08c44d34036e75a52837ce4a090ed/fancyarrow_demo.py deleted file mode 120000 index 17072c39124..00000000000 --- a/_downloads/a6c08c44d34036e75a52837ce4a090ed/fancyarrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a6c08c44d34036e75a52837ce4a090ed/fancyarrow_demo.py \ No newline at end of file diff --git a/_downloads/a6c3c2e8756c836e1e11a656cc7e67ed/bxp.ipynb b/_downloads/a6c3c2e8756c836e1e11a656cc7e67ed/bxp.ipynb deleted file mode 100644 index 0ffdfe46c42..00000000000 --- a/_downloads/a6c3c2e8756c836e1e11a656cc7e67ed/bxp.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Boxplot drawer function\n\n\nThis example demonstrates how to pass pre-computed box plot\nstatistics to the box plot drawer. The first figure demonstrates\nhow to remove and add individual components (note that the\nmean is the only value not shown by default). The second\nfigure demonstrates how the styles of the artists can\nbe customized.\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\n\n# fake data\nnp.random.seed(19680801)\ndata = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75)\nlabels = list('ABCD')\n\n# compute the boxplot stats\nstats = cbook.boxplot_stats(data, labels=labels, bootstrap=10000)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "After we've computed the stats, we can go through and change anything.\nJust to prove it, I'll set the median of each set to the median of all\nthe data, and double the means\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "for n in range(len(stats)):\n stats[n]['med'] = np.median(data)\n stats[n]['mean'] *= 2\n\nprint(list(stats[0]))\n\nfs = 10 # fontsize" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to toggle the display of different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True)\naxes[0, 0].bxp(stats)\naxes[0, 0].set_title('Default', fontsize=fs)\n\naxes[0, 1].bxp(stats, showmeans=True)\naxes[0, 1].set_title('showmeans=True', fontsize=fs)\n\naxes[0, 2].bxp(stats, showmeans=True, meanline=True)\naxes[0, 2].set_title('showmeans=True,\\nmeanline=True', fontsize=fs)\n\naxes[1, 0].bxp(stats, showbox=False, showcaps=False)\ntufte_title = 'Tufte Style\\n(showbox=False,\\nshowcaps=False)'\naxes[1, 0].set_title(tufte_title, fontsize=fs)\n\naxes[1, 1].bxp(stats, shownotches=True)\naxes[1, 1].set_title('notch=True', fontsize=fs)\n\naxes[1, 2].bxp(stats, showfliers=False)\naxes[1, 2].set_title('showfliers=False', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to customize the display different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod')\nflierprops = dict(marker='o', markerfacecolor='green', markersize=12,\n linestyle='none')\nmedianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick')\nmeanpointprops = dict(marker='D', markeredgecolor='black',\n markerfacecolor='firebrick')\nmeanlineprops = dict(linestyle='--', linewidth=2.5, color='purple')\n\nfig, axes = plt.subplots(nrows=2, ncols=2, figsize=(6, 6), sharey=True)\naxes[0, 0].bxp(stats, boxprops=boxprops)\naxes[0, 0].set_title('Custom boxprops', fontsize=fs)\n\naxes[0, 1].bxp(stats, flierprops=flierprops, medianprops=medianprops)\naxes[0, 1].set_title('Custom medianprops\\nand flierprops', fontsize=fs)\n\naxes[1, 0].bxp(stats, meanprops=meanpointprops, meanline=False,\n showmeans=True)\naxes[1, 0].set_title('Custom mean\\nas point', fontsize=fs)\n\naxes[1, 1].bxp(stats, meanprops=meanlineprops, meanline=True,\n showmeans=True)\naxes[1, 1].set_title('Custom mean\\nas line', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.suptitle(\"I never said they'd be pretty\")\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a6c74ec6bf2ff1ef88a4c39e12ac890e/scatter_piecharts.py b/_downloads/a6c74ec6bf2ff1ef88a4c39e12ac890e/scatter_piecharts.py deleted file mode 120000 index da357a99b56..00000000000 --- a/_downloads/a6c74ec6bf2ff1ef88a4c39e12ac890e/scatter_piecharts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a6c74ec6bf2ff1ef88a4c39e12ac890e/scatter_piecharts.py \ No newline at end of file diff --git a/_downloads/a6cb4df0e5baf29165f46c7de8319b87/lasso_demo.py b/_downloads/a6cb4df0e5baf29165f46c7de8319b87/lasso_demo.py deleted file mode 120000 index d9ae52f33c2..00000000000 --- a/_downloads/a6cb4df0e5baf29165f46c7de8319b87/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a6cb4df0e5baf29165f46c7de8319b87/lasso_demo.py \ No newline at end of file diff --git a/_downloads/a6d1edbbd6f3d4eedb03f0342957fb1a/rotate_axes3d_sgskip.ipynb b/_downloads/a6d1edbbd6f3d4eedb03f0342957fb1a/rotate_axes3d_sgskip.ipynb deleted file mode 120000 index 783ebb244a4..00000000000 --- a/_downloads/a6d1edbbd6f3d4eedb03f0342957fb1a/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a6d1edbbd6f3d4eedb03f0342957fb1a/rotate_axes3d_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/a6d47f19c536ceabc469a6f40a248c6d/tricontour_smooth_user.ipynb b/_downloads/a6d47f19c536ceabc469a6f40a248c6d/tricontour_smooth_user.ipynb deleted file mode 100644 index 2587f7d5830..00000000000 --- a/_downloads/a6d47f19c536ceabc469a6f40a248c6d/tricontour_smooth_user.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tricontour Smooth User\n\n\nDemonstrates high-resolution tricontouring on user-defined triangular grids\nwith `matplotlib.tri.UniformTriRefiner`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.tri as tri\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport numpy as np\n\n\n#-----------------------------------------------------------------------------\n# Analytical test function\n#-----------------------------------------------------------------------------\ndef function_z(x, y):\n r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2)\n theta1 = np.arctan2(0.5 - x, 0.5 - y)\n r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2)\n theta2 = np.arctan2(-x - 0.2, -y - 0.2)\n z = -(2 * (np.exp((r1 / 10)**2) - 1) * 30. * np.cos(7. * theta1) +\n (np.exp((r2 / 10)**2) - 1) * 30. * np.cos(11. * theta2) +\n 0.7 * (x**2 + y**2))\n return (np.max(z) - z) / (np.max(z) - np.min(z))\n\n#-----------------------------------------------------------------------------\n# Creating a Triangulation\n#-----------------------------------------------------------------------------\n# First create the x and y coordinates of the points.\nn_angles = 20\nn_radii = 10\nmin_radius = 0.15\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\nz = function_z(x, y)\n\n# Now create the Triangulation.\n# (Creating a Triangulation without specifying the triangles results in the\n# Delaunay triangulation of the points.)\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\n#-----------------------------------------------------------------------------\n# Refine data\n#-----------------------------------------------------------------------------\nrefiner = tri.UniformTriRefiner(triang)\ntri_refi, z_test_refi = refiner.refine_field(z, subdiv=3)\n\n#-----------------------------------------------------------------------------\n# Plot the triangulation and the high-res iso-contours\n#-----------------------------------------------------------------------------\nfig, ax = plt.subplots()\nax.set_aspect('equal')\nax.triplot(triang, lw=0.5, color='white')\n\nlevels = np.arange(0., 1., 0.025)\ncmap = cm.get_cmap(name='terrain', lut=None)\nax.tricontourf(tri_refi, z_test_refi, levels=levels, cmap=cmap)\nax.tricontour(tri_refi, z_test_refi, levels=levels,\n colors=['0.25', '0.5', '0.5', '0.5', '0.5'],\n linewidths=[1.0, 0.5, 0.5, 0.5, 0.5])\n\nax.set_title(\"High-resolution tricontouring\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.tri\nmatplotlib.tri.Triangulation\nmatplotlib.tri.UniformTriRefiner" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a6d76e5aa919990bafa6cdf617d51a70/demo_tight_layout.py b/_downloads/a6d76e5aa919990bafa6cdf617d51a70/demo_tight_layout.py deleted file mode 100644 index c9e6ca465c8..00000000000 --- a/_downloads/a6d76e5aa919990bafa6cdf617d51a70/demo_tight_layout.py +++ /dev/null @@ -1,151 +0,0 @@ -""" -=============================== -Resizing axes with tight layout -=============================== - -`~.figure.Figure.tight_layout` attempts to resize subplots in -a figure so that there are no overlaps between axes objects and labels -on the axes. - -See :doc:`/tutorials/intermediate/tight_layout_guide` for more details and -:doc:`/tutorials/intermediate/constrainedlayout_guide` for an alternative. - -""" - -import matplotlib.pyplot as plt -import itertools -import warnings - - -fontsizes = itertools.cycle([8, 16, 24, 32]) - - -def example_plot(ax): - ax.plot([1, 2]) - ax.set_xlabel('x-label', fontsize=next(fontsizes)) - ax.set_ylabel('y-label', fontsize=next(fontsizes)) - ax.set_title('Title', fontsize=next(fontsizes)) - - -############################################################################### - -fig, ax = plt.subplots() -example_plot(ax) -plt.tight_layout() - -############################################################################### - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) -plt.tight_layout() - -############################################################################### - -fig, (ax1, ax2) = plt.subplots(nrows=2, ncols=1) -example_plot(ax1) -example_plot(ax2) -plt.tight_layout() - -############################################################################### - -fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2) -example_plot(ax1) -example_plot(ax2) -plt.tight_layout() - -############################################################################### - -fig, axes = plt.subplots(nrows=3, ncols=3) -for row in axes: - for ax in row: - example_plot(ax) -plt.tight_layout() - -############################################################################### - -fig = plt.figure() - -ax1 = plt.subplot(221) -ax2 = plt.subplot(223) -ax3 = plt.subplot(122) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -plt.tight_layout() - -############################################################################### - -fig = plt.figure() - -ax1 = plt.subplot2grid((3, 3), (0, 0)) -ax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2) -ax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -plt.tight_layout() - -plt.show() - -############################################################################### - -fig = plt.figure() - -gs1 = fig.add_gridspec(3, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) -ax3 = fig.add_subplot(gs1[2]) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -gs1.tight_layout(fig, rect=[None, None, 0.45, None]) - -gs2 = fig.add_gridspec(2, 1) -ax4 = fig.add_subplot(gs2[0]) -ax5 = fig.add_subplot(gs2[1]) - -example_plot(ax4) -example_plot(ax5) - -with warnings.catch_warnings(): - # gs2.tight_layout cannot handle the subplots from the first gridspec - # (gs1), so it will raise a warning. We are going to match the gridspecs - # manually so we can filter the warning away. - warnings.simplefilter("ignore", UserWarning) - gs2.tight_layout(fig, rect=[0.45, None, None, None]) - -# now match the top and bottom of two gridspecs. -top = min(gs1.top, gs2.top) -bottom = max(gs1.bottom, gs2.bottom) - -gs1.update(top=top, bottom=bottom) -gs2.update(top=top, bottom=bottom) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.pyplot.tight_layout -matplotlib.figure.Figure.tight_layout -matplotlib.figure.Figure.add_gridspec -matplotlib.figure.Figure.add_subplot -matplotlib.pyplot.subplot2grid diff --git a/_downloads/a6da60ccaa4eeba18fd39bf89cef94aa/simple_axesgrid2.py b/_downloads/a6da60ccaa4eeba18fd39bf89cef94aa/simple_axesgrid2.py deleted file mode 120000 index db023df3c99..00000000000 --- a/_downloads/a6da60ccaa4eeba18fd39bf89cef94aa/simple_axesgrid2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a6da60ccaa4eeba18fd39bf89cef94aa/simple_axesgrid2.py \ No newline at end of file diff --git a/_downloads/a6e1d0880cb91e957d5659661029eb9d/check_buttons.ipynb b/_downloads/a6e1d0880cb91e957d5659661029eb9d/check_buttons.ipynb deleted file mode 120000 index c8a75ae62f5..00000000000 --- a/_downloads/a6e1d0880cb91e957d5659661029eb9d/check_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a6e1d0880cb91e957d5659661029eb9d/check_buttons.ipynb \ No newline at end of file diff --git a/_downloads/a6e88536322461bd7d53b88ad337de71/usage.py b/_downloads/a6e88536322461bd7d53b88ad337de71/usage.py deleted file mode 120000 index ec06b01a595..00000000000 --- a/_downloads/a6e88536322461bd7d53b88ad337de71/usage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a6e88536322461bd7d53b88ad337de71/usage.py \ No newline at end of file diff --git a/_downloads/a6ebda74143a3452aca207c6e6cf4b0a/fonts_demo.ipynb b/_downloads/a6ebda74143a3452aca207c6e6cf4b0a/fonts_demo.ipynb deleted file mode 120000 index 40af932c5c0..00000000000 --- a/_downloads/a6ebda74143a3452aca207c6e6cf4b0a/fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a6ebda74143a3452aca207c6e6cf4b0a/fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/a6fd33009f1118daeac2d51b4bc87829/align_ylabels.py b/_downloads/a6fd33009f1118daeac2d51b4bc87829/align_ylabels.py deleted file mode 100644 index 09711eef28a..00000000000 --- a/_downloads/a6fd33009f1118daeac2d51b4bc87829/align_ylabels.py +++ /dev/null @@ -1,90 +0,0 @@ -""" -============== -Align y-labels -============== - -Two methods are shown here, one using a short call to `.Figure.align_ylabels` -and the second a manual way to align the labels. - -""" -import numpy as np -import matplotlib.pyplot as plt - - -def make_plot(axs): - box = dict(facecolor='yellow', pad=5, alpha=0.2) - - # Fixing random state for reproducibility - np.random.seed(19680801) - ax1 = axs[0, 0] - ax1.plot(2000*np.random.rand(10)) - ax1.set_title('ylabels not aligned') - ax1.set_ylabel('misaligned 1', bbox=box) - ax1.set_ylim(0, 2000) - - ax3 = axs[1, 0] - ax3.set_ylabel('misaligned 2', bbox=box) - ax3.plot(np.random.rand(10)) - - ax2 = axs[0, 1] - ax2.set_title('ylabels aligned') - ax2.plot(2000*np.random.rand(10)) - ax2.set_ylabel('aligned 1', bbox=box) - ax2.set_ylim(0, 2000) - - ax4 = axs[1, 1] - ax4.plot(np.random.rand(10)) - ax4.set_ylabel('aligned 2', bbox=box) - - -# Plot 1: -fig, axs = plt.subplots(2, 2) -fig.subplots_adjust(left=0.2, wspace=0.6) -make_plot(axs) - -# just align the last column of axes: -fig.align_ylabels(axs[:, 1]) -plt.show() - -############################################################################# -# -# .. seealso:: -# `.Figure.align_ylabels` and `.Figure.align_labels` for a direct method -# of doing the same thing. -# Also :doc:`/gallery/subplots_axes_and_figures/align_labels_demo` -# -# -# Or we can manually align the axis labels between subplots manually using the -# `set_label_coords` method of the y-axis object. Note this requires we know -# a good offset value which is hardcoded. - -fig, axs = plt.subplots(2, 2) -fig.subplots_adjust(left=0.2, wspace=0.6) - -make_plot(axs) - -labelx = -0.3 # axes coords - -for j in range(2): - axs[j, 1].yaxis.set_label_coords(labelx, 0.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure.align_ylabels -matplotlib.axis.Axis.set_label_coords -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.set_ylim diff --git a/_downloads/a6fff964ab78873c7e05e3891a3e6d86/voxels.py b/_downloads/a6fff964ab78873c7e05e3891a3e6d86/voxels.py deleted file mode 120000 index ba9167429e1..00000000000 --- a/_downloads/a6fff964ab78873c7e05e3891a3e6d86/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a6fff964ab78873c7e05e3891a3e6d86/voxels.py \ No newline at end of file diff --git a/_downloads/a70483fff7b46b03f4d5c358b003188f/gallery_jupyter.zip b/_downloads/a70483fff7b46b03f4d5c358b003188f/gallery_jupyter.zip deleted file mode 120000 index 70a0947bcbf..00000000000 --- a/_downloads/a70483fff7b46b03f4d5c358b003188f/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.1/_downloads/a70483fff7b46b03f4d5c358b003188f/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/a707af719f3e6b0395a0a0bceb94b5be/simple_axes_divider3.ipynb b/_downloads/a707af719f3e6b0395a0a0bceb94b5be/simple_axes_divider3.ipynb deleted file mode 100644 index 29a17eff686..00000000000 --- a/_downloads/a707af719f3e6b0395a0a0bceb94b5be/simple_axes_divider3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axes Divider 3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits.axes_grid1.axes_size as Size\nfrom mpl_toolkits.axes_grid1 import Divider\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure(figsize=(5.5, 4))\n\n# the rect parameter will be ignore as we will set axes_locator\nrect = (0.1, 0.1, 0.8, 0.8)\nax = [fig.add_axes(rect, label=\"%d\" % i) for i in range(4)]\n\n\nhoriz = [Size.AxesX(ax[0]), Size.Fixed(.5), Size.AxesX(ax[1])]\nvert = [Size.AxesY(ax[0]), Size.Fixed(.5), Size.AxesY(ax[2])]\n\n# divide the axes rectangle into grid whose size is specified by horiz * vert\ndivider = Divider(fig, rect, horiz, vert, aspect=False)\n\n\nax[0].set_axes_locator(divider.new_locator(nx=0, ny=0))\nax[1].set_axes_locator(divider.new_locator(nx=2, ny=0))\nax[2].set_axes_locator(divider.new_locator(nx=0, ny=2))\nax[3].set_axes_locator(divider.new_locator(nx=2, ny=2))\n\nax[0].set_xlim(0, 2)\nax[1].set_xlim(0, 1)\n\nax[0].set_ylim(0, 1)\nax[2].set_ylim(0, 2)\n\ndivider.set_aspect(1.)\n\nfor ax1 in ax:\n ax1.tick_params(labelbottom=False, labelleft=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a709024ad3309b6dbdf6960531aff15e/tricontourf3d.ipynb b/_downloads/a709024ad3309b6dbdf6960531aff15e/tricontourf3d.ipynb deleted file mode 120000 index efb50923c00..00000000000 --- a/_downloads/a709024ad3309b6dbdf6960531aff15e/tricontourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a709024ad3309b6dbdf6960531aff15e/tricontourf3d.ipynb \ No newline at end of file diff --git a/_downloads/a70911f0e9c060afab1275d4fb7f36ca/whats_new_98_4_fancy.ipynb b/_downloads/a70911f0e9c060afab1275d4fb7f36ca/whats_new_98_4_fancy.ipynb deleted file mode 120000 index 7c34794ea1c..00000000000 --- a/_downloads/a70911f0e9c060afab1275d4fb7f36ca/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a70911f0e9c060afab1275d4fb7f36ca/whats_new_98_4_fancy.ipynb \ No newline at end of file diff --git a/_downloads/a711ecab3dbc09b3f1e574442f694312/annotate_simple03.ipynb b/_downloads/a711ecab3dbc09b3f1e574442f694312/annotate_simple03.ipynb deleted file mode 120000 index cf930dfef62..00000000000 --- a/_downloads/a711ecab3dbc09b3f1e574442f694312/annotate_simple03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a711ecab3dbc09b3f1e574442f694312/annotate_simple03.ipynb \ No newline at end of file diff --git a/_downloads/a7215f1e57a7aa58ef38d334209664f3/annotate_simple_coord02.ipynb b/_downloads/a7215f1e57a7aa58ef38d334209664f3/annotate_simple_coord02.ipynb deleted file mode 100644 index 4c595d8a1fc..00000000000 --- a/_downloads/a7215f1e57a7aa58ef38d334209664f3/annotate_simple_coord02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple Coord02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 2))\nan1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\n\nan2 = ax.annotate(\"Test 2\", xy=(0.5, 1.), xycoords=an1,\n xytext=(0.5, 1.1), textcoords=(an1, \"axes fraction\"),\n va=\"bottom\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\n\nfig.subplots_adjust(top=0.83)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a721a00b9646262f5171bf14c748c0ab/hinton_demo.py b/_downloads/a721a00b9646262f5171bf14c748c0ab/hinton_demo.py deleted file mode 120000 index d8bad99f319..00000000000 --- a/_downloads/a721a00b9646262f5171bf14c748c0ab/hinton_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a721a00b9646262f5171bf14c748c0ab/hinton_demo.py \ No newline at end of file diff --git a/_downloads/a7242ecb33546a035d908c35ef1a80f9/rainbow_text.py b/_downloads/a7242ecb33546a035d908c35ef1a80f9/rainbow_text.py deleted file mode 100644 index 4842038a8ee..00000000000 --- a/_downloads/a7242ecb33546a035d908c35ef1a80f9/rainbow_text.py +++ /dev/null @@ -1,81 +0,0 @@ -""" -============ -Rainbow text -============ - -The example shows how to string together several text objects. - -History -------- -On the matplotlib-users list back in February 2012, Gökhan Sever asked the -following question: - - Is there a way in matplotlib to partially specify the color of a string? - - Example: - - plt.ylabel("Today is cloudy.") - - How can I show "today" as red, "is" as green and "cloudy." as blue? - - Thanks. - -Paul Ivanov responded with this answer: - -""" -import matplotlib.pyplot as plt -from matplotlib import transforms - - -def rainbow_text(x, y, strings, colors, orientation='horizontal', - ax=None, **kwargs): - """ - Take a list of *strings* and *colors* and place them next to each - other, with text strings[i] being shown in colors[i]. - - Parameters - ---------- - x, y : float - Text position in data coordinates. - strings : list of str - The strings to draw. - colors : list of color - The colors to use. - orientation : {'horizontal', 'vertical'} - ax : Axes, optional - The Axes to draw into. If None, the current axes will be used. - **kwargs - All other keyword arguments are passed to plt.text(), so you can - set the font size, family, etc. - """ - if ax is None: - ax = plt.gca() - t = ax.transData - canvas = ax.figure.canvas - - assert orientation in ['horizontal', 'vertical'] - if orientation == 'vertical': - kwargs.update(rotation=90, verticalalignment='bottom') - - for s, c in zip(strings, colors): - text = ax.text(x, y, s + " ", color=c, transform=t, **kwargs) - - # Need to draw to update the text position. - text.draw(canvas.get_renderer()) - ex = text.get_window_extent() - if orientation == 'horizontal': - t = transforms.offset_copy( - text.get_transform(), x=ex.width, units='dots') - else: - t = transforms.offset_copy( - text.get_transform(), y=ex.height, units='dots') - - -words = "all unicorns poop rainbows ! ! !".split() -colors = ['red', 'orange', 'gold', 'lawngreen', 'lightseagreen', 'royalblue', - 'blueviolet'] -plt.figure(figsize=(6, 6)) -rainbow_text(0.1, 0.05, words, colors, size=18) -rainbow_text(0.05, 0.1, words, colors, orientation='vertical', size=18) - -plt.show() diff --git a/_downloads/a730ccdc6e17e51b6ac30a8793c9470d/animation_demo.py b/_downloads/a730ccdc6e17e51b6ac30a8793c9470d/animation_demo.py deleted file mode 120000 index 8dd12497e46..00000000000 --- a/_downloads/a730ccdc6e17e51b6ac30a8793c9470d/animation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a730ccdc6e17e51b6ac30a8793c9470d/animation_demo.py \ No newline at end of file diff --git a/_downloads/a733fdd9473aa7f70e92a1a288252360/scatter_piecharts.py b/_downloads/a733fdd9473aa7f70e92a1a288252360/scatter_piecharts.py deleted file mode 100644 index d4ffaa34d15..00000000000 --- a/_downloads/a733fdd9473aa7f70e92a1a288252360/scatter_piecharts.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -=================================== -Scatter plot with pie chart markers -=================================== - -This example makes custom 'pie charts' as the markers for a scatter plot. - -Thanks to Manuel Metz for the example -""" - -import numpy as np -import matplotlib.pyplot as plt - -# first define the ratios -r1 = 0.2 # 20% -r2 = r1 + 0.4 # 40% - -# define some sizes of the scatter marker -sizes = np.array([60, 80, 120]) - -# calculate the points of the first pie marker -# -# these are just the origin (0,0) + -# some points on a circle cos,sin -x = [0] + np.cos(np.linspace(0, 2 * np.pi * r1, 10)).tolist() -y = [0] + np.sin(np.linspace(0, 2 * np.pi * r1, 10)).tolist() -xy1 = np.column_stack([x, y]) -s1 = np.abs(xy1).max() - -x = [0] + np.cos(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist() -y = [0] + np.sin(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist() -xy2 = np.column_stack([x, y]) -s2 = np.abs(xy2).max() - -x = [0] + np.cos(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist() -y = [0] + np.sin(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist() -xy3 = np.column_stack([x, y]) -s3 = np.abs(xy3).max() - -fig, ax = plt.subplots() -ax.scatter(range(3), range(3), marker=xy1, - s=s1 ** 2 * sizes, facecolor='blue') -ax.scatter(range(3), range(3), marker=xy2, - s=s2 ** 2 * sizes, facecolor='green') -ax.scatter(range(3), range(3), marker=xy3, - s=s3 ** 2 * sizes, facecolor='red') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter diff --git a/_downloads/a735a35d118bb717186bf62e50cbf8c9/inset_locator_demo.ipynb b/_downloads/a735a35d118bb717186bf62e50cbf8c9/inset_locator_demo.ipynb deleted file mode 120000 index a011f350806..00000000000 --- a/_downloads/a735a35d118bb717186bf62e50cbf8c9/inset_locator_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a735a35d118bb717186bf62e50cbf8c9/inset_locator_demo.ipynb \ No newline at end of file diff --git a/_downloads/a73f723a536be5056288fb8fb792ee9a/anchored_box01.ipynb b/_downloads/a73f723a536be5056288fb8fb792ee9a/anchored_box01.ipynb deleted file mode 120000 index b7c087f0bf0..00000000000 --- a/_downloads/a73f723a536be5056288fb8fb792ee9a/anchored_box01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a73f723a536be5056288fb8fb792ee9a/anchored_box01.ipynb \ No newline at end of file diff --git a/_downloads/a7458a85b4768c3345ccc00664fa3318/demo_floating_axes.py b/_downloads/a7458a85b4768c3345ccc00664fa3318/demo_floating_axes.py deleted file mode 120000 index f11e3cee565..00000000000 --- a/_downloads/a7458a85b4768c3345ccc00664fa3318/demo_floating_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a7458a85b4768c3345ccc00664fa3318/demo_floating_axes.py \ No newline at end of file diff --git a/_downloads/a7466863f9b2e935c0634f3a3ae2f6b0/unicode_minus.py b/_downloads/a7466863f9b2e935c0634f3a3ae2f6b0/unicode_minus.py deleted file mode 120000 index 6f19ce5ccea..00000000000 --- a/_downloads/a7466863f9b2e935c0634f3a3ae2f6b0/unicode_minus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a7466863f9b2e935c0634f3a3ae2f6b0/unicode_minus.py \ No newline at end of file diff --git a/_downloads/a753e330492c04b337c1c2a3362e25f2/textbox.py b/_downloads/a753e330492c04b337c1c2a3362e25f2/textbox.py deleted file mode 120000 index 6532eca5698..00000000000 --- a/_downloads/a753e330492c04b337c1c2a3362e25f2/textbox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a753e330492c04b337c1c2a3362e25f2/textbox.py \ No newline at end of file diff --git a/_downloads/a75c87ca4aeea475cf3a4f4922c53d7f/align_ylabels.ipynb b/_downloads/a75c87ca4aeea475cf3a4f4922c53d7f/align_ylabels.ipynb deleted file mode 120000 index b1ed71ad631..00000000000 --- a/_downloads/a75c87ca4aeea475cf3a4f4922c53d7f/align_ylabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a75c87ca4aeea475cf3a4f4922c53d7f/align_ylabels.ipynb \ No newline at end of file diff --git a/_downloads/a76101811767fc2769d9448d4a854c3f/eventcollection_demo.py b/_downloads/a76101811767fc2769d9448d4a854c3f/eventcollection_demo.py deleted file mode 120000 index e47dd92c7b8..00000000000 --- a/_downloads/a76101811767fc2769d9448d4a854c3f/eventcollection_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a76101811767fc2769d9448d4a854c3f/eventcollection_demo.py \ No newline at end of file diff --git a/_downloads/a761db53daf334febb50858b0a4601cf/path_tutorial.py b/_downloads/a761db53daf334febb50858b0a4601cf/path_tutorial.py deleted file mode 120000 index 8cb1b6e4dcd..00000000000 --- a/_downloads/a761db53daf334febb50858b0a4601cf/path_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a761db53daf334febb50858b0a4601cf/path_tutorial.py \ No newline at end of file diff --git a/_downloads/a7655970fe0ec4e6217fa98e5d1809ea/date_index_formatter2.ipynb b/_downloads/a7655970fe0ec4e6217fa98e5d1809ea/date_index_formatter2.ipynb deleted file mode 100644 index 1211bb16975..00000000000 --- a/_downloads/a7655970fe0ec4e6217fa98e5d1809ea/date_index_formatter2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date Index Formatter\n\n\nWhen plotting daily data, a frequent request is to plot the data\nignoring skips, e.g., no extra spaces for weekends. This is particularly\ncommon in financial time series, when you may have data for M-F and\nnot Sat, Sun and you don't want gaps in the x axis. The approach is\nto simply use the integer index for the xdata and a custom tick\nFormatter to get the appropriate date string for a given index.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import dateutil.parser\nfrom matplotlib import cbook, dates\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import Formatter\nimport numpy as np\n\n\ndatafile = cbook.get_sample_data('msft.csv', asfileobj=False)\nprint('loading %s' % datafile)\nmsft_data = np.genfromtxt(\n datafile, delimiter=',', names=True,\n converters={0: lambda s: dates.date2num(dateutil.parser.parse(s))})\n\n\nclass MyFormatter(Formatter):\n def __init__(self, dates, fmt='%Y-%m-%d'):\n self.dates = dates\n self.fmt = fmt\n\n def __call__(self, x, pos=0):\n 'Return the label for time x at position pos'\n ind = int(np.round(x))\n if ind >= len(self.dates) or ind < 0:\n return ''\n return dates.num2date(self.dates[ind]).strftime(self.fmt)\n\n\nfig, ax = plt.subplots()\nax.xaxis.set_major_formatter(MyFormatter(msft_data['Date']))\nax.plot(msft_data['Close'], 'o-')\nfig.autofmt_xdate()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a76dd76fe41deba7540a1c38b44a92a8/connect_simple01.ipynb b/_downloads/a76dd76fe41deba7540a1c38b44a92a8/connect_simple01.ipynb deleted file mode 120000 index 668b43b5ce2..00000000000 --- a/_downloads/a76dd76fe41deba7540a1c38b44a92a8/connect_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a76dd76fe41deba7540a1c38b44a92a8/connect_simple01.ipynb \ No newline at end of file diff --git a/_downloads/a77c67eda0495633f92d7a6ab27cc8fa/fill_betweenx_demo.ipynb b/_downloads/a77c67eda0495633f92d7a6ab27cc8fa/fill_betweenx_demo.ipynb deleted file mode 120000 index 66c8ad97587..00000000000 --- a/_downloads/a77c67eda0495633f92d7a6ab27cc8fa/fill_betweenx_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a77c67eda0495633f92d7a6ab27cc8fa/fill_betweenx_demo.ipynb \ No newline at end of file diff --git a/_downloads/a7982a7ddf40ce9dbae9b8bcaf704c03/textbox.py b/_downloads/a7982a7ddf40ce9dbae9b8bcaf704c03/textbox.py deleted file mode 100644 index b3c786014b6..00000000000 --- a/_downloads/a7982a7ddf40ce9dbae9b8bcaf704c03/textbox.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -======= -Textbox -======= - -Allowing text input with the Textbox widget. - -You can use the Textbox widget to let users provide any text that needs to be -displayed, including formulas. You can use a submit button to create plots -with the given input. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import TextBox -fig, ax = plt.subplots() -plt.subplots_adjust(bottom=0.2) -t = np.arange(-2.0, 2.0, 0.001) -s = t ** 2 -initial_text = "t ** 2" -l, = plt.plot(t, s, lw=2) - - -def submit(text): - ydata = eval(text) - l.set_ydata(ydata) - ax.set_ylim(np.min(ydata), np.max(ydata)) - plt.draw() - -axbox = plt.axes([0.1, 0.05, 0.8, 0.075]) -text_box = TextBox(axbox, 'Evaluate', initial=initial_text) -text_box.on_submit(submit) - -plt.show() diff --git a/_downloads/a798a23e8a76648faf532e84826944d3/span_regions.py b/_downloads/a798a23e8a76648faf532e84826944d3/span_regions.py deleted file mode 120000 index b60c8f28260..00000000000 --- a/_downloads/a798a23e8a76648faf532e84826944d3/span_regions.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a798a23e8a76648faf532e84826944d3/span_regions.py \ No newline at end of file diff --git a/_downloads/a798e8c774d37b6a1f26e92cbcc83386/path_editor.ipynb b/_downloads/a798e8c774d37b6a1f26e92cbcc83386/path_editor.ipynb deleted file mode 120000 index 7ba98ad2494..00000000000 --- a/_downloads/a798e8c774d37b6a1f26e92cbcc83386/path_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a798e8c774d37b6a1f26e92cbcc83386/path_editor.ipynb \ No newline at end of file diff --git a/_downloads/a79e44dcd45dd331cca36fa15c1bb0c4/timers.py b/_downloads/a79e44dcd45dd331cca36fa15c1bb0c4/timers.py deleted file mode 120000 index 65086df75fe..00000000000 --- a/_downloads/a79e44dcd45dd331cca36fa15c1bb0c4/timers.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a79e44dcd45dd331cca36fa15c1bb0c4/timers.py \ No newline at end of file diff --git a/_downloads/a7adbd41433354be3b78107c9d02309a/pyplot_three.py b/_downloads/a7adbd41433354be3b78107c9d02309a/pyplot_three.py deleted file mode 120000 index 439f1d2c456..00000000000 --- a/_downloads/a7adbd41433354be3b78107c9d02309a/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a7adbd41433354be3b78107c9d02309a/pyplot_three.py \ No newline at end of file diff --git a/_downloads/a7afa46752ab400809fc9640b1cce5e5/quad_bezier.py b/_downloads/a7afa46752ab400809fc9640b1cce5e5/quad_bezier.py deleted file mode 120000 index c8fcf84901d..00000000000 --- a/_downloads/a7afa46752ab400809fc9640b1cce5e5/quad_bezier.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a7afa46752ab400809fc9640b1cce5e5/quad_bezier.py \ No newline at end of file diff --git a/_downloads/a7b58a13e5ee2b59b31d49c2baa9f139/artists.py b/_downloads/a7b58a13e5ee2b59b31d49c2baa9f139/artists.py deleted file mode 100644 index 3362716a8c3..00000000000 --- a/_downloads/a7b58a13e5ee2b59b31d49c2baa9f139/artists.py +++ /dev/null @@ -1,668 +0,0 @@ -""" -=============== -Artist tutorial -=============== - -Using Artist objects to render on the canvas. - -There are three layers to the matplotlib API. - -* the :class:`matplotlib.backend_bases.FigureCanvas` is the area onto which - the figure is drawn -* the :class:`matplotlib.backend_bases.Renderer` is - the object which knows how to draw on the - :class:`~matplotlib.backend_bases.FigureCanvas` -* and the :class:`matplotlib.artist.Artist` is the object that knows how to use - a renderer to paint onto the canvas. - -The :class:`~matplotlib.backend_bases.FigureCanvas` and -:class:`~matplotlib.backend_bases.Renderer` handle all the details of -talking to user interface toolkits like `wxPython -`_ or drawing languages like PostScript®, and -the ``Artist`` handles all the high level constructs like representing -and laying out the figure, text, and lines. The typical user will -spend 95% of their time working with the ``Artists``. - -There are two types of ``Artists``: primitives and containers. The primitives -represent the standard graphical objects we want to paint onto our canvas: -:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.patches.Rectangle`, -:class:`~matplotlib.text.Text`, :class:`~matplotlib.image.AxesImage`, etc., and -the containers are places to put them (:class:`~matplotlib.axis.Axis`, -:class:`~matplotlib.axes.Axes` and :class:`~matplotlib.figure.Figure`). The -standard use is to create a :class:`~matplotlib.figure.Figure` instance, use -the ``Figure`` to create one or more :class:`~matplotlib.axes.Axes` or -:class:`~matplotlib.axes.Subplot` instances, and use the ``Axes`` instance -helper methods to create the primitives. In the example below, we create a -``Figure`` instance using :func:`matplotlib.pyplot.figure`, which is a -convenience method for instantiating ``Figure`` instances and connecting them -with your user interface or drawing toolkit ``FigureCanvas``. As we will -discuss below, this is not necessary -- you can work directly with PostScript, -PDF Gtk+, or wxPython ``FigureCanvas`` instances, instantiate your ``Figures`` -directly and connect them yourselves -- but since we are focusing here on the -``Artist`` API we'll let :mod:`~matplotlib.pyplot` handle some of those details -for us:: - - import matplotlib.pyplot as plt - fig = plt.figure() - ax = fig.add_subplot(2, 1, 1) # two rows, one column, first plot - -The :class:`~matplotlib.axes.Axes` is probably the most important -class in the matplotlib API, and the one you will be working with most -of the time. This is because the ``Axes`` is the plotting area into -which most of the objects go, and the ``Axes`` has many special helper -methods (:meth:`~matplotlib.axes.Axes.plot`, -:meth:`~matplotlib.axes.Axes.text`, -:meth:`~matplotlib.axes.Axes.hist`, -:meth:`~matplotlib.axes.Axes.imshow`) to create the most common -graphics primitives (:class:`~matplotlib.lines.Line2D`, -:class:`~matplotlib.text.Text`, -:class:`~matplotlib.patches.Rectangle`, -:class:`~matplotlib.image.Image`, respectively). These helper methods -will take your data (e.g., ``numpy`` arrays and strings) and create -primitive ``Artist`` instances as needed (e.g., ``Line2D``), add them to -the relevant containers, and draw them when requested. Most of you -are probably familiar with the :class:`~matplotlib.axes.Subplot`, -which is just a special case of an ``Axes`` that lives on a regular -rows by columns grid of ``Subplot`` instances. If you want to create -an ``Axes`` at an arbitrary location, simply use the -:meth:`~matplotlib.figure.Figure.add_axes` method which takes a list -of ``[left, bottom, width, height]`` values in 0-1 relative figure -coordinates:: - - fig2 = plt.figure() - ax2 = fig2.add_axes([0.15, 0.1, 0.7, 0.3]) - -Continuing with our example:: - - import numpy as np - t = np.arange(0.0, 1.0, 0.01) - s = np.sin(2*np.pi*t) - line, = ax.plot(t, s, color='blue', lw=2) - -In this example, ``ax`` is the ``Axes`` instance created by the -``fig.add_subplot`` call above (remember ``Subplot`` is just a -subclass of ``Axes``) and when you call ``ax.plot``, it creates a -``Line2D`` instance and adds it to the :attr:`Axes.lines -` list. In the interactive `ipython -`_ session below, you can see that the -``Axes.lines`` list is length one and contains the same line that was -returned by the ``line, = ax.plot...`` call: - -.. sourcecode:: ipython - - In [101]: ax.lines[0] - Out[101]: - - In [102]: line - Out[102]: - -If you make subsequent calls to ``ax.plot`` (and the hold state is "on" -which is the default) then additional lines will be added to the list. -You can remove lines later simply by calling the list methods; either -of these will work:: - - del ax.lines[0] - ax.lines.remove(line) # one or the other, not both! - -The Axes also has helper methods to configure and decorate the x-axis -and y-axis tick, tick labels and axis labels:: - - xtext = ax.set_xlabel('my xdata') # returns a Text instance - ytext = ax.set_ylabel('my ydata') - -When you call :meth:`ax.set_xlabel `, -it passes the information on the :class:`~matplotlib.text.Text` -instance of the :class:`~matplotlib.axis.XAxis`. Each ``Axes`` -instance contains an :class:`~matplotlib.axis.XAxis` and a -:class:`~matplotlib.axis.YAxis` instance, which handle the layout and -drawing of the ticks, tick labels and axis labels. - -Try creating the figure below. -""" - -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.subplots_adjust(top=0.8) -ax1 = fig.add_subplot(211) -ax1.set_ylabel('volts') -ax1.set_title('a sine wave') - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2*np.pi*t) -line, = ax1.plot(t, s, color='blue', lw=2) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -ax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3]) -n, bins, patches = ax2.hist(np.random.randn(1000), 50, - facecolor='yellow', edgecolor='yellow') -ax2.set_xlabel('time (s)') - -plt.show() - -############################################################################### -# .. _customizing-artists: -# -# Customizing your objects -# ======================== -# -# Every element in the figure is represented by a matplotlib -# :class:`~matplotlib.artist.Artist`, and each has an extensive list of -# properties to configure its appearance. The figure itself contains a -# :class:`~matplotlib.patches.Rectangle` exactly the size of the figure, -# which you can use to set the background color and transparency of the -# figures. Likewise, each :class:`~matplotlib.axes.Axes` bounding box -# (the standard white box with black edges in the typical matplotlib -# plot, has a ``Rectangle`` instance that determines the color, -# transparency, and other properties of the Axes. These instances are -# stored as member variables :attr:`Figure.patch -# ` and :attr:`Axes.patch -# ` ("Patch" is a name inherited from -# MATLAB, and is a 2D "patch" of color on the figure, e.g., rectangles, -# circles and polygons). Every matplotlib ``Artist`` has the following -# properties -# -# ========== ================================================================================ -# Property Description -# ========== ================================================================================ -# alpha The transparency - a scalar from 0-1 -# animated A boolean that is used to facilitate animated drawing -# axes The axes that the Artist lives in, possibly None -# clip_box The bounding box that clips the Artist -# clip_on Whether clipping is enabled -# clip_path The path the artist is clipped to -# contains A picking function to test whether the artist contains the pick point -# figure The figure instance the artist lives in, possibly None -# label A text label (e.g., for auto-labeling) -# picker A python object that controls object picking -# transform The transformation -# visible A boolean whether the artist should be drawn -# zorder A number which determines the drawing order -# rasterized Boolean; Turns vectors into raster graphics (for compression & eps transparency) -# ========== ================================================================================ -# -# Each of the properties is accessed with an old-fashioned setter or -# getter (yes we know this irritates Pythonistas and we plan to support -# direct access via properties or traits but it hasn't been done yet). -# For example, to multiply the current alpha by a half:: -# -# a = o.get_alpha() -# o.set_alpha(0.5*a) -# -# If you want to set a number of properties at once, you can also use -# the ``set`` method with keyword arguments. For example:: -# -# o.set(alpha=0.5, zorder=2) -# -# If you are working interactively at the python shell, a handy way to -# inspect the ``Artist`` properties is to use the -# :func:`matplotlib.artist.getp` function (simply -# :func:`~matplotlib.pyplot.getp` in pyplot), which lists the properties -# and their values. This works for classes derived from ``Artist`` as -# well, e.g., ``Figure`` and ``Rectangle``. Here are the ``Figure`` rectangle -# properties mentioned above: -# -# .. sourcecode:: ipython -# -# In [149]: matplotlib.artist.getp(fig.patch) -# alpha = 1.0 -# animated = False -# antialiased or aa = True -# axes = None -# clip_box = None -# clip_on = False -# clip_path = None -# contains = None -# edgecolor or ec = w -# facecolor or fc = 0.75 -# figure = Figure(8.125x6.125) -# fill = 1 -# hatch = None -# height = 1 -# label = -# linewidth or lw = 1.0 -# picker = None -# transform = -# verts = ((0, 0), (0, 1), (1, 1), (1, 0)) -# visible = True -# width = 1 -# window_extent = -# x = 0 -# y = 0 -# zorder = 1 -# -# The docstrings for all of the classes also contain the ``Artist`` -# properties, so you can consult the interactive "help" or the -# :ref:`artist-api` for a listing of properties for a given object. -# -# .. _object-containers: -# -# Object containers -# ================= -# -# -# Now that we know how to inspect and set the properties of a given -# object we want to configure, we need to know how to get at that object. -# As mentioned in the introduction, there are two kinds of objects: -# primitives and containers. The primitives are usually the things you -# want to configure (the font of a :class:`~matplotlib.text.Text` -# instance, the width of a :class:`~matplotlib.lines.Line2D`) although -# the containers also have some properties as well -- for example the -# :class:`~matplotlib.axes.Axes` :class:`~matplotlib.artist.Artist` is a -# container that contains many of the primitives in your plot, but it -# also has properties like the ``xscale`` to control whether the xaxis -# is 'linear' or 'log'. In this section we'll review where the various -# container objects store the ``Artists`` that you want to get at. -# -# .. _figure-container: -# -# Figure container -# ---------------- -# -# The top level container ``Artist`` is the -# :class:`matplotlib.figure.Figure`, and it contains everything in the -# figure. The background of the figure is a -# :class:`~matplotlib.patches.Rectangle` which is stored in -# :attr:`Figure.patch `. As -# you add subplots (:meth:`~matplotlib.figure.Figure.add_subplot`) and -# axes (:meth:`~matplotlib.figure.Figure.add_axes`) to the figure -# these will be appended to the :attr:`Figure.axes -# `. These are also returned by the -# methods that create them: -# -# .. sourcecode:: ipython -# -# In [156]: fig = plt.figure() -# -# In [157]: ax1 = fig.add_subplot(211) -# -# In [158]: ax2 = fig.add_axes([0.1, 0.1, 0.7, 0.3]) -# -# In [159]: ax1 -# Out[159]: -# -# In [160]: print(fig.axes) -# [, ] -# -# Because the figure maintains the concept of the "current axes" (see -# :meth:`Figure.gca ` and -# :meth:`Figure.sca `) to support the -# pylab/pyplot state machine, you should not insert or remove axes -# directly from the axes list, but rather use the -# :meth:`~matplotlib.figure.Figure.add_subplot` and -# :meth:`~matplotlib.figure.Figure.add_axes` methods to insert, and the -# :meth:`~matplotlib.figure.Figure.delaxes` method to delete. You are -# free however, to iterate over the list of axes or index into it to get -# access to ``Axes`` instances you want to customize. Here is an -# example which turns all the axes grids on:: -# -# for ax in fig.axes: -# ax.grid(True) -# -# -# The figure also has its own text, lines, patches and images, which you -# can use to add primitives directly. The default coordinate system for -# the ``Figure`` will simply be in pixels (which is not usually what you -# want) but you can control this by setting the transform property of -# the ``Artist`` you are adding to the figure. -# -# .. TODO: Is that still true? -# -# More useful is "figure coordinates" where (0, 0) is the bottom-left of -# the figure and (1, 1) is the top-right of the figure which you can -# obtain by setting the ``Artist`` transform to :attr:`fig.transFigure -# `: - -import matplotlib.lines as lines - -fig = plt.figure() - -l1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig) -l2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig) -fig.lines.extend([l1, l2]) - -plt.show() - -############################################################################### -# Here is a summary of the Artists the figure contains -# -# .. TODO: Add xrefs to this table -# -# ================ =============================================================== -# Figure attribute Description -# ================ =============================================================== -# axes A list of Axes instances (includes Subplot) -# patch The Rectangle background -# images A list of FigureImages patches - useful for raw pixel display -# legends A list of Figure Legend instances (different from Axes.legends) -# lines A list of Figure Line2D instances (rarely used, see Axes.lines) -# patches A list of Figure patches (rarely used, see Axes.patches) -# texts A list Figure Text instances -# ================ =============================================================== -# -# .. _axes-container: -# -# Axes container -# -------------- -# -# The :class:`matplotlib.axes.Axes` is the center of the matplotlib -# universe -- it contains the vast majority of all the ``Artists`` used -# in a figure with many helper methods to create and add these -# ``Artists`` to itself, as well as helper methods to access and -# customize the ``Artists`` it contains. Like the -# :class:`~matplotlib.figure.Figure`, it contains a -# :class:`~matplotlib.patches.Patch` -# :attr:`~matplotlib.axes.Axes.patch` which is a -# :class:`~matplotlib.patches.Rectangle` for Cartesian coordinates and a -# :class:`~matplotlib.patches.Circle` for polar coordinates; this patch -# determines the shape, background and border of the plotting region:: -# -# ax = fig.add_subplot(111) -# rect = ax.patch # a Rectangle instance -# rect.set_facecolor('green') -# -# When you call a plotting method, e.g., the canonical -# :meth:`~matplotlib.axes.Axes.plot` and pass in arrays or lists of -# values, the method will create a :meth:`matplotlib.lines.Line2D` -# instance, update the line with all the ``Line2D`` properties passed as -# keyword arguments, add the line to the :attr:`Axes.lines -# ` container, and returns it to you: -# -# .. sourcecode:: ipython -# -# In [213]: x, y = np.random.rand(2, 100) -# -# In [214]: line, = ax.plot(x, y, '-', color='blue', linewidth=2) -# -# ``plot`` returns a list of lines because you can pass in multiple x, y -# pairs to plot, and we are unpacking the first element of the length -# one list into the line variable. The line has been added to the -# ``Axes.lines`` list: -# -# .. sourcecode:: ipython -# -# In [229]: print(ax.lines) -# [] -# -# Similarly, methods that create patches, like -# :meth:`~matplotlib.axes.Axes.bar` creates a list of rectangles, will -# add the patches to the :attr:`Axes.patches -# ` list: -# -# .. sourcecode:: ipython -# -# In [233]: n, bins, rectangles = ax.hist(np.random.randn(1000), 50, facecolor='yellow') -# -# In [234]: rectangles -# Out[234]:
-# -# In [235]: print(len(ax.patches)) -# -# You should not add objects directly to the ``Axes.lines`` or -# ``Axes.patches`` lists unless you know exactly what you are doing, -# because the ``Axes`` needs to do a few things when it creates and adds -# an object. It sets the figure and axes property of the ``Artist``, as -# well as the default ``Axes`` transformation (unless a transformation -# is set). It also inspects the data contained in the ``Artist`` to -# update the data structures controlling auto-scaling, so that the view -# limits can be adjusted to contain the plotted data. You can, -# nonetheless, create objects yourself and add them directly to the -# ``Axes`` using helper methods like -# :meth:`~matplotlib.axes.Axes.add_line` and -# :meth:`~matplotlib.axes.Axes.add_patch`. Here is an annotated -# interactive session illustrating what is going on: -# -# .. sourcecode:: ipython -# -# In [262]: fig, ax = plt.subplots() -# -# # create a rectangle instance -# In [263]: rect = matplotlib.patches.Rectangle( (1,1), width=5, height=12) -# -# # by default the axes instance is None -# In [264]: print(rect.get_axes()) -# None -# -# # and the transformation instance is set to the "identity transform" -# In [265]: print(rect.get_transform()) -# -# -# # now we add the Rectangle to the Axes -# In [266]: ax.add_patch(rect) -# -# # and notice that the ax.add_patch method has set the axes -# # instance -# In [267]: print(rect.get_axes()) -# Axes(0.125,0.1;0.775x0.8) -# -# # and the transformation has been set too -# In [268]: print(rect.get_transform()) -# -# -# # the default axes transformation is ax.transData -# In [269]: print(ax.transData) -# -# -# # notice that the xlimits of the Axes have not been changed -# In [270]: print(ax.get_xlim()) -# (0.0, 1.0) -# -# # but the data limits have been updated to encompass the rectangle -# In [271]: print(ax.dataLim.bounds) -# (1.0, 1.0, 5.0, 12.0) -# -# # we can manually invoke the auto-scaling machinery -# In [272]: ax.autoscale_view() -# -# # and now the xlim are updated to encompass the rectangle -# In [273]: print(ax.get_xlim()) -# (1.0, 6.0) -# -# # we have to manually force a figure draw -# In [274]: ax.figure.canvas.draw() -# -# -# There are many, many ``Axes`` helper methods for creating primitive -# ``Artists`` and adding them to their respective containers. The table -# below summarizes a small sampling of them, the kinds of ``Artist`` they -# create, and where they store them -# -# ============================== ==================== ======================= -# Helper method Artist Container -# ============================== ==================== ======================= -# ax.annotate - text annotations Annotate ax.texts -# ax.bar - bar charts Rectangle ax.patches -# ax.errorbar - error bar plots Line2D and Rectangle ax.lines and ax.patches -# ax.fill - shared area Polygon ax.patches -# ax.hist - histograms Rectangle ax.patches -# ax.imshow - image data AxesImage ax.images -# ax.legend - axes legends Legend ax.legends -# ax.plot - xy plots Line2D ax.lines -# ax.scatter - scatter charts PolygonCollection ax.collections -# ax.text - text Text ax.texts -# ============================== ==================== ======================= -# -# -# In addition to all of these ``Artists``, the ``Axes`` contains two -# important ``Artist`` containers: the :class:`~matplotlib.axis.XAxis` -# and :class:`~matplotlib.axis.YAxis`, which handle the drawing of the -# ticks and labels. These are stored as instance variables -# :attr:`~matplotlib.axes.Axes.xaxis` and -# :attr:`~matplotlib.axes.Axes.yaxis`. The ``XAxis`` and ``YAxis`` -# containers will be detailed below, but note that the ``Axes`` contains -# many helper methods which forward calls on to the -# :class:`~matplotlib.axis.Axis` instances so you often do not need to -# work with them directly unless you want to. For example, you can set -# the font color of the ``XAxis`` ticklabels using the ``Axes`` helper -# method:: -# -# for label in ax.get_xticklabels(): -# label.set_color('orange') -# -# Below is a summary of the Artists that the Axes contains -# -# ============== ====================================== -# Axes attribute Description -# ============== ====================================== -# artists A list of Artist instances -# patch Rectangle instance for Axes background -# collections A list of Collection instances -# images A list of AxesImage -# legends A list of Legend instances -# lines A list of Line2D instances -# patches A list of Patch instances -# texts A list of Text instances -# xaxis matplotlib.axis.XAxis instance -# yaxis matplotlib.axis.YAxis instance -# ============== ====================================== -# -# .. _axis-container: -# -# Axis containers -# --------------- -# -# The :class:`matplotlib.axis.Axis` instances handle the drawing of the -# tick lines, the grid lines, the tick labels and the axis label. You -# can configure the left and right ticks separately for the y-axis, and -# the upper and lower ticks separately for the x-axis. The ``Axis`` -# also stores the data and view intervals used in auto-scaling, panning -# and zooming, as well as the :class:`~matplotlib.ticker.Locator` and -# :class:`~matplotlib.ticker.Formatter` instances which control where -# the ticks are placed and how they are represented as strings. -# -# Each ``Axis`` object contains a :attr:`~matplotlib.axis.Axis.label` attribute -# (this is what :mod:`~matplotlib.pyplot` modifies in calls to -# :func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.ylabel`) as -# well as a list of major and minor ticks. The ticks are -# :class:`~matplotlib.axis.XTick` and :class:`~matplotlib.axis.YTick` instances, -# which contain the actual line and text primitives that render the ticks and -# ticklabels. Because the ticks are dynamically created as needed (e.g., when -# panning and zooming), you should access the lists of major and minor ticks -# through their accessor methods :meth:`~matplotlib.axis.Axis.get_major_ticks` -# and :meth:`~matplotlib.axis.Axis.get_minor_ticks`. Although the ticks contain -# all the primitives and will be covered below, ``Axis`` instances have accessor -# methods that return the tick lines, tick labels, tick locations etc.: - -fig, ax = plt.subplots() -axis = ax.xaxis -axis.get_ticklocs() - -############################################################################### - -axis.get_ticklabels() - -############################################################################### -# note there are twice as many ticklines as labels because by -# default there are tick lines at the top and bottom but only tick -# labels below the xaxis; this can be customized - -axis.get_ticklines() - -############################################################################### -# by default you get the major ticks back - -axis.get_ticklines() - -############################################################################### -# but you can also ask for the minor ticks - -axis.get_ticklines(minor=True) - -# Here is a summary of some of the useful accessor methods of the ``Axis`` -# (these have corresponding setters where useful, such as -# set_major_formatter) -# -# ====================== ========================================================= -# Accessor method Description -# ====================== ========================================================= -# get_scale The scale of the axis, e.g., 'log' or 'linear' -# get_view_interval The interval instance of the axis view limits -# get_data_interval The interval instance of the axis data limits -# get_gridlines A list of grid lines for the Axis -# get_label The axis label - a Text instance -# get_ticklabels A list of Text instances - keyword minor=True|False -# get_ticklines A list of Line2D instances - keyword minor=True|False -# get_ticklocs A list of Tick locations - keyword minor=True|False -# get_major_locator The matplotlib.ticker.Locator instance for major ticks -# get_major_formatter The matplotlib.ticker.Formatter instance for major ticks -# get_minor_locator The matplotlib.ticker.Locator instance for minor ticks -# get_minor_formatter The matplotlib.ticker.Formatter instance for minor ticks -# get_major_ticks A list of Tick instances for major ticks -# get_minor_ticks A list of Tick instances for minor ticks -# grid Turn the grid on or off for the major or minor ticks -# ====================== ========================================================= -# -# Here is an example, not recommended for its beauty, which customizes -# the axes and tick properties - -# plt.figure creates a matplotlib.figure.Figure instance -fig = plt.figure() -rect = fig.patch # a rectangle instance -rect.set_facecolor('lightgoldenrodyellow') - -ax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4]) -rect = ax1.patch -rect.set_facecolor('lightslategray') - - -for label in ax1.xaxis.get_ticklabels(): - # label is a Text instance - label.set_color('red') - label.set_rotation(45) - label.set_fontsize(16) - -for line in ax1.yaxis.get_ticklines(): - # line is a Line2D instance - line.set_color('green') - line.set_markersize(25) - line.set_markeredgewidth(3) - -plt.show() - -############################################################################### -# .. _tick-container: -# -# Tick containers -# --------------- -# -# The :class:`matplotlib.axis.Tick` is the final container object in our -# descent from the :class:`~matplotlib.figure.Figure` to the -# :class:`~matplotlib.axes.Axes` to the :class:`~matplotlib.axis.Axis` -# to the :class:`~matplotlib.axis.Tick`. The ``Tick`` contains the tick -# and grid line instances, as well as the label instances for the upper -# and lower ticks. Each of these is accessible directly as an attribute -# of the ``Tick``. -# -# ============== ========================================================== -# Tick attribute Description -# ============== ========================================================== -# tick1line Line2D instance -# tick2line Line2D instance -# gridline Line2D instance -# label1 Text instance -# label2 Text instance -# ============== ========================================================== -# -# Here is an example which sets the formatter for the right side ticks with -# dollar signs and colors them green on the right side of the yaxis - -import matplotlib.ticker as ticker - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() -ax.plot(100*np.random.rand(20)) - -formatter = ticker.FormatStrFormatter('$%1.2f') -ax.yaxis.set_major_formatter(formatter) - -for tick in ax.yaxis.get_major_ticks(): - tick.label1.set_visible(False) - tick.label2.set_visible(True) - tick.label2.set_color('green') - -plt.show() diff --git a/_downloads/a7b66365cb476e53b8d7f0c70f478224/lorenz_attractor.py b/_downloads/a7b66365cb476e53b8d7f0c70f478224/lorenz_attractor.py deleted file mode 120000 index 33e5fb2aba3..00000000000 --- a/_downloads/a7b66365cb476e53b8d7f0c70f478224/lorenz_attractor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a7b66365cb476e53b8d7f0c70f478224/lorenz_attractor.py \ No newline at end of file diff --git a/_downloads/a7c4a606483fcc592afd3aa24eba4ed5/scatter3d.py b/_downloads/a7c4a606483fcc592afd3aa24eba4ed5/scatter3d.py deleted file mode 120000 index 390c1d47f10..00000000000 --- a/_downloads/a7c4a606483fcc592afd3aa24eba4ed5/scatter3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a7c4a606483fcc592afd3aa24eba4ed5/scatter3d.py \ No newline at end of file diff --git a/_downloads/a7c77750706e75d9177434af99e977db/fill_between_demo.py b/_downloads/a7c77750706e75d9177434af99e977db/fill_between_demo.py deleted file mode 120000 index 6b2ad606c06..00000000000 --- a/_downloads/a7c77750706e75d9177434af99e977db/fill_between_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a7c77750706e75d9177434af99e977db/fill_between_demo.py \ No newline at end of file diff --git a/_downloads/a7cd762b49fac636f2c7295a870a6c4d/axis_direction_demo_step04.py b/_downloads/a7cd762b49fac636f2c7295a870a6c4d/axis_direction_demo_step04.py deleted file mode 120000 index 39c6d7187e1..00000000000 --- a/_downloads/a7cd762b49fac636f2c7295a870a6c4d/axis_direction_demo_step04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a7cd762b49fac636f2c7295a870a6c4d/axis_direction_demo_step04.py \ No newline at end of file diff --git a/_downloads/a7dc067428276d75e52321f533d86a61/colors.py b/_downloads/a7dc067428276d75e52321f533d86a61/colors.py deleted file mode 120000 index 90c5bb6a9d9..00000000000 --- a/_downloads/a7dc067428276d75e52321f533d86a61/colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a7dc067428276d75e52321f533d86a61/colors.py \ No newline at end of file diff --git a/_downloads/a7f21fd7d38ef5b6cec2f6389b5ee720/eventcollection_demo.ipynb b/_downloads/a7f21fd7d38ef5b6cec2f6389b5ee720/eventcollection_demo.ipynb deleted file mode 120000 index afb5cf33f9a..00000000000 --- a/_downloads/a7f21fd7d38ef5b6cec2f6389b5ee720/eventcollection_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a7f21fd7d38ef5b6cec2f6389b5ee720/eventcollection_demo.ipynb \ No newline at end of file diff --git a/_downloads/a7ff111ad33e888402cd6b785d08565f/embedding_in_gtk4_panzoom_sgskip.py b/_downloads/a7ff111ad33e888402cd6b785d08565f/embedding_in_gtk4_panzoom_sgskip.py deleted file mode 120000 index 5147eac8f0b..00000000000 --- a/_downloads/a7ff111ad33e888402cd6b785d08565f/embedding_in_gtk4_panzoom_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a7ff111ad33e888402cd6b785d08565f/embedding_in_gtk4_panzoom_sgskip.py \ No newline at end of file diff --git a/_downloads/a816bc3ea9c08225ba5773d68fff1188/symlog_demo.ipynb b/_downloads/a816bc3ea9c08225ba5773d68fff1188/symlog_demo.ipynb deleted file mode 120000 index aac96299019..00000000000 --- a/_downloads/a816bc3ea9c08225ba5773d68fff1188/symlog_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a816bc3ea9c08225ba5773d68fff1188/symlog_demo.ipynb \ No newline at end of file diff --git a/_downloads/a81a45517379834ca6761cc5134c9784/spectrum_demo.py b/_downloads/a81a45517379834ca6761cc5134c9784/spectrum_demo.py deleted file mode 120000 index 9a4a9ae0756..00000000000 --- a/_downloads/a81a45517379834ca6761cc5134c9784/spectrum_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a81a45517379834ca6761cc5134c9784/spectrum_demo.py \ No newline at end of file diff --git a/_downloads/a81db5babc8d7f8963b24d4e8e79d566/line_with_text.py b/_downloads/a81db5babc8d7f8963b24d4e8e79d566/line_with_text.py deleted file mode 120000 index 36e3ae08f02..00000000000 --- a/_downloads/a81db5babc8d7f8963b24d4e8e79d566/line_with_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a81db5babc8d7f8963b24d4e8e79d566/line_with_text.py \ No newline at end of file diff --git a/_downloads/a81ee472cd2a9c7df52d3007563b1113/fill.ipynb b/_downloads/a81ee472cd2a9c7df52d3007563b1113/fill.ipynb deleted file mode 120000 index cd7076b9108..00000000000 --- a/_downloads/a81ee472cd2a9c7df52d3007563b1113/fill.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a81ee472cd2a9c7df52d3007563b1113/fill.ipynb \ No newline at end of file diff --git a/_downloads/a820f51b1e986f22d9bd32305880a9e1/colormap_normalizations_symlognorm.py b/_downloads/a820f51b1e986f22d9bd32305880a9e1/colormap_normalizations_symlognorm.py deleted file mode 100644 index 780381e43da..00000000000 --- a/_downloads/a820f51b1e986f22d9bd32305880a9e1/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -================================== -Colormap Normalizations Symlognorm -================================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -""" -SymLogNorm: two humps, one negative and one positive, The positive -with 5-times the amplitude. Linearly, you cannot see detail in the -negative hump. Here we logarithmically scale the positive and -negative data separately. - -Note that colorbar labels do not come out looking very good. -""" - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03, - vmin=-1.0, vmax=1.0), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') - -plt.show() diff --git a/_downloads/a8259d12a2ade2f1ce4d36c488d16a3a/axes_zoom_effect.py b/_downloads/a8259d12a2ade2f1ce4d36c488d16a3a/axes_zoom_effect.py deleted file mode 120000 index 313f811a162..00000000000 --- a/_downloads/a8259d12a2ade2f1ce4d36c488d16a3a/axes_zoom_effect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a8259d12a2ade2f1ce4d36c488d16a3a/axes_zoom_effect.py \ No newline at end of file diff --git a/_downloads/a82ade3f575a23a470e36cadaa3013fe/simple_anim.ipynb b/_downloads/a82ade3f575a23a470e36cadaa3013fe/simple_anim.ipynb deleted file mode 120000 index 8b948360ea3..00000000000 --- a/_downloads/a82ade3f575a23a470e36cadaa3013fe/simple_anim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a82ade3f575a23a470e36cadaa3013fe/simple_anim.ipynb \ No newline at end of file diff --git a/_downloads/a83bcccfa5e4ace2a7105494134055a2/lasso_demo.ipynb b/_downloads/a83bcccfa5e4ace2a7105494134055a2/lasso_demo.ipynb deleted file mode 120000 index e064918cec2..00000000000 --- a/_downloads/a83bcccfa5e4ace2a7105494134055a2/lasso_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a83bcccfa5e4ace2a7105494134055a2/lasso_demo.ipynb \ No newline at end of file diff --git a/_downloads/a83d40ba30563ebaf93b15edc7b8e115/pcolor_demo.py b/_downloads/a83d40ba30563ebaf93b15edc7b8e115/pcolor_demo.py deleted file mode 100644 index b66c5531657..00000000000 --- a/_downloads/a83d40ba30563ebaf93b15edc7b8e115/pcolor_demo.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -=========== -Pcolor Demo -=========== - -Generating images with :meth:`~.axes.Axes.pcolor`. - -Pcolor allows you to generate 2-D image-style plots. Below we will show how -to do so in Matplotlib. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.colors import LogNorm - -############################################################################### -# A simple pcolor demo -# -------------------- - -Z = np.random.rand(6, 10) - -fig, (ax0, ax1) = plt.subplots(2, 1) - -c = ax0.pcolor(Z) -ax0.set_title('default: no edges') - -c = ax1.pcolor(Z, edgecolors='k', linewidths=4) -ax1.set_title('thick edges') - -fig.tight_layout() -plt.show() - -############################################################################### -# Comparing pcolor with similar functions -# --------------------------------------- -# -# Demonstrates similarities between :meth:`~.axes.Axes.pcolor`, -# :meth:`~.axes.Axes.pcolormesh`, :meth:`~.axes.Axes.imshow` and -# :meth:`~.axes.Axes.pcolorfast` for drawing quadrilateral grids. - -# make these smaller to increase the resolution -dx, dy = 0.15, 0.05 - -# generate 2 2d grids for the x & y bounds -y, x = np.mgrid[slice(-3, 3 + dy, dy), - slice(-3, 3 + dx, dx)] -z = (1 - x / 2. + x ** 5 + y ** 3) * np.exp(-x ** 2 - y ** 2) -# x and y are bounds, so z should be the value *inside* those bounds. -# Therefore, remove the last value from the z array. -z = z[:-1, :-1] -z_min, z_max = -np.abs(z).max(), np.abs(z).max() - -fig, axs = plt.subplots(2, 2) - -ax = axs[0, 0] -c = ax.pcolor(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max) -ax.set_title('pcolor') -fig.colorbar(c, ax=ax) - -ax = axs[0, 1] -c = ax.pcolormesh(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max) -ax.set_title('pcolormesh') -fig.colorbar(c, ax=ax) - -ax = axs[1, 0] -c = ax.imshow(z, cmap='RdBu', vmin=z_min, vmax=z_max, - extent=[x.min(), x.max(), y.min(), y.max()], - interpolation='nearest', origin='lower') -ax.set_title('image (nearest)') -fig.colorbar(c, ax=ax) - -ax = axs[1, 1] -c = ax.pcolorfast(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max) -ax.set_title('pcolorfast') -fig.colorbar(c, ax=ax) - -fig.tight_layout() -plt.show() - - -############################################################################### -# Pcolor with a log scale -# ----------------------- -# -# The following shows pcolor plots with a log scale. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out. -# Needs to have z/colour axis on a log scale so we see both hump and spike. -# linear scale only shows the spike. -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -Z = Z1 + 50 * Z2 - -fig, (ax0, ax1) = plt.subplots(2, 1) - -c = ax0.pcolor(X, Y, Z, - norm=LogNorm(vmin=Z.min(), vmax=Z.max()), cmap='PuBu_r') -fig.colorbar(c, ax=ax0) - -c = ax1.pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(c, ax=ax1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pcolor -matplotlib.pyplot.pcolor -matplotlib.axes.Axes.pcolormesh -matplotlib.pyplot.pcolormesh -matplotlib.axes.Axes.pcolorfast -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.LogNorm diff --git a/_downloads/a84b620cf1a5ec99a23a2daa442f09b0/bachelors_degrees_by_gender.ipynb b/_downloads/a84b620cf1a5ec99a23a2daa442f09b0/bachelors_degrees_by_gender.ipynb deleted file mode 100644 index 0166b5bf8da..00000000000 --- a/_downloads/a84b620cf1a5ec99a23a2daa442f09b0/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n============================\nBachelor's degrees by gender\n============================\n\nA graph of multiple time series which demonstrates extensive custom\nstyling of plot frame, tick lines and labels, and line graph properties.\n\nAlso demonstrates the custom placement of text labels along the right edge\nas an alternative to a conventional legend.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.cbook import get_sample_data\n\n\nfname = get_sample_data('percent_bachelors_degrees_women_usa.csv',\n asfileobj=False)\ngender_degree_data = np.genfromtxt(fname, delimiter=',', names=True)\n\n# You typically want your plot to be ~1.33x wider than tall. This plot\n# is a rare exception because of the number of lines being plotted on it.\n# Common sizes: (10, 7.5) and (12, 9)\nfig, ax = plt.subplots(1, 1, figsize=(12, 14))\n\n# These are the colors that will be used in the plot\nax.set_prop_cycle(color=[\n '#1f77b4', '#aec7e8', '#ff7f0e', '#ffbb78', '#2ca02c', '#98df8a',\n '#d62728', '#ff9896', '#9467bd', '#c5b0d5', '#8c564b', '#c49c94',\n '#e377c2', '#f7b6d2', '#7f7f7f', '#c7c7c7', '#bcbd22', '#dbdb8d',\n '#17becf', '#9edae5'])\n\n# Remove the plot frame lines. They are unnecessary here.\nax.spines['top'].set_visible(False)\nax.spines['bottom'].set_visible(False)\nax.spines['right'].set_visible(False)\nax.spines['left'].set_visible(False)\n\n# Ensure that the axis ticks only show up on the bottom and left of the plot.\n# Ticks on the right and top of the plot are generally unnecessary.\nax.get_xaxis().tick_bottom()\nax.get_yaxis().tick_left()\n\nfig.subplots_adjust(left=.06, right=.75, bottom=.02, top=.94)\n# Limit the range of the plot to only where the data is.\n# Avoid unnecessary whitespace.\nax.set_xlim(1969.5, 2011.1)\nax.set_ylim(-0.25, 90)\n\n# Set a fixed location and format for ticks.\nax.set_xticks(range(1970, 2011, 10))\nax.set_yticks(range(0, 91, 10))\nax.xaxis.set_major_formatter(plt.FuncFormatter('{:.0f}'.format))\nax.yaxis.set_major_formatter(plt.FuncFormatter('{:.0f}%'.format))\n\n# Provide tick lines across the plot to help your viewers trace along\n# the axis ticks. Make sure that the lines are light and small so they\n# don't obscure the primary data lines.\nax.grid(True, 'major', 'y', ls='--', lw=.5, c='k', alpha=.3)\n\n# Remove the tick marks; they are unnecessary with the tick lines we just\n# plotted. Make sure your axis ticks are large enough to be easily read.\n# You don't want your viewers squinting to read your plot.\nax.tick_params(axis='both', which='both', labelsize=14,\n bottom=False, top=False, labelbottom=True,\n left=False, right=False, labelleft=True)\n\n# Now that the plot is prepared, it's time to actually plot the data!\n# Note that I plotted the majors in order of the highest % in the final year.\nmajors = ['Health Professions', 'Public Administration', 'Education',\n 'Psychology', 'Foreign Languages', 'English',\n 'Communications\\nand Journalism', 'Art and Performance', 'Biology',\n 'Agriculture', 'Social Sciences and History', 'Business',\n 'Math and Statistics', 'Architecture', 'Physical Sciences',\n 'Computer Science', 'Engineering']\n\ny_offsets = {'Foreign Languages': 0.5, 'English': -0.5,\n 'Communications\\nand Journalism': 0.75,\n 'Art and Performance': -0.25, 'Agriculture': 1.25,\n 'Social Sciences and History': 0.25, 'Business': -0.75,\n 'Math and Statistics': 0.75, 'Architecture': -0.75,\n 'Computer Science': 0.75, 'Engineering': -0.25}\n\nfor column in majors:\n # Plot each line separately with its own color.\n column_rec_name = column.replace('\\n', '_').replace(' ', '_')\n\n line, = ax.plot('Year', column_rec_name, data=gender_degree_data,\n lw=2.5)\n\n # Add a text label to the right end of every line. Most of the code below\n # is adding specific offsets y position because some labels overlapped.\n y_pos = gender_degree_data[column_rec_name][-1] - 0.5\n\n if column in y_offsets:\n y_pos += y_offsets[column]\n\n # Again, make sure that all labels are large enough to be easily read\n # by the viewer.\n ax.text(2011.5, y_pos, column, fontsize=14, color=line.get_color())\n\n# Make the title big enough so it spans the entire plot, but don't make it\n# so big that it requires two lines to show.\n\n# Note that if the title is descriptive enough, it is unnecessary to include\n# axis labels; they are self-evident, in this plot's case.\nfig.suptitle('Percentage of Bachelor\\'s degrees conferred to women in '\n 'the U.S.A. by major (1970-2011)\\n', fontsize=18, ha='center')\n\n# Finally, save the figure as a PNG.\n# You can also save it as a PDF, JPEG, etc.\n# Just change the file extension in this call.\n# fig.savefig('percent-bachelors-degrees-women-usa.png', bbox_inches='tight')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a84c7dd2407d09a2d6b3c31bec6fead1/multicursor.py b/_downloads/a84c7dd2407d09a2d6b3c31bec6fead1/multicursor.py deleted file mode 120000 index 72d059fa5ea..00000000000 --- a/_downloads/a84c7dd2407d09a2d6b3c31bec6fead1/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a84c7dd2407d09a2d6b3c31bec6fead1/multicursor.py \ No newline at end of file diff --git a/_downloads/a84eaf18062c58072ccd1d7b22452cdf/subplots_demo.py b/_downloads/a84eaf18062c58072ccd1d7b22452cdf/subplots_demo.py deleted file mode 120000 index 96a4bff2881..00000000000 --- a/_downloads/a84eaf18062c58072ccd1d7b22452cdf/subplots_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a84eaf18062c58072ccd1d7b22452cdf/subplots_demo.py \ No newline at end of file diff --git a/_downloads/a8599c3a693c49cc53ea4468396f2061/parasite_simple2.py b/_downloads/a8599c3a693c49cc53ea4468396f2061/parasite_simple2.py deleted file mode 100644 index cbf768e892c..00000000000 --- a/_downloads/a8599c3a693c49cc53ea4468396f2061/parasite_simple2.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -================ -Parasite Simple2 -================ - -""" -import matplotlib.transforms as mtransforms -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.parasite_axes import SubplotHost - -obs = [["01_S1", 3.88, 0.14, 1970, 63], - ["01_S4", 5.6, 0.82, 1622, 150], - ["02_S1", 2.4, 0.54, 1570, 40], - ["03_S1", 4.1, 0.62, 2380, 170]] - - -fig = plt.figure() - -ax_kms = SubplotHost(fig, 1, 1, 1, aspect=1.) - -# angular proper motion("/yr) to linear velocity(km/s) at distance=2.3kpc -pm_to_kms = 1./206265.*2300*3.085e18/3.15e7/1.e5 - -aux_trans = mtransforms.Affine2D().scale(pm_to_kms, 1.) -ax_pm = ax_kms.twin(aux_trans) -ax_pm.set_viewlim_mode("transform") - -fig.add_subplot(ax_kms) - -for n, ds, dse, w, we in obs: - time = ((2007 + (10. + 4/30.)/12) - 1988.5) - v = ds / time * pm_to_kms - ve = dse / time * pm_to_kms - ax_kms.errorbar([v], [w], xerr=[ve], yerr=[we], color="k") - - -ax_kms.axis["bottom"].set_label("Linear velocity at 2.3 kpc [km/s]") -ax_kms.axis["left"].set_label("FWHM [km/s]") -ax_pm.axis["top"].set_label(r"Proper Motion [$''$/yr]") -ax_pm.axis["top"].label.set_visible(True) -ax_pm.axis["right"].major_ticklabels.set_visible(False) - -ax_kms.set_xlim(950, 3700) -ax_kms.set_ylim(950, 3100) -# xlim and ylim of ax_pms will be automatically adjusted. - -plt.show() diff --git a/_downloads/a85e5fc29d57dc762b838fc6e882fb59/contour3d_2.py b/_downloads/a85e5fc29d57dc762b838fc6e882fb59/contour3d_2.py deleted file mode 120000 index eb7afceee0f..00000000000 --- a/_downloads/a85e5fc29d57dc762b838fc6e882fb59/contour3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a85e5fc29d57dc762b838fc6e882fb59/contour3d_2.py \ No newline at end of file diff --git a/_downloads/a8601f880303b4fa3cb6b0ccb2a3298c/dynamic_image.ipynb b/_downloads/a8601f880303b4fa3cb6b0ccb2a3298c/dynamic_image.ipynb deleted file mode 120000 index 69b850a39a8..00000000000 --- a/_downloads/a8601f880303b4fa3cb6b0ccb2a3298c/dynamic_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a8601f880303b4fa3cb6b0ccb2a3298c/dynamic_image.ipynb \ No newline at end of file diff --git a/_downloads/a8609256a5873379ca77fa4ba565c45e/topographic_hillshading.py b/_downloads/a8609256a5873379ca77fa4ba565c45e/topographic_hillshading.py deleted file mode 100644 index cd197e09af7..00000000000 --- a/_downloads/a8609256a5873379ca77fa4ba565c45e/topographic_hillshading.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -======================= -Topographic hillshading -======================= - -Demonstrates the visual effect of varying blend mode and vertical exaggeration -on "hillshaded" plots. - -Note that the "overlay" and "soft" blend modes work well for complex surfaces -such as this example, while the default "hsv" blend mode works best for smooth -surfaces such as many mathematical functions. - -In most cases, hillshading is used purely for visual purposes, and *dx*/*dy* -can be safely ignored. In that case, you can tweak *vert_exag* (vertical -exaggeration) by trial and error to give the desired visual effect. However, -this example demonstrates how to use the *dx* and *dy* kwargs to ensure that -the *vert_exag* parameter is the true vertical exaggeration. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.cbook import get_sample_data -from matplotlib.colors import LightSource - - -with np.load(get_sample_data('jacksboro_fault_dem.npz')) as dem: - z = dem['elevation'] - - #-- Optional dx and dy for accurate vertical exaggeration ---------------- - # If you need topographically accurate vertical exaggeration, or you don't - # want to guess at what *vert_exag* should be, you'll need to specify the - # cellsize of the grid (i.e. the *dx* and *dy* parameters). Otherwise, any - # *vert_exag* value you specify will be relative to the grid spacing of - # your input data (in other words, *dx* and *dy* default to 1.0, and - # *vert_exag* is calculated relative to those parameters). Similarly, *dx* - # and *dy* are assumed to be in the same units as your input z-values. - # Therefore, we'll need to convert the given dx and dy from decimal degrees - # to meters. - dx, dy = dem['dx'], dem['dy'] - dy = 111200 * dy - dx = 111200 * dx * np.cos(np.radians(dem['ymin'])) - #------------------------------------------------------------------------- - -# Shade from the northwest, with the sun 45 degrees from horizontal -ls = LightSource(azdeg=315, altdeg=45) -cmap = plt.cm.gist_earth - -fig, axes = plt.subplots(nrows=4, ncols=3, figsize=(8, 9)) -plt.setp(axes.flat, xticks=[], yticks=[]) - -# Vary vertical exaggeration and blend mode and plot all combinations -for col, ve in zip(axes.T, [0.1, 1, 10]): - # Show the hillshade intensity image in the first row - col[0].imshow(ls.hillshade(z, vert_exag=ve, dx=dx, dy=dy), cmap='gray') - - # Place hillshaded plots with different blend modes in the rest of the rows - for ax, mode in zip(col[1:], ['hsv', 'overlay', 'soft']): - rgb = ls.shade(z, cmap=cmap, blend_mode=mode, - vert_exag=ve, dx=dx, dy=dy) - ax.imshow(rgb) - -# Label rows and columns -for ax, ve in zip(axes[0], [0.1, 1, 10]): - ax.set_title('{0}'.format(ve), size=18) -for ax, mode in zip(axes[:, 0], ['Hillshade', 'hsv', 'overlay', 'soft']): - ax.set_ylabel(mode, size=18) - -# Group labels... -axes[0, 1].annotate('Vertical Exaggeration', (0.5, 1), xytext=(0, 30), - textcoords='offset points', xycoords='axes fraction', - ha='center', va='bottom', size=20) -axes[2, 0].annotate('Blend Mode', (0, 0.5), xytext=(-30, 0), - textcoords='offset points', xycoords='axes fraction', - ha='right', va='center', size=20, rotation=90) -fig.subplots_adjust(bottom=0.05, right=0.95) - -plt.show() diff --git a/_downloads/a8670dc8c6de9e6cf99d7ee33c5252f7/subplot.py b/_downloads/a8670dc8c6de9e6cf99d7ee33c5252f7/subplot.py deleted file mode 120000 index cfc40c13635..00000000000 --- a/_downloads/a8670dc8c6de9e6cf99d7ee33c5252f7/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a8670dc8c6de9e6cf99d7ee33c5252f7/subplot.py \ No newline at end of file diff --git a/_downloads/a868d13269c13e81289a98f5341c51a2/errorbar_limits.py b/_downloads/a868d13269c13e81289a98f5341c51a2/errorbar_limits.py deleted file mode 100644 index 15d3d99dd30..00000000000 --- a/_downloads/a868d13269c13e81289a98f5341c51a2/errorbar_limits.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -============================================== -Including upper and lower limits in error bars -============================================== - -In matplotlib, errors bars can have "limits". Applying limits to the -error bars essentially makes the error unidirectional. Because of that, -upper and lower limits can be applied in both the y- and x-directions -via the ``uplims``, ``lolims``, ``xuplims``, and ``xlolims`` parameters, -respectively. These parameters can be scalar or boolean arrays. - -For example, if ``xlolims`` is ``True``, the x-error bars will only -extend from the data towards increasing values. If ``uplims`` is an -array filled with ``False`` except for the 4th and 7th values, all of the -y-error bars will be bidirectional, except the 4th and 7th bars, which -will extend from the data towards decreasing y-values. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.array([0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0]) -y = np.exp(-x) -xerr = 0.1 -yerr = 0.2 - -# lower & upper limits of the error -lolims = np.array([0, 0, 1, 0, 1, 0, 0, 0, 1, 0], dtype=bool) -uplims = np.array([0, 1, 0, 0, 0, 1, 0, 0, 0, 1], dtype=bool) -ls = 'dotted' - -fig, ax = plt.subplots(figsize=(7, 4)) - -# standard error bars -ax.errorbar(x, y, xerr=xerr, yerr=yerr, linestyle=ls) - -# including upper limits -ax.errorbar(x, y + 0.5, xerr=xerr, yerr=yerr, uplims=uplims, - linestyle=ls) - -# including lower limits -ax.errorbar(x, y + 1.0, xerr=xerr, yerr=yerr, lolims=lolims, - linestyle=ls) - -# including upper and lower limits -ax.errorbar(x, y + 1.5, xerr=xerr, yerr=yerr, - lolims=lolims, uplims=uplims, - marker='o', markersize=8, - linestyle=ls) - -# Plot a series with lower and upper limits in both x & y -# constant x-error with varying y-error -xerr = 0.2 -yerr = np.zeros_like(x) + 0.2 -yerr[[3, 6]] = 0.3 - -# mock up some limits by modifying previous data -xlolims = lolims -xuplims = uplims -lolims = np.zeros(x.shape) -uplims = np.zeros(x.shape) -lolims[[6]] = True # only limited at this index -uplims[[3]] = True # only limited at this index - -# do the plotting -ax.errorbar(x, y + 2.1, xerr=xerr, yerr=yerr, - xlolims=xlolims, xuplims=xuplims, - uplims=uplims, lolims=lolims, - marker='o', markersize=8, - linestyle='none') - -# tidy up the figure -ax.set_xlim((0, 5.5)) -ax.set_title('Errorbar upper and lower limits') -plt.show() diff --git a/_downloads/a87053b9ef314e649d2c494c2d811a27/colormap_normalizations_lognorm.ipynb b/_downloads/a87053b9ef314e649d2c494c2d811a27/colormap_normalizations_lognorm.ipynb deleted file mode 120000 index b16210ef8b6..00000000000 --- a/_downloads/a87053b9ef314e649d2c494c2d811a27/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/a87053b9ef314e649d2c494c2d811a27/colormap_normalizations_lognorm.ipynb \ No newline at end of file diff --git a/_downloads/a87af5b1ed6c2252da3cf048c7016b3c/quiver3d.py b/_downloads/a87af5b1ed6c2252da3cf048c7016b3c/quiver3d.py deleted file mode 120000 index 6bab227d360..00000000000 --- a/_downloads/a87af5b1ed6c2252da3cf048c7016b3c/quiver3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a87af5b1ed6c2252da3cf048c7016b3c/quiver3d.py \ No newline at end of file diff --git a/_downloads/a883dce78e0870655211374a41275631/centered_ticklabels.ipynb b/_downloads/a883dce78e0870655211374a41275631/centered_ticklabels.ipynb deleted file mode 120000 index 1457103b449..00000000000 --- a/_downloads/a883dce78e0870655211374a41275631/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a883dce78e0870655211374a41275631/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/a894efeb528392696858bd21ccb30446/markevery_demo.ipynb b/_downloads/a894efeb528392696858bd21ccb30446/markevery_demo.ipynb deleted file mode 100644 index 18a9324b4f4..00000000000 --- a/_downloads/a894efeb528392696858bd21ccb30446/markevery_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Markevery Demo\n\n\nThis example demonstrates the various options for showing a marker at a\nsubset of data points using the ``markevery`` property of a Line2D object.\n\nInteger arguments are fairly intuitive. e.g. ``markevery=5`` will plot every\n5th marker starting from the first data point.\n\nFloat arguments allow markers to be spaced at approximately equal distances\nalong the line. The theoretical distance along the line between markers is\ndetermined by multiplying the display-coordinate distance of the axes\nbounding-box diagonal by the value of ``markevery``. The data points closest\nto the theoretical distances will be shown.\n\nA slice or list/array can also be used with ``markevery`` to specify the\nmarkers to show.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\n\n# define a list of markevery cases to plot\ncases = [None,\n 8,\n (30, 8),\n [16, 24, 30], [0, -1],\n slice(100, 200, 3),\n 0.1, 0.3, 1.5,\n (0.0, 0.1), (0.45, 0.1)]\n\n# define the figure size and grid layout properties\nfigsize = (10, 8)\ncols = 3\nrows = len(cases) // cols + 1\n# define the data for cartesian plots\ndelta = 0.11\nx = np.linspace(0, 10 - 2 * delta, 200) + delta\ny = np.sin(x) + 1.0 + delta\n\n\ndef trim_axs(axs, N):\n \"\"\"little helper to massage the axs list to have correct length...\"\"\"\n axs = axs.flat\n for ax in axs[N:]:\n ax.remove()\n return axs[:N]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for linear x and y scales\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.plot(x, y, 'o', ls='-', ms=4, markevery=case)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for log x and y scales\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.set_xscale('log')\n ax.set_yscale('log')\n ax.plot(x, y, 'o', ls='-', ms=4, markevery=case)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for linear x and y scales but zoomed in\nnote the behaviour when zoomed in. When a start marker offset is specified\nit is always interpreted with respect to the first data point which might be\ndifferent to the first visible data point.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig3, axs = plt.subplots(rows, cols, figsize=figsize, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.plot(x, y, 'o', ls='-', ms=4, markevery=case)\n ax.set_xlim((6, 6.7))\n ax.set_ylim((1.1, 1.7))\n\n# define data for polar plots\nr = np.linspace(0, 3.0, 200)\ntheta = 2 * np.pi * r" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot each markevery case for polar plots\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig4, axs = plt.subplots(rows, cols, figsize=figsize,\n subplot_kw={'projection': 'polar'}, constrained_layout=True)\naxs = trim_axs(axs, len(cases))\nfor ax, case in zip(axs, cases):\n ax.set_title('markevery=%s' % str(case))\n ax.plot(theta, r, 'o', ls='-', ms=4, markevery=case)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a8a4c48f092bdd31a3e94fd9479460b7/contour_manual.ipynb b/_downloads/a8a4c48f092bdd31a3e94fd9479460b7/contour_manual.ipynb deleted file mode 120000 index 03eced9280a..00000000000 --- a/_downloads/a8a4c48f092bdd31a3e94fd9479460b7/contour_manual.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a8a4c48f092bdd31a3e94fd9479460b7/contour_manual.ipynb \ No newline at end of file diff --git a/_downloads/a8a4e38070d9d3557ec163466d2ae722/axhspan_demo.py b/_downloads/a8a4e38070d9d3557ec163466d2ae722/axhspan_demo.py deleted file mode 120000 index bc6efa3c9ca..00000000000 --- a/_downloads/a8a4e38070d9d3557ec163466d2ae722/axhspan_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a8a4e38070d9d3557ec163466d2ae722/axhspan_demo.py \ No newline at end of file diff --git a/_downloads/a8a6690d6dc98c75dc3cf3951d2dc2a8/anchored_artists.py b/_downloads/a8a6690d6dc98c75dc3cf3951d2dc2a8/anchored_artists.py deleted file mode 120000 index e3b2af2c9cf..00000000000 --- a/_downloads/a8a6690d6dc98c75dc3cf3951d2dc2a8/anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a8a6690d6dc98c75dc3cf3951d2dc2a8/anchored_artists.py \ No newline at end of file diff --git a/_downloads/a8aa78a66c6cdcf508674f2094dc2521/text3d.py b/_downloads/a8aa78a66c6cdcf508674f2094dc2521/text3d.py deleted file mode 120000 index 94d10504256..00000000000 --- a/_downloads/a8aa78a66c6cdcf508674f2094dc2521/text3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a8aa78a66c6cdcf508674f2094dc2521/text3d.py \ No newline at end of file diff --git a/_downloads/a8bd0757245ba38be81720b8458f1450/auto_subplots_adjust.py b/_downloads/a8bd0757245ba38be81720b8458f1450/auto_subplots_adjust.py deleted file mode 100644 index e6eb620168a..00000000000 --- a/_downloads/a8bd0757245ba38be81720b8458f1450/auto_subplots_adjust.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -==================== -Auto Subplots Adjust -==================== - -Automatically adjust subplot parameters. This example shows a way to determine -a subplot parameter from the extent of the ticklabels using a callback on the -:doc:`draw_event`. - -Note that a similar result would be achieved using `~.Figure.tight_layout` -or `~.Figure.constrained_layout`; this example shows how one could customize -the subplot parameter adjustment. -""" -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms -fig, ax = plt.subplots() -ax.plot(range(10)) -ax.set_yticks((2,5,7)) -labels = ax.set_yticklabels(('really, really, really', 'long', 'labels')) - -def on_draw(event): - bboxes = [] - for label in labels: - bbox = label.get_window_extent() - # the figure transform goes from relative coords->pixels and we - # want the inverse of that - bboxi = bbox.inverse_transformed(fig.transFigure) - bboxes.append(bboxi) - - # this is the bbox that bounds all the bboxes, again in relative - # figure coords - bbox = mtransforms.Bbox.union(bboxes) - if fig.subplotpars.left < bbox.width: - # we need to move it over - fig.subplots_adjust(left=1.1*bbox.width) # pad a little - fig.canvas.draw() - return False - -fig.canvas.mpl_connect('draw_event', on_draw) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.artist.Artist.get_window_extent -matplotlib.transforms.Bbox -matplotlib.transforms.Bbox.inverse_transformed -matplotlib.transforms.Bbox.union -matplotlib.figure.Figure.subplots_adjust -matplotlib.figure.SubplotParams -matplotlib.backend_bases.FigureCanvasBase.mpl_connect diff --git a/_downloads/a8be6712d0570215d851f71e8351fa21/poly_editor.ipynb b/_downloads/a8be6712d0570215d851f71e8351fa21/poly_editor.ipynb deleted file mode 120000 index 5bd59c40dc2..00000000000 --- a/_downloads/a8be6712d0570215d851f71e8351fa21/poly_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a8be6712d0570215d851f71e8351fa21/poly_editor.ipynb \ No newline at end of file diff --git a/_downloads/a8c08470ce2a44c17f3d402409658d9c/usage.py b/_downloads/a8c08470ce2a44c17f3d402409658d9c/usage.py deleted file mode 120000 index 4c1a228cde8..00000000000 --- a/_downloads/a8c08470ce2a44c17f3d402409658d9c/usage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a8c08470ce2a44c17f3d402409658d9c/usage.py \ No newline at end of file diff --git a/_downloads/a8cb20968947b42b89b3a145bbcd9214/simple_axesgrid2.py b/_downloads/a8cb20968947b42b89b3a145bbcd9214/simple_axesgrid2.py deleted file mode 120000 index f7cc917b44f..00000000000 --- a/_downloads/a8cb20968947b42b89b3a145bbcd9214/simple_axesgrid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a8cb20968947b42b89b3a145bbcd9214/simple_axesgrid2.py \ No newline at end of file diff --git a/_downloads/a8cbe72430ecb3760af38837e6e597f3/whats_new_99_mplot3d.py b/_downloads/a8cbe72430ecb3760af38837e6e597f3/whats_new_99_mplot3d.py deleted file mode 120000 index 4f000546fd5..00000000000 --- a/_downloads/a8cbe72430ecb3760af38837e6e597f3/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a8cbe72430ecb3760af38837e6e597f3/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/_downloads/a8ce6397826218361554600551dc73c9/embedding_in_wx2_sgskip.py b/_downloads/a8ce6397826218361554600551dc73c9/embedding_in_wx2_sgskip.py deleted file mode 120000 index 637f69e57a9..00000000000 --- a/_downloads/a8ce6397826218361554600551dc73c9/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a8ce6397826218361554600551dc73c9/embedding_in_wx2_sgskip.py \ No newline at end of file diff --git a/_downloads/a8d5bac11ec12d0b427aff5d476f12c1/ginput_manual_clabel_sgskip.py b/_downloads/a8d5bac11ec12d0b427aff5d476f12c1/ginput_manual_clabel_sgskip.py deleted file mode 120000 index f5a02bd1732..00000000000 --- a/_downloads/a8d5bac11ec12d0b427aff5d476f12c1/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a8d5bac11ec12d0b427aff5d476f12c1/ginput_manual_clabel_sgskip.py \ No newline at end of file diff --git a/_downloads/a8e5fc364a983e914806afbcf93e8147/colorbar_only.py b/_downloads/a8e5fc364a983e914806afbcf93e8147/colorbar_only.py deleted file mode 100644 index 9f9f3e948ec..00000000000 --- a/_downloads/a8e5fc364a983e914806afbcf93e8147/colorbar_only.py +++ /dev/null @@ -1,110 +0,0 @@ -""" -============================= -Customized Colorbars Tutorial -============================= - -This tutorial shows how to build colorbars without an attached plot. - -Customized Colorbars -==================== - -`~matplotlib.colorbar.ColorbarBase` puts a colorbar in a specified axes, -and can make a colorbar for a given colormap; it does not need a mappable -object like an image. In this tutorial we will explore what can be done with -standalone colorbar. - -Basic continuous colorbar -------------------------- - -Set the colormap and norm to correspond to the data for which the colorbar -will be used. Then create the colorbar by calling -:class:`~matplotlib.colorbar.ColorbarBase` and specify axis, colormap, norm -and orientation as parameters. Here we create a basic continuous colorbar -with ticks and labels. For more information see the -:mod:`~matplotlib.colorbar` API. -""" - -import matplotlib.pyplot as plt -import matplotlib as mpl - -fig, ax = plt.subplots(figsize=(6, 1)) -fig.subplots_adjust(bottom=0.5) - -cmap = mpl.cm.cool -norm = mpl.colors.Normalize(vmin=5, vmax=10) - -cb1 = mpl.colorbar.ColorbarBase(ax, cmap=cmap, - norm=norm, - orientation='horizontal') -cb1.set_label('Some Units') -fig.show() - -############################################################################### -# Discrete intervals colorbar -# --------------------------- -# -# The second example illustrates the use of a -# :class:`~matplotlib.colors.ListedColormap` which generates a colormap from a -# set of listed colors, :func:`colors.BoundaryNorm` which generates a colormap -# index based on discrete intervals and extended ends to show the "over" and -# "under" value colors. Over and under are used to display data outside of the -# normalized [0,1] range. Here we pass colors as gray shades as a string -# encoding a float in the 0-1 range. -# -# If a :class:`~matplotlib.colors.ListedColormap` is used, the length of the -# bounds array must be one greater than the length of the color list. The -# bounds must be monotonically increasing. -# -# This time we pass some more arguments in addition to previous arguments to -# :class:`~matplotlib.colorbar.ColorbarBase`. For the out-of-range values to -# display on the colorbar, we have to use the *extend* keyword argument. To use -# *extend*, you must specify two extra boundaries. Finally spacing argument -# ensures that intervals are shown on colorbar proportionally. - -fig, ax = plt.subplots(figsize=(6, 1)) -fig.subplots_adjust(bottom=0.5) - -cmap = mpl.colors.ListedColormap(['red', 'green', 'blue', 'cyan']) -cmap.set_over('0.25') -cmap.set_under('0.75') - -bounds = [1, 2, 4, 7, 8] -norm = mpl.colors.BoundaryNorm(bounds, cmap.N) -cb2 = mpl.colorbar.ColorbarBase(ax, cmap=cmap, - norm=norm, - boundaries=[0] + bounds + [13], - extend='both', - ticks=bounds, - spacing='proportional', - orientation='horizontal') -cb2.set_label('Discrete intervals, some other units') -fig.show() - -############################################################################### -# Colorbar with custom extension lengths -# -------------------------------------- -# -# Here we illustrate the use of custom length colorbar extensions, used on a -# colorbar with discrete intervals. To make the length of each extension the -# same as the length of the interior colors, use ``extendfrac='auto'``. - -fig, ax = plt.subplots(figsize=(6, 1)) -fig.subplots_adjust(bottom=0.5) - -cmap = mpl.colors.ListedColormap(['royalblue', 'cyan', - 'yellow', 'orange']) -cmap.set_over('red') -cmap.set_under('blue') - -bounds = [-1.0, -0.5, 0.0, 0.5, 1.0] -norm = mpl.colors.BoundaryNorm(bounds, cmap.N) -cb3 = mpl.colorbar.ColorbarBase(ax, cmap=cmap, - norm=norm, - boundaries=[-10] + bounds + [10], - extend='both', - extendfrac='auto', - ticks=bounds, - spacing='uniform', - orientation='horizontal') -cb3.set_label('Custom extension lengths, some other units') -fig.show() diff --git a/_downloads/a8e8de96fa3a236e0ee62c5e780d2ec2/demo_gridspec03.py b/_downloads/a8e8de96fa3a236e0ee62c5e780d2ec2/demo_gridspec03.py deleted file mode 100644 index 9dfd5f479f2..00000000000 --- a/_downloads/a8e8de96fa3a236e0ee62c5e780d2ec2/demo_gridspec03.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -============= -GridSpec demo -============= - -This example demonstrates the use of `GridSpec` to generate subplots, -the control of the relative sizes of subplots with *width_ratios* and -*height_ratios*, and the control of the spacing around and between subplots -using subplot params (*left*, *right*, *bottom*, *top*, *wspace*, and -*hspace*). -""" - -import matplotlib.pyplot as plt -from matplotlib.gridspec import GridSpec - - -def annotate_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - - -fig = plt.figure() -fig.suptitle("Controlling subplot sizes with width_ratios and height_ratios") - -gs = GridSpec(2, 2, width_ratios=[1, 2], height_ratios=[4, 1]) -ax1 = fig.add_subplot(gs[0]) -ax2 = fig.add_subplot(gs[1]) -ax3 = fig.add_subplot(gs[2]) -ax4 = fig.add_subplot(gs[3]) - -annotate_axes(fig) - - -fig = plt.figure() -fig.suptitle("Controlling spacing around and between subplots") - -gs1 = GridSpec(3, 3, left=0.05, right=0.48, wspace=0.05) -ax1 = fig.add_subplot(gs1[:-1, :]) -ax2 = fig.add_subplot(gs1[-1, :-1]) -ax3 = fig.add_subplot(gs1[-1, -1]) - -gs2 = GridSpec(3, 3, left=0.55, right=0.98, hspace=0.05) -ax4 = fig.add_subplot(gs2[:, :-1]) -ax5 = fig.add_subplot(gs2[:-1, -1]) -ax6 = fig.add_subplot(gs2[-1, -1]) - -annotate_axes(fig) - -plt.show() diff --git a/_downloads/a8e8f51dcdba966c6402f262c09cba2d/table_demo.py b/_downloads/a8e8f51dcdba966c6402f262c09cba2d/table_demo.py deleted file mode 120000 index 299af609bd3..00000000000 --- a/_downloads/a8e8f51dcdba966c6402f262c09cba2d/table_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a8e8f51dcdba966c6402f262c09cba2d/table_demo.py \ No newline at end of file diff --git a/_downloads/a8ede04497f712c97139c9ce698e9018/boxplot_demo.ipynb b/_downloads/a8ede04497f712c97139c9ce698e9018/boxplot_demo.ipynb deleted file mode 120000 index 2c216f22c97..00000000000 --- a/_downloads/a8ede04497f712c97139c9ce698e9018/boxplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a8ede04497f712c97139c9ce698e9018/boxplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/a8f1b2e71374b8c8bf153cf7023ba5a9/create_subplots.py b/_downloads/a8f1b2e71374b8c8bf153cf7023ba5a9/create_subplots.py deleted file mode 120000 index e9e69c12238..00000000000 --- a/_downloads/a8f1b2e71374b8c8bf153cf7023ba5a9/create_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a8f1b2e71374b8c8bf153cf7023ba5a9/create_subplots.py \ No newline at end of file diff --git a/_downloads/a8f322426d29af69819a2e879ab11f10/quadmesh_demo.ipynb b/_downloads/a8f322426d29af69819a2e879ab11f10/quadmesh_demo.ipynb deleted file mode 120000 index 3aa4568a147..00000000000 --- a/_downloads/a8f322426d29af69819a2e879ab11f10/quadmesh_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a8f322426d29af69819a2e879ab11f10/quadmesh_demo.ipynb \ No newline at end of file diff --git a/_downloads/a8f5c9e539642c291feddc3fad0d73f8/tick_xlabel_top.py b/_downloads/a8f5c9e539642c291feddc3fad0d73f8/tick_xlabel_top.py deleted file mode 120000 index 4503f4d9d1e..00000000000 --- a/_downloads/a8f5c9e539642c291feddc3fad0d73f8/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a8f5c9e539642c291feddc3fad0d73f8/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/a8f81680f5392f79c832534ab3444007/wire3d_zero_stride.py b/_downloads/a8f81680f5392f79c832534ab3444007/wire3d_zero_stride.py deleted file mode 120000 index 6a98d71ad58..00000000000 --- a/_downloads/a8f81680f5392f79c832534ab3444007/wire3d_zero_stride.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a8f81680f5392f79c832534ab3444007/wire3d_zero_stride.py \ No newline at end of file diff --git a/_downloads/a8fd087b61faf73fc6e85bad7fc84bce/whats_new_99_axes_grid.py b/_downloads/a8fd087b61faf73fc6e85bad7fc84bce/whats_new_99_axes_grid.py deleted file mode 120000 index af34db6e1c9..00000000000 --- a/_downloads/a8fd087b61faf73fc6e85bad7fc84bce/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a8fd087b61faf73fc6e85bad7fc84bce/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/_downloads/a8fd400ddef43e41e60dd2a0aa3216d7/fig_x.py b/_downloads/a8fd400ddef43e41e60dd2a0aa3216d7/fig_x.py deleted file mode 120000 index 30e70ca527c..00000000000 --- a/_downloads/a8fd400ddef43e41e60dd2a0aa3216d7/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a8fd400ddef43e41e60dd2a0aa3216d7/fig_x.py \ No newline at end of file diff --git a/_downloads/a90a6e3bed9aa2449c8b677578472fe3/multiprocess_sgskip.ipynb b/_downloads/a90a6e3bed9aa2449c8b677578472fe3/multiprocess_sgskip.ipynb deleted file mode 120000 index 8b0c3b81801..00000000000 --- a/_downloads/a90a6e3bed9aa2449c8b677578472fe3/multiprocess_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a90a6e3bed9aa2449c8b677578472fe3/multiprocess_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/a924a5a0c2bc2d209651ab2c531a6915/wire3d.py b/_downloads/a924a5a0c2bc2d209651ab2c531a6915/wire3d.py deleted file mode 120000 index 20e40c384ac..00000000000 --- a/_downloads/a924a5a0c2bc2d209651ab2c531a6915/wire3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a924a5a0c2bc2d209651ab2c531a6915/wire3d.py \ No newline at end of file diff --git a/_downloads/a9386c7a1b581ff588a09ed8ba570de0/demo_tight_layout.py b/_downloads/a9386c7a1b581ff588a09ed8ba570de0/demo_tight_layout.py deleted file mode 120000 index 60c94c7596d..00000000000 --- a/_downloads/a9386c7a1b581ff588a09ed8ba570de0/demo_tight_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a9386c7a1b581ff588a09ed8ba570de0/demo_tight_layout.py \ No newline at end of file diff --git a/_downloads/a93afc7bcf04287ee772fa56af4c17d1/symlog_demo.py b/_downloads/a93afc7bcf04287ee772fa56af4c17d1/symlog_demo.py deleted file mode 100644 index 0c27ba35e69..00000000000 --- a/_downloads/a93afc7bcf04287ee772fa56af4c17d1/symlog_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=========== -Symlog Demo -=========== - -Example use of symlog (symmetric log) axis scaling. -""" -import matplotlib.pyplot as plt -import numpy as np - -dt = 0.01 -x = np.arange(-50.0, 50.0, dt) -y = np.arange(0, 100.0, dt) - -plt.subplot(311) -plt.plot(x, y) -plt.xscale('symlog') -plt.ylabel('symlogx') -plt.grid(True) -plt.gca().xaxis.grid(True, which='minor') # minor grid on too - -plt.subplot(312) -plt.plot(y, x) -plt.yscale('symlog') -plt.ylabel('symlogy') - -plt.subplot(313) -plt.plot(x, np.sin(x / 3.0)) -plt.xscale('symlog') -plt.yscale('symlog', linthreshy=0.015) -plt.grid(True) -plt.ylabel('symlog both') - -plt.tight_layout() -plt.show() diff --git a/_downloads/a93b46fd0254ecd5f31e9e9e1ab1362b/hexbin_demo.py b/_downloads/a93b46fd0254ecd5f31e9e9e1ab1362b/hexbin_demo.py deleted file mode 120000 index b84626f8778..00000000000 --- a/_downloads/a93b46fd0254ecd5f31e9e9e1ab1362b/hexbin_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a93b46fd0254ecd5f31e9e9e1ab1362b/hexbin_demo.py \ No newline at end of file diff --git a/_downloads/a93e2a9fae55db6e893299f4f4cf7498/spines.py b/_downloads/a93e2a9fae55db6e893299f4f4cf7498/spines.py deleted file mode 120000 index e2f5ec19892..00000000000 --- a/_downloads/a93e2a9fae55db6e893299f4f4cf7498/spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a93e2a9fae55db6e893299f4f4cf7498/spines.py \ No newline at end of file diff --git a/_downloads/a944f273415b51d404ec28888d111cb5/fancytextbox_demo.ipynb b/_downloads/a944f273415b51d404ec28888d111cb5/fancytextbox_demo.ipynb deleted file mode 120000 index 4a3f67b308a..00000000000 --- a/_downloads/a944f273415b51d404ec28888d111cb5/fancytextbox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a944f273415b51d404ec28888d111cb5/fancytextbox_demo.ipynb \ No newline at end of file diff --git a/_downloads/a95e2cc0bf18d8f851ed2686aa6712bc/artists.py b/_downloads/a95e2cc0bf18d8f851ed2686aa6712bc/artists.py deleted file mode 100644 index 3362716a8c3..00000000000 --- a/_downloads/a95e2cc0bf18d8f851ed2686aa6712bc/artists.py +++ /dev/null @@ -1,668 +0,0 @@ -""" -=============== -Artist tutorial -=============== - -Using Artist objects to render on the canvas. - -There are three layers to the matplotlib API. - -* the :class:`matplotlib.backend_bases.FigureCanvas` is the area onto which - the figure is drawn -* the :class:`matplotlib.backend_bases.Renderer` is - the object which knows how to draw on the - :class:`~matplotlib.backend_bases.FigureCanvas` -* and the :class:`matplotlib.artist.Artist` is the object that knows how to use - a renderer to paint onto the canvas. - -The :class:`~matplotlib.backend_bases.FigureCanvas` and -:class:`~matplotlib.backend_bases.Renderer` handle all the details of -talking to user interface toolkits like `wxPython -`_ or drawing languages like PostScript®, and -the ``Artist`` handles all the high level constructs like representing -and laying out the figure, text, and lines. The typical user will -spend 95% of their time working with the ``Artists``. - -There are two types of ``Artists``: primitives and containers. The primitives -represent the standard graphical objects we want to paint onto our canvas: -:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.patches.Rectangle`, -:class:`~matplotlib.text.Text`, :class:`~matplotlib.image.AxesImage`, etc., and -the containers are places to put them (:class:`~matplotlib.axis.Axis`, -:class:`~matplotlib.axes.Axes` and :class:`~matplotlib.figure.Figure`). The -standard use is to create a :class:`~matplotlib.figure.Figure` instance, use -the ``Figure`` to create one or more :class:`~matplotlib.axes.Axes` or -:class:`~matplotlib.axes.Subplot` instances, and use the ``Axes`` instance -helper methods to create the primitives. In the example below, we create a -``Figure`` instance using :func:`matplotlib.pyplot.figure`, which is a -convenience method for instantiating ``Figure`` instances and connecting them -with your user interface or drawing toolkit ``FigureCanvas``. As we will -discuss below, this is not necessary -- you can work directly with PostScript, -PDF Gtk+, or wxPython ``FigureCanvas`` instances, instantiate your ``Figures`` -directly and connect them yourselves -- but since we are focusing here on the -``Artist`` API we'll let :mod:`~matplotlib.pyplot` handle some of those details -for us:: - - import matplotlib.pyplot as plt - fig = plt.figure() - ax = fig.add_subplot(2, 1, 1) # two rows, one column, first plot - -The :class:`~matplotlib.axes.Axes` is probably the most important -class in the matplotlib API, and the one you will be working with most -of the time. This is because the ``Axes`` is the plotting area into -which most of the objects go, and the ``Axes`` has many special helper -methods (:meth:`~matplotlib.axes.Axes.plot`, -:meth:`~matplotlib.axes.Axes.text`, -:meth:`~matplotlib.axes.Axes.hist`, -:meth:`~matplotlib.axes.Axes.imshow`) to create the most common -graphics primitives (:class:`~matplotlib.lines.Line2D`, -:class:`~matplotlib.text.Text`, -:class:`~matplotlib.patches.Rectangle`, -:class:`~matplotlib.image.Image`, respectively). These helper methods -will take your data (e.g., ``numpy`` arrays and strings) and create -primitive ``Artist`` instances as needed (e.g., ``Line2D``), add them to -the relevant containers, and draw them when requested. Most of you -are probably familiar with the :class:`~matplotlib.axes.Subplot`, -which is just a special case of an ``Axes`` that lives on a regular -rows by columns grid of ``Subplot`` instances. If you want to create -an ``Axes`` at an arbitrary location, simply use the -:meth:`~matplotlib.figure.Figure.add_axes` method which takes a list -of ``[left, bottom, width, height]`` values in 0-1 relative figure -coordinates:: - - fig2 = plt.figure() - ax2 = fig2.add_axes([0.15, 0.1, 0.7, 0.3]) - -Continuing with our example:: - - import numpy as np - t = np.arange(0.0, 1.0, 0.01) - s = np.sin(2*np.pi*t) - line, = ax.plot(t, s, color='blue', lw=2) - -In this example, ``ax`` is the ``Axes`` instance created by the -``fig.add_subplot`` call above (remember ``Subplot`` is just a -subclass of ``Axes``) and when you call ``ax.plot``, it creates a -``Line2D`` instance and adds it to the :attr:`Axes.lines -` list. In the interactive `ipython -`_ session below, you can see that the -``Axes.lines`` list is length one and contains the same line that was -returned by the ``line, = ax.plot...`` call: - -.. sourcecode:: ipython - - In [101]: ax.lines[0] - Out[101]: - - In [102]: line - Out[102]: - -If you make subsequent calls to ``ax.plot`` (and the hold state is "on" -which is the default) then additional lines will be added to the list. -You can remove lines later simply by calling the list methods; either -of these will work:: - - del ax.lines[0] - ax.lines.remove(line) # one or the other, not both! - -The Axes also has helper methods to configure and decorate the x-axis -and y-axis tick, tick labels and axis labels:: - - xtext = ax.set_xlabel('my xdata') # returns a Text instance - ytext = ax.set_ylabel('my ydata') - -When you call :meth:`ax.set_xlabel `, -it passes the information on the :class:`~matplotlib.text.Text` -instance of the :class:`~matplotlib.axis.XAxis`. Each ``Axes`` -instance contains an :class:`~matplotlib.axis.XAxis` and a -:class:`~matplotlib.axis.YAxis` instance, which handle the layout and -drawing of the ticks, tick labels and axis labels. - -Try creating the figure below. -""" - -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.subplots_adjust(top=0.8) -ax1 = fig.add_subplot(211) -ax1.set_ylabel('volts') -ax1.set_title('a sine wave') - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2*np.pi*t) -line, = ax1.plot(t, s, color='blue', lw=2) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -ax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3]) -n, bins, patches = ax2.hist(np.random.randn(1000), 50, - facecolor='yellow', edgecolor='yellow') -ax2.set_xlabel('time (s)') - -plt.show() - -############################################################################### -# .. _customizing-artists: -# -# Customizing your objects -# ======================== -# -# Every element in the figure is represented by a matplotlib -# :class:`~matplotlib.artist.Artist`, and each has an extensive list of -# properties to configure its appearance. The figure itself contains a -# :class:`~matplotlib.patches.Rectangle` exactly the size of the figure, -# which you can use to set the background color and transparency of the -# figures. Likewise, each :class:`~matplotlib.axes.Axes` bounding box -# (the standard white box with black edges in the typical matplotlib -# plot, has a ``Rectangle`` instance that determines the color, -# transparency, and other properties of the Axes. These instances are -# stored as member variables :attr:`Figure.patch -# ` and :attr:`Axes.patch -# ` ("Patch" is a name inherited from -# MATLAB, and is a 2D "patch" of color on the figure, e.g., rectangles, -# circles and polygons). Every matplotlib ``Artist`` has the following -# properties -# -# ========== ================================================================================ -# Property Description -# ========== ================================================================================ -# alpha The transparency - a scalar from 0-1 -# animated A boolean that is used to facilitate animated drawing -# axes The axes that the Artist lives in, possibly None -# clip_box The bounding box that clips the Artist -# clip_on Whether clipping is enabled -# clip_path The path the artist is clipped to -# contains A picking function to test whether the artist contains the pick point -# figure The figure instance the artist lives in, possibly None -# label A text label (e.g., for auto-labeling) -# picker A python object that controls object picking -# transform The transformation -# visible A boolean whether the artist should be drawn -# zorder A number which determines the drawing order -# rasterized Boolean; Turns vectors into raster graphics (for compression & eps transparency) -# ========== ================================================================================ -# -# Each of the properties is accessed with an old-fashioned setter or -# getter (yes we know this irritates Pythonistas and we plan to support -# direct access via properties or traits but it hasn't been done yet). -# For example, to multiply the current alpha by a half:: -# -# a = o.get_alpha() -# o.set_alpha(0.5*a) -# -# If you want to set a number of properties at once, you can also use -# the ``set`` method with keyword arguments. For example:: -# -# o.set(alpha=0.5, zorder=2) -# -# If you are working interactively at the python shell, a handy way to -# inspect the ``Artist`` properties is to use the -# :func:`matplotlib.artist.getp` function (simply -# :func:`~matplotlib.pyplot.getp` in pyplot), which lists the properties -# and their values. This works for classes derived from ``Artist`` as -# well, e.g., ``Figure`` and ``Rectangle``. Here are the ``Figure`` rectangle -# properties mentioned above: -# -# .. sourcecode:: ipython -# -# In [149]: matplotlib.artist.getp(fig.patch) -# alpha = 1.0 -# animated = False -# antialiased or aa = True -# axes = None -# clip_box = None -# clip_on = False -# clip_path = None -# contains = None -# edgecolor or ec = w -# facecolor or fc = 0.75 -# figure = Figure(8.125x6.125) -# fill = 1 -# hatch = None -# height = 1 -# label = -# linewidth or lw = 1.0 -# picker = None -# transform = -# verts = ((0, 0), (0, 1), (1, 1), (1, 0)) -# visible = True -# width = 1 -# window_extent = -# x = 0 -# y = 0 -# zorder = 1 -# -# The docstrings for all of the classes also contain the ``Artist`` -# properties, so you can consult the interactive "help" or the -# :ref:`artist-api` for a listing of properties for a given object. -# -# .. _object-containers: -# -# Object containers -# ================= -# -# -# Now that we know how to inspect and set the properties of a given -# object we want to configure, we need to know how to get at that object. -# As mentioned in the introduction, there are two kinds of objects: -# primitives and containers. The primitives are usually the things you -# want to configure (the font of a :class:`~matplotlib.text.Text` -# instance, the width of a :class:`~matplotlib.lines.Line2D`) although -# the containers also have some properties as well -- for example the -# :class:`~matplotlib.axes.Axes` :class:`~matplotlib.artist.Artist` is a -# container that contains many of the primitives in your plot, but it -# also has properties like the ``xscale`` to control whether the xaxis -# is 'linear' or 'log'. In this section we'll review where the various -# container objects store the ``Artists`` that you want to get at. -# -# .. _figure-container: -# -# Figure container -# ---------------- -# -# The top level container ``Artist`` is the -# :class:`matplotlib.figure.Figure`, and it contains everything in the -# figure. The background of the figure is a -# :class:`~matplotlib.patches.Rectangle` which is stored in -# :attr:`Figure.patch `. As -# you add subplots (:meth:`~matplotlib.figure.Figure.add_subplot`) and -# axes (:meth:`~matplotlib.figure.Figure.add_axes`) to the figure -# these will be appended to the :attr:`Figure.axes -# `. These are also returned by the -# methods that create them: -# -# .. sourcecode:: ipython -# -# In [156]: fig = plt.figure() -# -# In [157]: ax1 = fig.add_subplot(211) -# -# In [158]: ax2 = fig.add_axes([0.1, 0.1, 0.7, 0.3]) -# -# In [159]: ax1 -# Out[159]: -# -# In [160]: print(fig.axes) -# [, ] -# -# Because the figure maintains the concept of the "current axes" (see -# :meth:`Figure.gca ` and -# :meth:`Figure.sca `) to support the -# pylab/pyplot state machine, you should not insert or remove axes -# directly from the axes list, but rather use the -# :meth:`~matplotlib.figure.Figure.add_subplot` and -# :meth:`~matplotlib.figure.Figure.add_axes` methods to insert, and the -# :meth:`~matplotlib.figure.Figure.delaxes` method to delete. You are -# free however, to iterate over the list of axes or index into it to get -# access to ``Axes`` instances you want to customize. Here is an -# example which turns all the axes grids on:: -# -# for ax in fig.axes: -# ax.grid(True) -# -# -# The figure also has its own text, lines, patches and images, which you -# can use to add primitives directly. The default coordinate system for -# the ``Figure`` will simply be in pixels (which is not usually what you -# want) but you can control this by setting the transform property of -# the ``Artist`` you are adding to the figure. -# -# .. TODO: Is that still true? -# -# More useful is "figure coordinates" where (0, 0) is the bottom-left of -# the figure and (1, 1) is the top-right of the figure which you can -# obtain by setting the ``Artist`` transform to :attr:`fig.transFigure -# `: - -import matplotlib.lines as lines - -fig = plt.figure() - -l1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig) -l2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig) -fig.lines.extend([l1, l2]) - -plt.show() - -############################################################################### -# Here is a summary of the Artists the figure contains -# -# .. TODO: Add xrefs to this table -# -# ================ =============================================================== -# Figure attribute Description -# ================ =============================================================== -# axes A list of Axes instances (includes Subplot) -# patch The Rectangle background -# images A list of FigureImages patches - useful for raw pixel display -# legends A list of Figure Legend instances (different from Axes.legends) -# lines A list of Figure Line2D instances (rarely used, see Axes.lines) -# patches A list of Figure patches (rarely used, see Axes.patches) -# texts A list Figure Text instances -# ================ =============================================================== -# -# .. _axes-container: -# -# Axes container -# -------------- -# -# The :class:`matplotlib.axes.Axes` is the center of the matplotlib -# universe -- it contains the vast majority of all the ``Artists`` used -# in a figure with many helper methods to create and add these -# ``Artists`` to itself, as well as helper methods to access and -# customize the ``Artists`` it contains. Like the -# :class:`~matplotlib.figure.Figure`, it contains a -# :class:`~matplotlib.patches.Patch` -# :attr:`~matplotlib.axes.Axes.patch` which is a -# :class:`~matplotlib.patches.Rectangle` for Cartesian coordinates and a -# :class:`~matplotlib.patches.Circle` for polar coordinates; this patch -# determines the shape, background and border of the plotting region:: -# -# ax = fig.add_subplot(111) -# rect = ax.patch # a Rectangle instance -# rect.set_facecolor('green') -# -# When you call a plotting method, e.g., the canonical -# :meth:`~matplotlib.axes.Axes.plot` and pass in arrays or lists of -# values, the method will create a :meth:`matplotlib.lines.Line2D` -# instance, update the line with all the ``Line2D`` properties passed as -# keyword arguments, add the line to the :attr:`Axes.lines -# ` container, and returns it to you: -# -# .. sourcecode:: ipython -# -# In [213]: x, y = np.random.rand(2, 100) -# -# In [214]: line, = ax.plot(x, y, '-', color='blue', linewidth=2) -# -# ``plot`` returns a list of lines because you can pass in multiple x, y -# pairs to plot, and we are unpacking the first element of the length -# one list into the line variable. The line has been added to the -# ``Axes.lines`` list: -# -# .. sourcecode:: ipython -# -# In [229]: print(ax.lines) -# [] -# -# Similarly, methods that create patches, like -# :meth:`~matplotlib.axes.Axes.bar` creates a list of rectangles, will -# add the patches to the :attr:`Axes.patches -# ` list: -# -# .. sourcecode:: ipython -# -# In [233]: n, bins, rectangles = ax.hist(np.random.randn(1000), 50, facecolor='yellow') -# -# In [234]: rectangles -# Out[234]: -# -# In [235]: print(len(ax.patches)) -# -# You should not add objects directly to the ``Axes.lines`` or -# ``Axes.patches`` lists unless you know exactly what you are doing, -# because the ``Axes`` needs to do a few things when it creates and adds -# an object. It sets the figure and axes property of the ``Artist``, as -# well as the default ``Axes`` transformation (unless a transformation -# is set). It also inspects the data contained in the ``Artist`` to -# update the data structures controlling auto-scaling, so that the view -# limits can be adjusted to contain the plotted data. You can, -# nonetheless, create objects yourself and add them directly to the -# ``Axes`` using helper methods like -# :meth:`~matplotlib.axes.Axes.add_line` and -# :meth:`~matplotlib.axes.Axes.add_patch`. Here is an annotated -# interactive session illustrating what is going on: -# -# .. sourcecode:: ipython -# -# In [262]: fig, ax = plt.subplots() -# -# # create a rectangle instance -# In [263]: rect = matplotlib.patches.Rectangle( (1,1), width=5, height=12) -# -# # by default the axes instance is None -# In [264]: print(rect.get_axes()) -# None -# -# # and the transformation instance is set to the "identity transform" -# In [265]: print(rect.get_transform()) -# -# -# # now we add the Rectangle to the Axes -# In [266]: ax.add_patch(rect) -# -# # and notice that the ax.add_patch method has set the axes -# # instance -# In [267]: print(rect.get_axes()) -# Axes(0.125,0.1;0.775x0.8) -# -# # and the transformation has been set too -# In [268]: print(rect.get_transform()) -# -# -# # the default axes transformation is ax.transData -# In [269]: print(ax.transData) -# -# -# # notice that the xlimits of the Axes have not been changed -# In [270]: print(ax.get_xlim()) -# (0.0, 1.0) -# -# # but the data limits have been updated to encompass the rectangle -# In [271]: print(ax.dataLim.bounds) -# (1.0, 1.0, 5.0, 12.0) -# -# # we can manually invoke the auto-scaling machinery -# In [272]: ax.autoscale_view() -# -# # and now the xlim are updated to encompass the rectangle -# In [273]: print(ax.get_xlim()) -# (1.0, 6.0) -# -# # we have to manually force a figure draw -# In [274]: ax.figure.canvas.draw() -# -# -# There are many, many ``Axes`` helper methods for creating primitive -# ``Artists`` and adding them to their respective containers. The table -# below summarizes a small sampling of them, the kinds of ``Artist`` they -# create, and where they store them -# -# ============================== ==================== ======================= -# Helper method Artist Container -# ============================== ==================== ======================= -# ax.annotate - text annotations Annotate ax.texts -# ax.bar - bar charts Rectangle ax.patches -# ax.errorbar - error bar plots Line2D and Rectangle ax.lines and ax.patches -# ax.fill - shared area Polygon ax.patches -# ax.hist - histograms Rectangle ax.patches -# ax.imshow - image data AxesImage ax.images -# ax.legend - axes legends Legend ax.legends -# ax.plot - xy plots Line2D ax.lines -# ax.scatter - scatter charts PolygonCollection ax.collections -# ax.text - text Text ax.texts -# ============================== ==================== ======================= -# -# -# In addition to all of these ``Artists``, the ``Axes`` contains two -# important ``Artist`` containers: the :class:`~matplotlib.axis.XAxis` -# and :class:`~matplotlib.axis.YAxis`, which handle the drawing of the -# ticks and labels. These are stored as instance variables -# :attr:`~matplotlib.axes.Axes.xaxis` and -# :attr:`~matplotlib.axes.Axes.yaxis`. The ``XAxis`` and ``YAxis`` -# containers will be detailed below, but note that the ``Axes`` contains -# many helper methods which forward calls on to the -# :class:`~matplotlib.axis.Axis` instances so you often do not need to -# work with them directly unless you want to. For example, you can set -# the font color of the ``XAxis`` ticklabels using the ``Axes`` helper -# method:: -# -# for label in ax.get_xticklabels(): -# label.set_color('orange') -# -# Below is a summary of the Artists that the Axes contains -# -# ============== ====================================== -# Axes attribute Description -# ============== ====================================== -# artists A list of Artist instances -# patch Rectangle instance for Axes background -# collections A list of Collection instances -# images A list of AxesImage -# legends A list of Legend instances -# lines A list of Line2D instances -# patches A list of Patch instances -# texts A list of Text instances -# xaxis matplotlib.axis.XAxis instance -# yaxis matplotlib.axis.YAxis instance -# ============== ====================================== -# -# .. _axis-container: -# -# Axis containers -# --------------- -# -# The :class:`matplotlib.axis.Axis` instances handle the drawing of the -# tick lines, the grid lines, the tick labels and the axis label. You -# can configure the left and right ticks separately for the y-axis, and -# the upper and lower ticks separately for the x-axis. The ``Axis`` -# also stores the data and view intervals used in auto-scaling, panning -# and zooming, as well as the :class:`~matplotlib.ticker.Locator` and -# :class:`~matplotlib.ticker.Formatter` instances which control where -# the ticks are placed and how they are represented as strings. -# -# Each ``Axis`` object contains a :attr:`~matplotlib.axis.Axis.label` attribute -# (this is what :mod:`~matplotlib.pyplot` modifies in calls to -# :func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.ylabel`) as -# well as a list of major and minor ticks. The ticks are -# :class:`~matplotlib.axis.XTick` and :class:`~matplotlib.axis.YTick` instances, -# which contain the actual line and text primitives that render the ticks and -# ticklabels. Because the ticks are dynamically created as needed (e.g., when -# panning and zooming), you should access the lists of major and minor ticks -# through their accessor methods :meth:`~matplotlib.axis.Axis.get_major_ticks` -# and :meth:`~matplotlib.axis.Axis.get_minor_ticks`. Although the ticks contain -# all the primitives and will be covered below, ``Axis`` instances have accessor -# methods that return the tick lines, tick labels, tick locations etc.: - -fig, ax = plt.subplots() -axis = ax.xaxis -axis.get_ticklocs() - -############################################################################### - -axis.get_ticklabels() - -############################################################################### -# note there are twice as many ticklines as labels because by -# default there are tick lines at the top and bottom but only tick -# labels below the xaxis; this can be customized - -axis.get_ticklines() - -############################################################################### -# by default you get the major ticks back - -axis.get_ticklines() - -############################################################################### -# but you can also ask for the minor ticks - -axis.get_ticklines(minor=True) - -# Here is a summary of some of the useful accessor methods of the ``Axis`` -# (these have corresponding setters where useful, such as -# set_major_formatter) -# -# ====================== ========================================================= -# Accessor method Description -# ====================== ========================================================= -# get_scale The scale of the axis, e.g., 'log' or 'linear' -# get_view_interval The interval instance of the axis view limits -# get_data_interval The interval instance of the axis data limits -# get_gridlines A list of grid lines for the Axis -# get_label The axis label - a Text instance -# get_ticklabels A list of Text instances - keyword minor=True|False -# get_ticklines A list of Line2D instances - keyword minor=True|False -# get_ticklocs A list of Tick locations - keyword minor=True|False -# get_major_locator The matplotlib.ticker.Locator instance for major ticks -# get_major_formatter The matplotlib.ticker.Formatter instance for major ticks -# get_minor_locator The matplotlib.ticker.Locator instance for minor ticks -# get_minor_formatter The matplotlib.ticker.Formatter instance for minor ticks -# get_major_ticks A list of Tick instances for major ticks -# get_minor_ticks A list of Tick instances for minor ticks -# grid Turn the grid on or off for the major or minor ticks -# ====================== ========================================================= -# -# Here is an example, not recommended for its beauty, which customizes -# the axes and tick properties - -# plt.figure creates a matplotlib.figure.Figure instance -fig = plt.figure() -rect = fig.patch # a rectangle instance -rect.set_facecolor('lightgoldenrodyellow') - -ax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4]) -rect = ax1.patch -rect.set_facecolor('lightslategray') - - -for label in ax1.xaxis.get_ticklabels(): - # label is a Text instance - label.set_color('red') - label.set_rotation(45) - label.set_fontsize(16) - -for line in ax1.yaxis.get_ticklines(): - # line is a Line2D instance - line.set_color('green') - line.set_markersize(25) - line.set_markeredgewidth(3) - -plt.show() - -############################################################################### -# .. _tick-container: -# -# Tick containers -# --------------- -# -# The :class:`matplotlib.axis.Tick` is the final container object in our -# descent from the :class:`~matplotlib.figure.Figure` to the -# :class:`~matplotlib.axes.Axes` to the :class:`~matplotlib.axis.Axis` -# to the :class:`~matplotlib.axis.Tick`. The ``Tick`` contains the tick -# and grid line instances, as well as the label instances for the upper -# and lower ticks. Each of these is accessible directly as an attribute -# of the ``Tick``. -# -# ============== ========================================================== -# Tick attribute Description -# ============== ========================================================== -# tick1line Line2D instance -# tick2line Line2D instance -# gridline Line2D instance -# label1 Text instance -# label2 Text instance -# ============== ========================================================== -# -# Here is an example which sets the formatter for the right side ticks with -# dollar signs and colors them green on the right side of the yaxis - -import matplotlib.ticker as ticker - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() -ax.plot(100*np.random.rand(20)) - -formatter = ticker.FormatStrFormatter('$%1.2f') -ax.yaxis.set_major_formatter(formatter) - -for tick in ax.yaxis.get_major_ticks(): - tick.label1.set_visible(False) - tick.label2.set_visible(True) - tick.label2.set_color('green') - -plt.show() diff --git a/_downloads/a968cd76dda99702d5a651bb0690d77f/contourf_log.ipynb b/_downloads/a968cd76dda99702d5a651bb0690d77f/contourf_log.ipynb deleted file mode 100644 index b6bb114720e..00000000000 --- a/_downloads/a968cd76dda99702d5a651bb0690d77f/contourf_log.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contourf and log color scale\n\n\nDemonstrate use of a log color scale in contourf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom numpy import ma\nfrom matplotlib import ticker, cm\n\nN = 100\nx = np.linspace(-3.0, 3.0, N)\ny = np.linspace(-2.0, 2.0, N)\n\nX, Y = np.meshgrid(x, y)\n\n# A low hump with a spike coming out.\n# Needs to have z/colour axis on a log scale so we see both hump and spike.\n# linear scale only shows the spike.\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nz = Z1 + 50 * Z2\n\n# Put in some negative values (lower left corner) to cause trouble with logs:\nz[:5, :5] = -1\n\n# The following is not strictly essential, but it will eliminate\n# a warning. Comment it out to see the warning.\nz = ma.masked_where(z <= 0, z)\n\n\n# Automatic selection of levels works; setting the\n# log locator tells contourf to use a log scale:\nfig, ax = plt.subplots()\ncs = ax.contourf(X, Y, z, locator=ticker.LogLocator(), cmap=cm.PuBu_r)\n\n# Alternatively, you can manually set the levels\n# and the norm:\n# lev_exp = np.arange(np.floor(np.log10(z.min())-1),\n# np.ceil(np.log10(z.max())+1))\n# levs = np.power(10, lev_exp)\n# cs = ax.contourf(X, Y, z, levs, norm=colors.LogNorm())\n\ncbar = fig.colorbar(cs)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.ticker.LogLocator" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a96de3a830a2fc770cd0db6b3b446e82/anchored_box01.ipynb b/_downloads/a96de3a830a2fc770cd0db6b3b446e82/anchored_box01.ipynb deleted file mode 120000 index 6f6da16fe29..00000000000 --- a/_downloads/a96de3a830a2fc770cd0db6b3b446e82/anchored_box01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/a96de3a830a2fc770cd0db6b3b446e82/anchored_box01.ipynb \ No newline at end of file diff --git a/_downloads/a9763638f889e3dcddf48fe06c03ee2a/scatter_demo2.ipynb b/_downloads/a9763638f889e3dcddf48fe06c03ee2a/scatter_demo2.ipynb deleted file mode 120000 index 576755ca31a..00000000000 --- a/_downloads/a9763638f889e3dcddf48fe06c03ee2a/scatter_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a9763638f889e3dcddf48fe06c03ee2a/scatter_demo2.ipynb \ No newline at end of file diff --git a/_downloads/a97b61f136d2b946a2d566782d3d3a78/coords_report.py b/_downloads/a97b61f136d2b946a2d566782d3d3a78/coords_report.py deleted file mode 120000 index 1acbfcb711d..00000000000 --- a/_downloads/a97b61f136d2b946a2d566782d3d3a78/coords_report.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a97b61f136d2b946a2d566782d3d3a78/coords_report.py \ No newline at end of file diff --git a/_downloads/a97d9b12111700e32f50d512de50acde/sankey_basics.ipynb b/_downloads/a97d9b12111700e32f50d512de50acde/sankey_basics.ipynb deleted file mode 100644 index e287805dc67..00000000000 --- a/_downloads/a97d9b12111700e32f50d512de50acde/sankey_basics.ipynb +++ /dev/null @@ -1,158 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The Sankey class\n\n\nDemonstrate the Sankey class by producing three basic diagrams.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom matplotlib.sankey import Sankey" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 1 -- Mostly defaults\n\nThis demonstrates how to create a simple diagram by implicitly calling the\nSankey.add() method and by appending finish() to the call to the class.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Sankey(flows=[0.25, 0.15, 0.60, -0.20, -0.15, -0.05, -0.50, -0.10],\n labels=['', '', '', 'First', 'Second', 'Third', 'Fourth', 'Fifth'],\n orientations=[-1, 1, 0, 1, 1, 1, 0, -1]).finish()\nplt.title(\"The default settings produce a diagram like this.\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice:\n\n1. Axes weren't provided when Sankey() was instantiated, so they were\n created automatically.\n2. The scale argument wasn't necessary since the data was already\n normalized.\n3. By default, the lengths of the paths are justified.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 2\n\nThis demonstrates:\n\n1. Setting one path longer than the others\n2. Placing a label in the middle of the diagram\n3. Using the scale argument to normalize the flows\n4. Implicitly passing keyword arguments to PathPatch()\n5. Changing the angle of the arrow heads\n6. Changing the offset between the tips of the paths and their labels\n7. Formatting the numbers in the path labels and the associated unit\n8. Changing the appearance of the patch and the labels after the figure is\n created\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[],\n title=\"Flow Diagram of a Widget\")\nsankey = Sankey(ax=ax, scale=0.01, offset=0.2, head_angle=180,\n format='%.0f', unit='%')\nsankey.add(flows=[25, 0, 60, -10, -20, -5, -15, -10, -40],\n labels=['', '', '', 'First', 'Second', 'Third', 'Fourth',\n 'Fifth', 'Hurray!'],\n orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0],\n pathlengths=[0.25, 0.25, 0.25, 0.25, 0.25, 0.6, 0.25, 0.25,\n 0.25],\n patchlabel=\"Widget\\nA\") # Arguments to matplotlib.patches.PathPatch()\ndiagrams = sankey.finish()\ndiagrams[0].texts[-1].set_color('r')\ndiagrams[0].text.set_fontweight('bold')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice:\n\n1. Since the sum of the flows is nonzero, the width of the trunk isn't\n uniform. The matplotlib logging system logs this at the DEBUG level.\n2. The second flow doesn't appear because its value is zero. Again, this is\n logged at the DEBUG level.\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 3\n\nThis demonstrates:\n\n1. Connecting two systems\n2. Turning off the labels of the quantities\n3. Adding a legend\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], title=\"Two Systems\")\nflows = [0.25, 0.15, 0.60, -0.10, -0.05, -0.25, -0.15, -0.10, -0.35]\nsankey = Sankey(ax=ax, unit=None)\nsankey.add(flows=flows, label='one',\n orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0])\nsankey.add(flows=[-0.25, 0.15, 0.1], label='two',\n orientations=[-1, -1, -1], prior=0, connect=(0, 0))\ndiagrams = sankey.finish()\ndiagrams[-1].patch.set_hatch('/')\nplt.legend()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice that only one connection is specified, but the systems form a\ncircuit since: (1) the lengths of the paths are justified and (2) the\norientation and ordering of the flows is mirrored.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.sankey\nmatplotlib.sankey.Sankey\nmatplotlib.sankey.Sankey.add\nmatplotlib.sankey.Sankey.finish" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/a98163650c40d1f2e5d483caa0311a83/radio_buttons.py b/_downloads/a98163650c40d1f2e5d483caa0311a83/radio_buttons.py deleted file mode 100644 index 41cde39bdfb..00000000000 --- a/_downloads/a98163650c40d1f2e5d483caa0311a83/radio_buttons.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -============= -Radio Buttons -============= - -Using radio buttons to choose properties of your plot. - -Radio buttons let you choose between multiple options in a visualization. -In this case, the buttons let the user choose one of the three different sine -waves to be shown in the plot. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import RadioButtons - -t = np.arange(0.0, 2.0, 0.01) -s0 = np.sin(2*np.pi*t) -s1 = np.sin(4*np.pi*t) -s2 = np.sin(8*np.pi*t) - -fig, ax = plt.subplots() -l, = ax.plot(t, s0, lw=2, color='red') -plt.subplots_adjust(left=0.3) - -axcolor = 'lightgoldenrodyellow' -rax = plt.axes([0.05, 0.7, 0.15, 0.15], facecolor=axcolor) -radio = RadioButtons(rax, ('2 Hz', '4 Hz', '8 Hz')) - - -def hzfunc(label): - hzdict = {'2 Hz': s0, '4 Hz': s1, '8 Hz': s2} - ydata = hzdict[label] - l.set_ydata(ydata) - plt.draw() -radio.on_clicked(hzfunc) - -rax = plt.axes([0.05, 0.4, 0.15, 0.15], facecolor=axcolor) -radio2 = RadioButtons(rax, ('red', 'blue', 'green')) - - -def colorfunc(label): - l.set_color(label) - plt.draw() -radio2.on_clicked(colorfunc) - -rax = plt.axes([0.05, 0.1, 0.15, 0.15], facecolor=axcolor) -radio3 = RadioButtons(rax, ('-', '--', '-.', 'steps', ':')) - - -def stylefunc(label): - l.set_linestyle(label) - plt.draw() -radio3.on_clicked(stylefunc) - -plt.show() diff --git a/_downloads/a99b653828f0120e0c032215353b53c1/surface3d.ipynb b/_downloads/a99b653828f0120e0c032215353b53c1/surface3d.ipynb deleted file mode 120000 index 69c633a7b57..00000000000 --- a/_downloads/a99b653828f0120e0c032215353b53c1/surface3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/a99b653828f0120e0c032215353b53c1/surface3d.ipynb \ No newline at end of file diff --git a/_downloads/a9a1c37825bddcdb3793adbd89b30ed0/histogram_cumulative.ipynb b/_downloads/a9a1c37825bddcdb3793adbd89b30ed0/histogram_cumulative.ipynb deleted file mode 120000 index 8b434681faa..00000000000 --- a/_downloads/a9a1c37825bddcdb3793adbd89b30ed0/histogram_cumulative.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a9a1c37825bddcdb3793adbd89b30ed0/histogram_cumulative.ipynb \ No newline at end of file diff --git a/_downloads/a9b02795b40cf09e49633742a3f7d86c/pie_and_donut_labels.py b/_downloads/a9b02795b40cf09e49633742a3f7d86c/pie_and_donut_labels.py deleted file mode 120000 index 5315bd6c424..00000000000 --- a/_downloads/a9b02795b40cf09e49633742a3f7d86c/pie_and_donut_labels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a9b02795b40cf09e49633742a3f7d86c/pie_and_donut_labels.py \ No newline at end of file diff --git a/_downloads/a9bc335fc4415a373276f08b435b77a4/basic_units.py b/_downloads/a9bc335fc4415a373276f08b435b77a4/basic_units.py deleted file mode 100644 index 50ca20675c5..00000000000 --- a/_downloads/a9bc335fc4415a373276f08b435b77a4/basic_units.py +++ /dev/null @@ -1,385 +0,0 @@ -""" -=========== -Basic Units -=========== - -""" - -import math - -import numpy as np - -import matplotlib.units as units -import matplotlib.ticker as ticker - - -class ProxyDelegate(object): - def __init__(self, fn_name, proxy_type): - self.proxy_type = proxy_type - self.fn_name = fn_name - - def __get__(self, obj, objtype=None): - return self.proxy_type(self.fn_name, obj) - - -class TaggedValueMeta(type): - def __init__(self, name, bases, dict): - for fn_name in self._proxies: - try: - dummy = getattr(self, fn_name) - except AttributeError: - setattr(self, fn_name, - ProxyDelegate(fn_name, self._proxies[fn_name])) - - -class PassThroughProxy(object): - def __init__(self, fn_name, obj): - self.fn_name = fn_name - self.target = obj.proxy_target - - def __call__(self, *args): - fn = getattr(self.target, self.fn_name) - ret = fn(*args) - return ret - - -class ConvertArgsProxy(PassThroughProxy): - def __init__(self, fn_name, obj): - PassThroughProxy.__init__(self, fn_name, obj) - self.unit = obj.unit - - def __call__(self, *args): - converted_args = [] - for a in args: - try: - converted_args.append(a.convert_to(self.unit)) - except AttributeError: - converted_args.append(TaggedValue(a, self.unit)) - converted_args = tuple([c.get_value() for c in converted_args]) - return PassThroughProxy.__call__(self, *converted_args) - - -class ConvertReturnProxy(PassThroughProxy): - def __init__(self, fn_name, obj): - PassThroughProxy.__init__(self, fn_name, obj) - self.unit = obj.unit - - def __call__(self, *args): - ret = PassThroughProxy.__call__(self, *args) - return (NotImplemented if ret is NotImplemented - else TaggedValue(ret, self.unit)) - - -class ConvertAllProxy(PassThroughProxy): - def __init__(self, fn_name, obj): - PassThroughProxy.__init__(self, fn_name, obj) - self.unit = obj.unit - - def __call__(self, *args): - converted_args = [] - arg_units = [self.unit] - for a in args: - if hasattr(a, 'get_unit') and not hasattr(a, 'convert_to'): - # if this arg has a unit type but no conversion ability, - # this operation is prohibited - return NotImplemented - - if hasattr(a, 'convert_to'): - try: - a = a.convert_to(self.unit) - except Exception: - pass - arg_units.append(a.get_unit()) - converted_args.append(a.get_value()) - else: - converted_args.append(a) - if hasattr(a, 'get_unit'): - arg_units.append(a.get_unit()) - else: - arg_units.append(None) - converted_args = tuple(converted_args) - ret = PassThroughProxy.__call__(self, *converted_args) - if ret is NotImplemented: - return NotImplemented - ret_unit = unit_resolver(self.fn_name, arg_units) - if ret_unit is NotImplemented: - return NotImplemented - return TaggedValue(ret, ret_unit) - - -class TaggedValue(metaclass=TaggedValueMeta): - - _proxies = {'__add__': ConvertAllProxy, - '__sub__': ConvertAllProxy, - '__mul__': ConvertAllProxy, - '__rmul__': ConvertAllProxy, - '__cmp__': ConvertAllProxy, - '__lt__': ConvertAllProxy, - '__gt__': ConvertAllProxy, - '__len__': PassThroughProxy} - - def __new__(cls, value, unit): - # generate a new subclass for value - value_class = type(value) - try: - subcls = type(f'TaggedValue_of_{value_class.__name__}', - (cls, value_class), {}) - if subcls not in units.registry: - units.registry[subcls] = basicConverter - return object.__new__(subcls) - except TypeError: - if cls not in units.registry: - units.registry[cls] = basicConverter - return object.__new__(cls) - - def __init__(self, value, unit): - self.value = value - self.unit = unit - self.proxy_target = self.value - - def __getattribute__(self, name): - if name.startswith('__'): - return object.__getattribute__(self, name) - variable = object.__getattribute__(self, 'value') - if hasattr(variable, name) and name not in self.__class__.__dict__: - return getattr(variable, name) - return object.__getattribute__(self, name) - - def __array__(self, dtype=object): - return np.asarray(self.value).astype(dtype) - - def __array_wrap__(self, array, context): - return TaggedValue(array, self.unit) - - def __repr__(self): - return 'TaggedValue({!r}, {!r})'.format(self.value, self.unit) - - def __str__(self): - return str(self.value) + ' in ' + str(self.unit) - - def __len__(self): - return len(self.value) - - def __iter__(self): - # Return a generator expression rather than use `yield`, so that - # TypeError is raised by iter(self) if appropriate when checking for - # iterability. - return (TaggedValue(inner, self.unit) for inner in self.value) - - def get_compressed_copy(self, mask): - new_value = np.ma.masked_array(self.value, mask=mask).compressed() - return TaggedValue(new_value, self.unit) - - def convert_to(self, unit): - if unit == self.unit or not unit: - return self - try: - new_value = self.unit.convert_value_to(self.value, unit) - except AttributeError: - new_value = self - return TaggedValue(new_value, unit) - - def get_value(self): - return self.value - - def get_unit(self): - return self.unit - - -class BasicUnit(object): - def __init__(self, name, fullname=None): - self.name = name - if fullname is None: - fullname = name - self.fullname = fullname - self.conversions = dict() - - def __repr__(self): - return f'BasicUnit({self.name})' - - def __str__(self): - return self.fullname - - def __call__(self, value): - return TaggedValue(value, self) - - def __mul__(self, rhs): - value = rhs - unit = self - if hasattr(rhs, 'get_unit'): - value = rhs.get_value() - unit = rhs.get_unit() - unit = unit_resolver('__mul__', (self, unit)) - if unit is NotImplemented: - return NotImplemented - return TaggedValue(value, unit) - - def __rmul__(self, lhs): - return self*lhs - - def __array_wrap__(self, array, context): - return TaggedValue(array, self) - - def __array__(self, t=None, context=None): - ret = np.array([1]) - if t is not None: - return ret.astype(t) - else: - return ret - - def add_conversion_factor(self, unit, factor): - def convert(x): - return x*factor - self.conversions[unit] = convert - - def add_conversion_fn(self, unit, fn): - self.conversions[unit] = fn - - def get_conversion_fn(self, unit): - return self.conversions[unit] - - def convert_value_to(self, value, unit): - conversion_fn = self.conversions[unit] - ret = conversion_fn(value) - return ret - - def get_unit(self): - return self - - -class UnitResolver(object): - def addition_rule(self, units): - for unit_1, unit_2 in zip(units[:-1], units[1:]): - if unit_1 != unit_2: - return NotImplemented - return units[0] - - def multiplication_rule(self, units): - non_null = [u for u in units if u] - if len(non_null) > 1: - return NotImplemented - return non_null[0] - - op_dict = { - '__mul__': multiplication_rule, - '__rmul__': multiplication_rule, - '__add__': addition_rule, - '__radd__': addition_rule, - '__sub__': addition_rule, - '__rsub__': addition_rule} - - def __call__(self, operation, units): - if operation not in self.op_dict: - return NotImplemented - - return self.op_dict[operation](self, units) - - -unit_resolver = UnitResolver() - -cm = BasicUnit('cm', 'centimeters') -inch = BasicUnit('inch', 'inches') -inch.add_conversion_factor(cm, 2.54) -cm.add_conversion_factor(inch, 1/2.54) - -radians = BasicUnit('rad', 'radians') -degrees = BasicUnit('deg', 'degrees') -radians.add_conversion_factor(degrees, 180.0/np.pi) -degrees.add_conversion_factor(radians, np.pi/180.0) - -secs = BasicUnit('s', 'seconds') -hertz = BasicUnit('Hz', 'Hertz') -minutes = BasicUnit('min', 'minutes') - -secs.add_conversion_fn(hertz, lambda x: 1./x) -secs.add_conversion_factor(minutes, 1/60.0) - - -# radians formatting -def rad_fn(x, pos=None): - if x >= 0: - n = int((x / np.pi) * 2.0 + 0.25) - else: - n = int((x / np.pi) * 2.0 - 0.25) - - if n == 0: - return '0' - elif n == 1: - return r'$\pi/2$' - elif n == 2: - return r'$\pi$' - elif n == -1: - return r'$-\pi/2$' - elif n == -2: - return r'$-\pi$' - elif n % 2 == 0: - return fr'${n//2}\pi$' - else: - return fr'${n}\pi/2$' - - -class BasicUnitConverter(units.ConversionInterface): - @staticmethod - def axisinfo(unit, axis): - 'return AxisInfo instance for x and unit' - - if unit == radians: - return units.AxisInfo( - majloc=ticker.MultipleLocator(base=np.pi/2), - majfmt=ticker.FuncFormatter(rad_fn), - label=unit.fullname, - ) - elif unit == degrees: - return units.AxisInfo( - majloc=ticker.AutoLocator(), - majfmt=ticker.FormatStrFormatter(r'$%i^\circ$'), - label=unit.fullname, - ) - elif unit is not None: - if hasattr(unit, 'fullname'): - return units.AxisInfo(label=unit.fullname) - elif hasattr(unit, 'unit'): - return units.AxisInfo(label=unit.unit.fullname) - return None - - @staticmethod - def convert(val, unit, axis): - if units.ConversionInterface.is_numlike(val): - return val - if np.iterable(val): - if isinstance(val, np.ma.MaskedArray): - val = val.astype(float).filled(np.nan) - out = np.empty(len(val)) - for i, thisval in enumerate(val): - if np.ma.is_masked(thisval): - out[i] = np.nan - else: - try: - out[i] = thisval.convert_to(unit).get_value() - except AttributeError: - out[i] = thisval - return out - if np.ma.is_masked(val): - return np.nan - else: - return val.convert_to(unit).get_value() - - @staticmethod - def default_units(x, axis): - 'return the default unit for x or None' - if np.iterable(x): - for thisx in x: - return thisx.unit - return x.unit - - -def cos(x): - if np.iterable(x): - return [math.cos(val.convert_to(radians).get_value()) for val in x] - else: - return math.cos(x.convert_to(radians).get_value()) - - -basicConverter = BasicUnitConverter() -units.registry[BasicUnit] = basicConverter -units.registry[TaggedValue] = basicConverter diff --git a/_downloads/a9bc7d80fca6fb9ccf6b2c13400cbaf7/log_demo.ipynb b/_downloads/a9bc7d80fca6fb9ccf6b2c13400cbaf7/log_demo.ipynb deleted file mode 120000 index 81e7236e08b..00000000000 --- a/_downloads/a9bc7d80fca6fb9ccf6b2c13400cbaf7/log_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a9bc7d80fca6fb9ccf6b2c13400cbaf7/log_demo.ipynb \ No newline at end of file diff --git a/_downloads/a9bda289118b61183ceb59c7b7f8b48a/keypress_demo.py b/_downloads/a9bda289118b61183ceb59c7b7f8b48a/keypress_demo.py deleted file mode 100644 index 149cb1ba310..00000000000 --- a/_downloads/a9bda289118b61183ceb59c7b7f8b48a/keypress_demo.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============= -Keypress Demo -============= - -Show how to connect to keypress events -""" -import sys -import numpy as np -import matplotlib.pyplot as plt - - -def press(event): - print('press', event.key) - sys.stdout.flush() - if event.key == 'x': - visible = xl.get_visible() - xl.set_visible(not visible) - fig.canvas.draw() - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() - -fig.canvas.mpl_connect('key_press_event', press) - -ax.plot(np.random.rand(12), np.random.rand(12), 'go') -xl = ax.set_xlabel('easy come, easy go') -ax.set_title('Press a key') -plt.show() diff --git a/_downloads/a9c54d6601126193044252580af552ae/pie_features.py b/_downloads/a9c54d6601126193044252580af552ae/pie_features.py deleted file mode 100644 index d52f3a699ae..00000000000 --- a/_downloads/a9c54d6601126193044252580af552ae/pie_features.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -=============== -Basic pie chart -=============== - -Demo of a basic pie chart plus a few additional features. - -In addition to the basic pie chart, this demo shows a few optional features: - - * slice labels - * auto-labeling the percentage - * offsetting a slice with "explode" - * drop-shadow - * custom start angle - -Note about the custom start angle: - -The default ``startangle`` is 0, which would start the "Frogs" slice on the -positive x-axis. This example sets ``startangle = 90`` such that everything is -rotated counter-clockwise by 90 degrees, and the frog slice starts on the -positive y-axis. -""" -import matplotlib.pyplot as plt - -# Pie chart, where the slices will be ordered and plotted counter-clockwise: -labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' -sizes = [15, 30, 45, 10] -explode = (0, 0.1, 0, 0) # only "explode" the 2nd slice (i.e. 'Hogs') - -fig1, ax1 = plt.subplots() -ax1.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%', - shadow=True, startangle=90) -ax1.axis('equal') # Equal aspect ratio ensures that pie is drawn as a circle. - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie diff --git a/_downloads/a9ca910b3ec0faf6ddad04fe016e704e/subplot.ipynb b/_downloads/a9ca910b3ec0faf6ddad04fe016e704e/subplot.ipynb deleted file mode 120000 index 02d63a27e45..00000000000 --- a/_downloads/a9ca910b3ec0faf6ddad04fe016e704e/subplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/a9ca910b3ec0faf6ddad04fe016e704e/subplot.ipynb \ No newline at end of file diff --git a/_downloads/a9d4926fb1a083af7fa05054de0e9092/tick_labels_from_values.py b/_downloads/a9d4926fb1a083af7fa05054de0e9092/tick_labels_from_values.py deleted file mode 120000 index f7fb0521899..00000000000 --- a/_downloads/a9d4926fb1a083af7fa05054de0e9092/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/a9d4926fb1a083af7fa05054de0e9092/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/a9d7666ecc546aca5a09ec9b65cbb407/stem_plot.ipynb b/_downloads/a9d7666ecc546aca5a09ec9b65cbb407/stem_plot.ipynb deleted file mode 120000 index ded46538abe..00000000000 --- a/_downloads/a9d7666ecc546aca5a09ec9b65cbb407/stem_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a9d7666ecc546aca5a09ec9b65cbb407/stem_plot.ipynb \ No newline at end of file diff --git a/_downloads/a9fbced66a5ecdb68b4c5d20b95845bf/figimage_demo.py b/_downloads/a9fbced66a5ecdb68b4c5d20b95845bf/figimage_demo.py deleted file mode 120000 index 20c4cfe8d6c..00000000000 --- a/_downloads/a9fbced66a5ecdb68b4c5d20b95845bf/figimage_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/a9fbced66a5ecdb68b4c5d20b95845bf/figimage_demo.py \ No newline at end of file diff --git a/_downloads/aa0272be5e1389f75981bdd4726ab1c1/vline_hline_demo.py b/_downloads/aa0272be5e1389f75981bdd4726ab1c1/vline_hline_demo.py deleted file mode 120000 index 7dbb8deb6c9..00000000000 --- a/_downloads/aa0272be5e1389f75981bdd4726ab1c1/vline_hline_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/aa0272be5e1389f75981bdd4726ab1c1/vline_hline_demo.py \ No newline at end of file diff --git a/_downloads/aa02d7e54583cadef738ab53817a4130/custom_scale.py b/_downloads/aa02d7e54583cadef738ab53817a4130/custom_scale.py deleted file mode 120000 index 198036144ce..00000000000 --- a/_downloads/aa02d7e54583cadef738ab53817a4130/custom_scale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aa02d7e54583cadef738ab53817a4130/custom_scale.py \ No newline at end of file diff --git a/_downloads/aa167433a0ccdf23a207687a44a29246/demo_ticklabel_direction.py b/_downloads/aa167433a0ccdf23a207687a44a29246/demo_ticklabel_direction.py deleted file mode 120000 index ef2959af249..00000000000 --- a/_downloads/aa167433a0ccdf23a207687a44a29246/demo_ticklabel_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aa167433a0ccdf23a207687a44a29246/demo_ticklabel_direction.py \ No newline at end of file diff --git a/_downloads/aa1b42b936243668489721c368fefb70/geo_demo.ipynb b/_downloads/aa1b42b936243668489721c368fefb70/geo_demo.ipynb deleted file mode 120000 index 3573672a3c1..00000000000 --- a/_downloads/aa1b42b936243668489721c368fefb70/geo_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aa1b42b936243668489721c368fefb70/geo_demo.ipynb \ No newline at end of file diff --git a/_downloads/aa1b5f188298753d11c2be2681b22a84/colorbar_placement.ipynb b/_downloads/aa1b5f188298753d11c2be2681b22a84/colorbar_placement.ipynb deleted file mode 120000 index 8381cc905f6..00000000000 --- a/_downloads/aa1b5f188298753d11c2be2681b22a84/colorbar_placement.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/aa1b5f188298753d11c2be2681b22a84/colorbar_placement.ipynb \ No newline at end of file diff --git a/_downloads/aa1d02cecf609f1372e8dc232ea86262/tick_labels_from_values.py b/_downloads/aa1d02cecf609f1372e8dc232ea86262/tick_labels_from_values.py deleted file mode 100644 index c504796b7a1..00000000000 --- a/_downloads/aa1d02cecf609f1372e8dc232ea86262/tick_labels_from_values.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -========================================= -Setting tick labels from a list of values -========================================= - -Using ax.set_xticks causes the tick labels to be set on the currently -chosen ticks. However, you may want to allow matplotlib to dynamically -choose the number of ticks and their spacing. - -In this case it may be better to determine the tick label from the -value at the tick. The following example shows how to do this. - -NB: The MaxNLocator is used here to ensure that the tick values -take integer values. - -""" - -import matplotlib.pyplot as plt -from matplotlib.ticker import FuncFormatter, MaxNLocator -fig, ax = plt.subplots() -xs = range(26) -ys = range(26) -labels = list('abcdefghijklmnopqrstuvwxyz') - - -def format_fn(tick_val, tick_pos): - if int(tick_val) in xs: - return labels[int(tick_val)] - else: - return '' - - -ax.xaxis.set_major_formatter(FuncFormatter(format_fn)) -ax.xaxis.set_major_locator(MaxNLocator(integer=True)) -ax.plot(xs, ys) -plt.show() diff --git a/_downloads/aa2392bab18a75b5c0af6abe43e447c8/scatter_piecharts.ipynb b/_downloads/aa2392bab18a75b5c0af6abe43e447c8/scatter_piecharts.ipynb deleted file mode 120000 index c6ffbb88cc8..00000000000 --- a/_downloads/aa2392bab18a75b5c0af6abe43e447c8/scatter_piecharts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/aa2392bab18a75b5c0af6abe43e447c8/scatter_piecharts.ipynb \ No newline at end of file diff --git a/_downloads/aa347e46b929eb5349d5c87ac10dc9ea/dark_background.py b/_downloads/aa347e46b929eb5349d5c87ac10dc9ea/dark_background.py deleted file mode 100644 index 4342667cfbe..00000000000 --- a/_downloads/aa347e46b929eb5349d5c87ac10dc9ea/dark_background.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -=========================== -Dark background style sheet -=========================== - -This example demonstrates the "dark_background" style, which uses white for -elements that are typically black (text, borders, etc). Note that not all plot -elements default to colors defined by an rc parameter. - -""" -import numpy as np -import matplotlib.pyplot as plt - - -plt.style.use('dark_background') - -fig, ax = plt.subplots() - -L = 6 -x = np.linspace(0, L) -ncolors = len(plt.rcParams['axes.prop_cycle']) -shift = np.linspace(0, L, ncolors, endpoint=False) -for s in shift: - ax.plot(x, np.sin(x + s), 'o-') -ax.set_xlabel('x-axis') -ax.set_ylabel('y-axis') -ax.set_title("'dark_background' style sheet") - -plt.show() diff --git a/_downloads/aa35bdc9aff50d49c3a4fb2d5766983c/stem.ipynb b/_downloads/aa35bdc9aff50d49c3a4fb2d5766983c/stem.ipynb deleted file mode 120000 index 980d358bdaa..00000000000 --- a/_downloads/aa35bdc9aff50d49c3a4fb2d5766983c/stem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aa35bdc9aff50d49c3a4fb2d5766983c/stem.ipynb \ No newline at end of file diff --git a/_downloads/aa3b488173299f020932084b40444a35/customized_violin.ipynb b/_downloads/aa3b488173299f020932084b40444a35/customized_violin.ipynb deleted file mode 120000 index fad93c71959..00000000000 --- a/_downloads/aa3b488173299f020932084b40444a35/customized_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/aa3b488173299f020932084b40444a35/customized_violin.ipynb \ No newline at end of file diff --git a/_downloads/aa47bfddb399ef4c2137b19dcf36813e/rain.ipynb b/_downloads/aa47bfddb399ef4c2137b19dcf36813e/rain.ipynb deleted file mode 120000 index f497ca6f0ed..00000000000 --- a/_downloads/aa47bfddb399ef4c2137b19dcf36813e/rain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aa47bfddb399ef4c2137b19dcf36813e/rain.ipynb \ No newline at end of file diff --git a/_downloads/aa524466843753b8ae8bc7808452c13d/radian_demo.ipynb b/_downloads/aa524466843753b8ae8bc7808452c13d/radian_demo.ipynb deleted file mode 120000 index 7611e5e4064..00000000000 --- a/_downloads/aa524466843753b8ae8bc7808452c13d/radian_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aa524466843753b8ae8bc7808452c13d/radian_demo.ipynb \ No newline at end of file diff --git a/_downloads/aa54ac4aa987a6225c6b20fd741f8bf8/hyperlinks_sgskip.py b/_downloads/aa54ac4aa987a6225c6b20fd741f8bf8/hyperlinks_sgskip.py deleted file mode 120000 index cec90015d8e..00000000000 --- a/_downloads/aa54ac4aa987a6225c6b20fd741f8bf8/hyperlinks_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/aa54ac4aa987a6225c6b20fd741f8bf8/hyperlinks_sgskip.py \ No newline at end of file diff --git a/_downloads/aa5a933dabdc75b45257dde38f89e3fd/contourf3d_2.ipynb b/_downloads/aa5a933dabdc75b45257dde38f89e3fd/contourf3d_2.ipynb deleted file mode 120000 index 038e20d0185..00000000000 --- a/_downloads/aa5a933dabdc75b45257dde38f89e3fd/contourf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aa5a933dabdc75b45257dde38f89e3fd/contourf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/aa6bd0f6bf4ee4b370209fd1190063df/simple_legend02.py b/_downloads/aa6bd0f6bf4ee4b370209fd1190063df/simple_legend02.py deleted file mode 120000 index 579ea4d238d..00000000000 --- a/_downloads/aa6bd0f6bf4ee4b370209fd1190063df/simple_legend02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aa6bd0f6bf4ee4b370209fd1190063df/simple_legend02.py \ No newline at end of file diff --git a/_downloads/aa6c36e720d7d8f36961176eb3037dd1/surface3d_2.py b/_downloads/aa6c36e720d7d8f36961176eb3037dd1/surface3d_2.py deleted file mode 120000 index 34286fb2492..00000000000 --- a/_downloads/aa6c36e720d7d8f36961176eb3037dd1/surface3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aa6c36e720d7d8f36961176eb3037dd1/surface3d_2.py \ No newline at end of file diff --git a/_downloads/aa6dd8552160619de66bc8501296828f/logos2.ipynb b/_downloads/aa6dd8552160619de66bc8501296828f/logos2.ipynb deleted file mode 120000 index c8fb51859c2..00000000000 --- a/_downloads/aa6dd8552160619de66bc8501296828f/logos2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aa6dd8552160619de66bc8501296828f/logos2.ipynb \ No newline at end of file diff --git a/_downloads/aa6f006221cc71e638cf35f4e317cc88/demo_floating_axes.py b/_downloads/aa6f006221cc71e638cf35f4e317cc88/demo_floating_axes.py deleted file mode 120000 index 1ae6ff91071..00000000000 --- a/_downloads/aa6f006221cc71e638cf35f4e317cc88/demo_floating_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aa6f006221cc71e638cf35f4e317cc88/demo_floating_axes.py \ No newline at end of file diff --git a/_downloads/aa74c0fb52223e947e1a7faf699187e7/axisartist.py b/_downloads/aa74c0fb52223e947e1a7faf699187e7/axisartist.py deleted file mode 120000 index ec8af73938a..00000000000 --- a/_downloads/aa74c0fb52223e947e1a7faf699187e7/axisartist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/aa74c0fb52223e947e1a7faf699187e7/axisartist.py \ No newline at end of file diff --git a/_downloads/aa875f0024c26ecc83a6a47d9ce5b87a/axisartist.ipynb b/_downloads/aa875f0024c26ecc83a6a47d9ce5b87a/axisartist.ipynb deleted file mode 120000 index a55225afcc4..00000000000 --- a/_downloads/aa875f0024c26ecc83a6a47d9ce5b87a/axisartist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aa875f0024c26ecc83a6a47d9ce5b87a/axisartist.ipynb \ No newline at end of file diff --git a/_downloads/aa88be8fc27c357d17d3c6204590e7b1/invert_axes.ipynb b/_downloads/aa88be8fc27c357d17d3c6204590e7b1/invert_axes.ipynb deleted file mode 120000 index bd83a0ee55b..00000000000 --- a/_downloads/aa88be8fc27c357d17d3c6204590e7b1/invert_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aa88be8fc27c357d17d3c6204590e7b1/invert_axes.ipynb \ No newline at end of file diff --git a/_downloads/aa95db5317fc4340557b0180d5a99a8a/stackplot_demo.ipynb b/_downloads/aa95db5317fc4340557b0180d5a99a8a/stackplot_demo.ipynb deleted file mode 120000 index 5ec90860ad6..00000000000 --- a/_downloads/aa95db5317fc4340557b0180d5a99a8a/stackplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/aa95db5317fc4340557b0180d5a99a8a/stackplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/aac409150464853ac255f88c378a5652/zoom_inset_axes.py b/_downloads/aac409150464853ac255f88c378a5652/zoom_inset_axes.py deleted file mode 100644 index f75200d87af..00000000000 --- a/_downloads/aac409150464853ac255f88c378a5652/zoom_inset_axes.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -====================== -Zoom region inset axes -====================== - -Example of an inset axes and a rectangle showing where the zoom is located. - -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - import numpy as np - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - -fig, ax = plt.subplots(figsize=[5, 4]) - -# make data -Z, extent = get_demo_image() -Z2 = np.zeros([150, 150], dtype="d") -ny, nx = Z.shape -Z2[30:30 + ny, 30:30 + nx] = Z - -ax.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") - -# inset axes.... -axins = ax.inset_axes([0.5, 0.5, 0.47, 0.47]) -axins.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") -# sub region of the original image -x1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9 -axins.set_xlim(x1, x2) -axins.set_ylim(y1, y2) -axins.set_xticklabels('') -axins.set_yticklabels('') - -ax.indicate_inset_zoom(axins) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.inset_axes -matplotlib.axes.Axes.indicate_inset_zoom -matplotlib.axes.Axes.imshow diff --git a/_downloads/aac7bba6e7facfef3fedb580024cae78/color_cycle.ipynb b/_downloads/aac7bba6e7facfef3fedb580024cae78/color_cycle.ipynb deleted file mode 120000 index ca114bf08d8..00000000000 --- a/_downloads/aac7bba6e7facfef3fedb580024cae78/color_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aac7bba6e7facfef3fedb580024cae78/color_cycle.ipynb \ No newline at end of file diff --git a/_downloads/aaca8967248d26e4ca349d50bc8f373e/share_axis_lims_views.ipynb b/_downloads/aaca8967248d26e4ca349d50bc8f373e/share_axis_lims_views.ipynb deleted file mode 120000 index b00ae7bf624..00000000000 --- a/_downloads/aaca8967248d26e4ca349d50bc8f373e/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/aaca8967248d26e4ca349d50bc8f373e/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/aacf8cc510d03274ac5737b30cbbe880/pcolormesh_levels.py b/_downloads/aacf8cc510d03274ac5737b30cbbe880/pcolormesh_levels.py deleted file mode 120000 index ba6270b9455..00000000000 --- a/_downloads/aacf8cc510d03274ac5737b30cbbe880/pcolormesh_levels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aacf8cc510d03274ac5737b30cbbe880/pcolormesh_levels.py \ No newline at end of file diff --git a/_downloads/aad5bb2b0ef7bd882de6fe3ef0a2cf21/scatter3d.ipynb b/_downloads/aad5bb2b0ef7bd882de6fe3ef0a2cf21/scatter3d.ipynb deleted file mode 100644 index 9434d22ba5e..00000000000 --- a/_downloads/aad5bb2b0ef7bd882de6fe3ef0a2cf21/scatter3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D scatterplot\n\n\nDemonstration of a basic scatterplot in 3D.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef randrange(n, vmin, vmax):\n '''\n Helper function to make an array of random numbers having shape (n, )\n with each number distributed Uniform(vmin, vmax).\n '''\n return (vmax - vmin)*np.random.rand(n) + vmin\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\nn = 100\n\n# For each set of style and range settings, plot n random points in the box\n# defined by x in [23, 32], y in [0, 100], z in [zlow, zhigh].\nfor m, zlow, zhigh in [('o', -50, -25), ('^', -30, -5)]:\n xs = randrange(n, 23, 32)\n ys = randrange(n, 0, 100)\n zs = randrange(n, zlow, zhigh)\n ax.scatter(xs, ys, zs, marker=m)\n\nax.set_xlabel('X Label')\nax.set_ylabel('Y Label')\nax.set_zlabel('Z Label')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/aad94dfade69ead9a77cbfaa5cfddd61/contour_label_demo.py b/_downloads/aad94dfade69ead9a77cbfaa5cfddd61/contour_label_demo.py deleted file mode 120000 index 34d5c8e8623..00000000000 --- a/_downloads/aad94dfade69ead9a77cbfaa5cfddd61/contour_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aad94dfade69ead9a77cbfaa5cfddd61/contour_label_demo.py \ No newline at end of file diff --git a/_downloads/aaec500476137f07eda1f93f6c05b5a5/placing_text_boxes.ipynb b/_downloads/aaec500476137f07eda1f93f6c05b5a5/placing_text_boxes.ipynb deleted file mode 120000 index fa730c55a29..00000000000 --- a/_downloads/aaec500476137f07eda1f93f6c05b5a5/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/aaec500476137f07eda1f93f6c05b5a5/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/aaf3d6fcd77eb3e881561305e3552c07/tricontour3d.py b/_downloads/aaf3d6fcd77eb3e881561305e3552c07/tricontour3d.py deleted file mode 120000 index fd33329507e..00000000000 --- a/_downloads/aaf3d6fcd77eb3e881561305e3552c07/tricontour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/aaf3d6fcd77eb3e881561305e3552c07/tricontour3d.py \ No newline at end of file diff --git a/_downloads/aafa9a6d1b18e77dfea3594191f60db8/mathtext_asarray.py b/_downloads/aafa9a6d1b18e77dfea3594191f60db8/mathtext_asarray.py deleted file mode 120000 index 377f5276dbb..00000000000 --- a/_downloads/aafa9a6d1b18e77dfea3594191f60db8/mathtext_asarray.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aafa9a6d1b18e77dfea3594191f60db8/mathtext_asarray.py \ No newline at end of file diff --git a/_downloads/ab0b1da4943283af1cc3dae6b2a017d0/grayscale.ipynb b/_downloads/ab0b1da4943283af1cc3dae6b2a017d0/grayscale.ipynb deleted file mode 120000 index b3a47f38ae3..00000000000 --- a/_downloads/ab0b1da4943283af1cc3dae6b2a017d0/grayscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ab0b1da4943283af1cc3dae6b2a017d0/grayscale.ipynb \ No newline at end of file diff --git a/_downloads/ab0fba45e231f940e29a0a3aacac8776/pathpatch3d.py b/_downloads/ab0fba45e231f940e29a0a3aacac8776/pathpatch3d.py deleted file mode 120000 index 168770827bb..00000000000 --- a/_downloads/ab0fba45e231f940e29a0a3aacac8776/pathpatch3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ab0fba45e231f940e29a0a3aacac8776/pathpatch3d.py \ No newline at end of file diff --git a/_downloads/ab0fdd393492608857d4d3a8b09f75db/subplot3d.py b/_downloads/ab0fdd393492608857d4d3a8b09f75db/subplot3d.py deleted file mode 120000 index 1f73304af69..00000000000 --- a/_downloads/ab0fdd393492608857d4d3a8b09f75db/subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ab0fdd393492608857d4d3a8b09f75db/subplot3d.py \ No newline at end of file diff --git a/_downloads/ab111f1962e0b5b0e69aac2c7c5e9aff/marker_fillstyle_reference.ipynb b/_downloads/ab111f1962e0b5b0e69aac2c7c5e9aff/marker_fillstyle_reference.ipynb deleted file mode 100644 index 7d8f8c2d330..00000000000 --- a/_downloads/ab111f1962e0b5b0e69aac2c7c5e9aff/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Marker filling-styles\n\n\nReference for marker fill-styles included with Matplotlib.\n\nAlso refer to the\n:doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference`\nand :doc:`/gallery/shapes_and_collections/marker_path` examples.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.lines import Line2D\n\n\npoints = np.ones(5) # Draw 5 points for each line\nmarker_style = dict(color='tab:blue', linestyle=':', marker='o',\n markersize=15, markerfacecoloralt='tab:red')\n\nfig, ax = plt.subplots()\n\n# Plot all fill styles.\nfor y, fill_style in enumerate(Line2D.fillStyles):\n ax.text(-0.5, y, repr(fill_style),\n horizontalalignment='center', verticalalignment='center')\n ax.plot(y * points, fillstyle=fill_style, **marker_style)\n\nax.set_axis_off()\nax.set_title('fill style')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ab187d715c62695105dc8ea0cff30866/simple_legend02.py b/_downloads/ab187d715c62695105dc8ea0cff30866/simple_legend02.py deleted file mode 120000 index c1fe8060b0c..00000000000 --- a/_downloads/ab187d715c62695105dc8ea0cff30866/simple_legend02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ab187d715c62695105dc8ea0cff30866/simple_legend02.py \ No newline at end of file diff --git a/_downloads/ab19e5bb3beb94d4dbc3a908b73ff364/scatter3d.py b/_downloads/ab19e5bb3beb94d4dbc3a908b73ff364/scatter3d.py deleted file mode 100644 index 46648d3a806..00000000000 --- a/_downloads/ab19e5bb3beb94d4dbc3a908b73ff364/scatter3d.py +++ /dev/null @@ -1,43 +0,0 @@ -''' -============== -3D scatterplot -============== - -Demonstration of a basic scatterplot in 3D. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def randrange(n, vmin, vmax): - ''' - Helper function to make an array of random numbers having shape (n, ) - with each number distributed Uniform(vmin, vmax). - ''' - return (vmax - vmin)*np.random.rand(n) + vmin - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -n = 100 - -# For each set of style and range settings, plot n random points in the box -# defined by x in [23, 32], y in [0, 100], z in [zlow, zhigh]. -for m, zlow, zhigh in [('o', -50, -25), ('^', -30, -5)]: - xs = randrange(n, 23, 32) - ys = randrange(n, 0, 100) - zs = randrange(n, zlow, zhigh) - ax.scatter(xs, ys, zs, marker=m) - -ax.set_xlabel('X Label') -ax.set_ylabel('Y Label') -ax.set_zlabel('Z Label') - -plt.show() diff --git a/_downloads/ab1a5de9874994e8c9b927a5da1c579e/wire3d_animation_sgskip.py b/_downloads/ab1a5de9874994e8c9b927a5da1c579e/wire3d_animation_sgskip.py deleted file mode 120000 index c65010c6e1d..00000000000 --- a/_downloads/ab1a5de9874994e8c9b927a5da1c579e/wire3d_animation_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ab1a5de9874994e8c9b927a5da1c579e/wire3d_animation_sgskip.py \ No newline at end of file diff --git a/_downloads/ab2f265340b734f3dc8a2bb34441b9a7/demo_axes_hbox_divider.ipynb b/_downloads/ab2f265340b734f3dc8a2bb34441b9a7/demo_axes_hbox_divider.ipynb deleted file mode 120000 index 88d3e778c54..00000000000 --- a/_downloads/ab2f265340b734f3dc8a2bb34441b9a7/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ab2f265340b734f3dc8a2bb34441b9a7/demo_axes_hbox_divider.ipynb \ No newline at end of file diff --git a/_downloads/ab38cb9fbe85af4110eb56fbb697e978/image_transparency_blend.ipynb b/_downloads/ab38cb9fbe85af4110eb56fbb697e978/image_transparency_blend.ipynb deleted file mode 100644 index 96ef2381d90..00000000000 --- a/_downloads/ab38cb9fbe85af4110eb56fbb697e978/image_transparency_blend.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Blend transparency with color in 2-D images\n\n\nBlend transparency with color to highlight parts of data with imshow.\n\nA common use for :func:`matplotlib.pyplot.imshow` is to plot a 2-D statistical\nmap. While ``imshow`` makes it easy to visualize a 2-D matrix as an image,\nit doesn't easily let you add transparency to the output. For example, one can\nplot a statistic (such as a t-statistic) and color the transparency of\neach pixel according to its p-value. This example demonstrates how you can\nachieve this effect using :class:`matplotlib.colors.Normalize`. Note that it is\nnot possible to directly pass alpha values to :func:`matplotlib.pyplot.imshow`.\n\nFirst we will generate some data, in this case, we'll create two 2-D \"blobs\"\nin a 2-D grid. One blob will be positive, and the other negative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 3\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import Normalize\n\n\ndef normal_pdf(x, mean, var):\n return np.exp(-(x - mean)**2 / (2*var))\n\n\n# Generate the space in which the blobs will live\nxmin, xmax, ymin, ymax = (0, 100, 0, 100)\nn_bins = 100\nxx = np.linspace(xmin, xmax, n_bins)\nyy = np.linspace(ymin, ymax, n_bins)\n\n# Generate the blobs. The range of the values is roughly -.0002 to .0002\nmeans_high = [20, 50]\nmeans_low = [50, 60]\nvar = [150, 200]\n\ngauss_x_high = normal_pdf(xx, means_high[0], var[0])\ngauss_y_high = normal_pdf(yy, means_high[1], var[0])\n\ngauss_x_low = normal_pdf(xx, means_low[0], var[1])\ngauss_y_low = normal_pdf(yy, means_low[1], var[1])\n\nweights_high = np.array(np.meshgrid(gauss_x_high, gauss_y_high)).prod(0)\nweights_low = -1 * np.array(np.meshgrid(gauss_x_low, gauss_y_low)).prod(0)\nweights = weights_high + weights_low\n\n# We'll also create a grey background into which the pixels will fade\ngreys = np.full((*weights.shape, 3), 70, dtype=np.uint8)\n\n# First we'll plot these blobs using only ``imshow``.\nvmax = np.abs(weights).max()\nvmin = -vmax\ncmap = plt.cm.RdYlBu\n\nfig, ax = plt.subplots()\nax.imshow(greys)\nax.imshow(weights, extent=(xmin, xmax, ymin, ymax), cmap=cmap)\nax.set_axis_off()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Blending in transparency\n========================\n\nThe simplest way to include transparency when plotting data with\n:func:`matplotlib.pyplot.imshow` is to convert the 2-D data array to a\n3-D image array of rgba values. This can be done with\n:class:`matplotlib.colors.Normalize`. For example, we'll create a gradient\nmoving from left to right below.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Create an alpha channel of linearly increasing values moving to the right.\nalphas = np.ones(weights.shape)\nalphas[:, 30:] = np.linspace(1, 0, 70)\n\n# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow\ncolors = Normalize(vmin, vmax, clip=True)(weights)\ncolors = cmap(colors)\n\n# Now set the alpha channel to the one we created above\ncolors[..., -1] = alphas\n\n# Create the figure and image\n# Note that the absolute values may be slightly different\nfig, ax = plt.subplots()\nax.imshow(greys)\nax.imshow(colors, extent=(xmin, xmax, ymin, ymax))\nax.set_axis_off()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using transparency to highlight values with high amplitude\n==========================================================\n\nFinally, we'll recreate the same plot, but this time we'll use transparency\nto highlight the extreme values in the data. This is often used to highlight\ndata points with smaller p-values. We'll also add in contour lines to\nhighlight the image values.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Create an alpha channel based on weight values\n# Any value whose absolute value is > .0001 will have zero transparency\nalphas = Normalize(0, .3, clip=True)(np.abs(weights))\nalphas = np.clip(alphas, .4, 1) # alpha value clipped at the bottom at .4\n\n# Normalize the colors b/w 0 and 1, we'll then pass an MxNx4 array to imshow\ncolors = Normalize(vmin, vmax)(weights)\ncolors = cmap(colors)\n\n# Now set the alpha channel to the one we created above\ncolors[..., -1] = alphas\n\n# Create the figure and image\n# Note that the absolute values may be slightly different\nfig, ax = plt.subplots()\nax.imshow(greys)\nax.imshow(colors, extent=(xmin, xmax, ymin, ymax))\n\n# Add contour lines to further highlight different levels.\nax.contour(weights[::-1], levels=[-.1, .1], colors='k', linestyles='-')\nax.set_axis_off()\nplt.show()\n\nax.contour(weights[::-1], levels=[-.0001, .0001], colors='k', linestyles='-')\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.colors.Normalize\nmatplotlib.axes.Axes.set_axis_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ab3f838084c7ddafe92dade4d05a6f67/mouse_cursor.py b/_downloads/ab3f838084c7ddafe92dade4d05a6f67/mouse_cursor.py deleted file mode 120000 index de8da7252b4..00000000000 --- a/_downloads/ab3f838084c7ddafe92dade4d05a6f67/mouse_cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ab3f838084c7ddafe92dade4d05a6f67/mouse_cursor.py \ No newline at end of file diff --git a/_downloads/ab42c080ee33de520fa4271a9f216a07/spines.py b/_downloads/ab42c080ee33de520fa4271a9f216a07/spines.py deleted file mode 120000 index 30e5197b362..00000000000 --- a/_downloads/ab42c080ee33de520fa4271a9f216a07/spines.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ab42c080ee33de520fa4271a9f216a07/spines.py \ No newline at end of file diff --git a/_downloads/ab47540ae25632aade63f142b63ac37a/evans_test.py b/_downloads/ab47540ae25632aade63f142b63ac37a/evans_test.py deleted file mode 100644 index c5fe9696d2f..00000000000 --- a/_downloads/ab47540ae25632aade63f142b63ac37a/evans_test.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -========== -Evans test -========== - -A mockup "Foo" units class which supports conversion and different tick -formatting depending on the "unit". Here the "unit" is just a scalar -conversion factor, but this example shows that Matplotlib is entirely agnostic -to what kind of units client packages use. -""" - -import numpy as np - -import matplotlib.units as units -import matplotlib.ticker as ticker -import matplotlib.pyplot as plt - - -class Foo(object): - def __init__(self, val, unit=1.0): - self.unit = unit - self._val = val * unit - - def value(self, unit): - if unit is None: - unit = self.unit - return self._val / unit - - -class FooConverter(units.ConversionInterface): - @staticmethod - def axisinfo(unit, axis): - 'return the Foo AxisInfo' - if unit == 1.0 or unit == 2.0: - return units.AxisInfo( - majloc=ticker.IndexLocator(8, 0), - majfmt=ticker.FormatStrFormatter("VAL: %s"), - label='foo', - ) - - else: - return None - - @staticmethod - def convert(obj, unit, axis): - """ - convert obj using unit. If obj is a sequence, return the - converted sequence - """ - if units.ConversionInterface.is_numlike(obj): - return obj - - if np.iterable(obj): - return [o.value(unit) for o in obj] - else: - return obj.value(unit) - - @staticmethod - def default_units(x, axis): - 'return the default unit for x or None' - if np.iterable(x): - for thisx in x: - return thisx.unit - else: - return x.unit - - -units.registry[Foo] = FooConverter() - -# create some Foos -x = [] -for val in range(0, 50, 2): - x.append(Foo(val, 1.0)) - -# and some arbitrary y data -y = [i for i in range(len(x))] - - -fig, (ax1, ax2) = plt.subplots(1, 2) -fig.suptitle("Custom units") -fig.subplots_adjust(bottom=0.2) - -# plot specifying units -ax2.plot(x, y, 'o', xunits=2.0) -ax2.set_title("xunits = 2.0") -plt.setp(ax2.get_xticklabels(), rotation=30, ha='right') - -# plot without specifying units; will use the None branch for axisinfo -ax1.plot(x, y) # uses default units -ax1.set_title('default units') -plt.setp(ax1.get_xticklabels(), rotation=30, ha='right') - -plt.show() diff --git a/_downloads/ab48082eb3f36c784ede0991941b7cd0/anatomy.ipynb b/_downloads/ab48082eb3f36c784ede0991941b7cd0/anatomy.ipynb deleted file mode 120000 index b77f5f3181c..00000000000 --- a/_downloads/ab48082eb3f36c784ede0991941b7cd0/anatomy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ab48082eb3f36c784ede0991941b7cd0/anatomy.ipynb \ No newline at end of file diff --git a/_downloads/ab4bd03246a88cfb53019c16e65a14a7/tight_bbox_test.py b/_downloads/ab4bd03246a88cfb53019c16e65a14a7/tight_bbox_test.py deleted file mode 120000 index 08d551d3ad1..00000000000 --- a/_downloads/ab4bd03246a88cfb53019c16e65a14a7/tight_bbox_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/ab4bd03246a88cfb53019c16e65a14a7/tight_bbox_test.py \ No newline at end of file diff --git a/_downloads/ab57eb594b41661ec671a4098489edcc/axes_grid.ipynb b/_downloads/ab57eb594b41661ec671a4098489edcc/axes_grid.ipynb deleted file mode 120000 index 41a36f4ba15..00000000000 --- a/_downloads/ab57eb594b41661ec671a4098489edcc/axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ab57eb594b41661ec671a4098489edcc/axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/ab5ee0e7c001671dd4e3ae15dafd6811/lasso_demo.ipynb b/_downloads/ab5ee0e7c001671dd4e3ae15dafd6811/lasso_demo.ipynb deleted file mode 120000 index 9af38a992fe..00000000000 --- a/_downloads/ab5ee0e7c001671dd4e3ae15dafd6811/lasso_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ab5ee0e7c001671dd4e3ae15dafd6811/lasso_demo.ipynb \ No newline at end of file diff --git a/_downloads/ab6adc9bf34481bb14cc5a3fe74e5b4f/membrane.ipynb b/_downloads/ab6adc9bf34481bb14cc5a3fe74e5b4f/membrane.ipynb deleted file mode 120000 index fd9ea4c23cc..00000000000 --- a/_downloads/ab6adc9bf34481bb14cc5a3fe74e5b4f/membrane.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ab6adc9bf34481bb14cc5a3fe74e5b4f/membrane.ipynb \ No newline at end of file diff --git a/_downloads/ab6c594246884258a85584d46e51bf8e/scalarformatter.ipynb b/_downloads/ab6c594246884258a85584d46e51bf8e/scalarformatter.ipynb deleted file mode 100644 index 20cafe7750e..00000000000 --- a/_downloads/ab6c594246884258a85584d46e51bf8e/scalarformatter.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tick formatting using the ScalarFormatter\n\n\nThe example shows use of ScalarFormatter with different settings.\n\nExample 1 : Default\n\nExample 2 : With no Numerical Offset\n\nExample 3 : With Mathtext\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.ticker import ScalarFormatter" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 1, .01)\nfig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6))\nfig.text(0.5, 0.975, 'The new formatter, default settings',\n horizontalalignment='center',\n verticalalignment='top')\n\nax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5)\nax1.xaxis.set_major_formatter(ScalarFormatter())\nax1.yaxis.set_major_formatter(ScalarFormatter())\n\nax2.plot(x * 1e5, x * 1e-4)\nax2.xaxis.set_major_formatter(ScalarFormatter())\nax2.yaxis.set_major_formatter(ScalarFormatter())\n\nax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10)\nax3.xaxis.set_major_formatter(ScalarFormatter())\nax3.yaxis.set_major_formatter(ScalarFormatter())\n\nax4.plot(-x * 1e5, -x * 1e-4)\nax4.xaxis.set_major_formatter(ScalarFormatter())\nax4.yaxis.set_major_formatter(ScalarFormatter())\n\nfig.subplots_adjust(wspace=0.7, hspace=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 1, .01)\nfig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6))\nfig.text(0.5, 0.975, 'The new formatter, no numerical offset',\n horizontalalignment='center',\n verticalalignment='top')\n\nax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5)\nax1.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax1.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nax2.plot(x * 1e5, x * 1e-4)\nax2.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax2.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10)\nax3.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax3.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nax4.plot(-x * 1e5, -x * 1e-4)\nax4.xaxis.set_major_formatter(ScalarFormatter(useOffset=False))\nax4.yaxis.set_major_formatter(ScalarFormatter(useOffset=False))\n\nfig.subplots_adjust(wspace=0.7, hspace=0.6)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Example 3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 1, .01)\nfig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6))\nfig.text(0.5, 0.975, 'The new formatter, with mathtext',\n horizontalalignment='center',\n verticalalignment='top')\n\nax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5)\nax1.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax1.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nax2.plot(x * 1e5, x * 1e-4)\nax2.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax2.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10)\nax3.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax3.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nax4.plot(-x * 1e5, -x * 1e-4)\nax4.xaxis.set_major_formatter(ScalarFormatter(useMathText=True))\nax4.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))\n\nfig.subplots_adjust(wspace=0.7, hspace=0.6)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ab91c0deed43fa340d955846d6f60c09/polygon_selector_demo.py b/_downloads/ab91c0deed43fa340d955846d6f60c09/polygon_selector_demo.py deleted file mode 120000 index 57defa6808f..00000000000 --- a/_downloads/ab91c0deed43fa340d955846d6f60c09/polygon_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ab91c0deed43fa340d955846d6f60c09/polygon_selector_demo.py \ No newline at end of file diff --git a/_downloads/ab9a9acc9ad3c29823e2331dd01cdf46/fancyarrow_demo.py b/_downloads/ab9a9acc9ad3c29823e2331dd01cdf46/fancyarrow_demo.py deleted file mode 120000 index 4a2ceb7bfe2..00000000000 --- a/_downloads/ab9a9acc9ad3c29823e2331dd01cdf46/fancyarrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ab9a9acc9ad3c29823e2331dd01cdf46/fancyarrow_demo.py \ No newline at end of file diff --git a/_downloads/ab9be4d6ae9b299edb4f36ebc1035bb0/trisurf3d.ipynb b/_downloads/ab9be4d6ae9b299edb4f36ebc1035bb0/trisurf3d.ipynb deleted file mode 120000 index e7f69adf521..00000000000 --- a/_downloads/ab9be4d6ae9b299edb4f36ebc1035bb0/trisurf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ab9be4d6ae9b299edb4f36ebc1035bb0/trisurf3d.ipynb \ No newline at end of file diff --git a/_downloads/ab9c76ca52a741f69ef06b31715363b9/anchored_box01.py b/_downloads/ab9c76ca52a741f69ef06b31715363b9/anchored_box01.py deleted file mode 100644 index 00f75c7f551..00000000000 --- a/_downloads/ab9c76ca52a741f69ef06b31715363b9/anchored_box01.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -============== -Anchored Box01 -============== - -""" -import matplotlib.pyplot as plt -from matplotlib.offsetbox import AnchoredText - - -fig, ax = plt.subplots(figsize=(3, 3)) - -at = AnchoredText("Figure 1a", - prop=dict(size=15), frameon=True, loc='upper left') -at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") -ax.add_artist(at) - -plt.show() diff --git a/_downloads/ab9df6730787780014a4b77b7bca8d5b/invert_axes.ipynb b/_downloads/ab9df6730787780014a4b77b7bca8d5b/invert_axes.ipynb deleted file mode 120000 index 57729d50f80..00000000000 --- a/_downloads/ab9df6730787780014a4b77b7bca8d5b/invert_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ab9df6730787780014a4b77b7bca8d5b/invert_axes.ipynb \ No newline at end of file diff --git a/_downloads/aba983f2f857325e9eee05e8fe7cae6b/date_demo_convert.ipynb b/_downloads/aba983f2f857325e9eee05e8fe7cae6b/date_demo_convert.ipynb deleted file mode 100644 index 56b5fb18db1..00000000000 --- a/_downloads/aba983f2f857325e9eee05e8fe7cae6b/date_demo_convert.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date Demo Convert\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\nimport matplotlib.pyplot as plt\nfrom matplotlib.dates import DayLocator, HourLocator, DateFormatter, drange\nimport numpy as np\n\ndate1 = datetime.datetime(2000, 3, 2)\ndate2 = datetime.datetime(2000, 3, 6)\ndelta = datetime.timedelta(hours=6)\ndates = drange(date1, date2, delta)\n\ny = np.arange(len(dates))\n\nfig, ax = plt.subplots()\nax.plot_date(dates, y ** 2)\n\n# this is superfluous, since the autoscaler should get it right, but\n# use date2num and num2date to convert between dates and floats if\n# you want; both date2num and num2date convert an instance or sequence\nax.set_xlim(dates[0], dates[-1])\n\n# The hour locator takes the hour or sequence of hours you want to\n# tick, not the base multiple\n\nax.xaxis.set_major_locator(DayLocator())\nax.xaxis.set_minor_locator(HourLocator(range(0, 25, 6)))\nax.xaxis.set_major_formatter(DateFormatter('%Y-%m-%d'))\n\nax.fmt_xdata = DateFormatter('%Y-%m-%d %H:%M:%S')\nfig.autofmt_xdate()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/abacb9c9e7bf9a53e260eda5861b5829/errorbar_limits_simple.py b/_downloads/abacb9c9e7bf9a53e260eda5861b5829/errorbar_limits_simple.py deleted file mode 120000 index 9224dbd79a3..00000000000 --- a/_downloads/abacb9c9e7bf9a53e260eda5861b5829/errorbar_limits_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/abacb9c9e7bf9a53e260eda5861b5829/errorbar_limits_simple.py \ No newline at end of file diff --git a/_downloads/abb56b88bf3fd52a58e5034c1d345977/affine_image.ipynb b/_downloads/abb56b88bf3fd52a58e5034c1d345977/affine_image.ipynb deleted file mode 100644 index 420a84268ff..00000000000 --- a/_downloads/abb56b88bf3fd52a58e5034c1d345977/affine_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Affine transform of an image\n\n\n\nPrepending an affine transformation (:class:`~.transforms.Affine2D`)\nto the `data transform `\nof an image allows to manipulate the image's shape and orientation.\nThis is an example of the concept of\n`transform chaining `.\n\nFor the backends that support draw_image with optional affine\ntransform (e.g., agg, ps backend), the image of the output should\nhave its boundary match the dashed yellow rectangle.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\n\n\ndef get_image():\n delta = 0.25\n x = y = np.arange(-3.0, 3.0, delta)\n X, Y = np.meshgrid(x, y)\n Z1 = np.exp(-X**2 - Y**2)\n Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\n Z = (Z1 - Z2)\n return Z\n\n\ndef do_plot(ax, Z, transform):\n im = ax.imshow(Z, interpolation='none',\n origin='lower',\n extent=[-2, 4, -3, 2], clip_on=True)\n\n trans_data = transform + ax.transData\n im.set_transform(trans_data)\n\n # display intended extent of the image\n x1, x2, y1, y2 = im.get_extent()\n ax.plot([x1, x2, x2, x1, x1], [y1, y1, y2, y2, y1], \"y--\",\n transform=trans_data)\n ax.set_xlim(-5, 5)\n ax.set_ylim(-4, 4)\n\n\n# prepare image and figure\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\nZ = get_image()\n\n# image rotation\ndo_plot(ax1, Z, mtransforms.Affine2D().rotate_deg(30))\n\n# image skew\ndo_plot(ax2, Z, mtransforms.Affine2D().skew_deg(30, 15))\n\n# scale and reflection\ndo_plot(ax3, Z, mtransforms.Affine2D().scale(-1, .5))\n\n# everything and a translation\ndo_plot(ax4, Z, mtransforms.Affine2D().\n rotate_deg(30).skew_deg(30, 15).scale(-1, .5).translate(.5, -1))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.transforms.Affine2D" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/abb619d4a1d7c295cb7fe0de14f48786/auto_ticks.ipynb b/_downloads/abb619d4a1d7c295cb7fe0de14f48786/auto_ticks.ipynb deleted file mode 120000 index 9bd49b55823..00000000000 --- a/_downloads/abb619d4a1d7c295cb7fe0de14f48786/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/abb619d4a1d7c295cb7fe0de14f48786/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/abbcafa580a54f14a405aa0f694a28cd/tick-locators.ipynb b/_downloads/abbcafa580a54f14a405aa0f694a28cd/tick-locators.ipynb deleted file mode 120000 index 3a4a1561fdd..00000000000 --- a/_downloads/abbcafa580a54f14a405aa0f694a28cd/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/abbcafa580a54f14a405aa0f694a28cd/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/abcb2eaa71c07184b93192c3bf4172c2/svg_histogram_sgskip.ipynb b/_downloads/abcb2eaa71c07184b93192c3bf4172c2/svg_histogram_sgskip.ipynb deleted file mode 120000 index 3ed3f4c29cf..00000000000 --- a/_downloads/abcb2eaa71c07184b93192c3bf4172c2/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/abcb2eaa71c07184b93192c3bf4172c2/svg_histogram_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/abd5299e8170b438379a96c2ebc72b39/hatch_demo.py b/_downloads/abd5299e8170b438379a96c2ebc72b39/hatch_demo.py deleted file mode 120000 index bf677c1cb72..00000000000 --- a/_downloads/abd5299e8170b438379a96c2ebc72b39/hatch_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/abd5299e8170b438379a96c2ebc72b39/hatch_demo.py \ No newline at end of file diff --git a/_downloads/abddb4495fac2ef23c2cdefce08b31a0/patheffects_guide.py b/_downloads/abddb4495fac2ef23c2cdefce08b31a0/patheffects_guide.py deleted file mode 120000 index 0a38ce4874e..00000000000 --- a/_downloads/abddb4495fac2ef23c2cdefce08b31a0/patheffects_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/abddb4495fac2ef23c2cdefce08b31a0/patheffects_guide.py \ No newline at end of file diff --git a/_downloads/abe7d87ba569c1f0513de7c16170bfb4/simple_axisline4.ipynb b/_downloads/abe7d87ba569c1f0513de7c16170bfb4/simple_axisline4.ipynb deleted file mode 120000 index 88684c0b016..00000000000 --- a/_downloads/abe7d87ba569c1f0513de7c16170bfb4/simple_axisline4.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/abe7d87ba569c1f0513de7c16170bfb4/simple_axisline4.ipynb \ No newline at end of file diff --git a/_downloads/abec16da5bd6a40dd9db3b7f27c20ca5/scatter_symbol.py b/_downloads/abec16da5bd6a40dd9db3b7f27c20ca5/scatter_symbol.py deleted file mode 100644 index d99b6a80a74..00000000000 --- a/_downloads/abec16da5bd6a40dd9db3b7f27c20ca5/scatter_symbol.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -============== -Scatter Symbol -============== - -Scatter plot with clover symbols. - -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x = np.arange(0.0, 50.0, 2.0) -y = x ** 1.3 + np.random.rand(*x.shape) * 30.0 -s = np.random.rand(*x.shape) * 800 + 500 - -plt.scatter(x, y, s, c="g", alpha=0.5, marker=r'$\clubsuit$', - label="Luck") -plt.xlabel("Leprechauns") -plt.ylabel("Gold") -plt.legend(loc='upper left') -plt.show() diff --git a/_downloads/abedae7c9e66c2c6491b6e7134526402/stem_plot.ipynb b/_downloads/abedae7c9e66c2c6491b6e7134526402/stem_plot.ipynb deleted file mode 120000 index 1c0999a400f..00000000000 --- a/_downloads/abedae7c9e66c2c6491b6e7134526402/stem_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/abedae7c9e66c2c6491b6e7134526402/stem_plot.ipynb \ No newline at end of file diff --git a/_downloads/abef17266b73e15208e5e3a6664963cc/annotate_simple03.py b/_downloads/abef17266b73e15208e5e3a6664963cc/annotate_simple03.py deleted file mode 100644 index c2d1c17b4ae..00000000000 --- a/_downloads/abef17266b73e15208e5e3a6664963cc/annotate_simple03.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -================= -Annotate Simple03 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ann = ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - bbox=dict(boxstyle="round4", fc="w"), - arrowprops=dict(arrowstyle="-|>", - connectionstyle="arc3,rad=-0.2", - fc="w"), - ) - -plt.show() diff --git a/_downloads/abf43385578cd8f5bfcc32069e27209f/pause_resume.py b/_downloads/abf43385578cd8f5bfcc32069e27209f/pause_resume.py deleted file mode 120000 index e3f31129e52..00000000000 --- a/_downloads/abf43385578cd8f5bfcc32069e27209f/pause_resume.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/abf43385578cd8f5bfcc32069e27209f/pause_resume.py \ No newline at end of file diff --git a/_downloads/abfbd1ab4016084642814d5d05f203b0/textbox.ipynb b/_downloads/abfbd1ab4016084642814d5d05f203b0/textbox.ipynb deleted file mode 100644 index a30f9e086de..00000000000 --- a/_downloads/abfbd1ab4016084642814d5d05f203b0/textbox.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Textbox\n\n\nAllowing text input with the Textbox widget.\n\nYou can use the Textbox widget to let users provide any text that needs to be\ndisplayed, including formulas. You can use a submit button to create plots\nwith the given input.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import TextBox\nfig, ax = plt.subplots()\nplt.subplots_adjust(bottom=0.2)\nt = np.arange(-2.0, 2.0, 0.001)\ns = t ** 2\ninitial_text = \"t ** 2\"\nl, = plt.plot(t, s, lw=2)\n\n\ndef submit(text):\n ydata = eval(text)\n l.set_ydata(ydata)\n ax.set_ylim(np.min(ydata), np.max(ydata))\n plt.draw()\n\naxbox = plt.axes([0.1, 0.05, 0.8, 0.075])\ntext_box = TextBox(axbox, 'Evaluate', initial=initial_text)\ntext_box.on_submit(submit)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ac009175fbbfc56fdb609a8237dbae93/demo_axes_divider.py b/_downloads/ac009175fbbfc56fdb609a8237dbae93/demo_axes_divider.py deleted file mode 120000 index 1992f5e9e49..00000000000 --- a/_downloads/ac009175fbbfc56fdb609a8237dbae93/demo_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ac009175fbbfc56fdb609a8237dbae93/demo_axes_divider.py \ No newline at end of file diff --git a/_downloads/ac017ffcdbd490c983da4d33d9dc82f7/demo_floating_axes.ipynb b/_downloads/ac017ffcdbd490c983da4d33d9dc82f7/demo_floating_axes.ipynb deleted file mode 120000 index 60269f2e754..00000000000 --- a/_downloads/ac017ffcdbd490c983da4d33d9dc82f7/demo_floating_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ac017ffcdbd490c983da4d33d9dc82f7/demo_floating_axes.ipynb \ No newline at end of file diff --git a/_downloads/ac08119b26c44e0a321992f71fab4d70/mandelbrot.py b/_downloads/ac08119b26c44e0a321992f71fab4d70/mandelbrot.py deleted file mode 120000 index 3c071a29074..00000000000 --- a/_downloads/ac08119b26c44e0a321992f71fab4d70/mandelbrot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ac08119b26c44e0a321992f71fab4d70/mandelbrot.py \ No newline at end of file diff --git a/_downloads/ac0922a84ee073afe5affa69b44272ae/lasso_demo.ipynb b/_downloads/ac0922a84ee073afe5affa69b44272ae/lasso_demo.ipynb deleted file mode 120000 index 610828b0ab2..00000000000 --- a/_downloads/ac0922a84ee073afe5affa69b44272ae/lasso_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ac0922a84ee073afe5affa69b44272ae/lasso_demo.ipynb \ No newline at end of file diff --git a/_downloads/ac0a076b983d6bf3fd33bc7ab03f2e25/auto_ticks.ipynb b/_downloads/ac0a076b983d6bf3fd33bc7ab03f2e25/auto_ticks.ipynb deleted file mode 120000 index a55ebcf070c..00000000000 --- a/_downloads/ac0a076b983d6bf3fd33bc7ab03f2e25/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ac0a076b983d6bf3fd33bc7ab03f2e25/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/ac0b5c08198cf8cc27d78fcdc38cda92/matshow.py b/_downloads/ac0b5c08198cf8cc27d78fcdc38cda92/matshow.py deleted file mode 120000 index 96ef66be6f8..00000000000 --- a/_downloads/ac0b5c08198cf8cc27d78fcdc38cda92/matshow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ac0b5c08198cf8cc27d78fcdc38cda92/matshow.py \ No newline at end of file diff --git a/_downloads/ac1aaf2cebea5486282092c7b26a5290/bbox_intersect.py b/_downloads/ac1aaf2cebea5486282092c7b26a5290/bbox_intersect.py deleted file mode 100644 index 22150ed447a..00000000000 --- a/_downloads/ac1aaf2cebea5486282092c7b26a5290/bbox_intersect.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -=========================================== -Changing colors of lines intersecting a box -=========================================== - -The lines intersecting the rectangle are colored in red, while the others -are left as blue lines. This example showcases the `intersect_bbox` function. - -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.transforms import Bbox -from matplotlib.path import Path - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -left, bottom, width, height = (-1, -1, 2, 2) -rect = plt.Rectangle((left, bottom), width, height, - facecolor="black", alpha=0.1) - -fig, ax = plt.subplots() -ax.add_patch(rect) - -bbox = Bbox.from_bounds(left, bottom, width, height) - -for i in range(12): - vertices = (np.random.random((2, 2)) - 0.5) * 6.0 - path = Path(vertices) - if path.intersects_bbox(bbox): - color = 'r' - else: - color = 'b' - ax.plot(vertices[:, 0], vertices[:, 1], color=color) - -plt.show() diff --git a/_downloads/ac1ba99eec99412ec09fca52341d984a/dollar_ticks.ipynb b/_downloads/ac1ba99eec99412ec09fca52341d984a/dollar_ticks.ipynb deleted file mode 100644 index 4555559a9d2..00000000000 --- a/_downloads/ac1ba99eec99412ec09fca52341d984a/dollar_ticks.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dollar Ticks\n\n\nUse a `~.ticker.FormatStrFormatter` to prepend dollar signs on y axis labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\nax.plot(100*np.random.rand(20))\n\nformatter = ticker.FormatStrFormatter('$%1.2f')\nax.yaxis.set_major_formatter(formatter)\n\nfor tick in ax.yaxis.get_major_ticks():\n tick.label1.set_visible(False)\n tick.label2.set_visible(True)\n tick.label2.set_color('green')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.ticker\nmatplotlib.ticker.FormatStrFormatter\nmatplotlib.axis.Axis.set_major_formatter\nmatplotlib.axis.Axis.get_major_ticks\nmatplotlib.axis.Tick" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ac1cd48c282f20fc875d82d7708fc7d0/units_sample.ipynb b/_downloads/ac1cd48c282f20fc875d82d7708fc7d0/units_sample.ipynb deleted file mode 100644 index 692ed1a8028..00000000000 --- a/_downloads/ac1cd48c282f20fc875d82d7708fc7d0/units_sample.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Inches and Centimeters\n\n\nThe example illustrates the ability to override default x and y units (ax1) to\ninches and centimeters using the `xunits` and `yunits` parameters for the\n`plot` function. Note that conversions are applied to get numbers to correct\nunits.\n\n.. only:: builder_html\n\n This example requires :download:`basic_units.py `\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from basic_units import cm, inch\nimport matplotlib.pyplot as plt\nimport numpy as np\n\ncms = cm * np.arange(0, 10, 2)\n\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].plot(cms, cms)\n\naxs[0, 1].plot(cms, cms, xunits=cm, yunits=inch)\n\naxs[1, 0].plot(cms, cms, xunits=inch, yunits=cm)\naxs[1, 0].set_xlim(3, 6) # scalars are interpreted in current units\n\naxs[1, 1].plot(cms, cms, xunits=inch, yunits=inch)\naxs[1, 1].set_xlim(3*cm, 6*cm) # cm are converted to inches\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ac214689fd33e6c26cdaf0f2e0ff3d79/markevery_prop_cycle.ipynb b/_downloads/ac214689fd33e6c26cdaf0f2e0ff3d79/markevery_prop_cycle.ipynb deleted file mode 120000 index 618e724c261..00000000000 --- a/_downloads/ac214689fd33e6c26cdaf0f2e0ff3d79/markevery_prop_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ac214689fd33e6c26cdaf0f2e0ff3d79/markevery_prop_cycle.ipynb \ No newline at end of file diff --git a/_downloads/ac2961110240fc308ae62c923685c642/demo_axisline_style.ipynb b/_downloads/ac2961110240fc308ae62c923685c642/demo_axisline_style.ipynb deleted file mode 120000 index 693ea3aad00..00000000000 --- a/_downloads/ac2961110240fc308ae62c923685c642/demo_axisline_style.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ac2961110240fc308ae62c923685c642/demo_axisline_style.ipynb \ No newline at end of file diff --git a/_downloads/ac2ceaa4fc383f8b880d560c6def2876/multi_image.py b/_downloads/ac2ceaa4fc383f8b880d560c6def2876/multi_image.py deleted file mode 120000 index 8acbcbb84df..00000000000 --- a/_downloads/ac2ceaa4fc383f8b880d560c6def2876/multi_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ac2ceaa4fc383f8b880d560c6def2876/multi_image.py \ No newline at end of file diff --git a/_downloads/ac2d2355bbdaea3a777c03f6b5f48041/fig_x.py b/_downloads/ac2d2355bbdaea3a777c03f6b5f48041/fig_x.py deleted file mode 100644 index 304ff4ed354..00000000000 --- a/_downloads/ac2d2355bbdaea3a777c03f6b5f48041/fig_x.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -======================= -Adding lines to figures -======================= - -Adding lines to a figure without any axes. -""" -import matplotlib.pyplot as plt -import matplotlib.lines as lines - - -fig = plt.figure() -l1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig) -l2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig) -fig.lines.extend([l1, l2]) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.figure -matplotlib.lines -matplotlib.lines.Line2D diff --git a/_downloads/ac2dfe2ab1c43f11cfdc24c8d939dd64/spines_bounds.py b/_downloads/ac2dfe2ab1c43f11cfdc24c8d939dd64/spines_bounds.py deleted file mode 120000 index 108103d7b11..00000000000 --- a/_downloads/ac2dfe2ab1c43f11cfdc24c8d939dd64/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ac2dfe2ab1c43f11cfdc24c8d939dd64/spines_bounds.py \ No newline at end of file diff --git a/_downloads/ac32523c1182ccb7de5a0a67c54de611/stackplot_demo.py b/_downloads/ac32523c1182ccb7de5a0a67c54de611/stackplot_demo.py deleted file mode 120000 index b20ffecac1e..00000000000 --- a/_downloads/ac32523c1182ccb7de5a0a67c54de611/stackplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ac32523c1182ccb7de5a0a67c54de611/stackplot_demo.py \ No newline at end of file diff --git a/_downloads/ac4f86bd93cba659ce07e61072e8ab4a/mathtext_wx_sgskip.py b/_downloads/ac4f86bd93cba659ce07e61072e8ab4a/mathtext_wx_sgskip.py deleted file mode 120000 index a5fd5888865..00000000000 --- a/_downloads/ac4f86bd93cba659ce07e61072e8ab4a/mathtext_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ac4f86bd93cba659ce07e61072e8ab4a/mathtext_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/ac544283650cda0ddf579d873366ff55/pyplot_formatstr.ipynb b/_downloads/ac544283650cda0ddf579d873366ff55/pyplot_formatstr.ipynb deleted file mode 120000 index 034cf84154e..00000000000 --- a/_downloads/ac544283650cda0ddf579d873366ff55/pyplot_formatstr.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ac544283650cda0ddf579d873366ff55/pyplot_formatstr.ipynb \ No newline at end of file diff --git a/_downloads/ac5b261f43622e9afb9f53a6be764011/mri_demo.py b/_downloads/ac5b261f43622e9afb9f53a6be764011/mri_demo.py deleted file mode 120000 index 40ddb5d9986..00000000000 --- a/_downloads/ac5b261f43622e9afb9f53a6be764011/mri_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ac5b261f43622e9afb9f53a6be764011/mri_demo.py \ No newline at end of file diff --git a/_downloads/ac5d34623b227d1138d1f028d62ab8fb/path_tutorial.ipynb b/_downloads/ac5d34623b227d1138d1f028d62ab8fb/path_tutorial.ipynb deleted file mode 120000 index 3dc0d8716dd..00000000000 --- a/_downloads/ac5d34623b227d1138d1f028d62ab8fb/path_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ac5d34623b227d1138d1f028d62ab8fb/path_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/ac656859ee917e71e36bc7996e52efbe/multiple_histograms_side_by_side.ipynb b/_downloads/ac656859ee917e71e36bc7996e52efbe/multiple_histograms_side_by_side.ipynb deleted file mode 100644 index febb4c03232..00000000000 --- a/_downloads/ac656859ee917e71e36bc7996e52efbe/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Producing multiple histograms side by side\n\n\nThis example plots horizontal histograms of different samples along\na categorical x-axis. Additionally, the histograms are plotted to\nbe symmetrical about their x-position, thus making them very similar\nto violin plots.\n\nTo make this highly specialized plot, we can't use the standard ``hist``\nmethod. Instead we use ``barh`` to draw the horizontal bars directly. The\nvertical positions and lengths of the bars are computed via the\n``np.histogram`` function. The histograms for all the samples are\ncomputed using the same range (min and max values) and number of bins,\nso that the bins for each sample are in the same vertical positions.\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\nnumber_of_bins = 20\n\n# An example of three data sets to compare\nnumber_of_data_points = 387\nlabels = [\"A\", \"B\", \"C\"]\ndata_sets = [np.random.normal(0, 1, number_of_data_points),\n np.random.normal(6, 1, number_of_data_points),\n np.random.normal(-3, 1, number_of_data_points)]\n\n# Computed quantities to aid plotting\nhist_range = (np.min(data_sets), np.max(data_sets))\nbinned_data_sets = [\n np.histogram(d, range=hist_range, bins=number_of_bins)[0]\n for d in data_sets\n]\nbinned_maximums = np.max(binned_data_sets, axis=1)\nx_locations = np.arange(0, sum(binned_maximums), np.max(binned_maximums))\n\n# The bin_edges are the same for all of the histograms\nbin_edges = np.linspace(hist_range[0], hist_range[1], number_of_bins + 1)\ncenters = 0.5 * (bin_edges + np.roll(bin_edges, 1))[:-1]\nheights = np.diff(bin_edges)\n\n# Cycle through and plot each histogram\nfig, ax = plt.subplots()\nfor x_loc, binned_data in zip(x_locations, binned_data_sets):\n lefts = x_loc - 0.5 * binned_data\n ax.barh(centers, binned_data, height=heights, left=lefts)\n\nax.set_xticks(x_locations)\nax.set_xticklabels(labels)\n\nax.set_ylabel(\"Data values\")\nax.set_xlabel(\"Data sets\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ac662c77805c5f4b52330dadcdff2955/plot_streamplot.py b/_downloads/ac662c77805c5f4b52330dadcdff2955/plot_streamplot.py deleted file mode 120000 index 4ae235eb45a..00000000000 --- a/_downloads/ac662c77805c5f4b52330dadcdff2955/plot_streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ac662c77805c5f4b52330dadcdff2955/plot_streamplot.py \ No newline at end of file diff --git a/_downloads/ac6c02dea8c8c1c68b57e42c1c90a163/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/ac6c02dea8c8c1c68b57e42c1c90a163/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 120000 index ffdbbd30e9a..00000000000 --- a/_downloads/ac6c02dea8c8c1c68b57e42c1c90a163/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ac6c02dea8c8c1c68b57e42c1c90a163/make_room_for_ylabel_using_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/ac73ab64c576ed49d53ad046d22c6af7/date_demo_convert.py b/_downloads/ac73ab64c576ed49d53ad046d22c6af7/date_demo_convert.py deleted file mode 120000 index 3d02eead609..00000000000 --- a/_downloads/ac73ab64c576ed49d53ad046d22c6af7/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ac73ab64c576ed49d53ad046d22c6af7/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/ac73b71a1a186c42888e34398fe6c969/demo_colorbar_of_inset_axes.ipynb b/_downloads/ac73b71a1a186c42888e34398fe6c969/demo_colorbar_of_inset_axes.ipynb deleted file mode 100644 index ec9356e17ec..00000000000 --- a/_downloads/ac73b71a1a186c42888e34398fe6c969/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Colorbar of Inset Axes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.inset_locator import inset_axes, zoomed_inset_axes\nfrom mpl_toolkits.axes_grid1.colorbar import colorbar\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n import numpy as np\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\nfig, ax = plt.subplots(figsize=[5, 4])\n\nZ, extent = get_demo_image()\n\nax.set(aspect=1,\n xlim=(-15, 15),\n ylim=(-20, 5))\n\n\naxins = zoomed_inset_axes(ax, zoom=2, loc='upper left')\nim = axins.imshow(Z, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\nplt.xticks(visible=False)\nplt.yticks(visible=False)\n\n\n# colorbar\ncax = inset_axes(axins,\n width=\"5%\", # width = 10% of parent_bbox width\n height=\"100%\", # height : 50%\n loc='lower left',\n bbox_to_anchor=(1.05, 0., 1, 1),\n bbox_transform=axins.transAxes,\n borderpad=0,\n )\n\ncolorbar(im, cax=cax)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ac7640c405e99406a6b91e0e221c0a7f/parasite_simple2.ipynb b/_downloads/ac7640c405e99406a6b91e0e221c0a7f/parasite_simple2.ipynb deleted file mode 100644 index 278abe894c2..00000000000 --- a/_downloads/ac7640c405e99406a6b91e0e221c0a7f/parasite_simple2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parasite Simple2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.transforms as mtransforms\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.parasite_axes import SubplotHost\n\nobs = [[\"01_S1\", 3.88, 0.14, 1970, 63],\n [\"01_S4\", 5.6, 0.82, 1622, 150],\n [\"02_S1\", 2.4, 0.54, 1570, 40],\n [\"03_S1\", 4.1, 0.62, 2380, 170]]\n\n\nfig = plt.figure()\n\nax_kms = SubplotHost(fig, 1, 1, 1, aspect=1.)\n\n# angular proper motion(\"/yr) to linear velocity(km/s) at distance=2.3kpc\npm_to_kms = 1./206265.*2300*3.085e18/3.15e7/1.e5\n\naux_trans = mtransforms.Affine2D().scale(pm_to_kms, 1.)\nax_pm = ax_kms.twin(aux_trans)\nax_pm.set_viewlim_mode(\"transform\")\n\nfig.add_subplot(ax_kms)\n\nfor n, ds, dse, w, we in obs:\n time = ((2007 + (10. + 4/30.)/12) - 1988.5)\n v = ds / time * pm_to_kms\n ve = dse / time * pm_to_kms\n ax_kms.errorbar([v], [w], xerr=[ve], yerr=[we], color=\"k\")\n\n\nax_kms.axis[\"bottom\"].set_label(\"Linear velocity at 2.3 kpc [km/s]\")\nax_kms.axis[\"left\"].set_label(\"FWHM [km/s]\")\nax_pm.axis[\"top\"].set_label(r\"Proper Motion [$''$/yr]\")\nax_pm.axis[\"top\"].label.set_visible(True)\nax_pm.axis[\"right\"].major_ticklabels.set_visible(False)\n\nax_kms.set_xlim(950, 3700)\nax_kms.set_ylim(950, 3100)\n# xlim and ylim of ax_pms will be automatically adjusted.\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ac787fee5a90fa02408d0f32da7ed542/rectangle_selector.ipynb b/_downloads/ac787fee5a90fa02408d0f32da7ed542/rectangle_selector.ipynb deleted file mode 120000 index cf97afca296..00000000000 --- a/_downloads/ac787fee5a90fa02408d0f32da7ed542/rectangle_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ac787fee5a90fa02408d0f32da7ed542/rectangle_selector.ipynb \ No newline at end of file diff --git a/_downloads/ac9112891284db5b12d6c7dee72110dd/trifinder_event_demo.ipynb b/_downloads/ac9112891284db5b12d6c7dee72110dd/trifinder_event_demo.ipynb deleted file mode 100644 index f4598ebf8c5..00000000000 --- a/_downloads/ac9112891284db5b12d6c7dee72110dd/trifinder_event_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Trifinder Event Demo\n\n\nExample showing the use of a TriFinder object. As the mouse is moved over the\ntriangulation, the triangle under the cursor is highlighted and the index of\nthe triangle is displayed in the plot title.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.tri import Triangulation\nfrom matplotlib.patches import Polygon\nimport numpy as np\n\n\ndef update_polygon(tri):\n if tri == -1:\n points = [0, 0, 0]\n else:\n points = triang.triangles[tri]\n xs = triang.x[points]\n ys = triang.y[points]\n polygon.set_xy(np.column_stack([xs, ys]))\n\n\ndef motion_notify(event):\n if event.inaxes is None:\n tri = -1\n else:\n tri = trifinder(event.xdata, event.ydata)\n update_polygon(tri)\n plt.title('In triangle %i' % tri)\n event.canvas.draw()\n\n\n# Create a Triangulation.\nn_angles = 16\nn_radii = 5\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\ntriang = Triangulation(x, y)\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\n# Use the triangulation's default TriFinder object.\ntrifinder = triang.get_trifinder()\n\n# Setup plot and callbacks.\nplt.subplot(111, aspect='equal')\nplt.triplot(triang, 'bo-')\npolygon = Polygon([[0, 0], [0, 0]], facecolor='y') # dummy data for xs,ys\nupdate_polygon(-1)\nplt.gca().add_patch(polygon)\nplt.gcf().canvas.mpl_connect('motion_notify_event', motion_notify)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ac91afa88ab3ee5abbb240691295393b/colormap_reference.ipynb b/_downloads/ac91afa88ab3ee5abbb240691295393b/colormap_reference.ipynb deleted file mode 120000 index 7b129811c12..00000000000 --- a/_downloads/ac91afa88ab3ee5abbb240691295393b/colormap_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ac91afa88ab3ee5abbb240691295393b/colormap_reference.ipynb \ No newline at end of file diff --git a/_downloads/ac927d254a88283b3782298e998c0f7c/auto_ticks.py b/_downloads/ac927d254a88283b3782298e998c0f7c/auto_ticks.py deleted file mode 100644 index 7cf1cc01615..00000000000 --- a/_downloads/ac927d254a88283b3782298e998c0f7c/auto_ticks.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -================================= -Automatically setting tick labels -================================= - -Setting the behavior of tick auto-placement. - -If you don't explicitly set tick positions / labels, Matplotlib will attempt -to choose them both automatically based on the displayed data and its limits. - -By default, this attempts to choose tick positions that are distributed -along the axis: -""" -import matplotlib.pyplot as plt -import numpy as np -np.random.seed(19680801) - -fig, ax = plt.subplots() -dots = np.arange(10) / 100. + .03 -x, y = np.meshgrid(dots, dots) -data = [x.ravel(), y.ravel()] -ax.scatter(*data, c=data[1]) - -################################################################################ -# Sometimes choosing evenly-distributed ticks results in strange tick numbers. -# If you'd like Matplotlib to keep ticks located at round numbers, you can -# change this behavior with the following rcParams value: - -print(plt.rcParams['axes.autolimit_mode']) - -# Now change this value and see the results -with plt.rc_context({'axes.autolimit_mode': 'round_numbers'}): - fig, ax = plt.subplots() - ax.scatter(*data, c=data[1]) - -################################################################################ -# You can also alter the margins of the axes around the data by -# with ``axes.(x,y)margin``: - -with plt.rc_context({'axes.autolimit_mode': 'round_numbers', - 'axes.xmargin': .8, - 'axes.ymargin': .8}): - fig, ax = plt.subplots() - ax.scatter(*data, c=data[1]) - -plt.show() diff --git a/_downloads/ac94ad2e3d4eacccfd59fdae9902278f/auto_subplots_adjust.py b/_downloads/ac94ad2e3d4eacccfd59fdae9902278f/auto_subplots_adjust.py deleted file mode 120000 index ec163ab0334..00000000000 --- a/_downloads/ac94ad2e3d4eacccfd59fdae9902278f/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ac94ad2e3d4eacccfd59fdae9902278f/auto_subplots_adjust.py \ No newline at end of file diff --git a/_downloads/ac9b44c6d8799b24bd0edd45d70daae0/demo_gridspec06.py b/_downloads/ac9b44c6d8799b24bd0edd45d70daae0/demo_gridspec06.py deleted file mode 100644 index 6629bb15688..00000000000 --- a/_downloads/ac9b44c6d8799b24bd0edd45d70daae0/demo_gridspec06.py +++ /dev/null @@ -1,52 +0,0 @@ -r""" -================ -Nested GridSpecs -================ - -This example demonstrates the use of nested `GridSpec`\s. -""" - -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec -import numpy as np -from itertools import product - - -def squiggle_xy(a, b, c, d): - i = np.arange(0.0, 2*np.pi, 0.05) - return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d) - - -fig = plt.figure(figsize=(8, 8)) - -# gridspec inside gridspec -outer_grid = gridspec.GridSpec(4, 4, wspace=0.0, hspace=0.0) - -for i in range(16): - inner_grid = gridspec.GridSpecFromSubplotSpec(3, 3, - subplot_spec=outer_grid[i], wspace=0.0, hspace=0.0) - a = i // 4 + 1 - b = i % 4 + 1 - for j, (c, d) in enumerate(product(range(1, 4), repeat=2)): - ax = fig.add_subplot(inner_grid[j]) - ax.plot(*squiggle_xy(a, b, c, d)) - ax.set_xticks([]) - ax.set_yticks([]) - fig.add_subplot(ax) - -all_axes = fig.get_axes() - -# show only the outside spines -for ax in all_axes: - for sp in ax.spines.values(): - sp.set_visible(False) - if ax.is_first_row(): - ax.spines['top'].set_visible(True) - if ax.is_last_row(): - ax.spines['bottom'].set_visible(True) - if ax.is_first_col(): - ax.spines['left'].set_visible(True) - if ax.is_last_col(): - ax.spines['right'].set_visible(True) - -plt.show() diff --git a/_downloads/aca63dff03a3ddcd41f317d414894d10/filled_step.py b/_downloads/aca63dff03a3ddcd41f317d414894d10/filled_step.py deleted file mode 120000 index d2aa3d015ba..00000000000 --- a/_downloads/aca63dff03a3ddcd41f317d414894d10/filled_step.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/aca63dff03a3ddcd41f317d414894d10/filled_step.py \ No newline at end of file diff --git a/_downloads/acab656cee9a9da96ca0c091ade6cc18/image_thumbnail_sgskip.ipynb b/_downloads/acab656cee9a9da96ca0c091ade6cc18/image_thumbnail_sgskip.ipynb deleted file mode 100644 index c0368f76d9f..00000000000 --- a/_downloads/acab656cee9a9da96ca0c091ade6cc18/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Thumbnail\n\n\nYou can use matplotlib to generate thumbnails from existing images.\nmatplotlib natively supports PNG files on the input side, and other\nimage types transparently if your have PIL installed\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# build thumbnails of all images in a directory\nimport sys\nimport os\nimport glob\nimport matplotlib.image as image\n\n\nif len(sys.argv) != 2:\n print('Usage: python %s IMAGEDIR' % __file__)\n raise SystemExit\nindir = sys.argv[1]\nif not os.path.isdir(indir):\n print('Could not find input directory \"%s\"' % indir)\n raise SystemExit\n\noutdir = 'thumbs'\nif not os.path.exists(outdir):\n os.makedirs(outdir)\n\nfor fname in glob.glob(os.path.join(indir, '*.png')):\n basedir, basename = os.path.split(fname)\n outfile = os.path.join(outdir, basename)\n fig = image.thumbnail(fname, outfile, scale=0.15)\n print('saved thumbnail of %s to %s' % (fname, outfile))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/acab800e620247803ca8e3cd150aca15/simple_anim.py b/_downloads/acab800e620247803ca8e3cd150aca15/simple_anim.py deleted file mode 120000 index c0f3c891993..00000000000 --- a/_downloads/acab800e620247803ca8e3cd150aca15/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/acab800e620247803ca8e3cd150aca15/simple_anim.py \ No newline at end of file diff --git a/_downloads/acb8e2d486e5e7d9f0a45cb5fc28950f/whats_new_1_subplot3d.ipynb b/_downloads/acb8e2d486e5e7d9f0a45cb5fc28950f/whats_new_1_subplot3d.ipynb deleted file mode 120000 index d1f0eedb1c6..00000000000 --- a/_downloads/acb8e2d486e5e7d9f0a45cb5fc28950f/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/acb8e2d486e5e7d9f0a45cb5fc28950f/whats_new_1_subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/acbc681b7bbe2436a457203ea2b94b91/contour_label_demo.py b/_downloads/acbc681b7bbe2436a457203ea2b94b91/contour_label_demo.py deleted file mode 100644 index 2d6aa760418..00000000000 --- a/_downloads/acbc681b7bbe2436a457203ea2b94b91/contour_label_demo.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -================== -Contour Label Demo -================== - -Illustrate some of the more advanced things that one can do with -contour labels. - -See also the :doc:`contour demo example -`. -""" - -import matplotlib -import numpy as np -import matplotlib.ticker as ticker -import matplotlib.pyplot as plt - -############################################################################### -# Define our surface - -delta = 0.025 -x = np.arange(-3.0, 3.0, delta) -y = np.arange(-2.0, 2.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -############################################################################### -# Make contour labels using creative float classes -# Follows suggestion of Manuel Metz - -# Define a class that forces representation of float to look a certain way -# This remove trailing zero so '1.0' becomes '1' - - -class nf(float): - def __repr__(self): - s = f'{self:.1f}' - return f'{self:.0f}' if s[-1] == '0' else s - - -# Basic contour plot -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z) - -# Recast levels to new class -CS.levels = [nf(val) for val in CS.levels] - -# Label levels with specially formatted floats -if plt.rcParams["text.usetex"]: - fmt = r'%r \%%' -else: - fmt = '%r %%' - -ax.clabel(CS, CS.levels, inline=True, fmt=fmt, fontsize=10) - -############################################################################### -# Label contours with arbitrary strings using a dictionary - -fig1, ax1 = plt.subplots() - -# Basic contour plot -CS1 = ax1.contour(X, Y, Z) - -fmt = {} -strs = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh'] -for l, s in zip(CS1.levels, strs): - fmt[l] = s - -# Label every other level using strings -ax1.clabel(CS1, CS1.levels[::2], inline=True, fmt=fmt, fontsize=10) - -############################################################################### -# Use a Formatter - -fig2, ax2 = plt.subplots() - -CS2 = ax2.contour(X, Y, 100**Z, locator=plt.LogLocator()) -fmt = ticker.LogFormatterMathtext() -fmt.create_dummy_axis() -ax2.clabel(CS2, CS2.levels, fmt=fmt) -ax2.set_title("$100^Z$") - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.clabel -matplotlib.pyplot.clabel -matplotlib.ticker.LogFormatterMathtext -matplotlib.ticker.TickHelper.create_dummy_axis diff --git a/_downloads/acbde7c6b91c31c4a29433e87403c871/customizing.py b/_downloads/acbde7c6b91c31c4a29433e87403c871/customizing.py deleted file mode 100644 index 18cff878f0a..00000000000 --- a/_downloads/acbde7c6b91c31c4a29433e87403c871/customizing.py +++ /dev/null @@ -1,185 +0,0 @@ -""" -Customizing Matplotlib with style sheets and rcParams -===================================================== - -Tips for customizing the properties and default styles of Matplotlib. - -Using style sheets ------------------- - -The ``style`` package adds support for easy-to-switch plotting "styles" with -the same parameters as a -:ref:`matplotlib rc ` file (which is read -at startup to configure matplotlib). - -There are a number of pre-defined styles `provided by Matplotlib`_. For -example, there's a pre-defined style called "ggplot", which emulates the -aesthetics of ggplot_ (a popular plotting package for R_). To use this style, -just add: -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib as mpl -plt.style.use('ggplot') -data = np.random.randn(50) - -############################################################################### -# To list all available styles, use: - -print(plt.style.available) - -############################################################################### -# Defining your own style -# ----------------------- -# -# You can create custom styles and use them by calling ``style.use`` with the -# path or URL to the style sheet. Additionally, if you add your -# ``.mplstyle`` file to ``mpl_configdir/stylelib``, you can reuse -# your custom style sheet with a call to ``style.use()``. By default -# ``mpl_configdir`` should be ``~/.config/matplotlib``, but you can check where -# yours is with ``matplotlib.get_configdir()``; you may need to create this -# directory. You also can change the directory where matplotlib looks for -# the stylelib/ folder by setting the MPLCONFIGDIR environment variable, -# see :ref:`locating-matplotlib-config-dir`. -# -# Note that a custom style sheet in ``mpl_configdir/stylelib`` will -# override a style sheet defined by matplotlib if the styles have the same name. -# -# For example, you might want to create -# ``mpl_configdir/stylelib/presentation.mplstyle`` with the following:: -# -# axes.titlesize : 24 -# axes.labelsize : 20 -# lines.linewidth : 3 -# lines.markersize : 10 -# xtick.labelsize : 16 -# ytick.labelsize : 16 -# -# Then, when you want to adapt a plot designed for a paper to one that looks -# good in a presentation, you can just add:: -# -# >>> import matplotlib.pyplot as plt -# >>> plt.style.use('presentation') -# -# -# Composing styles -# ---------------- -# -# Style sheets are designed to be composed together. So you can have a style -# sheet that customizes colors and a separate style sheet that alters element -# sizes for presentations. These styles can easily be combined by passing -# a list of styles:: -# -# >>> import matplotlib.pyplot as plt -# >>> plt.style.use(['dark_background', 'presentation']) -# -# Note that styles further to the right will overwrite values that are already -# defined by styles on the left. -# -# -# Temporary styling -# ----------------- -# -# If you only want to use a style for a specific block of code but don't want -# to change the global styling, the style package provides a context manager -# for limiting your changes to a specific scope. To isolate your styling -# changes, you can write something like the following: - -with plt.style.context('dark_background'): - plt.plot(np.sin(np.linspace(0, 2 * np.pi)), 'r-o') -plt.show() - -############################################################################### -# .. _matplotlib-rcparams: -# -# matplotlib rcParams -# =================== -# -# .. _customizing-with-dynamic-rc-settings: -# -# Dynamic rc settings -# ------------------- -# -# You can also dynamically change the default rc settings in a python script or -# interactively from the python shell. All of the rc settings are stored in a -# dictionary-like variable called :data:`matplotlib.rcParams`, which is global to -# the matplotlib package. rcParams can be modified directly, for example: - -mpl.rcParams['lines.linewidth'] = 2 -mpl.rcParams['lines.color'] = 'r' -plt.plot(data) - -############################################################################### -# Matplotlib also provides a couple of convenience functions for modifying rc -# settings. The :func:`matplotlib.rc` command can be used to modify multiple -# settings in a single group at once, using keyword arguments: - -mpl.rc('lines', linewidth=4, color='g') -plt.plot(data) - -############################################################################### -# The :func:`matplotlib.rcdefaults` command will restore the standard matplotlib -# default settings. -# -# There is some degree of validation when setting the values of rcParams, see -# :mod:`matplotlib.rcsetup` for details. -# -# .. _customizing-with-matplotlibrc-files: -# -# The :file:`matplotlibrc` file -# ----------------------------- -# -# matplotlib uses :file:`matplotlibrc` configuration files to customize all kinds -# of properties, which we call `rc settings` or `rc parameters`. You can control -# the defaults of almost every property in matplotlib: figure size and dpi, line -# width, color and style, axes, axis and grid properties, text and font -# properties and so on. matplotlib looks for :file:`matplotlibrc` in four -# locations, in the following order: -# -# 1. :file:`matplotlibrc` in the current working directory, usually used for -# specific customizations that you do not want to apply elsewhere. -# -# 2. :file:`$MATPLOTLIBRC` if it is a file, else :file:`$MATPLOTLIBRC/matplotlibrc`. -# -# 3. It next looks in a user-specific place, depending on your platform: -# -# - On Linux and FreeBSD, it looks in :file:`.config/matplotlib/matplotlibrc` -# (or `$XDG_CONFIG_HOME/matplotlib/matplotlibrc`) if you've customized -# your environment. -# -# - On other platforms, it looks in :file:`.matplotlib/matplotlibrc`. -# -# See :ref:`locating-matplotlib-config-dir`. -# -# 4. :file:`{INSTALL}/matplotlib/mpl-data/matplotlibrc`, where -# :file:`{INSTALL}` is something like -# :file:`/usr/lib/python3.7/site-packages` on Linux, and maybe -# :file:`C:\\Python37\\Lib\\site-packages` on Windows. Every time you -# install matplotlib, this file will be overwritten, so if you want -# your customizations to be saved, please move this file to your -# user-specific matplotlib directory. -# -# Once a :file:`matplotlibrc` file has been found, it will *not* search any of -# the other paths. -# -# To display where the currently active :file:`matplotlibrc` file was -# loaded from, one can do the following:: -# -# >>> import matplotlib -# >>> matplotlib.matplotlib_fname() -# '/home/foo/.config/matplotlib/matplotlibrc' -# -# See below for a sample :ref:`matplotlibrc file`. -# -# .. _matplotlibrc-sample: -# -# A sample matplotlibrc file -# ~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# .. literalinclude:: ../../../matplotlibrc.template -# -# -# .. _ggplot: https://ggplot2.tidyverse.org/ -# .. _R: https://www.r-project.org/ -# .. _provided by Matplotlib: https://github.com/matplotlib/matplotlib/tree/master/lib/matplotlib/mpl-data/stylelib diff --git a/_downloads/acced71553544599cc3d0a439776d165/histogram_path.py b/_downloads/acced71553544599cc3d0a439776d165/histogram_path.py deleted file mode 120000 index f4e82216082..00000000000 --- a/_downloads/acced71553544599cc3d0a439776d165/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/acced71553544599cc3d0a439776d165/histogram_path.py \ No newline at end of file diff --git a/_downloads/accented_text.ipynb b/_downloads/accented_text.ipynb deleted file mode 120000 index 35b11f9ae17..00000000000 --- a/_downloads/accented_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/accented_text.ipynb \ No newline at end of file diff --git a/_downloads/accented_text.py b/_downloads/accented_text.py deleted file mode 120000 index b962352ddab..00000000000 --- a/_downloads/accented_text.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/accented_text.py \ No newline at end of file diff --git a/_downloads/acd97fb1804baccc53abbb2d7c5898ad/fill_betweenx_demo.ipynb b/_downloads/acd97fb1804baccc53abbb2d7c5898ad/fill_betweenx_demo.ipynb deleted file mode 120000 index aa621246609..00000000000 --- a/_downloads/acd97fb1804baccc53abbb2d7c5898ad/fill_betweenx_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/acd97fb1804baccc53abbb2d7c5898ad/fill_betweenx_demo.ipynb \ No newline at end of file diff --git a/_downloads/acd99338a222861b3bdb29edb4443fc3/images.ipynb b/_downloads/acd99338a222861b3bdb29edb4443fc3/images.ipynb deleted file mode 120000 index f7277766c47..00000000000 --- a/_downloads/acd99338a222861b3bdb29edb4443fc3/images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/acd99338a222861b3bdb29edb4443fc3/images.ipynb \ No newline at end of file diff --git a/_downloads/acdcf206e445433439db5b48d5326ff1/keyword_plotting.py b/_downloads/acdcf206e445433439db5b48d5326ff1/keyword_plotting.py deleted file mode 120000 index c06cd68942e..00000000000 --- a/_downloads/acdcf206e445433439db5b48d5326ff1/keyword_plotting.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/acdcf206e445433439db5b48d5326ff1/keyword_plotting.py \ No newline at end of file diff --git a/_downloads/ace844308790757b7c294097d70f9475/pyplot_text.ipynb b/_downloads/ace844308790757b7c294097d70f9475/pyplot_text.ipynb deleted file mode 120000 index cf9c87fe632..00000000000 --- a/_downloads/ace844308790757b7c294097d70f9475/pyplot_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ace844308790757b7c294097d70f9475/pyplot_text.ipynb \ No newline at end of file diff --git a/_downloads/acefb912e49befdbe6288db592a8282c/pie_and_donut_labels.ipynb b/_downloads/acefb912e49befdbe6288db592a8282c/pie_and_donut_labels.ipynb deleted file mode 120000 index 3d45b733d72..00000000000 --- a/_downloads/acefb912e49befdbe6288db592a8282c/pie_and_donut_labels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/acefb912e49befdbe6288db592a8282c/pie_and_donut_labels.ipynb \ No newline at end of file diff --git a/_downloads/acf503c85abc9b0acfc2bdc0e3dd06ab/demo_floating_axes.ipynb b/_downloads/acf503c85abc9b0acfc2bdc0e3dd06ab/demo_floating_axes.ipynb deleted file mode 120000 index aeaf55beb25..00000000000 --- a/_downloads/acf503c85abc9b0acfc2bdc0e3dd06ab/demo_floating_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/acf503c85abc9b0acfc2bdc0e3dd06ab/demo_floating_axes.ipynb \ No newline at end of file diff --git a/_downloads/acf8f7cbd0319cbc8d0ee78b7432fe37/demo_bboximage.py b/_downloads/acf8f7cbd0319cbc8d0ee78b7432fe37/demo_bboximage.py deleted file mode 100644 index 7ea364af4f5..00000000000 --- a/_downloads/acf8f7cbd0319cbc8d0ee78b7432fe37/demo_bboximage.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -============== -BboxImage Demo -============== - -A :class:`~matplotlib.image.BboxImage` can be used to position -an image according to a bounding box. This demo shows how to -show an image inside a `text.Text`'s bounding box as well as -how to manually create a bounding box for the image. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.image import BboxImage -from matplotlib.transforms import Bbox, TransformedBbox - - -fig, (ax1, ax2) = plt.subplots(ncols=2) - -# ---------------------------- -# Create a BboxImage with Text -# ---------------------------- -txt = ax1.text(0.5, 0.5, "test", size=30, ha="center", color="w") -kwargs = dict() - -bbox_image = BboxImage(txt.get_window_extent, - norm=None, - origin=None, - clip_on=False, - **kwargs - ) -a = np.arange(256).reshape(1, 256)/256. -bbox_image.set_data(a) -ax1.add_artist(bbox_image) - -# ------------------------------------ -# Create a BboxImage for each colormap -# ------------------------------------ -a = np.linspace(0, 1, 256).reshape(1, -1) -a = np.vstack((a, a)) - -# List of all colormaps; skip reversed colormaps. -maps = sorted(m for m in plt.cm.cmap_d if not m.endswith("_r")) - -ncol = 2 -nrow = len(maps)//ncol + 1 - -xpad_fraction = 0.3 -dx = 1./(ncol + xpad_fraction*(ncol - 1)) - -ypad_fraction = 0.3 -dy = 1./(nrow + ypad_fraction*(nrow - 1)) - -for i, m in enumerate(maps): - ix, iy = divmod(i, nrow) - - bbox0 = Bbox.from_bounds(ix*dx*(1 + xpad_fraction), - 1. - iy*dy*(1 + ypad_fraction) - dy, - dx, dy) - bbox = TransformedBbox(bbox0, ax2.transAxes) - - bbox_image = BboxImage(bbox, - cmap=plt.get_cmap(m), - norm=None, - origin=None, - **kwargs - ) - - bbox_image.set_data(a) - ax2.add_artist(bbox_image) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.image.BboxImage -matplotlib.transforms.Bbox -matplotlib.transforms.TransformedBbox -matplotlib.text.Text diff --git a/_downloads/acfe3125e832112b3db557ab5737f5e3/align_labels_demo.ipynb b/_downloads/acfe3125e832112b3db557ab5737f5e3/align_labels_demo.ipynb deleted file mode 100644 index 4d47422fe6e..00000000000 --- a/_downloads/acfe3125e832112b3db557ab5737f5e3/align_labels_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Aligning Labels\n\n\nAligning xlabel and ylabel using `Figure.align_xlabels` and\n`Figure.align_ylabels`\n\n`Figure.align_labels` wraps these two functions.\n\nNote that the xlabel \"XLabel1 1\" would normally be much closer to the\nx-axis, and \"YLabel1 0\" would be much closer to the y-axis of their\nrespective axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.gridspec as gridspec\n\nfig = plt.figure(tight_layout=True)\ngs = gridspec.GridSpec(2, 2)\n\nax = fig.add_subplot(gs[0, :])\nax.plot(np.arange(0, 1e6, 1000))\nax.set_ylabel('YLabel0')\nax.set_xlabel('XLabel0')\n\nfor i in range(2):\n ax = fig.add_subplot(gs[1, i])\n ax.plot(np.arange(1., 0., -0.1) * 2000., np.arange(1., 0., -0.1))\n ax.set_ylabel('YLabel1 %d' % i)\n ax.set_xlabel('XLabel1 %d' % i)\n if i == 0:\n for tick in ax.get_xticklabels():\n tick.set_rotation(55)\nfig.align_labels() # same as fig.align_xlabels(); fig.align_ylabels()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/acff0ab1e2f08b0381951c7f4d31d96d/trigradient_demo.py b/_downloads/acff0ab1e2f08b0381951c7f4d31d96d/trigradient_demo.py deleted file mode 120000 index 60b9c23d3d2..00000000000 --- a/_downloads/acff0ab1e2f08b0381951c7f4d31d96d/trigradient_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/acff0ab1e2f08b0381951c7f4d31d96d/trigradient_demo.py \ No newline at end of file diff --git a/_downloads/acfffe6fc7f2ba325f539a8ad5c3c5f2/polys3d.py b/_downloads/acfffe6fc7f2ba325f539a8ad5c3c5f2/polys3d.py deleted file mode 100644 index 58724a2dc46..00000000000 --- a/_downloads/acfffe6fc7f2ba325f539a8ad5c3c5f2/polys3d.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -============================================= -Generate polygons to fill under 3D line graph -============================================= - -Demonstrate how to create polygons which fill the space under a line -graph. In this example polygons are semi-transparent, creating a sort -of 'jagged stained glass' effect. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -from matplotlib.collections import PolyCollection -import matplotlib.pyplot as plt -from matplotlib import colors as mcolors -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def polygon_under_graph(xlist, ylist): - """ - Construct the vertex list which defines the polygon filling the space under - the (xlist, ylist) line graph. Assumes the xs are in ascending order. - """ - return [(xlist[0], 0.), *zip(xlist, ylist), (xlist[-1], 0.)] - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make verts a list, verts[i] will be a list of (x,y) pairs defining polygon i -verts = [] - -# Set up the x sequence -xs = np.linspace(0., 10., 26) - -# The ith polygon will appear on the plane y = zs[i] -zs = range(4) - -for i in zs: - ys = np.random.rand(len(xs)) - verts.append(polygon_under_graph(xs, ys)) - -poly = PolyCollection(verts, facecolors=['r', 'g', 'b', 'y'], alpha=.6) -ax.add_collection3d(poly, zs=zs, zdir='y') - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') -ax.set_xlim(0, 10) -ax.set_ylim(-1, 4) -ax.set_zlim(0, 1) - -plt.show() diff --git a/_downloads/ad0aa29a1fa2dd5d6a6abffe9d76bd5e/image_clip_path.ipynb b/_downloads/ad0aa29a1fa2dd5d6a6abffe9d76bd5e/image_clip_path.ipynb deleted file mode 120000 index 5a45c0119e7..00000000000 --- a/_downloads/ad0aa29a1fa2dd5d6a6abffe9d76bd5e/image_clip_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ad0aa29a1fa2dd5d6a6abffe9d76bd5e/image_clip_path.ipynb \ No newline at end of file diff --git a/_downloads/ad149ff230b3895cbe60198ed802365e/slider_demo.py b/_downloads/ad149ff230b3895cbe60198ed802365e/slider_demo.py deleted file mode 100644 index 40a1f1c9d52..00000000000 --- a/_downloads/ad149ff230b3895cbe60198ed802365e/slider_demo.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -=========== -Slider Demo -=========== - -Using the slider widget to control visual properties of your plot. - -In this example, a slider is used to choose the frequency of a sine -wave. You can control many continuously-varying properties of your plot in -this way. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import Slider, Button, RadioButtons - -fig, ax = plt.subplots() -plt.subplots_adjust(left=0.25, bottom=0.25) -t = np.arange(0.0, 1.0, 0.001) -a0 = 5 -f0 = 3 -delta_f = 5.0 -s = a0 * np.sin(2 * np.pi * f0 * t) -l, = plt.plot(t, s, lw=2) -ax.margins(x=0) - -axcolor = 'lightgoldenrodyellow' -axfreq = plt.axes([0.25, 0.1, 0.65, 0.03], facecolor=axcolor) -axamp = plt.axes([0.25, 0.15, 0.65, 0.03], facecolor=axcolor) - -sfreq = Slider(axfreq, 'Freq', 0.1, 30.0, valinit=f0, valstep=delta_f) -samp = Slider(axamp, 'Amp', 0.1, 10.0, valinit=a0) - - -def update(val): - amp = samp.val - freq = sfreq.val - l.set_ydata(amp*np.sin(2*np.pi*freq*t)) - fig.canvas.draw_idle() - - -sfreq.on_changed(update) -samp.on_changed(update) - -resetax = plt.axes([0.8, 0.025, 0.1, 0.04]) -button = Button(resetax, 'Reset', color=axcolor, hovercolor='0.975') - - -def reset(event): - sfreq.reset() - samp.reset() -button.on_clicked(reset) - -rax = plt.axes([0.025, 0.5, 0.15, 0.15], facecolor=axcolor) -radio = RadioButtons(rax, ('red', 'blue', 'green'), active=0) - - -def colorfunc(label): - l.set_color(label) - fig.canvas.draw_idle() -radio.on_clicked(colorfunc) - -plt.show() diff --git a/_downloads/ad188ea136a26274ec8c352ce3d90e31/filled_step.ipynb b/_downloads/ad188ea136a26274ec8c352ce3d90e31/filled_step.ipynb deleted file mode 120000 index ab919131912..00000000000 --- a/_downloads/ad188ea136a26274ec8c352ce3d90e31/filled_step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ad188ea136a26274ec8c352ce3d90e31/filled_step.ipynb \ No newline at end of file diff --git a/_downloads/ad1f6b8de6e1e6a14b45f2ec377992ad/buttons.py b/_downloads/ad1f6b8de6e1e6a14b45f2ec377992ad/buttons.py deleted file mode 100644 index 833366d33a0..00000000000 --- a/_downloads/ad1f6b8de6e1e6a14b45f2ec377992ad/buttons.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -======= -Buttons -======= - -Constructing a simple button GUI to modify a sine wave. - -The ``next`` and ``previous`` button widget helps visualize the wave with -new frequencies. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import Button - -freqs = np.arange(2, 20, 3) - -fig, ax = plt.subplots() -plt.subplots_adjust(bottom=0.2) -t = np.arange(0.0, 1.0, 0.001) -s = np.sin(2*np.pi*freqs[0]*t) -l, = plt.plot(t, s, lw=2) - - -class Index(object): - ind = 0 - - def next(self, event): - self.ind += 1 - i = self.ind % len(freqs) - ydata = np.sin(2*np.pi*freqs[i]*t) - l.set_ydata(ydata) - plt.draw() - - def prev(self, event): - self.ind -= 1 - i = self.ind % len(freqs) - ydata = np.sin(2*np.pi*freqs[i]*t) - l.set_ydata(ydata) - plt.draw() - -callback = Index() -axprev = plt.axes([0.7, 0.05, 0.1, 0.075]) -axnext = plt.axes([0.81, 0.05, 0.1, 0.075]) -bnext = Button(axnext, 'Next') -bnext.on_clicked(callback.next) -bprev = Button(axprev, 'Previous') -bprev.on_clicked(callback.prev) - -plt.show() diff --git a/_downloads/ad2e219b5469c29f24a1e76c3326051c/pyplot_text.ipynb b/_downloads/ad2e219b5469c29f24a1e76c3326051c/pyplot_text.ipynb deleted file mode 100644 index e87bc1a92f5..00000000000 --- a/_downloads/ad2e219b5469c29f24a1e76c3326051c/pyplot_text.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Text\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nmu, sigma = 100, 15\nx = mu + sigma * np.random.randn(10000)\n\n# the histogram of the data\nn, bins, patches = plt.hist(x, 50, density=True, facecolor='g', alpha=0.75)\n\n\nplt.xlabel('Smarts')\nplt.ylabel('Probability')\nplt.title('Histogram of IQ')\nplt.text(60, .025, r'$\\mu=100,\\ \\sigma=15$')\nplt.xlim(40, 160)\nplt.ylim(0, 0.03)\nplt.grid(True)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.hist\nmatplotlib.pyplot.xlabel\nmatplotlib.pyplot.ylabel\nmatplotlib.pyplot.text\nmatplotlib.pyplot.grid\nmatplotlib.pyplot.show" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ad2ed2aa2f54fbf1d827b7ff3c8acd77/logos2.ipynb b/_downloads/ad2ed2aa2f54fbf1d827b7ff3c8acd77/logos2.ipynb deleted file mode 120000 index 586fe4b24d6..00000000000 --- a/_downloads/ad2ed2aa2f54fbf1d827b7ff3c8acd77/logos2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ad2ed2aa2f54fbf1d827b7ff3c8acd77/logos2.ipynb \ No newline at end of file diff --git a/_downloads/ad34128765bced16b986732710b8d6fd/colormaps.ipynb b/_downloads/ad34128765bced16b986732710b8d6fd/colormaps.ipynb deleted file mode 120000 index 9d65e444e81..00000000000 --- a/_downloads/ad34128765bced16b986732710b8d6fd/colormaps.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ad34128765bced16b986732710b8d6fd/colormaps.ipynb \ No newline at end of file diff --git a/_downloads/ad35a0d80dc1a179ba8e4aa92c8a0ca0/anchored_box02.py b/_downloads/ad35a0d80dc1a179ba8e4aa92c8a0ca0/anchored_box02.py deleted file mode 120000 index 2316384b188..00000000000 --- a/_downloads/ad35a0d80dc1a179ba8e4aa92c8a0ca0/anchored_box02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ad35a0d80dc1a179ba8e4aa92c8a0ca0/anchored_box02.py \ No newline at end of file diff --git a/_downloads/ad370f247c5a0d82cad64b1fcb11af09/fancyarrow_demo.ipynb b/_downloads/ad370f247c5a0d82cad64b1fcb11af09/fancyarrow_demo.ipynb deleted file mode 120000 index bb9052e4a9a..00000000000 --- a/_downloads/ad370f247c5a0d82cad64b1fcb11af09/fancyarrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ad370f247c5a0d82cad64b1fcb11af09/fancyarrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/ad3f3f3fee2434efc7123cbc72d01319/layer_images.py b/_downloads/ad3f3f3fee2434efc7123cbc72d01319/layer_images.py deleted file mode 120000 index 5e6aed5a3a0..00000000000 --- a/_downloads/ad3f3f3fee2434efc7123cbc72d01319/layer_images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ad3f3f3fee2434efc7123cbc72d01319/layer_images.py \ No newline at end of file diff --git a/_downloads/ad43bd7e51d4e51625dd732687fdc8d2/canvasagg.ipynb b/_downloads/ad43bd7e51d4e51625dd732687fdc8d2/canvasagg.ipynb deleted file mode 120000 index e0de29278cc..00000000000 --- a/_downloads/ad43bd7e51d4e51625dd732687fdc8d2/canvasagg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ad43bd7e51d4e51625dd732687fdc8d2/canvasagg.ipynb \ No newline at end of file diff --git a/_downloads/ad4803502d717403e19d29e67292cb41/hist3d.ipynb b/_downloads/ad4803502d717403e19d29e67292cb41/hist3d.ipynb deleted file mode 120000 index c61210c8de7..00000000000 --- a/_downloads/ad4803502d717403e19d29e67292cb41/hist3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ad4803502d717403e19d29e67292cb41/hist3d.ipynb \ No newline at end of file diff --git a/_downloads/ad4d5759b799fc68b0d500abc8293705/annotate_transform.py b/_downloads/ad4d5759b799fc68b0d500abc8293705/annotate_transform.py deleted file mode 100644 index 249dee2efdc..00000000000 --- a/_downloads/ad4d5759b799fc68b0d500abc8293705/annotate_transform.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -================== -Annotate Transform -================== - -This example shows how to use different coordinate systems for annotations. -For a complete overview of the annotation capabilities, also see the -:doc:`annotation tutorial`. -""" -import numpy as np -import matplotlib.pyplot as plt - -x = np.arange(0, 10, 0.005) -y = np.exp(-x/2.) * np.sin(2*np.pi*x) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_xlim(0, 10) -ax.set_ylim(-1, 1) - -xdata, ydata = 5, 0 -xdisplay, ydisplay = ax.transData.transform_point((xdata, ydata)) - -bbox = dict(boxstyle="round", fc="0.8") -arrowprops = dict( - arrowstyle = "->", - connectionstyle = "angle,angleA=0,angleB=90,rad=10") - -offset = 72 -ax.annotate('data = (%.1f, %.1f)'%(xdata, ydata), - (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - - -disp = ax.annotate('display = (%.1f, %.1f)'%(xdisplay, ydisplay), - (xdisplay, ydisplay), xytext=(0.5*offset, -offset), - xycoords='figure pixels', - textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.transforms.Transform.transform_point -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/ad4dad41edafcd736fbd7db7cfe8a6a0/figimage_demo.ipynb b/_downloads/ad4dad41edafcd736fbd7db7cfe8a6a0/figimage_demo.ipynb deleted file mode 120000 index 8d876fd0002..00000000000 --- a/_downloads/ad4dad41edafcd736fbd7db7cfe8a6a0/figimage_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ad4dad41edafcd736fbd7db7cfe8a6a0/figimage_demo.ipynb \ No newline at end of file diff --git a/_downloads/ad4e37755eca219672be886b113d195e/animate_decay.py b/_downloads/ad4e37755eca219672be886b113d195e/animate_decay.py deleted file mode 120000 index 04f9209dc5a..00000000000 --- a/_downloads/ad4e37755eca219672be886b113d195e/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ad4e37755eca219672be886b113d195e/animate_decay.py \ No newline at end of file diff --git a/_downloads/ad55d5efde9b2d1a852bdf0b40a24d07/polar_bar.ipynb b/_downloads/ad55d5efde9b2d1a852bdf0b40a24d07/polar_bar.ipynb deleted file mode 120000 index 625b8b2253b..00000000000 --- a/_downloads/ad55d5efde9b2d1a852bdf0b40a24d07/polar_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ad55d5efde9b2d1a852bdf0b40a24d07/polar_bar.ipynb \ No newline at end of file diff --git a/_downloads/ad5f159d59ee9ecfcbbea70c0ddf7d01/resample.ipynb b/_downloads/ad5f159d59ee9ecfcbbea70c0ddf7d01/resample.ipynb deleted file mode 100644 index 8ad9bac77b3..00000000000 --- a/_downloads/ad5f159d59ee9ecfcbbea70c0ddf7d01/resample.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Resampling Data\n\n\nDownsampling lowers the sample rate or sample size of a signal. In\nthis tutorial, the signal is downsampled when the plot is adjusted\nthrough dragging and zooming.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\n# A class that will downsample the data and recompute when zoomed.\nclass DataDisplayDownsampler(object):\n def __init__(self, xdata, ydata):\n self.origYData = ydata\n self.origXData = xdata\n self.max_points = 50\n self.delta = xdata[-1] - xdata[0]\n\n def downsample(self, xstart, xend):\n # get the points in the view range\n mask = (self.origXData > xstart) & (self.origXData < xend)\n # dilate the mask by one to catch the points just outside\n # of the view range to not truncate the line\n mask = np.convolve([1, 1], mask, mode='same').astype(bool)\n # sort out how many points to drop\n ratio = max(np.sum(mask) // self.max_points, 1)\n\n # mask data\n xdata = self.origXData[mask]\n ydata = self.origYData[mask]\n\n # downsample data\n xdata = xdata[::ratio]\n ydata = ydata[::ratio]\n\n print(\"using {} of {} visible points\".format(\n len(ydata), np.sum(mask)))\n\n return xdata, ydata\n\n def update(self, ax):\n # Update the line\n lims = ax.viewLim\n if np.abs(lims.width - self.delta) > 1e-8:\n self.delta = lims.width\n xstart, xend = lims.intervalx\n self.line.set_data(*self.downsample(xstart, xend))\n ax.figure.canvas.draw_idle()\n\n\n# Create a signal\nxdata = np.linspace(16, 365, (365-16)*4)\nydata = np.sin(2*np.pi*xdata/153) + np.cos(2*np.pi*xdata/127)\n\nd = DataDisplayDownsampler(xdata, ydata)\n\nfig, ax = plt.subplots()\n\n# Hook up the line\nd.line, = ax.plot(xdata, ydata, 'o-')\nax.set_autoscale_on(False) # Otherwise, infinite loop\n\n# Connect for changing the view limits\nax.callbacks.connect('xlim_changed', d.update)\nax.set_xlim(16, 365)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ad6095ee8c2cb69a677bf825f379ac68/image_masked.ipynb b/_downloads/ad6095ee8c2cb69a677bf825f379ac68/image_masked.ipynb deleted file mode 120000 index 0210637d15a..00000000000 --- a/_downloads/ad6095ee8c2cb69a677bf825f379ac68/image_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ad6095ee8c2cb69a677bf825f379ac68/image_masked.ipynb \ No newline at end of file diff --git a/_downloads/ad6dcb16de612f398aff2f9ffcc64c3e/trisurf3d_2.ipynb b/_downloads/ad6dcb16de612f398aff2f9ffcc64c3e/trisurf3d_2.ipynb deleted file mode 120000 index 7681ad67cdb..00000000000 --- a/_downloads/ad6dcb16de612f398aff2f9ffcc64c3e/trisurf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ad6dcb16de612f398aff2f9ffcc64c3e/trisurf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/ad6ee859f5cf2b128f784a4bd50ee2fc/boxplot_demo.py b/_downloads/ad6ee859f5cf2b128f784a4bd50ee2fc/boxplot_demo.py deleted file mode 100644 index 570e9a2428f..00000000000 --- a/_downloads/ad6ee859f5cf2b128f784a4bd50ee2fc/boxplot_demo.py +++ /dev/null @@ -1,235 +0,0 @@ -""" -======== -Boxplots -======== - -Visualizing boxplots with matplotlib. - -The following examples show off how to visualize boxplots with -Matplotlib. There are many options to control their appearance and -the statistics that they use to summarize the data. - -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.patches import Polygon - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# fake up some data -spread = np.random.rand(50) * 100 -center = np.ones(25) * 50 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -data = np.concatenate((spread, center, flier_high, flier_low)) - -fig, axs = plt.subplots(2, 3) - -# basic plot -axs[0, 0].boxplot(data) -axs[0, 0].set_title('basic plot') - -# notched plot -axs[0, 1].boxplot(data, 1) -axs[0, 1].set_title('notched plot') - -# change outlier point symbols -axs[0, 2].boxplot(data, 0, 'gD') -axs[0, 2].set_title('change outlier\npoint symbols') - -# don't show outlier points -axs[1, 0].boxplot(data, 0, '') -axs[1, 0].set_title("don't show\noutlier points") - -# horizontal boxes -axs[1, 1].boxplot(data, 0, 'rs', 0) -axs[1, 1].set_title('horizontal boxes') - -# change whisker length -axs[1, 2].boxplot(data, 0, 'rs', 0, 0.75) -axs[1, 2].set_title('change whisker length') - -fig.subplots_adjust(left=0.08, right=0.98, bottom=0.05, top=0.9, - hspace=0.4, wspace=0.3) - -# fake up some more data -spread = np.random.rand(50) * 100 -center = np.ones(25) * 40 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -d2 = np.concatenate((spread, center, flier_high, flier_low)) -data.shape = (-1, 1) -d2.shape = (-1, 1) -# Making a 2-D array only works if all the columns are the -# same length. If they are not, then use a list instead. -# This is actually more efficient because boxplot converts -# a 2-D array into a list of vectors internally anyway. -data = [data, d2, d2[::2, 0]] - -# Multiple box plots on one Axes -fig, ax = plt.subplots() -ax.boxplot(data) - -plt.show() - - -############################################################################### -# Below we'll generate data from five different probability distributions, -# each with different characteristics. We want to play with how an IID -# bootstrap resample of the data preserves the distributional -# properties of the original sample, and a boxplot is one visual tool -# to make this assessment - -random_dists = ['Normal(1,1)', ' Lognormal(1,1)', 'Exp(1)', 'Gumbel(6,4)', - 'Triangular(2,9,11)'] -N = 500 - -norm = np.random.normal(1, 1, N) -logn = np.random.lognormal(1, 1, N) -expo = np.random.exponential(1, N) -gumb = np.random.gumbel(6, 4, N) -tria = np.random.triangular(2, 9, 11, N) - -# Generate some random indices that we'll use to resample the original data -# arrays. For code brevity, just use the same random indices for each array -bootstrap_indices = np.random.randint(0, N, N) -data = [ - norm, norm[bootstrap_indices], - logn, logn[bootstrap_indices], - expo, expo[bootstrap_indices], - gumb, gumb[bootstrap_indices], - tria, tria[bootstrap_indices], -] - -fig, ax1 = plt.subplots(figsize=(10, 6)) -fig.canvas.set_window_title('A Boxplot Example') -fig.subplots_adjust(left=0.075, right=0.95, top=0.9, bottom=0.25) - -bp = ax1.boxplot(data, notch=0, sym='+', vert=1, whis=1.5) -plt.setp(bp['boxes'], color='black') -plt.setp(bp['whiskers'], color='black') -plt.setp(bp['fliers'], color='red', marker='+') - -# Add a horizontal grid to the plot, but make it very light in color -# so we can use it for reading data values but not be distracting -ax1.yaxis.grid(True, linestyle='-', which='major', color='lightgrey', - alpha=0.5) - -# Hide these grid behind plot objects -ax1.set_axisbelow(True) -ax1.set_title('Comparison of IID Bootstrap Resampling Across Five Distributions') -ax1.set_xlabel('Distribution') -ax1.set_ylabel('Value') - -# Now fill the boxes with desired colors -box_colors = ['darkkhaki', 'royalblue'] -num_boxes = len(data) -medians = np.empty(num_boxes) -for i in range(num_boxes): - box = bp['boxes'][i] - boxX = [] - boxY = [] - for j in range(5): - boxX.append(box.get_xdata()[j]) - boxY.append(box.get_ydata()[j]) - box_coords = np.column_stack([boxX, boxY]) - # Alternate between Dark Khaki and Royal Blue - ax1.add_patch(Polygon(box_coords, facecolor=box_colors[i % 2])) - # Now draw the median lines back over what we just filled in - med = bp['medians'][i] - medianX = [] - medianY = [] - for j in range(2): - medianX.append(med.get_xdata()[j]) - medianY.append(med.get_ydata()[j]) - ax1.plot(medianX, medianY, 'k') - medians[i] = medianY[0] - # Finally, overplot the sample averages, with horizontal alignment - # in the center of each box - ax1.plot(np.average(med.get_xdata()), np.average(data[i]), - color='w', marker='*', markeredgecolor='k') - -# Set the axes ranges and axes labels -ax1.set_xlim(0.5, num_boxes + 0.5) -top = 40 -bottom = -5 -ax1.set_ylim(bottom, top) -ax1.set_xticklabels(np.repeat(random_dists, 2), - rotation=45, fontsize=8) - -# Due to the Y-axis scale being different across samples, it can be -# hard to compare differences in medians across the samples. Add upper -# X-axis tick labels with the sample medians to aid in comparison -# (just use two decimal places of precision) -pos = np.arange(num_boxes) + 1 -upper_labels = [str(np.round(s, 2)) for s in medians] -weights = ['bold', 'semibold'] -for tick, label in zip(range(num_boxes), ax1.get_xticklabels()): - k = tick % 2 - ax1.text(pos[tick], .95, upper_labels[tick], - transform=ax1.get_xaxis_transform(), - horizontalalignment='center', size='x-small', - weight=weights[k], color=box_colors[k]) - -# Finally, add a basic legend -fig.text(0.80, 0.08, f'{N} Random Numbers', - backgroundcolor=box_colors[0], color='black', weight='roman', - size='x-small') -fig.text(0.80, 0.045, 'IID Bootstrap Resample', - backgroundcolor=box_colors[1], - color='white', weight='roman', size='x-small') -fig.text(0.80, 0.015, '*', color='white', backgroundcolor='silver', - weight='roman', size='medium') -fig.text(0.815, 0.013, ' Average Value', color='black', weight='roman', - size='x-small') - -plt.show() - -############################################################################### -# Here we write a custom function to bootstrap confidence intervals. -# We can then use the boxplot along with this function to show these intervals. - - -def fakeBootStrapper(n): - ''' - This is just a placeholder for the user's method of - bootstrapping the median and its confidence intervals. - - Returns an arbitrary median and confidence intervals - packed into a tuple - ''' - if n == 1: - med = 0.1 - CI = (-0.25, 0.25) - else: - med = 0.2 - CI = (-0.35, 0.50) - - return med, CI - -inc = 0.1 -e1 = np.random.normal(0, 1, size=500) -e2 = np.random.normal(0, 1, size=500) -e3 = np.random.normal(0, 1 + inc, size=500) -e4 = np.random.normal(0, 1 + 2*inc, size=500) - -treatments = [e1, e2, e3, e4] -med1, CI1 = fakeBootStrapper(1) -med2, CI2 = fakeBootStrapper(2) -medians = [None, None, med1, med2] -conf_intervals = [None, None, CI1, CI2] - -fig, ax = plt.subplots() -pos = np.array(range(len(treatments))) + 1 -bp = ax.boxplot(treatments, sym='k+', positions=pos, - notch=1, bootstrap=5000, - usermedians=medians, - conf_intervals=conf_intervals) - -ax.set_xlabel('treatment') -ax.set_ylabel('response') -plt.setp(bp['whiskers'], color='k', linestyle='-') -plt.setp(bp['fliers'], markersize=3.0) -plt.show() diff --git a/_downloads/ad71e199eedacef2fbe00e53fce02afd/specgram_demo.ipynb b/_downloads/ad71e199eedacef2fbe00e53fce02afd/specgram_demo.ipynb deleted file mode 120000 index c92d2903c38..00000000000 --- a/_downloads/ad71e199eedacef2fbe00e53fce02afd/specgram_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ad71e199eedacef2fbe00e53fce02afd/specgram_demo.ipynb \ No newline at end of file diff --git a/_downloads/ad780ea2c0102b09c50fd2e4f7d8ea66/colorbar_only.py b/_downloads/ad780ea2c0102b09c50fd2e4f7d8ea66/colorbar_only.py deleted file mode 120000 index e56b4b99683..00000000000 --- a/_downloads/ad780ea2c0102b09c50fd2e4f7d8ea66/colorbar_only.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ad780ea2c0102b09c50fd2e4f7d8ea66/colorbar_only.py \ No newline at end of file diff --git a/_downloads/ad7c7fcc6cf90e0fc20804d9f3e84c18/axes_grid.ipynb b/_downloads/ad7c7fcc6cf90e0fc20804d9f3e84c18/axes_grid.ipynb deleted file mode 120000 index 2dae33cbee4..00000000000 --- a/_downloads/ad7c7fcc6cf90e0fc20804d9f3e84c18/axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ad7c7fcc6cf90e0fc20804d9f3e84c18/axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/ad8363f56cc1a0cc0bf2a3c95ca14aa1/step_demo.py b/_downloads/ad8363f56cc1a0cc0bf2a3c95ca14aa1/step_demo.py deleted file mode 120000 index a242f6e1f8d..00000000000 --- a/_downloads/ad8363f56cc1a0cc0bf2a3c95ca14aa1/step_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ad8363f56cc1a0cc0bf2a3c95ca14aa1/step_demo.py \ No newline at end of file diff --git a/_downloads/ad85aaf631113ff6e66ce3131fe3e37b/patch_collection.ipynb b/_downloads/ad85aaf631113ff6e66ce3131fe3e37b/patch_collection.ipynb deleted file mode 120000 index 2b2a5bd8716..00000000000 --- a/_downloads/ad85aaf631113ff6e66ce3131fe3e37b/patch_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ad85aaf631113ff6e66ce3131fe3e37b/patch_collection.ipynb \ No newline at end of file diff --git a/_downloads/ad8827986aeabeed7156f5e68582647d/mathtext.ipynb b/_downloads/ad8827986aeabeed7156f5e68582647d/mathtext.ipynb deleted file mode 120000 index 88f0bf1be73..00000000000 --- a/_downloads/ad8827986aeabeed7156f5e68582647d/mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ad8827986aeabeed7156f5e68582647d/mathtext.ipynb \ No newline at end of file diff --git a/_downloads/ad8879e6a9334b8526db15d2976b0a0d/bar_demo2.py b/_downloads/ad8879e6a9334b8526db15d2976b0a0d/bar_demo2.py deleted file mode 100644 index d18f81b7753..00000000000 --- a/_downloads/ad8879e6a9334b8526db15d2976b0a0d/bar_demo2.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -=================== -Bar demo with units -=================== - -A plot using a variety of centimetre and inch conversions. This example shows -how default unit introspection works (ax1), how various keywords can be used to -set the x and y units to override the defaults (ax2, ax3, ax4) and how one can -set the xlimits using scalars (ax3, current units assumed) or units -(conversions applied to get the numbers to current units). - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -import numpy as np -from basic_units import cm, inch -import matplotlib.pyplot as plt - -cms = cm * np.arange(0, 10, 2) -bottom = 0 * cm -width = 0.8 * cm - -fig, axs = plt.subplots(2, 2) - -axs[0, 0].bar(cms, cms, bottom=bottom) - -axs[0, 1].bar(cms, cms, bottom=bottom, width=width, xunits=cm, yunits=inch) - -axs[1, 0].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=cm) -axs[1, 0].set_xlim(2, 6) # scalars are interpreted in current units - -axs[1, 1].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=inch) -axs[1, 1].set_xlim(2 * cm, 6 * cm) # cm are converted to inches - -fig.tight_layout() -plt.show() diff --git a/_downloads/ad91d1919759de98abc6a43c977e898a/annotate_text_arrow.ipynb b/_downloads/ad91d1919759de98abc6a43c977e898a/annotate_text_arrow.ipynb deleted file mode 100644 index 7e5be3c7fc8..00000000000 --- a/_downloads/ad91d1919759de98abc6a43c977e898a/annotate_text_arrow.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Text Arrow\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(5, 5))\nax.set_aspect(1)\n\nx1 = -1 + np.random.randn(100)\ny1 = -1 + np.random.randn(100)\nx2 = 1. + np.random.randn(100)\ny2 = 1. + np.random.randn(100)\n\nax.scatter(x1, y1, color=\"r\")\nax.scatter(x2, y2, color=\"g\")\n\nbbox_props = dict(boxstyle=\"round\", fc=\"w\", ec=\"0.5\", alpha=0.9)\nax.text(-2, -2, \"Sample A\", ha=\"center\", va=\"center\", size=20,\n bbox=bbox_props)\nax.text(2, 2, \"Sample B\", ha=\"center\", va=\"center\", size=20,\n bbox=bbox_props)\n\n\nbbox_props = dict(boxstyle=\"rarrow\", fc=(0.8, 0.9, 0.9), ec=\"b\", lw=2)\nt = ax.text(0, 0, \"Direction\", ha=\"center\", va=\"center\", rotation=45,\n size=15,\n bbox=bbox_props)\n\nbb = t.get_bbox_patch()\nbb.set_boxstyle(\"rarrow\", pad=0.6)\n\nax.set_xlim(-4, 4)\nax.set_ylim(-4, 4)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ad9632271b21934bff144dab3be137fa/scatter_custom_symbol.py b/_downloads/ad9632271b21934bff144dab3be137fa/scatter_custom_symbol.py deleted file mode 120000 index a34e58fc0be..00000000000 --- a/_downloads/ad9632271b21934bff144dab3be137fa/scatter_custom_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ad9632271b21934bff144dab3be137fa/scatter_custom_symbol.py \ No newline at end of file diff --git a/_downloads/ad9a4d6b22bcb228428004e63c4bb8a3/anscombe.py b/_downloads/ad9a4d6b22bcb228428004e63c4bb8a3/anscombe.py deleted file mode 100644 index 2160f7ef98b..00000000000 --- a/_downloads/ad9a4d6b22bcb228428004e63c4bb8a3/anscombe.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -================== -Anscombe's Quartet -================== - -""" -""" -Edward Tufte uses this example from Anscombe to show 4 datasets of x -and y that have the same mean, standard deviation, and regression -line, but which are qualitatively different. -""" - -import matplotlib.pyplot as plt -import numpy as np - -x = [10, 8, 13, 9, 11, 14, 6, 4, 12, 7, 5] -y1 = [8.04, 6.95, 7.58, 8.81, 8.33, 9.96, 7.24, 4.26, 10.84, 4.82, 5.68] -y2 = [9.14, 8.14, 8.74, 8.77, 9.26, 8.10, 6.13, 3.10, 9.13, 7.26, 4.74] -y3 = [7.46, 6.77, 12.74, 7.11, 7.81, 8.84, 6.08, 5.39, 8.15, 6.42, 5.73] -x4 = [8, 8, 8, 8, 8, 8, 8, 19, 8, 8, 8] -y4 = [6.58, 5.76, 7.71, 8.84, 8.47, 7.04, 5.25, 12.50, 5.56, 7.91, 6.89] - - -def fit(x): - return 3 + 0.5 * x - - -fig, axs = plt.subplots(2, 2, sharex=True, sharey=True) -axs[0, 0].set(xlim=(0, 20), ylim=(2, 14)) -axs[0, 0].set(xticks=(0, 10, 20), yticks=(4, 8, 12)) - -xfit = np.array([np.min(x), np.max(x)]) -axs[0, 0].plot(x, y1, 'ks', xfit, fit(xfit), 'r-', lw=2) -axs[0, 1].plot(x, y2, 'ks', xfit, fit(xfit), 'r-', lw=2) -axs[1, 0].plot(x, y3, 'ks', xfit, fit(xfit), 'r-', lw=2) -xfit = np.array([np.min(x4), np.max(x4)]) -axs[1, 1].plot(x4, y4, 'ks', xfit, fit(xfit), 'r-', lw=2) - -for ax, label in zip(axs.flat, ['I', 'II', 'III', 'IV']): - ax.label_outer() - ax.text(3, 12, label, fontsize=20) - -# verify the stats -pairs = (x, y1), (x, y2), (x, y3), (x4, y4) -for x, y in pairs: - print('mean=%1.2f, std=%1.2f, r=%1.2f' % (np.mean(y), np.std(y), - np.corrcoef(x, y)[0][1])) - -plt.show() diff --git a/_downloads/ad9bbbc2491eb1016e55ea1bbf39786d/fonts_demo_kw.py b/_downloads/ad9bbbc2491eb1016e55ea1bbf39786d/fonts_demo_kw.py deleted file mode 120000 index edef6f903ee..00000000000 --- a/_downloads/ad9bbbc2491eb1016e55ea1bbf39786d/fonts_demo_kw.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ad9bbbc2491eb1016e55ea1bbf39786d/fonts_demo_kw.py \ No newline at end of file diff --git a/_downloads/ad9f634483a880b0078547a7a8666fed/simple_axisline3.ipynb b/_downloads/ad9f634483a880b0078547a7a8666fed/simple_axisline3.ipynb deleted file mode 120000 index 4310609f96a..00000000000 --- a/_downloads/ad9f634483a880b0078547a7a8666fed/simple_axisline3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ad9f634483a880b0078547a7a8666fed/simple_axisline3.ipynb \ No newline at end of file diff --git a/_downloads/ada0660b2edf0848f47f3a417dec37a9/gradient_bar.ipynb b/_downloads/ada0660b2edf0848f47f3a417dec37a9/gradient_bar.ipynb deleted file mode 120000 index 20905df24f6..00000000000 --- a/_downloads/ada0660b2edf0848f47f3a417dec37a9/gradient_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ada0660b2edf0848f47f3a417dec37a9/gradient_bar.ipynb \ No newline at end of file diff --git a/_downloads/ada65695d70680568409c45439ffcced/mplot3d.ipynb b/_downloads/ada65695d70680568409c45439ffcced/mplot3d.ipynb deleted file mode 100644 index 372119ace6c..00000000000 --- a/_downloads/ada65695d70680568409c45439ffcced/mplot3d.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The mplot3d Toolkit\n\n\nGenerating 3D plots using the mplot3d toolkit.\n\n.. currentmodule:: mpl_toolkits.mplot3d\n :backlinks: none\n\n\nGetting started\n---------------\nAn Axes3D object is created just like any other axes using\nthe projection='3d' keyword.\nCreate a new :class:`matplotlib.figure.Figure` and\nadd a new axes to it of type :class:`~mpl_toolkits.mplot3d.Axes3D`::\n\n import matplotlib.pyplot as plt\n from mpl_toolkits.mplot3d import Axes3D\n fig = plt.figure()\n ax = fig.add_subplot(111, projection='3d')\n\n.. versionadded:: 1.0.0\n This approach is the preferred method of creating a 3D axes.\n\n

Note

Prior to version 1.0.0, the method of creating a 3D axes was\n different. For those using older versions of matplotlib, change\n ``ax = fig.add_subplot(111, projection='3d')``\n to ``ax = Axes3D(fig)``.

\n\nSee the `toolkit_mplot3d-faq` for more information about the mplot3d\ntoolkit.\n\n\nLine plots\n====================\n.. automethod:: Axes3D.plot\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_lines3d_001.png\n :target: ../../gallery/mplot3d/lines3d.html\n :align: center\n :scale: 50\n\n Lines3d\n\n\nScatter plots\n=============\n.. automethod:: Axes3D.scatter\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_scatter3d_001.png\n :target: ../../gallery/mplot3d/scatter3d.html\n :align: center\n :scale: 50\n\n Scatter3d\n\n\nWireframe plots\n===============\n.. automethod:: Axes3D.plot_wireframe\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_wire3d_001.png\n :target: ../../gallery/mplot3d/wire3d.html\n :align: center\n :scale: 50\n\n Wire3d\n\n\nSurface plots\n=============\n.. automethod:: Axes3D.plot_surface\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png\n :target: ../../gallery/mplot3d/surface3d.html\n :align: center\n :scale: 50\n\n Surface3d\n\n Surface3d 2\n\n Surface3d 3\n\n\nTri-Surface plots\n=================\n.. automethod:: Axes3D.plot_trisurf\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_trisurf3d_001.png\n :target: ../../gallery/mplot3d/trisurf3d.html\n :align: center\n :scale: 50\n\n Trisurf3d\n\n\n\nContour plots\n=============\n.. automethod:: Axes3D.contour\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_contour3d_001.png\n :target: ../../gallery/mplot3d/contour3d.html\n :align: center\n :scale: 50\n\n Contour3d\n\n Contour3d 2\n\n Contour3d 3\n\n\nFilled contour plots\n====================\n.. automethod:: Axes3D.contourf\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_contourf3d_001.png\n :target: ../../gallery/mplot3d/contourf3d.html\n :align: center\n :scale: 50\n\n Contourf3d\n\n Contourf3d 2\n\n.. versionadded:: 1.1.0\n The feature demoed in the second contourf3d example was enabled as a\n result of a bugfix for version 1.1.0.\n\n\nPolygon plots\n====================\n.. automethod:: Axes3D.add_collection3d\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_polys3d_001.png\n :target: ../../gallery/mplot3d/polys3d.html\n :align: center\n :scale: 50\n\n Polys3d\n\n\nBar plots\n====================\n.. automethod:: Axes3D.bar\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_bars3d_001.png\n :target: ../../gallery/mplot3d/bars3d.html\n :align: center\n :scale: 50\n\n Bars3d\n\n\nQuiver\n====================\n.. automethod:: Axes3D.quiver\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_quiver3d_001.png\n :target: ../../gallery/mplot3d/quiver3d.html\n :align: center\n :scale: 50\n\n Quiver3d\n\n\n2D plots in 3D\n====================\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_2dcollections3d_001.png\n :target: ../../gallery/mplot3d/2dcollections3d.html\n :align: center\n :scale: 50\n\n 2dcollections3d\n\n\nText\n====================\n.. automethod:: Axes3D.text\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_text3d_001.png\n :target: ../../gallery/mplot3d/text3d.html\n :align: center\n :scale: 50\n\n Text3d\n\n\nSubplotting\n====================\nHaving multiple 3D plots in a single figure is the same\nas it is for 2D plots. Also, you can have both 2D and 3D plots\nin the same figure.\n\n.. versionadded:: 1.0.0\n Subplotting 3D plots was added in v1.0.0. Earlier version can not\n do this.\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_subplot3d_001.png\n :target: ../../gallery/mplot3d/subplot3d.html\n :align: center\n :scale: 50\n\n Subplot3d\n\n Mixed Subplots\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ada9c35d50f9be5cfba081119adb6b54/bbox_intersect.ipynb b/_downloads/ada9c35d50f9be5cfba081119adb6b54/bbox_intersect.ipynb deleted file mode 120000 index ac8cfeeaf67..00000000000 --- a/_downloads/ada9c35d50f9be5cfba081119adb6b54/bbox_intersect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ada9c35d50f9be5cfba081119adb6b54/bbox_intersect.ipynb \ No newline at end of file diff --git a/_downloads/adabc3da4485174b286dab6df239dd1d/legend_guide.ipynb b/_downloads/adabc3da4485174b286dab6df239dd1d/legend_guide.ipynb deleted file mode 120000 index a52ade5a6d1..00000000000 --- a/_downloads/adabc3da4485174b286dab6df239dd1d/legend_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/adabc3da4485174b286dab6df239dd1d/legend_guide.ipynb \ No newline at end of file diff --git a/_downloads/adb14b96d426080892782f477ba24b68/secondary_axis.ipynb b/_downloads/adb14b96d426080892782f477ba24b68/secondary_axis.ipynb deleted file mode 120000 index a1fe37034b3..00000000000 --- a/_downloads/adb14b96d426080892782f477ba24b68/secondary_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/adb14b96d426080892782f477ba24b68/secondary_axis.ipynb \ No newline at end of file diff --git a/_downloads/adbe7e570a28c1741a1a1f8043ad7c58/hexbin_demo.ipynb b/_downloads/adbe7e570a28c1741a1a1f8043ad7c58/hexbin_demo.ipynb deleted file mode 120000 index a6d82a4bb12..00000000000 --- a/_downloads/adbe7e570a28c1741a1a1f8043ad7c58/hexbin_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/adbe7e570a28c1741a1a1f8043ad7c58/hexbin_demo.ipynb \ No newline at end of file diff --git a/_downloads/adbe9e23fe38777ccc08b59670c5c2bd/annotate_simple01.py b/_downloads/adbe9e23fe38777ccc08b59670c5c2bd/annotate_simple01.py deleted file mode 120000 index 0022118ade1..00000000000 --- a/_downloads/adbe9e23fe38777ccc08b59670c5c2bd/annotate_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/adbe9e23fe38777ccc08b59670c5c2bd/annotate_simple01.py \ No newline at end of file diff --git a/_downloads/adbf2a5fe39a1a588e08b995760f3541/barchart_demo.py b/_downloads/adbf2a5fe39a1a588e08b995760f3541/barchart_demo.py deleted file mode 120000 index 664b51f0718..00000000000 --- a/_downloads/adbf2a5fe39a1a588e08b995760f3541/barchart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/adbf2a5fe39a1a588e08b995760f3541/barchart_demo.py \ No newline at end of file diff --git a/_downloads/adc1cbf97ddf73923f6b8ba6b0286146/svg_filter_line.ipynb b/_downloads/adc1cbf97ddf73923f6b8ba6b0286146/svg_filter_line.ipynb deleted file mode 120000 index 0087f6fc802..00000000000 --- a/_downloads/adc1cbf97ddf73923f6b8ba6b0286146/svg_filter_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/adc1cbf97ddf73923f6b8ba6b0286146/svg_filter_line.ipynb \ No newline at end of file diff --git a/_downloads/adc5660f484230cd9db3d9c4a643159c/animation_demo.ipynb b/_downloads/adc5660f484230cd9db3d9c4a643159c/animation_demo.ipynb deleted file mode 100644 index 8f171fc4b0c..00000000000 --- a/_downloads/adc5660f484230cd9db3d9c4a643159c/animation_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# pyplot animation\n\n\nGenerating an animation by calling `~.pyplot.pause` between plotting commands.\n\nThe method shown here is only suitable for simple, low-performance use. For\nmore demanding applications, look at the :mod:`animation` module and the\nexamples that use it.\n\nNote that calling `time.sleep` instead of `~.pyplot.pause` would *not* work.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nnp.random.seed(19680801)\ndata = np.random.random((50, 50, 50))\n\nfig, ax = plt.subplots()\n\nfor i in range(len(data)):\n ax.cla()\n ax.imshow(data[i])\n ax.set_title(\"frame {}\".format(i))\n # Note that using time.sleep does *not* work here!\n plt.pause(0.1)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/adc6a9984ce02c1e1daf997b83cd2bc3/line_collection.ipynb b/_downloads/adc6a9984ce02c1e1daf997b83cd2bc3/line_collection.ipynb deleted file mode 100644 index c4b2718b8f5..00000000000 --- a/_downloads/adc6a9984ce02c1e1daf997b83cd2bc3/line_collection.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Line Collection\n\n\nPlotting lines with Matplotlib.\n\n:class:`~matplotlib.collections.LineCollection` allows one to plot multiple\nlines on a figure. Below we show off some of its properties.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.collections import LineCollection\nfrom matplotlib import colors as mcolors\n\nimport numpy as np\n\n# In order to efficiently plot many lines in a single set of axes,\n# Matplotlib has the ability to add the lines all at once. Here is a\n# simple example showing how it is done.\n\nx = np.arange(100)\n# Here are many sets of y to plot vs x\nys = x[:50, np.newaxis] + x[np.newaxis, :]\n\nsegs = np.zeros((50, 100, 2))\nsegs[:, :, 1] = ys\nsegs[:, :, 0] = x\n\n# Mask some values to test masked array support:\nsegs = np.ma.masked_where((segs > 50) & (segs < 60), segs)\n\n# We need to set the plot limits.\nfig, ax = plt.subplots()\nax.set_xlim(x.min(), x.max())\nax.set_ylim(ys.min(), ys.max())\n\n# colors is sequence of rgba tuples\n# linestyle is a string or dash tuple. Legal string values are\n# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq)\n# where onoffseq is an even length tuple of on and off ink in points.\n# If linestyle is omitted, 'solid' is used\n# See :class:`matplotlib.collections.LineCollection` for more information\ncolors = [mcolors.to_rgba(c)\n for c in plt.rcParams['axes.prop_cycle'].by_key()['color']]\n\nline_segments = LineCollection(segs, linewidths=(0.5, 1, 1.5, 2),\n colors=colors, linestyle='solid')\nax.add_collection(line_segments)\nax.set_title('Line collection with masked arrays')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In order to efficiently plot many lines in a single set of axes,\nMatplotlib has the ability to add the lines all at once. Here is a\nsimple example showing how it is done.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 50\nx = np.arange(N)\n# Here are many sets of y to plot vs x\nys = [x + i for i in x]\n\n# We need to set the plot limits, they will not autoscale\nfig, ax = plt.subplots()\nax.set_xlim(np.min(x), np.max(x))\nax.set_ylim(np.min(ys), np.max(ys))\n\n# colors is sequence of rgba tuples\n# linestyle is a string or dash tuple. Legal string values are\n# solid|dashed|dashdot|dotted. The dash tuple is (offset, onoffseq)\n# where onoffseq is an even length tuple of on and off ink in points.\n# If linestyle is omitted, 'solid' is used\n# See :class:`matplotlib.collections.LineCollection` for more information\n\n# Make a sequence of x,y pairs\nline_segments = LineCollection([np.column_stack([x, y]) for y in ys],\n linewidths=(0.5, 1, 1.5, 2),\n linestyles='solid')\nline_segments.set_array(x)\nax.add_collection(line_segments)\naxcb = fig.colorbar(line_segments)\naxcb.set_label('Line Number')\nax.set_title('Line Collection with mapped colors')\nplt.sci(line_segments) # This allows interactive changing of the colormap.\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.collections\nmatplotlib.collections.LineCollection\nmatplotlib.cm.ScalarMappable.set_array\nmatplotlib.axes.Axes.add_collection\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.pyplot.sci" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/adcd27afadd3045773ad4942ff7a0779/whats_new_98_4_fancy.py b/_downloads/adcd27afadd3045773ad4942ff7a0779/whats_new_98_4_fancy.py deleted file mode 120000 index 3568132c862..00000000000 --- a/_downloads/adcd27afadd3045773ad4942ff7a0779/whats_new_98_4_fancy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/adcd27afadd3045773ad4942ff7a0779/whats_new_98_4_fancy.py \ No newline at end of file diff --git a/_downloads/adde264dca05d97723b3f75daa108c91/mathtext_examples.py b/_downloads/adde264dca05d97723b3f75daa108c91/mathtext_examples.py deleted file mode 120000 index e51214e6f02..00000000000 --- a/_downloads/adde264dca05d97723b3f75daa108c91/mathtext_examples.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/adde264dca05d97723b3f75daa108c91/mathtext_examples.py \ No newline at end of file diff --git a/_downloads/addefb64536e84f515de73c48b3fba96/major_minor_demo.ipynb b/_downloads/addefb64536e84f515de73c48b3fba96/major_minor_demo.ipynb deleted file mode 120000 index 81804d3f83e..00000000000 --- a/_downloads/addefb64536e84f515de73c48b3fba96/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/addefb64536e84f515de73c48b3fba96/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/adf4f5e87bf6f0e4501ceb96d9af8de7/pythonic_matplotlib.ipynb b/_downloads/adf4f5e87bf6f0e4501ceb96d9af8de7/pythonic_matplotlib.ipynb deleted file mode 100644 index 6a5a832fa6b..00000000000 --- a/_downloads/adf4f5e87bf6f0e4501ceb96d9af8de7/pythonic_matplotlib.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pythonic Matplotlib\n\n\nSome people prefer to write more pythonic, object-oriented code\nrather than use the pyplot interface to matplotlib. This example shows\nyou how.\n\nUnless you are an application developer, I recommend using part of the\npyplot interface, particularly the figure, close, subplot, axes, and\nshow commands. These hide a lot of complexity from you that you don't\nneed to see in normal figure creation, like instantiating DPI\ninstances, managing the bounding boxes of the figure elements,\ncreating and realizing GUI windows and embedding figures in them.\n\nIf you are an application developer and want to embed matplotlib in\nyour application, follow the lead of examples/embedding_in_wx.py,\nexamples/embedding_in_gtk.py or examples/embedding_in_tk.py. In this\ncase you will want to control the creation of all your figures,\nembedding them in application windows, etc.\n\nIf you are a web application developer, you may want to use the\nexample in webapp_demo.py, which shows how to use the backend agg\nfigure canvas directly, with none of the globals (current figure,\ncurrent axes) that are present in the pyplot interface. Note that\nthere is no reason why the pyplot interface won't work for web\napplication developers, however.\n\nIf you see an example in the examples dir written in pyplot interface,\nand you want to emulate that using the true python method calls, there\nis an easy mapping. Many of those examples use 'set' to control\nfigure properties. Here's how to map those commands onto instance\nmethods\n\nThe syntax of set is::\n\n plt.setp(object or sequence, somestring, attribute)\n\nif called with an object, set calls::\n\n object.set_somestring(attribute)\n\nif called with a sequence, set does::\n\n for object in sequence:\n object.set_somestring(attribute)\n\nSo for your example, if a is your axes object, you can do::\n\n a.set_xticklabels([])\n a.set_yticklabels([])\n a.set_xticks([])\n a.set_yticks([])\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 1.0, 0.01)\n\nfig, (ax1, ax2) = plt.subplots(2)\n\nax1.plot(t, np.sin(2*np.pi * t))\nax1.grid(True)\nax1.set_ylim((-2, 2))\nax1.set_ylabel('1 Hz')\nax1.set_title('A sine wave or two')\n\nax1.xaxis.set_tick_params(labelcolor='r')\n\nax2.plot(t, np.sin(2 * 2*np.pi * t))\nax2.grid(True)\nax2.set_ylim((-2, 2))\nl = ax2.set_xlabel('Hi mom')\nl.set_color('g')\nl.set_fontsize('large')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/adf8e1b865eaf97fdcbb2e51cb6aeeff/embedding_webagg_sgskip.ipynb b/_downloads/adf8e1b865eaf97fdcbb2e51cb6aeeff/embedding_webagg_sgskip.ipynb deleted file mode 120000 index d28b13af008..00000000000 --- a/_downloads/adf8e1b865eaf97fdcbb2e51cb6aeeff/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/adf8e1b865eaf97fdcbb2e51cb6aeeff/embedding_webagg_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/adfa88988445c9602e2de2d286931543/demo_agg_filter.py b/_downloads/adfa88988445c9602e2de2d286931543/demo_agg_filter.py deleted file mode 100644 index 7c888b66df7..00000000000 --- a/_downloads/adfa88988445c9602e2de2d286931543/demo_agg_filter.py +++ /dev/null @@ -1,325 +0,0 @@ -""" -=============== -Demo Agg Filter -=============== - -""" -import matplotlib.pyplot as plt - -import numpy as np -import matplotlib.cm as cm -import matplotlib.transforms as mtransforms -from matplotlib.colors import LightSource -from matplotlib.artist import Artist - - -def smooth1d(x, window_len): - # copied from http://www.scipy.org/Cookbook/SignalSmooth - - s = np.r_[2*x[0] - x[window_len:1:-1], x, 2*x[-1] - x[-1:-window_len:-1]] - w = np.hanning(window_len) - y = np.convolve(w/w.sum(), s, mode='same') - return y[window_len-1:-window_len+1] - - -def smooth2d(A, sigma=3): - - window_len = max(int(sigma), 3)*2 + 1 - A1 = np.array([smooth1d(x, window_len) for x in np.asarray(A)]) - A2 = np.transpose(A1) - A3 = np.array([smooth1d(x, window_len) for x in A2]) - A4 = np.transpose(A3) - - return A4 - - -class BaseFilter(object): - def prepare_image(self, src_image, dpi, pad): - ny, nx, depth = src_image.shape - # tgt_image = np.zeros([pad*2+ny, pad*2+nx, depth], dtype="d") - padded_src = np.zeros([pad*2 + ny, pad*2 + nx, depth], dtype="d") - padded_src[pad:-pad, pad:-pad, :] = src_image[:, :, :] - - return padded_src # , tgt_image - - def get_pad(self, dpi): - return 0 - - def __call__(self, im, dpi): - pad = self.get_pad(dpi) - padded_src = self.prepare_image(im, dpi, pad) - tgt_image = self.process_image(padded_src, dpi) - return tgt_image, -pad, -pad - - -class OffsetFilter(BaseFilter): - def __init__(self, offsets=None): - if offsets is None: - self.offsets = (0, 0) - else: - self.offsets = offsets - - def get_pad(self, dpi): - return int(max(*self.offsets)/72.*dpi) - - def process_image(self, padded_src, dpi): - ox, oy = self.offsets - a1 = np.roll(padded_src, int(ox/72.*dpi), axis=1) - a2 = np.roll(a1, -int(oy/72.*dpi), axis=0) - return a2 - - -class GaussianFilter(BaseFilter): - "simple gauss filter" - - def __init__(self, sigma, alpha=0.5, color=None): - self.sigma = sigma - self.alpha = alpha - if color is None: - self.color = (0, 0, 0) - else: - self.color = color - - def get_pad(self, dpi): - return int(self.sigma*3/72.*dpi) - - def process_image(self, padded_src, dpi): - # offsetx, offsety = int(self.offsets[0]), int(self.offsets[1]) - tgt_image = np.zeros_like(padded_src) - aa = smooth2d(padded_src[:, :, -1]*self.alpha, - self.sigma/72.*dpi) - tgt_image[:, :, -1] = aa - tgt_image[:, :, :-1] = self.color - return tgt_image - - -class DropShadowFilter(BaseFilter): - def __init__(self, sigma, alpha=0.3, color=None, offsets=None): - self.gauss_filter = GaussianFilter(sigma, alpha, color) - self.offset_filter = OffsetFilter(offsets) - - def get_pad(self, dpi): - return max(self.gauss_filter.get_pad(dpi), - self.offset_filter.get_pad(dpi)) - - def process_image(self, padded_src, dpi): - t1 = self.gauss_filter.process_image(padded_src, dpi) - t2 = self.offset_filter.process_image(t1, dpi) - return t2 - - -class LightFilter(BaseFilter): - "simple gauss filter" - - def __init__(self, sigma, fraction=0.5): - self.gauss_filter = GaussianFilter(sigma, alpha=1) - self.light_source = LightSource() - self.fraction = fraction - - def get_pad(self, dpi): - return self.gauss_filter.get_pad(dpi) - - def process_image(self, padded_src, dpi): - t1 = self.gauss_filter.process_image(padded_src, dpi) - elevation = t1[:, :, 3] - rgb = padded_src[:, :, :3] - - rgb2 = self.light_source.shade_rgb(rgb, elevation, - fraction=self.fraction) - - tgt = np.empty_like(padded_src) - tgt[:, :, :3] = rgb2 - tgt[:, :, 3] = padded_src[:, :, 3] - - return tgt - - -class GrowFilter(BaseFilter): - "enlarge the area" - - def __init__(self, pixels, color=None): - self.pixels = pixels - if color is None: - self.color = (1, 1, 1) - else: - self.color = color - - def __call__(self, im, dpi): - ny, nx, depth = im.shape - alpha = np.pad(im[..., -1], self.pixels, "constant") - alpha2 = np.clip(smooth2d(alpha, self.pixels/72.*dpi) * 5, 0, 1) - new_im = np.empty((*alpha2.shape, 4)) - new_im[:, :, -1] = alpha2 - new_im[:, :, :-1] = self.color - offsetx, offsety = -self.pixels, -self.pixels - return new_im, offsetx, offsety - - -class FilteredArtistList(Artist): - """ - A simple container to draw filtered artist. - """ - - def __init__(self, artist_list, filter): - self._artist_list = artist_list - self._filter = filter - Artist.__init__(self) - - def draw(self, renderer): - renderer.start_rasterizing() - renderer.start_filter() - for a in self._artist_list: - a.draw(renderer) - renderer.stop_filter(self._filter) - renderer.stop_rasterizing() - - -def filtered_text(ax): - # mostly copied from contour_demo.py - - # prepare image - delta = 0.025 - x = np.arange(-3.0, 3.0, delta) - y = np.arange(-2.0, 2.0, delta) - X, Y = np.meshgrid(x, y) - Z1 = np.exp(-X**2 - Y**2) - Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) - Z = (Z1 - Z2) * 2 - - # draw - im = ax.imshow(Z, interpolation='bilinear', origin='lower', - cmap=cm.gray, extent=(-3, 3, -2, 2)) - levels = np.arange(-1.2, 1.6, 0.2) - CS = ax.contour(Z, levels, - origin='lower', - linewidths=2, - extent=(-3, 3, -2, 2)) - - ax.set_aspect("auto") - - # contour label - cl = ax.clabel(CS, levels[1::2], # label every second level - inline=1, - fmt='%1.1f', - fontsize=11) - - # change clabel color to black - from matplotlib.patheffects import Normal - for t in cl: - t.set_color("k") - # to force TextPath (i.e., same font in all backends) - t.set_path_effects([Normal()]) - - # Add white glows to improve visibility of labels. - white_glows = FilteredArtistList(cl, GrowFilter(3)) - ax.add_artist(white_glows) - white_glows.set_zorder(cl[0].get_zorder() - 0.1) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -def drop_shadow_line(ax): - # copied from examples/misc/svg_filter_line.py - - # draw lines - l1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], "bo-", - mec="b", mfc="w", lw=5, mew=3, ms=10, label="Line 1") - l2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], "ro-", - mec="r", mfc="w", lw=5, mew=3, ms=10, label="Line 1") - - gauss = DropShadowFilter(4) - - for l in [l1, l2]: - - # draw shadows with same lines with slight offset. - - xx = l.get_xdata() - yy = l.get_ydata() - shadow, = ax.plot(xx, yy) - shadow.update_from(l) - - # offset transform - ot = mtransforms.offset_copy(l.get_transform(), ax.figure, - x=4.0, y=-6.0, units='points') - - shadow.set_transform(ot) - - # adjust zorder of the shadow lines so that it is drawn below the - # original lines - shadow.set_zorder(l.get_zorder() - 0.5) - shadow.set_agg_filter(gauss) - shadow.set_rasterized(True) # to support mixed-mode renderers - - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -def drop_shadow_patches(ax): - # Copied from barchart_demo.py - N = 5 - men_means = [20, 35, 30, 35, 27] - - ind = np.arange(N) # the x locations for the groups - width = 0.35 # the width of the bars - - rects1 = ax.bar(ind, men_means, width, color='r', ec="w", lw=2) - - women_means = [25, 32, 34, 20, 25] - rects2 = ax.bar(ind + width + 0.1, women_means, width, - color='y', ec="w", lw=2) - - # gauss = GaussianFilter(1.5, offsets=(1,1), ) - gauss = DropShadowFilter(5, offsets=(1, 1), ) - shadow = FilteredArtistList(rects1 + rects2, gauss) - ax.add_artist(shadow) - shadow.set_zorder(rects1[0].get_zorder() - 0.1) - - ax.set_ylim(0, 40) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -def light_filter_pie(ax): - fracs = [15, 30, 45, 10] - explode = (0, 0.05, 0, 0) - pies = ax.pie(fracs, explode=explode) - ax.patch.set_visible(True) - - light_filter = LightFilter(9) - for p in pies[0]: - p.set_agg_filter(light_filter) - p.set_rasterized(True) # to support mixed-mode renderers - p.set(ec="none", - lw=2) - - gauss = DropShadowFilter(9, offsets=(3, 4), alpha=0.7) - shadow = FilteredArtistList(pies[0], gauss) - ax.add_artist(shadow) - shadow.set_zorder(pies[0][0].get_zorder() - 0.1) - - -if __name__ == "__main__": - - plt.figure(figsize=(6, 6)) - plt.subplots_adjust(left=0.05, right=0.95) - - ax = plt.subplot(221) - filtered_text(ax) - - ax = plt.subplot(222) - drop_shadow_line(ax) - - ax = plt.subplot(223) - drop_shadow_patches(ax) - - ax = plt.subplot(224) - ax.set_aspect(1) - light_filter_pie(ax) - ax.set_frame_on(True) - - plt.show() diff --git a/_downloads/advanced_hillshading.ipynb b/_downloads/advanced_hillshading.ipynb deleted file mode 120000 index 9b4fef0c82d..00000000000 --- a/_downloads/advanced_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/advanced_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/advanced_hillshading.py b/_downloads/advanced_hillshading.py deleted file mode 120000 index 3a63b08a7c5..00000000000 --- a/_downloads/advanced_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/advanced_hillshading.py \ No newline at end of file diff --git a/_downloads/ae04b71bd3d58a7c719646db38ee64d7/demo_colorbar_with_inset_locator.ipynb b/_downloads/ae04b71bd3d58a7c719646db38ee64d7/demo_colorbar_with_inset_locator.ipynb deleted file mode 120000 index bd76025d6e6..00000000000 --- a/_downloads/ae04b71bd3d58a7c719646db38ee64d7/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ae04b71bd3d58a7c719646db38ee64d7/demo_colorbar_with_inset_locator.ipynb \ No newline at end of file diff --git a/_downloads/ae0a34f814db01cb575df26e0b5cea67/donut.py b/_downloads/ae0a34f814db01cb575df26e0b5cea67/donut.py deleted file mode 100644 index 9afa26c85e6..00000000000 --- a/_downloads/ae0a34f814db01cb575df26e0b5cea67/donut.py +++ /dev/null @@ -1,86 +0,0 @@ -r""" -============= -Mmh Donuts!!! -============= - -Draw donuts (miam!) using `~.path.Path`\s and `~.patches.PathPatch`\es. -This example shows the effect of the path's orientations in a compound path. -""" - -import numpy as np -import matplotlib.path as mpath -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt - - -def wise(v): - if v == 1: - return "CCW" - else: - return "CW" - - -def make_circle(r): - t = np.arange(0, np.pi * 2.0, 0.01) - t = t.reshape((len(t), 1)) - x = r * np.cos(t) - y = r * np.sin(t) - return np.hstack((x, y)) - -Path = mpath.Path - -fig, ax = plt.subplots() - -inside_vertices = make_circle(0.5) -outside_vertices = make_circle(1.0) -codes = np.ones( - len(inside_vertices), dtype=mpath.Path.code_type) * mpath.Path.LINETO -codes[0] = mpath.Path.MOVETO - -for i, (inside, outside) in enumerate(((1, 1), (1, -1), (-1, 1), (-1, -1))): - # Concatenate the inside and outside subpaths together, changing their - # order as needed - vertices = np.concatenate((outside_vertices[::outside], - inside_vertices[::inside])) - # Shift the path - vertices[:, 0] += i * 2.5 - # The codes will be all "LINETO" commands, except for "MOVETO"s at the - # beginning of each subpath - all_codes = np.concatenate((codes, codes)) - # Create the Path object - path = mpath.Path(vertices, all_codes) - # Add plot it - patch = mpatches.PathPatch(path, facecolor='#885500', edgecolor='black') - ax.add_patch(patch) - - ax.annotate("Outside %s,\nInside %s" % (wise(outside), wise(inside)), - (i * 2.5, -1.5), va="top", ha="center") - -ax.set_xlim(-2, 10) -ax.set_ylim(-3, 2) -ax.set_title('Mmm, donuts!') -ax.set_aspect(1.0) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.patches.Circle -matplotlib.axes.Axes.add_patch -matplotlib.axes.Axes.annotate -matplotlib.axes.Axes.set_aspect -matplotlib.axes.Axes.set_xlim -matplotlib.axes.Axes.set_ylim -matplotlib.axes.Axes.set_title diff --git a/_downloads/ae0b10c9616d310c2d956d40d6b48a16/firefox.py b/_downloads/ae0b10c9616d310c2d956d40d6b48a16/firefox.py deleted file mode 120000 index 6961d32758a..00000000000 --- a/_downloads/ae0b10c9616d310c2d956d40d6b48a16/firefox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ae0b10c9616d310c2d956d40d6b48a16/firefox.py \ No newline at end of file diff --git a/_downloads/ae13a02c1f79e5c5c0f85dabab99a4fd/simple_axis_direction01.ipynb b/_downloads/ae13a02c1f79e5c5c0f85dabab99a4fd/simple_axis_direction01.ipynb deleted file mode 100644 index 53c4e145a4a..00000000000 --- a/_downloads/ae13a02c1f79e5c5c0f85dabab99a4fd/simple_axis_direction01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axis Direction01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\nfig = plt.figure(figsize=(4, 2.5))\nax1 = fig.add_subplot(axisartist.Subplot(fig, \"111\"))\nfig.subplots_adjust(right=0.8)\n\nax1.axis[\"left\"].major_ticklabels.set_axis_direction(\"top\")\nax1.axis[\"left\"].label.set_text(\"Label\")\n\nax1.axis[\"right\"].label.set_visible(True)\nax1.axis[\"right\"].label.set_text(\"Label\")\nax1.axis[\"right\"].label.set_axis_direction(\"left\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ae15a07e925d2007c09a002bbf7d2512/axis_direction_demo_step03.ipynb b/_downloads/ae15a07e925d2007c09a002bbf7d2512/axis_direction_demo_step03.ipynb deleted file mode 100644 index 9789d3435d7..00000000000 --- a/_downloads/ae15a07e925d2007c09a002bbf7d2512/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n #ax.axis[:].toggle(all=False)\n #ax.axis[:].line.set_visible(False)\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x\"] = ax.new_floating_axis(1, 0.5)\n ax.axis[\"x\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 2.5))\nfig.subplots_adjust(bottom=0.2, top=0.8)\n\nax1 = setup_axes(fig, \"121\")\nax1.axis[\"x\"].label.set_text(\"Label\")\nax1.axis[\"x\"].toggle(ticklabels=False)\nax1.axis[\"x\"].set_axislabel_direction(\"+\")\nax1.annotate(\"label direction=$+$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nax2 = setup_axes(fig, \"122\")\nax2.axis[\"x\"].label.set_text(\"Label\")\nax2.axis[\"x\"].toggle(ticklabels=False)\nax2.axis[\"x\"].set_axislabel_direction(\"-\")\nax2.annotate(\"label direction=$-$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ae1c856bb50bd9d4e978c83f603c6b30/frame_grabbing_sgskip.ipynb b/_downloads/ae1c856bb50bd9d4e978c83f603c6b30/frame_grabbing_sgskip.ipynb deleted file mode 120000 index e6f5340d2dd..00000000000 --- a/_downloads/ae1c856bb50bd9d4e978c83f603c6b30/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ae1c856bb50bd9d4e978c83f603c6b30/frame_grabbing_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ae22d9e7c39cee70f7872c352a39c6f3/quadmesh_demo.ipynb b/_downloads/ae22d9e7c39cee70f7872c352a39c6f3/quadmesh_demo.ipynb deleted file mode 100644 index 5f185154d4e..00000000000 --- a/_downloads/ae22d9e7c39cee70f7872c352a39c6f3/quadmesh_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# QuadMesh Demo\n\n\n`~.axes.Axes.pcolormesh` uses a `~matplotlib.collections.QuadMesh`,\na faster generalization of `~.axes.Axes.pcolor`, but with some restrictions.\n\nThis demo illustrates a bug in quadmesh with masked data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import copy\n\nfrom matplotlib import cm, pyplot as plt\nimport numpy as np\n\nn = 12\nx = np.linspace(-1.5, 1.5, n)\ny = np.linspace(-1.5, 1.5, n * 2)\nX, Y = np.meshgrid(x, y)\nQx = np.cos(Y) - np.cos(X)\nQz = np.sin(Y) + np.sin(X)\nZ = np.sqrt(X**2 + Y**2) / 5\nZ = (Z - Z.min()) / (Z.max() - Z.min())\n\n# The color array can include masked values.\nZm = np.ma.masked_where(np.abs(Qz) < 0.5 * np.max(Qz), Z)\n\nfig, axs = plt.subplots(nrows=1, ncols=3)\naxs[0].pcolormesh(Qx, Qz, Z, shading='gouraud')\naxs[0].set_title('Without masked values')\n\n# You can control the color of the masked region. We copy the default colormap\n# before modifying it.\ncmap = copy.copy(cm.get_cmap(plt.rcParams['image.cmap']))\ncmap.set_bad('y', 1.0)\naxs[1].pcolormesh(Qx, Qz, Zm, shading='gouraud', cmap=cmap)\naxs[1].set_title('With masked values')\n\n# Or use the default, which is transparent.\naxs[2].pcolormesh(Qx, Qz, Zm, shading='gouraud')\naxs[2].set_title('With masked values')\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pcolormesh\nmatplotlib.pyplot.pcolormesh" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ae25e7ae94c69ee8c23a8cd7f3880674/tripcolor_demo.py b/_downloads/ae25e7ae94c69ee8c23a8cd7f3880674/tripcolor_demo.py deleted file mode 100644 index 67f638ad436..00000000000 --- a/_downloads/ae25e7ae94c69ee8c23a8cd7f3880674/tripcolor_demo.py +++ /dev/null @@ -1,142 +0,0 @@ -""" -============== -Tripcolor Demo -============== - -Pseudocolor plots of unstructured triangular grids. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -############################################################################### -# Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points. - -# First create the x and y coordinates of the points. -n_angles = 36 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() -z = (np.cos(radii) * np.cos(3 * angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -############################################################################### -# tripcolor plot. - -fig1, ax1 = plt.subplots() -ax1.set_aspect('equal') -tpc = ax1.tripcolor(triang, z, shading='flat') -fig1.colorbar(tpc) -ax1.set_title('tripcolor of Delaunay triangulation, flat shading') - -############################################################################### -# Illustrate Gouraud shading. - -fig2, ax2 = plt.subplots() -ax2.set_aspect('equal') -tpc = ax2.tripcolor(triang, z, shading='gouraud') -fig2.colorbar(tpc) -ax2.set_title('tripcolor of Delaunay triangulation, gouraud shading') - - -############################################################################### -# You can specify your own triangulation rather than perform a Delaunay -# triangulation of the points, where each triangle is given by the indices of -# the three points that make up the triangle, ordered in either a clockwise or -# anticlockwise manner. - -xy = np.asarray([ - [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890], - [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898], - [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919], - [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949], - [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959], - [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965], - [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980], - [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996], - [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021], - [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005], - [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987], - [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968], - [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926], - [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905], - [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886], - [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879], - [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872], - [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933], - [-0.077, 0.990], [-0.059, 0.993]]) -x, y = np.rad2deg(xy).T - -triangles = np.asarray([ - [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64], - [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63], - [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68], - [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7], - [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9], - [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12], - [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71], - [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71], - [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19], - [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24], - [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28], - [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45], - [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40], - [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40], - [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38], - [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]]) - -xmid = x[triangles].mean(axis=1) -ymid = y[triangles].mean(axis=1) -x0 = -5 -y0 = 52 -zfaces = np.exp(-0.01 * ((xmid - x0) * (xmid - x0) + - (ymid - y0) * (ymid - y0))) - -############################################################################### -# Rather than create a Triangulation object, can simply pass x, y and triangles -# arrays to tripcolor directly. It would be better to use a Triangulation -# object if the same triangulation was to be used more than once to save -# duplicated calculations. -# Can specify one color value per face rather than one per point by using the -# facecolors kwarg. - -fig3, ax3 = plt.subplots() -ax3.set_aspect('equal') -tpc = ax3.tripcolor(x, y, triangles, facecolors=zfaces, edgecolors='k') -fig3.colorbar(tpc) -ax3.set_title('tripcolor of user-specified triangulation') -ax3.set_xlabel('Longitude (degrees)') -ax3.set_ylabel('Latitude (degrees)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tripcolor -matplotlib.pyplot.tripcolor -matplotlib.tri -matplotlib.tri.Triangulation diff --git a/_downloads/ae2ae6268ccd7744803f2b64513ddf74/colormap_reference.ipynb b/_downloads/ae2ae6268ccd7744803f2b64513ddf74/colormap_reference.ipynb deleted file mode 120000 index 0282a9f8f35..00000000000 --- a/_downloads/ae2ae6268ccd7744803f2b64513ddf74/colormap_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ae2ae6268ccd7744803f2b64513ddf74/colormap_reference.ipynb \ No newline at end of file diff --git a/_downloads/ae36694c76c52f08fd0adc74b46c61c3/date_demo_rrule.ipynb b/_downloads/ae36694c76c52f08fd0adc74b46c61c3/date_demo_rrule.ipynb deleted file mode 120000 index 07e0bf7f1c9..00000000000 --- a/_downloads/ae36694c76c52f08fd0adc74b46c61c3/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ae36694c76c52f08fd0adc74b46c61c3/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/ae389bda78b8735522798a109ee9a469/tex_demo.py b/_downloads/ae389bda78b8735522798a109ee9a469/tex_demo.py deleted file mode 100644 index f8683a82579..00000000000 --- a/_downloads/ae389bda78b8735522798a109ee9a469/tex_demo.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -================================= -Rendering math equation using TeX -================================= - -You can use TeX to render all of your matplotlib text if the rc -parameter ``text.usetex`` is set. This works currently on the agg and ps -backends, and requires that you have tex and the other dependencies -described in the :doc:`/tutorials/text/usetex` tutorial -properly installed on your system. The first time you run a script -you will see a lot of output from tex and associated tools. The next -time, the run may be silent, as a lot of the information is cached. - -Notice how the label for the y axis is provided using unicode! - -""" -import numpy as np -import matplotlib -matplotlib.rcParams['text.usetex'] = True -import matplotlib.pyplot as plt - - -t = np.linspace(0.0, 1.0, 100) -s = np.cos(4 * np.pi * t) + 2 - -fig, ax = plt.subplots(figsize=(6, 4), tight_layout=True) -ax.plot(t, s) - -ax.set_xlabel(r'\textbf{time (s)}') -ax.set_ylabel('\\textit{Velocity (\N{DEGREE SIGN}/sec)}', fontsize=16) -ax.set_title(r'\TeX\ is Number $\displaystyle\sum_{n=1}^\infty' - r'\frac{-e^{i\pi}}{2^n}$!', fontsize=16, color='r') -plt.show() diff --git a/_downloads/ae3f2a9c439dc659b636cc541d0a516c/plotfile_demo_sgskip.py b/_downloads/ae3f2a9c439dc659b636cc541d0a516c/plotfile_demo_sgskip.py deleted file mode 120000 index 587279759c8..00000000000 --- a/_downloads/ae3f2a9c439dc659b636cc541d0a516c/plotfile_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/ae3f2a9c439dc659b636cc541d0a516c/plotfile_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/ae4552ed91ee2798c3108e2e64695e11/unchained.py b/_downloads/ae4552ed91ee2798c3108e2e64695e11/unchained.py deleted file mode 120000 index 7efe856b09f..00000000000 --- a/_downloads/ae4552ed91ee2798c3108e2e64695e11/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ae4552ed91ee2798c3108e2e64695e11/unchained.py \ No newline at end of file diff --git a/_downloads/ae5818a6af310649526fb8e9f815473f/image_demo.py b/_downloads/ae5818a6af310649526fb8e9f815473f/image_demo.py deleted file mode 100644 index 58ae0c9e290..00000000000 --- a/_downloads/ae5818a6af310649526fb8e9f815473f/image_demo.py +++ /dev/null @@ -1,187 +0,0 @@ -""" -========== -Image Demo -========== - -Many ways to plot images in Matplotlib. - -The most common way to plot images in Matplotlib is with -:meth:`~.axes.Axes.imshow`. The following examples demonstrate much of the -functionality of imshow and the many images you can create. -""" - -import numpy as np -import matplotlib.cm as cm -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -from matplotlib.path import Path -from matplotlib.patches import PathPatch - -############################################################################### -# First we'll generate a simple bivariate normal distribution. - -delta = 0.025 -x = y = np.arange(-3.0, 3.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots() -im = ax.imshow(Z, interpolation='bilinear', cmap=cm.RdYlGn, - origin='lower', extent=[-3, 3, -3, 3], - vmax=abs(Z).max(), vmin=-abs(Z).max()) - -plt.show() - - -############################################################################### -# It is also possible to show images of pictures. - -# A sample image -with cbook.get_sample_data('ada.png') as image_file: - image = plt.imread(image_file) - -fig, ax = plt.subplots() -ax.imshow(image) -ax.axis('off') # clear x-axis and y-axis - - -# And another image - -w, h = 512, 512 - -with cbook.get_sample_data('ct.raw.gz') as datafile: - s = datafile.read() -A = np.frombuffer(s, np.uint16).astype(float).reshape((w, h)) -A /= A.max() - -fig, ax = plt.subplots() -extent = (0, 25, 0, 25) -im = ax.imshow(A, cmap=plt.cm.hot, origin='upper', extent=extent) - -markers = [(15.9, 14.5), (16.8, 15)] -x, y = zip(*markers) -ax.plot(x, y, 'o') - -ax.set_title('CT density') - -plt.show() - - -############################################################################### -# Interpolating images -# -------------------- -# -# It is also possible to interpolate images before displaying them. Be careful, -# as this may manipulate the way your data looks, but it can be helpful for -# achieving the look you want. Below we'll display the same (small) array, -# interpolated with three different interpolation methods. -# -# The center of the pixel at A[i,j] is plotted at i+0.5, i+0.5. If you -# are using interpolation='nearest', the region bounded by (i,j) and -# (i+1,j+1) will have the same color. If you are using interpolation, -# the pixel center will have the same color as it does with nearest, but -# other pixels will be interpolated between the neighboring pixels. -# -# To prevent edge effects when doing interpolation, Matplotlib pads the input -# array with identical pixels around the edge: if you have a 5x5 array with -# colors a-y as below:: -# -# a b c d e -# f g h i j -# k l m n o -# p q r s t -# u v w x y -# -# Matplotlib computes the interpolation and resizing on the padded array :: -# -# a a b c d e e -# a a b c d e e -# f f g h i j j -# k k l m n o o -# p p q r s t t -# o u v w x y y -# o u v w x y y -# -# and then extracts the central region of the result. (Extremely old versions -# of Matplotlib (<0.63) did not pad the array, but instead adjusted the view -# limits to hide the affected edge areas.) -# -# This approach allows plotting the full extent of an array without -# edge effects, and for example to layer multiple images of different -# sizes over one another with different interpolation methods -- see -# :doc:`/gallery/images_contours_and_fields/layer_images`. It also implies -# a performance hit, as this new temporary, padded array must be created. -# Sophisticated interpolation also implies a performance hit; for maximal -# performance or very large images, interpolation='nearest' is suggested. - -A = np.random.rand(5, 5) - -fig, axs = plt.subplots(1, 3, figsize=(10, 3)) -for ax, interp in zip(axs, ['nearest', 'bilinear', 'bicubic']): - ax.imshow(A, interpolation=interp) - ax.set_title(interp.capitalize()) - ax.grid(True) - -plt.show() - - -############################################################################### -# You can specify whether images should be plotted with the array origin -# x[0,0] in the upper left or lower right by using the origin parameter. -# You can also control the default setting image.origin in your -# :ref:`matplotlibrc file `. For more on -# this topic see the :doc:`complete guide on origin and extent -# `. - -x = np.arange(120).reshape((10, 12)) - -interp = 'bilinear' -fig, axs = plt.subplots(nrows=2, sharex=True, figsize=(3, 5)) -axs[0].set_title('blue should be up') -axs[0].imshow(x, origin='upper', interpolation=interp) - -axs[1].set_title('blue should be down') -axs[1].imshow(x, origin='lower', interpolation=interp) -plt.show() - - -############################################################################### -# Finally, we'll show an image using a clip path. - -delta = 0.025 -x = y = np.arange(-3.0, 3.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -path = Path([[0, 1], [1, 0], [0, -1], [-1, 0], [0, 1]]) -patch = PathPatch(path, facecolor='none') - -fig, ax = plt.subplots() -ax.add_patch(patch) - -im = ax.imshow(Z, interpolation='bilinear', cmap=cm.gray, - origin='lower', extent=[-3, 3, -3, 3], - clip_path=patch, clip_on=True) -im.set_clip_path(patch) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.artist.Artist.set_clip_path -matplotlib.patches.PathPatch diff --git a/_downloads/ae6077d9637819ed9799d96f3fccde64/text_props.py b/_downloads/ae6077d9637819ed9799d96f3fccde64/text_props.py deleted file mode 100644 index 27567507db3..00000000000 --- a/_downloads/ae6077d9637819ed9799d96f3fccde64/text_props.py +++ /dev/null @@ -1,237 +0,0 @@ -""" -============================ - Text properties and layout -============================ - -Controlling properties of text and its layout with Matplotlib. - -The :class:`matplotlib.text.Text` instances have a variety of -properties which can be configured via keyword arguments to the text -commands (e.g., :func:`~matplotlib.pyplot.title`, -:func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.text`). - -========================== ====================================================================================================================== -Property Value Type -========================== ====================================================================================================================== -alpha `float` -backgroundcolor any matplotlib :doc:`color ` -bbox `~matplotlib.patches.Rectangle` prop dict plus key ``'pad'`` which is a pad in points -clip_box a matplotlib.transform.Bbox instance -clip_on bool -clip_path a `~matplotlib.path.Path` instance and a `~matplotlib.transforms.Transform` instance, a `~matplotlib.patches.Patch` -color any matplotlib :doc:`color ` -family [ ``'serif'`` | ``'sans-serif'`` | ``'cursive'`` | ``'fantasy'`` | ``'monospace'`` ] -fontproperties a `~matplotlib.font_manager.FontProperties` instance -horizontalalignment or ha [ ``'center'`` | ``'right'`` | ``'left'`` ] -label any string -linespacing `float` -multialignment [``'left'`` | ``'right'`` | ``'center'`` ] -name or fontname string e.g., [``'Sans'`` | ``'Courier'`` | ``'Helvetica'`` ...] -picker [None|float|boolean|callable] -position (x, y) -rotation [ angle in degrees | ``'vertical'`` | ``'horizontal'`` ] -size or fontsize [ size in points | relative size, e.g., ``'smaller'``, ``'x-large'`` ] -style or fontstyle [ ``'normal'`` | ``'italic'`` | ``'oblique'`` ] -text string or anything printable with '%s' conversion -transform a `~matplotlib.transforms.Transform` instance -variant [ ``'normal'`` | ``'small-caps'`` ] -verticalalignment or va [ ``'center'`` | ``'top'`` | ``'bottom'`` | ``'baseline'`` ] -visible bool -weight or fontweight [ ``'normal'`` | ``'bold'`` | ``'heavy'`` | ``'light'`` | ``'ultrabold'`` | ``'ultralight'``] -x `float` -y `float` -zorder any number -========================== ====================================================================================================================== - - -You can lay out text with the alignment arguments -``horizontalalignment``, ``verticalalignment``, and -``multialignment``. ``horizontalalignment`` controls whether the x -positional argument for the text indicates the left, center or right -side of the text bounding box. ``verticalalignment`` controls whether -the y positional argument for the text indicates the bottom, center or -top side of the text bounding box. ``multialignment``, for newline -separated strings only, controls whether the different lines are left, -center or right justified. Here is an example which uses the -:func:`~matplotlib.pyplot.text` command to show the various alignment -possibilities. The use of ``transform=ax.transAxes`` throughout the -code indicates that the coordinates are given relative to the axes -bounding box, with 0,0 being the lower left of the axes and 1,1 the -upper right. -""" - -import matplotlib.pyplot as plt -import matplotlib.patches as patches - -# build a rectangle in axes coords -left, width = .25, .5 -bottom, height = .25, .5 -right = left + width -top = bottom + height - -fig = plt.figure() -ax = fig.add_axes([0, 0, 1, 1]) - -# axes coordinates are 0,0 is bottom left and 1,1 is upper right -p = patches.Rectangle( - (left, bottom), width, height, - fill=False, transform=ax.transAxes, clip_on=False - ) - -ax.add_patch(p) - -ax.text(left, bottom, 'left top', - horizontalalignment='left', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, bottom, 'left bottom', - horizontalalignment='left', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right bottom', - horizontalalignment='right', - verticalalignment='bottom', - transform=ax.transAxes) - -ax.text(right, top, 'right top', - horizontalalignment='right', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(right, bottom, 'center top', - horizontalalignment='center', - verticalalignment='top', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'right center', - horizontalalignment='right', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, 0.5*(bottom+top), 'left center', - horizontalalignment='left', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(0.5*(left+right), 0.5*(bottom+top), 'middle', - horizontalalignment='center', - verticalalignment='center', - fontsize=20, color='red', - transform=ax.transAxes) - -ax.text(right, 0.5*(bottom+top), 'centered', - horizontalalignment='center', - verticalalignment='center', - rotation='vertical', - transform=ax.transAxes) - -ax.text(left, top, 'rotated\nwith newlines', - horizontalalignment='center', - verticalalignment='center', - rotation=45, - transform=ax.transAxes) - -ax.set_axis_off() -plt.show() - -############################################################################### -# ============== -# Default Font -# ============== -# -# The base default font is controlled by a set of rcParams. To set the font -# for mathematical expressions, use the rcParams beginning with ``mathtext`` -# (see :ref:`mathtext `). -# -# +---------------------+----------------------------------------------------+ -# | rcParam | usage | -# +=====================+====================================================+ -# | ``'font.family'`` | List of either names of font or ``{'cursive', | -# | | 'fantasy', 'monospace', 'sans', 'sans serif', | -# | | 'sans-serif', 'serif'}``. | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.style'`` | The default style, ex ``'normal'``, | -# | | ``'italic'``. | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.variant'`` | Default variant, ex ``'normal'``, ``'small-caps'`` | -# | | (untested) | -# +---------------------+----------------------------------------------------+ -# | ``'font.stretch'`` | Default stretch, ex ``'normal'``, ``'condensed'`` | -# | | (incomplete) | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.weight'`` | Default weight. Either string or integer | -# | | | -# | | | -# +---------------------+----------------------------------------------------+ -# | ``'font.size'`` | Default font size in points. Relative font sizes | -# | | (``'large'``, ``'x-small'``) are computed against | -# | | this size. | -# +---------------------+----------------------------------------------------+ -# -# The mapping between the family aliases (``{'cursive', 'fantasy', -# 'monospace', 'sans', 'sans serif', 'sans-serif', 'serif'}``) and actual font names -# is controlled by the following rcParams: -# -# -# +------------------------------------------+--------------------------------+ -# | family alias | rcParam with mappings | -# +==========================================+================================+ -# | ``'serif'`` | ``'font.serif'`` | -# +------------------------------------------+--------------------------------+ -# | ``'monospace'`` | ``'font.monospace'`` | -# +------------------------------------------+--------------------------------+ -# | ``'fantasy'`` | ``'font.fantasy'`` | -# +------------------------------------------+--------------------------------+ -# | ``'cursive'`` | ``'font.cursive'`` | -# +------------------------------------------+--------------------------------+ -# | ``{'sans', 'sans serif', 'sans-serif'}`` | ``'font.sans-serif'`` | -# +------------------------------------------+--------------------------------+ -# -# -# which are lists of font names. -# -# Text with non-latin glyphs -# ========================== -# -# As of v2.0 the :ref:`default font ` contains -# glyphs for many western alphabets, but still does not cover all of the -# glyphs that may be required by mpl users. For example, DejaVu has no -# coverage of Chinese, Korean, or Japanese. -# -# -# To set the default font to be one that supports the code points you -# need, prepend the font name to ``'font.family'`` or the desired alias -# lists :: -# -# matplotlib.rcParams['font.sans-serif'] = ['Source Han Sans TW', 'sans-serif'] -# -# or set it in your :file:`.matplotlibrc` file:: -# -# font.sans-serif: Source Han Sans TW, Arial, sans-serif -# -# To control the font used on per-artist basis use the ``'name'``, -# ``'fontname'`` or ``'fontproperties'`` kwargs documented :doc:`above -# `. -# -# -# On linux, `fc-list `__ can be a -# useful tool to discover the font name; for example :: -# -# $ fc-list :lang=zh family -# Noto to Sans Mono CJK TC,Noto Sans Mono CJK TC Bold -# Noto Sans CJK TC,Noto Sans CJK TC Medium -# Noto Sans CJK TC,Noto Sans CJK TC DemiLight -# Noto Sans CJK KR,Noto Sans CJK KR Black -# Noto Sans CJK TC,Noto Sans CJK TC Black -# Noto Sans Mono CJK TC,Noto Sans Mono CJK TC Regular -# Noto Sans CJK SC,Noto Sans CJK SC Light -# -# lists all of the fonts that support Chinese. -# diff --git a/_downloads/ae68a0198039f18b3b345c975488a519/rain.ipynb b/_downloads/ae68a0198039f18b3b345c975488a519/rain.ipynb deleted file mode 100644 index f20198b8ea5..00000000000 --- a/_downloads/ae68a0198039f18b3b345c975488a519/rain.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rain simulation\n\n\nSimulates rain drops on a surface by animating the scale and opacity\nof 50 scatter points.\n\nAuthor: Nicolas P. Rougier\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.animation import FuncAnimation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# Create new Figure and an Axes which fills it.\nfig = plt.figure(figsize=(7, 7))\nax = fig.add_axes([0, 0, 1, 1], frameon=False)\nax.set_xlim(0, 1), ax.set_xticks([])\nax.set_ylim(0, 1), ax.set_yticks([])\n\n# Create rain data\nn_drops = 50\nrain_drops = np.zeros(n_drops, dtype=[('position', float, 2),\n ('size', float, 1),\n ('growth', float, 1),\n ('color', float, 4)])\n\n# Initialize the raindrops in random positions and with\n# random growth rates.\nrain_drops['position'] = np.random.uniform(0, 1, (n_drops, 2))\nrain_drops['growth'] = np.random.uniform(50, 200, n_drops)\n\n# Construct the scatter which we will update during animation\n# as the raindrops develop.\nscat = ax.scatter(rain_drops['position'][:, 0], rain_drops['position'][:, 1],\n s=rain_drops['size'], lw=0.5, edgecolors=rain_drops['color'],\n facecolors='none')\n\n\ndef update(frame_number):\n # Get an index which we can use to re-spawn the oldest raindrop.\n current_index = frame_number % n_drops\n\n # Make all colors more transparent as time progresses.\n rain_drops['color'][:, 3] -= 1.0/len(rain_drops)\n rain_drops['color'][:, 3] = np.clip(rain_drops['color'][:, 3], 0, 1)\n\n # Make all circles bigger.\n rain_drops['size'] += rain_drops['growth']\n\n # Pick a new position for oldest rain drop, resetting its size,\n # color and growth factor.\n rain_drops['position'][current_index] = np.random.uniform(0, 1, 2)\n rain_drops['size'][current_index] = 5\n rain_drops['color'][current_index] = (0, 0, 0, 1)\n rain_drops['growth'][current_index] = np.random.uniform(50, 200)\n\n # Update the scatter collection, with the new colors, sizes and positions.\n scat.set_edgecolors(rain_drops['color'])\n scat.set_sizes(rain_drops['size'])\n scat.set_offsets(rain_drops['position'])\n\n\n# Construct the animation, using the update function as the animation director.\nanimation = FuncAnimation(fig, update, interval=10)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ae69400014c751155c2d298248eb41e6/span_regions.py b/_downloads/ae69400014c751155c2d298248eb41e6/span_regions.py deleted file mode 120000 index 539d8147b38..00000000000 --- a/_downloads/ae69400014c751155c2d298248eb41e6/span_regions.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ae69400014c751155c2d298248eb41e6/span_regions.py \ No newline at end of file diff --git a/_downloads/ae6b0f09f30caef38fc1cf6c40b24c34/contour_demo.ipynb b/_downloads/ae6b0f09f30caef38fc1cf6c40b24c34/contour_demo.ipynb deleted file mode 120000 index 0b02cd60519..00000000000 --- a/_downloads/ae6b0f09f30caef38fc1cf6c40b24c34/contour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ae6b0f09f30caef38fc1cf6c40b24c34/contour_demo.ipynb \ No newline at end of file diff --git a/_downloads/ae73ccaefd1313557c2cc9e96f489b23/axhspan_demo.py b/_downloads/ae73ccaefd1313557c2cc9e96f489b23/axhspan_demo.py deleted file mode 100644 index ab1164076e7..00000000000 --- a/_downloads/ae73ccaefd1313557c2cc9e96f489b23/axhspan_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============ -axhspan Demo -============ - -Create lines or rectangles that span the axes in either the horizontal or -vertical direction. -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(-1, 2, .01) -s = np.sin(2 * np.pi * t) - -plt.plot(t, s) -# Draw a thick red hline at y=0 that spans the xrange -plt.axhline(linewidth=8, color='#d62728') - -# Draw a default hline at y=1 that spans the xrange -plt.axhline(y=1) - -# Draw a default vline at x=1 that spans the yrange -plt.axvline(x=1) - -# Draw a thick blue vline at x=0 that spans the upper quadrant of the yrange -plt.axvline(x=0, ymin=0.75, linewidth=8, color='#1f77b4') - -# Draw a default hline at y=.5 that spans the middle half of the axes -plt.axhline(y=.5, xmin=0.25, xmax=0.75) - -plt.axhspan(0.25, 0.75, facecolor='0.5', alpha=0.5) - -plt.axvspan(1.25, 1.55, facecolor='#2ca02c', alpha=0.5) - -plt.show() diff --git a/_downloads/ae7af797e880f43184742bbf3b3865a1/boxplot_color.py b/_downloads/ae7af797e880f43184742bbf3b3865a1/boxplot_color.py deleted file mode 120000 index ab0973db0e2..00000000000 --- a/_downloads/ae7af797e880f43184742bbf3b3865a1/boxplot_color.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ae7af797e880f43184742bbf3b3865a1/boxplot_color.py \ No newline at end of file diff --git a/_downloads/ae7c6d8e6761c633bf59e74c659a2ce6/shared_axis_demo.ipynb b/_downloads/ae7c6d8e6761c633bf59e74c659a2ce6/shared_axis_demo.ipynb deleted file mode 120000 index 0d417effc7b..00000000000 --- a/_downloads/ae7c6d8e6761c633bf59e74c659a2ce6/shared_axis_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ae7c6d8e6761c633bf59e74c659a2ce6/shared_axis_demo.ipynb \ No newline at end of file diff --git a/_downloads/ae7c750c7e246fc67cd738b6aaf7fdad/sankey_basics.ipynb b/_downloads/ae7c750c7e246fc67cd738b6aaf7fdad/sankey_basics.ipynb deleted file mode 120000 index e42b853bda2..00000000000 --- a/_downloads/ae7c750c7e246fc67cd738b6aaf7fdad/sankey_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ae7c750c7e246fc67cd738b6aaf7fdad/sankey_basics.ipynb \ No newline at end of file diff --git a/_downloads/ae7d20df04bf38088c83a5f6224175be/connectionstyle_demo.py b/_downloads/ae7d20df04bf38088c83a5f6224175be/connectionstyle_demo.py deleted file mode 120000 index 33c654de36d..00000000000 --- a/_downloads/ae7d20df04bf38088c83a5f6224175be/connectionstyle_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ae7d20df04bf38088c83a5f6224175be/connectionstyle_demo.py \ No newline at end of file diff --git a/_downloads/ae865b8a7ab8448221635d593da7cd0c/axes_demo.ipynb b/_downloads/ae865b8a7ab8448221635d593da7cd0c/axes_demo.ipynb deleted file mode 120000 index 0844c1ec88d..00000000000 --- a/_downloads/ae865b8a7ab8448221635d593da7cd0c/axes_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ae865b8a7ab8448221635d593da7cd0c/axes_demo.ipynb \ No newline at end of file diff --git a/_downloads/ae90568fbc096dbc26fc3004135f8b91/shading_example.ipynb b/_downloads/ae90568fbc096dbc26fc3004135f8b91/shading_example.ipynb deleted file mode 100644 index a35e0598742..00000000000 --- a/_downloads/ae90568fbc096dbc26fc3004135f8b91/shading_example.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Shading example\n\n\nExample showing how to make shaded relief plots like Mathematica_ or\n`Generic Mapping Tools`_.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib import cbook\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import LightSource\n\n\ndef main():\n # Test data\n x, y = np.mgrid[-5:5:0.05, -5:5:0.05]\n z = 5 * (np.sqrt(x**2 + y**2) + np.sin(x**2 + y**2))\n\n with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \\\n np.load(file) as dem:\n elev = dem['elevation']\n\n fig = compare(z, plt.cm.copper)\n fig.suptitle('HSV Blending Looks Best with Smooth Surfaces', y=0.95)\n\n fig = compare(elev, plt.cm.gist_earth, ve=0.05)\n fig.suptitle('Overlay Blending Looks Best with Rough Surfaces', y=0.95)\n\n plt.show()\n\n\ndef compare(z, cmap, ve=1):\n # Create subplots and hide ticks\n fig, axs = plt.subplots(ncols=2, nrows=2)\n for ax in axs.flat:\n ax.set(xticks=[], yticks=[])\n\n # Illuminate the scene from the northwest\n ls = LightSource(azdeg=315, altdeg=45)\n\n axs[0, 0].imshow(z, cmap=cmap)\n axs[0, 0].set(xlabel='Colormapped Data')\n\n axs[0, 1].imshow(ls.hillshade(z, vert_exag=ve), cmap='gray')\n axs[0, 1].set(xlabel='Illumination Intensity')\n\n rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='hsv')\n axs[1, 0].imshow(rgb)\n axs[1, 0].set(xlabel='Blend Mode: \"hsv\" (default)')\n\n rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='overlay')\n axs[1, 1].imshow(rgb)\n axs[1, 1].set(xlabel='Blend Mode: \"overlay\"')\n\n return fig\n\n\nif __name__ == '__main__':\n main()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors.LightSource\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ae98d6400556dc85e7f24d68d8480dd7/subplots_adjust.py b/_downloads/ae98d6400556dc85e7f24d68d8480dd7/subplots_adjust.py deleted file mode 120000 index 708de9dd8a3..00000000000 --- a/_downloads/ae98d6400556dc85e7f24d68d8480dd7/subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ae98d6400556dc85e7f24d68d8480dd7/subplots_adjust.py \ No newline at end of file diff --git a/_downloads/aea12fe6c07c5814fd0e1244122264ae/dollar_ticks.py b/_downloads/aea12fe6c07c5814fd0e1244122264ae/dollar_ticks.py deleted file mode 120000 index 020e6cfb50b..00000000000 --- a/_downloads/aea12fe6c07c5814fd0e1244122264ae/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/aea12fe6c07c5814fd0e1244122264ae/dollar_ticks.py \ No newline at end of file diff --git a/_downloads/aea6f5b31c3014e362db88af64f780ca/hist.py b/_downloads/aea6f5b31c3014e362db88af64f780ca/hist.py deleted file mode 100644 index b5ff5ad0034..00000000000 --- a/_downloads/aea6f5b31c3014e362db88af64f780ca/hist.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -========== -Histograms -========== - -Demonstrates how to plot histograms with matplotlib. -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import colors -from matplotlib.ticker import PercentFormatter - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -############################################################################### -# Generate data and plot a simple histogram -# ----------------------------------------- -# -# To generate a 1D histogram we only need a single vector of numbers. For a 2D -# histogram we'll need a second vector. We'll generate both below, and show -# the histogram for each vector. - -N_points = 100000 -n_bins = 20 - -# Generate a normal distribution, center at x=0 and y=5 -x = np.random.randn(N_points) -y = .4 * x + np.random.randn(100000) + 5 - -fig, axs = plt.subplots(1, 2, sharey=True, tight_layout=True) - -# We can set the number of bins with the `bins` kwarg -axs[0].hist(x, bins=n_bins) -axs[1].hist(y, bins=n_bins) - - -############################################################################### -# Updating histogram colors -# ------------------------- -# -# The histogram method returns (among other things) a `patches` object. This -# gives us access to the properties of the objects drawn. Using this, we can -# edit the histogram to our liking. Let's change the color of each bar -# based on its y value. - -fig, axs = plt.subplots(1, 2, tight_layout=True) - -# N is the count in each bin, bins is the lower-limit of the bin -N, bins, patches = axs[0].hist(x, bins=n_bins) - -# We'll color code by height, but you could use any scalar -fracs = N / N.max() - -# we need to normalize the data to 0..1 for the full range of the colormap -norm = colors.Normalize(fracs.min(), fracs.max()) - -# Now, we'll loop through our objects and set the color of each accordingly -for thisfrac, thispatch in zip(fracs, patches): - color = plt.cm.viridis(norm(thisfrac)) - thispatch.set_facecolor(color) - -# We can also normalize our inputs by the total number of counts -axs[1].hist(x, bins=n_bins, density=True) - -# Now we format the y-axis to display percentage -axs[1].yaxis.set_major_formatter(PercentFormatter(xmax=1)) - - -############################################################################### -# Plot a 2D histogram -# ------------------- -# -# To plot a 2D histogram, one only needs two vectors of the same length, -# corresponding to each axis of the histogram. - -fig, ax = plt.subplots(tight_layout=True) -hist = ax.hist2d(x, y) - - -############################################################################### -# Customizing your histogram -# -------------------------- -# -# Customizing a 2D histogram is similar to the 1D case, you can control -# visual components such as the bin size or color normalization. - -fig, axs = plt.subplots(3, 1, figsize=(5, 15), sharex=True, sharey=True, - tight_layout=True) - -# We can increase the number of bins on each axis -axs[0].hist2d(x, y, bins=40) - -# As well as define normalization of the colors -axs[1].hist2d(x, y, bins=40, norm=colors.LogNorm()) - -# We can also define custom numbers of bins for each axis -axs[2].hist2d(x, y, bins=(80, 10), norm=colors.LogNorm()) - -plt.show() diff --git a/_downloads/aeb91f5a1cf185045e90c1aa9f6d1c81/nested_pie.py b/_downloads/aeb91f5a1cf185045e90c1aa9f6d1c81/nested_pie.py deleted file mode 120000 index be2db0329a0..00000000000 --- a/_downloads/aeb91f5a1cf185045e90c1aa9f6d1c81/nested_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aeb91f5a1cf185045e90c1aa9f6d1c81/nested_pie.py \ No newline at end of file diff --git a/_downloads/aec5232618564270c654ed0e88d291b5/demo_ticklabel_alignment.py b/_downloads/aec5232618564270c654ed0e88d291b5/demo_ticklabel_alignment.py deleted file mode 120000 index c66510a4e3e..00000000000 --- a/_downloads/aec5232618564270c654ed0e88d291b5/demo_ticklabel_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aec5232618564270c654ed0e88d291b5/demo_ticklabel_alignment.py \ No newline at end of file diff --git a/_downloads/aec532cd477d50e2fa0c22d775b844a5/path_patch.py b/_downloads/aec532cd477d50e2fa0c22d775b844a5/path_patch.py deleted file mode 120000 index f01ea8803eb..00000000000 --- a/_downloads/aec532cd477d50e2fa0c22d775b844a5/path_patch.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aec532cd477d50e2fa0c22d775b844a5/path_patch.py \ No newline at end of file diff --git a/_downloads/aec78dcb9737f5bb2ebc54416fb9affa/log_demo.py b/_downloads/aec78dcb9737f5bb2ebc54416fb9affa/log_demo.py deleted file mode 120000 index 14b73297f20..00000000000 --- a/_downloads/aec78dcb9737f5bb2ebc54416fb9affa/log_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/aec78dcb9737f5bb2ebc54416fb9affa/log_demo.py \ No newline at end of file diff --git a/_downloads/aedefc3275c231002f3353e683cb974a/fill.py b/_downloads/aedefc3275c231002f3353e683cb974a/fill.py deleted file mode 120000 index b47ac4b4ecc..00000000000 --- a/_downloads/aedefc3275c231002f3353e683cb974a/fill.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aedefc3275c231002f3353e683cb974a/fill.py \ No newline at end of file diff --git a/_downloads/aef55bac76df529f4a04a16e42f3c09f/annotate_explain.py b/_downloads/aef55bac76df529f4a04a16e42f3c09f/annotate_explain.py deleted file mode 120000 index 96ea01340e3..00000000000 --- a/_downloads/aef55bac76df529f4a04a16e42f3c09f/annotate_explain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/aef55bac76df529f4a04a16e42f3c09f/annotate_explain.py \ No newline at end of file diff --git a/_downloads/aefd08875ea9d48be323dd2d34f678a9/contourf3d_2.ipynb b/_downloads/aefd08875ea9d48be323dd2d34f678a9/contourf3d_2.ipynb deleted file mode 120000 index a5812986948..00000000000 --- a/_downloads/aefd08875ea9d48be323dd2d34f678a9/contourf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/aefd08875ea9d48be323dd2d34f678a9/contourf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/aefe67fccc81f0455ed685d49e971186/bmh.ipynb b/_downloads/aefe67fccc81f0455ed685d49e971186/bmh.ipynb deleted file mode 120000 index 608a3eb18f4..00000000000 --- a/_downloads/aefe67fccc81f0455ed685d49e971186/bmh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/aefe67fccc81f0455ed685d49e971186/bmh.ipynb \ No newline at end of file diff --git a/_downloads/af0c61ac007e4552fdad5916cb26b6b2/image_masked.ipynb b/_downloads/af0c61ac007e4552fdad5916cb26b6b2/image_masked.ipynb deleted file mode 100644 index 21186b3040d..00000000000 --- a/_downloads/af0c61ac007e4552fdad5916cb26b6b2/image_masked.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Masked\n\n\nimshow with masked array input and out-of-range colors.\n\nThe second subplot illustrates the use of BoundaryNorm to\nget a filled contour effect.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from copy import copy\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\n# compute some interesting data\nx0, x1 = -5, 5\ny0, y1 = -3, 3\nx = np.linspace(x0, x1, 500)\ny = np.linspace(y0, y1, 500)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n# Set up a colormap:\n# use copy so that we do not mutate the global colormap instance\npalette = copy(plt.cm.gray)\npalette.set_over('r', 1.0)\npalette.set_under('g', 1.0)\npalette.set_bad('b', 1.0)\n# Alternatively, we could use\n# palette.set_bad(alpha = 0.0)\n# to make the bad region transparent. This is the default.\n# If you comment out all the palette.set* lines, you will see\n# all the defaults; under and over will be colored with the\n# first and last colors in the palette, respectively.\nZm = np.ma.masked_where(Z > 1.2, Z)\n\n# By setting vmin and vmax in the norm, we establish the\n# range to which the regular palette color scale is applied.\n# Anything above that range is colored based on palette.set_over, etc.\n\n# set up the Axes objects\nfig, (ax1, ax2) = plt.subplots(nrows=2, figsize=(6, 5.4))\n\n# plot using 'continuous' color map\nim = ax1.imshow(Zm, interpolation='bilinear',\n cmap=palette,\n norm=colors.Normalize(vmin=-1.0, vmax=1.0),\n aspect='auto',\n origin='lower',\n extent=[x0, x1, y0, y1])\nax1.set_title('Green=low, Red=high, Blue=masked')\ncbar = fig.colorbar(im, extend='both', shrink=0.9, ax=ax1)\ncbar.set_label('uniform')\nfor ticklabel in ax1.xaxis.get_ticklabels():\n ticklabel.set_visible(False)\n\n# Plot using a small number of colors, with unevenly spaced boundaries.\nim = ax2.imshow(Zm, interpolation='nearest',\n cmap=palette,\n norm=colors.BoundaryNorm([-1, -0.5, -0.2, 0, 0.2, 0.5, 1],\n ncolors=palette.N),\n aspect='auto',\n origin='lower',\n extent=[x0, x1, y0, y1])\nax2.set_title('With BoundaryNorm')\ncbar = fig.colorbar(im, extend='both', spacing='proportional',\n shrink=0.9, ax=ax2)\ncbar.set_label('proportional')\n\nfig.suptitle('imshow, with out-of-range and masked data')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.BoundaryNorm\nmatplotlib.colorbar.ColorbarBase.set_label" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/af0f486d1165f290aebd6b84069ec97a/arrow_simple_demo.py b/_downloads/af0f486d1165f290aebd6b84069ec97a/arrow_simple_demo.py deleted file mode 120000 index cdf4371dfcb..00000000000 --- a/_downloads/af0f486d1165f290aebd6b84069ec97a/arrow_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/af0f486d1165f290aebd6b84069ec97a/arrow_simple_demo.py \ No newline at end of file diff --git a/_downloads/af125fa66a3ddaf7ff8145913de95397/demo_anchored_direction_arrows.ipynb b/_downloads/af125fa66a3ddaf7ff8145913de95397/demo_anchored_direction_arrows.ipynb deleted file mode 120000 index 6191f348eef..00000000000 --- a/_downloads/af125fa66a3ddaf7ff8145913de95397/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/af125fa66a3ddaf7ff8145913de95397/demo_anchored_direction_arrows.ipynb \ No newline at end of file diff --git a/_downloads/af1e31e87031fa53e2c441b08e54d235/barchart.py b/_downloads/af1e31e87031fa53e2c441b08e54d235/barchart.py deleted file mode 120000 index 0e9517aec35..00000000000 --- a/_downloads/af1e31e87031fa53e2c441b08e54d235/barchart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/af1e31e87031fa53e2c441b08e54d235/barchart.py \ No newline at end of file diff --git a/_downloads/af1fa382ffd614ae66be6e9143ef7175/errorbar_limits.ipynb b/_downloads/af1fa382ffd614ae66be6e9143ef7175/errorbar_limits.ipynb deleted file mode 120000 index a68f3a92877..00000000000 --- a/_downloads/af1fa382ffd614ae66be6e9143ef7175/errorbar_limits.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/af1fa382ffd614ae66be6e9143ef7175/errorbar_limits.ipynb \ No newline at end of file diff --git a/_downloads/af2540f0e7b363234f07f35619a0c5f7/anchored_box01.py b/_downloads/af2540f0e7b363234f07f35619a0c5f7/anchored_box01.py deleted file mode 120000 index d7a46e138bf..00000000000 --- a/_downloads/af2540f0e7b363234f07f35619a0c5f7/anchored_box01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/af2540f0e7b363234f07f35619a0c5f7/anchored_box01.py \ No newline at end of file diff --git a/_downloads/af40c8a718066e023a6aba659fdfe5b4/demo_fixed_size_axes.py b/_downloads/af40c8a718066e023a6aba659fdfe5b4/demo_fixed_size_axes.py deleted file mode 120000 index 7d3fb776fc7..00000000000 --- a/_downloads/af40c8a718066e023a6aba659fdfe5b4/demo_fixed_size_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/af40c8a718066e023a6aba659fdfe5b4/demo_fixed_size_axes.py \ No newline at end of file diff --git a/_downloads/af4cb7f9b47a9825837ed8386c487307/fivethirtyeight.ipynb b/_downloads/af4cb7f9b47a9825837ed8386c487307/fivethirtyeight.ipynb deleted file mode 100644 index b369bf0682c..00000000000 --- a/_downloads/af4cb7f9b47a9825837ed8386c487307/fivethirtyeight.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# FiveThirtyEight style sheet\n\n\nThis shows an example of the \"fivethirtyeight\" styling, which\ntries to replicate the styles from FiveThirtyEight.com.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nplt.style.use('fivethirtyeight')\n\nx = np.linspace(0, 10)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\n\nax.plot(x, np.sin(x) + x + np.random.randn(50))\nax.plot(x, np.sin(x) + 0.5 * x + np.random.randn(50))\nax.plot(x, np.sin(x) + 2 * x + np.random.randn(50))\nax.plot(x, np.sin(x) - 0.5 * x + np.random.randn(50))\nax.plot(x, np.sin(x) - 2 * x + np.random.randn(50))\nax.plot(x, np.sin(x) + np.random.randn(50))\nax.set_title(\"'fivethirtyeight' style sheet\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/af539dc5cb938678113a03007e87fc9d/image_clip_path.ipynb b/_downloads/af539dc5cb938678113a03007e87fc9d/image_clip_path.ipynb deleted file mode 120000 index 5bb3f701071..00000000000 --- a/_downloads/af539dc5cb938678113a03007e87fc9d/image_clip_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/af539dc5cb938678113a03007e87fc9d/image_clip_path.ipynb \ No newline at end of file diff --git a/_downloads/af560fd6d4f97836abefb31ce1cae0a0/sankey_basics.py b/_downloads/af560fd6d4f97836abefb31ce1cae0a0/sankey_basics.py deleted file mode 120000 index e6a83ac7dcc..00000000000 --- a/_downloads/af560fd6d4f97836abefb31ce1cae0a0/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/af560fd6d4f97836abefb31ce1cae0a0/sankey_basics.py \ No newline at end of file diff --git a/_downloads/af5ac53892336f4652110c8e338b9329/demo_axes_grid.py b/_downloads/af5ac53892336f4652110c8e338b9329/demo_axes_grid.py deleted file mode 120000 index ac5b98cb9b2..00000000000 --- a/_downloads/af5ac53892336f4652110c8e338b9329/demo_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/af5ac53892336f4652110c8e338b9329/demo_axes_grid.py \ No newline at end of file diff --git a/_downloads/af66218b1946cbb722be881c265185bb/subplots_adjust.ipynb b/_downloads/af66218b1946cbb722be881c265185bb/subplots_adjust.ipynb deleted file mode 100644 index bee8dc12318..00000000000 --- a/_downloads/af66218b1946cbb722be881c265185bb/subplots_adjust.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Subplots Adjust\n\n\nAdjusting the spacing of margins and subplots using\n:func:`~matplotlib.pyplot.subplots_adjust`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nplt.subplot(211)\nplt.imshow(np.random.random((100, 100)), cmap=plt.cm.BuPu_r)\nplt.subplot(212)\nplt.imshow(np.random.random((100, 100)), cmap=plt.cm.BuPu_r)\n\nplt.subplots_adjust(bottom=0.1, right=0.8, top=0.9)\ncax = plt.axes([0.85, 0.1, 0.075, 0.8])\nplt.colorbar(cax=cax)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/af6eed53ddfb6411b8c04abada81e28a/demo_curvelinear_grid.ipynb b/_downloads/af6eed53ddfb6411b8c04abada81e28a/demo_curvelinear_grid.ipynb deleted file mode 120000 index c89e91aaca2..00000000000 --- a/_downloads/af6eed53ddfb6411b8c04abada81e28a/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/af6eed53ddfb6411b8c04abada81e28a/demo_curvelinear_grid.ipynb \ No newline at end of file diff --git a/_downloads/af7a64bda722574c95569597149b3137/sample_plots.py b/_downloads/af7a64bda722574c95569597149b3137/sample_plots.py deleted file mode 120000 index bc997e3a0b1..00000000000 --- a/_downloads/af7a64bda722574c95569597149b3137/sample_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/af7a64bda722574c95569597149b3137/sample_plots.py \ No newline at end of file diff --git a/_downloads/af914017c64db37d6e814a5e9cdfb4a2/marker_reference.py b/_downloads/af914017c64db37d6e814a5e9cdfb4a2/marker_reference.py deleted file mode 120000 index 0cb0c5767b2..00000000000 --- a/_downloads/af914017c64db37d6e814a5e9cdfb4a2/marker_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/af914017c64db37d6e814a5e9cdfb4a2/marker_reference.py \ No newline at end of file diff --git a/_downloads/af94010201258725c965600dd66043a6/data_browser.ipynb b/_downloads/af94010201258725c965600dd66043a6/data_browser.ipynb deleted file mode 100644 index aeabf156539..00000000000 --- a/_downloads/af94010201258725c965600dd66043a6/data_browser.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\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" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\n\nclass PointBrowser(object):\n \"\"\"\n Click on a point to select and highlight it -- the data that\n generated the point will be shown in the lower axes. Use the 'n'\n and 'p' keys to browse through the next and previous points\n \"\"\"\n\n def __init__(self):\n self.lastind = 0\n\n self.text = ax.text(0.05, 0.95, 'selected: none',\n transform=ax.transAxes, va='top')\n self.selected, = ax.plot([xs[0]], [ys[0]], 'o', ms=12, alpha=0.4,\n color='yellow', visible=False)\n\n def onpress(self, event):\n if self.lastind is None:\n return\n if event.key not in ('n', 'p'):\n return\n if event.key == 'n':\n inc = 1\n else:\n inc = -1\n\n self.lastind += inc\n self.lastind = np.clip(self.lastind, 0, len(xs) - 1)\n self.update()\n\n def onpick(self, event):\n\n if event.artist != line:\n return True\n\n N = len(event.ind)\n if not N:\n return True\n\n # the click locations\n x = event.mouseevent.xdata\n y = event.mouseevent.ydata\n\n distances = np.hypot(x - xs[event.ind], y - ys[event.ind])\n indmin = distances.argmin()\n dataind = event.ind[indmin]\n\n self.lastind = dataind\n self.update()\n\n def update(self):\n if self.lastind is None:\n return\n\n dataind = self.lastind\n\n ax2.cla()\n ax2.plot(X[dataind])\n\n ax2.text(0.05, 0.9, 'mu=%1.3f\\nsigma=%1.3f' % (xs[dataind], ys[dataind]),\n transform=ax2.transAxes, va='top')\n ax2.set_ylim(-0.5, 1.5)\n self.selected.set_visible(True)\n self.selected.set_data(xs[dataind], ys[dataind])\n\n self.text.set_text('selected: %d' % dataind)\n fig.canvas.draw()\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n\n X = np.random.rand(100, 200)\n xs = np.mean(X, axis=1)\n ys = np.std(X, axis=1)\n\n fig, (ax, ax2) = plt.subplots(2, 1)\n ax.set_title('click on point to plot time series')\n line, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance\n\n browser = PointBrowser()\n\n fig.canvas.mpl_connect('pick_event', browser.onpick)\n fig.canvas.mpl_connect('key_press_event', browser.onpress)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/af972ab91ec5ad510d9253a3487a23bb/placing_text_boxes.ipynb b/_downloads/af972ab91ec5ad510d9253a3487a23bb/placing_text_boxes.ipynb deleted file mode 120000 index a3abaa3d464..00000000000 --- a/_downloads/af972ab91ec5ad510d9253a3487a23bb/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/af972ab91ec5ad510d9253a3487a23bb/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/afac9336741f99a383d0d8eb149e2cb4/simple_axisline4.py b/_downloads/afac9336741f99a383d0d8eb149e2cb4/simple_axisline4.py deleted file mode 120000 index b9561bbbacd..00000000000 --- a/_downloads/afac9336741f99a383d0d8eb149e2cb4/simple_axisline4.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/afac9336741f99a383d0d8eb149e2cb4/simple_axisline4.py \ No newline at end of file diff --git a/_downloads/afacd884bce37a82f4eaff0d4c66e8a4/fig_x.ipynb b/_downloads/afacd884bce37a82f4eaff0d4c66e8a4/fig_x.ipynb deleted file mode 120000 index 4c1763deff3..00000000000 --- a/_downloads/afacd884bce37a82f4eaff0d4c66e8a4/fig_x.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/afacd884bce37a82f4eaff0d4c66e8a4/fig_x.ipynb \ No newline at end of file diff --git a/_downloads/afad407e9874fe9dac83d6e41412494d/horizontal_barchart_distribution.ipynb b/_downloads/afad407e9874fe9dac83d6e41412494d/horizontal_barchart_distribution.ipynb deleted file mode 120000 index 2d5e14047e2..00000000000 --- a/_downloads/afad407e9874fe9dac83d6e41412494d/horizontal_barchart_distribution.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/afad407e9874fe9dac83d6e41412494d/horizontal_barchart_distribution.ipynb \ No newline at end of file diff --git a/_downloads/afb29ab73a80c584702a676562f0bd37/centered_spines_with_arrows.ipynb b/_downloads/afb29ab73a80c584702a676562f0bd37/centered_spines_with_arrows.ipynb deleted file mode 120000 index 0af4e0ecdc5..00000000000 --- a/_downloads/afb29ab73a80c584702a676562f0bd37/centered_spines_with_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/afb29ab73a80c584702a676562f0bd37/centered_spines_with_arrows.ipynb \ No newline at end of file diff --git a/_downloads/afb2d1131a1f6e7b91d845bd364624e8/color_by_yvalue.py b/_downloads/afb2d1131a1f6e7b91d845bd364624e8/color_by_yvalue.py deleted file mode 120000 index 98bc3c011e7..00000000000 --- a/_downloads/afb2d1131a1f6e7b91d845bd364624e8/color_by_yvalue.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/afb2d1131a1f6e7b91d845bd364624e8/color_by_yvalue.py \ No newline at end of file diff --git a/_downloads/afb3c265c79fb8cae340cd3306990977/axis_direction_demo_step01.py b/_downloads/afb3c265c79fb8cae340cd3306990977/axis_direction_demo_step01.py deleted file mode 120000 index 7e2258a4664..00000000000 --- a/_downloads/afb3c265c79fb8cae340cd3306990977/axis_direction_demo_step01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/afb3c265c79fb8cae340cd3306990977/axis_direction_demo_step01.py \ No newline at end of file diff --git a/_downloads/afb6573e03f192cdc26419276f90b9bc/advanced_hillshading.ipynb b/_downloads/afb6573e03f192cdc26419276f90b9bc/advanced_hillshading.ipynb deleted file mode 120000 index afaeb934998..00000000000 --- a/_downloads/afb6573e03f192cdc26419276f90b9bc/advanced_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/afb6573e03f192cdc26419276f90b9bc/advanced_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/afc60225a2088fd5f71080cfd626d3c0/annotate_simple02.ipynb b/_downloads/afc60225a2088fd5f71080cfd626d3c0/annotate_simple02.ipynb deleted file mode 120000 index 8480cd0f10e..00000000000 --- a/_downloads/afc60225a2088fd5f71080cfd626d3c0/annotate_simple02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/afc60225a2088fd5f71080cfd626d3c0/annotate_simple02.ipynb \ No newline at end of file diff --git a/_downloads/afc80c5ba2822e3f386f1f02599c2036/coords_demo.ipynb b/_downloads/afc80c5ba2822e3f386f1f02599c2036/coords_demo.ipynb deleted file mode 100644 index 6084b7b46c3..00000000000 --- a/_downloads/afc80c5ba2822e3f386f1f02599c2036/coords_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Coords demo\n\n\nAn example of how to interact with the plotting canvas by connecting to move\nand click events.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backend_bases import MouseButton\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2 * np.pi * t)\nfig, ax = plt.subplots()\nax.plot(t, s)\n\n\ndef on_move(event):\n # get the x and y pixel coords\n x, y = event.x, event.y\n if event.inaxes:\n ax = event.inaxes # the axes instance\n print('data coords %f %f' % (event.xdata, event.ydata))\n\n\ndef on_click(event):\n if event.button is MouseButton.LEFT:\n print('disconnecting callback')\n plt.disconnect(binding_id)\n\n\nbinding_id = plt.connect('motion_notify_event', on_move)\nplt.connect('button_press_event', on_click)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/afc8a9b0174edd3c8a1b2452643db164/engineering_formatter.py b/_downloads/afc8a9b0174edd3c8a1b2452643db164/engineering_formatter.py deleted file mode 120000 index 074afe2015b..00000000000 --- a/_downloads/afc8a9b0174edd3c8a1b2452643db164/engineering_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/afc8a9b0174edd3c8a1b2452643db164/engineering_formatter.py \ No newline at end of file diff --git a/_downloads/afd248ea8e3b5a0c72b80e39a5fa8920/simple_plot.py b/_downloads/afd248ea8e3b5a0c72b80e39a5fa8920/simple_plot.py deleted file mode 120000 index e55bb466a6c..00000000000 --- a/_downloads/afd248ea8e3b5a0c72b80e39a5fa8920/simple_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/afd248ea8e3b5a0c72b80e39a5fa8920/simple_plot.py \ No newline at end of file diff --git a/_downloads/afd3eb74b988880e61770a73af5fe016/voxels.py b/_downloads/afd3eb74b988880e61770a73af5fe016/voxels.py deleted file mode 120000 index c385dad2e9a..00000000000 --- a/_downloads/afd3eb74b988880e61770a73af5fe016/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/afd3eb74b988880e61770a73af5fe016/voxels.py \ No newline at end of file diff --git a/_downloads/afd5fd03aa4639db386ce3a904a64aaf/custom_boxstyle02.ipynb b/_downloads/afd5fd03aa4639db386ce3a904a64aaf/custom_boxstyle02.ipynb deleted file mode 120000 index 89d1a61a73e..00000000000 --- a/_downloads/afd5fd03aa4639db386ce3a904a64aaf/custom_boxstyle02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/afd5fd03aa4639db386ce3a904a64aaf/custom_boxstyle02.ipynb \ No newline at end of file diff --git a/_downloads/afe50719313695f2e7c03567369eb839/contourf_log.py b/_downloads/afe50719313695f2e7c03567369eb839/contourf_log.py deleted file mode 120000 index 2585cea0a0f..00000000000 --- a/_downloads/afe50719313695f2e7c03567369eb839/contourf_log.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/afe50719313695f2e7c03567369eb839/contourf_log.py \ No newline at end of file diff --git a/_downloads/afea4de5a74f558caab9bd5c8bd0741d/looking_glass.ipynb b/_downloads/afea4de5a74f558caab9bd5c8bd0741d/looking_glass.ipynb deleted file mode 120000 index 4f4fa56d07d..00000000000 --- a/_downloads/afea4de5a74f558caab9bd5c8bd0741d/looking_glass.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/afea4de5a74f558caab9bd5c8bd0741d/looking_glass.ipynb \ No newline at end of file diff --git a/_downloads/afed543e9fa561d018823200c61ca0f0/text_intro.ipynb b/_downloads/afed543e9fa561d018823200c61ca0f0/text_intro.ipynb deleted file mode 120000 index ecff43b6cf8..00000000000 --- a/_downloads/afed543e9fa561d018823200c61ca0f0/text_intro.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/afed543e9fa561d018823200c61ca0f0/text_intro.ipynb \ No newline at end of file diff --git a/_downloads/affe74a7fd24f17d4d3e4e6565853f35/custom_projection.ipynb b/_downloads/affe74a7fd24f17d4d3e4e6565853f35/custom_projection.ipynb deleted file mode 100644 index 7a2ea196f7c..00000000000 --- a/_downloads/affe74a7fd24f17d4d3e4e6565853f35/custom_projection.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom projection\n\n\nShowcase Hammer projection by alleviating many features of Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nfrom matplotlib.axes import Axes\nfrom matplotlib.patches import Circle\nfrom matplotlib.path import Path\nfrom matplotlib.ticker import NullLocator, Formatter, FixedLocator\nfrom matplotlib.transforms import Affine2D, BboxTransformTo, Transform\nfrom matplotlib.projections import register_projection\nimport matplotlib.spines as mspines\nimport matplotlib.axis as maxis\nimport numpy as np\n\nrcParams = matplotlib.rcParams\n\n# This example projection class is rather long, but it is designed to\n# illustrate many features, not all of which will be used every time.\n# It is also common to factor out a lot of these methods into common\n# code used by a number of projections with similar characteristics\n# (see geo.py).\n\n\nclass GeoAxes(Axes):\n \"\"\"\n An abstract base class for geographic projections\n \"\"\"\n class ThetaFormatter(Formatter):\n \"\"\"\n Used to format the theta tick labels. Converts the native\n unit of radians into degrees and adds a degree symbol.\n \"\"\"\n def __init__(self, round_to=1.0):\n self._round_to = round_to\n\n def __call__(self, x, pos=None):\n degrees = np.round(np.rad2deg(x) / self._round_to) * self._round_to\n if rcParams['text.usetex'] and not rcParams['text.latex.unicode']:\n return r\"$%0.0f^\\circ$\" % degrees\n else:\n return \"%0.0f\\N{DEGREE SIGN}\" % degrees\n\n RESOLUTION = 75\n\n def _init_axis(self):\n self.xaxis = maxis.XAxis(self)\n self.yaxis = maxis.YAxis(self)\n # Do not register xaxis or yaxis with spines -- as done in\n # Axes._init_axis() -- until GeoAxes.xaxis.cla() works.\n # self.spines['geo'].register_axis(self.yaxis)\n self._update_transScale()\n\n def cla(self):\n Axes.cla(self)\n\n self.set_longitude_grid(30)\n self.set_latitude_grid(15)\n self.set_longitude_grid_ends(75)\n self.xaxis.set_minor_locator(NullLocator())\n self.yaxis.set_minor_locator(NullLocator())\n self.xaxis.set_ticks_position('none')\n self.yaxis.set_ticks_position('none')\n self.yaxis.set_tick_params(label1On=True)\n # Why do we need to turn on yaxis tick labels, but\n # xaxis tick labels are already on?\n\n self.grid(rcParams['axes.grid'])\n\n Axes.set_xlim(self, -np.pi, np.pi)\n Axes.set_ylim(self, -np.pi / 2.0, np.pi / 2.0)\n\n def _set_lim_and_transforms(self):\n # A (possibly non-linear) projection on the (already scaled) data\n\n # There are three important coordinate spaces going on here:\n #\n # 1. Data space: The space of the data itself\n #\n # 2. Axes space: The unit rectangle (0, 0) to (1, 1)\n # covering the entire plot area.\n #\n # 3. Display space: The coordinates of the resulting image,\n # often in pixels or dpi/inch.\n\n # This function makes heavy use of the Transform classes in\n # ``lib/matplotlib/transforms.py.`` For more information, see\n # the inline documentation there.\n\n # The goal of the first two transformations is to get from the\n # data space (in this case longitude and latitude) to axes\n # space. It is separated into a non-affine and affine part so\n # that the non-affine part does not have to be recomputed when\n # a simple affine change to the figure has been made (such as\n # resizing the window or changing the dpi).\n\n # 1) The core transformation from data space into\n # rectilinear space defined in the HammerTransform class.\n self.transProjection = self._get_core_transform(self.RESOLUTION)\n\n # 2) The above has an output range that is not in the unit\n # rectangle, so scale and translate it so it fits correctly\n # within the axes. The peculiar calculations of xscale and\n # yscale are specific to a Aitoff-Hammer projection, so don't\n # worry about them too much.\n self.transAffine = self._get_affine_transform()\n\n # 3) This is the transformation from axes space to display\n # space.\n self.transAxes = BboxTransformTo(self.bbox)\n\n # Now put these 3 transforms together -- from data all the way\n # to display coordinates. Using the '+' operator, these\n # transforms will be applied \"in order\". The transforms are\n # automatically simplified, if possible, by the underlying\n # transformation framework.\n self.transData = \\\n self.transProjection + \\\n self.transAffine + \\\n self.transAxes\n\n # The main data transformation is set up. Now deal with\n # gridlines and tick labels.\n\n # Longitude gridlines and ticklabels. The input to these\n # transforms are in display space in x and axes space in y.\n # Therefore, the input values will be in range (-xmin, 0),\n # (xmax, 1). The goal of these transforms is to go from that\n # space to display space. The tick labels will be offset 4\n # pixels from the equator.\n self._xaxis_pretransform = \\\n Affine2D() \\\n .scale(1.0, self._longitude_cap * 2.0) \\\n .translate(0.0, -self._longitude_cap)\n self._xaxis_transform = \\\n self._xaxis_pretransform + \\\n self.transData\n self._xaxis_text1_transform = \\\n Affine2D().scale(1.0, 0.0) + \\\n self.transData + \\\n Affine2D().translate(0.0, 4.0)\n self._xaxis_text2_transform = \\\n Affine2D().scale(1.0, 0.0) + \\\n self.transData + \\\n Affine2D().translate(0.0, -4.0)\n\n # Now set up the transforms for the latitude ticks. The input to\n # these transforms are in axes space in x and display space in\n # y. Therefore, the input values will be in range (0, -ymin),\n # (1, ymax). The goal of these transforms is to go from that\n # space to display space. The tick labels will be offset 4\n # pixels from the edge of the axes ellipse.\n yaxis_stretch = Affine2D().scale(np.pi*2, 1).translate(-np.pi, 0)\n yaxis_space = Affine2D().scale(1.0, 1.1)\n self._yaxis_transform = \\\n yaxis_stretch + \\\n self.transData\n yaxis_text_base = \\\n yaxis_stretch + \\\n self.transProjection + \\\n (yaxis_space +\n self.transAffine +\n self.transAxes)\n self._yaxis_text1_transform = \\\n yaxis_text_base + \\\n Affine2D().translate(-8.0, 0.0)\n self._yaxis_text2_transform = \\\n yaxis_text_base + \\\n Affine2D().translate(8.0, 0.0)\n\n def _get_affine_transform(self):\n transform = self._get_core_transform(1)\n xscale, _ = transform.transform_point((np.pi, 0))\n _, yscale = transform.transform_point((0, np.pi / 2.0))\n return Affine2D() \\\n .scale(0.5 / xscale, 0.5 / yscale) \\\n .translate(0.5, 0.5)\n\n def get_xaxis_transform(self, which='grid'):\n \"\"\"\n Override this method to provide a transformation for the\n x-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n if which not in ['tick1', 'tick2', 'grid']:\n raise ValueError(\n \"'which' must be one of 'tick1', 'tick2', or 'grid'\")\n return self._xaxis_transform\n\n def get_xaxis_text1_transform(self, pad):\n return self._xaxis_text1_transform, 'bottom', 'center'\n\n def get_xaxis_text2_transform(self, pad):\n \"\"\"\n Override this method to provide a transformation for the\n secondary x-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n return self._xaxis_text2_transform, 'top', 'center'\n\n def get_yaxis_transform(self, which='grid'):\n \"\"\"\n Override this method to provide a transformation for the\n y-axis grid and ticks.\n \"\"\"\n if which not in ['tick1', 'tick2', 'grid']:\n raise ValueError(\n \"'which' must be one of 'tick1', 'tick2', or 'grid'\")\n return self._yaxis_transform\n\n def get_yaxis_text1_transform(self, pad):\n \"\"\"\n Override this method to provide a transformation for the\n y-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n return self._yaxis_text1_transform, 'center', 'right'\n\n def get_yaxis_text2_transform(self, pad):\n \"\"\"\n Override this method to provide a transformation for the\n secondary y-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n return self._yaxis_text2_transform, 'center', 'left'\n\n def _gen_axes_patch(self):\n \"\"\"\n Override this method to define the shape that is used for the\n background of the plot. It should be a subclass of Patch.\n\n In this case, it is a Circle (that may be warped by the axes\n transform into an ellipse). Any data and gridlines will be\n clipped to this shape.\n \"\"\"\n return Circle((0.5, 0.5), 0.5)\n\n def _gen_axes_spines(self):\n return {'geo': mspines.Spine.circular_spine(self, (0.5, 0.5), 0.5)}\n\n def set_yscale(self, *args, **kwargs):\n if args[0] != 'linear':\n raise NotImplementedError\n\n # Prevent the user from applying scales to one or both of the\n # axes. In this particular case, scaling the axes wouldn't make\n # sense, so we don't allow it.\n set_xscale = set_yscale\n\n # Prevent the user from changing the axes limits. In our case, we\n # want to display the whole sphere all the time, so we override\n # set_xlim and set_ylim to ignore any input. This also applies to\n # interactive panning and zooming in the GUI interfaces.\n def set_xlim(self, *args, **kwargs):\n raise TypeError(\"It is not possible to change axes limits \"\n \"for geographic projections. Please consider \"\n \"using Basemap or Cartopy.\")\n\n set_ylim = set_xlim\n\n def format_coord(self, lon, lat):\n \"\"\"\n Override this method to change how the values are displayed in\n the status bar.\n\n In this case, we want them to be displayed in degrees N/S/E/W.\n \"\"\"\n lon, lat = np.rad2deg([lon, lat])\n if lat >= 0.0:\n ns = 'N'\n else:\n ns = 'S'\n if lon >= 0.0:\n ew = 'E'\n else:\n ew = 'W'\n return ('%f\\N{DEGREE SIGN}%s, %f\\N{DEGREE SIGN}%s'\n % (abs(lat), ns, abs(lon), ew))\n\n def set_longitude_grid(self, degrees):\n \"\"\"\n Set the number of degrees between each longitude grid.\n\n This is an example method that is specific to this projection\n class -- it provides a more convenient interface to set the\n ticking than set_xticks would.\n \"\"\"\n # Skip -180 and 180, which are the fixed limits.\n grid = np.arange(-180 + degrees, 180, degrees)\n self.xaxis.set_major_locator(FixedLocator(np.deg2rad(grid)))\n self.xaxis.set_major_formatter(self.ThetaFormatter(degrees))\n\n def set_latitude_grid(self, degrees):\n \"\"\"\n Set the number of degrees between each longitude grid.\n\n This is an example method that is specific to this projection\n class -- it provides a more convenient interface than\n set_yticks would.\n \"\"\"\n # Skip -90 and 90, which are the fixed limits.\n grid = np.arange(-90 + degrees, 90, degrees)\n self.yaxis.set_major_locator(FixedLocator(np.deg2rad(grid)))\n self.yaxis.set_major_formatter(self.ThetaFormatter(degrees))\n\n def set_longitude_grid_ends(self, degrees):\n \"\"\"\n Set the latitude(s) at which to stop drawing the longitude grids.\n\n Often, in geographic projections, you wouldn't want to draw\n longitude gridlines near the poles. This allows the user to\n specify the degree at which to stop drawing longitude grids.\n\n This is an example method that is specific to this projection\n class -- it provides an interface to something that has no\n analogy in the base Axes class.\n \"\"\"\n self._longitude_cap = np.deg2rad(degrees)\n self._xaxis_pretransform \\\n .clear() \\\n .scale(1.0, self._longitude_cap * 2.0) \\\n .translate(0.0, -self._longitude_cap)\n\n def get_data_ratio(self):\n \"\"\"\n Return the aspect ratio of the data itself.\n\n This method should be overridden by any Axes that have a\n fixed data ratio.\n \"\"\"\n return 1.0\n\n # Interactive panning and zooming is not supported with this projection,\n # so we override all of the following methods to disable it.\n def can_zoom(self):\n \"\"\"\n Return *True* if this axes supports the zoom box button functionality.\n This axes object does not support interactive zoom box.\n \"\"\"\n return False\n\n def can_pan(self):\n \"\"\"\n Return *True* if this axes supports the pan/zoom button functionality.\n This axes object does not support interactive pan/zoom.\n \"\"\"\n return False\n\n def start_pan(self, x, y, button):\n pass\n\n def end_pan(self):\n pass\n\n def drag_pan(self, button, key, x, y):\n pass\n\n\nclass HammerAxes(GeoAxes):\n \"\"\"\n A custom class for the Aitoff-Hammer projection, an equal-area map\n projection.\n\n https://en.wikipedia.org/wiki/Hammer_projection\n \"\"\"\n\n # The projection must specify a name. This will be used by the\n # user to select the projection,\n # i.e. ``subplot(111, projection='custom_hammer')``.\n name = 'custom_hammer'\n\n class HammerTransform(Transform):\n \"\"\"\n The base Hammer transform.\n \"\"\"\n input_dims = 2\n output_dims = 2\n is_separable = False\n\n def __init__(self, resolution):\n \"\"\"\n Create a new Hammer transform. Resolution is the number of steps\n to interpolate between each input line segment to approximate its\n path in curved Hammer space.\n \"\"\"\n Transform.__init__(self)\n self._resolution = resolution\n\n def transform_non_affine(self, ll):\n longitude, latitude = ll.T\n\n # Pre-compute some values\n half_long = longitude / 2\n cos_latitude = np.cos(latitude)\n sqrt2 = np.sqrt(2)\n\n alpha = np.sqrt(1 + cos_latitude * np.cos(half_long))\n x = (2 * sqrt2) * (cos_latitude * np.sin(half_long)) / alpha\n y = (sqrt2 * np.sin(latitude)) / alpha\n return np.column_stack([x, y])\n\n def transform_path_non_affine(self, path):\n # vertices = path.vertices\n ipath = path.interpolated(self._resolution)\n return Path(self.transform(ipath.vertices), ipath.codes)\n\n def inverted(self):\n return HammerAxes.InvertedHammerTransform(self._resolution)\n\n class InvertedHammerTransform(Transform):\n input_dims = 2\n output_dims = 2\n is_separable = False\n\n def __init__(self, resolution):\n Transform.__init__(self)\n self._resolution = resolution\n\n def transform_non_affine(self, xy):\n x, y = xy.T\n z = np.sqrt(1 - (x / 4) ** 2 - (y / 2) ** 2)\n longitude = 2 * np.arctan((z * x) / (2 * (2 * z ** 2 - 1)))\n latitude = np.arcsin(y*z)\n return np.column_stack([longitude, latitude])\n\n def inverted(self):\n return HammerAxes.HammerTransform(self._resolution)\n\n def __init__(self, *args, **kwargs):\n self._longitude_cap = np.pi / 2.0\n GeoAxes.__init__(self, *args, **kwargs)\n self.set_aspect(0.5, adjustable='box', anchor='C')\n self.cla()\n\n def _get_core_transform(self, resolution):\n return self.HammerTransform(resolution)\n\n\n# Now register the projection with Matplotlib so the user can select it.\nregister_projection(HammerAxes)\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n # Now make a simple example using the custom projection.\n plt.subplot(111, projection=\"custom_hammer\")\n p = plt.plot([-1, 1, 1], [-1, -1, 1], \"o-\")\n plt.grid(True)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/affine_image.ipynb b/_downloads/affine_image.ipynb deleted file mode 120000 index 41a6ab7e883..00000000000 --- a/_downloads/affine_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/affine_image.ipynb \ No newline at end of file diff --git a/_downloads/affine_image.py b/_downloads/affine_image.py deleted file mode 120000 index 19d8796954a..00000000000 --- a/_downloads/affine_image.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/affine_image.py \ No newline at end of file diff --git a/_downloads/agg_buffer.ipynb b/_downloads/agg_buffer.ipynb deleted file mode 120000 index 3837c593814..00000000000 --- a/_downloads/agg_buffer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/agg_buffer.ipynb \ No newline at end of file diff --git a/_downloads/agg_buffer.py b/_downloads/agg_buffer.py deleted file mode 120000 index 632d314b300..00000000000 --- a/_downloads/agg_buffer.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/agg_buffer.py \ No newline at end of file diff --git a/_downloads/agg_buffer_to_array.ipynb b/_downloads/agg_buffer_to_array.ipynb deleted file mode 120000 index 3072976379d..00000000000 --- a/_downloads/agg_buffer_to_array.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/agg_buffer_to_array.ipynb \ No newline at end of file diff --git a/_downloads/agg_buffer_to_array.py b/_downloads/agg_buffer_to_array.py deleted file mode 120000 index e7b35bc4923..00000000000 --- a/_downloads/agg_buffer_to_array.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/agg_buffer_to_array.py \ No newline at end of file diff --git a/_downloads/agg_oo_sgskip.ipynb b/_downloads/agg_oo_sgskip.ipynb deleted file mode 120000 index 31c989e7ee7..00000000000 --- a/_downloads/agg_oo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/agg_oo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/agg_oo_sgskip.py b/_downloads/agg_oo_sgskip.py deleted file mode 120000 index 703e5d9e140..00000000000 --- a/_downloads/agg_oo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/agg_oo_sgskip.py \ No newline at end of file diff --git a/_downloads/align_labels_demo.ipynb b/_downloads/align_labels_demo.ipynb deleted file mode 120000 index 738216b9da0..00000000000 --- a/_downloads/align_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/align_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/align_labels_demo.py b/_downloads/align_labels_demo.py deleted file mode 120000 index 3b7c1433b50..00000000000 --- a/_downloads/align_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/align_labels_demo.py \ No newline at end of file diff --git a/_downloads/align_ylabels.ipynb b/_downloads/align_ylabels.ipynb deleted file mode 120000 index 39eace39d6a..00000000000 --- a/_downloads/align_ylabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/align_ylabels.ipynb \ No newline at end of file diff --git a/_downloads/align_ylabels.py b/_downloads/align_ylabels.py deleted file mode 120000 index 7e221619b43..00000000000 --- a/_downloads/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/align_ylabels.py \ No newline at end of file diff --git a/_downloads/anatomy.ipynb b/_downloads/anatomy.ipynb deleted file mode 120000 index 0b27d83b1b2..00000000000 --- a/_downloads/anatomy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anatomy.ipynb \ No newline at end of file diff --git a/_downloads/anatomy.py b/_downloads/anatomy.py deleted file mode 120000 index cac79690d94..00000000000 --- a/_downloads/anatomy.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anatomy.py \ No newline at end of file diff --git a/_downloads/anchored_artists.ipynb b/_downloads/anchored_artists.ipynb deleted file mode 120000 index 89e72f2e1b7..00000000000 --- a/_downloads/anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/anchored_artists.py b/_downloads/anchored_artists.py deleted file mode 120000 index fc2b73026a6..00000000000 --- a/_downloads/anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_artists.py \ No newline at end of file diff --git a/_downloads/anchored_box01.ipynb b/_downloads/anchored_box01.ipynb deleted file mode 120000 index 2c92d47de9e..00000000000 --- a/_downloads/anchored_box01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box01.ipynb \ No newline at end of file diff --git a/_downloads/anchored_box01.py b/_downloads/anchored_box01.py deleted file mode 120000 index c5694ec0110..00000000000 --- a/_downloads/anchored_box01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box01.py \ No newline at end of file diff --git a/_downloads/anchored_box02.ipynb b/_downloads/anchored_box02.ipynb deleted file mode 120000 index 270673edd1c..00000000000 --- a/_downloads/anchored_box02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box02.ipynb \ No newline at end of file diff --git a/_downloads/anchored_box02.py b/_downloads/anchored_box02.py deleted file mode 120000 index b73a1ff7b24..00000000000 --- a/_downloads/anchored_box02.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box02.py \ No newline at end of file diff --git a/_downloads/anchored_box03.ipynb b/_downloads/anchored_box03.ipynb deleted file mode 120000 index fcb4d27046e..00000000000 --- a/_downloads/anchored_box03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box03.ipynb \ No newline at end of file diff --git a/_downloads/anchored_box03.py b/_downloads/anchored_box03.py deleted file mode 120000 index fd59a4db0e6..00000000000 --- a/_downloads/anchored_box03.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box03.py \ No newline at end of file diff --git a/_downloads/anchored_box04.ipynb b/_downloads/anchored_box04.ipynb deleted file mode 120000 index d0cd4e8b1c2..00000000000 --- a/_downloads/anchored_box04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box04.ipynb \ No newline at end of file diff --git a/_downloads/anchored_box04.py b/_downloads/anchored_box04.py deleted file mode 120000 index 19bd2bf0c2a..00000000000 --- a/_downloads/anchored_box04.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anchored_box04.py \ No newline at end of file diff --git a/_downloads/animate_decay.ipynb b/_downloads/animate_decay.ipynb deleted file mode 120000 index 0e367cc8e80..00000000000 --- a/_downloads/animate_decay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/animate_decay.ipynb \ No newline at end of file diff --git a/_downloads/animate_decay.py b/_downloads/animate_decay.py deleted file mode 120000 index 68c60e68200..00000000000 --- a/_downloads/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/animate_decay.py \ No newline at end of file diff --git a/_downloads/animated_histogram.ipynb b/_downloads/animated_histogram.ipynb deleted file mode 120000 index 2352fd23108..00000000000 --- a/_downloads/animated_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/animated_histogram.ipynb \ No newline at end of file diff --git a/_downloads/animated_histogram.py b/_downloads/animated_histogram.py deleted file mode 120000 index a07325e5b8b..00000000000 --- a/_downloads/animated_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/animated_histogram.py \ No newline at end of file diff --git a/_downloads/animation_demo.ipynb b/_downloads/animation_demo.ipynb deleted file mode 120000 index a1c35d63131..00000000000 --- a/_downloads/animation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/animation_demo.ipynb \ No newline at end of file diff --git a/_downloads/animation_demo.py b/_downloads/animation_demo.py deleted file mode 120000 index b5712f570f1..00000000000 --- a/_downloads/animation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/animation_demo.py \ No newline at end of file diff --git a/_downloads/annotate_explain.ipynb b/_downloads/annotate_explain.ipynb deleted file mode 120000 index 5fad42351d0..00000000000 --- a/_downloads/annotate_explain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_explain.ipynb \ No newline at end of file diff --git a/_downloads/annotate_explain.py b/_downloads/annotate_explain.py deleted file mode 120000 index 0b87c475a22..00000000000 --- a/_downloads/annotate_explain.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_explain.py \ No newline at end of file diff --git a/_downloads/annotate_simple01.ipynb b/_downloads/annotate_simple01.ipynb deleted file mode 120000 index 00181dcd68f..00000000000 --- a/_downloads/annotate_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple01.ipynb \ No newline at end of file diff --git a/_downloads/annotate_simple01.py b/_downloads/annotate_simple01.py deleted file mode 120000 index bcbc5238b10..00000000000 --- a/_downloads/annotate_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple01.py \ No newline at end of file diff --git a/_downloads/annotate_simple02.ipynb b/_downloads/annotate_simple02.ipynb deleted file mode 120000 index 4f9690b11fc..00000000000 --- a/_downloads/annotate_simple02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple02.ipynb \ No newline at end of file diff --git a/_downloads/annotate_simple02.py b/_downloads/annotate_simple02.py deleted file mode 120000 index 6c26130e17b..00000000000 --- a/_downloads/annotate_simple02.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple02.py \ No newline at end of file diff --git a/_downloads/annotate_simple03.ipynb b/_downloads/annotate_simple03.ipynb deleted file mode 120000 index 9e88f476a9d..00000000000 --- a/_downloads/annotate_simple03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple03.ipynb \ No newline at end of file diff --git a/_downloads/annotate_simple03.py b/_downloads/annotate_simple03.py deleted file mode 120000 index 8e5867e4e87..00000000000 --- a/_downloads/annotate_simple03.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple03.py \ No newline at end of file diff --git a/_downloads/annotate_simple04.ipynb b/_downloads/annotate_simple04.ipynb deleted file mode 120000 index e8337e400ad..00000000000 --- a/_downloads/annotate_simple04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple04.ipynb \ No newline at end of file diff --git a/_downloads/annotate_simple04.py b/_downloads/annotate_simple04.py deleted file mode 120000 index 5c181fd4ca8..00000000000 --- a/_downloads/annotate_simple04.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple04.py \ No newline at end of file diff --git a/_downloads/annotate_simple_coord01.ipynb b/_downloads/annotate_simple_coord01.ipynb deleted file mode 120000 index b810df7ad05..00000000000 --- a/_downloads/annotate_simple_coord01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple_coord01.ipynb \ No newline at end of file diff --git a/_downloads/annotate_simple_coord01.py b/_downloads/annotate_simple_coord01.py deleted file mode 120000 index 9c6342febcc..00000000000 --- a/_downloads/annotate_simple_coord01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple_coord01.py \ No newline at end of file diff --git a/_downloads/annotate_simple_coord02.ipynb b/_downloads/annotate_simple_coord02.ipynb deleted file mode 120000 index 7a3790a34fd..00000000000 --- a/_downloads/annotate_simple_coord02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple_coord02.ipynb \ No newline at end of file diff --git a/_downloads/annotate_simple_coord02.py b/_downloads/annotate_simple_coord02.py deleted file mode 120000 index 70743a864eb..00000000000 --- a/_downloads/annotate_simple_coord02.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple_coord02.py \ No newline at end of file diff --git a/_downloads/annotate_simple_coord03.ipynb b/_downloads/annotate_simple_coord03.ipynb deleted file mode 120000 index 6eb4fb8231e..00000000000 --- a/_downloads/annotate_simple_coord03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple_coord03.ipynb \ No newline at end of file diff --git a/_downloads/annotate_simple_coord03.py b/_downloads/annotate_simple_coord03.py deleted file mode 120000 index 147be45a371..00000000000 --- a/_downloads/annotate_simple_coord03.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_simple_coord03.py \ No newline at end of file diff --git a/_downloads/annotate_text_arrow.ipynb b/_downloads/annotate_text_arrow.ipynb deleted file mode 120000 index 1e8f9e71658..00000000000 --- a/_downloads/annotate_text_arrow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_text_arrow.ipynb \ No newline at end of file diff --git a/_downloads/annotate_text_arrow.py b/_downloads/annotate_text_arrow.py deleted file mode 120000 index 615b441245d..00000000000 --- a/_downloads/annotate_text_arrow.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_text_arrow.py \ No newline at end of file diff --git a/_downloads/annotate_transform.ipynb b/_downloads/annotate_transform.ipynb deleted file mode 120000 index fcd49e2ca99..00000000000 --- a/_downloads/annotate_transform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_transform.ipynb \ No newline at end of file diff --git a/_downloads/annotate_transform.py b/_downloads/annotate_transform.py deleted file mode 120000 index 87bd98983e6..00000000000 --- a/_downloads/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_transform.py \ No newline at end of file diff --git a/_downloads/annotate_with_units.ipynb b/_downloads/annotate_with_units.ipynb deleted file mode 120000 index cbe7a54882d..00000000000 --- a/_downloads/annotate_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_with_units.ipynb \ No newline at end of file diff --git a/_downloads/annotate_with_units.py b/_downloads/annotate_with_units.py deleted file mode 120000 index 4cf6004e4f1..00000000000 --- a/_downloads/annotate_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotate_with_units.py \ No newline at end of file diff --git a/_downloads/annotation_basic.ipynb b/_downloads/annotation_basic.ipynb deleted file mode 120000 index 28c7fc5f4ca..00000000000 --- a/_downloads/annotation_basic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotation_basic.ipynb \ No newline at end of file diff --git a/_downloads/annotation_basic.py b/_downloads/annotation_basic.py deleted file mode 120000 index b9707323a42..00000000000 --- a/_downloads/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotation_basic.py \ No newline at end of file diff --git a/_downloads/annotation_demo.ipynb b/_downloads/annotation_demo.ipynb deleted file mode 120000 index 0be6931d5fe..00000000000 --- a/_downloads/annotation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotation_demo.ipynb \ No newline at end of file diff --git a/_downloads/annotation_demo.py b/_downloads/annotation_demo.py deleted file mode 120000 index 37921b86b7d..00000000000 --- a/_downloads/annotation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotation_demo.py \ No newline at end of file diff --git a/_downloads/annotation_polar.ipynb b/_downloads/annotation_polar.ipynb deleted file mode 120000 index daa582d0192..00000000000 --- a/_downloads/annotation_polar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotation_polar.ipynb \ No newline at end of file diff --git a/_downloads/annotation_polar.py b/_downloads/annotation_polar.py deleted file mode 120000 index ea0d3842836..00000000000 --- a/_downloads/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotation_polar.py \ No newline at end of file diff --git a/_downloads/annotations.ipynb b/_downloads/annotations.ipynb deleted file mode 120000 index e8f9f50d3eb..00000000000 --- a/_downloads/annotations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotations.ipynb \ No newline at end of file diff --git a/_downloads/annotations.py b/_downloads/annotations.py deleted file mode 120000 index 154b29bc26d..00000000000 --- a/_downloads/annotations.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/annotations.py \ No newline at end of file diff --git a/_downloads/anscombe.ipynb b/_downloads/anscombe.ipynb deleted file mode 120000 index 4e08238d660..00000000000 --- a/_downloads/anscombe.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anscombe.ipynb \ No newline at end of file diff --git a/_downloads/anscombe.py b/_downloads/anscombe.py deleted file mode 120000 index e7cefbb31d6..00000000000 --- a/_downloads/anscombe.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/anscombe.py \ No newline at end of file diff --git a/_downloads/arctest.ipynb b/_downloads/arctest.ipynb deleted file mode 120000 index 501b1bf1db6..00000000000 --- a/_downloads/arctest.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arctest.ipynb \ No newline at end of file diff --git a/_downloads/arctest.py b/_downloads/arctest.py deleted file mode 120000 index 1df966d9961..00000000000 --- a/_downloads/arctest.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arctest.py \ No newline at end of file diff --git a/_downloads/arrow_demo.ipynb b/_downloads/arrow_demo.ipynb deleted file mode 120000 index 63912e95ade..00000000000 --- a/_downloads/arrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/arrow_demo.py b/_downloads/arrow_demo.py deleted file mode 120000 index 3e11ca041d3..00000000000 --- a/_downloads/arrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arrow_demo.py \ No newline at end of file diff --git a/_downloads/arrow_guide.ipynb b/_downloads/arrow_guide.ipynb deleted file mode 120000 index 5ed0c23caff..00000000000 --- a/_downloads/arrow_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arrow_guide.ipynb \ No newline at end of file diff --git a/_downloads/arrow_guide.py b/_downloads/arrow_guide.py deleted file mode 120000 index 32e97fc3a4b..00000000000 --- a/_downloads/arrow_guide.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arrow_guide.py \ No newline at end of file diff --git a/_downloads/arrow_simple_demo.ipynb b/_downloads/arrow_simple_demo.ipynb deleted file mode 120000 index 8c8e1fd8141..00000000000 --- a/_downloads/arrow_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arrow_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/arrow_simple_demo.py b/_downloads/arrow_simple_demo.py deleted file mode 120000 index 38eb7308062..00000000000 --- a/_downloads/arrow_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/arrow_simple_demo.py \ No newline at end of file diff --git a/_downloads/artist_reference.ipynb b/_downloads/artist_reference.ipynb deleted file mode 120000 index 33d285305bd..00000000000 --- a/_downloads/artist_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/artist_reference.ipynb \ No newline at end of file diff --git a/_downloads/artist_reference.py b/_downloads/artist_reference.py deleted file mode 120000 index 1812eca2cde..00000000000 --- a/_downloads/artist_reference.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/artist_reference.py \ No newline at end of file diff --git a/_downloads/artist_tests.ipynb b/_downloads/artist_tests.ipynb deleted file mode 120000 index 51e18a89774..00000000000 --- a/_downloads/artist_tests.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/artist_tests.ipynb \ No newline at end of file diff --git a/_downloads/artist_tests.py b/_downloads/artist_tests.py deleted file mode 120000 index 52f2d18329c..00000000000 --- a/_downloads/artist_tests.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/artist_tests.py \ No newline at end of file diff --git a/_downloads/artists.ipynb b/_downloads/artists.ipynb deleted file mode 120000 index b7a9c97dcfa..00000000000 --- a/_downloads/artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/artists.ipynb \ No newline at end of file diff --git a/_downloads/artists.py b/_downloads/artists.py deleted file mode 120000 index 5f329cdecfc..00000000000 --- a/_downloads/artists.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/artists.py \ No newline at end of file diff --git a/_downloads/aspect_loglog.ipynb b/_downloads/aspect_loglog.ipynb deleted file mode 120000 index ceead8e9816..00000000000 --- a/_downloads/aspect_loglog.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/aspect_loglog.ipynb \ No newline at end of file diff --git a/_downloads/aspect_loglog.py b/_downloads/aspect_loglog.py deleted file mode 120000 index 8b0d94f511b..00000000000 --- a/_downloads/aspect_loglog.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/aspect_loglog.py \ No newline at end of file diff --git a/_downloads/auto_subplots_adjust.ipynb b/_downloads/auto_subplots_adjust.ipynb deleted file mode 120000 index dc9182ff36e..00000000000 --- a/_downloads/auto_subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/auto_subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/auto_subplots_adjust.py b/_downloads/auto_subplots_adjust.py deleted file mode 120000 index 8ded3bb72be..00000000000 --- a/_downloads/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/auto_subplots_adjust.py \ No newline at end of file diff --git a/_downloads/auto_ticks.ipynb b/_downloads/auto_ticks.ipynb deleted file mode 120000 index e655c1baef6..00000000000 --- a/_downloads/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/auto_ticks.py b/_downloads/auto_ticks.py deleted file mode 120000 index 5bb00820379..00000000000 --- a/_downloads/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/auto_ticks.py \ No newline at end of file diff --git a/_downloads/autowrap.ipynb b/_downloads/autowrap.ipynb deleted file mode 120000 index 3e3fda1aa57..00000000000 --- a/_downloads/autowrap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/autowrap.ipynb \ No newline at end of file diff --git a/_downloads/autowrap.py b/_downloads/autowrap.py deleted file mode 120000 index 3947ee12a3d..00000000000 --- a/_downloads/autowrap.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/autowrap.py \ No newline at end of file diff --git a/_downloads/axes_demo.ipynb b/_downloads/axes_demo.ipynb deleted file mode 120000 index df4f16eec25..00000000000 --- a/_downloads/axes_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_demo.ipynb \ No newline at end of file diff --git a/_downloads/axes_demo.py b/_downloads/axes_demo.py deleted file mode 120000 index 6163477be10..00000000000 --- a/_downloads/axes_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_demo.py \ No newline at end of file diff --git a/_downloads/axes_grid.ipynb b/_downloads/axes_grid.ipynb deleted file mode 120000 index f7ce305a598..00000000000 --- a/_downloads/axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/axes_grid.py b/_downloads/axes_grid.py deleted file mode 120000 index b20e1beaf75..00000000000 --- a/_downloads/axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_grid.py \ No newline at end of file diff --git a/_downloads/axes_margins.ipynb b/_downloads/axes_margins.ipynb deleted file mode 120000 index d83aeeac9e2..00000000000 --- a/_downloads/axes_margins.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_margins.ipynb \ No newline at end of file diff --git a/_downloads/axes_margins.py b/_downloads/axes_margins.py deleted file mode 120000 index ccde1c30577..00000000000 --- a/_downloads/axes_margins.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_margins.py \ No newline at end of file diff --git a/_downloads/axes_props.ipynb b/_downloads/axes_props.ipynb deleted file mode 120000 index 2462189074f..00000000000 --- a/_downloads/axes_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_props.ipynb \ No newline at end of file diff --git a/_downloads/axes_props.py b/_downloads/axes_props.py deleted file mode 120000 index 47d04aede99..00000000000 --- a/_downloads/axes_props.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_props.py \ No newline at end of file diff --git a/_downloads/axes_zoom_effect.ipynb b/_downloads/axes_zoom_effect.ipynb deleted file mode 120000 index a837e66e12a..00000000000 --- a/_downloads/axes_zoom_effect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_zoom_effect.ipynb \ No newline at end of file diff --git a/_downloads/axes_zoom_effect.py b/_downloads/axes_zoom_effect.py deleted file mode 120000 index 18f7747c97c..00000000000 --- a/_downloads/axes_zoom_effect.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axes_zoom_effect.py \ No newline at end of file diff --git a/_downloads/axhspan_demo.ipynb b/_downloads/axhspan_demo.ipynb deleted file mode 120000 index 3c61afcfb88..00000000000 --- a/_downloads/axhspan_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axhspan_demo.ipynb \ No newline at end of file diff --git a/_downloads/axhspan_demo.py b/_downloads/axhspan_demo.py deleted file mode 120000 index 9d845dcbd24..00000000000 --- a/_downloads/axhspan_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axhspan_demo.py \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step01.ipynb b/_downloads/axis_direction_demo_step01.ipynb deleted file mode 120000 index 3108a4620bc..00000000000 --- a/_downloads/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step01.ipynb \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step01.py b/_downloads/axis_direction_demo_step01.py deleted file mode 120000 index 89f708912d5..00000000000 --- a/_downloads/axis_direction_demo_step01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step01.py \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step02.ipynb b/_downloads/axis_direction_demo_step02.ipynb deleted file mode 120000 index 43c3f70f695..00000000000 --- a/_downloads/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step02.ipynb \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step02.py b/_downloads/axis_direction_demo_step02.py deleted file mode 120000 index b413e1d0220..00000000000 --- a/_downloads/axis_direction_demo_step02.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step02.py \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step03.ipynb b/_downloads/axis_direction_demo_step03.ipynb deleted file mode 120000 index 2683ec10f7a..00000000000 --- a/_downloads/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step03.ipynb \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step03.py b/_downloads/axis_direction_demo_step03.py deleted file mode 120000 index d60badcad00..00000000000 --- a/_downloads/axis_direction_demo_step03.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step03.py \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step04.ipynb b/_downloads/axis_direction_demo_step04.ipynb deleted file mode 120000 index 3f66b3bd15b..00000000000 --- a/_downloads/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step04.ipynb \ No newline at end of file diff --git a/_downloads/axis_direction_demo_step04.py b/_downloads/axis_direction_demo_step04.py deleted file mode 120000 index 3481a774d73..00000000000 --- a/_downloads/axis_direction_demo_step04.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_direction_demo_step04.py \ No newline at end of file diff --git a/_downloads/axis_equal_demo.ipynb b/_downloads/axis_equal_demo.ipynb deleted file mode 120000 index dd7fa547daf..00000000000 --- a/_downloads/axis_equal_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_equal_demo.ipynb \ No newline at end of file diff --git a/_downloads/axis_equal_demo.py b/_downloads/axis_equal_demo.py deleted file mode 120000 index fe020c4e0ed..00000000000 --- a/_downloads/axis_equal_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axis_equal_demo.py \ No newline at end of file diff --git a/_downloads/axisartist.ipynb b/_downloads/axisartist.ipynb deleted file mode 120000 index 6055b9cf53a..00000000000 --- a/_downloads/axisartist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axisartist.ipynb \ No newline at end of file diff --git a/_downloads/axisartist.py b/_downloads/axisartist.py deleted file mode 120000 index b6816d71de2..00000000000 --- a/_downloads/axisartist.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/axisartist.py \ No newline at end of file diff --git a/_downloads/b003b93547fafc996af5d56f19232254/trifinder_event_demo.ipynb b/_downloads/b003b93547fafc996af5d56f19232254/trifinder_event_demo.ipynb deleted file mode 120000 index 1a9f44e4e5d..00000000000 --- a/_downloads/b003b93547fafc996af5d56f19232254/trifinder_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b003b93547fafc996af5d56f19232254/trifinder_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/b0068d7164d7457f7d5c5a33d838f930/rain.py b/_downloads/b0068d7164d7457f7d5c5a33d838f930/rain.py deleted file mode 100644 index 6fe60ff0520..00000000000 --- a/_downloads/b0068d7164d7457f7d5c5a33d838f930/rain.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -=============== -Rain simulation -=============== - -Simulates rain drops on a surface by animating the scale and opacity -of 50 scatter points. - -Author: Nicolas P. Rougier -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.animation import FuncAnimation - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# Create new Figure and an Axes which fills it. -fig = plt.figure(figsize=(7, 7)) -ax = fig.add_axes([0, 0, 1, 1], frameon=False) -ax.set_xlim(0, 1), ax.set_xticks([]) -ax.set_ylim(0, 1), ax.set_yticks([]) - -# Create rain data -n_drops = 50 -rain_drops = np.zeros(n_drops, dtype=[('position', float, 2), - ('size', float, 1), - ('growth', float, 1), - ('color', float, 4)]) - -# Initialize the raindrops in random positions and with -# random growth rates. -rain_drops['position'] = np.random.uniform(0, 1, (n_drops, 2)) -rain_drops['growth'] = np.random.uniform(50, 200, n_drops) - -# Construct the scatter which we will update during animation -# as the raindrops develop. -scat = ax.scatter(rain_drops['position'][:, 0], rain_drops['position'][:, 1], - s=rain_drops['size'], lw=0.5, edgecolors=rain_drops['color'], - facecolors='none') - - -def update(frame_number): - # Get an index which we can use to re-spawn the oldest raindrop. - current_index = frame_number % n_drops - - # Make all colors more transparent as time progresses. - rain_drops['color'][:, 3] -= 1.0/len(rain_drops) - rain_drops['color'][:, 3] = np.clip(rain_drops['color'][:, 3], 0, 1) - - # Make all circles bigger. - rain_drops['size'] += rain_drops['growth'] - - # Pick a new position for oldest rain drop, resetting its size, - # color and growth factor. - rain_drops['position'][current_index] = np.random.uniform(0, 1, 2) - rain_drops['size'][current_index] = 5 - rain_drops['color'][current_index] = (0, 0, 0, 1) - rain_drops['growth'][current_index] = np.random.uniform(50, 200) - - # Update the scatter collection, with the new colors, sizes and positions. - scat.set_edgecolors(rain_drops['color']) - scat.set_sizes(rain_drops['size']) - scat.set_offsets(rain_drops['position']) - - -# Construct the animation, using the update function as the animation director. -animation = FuncAnimation(fig, update, interval=10) -plt.show() diff --git a/_downloads/b02aef34d918b144e2333be655138229/annotate_transform.ipynb b/_downloads/b02aef34d918b144e2333be655138229/annotate_transform.ipynb deleted file mode 120000 index 754b5539eb7..00000000000 --- a/_downloads/b02aef34d918b144e2333be655138229/annotate_transform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b02aef34d918b144e2333be655138229/annotate_transform.ipynb \ No newline at end of file diff --git a/_downloads/b03f63eda908b98097dc48a9c6c3fbb2/stix_fonts_demo.py b/_downloads/b03f63eda908b98097dc48a9c6c3fbb2/stix_fonts_demo.py deleted file mode 120000 index 1037b037472..00000000000 --- a/_downloads/b03f63eda908b98097dc48a9c6c3fbb2/stix_fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b03f63eda908b98097dc48a9c6c3fbb2/stix_fonts_demo.py \ No newline at end of file diff --git a/_downloads/b041a0c16bab1149a1ed12c78e0e7e45/gtk_spreadsheet_sgskip.py b/_downloads/b041a0c16bab1149a1ed12c78e0e7e45/gtk_spreadsheet_sgskip.py deleted file mode 100644 index bbeb2b2c7e9..00000000000 --- a/_downloads/b041a0c16bab1149a1ed12c78e0e7e45/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -=============== -GTK Spreadsheet -=============== - -Example of embedding Matplotlib in an application and interacting with a -treeview to store data. Double click on an entry to update plot data. -""" - -import gi -gi.require_version('Gtk', '3.0') -gi.require_version('Gdk', '3.0') -from gi.repository import Gtk, Gdk - -from matplotlib.backends.backend_gtk3agg import FigureCanvas # or gtk3cairo. - -from numpy.random import random -from matplotlib.figure import Figure - - -class DataManager(Gtk.Window): - num_rows, num_cols = 20, 10 - - data = random((num_rows, num_cols)) - - def __init__(self): - super().__init__() - self.set_default_size(600, 600) - self.connect('destroy', lambda win: Gtk.main_quit()) - - self.set_title('GtkListStore demo') - self.set_border_width(8) - - vbox = Gtk.VBox(homogeneous=False, spacing=8) - self.add(vbox) - - label = Gtk.Label(label='Double click a row to plot the data') - - vbox.pack_start(label, False, False, 0) - - sw = Gtk.ScrolledWindow() - sw.set_shadow_type(Gtk.ShadowType.ETCHED_IN) - sw.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) - vbox.pack_start(sw, True, True, 0) - - model = self.create_model() - - self.treeview = Gtk.TreeView(model=model) - - # Matplotlib stuff - fig = Figure(figsize=(6, 4)) - - self.canvas = FigureCanvas(fig) # a Gtk.DrawingArea - vbox.pack_start(self.canvas, True, True, 0) - ax = fig.add_subplot(111) - self.line, = ax.plot(self.data[0, :], 'go') # plot the first row - - self.treeview.connect('row-activated', self.plot_row) - sw.add(self.treeview) - - self.add_columns() - - self.add_events(Gdk.EventMask.BUTTON_PRESS_MASK | - Gdk.EventMask.KEY_PRESS_MASK | - Gdk.EventMask.KEY_RELEASE_MASK) - - def plot_row(self, treeview, path, view_column): - ind, = path # get the index into data - points = self.data[ind, :] - self.line.set_ydata(points) - self.canvas.draw() - - def add_columns(self): - for i in range(self.num_cols): - column = Gtk.TreeViewColumn(str(i), Gtk.CellRendererText(), text=i) - self.treeview.append_column(column) - - def create_model(self): - types = [float] * self.num_cols - store = Gtk.ListStore(*types) - for row in self.data: - store.append(tuple(row)) - return store - - -manager = DataManager() -manager.show_all() -Gtk.main() diff --git a/_downloads/b047032cf62d3ac8a0705adf298a6fb8/pong_sgskip.py b/_downloads/b047032cf62d3ac8a0705adf298a6fb8/pong_sgskip.py deleted file mode 120000 index 03c12734c8e..00000000000 --- a/_downloads/b047032cf62d3ac8a0705adf298a6fb8/pong_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b047032cf62d3ac8a0705adf298a6fb8/pong_sgskip.py \ No newline at end of file diff --git a/_downloads/b04fb403578f8d9d2329d3abbb516064/spine_placement_demo.ipynb b/_downloads/b04fb403578f8d9d2329d3abbb516064/spine_placement_demo.ipynb deleted file mode 100644 index 887a9679c4e..00000000000 --- a/_downloads/b04fb403578f8d9d2329d3abbb516064/spine_placement_demo.ipynb +++ /dev/null @@ -1,101 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spine Placement Demo\n\n\nAdjusting the location and appearance of axis spines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nx = np.linspace(-np.pi, np.pi, 100)\ny = 2 * np.sin(x)\n\nax = fig.add_subplot(2, 2, 1)\nax.set_title('centered spines')\nax.plot(x, y)\nax.spines['left'].set_position('center')\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position('center')\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')\n\nax = fig.add_subplot(2, 2, 2)\nax.set_title('zeroed spines')\nax.plot(x, y)\nax.spines['left'].set_position('zero')\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position('zero')\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')\n\nax = fig.add_subplot(2, 2, 3)\nax.set_title('spines at axes (0.6, 0.1)')\nax.plot(x, y)\nax.spines['left'].set_position(('axes', 0.6))\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position(('axes', 0.1))\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')\n\nax = fig.add_subplot(2, 2, 4)\nax.set_title('spines at data (1, 2)')\nax.plot(x, y)\nax.spines['left'].set_position(('data', 1))\nax.spines['right'].set_color('none')\nax.spines['bottom'].set_position(('data', 2))\nax.spines['top'].set_color('none')\nax.spines['left'].set_smart_bounds(True)\nax.spines['bottom'].set_smart_bounds(True)\nax.xaxis.set_ticks_position('bottom')\nax.yaxis.set_ticks_position('left')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define a method that adjusts the location of the axis spines\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def adjust_spines(ax, spines):\n for loc, spine in ax.spines.items():\n if loc in spines:\n spine.set_position(('outward', 10)) # outward by 10 points\n spine.set_smart_bounds(True)\n else:\n spine.set_color('none') # don't draw spine\n\n # turn off ticks where there is no spine\n if 'left' in spines:\n ax.yaxis.set_ticks_position('left')\n else:\n # no yaxis ticks\n ax.yaxis.set_ticks([])\n\n if 'bottom' in spines:\n ax.xaxis.set_ticks_position('bottom')\n else:\n # no xaxis ticks\n ax.xaxis.set_ticks([])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create another figure using our new ``adjust_spines`` method\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nx = np.linspace(0, 2 * np.pi, 100)\ny = 2 * np.sin(x)\n\nax = fig.add_subplot(2, 2, 1)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, ['left'])\n\nax = fig.add_subplot(2, 2, 2)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, [])\n\nax = fig.add_subplot(2, 2, 3)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, ['left', 'bottom'])\n\nax = fig.add_subplot(2, 2, 4)\nax.plot(x, y, clip_on=False)\nadjust_spines(ax, ['bottom'])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b0609e3dd1095c24d01637b006efddaa/rectangle_selector.py b/_downloads/b0609e3dd1095c24d01637b006efddaa/rectangle_selector.py deleted file mode 100644 index cbdaf802619..00000000000 --- a/_downloads/b0609e3dd1095c24d01637b006efddaa/rectangle_selector.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -================== -Rectangle Selector -================== - -Do a mouseclick somewhere, move the mouse to some destination, release -the button. This class gives click- and release-events and also draws -a line or a box from the click-point to the actual mouseposition -(within the same axes) until the button is released. Within the -method 'self.ignore()' it is checked whether the button from eventpress -and eventrelease are the same. -""" -from matplotlib.widgets import RectangleSelector -import numpy as np -import matplotlib.pyplot as plt - - -def line_select_callback(eclick, erelease): - 'eclick and erelease are the press and release events' - x1, y1 = eclick.xdata, eclick.ydata - x2, y2 = erelease.xdata, erelease.ydata - print("(%3.2f, %3.2f) --> (%3.2f, %3.2f)" % (x1, y1, x2, y2)) - print(" The button you used were: %s %s" % (eclick.button, erelease.button)) - - -def toggle_selector(event): - print(' Key pressed.') - if event.key in ['Q', 'q'] and toggle_selector.RS.active: - print(' RectangleSelector deactivated.') - toggle_selector.RS.set_active(False) - if event.key in ['A', 'a'] and not toggle_selector.RS.active: - print(' RectangleSelector activated.') - toggle_selector.RS.set_active(True) - - -fig, current_ax = plt.subplots() # make a new plotting range -N = 100000 # If N is large one can see -x = np.linspace(0.0, 10.0, N) # improvement by use blitting! - -plt.plot(x, +np.sin(.2*np.pi*x), lw=3.5, c='b', alpha=.7) # plot something -plt.plot(x, +np.cos(.2*np.pi*x), lw=3.5, c='r', alpha=.5) -plt.plot(x, -np.sin(.2*np.pi*x), lw=3.5, c='g', alpha=.3) - -print("\n click --> release") - -# drawtype is 'box' or 'line' or 'none' -toggle_selector.RS = RectangleSelector(current_ax, line_select_callback, - drawtype='box', useblit=True, - button=[1, 3], # don't use middle button - minspanx=5, minspany=5, - spancoords='pixels', - interactive=True) -plt.connect('key_press_event', toggle_selector) -plt.show() diff --git a/_downloads/b06c2c7a9629b9289195222ee5a74e0d/simple_anim.py b/_downloads/b06c2c7a9629b9289195222ee5a74e0d/simple_anim.py deleted file mode 120000 index cd427ad771b..00000000000 --- a/_downloads/b06c2c7a9629b9289195222ee5a74e0d/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b06c2c7a9629b9289195222ee5a74e0d/simple_anim.py \ No newline at end of file diff --git a/_downloads/b06cfd1e6be5ea581b3c161f1896f740/fill.ipynb b/_downloads/b06cfd1e6be5ea581b3c161f1896f740/fill.ipynb deleted file mode 100644 index 19dc73ec3bb..00000000000 --- a/_downloads/b06cfd1e6be5ea581b3c161f1896f740/fill.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Filled polygon\n\n\n`~.Axes.fill()` draws a filled polygon based based on lists of point\ncoordinates *x*, *y*.\n\nThis example uses the `Koch snowflake`_ as an example polygon.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef koch_snowflake(order, scale=10):\n \"\"\"\n Return two lists x, y of point coordinates of the Koch snowflake.\n\n Arguments\n ---------\n order : int\n The recursion depth.\n scale : float\n The extent of the snowflake (edge length of the base triangle).\n \"\"\"\n def _koch_snowflake_complex(order):\n if order == 0:\n # initial triangle\n angles = np.array([0, 120, 240]) + 90\n return scale / np.sqrt(3) * np.exp(np.deg2rad(angles) * 1j)\n else:\n ZR = 0.5 - 0.5j * np.sqrt(3) / 3\n\n p1 = _koch_snowflake_complex(order - 1) # start points\n p2 = np.roll(p1, shift=-1) # end points\n dp = p2 - p1 # connection vectors\n\n new_points = np.empty(len(p1) * 4, dtype=np.complex128)\n new_points[::4] = p1\n new_points[1::4] = p1 + dp / 3\n new_points[2::4] = p1 + dp * ZR\n new_points[3::4] = p1 + dp / 3 * 2\n return new_points\n\n points = _koch_snowflake_complex(order)\n x, y = points.real, points.imag\n return x, y" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Basic usage:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x, y = koch_snowflake(order=5)\n\nplt.figure(figsize=(8, 8))\nplt.axis('equal')\nplt.fill(x, y)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use keyword arguments *facecolor* and *edgecolor* to modify the the colors\nof the polygon. Since the *linewidth* of the edge is 0 in the default\nMatplotlib style, we have to set it as well for the edge to become visible.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x, y = koch_snowflake(order=2)\n\nfig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(9, 3),\n subplot_kw={'aspect': 'equal'})\nax1.fill(x, y)\nax2.fill(x, y, facecolor='lightsalmon', edgecolor='orangered', linewidth=3)\nax3.fill(x, y, facecolor='none', edgecolor='purple', linewidth=3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.fill\nmatplotlib.pyplot.fill\nmatplotlib.axes.Axes.axis\nmatplotlib.pyplot.axis" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b072440743260d1d4884c4728444108f/radar_chart.ipynb b/_downloads/b072440743260d1d4884c4728444108f/radar_chart.ipynb deleted file mode 120000 index ad7cc7480ac..00000000000 --- a/_downloads/b072440743260d1d4884c4728444108f/radar_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b072440743260d1d4884c4728444108f/radar_chart.ipynb \ No newline at end of file diff --git a/_downloads/b0777e74228d4d4c7a0445756a32280b/demo_text_rotation_mode.ipynb b/_downloads/b0777e74228d4d4c7a0445756a32280b/demo_text_rotation_mode.ipynb deleted file mode 120000 index 308c286b2dd..00000000000 --- a/_downloads/b0777e74228d4d4c7a0445756a32280b/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b0777e74228d4d4c7a0445756a32280b/demo_text_rotation_mode.ipynb \ No newline at end of file diff --git a/_downloads/b084d0e62b21bf540ada6c684c6a2ef9/font_family_rc_sgskip.py b/_downloads/b084d0e62b21bf540ada6c684c6a2ef9/font_family_rc_sgskip.py deleted file mode 100644 index 8cb4b620cfa..00000000000 --- a/_downloads/b084d0e62b21bf540ada6c684c6a2ef9/font_family_rc_sgskip.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -=========================== -Configuring the font family -=========================== - -You can explicitly set which font family is picked up for a given font -style (e.g., 'serif', 'sans-serif', or 'monospace'). - -In the example below, we only allow one font family (Tahoma) for the -sans-serif font style. You the default family with the font.family rc -param, e.g.,:: - - rcParams['font.family'] = 'sans-serif' - -and for the font.family you set a list of font styles to try to find -in order:: - - rcParams['font.sans-serif'] = ['Tahoma', 'DejaVu Sans', - 'Lucida Grande', 'Verdana'] - -""" - - -from matplotlib import rcParams -rcParams['font.family'] = 'sans-serif' -rcParams['font.sans-serif'] = ['Tahoma'] -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() -ax.plot([1, 2, 3], label='test') - -ax.legend() -plt.show() diff --git a/_downloads/b0857128f7eceadab81240baf9185710/patheffects_guide.py b/_downloads/b0857128f7eceadab81240baf9185710/patheffects_guide.py deleted file mode 100644 index 4f2c89cf331..00000000000 --- a/_downloads/b0857128f7eceadab81240baf9185710/patheffects_guide.py +++ /dev/null @@ -1,119 +0,0 @@ -""" -================== -Path effects guide -================== - -Defining paths that objects follow on a canvas. - -.. py:module:: matplotlib.patheffects - - -Matplotlib's :mod:`~matplotlib.patheffects` module provides functionality to -apply a multiple draw stage to any Artist which can be rendered via a -:class:`~matplotlib.path.Path`. - -Artists which can have a path effect applied to them include :class:`~matplotlib.patches.Patch`, -:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.collections.Collection` and even -:class:`~matplotlib.text.Text`. Each artist's path effects can be controlled via the -``set_path_effects`` method (:class:`~matplotlib.artist.Artist.set_path_effects`), which takes -an iterable of :class:`AbstractPathEffect` instances. - -The simplest path effect is the :class:`Normal` effect, which simply -draws the artist without any effect: -""" - -import matplotlib.pyplot as plt -import matplotlib.patheffects as path_effects - -fig = plt.figure(figsize=(5, 1.5)) -text = fig.text(0.5, 0.5, 'Hello path effects world!\nThis is the normal ' - 'path effect.\nPretty dull, huh?', - ha='center', va='center', size=20) -text.set_path_effects([path_effects.Normal()]) -plt.show() - -############################################################################### -# Whilst the plot doesn't look any different to what you would expect without any path -# effects, the drawing of the text now been changed to use the path effects -# framework, opening up the possibilities for more interesting examples. -# -# Adding a shadow -# --------------- -# -# A far more interesting path effect than :class:`Normal` is the -# drop-shadow, which we can apply to any of our path based artists. The classes -# :class:`SimplePatchShadow` and -# :class:`SimpleLineShadow` do precisely this by drawing either a filled -# patch or a line patch below the original artist: - -import matplotlib.patheffects as path_effects - -text = plt.text(0.5, 0.5, 'Hello path effects world!', - path_effects=[path_effects.withSimplePatchShadow()]) - -plt.plot([0, 3, 2, 5], linewidth=5, color='blue', - path_effects=[path_effects.SimpleLineShadow(), - path_effects.Normal()]) -plt.show() - -############################################################################### -# Notice the two approaches to setting the path effects in this example. The -# first uses the ``with*`` classes to include the desired functionality automatically -# followed with the "normal" effect, whereas the latter explicitly defines the two path -# effects to draw. -# -# Making an artist stand out -# -------------------------- -# -# One nice way of making artists visually stand out is to draw an outline in a bold -# color below the actual artist. The :class:`Stroke` path effect -# makes this a relatively simple task: - -fig = plt.figure(figsize=(7, 1)) -text = fig.text(0.5, 0.5, 'This text stands out because of\n' - 'its black border.', color='white', - ha='center', va='center', size=30) -text.set_path_effects([path_effects.Stroke(linewidth=3, foreground='black'), - path_effects.Normal()]) -plt.show() - -############################################################################### -# It is important to note that this effect only works because we have drawn the text -# path twice; once with a thick black line, and then once with the original text -# path on top. -# -# You may have noticed that the keywords to :class:`Stroke` and -# :class:`SimplePatchShadow` and :class:`SimpleLineShadow` are not the usual Artist -# keywords (such as ``facecolor`` and ``edgecolor`` etc.). This is because with these -# path effects we are operating at lower level of matplotlib. In fact, the keywords -# which are accepted are those for a :class:`matplotlib.backend_bases.GraphicsContextBase` -# instance, which have been designed for making it easy to create new backends - and not -# for its user interface. -# -# -# Greater control of the path effect artist -# ----------------------------------------- -# -# As already mentioned, some of the path effects operate at a lower level than most users -# will be used to, meaning that setting keywords such as ``facecolor`` and ``edgecolor`` -# raise an AttributeError. Luckily there is a generic :class:`PathPatchEffect` path effect -# which creates a :class:`~matplotlib.patches.PathPatch` class with the original path. -# The keywords to this effect are identical to those of :class:`~matplotlib.patches.PathPatch`: - -fig = plt.figure(figsize=(8, 1)) -t = fig.text(0.02, 0.5, 'Hatch shadow', fontsize=75, weight=1000, va='center') -t.set_path_effects([path_effects.PathPatchEffect(offset=(4, -4), hatch='xxxx', - facecolor='gray'), - path_effects.PathPatchEffect(edgecolor='white', linewidth=1.1, - facecolor='black')]) -plt.show() - -############################################################################### -# .. -# Headings for future consideration: -# -# Implementing a custom path effect -# --------------------------------- -# -# What is going on under the hood -# -------------------------------- diff --git a/_downloads/b086a7d4d9e5b05fb542af491eafaa73/embedding_in_wx4_sgskip.ipynb b/_downloads/b086a7d4d9e5b05fb542af491eafaa73/embedding_in_wx4_sgskip.ipynb deleted file mode 100644 index bcf58afd1a4..00000000000 --- a/_downloads/b086a7d4d9e5b05fb542af491eafaa73/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #4\n==================\n\nAn example of how to use wx or wxagg in an application with a custom toolbar.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar\nfrom matplotlib.backends.backend_wx import _load_bitmap\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\nimport wx\n\n\nclass MyNavigationToolbar(NavigationToolbar):\n \"\"\"Extend the default wx toolbar with your own event handlers.\"\"\"\n\n def __init__(self, canvas, cankill):\n NavigationToolbar.__init__(self, canvas)\n\n # for simplicity I'm going to reuse a bitmap from wx, you'll\n # probably want to add your own.\n tool = self.AddTool(wx.ID_ANY, 'Click me', _load_bitmap('back.png'),\n 'Activate custom contol')\n self.Bind(wx.EVT_TOOL, self._on_custom, id=tool.GetId())\n\n def _on_custom(self, evt):\n # add some text to the axes in a random location in axes (0,1)\n # coords) with a random color\n\n # get the axes\n ax = self.canvas.figure.axes[0]\n\n # generate a random location can color\n x, y = np.random.rand(2)\n rgb = np.random.rand(3)\n\n # add the text and draw\n ax.text(x, y, 'You clicked me',\n transform=ax.transAxes,\n color=rgb)\n self.canvas.draw()\n evt.Skip()\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self):\n wx.Frame.__init__(self, None, -1,\n 'CanvasFrame', size=(550, 350))\n\n self.figure = Figure(figsize=(5, 4), dpi=100)\n self.axes = self.figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2 * np.pi * t)\n\n self.axes.plot(t, s)\n\n self.canvas = FigureCanvas(self, -1, self.figure)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.sizer.Add(self.canvas, 1, wx.TOP | wx.LEFT | wx.EXPAND)\n\n self.toolbar = MyNavigationToolbar(self.canvas, True)\n self.toolbar.Realize()\n # By adding toolbar in sizer, we are able to put it at the bottom\n # of the frame - so appearance is closer to GTK version.\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n\n # update the axes menu on the toolbar\n self.toolbar.update()\n self.SetSizer(self.sizer)\n self.Fit()\n\n\nclass App(wx.App):\n def OnInit(self):\n 'Create the main window and insert the custom frame'\n frame = CanvasFrame()\n frame.Show(True)\n\n return True\n\napp = App(0)\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b08b1b2e2c982fc3b6e46ac6636258fd/tick-locators.py b/_downloads/b08b1b2e2c982fc3b6e46ac6636258fd/tick-locators.py deleted file mode 120000 index 497ee58d8f9..00000000000 --- a/_downloads/b08b1b2e2c982fc3b6e46ac6636258fd/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b08b1b2e2c982fc3b6e46ac6636258fd/tick-locators.py \ No newline at end of file diff --git a/_downloads/b098fee96290edcaefeac234f2adbd36/date_concise_formatter.py b/_downloads/b098fee96290edcaefeac234f2adbd36/date_concise_formatter.py deleted file mode 100644 index da172c597cf..00000000000 --- a/_downloads/b098fee96290edcaefeac234f2adbd36/date_concise_formatter.py +++ /dev/null @@ -1,183 +0,0 @@ -""" -================================================ -Formatting date ticks using ConciseDateFormatter -================================================ - -Finding good tick values and formatting the ticks for an axis that -has date data is often a challenge. `~.dates.ConciseDateFormatter` is -meant to improve the strings chosen for the ticklabels, and to minimize -the strings used in those tick labels as much as possible. - -.. note:: - - This formatter is a candidate to become the default date tick formatter - in future versions of Matplotlib. Please report any issues or - suggestions for improvement to the github repository or mailing list. - -""" -import datetime -import matplotlib.pyplot as plt -import matplotlib.dates as mdates -import numpy as np - -############################################################################# -# First, the default formatter. - -base = datetime.datetime(2005, 2, 1) -dates = np.array([base + datetime.timedelta(hours=(2 * i)) - for i in range(732)]) -N = len(dates) -np.random.seed(19680801) -y = np.cumsum(np.random.randn(N)) - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) -lims = [(np.datetime64('2005-02'), np.datetime64('2005-04')), - (np.datetime64('2005-02-03'), np.datetime64('2005-02-15')), - (np.datetime64('2005-02-03 11:00'), np.datetime64('2005-02-04 13:20'))] -for nn, ax in enumerate(axs): - ax.plot(dates, y) - ax.set_xlim(lims[nn]) - # rotate_labels... - for label in ax.get_xticklabels(): - label.set_rotation(40) - label.set_horizontalalignment('right') -axs[0].set_title('Default Date Formatter') -plt.show() - -############################################################################# -# The default date formater is quite verbose, so we have the option of -# using `~.dates.ConciseDateFormatter`, as shown below. Note that -# for this example the labels do not need to be rotated as they do for the -# default formatter because the labels are as small as possible. - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) -for nn, ax in enumerate(axs): - locator = mdates.AutoDateLocator(minticks=3, maxticks=7) - formatter = mdates.ConciseDateFormatter(locator) - ax.xaxis.set_major_locator(locator) - ax.xaxis.set_major_formatter(formatter) - - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter') - -plt.show() - -############################################################################# -# If all calls to axes that have dates are to be made using this converter, -# it is probably most convenient to use the units registry where you do -# imports: - -import matplotlib.units as munits -converter = mdates.ConciseDateConverter() -munits.registry[np.datetime64] = converter -munits.registry[datetime.date] = converter -munits.registry[datetime.datetime] = converter - -fig, axs = plt.subplots(3, 1, figsize=(6, 6), constrained_layout=True) -for nn, ax in enumerate(axs): - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter') - -plt.show() - -############################################################################# -# Localization of date formats -# ============================ -# -# Dates formats can be localized if the default formats are not desirable by -# manipulating one of three lists of strings. -# -# The ``formatter.formats`` list of formats is for the normal tick labels, -# There are six levels: years, months, days, hours, minutes, seconds. -# The ``formatter.offset_formats`` is how the "offset" string on the right -# of the axis is formatted. This is usually much more verbose than the tick -# labels. Finally, the ``formatter.zero_formats`` are the formats of the -# ticks that are "zeros". These are tick values that are either the first of -# the year, month, or day of month, or the zeroth hour, minute, or second. -# These are usually the same as the format of -# the ticks a level above. For example if the axis limits mean the ticks are -# mostly days, then we label 1 Mar 2005 simply with a "Mar". If the axis -# limits are mostly hours, we label Feb 4 00:00 as simply "Feb-4". -# -# Note that these format lists can also be passed to `.ConciseDateFormatter` -# as optional kwargs. -# -# Here we modify the labels to be "day month year", instead of the ISO -# "year month day": - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) - -for nn, ax in enumerate(axs): - locator = mdates.AutoDateLocator() - formatter = mdates.ConciseDateFormatter(locator) - formatter.formats = ['%y', # ticks are mostly years - '%b', # ticks are mostly months - '%d', # ticks are mostly days - '%H:%M', # hrs - '%H:%M', # min - '%S.%f', ] # secs - # these are mostly just the level above... - formatter.zero_formats = [''] + formatter.formats[:-1] - # ...except for ticks that are mostly hours, then it is nice to have - # month-day: - formatter.zero_formats[3] = '%d-%b' - - formatter.offset_formats = ['', - '%Y', - '%b %Y', - '%d %b %Y', - '%d %b %Y', - '%d %b %Y %H:%M', ] - ax.xaxis.set_major_locator(locator) - ax.xaxis.set_major_formatter(formatter) - - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter') - -plt.show() - -############################################################################# -# Registering a converter with localization -# ========================================= -# -# `.ConciseDateFormatter` doesn't have rcParams entries, but localization -# can be accomplished by passing kwargs to `~.ConciseDateConverter` and -# registering the datatypes you will use with the units registry: - -import datetime - -formats = ['%y', # ticks are mostly years - '%b', # ticks are mostly months - '%d', # ticks are mostly days - '%H:%M', # hrs - '%H:%M', # min - '%S.%f', ] # secs -# these can be the same, except offset by one level.... -zero_formats = [''] + formats[:-1] -# ...except for ticks that are mostly hours, then its nice to have month-day -zero_formats[3] = '%d-%b' -offset_formats = ['', - '%Y', - '%b %Y', - '%d %b %Y', - '%d %b %Y', - '%d %b %Y %H:%M', ] - -converter = mdates.ConciseDateConverter(formats=formats, - zero_formats=zero_formats, - offset_formats=offset_formats) - -munits.registry[np.datetime64] = converter -munits.registry[datetime.date] = converter -munits.registry[datetime.datetime] = converter - -fig, axs = plt.subplots(3, 1, constrained_layout=True, figsize=(6, 6)) -for nn, ax in enumerate(axs): - ax.plot(dates, y) - ax.set_xlim(lims[nn]) -axs[0].set_title('Concise Date Formatter registered non-default') - -plt.show() diff --git a/_downloads/b0a91ad840eadf7342c2f79811560889/demo_parasite_axes2.ipynb b/_downloads/b0a91ad840eadf7342c2f79811560889/demo_parasite_axes2.ipynb deleted file mode 120000 index 0375e7e05a3..00000000000 --- a/_downloads/b0a91ad840eadf7342c2f79811560889/demo_parasite_axes2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b0a91ad840eadf7342c2f79811560889/demo_parasite_axes2.ipynb \ No newline at end of file diff --git a/_downloads/b0acfada19808125308426c2026a6c7c/tick-formatters.ipynb b/_downloads/b0acfada19808125308426c2026a6c7c/tick-formatters.ipynb deleted file mode 120000 index 2aebc1e1fea..00000000000 --- a/_downloads/b0acfada19808125308426c2026a6c7c/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b0acfada19808125308426c2026a6c7c/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/b0c84dc6b02333de141e31ce7e3f5133/load_converter.ipynb b/_downloads/b0c84dc6b02333de141e31ce7e3f5133/load_converter.ipynb deleted file mode 120000 index d2b780ebf14..00000000000 --- a/_downloads/b0c84dc6b02333de141e31ce7e3f5133/load_converter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b0c84dc6b02333de141e31ce7e3f5133/load_converter.ipynb \ No newline at end of file diff --git a/_downloads/b0cd9c746fa64bdeede6a7305ef1a328/pie_features.py b/_downloads/b0cd9c746fa64bdeede6a7305ef1a328/pie_features.py deleted file mode 120000 index c2e8e7ba61c..00000000000 --- a/_downloads/b0cd9c746fa64bdeede6a7305ef1a328/pie_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b0cd9c746fa64bdeede6a7305ef1a328/pie_features.py \ No newline at end of file diff --git a/_downloads/b0cdd0ea4591c10ebadc349778ec64e5/keyword_plotting.py b/_downloads/b0cdd0ea4591c10ebadc349778ec64e5/keyword_plotting.py deleted file mode 100644 index c7aa93e0f7b..00000000000 --- a/_downloads/b0cdd0ea4591c10ebadc349778ec64e5/keyword_plotting.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -====================== -Plotting with keywords -====================== - -There are some instances where you have data in a format that lets you -access particular variables with strings. For example, with -:class:`numpy.recarray` or :class:`pandas.DataFrame`. - -Matplotlib allows you provide such an object with the ``data`` keyword -argument. If provided, then you may generate plots with the strings -corresponding to these variables. -""" - -import numpy as np -import matplotlib.pyplot as plt -np.random.seed(19680801) - -data = {'a': np.arange(50), - 'c': np.random.randint(0, 50, 50), - 'd': np.random.randn(50)} -data['b'] = data['a'] + 10 * np.random.randn(50) -data['d'] = np.abs(data['d']) * 100 - -fig, ax = plt.subplots() -ax.scatter('a', 'b', c='c', s='d', data=data) -ax.set(xlabel='entry a', ylabel='entry b') -plt.show() diff --git a/_downloads/b0e4b0e0cb31c481b4c44c43bd2c1781/surface3d_radial.ipynb b/_downloads/b0e4b0e0cb31c481b4c44c43bd2c1781/surface3d_radial.ipynb deleted file mode 100644 index f8582bac8af..00000000000 --- a/_downloads/b0e4b0e0cb31c481b4c44c43bd2c1781/surface3d_radial.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D surface with polar coordinates\n\n\nDemonstrates plotting a surface defined in polar coordinates.\nUses the reversed version of the YlGnBu color map.\nAlso demonstrates writing axis labels with latex math mode.\n\nExample contributed by Armin Moser.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Create the mesh in polar coordinates and compute corresponding Z.\nr = np.linspace(0, 1.25, 50)\np = np.linspace(0, 2*np.pi, 50)\nR, P = np.meshgrid(r, p)\nZ = ((R**2 - 1)**2)\n\n# Express the mesh in the cartesian system.\nX, Y = R*np.cos(P), R*np.sin(P)\n\n# Plot the surface.\nax.plot_surface(X, Y, Z, cmap=plt.cm.YlGnBu_r)\n\n# Tweak the limits and add latex math labels.\nax.set_zlim(0, 1)\nax.set_xlabel(r'$\\phi_\\mathrm{real}$')\nax.set_ylabel(r'$\\phi_\\mathrm{im}$')\nax.set_zlabel(r'$V(\\phi)$')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b0f00c60148ad17e46f97734d26648ea/errorbar_limits.py b/_downloads/b0f00c60148ad17e46f97734d26648ea/errorbar_limits.py deleted file mode 120000 index 107f7769e61..00000000000 --- a/_downloads/b0f00c60148ad17e46f97734d26648ea/errorbar_limits.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b0f00c60148ad17e46f97734d26648ea/errorbar_limits.py \ No newline at end of file diff --git a/_downloads/b0f04a4e37d68415d527ddf4594f75d9/image_masked.ipynb b/_downloads/b0f04a4e37d68415d527ddf4594f75d9/image_masked.ipynb deleted file mode 120000 index d7299072513..00000000000 --- a/_downloads/b0f04a4e37d68415d527ddf4594f75d9/image_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b0f04a4e37d68415d527ddf4594f75d9/image_masked.ipynb \ No newline at end of file diff --git a/_downloads/b0f6548b9a7b5cf53abe9a41ec2d7019/text_intro.py b/_downloads/b0f6548b9a7b5cf53abe9a41ec2d7019/text_intro.py deleted file mode 120000 index 90c03e4d9ab..00000000000 --- a/_downloads/b0f6548b9a7b5cf53abe9a41ec2d7019/text_intro.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b0f6548b9a7b5cf53abe9a41ec2d7019/text_intro.py \ No newline at end of file diff --git a/_downloads/b0fde8c04d12663c4ae47c7111f12cea/fill_between_demo.py b/_downloads/b0fde8c04d12663c4ae47c7111f12cea/fill_between_demo.py deleted file mode 120000 index ebedd89a0a4..00000000000 --- a/_downloads/b0fde8c04d12663c4ae47c7111f12cea/fill_between_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b0fde8c04d12663c4ae47c7111f12cea/fill_between_demo.py \ No newline at end of file diff --git a/_downloads/b103443caee347a6c181633d56f259a9/anchored_box04.ipynb b/_downloads/b103443caee347a6c181633d56f259a9/anchored_box04.ipynb deleted file mode 120000 index 606a6846061..00000000000 --- a/_downloads/b103443caee347a6c181633d56f259a9/anchored_box04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b103443caee347a6c181633d56f259a9/anchored_box04.ipynb \ No newline at end of file diff --git a/_downloads/b111004322fba9f34a874b5ba112701c/fonts_demo_kw.ipynb b/_downloads/b111004322fba9f34a874b5ba112701c/fonts_demo_kw.ipynb deleted file mode 120000 index df59a856006..00000000000 --- a/_downloads/b111004322fba9f34a874b5ba112701c/fonts_demo_kw.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b111004322fba9f34a874b5ba112701c/fonts_demo_kw.ipynb \ No newline at end of file diff --git a/_downloads/b114cd90aa33b5d36e156c4c6a3ed77d/contourf_demo.py b/_downloads/b114cd90aa33b5d36e156c4c6a3ed77d/contourf_demo.py deleted file mode 100644 index 6f3460f948a..00000000000 --- a/_downloads/b114cd90aa33b5d36e156c4c6a3ed77d/contourf_demo.py +++ /dev/null @@ -1,130 +0,0 @@ -""" -============= -Contourf Demo -============= - -How to use the :meth:`.axes.Axes.contourf` method to create filled contour plots. -""" -import numpy as np -import matplotlib.pyplot as plt - -origin = 'lower' - -delta = 0.025 - -x = y = np.arange(-3.0, 3.01, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -nr, nc = Z.shape - -# put NaNs in one corner: -Z[-nr // 6:, -nc // 6:] = np.nan -# contourf will convert these to masked - - -Z = np.ma.array(Z) -# mask another corner: -Z[:nr // 6, :nc // 6] = np.ma.masked - -# mask a circle in the middle: -interior = np.sqrt(X**2 + Y**2) < 0.5 -Z[interior] = np.ma.masked - -# We are using automatic selection of contour levels; -# this is usually not such a good idea, because they don't -# occur on nice boundaries, but we do it here for purposes -# of illustration. - -fig1, ax2 = plt.subplots(constrained_layout=True) -CS = ax2.contourf(X, Y, Z, 10, cmap=plt.cm.bone, origin=origin) - -# Note that in the following, we explicitly pass in a subset of -# the contour levels used for the filled contours. Alternatively, -# We could pass in additional levels to provide extra resolution, -# or leave out the levels kwarg to use all of the original levels. - -CS2 = ax2.contour(CS, levels=CS.levels[::2], colors='r', origin=origin) - -ax2.set_title('Nonsense (3 masked regions)') -ax2.set_xlabel('word length anomaly') -ax2.set_ylabel('sentence length anomaly') - -# Make a colorbar for the ContourSet returned by the contourf call. -cbar = fig1.colorbar(CS) -cbar.ax.set_ylabel('verbosity coefficient') -# Add the contour line levels to the colorbar -cbar.add_lines(CS2) - -fig2, ax2 = plt.subplots(constrained_layout=True) -# Now make a contour plot with the levels specified, -# and with the colormap generated automatically from a list -# of colors. -levels = [-1.5, -1, -0.5, 0, 0.5, 1] -CS3 = ax2.contourf(X, Y, Z, levels, - colors=('r', 'g', 'b'), - origin=origin, - extend='both') -# Our data range extends outside the range of levels; make -# data below the lowest contour level yellow, and above the -# highest level cyan: -CS3.cmap.set_under('yellow') -CS3.cmap.set_over('cyan') - -CS4 = ax2.contour(X, Y, Z, levels, - colors=('k',), - linewidths=(3,), - origin=origin) -ax2.set_title('Listed colors (3 masked regions)') -ax2.clabel(CS4, fmt='%2.1f', colors='w', fontsize=14) - -# Notice that the colorbar command gets all the information it -# needs from the ContourSet object, CS3. -fig2.colorbar(CS3) - -# Illustrate all 4 possible "extend" settings: -extends = ["neither", "both", "min", "max"] -cmap = plt.cm.get_cmap("winter") -cmap.set_under("magenta") -cmap.set_over("yellow") -# Note: contouring simply excludes masked or nan regions, so -# instead of using the "bad" colormap value for them, it draws -# nothing at all in them. Therefore the following would have -# no effect: -# cmap.set_bad("red") - -fig, axs = plt.subplots(2, 2, constrained_layout=True) - -for ax, extend in zip(axs.ravel(), extends): - cs = ax.contourf(X, Y, Z, levels, cmap=cmap, extend=extend, origin=origin) - fig.colorbar(cs, ax=ax, shrink=0.9) - ax.set_title("extend = %s" % extend) - ax.locator_params(nbins=4) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.axes.Axes.clabel -matplotlib.pyplot.clabel -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.Colormap -matplotlib.colors.Colormap.set_bad -matplotlib.colors.Colormap.set_under -matplotlib.colors.Colormap.set_over diff --git a/_downloads/b12095cadca065936a22019675f933dd/customized_violin.py b/_downloads/b12095cadca065936a22019675f933dd/customized_violin.py deleted file mode 120000 index c7a69079390..00000000000 --- a/_downloads/b12095cadca065936a22019675f933dd/customized_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b12095cadca065936a22019675f933dd/customized_violin.py \ No newline at end of file diff --git a/_downloads/b12bfc14d92dd36d8decf9defe62ccbb/cursor.ipynb b/_downloads/b12bfc14d92dd36d8decf9defe62ccbb/cursor.ipynb deleted file mode 100644 index 48baf38491a..00000000000 --- a/_downloads/b12bfc14d92dd36d8decf9defe62ccbb/cursor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Cursor\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.widgets import Cursor\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig = plt.figure(figsize=(8, 6))\nax = fig.add_subplot(111, facecolor='#FFFFCC')\n\nx, y = 4*(np.random.rand(2, 100) - .5)\nax.plot(x, y, 'o')\nax.set_xlim(-2, 2)\nax.set_ylim(-2, 2)\n\n# Set useblit=True on most backends for enhanced performance.\ncursor = Cursor(ax, useblit=True, color='red', linewidth=2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b13288c4f458390513a0cddaad83ceb2/mri_demo.ipynb b/_downloads/b13288c4f458390513a0cddaad83ceb2/mri_demo.ipynb deleted file mode 120000 index 3464554067a..00000000000 --- a/_downloads/b13288c4f458390513a0cddaad83ceb2/mri_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b13288c4f458390513a0cddaad83ceb2/mri_demo.ipynb \ No newline at end of file diff --git a/_downloads/b132b50e086ad5373eb2a39dd5c3113a/joinstyle.py b/_downloads/b132b50e086ad5373eb2a39dd5c3113a/joinstyle.py deleted file mode 120000 index ec18faa32bc..00000000000 --- a/_downloads/b132b50e086ad5373eb2a39dd5c3113a/joinstyle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b132b50e086ad5373eb2a39dd5c3113a/joinstyle.py \ No newline at end of file diff --git a/_downloads/b13432aabdacc8ef8c02b6dca8ca994c/log_demo.py b/_downloads/b13432aabdacc8ef8c02b6dca8ca994c/log_demo.py deleted file mode 120000 index 4b6a4f7be15..00000000000 --- a/_downloads/b13432aabdacc8ef8c02b6dca8ca994c/log_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b13432aabdacc8ef8c02b6dca8ca994c/log_demo.py \ No newline at end of file diff --git a/_downloads/b13d5e3ec1a6364ef03b1bb9597665cd/demo_colorbar_with_axes_divider.ipynb b/_downloads/b13d5e3ec1a6364ef03b1bb9597665cd/demo_colorbar_with_axes_divider.ipynb deleted file mode 120000 index 213a8669b91..00000000000 --- a/_downloads/b13d5e3ec1a6364ef03b1bb9597665cd/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b13d5e3ec1a6364ef03b1bb9597665cd/demo_colorbar_with_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/b142fb3e6897e196942876e595e56bef/plot_streamplot.ipynb b/_downloads/b142fb3e6897e196942876e595e56bef/plot_streamplot.ipynb deleted file mode 120000 index e4a3e93e39e..00000000000 --- a/_downloads/b142fb3e6897e196942876e595e56bef/plot_streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b142fb3e6897e196942876e595e56bef/plot_streamplot.ipynb \ No newline at end of file diff --git a/_downloads/b145c0bdb2b7f62193bbaf345a499590/horizontal_barchart_distribution.py b/_downloads/b145c0bdb2b7f62193bbaf345a499590/horizontal_barchart_distribution.py deleted file mode 120000 index 0aaf9279dbd..00000000000 --- a/_downloads/b145c0bdb2b7f62193bbaf345a499590/horizontal_barchart_distribution.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b145c0bdb2b7f62193bbaf345a499590/horizontal_barchart_distribution.py \ No newline at end of file diff --git a/_downloads/b14ac217e62e1d982c3370b00ad52227/fig_axes_labels_simple.py b/_downloads/b14ac217e62e1d982c3370b00ad52227/fig_axes_labels_simple.py deleted file mode 120000 index a7007e71bc4..00000000000 --- a/_downloads/b14ac217e62e1d982c3370b00ad52227/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b14ac217e62e1d982c3370b00ad52227/fig_axes_labels_simple.py \ No newline at end of file diff --git a/_downloads/b14f56c0ed0bf29c1b150290df6f369a/bar_of_pie.py b/_downloads/b14f56c0ed0bf29c1b150290df6f369a/bar_of_pie.py deleted file mode 120000 index f794b92eff9..00000000000 --- a/_downloads/b14f56c0ed0bf29c1b150290df6f369a/bar_of_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b14f56c0ed0bf29c1b150290df6f369a/bar_of_pie.py \ No newline at end of file diff --git a/_downloads/b15b1c278429fb898e96071a8262d070/annotate_simple_coord03.py b/_downloads/b15b1c278429fb898e96071a8262d070/annotate_simple_coord03.py deleted file mode 120000 index 1ae25be1888..00000000000 --- a/_downloads/b15b1c278429fb898e96071a8262d070/annotate_simple_coord03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b15b1c278429fb898e96071a8262d070/annotate_simple_coord03.py \ No newline at end of file diff --git a/_downloads/b15bf21c8efcf810f4ad66223b76f398/annotate_simple_coord02.py b/_downloads/b15bf21c8efcf810f4ad66223b76f398/annotate_simple_coord02.py deleted file mode 100644 index 869b5a63ba0..00000000000 --- a/_downloads/b15bf21c8efcf810f4ad66223b76f398/annotate_simple_coord02.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -======================= -Annotate Simple Coord02 -======================= - -""" - -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 2)) -an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) - -an2 = ax.annotate("Test 2", xy=(0.5, 1.), xycoords=an1, - xytext=(0.5, 1.1), textcoords=(an1, "axes fraction"), - va="bottom", ha="center", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) - -fig.subplots_adjust(top=0.83) -plt.show() diff --git a/_downloads/b15bf8af2e5ae07d31b8a62336c402f6/subplot.py b/_downloads/b15bf8af2e5ae07d31b8a62336c402f6/subplot.py deleted file mode 100644 index 8457fba0992..00000000000 --- a/_downloads/b15bf8af2e5ae07d31b8a62336c402f6/subplot.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -================= -Multiple subplots -================= - -Simple demo with multiple subplots. -""" -import numpy as np -import matplotlib.pyplot as plt - - -x1 = np.linspace(0.0, 5.0) -x2 = np.linspace(0.0, 2.0) - -y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) -y2 = np.cos(2 * np.pi * x2) - -plt.subplot(2, 1, 1) -plt.plot(x1, y1, 'o-') -plt.title('A tale of 2 subplots') -plt.ylabel('Damped oscillation') - -plt.subplot(2, 1, 2) -plt.plot(x2, y2, '.-') -plt.xlabel('time (s)') -plt.ylabel('Undamped') - -plt.show() diff --git a/_downloads/b15db7f5b24291b354e391b3aea48b1b/surface3d_3.py b/_downloads/b15db7f5b24291b354e391b3aea48b1b/surface3d_3.py deleted file mode 120000 index eb295df2bf3..00000000000 --- a/_downloads/b15db7f5b24291b354e391b3aea48b1b/surface3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b15db7f5b24291b354e391b3aea48b1b/surface3d_3.py \ No newline at end of file diff --git a/_downloads/b15fb36c8363b7a5a64f43a09762f860/voxels_rgb.py b/_downloads/b15fb36c8363b7a5a64f43a09762f860/voxels_rgb.py deleted file mode 120000 index 50af8c1d136..00000000000 --- a/_downloads/b15fb36c8363b7a5a64f43a09762f860/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b15fb36c8363b7a5a64f43a09762f860/voxels_rgb.py \ No newline at end of file diff --git a/_downloads/b160354905914164cb31a4990063f8c9/patch_collection.py b/_downloads/b160354905914164cb31a4990063f8c9/patch_collection.py deleted file mode 120000 index 968ff5ebdbd..00000000000 --- a/_downloads/b160354905914164cb31a4990063f8c9/patch_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b160354905914164cb31a4990063f8c9/patch_collection.py \ No newline at end of file diff --git a/_downloads/b16ce021cb7f9ac8f732993258b592b5/pyplot_three.py b/_downloads/b16ce021cb7f9ac8f732993258b592b5/pyplot_three.py deleted file mode 120000 index 14d1028676f..00000000000 --- a/_downloads/b16ce021cb7f9ac8f732993258b592b5/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b16ce021cb7f9ac8f732993258b592b5/pyplot_three.py \ No newline at end of file diff --git a/_downloads/b16ce2d42a1e4e70989cdb15761c8ede/custom_shaded_3d_surface.ipynb b/_downloads/b16ce2d42a1e4e70989cdb15761c8ede/custom_shaded_3d_surface.ipynb deleted file mode 120000 index 3aa2af69512..00000000000 --- a/_downloads/b16ce2d42a1e4e70989cdb15761c8ede/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b16ce2d42a1e4e70989cdb15761c8ede/custom_shaded_3d_surface.ipynb \ No newline at end of file diff --git a/_downloads/b16d1a22859839a43ccfeb7c4022f001/tricontour_demo.ipynb b/_downloads/b16d1a22859839a43ccfeb7c4022f001/tricontour_demo.ipynb deleted file mode 120000 index adfdd17615f..00000000000 --- a/_downloads/b16d1a22859839a43ccfeb7c4022f001/tricontour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b16d1a22859839a43ccfeb7c4022f001/tricontour_demo.ipynb \ No newline at end of file diff --git a/_downloads/b1776427eb1a1053f66cb6125742401c/gallery_python.zip b/_downloads/b1776427eb1a1053f66cb6125742401c/gallery_python.zip deleted file mode 120000 index 6a121899e16..00000000000 --- a/_downloads/b1776427eb1a1053f66cb6125742401c/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b1776427eb1a1053f66cb6125742401c/gallery_python.zip \ No newline at end of file diff --git a/_downloads/b185cff1c20d788ca1017b451a0cd519/text_intro.ipynb b/_downloads/b185cff1c20d788ca1017b451a0cd519/text_intro.ipynb deleted file mode 120000 index b991f4aae91..00000000000 --- a/_downloads/b185cff1c20d788ca1017b451a0cd519/text_intro.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b185cff1c20d788ca1017b451a0cd519/text_intro.ipynb \ No newline at end of file diff --git a/_downloads/b18dda392bf3c794ff27eddbf6ad9443/span_regions.py b/_downloads/b18dda392bf3c794ff27eddbf6ad9443/span_regions.py deleted file mode 120000 index 4127e7a8ba3..00000000000 --- a/_downloads/b18dda392bf3c794ff27eddbf6ad9443/span_regions.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b18dda392bf3c794ff27eddbf6ad9443/span_regions.py \ No newline at end of file diff --git a/_downloads/b193ac70eb4b025497f9094019ace52b/xkcd.py b/_downloads/b193ac70eb4b025497f9094019ace52b/xkcd.py deleted file mode 100644 index 22fec6cfdc8..00000000000 --- a/_downloads/b193ac70eb4b025497f9094019ace52b/xkcd.py +++ /dev/null @@ -1,66 +0,0 @@ -""" -==== -XKCD -==== - -Shows how to create an xkcd-like plot. -""" -import matplotlib.pyplot as plt -import numpy as np - -############################################################################### - -with plt.xkcd(): - # Based on "Stove Ownership" from XKCD by Randall Munroe - # https://xkcd.com/418/ - - fig = plt.figure() - ax = fig.add_axes((0.1, 0.2, 0.8, 0.7)) - ax.spines['right'].set_color('none') - ax.spines['top'].set_color('none') - ax.set_xticks([]) - ax.set_yticks([]) - ax.set_ylim([-30, 10]) - - data = np.ones(100) - data[70:] -= np.arange(30) - - ax.annotate( - 'THE DAY I REALIZED\nI COULD COOK BACON\nWHENEVER I WANTED', - xy=(70, 1), arrowprops=dict(arrowstyle='->'), xytext=(15, -10)) - - ax.plot(data) - - ax.set_xlabel('time') - ax.set_ylabel('my overall health') - fig.text( - 0.5, 0.05, - '"Stove Ownership" from xkcd by Randall Munroe', - ha='center') - -############################################################################### - -with plt.xkcd(): - # Based on "The Data So Far" from XKCD by Randall Munroe - # https://xkcd.com/373/ - - fig = plt.figure() - ax = fig.add_axes((0.1, 0.2, 0.8, 0.7)) - ax.bar([0, 1], [0, 100], 0.25) - ax.spines['right'].set_color('none') - ax.spines['top'].set_color('none') - ax.xaxis.set_ticks_position('bottom') - ax.set_xticks([0, 1]) - ax.set_xticklabels(['CONFIRMED BY\nEXPERIMENT', 'REFUTED BY\nEXPERIMENT']) - ax.set_xlim([-0.5, 1.5]) - ax.set_yticks([]) - ax.set_ylim([0, 110]) - - ax.set_title("CLAIMS OF SUPERNATURAL POWERS") - - fig.text( - 0.5, 0.05, - '"The Data So Far" from xkcd by Randall Munroe', - ha='center') - -plt.show() diff --git a/_downloads/b1955243db9b6c9ca529257658247ae0/mri_with_eeg.py b/_downloads/b1955243db9b6c9ca529257658247ae0/mri_with_eeg.py deleted file mode 120000 index 2c7cce20052..00000000000 --- a/_downloads/b1955243db9b6c9ca529257658247ae0/mri_with_eeg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b1955243db9b6c9ca529257658247ae0/mri_with_eeg.py \ No newline at end of file diff --git a/_downloads/b19d86251aea30061514e17fba258dab/nan_test.py b/_downloads/b19d86251aea30061514e17fba258dab/nan_test.py deleted file mode 120000 index bb592ffdcd1..00000000000 --- a/_downloads/b19d86251aea30061514e17fba258dab/nan_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b19d86251aea30061514e17fba258dab/nan_test.py \ No newline at end of file diff --git a/_downloads/b1b11452d29d8d6d9ecdbc75235bbbab/annotations.py b/_downloads/b1b11452d29d8d6d9ecdbc75235bbbab/annotations.py deleted file mode 100644 index 278816dff19..00000000000 --- a/_downloads/b1b11452d29d8d6d9ecdbc75235bbbab/annotations.py +++ /dev/null @@ -1,610 +0,0 @@ -r""" -Annotations -=========== - -Annotating text with Matplotlib. - -.. contents:: Table of Contents - :depth: 3 - -.. _annotations-tutorial: - -Basic annotation -================ - -The uses of the basic :func:`~matplotlib.pyplot.text` will place text -at an arbitrary position on the Axes. A common use case of text is to -annotate some feature of the plot, and the -:func:`~matplotlib.Axes.annotate` method provides helper functionality -to make annotations easy. In an annotation, there are two points to -consider: the location being annotated represented by the argument -``xy`` and the location of the text ``xytext``. Both of these -arguments are ``(x,y)`` tuples. - -.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_basic_001.png - :target: ../../gallery/pyplots/annotation_basic.html - :align: center - :scale: 50 - - Annotation Basic - -In this example, both the ``xy`` (arrow tip) and ``xytext`` locations -(text location) are in data coordinates. There are a variety of other -coordinate systems one can choose -- you can specify the coordinate -system of ``xy`` and ``xytext`` with one of the following strings for -``xycoords`` and ``textcoords`` (default is 'data') - -==================== ==================================================== -argument coordinate system -==================== ==================================================== - 'figure points' points from the lower left corner of the figure - 'figure pixels' pixels from the lower left corner of the figure - 'figure fraction' 0,0 is lower left of figure and 1,1 is upper right - 'axes points' points from lower left corner of axes - 'axes pixels' pixels from lower left corner of axes - 'axes fraction' 0,0 is lower left of axes and 1,1 is upper right - 'data' use the axes data coordinate system -==================== ==================================================== - -For example to place the text coordinates in fractional axes -coordinates, one could do:: - - ax.annotate('local max', xy=(3, 1), xycoords='data', - xytext=(0.8, 0.95), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top', - ) - -For physical coordinate systems (points or pixels) the origin is the -bottom-left of the figure or axes. - -Optionally, you can enable drawing of an arrow from the text to the annotated -point by giving a dictionary of arrow properties in the optional keyword -argument ``arrowprops``. - - -==================== ===================================================== -``arrowprops`` key description -==================== ===================================================== -width the width of the arrow in points -frac the fraction of the arrow length occupied by the head -headwidth the width of the base of the arrow head in points -shrink move the tip and base some percent away from - the annotated point and text - -\*\*kwargs any key for :class:`matplotlib.patches.Polygon`, - e.g., ``facecolor`` -==================== ===================================================== - - -In the example below, the ``xy`` point is in native coordinates -(``xycoords`` defaults to 'data'). For a polar axes, this is in -(theta, radius) space. The text in this example is placed in the -fractional figure coordinate system. :class:`matplotlib.text.Text` -keyword args like ``horizontalalignment``, ``verticalalignment`` and -``fontsize`` are passed from `~matplotlib.Axes.annotate` to the -``Text`` instance. - -.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_polar_001.png - :target: ../../gallery/pyplots/annotation_polar.html - :align: center - :scale: 50 - - Annotation Polar - -For more on all the wild and wonderful things you can do with -annotations, including fancy arrows, see :ref:`plotting-guide-annotation` -and :doc:`/gallery/text_labels_and_annotations/annotation_demo`. - - -Do not proceed unless you have already read :ref:`annotations-tutorial`, -:func:`~matplotlib.pyplot.text` and :func:`~matplotlib.pyplot.annotate`! - - -.. _plotting-guide-annotation: - -Advanced Annotation -=================== - - -Annotating with Text with Box ------------------------------ - -Let's start with a simple example. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_text_arrow_001.png - :target: ../../gallery/userdemo/annotate_text_arrow.html - :align: center - :scale: 50 - - Annotate Text Arrow - - -The :func:`~matplotlib.pyplot.text` function in the pyplot module (or -text method of the Axes class) takes bbox keyword argument, and when -given, a box around the text is drawn. :: - - bbox_props = dict(boxstyle="rarrow,pad=0.3", fc="cyan", ec="b", lw=2) - t = ax.text(0, 0, "Direction", ha="center", va="center", rotation=45, - size=15, - bbox=bbox_props) - - -The patch object associated with the text can be accessed by:: - - bb = t.get_bbox_patch() - -The return value is an instance of FancyBboxPatch and the patch -properties like facecolor, edgewidth, etc. can be accessed and -modified as usual. To change the shape of the box, use the *set_boxstyle* -method. :: - - bb.set_boxstyle("rarrow", pad=0.6) - -The arguments are the name of the box style with its attributes as -keyword arguments. Currently, following box styles are implemented. - - ========== ============== ========================== - Class Name Attrs - ========== ============== ========================== - Circle ``circle`` pad=0.3 - DArrow ``darrow`` pad=0.3 - LArrow ``larrow`` pad=0.3 - RArrow ``rarrow`` pad=0.3 - Round ``round`` pad=0.3,rounding_size=None - Round4 ``round4`` pad=0.3,rounding_size=None - Roundtooth ``roundtooth`` pad=0.3,tooth_size=None - Sawtooth ``sawtooth`` pad=0.3,tooth_size=None - Square ``square`` pad=0.3 - ========== ============== ========================== - -.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_fancybox_demo_001.png - :target: ../../gallery/shapes_and_collections/fancybox_demo.html - :align: center - :scale: 50 - - Fancybox Demo - - -Note that the attribute arguments can be specified within the style -name with separating comma (this form can be used as "boxstyle" value -of bbox argument when initializing the text instance) :: - - bb.set_boxstyle("rarrow,pad=0.6") - - - - -Annotating with Arrow ---------------------- - -The :func:`~matplotlib.pyplot.annotate` function in the pyplot module -(or annotate method of the Axes class) is used to draw an arrow -connecting two points on the plot. :: - - ax.annotate("Annotation", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='offset points', - ) - -This annotates a point at ``xy`` in the given coordinate (``xycoords``) -with the text at ``xytext`` given in ``textcoords``. Often, the -annotated point is specified in the *data* coordinate and the annotating -text in *offset points*. -See :func:`~matplotlib.pyplot.annotate` for available coordinate systems. - -An arrow connecting two points (xy & xytext) can be optionally drawn by -specifying the ``arrowprops`` argument. To draw only an arrow, use -empty string as the first argument. :: - - ax.annotate("", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc3"), - ) - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple01_001.png - :target: ../../gallery/userdemo/annotate_simple01.html - :align: center - :scale: 50 - - Annotate Simple01 - -The arrow drawing takes a few steps. - -1. a connecting path between two points are created. This is - controlled by ``connectionstyle`` key value. - -2. If patch object is given (*patchA* & *patchB*), the path is clipped to - avoid the patch. - -3. The path is further shrunk by given amount of pixels (*shrinkA* - & *shrinkB*) - -4. The path is transmuted to arrow patch, which is controlled by the - ``arrowstyle`` key value. - - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_explain_001.png - :target: ../../gallery/userdemo/annotate_explain.html - :align: center - :scale: 50 - - Annotate Explain - - -The creation of the connecting path between two points is controlled by -``connectionstyle`` key and the following styles are available. - - ========== ============================================= - Name Attrs - ========== ============================================= - ``angle`` angleA=90,angleB=0,rad=0.0 - ``angle3`` angleA=90,angleB=0 - ``arc`` angleA=0,angleB=0,armA=None,armB=None,rad=0.0 - ``arc3`` rad=0.0 - ``bar`` armA=0.0,armB=0.0,fraction=0.3,angle=None - ========== ============================================= - -Note that "3" in ``angle3`` and ``arc3`` is meant to indicate that the -resulting path is a quadratic spline segment (three control -points). As will be discussed below, some arrow style options can only -be used when the connecting path is a quadratic spline. - -The behavior of each connection style is (limitedly) demonstrated in the -example below. (Warning : The behavior of the ``bar`` style is currently not -well defined, it may be changed in the future). - -.. figure:: ../../gallery/userdemo/images/sphx_glr_connectionstyle_demo_001.png - :target: ../../gallery/userdemo/connectionstyle_demo.html - :align: center - :scale: 50 - - Connectionstyle Demo - - -The connecting path (after clipping and shrinking) is then mutated to -an arrow patch, according to the given ``arrowstyle``. - - ========== ============================================= - Name Attrs - ========== ============================================= - ``-`` None - ``->`` head_length=0.4,head_width=0.2 - ``-[`` widthB=1.0,lengthB=0.2,angleB=None - ``|-|`` widthA=1.0,widthB=1.0 - ``-|>`` head_length=0.4,head_width=0.2 - ``<-`` head_length=0.4,head_width=0.2 - ``<->`` head_length=0.4,head_width=0.2 - ``<|-`` head_length=0.4,head_width=0.2 - ``<|-|>`` head_length=0.4,head_width=0.2 - ``fancy`` head_length=0.4,head_width=0.4,tail_width=0.4 - ``simple`` head_length=0.5,head_width=0.5,tail_width=0.2 - ``wedge`` tail_width=0.3,shrink_factor=0.5 - ========== ============================================= - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_fancyarrow_demo_001.png - :target: ../../gallery/text_labels_and_annotations/fancyarrow_demo.html - :align: center - :scale: 50 - - Fancyarrow Demo - -Some arrowstyles only work with connection styles that generate a -quadratic-spline segment. They are ``fancy``, ``simple``, and ``wedge``. -For these arrow styles, you must use the "angle3" or "arc3" connection -style. - -If the annotation string is given, the patchA is set to the bbox patch -of the text by default. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple02_001.png - :target: ../../gallery/userdemo/annotate_simple02.html - :align: center - :scale: 50 - - Annotate Simple02 - -As in the text command, a box around the text can be drawn using -the ``bbox`` argument. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple03_001.png - :target: ../../gallery/userdemo/annotate_simple03.html - :align: center - :scale: 50 - - Annotate Simple03 - -By default, the starting point is set to the center of the text -extent. This can be adjusted with ``relpos`` key value. The values -are normalized to the extent of the text. For example, (0,0) means -lower-left corner and (1,1) means top-right. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple04_001.png - :target: ../../gallery/userdemo/annotate_simple04.html - :align: center - :scale: 50 - - Annotate Simple04 - - -Placing Artist at the anchored location of the Axes ---------------------------------------------------- - -There are classes of artists that can be placed at an anchored location -in the Axes. A common example is the legend. This type of artist can -be created by using the OffsetBox class. A few predefined classes are -available in ``mpl_toolkits.axes_grid1.anchored_artists`` others in -``matplotlib.offsetbox`` :: - - from matplotlib.offsetbox import AnchoredText - at = AnchoredText("Figure 1a", - prop=dict(size=15), frameon=True, - loc='upper left', - ) - at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at) - - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box01_001.png - :target: ../../gallery/userdemo/anchored_box01.html - :align: center - :scale: 50 - - Anchored Box01 - - -The *loc* keyword has same meaning as in the legend command. - -A simple application is when the size of the artist (or collection of -artists) is known in pixel size during the time of creation. For -example, If you want to draw a circle with fixed size of 20 pixel x 20 -pixel (radius = 10 pixel), you can utilize -``AnchoredDrawingArea``. The instance is created with a size of the -drawing area (in pixels), and arbitrary artists can added to the -drawing area. Note that the extents of the artists that are added to -the drawing area are not related to the placement of the drawing -area itself. Only the initial size matters. :: - - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea - - ada = AnchoredDrawingArea(20, 20, 0, 0, - loc='upper right', pad=0., frameon=False) - p1 = Circle((10, 10), 10) - ada.drawing_area.add_artist(p1) - p2 = Circle((30, 10), 5, fc="r") - ada.drawing_area.add_artist(p2) - -The artists that are added to the drawing area should not have a -transform set (it will be overridden) and the dimensions of those -artists are interpreted as a pixel coordinate, i.e., the radius of the -circles in above example are 10 pixels and 5 pixels, respectively. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box02_001.png - :target: ../../gallery/userdemo/anchored_box02.html - :align: center - :scale: 50 - - Anchored Box02 - -Sometimes, you want your artists to scale with the data coordinate (or -coordinates other than canvas pixels). You can use -``AnchoredAuxTransformBox`` class. This is similar to -``AnchoredDrawingArea`` except that the extent of the artist is -determined during the drawing time respecting the specified transform. :: - - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox - - box = AnchoredAuxTransformBox(ax.transData, loc='upper left') - el = Ellipse((0,0), width=0.1, height=0.4, angle=30) # in data coordinates! - box.drawing_area.add_artist(el) - -The ellipse in the above example will have width and height -corresponding to 0.1 and 0.4 in data coordinates and will be -automatically scaled when the view limits of the axes change. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box03_001.png - :target: ../../gallery/userdemo/anchored_box03.html - :align: center - :scale: 50 - - Anchored Box03 - -As in the legend, the bbox_to_anchor argument can be set. Using the -HPacker and VPacker, you can have an arrangement(?) of artist as in the -legend (as a matter of fact, this is how the legend is created). - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box04_001.png - :target: ../../gallery/userdemo/anchored_box04.html - :align: center - :scale: 50 - - Anchored Box04 - -Note that unlike the legend, the ``bbox_transform`` is set -to IdentityTransform by default. - -Using Complex Coordinates with Annotations ------------------------------------------- - -The Annotation in matplotlib supports several types of coordinates as -described in :ref:`annotations-tutorial`. For an advanced user who wants -more control, it supports a few other options. - - 1. :class:`~matplotlib.transforms.Transform` instance. For example, :: - - ax.annotate("Test", xy=(0.5, 0.5), xycoords=ax.transAxes) - - is identical to :: - - ax.annotate("Test", xy=(0.5, 0.5), xycoords="axes fraction") - - With this, you can annotate a point in other axes. :: - - ax1, ax2 = subplot(121), subplot(122) - ax2.annotate("Test", xy=(0.5, 0.5), xycoords=ax1.transData, - xytext=(0.5, 0.5), textcoords=ax2.transData, - arrowprops=dict(arrowstyle="->")) - - 2. :class:`~matplotlib.artist.Artist` instance. The xy value (or - xytext) is interpreted as a fractional coordinate of the bbox - (return value of *get_window_extent*) of the artist. :: - - an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) - an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1, # (1,0.5) of the an1's bbox - xytext=(30,0), textcoords="offset points", - va="center", ha="left", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) - - .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord01_001.png - :target: ../../gallery/userdemo/annotate_simple_coord01.html - :align: center - :scale: 50 - - Annotation with Simple Coordinates - - Note that it is your responsibility that the extent of the - coordinate artist (*an1* in above example) is determined before *an2* - gets drawn. In most cases, it means that *an2* needs to be drawn - later than *an1*. - - - 3. A callable object that returns an instance of either - :class:`~matplotlib.transforms.BboxBase` or - :class:`~matplotlib.transforms.Transform`. If a transform is - returned, it is the same as 1 and if a bbox is returned, it is the same - as 2. The callable object should take a single argument of the - renderer instance. For example, the following two commands give - identical results :: - - an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1, - xytext=(30,0), textcoords="offset points") - an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1.get_window_extent, - xytext=(30,0), textcoords="offset points") - - - 4. A tuple of two coordinate specifications. The first item is for the - x-coordinate and the second is for the y-coordinate. For example, :: - - annotate("Test", xy=(0.5, 1), xycoords=("data", "axes fraction")) - - 0.5 is in data coordinates, and 1 is in normalized axes coordinates. - You may use an artist or transform as with a tuple. For example, - - .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord02_001.png - :target: ../../gallery/userdemo/annotate_simple_coord02.html - :align: center - :scale: 50 - - Annotation with Simple Coordinates 2 - - 5. Sometimes, you want your annotation with some "offset points", not from the - annotated point but from some other point. - :class:`~matplotlib.text.OffsetFrom` is a helper class for such cases. - - .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord03_001.png - :target: ../../gallery/userdemo/annotate_simple_coord03.html - :align: center - :scale: 50 - - Annotation with Simple Coordinates 3 - - You may take a look at this example - :doc:`/gallery/text_labels_and_annotations/annotation_demo`. - -Using ConnectionPatch ---------------------- - -The ConnectionPatch is like an annotation without text. While the annotate -function is recommended in most situations, the ConnectionPatch is useful when -you want to connect points in different axes. :: - - from matplotlib.patches import ConnectionPatch - xy = (0.2, 0.2) - con = ConnectionPatch(xyA=xy, xyB=xy, coordsA="data", coordsB="data", - axesA=ax1, axesB=ax2) - ax2.add_artist(con) - -The above code connects point xy in the data coordinates of ``ax1`` to -point xy in the data coordinates of ``ax2``. Here is a simple example. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_connect_simple01_001.png - :target: ../../gallery/userdemo/connect_simple01.html - :align: center - :scale: 50 - - Connect Simple01 - - -While the ConnectionPatch instance can be added to any axes, you may want to add -it to the axes that is latest in drawing order to prevent overlap by other -axes. - - -Advanced Topics -~~~~~~~~~~~~~~~ - -Zoom effect between Axes ------------------------- - -``mpl_toolkits.axes_grid1.inset_locator`` defines some patch classes useful -for interconnecting two axes. Understanding the code requires some -knowledge of how mpl's transform works. But, utilizing it will be -straight forward. - - -.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_axes_zoom_effect_001.png - :target: ../../gallery/subplots_axes_and_figures/axes_zoom_effect.html - :align: center - :scale: 50 - - Axes Zoom Effect - - -Define Custom BoxStyle ----------------------- - -You can use a custom box style. The value for the ``boxstyle`` can be a -callable object in the following forms.:: - - def __call__(self, x0, y0, width, height, mutation_size, - aspect_ratio=1.): - ''' - Given the location and size of the box, return the path of - the box around it. - - - *x0*, *y0*, *width*, *height* : location and size of the box - - *mutation_size* : a reference scale for the mutation. - - *aspect_ratio* : aspect-ratio for the mutation. - ''' - path = ... - return path - -Here is a complete example. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle01_001.png - :target: ../../gallery/userdemo/custom_boxstyle01.html - :align: center - :scale: 50 - - Custom Boxstyle01 - -However, it is recommended that you derive from the -matplotlib.patches.BoxStyle._Base as demonstrated below. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle02_001.png - :target: ../../gallery/userdemo/custom_boxstyle02.html - :align: center - :scale: 50 - - Custom Boxstyle02 - - -Similarly, you can define a custom ConnectionStyle and a custom ArrowStyle. -See the source code of ``lib/matplotlib/patches.py`` and check -how each style class is defined. -""" diff --git a/_downloads/b1b14c9b4658a4f5ecaf951f9b75cd6e/pyplot_scales.ipynb b/_downloads/b1b14c9b4658a4f5ecaf951f9b75cd6e/pyplot_scales.ipynb deleted file mode 120000 index b1ebc0f63fa..00000000000 --- a/_downloads/b1b14c9b4658a4f5ecaf951f9b75cd6e/pyplot_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b1b14c9b4658a4f5ecaf951f9b75cd6e/pyplot_scales.ipynb \ No newline at end of file diff --git a/_downloads/b1b4b9477798430e8e7ccbbbb1caae5d/layer_images.ipynb b/_downloads/b1b4b9477798430e8e7ccbbbb1caae5d/layer_images.ipynb deleted file mode 120000 index 7c080d9e027..00000000000 --- a/_downloads/b1b4b9477798430e8e7ccbbbb1caae5d/layer_images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b1b4b9477798430e8e7ccbbbb1caae5d/layer_images.ipynb \ No newline at end of file diff --git a/_downloads/b1b69e3d9f93856084482713f9b53f95/artist_tests.py b/_downloads/b1b69e3d9f93856084482713f9b53f95/artist_tests.py deleted file mode 120000 index e0ae1eebeb2..00000000000 --- a/_downloads/b1b69e3d9f93856084482713f9b53f95/artist_tests.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b1b69e3d9f93856084482713f9b53f95/artist_tests.py \ No newline at end of file diff --git a/_downloads/b1c21b8bbbc599582e65b29078ca1100/arrow_simple_demo.ipynb b/_downloads/b1c21b8bbbc599582e65b29078ca1100/arrow_simple_demo.ipynb deleted file mode 120000 index 8cd5700b84c..00000000000 --- a/_downloads/b1c21b8bbbc599582e65b29078ca1100/arrow_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b1c21b8bbbc599582e65b29078ca1100/arrow_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/b1c3b9c917a834a79f372f45edafd6d0/line_demo_dash_control.ipynb b/_downloads/b1c3b9c917a834a79f372f45edafd6d0/line_demo_dash_control.ipynb deleted file mode 120000 index 33d35889050..00000000000 --- a/_downloads/b1c3b9c917a834a79f372f45edafd6d0/line_demo_dash_control.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b1c3b9c917a834a79f372f45edafd6d0/line_demo_dash_control.ipynb \ No newline at end of file diff --git a/_downloads/b1cde11a14e08cd6afab3e346648f0be/scatter_hist_locatable_axes.ipynb b/_downloads/b1cde11a14e08cd6afab3e346648f0be/scatter_hist_locatable_axes.ipynb deleted file mode 120000 index 205ba85f0a1..00000000000 --- a/_downloads/b1cde11a14e08cd6afab3e346648f0be/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b1cde11a14e08cd6afab3e346648f0be/scatter_hist_locatable_axes.ipynb \ No newline at end of file diff --git a/_downloads/b1d72b68be293db9dab6f77187a06e16/svg_tooltip_sgskip.py b/_downloads/b1d72b68be293db9dab6f77187a06e16/svg_tooltip_sgskip.py deleted file mode 120000 index 0f79a08900d..00000000000 --- a/_downloads/b1d72b68be293db9dab6f77187a06e16/svg_tooltip_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b1d72b68be293db9dab6f77187a06e16/svg_tooltip_sgskip.py \ No newline at end of file diff --git a/_downloads/b1e2f65fc61b68040fc9bdf4b8a30299/usetex_baseline_test.ipynb b/_downloads/b1e2f65fc61b68040fc9bdf4b8a30299/usetex_baseline_test.ipynb deleted file mode 120000 index 2c884862db4..00000000000 --- a/_downloads/b1e2f65fc61b68040fc9bdf4b8a30299/usetex_baseline_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b1e2f65fc61b68040fc9bdf4b8a30299/usetex_baseline_test.ipynb \ No newline at end of file diff --git a/_downloads/b1e472e1e80f2fab55b7e940ae3f806a/boxplot_demo.py b/_downloads/b1e472e1e80f2fab55b7e940ae3f806a/boxplot_demo.py deleted file mode 100644 index 570e9a2428f..00000000000 --- a/_downloads/b1e472e1e80f2fab55b7e940ae3f806a/boxplot_demo.py +++ /dev/null @@ -1,235 +0,0 @@ -""" -======== -Boxplots -======== - -Visualizing boxplots with matplotlib. - -The following examples show off how to visualize boxplots with -Matplotlib. There are many options to control their appearance and -the statistics that they use to summarize the data. - -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.patches import Polygon - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# fake up some data -spread = np.random.rand(50) * 100 -center = np.ones(25) * 50 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -data = np.concatenate((spread, center, flier_high, flier_low)) - -fig, axs = plt.subplots(2, 3) - -# basic plot -axs[0, 0].boxplot(data) -axs[0, 0].set_title('basic plot') - -# notched plot -axs[0, 1].boxplot(data, 1) -axs[0, 1].set_title('notched plot') - -# change outlier point symbols -axs[0, 2].boxplot(data, 0, 'gD') -axs[0, 2].set_title('change outlier\npoint symbols') - -# don't show outlier points -axs[1, 0].boxplot(data, 0, '') -axs[1, 0].set_title("don't show\noutlier points") - -# horizontal boxes -axs[1, 1].boxplot(data, 0, 'rs', 0) -axs[1, 1].set_title('horizontal boxes') - -# change whisker length -axs[1, 2].boxplot(data, 0, 'rs', 0, 0.75) -axs[1, 2].set_title('change whisker length') - -fig.subplots_adjust(left=0.08, right=0.98, bottom=0.05, top=0.9, - hspace=0.4, wspace=0.3) - -# fake up some more data -spread = np.random.rand(50) * 100 -center = np.ones(25) * 40 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -d2 = np.concatenate((spread, center, flier_high, flier_low)) -data.shape = (-1, 1) -d2.shape = (-1, 1) -# Making a 2-D array only works if all the columns are the -# same length. If they are not, then use a list instead. -# This is actually more efficient because boxplot converts -# a 2-D array into a list of vectors internally anyway. -data = [data, d2, d2[::2, 0]] - -# Multiple box plots on one Axes -fig, ax = plt.subplots() -ax.boxplot(data) - -plt.show() - - -############################################################################### -# Below we'll generate data from five different probability distributions, -# each with different characteristics. We want to play with how an IID -# bootstrap resample of the data preserves the distributional -# properties of the original sample, and a boxplot is one visual tool -# to make this assessment - -random_dists = ['Normal(1,1)', ' Lognormal(1,1)', 'Exp(1)', 'Gumbel(6,4)', - 'Triangular(2,9,11)'] -N = 500 - -norm = np.random.normal(1, 1, N) -logn = np.random.lognormal(1, 1, N) -expo = np.random.exponential(1, N) -gumb = np.random.gumbel(6, 4, N) -tria = np.random.triangular(2, 9, 11, N) - -# Generate some random indices that we'll use to resample the original data -# arrays. For code brevity, just use the same random indices for each array -bootstrap_indices = np.random.randint(0, N, N) -data = [ - norm, norm[bootstrap_indices], - logn, logn[bootstrap_indices], - expo, expo[bootstrap_indices], - gumb, gumb[bootstrap_indices], - tria, tria[bootstrap_indices], -] - -fig, ax1 = plt.subplots(figsize=(10, 6)) -fig.canvas.set_window_title('A Boxplot Example') -fig.subplots_adjust(left=0.075, right=0.95, top=0.9, bottom=0.25) - -bp = ax1.boxplot(data, notch=0, sym='+', vert=1, whis=1.5) -plt.setp(bp['boxes'], color='black') -plt.setp(bp['whiskers'], color='black') -plt.setp(bp['fliers'], color='red', marker='+') - -# Add a horizontal grid to the plot, but make it very light in color -# so we can use it for reading data values but not be distracting -ax1.yaxis.grid(True, linestyle='-', which='major', color='lightgrey', - alpha=0.5) - -# Hide these grid behind plot objects -ax1.set_axisbelow(True) -ax1.set_title('Comparison of IID Bootstrap Resampling Across Five Distributions') -ax1.set_xlabel('Distribution') -ax1.set_ylabel('Value') - -# Now fill the boxes with desired colors -box_colors = ['darkkhaki', 'royalblue'] -num_boxes = len(data) -medians = np.empty(num_boxes) -for i in range(num_boxes): - box = bp['boxes'][i] - boxX = [] - boxY = [] - for j in range(5): - boxX.append(box.get_xdata()[j]) - boxY.append(box.get_ydata()[j]) - box_coords = np.column_stack([boxX, boxY]) - # Alternate between Dark Khaki and Royal Blue - ax1.add_patch(Polygon(box_coords, facecolor=box_colors[i % 2])) - # Now draw the median lines back over what we just filled in - med = bp['medians'][i] - medianX = [] - medianY = [] - for j in range(2): - medianX.append(med.get_xdata()[j]) - medianY.append(med.get_ydata()[j]) - ax1.plot(medianX, medianY, 'k') - medians[i] = medianY[0] - # Finally, overplot the sample averages, with horizontal alignment - # in the center of each box - ax1.plot(np.average(med.get_xdata()), np.average(data[i]), - color='w', marker='*', markeredgecolor='k') - -# Set the axes ranges and axes labels -ax1.set_xlim(0.5, num_boxes + 0.5) -top = 40 -bottom = -5 -ax1.set_ylim(bottom, top) -ax1.set_xticklabels(np.repeat(random_dists, 2), - rotation=45, fontsize=8) - -# Due to the Y-axis scale being different across samples, it can be -# hard to compare differences in medians across the samples. Add upper -# X-axis tick labels with the sample medians to aid in comparison -# (just use two decimal places of precision) -pos = np.arange(num_boxes) + 1 -upper_labels = [str(np.round(s, 2)) for s in medians] -weights = ['bold', 'semibold'] -for tick, label in zip(range(num_boxes), ax1.get_xticklabels()): - k = tick % 2 - ax1.text(pos[tick], .95, upper_labels[tick], - transform=ax1.get_xaxis_transform(), - horizontalalignment='center', size='x-small', - weight=weights[k], color=box_colors[k]) - -# Finally, add a basic legend -fig.text(0.80, 0.08, f'{N} Random Numbers', - backgroundcolor=box_colors[0], color='black', weight='roman', - size='x-small') -fig.text(0.80, 0.045, 'IID Bootstrap Resample', - backgroundcolor=box_colors[1], - color='white', weight='roman', size='x-small') -fig.text(0.80, 0.015, '*', color='white', backgroundcolor='silver', - weight='roman', size='medium') -fig.text(0.815, 0.013, ' Average Value', color='black', weight='roman', - size='x-small') - -plt.show() - -############################################################################### -# Here we write a custom function to bootstrap confidence intervals. -# We can then use the boxplot along with this function to show these intervals. - - -def fakeBootStrapper(n): - ''' - This is just a placeholder for the user's method of - bootstrapping the median and its confidence intervals. - - Returns an arbitrary median and confidence intervals - packed into a tuple - ''' - if n == 1: - med = 0.1 - CI = (-0.25, 0.25) - else: - med = 0.2 - CI = (-0.35, 0.50) - - return med, CI - -inc = 0.1 -e1 = np.random.normal(0, 1, size=500) -e2 = np.random.normal(0, 1, size=500) -e3 = np.random.normal(0, 1 + inc, size=500) -e4 = np.random.normal(0, 1 + 2*inc, size=500) - -treatments = [e1, e2, e3, e4] -med1, CI1 = fakeBootStrapper(1) -med2, CI2 = fakeBootStrapper(2) -medians = [None, None, med1, med2] -conf_intervals = [None, None, CI1, CI2] - -fig, ax = plt.subplots() -pos = np.array(range(len(treatments))) + 1 -bp = ax.boxplot(treatments, sym='k+', positions=pos, - notch=1, bootstrap=5000, - usermedians=medians, - conf_intervals=conf_intervals) - -ax.set_xlabel('treatment') -ax.set_ylabel('response') -plt.setp(bp['whiskers'], color='k', linestyle='-') -plt.setp(bp['fliers'], markersize=3.0) -plt.show() diff --git a/_downloads/b1e5088b53ff910b1e156d3db65fcaa1/contourf3d.ipynb b/_downloads/b1e5088b53ff910b1e156d3db65fcaa1/contourf3d.ipynb deleted file mode 120000 index df2ec8e069b..00000000000 --- a/_downloads/b1e5088b53ff910b1e156d3db65fcaa1/contourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b1e5088b53ff910b1e156d3db65fcaa1/contourf3d.ipynb \ No newline at end of file diff --git a/_downloads/b1f130d3e4399a85869d08d2bafbf62f/colormap_reference.py b/_downloads/b1f130d3e4399a85869d08d2bafbf62f/colormap_reference.py deleted file mode 120000 index 93e0f598594..00000000000 --- a/_downloads/b1f130d3e4399a85869d08d2bafbf62f/colormap_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b1f130d3e4399a85869d08d2bafbf62f/colormap_reference.py \ No newline at end of file diff --git a/_downloads/b1f33570441cc2f1abd58fc5772efbfe/simple_axes_divider3.py b/_downloads/b1f33570441cc2f1abd58fc5772efbfe/simple_axes_divider3.py deleted file mode 120000 index 813c05de044..00000000000 --- a/_downloads/b1f33570441cc2f1abd58fc5772efbfe/simple_axes_divider3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b1f33570441cc2f1abd58fc5772efbfe/simple_axes_divider3.py \ No newline at end of file diff --git a/_downloads/b1f39cf888a0a639ac54bae2e28dfe44/text_intro.ipynb b/_downloads/b1f39cf888a0a639ac54bae2e28dfe44/text_intro.ipynb deleted file mode 100644 index 31747c1f363..00000000000 --- a/_downloads/b1f39cf888a0a639ac54bae2e28dfe44/text_intro.ipynb +++ /dev/null @@ -1,349 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text in Matplotlib Plots\n\n\nIntroduction to plotting and working with text in Matplotlib.\n\nMatplotlib has extensive text support, including support for\nmathematical expressions, truetype support for raster and\nvector outputs, newline separated text with arbitrary\nrotations, and unicode support.\n\nBecause it embeds fonts directly in output documents, e.g., for postscript\nor PDF, what you see on the screen is what you get in the hardcopy.\n`FreeType `_ support\nproduces very nice, antialiased fonts, that look good even at small\nraster sizes. Matplotlib includes its own\n:mod:`matplotlib.font_manager` (thanks to Paul Barrett), which\nimplements a cross platform, `W3C `\ncompliant font finding algorithm.\n\nThe user has a great deal of control over text properties (font size, font\nweight, text location and color, etc.) with sensible defaults set in\nthe :doc:`rc file `.\nAnd significantly, for those interested in mathematical\nor scientific figures, Matplotlib implements a large number of TeX\nmath symbols and commands, supporting :doc:`mathematical expressions\n` anywhere in your figure.\n\n\nBasic text commands\n===================\n\nThe following commands are used to create text in the pyplot\ninterface and the object-oriented API:\n\n=================== =================== ======================================\n`.pyplot` API OO API description\n=================== =================== ======================================\n`~.pyplot.text` `~.Axes.text` Add text at an arbitrary location of\n the `~matplotlib.axes.Axes`.\n\n`~.pyplot.annotate` `~.Axes.annotate` Add an annotation, with an optional\n arrow, at an arbitrary location of the\n `~matplotlib.axes.Axes`.\n\n`~.pyplot.xlabel` `~.Axes.set_xlabel` Add a label to the\n `~matplotlib.axes.Axes`\\'s x-axis.\n\n`~.pyplot.ylabel` `~.Axes.set_ylabel` Add a label to the\n `~matplotlib.axes.Axes`\\'s y-axis.\n\n`~.pyplot.title` `~.Axes.set_title` Add a title to the\n `~matplotlib.axes.Axes`.\n\n`~.pyplot.figtext` `~.Figure.text` Add text at an arbitrary location of\n the `.Figure`.\n\n`~.pyplot.suptitle` `~.Figure.suptitle` Add a title to the `.Figure`.\n=================== =================== ======================================\n\nAll of these functions create and return a `.Text` instance, which can be\nconfigured with a variety of font and other properties. The example below\nshows all of these commands in action, and more detail is provided in the\nsections that follow.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold')\n\nax = fig.add_subplot(111)\nfig.subplots_adjust(top=0.85)\nax.set_title('axes title')\n\nax.set_xlabel('xlabel')\nax.set_ylabel('ylabel')\n\nax.text(3, 8, 'boxed italics text in data coords', style='italic',\n bbox={'facecolor': 'red', 'alpha': 0.5, 'pad': 10})\n\nax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15)\n\nax.text(3, 2, 'unicode: Institut f\u00fcr Festk\u00f6rperphysik')\n\nax.text(0.95, 0.01, 'colored text in axes coords',\n verticalalignment='bottom', horizontalalignment='right',\n transform=ax.transAxes,\n color='green', fontsize=15)\n\n\nax.plot([2], [1], 'o')\nax.annotate('annotate', xy=(2, 1), xytext=(3, 4),\n arrowprops=dict(facecolor='black', shrink=0.05))\n\nax.axis([0, 10, 0, 10])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Labels for x- and y-axis\n========================\n\nSpecifying the labels for the x- and y-axis is straightforward, via the\n`~matplotlib.axes.Axes.set_xlabel` and `~matplotlib.axes.Axes.set_ylabel`\nmethods.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx1 = np.linspace(0.0, 5.0, 100)\ny1 = np.cos(2 * np.pi * x1) * np.exp(-x1)\n\nfig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1)\nax.set_xlabel('time [s]')\nax.set_ylabel('Damped oscillation [V]')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The x- and y-labels are automatically placed so that they clear the x- and\ny-ticklabels. Compare the plot below with that above, and note the y-label\nis to the left of the one above.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1*10000)\nax.set_xlabel('time [s]')\nax.set_ylabel('Damped oscillation [V]')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you want to move the labels, you can specify the *labelpad* keyword\nargument, where the value is points (1/72\", the same unit used to specify\nfontsizes).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1*10000)\nax.set_xlabel('time [s]')\nax.set_ylabel('Damped oscillation [V]', labelpad=18)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Or, the labels accept all the `.Text` keyword arguments, including\n*position*, via which we can manually specify the label positions. Here we\nput the xlabel to the far left of the axis. Note, that the y-coordinate of\nthis position has no effect - to adjust the y-position we need to use the\n*labelpad* kwarg.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1)\nax.set_xlabel('time [s]', position=(0., 1e6),\n horizontalalignment='left')\nax.set_ylabel('Damped oscillation [V]')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "All the labelling in this tutorial can be changed by manipulating the\n`matplotlib.font_manager.FontProperties` method, or by named kwargs to\n`~matplotlib.axes.Axes.set_xlabel`\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.font_manager import FontProperties\n\nfont = FontProperties()\nfont.set_family('serif')\nfont.set_name('Times New Roman')\nfont.set_style('italic')\n\nfig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1)\nax.set_xlabel('time [s]', fontsize='large', fontweight='bold')\nax.set_ylabel('Damped oscillation [V]', fontproperties=font)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, we can use native TeX rendering in all text objects and have\nmultiple lines:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.2, left=0.2)\nax.plot(x1, np.cumsum(y1**2))\nax.set_xlabel('time [s] \\n This was a long experiment')\nax.set_ylabel(r'$\\int\\ Y^2\\ dt\\ \\ [V^2 s]$')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Titles\n======\n\nSubplot titles are set in much the same way as labels, but there is\nthe *loc* keyword arguments that can change the position and justification\nfrom the default value of ``loc=center``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(5, 6), tight_layout=True)\nlocs = ['center', 'left', 'right']\nfor ax, loc in zip(axs, locs):\n ax.plot(x1, y1)\n ax.set_title('Title with loc at '+loc, loc=loc)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Vertical spacing for titles is controlled via :rc:`axes.titlepad`, which\ndefaults to 5 points. Setting to a different value moves the title.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(top=0.8)\nax.plot(x1, y1)\nax.set_title('Vertically offset title', pad=30)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Ticks and ticklabels\n====================\n\nPlacing ticks and ticklabels is a very tricky aspect of making a figure.\nMatplotlib does the best it can automatically, but it also offers a very\nflexible framework for determining the choices for tick locations, and\nhow they are labelled.\n\nTerminology\n~~~~~~~~~~~\n\n*Axes* have an `matplotlib.axis` object for the ``ax.xaxis``\nand ``ax.yaxis`` that\ncontain the information about how the labels in the axis are laid out.\n\nThe axis API is explained in detail in the documentation to\n`~matplotlib.axis`.\n\nAn Axis object has major and minor ticks. The Axis has a\n`matplotlib.xaxis.set_major_locator` and\n`matplotlib.xaxis.set_minor_locator` methods that use the data being plotted\nto determine\nthe location of major and minor ticks. There are also\n`matplotlib.xaxis.set_major_formatter` and\n`matplotlib.xaxis.set_minor_formatters` methods that format the tick labels.\n\nSimple ticks\n~~~~~~~~~~~~\n\nIt often is convenient to simply define the\ntick values, and sometimes the tick labels, overriding the default\nlocators and formatters. This is discouraged because it breaks itneractive\nnavigation of the plot. It also can reset the axis limits: note that\nthe second plot has the ticks we asked for, including ones that are\nwell outside the automatic view limits.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\naxs[1].xaxis.set_ticks(np.arange(0., 8.1, 2.))\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can of course fix this after the fact, but it does highlight a\nweakness of hard-coding the ticks. This example also changes the format\nof the ticks:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\nticks = np.arange(0., 8.1, 2.)\n# list comprehension to get all tick labels...\ntickla = ['%1.2f' % tick for tick in ticks]\naxs[1].xaxis.set_ticks(ticks)\naxs[1].xaxis.set_ticklabels(tickla)\naxs[1].set_xlim(axs[0].get_xlim())\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Tick Locators and Formatters\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nInstead of making a list of all the tickalbels, we could have\nused a `matplotlib.ticker.FormatStrFormatter` and passed it to the\n``ax.xaxis``\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\nticks = np.arange(0., 8.1, 2.)\n# list comprehension to get all tick labels...\nformatter = matplotlib.ticker.StrMethodFormatter('{x:1.1f}')\naxs[1].xaxis.set_ticks(ticks)\naxs[1].xaxis.set_major_formatter(formatter)\naxs[1].set_xlim(axs[0].get_xlim())\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And of course we could have used a non-default locator to set the\ntick locations. Note we still pass in the tick values, but the\nx-limit fix used above is *not* needed.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\nformatter = matplotlib.ticker.FormatStrFormatter('%1.1f')\nlocator = matplotlib.ticker.FixedLocator(ticks)\naxs[1].xaxis.set_major_locator(locator)\naxs[1].xaxis.set_major_formatter(formatter)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The default formatter is the `matplotlib.ticker.MaxNLocator` called as\n``ticker.MaxNLocator(self, nbins='auto', steps=[1, 2, 2.5, 5, 10])``\nThe *steps* keyword contains a list of multiples that can be used for\ntick values. i.e. in this case, 2, 4, 6 would be acceptable ticks,\nas would 20, 40, 60 or 0.2, 0.4, 0.6. However, 3, 6, 9 would not be\nacceptable because 3 doesn't appear in the list of steps.\n\n``nbins=auto`` uses an algorithm to determine how many ticks will\nbe acceptable based on how long the axis is. The fontsize of the\nticklabel is taken into account, but the length of the tick string\nis not (because its not yet known.) In the bottom row, the\nticklabels are quite large, so we set ``nbins=4`` to make the\nlabels fit in the right-hand plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(8, 5), tight_layout=True)\nfor n, ax in enumerate(axs.flat):\n ax.plot(x1*10., y1)\n\nformatter = matplotlib.ticker.FormatStrFormatter('%1.1f')\nlocator = matplotlib.ticker.MaxNLocator(nbins='auto', steps=[1, 4, 10])\naxs[0, 1].xaxis.set_major_locator(locator)\naxs[0, 1].xaxis.set_major_formatter(formatter)\n\nformatter = matplotlib.ticker.FormatStrFormatter('%1.5f')\nlocator = matplotlib.ticker.AutoLocator()\naxs[1, 0].xaxis.set_major_formatter(formatter)\naxs[1, 0].xaxis.set_major_locator(locator)\n\nformatter = matplotlib.ticker.FormatStrFormatter('%1.5f')\nlocator = matplotlib.ticker.MaxNLocator(nbins=4)\naxs[1, 1].xaxis.set_major_formatter(formatter)\naxs[1, 1].xaxis.set_major_locator(locator)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, we can specify functions for the formatter using\n`matplotlib.ticker.FuncFormatter`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def formatoddticks(x, pos):\n \"\"\"Format odd tick positions\n \"\"\"\n if x % 2:\n return '%1.2f' % x\n else:\n return ''\n\nfig, ax = plt.subplots(figsize=(5, 3), tight_layout=True)\nax.plot(x1, y1)\nformatter = matplotlib.ticker.FuncFormatter(formatoddticks)\nlocator = matplotlib.ticker.MaxNLocator(nbins=6)\nax.xaxis.set_major_formatter(formatter)\nax.xaxis.set_major_locator(locator)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Dateticks\n~~~~~~~~~\n\nMatplotlib can accept `datetime.datetime` and `numpy.datetime64`\nobjects as plotting arguments. Dates and times require special\nformatting, which can often benefit from manual intervention. In\norder to help, dates have special Locators and Formatters,\ndefined in the `matplotlib.dates` module.\n\nA simple example is as follows. Note how we have to rotate the\ntick labels so that they don't over-run each other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\n\nfig, ax = plt.subplots(figsize=(5, 3), tight_layout=True)\nbase = datetime.datetime(2017, 1, 1, 0, 0, 1)\ntime = [base + datetime.timedelta(days=x) for x in range(len(y1))]\n\nax.plot(time, y1)\nax.tick_params(axis='x', rotation=70)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can pass a format\nto `matplotlib.dates.DateFormatter`. Also note that the 29th and the\nnext month are very close together. We can fix this by using the\n`dates.DayLocator` class, which allows us to specify a list of days of the\nmonth to use. Similar formatters are listed in the `matplotlib.dates` module.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.dates as mdates\n\nlocator = mdates.DayLocator(bymonthday=[1, 15])\nformatter = mdates.DateFormatter('%b %d')\n\nfig, ax = plt.subplots(figsize=(5, 3), tight_layout=True)\nax.xaxis.set_major_locator(locator)\nax.xaxis.set_major_formatter(formatter)\nax.plot(time, y1)\nax.tick_params(axis='x', rotation=70)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legends and Annotations\n=======================\n\n- Legends: :doc:`/tutorials/intermediate/legend_guide`\n- Annotations: :doc:`/tutorials/text/annotations`\n\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b1f51cbfa8515ac6b6fcc105e3d97303/specgram_demo.py b/_downloads/b1f51cbfa8515ac6b6fcc105e3d97303/specgram_demo.py deleted file mode 120000 index 43756ecdf87..00000000000 --- a/_downloads/b1f51cbfa8515ac6b6fcc105e3d97303/specgram_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b1f51cbfa8515ac6b6fcc105e3d97303/specgram_demo.py \ No newline at end of file diff --git a/_downloads/b1f5ca501205571bdd192ef9d081b1ef/label_subplots.ipynb b/_downloads/b1f5ca501205571bdd192ef9d081b1ef/label_subplots.ipynb deleted file mode 120000 index 01b1f7450fe..00000000000 --- a/_downloads/b1f5ca501205571bdd192ef9d081b1ef/label_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b1f5ca501205571bdd192ef9d081b1ef/label_subplots.ipynb \ No newline at end of file diff --git a/_downloads/b1f70c9b81048a025d8d0a6c934467bc/lorenz_attractor.py b/_downloads/b1f70c9b81048a025d8d0a6c934467bc/lorenz_attractor.py deleted file mode 100644 index 46e13965e29..00000000000 --- a/_downloads/b1f70c9b81048a025d8d0a6c934467bc/lorenz_attractor.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -================ -Lorenz Attractor -================ - -This is an example of plotting Edward Lorenz's 1963 `"Deterministic Nonperiodic -Flow"`_ in a 3-dimensional space using mplot3d. - -.. _"Deterministic Nonperiodic Flow": - http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2 - -.. note:: - Because this is a simple non-linear ODE, it would be more easily done using - SciPy's ODE solver, but this approach depends only upon NumPy. -""" - -import numpy as np -import matplotlib.pyplot as plt -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def lorenz(x, y, z, s=10, r=28, b=2.667): - ''' - Given: - x, y, z: a point of interest in three dimensional space - s, r, b: parameters defining the lorenz attractor - Returns: - x_dot, y_dot, z_dot: values of the lorenz attractor's partial - derivatives at the point x, y, z - ''' - x_dot = s*(y - x) - y_dot = r*x - y - x*z - z_dot = x*y - b*z - return x_dot, y_dot, z_dot - - -dt = 0.01 -num_steps = 10000 - -# Need one more for the initial values -xs = np.empty(num_steps + 1) -ys = np.empty(num_steps + 1) -zs = np.empty(num_steps + 1) - -# Set initial values -xs[0], ys[0], zs[0] = (0., 1., 1.05) - -# Step through "time", calculating the partial derivatives at the current point -# and using them to estimate the next point -for i in range(num_steps): - x_dot, y_dot, z_dot = lorenz(xs[i], ys[i], zs[i]) - xs[i + 1] = xs[i] + (x_dot * dt) - ys[i + 1] = ys[i] + (y_dot * dt) - zs[i + 1] = zs[i] + (z_dot * dt) - - -# Plot -fig = plt.figure() -ax = fig.gca(projection='3d') - -ax.plot(xs, ys, zs, lw=0.5) -ax.set_xlabel("X Axis") -ax.set_ylabel("Y Axis") -ax.set_zlabel("Z Axis") -ax.set_title("Lorenz Attractor") - -plt.show() diff --git a/_downloads/b1f745b3fd1c43e3bd234c26fa509e9a/contour3d_2.py b/_downloads/b1f745b3fd1c43e3bd234c26fa509e9a/contour3d_2.py deleted file mode 100644 index 3500eac6871..00000000000 --- a/_downloads/b1f745b3fd1c43e3bd234c26fa509e9a/contour3d_2.py +++ /dev/null @@ -1,22 +0,0 @@ -''' -============================================================================ -Demonstrates plotting contour (level) curves in 3D using the extend3d option -============================================================================ - -This modification of the contour3d_demo example uses extend3d=True to -extend the curves vertically into 'ribbons'. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -cset = ax.contour(X, Y, Z, extend3d=True, cmap=cm.coolwarm) - -ax.clabel(cset, fontsize=9, inline=1) - -plt.show() diff --git a/_downloads/b2045901c137eb9f8bdca95b2bd448fd/fancybox_demo.py b/_downloads/b2045901c137eb9f8bdca95b2bd448fd/fancybox_demo.py deleted file mode 120000 index 36ab4bc0a36..00000000000 --- a/_downloads/b2045901c137eb9f8bdca95b2bd448fd/fancybox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b2045901c137eb9f8bdca95b2bd448fd/fancybox_demo.py \ No newline at end of file diff --git a/_downloads/b21218706e819e03cc40e98f5cc326e7/pie_demo2.ipynb b/_downloads/b21218706e819e03cc40e98f5cc326e7/pie_demo2.ipynb deleted file mode 120000 index 2d092814c7e..00000000000 --- a/_downloads/b21218706e819e03cc40e98f5cc326e7/pie_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b21218706e819e03cc40e98f5cc326e7/pie_demo2.ipynb \ No newline at end of file diff --git a/_downloads/b2179bf37d62c0d3595496dd11657e6f/axis_direction_demo_step03.py b/_downloads/b2179bf37d62c0d3595496dd11657e6f/axis_direction_demo_step03.py deleted file mode 120000 index ec97dc6f6f9..00000000000 --- a/_downloads/b2179bf37d62c0d3595496dd11657e6f/axis_direction_demo_step03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/b2179bf37d62c0d3595496dd11657e6f/axis_direction_demo_step03.py \ No newline at end of file diff --git a/_downloads/b218beaf421363bac6aefb25886630a9/date_demo_convert.py b/_downloads/b218beaf421363bac6aefb25886630a9/date_demo_convert.py deleted file mode 120000 index f859baed9f3..00000000000 --- a/_downloads/b218beaf421363bac6aefb25886630a9/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b218beaf421363bac6aefb25886630a9/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/b21ec809d47d2fd64144b0e28cf61f47/date_demo_rrule.ipynb b/_downloads/b21ec809d47d2fd64144b0e28cf61f47/date_demo_rrule.ipynb deleted file mode 100644 index 18b5ce65084..00000000000 --- a/_downloads/b21ec809d47d2fd64144b0e28cf61f47/date_demo_rrule.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Date Demo Rrule\n\n\nShow how to use an rrule instance to make a custom date ticker - here\nwe put a tick mark on every 5th easter\n\nSee https://dateutil.readthedocs.io/en/stable/ for help with rrules\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.dates import (YEARLY, DateFormatter,\n rrulewrapper, RRuleLocator, drange)\nimport numpy as np\nimport datetime\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# tick every 5th easter\nrule = rrulewrapper(YEARLY, byeaster=1, interval=5)\nloc = RRuleLocator(rule)\nformatter = DateFormatter('%m/%d/%y')\ndate1 = datetime.date(1952, 1, 1)\ndate2 = datetime.date(2004, 4, 12)\ndelta = datetime.timedelta(days=100)\n\ndates = drange(date1, date2, delta)\ns = np.random.rand(len(dates)) # make up some random y values\n\n\nfig, ax = plt.subplots()\nplt.plot_date(dates, s)\nax.xaxis.set_major_locator(loc)\nax.xaxis.set_major_formatter(formatter)\nax.xaxis.set_tick_params(rotation=30, labelsize=10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b22365b18b910a06c55760da0375102f/ginput_manual_clabel_sgskip.py b/_downloads/b22365b18b910a06c55760da0375102f/ginput_manual_clabel_sgskip.py deleted file mode 120000 index 7fb4ac7ed77..00000000000 --- a/_downloads/b22365b18b910a06c55760da0375102f/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b22365b18b910a06c55760da0375102f/ginput_manual_clabel_sgskip.py \ No newline at end of file diff --git a/_downloads/b2287c38a3c30162c012625644a54a95/date_index_formatter.ipynb b/_downloads/b2287c38a3c30162c012625644a54a95/date_index_formatter.ipynb deleted file mode 120000 index 51c83031f73..00000000000 --- a/_downloads/b2287c38a3c30162c012625644a54a95/date_index_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b2287c38a3c30162c012625644a54a95/date_index_formatter.ipynb \ No newline at end of file diff --git a/_downloads/b22d83c580a1187d62f97331a8f06ad1/span_selector.py b/_downloads/b22d83c580a1187d62f97331a8f06ad1/span_selector.py deleted file mode 100644 index 2e720f4c98a..00000000000 --- a/_downloads/b22d83c580a1187d62f97331a8f06ad1/span_selector.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============= -Span Selector -============= - -The SpanSelector is a mouse widget to select a xmin/xmax range and plot the -detail view of the selected region in the lower axes -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import SpanSelector - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, (ax1, ax2) = plt.subplots(2, figsize=(8, 6)) -ax1.set(facecolor='#FFFFCC') - -x = np.arange(0.0, 5.0, 0.01) -y = np.sin(2*np.pi*x) + 0.5*np.random.randn(len(x)) - -ax1.plot(x, y, '-') -ax1.set_ylim(-2, 2) -ax1.set_title('Press left mouse button and drag to test') - -ax2.set(facecolor='#FFFFCC') -line2, = ax2.plot(x, y, '-') - - -def onselect(xmin, xmax): - indmin, indmax = np.searchsorted(x, (xmin, xmax)) - indmax = min(len(x) - 1, indmax) - - thisx = x[indmin:indmax] - thisy = y[indmin:indmax] - line2.set_data(thisx, thisy) - ax2.set_xlim(thisx[0], thisx[-1]) - ax2.set_ylim(thisy.min(), thisy.max()) - fig.canvas.draw() - -############################################################################# -# .. note:: -# -# If the SpanSelector object is garbage collected you will lose the -# interactivity. You must keep a hard reference to it to prevent this. -# - - -span = SpanSelector(ax1, onselect, 'horizontal', useblit=True, - rectprops=dict(alpha=0.5, facecolor='red')) -# Set useblit=True on most backends for enhanced performance. - - -plt.show() diff --git a/_downloads/b2361c5449d309f56fa8d91c145abaed/multiple_figs_demo.py b/_downloads/b2361c5449d309f56fa8d91c145abaed/multiple_figs_demo.py deleted file mode 120000 index 61782b9b4a9..00000000000 --- a/_downloads/b2361c5449d309f56fa8d91c145abaed/multiple_figs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b2361c5449d309f56fa8d91c145abaed/multiple_figs_demo.py \ No newline at end of file diff --git a/_downloads/b23c170d368d31b955c5589c94d900a9/svg_filter_line.py b/_downloads/b23c170d368d31b955c5589c94d900a9/svg_filter_line.py deleted file mode 100644 index dc098f5276f..00000000000 --- a/_downloads/b23c170d368d31b955c5589c94d900a9/svg_filter_line.py +++ /dev/null @@ -1,86 +0,0 @@ -""" -=============== -SVG Filter Line -=============== - -Demonstrate SVG filtering effects which might be used with mpl. - -Note that the filtering effects are only effective if your svg renderer -support it. -""" - - -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms - -fig1 = plt.figure() -ax = fig1.add_axes([0.1, 0.1, 0.8, 0.8]) - -# draw lines -l1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], "bo-", - mec="b", lw=5, ms=10, label="Line 1") -l2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], "rs-", - mec="r", lw=5, ms=10, color="r", label="Line 2") - - -for l in [l1, l2]: - - # draw shadows with same lines with slight offset and gray colors. - - xx = l.get_xdata() - yy = l.get_ydata() - shadow, = ax.plot(xx, yy) - shadow.update_from(l) - - # adjust color - shadow.set_color("0.2") - # adjust zorder of the shadow lines so that it is drawn below the - # original lines - shadow.set_zorder(l.get_zorder() - 0.5) - - # offset transform - ot = mtransforms.offset_copy(l.get_transform(), fig1, - x=4.0, y=-6.0, units='points') - - shadow.set_transform(ot) - - # set the id for a later use - shadow.set_gid(l.get_label() + "_shadow") - - -ax.set_xlim(0., 1.) -ax.set_ylim(0., 1.) - -# save the figure as a bytes string in the svg format. -from io import BytesIO -f = BytesIO() -plt.savefig(f, format="svg") - - -import xml.etree.cElementTree as ET - -# filter definition for a gaussian blur -filter_def = """ - - - - - -""" - - -# read in the saved svg -tree, xmlid = ET.XMLID(f.getvalue()) - -# insert the filter definition in the svg dom tree. -tree.insert(0, ET.XML(filter_def)) - -for l in [l1, l2]: - # pick up the svg element with given id - shadow = xmlid[l.get_label() + "_shadow"] - # apply shadow filter - shadow.set("filter", 'url(#dropshadow)') - -fn = "svg_filter_line.svg" -print("Saving '%s'" % fn) -ET.ElementTree(tree).write(fn) diff --git a/_downloads/b23cb149436fd3fc734b60db722ff5e3/mathtext_examples.ipynb b/_downloads/b23cb149436fd3fc734b60db722ff5e3/mathtext_examples.ipynb deleted file mode 120000 index 43be8bb706f..00000000000 --- a/_downloads/b23cb149436fd3fc734b60db722ff5e3/mathtext_examples.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b23cb149436fd3fc734b60db722ff5e3/mathtext_examples.ipynb \ No newline at end of file diff --git a/_downloads/b2426003d482f6dc8125fd971aafd3d4/3d_bars.py b/_downloads/b2426003d482f6dc8125fd971aafd3d4/3d_bars.py deleted file mode 120000 index 2a2da20e1f2..00000000000 --- a/_downloads/b2426003d482f6dc8125fd971aafd3d4/3d_bars.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b2426003d482f6dc8125fd971aafd3d4/3d_bars.py \ No newline at end of file diff --git a/_downloads/b2446b3e4ba14589aa89835e884bc40c/svg_filter_line.py b/_downloads/b2446b3e4ba14589aa89835e884bc40c/svg_filter_line.py deleted file mode 120000 index f8e9b71c34a..00000000000 --- a/_downloads/b2446b3e4ba14589aa89835e884bc40c/svg_filter_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b2446b3e4ba14589aa89835e884bc40c/svg_filter_line.py \ No newline at end of file diff --git a/_downloads/b2455cdc92d199bec2818f253113a97d/accented_text.py b/_downloads/b2455cdc92d199bec2818f253113a97d/accented_text.py deleted file mode 120000 index f4dc942b2f7..00000000000 --- a/_downloads/b2455cdc92d199bec2818f253113a97d/accented_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b2455cdc92d199bec2818f253113a97d/accented_text.py \ No newline at end of file diff --git a/_downloads/b2568ccff4d1ca8cfed9f50ed6085e93/legend_picking.py b/_downloads/b2568ccff4d1ca8cfed9f50ed6085e93/legend_picking.py deleted file mode 120000 index 4c9a681939e..00000000000 --- a/_downloads/b2568ccff4d1ca8cfed9f50ed6085e93/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b2568ccff4d1ca8cfed9f50ed6085e93/legend_picking.py \ No newline at end of file diff --git a/_downloads/b265ca3f8b2227d4ac5798b305a44b0e/text3d.ipynb b/_downloads/b265ca3f8b2227d4ac5798b305a44b0e/text3d.ipynb deleted file mode 120000 index 56362f0b488..00000000000 --- a/_downloads/b265ca3f8b2227d4ac5798b305a44b0e/text3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b265ca3f8b2227d4ac5798b305a44b0e/text3d.ipynb \ No newline at end of file diff --git a/_downloads/b26e1255887aee7cfbc83658b7380b2f/subplot3d.py b/_downloads/b26e1255887aee7cfbc83658b7380b2f/subplot3d.py deleted file mode 120000 index 190ef036e4a..00000000000 --- a/_downloads/b26e1255887aee7cfbc83658b7380b2f/subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b26e1255887aee7cfbc83658b7380b2f/subplot3d.py \ No newline at end of file diff --git a/_downloads/b27d4c76095ad6c7fa0785f0869f9aa0/rainbow_text.ipynb b/_downloads/b27d4c76095ad6c7fa0785f0869f9aa0/rainbow_text.ipynb deleted file mode 100644 index 0dda6ee89c5..00000000000 --- a/_downloads/b27d4c76095ad6c7fa0785f0869f9aa0/rainbow_text.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rainbow text\n\n\nThe example shows how to string together several text objects.\n\nHistory\n-------\nOn the matplotlib-users list back in February 2012, G\u00f6khan Sever asked the\nfollowing question:\n\n Is there a way in matplotlib to partially specify the color of a string?\n\n Example:\n\n plt.ylabel(\"Today is cloudy.\")\n\n How can I show \"today\" as red, \"is\" as green and \"cloudy.\" as blue?\n\n Thanks.\n\nPaul Ivanov responded with this answer:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib import transforms\n\n\ndef rainbow_text(x, y, strings, colors, orientation='horizontal',\n ax=None, **kwargs):\n \"\"\"\n Take a list of *strings* and *colors* and place them next to each\n other, with text strings[i] being shown in colors[i].\n\n Parameters\n ----------\n x, y : float\n Text position in data coordinates.\n strings : list of str\n The strings to draw.\n colors : list of color\n The colors to use.\n orientation : {'horizontal', 'vertical'}\n ax : Axes, optional\n The Axes to draw into. If None, the current axes will be used.\n **kwargs\n All other keyword arguments are passed to plt.text(), so you can\n set the font size, family, etc.\n \"\"\"\n if ax is None:\n ax = plt.gca()\n t = ax.transData\n canvas = ax.figure.canvas\n\n assert orientation in ['horizontal', 'vertical']\n if orientation == 'vertical':\n kwargs.update(rotation=90, verticalalignment='bottom')\n\n for s, c in zip(strings, colors):\n text = ax.text(x, y, s + \" \", color=c, transform=t, **kwargs)\n\n # Need to draw to update the text position.\n text.draw(canvas.get_renderer())\n ex = text.get_window_extent()\n if orientation == 'horizontal':\n t = transforms.offset_copy(\n text.get_transform(), x=ex.width, units='dots')\n else:\n t = transforms.offset_copy(\n text.get_transform(), y=ex.height, units='dots')\n\n\nwords = \"all unicorns poop rainbows ! ! !\".split()\ncolors = ['red', 'orange', 'gold', 'lawngreen', 'lightseagreen', 'royalblue',\n 'blueviolet']\nplt.figure(figsize=(6, 6))\nrainbow_text(0.1, 0.05, words, colors, size=18)\nrainbow_text(0.05, 0.1, words, colors, orientation='vertical', size=18)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b27df189079bff395fb2f320c928d3e1/range_slider.ipynb b/_downloads/b27df189079bff395fb2f320c928d3e1/range_slider.ipynb deleted file mode 120000 index f4435bbaa7e..00000000000 --- a/_downloads/b27df189079bff395fb2f320c928d3e1/range_slider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b27df189079bff395fb2f320c928d3e1/range_slider.ipynb \ No newline at end of file diff --git a/_downloads/b29151564d938fd1823472497a612dc0/colors.py b/_downloads/b29151564d938fd1823472497a612dc0/colors.py deleted file mode 120000 index b7f44db718f..00000000000 --- a/_downloads/b29151564d938fd1823472497a612dc0/colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b29151564d938fd1823472497a612dc0/colors.py \ No newline at end of file diff --git a/_downloads/b299a4625b4ffeb55b32e694980dade1/demo_constrained_layout.ipynb b/_downloads/b299a4625b4ffeb55b32e694980dade1/demo_constrained_layout.ipynb deleted file mode 120000 index e6b4704cfb4..00000000000 --- a/_downloads/b299a4625b4ffeb55b32e694980dade1/demo_constrained_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b299a4625b4ffeb55b32e694980dade1/demo_constrained_layout.ipynb \ No newline at end of file diff --git a/_downloads/b29d27fe99d16d6506e0a2c4628aedb2/confidence_ellipse.py b/_downloads/b29d27fe99d16d6506e0a2c4628aedb2/confidence_ellipse.py deleted file mode 100644 index ca5809de7ae..00000000000 --- a/_downloads/b29d27fe99d16d6506e0a2c4628aedb2/confidence_ellipse.py +++ /dev/null @@ -1,223 +0,0 @@ -""" -====================================================== -Plot a confidence ellipse of a two-dimensional dataset -====================================================== - -This example shows how to plot a confidence ellipse of a -two-dimensional dataset, using its pearson correlation coefficient. - -The approach that is used to obtain the correct geometry is -explained and proved here: - -https://carstenschelp.github.io/2018/09/14/Plot_Confidence_Ellipse_001.html - -The method avoids the use of an iterative eigen decomposition algorithm -and makes use of the fact that a normalized covariance matrix (composed of -pearson correlation coefficients and ones) is particularly easy to handle. -""" - - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Ellipse -import matplotlib.transforms as transforms - - -############################################################################# -# -# The plotting function itself -# """""""""""""""""""""""""""" -# -# This function plots the confidence ellipse of the covariance of the given -# array-like variables x and y. The ellipse is plotted into the given -# axes-object ax. -# -# The radiuses of the ellipse can be controlled by n_std which is the number -# of standard deviations. The default value is 3 which makes the ellipse -# enclose 99.7% of the points (given the data is normally distributed -# like in these examples). - - -def confidence_ellipse(x, y, ax, n_std=3.0, facecolor='none', **kwargs): - """ - Create a plot of the covariance confidence ellipse of `x` and `y` - - Parameters - ---------- - x, y : array_like, shape (n, ) - Input data. - - ax : matplotlib.axes.Axes - The axes object to draw the ellipse into. - - n_std : float - The number of standard deviations to determine the ellipse's radiuses. - - Returns - ------- - matplotlib.patches.Ellipse - - Other parameters - ---------------- - kwargs : `~matplotlib.patches.Patch` properties - """ - if x.size != y.size: - raise ValueError("x and y must be the same size") - - cov = np.cov(x, y) - pearson = cov[0, 1]/np.sqrt(cov[0, 0] * cov[1, 1]) - # Using a special case to obtain the eigenvalues of this - # two-dimensionl dataset. - ell_radius_x = np.sqrt(1 + pearson) - ell_radius_y = np.sqrt(1 - pearson) - ellipse = Ellipse((0, 0), - width=ell_radius_x * 2, - height=ell_radius_y * 2, - facecolor=facecolor, - **kwargs) - - # Calculating the stdandard deviation of x from - # the squareroot of the variance and multiplying - # with the given number of standard deviations. - scale_x = np.sqrt(cov[0, 0]) * n_std - mean_x = np.mean(x) - - # calculating the stdandard deviation of y ... - scale_y = np.sqrt(cov[1, 1]) * n_std - mean_y = np.mean(y) - - transf = transforms.Affine2D() \ - .rotate_deg(45) \ - .scale(scale_x, scale_y) \ - .translate(mean_x, mean_y) - - ellipse.set_transform(transf + ax.transData) - return ax.add_patch(ellipse) - - -############################################################################# -# -# A helper function to create a correlated dataset -# """""""""""""""""""""""""""""""""""""""""""""""" -# -# Creates a random two-dimesional dataset with the specified -# two-dimensional mean (mu) and dimensions (scale). -# The correlation can be controlled by the param 'dependency', -# a 2x2 matrix. - -def get_correlated_dataset(n, dependency, mu, scale): - latent = np.random.randn(n, 2) - dependent = latent.dot(dependency) - scaled = dependent * scale - scaled_with_offset = scaled + mu - # return x and y of the new, correlated dataset - return scaled_with_offset[:, 0], scaled_with_offset[:, 1] - - -############################################################################# -# -# Positive, negative and weak correlation -# """"""""""""""""""""""""""""""""""""""" -# -# Note that the shape for the weak correlation (right) is an ellipse, -# not a circle because x and y are differently scaled. -# However, the fact that x and y are uncorrelated is shown by -# the axes of the ellipse being aligned with the x- and y-axis -# of the coordinate system. - -np.random.seed(0) - -PARAMETERS = { - 'Positive correlation': np.array([[0.85, 0.35], - [0.15, -0.65]]), - 'Negative correlation': np.array([[0.9, -0.4], - [0.1, -0.6]]), - 'Weak correlation': np.array([[1, 0], - [0, 1]]), -} - -mu = 2, 4 -scale = 3, 5 - -fig, axs = plt.subplots(1, 3, figsize=(9, 3)) -for ax, (title, dependency) in zip(axs, PARAMETERS.items()): - x, y = get_correlated_dataset(800, dependency, mu, scale) - ax.scatter(x, y, s=0.5) - - ax.axvline(c='grey', lw=1) - ax.axhline(c='grey', lw=1) - - confidence_ellipse(x, y, ax, edgecolor='red') - - ax.scatter(mu[0], mu[1], c='red', s=3) - ax.set_title(title) - -plt.show() - - -############################################################################# -# -# Different number of standard deviations -# """"""""""""""""""""""""""""""""""""""" -# -# A plot with n_std = 3 (blue), 2 (purple) and 1 (red) - -fig, ax_nstd = plt.subplots(figsize=(6, 6)) - -dependency_nstd = np.array([ - [0.8, 0.75], - [-0.2, 0.35] -]) -mu = 0, 0 -scale = 8, 5 - -ax_nstd.axvline(c='grey', lw=1) -ax_nstd.axhline(c='grey', lw=1) - -x, y = get_correlated_dataset(500, dependency_nstd, mu, scale) -ax_nstd.scatter(x, y, s=0.5) - -confidence_ellipse(x, y, ax_nstd, n_std=1, - label=r'$1\sigma$', edgecolor='firebrick') -confidence_ellipse(x, y, ax_nstd, n_std=2, - label=r'$2\sigma$', edgecolor='fuchsia', linestyle='--') -confidence_ellipse(x, y, ax_nstd, n_std=3, - label=r'$3\sigma$', edgecolor='blue', linestyle=':') - -ax_nstd.scatter(mu[0], mu[1], c='red', s=3) -ax_nstd.set_title('Different standard deviations') -ax_nstd.legend() -plt.show() - - -############################################################################# -# -# Using the keyword arguments -# """"""""""""""""""""""""""" -# -# Use the kwargs specified for matplotlib.patches.Patch in order -# to have the ellipse rendered in different ways. - -fig, ax_kwargs = plt.subplots(figsize=(6, 6)) -dependency_kwargs = np.array([ - [-0.8, 0.5], - [-0.2, 0.5] -]) -mu = 2, -3 -scale = 6, 5 - -ax_kwargs.axvline(c='grey', lw=1) -ax_kwargs.axhline(c='grey', lw=1) - -x, y = get_correlated_dataset(500, dependency_kwargs, mu, scale) -# Plot the ellipse with zorder=0 in order to demonstrate -# its transparency (caused by the use of alpha). -confidence_ellipse(x, y, ax_kwargs, - alpha=0.5, facecolor='pink', edgecolor='purple', zorder=0) - -ax_kwargs.scatter(x, y, s=0.5) -ax_kwargs.scatter(mu[0], mu[1], c='red', s=3) -ax_kwargs.set_title(f'Using kwargs') - -fig.subplots_adjust(hspace=0.25) -plt.show() diff --git a/_downloads/b29f8777814847b9103963494c74a48f/viewlims.py b/_downloads/b29f8777814847b9103963494c74a48f/viewlims.py deleted file mode 100644 index 2783bb749e2..00000000000 --- a/_downloads/b29f8777814847b9103963494c74a48f/viewlims.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -======== -Viewlims -======== - -Creates two identical panels. Zooming in on the right panel will show -a rectangle in the first panel, denoting the zoomed region. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Rectangle - - -# We just subclass Rectangle so that it can be called with an Axes -# instance, causing the rectangle to update its shape to match the -# bounds of the Axes -class UpdatingRect(Rectangle): - def __call__(self, ax): - self.set_bounds(*ax.viewLim.bounds) - ax.figure.canvas.draw_idle() - - -# A class that will regenerate a fractal set as we zoom in, so that you -# can actually see the increasing detail. A box in the left panel will show -# the area to which we are zoomed. -class MandelbrotDisplay(object): - def __init__(self, h=500, w=500, niter=50, radius=2., power=2): - self.height = h - self.width = w - self.niter = niter - self.radius = radius - self.power = power - - def __call__(self, xstart, xend, ystart, yend): - self.x = np.linspace(xstart, xend, self.width) - self.y = np.linspace(ystart, yend, self.height).reshape(-1, 1) - c = self.x + 1.0j * self.y - threshold_time = np.zeros((self.height, self.width)) - z = np.zeros(threshold_time.shape, dtype=complex) - mask = np.ones(threshold_time.shape, dtype=bool) - for i in range(self.niter): - z[mask] = z[mask]**self.power + c[mask] - mask = (np.abs(z) < self.radius) - threshold_time += mask - return threshold_time - - def ax_update(self, ax): - ax.set_autoscale_on(False) # Otherwise, infinite loop - - # Get the number of points from the number of pixels in the window - dims = ax.patch.get_window_extent().bounds - self.width = int(dims[2] + 0.5) - self.height = int(dims[2] + 0.5) - - # Get the range for the new area - xstart, ystart, xdelta, ydelta = ax.viewLim.bounds - xend = xstart + xdelta - yend = ystart + ydelta - - # Update the image object with our new data and extent - im = ax.images[-1] - im.set_data(self.__call__(xstart, xend, ystart, yend)) - im.set_extent((xstart, xend, ystart, yend)) - ax.figure.canvas.draw_idle() - -md = MandelbrotDisplay() -Z = md(-2., 0.5, -1.25, 1.25) - -fig1, (ax1, ax2) = plt.subplots(1, 2) -ax1.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max())) -ax2.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max())) - -rect = UpdatingRect([0, 0], 0, 0, facecolor='None', edgecolor='black', linewidth=1.0) -rect.set_bounds(*ax2.viewLim.bounds) -ax1.add_patch(rect) - -# Connect for changing the view limits -ax2.callbacks.connect('xlim_changed', rect) -ax2.callbacks.connect('ylim_changed', rect) - -ax2.callbacks.connect('xlim_changed', md.ax_update) -ax2.callbacks.connect('ylim_changed', md.ax_update) -ax2.set_title("Zoom here") - -plt.show() diff --git a/_downloads/b2a391795c756fe3f198a36e54928ca0/csd_demo.py b/_downloads/b2a391795c756fe3f198a36e54928ca0/csd_demo.py deleted file mode 120000 index 597d3dc1f8d..00000000000 --- a/_downloads/b2a391795c756fe3f198a36e54928ca0/csd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b2a391795c756fe3f198a36e54928ca0/csd_demo.py \ No newline at end of file diff --git a/_downloads/b2aae29ad2c90204c5be96a58bcc2c31/artist_reference.py b/_downloads/b2aae29ad2c90204c5be96a58bcc2c31/artist_reference.py deleted file mode 100644 index 7a3385b9dbc..00000000000 --- a/_downloads/b2aae29ad2c90204c5be96a58bcc2c31/artist_reference.py +++ /dev/null @@ -1,133 +0,0 @@ -""" -================================ -Reference for Matplotlib artists -================================ - -This example displays several of Matplotlib's graphics primitives (artists) -drawn using matplotlib API. A full list of artists and the documentation is -available at :ref:`the artist API `. - -Copyright (c) 2010, Bartosz Telenczuk -BSD License -""" -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.path as mpath -import matplotlib.lines as mlines -import matplotlib.patches as mpatches -from matplotlib.collections import PatchCollection - - -def label(xy, text): - y = xy[1] - 0.15 # shift y-value for label so that it's below the artist - plt.text(xy[0], y, text, ha="center", family='sans-serif', size=14) - - -fig, ax = plt.subplots() -# create 3x3 grid to plot the artists -grid = np.mgrid[0.2:0.8:3j, 0.2:0.8:3j].reshape(2, -1).T - -patches = [] - -# add a circle -circle = mpatches.Circle(grid[0], 0.1, ec="none") -patches.append(circle) -label(grid[0], "Circle") - -# add a rectangle -rect = mpatches.Rectangle(grid[1] - [0.025, 0.05], 0.05, 0.1, ec="none") -patches.append(rect) -label(grid[1], "Rectangle") - -# add a wedge -wedge = mpatches.Wedge(grid[2], 0.1, 30, 270, ec="none") -patches.append(wedge) -label(grid[2], "Wedge") - -# add a Polygon -polygon = mpatches.RegularPolygon(grid[3], 5, 0.1) -patches.append(polygon) -label(grid[3], "Polygon") - -# add an ellipse -ellipse = mpatches.Ellipse(grid[4], 0.2, 0.1) -patches.append(ellipse) -label(grid[4], "Ellipse") - -# add an arrow -arrow = mpatches.Arrow(grid[5, 0] - 0.05, grid[5, 1] - 0.05, 0.1, 0.1, - width=0.1) -patches.append(arrow) -label(grid[5], "Arrow") - -# add a path patch -Path = mpath.Path -path_data = [ - (Path.MOVETO, [0.018, -0.11]), - (Path.CURVE4, [-0.031, -0.051]), - (Path.CURVE4, [-0.115, 0.073]), - (Path.CURVE4, [-0.03, 0.073]), - (Path.LINETO, [-0.011, 0.039]), - (Path.CURVE4, [0.043, 0.121]), - (Path.CURVE4, [0.075, -0.005]), - (Path.CURVE4, [0.035, -0.027]), - (Path.CLOSEPOLY, [0.018, -0.11])] -codes, verts = zip(*path_data) -path = mpath.Path(verts + grid[6], codes) -patch = mpatches.PathPatch(path) -patches.append(patch) -label(grid[6], "PathPatch") - -# add a fancy box -fancybox = mpatches.FancyBboxPatch( - grid[7] - [0.025, 0.05], 0.05, 0.1, - boxstyle=mpatches.BoxStyle("Round", pad=0.02)) -patches.append(fancybox) -label(grid[7], "FancyBboxPatch") - -# add a line -x, y = np.array([[-0.06, 0.0, 0.1], [0.05, -0.05, 0.05]]) -line = mlines.Line2D(x + grid[8, 0], y + grid[8, 1], lw=5., alpha=0.3) -label(grid[8], "Line2D") - -colors = np.linspace(0, 1, len(patches)) -collection = PatchCollection(patches, cmap=plt.cm.hsv, alpha=0.3) -collection.set_array(np.array(colors)) -ax.add_collection(collection) -ax.add_line(line) - -plt.axis('equal') -plt.axis('off') -plt.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.lines -matplotlib.lines.Line2D -matplotlib.patches -matplotlib.patches.Circle -matplotlib.patches.Ellipse -matplotlib.patches.Wedge -matplotlib.patches.Rectangle -matplotlib.patches.Arrow -matplotlib.patches.PathPatch -matplotlib.patches.FancyBboxPatch -matplotlib.patches.RegularPolygon -matplotlib.collections -matplotlib.collections.PatchCollection -matplotlib.cm.ScalarMappable.set_array -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.add_line diff --git a/_downloads/b2b2edcb14278d1eb89e73b1d4e64971/simple_anim.ipynb b/_downloads/b2b2edcb14278d1eb89e73b1d4e64971/simple_anim.ipynb deleted file mode 120000 index 28791baff87..00000000000 --- a/_downloads/b2b2edcb14278d1eb89e73b1d4e64971/simple_anim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b2b2edcb14278d1eb89e73b1d4e64971/simple_anim.ipynb \ No newline at end of file diff --git a/_downloads/b2cb1f1bc2cf17c71a904566321fa0ce/frame_grabbing_sgskip.py b/_downloads/b2cb1f1bc2cf17c71a904566321fa0ce/frame_grabbing_sgskip.py deleted file mode 120000 index 814c8983e4f..00000000000 --- a/_downloads/b2cb1f1bc2cf17c71a904566321fa0ce/frame_grabbing_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b2cb1f1bc2cf17c71a904566321fa0ce/frame_grabbing_sgskip.py \ No newline at end of file diff --git a/_downloads/b2cb9eb5412482e7116e4d49ed1a77b7/mathtext_fontfamily_example.py b/_downloads/b2cb9eb5412482e7116e4d49ed1a77b7/mathtext_fontfamily_example.py deleted file mode 120000 index 10ffad8b77d..00000000000 --- a/_downloads/b2cb9eb5412482e7116e4d49ed1a77b7/mathtext_fontfamily_example.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b2cb9eb5412482e7116e4d49ed1a77b7/mathtext_fontfamily_example.py \ No newline at end of file diff --git a/_downloads/b2d000bfc3e1f01b43dc4a1320bc4f75/annotate_explain.py b/_downloads/b2d000bfc3e1f01b43dc4a1320bc4f75/annotate_explain.py deleted file mode 120000 index b459e30f38f..00000000000 --- a/_downloads/b2d000bfc3e1f01b43dc4a1320bc4f75/annotate_explain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b2d000bfc3e1f01b43dc4a1320bc4f75/annotate_explain.py \ No newline at end of file diff --git a/_downloads/b2d3106ec36aed70a9a9d1c728fd9f2b/pgf_fonts.py b/_downloads/b2d3106ec36aed70a9a9d1c728fd9f2b/pgf_fonts.py deleted file mode 120000 index b45cd55201b..00000000000 --- a/_downloads/b2d3106ec36aed70a9a9d1c728fd9f2b/pgf_fonts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b2d3106ec36aed70a9a9d1c728fd9f2b/pgf_fonts.py \ No newline at end of file diff --git a/_downloads/b2d88ad575fc2063402ca36773d56086/colorbar_tick_labelling_demo.ipynb b/_downloads/b2d88ad575fc2063402ca36773d56086/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index f285b599b10..00000000000 --- a/_downloads/b2d88ad575fc2063402ca36773d56086/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b2d88ad575fc2063402ca36773d56086/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/b2e35b62b5c3f51a0a0e17a281c562af/tricontour_smooth_user.ipynb b/_downloads/b2e35b62b5c3f51a0a0e17a281c562af/tricontour_smooth_user.ipynb deleted file mode 100644 index d7be6e90b1c..00000000000 --- a/_downloads/b2e35b62b5c3f51a0a0e17a281c562af/tricontour_smooth_user.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tricontour Smooth User\n\n\nDemonstrates high-resolution tricontouring on user-defined triangular grids\nwith `matplotlib.tri.UniformTriRefiner`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.tri as tri\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport numpy as np\n\n\n#-----------------------------------------------------------------------------\n# Analytical test function\n#-----------------------------------------------------------------------------\ndef function_z(x, y):\n r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2)\n theta1 = np.arctan2(0.5 - x, 0.5 - y)\n r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2)\n theta2 = np.arctan2(-x - 0.2, -y - 0.2)\n z = -(2 * (np.exp((r1 / 10)**2) - 1) * 30. * np.cos(7. * theta1) +\n (np.exp((r2 / 10)**2) - 1) * 30. * np.cos(11. * theta2) +\n 0.7 * (x**2 + y**2))\n return (np.max(z) - z) / (np.max(z) - np.min(z))\n\n#-----------------------------------------------------------------------------\n# Creating a Triangulation\n#-----------------------------------------------------------------------------\n# First create the x and y coordinates of the points.\nn_angles = 20\nn_radii = 10\nmin_radius = 0.15\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\nz = function_z(x, y)\n\n# Now create the Triangulation.\n# (Creating a Triangulation without specifying the triangles results in the\n# Delaunay triangulation of the points.)\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\n#-----------------------------------------------------------------------------\n# Refine data\n#-----------------------------------------------------------------------------\nrefiner = tri.UniformTriRefiner(triang)\ntri_refi, z_test_refi = refiner.refine_field(z, subdiv=3)\n\n#-----------------------------------------------------------------------------\n# Plot the triangulation and the high-res iso-contours\n#-----------------------------------------------------------------------------\nfig, ax = plt.subplots()\nax.set_aspect('equal')\nax.triplot(triang, lw=0.5, color='white')\n\nlevels = np.arange(0., 1., 0.025)\ncmap = cm.get_cmap(name='terrain', lut=None)\nax.tricontourf(tri_refi, z_test_refi, levels=levels, cmap=cmap)\nax.tricontour(tri_refi, z_test_refi, levels=levels,\n colors=['0.25', '0.5', '0.5', '0.5', '0.5'],\n linewidths=[1.0, 0.5, 0.5, 0.5, 0.5])\n\nax.set_title(\"High-resolution tricontouring\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.tri\nmatplotlib.tri.Triangulation\nmatplotlib.tri.UniformTriRefiner" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b2e7d46989c299407d4134511908e5f0/barchart_demo.ipynb b/_downloads/b2e7d46989c299407d4134511908e5f0/barchart_demo.ipynb deleted file mode 120000 index 26c17b3a754..00000000000 --- a/_downloads/b2e7d46989c299407d4134511908e5f0/barchart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b2e7d46989c299407d4134511908e5f0/barchart_demo.ipynb \ No newline at end of file diff --git a/_downloads/b2f07ac06ed32075d6fa912455e5d2a9/bxp.py b/_downloads/b2f07ac06ed32075d6fa912455e5d2a9/bxp.py deleted file mode 120000 index 56ed16ce329..00000000000 --- a/_downloads/b2f07ac06ed32075d6fa912455e5d2a9/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b2f07ac06ed32075d6fa912455e5d2a9/bxp.py \ No newline at end of file diff --git a/_downloads/b2fb48bee1b5fe48e01aed16ddb43589/pie_and_donut_labels.py b/_downloads/b2fb48bee1b5fe48e01aed16ddb43589/pie_and_donut_labels.py deleted file mode 120000 index f29bbeb9922..00000000000 --- a/_downloads/b2fb48bee1b5fe48e01aed16ddb43589/pie_and_donut_labels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b2fb48bee1b5fe48e01aed16ddb43589/pie_and_donut_labels.py \ No newline at end of file diff --git a/_downloads/b2fdd8f51d7c8824884fc932a1deeb43/contour_label_demo.ipynb b/_downloads/b2fdd8f51d7c8824884fc932a1deeb43/contour_label_demo.ipynb deleted file mode 100644 index 3bf996c357f..00000000000 --- a/_downloads/b2fdd8f51d7c8824884fc932a1deeb43/contour_label_demo.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Label Demo\n\n\nIllustrate some of the more advanced things that one can do with\ncontour labels.\n\nSee also the :doc:`contour demo example\n`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport numpy as np\nimport matplotlib.ticker as ticker\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define our surface\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "delta = 0.025\nx = np.arange(-3.0, 3.0, delta)\ny = np.arange(-2.0, 2.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make contour labels using creative float classes\nFollows suggestion of Manuel Metz\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Define a class that forces representation of float to look a certain way\n# This remove trailing zero so '1.0' becomes '1'\n\n\nclass nf(float):\n def __repr__(self):\n s = f'{self:.1f}'\n return f'{self:.0f}' if s[-1] == '0' else s\n\n\n# Basic contour plot\nfig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z)\n\n# Recast levels to new class\nCS.levels = [nf(val) for val in CS.levels]\n\n# Label levels with specially formatted floats\nif plt.rcParams[\"text.usetex\"]:\n fmt = r'%r \\%%'\nelse:\n fmt = '%r %%'\n\nax.clabel(CS, CS.levels, inline=True, fmt=fmt, fontsize=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Label contours with arbitrary strings using a dictionary\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\n\n# Basic contour plot\nCS1 = ax1.contour(X, Y, Z)\n\nfmt = {}\nstrs = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh']\nfor l, s in zip(CS1.levels, strs):\n fmt[l] = s\n\n# Label every other level using strings\nax1.clabel(CS1, CS1.levels[::2], inline=True, fmt=fmt, fontsize=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use a Formatter\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\n\nCS2 = ax2.contour(X, Y, 100**Z, locator=plt.LogLocator())\nfmt = ticker.LogFormatterMathtext()\nfmt.create_dummy_axis()\nax2.clabel(CS2, CS2.levels, fmt=fmt)\nax2.set_title(\"$100^Z$\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.clabel\nmatplotlib.pyplot.clabel\nmatplotlib.ticker.LogFormatterMathtext\nmatplotlib.ticker.TickHelper.create_dummy_axis" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b302bd743b7e069a18575b6e8622c527/grayscale.py b/_downloads/b302bd743b7e069a18575b6e8622c527/grayscale.py deleted file mode 120000 index b2052b9d385..00000000000 --- a/_downloads/b302bd743b7e069a18575b6e8622c527/grayscale.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b302bd743b7e069a18575b6e8622c527/grayscale.py \ No newline at end of file diff --git a/_downloads/b30b0fb2b58f18f3b3c635d8f242b8f2/unchained.ipynb b/_downloads/b30b0fb2b58f18f3b3c635d8f242b8f2/unchained.ipynb deleted file mode 120000 index 7b8a1905f24..00000000000 --- a/_downloads/b30b0fb2b58f18f3b3c635d8f242b8f2/unchained.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b30b0fb2b58f18f3b3c635d8f242b8f2/unchained.ipynb \ No newline at end of file diff --git a/_downloads/b30c87e0be07afe53fc11c764fc6fd35/3D.py b/_downloads/b30c87e0be07afe53fc11c764fc6fd35/3D.py deleted file mode 120000 index 55981590d96..00000000000 --- a/_downloads/b30c87e0be07afe53fc11c764fc6fd35/3D.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b30c87e0be07afe53fc11c764fc6fd35/3D.py \ No newline at end of file diff --git a/_downloads/b3171dfbfe95ef68d60accbfa6b1f064/units_sample.ipynb b/_downloads/b3171dfbfe95ef68d60accbfa6b1f064/units_sample.ipynb deleted file mode 120000 index 0c2de846e48..00000000000 --- a/_downloads/b3171dfbfe95ef68d60accbfa6b1f064/units_sample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b3171dfbfe95ef68d60accbfa6b1f064/units_sample.ipynb \ No newline at end of file diff --git a/_downloads/b3175b39c454ddd7c3cbff2081eba43f/scales.ipynb b/_downloads/b3175b39c454ddd7c3cbff2081eba43f/scales.ipynb deleted file mode 120000 index ef31e237c07..00000000000 --- a/_downloads/b3175b39c454ddd7c3cbff2081eba43f/scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b3175b39c454ddd7c3cbff2081eba43f/scales.ipynb \ No newline at end of file diff --git a/_downloads/b31829b8f3e268d081c140080fd62693/pgf.ipynb b/_downloads/b31829b8f3e268d081c140080fd62693/pgf.ipynb deleted file mode 120000 index 2b18a5b763f..00000000000 --- a/_downloads/b31829b8f3e268d081c140080fd62693/pgf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b31829b8f3e268d081c140080fd62693/pgf.ipynb \ No newline at end of file diff --git a/_downloads/b31b03b638b5cb2f85d26489a298d03f/contour_manual.ipynb b/_downloads/b31b03b638b5cb2f85d26489a298d03f/contour_manual.ipynb deleted file mode 120000 index 0820f6acef2..00000000000 --- a/_downloads/b31b03b638b5cb2f85d26489a298d03f/contour_manual.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b31b03b638b5cb2f85d26489a298d03f/contour_manual.ipynb \ No newline at end of file diff --git a/_downloads/b31dec6f5f26b03078381e5c3feb5597/colormap_normalizations.py b/_downloads/b31dec6f5f26b03078381e5c3feb5597/colormap_normalizations.py deleted file mode 120000 index 3ec5d71ab5d..00000000000 --- a/_downloads/b31dec6f5f26b03078381e5c3feb5597/colormap_normalizations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/b31dec6f5f26b03078381e5c3feb5597/colormap_normalizations.py \ No newline at end of file diff --git a/_downloads/b33b84060953a3cccc46aaeb3f8f4a1e/text_fontdict.ipynb b/_downloads/b33b84060953a3cccc46aaeb3f8f4a1e/text_fontdict.ipynb deleted file mode 120000 index 7496a370f4d..00000000000 --- a/_downloads/b33b84060953a3cccc46aaeb3f8f4a1e/text_fontdict.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b33b84060953a3cccc46aaeb3f8f4a1e/text_fontdict.ipynb \ No newline at end of file diff --git a/_downloads/b3425c70e4ae8d4093a76a6381ed2047/embedding_in_wx3_sgskip.ipynb b/_downloads/b3425c70e4ae8d4093a76a6381ed2047/embedding_in_wx3_sgskip.ipynb deleted file mode 100644 index 96cd5a44f8e..00000000000 --- a/_downloads/b3425c70e4ae8d4093a76a6381ed2047/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #3\n==================\n\nCopyright (C) 2003-2004 Andrew Straw, Jeremy O'Donoghue and others\n\nLicense: This work is licensed under the PSF. A copy should be included\nwith this source code, and is also available at\nhttps://docs.python.org/3/license.html\n\nThis is yet another example of using matplotlib with wx. Hopefully\nthis is pretty full-featured:\n\n - both matplotlib toolbar and WX buttons manipulate plot\n - full wxApp framework, including widget interaction\n - XRC (XML wxWidgets resource) file to create GUI (made with XRCed)\n\nThis was derived from embedding_in_wx and dynamic_image_wxagg.\n\nThanks to matplotlib and wx teams for creating such great software!\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.cm as cm\nimport matplotlib.cbook as cbook\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nimport wx\nimport wx.xrc as xrc\n\nERR_TOL = 1e-5 # floating point slop for peak-detection\n\n\nmatplotlib.rc('image', origin='lower')\n\n\nclass PlotPanel(wx.Panel):\n def __init__(self, parent):\n wx.Panel.__init__(self, parent, -1)\n\n self.fig = Figure((5, 4), 75)\n self.canvas = FigureCanvas(self, -1, self.fig)\n self.toolbar = NavigationToolbar(self.canvas) # matplotlib toolbar\n self.toolbar.Realize()\n # self.toolbar.set_active([0,1])\n\n # Now put all into a sizer\n sizer = wx.BoxSizer(wx.VERTICAL)\n # This way of adding to sizer allows resizing\n sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW)\n # Best to allow the toolbar to resize!\n sizer.Add(self.toolbar, 0, wx.GROW)\n self.SetSizer(sizer)\n self.Fit()\n\n def init_plot_data(self):\n a = self.fig.add_subplot(111)\n\n x = np.arange(120.0) * 2 * np.pi / 60.0\n y = np.arange(100.0) * 2 * np.pi / 50.0\n self.x, self.y = np.meshgrid(x, y)\n z = np.sin(self.x) + np.cos(self.y)\n self.im = a.imshow(z, cmap=cm.RdBu) # , interpolation='nearest')\n\n zmax = np.max(z) - ERR_TOL\n ymax_i, xmax_i = np.nonzero(z >= zmax)\n if self.im.origin == 'upper':\n ymax_i = z.shape[0] - ymax_i\n self.lines = a.plot(xmax_i, ymax_i, 'ko')\n\n self.toolbar.update() # Not sure why this is needed - ADS\n\n def GetToolBar(self):\n # You will need to override GetToolBar if you are using an\n # unmanaged toolbar in your frame\n return self.toolbar\n\n def OnWhiz(self, evt):\n self.x += np.pi / 15\n self.y += np.pi / 20\n z = np.sin(self.x) + np.cos(self.y)\n self.im.set_array(z)\n\n zmax = np.max(z) - ERR_TOL\n ymax_i, xmax_i = np.nonzero(z >= zmax)\n if self.im.origin == 'upper':\n ymax_i = z.shape[0] - ymax_i\n self.lines[0].set_data(xmax_i, ymax_i)\n\n self.canvas.draw()\n\n\nclass MyApp(wx.App):\n def OnInit(self):\n xrcfile = cbook.get_sample_data('embedding_in_wx3.xrc',\n asfileobj=False)\n print('loading', xrcfile)\n\n self.res = xrc.XmlResource(xrcfile)\n\n # main frame and panel ---------\n\n self.frame = self.res.LoadFrame(None, \"MainFrame\")\n self.panel = xrc.XRCCTRL(self.frame, \"MainPanel\")\n\n # matplotlib panel -------------\n\n # container for matplotlib panel (I like to make a container\n # panel for our panel so I know where it'll go when in XRCed.)\n plot_container = xrc.XRCCTRL(self.frame, \"plot_container_panel\")\n sizer = wx.BoxSizer(wx.VERTICAL)\n\n # matplotlib panel itself\n self.plotpanel = PlotPanel(plot_container)\n self.plotpanel.init_plot_data()\n\n # wx boilerplate\n sizer.Add(self.plotpanel, 1, wx.EXPAND)\n plot_container.SetSizer(sizer)\n\n # whiz button ------------------\n whiz_button = xrc.XRCCTRL(self.frame, \"whiz_button\")\n whiz_button.Bind(wx.EVT_BUTTON, self.plotpanel.OnWhiz)\n\n # bang button ------------------\n bang_button = xrc.XRCCTRL(self.frame, \"bang_button\")\n bang_button.Bind(wx.EVT_BUTTON, self.OnBang)\n\n # final setup ------------------\n self.frame.Show(1)\n\n self.SetTopWindow(self.frame)\n\n return True\n\n def OnBang(self, event):\n bang_count = xrc.XRCCTRL(self.frame, \"bang_count\")\n bangs = bang_count.GetValue()\n bangs = int(bangs) + 1\n bang_count.SetValue(str(bangs))\n\nif __name__ == '__main__':\n app = MyApp(0)\n app.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b3486a72b122ae62b4b09c81d7e7951a/legend_demo.py b/_downloads/b3486a72b122ae62b4b09c81d7e7951a/legend_demo.py deleted file mode 100644 index 20fd9325993..00000000000 --- a/_downloads/b3486a72b122ae62b4b09c81d7e7951a/legend_demo.py +++ /dev/null @@ -1,182 +0,0 @@ -""" -=========== -Legend Demo -=========== - -Plotting legends in Matplotlib. - -There are many ways to create and customize legends in Matplotlib. Below -we'll show a few examples for how to do so. - -First we'll show off how to make a legend for specific lines. -""" - -import matplotlib.pyplot as plt -import matplotlib.collections as mcol -from matplotlib.legend_handler import HandlerLineCollection, HandlerTuple -from matplotlib.lines import Line2D -import numpy as np - -t1 = np.arange(0.0, 2.0, 0.1) -t2 = np.arange(0.0, 2.0, 0.01) - -fig, ax = plt.subplots() - -# note that plot returns a list of lines. The "l1, = plot" usage -# extracts the first element of the list into l1 using tuple -# unpacking. So l1 is a Line2D instance, not a sequence of lines -l1, = ax.plot(t2, np.exp(-t2)) -l2, l3 = ax.plot(t2, np.sin(2 * np.pi * t2), '--o', t1, np.log(1 + t1), '.') -l4, = ax.plot(t2, np.exp(-t2) * np.sin(2 * np.pi * t2), 's-.') - -ax.legend((l2, l4), ('oscillatory', 'damped'), loc='upper right', shadow=True) -ax.set_xlabel('time') -ax.set_ylabel('volts') -ax.set_title('Damped oscillation') -plt.show() - - -############################################################################### -# Next we'll demonstrate plotting more complex labels. - -x = np.linspace(0, 1) - -fig, (ax0, ax1) = plt.subplots(2, 1) - -# Plot the lines y=x**n for n=1..4. -for n in range(1, 5): - ax0.plot(x, x**n, label="n={0}".format(n)) -leg = ax0.legend(loc="upper left", bbox_to_anchor=[0, 1], - ncol=2, shadow=True, title="Legend", fancybox=True) -leg.get_title().set_color("red") - -# Demonstrate some more complex labels. -ax1.plot(x, x**2, label="multi\nline") -half_pi = np.linspace(0, np.pi / 2) -ax1.plot(np.sin(half_pi), np.cos(half_pi), label=r"$\frac{1}{2}\pi$") -ax1.plot(x, 2**(x**2), label="$2^{x^2}$") -ax1.legend(shadow=True, fancybox=True) - -plt.show() - - -############################################################################### -# Here we attach legends to more complex plots. - -fig, axes = plt.subplots(3, 1, constrained_layout=True) -top_ax, middle_ax, bottom_ax = axes - -top_ax.bar([0, 1, 2], [0.2, 0.3, 0.1], width=0.4, label="Bar 1", - align="center") -top_ax.bar([0.5, 1.5, 2.5], [0.3, 0.2, 0.2], color="red", width=0.4, - label="Bar 2", align="center") -top_ax.legend() - -middle_ax.errorbar([0, 1, 2], [2, 3, 1], xerr=0.4, fmt="s", label="test 1") -middle_ax.errorbar([0, 1, 2], [3, 2, 4], yerr=0.3, fmt="o", label="test 2") -middle_ax.errorbar([0, 1, 2], [1, 1, 3], xerr=0.4, yerr=0.3, fmt="^", - label="test 3") -middle_ax.legend() - -bottom_ax.stem([0.3, 1.5, 2.7], [1, 3.6, 2.7], label="stem test") -bottom_ax.legend() - -plt.show() - -############################################################################### -# Now we'll showcase legend entries with more than one legend key. - -fig, (ax1, ax2) = plt.subplots(2, 1, constrained_layout=True) - -# First plot: two legend keys for a single entry -p1 = ax1.scatter([1], [5], c='r', marker='s', s=100) -p2 = ax1.scatter([3], [2], c='b', marker='o', s=100) -# `plot` returns a list, but we want the handle - thus the comma on the left -p3, = ax1.plot([1, 5], [4, 4], 'm-d') - -# Assign two of the handles to the same legend entry by putting them in a tuple -# and using a generic handler map (which would be used for any additional -# tuples of handles like (p1, p3)). -l = ax1.legend([(p1, p3), p2], ['two keys', 'one key'], scatterpoints=1, - numpoints=1, handler_map={tuple: HandlerTuple(ndivide=None)}) - -# Second plot: plot two bar charts on top of each other and change the padding -# between the legend keys -x_left = [1, 2, 3] -y_pos = [1, 3, 2] -y_neg = [2, 1, 4] - -rneg = ax2.bar(x_left, y_neg, width=0.5, color='w', hatch='///', label='-1') -rpos = ax2.bar(x_left, y_pos, width=0.5, color='k', label='+1') - -# Treat each legend entry differently by using specific `HandlerTuple`s -l = ax2.legend([(rpos, rneg), (rneg, rpos)], ['pad!=0', 'pad=0'], - handler_map={(rpos, rneg): HandlerTuple(ndivide=None), - (rneg, rpos): HandlerTuple(ndivide=None, pad=0.)}) -plt.show() - -############################################################################### -# Finally, it is also possible to write custom objects that define -# how to stylize legends. - - -class HandlerDashedLines(HandlerLineCollection): - """ - Custom Handler for LineCollection instances. - """ - def create_artists(self, legend, orig_handle, - xdescent, ydescent, width, height, fontsize, trans): - # figure out how many lines there are - numlines = len(orig_handle.get_segments()) - xdata, xdata_marker = self.get_xdata(legend, xdescent, ydescent, - width, height, fontsize) - leglines = [] - # divide the vertical space where the lines will go - # into equal parts based on the number of lines - ydata = np.full_like(xdata, height / (numlines + 1)) - # for each line, create the line at the proper location - # and set the dash pattern - for i in range(numlines): - legline = Line2D(xdata, ydata * (numlines - i) - ydescent) - self.update_prop(legline, orig_handle, legend) - # set color, dash pattern, and linewidth to that - # of the lines in linecollection - try: - color = orig_handle.get_colors()[i] - except IndexError: - color = orig_handle.get_colors()[0] - try: - dashes = orig_handle.get_dashes()[i] - except IndexError: - dashes = orig_handle.get_dashes()[0] - try: - lw = orig_handle.get_linewidths()[i] - except IndexError: - lw = orig_handle.get_linewidths()[0] - if dashes[0] is not None: - legline.set_dashes(dashes[1]) - legline.set_color(color) - legline.set_transform(trans) - legline.set_linewidth(lw) - leglines.append(legline) - return leglines - -x = np.linspace(0, 5, 100) - -fig, ax = plt.subplots() -colors = plt.rcParams['axes.prop_cycle'].by_key()['color'][:5] -styles = ['solid', 'dashed', 'dashed', 'dashed', 'solid'] -lines = [] -for i, color, style in zip(range(5), colors, styles): - ax.plot(x, np.sin(x) - .1 * i, c=color, ls=style) - -# make proxy artists -# make list of one line -- doesn't matter what the coordinates are -line = [[(0, 0)]] -# set up the proxy artist -lc = mcol.LineCollection(5 * line, linestyles=styles, colors=colors) -# create the legend -ax.legend([lc], ['multi-line'], handler_map={type(lc): HandlerDashedLines()}, - handlelength=2.5, handleheight=3) - -plt.show() diff --git a/_downloads/b359adc3e92cd1013390c66976598d37/parasite_simple.ipynb b/_downloads/b359adc3e92cd1013390c66976598d37/parasite_simple.ipynb deleted file mode 120000 index 3c5641be462..00000000000 --- a/_downloads/b359adc3e92cd1013390c66976598d37/parasite_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b359adc3e92cd1013390c66976598d37/parasite_simple.ipynb \ No newline at end of file diff --git a/_downloads/b35e7dea582e4eeec9ee6b7ccc6d835a/contour_image.py b/_downloads/b35e7dea582e4eeec9ee6b7ccc6d835a/contour_image.py deleted file mode 120000 index b3413460ee4..00000000000 --- a/_downloads/b35e7dea582e4eeec9ee6b7ccc6d835a/contour_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b35e7dea582e4eeec9ee6b7ccc6d835a/contour_image.py \ No newline at end of file diff --git a/_downloads/b3630e2ccc1e78cd5b3fbf9a7e179fe2/placing_text_boxes.ipynb b/_downloads/b3630e2ccc1e78cd5b3fbf9a7e179fe2/placing_text_boxes.ipynb deleted file mode 100644 index 982d5bc0ad7..00000000000 --- a/_downloads/b3630e2ccc1e78cd5b3fbf9a7e179fe2/placing_text_boxes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nPlacing text boxes\n==================\n\nWhen decorating axes with text boxes, two useful tricks are to place\nthe text in axes coordinates (see :doc:`/tutorials/advanced/transforms_tutorial`), so the\ntext doesn't move around with changes in x or y limits. You can also\nuse the ``bbox`` property of text to surround the text with a\n:class:`~matplotlib.patches.Patch` instance -- the ``bbox`` keyword\nargument takes a dictionary with keys that are Patch properties.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\nx = 30*np.random.randn(10000)\nmu = x.mean()\nmedian = np.median(x)\nsigma = x.std()\ntextstr = '\\n'.join((\n r'$\\mu=%.2f$' % (mu, ),\n r'$\\mathrm{median}=%.2f$' % (median, ),\n r'$\\sigma=%.2f$' % (sigma, )))\n\nax.hist(x, 50)\n# these are matplotlib.patch.Patch properties\nprops = dict(boxstyle='round', facecolor='wheat', alpha=0.5)\n\n# place a text box in upper left in axes coords\nax.text(0.05, 0.95, textstr, transform=ax.transAxes, fontsize=14,\n verticalalignment='top', bbox=props)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b367b671fec3767770f3142c5d134249/coords_report.ipynb b/_downloads/b367b671fec3767770f3142c5d134249/coords_report.ipynb deleted file mode 120000 index fc5ed5241ee..00000000000 --- a/_downloads/b367b671fec3767770f3142c5d134249/coords_report.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b367b671fec3767770f3142c5d134249/coords_report.ipynb \ No newline at end of file diff --git a/_downloads/b3731c9c4a0d3a294922237bd6b9911f/confidence_ellipse.py b/_downloads/b3731c9c4a0d3a294922237bd6b9911f/confidence_ellipse.py deleted file mode 120000 index 9e03e6655e1..00000000000 --- a/_downloads/b3731c9c4a0d3a294922237bd6b9911f/confidence_ellipse.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b3731c9c4a0d3a294922237bd6b9911f/confidence_ellipse.py \ No newline at end of file diff --git a/_downloads/b379b60ac740e9a876d10a9451b77806/image_nonuniform.ipynb b/_downloads/b379b60ac740e9a876d10a9451b77806/image_nonuniform.ipynb deleted file mode 120000 index 86c4858f349..00000000000 --- a/_downloads/b379b60ac740e9a876d10a9451b77806/image_nonuniform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b379b60ac740e9a876d10a9451b77806/image_nonuniform.ipynb \ No newline at end of file diff --git a/_downloads/b37aa9e14f42cf98064246702f8a9c4b/embedding_in_wx2_sgskip.py b/_downloads/b37aa9e14f42cf98064246702f8a9c4b/embedding_in_wx2_sgskip.py deleted file mode 120000 index e15d1dd845e..00000000000 --- a/_downloads/b37aa9e14f42cf98064246702f8a9c4b/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b37aa9e14f42cf98064246702f8a9c4b/embedding_in_wx2_sgskip.py \ No newline at end of file diff --git a/_downloads/b37f04ff865e4f8761345e0006c2694c/evans_test.ipynb b/_downloads/b37f04ff865e4f8761345e0006c2694c/evans_test.ipynb deleted file mode 120000 index 503caf14e22..00000000000 --- a/_downloads/b37f04ff865e4f8761345e0006c2694c/evans_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b37f04ff865e4f8761345e0006c2694c/evans_test.ipynb \ No newline at end of file diff --git a/_downloads/b38e7e6affb8627f98fe832e54458e99/contour3d_3.py b/_downloads/b38e7e6affb8627f98fe832e54458e99/contour3d_3.py deleted file mode 120000 index 9f5c026ea06..00000000000 --- a/_downloads/b38e7e6affb8627f98fe832e54458e99/contour3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b38e7e6affb8627f98fe832e54458e99/contour3d_3.py \ No newline at end of file diff --git a/_downloads/b38ed7a3d9c5fcbf2100980969623c10/custom_shaded_3d_surface.ipynb b/_downloads/b38ed7a3d9c5fcbf2100980969623c10/custom_shaded_3d_surface.ipynb deleted file mode 120000 index 3936a9d6d68..00000000000 --- a/_downloads/b38ed7a3d9c5fcbf2100980969623c10/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b38ed7a3d9c5fcbf2100980969623c10/custom_shaded_3d_surface.ipynb \ No newline at end of file diff --git a/_downloads/b399863c18129a77916d4c8398e5b9d0/bar.py b/_downloads/b399863c18129a77916d4c8398e5b9d0/bar.py deleted file mode 120000 index c0e1be86c96..00000000000 --- a/_downloads/b399863c18129a77916d4c8398e5b9d0/bar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b399863c18129a77916d4c8398e5b9d0/bar.py \ No newline at end of file diff --git a/_downloads/b39c7a2a57024b1331392ea25e97f35f/demo_axis_direction.py b/_downloads/b39c7a2a57024b1331392ea25e97f35f/demo_axis_direction.py deleted file mode 100644 index d4c8f817b5c..00000000000 --- a/_downloads/b39c7a2a57024b1331392ea25e97f35f/demo_axis_direction.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -=================== -Demo Axis Direction -=================== - -""" - -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.angle_helper as angle_helper -import mpl_toolkits.axisartist.grid_finder as grid_finder -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D - -import mpl_toolkits.axisartist as axisartist - -from mpl_toolkits.axisartist.grid_helper_curvelinear import \ - GridHelperCurveLinear - - -def setup_axes(fig, rect): - """ - polar projection, but in a rectangular box. - """ - - # see demo_curvelinear_grid.py for details - tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform() - - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle=360, - lat_cycle=None, - lon_minmax=None, - lat_minmax=(0, np.inf), - ) - - grid_locator1 = angle_helper.LocatorDMS(12) - grid_locator2 = grid_finder.MaxNLocator(5) - - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1 - ) - - ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper) - ax1.axis[:].toggle(ticklabels=False) - - fig.add_subplot(ax1) - - ax1.set_aspect(1.) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - return ax1 - - -def add_floating_axis1(ax1): - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 30) - axis.label.set_text(r"$\theta = 30^{\circ}$") - axis.label.set_visible(True) - - return axis - - -def add_floating_axis2(ax1): - ax1.axis["lon"] = axis = ax1.new_floating_axis(1, 6) - axis.label.set_text(r"$r = 6$") - axis.label.set_visible(True) - - return axis - - -fig = plt.figure(figsize=(8, 4)) -fig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99, - wspace=0.01, hspace=0.01) - -for i, d in enumerate(["bottom", "left", "top", "right"]): - ax1 = setup_axes(fig, rect=241++i) - axis = add_floating_axis1(ax1) - axis.set_axis_direction(d) - ax1.annotate(d, (0, 1), (5, -5), - xycoords="axes fraction", textcoords="offset points", - va="top", ha="left") - -for i, d in enumerate(["bottom", "left", "top", "right"]): - ax1 = setup_axes(fig, rect=245++i) - axis = add_floating_axis2(ax1) - axis.set_axis_direction(d) - ax1.annotate(d, (0, 1), (5, -5), - xycoords="axes fraction", textcoords="offset points", - va="top", ha="left") - -plt.show() diff --git a/_downloads/b39e690fa41c8bf4ed1215fc4d057c3d/span_regions.py b/_downloads/b39e690fa41c8bf4ed1215fc4d057c3d/span_regions.py deleted file mode 100644 index e1a9b85c140..00000000000 --- a/_downloads/b39e690fa41c8bf4ed1215fc4d057c3d/span_regions.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -================ -Using span_where -================ - -Illustrate some helper functions for shading regions where a logical -mask is True. - -See :meth:`matplotlib.collections.BrokenBarHCollection.span_where` -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.collections as collections - - -t = np.arange(0.0, 2, 0.01) -s1 = np.sin(2*np.pi*t) -s2 = 1.2*np.sin(4*np.pi*t) - - -fig, ax = plt.subplots() -ax.set_title('using span_where') -ax.plot(t, s1, color='black') -ax.axhline(0, color='black', lw=2) - -collection = collections.BrokenBarHCollection.span_where( - t, ymin=0, ymax=1, where=s1 > 0, facecolor='green', alpha=0.5) -ax.add_collection(collection) - -collection = collections.BrokenBarHCollection.span_where( - t, ymin=-1, ymax=0, where=s1 < 0, facecolor='red', alpha=0.5) -ax.add_collection(collection) - - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.collections.BrokenBarHCollection -matplotlib.collections.BrokenBarHCollection.span_where -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.axhline diff --git a/_downloads/b3a0941132fac60f643cea485fe1ce02/ganged_plots.py b/_downloads/b3a0941132fac60f643cea485fe1ce02/ganged_plots.py deleted file mode 100644 index 4014dabdf04..00000000000 --- a/_downloads/b3a0941132fac60f643cea485fe1ce02/ganged_plots.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -========================== -Creating adjacent subplots -========================== - -To create plots that share a common axis (visually) you can set the hspace -between the subplots to zero. Passing sharex=True when creating the subplots -will automatically turn off all x ticks and labels except those on the bottom -axis. - -In this example the plots share a common x axis but you can follow the same -logic to supply a common y axis. -""" -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 2.0, 0.01) - -s1 = np.sin(2 * np.pi * t) -s2 = np.exp(-t) -s3 = s1 * s2 - -fig, axs = plt.subplots(3, 1, sharex=True) -# Remove horizontal space between axes -fig.subplots_adjust(hspace=0) - -# Plot each graph, and manually set the y tick values -axs[0].plot(t, s1) -axs[0].set_yticks(np.arange(-0.9, 1.0, 0.4)) -axs[0].set_ylim(-1, 1) - -axs[1].plot(t, s2) -axs[1].set_yticks(np.arange(0.1, 1.0, 0.2)) -axs[1].set_ylim(0, 1) - -axs[2].plot(t, s3) -axs[2].set_yticks(np.arange(-0.9, 1.0, 0.4)) -axs[2].set_ylim(-1, 1) - -plt.show() diff --git a/_downloads/b3a0c7d2e43d462941521b763e0d1fe0/fill_between_alpha.ipynb b/_downloads/b3a0c7d2e43d462941521b763e0d1fe0/fill_between_alpha.ipynb deleted file mode 120000 index 2c0c602df3a..00000000000 --- a/_downloads/b3a0c7d2e43d462941521b763e0d1fe0/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/b3a0c7d2e43d462941521b763e0d1fe0/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/b3a520cabd4d0d03af82b9f312fea6a0/histogram_cumulative.ipynb b/_downloads/b3a520cabd4d0d03af82b9f312fea6a0/histogram_cumulative.ipynb deleted file mode 120000 index 34748a8d580..00000000000 --- a/_downloads/b3a520cabd4d0d03af82b9f312fea6a0/histogram_cumulative.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b3a520cabd4d0d03af82b9f312fea6a0/histogram_cumulative.ipynb \ No newline at end of file diff --git a/_downloads/b3aba6a179cf29b6f981ae7787dafaba/pgf.py b/_downloads/b3aba6a179cf29b6f981ae7787dafaba/pgf.py deleted file mode 120000 index 265f054986b..00000000000 --- a/_downloads/b3aba6a179cf29b6f981ae7787dafaba/pgf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b3aba6a179cf29b6f981ae7787dafaba/pgf.py \ No newline at end of file diff --git a/_downloads/b3b6b1f467834782267f9323eb52b42f/date_demo_rrule.py b/_downloads/b3b6b1f467834782267f9323eb52b42f/date_demo_rrule.py deleted file mode 120000 index a6e51f1250b..00000000000 --- a/_downloads/b3b6b1f467834782267f9323eb52b42f/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b3b6b1f467834782267f9323eb52b42f/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/b3bbae39e8c6e22fe8ed3d7947f84f31/annotation_demo.ipynb b/_downloads/b3bbae39e8c6e22fe8ed3d7947f84f31/annotation_demo.ipynb deleted file mode 120000 index 980743b4a5a..00000000000 --- a/_downloads/b3bbae39e8c6e22fe8ed3d7947f84f31/annotation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b3bbae39e8c6e22fe8ed3d7947f84f31/annotation_demo.ipynb \ No newline at end of file diff --git a/_downloads/b3bec7c73b07d5f19a112462cbce8cf2/quiver3d.ipynb b/_downloads/b3bec7c73b07d5f19a112462cbce8cf2/quiver3d.ipynb deleted file mode 100644 index b55c7dd801f..00000000000 --- a/_downloads/b3bec7c73b07d5f19a112462cbce8cf2/quiver3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D quiver plot\n\n\nDemonstrates plotting directional arrows at points on a 3d meshgrid.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make the grid\nx, y, z = np.meshgrid(np.arange(-0.8, 1, 0.2),\n np.arange(-0.8, 1, 0.2),\n np.arange(-0.8, 1, 0.8))\n\n# Make the direction data for the arrows\nu = np.sin(np.pi * x) * np.cos(np.pi * y) * np.cos(np.pi * z)\nv = -np.cos(np.pi * x) * np.sin(np.pi * y) * np.cos(np.pi * z)\nw = (np.sqrt(2.0 / 3.0) * np.cos(np.pi * x) * np.cos(np.pi * y) *\n np.sin(np.pi * z))\n\nax.quiver(x, y, z, u, v, w, length=0.1, normalize=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b3cbaff9ac004b02657f6b468931f314/pyplot.ipynb b/_downloads/b3cbaff9ac004b02657f6b468931f314/pyplot.ipynb deleted file mode 100644 index db90ca5ca09..00000000000 --- a/_downloads/b3cbaff9ac004b02657f6b468931f314/pyplot.ipynb +++ /dev/null @@ -1,230 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot tutorial\n\n\nAn introduction to the pyplot interface.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Intro to pyplot\n===============\n\n:mod:`matplotlib.pyplot` is a collection of command style functions\nthat make matplotlib work like MATLAB.\nEach ``pyplot`` function makes\nsome change to a figure: e.g., creates a figure, creates a plotting area\nin a figure, plots some lines in a plotting area, decorates the plot\nwith labels, etc.\n\nIn :mod:`matplotlib.pyplot` various states are preserved\nacross function calls, so that it keeps track of things like\nthe current figure and plotting area, and the plotting\nfunctions are directed to the current axes (please note that \"axes\" here\nand in most places in the documentation refers to the *axes*\n`part of a figure `\nand not the strict mathematical term for more than one axis).\n\n

Note

the pyplot API is generally less-flexible than the object-oriented API.\n Most of the function calls you see here can also be called as methods\n from an ``Axes`` object. We recommend browsing the tutorials and\n examples to see how this works.

\n\nGenerating visualizations with pyplot is very quick:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.plot([1, 2, 3, 4])\nplt.ylabel('some numbers')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You may be wondering why the x-axis ranges from 0-3 and the y-axis\nfrom 1-4. If you provide a single list or array to the\n:func:`~matplotlib.pyplot.plot` command, matplotlib assumes it is a\nsequence of y values, and automatically generates the x values for\nyou. Since python ranges start with 0, the default x vector has the\nsame length as y but starts with 0. Hence the x data are\n``[0,1,2,3]``.\n\n:func:`~matplotlib.pyplot.plot` is a versatile command, and will take\nan arbitrary number of arguments. For example, to plot x versus y,\nyou can issue the command:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.plot([1, 2, 3, 4], [1, 4, 9, 16])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Formatting the style of your plot\n---------------------------------\n\nFor every x, y pair of arguments, there is an optional third argument\nwhich is the format string that indicates the color and line type of\nthe plot. The letters and symbols of the format string are from\nMATLAB, and you concatenate a color string with a line style string.\nThe default format string is 'b-', which is a solid blue line. For\nexample, to plot the above with red circles, you would issue\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro')\nplt.axis([0, 6, 0, 20])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "See the :func:`~matplotlib.pyplot.plot` documentation for a complete\nlist of line styles and format strings. The\n:func:`~matplotlib.pyplot.axis` command in the example above takes a\nlist of ``[xmin, xmax, ymin, ymax]`` and specifies the viewport of the\naxes.\n\nIf matplotlib were limited to working with lists, it would be fairly\nuseless for numeric processing. Generally, you will use `numpy\n`_ arrays. In fact, all sequences are\nconverted to numpy arrays internally. The example below illustrates a\nplotting several lines with different format styles in one command\nusing arrays.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\n# evenly sampled time at 200ms intervals\nt = np.arange(0., 5., 0.2)\n\n# red dashes, blue squares and green triangles\nplt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nPlotting with keyword strings\n=============================\n\nThere are some instances where you have data in a format that lets you\naccess particular variables with strings. For example, with\n:class:`numpy.recarray` or :class:`pandas.DataFrame`.\n\nMatplotlib allows you provide such an object with\nthe ``data`` keyword argument. If provided, then you may generate plots with\nthe strings corresponding to these variables.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "data = {'a': np.arange(50),\n 'c': np.random.randint(0, 50, 50),\n 'd': np.random.randn(50)}\ndata['b'] = data['a'] + 10 * np.random.randn(50)\ndata['d'] = np.abs(data['d']) * 100\n\nplt.scatter('a', 'b', c='c', s='d', data=data)\nplt.xlabel('entry a')\nplt.ylabel('entry b')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nPlotting with categorical variables\n===================================\n\nIt is also possible to create a plot using categorical variables.\nMatplotlib allows you to pass categorical variables directly to\nmany plotting functions. For example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "names = ['group_a', 'group_b', 'group_c']\nvalues = [1, 10, 100]\n\nplt.figure(figsize=(9, 3))\n\nplt.subplot(131)\nplt.bar(names, values)\nplt.subplot(132)\nplt.scatter(names, values)\nplt.subplot(133)\nplt.plot(names, values)\nplt.suptitle('Categorical Plotting')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nControlling line properties\n===========================\n\nLines have many attributes that you can set: linewidth, dash style,\nantialiased, etc; see :class:`matplotlib.lines.Line2D`. There are\nseveral ways to set line properties\n\n* Use keyword args::\n\n plt.plot(x, y, linewidth=2.0)\n\n\n* Use the setter methods of a ``Line2D`` instance. ``plot`` returns a list\n of ``Line2D`` objects; e.g., ``line1, line2 = plot(x1, y1, x2, y2)``. In the code\n below we will suppose that we have only\n one line so that the list returned is of length 1. We use tuple unpacking with\n ``line,`` to get the first element of that list::\n\n line, = plt.plot(x, y, '-')\n line.set_antialiased(False) # turn off antialiasing\n\n* Use the :func:`~matplotlib.pyplot.setp` command. The example below\n uses a MATLAB-style command to set multiple properties\n on a list of lines. ``setp`` works transparently with a list of objects\n or a single object. You can either use python keyword arguments or\n MATLAB-style string/value pairs::\n\n lines = plt.plot(x1, y1, x2, y2)\n # use keyword args\n plt.setp(lines, color='r', linewidth=2.0)\n # or MATLAB style string value pairs\n plt.setp(lines, 'color', 'r', 'linewidth', 2.0)\n\n\nHere are the available :class:`~matplotlib.lines.Line2D` properties.\n\n====================== ==================================================\nProperty Value Type\n====================== ==================================================\nalpha float\nanimated [True | False]\nantialiased or aa [True | False]\nclip_box a matplotlib.transform.Bbox instance\nclip_on [True | False]\nclip_path a Path instance and a Transform instance, a Patch\ncolor or c any matplotlib color\ncontains the hit testing function\ndash_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``]\ndash_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``]\ndashes sequence of on/off ink in points\ndata (np.array xdata, np.array ydata)\nfigure a matplotlib.figure.Figure instance\nlabel any string\nlinestyle or ls [ ``'-'`` | ``'--'`` | ``'-.'`` | ``':'`` | ``'steps'`` | ...]\nlinewidth or lw float value in points\nmarker [ ``'+'`` | ``','`` | ``'.'`` | ``'1'`` | ``'2'`` | ``'3'`` | ``'4'`` ]\nmarkeredgecolor or mec any matplotlib color\nmarkeredgewidth or mew float value in points\nmarkerfacecolor or mfc any matplotlib color\nmarkersize or ms float\nmarkevery [ None | integer | (startind, stride) ]\npicker used in interactive line selection\npickradius the line pick selection radius\nsolid_capstyle [``'butt'`` | ``'round'`` | ``'projecting'``]\nsolid_joinstyle [``'miter'`` | ``'round'`` | ``'bevel'``]\ntransform a matplotlib.transforms.Transform instance\nvisible [True | False]\nxdata np.array\nydata np.array\nzorder any number\n====================== ==================================================\n\nTo get a list of settable line properties, call the\n:func:`~matplotlib.pyplot.setp` function with a line or lines\nas argument\n\n.. sourcecode:: ipython\n\n In [69]: lines = plt.plot([1, 2, 3])\n\n In [70]: plt.setp(lines)\n alpha: float\n animated: [True | False]\n antialiased or aa: [True | False]\n ...snip\n\n\n\nWorking with multiple figures and axes\n======================================\n\nMATLAB, and :mod:`~matplotlib.pyplot`, have the concept of the current\nfigure and the current axes. All plotting commands apply to the\ncurrent axes. The function :func:`~matplotlib.pyplot.gca` returns the\ncurrent axes (a :class:`matplotlib.axes.Axes` instance), and\n:func:`~matplotlib.pyplot.gcf` returns the current figure\n(:class:`matplotlib.figure.Figure` instance). Normally, you don't have\nto worry about this, because it is all taken care of behind the\nscenes. Below is a script to create two subplots.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def f(t):\n return np.exp(-t) * np.cos(2*np.pi*t)\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\n\nplt.figure()\nplt.subplot(211)\nplt.plot(t1, f(t1), 'bo', t2, f(t2), 'k')\n\nplt.subplot(212)\nplt.plot(t2, np.cos(2*np.pi*t2), 'r--')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The :func:`~matplotlib.pyplot.figure` command here is optional because\n``figure(1)`` will be created by default, just as a ``subplot(111)``\nwill be created by default if you don't manually specify any axes. The\n:func:`~matplotlib.pyplot.subplot` command specifies ``numrows,\nnumcols, plot_number`` where ``plot_number`` ranges from 1 to\n``numrows*numcols``. The commas in the ``subplot`` command are\noptional if ``numrows*numcols<10``. So ``subplot(211)`` is identical\nto ``subplot(2, 1, 1)``.\n\nYou can create an arbitrary number of subplots\nand axes. If you want to place an axes manually, i.e., not on a\nrectangular grid, use the :func:`~matplotlib.pyplot.axes` command,\nwhich allows you to specify the location as ``axes([left, bottom,\nwidth, height])`` where all values are in fractional (0 to 1)\ncoordinates. See :doc:`/gallery/subplots_axes_and_figures/axes_demo` for an example of\nplacing axes manually and :doc:`/gallery/subplots_axes_and_figures/subplot_demo` for an\nexample with lots of subplots.\n\n\nYou can create multiple figures by using multiple\n:func:`~matplotlib.pyplot.figure` calls with an increasing figure\nnumber. Of course, each figure can contain as many axes and subplots\nas your heart desires::\n\n import matplotlib.pyplot as plt\n plt.figure(1) # the first figure\n plt.subplot(211) # the first subplot in the first figure\n plt.plot([1, 2, 3])\n plt.subplot(212) # the second subplot in the first figure\n plt.plot([4, 5, 6])\n\n\n plt.figure(2) # a second figure\n plt.plot([4, 5, 6]) # creates a subplot(111) by default\n\n plt.figure(1) # figure 1 current; subplot(212) still current\n plt.subplot(211) # make subplot(211) in figure1 current\n plt.title('Easy as 1, 2, 3') # subplot 211 title\n\nYou can clear the current figure with :func:`~matplotlib.pyplot.clf`\nand the current axes with :func:`~matplotlib.pyplot.cla`. If you find\nit annoying that states (specifically the current image, figure and axes)\nare being maintained for you behind the scenes, don't despair: this is just a thin\nstateful wrapper around an object oriented API, which you can use\ninstead (see :doc:`/tutorials/intermediate/artists`)\n\nIf you are making lots of figures, you need to be aware of one\nmore thing: the memory required for a figure is not completely\nreleased until the figure is explicitly closed with\n:func:`~matplotlib.pyplot.close`. Deleting all references to the\nfigure, and/or using the window manager to kill the window in which\nthe figure appears on the screen, is not enough, because pyplot\nmaintains internal references until :func:`~matplotlib.pyplot.close`\nis called.\n\n\nWorking with text\n=================\n\nThe :func:`~matplotlib.pyplot.text` command can be used to add text in\nan arbitrary location, and the :func:`~matplotlib.pyplot.xlabel`,\n:func:`~matplotlib.pyplot.ylabel` and :func:`~matplotlib.pyplot.title`\nare used to add text in the indicated locations (see :doc:`/tutorials/text/text_intro`\nfor a more detailed example)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mu, sigma = 100, 15\nx = mu + sigma * np.random.randn(10000)\n\n# the histogram of the data\nn, bins, patches = plt.hist(x, 50, density=1, facecolor='g', alpha=0.75)\n\n\nplt.xlabel('Smarts')\nplt.ylabel('Probability')\nplt.title('Histogram of IQ')\nplt.text(60, .025, r'$\\mu=100,\\ \\sigma=15$')\nplt.axis([40, 160, 0, 0.03])\nplt.grid(True)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "All of the :func:`~matplotlib.pyplot.text` commands return an\n:class:`matplotlib.text.Text` instance. Just as with with lines\nabove, you can customize the properties by passing keyword arguments\ninto the text functions or using :func:`~matplotlib.pyplot.setp`::\n\n t = plt.xlabel('my data', fontsize=14, color='red')\n\nThese properties are covered in more detail in :doc:`/tutorials/text/text_props`.\n\n\nUsing mathematical expressions in text\n--------------------------------------\n\nmatplotlib accepts TeX equation expressions in any text expression.\nFor example to write the expression $\\sigma_i=15$ in the title,\nyou can write a TeX expression surrounded by dollar signs::\n\n plt.title(r'$\\sigma_i=15$')\n\nThe ``r`` preceding the title string is important -- it signifies\nthat the string is a *raw* string and not to treat backslashes as\npython escapes. matplotlib has a built-in TeX expression parser and\nlayout engine, and ships its own math fonts -- for details see\n:doc:`/tutorials/text/mathtext`. Thus you can use mathematical text across platforms\nwithout requiring a TeX installation. For those who have LaTeX and\ndvipng installed, you can also use LaTeX to format your text and\nincorporate the output directly into your display figures or saved\npostscript -- see :doc:`/tutorials/text/usetex`.\n\n\nAnnotating text\n---------------\n\nThe uses of the basic :func:`~matplotlib.pyplot.text` command above\nplace text at an arbitrary position on the Axes. A common use for\ntext is to annotate some feature of the plot, and the\n:func:`~matplotlib.pyplot.annotate` method provides helper\nfunctionality to make annotations easy. In an annotation, there are\ntwo points to consider: the location being annotated represented by\nthe argument ``xy`` and the location of the text ``xytext``. Both of\nthese arguments are ``(x,y)`` tuples.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "ax = plt.subplot(111)\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\nline, = plt.plot(t, s, lw=2)\n\nplt.annotate('local max', xy=(2, 1), xytext=(3, 1.5),\n arrowprops=dict(facecolor='black', shrink=0.05),\n )\n\nplt.ylim(-2, 2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In this basic example, both the ``xy`` (arrow tip) and ``xytext``\nlocations (text location) are in data coordinates. There are a\nvariety of other coordinate systems one can choose -- see\n`annotations-tutorial` and `plotting-guide-annotation` for\ndetails. More examples can be found in\n:doc:`/gallery/text_labels_and_annotations/annotation_demo`.\n\n\nLogarithmic and other nonlinear axes\n====================================\n\n:mod:`matplotlib.pyplot` supports not only linear axis scales, but also\nlogarithmic and logit scales. This is commonly used if data spans many orders\nof magnitude. Changing the scale of an axis is easy:\n\n plt.xscale('log')\n\nAn example of four plots with the same data and different scales for the y axis\nis shown below.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.ticker import NullFormatter # useful for `logit` scale\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# make up some data in the interval ]0, 1[\ny = np.random.normal(loc=0.5, scale=0.4, size=1000)\ny = y[(y > 0) & (y < 1)]\ny.sort()\nx = np.arange(len(y))\n\n# plot with various axes scales\nplt.figure()\n\n# linear\nplt.subplot(221)\nplt.plot(x, y)\nplt.yscale('linear')\nplt.title('linear')\nplt.grid(True)\n\n\n# log\nplt.subplot(222)\nplt.plot(x, y)\nplt.yscale('log')\nplt.title('log')\nplt.grid(True)\n\n\n# symmetric log\nplt.subplot(223)\nplt.plot(x, y - y.mean())\nplt.yscale('symlog', linthreshy=0.01)\nplt.title('symlog')\nplt.grid(True)\n\n# logit\nplt.subplot(224)\nplt.plot(x, y)\nplt.yscale('logit')\nplt.title('logit')\nplt.grid(True)\n# Format the minor tick labels of the y-axis into empty strings with\n# `NullFormatter`, to avoid cumbering the axis with too many labels.\nplt.gca().yaxis.set_minor_formatter(NullFormatter())\n# Adjust the subplot layout, because the logit one may take more space\n# than usual, due to y-tick labels like \"1 - 10^{-3}\"\nplt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25,\n wspace=0.35)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It is also possible to add your own scale, see `adding-new-scales` for\ndetails.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b3d751a84d7a445630b4f7072373cab8/unchained.ipynb b/_downloads/b3d751a84d7a445630b4f7072373cab8/unchained.ipynb deleted file mode 120000 index e1449ede70d..00000000000 --- a/_downloads/b3d751a84d7a445630b4f7072373cab8/unchained.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b3d751a84d7a445630b4f7072373cab8/unchained.ipynb \ No newline at end of file diff --git a/_downloads/b3dec7ec1db63db130f8e7c84a3efe45/gridspec_nested.ipynb b/_downloads/b3dec7ec1db63db130f8e7c84a3efe45/gridspec_nested.ipynb deleted file mode 120000 index 4a4edb37b65..00000000000 --- a/_downloads/b3dec7ec1db63db130f8e7c84a3efe45/gridspec_nested.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b3dec7ec1db63db130f8e7c84a3efe45/gridspec_nested.ipynb \ No newline at end of file diff --git a/_downloads/b3f13c00b83a165ce6b2e9a843eedc7c/simple_legend02.ipynb b/_downloads/b3f13c00b83a165ce6b2e9a843eedc7c/simple_legend02.ipynb deleted file mode 120000 index 9ed08ccdafe..00000000000 --- a/_downloads/b3f13c00b83a165ce6b2e9a843eedc7c/simple_legend02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b3f13c00b83a165ce6b2e9a843eedc7c/simple_legend02.ipynb \ No newline at end of file diff --git a/_downloads/b3f732fe7a252b2c533d20606b7a1ceb/topographic_hillshading.ipynb b/_downloads/b3f732fe7a252b2c533d20606b7a1ceb/topographic_hillshading.ipynb deleted file mode 120000 index db9b0115acb..00000000000 --- a/_downloads/b3f732fe7a252b2c533d20606b7a1ceb/topographic_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b3f732fe7a252b2c533d20606b7a1ceb/topographic_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/b3fe4a90dc61217b1c178129316a04c1/log_test.ipynb b/_downloads/b3fe4a90dc61217b1c178129316a04c1/log_test.ipynb deleted file mode 120000 index 42688f45396..00000000000 --- a/_downloads/b3fe4a90dc61217b1c178129316a04c1/log_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/b3fe4a90dc61217b1c178129316a04c1/log_test.ipynb \ No newline at end of file diff --git a/_downloads/b408d1de4687bd01fa9e193e965ce2cc/check_buttons.ipynb b/_downloads/b408d1de4687bd01fa9e193e965ce2cc/check_buttons.ipynb deleted file mode 120000 index 131690d36ac..00000000000 --- a/_downloads/b408d1de4687bd01fa9e193e965ce2cc/check_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b408d1de4687bd01fa9e193e965ce2cc/check_buttons.ipynb \ No newline at end of file diff --git a/_downloads/b40bc4fc34664f15a9f11a740a7fe4bd/colormap-manipulation.py b/_downloads/b40bc4fc34664f15a9f11a740a7fe4bd/colormap-manipulation.py deleted file mode 120000 index ffb5c86e436..00000000000 --- a/_downloads/b40bc4fc34664f15a9f11a740a7fe4bd/colormap-manipulation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b40bc4fc34664f15a9f11a740a7fe4bd/colormap-manipulation.py \ No newline at end of file diff --git a/_downloads/b40bc5834913b8acf6377286115fafae/textbox.py b/_downloads/b40bc5834913b8acf6377286115fafae/textbox.py deleted file mode 120000 index facfdf0df2e..00000000000 --- a/_downloads/b40bc5834913b8acf6377286115fafae/textbox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b40bc5834913b8acf6377286115fafae/textbox.py \ No newline at end of file diff --git a/_downloads/b41fa316235ca1e1177a4e19029bf52c/demo_axes_grid.ipynb b/_downloads/b41fa316235ca1e1177a4e19029bf52c/demo_axes_grid.ipynb deleted file mode 100644 index e3acbf3c75d..00000000000 --- a/_downloads/b41fa316235ca1e1177a4e19029bf52c/demo_axes_grid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Grid\n\n\nGrid of 2x2 images with single or own colorbar.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef demo_simple_grid(fig):\n \"\"\"\n A grid of 2x2 images with 0.05 inch pad between images and only\n the lower-left axes is labeled.\n \"\"\"\n grid = ImageGrid(fig, 141, # similar to subplot(141)\n nrows_ncols=(2, 2),\n axes_pad=0.05,\n label_mode=\"1\",\n )\n\n Z, extent = get_demo_image()\n for ax in grid:\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n\n # This only affects axes in first column and second row as share_all =\n # False.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_grid_with_single_cbar(fig):\n \"\"\"\n A grid of 2x2 images with a single colorbar\n \"\"\"\n grid = ImageGrid(fig, 142, # similar to subplot(142)\n nrows_ncols=(2, 2),\n axes_pad=0.0,\n share_all=True,\n label_mode=\"L\",\n cbar_location=\"top\",\n cbar_mode=\"single\",\n )\n\n Z, extent = get_demo_image()\n for ax in grid:\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n grid.cbar_axes[0].colorbar(im)\n\n for cax in grid.cbar_axes:\n cax.toggle_label(False)\n\n # This affects all axes as share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_grid_with_each_cbar(fig):\n \"\"\"\n A grid of 2x2 images. Each image has its own colorbar.\n \"\"\"\n grid = ImageGrid(fig, 143, # similar to subplot(143)\n nrows_ncols=(2, 2),\n axes_pad=0.1,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"top\",\n cbar_mode=\"each\",\n cbar_size=\"7%\",\n cbar_pad=\"2%\",\n )\n Z, extent = get_demo_image()\n for ax, cax in zip(grid, grid.cbar_axes):\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\")\n cax.colorbar(im)\n cax.toggle_label(False)\n\n # This affects all axes because we set share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_grid_with_each_cbar_labelled(fig):\n \"\"\"\n A grid of 2x2 images. Each image has its own colorbar.\n \"\"\"\n grid = ImageGrid(fig, 144, # similar to subplot(144)\n nrows_ncols=(2, 2),\n axes_pad=(0.45, 0.15),\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"right\",\n cbar_mode=\"each\",\n cbar_size=\"7%\",\n cbar_pad=\"2%\",\n )\n Z, extent = get_demo_image()\n\n # Use a different colorbar range every time\n limits = ((0, 1), (-2, 2), (-1.7, 1.4), (-1.5, 1))\n for ax, cax, vlim in zip(grid, grid.cbar_axes, limits):\n im = ax.imshow(Z, extent=extent, interpolation=\"nearest\",\n vmin=vlim[0], vmax=vlim[1])\n cax.colorbar(im)\n cax.set_yticks((vlim[0], vlim[1]))\n\n # This affects all axes because we set share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\nfig = plt.figure(figsize=(10.5, 2.5))\nfig.subplots_adjust(left=0.05, right=0.95)\n\ndemo_simple_grid(fig)\ndemo_grid_with_single_cbar(fig)\ndemo_grid_with_each_cbar(fig)\ndemo_grid_with_each_cbar_labelled(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b4219858c766cce205b0f2e33e72bd21/svg_histogram_sgskip.py b/_downloads/b4219858c766cce205b0f2e33e72bd21/svg_histogram_sgskip.py deleted file mode 120000 index 68812724a6f..00000000000 --- a/_downloads/b4219858c766cce205b0f2e33e72bd21/svg_histogram_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b4219858c766cce205b0f2e33e72bd21/svg_histogram_sgskip.py \ No newline at end of file diff --git a/_downloads/b42472a5c40625a7ea92b908a6178af4/legend_demo.ipynb b/_downloads/b42472a5c40625a7ea92b908a6178af4/legend_demo.ipynb deleted file mode 120000 index 541892479f6..00000000000 --- a/_downloads/b42472a5c40625a7ea92b908a6178af4/legend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b42472a5c40625a7ea92b908a6178af4/legend_demo.ipynb \ No newline at end of file diff --git a/_downloads/b42755657264db78b778d8a0d9a6b765/contour_corner_mask.py b/_downloads/b42755657264db78b778d8a0d9a6b765/contour_corner_mask.py deleted file mode 100644 index 0482945d552..00000000000 --- a/_downloads/b42755657264db78b778d8a0d9a6b765/contour_corner_mask.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -=================== -Contour Corner Mask -=================== - -Illustrate the difference between ``corner_mask=False`` and -``corner_mask=True`` for masked contour plots. -""" -import matplotlib.pyplot as plt -import numpy as np - -# Data to plot. -x, y = np.meshgrid(np.arange(7), np.arange(10)) -z = np.sin(0.5 * x) * np.cos(0.52 * y) - -# Mask various z values. -mask = np.zeros_like(z, dtype=bool) -mask[2, 3:5] = True -mask[3:5, 4] = True -mask[7, 2] = True -mask[5, 0] = True -mask[0, 6] = True -z = np.ma.array(z, mask=mask) - -corner_masks = [False, True] -fig, axs = plt.subplots(ncols=2) -for ax, corner_mask in zip(axs, corner_masks): - cs = ax.contourf(x, y, z, corner_mask=corner_mask) - ax.contour(cs, colors='k') - ax.set_title('corner_mask = {0}'.format(corner_mask)) - - # Plot grid. - ax.grid(c='k', ls='-', alpha=0.3) - - # Indicate masked points with red circles. - ax.plot(np.ma.array(x, mask=~mask), y, 'ro') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf diff --git a/_downloads/b428cbc71da2fc1a0f37b6af16a2ae24/font_indexing.ipynb b/_downloads/b428cbc71da2fc1a0f37b6af16a2ae24/font_indexing.ipynb deleted file mode 120000 index 796f4b335a7..00000000000 --- a/_downloads/b428cbc71da2fc1a0f37b6af16a2ae24/font_indexing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b428cbc71da2fc1a0f37b6af16a2ae24/font_indexing.ipynb \ No newline at end of file diff --git a/_downloads/b431cd7d85375b356271554a11fbac31/marker_path.ipynb b/_downloads/b431cd7d85375b356271554a11fbac31/marker_path.ipynb deleted file mode 120000 index c2d8b54e01b..00000000000 --- a/_downloads/b431cd7d85375b356271554a11fbac31/marker_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b431cd7d85375b356271554a11fbac31/marker_path.ipynb \ No newline at end of file diff --git a/_downloads/b43a2619f13e962d479969271456d0db/mathtext_examples.ipynb b/_downloads/b43a2619f13e962d479969271456d0db/mathtext_examples.ipynb deleted file mode 100644 index 02eea7e0d16..00000000000 --- a/_downloads/b43a2619f13e962d479969271456d0db/mathtext_examples.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Mathtext Examples\n\n\nSelected features of Matplotlib's math rendering engine.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport subprocess\nimport sys\nimport re\n\n# Selection of features following \"Writing mathematical expressions\" tutorial\nmathtext_titles = {\n 0: \"Header demo\",\n 1: \"Subscripts and superscripts\",\n 2: \"Fractions, binomials and stacked numbers\",\n 3: \"Radicals\",\n 4: \"Fonts\",\n 5: \"Accents\",\n 6: \"Greek, Hebrew\",\n 7: \"Delimiters, functions and Symbols\"}\nn_lines = len(mathtext_titles)\n\n# Randomly picked examples\nmathext_demos = {\n 0: r\"$W^{3\\beta}_{\\delta_1 \\rho_1 \\sigma_2} = \"\n r\"U^{3\\beta}_{\\delta_1 \\rho_1} + \\frac{1}{8 \\pi 2} \"\n r\"\\int^{\\alpha_2}_{\\alpha_2} d \\alpha^\\prime_2 \\left[\\frac{ \"\n r\"U^{2\\beta}_{\\delta_1 \\rho_1} - \\alpha^\\prime_2U^{1\\beta}_\"\n r\"{\\rho_1 \\sigma_2} }{U^{0\\beta}_{\\rho_1 \\sigma_2}}\\right]$\",\n\n 1: r\"$\\alpha_i > \\beta_i,\\ \"\n r\"\\alpha_{i+1}^j = {\\rm sin}(2\\pi f_j t_i) e^{-5 t_i/\\tau},\\ \"\n r\"\\ldots$\",\n\n 2: r\"$\\frac{3}{4},\\ \\binom{3}{4},\\ \\genfrac{}{}{0}{}{3}{4},\\ \"\n r\"\\left(\\frac{5 - \\frac{1}{x}}{4}\\right),\\ \\ldots$\",\n\n 3: r\"$\\sqrt{2},\\ \\sqrt[3]{x},\\ \\ldots$\",\n\n 4: r\"$\\mathrm{Roman}\\ , \\ \\mathit{Italic}\\ , \\ \\mathtt{Typewriter} \\ \"\n r\"\\mathrm{or}\\ \\mathcal{CALLIGRAPHY}$\",\n\n 5: r\"$\\acute a,\\ \\bar a,\\ \\breve a,\\ \\dot a,\\ \\ddot a, \\ \\grave a, \\ \"\n r\"\\hat a,\\ \\tilde a,\\ \\vec a,\\ \\widehat{xyz},\\ \\widetilde{xyz},\\ \"\n r\"\\ldots$\",\n\n 6: r\"$\\alpha,\\ \\beta,\\ \\chi,\\ \\delta,\\ \\lambda,\\ \\mu,\\ \"\n r\"\\Delta,\\ \\Gamma,\\ \\Omega,\\ \\Phi,\\ \\Pi,\\ \\Upsilon,\\ \\nabla,\\ \"\n r\"\\aleph,\\ \\beth,\\ \\daleth,\\ \\gimel,\\ \\ldots$\",\n\n 7: r\"$\\coprod,\\ \\int,\\ \\oint,\\ \\prod,\\ \\sum,\\ \"\n r\"\\log,\\ \\sin,\\ \\approx,\\ \\oplus,\\ \\star,\\ \\varpropto,\\ \"\n r\"\\infty,\\ \\partial,\\ \\Re,\\ \\leftrightsquigarrow, \\ \\ldots$\"}\n\n\ndef doall():\n # Colors used in mpl online documentation.\n mpl_blue_rvb = (191. / 255., 209. / 256., 212. / 255.)\n mpl_orange_rvb = (202. / 255., 121. / 256., 0. / 255.)\n mpl_grey_rvb = (51. / 255., 51. / 255., 51. / 255.)\n\n # Creating figure and axis.\n plt.figure(figsize=(6, 7))\n plt.axes([0.01, 0.01, 0.98, 0.90], facecolor=\"white\", frameon=True)\n plt.gca().set_xlim(0., 1.)\n plt.gca().set_ylim(0., 1.)\n plt.gca().set_title(\"Matplotlib's math rendering engine\",\n color=mpl_grey_rvb, fontsize=14, weight='bold')\n plt.gca().set_xticklabels(\"\", visible=False)\n plt.gca().set_yticklabels(\"\", visible=False)\n\n # Gap between lines in axes coords\n line_axesfrac = (1. / (n_lines))\n\n # Plotting header demonstration formula\n full_demo = mathext_demos[0]\n plt.annotate(full_demo,\n xy=(0.5, 1. - 0.59 * line_axesfrac),\n color=mpl_orange_rvb, ha='center', fontsize=20)\n\n # Plotting features demonstration formulae\n for i_line in range(1, n_lines):\n baseline = 1 - (i_line) * line_axesfrac\n baseline_next = baseline - line_axesfrac\n title = mathtext_titles[i_line] + \":\"\n fill_color = ['white', mpl_blue_rvb][i_line % 2]\n plt.fill_between([0., 1.], [baseline, baseline],\n [baseline_next, baseline_next],\n color=fill_color, alpha=0.5)\n plt.annotate(title,\n xy=(0.07, baseline - 0.3 * line_axesfrac),\n color=mpl_grey_rvb, weight='bold')\n demo = mathext_demos[i_line]\n plt.annotate(demo,\n xy=(0.05, baseline - 0.75 * line_axesfrac),\n color=mpl_grey_rvb, fontsize=16)\n\n for i in range(n_lines):\n s = mathext_demos[i]\n print(i, s)\n plt.show()\n\n\nif '--latex' in sys.argv:\n # Run: python mathtext_examples.py --latex\n # Need amsmath and amssymb packages.\n fd = open(\"mathtext_examples.ltx\", \"w\")\n fd.write(\"\\\\documentclass{article}\\n\")\n fd.write(\"\\\\usepackage{amsmath, amssymb}\\n\")\n fd.write(\"\\\\begin{document}\\n\")\n fd.write(\"\\\\begin{enumerate}\\n\")\n\n for i in range(n_lines):\n s = mathext_demos[i]\n s = re.sub(r\"(? 0.5, y1) -ym2 = np.ma.masked_where(y2 < -0.5, y2) - -lines = plt.plot(x, y, x, ym1, x, ym2, 'o') -plt.setp(lines[0], linewidth=4) -plt.setp(lines[1], linewidth=2) -plt.setp(lines[2], markersize=10) - -plt.legend(('No mask', 'Masked if > 0.5', 'Masked if < -0.5'), - loc='upper right') -plt.title('Masked line demo') -plt.show() diff --git a/_downloads/b496279005db8b414725037de241f49a/text3d.ipynb b/_downloads/b496279005db8b414725037de241f49a/text3d.ipynb deleted file mode 120000 index 7adda260006..00000000000 --- a/_downloads/b496279005db8b414725037de241f49a/text3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b496279005db8b414725037de241f49a/text3d.ipynb \ No newline at end of file diff --git a/_downloads/b49b56ca0c65c0d8002b05598186b485/simple_rgb.py b/_downloads/b49b56ca0c65c0d8002b05598186b485/simple_rgb.py deleted file mode 120000 index e591c7b73f3..00000000000 --- a/_downloads/b49b56ca0c65c0d8002b05598186b485/simple_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b49b56ca0c65c0d8002b05598186b485/simple_rgb.py \ No newline at end of file diff --git a/_downloads/b4a99759fce93131922443c9829ab1c8/cursor.ipynb b/_downloads/b4a99759fce93131922443c9829ab1c8/cursor.ipynb deleted file mode 120000 index 5de25f31ef2..00000000000 --- a/_downloads/b4a99759fce93131922443c9829ab1c8/cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b4a99759fce93131922443c9829ab1c8/cursor.ipynb \ No newline at end of file diff --git a/_downloads/b4ad3cbe89afdec0f1d2fd3bf518b769/wire3d_zero_stride.py b/_downloads/b4ad3cbe89afdec0f1d2fd3bf518b769/wire3d_zero_stride.py deleted file mode 120000 index 93ce64a0e07..00000000000 --- a/_downloads/b4ad3cbe89afdec0f1d2fd3bf518b769/wire3d_zero_stride.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b4ad3cbe89afdec0f1d2fd3bf518b769/wire3d_zero_stride.py \ No newline at end of file diff --git a/_downloads/b4ad68e726edb96e55bab2689a53a9a5/cursor.py b/_downloads/b4ad68e726edb96e55bab2689a53a9a5/cursor.py deleted file mode 120000 index 754b431de31..00000000000 --- a/_downloads/b4ad68e726edb96e55bab2689a53a9a5/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b4ad68e726edb96e55bab2689a53a9a5/cursor.py \ No newline at end of file diff --git a/_downloads/b4af80e4c24d52aeba0bf27108eae17e/tick-formatters.ipynb b/_downloads/b4af80e4c24d52aeba0bf27108eae17e/tick-formatters.ipynb deleted file mode 120000 index c66f0f076ff..00000000000 --- a/_downloads/b4af80e4c24d52aeba0bf27108eae17e/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b4af80e4c24d52aeba0bf27108eae17e/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/b4b03a2456bfda09e44439a627dd3724/mixed_subplots.py b/_downloads/b4b03a2456bfda09e44439a627dd3724/mixed_subplots.py deleted file mode 100644 index a325171e3c8..00000000000 --- a/_downloads/b4b03a2456bfda09e44439a627dd3724/mixed_subplots.py +++ /dev/null @@ -1,48 +0,0 @@ -""" -================================= -2D and 3D *Axes* in same *Figure* -================================= - -This example shows a how to plot a 2D and 3D plot on the same figure. -""" -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -def f(t): - return np.cos(2*np.pi*t) * np.exp(-t) - - -# Set up a figure twice as tall as it is wide -fig = plt.figure(figsize=plt.figaspect(2.)) -fig.suptitle('A tale of 2 subplots') - -# First subplot -ax = fig.add_subplot(2, 1, 1) - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) -t3 = np.arange(0.0, 2.0, 0.01) - -ax.plot(t1, f(t1), 'bo', - t2, f(t2), 'k--', markerfacecolor='green') -ax.grid(True) -ax.set_ylabel('Damped oscillation') - -# Second subplot -ax = fig.add_subplot(2, 1, 2, projection='3d') - -X = np.arange(-5, 5, 0.25) -Y = np.arange(-5, 5, 0.25) -X, Y = np.meshgrid(X, Y) -R = np.sqrt(X**2 + Y**2) -Z = np.sin(R) - -surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, - linewidth=0, antialiased=False) -ax.set_zlim(-1, 1) - -plt.show() diff --git a/_downloads/b4b8e81e90eafd42f4ebe0652609e643/anchored_box01.ipynb b/_downloads/b4b8e81e90eafd42f4ebe0652609e643/anchored_box01.ipynb deleted file mode 120000 index d4d4611e99e..00000000000 --- a/_downloads/b4b8e81e90eafd42f4ebe0652609e643/anchored_box01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/b4b8e81e90eafd42f4ebe0652609e643/anchored_box01.ipynb \ No newline at end of file diff --git a/_downloads/b4d53a21550279006f9464fba3a12479/auto_ticks.py b/_downloads/b4d53a21550279006f9464fba3a12479/auto_ticks.py deleted file mode 120000 index 784683012bf..00000000000 --- a/_downloads/b4d53a21550279006f9464fba3a12479/auto_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/b4d53a21550279006f9464fba3a12479/auto_ticks.py \ No newline at end of file diff --git a/_downloads/b4e5b0f3774be2b0c8be5e79974a7a7f/usetex.ipynb b/_downloads/b4e5b0f3774be2b0c8be5e79974a7a7f/usetex.ipynb deleted file mode 120000 index 4451c7aa31a..00000000000 --- a/_downloads/b4e5b0f3774be2b0c8be5e79974a7a7f/usetex.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b4e5b0f3774be2b0c8be5e79974a7a7f/usetex.ipynb \ No newline at end of file diff --git a/_downloads/b4efd4f8a7b7ce7843e6f8c49842202c/polygon_selector_demo.py b/_downloads/b4efd4f8a7b7ce7843e6f8c49842202c/polygon_selector_demo.py deleted file mode 100644 index e692ccfa493..00000000000 --- a/_downloads/b4efd4f8a7b7ce7843e6f8c49842202c/polygon_selector_demo.py +++ /dev/null @@ -1,94 +0,0 @@ -""" -===================== -Polygon Selector Demo -===================== - -Shows how one can select indices of a polygon interactively. - -""" -import numpy as np - -from matplotlib.widgets import PolygonSelector -from matplotlib.path import Path - - -class SelectFromCollection(object): - """Select indices from a matplotlib collection using `PolygonSelector`. - - Selected indices are saved in the `ind` attribute. This tool fades out the - points that are not part of the selection (i.e., reduces their alpha - values). If your collection has alpha < 1, this tool will permanently - alter the alpha values. - - Note that this tool selects collection objects based on their *origins* - (i.e., `offsets`). - - Parameters - ---------- - ax : :class:`~matplotlib.axes.Axes` - Axes to interact with. - - collection : :class:`matplotlib.collections.Collection` subclass - Collection you want to select from. - - alpha_other : 0 <= float <= 1 - To highlight a selection, this tool sets all selected points to an - alpha value of 1 and non-selected points to `alpha_other`. - """ - - def __init__(self, ax, collection, alpha_other=0.3): - self.canvas = ax.figure.canvas - self.collection = collection - self.alpha_other = alpha_other - - self.xys = collection.get_offsets() - self.Npts = len(self.xys) - - # Ensure that we have separate colors for each object - self.fc = collection.get_facecolors() - if len(self.fc) == 0: - raise ValueError('Collection must have a facecolor') - elif len(self.fc) == 1: - self.fc = np.tile(self.fc, (self.Npts, 1)) - - self.poly = PolygonSelector(ax, self.onselect) - self.ind = [] - - def onselect(self, verts): - path = Path(verts) - self.ind = np.nonzero(path.contains_points(self.xys))[0] - self.fc[:, -1] = self.alpha_other - self.fc[self.ind, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - def disconnect(self): - self.poly.disconnect_events() - self.fc[:, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - - fig, ax = plt.subplots() - grid_size = 5 - grid_x = np.tile(np.arange(grid_size), grid_size) - grid_y = np.repeat(np.arange(grid_size), grid_size) - pts = ax.scatter(grid_x, grid_y) - - selector = SelectFromCollection(ax, pts) - - print("Select points in the figure by enclosing them within a polygon.") - print("Press the 'esc' key to start a new polygon.") - print("Try holding the 'shift' key to move all of the vertices.") - print("Try holding the 'ctrl' key to move a single vertex.") - - plt.show() - - selector.disconnect() - - # After figure is closed print the coordinates of the selected points - print('\nSelected points:') - print(selector.xys[selector.ind]) diff --git a/_downloads/b4f7b74609121e23ec259b94a685c667/dolphin.ipynb b/_downloads/b4f7b74609121e23ec259b94a685c667/dolphin.ipynb deleted file mode 120000 index 513eb657b8f..00000000000 --- a/_downloads/b4f7b74609121e23ec259b94a685c667/dolphin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b4f7b74609121e23ec259b94a685c667/dolphin.ipynb \ No newline at end of file diff --git a/_downloads/b4fc8340be14b8c6a472c548af3047f3/masked_demo.py b/_downloads/b4fc8340be14b8c6a472c548af3047f3/masked_demo.py deleted file mode 120000 index 9174378759d..00000000000 --- a/_downloads/b4fc8340be14b8c6a472c548af3047f3/masked_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b4fc8340be14b8c6a472c548af3047f3/masked_demo.py \ No newline at end of file diff --git a/_downloads/b506995d6dc3b4863bc9e8b4ac6b6613/pyplot_simple.py b/_downloads/b506995d6dc3b4863bc9e8b4ac6b6613/pyplot_simple.py deleted file mode 120000 index 8c192ba144a..00000000000 --- a/_downloads/b506995d6dc3b4863bc9e8b4ac6b6613/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b506995d6dc3b4863bc9e8b4ac6b6613/pyplot_simple.py \ No newline at end of file diff --git a/_downloads/b5116d5aa341e0743af0df1e66821b39/image_zcoord.py b/_downloads/b5116d5aa341e0743af0df1e66821b39/image_zcoord.py deleted file mode 120000 index f6b9e241542..00000000000 --- a/_downloads/b5116d5aa341e0743af0df1e66821b39/image_zcoord.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b5116d5aa341e0743af0df1e66821b39/image_zcoord.py \ No newline at end of file diff --git a/_downloads/b51df7ed7652afc2c8f3b4996c41c53a/wire3d_animation_sgskip.py b/_downloads/b51df7ed7652afc2c8f3b4996c41c53a/wire3d_animation_sgskip.py deleted file mode 120000 index 92334a4a886..00000000000 --- a/_downloads/b51df7ed7652afc2c8f3b4996c41c53a/wire3d_animation_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b51df7ed7652afc2c8f3b4996c41c53a/wire3d_animation_sgskip.py \ No newline at end of file diff --git a/_downloads/b51e707d542c0846a9b23944c4da9f58/image_clip_path.ipynb b/_downloads/b51e707d542c0846a9b23944c4da9f58/image_clip_path.ipynb deleted file mode 120000 index 83a2ab7655f..00000000000 --- a/_downloads/b51e707d542c0846a9b23944c4da9f58/image_clip_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b51e707d542c0846a9b23944c4da9f58/image_clip_path.ipynb \ No newline at end of file diff --git a/_downloads/b51edb915fd1fddf45f365a736c6a174/pyplot_text.ipynb b/_downloads/b51edb915fd1fddf45f365a736c6a174/pyplot_text.ipynb deleted file mode 120000 index dea24433ef8..00000000000 --- a/_downloads/b51edb915fd1fddf45f365a736c6a174/pyplot_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b51edb915fd1fddf45f365a736c6a174/pyplot_text.ipynb \ No newline at end of file diff --git a/_downloads/b520ac20c5a4ad1dba010866a0aaa89b/patheffect_demo.ipynb b/_downloads/b520ac20c5a4ad1dba010866a0aaa89b/patheffect_demo.ipynb deleted file mode 120000 index 40125245745..00000000000 --- a/_downloads/b520ac20c5a4ad1dba010866a0aaa89b/patheffect_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b520ac20c5a4ad1dba010866a0aaa89b/patheffect_demo.ipynb \ No newline at end of file diff --git a/_downloads/b5250423566e5cf80269e4bfd55bae9e/colorbar_tick_labelling_demo.py b/_downloads/b5250423566e5cf80269e4bfd55bae9e/colorbar_tick_labelling_demo.py deleted file mode 100644 index fd19f3a93ce..00000000000 --- a/_downloads/b5250423566e5cf80269e4bfd55bae9e/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============================ -Colorbar Tick Labelling Demo -============================ - -Produce custom labelling for a colorbar. - -Contributed by Scott Sinclair -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import cm -from numpy.random import randn - -############################################################################### -# Make plot with vertical (default) colorbar - -fig, ax = plt.subplots() - -data = np.clip(randn(250, 250), -1, 1) - -cax = ax.imshow(data, interpolation='nearest', cmap=cm.coolwarm) -ax.set_title('Gaussian noise with vertical colorbar') - -# Add colorbar, make sure to specify tick locations to match desired ticklabels -cbar = fig.colorbar(cax, ticks=[-1, 0, 1]) -cbar.ax.set_yticklabels(['< -1', '0', '> 1']) # vertically oriented colorbar - -############################################################################### -# Make plot with horizontal colorbar - -fig, ax = plt.subplots() - -data = np.clip(randn(250, 250), -1, 1) - -cax = ax.imshow(data, interpolation='nearest', cmap=cm.afmhot) -ax.set_title('Gaussian noise with horizontal colorbar') - -cbar = fig.colorbar(cax, ticks=[-1, 0, 1], orientation='horizontal') -cbar.ax.set_xticklabels(['Low', 'Medium', 'High']) # horizontal colorbar - -plt.show() diff --git a/_downloads/b528d836b3e56df823059555bf60b647/collections.ipynb b/_downloads/b528d836b3e56df823059555bf60b647/collections.ipynb deleted file mode 100644 index 3a5d158b59d..00000000000 --- a/_downloads/b528d836b3e56df823059555bf60b647/collections.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================================================\nLine, Poly and RegularPoly Collection with autoscaling\n=========================================================\n\nFor the first two subplots, we will use spirals. Their\nsize will be set in plot units, not data units. Their positions\nwill be set in data units by using the \"offsets\" and \"transOffset\"\nkwargs of the `~.collections.LineCollection` and\n`~.collections.PolyCollection`.\n\nThe third subplot will make regular polygons, with the same\ntype of scaling and positioning as in the first two.\n\nThe last subplot illustrates the use of \"offsets=(xo,yo)\",\nthat is, a single tuple instead of a list of tuples, to generate\nsuccessively offset curves, with the offset given in data\nunits. This behavior is available only for the LineCollection.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib import collections, colors, transforms\nimport numpy as np\n\nnverts = 50\nnpts = 100\n\n# Make some spirals\nr = np.arange(nverts)\ntheta = np.linspace(0, 2*np.pi, nverts)\nxx = r * np.sin(theta)\nyy = r * np.cos(theta)\nspiral = np.column_stack([xx, yy])\n\n# Fixing random state for reproducibility\nrs = np.random.RandomState(19680801)\n\n# Make some offsets\nxyo = rs.randn(npts, 2)\n\n# Make a list of colors cycling through the default series.\ncolors = [colors.to_rgba(c)\n for c in plt.rcParams['axes.prop_cycle'].by_key()['color']]\n\nfig, axes = plt.subplots(2, 2)\nfig.subplots_adjust(top=0.92, left=0.07, right=0.97,\n hspace=0.3, wspace=0.3)\n((ax1, ax2), (ax3, ax4)) = axes # unpack the axes\n\n\ncol = collections.LineCollection([spiral], offsets=xyo,\n transOffset=ax1.transData)\ntrans = fig.dpi_scale_trans + transforms.Affine2D().scale(1.0/72.0)\ncol.set_transform(trans) # the points to pixels transform\n# Note: the first argument to the collection initializer\n# must be a list of sequences of x,y tuples; we have only\n# one sequence, but we still have to put it in a list.\nax1.add_collection(col, autolim=True)\n# autolim=True enables autoscaling. For collections with\n# offsets like this, it is neither efficient nor accurate,\n# but it is good enough to generate a plot that you can use\n# as a starting point. If you know beforehand the range of\n# x and y that you want to show, it is better to set them\n# explicitly, leave out the autolim kwarg (or set it to False),\n# and omit the 'ax1.autoscale_view()' call below.\n\n# Make a transform for the line segments such that their size is\n# given in points:\ncol.set_color(colors)\n\nax1.autoscale_view() # See comment above, after ax1.add_collection.\nax1.set_title('LineCollection using offsets')\n\n\n# The same data as above, but fill the curves.\ncol = collections.PolyCollection([spiral], offsets=xyo,\n transOffset=ax2.transData)\ntrans = transforms.Affine2D().scale(fig.dpi/72.0)\ncol.set_transform(trans) # the points to pixels transform\nax2.add_collection(col, autolim=True)\ncol.set_color(colors)\n\n\nax2.autoscale_view()\nax2.set_title('PolyCollection using offsets')\n\n# 7-sided regular polygons\n\ncol = collections.RegularPolyCollection(\n 7, sizes=np.abs(xx) * 10.0, offsets=xyo, transOffset=ax3.transData)\ntrans = transforms.Affine2D().scale(fig.dpi / 72.0)\ncol.set_transform(trans) # the points to pixels transform\nax3.add_collection(col, autolim=True)\ncol.set_color(colors)\nax3.autoscale_view()\nax3.set_title('RegularPolyCollection using offsets')\n\n\n# Simulate a series of ocean current profiles, successively\n# offset by 0.1 m/s so that they form what is sometimes called\n# a \"waterfall\" plot or a \"stagger\" plot.\n\nnverts = 60\nncurves = 20\noffs = (0.1, 0.0)\n\nyy = np.linspace(0, 2*np.pi, nverts)\nym = np.max(yy)\nxx = (0.2 + (ym - yy) / ym) ** 2 * np.cos(yy - 0.4) * 0.5\nsegs = []\nfor i in range(ncurves):\n xxx = xx + 0.02*rs.randn(nverts)\n curve = np.column_stack([xxx, yy * 100])\n segs.append(curve)\n\ncol = collections.LineCollection(segs, offsets=offs)\nax4.add_collection(col, autolim=True)\ncol.set_color(colors)\nax4.autoscale_view()\nax4.set_title('Successive data offsets')\nax4.set_xlabel('Zonal velocity component (m/s)')\nax4.set_ylabel('Depth (m)')\n# Reverse the y-axis so depth increases downward\nax4.set_ylim(ax4.get_ylim()[::-1])\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure\nmatplotlib.collections\nmatplotlib.collections.LineCollection\nmatplotlib.collections.RegularPolyCollection\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.autoscale_view\nmatplotlib.transforms.Affine2D\nmatplotlib.transforms.Affine2D.scale" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b52fad05ca5cdd77b6df6527d42d033e/usetex.py b/_downloads/b52fad05ca5cdd77b6df6527d42d033e/usetex.py deleted file mode 120000 index f06a4f5566d..00000000000 --- a/_downloads/b52fad05ca5cdd77b6df6527d42d033e/usetex.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b52fad05ca5cdd77b6df6527d42d033e/usetex.py \ No newline at end of file diff --git a/_downloads/b53a28a114ad36e1004cdf7d966e5e04/demo_curvelinear_grid.ipynb b/_downloads/b53a28a114ad36e1004cdf7d966e5e04/demo_curvelinear_grid.ipynb deleted file mode 120000 index bb06abc467a..00000000000 --- a/_downloads/b53a28a114ad36e1004cdf7d966e5e04/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b53a28a114ad36e1004cdf7d966e5e04/demo_curvelinear_grid.ipynb \ No newline at end of file diff --git a/_downloads/b541ccffa3fd9e5cc47c6f713e504bd9/set_and_get.py b/_downloads/b541ccffa3fd9e5cc47c6f713e504bd9/set_and_get.py deleted file mode 120000 index 66f02a9500c..00000000000 --- a/_downloads/b541ccffa3fd9e5cc47c6f713e504bd9/set_and_get.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b541ccffa3fd9e5cc47c6f713e504bd9/set_and_get.py \ No newline at end of file diff --git a/_downloads/b542c8f5270ff1f3ff65057c871b5b5b/demo_curvelinear_grid.py b/_downloads/b542c8f5270ff1f3ff65057c871b5b5b/demo_curvelinear_grid.py deleted file mode 120000 index 0fae4c1a641..00000000000 --- a/_downloads/b542c8f5270ff1f3ff65057c871b5b5b/demo_curvelinear_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b542c8f5270ff1f3ff65057c871b5b5b/demo_curvelinear_grid.py \ No newline at end of file diff --git a/_downloads/b54c59d1112fd0b0b0fdfc0b90462055/errorbar_features.ipynb b/_downloads/b54c59d1112fd0b0b0fdfc0b90462055/errorbar_features.ipynb deleted file mode 100644 index 27d533e4468..00000000000 --- a/_downloads/b54c59d1112fd0b0b0fdfc0b90462055/errorbar_features.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Different ways of specifying error bars\n\n\nErrors can be specified as a constant value (as shown in\n`errorbar_demo.py`). However, this example demonstrates\nhow they vary by specifying arrays of error values.\n\nIf the raw ``x`` and ``y`` data have length N, there are two options:\n\nArray of shape (N,):\n Error varies for each point, but the error values are\n symmetric (i.e. the lower and upper values are equal).\n\nArray of shape (2, N):\n Error varies for each point, and the lower and upper limits\n (in that order) are different (asymmetric case)\n\nIn addition, this example demonstrates how to use log\nscale with error bars.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.arange(0.1, 4, 0.5)\ny = np.exp(-x)\n\n# example error bar values that vary with x-position\nerror = 0.1 + 0.2 * x\n\nfig, (ax0, ax1) = plt.subplots(nrows=2, sharex=True)\nax0.errorbar(x, y, yerr=error, fmt='-o')\nax0.set_title('variable, symmetric error')\n\n# error bar values w/ different -/+ errors that\n# also vary with the x-position\nlower_error = 0.4 * error\nupper_error = error\nasymmetric_error = [lower_error, upper_error]\n\nax1.errorbar(x, y, xerr=asymmetric_error, fmt='o')\nax1.set_title('variable, asymmetric error')\nax1.set_yscale('log')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b55070acb59cbc294a0b927abcd50d26/wire3d_zero_stride.py b/_downloads/b55070acb59cbc294a0b927abcd50d26/wire3d_zero_stride.py deleted file mode 120000 index 5c169e40fab..00000000000 --- a/_downloads/b55070acb59cbc294a0b927abcd50d26/wire3d_zero_stride.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b55070acb59cbc294a0b927abcd50d26/wire3d_zero_stride.py \ No newline at end of file diff --git a/_downloads/b5571b6b254a7439216e5e689e043142/fonts_demo.ipynb b/_downloads/b5571b6b254a7439216e5e689e043142/fonts_demo.ipynb deleted file mode 120000 index 6b260929d3c..00000000000 --- a/_downloads/b5571b6b254a7439216e5e689e043142/fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b5571b6b254a7439216e5e689e043142/fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/b55c8033e0c3647279906b4c241c4d11/demo_agg_filter.ipynb b/_downloads/b55c8033e0c3647279906b4c241c4d11/demo_agg_filter.ipynb deleted file mode 120000 index dad91f8f7a7..00000000000 --- a/_downloads/b55c8033e0c3647279906b4c241c4d11/demo_agg_filter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b55c8033e0c3647279906b4c241c4d11/demo_agg_filter.ipynb \ No newline at end of file diff --git a/_downloads/b568825f6bb84e00a10325d6281511cd/shading_example.ipynb b/_downloads/b568825f6bb84e00a10325d6281511cd/shading_example.ipynb deleted file mode 100644 index 3f8046fbabe..00000000000 --- a/_downloads/b568825f6bb84e00a10325d6281511cd/shading_example.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Shading example\n\n\nExample showing how to make shaded relief plots like Mathematica_ or\n`Generic Mapping Tools`_.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib import cbook\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import LightSource\n\n\ndef main():\n # Test data\n x, y = np.mgrid[-5:5:0.05, -5:5:0.05]\n z = 5 * (np.sqrt(x**2 + y**2) + np.sin(x**2 + y**2))\n\n with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \\\n np.load(file) as dem:\n elev = dem['elevation']\n\n fig = compare(z, plt.cm.copper)\n fig.suptitle('HSV Blending Looks Best with Smooth Surfaces', y=0.95)\n\n fig = compare(elev, plt.cm.gist_earth, ve=0.05)\n fig.suptitle('Overlay Blending Looks Best with Rough Surfaces', y=0.95)\n\n plt.show()\n\n\ndef compare(z, cmap, ve=1):\n # Create subplots and hide ticks\n fig, axs = plt.subplots(ncols=2, nrows=2)\n for ax in axs.flat:\n ax.set(xticks=[], yticks=[])\n\n # Illuminate the scene from the northwest\n ls = LightSource(azdeg=315, altdeg=45)\n\n axs[0, 0].imshow(z, cmap=cmap)\n axs[0, 0].set(xlabel='Colormapped Data')\n\n axs[0, 1].imshow(ls.hillshade(z, vert_exag=ve), cmap='gray')\n axs[0, 1].set(xlabel='Illumination Intensity')\n\n rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='hsv')\n axs[1, 0].imshow(rgb)\n axs[1, 0].set(xlabel='Blend Mode: \"hsv\" (default)')\n\n rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='overlay')\n axs[1, 1].imshow(rgb)\n axs[1, 1].set(xlabel='Blend Mode: \"overlay\"')\n\n return fig\n\n\nif __name__ == '__main__':\n main()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors.LightSource\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b56c73610991139c3ddcdbf51e5b9858/usetex.ipynb b/_downloads/b56c73610991139c3ddcdbf51e5b9858/usetex.ipynb deleted file mode 120000 index 29dccbc8eda..00000000000 --- a/_downloads/b56c73610991139c3ddcdbf51e5b9858/usetex.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b56c73610991139c3ddcdbf51e5b9858/usetex.ipynb \ No newline at end of file diff --git a/_downloads/b571c7b5a3db101e869dc46163704b06/date_demo_convert.py b/_downloads/b571c7b5a3db101e869dc46163704b06/date_demo_convert.py deleted file mode 120000 index 958a89714d1..00000000000 --- a/_downloads/b571c7b5a3db101e869dc46163704b06/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/b571c7b5a3db101e869dc46163704b06/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/b575af562513f59a680f5ea57ae7deb5/figure_title.ipynb b/_downloads/b575af562513f59a680f5ea57ae7deb5/figure_title.ipynb deleted file mode 120000 index b10232c540d..00000000000 --- a/_downloads/b575af562513f59a680f5ea57ae7deb5/figure_title.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b575af562513f59a680f5ea57ae7deb5/figure_title.ipynb \ No newline at end of file diff --git a/_downloads/b575e6172dcb2022b93c84dfbbb7666a/bxp.py b/_downloads/b575e6172dcb2022b93c84dfbbb7666a/bxp.py deleted file mode 120000 index 429ec4e79c0..00000000000 --- a/_downloads/b575e6172dcb2022b93c84dfbbb7666a/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b575e6172dcb2022b93c84dfbbb7666a/bxp.py \ No newline at end of file diff --git a/_downloads/b57a066317f9fcc7ec399b2c67e5519c/pyplot_mathtext.ipynb b/_downloads/b57a066317f9fcc7ec399b2c67e5519c/pyplot_mathtext.ipynb deleted file mode 120000 index 55bfaec43d2..00000000000 --- a/_downloads/b57a066317f9fcc7ec399b2c67e5519c/pyplot_mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b57a066317f9fcc7ec399b2c67e5519c/pyplot_mathtext.ipynb \ No newline at end of file diff --git a/_downloads/b57bc3b0d70e881149e589e752b6969a/hexbin_demo.ipynb b/_downloads/b57bc3b0d70e881149e589e752b6969a/hexbin_demo.ipynb deleted file mode 120000 index 0fd07bf8c18..00000000000 --- a/_downloads/b57bc3b0d70e881149e589e752b6969a/hexbin_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b57bc3b0d70e881149e589e752b6969a/hexbin_demo.ipynb \ No newline at end of file diff --git a/_downloads/b57f803dc28470a5164ecea1a15af172/mri_demo.ipynb b/_downloads/b57f803dc28470a5164ecea1a15af172/mri_demo.ipynb deleted file mode 120000 index 1b58c11e2f8..00000000000 --- a/_downloads/b57f803dc28470a5164ecea1a15af172/mri_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b57f803dc28470a5164ecea1a15af172/mri_demo.ipynb \ No newline at end of file diff --git a/_downloads/b5807a9bad19e087c416bb055d199042/simple_axes_divider3.py b/_downloads/b5807a9bad19e087c416bb055d199042/simple_axes_divider3.py deleted file mode 120000 index d66cb5534c9..00000000000 --- a/_downloads/b5807a9bad19e087c416bb055d199042/simple_axes_divider3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b5807a9bad19e087c416bb055d199042/simple_axes_divider3.py \ No newline at end of file diff --git a/_downloads/b583b3f50f8da2626ac593f6503d0eaf/gtk_spreadsheet_sgskip.ipynb b/_downloads/b583b3f50f8da2626ac593f6503d0eaf/gtk_spreadsheet_sgskip.ipynb deleted file mode 120000 index 7949c64394a..00000000000 --- a/_downloads/b583b3f50f8da2626ac593f6503d0eaf/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b583b3f50f8da2626ac593f6503d0eaf/gtk_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/b588636f19d2681078dea3b25d725476/demo_gridspec03.py b/_downloads/b588636f19d2681078dea3b25d725476/demo_gridspec03.py deleted file mode 120000 index b6a19f8e3cb..00000000000 --- a/_downloads/b588636f19d2681078dea3b25d725476/demo_gridspec03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b588636f19d2681078dea3b25d725476/demo_gridspec03.py \ No newline at end of file diff --git a/_downloads/b58b31ff8f3389c4f017bd1487a483a6/inset_locator_demo2.py b/_downloads/b58b31ff8f3389c4f017bd1487a483a6/inset_locator_demo2.py deleted file mode 120000 index d0062721c33..00000000000 --- a/_downloads/b58b31ff8f3389c4f017bd1487a483a6/inset_locator_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b58b31ff8f3389c4f017bd1487a483a6/inset_locator_demo2.py \ No newline at end of file diff --git a/_downloads/b591723563d5a6b77a9abbbca8a807d5/color_by_yvalue.py b/_downloads/b591723563d5a6b77a9abbbca8a807d5/color_by_yvalue.py deleted file mode 120000 index 5e1983f77a7..00000000000 --- a/_downloads/b591723563d5a6b77a9abbbca8a807d5/color_by_yvalue.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b591723563d5a6b77a9abbbca8a807d5/color_by_yvalue.py \ No newline at end of file diff --git a/_downloads/b597ecf6bedd994290e2f786c466ebfb/fourier_demo_wx_sgskip.ipynb b/_downloads/b597ecf6bedd994290e2f786c466ebfb/fourier_demo_wx_sgskip.ipynb deleted file mode 100644 index f71e3236f2a..00000000000 --- a/_downloads/b597ecf6bedd994290e2f786c466ebfb/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fourier Demo WX\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nimport wx\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.figure import Figure\n\n\nclass Knob(object):\n \"\"\"\n Knob - simple class with a \"setKnob\" method.\n A Knob instance is attached to a Param instance, e.g., param.attach(knob)\n Base class is for documentation purposes.\n \"\"\"\n\n def setKnob(self, value):\n pass\n\n\nclass Param(object):\n \"\"\"\n The idea of the \"Param\" class is that some parameter in the GUI may have\n several knobs that both control it and reflect the parameter's state, e.g.\n a slider, text, and dragging can all change the value of the frequency in\n the waveform of this example.\n The class allows a cleaner way to update/\"feedback\" to the other knobs when\n one is being changed. Also, this class handles min/max constraints for all\n the knobs.\n Idea - knob list - in \"set\" method, knob object is passed as well\n - the other knobs in the knob list have a \"set\" method which gets\n called for the others.\n \"\"\"\n\n def __init__(self, initialValue=None, minimum=0., maximum=1.):\n self.minimum = minimum\n self.maximum = maximum\n if initialValue != self.constrain(initialValue):\n raise ValueError('illegal initial value')\n self.value = initialValue\n self.knobs = []\n\n def attach(self, knob):\n self.knobs += [knob]\n\n def set(self, value, knob=None):\n self.value = value\n self.value = self.constrain(value)\n for feedbackKnob in self.knobs:\n if feedbackKnob != knob:\n feedbackKnob.setKnob(self.value)\n return self.value\n\n def constrain(self, value):\n if value <= self.minimum:\n value = self.minimum\n if value >= self.maximum:\n value = self.maximum\n return value\n\n\nclass SliderGroup(Knob):\n def __init__(self, parent, label, param):\n self.sliderLabel = wx.StaticText(parent, label=label)\n self.sliderText = wx.TextCtrl(parent, -1, style=wx.TE_PROCESS_ENTER)\n self.slider = wx.Slider(parent, -1)\n # self.slider.SetMax(param.maximum*1000)\n self.slider.SetRange(0, param.maximum * 1000)\n self.setKnob(param.value)\n\n sizer = wx.BoxSizer(wx.HORIZONTAL)\n sizer.Add(self.sliderLabel, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL,\n border=2)\n sizer.Add(self.sliderText, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL,\n border=2)\n sizer.Add(self.slider, 1, wx.EXPAND)\n self.sizer = sizer\n\n self.slider.Bind(wx.EVT_SLIDER, self.sliderHandler)\n self.sliderText.Bind(wx.EVT_TEXT_ENTER, self.sliderTextHandler)\n\n self.param = param\n self.param.attach(self)\n\n def sliderHandler(self, evt):\n value = evt.GetInt() / 1000.\n self.param.set(value)\n\n def sliderTextHandler(self, evt):\n value = float(self.sliderText.GetValue())\n self.param.set(value)\n\n def setKnob(self, value):\n self.sliderText.SetValue('%g' % value)\n self.slider.SetValue(value * 1000)\n\n\nclass FourierDemoFrame(wx.Frame):\n def __init__(self, *args, **kwargs):\n wx.Frame.__init__(self, *args, **kwargs)\n panel = wx.Panel(self)\n\n # create the GUI elements\n self.createCanvas(panel)\n self.createSliders(panel)\n\n # place them in a sizer for the Layout\n sizer = wx.BoxSizer(wx.VERTICAL)\n sizer.Add(self.canvas, 1, wx.EXPAND)\n sizer.Add(self.frequencySliderGroup.sizer, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5)\n sizer.Add(self.amplitudeSliderGroup.sizer, 0,\n wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5)\n panel.SetSizer(sizer)\n\n def createCanvas(self, parent):\n self.lines = []\n self.figure = Figure()\n self.canvas = FigureCanvas(parent, -1, self.figure)\n self.canvas.callbacks.connect('button_press_event', self.mouseDown)\n self.canvas.callbacks.connect('motion_notify_event', self.mouseMotion)\n self.canvas.callbacks.connect('button_release_event', self.mouseUp)\n self.state = ''\n self.mouseInfo = (None, None, None, None)\n self.f0 = Param(2., minimum=0., maximum=6.)\n self.A = Param(1., minimum=0.01, maximum=2.)\n self.createPlots()\n\n # Not sure I like having two params attached to the same Knob,\n # but that is what we have here... it works but feels kludgy -\n # although maybe it's not too bad since the knob changes both params\n # at the same time (both f0 and A are affected during a drag)\n self.f0.attach(self)\n self.A.attach(self)\n\n def createSliders(self, panel):\n self.frequencySliderGroup = SliderGroup(\n panel,\n label='Frequency f0:',\n param=self.f0)\n self.amplitudeSliderGroup = SliderGroup(panel, label=' Amplitude a:',\n param=self.A)\n\n def mouseDown(self, evt):\n if self.lines[0].contains(evt)[0]:\n self.state = 'frequency'\n elif self.lines[1].contains(evt)[0]:\n self.state = 'time'\n else:\n self.state = ''\n self.mouseInfo = (evt.xdata, evt.ydata,\n max(self.f0.value, .1),\n self.A.value)\n\n def mouseMotion(self, evt):\n if self.state == '':\n return\n x, y = evt.xdata, evt.ydata\n if x is None: # outside the axes\n return\n x0, y0, f0Init, AInit = self.mouseInfo\n self.A.set(AInit + (AInit * (y - y0) / y0), self)\n if self.state == 'frequency':\n self.f0.set(f0Init + (f0Init * (x - x0) / x0))\n elif self.state == 'time':\n if (x - x0) / x0 != -1.:\n self.f0.set(1. / (1. / f0Init + (1. / f0Init * (x - x0) / x0)))\n\n def mouseUp(self, evt):\n self.state = ''\n\n def createPlots(self):\n # This method creates the subplots, waveforms and labels.\n # Later, when the waveforms or sliders are dragged, only the\n # waveform data will be updated (not here, but below in setKnob).\n self.subplot1, self.subplot2 = self.figure.subplots(2)\n x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value)\n color = (1., 0., 0.)\n self.lines += self.subplot1.plot(x1, y1, color=color, linewidth=2)\n self.lines += self.subplot2.plot(x2, y2, color=color, linewidth=2)\n # Set some plot attributes\n self.subplot1.set_title(\n \"Click and drag waveforms to change frequency and amplitude\",\n fontsize=12)\n self.subplot1.set_ylabel(\"Frequency Domain Waveform X(f)\", fontsize=8)\n self.subplot1.set_xlabel(\"frequency f\", fontsize=8)\n self.subplot2.set_ylabel(\"Time Domain Waveform x(t)\", fontsize=8)\n self.subplot2.set_xlabel(\"time t\", fontsize=8)\n self.subplot1.set_xlim([-6, 6])\n self.subplot1.set_ylim([0, 1])\n self.subplot2.set_xlim([-2, 2])\n self.subplot2.set_ylim([-2, 2])\n self.subplot1.text(0.05, .95,\n r'$X(f) = \\mathcal{F}\\{x(t)\\}$',\n verticalalignment='top',\n transform=self.subplot1.transAxes)\n self.subplot2.text(0.05, .95,\n r'$x(t) = a \\cdot \\cos(2\\pi f_0 t) e^{-\\pi t^2}$',\n verticalalignment='top',\n transform=self.subplot2.transAxes)\n\n def compute(self, f0, A):\n f = np.arange(-6., 6., 0.02)\n t = np.arange(-2., 2., 0.01)\n x = A * np.cos(2 * np.pi * f0 * t) * np.exp(-np.pi * t ** 2)\n X = A / 2 * \\\n (np.exp(-np.pi * (f - f0) ** 2) + np.exp(-np.pi * (f + f0) ** 2))\n return f, X, t, x\n\n def setKnob(self, value):\n # Note, we ignore value arg here and just go by state of the params\n x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value)\n # update the data of the two waveforms\n self.lines[0].set(xdata=x1, ydata=y1)\n self.lines[1].set(xdata=x2, ydata=y2)\n # make the canvas draw its contents again with the new data\n self.canvas.draw()\n\n\nclass App(wx.App):\n def OnInit(self):\n self.frame1 = FourierDemoFrame(parent=None, title=\"Fourier Demo\",\n size=(640, 480))\n self.frame1.Show()\n return True\n\napp = App()\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b59ecd83640cb0e449ce370239abc77d/lifecycle.ipynb b/_downloads/b59ecd83640cb0e449ce370239abc77d/lifecycle.ipynb deleted file mode 120000 index 4b03b24e3ef..00000000000 --- a/_downloads/b59ecd83640cb0e449ce370239abc77d/lifecycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b59ecd83640cb0e449ce370239abc77d/lifecycle.ipynb \ No newline at end of file diff --git a/_downloads/b5a2dcc67e15d426f247e9a13ba6bd23/tricontourf3d.py b/_downloads/b5a2dcc67e15d426f247e9a13ba6bd23/tricontourf3d.py deleted file mode 100644 index d25b2dbd1ea..00000000000 --- a/_downloads/b5a2dcc67e15d426f247e9a13ba6bd23/tricontourf3d.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -================================= -Triangular 3D filled contour plot -================================= - -Filled contour plots of unstructured triangular grids. - -The data used is the same as in the second plot of trisurf3d_demo2. -tricontour3d_demo shows the unfilled version of this example. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -# First create the x, y, z coordinates of the points. -n_angles = 48 -n_radii = 8 -min_radius = 0.25 - -# Create the mesh in polar coordinates and compute x, y, z. -radii = np.linspace(min_radius, 0.95, n_radii) -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi/n_angles - -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -z = (np.cos(radii)*np.cos(3*angles)).flatten() - -# Create a custom triangulation. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.tricontourf(triang, z, cmap=plt.cm.CMRmap) - -# Customize the view angle so it's easier to understand the plot. -ax.view_init(elev=45.) - -plt.show() diff --git a/_downloads/b5a350ce8afb3588da1f78a11d15ad0d/image_demo.py b/_downloads/b5a350ce8afb3588da1f78a11d15ad0d/image_demo.py deleted file mode 120000 index 755799154c7..00000000000 --- a/_downloads/b5a350ce8afb3588da1f78a11d15ad0d/image_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b5a350ce8afb3588da1f78a11d15ad0d/image_demo.py \ No newline at end of file diff --git a/_downloads/b5a3db95cc26079897d2b397b915f31b/rain.ipynb b/_downloads/b5a3db95cc26079897d2b397b915f31b/rain.ipynb deleted file mode 120000 index d249ac9e001..00000000000 --- a/_downloads/b5a3db95cc26079897d2b397b915f31b/rain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b5a3db95cc26079897d2b397b915f31b/rain.ipynb \ No newline at end of file diff --git a/_downloads/b5a9745125163b46d9e66a5f55c0d2b2/fancyarrow_demo.ipynb b/_downloads/b5a9745125163b46d9e66a5f55c0d2b2/fancyarrow_demo.ipynb deleted file mode 120000 index c8de3cf0200..00000000000 --- a/_downloads/b5a9745125163b46d9e66a5f55c0d2b2/fancyarrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b5a9745125163b46d9e66a5f55c0d2b2/fancyarrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/b5ae1d517936ae7f3f2f1478af37b211/leftventricle_bulleye.py b/_downloads/b5ae1d517936ae7f3f2f1478af37b211/leftventricle_bulleye.py deleted file mode 100644 index 1d87dbaf3c3..00000000000 --- a/_downloads/b5ae1d517936ae7f3f2f1478af37b211/leftventricle_bulleye.py +++ /dev/null @@ -1,210 +0,0 @@ -""" -======================= -Left ventricle bullseye -======================= - -This example demonstrates how to create the 17 segment model for the left -ventricle recommended by the American Heart Association (AHA). -""" - -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt - - -def bullseye_plot(ax, data, seg_bold=None, cmap=None, norm=None): - """ - Bullseye representation for the left ventricle. - - Parameters - ---------- - ax : axes - data : list of int and float - The intensity values for each of the 17 segments - seg_bold : list of int, optional - A list with the segments to highlight - cmap : ColorMap or None, optional - Optional argument to set the desired colormap - norm : Normalize or None, optional - Optional argument to normalize data into the [0.0, 1.0] range - - - Notes - ----- - This function create the 17 segment model for the left ventricle according - to the American Heart Association (AHA) [1]_ - - References - ---------- - .. [1] M. D. Cerqueira, N. J. Weissman, V. Dilsizian, A. K. Jacobs, - S. Kaul, W. K. Laskey, D. J. Pennell, J. A. Rumberger, T. Ryan, - and M. S. Verani, "Standardized myocardial segmentation and - nomenclature for tomographic imaging of the heart", - Circulation, vol. 105, no. 4, pp. 539-542, 2002. - """ - if seg_bold is None: - seg_bold = [] - - linewidth = 2 - data = np.array(data).ravel() - - if cmap is None: - cmap = plt.cm.viridis - - if norm is None: - norm = mpl.colors.Normalize(vmin=data.min(), vmax=data.max()) - - theta = np.linspace(0, 2 * np.pi, 768) - r = np.linspace(0.2, 1, 4) - - # Create the bound for the segment 17 - for i in range(r.shape[0]): - ax.plot(theta, np.repeat(r[i], theta.shape), '-k', lw=linewidth) - - # Create the bounds for the segments 1-12 - for i in range(6): - theta_i = np.deg2rad(i * 60) - ax.plot([theta_i, theta_i], [r[1], 1], '-k', lw=linewidth) - - # Create the bounds for the segments 13-16 - for i in range(4): - theta_i = np.deg2rad(i * 90 - 45) - ax.plot([theta_i, theta_i], [r[0], r[1]], '-k', lw=linewidth) - - # Fill the segments 1-6 - r0 = r[2:4] - r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T - for i in range(6): - # First segment start at 60 degrees - theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60) - theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1) - z = np.ones((128, 2)) * data[i] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if i + 1 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - ax.plot(theta0[0], [r[2], r[3]], '-k', lw=linewidth + 1) - ax.plot(theta0[-1], [r[2], r[3]], '-k', lw=linewidth + 1) - - # Fill the segments 7-12 - r0 = r[1:3] - r0 = np.repeat(r0[:, np.newaxis], 128, axis=1).T - for i in range(6): - # First segment start at 60 degrees - theta0 = theta[i * 128:i * 128 + 128] + np.deg2rad(60) - theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1) - z = np.ones((128, 2)) * data[i + 6] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if i + 7 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - ax.plot(theta0[0], [r[1], r[2]], '-k', lw=linewidth + 1) - ax.plot(theta0[-1], [r[1], r[2]], '-k', lw=linewidth + 1) - - # Fill the segments 13-16 - r0 = r[0:2] - r0 = np.repeat(r0[:, np.newaxis], 192, axis=1).T - for i in range(4): - # First segment start at 45 degrees - theta0 = theta[i * 192:i * 192 + 192] + np.deg2rad(45) - theta0 = np.repeat(theta0[:, np.newaxis], 2, axis=1) - z = np.ones((192, 2)) * data[i + 12] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if i + 13 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - ax.plot(theta0[0], [r[0], r[1]], '-k', lw=linewidth + 1) - ax.plot(theta0[-1], [r[0], r[1]], '-k', lw=linewidth + 1) - - # Fill the segments 17 - if data.size == 17: - r0 = np.array([0, r[0]]) - r0 = np.repeat(r0[:, np.newaxis], theta.size, axis=1).T - theta0 = np.repeat(theta[:, np.newaxis], 2, axis=1) - z = np.ones((theta.size, 2)) * data[16] - ax.pcolormesh(theta0, r0, z, cmap=cmap, norm=norm) - if 17 in seg_bold: - ax.plot(theta0, r0, '-k', lw=linewidth + 2) - - ax.set_ylim([0, 1]) - ax.set_yticklabels([]) - ax.set_xticklabels([]) - - -# Create the fake data -data = np.array(range(17)) + 1 - - -# Make a figure and axes with dimensions as desired. -fig, ax = plt.subplots(figsize=(12, 8), nrows=1, ncols=3, - subplot_kw=dict(projection='polar')) -fig.canvas.set_window_title('Left Ventricle Bulls Eyes (AHA)') - -# Create the axis for the colorbars -axl = fig.add_axes([0.14, 0.15, 0.2, 0.05]) -axl2 = fig.add_axes([0.41, 0.15, 0.2, 0.05]) -axl3 = fig.add_axes([0.69, 0.15, 0.2, 0.05]) - - -# Set the colormap and norm to correspond to the data for which -# the colorbar will be used. -cmap = mpl.cm.viridis -norm = mpl.colors.Normalize(vmin=1, vmax=17) - -# ColorbarBase derives from ScalarMappable and puts a colorbar -# in a specified axes, so it has everything needed for a -# standalone colorbar. There are many more kwargs, but the -# following gives a basic continuous colorbar with ticks -# and labels. -cb1 = mpl.colorbar.ColorbarBase(axl, cmap=cmap, norm=norm, - orientation='horizontal') -cb1.set_label('Some Units') - - -# Set the colormap and norm to correspond to the data for which -# the colorbar will be used. -cmap2 = mpl.cm.cool -norm2 = mpl.colors.Normalize(vmin=1, vmax=17) - -# ColorbarBase derives from ScalarMappable and puts a colorbar -# in a specified axes, so it has everything needed for a -# standalone colorbar. There are many more kwargs, but the -# following gives a basic continuous colorbar with ticks -# and labels. -cb2 = mpl.colorbar.ColorbarBase(axl2, cmap=cmap2, norm=norm2, - orientation='horizontal') -cb2.set_label('Some other units') - - -# The second example illustrates the use of a ListedColormap, a -# BoundaryNorm, and extended ends to show the "over" and "under" -# value colors. -cmap3 = mpl.colors.ListedColormap(['r', 'g', 'b', 'c']) -cmap3.set_over('0.35') -cmap3.set_under('0.75') - -# If a ListedColormap is used, the length of the bounds array must be -# one greater than the length of the color list. The bounds must be -# monotonically increasing. -bounds = [2, 3, 7, 9, 15] -norm3 = mpl.colors.BoundaryNorm(bounds, cmap3.N) -cb3 = mpl.colorbar.ColorbarBase(axl3, cmap=cmap3, norm=norm3, - # to use 'extend', you must - # specify two extra boundaries: - boundaries=[0] + bounds + [18], - extend='both', - ticks=bounds, # optional - spacing='proportional', - orientation='horizontal') -cb3.set_label('Discrete intervals, some other units') - - -# Create the 17 segment model -bullseye_plot(ax[0], data, cmap=cmap, norm=norm) -ax[0].set_title('Bulls Eye (AHA)') - -bullseye_plot(ax[1], data, cmap=cmap2, norm=norm2) -ax[1].set_title('Bulls Eye (AHA)') - -bullseye_plot(ax[2], data, seg_bold=[3, 5, 6, 11, 12, 16], - cmap=cmap3, norm=norm3) -ax[2].set_title('Segments [3,5,6,11,12,16] in bold') - -plt.show() diff --git a/_downloads/b5bb1c60315edd4819c04e394607601a/histogram_multihist.ipynb b/_downloads/b5bb1c60315edd4819c04e394607601a/histogram_multihist.ipynb deleted file mode 120000 index aa8759c68b0..00000000000 --- a/_downloads/b5bb1c60315edd4819c04e394607601a/histogram_multihist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b5bb1c60315edd4819c04e394607601a/histogram_multihist.ipynb \ No newline at end of file diff --git a/_downloads/b5bb93ea8a489985d2565ea2db4936b6/simple_axesgrid.ipynb b/_downloads/b5bb93ea8a489985d2565ea2db4936b6/simple_axesgrid.ipynb deleted file mode 100644 index 46c95cc7ce3..00000000000 --- a/_downloads/b5bb93ea8a489985d2565ea2db4936b6/simple_axesgrid.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple ImageGrid\n\n\nAlign multiple images using `~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\nimport numpy as np\n\nim1 = np.arange(100).reshape((10, 10))\nim2 = im1.T\nim3 = np.flipud(im1)\nim4 = np.fliplr(im2)\n\nfig = plt.figure(figsize=(4., 4.))\ngrid = ImageGrid(fig, 111, # similar to subplot(111)\n nrows_ncols=(2, 2), # creates 2x2 grid of axes\n axes_pad=0.1, # pad between axes in inch.\n )\n\nfor ax, im in zip(grid, [im1, im2, im3, im4]):\n # Iterating over the grid returns the Axes.\n ax.imshow(im)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b5c02f7974ae17d40cbafc2cbf4b8ef3/pyplot_formatstr.py b/_downloads/b5c02f7974ae17d40cbafc2cbf4b8ef3/pyplot_formatstr.py deleted file mode 120000 index f2786586cdb..00000000000 --- a/_downloads/b5c02f7974ae17d40cbafc2cbf4b8ef3/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b5c02f7974ae17d40cbafc2cbf4b8ef3/pyplot_formatstr.py \ No newline at end of file diff --git a/_downloads/b5c562b3703be135e6d071ef86e56842/anscombe.ipynb b/_downloads/b5c562b3703be135e6d071ef86e56842/anscombe.ipynb deleted file mode 100644 index f39c6bf2321..00000000000 --- a/_downloads/b5c562b3703be135e6d071ef86e56842/anscombe.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nAnscombe's Quartet\n==================\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "\"\"\"\nEdward Tufte uses this example from Anscombe to show 4 datasets of x\nand y that have the same mean, standard deviation, and regression\nline, but which are qualitatively different.\n\"\"\"\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nx = [10, 8, 13, 9, 11, 14, 6, 4, 12, 7, 5]\ny1 = [8.04, 6.95, 7.58, 8.81, 8.33, 9.96, 7.24, 4.26, 10.84, 4.82, 5.68]\ny2 = [9.14, 8.14, 8.74, 8.77, 9.26, 8.10, 6.13, 3.10, 9.13, 7.26, 4.74]\ny3 = [7.46, 6.77, 12.74, 7.11, 7.81, 8.84, 6.08, 5.39, 8.15, 6.42, 5.73]\nx4 = [8, 8, 8, 8, 8, 8, 8, 19, 8, 8, 8]\ny4 = [6.58, 5.76, 7.71, 8.84, 8.47, 7.04, 5.25, 12.50, 5.56, 7.91, 6.89]\n\n\ndef fit(x):\n return 3 + 0.5 * x\n\n\nfig, axs = plt.subplots(2, 2, sharex=True, sharey=True)\naxs[0, 0].set(xlim=(0, 20), ylim=(2, 14))\naxs[0, 0].set(xticks=(0, 10, 20), yticks=(4, 8, 12))\n\nxfit = np.array([np.min(x), np.max(x)])\naxs[0, 0].plot(x, y1, 'ks', xfit, fit(xfit), 'r-', lw=2)\naxs[0, 1].plot(x, y2, 'ks', xfit, fit(xfit), 'r-', lw=2)\naxs[1, 0].plot(x, y3, 'ks', xfit, fit(xfit), 'r-', lw=2)\nxfit = np.array([np.min(x4), np.max(x4)])\naxs[1, 1].plot(x4, y4, 'ks', xfit, fit(xfit), 'r-', lw=2)\n\nfor ax, label in zip(axs.flat, ['I', 'II', 'III', 'IV']):\n ax.label_outer()\n ax.text(3, 12, label, fontsize=20)\n\n# verify the stats\npairs = (x, y1), (x, y2), (x, y3), (x4, y4)\nfor x, y in pairs:\n print('mean=%1.2f, std=%1.2f, r=%1.2f' % (np.mean(y), np.std(y),\n np.corrcoef(x, y)[0][1]))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b5c6058eb0b1b04a44dd81a66c223c2a/boxplot_color.ipynb b/_downloads/b5c6058eb0b1b04a44dd81a66c223c2a/boxplot_color.ipynb deleted file mode 100644 index 0bed1123a38..00000000000 --- a/_downloads/b5c6058eb0b1b04a44dd81a66c223c2a/boxplot_color.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Box plots with custom fill colors\n\n\nThis plot illustrates how to create two types of box plots\n(rectangular and notched), and how to fill them with custom\ncolors by accessing the properties of the artists of the\nbox plots. Additionally, the ``labels`` parameter is used to\nprovide x-tick labels for each sample.\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Random test data\nnp.random.seed(19680801)\nall_data = [np.random.normal(0, std, size=100) for std in range(1, 4)]\nlabels = ['x1', 'x2', 'x3']\n\nfig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4))\n\n# rectangular box plot\nbplot1 = axes[0].boxplot(all_data,\n vert=True, # vertical box alignment\n patch_artist=True, # fill with color\n labels=labels) # will be used to label x-ticks\naxes[0].set_title('Rectangular box plot')\n\n# notch shape box plot\nbplot2 = axes[1].boxplot(all_data,\n notch=True, # notch shape\n vert=True, # vertical box alignment\n patch_artist=True, # fill with color\n labels=labels) # will be used to label x-ticks\naxes[1].set_title('Notched box plot')\n\n# fill with colors\ncolors = ['pink', 'lightblue', 'lightgreen']\nfor bplot in (bplot1, bplot2):\n for patch, color in zip(bplot['boxes'], colors):\n patch.set_facecolor(color)\n\n# adding horizontal grid lines\nfor ax in axes:\n ax.yaxis.grid(True)\n ax.set_xlabel('Three separate samples')\n ax.set_ylabel('Observed values')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b5cbdfa83b33e22687e6420da37101b9/embedding_webagg_sgskip.ipynb b/_downloads/b5cbdfa83b33e22687e6420da37101b9/embedding_webagg_sgskip.ipynb deleted file mode 120000 index ccaba06d151..00000000000 --- a/_downloads/b5cbdfa83b33e22687e6420da37101b9/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b5cbdfa83b33e22687e6420da37101b9/embedding_webagg_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/b5d014b0bf9be9619f7452527bcac7ce/cursor_demo.py b/_downloads/b5d014b0bf9be9619f7452527bcac7ce/cursor_demo.py deleted file mode 120000 index 3877dde30bb..00000000000 --- a/_downloads/b5d014b0bf9be9619f7452527bcac7ce/cursor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/b5d014b0bf9be9619f7452527bcac7ce/cursor_demo.py \ No newline at end of file diff --git a/_downloads/b5d0f7849c4f1ded745ab7d1792c39c7/usage.py b/_downloads/b5d0f7849c4f1ded745ab7d1792c39c7/usage.py deleted file mode 120000 index 782167ba688..00000000000 --- a/_downloads/b5d0f7849c4f1ded745ab7d1792c39c7/usage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b5d0f7849c4f1ded745ab7d1792c39c7/usage.py \ No newline at end of file diff --git a/_downloads/b5d9b6d692b08c773a3ae2fdbf2a78e6/tick_labels_from_values.ipynb b/_downloads/b5d9b6d692b08c773a3ae2fdbf2a78e6/tick_labels_from_values.ipynb deleted file mode 120000 index 3c44714a1d1..00000000000 --- a/_downloads/b5d9b6d692b08c773a3ae2fdbf2a78e6/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b5d9b6d692b08c773a3ae2fdbf2a78e6/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/b5dddc55a4e88e266e576b0d82432b11/boxplot_demo_pyplot.ipynb b/_downloads/b5dddc55a4e88e266e576b0d82432b11/boxplot_demo_pyplot.ipynb deleted file mode 120000 index 45166a29717..00000000000 --- a/_downloads/b5dddc55a4e88e266e576b0d82432b11/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b5dddc55a4e88e266e576b0d82432b11/boxplot_demo_pyplot.ipynb \ No newline at end of file diff --git a/_downloads/b5e540f12f42d5804b08bb0561575e82/fill_spiral.ipynb b/_downloads/b5e540f12f42d5804b08bb0561575e82/fill_spiral.ipynb deleted file mode 120000 index 3e18c38debc..00000000000 --- a/_downloads/b5e540f12f42d5804b08bb0561575e82/fill_spiral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b5e540f12f42d5804b08bb0561575e82/fill_spiral.ipynb \ No newline at end of file diff --git a/_downloads/b5e807637d1a1ac631777b28589ef168/multiple_yaxis_with_spines.py b/_downloads/b5e807637d1a1ac631777b28589ef168/multiple_yaxis_with_spines.py deleted file mode 120000 index 82c4374b664..00000000000 --- a/_downloads/b5e807637d1a1ac631777b28589ef168/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b5e807637d1a1ac631777b28589ef168/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/b6005f4f63aeba251c5e083899fdcc37/triplot_demo.ipynb b/_downloads/b6005f4f63aeba251c5e083899fdcc37/triplot_demo.ipynb deleted file mode 120000 index 6bdfb2bf69a..00000000000 --- a/_downloads/b6005f4f63aeba251c5e083899fdcc37/triplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b6005f4f63aeba251c5e083899fdcc37/triplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/b6082016b560fa99854e3efaf1afb469/viewlims.py b/_downloads/b6082016b560fa99854e3efaf1afb469/viewlims.py deleted file mode 120000 index 5bd2bb96017..00000000000 --- a/_downloads/b6082016b560fa99854e3efaf1afb469/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b6082016b560fa99854e3efaf1afb469/viewlims.py \ No newline at end of file diff --git a/_downloads/b6096ce1fd7490b9f5c057acbdf31749/figure_title.py b/_downloads/b6096ce1fd7490b9f5c057acbdf31749/figure_title.py deleted file mode 100644 index 1c54c3887be..00000000000 --- a/_downloads/b6096ce1fd7490b9f5c057acbdf31749/figure_title.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -============ -Figure Title -============ - -Create a figure with separate subplot titles and a centered figure title. -""" -import matplotlib.pyplot as plt -import numpy as np - - -def f(t): - s1 = np.cos(2*np.pi*t) - e1 = np.exp(-t) - return s1 * e1 - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) -t3 = np.arange(0.0, 2.0, 0.01) - - -fig, axs = plt.subplots(2, 1, constrained_layout=True) -axs[0].plot(t1, f(t1), 'o', t2, f(t2), '-') -axs[0].set_title('subplot 1') -axs[0].set_xlabel('distance (m)') -axs[0].set_ylabel('Damped oscillation') -fig.suptitle('This is a somewhat long figure title', fontsize=16) - -axs[1].plot(t3, np.cos(2*np.pi*t3), '--') -axs[1].set_xlabel('time (s)') -axs[1].set_title('subplot 2') -axs[1].set_ylabel('Undamped') - -plt.show() diff --git a/_downloads/b612fc5ce4b8f662c0ab4a08ad25f697/annotation_demo.ipynb b/_downloads/b612fc5ce4b8f662c0ab4a08ad25f697/annotation_demo.ipynb deleted file mode 120000 index e4e4927800f..00000000000 --- a/_downloads/b612fc5ce4b8f662c0ab4a08ad25f697/annotation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b612fc5ce4b8f662c0ab4a08ad25f697/annotation_demo.ipynb \ No newline at end of file diff --git a/_downloads/b6145ff55bd1b646e9531284abc7b05f/image_clip_path.ipynb b/_downloads/b6145ff55bd1b646e9531284abc7b05f/image_clip_path.ipynb deleted file mode 100644 index 7449318c7c3..00000000000 --- a/_downloads/b6145ff55bd1b646e9531284abc7b05f/image_clip_path.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Clipping images with patches\n\n\nDemo of image that's been clipped by a circular patch.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nimport matplotlib.cbook as cbook\n\n\nwith cbook.get_sample_data('grace_hopper.png') as image_file:\n image = plt.imread(image_file)\n\nfig, ax = plt.subplots()\nim = ax.imshow(image)\npatch = patches.Circle((260, 200), radius=200, transform=ax.transData)\nim.set_clip_path(patch)\n\nax.axis('off')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.artist.Artist.set_clip_path" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b61a6766efa39839d4ffa069f4e23c7e/ellipse_collection.ipynb b/_downloads/b61a6766efa39839d4ffa069f4e23c7e/ellipse_collection.ipynb deleted file mode 100644 index 4a703064c55..00000000000 --- a/_downloads/b61a6766efa39839d4ffa069f4e23c7e/ellipse_collection.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ellipse Collection\n\n\nDrawing a collection of ellipses. While this would equally be possible using\na `~.collections.EllipseCollection` or `~.collections.PathCollection`, the use\nof an `~.collections.EllipseCollection` allows for much shorter code.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.collections import EllipseCollection\n\nx = np.arange(10)\ny = np.arange(15)\nX, Y = np.meshgrid(x, y)\n\nXY = np.column_stack((X.ravel(), Y.ravel()))\n\nww = X / 10.0\nhh = Y / 15.0\naa = X * 9\n\n\nfig, ax = plt.subplots()\n\nec = EllipseCollection(ww, hh, aa, units='x', offsets=XY,\n transOffset=ax.transData)\nec.set_array((X + Y).ravel())\nax.add_collection(ec)\nax.autoscale_view()\nax.set_xlabel('X')\nax.set_ylabel('y')\ncbar = plt.colorbar(ec)\ncbar.set_label('X+Y')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.collections\nmatplotlib.collections.EllipseCollection\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.autoscale_view\nmatplotlib.cm.ScalarMappable.set_array" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b6206761d191ef622e1a39264a39e0eb/linestyles.py b/_downloads/b6206761d191ef622e1a39264a39e0eb/linestyles.py deleted file mode 100644 index cbae3f1d741..00000000000 --- a/_downloads/b6206761d191ef622e1a39264a39e0eb/linestyles.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -========== -Linestyles -========== - -Simple linestyles can be defined using the strings "solid", "dotted", "dashed" -or "dashdot". More refined control can be achieved by providing a dash tuple -``(offset, (on_off_seq))``. For example, ``(0, (3, 10, 1, 15))`` means -(3pt line, 10pt space, 1pt line, 15pt space) with no offset. See also -`.Line2D.set_linestyle`. - -*Note*: The dash style can also be configured via `.Line2D.set_dashes` -as shown in :doc:`/gallery/lines_bars_and_markers/line_demo_dash_control` -and passing a list of dash sequences using the keyword *dashes* to the -cycler in :doc:`property_cycle `. -""" -import numpy as np -import matplotlib.pyplot as plt - -linestyle_str = [ - ('solid', 'solid'), # Same as (0, ()) or '-' - ('dotted', 'dotted'), # Same as (0, (1, 1)) or '.' - ('dashed', 'dashed'), # Same as '--' - ('dashdot', 'dashdot')] # Same as '-.' - -linestyle_tuple = [ - ('loosely dotted', (0, (1, 10))), - ('dotted', (0, (1, 1))), - ('densely dotted', (0, (1, 1))), - - ('loosely dashed', (0, (5, 10))), - ('dashed', (0, (5, 5))), - ('densely dashed', (0, (5, 1))), - - ('loosely dashdotted', (0, (3, 10, 1, 10))), - ('dashdotted', (0, (3, 5, 1, 5))), - ('densely dashdotted', (0, (3, 1, 1, 1))), - - ('dashdotdotted', (0, (3, 5, 1, 5, 1, 5))), - ('loosely dashdotdotted', (0, (3, 10, 1, 10, 1, 10))), - ('densely dashdotdotted', (0, (3, 1, 1, 1, 1, 1)))] - - -def plot_linestyles(ax, linestyles): - X, Y = np.linspace(0, 100, 10), np.zeros(10) - yticklabels = [] - - for i, (name, linestyle) in enumerate(linestyles): - ax.plot(X, Y+i, linestyle=linestyle, linewidth=1.5, color='black') - yticklabels.append(name) - - ax.set(xticks=[], ylim=(-0.5, len(linestyles)-0.5), - yticks=np.arange(len(linestyles)), yticklabels=yticklabels) - - # For each line style, add a text annotation with a small offset from - # the reference point (0 in Axes coords, y tick value in Data coords). - for i, (name, linestyle) in enumerate(linestyles): - ax.annotate(repr(linestyle), - xy=(0.0, i), xycoords=ax.get_yaxis_transform(), - xytext=(-6, -12), textcoords='offset points', - color="blue", fontsize=8, ha="right", family="monospace") - - -fig, (ax0, ax1) = plt.subplots(2, 1, gridspec_kw={'height_ratios': [1, 3]}, - figsize=(10, 8)) - -plot_linestyles(ax0, linestyle_str[::-1]) -plot_linestyles(ax1, linestyle_tuple[::-1]) - -plt.tight_layout() -plt.show() diff --git a/_downloads/b620829af6737a89e0f88797ae5d2537/annotate_simple02.py b/_downloads/b620829af6737a89e0f88797ae5d2537/annotate_simple02.py deleted file mode 120000 index 9924937d1f1..00000000000 --- a/_downloads/b620829af6737a89e0f88797ae5d2537/annotate_simple02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b620829af6737a89e0f88797ae5d2537/annotate_simple02.py \ No newline at end of file diff --git a/_downloads/b62d670694b372d2d5abc2e1546e8322/lasso_selector_demo_sgskip.py b/_downloads/b62d670694b372d2d5abc2e1546e8322/lasso_selector_demo_sgskip.py deleted file mode 120000 index 4c315110317..00000000000 --- a/_downloads/b62d670694b372d2d5abc2e1546e8322/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b62d670694b372d2d5abc2e1546e8322/lasso_selector_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/b634a10165f3bed4ad083d6ba78a2c15/tick_label_right.py b/_downloads/b634a10165f3bed4ad083d6ba78a2c15/tick_label_right.py deleted file mode 120000 index d7631c42798..00000000000 --- a/_downloads/b634a10165f3bed4ad083d6ba78a2c15/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/b634a10165f3bed4ad083d6ba78a2c15/tick_label_right.py \ No newline at end of file diff --git a/_downloads/b635167ba21130ad648c08f39a7a61ea/embedding_in_wx5_sgskip.py b/_downloads/b635167ba21130ad648c08f39a7a61ea/embedding_in_wx5_sgskip.py deleted file mode 120000 index 1f7b288ee27..00000000000 --- a/_downloads/b635167ba21130ad648c08f39a7a61ea/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b635167ba21130ad648c08f39a7a61ea/embedding_in_wx5_sgskip.py \ No newline at end of file diff --git a/_downloads/b635f254ade8d6ae603f5ba584379cab/contourf_log.py b/_downloads/b635f254ade8d6ae603f5ba584379cab/contourf_log.py deleted file mode 120000 index bb454121ca7..00000000000 --- a/_downloads/b635f254ade8d6ae603f5ba584379cab/contourf_log.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b635f254ade8d6ae603f5ba584379cab/contourf_log.py \ No newline at end of file diff --git a/_downloads/b638fc108f3307e289b46840457698fe/demo_axes_hbox_divider.py b/_downloads/b638fc108f3307e289b46840457698fe/demo_axes_hbox_divider.py deleted file mode 120000 index 1536d704190..00000000000 --- a/_downloads/b638fc108f3307e289b46840457698fe/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b638fc108f3307e289b46840457698fe/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/_downloads/b64ca091b8901309307e81ef63918115/histogram_features.py b/_downloads/b64ca091b8901309307e81ef63918115/histogram_features.py deleted file mode 120000 index 2c453880617..00000000000 --- a/_downloads/b64ca091b8901309307e81ef63918115/histogram_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b64ca091b8901309307e81ef63918115/histogram_features.py \ No newline at end of file diff --git a/_downloads/b65a25acc93e05f55ebe209c2c06a86c/date_index_formatter2.py b/_downloads/b65a25acc93e05f55ebe209c2c06a86c/date_index_formatter2.py deleted file mode 100644 index c59342e134a..00000000000 --- a/_downloads/b65a25acc93e05f55ebe209c2c06a86c/date_index_formatter2.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -==================== -Date Index Formatter -==================== - -When plotting daily data, a frequent request is to plot the data -ignoring skips, e.g., no extra spaces for weekends. This is particularly -common in financial time series, when you may have data for M-F and -not Sat, Sun and you don't want gaps in the x axis. The approach is -to simply use the integer index for the xdata and a custom tick -Formatter to get the appropriate date string for a given index. -""" - -import dateutil.parser -from matplotlib import cbook, dates -import matplotlib.pyplot as plt -from matplotlib.ticker import Formatter -import numpy as np - - -datafile = cbook.get_sample_data('msft.csv', asfileobj=False) -print('loading %s' % datafile) -msft_data = np.genfromtxt( - datafile, delimiter=',', names=True, - converters={0: lambda s: dates.date2num(dateutil.parser.parse(s))}) - - -class MyFormatter(Formatter): - def __init__(self, dates, fmt='%Y-%m-%d'): - self.dates = dates - self.fmt = fmt - - def __call__(self, x, pos=0): - 'Return the label for time x at position pos' - ind = int(np.round(x)) - if ind >= len(self.dates) or ind < 0: - return '' - return dates.num2date(self.dates[ind]).strftime(self.fmt) - - -fig, ax = plt.subplots() -ax.xaxis.set_major_formatter(MyFormatter(msft_data['Date'])) -ax.plot(msft_data['Close'], 'o-') -fig.autofmt_xdate() -plt.show() diff --git a/_downloads/b65c0a6349d99bdef4b5001540d82eb9/dollar_ticks.py b/_downloads/b65c0a6349d99bdef4b5001540d82eb9/dollar_ticks.py deleted file mode 120000 index 5b20ef5855d..00000000000 --- a/_downloads/b65c0a6349d99bdef4b5001540d82eb9/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b65c0a6349d99bdef4b5001540d82eb9/dollar_ticks.py \ No newline at end of file diff --git a/_downloads/b6703cbd3c7c3dc82589d9c0a6ec890b/line_collection.py b/_downloads/b6703cbd3c7c3dc82589d9c0a6ec890b/line_collection.py deleted file mode 120000 index b23cf05afea..00000000000 --- a/_downloads/b6703cbd3c7c3dc82589d9c0a6ec890b/line_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b6703cbd3c7c3dc82589d9c0a6ec890b/line_collection.py \ No newline at end of file diff --git a/_downloads/b679424f812f73063cac735e21c1575c/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/b679424f812f73063cac735e21c1575c/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 120000 index dab50971b75..00000000000 --- a/_downloads/b679424f812f73063cac735e21c1575c/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b679424f812f73063cac735e21c1575c/embedding_in_gtk3_panzoom_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/b67e62b91c80b0782c301a0140b0b21c/quad_bezier.py b/_downloads/b67e62b91c80b0782c301a0140b0b21c/quad_bezier.py deleted file mode 120000 index 32a9584db84..00000000000 --- a/_downloads/b67e62b91c80b0782c301a0140b0b21c/quad_bezier.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b67e62b91c80b0782c301a0140b0b21c/quad_bezier.py \ No newline at end of file diff --git a/_downloads/b683217e70668fe5759db7eb933e2f63/histogram.py b/_downloads/b683217e70668fe5759db7eb933e2f63/histogram.py deleted file mode 120000 index d218b7c4103..00000000000 --- a/_downloads/b683217e70668fe5759db7eb933e2f63/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b683217e70668fe5759db7eb933e2f63/histogram.py \ No newline at end of file diff --git a/_downloads/b688dff4c0226cb9583e917c32360ab4/simple_plot.py b/_downloads/b688dff4c0226cb9583e917c32360ab4/simple_plot.py deleted file mode 120000 index ad456cc1830..00000000000 --- a/_downloads/b688dff4c0226cb9583e917c32360ab4/simple_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b688dff4c0226cb9583e917c32360ab4/simple_plot.py \ No newline at end of file diff --git a/_downloads/b68d05d13179f4ab31cb64d63e6c4793/close_event.py b/_downloads/b68d05d13179f4ab31cb64d63e6c4793/close_event.py deleted file mode 100644 index 7613ec45bec..00000000000 --- a/_downloads/b68d05d13179f4ab31cb64d63e6c4793/close_event.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -=========== -Close Event -=========== - -Example to show connecting events that occur when the figure closes. -""" -import matplotlib.pyplot as plt - - -def handle_close(evt): - print('Closed Figure!') - -fig = plt.figure() -fig.canvas.mpl_connect('close_event', handle_close) - -plt.text(0.35, 0.5, 'Close Me!', dict(size=30)) -plt.show() diff --git a/_downloads/b68d1625c97eb353a02c845eb87d91ea/annotate_simple_coord02.ipynb b/_downloads/b68d1625c97eb353a02c845eb87d91ea/annotate_simple_coord02.ipynb deleted file mode 120000 index ad0d983d2f4..00000000000 --- a/_downloads/b68d1625c97eb353a02c845eb87d91ea/annotate_simple_coord02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b68d1625c97eb353a02c845eb87d91ea/annotate_simple_coord02.ipynb \ No newline at end of file diff --git a/_downloads/b69456e6a796cac4e3eff92a56b8f3a5/annotate_simple_coord02.py b/_downloads/b69456e6a796cac4e3eff92a56b8f3a5/annotate_simple_coord02.py deleted file mode 120000 index 588dfae43e6..00000000000 --- a/_downloads/b69456e6a796cac4e3eff92a56b8f3a5/annotate_simple_coord02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b69456e6a796cac4e3eff92a56b8f3a5/annotate_simple_coord02.py \ No newline at end of file diff --git a/_downloads/b6a16bfa027d26f7ce729e33d066e3ff/figlegend_demo.ipynb b/_downloads/b6a16bfa027d26f7ce729e33d066e3ff/figlegend_demo.ipynb deleted file mode 120000 index 96987b763ba..00000000000 --- a/_downloads/b6a16bfa027d26f7ce729e33d066e3ff/figlegend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b6a16bfa027d26f7ce729e33d066e3ff/figlegend_demo.ipynb \ No newline at end of file diff --git a/_downloads/b6a623463aea55124b9075b6ee625b46/color_cycler.py b/_downloads/b6a623463aea55124b9075b6ee625b46/color_cycler.py deleted file mode 120000 index 83b4086f66f..00000000000 --- a/_downloads/b6a623463aea55124b9075b6ee625b46/color_cycler.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b6a623463aea55124b9075b6ee625b46/color_cycler.py \ No newline at end of file diff --git a/_downloads/b6b099f4573ced375786e288b19bd415/figure_axes_enter_leave.ipynb b/_downloads/b6b099f4573ced375786e288b19bd415/figure_axes_enter_leave.ipynb deleted file mode 120000 index 7f4a0611599..00000000000 --- a/_downloads/b6b099f4573ced375786e288b19bd415/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b6b099f4573ced375786e288b19bd415/figure_axes_enter_leave.ipynb \ No newline at end of file diff --git a/_downloads/b6b0de17e5db8e914bf1e884e16c8853/custom_legends.ipynb b/_downloads/b6b0de17e5db8e914bf1e884e16c8853/custom_legends.ipynb deleted file mode 120000 index 04dabe71c9b..00000000000 --- a/_downloads/b6b0de17e5db8e914bf1e884e16c8853/custom_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b6b0de17e5db8e914bf1e884e16c8853/custom_legends.ipynb \ No newline at end of file diff --git a/_downloads/b6b389db7c63d856bb5f767b6fd73bdf/shading_example.py b/_downloads/b6b389db7c63d856bb5f767b6fd73bdf/shading_example.py deleted file mode 100644 index 95f7e59f5a7..00000000000 --- a/_downloads/b6b389db7c63d856bb5f767b6fd73bdf/shading_example.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -=============== -Shading example -=============== - -Example showing how to make shaded relief plots like Mathematica_ or -`Generic Mapping Tools`_. - -.. _Mathematica: http://reference.wolfram.com/mathematica/ref/ReliefPlot.html -.. _Generic Mapping Tools: https://gmt.soest.hawaii.edu/ -""" - -import numpy as np -from matplotlib import cbook -import matplotlib.pyplot as plt -from matplotlib.colors import LightSource - - -def main(): - # Test data - x, y = np.mgrid[-5:5:0.05, -5:5:0.05] - z = 5 * (np.sqrt(x**2 + y**2) + np.sin(x**2 + y**2)) - - with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \ - np.load(file) as dem: - elev = dem['elevation'] - - fig = compare(z, plt.cm.copper) - fig.suptitle('HSV Blending Looks Best with Smooth Surfaces', y=0.95) - - fig = compare(elev, plt.cm.gist_earth, ve=0.05) - fig.suptitle('Overlay Blending Looks Best with Rough Surfaces', y=0.95) - - plt.show() - - -def compare(z, cmap, ve=1): - # Create subplots and hide ticks - fig, axs = plt.subplots(ncols=2, nrows=2) - for ax in axs.flat: - ax.set(xticks=[], yticks=[]) - - # Illuminate the scene from the northwest - ls = LightSource(azdeg=315, altdeg=45) - - axs[0, 0].imshow(z, cmap=cmap) - axs[0, 0].set(xlabel='Colormapped Data') - - axs[0, 1].imshow(ls.hillshade(z, vert_exag=ve), cmap='gray') - axs[0, 1].set(xlabel='Illumination Intensity') - - rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='hsv') - axs[1, 0].imshow(rgb) - axs[1, 0].set(xlabel='Blend Mode: "hsv" (default)') - - rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='overlay') - axs[1, 1].imshow(rgb) - axs[1, 1].set(xlabel='Blend Mode: "overlay"') - - return fig - - -if __name__ == '__main__': - main() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown in this example: - -import matplotlib -matplotlib.colors.LightSource -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/b6b6c00f47dbd56c87d21142fbdf5fd0/colormap_normalizations_symlognorm.py b/_downloads/b6b6c00f47dbd56c87d21142fbdf5fd0/colormap_normalizations_symlognorm.py deleted file mode 120000 index df1efc4073b..00000000000 --- a/_downloads/b6b6c00f47dbd56c87d21142fbdf5fd0/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b6b6c00f47dbd56c87d21142fbdf5fd0/colormap_normalizations_symlognorm.py \ No newline at end of file diff --git a/_downloads/b6b8bdee6cb17ac313bed674ef0b372b/image_antialiasing.py b/_downloads/b6b8bdee6cb17ac313bed674ef0b372b/image_antialiasing.py deleted file mode 120000 index 5c863d7a932..00000000000 --- a/_downloads/b6b8bdee6cb17ac313bed674ef0b372b/image_antialiasing.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b6b8bdee6cb17ac313bed674ef0b372b/image_antialiasing.py \ No newline at end of file diff --git a/_downloads/b6c04987ff4db75f3165df185ed2890b/tricontour3d.ipynb b/_downloads/b6c04987ff4db75f3165df185ed2890b/tricontour3d.ipynb deleted file mode 100644 index f247025c156..00000000000 --- a/_downloads/b6c04987ff4db75f3165df185ed2890b/tricontour3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triangular 3D contour plot\n\n\nContour plots of unstructured triangular grids.\n\nThe data used is the same as in the second plot of trisurf3d_demo2.\ntricontourf3d_demo shows the filled version of this example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np\n\nn_angles = 48\nn_radii = 8\nmin_radius = 0.25\n\n# Create the mesh in polar coordinates and compute x, y, z.\nradii = np.linspace(min_radius, 0.95, n_radii)\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi/n_angles\n\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nz = (np.cos(radii)*np.cos(3*angles)).flatten()\n\n# Create a custom triangulation.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.tricontour(triang, z, cmap=plt.cm.CMRmap)\n\n# Customize the view angle so it's easier to understand the plot.\nax.view_init(elev=45.)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b6c09f7343e24cf0920096af5bdedb12/simple_legend01.ipynb b/_downloads/b6c09f7343e24cf0920096af5bdedb12/simple_legend01.ipynb deleted file mode 120000 index 365e0f516fb..00000000000 --- a/_downloads/b6c09f7343e24cf0920096af5bdedb12/simple_legend01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b6c09f7343e24cf0920096af5bdedb12/simple_legend01.ipynb \ No newline at end of file diff --git a/_downloads/b6c113e54a7618e218113592c2310e12/bachelors_degrees_by_gender.ipynb b/_downloads/b6c113e54a7618e218113592c2310e12/bachelors_degrees_by_gender.ipynb deleted file mode 120000 index 03b679c0e5f..00000000000 --- a/_downloads/b6c113e54a7618e218113592c2310e12/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b6c113e54a7618e218113592c2310e12/bachelors_degrees_by_gender.ipynb \ No newline at end of file diff --git a/_downloads/b6c221dd1151b951485ab1c28b243be1/mathtext_demo.ipynb b/_downloads/b6c221dd1151b951485ab1c28b243be1/mathtext_demo.ipynb deleted file mode 120000 index b8610f470d2..00000000000 --- a/_downloads/b6c221dd1151b951485ab1c28b243be1/mathtext_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b6c221dd1151b951485ab1c28b243be1/mathtext_demo.ipynb \ No newline at end of file diff --git a/_downloads/b6c37c83e6e7b1cb689f842fcb4271ef/annotations.py b/_downloads/b6c37c83e6e7b1cb689f842fcb4271ef/annotations.py deleted file mode 120000 index 925a9e4f1ba..00000000000 --- a/_downloads/b6c37c83e6e7b1cb689f842fcb4271ef/annotations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b6c37c83e6e7b1cb689f842fcb4271ef/annotations.py \ No newline at end of file diff --git a/_downloads/b6c8b1141ba8a61c4164a86b3465b35f/simple_anchored_artists.py b/_downloads/b6c8b1141ba8a61c4164a86b3465b35f/simple_anchored_artists.py deleted file mode 120000 index 8b5c2704bcf..00000000000 --- a/_downloads/b6c8b1141ba8a61c4164a86b3465b35f/simple_anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b6c8b1141ba8a61c4164a86b3465b35f/simple_anchored_artists.py \ No newline at end of file diff --git a/_downloads/b6cf92aa876a4b1fda00b5f08184f673/stem.py b/_downloads/b6cf92aa876a4b1fda00b5f08184f673/stem.py deleted file mode 120000 index 7cd8b54fef0..00000000000 --- a/_downloads/b6cf92aa876a4b1fda00b5f08184f673/stem.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b6cf92aa876a4b1fda00b5f08184f673/stem.py \ No newline at end of file diff --git a/_downloads/b6df01615e62198a6e6b651c4b836b36/span_selector.py b/_downloads/b6df01615e62198a6e6b651c4b836b36/span_selector.py deleted file mode 120000 index 3f3d114800d..00000000000 --- a/_downloads/b6df01615e62198a6e6b651c4b836b36/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b6df01615e62198a6e6b651c4b836b36/span_selector.py \ No newline at end of file diff --git a/_downloads/b6ea9be45c260fbed02d8e2d9b2e4549/transforms_tutorial.ipynb b/_downloads/b6ea9be45c260fbed02d8e2d9b2e4549/transforms_tutorial.ipynb deleted file mode 100644 index 09ffb39aca1..00000000000 --- a/_downloads/b6ea9be45c260fbed02d8e2d9b2e4549/transforms_tutorial.ipynb +++ /dev/null @@ -1,205 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Transformations Tutorial\n\n\nLike any graphics packages, Matplotlib is built on top of a\ntransformation framework to easily move between coordinate systems,\nthe userland `data` coordinate system, the `axes` coordinate system,\nthe `figure` coordinate system, and the `display` coordinate system.\nIn 95% of your plotting, you won't need to think about this, as it\nhappens under the hood, but as you push the limits of custom figure\ngeneration, it helps to have an understanding of these objects so you\ncan reuse the existing transformations Matplotlib makes available to\nyou, or create your own (see :mod:`matplotlib.transforms`). The table\nbelow summarizes the some useful coordinate systems, the transformation\nobject you should use to work in that coordinate system, and the\ndescription of that system. In the `Transformation Object` column,\n``ax`` is a :class:`~matplotlib.axes.Axes` instance, and ``fig`` is a\n:class:`~matplotlib.figure.Figure` instance.\n\n+----------------+-----------------------------+-----------------------------------+\n|Coordinates |Transformation object |Description |\n+================+=============================+===================================+\n|\"data\" |``ax.transData`` |The coordinate system for the data,|\n| | |controlled by xlim and ylim. |\n+----------------+-----------------------------+-----------------------------------+\n|\"axes\" |``ax.transAxes`` |The coordinate system of the |\n| | |`~matplotlib.axes.Axes`; (0, 0) |\n| | |is bottom left of the axes, and |\n| | |(1, 1) is top right of the axes. |\n+----------------+-----------------------------+-----------------------------------+\n|\"figure\" |``fig.transFigure`` |The coordinate system of the |\n| | |`.Figure`; (0, 0) is bottom left |\n| | |of the figure, and (1, 1) is top |\n| | |right of the figure. |\n+----------------+-----------------------------+-----------------------------------+\n|\"figure-inches\" |``fig.dpi_scale_trans`` |The coordinate system of the |\n| | |`.Figure` in inches; (0, 0) is |\n| | |bottom left of the figure, and |\n| | |(width, height) is the top right |\n| | |of the figure in inches. |\n+----------------+-----------------------------+-----------------------------------+\n|\"display\" |``None``, or |The pixel coordinate system of the |\n| |``IdentityTransform()`` |display window; (0, 0) is bottom |\n| | |left of the window, and (width, |\n| | |height) is top right of the |\n| | |display window in pixels. |\n+----------------+-----------------------------+-----------------------------------+\n|\"xaxis\", |``ax.get_xaxis_transform()``,|Blended coordinate systems; use |\n|\"yaxis\" |``ax.get_yaxis_transform()`` |data coordinates on one of the axis|\n| | |and axes coordinates on the other. |\n+----------------+-----------------------------+-----------------------------------+\n\nAll of the transformation objects in the table above take inputs in\ntheir coordinate system, and transform the input to the ``display``\ncoordinate system. That is why the ``display`` coordinate system has\n``None`` for the ``Transformation Object`` column -- it already is in\ndisplay coordinates. The transformations also know how to invert\nthemselves, to go from ``display`` back to the native coordinate system.\nThis is particularly useful when processing events from the user\ninterface, which typically occur in display space, and you want to\nknow where the mouse click or key-press occurred in your data\ncoordinate system.\n\nNote that specifying objects in ``display`` coordinates will change their\nlocation if the ``dpi`` of the figure changes. This can cause confusion when\nprinting or changing screen resolution, because the object can change location\nand size. Therefore it is most common\nfor artists placed in an axes or figure to have their transform set to\nsomething *other* than the `~.transforms.IdentityTransform()`; the default when\nan artist is placed on an axes using `~.Axes.axes.add_artist` is for the\ntransform to be ``ax.transData``.\n\n\nData coordinates\n================\n\nLet's start with the most commonly used coordinate, the `data`\ncoordinate system. Whenever you add data to the axes, Matplotlib\nupdates the datalimits, most commonly updated with the\n:meth:`~matplotlib.axes.Axes.set_xlim` and\n:meth:`~matplotlib.axes.Axes.set_ylim` methods. For example, in the\nfigure below, the data limits stretch from 0 to 10 on the x-axis, and\n-1 to 1 on the y-axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as mpatches\n\nx = np.arange(0, 10, 0.005)\ny = np.exp(-x/2.) * np.sin(2*np.pi*x)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.set_xlim(0, 10)\nax.set_ylim(-1, 1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can use the ``ax.transData`` instance to transform from your\n`data` to your `display` coordinate system, either a single point or a\nsequence of points as shown below:\n\n.. sourcecode:: ipython\n\n In [14]: type(ax.transData)\n Out[14]: \n\n In [15]: ax.transData.transform((5, 0))\n Out[15]: array([ 335.175, 247. ])\n\n In [16]: ax.transData.transform([(5, 0), (1, 2)])\n Out[16]:\n array([[ 335.175, 247. ],\n [ 132.435, 642.2 ]])\n\nYou can use the :meth:`~matplotlib.transforms.Transform.inverted`\nmethod to create a transform which will take you from display to data\ncoordinates:\n\n.. sourcecode:: ipython\n\n In [41]: inv = ax.transData.inverted()\n\n In [42]: type(inv)\n Out[42]: \n\n In [43]: inv.transform((335.175, 247.))\n Out[43]: array([ 5., 0.])\n\nIf your are typing along with this tutorial, the exact values of the\ndisplay coordinates may differ if you have a different window size or\ndpi setting. Likewise, in the figure below, the display labeled\npoints are probably not the same as in the ipython session because the\ndocumentation figure size defaults are different.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(0, 10, 0.005)\ny = np.exp(-x/2.) * np.sin(2*np.pi*x)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.set_xlim(0, 10)\nax.set_ylim(-1, 1)\n\nxdata, ydata = 5, 0\nxdisplay, ydisplay = ax.transData.transform_point((xdata, ydata))\n\nbbox = dict(boxstyle=\"round\", fc=\"0.8\")\narrowprops = dict(\n arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\")\n\noffset = 72\nax.annotate('data = (%.1f, %.1f)' % (xdata, ydata),\n (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\ndisp = ax.annotate('display = (%.1f, %.1f)' % (xdisplay, ydisplay),\n (xdisplay, ydisplay), xytext=(0.5*offset, -offset),\n xycoords='figure pixels',\n textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

If you run the source code in the example above in a GUI backend,\n you may also find that the two arrows for the `data` and `display`\n annotations do not point to exactly the same point. This is because\n the display point was computed before the figure was displayed, and\n the GUI backend may slightly resize the figure when it is created.\n The effect is more pronounced if you resize the figure yourself.\n This is one good reason why you rarely want to work in display\n space, but you can connect to the ``'on_draw'``\n :class:`~matplotlib.backend_bases.Event` to update figure\n coordinates on figure draws; see `event-handling-tutorial`.

\n\nWhen you change the x or y limits of your axes, the data limits are\nupdated so the transformation yields a new display point. Note that\nwhen we just change the ylim, only the y-display coordinate is\naltered, and when we change the xlim too, both are altered. More on\nthis later when we talk about the\n:class:`~matplotlib.transforms.Bbox`.\n\n.. sourcecode:: ipython\n\n In [54]: ax.transData.transform((5, 0))\n Out[54]: array([ 335.175, 247. ])\n\n In [55]: ax.set_ylim(-1, 2)\n Out[55]: (-1, 2)\n\n In [56]: ax.transData.transform((5, 0))\n Out[56]: array([ 335.175 , 181.13333333])\n\n In [57]: ax.set_xlim(10, 20)\n Out[57]: (10, 20)\n\n In [58]: ax.transData.transform((5, 0))\n Out[58]: array([-171.675 , 181.13333333])\n\n\n\nAxes coordinates\n================\n\nAfter the `data` coordinate system, `axes` is probably the second most\nuseful coordinate system. Here the point (0, 0) is the bottom left of\nyour axes or subplot, (0.5, 0.5) is the center, and (1.0, 1.0) is the\ntop right. You can also refer to points outside the range, so (-0.1,\n1.1) is to the left and above your axes. This coordinate system is\nextremely useful when placing text in your axes, because you often\nwant a text bubble in a fixed, location, e.g., the upper left of the axes\npane, and have that location remain fixed when you pan or zoom. Here\nis a simple example that creates four panels and labels them 'A', 'B',\n'C', 'D' as you often see in journals.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nfor i, label in enumerate(('A', 'B', 'C', 'D')):\n ax = fig.add_subplot(2, 2, i+1)\n ax.text(0.05, 0.95, label, transform=ax.transAxes,\n fontsize=16, fontweight='bold', va='top')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also make lines or patches in the axes coordinate system, but\nthis is less useful in my experience than using ``ax.transAxes`` for\nplacing text. Nonetheless, here is a silly example which plots some\nrandom dots in `data` space, and overlays a semi-transparent\n:class:`~matplotlib.patches.Circle` centered in the middle of the axes\nwith a radius one quarter of the axes -- if your axes does not\npreserve aspect ratio (see :meth:`~matplotlib.axes.Axes.set_aspect`),\nthis will look like an ellipse. Use the pan/zoom tool to move around,\nor manually change the data xlim and ylim, and you will see the data\nmove, but the circle will remain fixed because it is not in `data`\ncoordinates and will always remain at the center of the axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nx, y = 10*np.random.rand(2, 1000)\nax.plot(x, y, 'go', alpha=0.2) # plot some data in data coordinates\n\ncirc = mpatches.Circle((0.5, 0.5), 0.25, transform=ax.transAxes,\n facecolor='blue', alpha=0.75)\nax.add_patch(circ)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nBlended transformations\n=======================\n\nDrawing in `blended` coordinate spaces which mix `axes` with `data`\ncoordinates is extremely useful, for example to create a horizontal\nspan which highlights some region of the y-data but spans across the\nx-axis regardless of the data limits, pan or zoom level, etc. In fact\nthese blended lines and spans are so useful, we have built in\nfunctions to make them easy to plot (see\n:meth:`~matplotlib.axes.Axes.axhline`,\n:meth:`~matplotlib.axes.Axes.axvline`,\n:meth:`~matplotlib.axes.Axes.axhspan`,\n:meth:`~matplotlib.axes.Axes.axvspan`) but for didactic purposes we\nwill implement the horizontal span here using a blended\ntransformation. This trick only works for separable transformations,\nlike you see in normal Cartesian coordinate systems, but not on\ninseparable transformations like the\n:class:`~matplotlib.projections.polar.PolarAxes.PolarTransform`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.transforms as transforms\n\nfig, ax = plt.subplots()\nx = np.random.randn(1000)\n\nax.hist(x, 30)\nax.set_title(r'$\\sigma=1 \\/ \\dots \\/ \\sigma=2$', fontsize=16)\n\n# the x coords of this transformation are data, and the\n# y coord are axes\ntrans = transforms.blended_transform_factory(\n ax.transData, ax.transAxes)\n\n# highlight the 1..2 stddev region with a span.\n# We want x to be in data coordinates and y to\n# span from 0..1 in axes coords\nrect = mpatches.Rectangle((1, 0), width=1, height=1,\n transform=trans, color='yellow',\n alpha=0.5)\n\nax.add_patch(rect)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

The blended transformations where x is in data coords and y in axes\n coordinates is so useful that we have helper methods to return the\n versions mpl uses internally for drawing ticks, ticklabels, etc.\n The methods are :meth:`matplotlib.axes.Axes.get_xaxis_transform` and\n :meth:`matplotlib.axes.Axes.get_yaxis_transform`. So in the example\n above, the call to\n :meth:`~matplotlib.transforms.blended_transform_factory` can be\n replaced by ``get_xaxis_transform``::\n\n trans = ax.get_xaxis_transform()

\n\n\nPlotting in physical units\n==========================\n\nSometimes we want an object to be a certain physical size on the plot.\nHere we draw the same circle as above, but in physical units. If done\ninteractively, you can see that changing the size of the figure does\nnot change the offset of the circle from the lower-left corner,\ndoes not change its size, and the circle remains a circle regardless of\nthe aspect ratio of the axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 4))\nx, y = 10*np.random.rand(2, 1000)\nax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates\n# add a circle in fixed-units\ncirc = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans,\n facecolor='blue', alpha=0.75)\nax.add_patch(circ)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If we change the figure size, the circle does not change its absolute\nposition and is cropped.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(7, 2))\nx, y = 10*np.random.rand(2, 1000)\nax.plot(x, y*10., 'go', alpha=0.2) # plot some data in data coordinates\n# add a circle in fixed-units\ncirc = mpatches.Circle((2.5, 2), 1.0, transform=fig.dpi_scale_trans,\n facecolor='blue', alpha=0.75)\nax.add_patch(circ)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another use is putting a patch with a set physical dimension around a\ndata point on the axes. Here we add together two transforms. The\nfirst sets the scaling of how large the ellipse should be and the second\nsets its position. The ellipse is then placed at the origin, and then\nwe use the helper transform :class:`~matplotlib.transforms.ScaledTranslation`\nto move it\nto the right place in the ``ax.transData`` coordinate system.\nThis helper is instantiated with::\n\n trans = ScaledTranslation(xt, yt, scale_trans)\n\nwhere `xt` and `yt` are the translation offsets, and `scale_trans` is\na transformation which scales `xt` and `yt` at transformation time\nbefore applying the offsets.\n\nNote the use of the plus operator on the transforms below.\nThis code says: first apply the scale transformation ``fig.dpi_scale_trans``\nto make the ellipse the proper size, but still centered at (0, 0),\nand then translate the data to `xdata[0]` and `ydata[0]` in data space.\n\nIn interactive use, the ellipse stays the same size even if the\naxes limits are changed via zoom.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nxdata, ydata = (0.2, 0.7), (0.5, 0.5)\nax.plot(xdata, ydata, \"o\")\nax.set_xlim((0, 1))\n\ntrans = (fig.dpi_scale_trans +\n transforms.ScaledTranslation(xdata[0], ydata[0], ax.transData))\n\n# plot an ellipse around the point that is 150 x 130 points in diameter...\ncircle = mpatches.Ellipse((0, 0), 150/72, 130/72, angle=40,\n fill=None, transform=trans)\nax.add_patch(circle)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

The order of transformation matters. Here the ellipse\n is given the right dimensions in display space *first* and then moved\n in data space to the correct spot.\n If we had done the ``ScaledTranslation`` first, then\n ``xdata[0]`` and ``ydata[0]`` would\n first be transformed to ``display`` coordinates (``[ 358.4 475.2]`` on\n a 200-dpi monitor) and then those coordinates\n would be scaled by ``fig.dpi_scale_trans`` pushing the center of\n the ellipse well off the screen (i.e. ``[ 71680. 95040.]``).

\n\n\nUsing offset transforms to create a shadow effect\n=================================================\n\nAnother use of :class:`~matplotlib.transforms.ScaledTranslation` is to create\na new transformation that is\noffset from another transformation, e.g., to place one object shifted a\nbit relative to another object. Typically you want the shift to be in\nsome physical dimension, like points or inches rather than in data\ncoordinates, so that the shift effect is constant at different zoom\nlevels and dpi settings.\n\nOne use for an offset is to create a shadow effect, where you draw one\nobject identical to the first just to the right of it, and just below\nit, adjusting the zorder to make sure the shadow is drawn first and\nthen the object it is shadowing above it.\n\nHere we apply the transforms in the *opposite* order to the use of\n:class:`~matplotlib.transforms.ScaledTranslation` above. The plot is\nfirst made in data units (``ax.transData``) and then shifted by\n``dx`` and ``dy`` points using `fig.dpi_scale_trans`. (In typography,\na`point `_ is\n1/72 inches, and by specifying your offsets in points, your figure\nwill look the same regardless of the dpi resolution it is saved in.)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\n# make a simple sine wave\nx = np.arange(0., 2., 0.01)\ny = np.sin(2*np.pi*x)\nline, = ax.plot(x, y, lw=3, color='blue')\n\n# shift the object over 2 points, and down 2 points\ndx, dy = 2/72., -2/72.\noffset = transforms.ScaledTranslation(dx, dy, fig.dpi_scale_trans)\nshadow_transform = ax.transData + offset\n\n# now plot the same data with our offset transform;\n# use the zorder to make sure we are below the line\nax.plot(x, y, lw=3, color='gray',\n transform=shadow_transform,\n zorder=0.5*line.get_zorder())\n\nax.set_title('creating a shadow effect with an offset transform')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

The dpi and inches offset is a\n common-enough use case that we have a special helper function to\n create it in :func:`matplotlib.transforms.offset_copy`, which returns\n a new transform with an added offset. So above we could have done::\n\n shadow_transform = transforms.offset_copy(ax.transData,\n fig=fig, dx, dy, units='inches')

\n\n\n\nThe transformation pipeline\n===========================\n\nThe ``ax.transData`` transform we have been working with in this\ntutorial is a composite of three different transformations that\ncomprise the transformation pipeline from `data` -> `display`\ncoordinates. Michael Droettboom implemented the transformations\nframework, taking care to provide a clean API that segregated the\nnonlinear projections and scales that happen in polar and logarithmic\nplots, from the linear affine transformations that happen when you pan\nand zoom. There is an efficiency here, because you can pan and zoom\nin your axes which affects the affine transformation, but you may not\nneed to compute the potentially expensive nonlinear scales or\nprojections on simple navigation events. It is also possible to\nmultiply affine transformation matrices together, and then apply them\nto coordinates in one step. This is not true of all possible\ntransformations.\n\n\nHere is how the ``ax.transData`` instance is defined in the basic\nseparable axis :class:`~matplotlib.axes.Axes` class::\n\n self.transData = self.transScale + (self.transLimits + self.transAxes)\n\nWe've been introduced to the ``transAxes`` instance above in\n`axes-coords`, which maps the (0, 0), (1, 1) corners of the\naxes or subplot bounding box to `display` space, so let's look at\nthese other two pieces.\n\n``self.transLimits`` is the transformation that takes you from\n``data`` to ``axes`` coordinates; i.e., it maps your view xlim and ylim\nto the unit space of the axes (and ``transAxes`` then takes that unit\nspace to display space). We can see this in action here\n\n.. sourcecode:: ipython\n\n In [80]: ax = subplot(111)\n\n In [81]: ax.set_xlim(0, 10)\n Out[81]: (0, 10)\n\n In [82]: ax.set_ylim(-1, 1)\n Out[82]: (-1, 1)\n\n In [84]: ax.transLimits.transform((0, -1))\n Out[84]: array([ 0., 0.])\n\n In [85]: ax.transLimits.transform((10, -1))\n Out[85]: array([ 1., 0.])\n\n In [86]: ax.transLimits.transform((10, 1))\n Out[86]: array([ 1., 1.])\n\n In [87]: ax.transLimits.transform((5, 0))\n Out[87]: array([ 0.5, 0.5])\n\nand we can use this same inverted transformation to go from the unit\n`axes` coordinates back to `data` coordinates.\n\n.. sourcecode:: ipython\n\n In [90]: inv.transform((0.25, 0.25))\n Out[90]: array([ 2.5, -0.5])\n\nThe final piece is the ``self.transScale`` attribute, which is\nresponsible for the optional non-linear scaling of the data, e.g., for\nlogarithmic axes. When an Axes is initially setup, this is just set to\nthe identity transform, since the basic Matplotlib axes has linear\nscale, but when you call a logarithmic scaling function like\n:meth:`~matplotlib.axes.Axes.semilogx` or explicitly set the scale to\nlogarithmic with :meth:`~matplotlib.axes.Axes.set_xscale`, then the\n``ax.transScale`` attribute is set to handle the nonlinear projection.\nThe scales transforms are properties of the respective ``xaxis`` and\n``yaxis`` :class:`~matplotlib.axis.Axis` instances. For example, when\nyou call ``ax.set_xscale('log')``, the xaxis updates its scale to a\n:class:`matplotlib.scale.LogScale` instance.\n\nFor non-separable axes the PolarAxes, there is one more piece to\nconsider, the projection transformation. The ``transData``\n:class:`matplotlib.projections.polar.PolarAxes` is similar to that for\nthe typical separable matplotlib Axes, with one additional piece\n``transProjection``::\n\n self.transData = self.transScale + self.transProjection + \\\n (self.transProjectionAffine + self.transAxes)\n\n``transProjection`` handles the projection from the space,\ne.g., latitude and longitude for map data, or radius and theta for polar\ndata, to a separable Cartesian coordinate system. There are several\nprojection examples in the ``matplotlib.projections`` package, and the\nbest way to learn more is to open the source for those packages and\nsee how to make your own, since Matplotlib supports extensible axes\nand projections. Michael Droettboom has provided a nice tutorial\nexample of creating a Hammer projection axes; see\n:doc:`/gallery/misc/custom_projection`.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b6f78f97f7fbec71abb3c6aefc1d4c7d/barbs.ipynb b/_downloads/b6f78f97f7fbec71abb3c6aefc1d4c7d/barbs.ipynb deleted file mode 120000 index ed044745eba..00000000000 --- a/_downloads/b6f78f97f7fbec71abb3c6aefc1d4c7d/barbs.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b6f78f97f7fbec71abb3c6aefc1d4c7d/barbs.ipynb \ No newline at end of file diff --git a/_downloads/b70682bd936af2f3112a2f348ac7b83d/tricontour_smooth_delaunay.py b/_downloads/b70682bd936af2f3112a2f348ac7b83d/tricontour_smooth_delaunay.py deleted file mode 120000 index ff452f8f783..00000000000 --- a/_downloads/b70682bd936af2f3112a2f348ac7b83d/tricontour_smooth_delaunay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b70682bd936af2f3112a2f348ac7b83d/tricontour_smooth_delaunay.py \ No newline at end of file diff --git a/_downloads/b70da61fa900e5a2bfdcf4e0779b33c0/simple_axisline3.py b/_downloads/b70da61fa900e5a2bfdcf4e0779b33c0/simple_axisline3.py deleted file mode 120000 index b4aeae759a8..00000000000 --- a/_downloads/b70da61fa900e5a2bfdcf4e0779b33c0/simple_axisline3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b70da61fa900e5a2bfdcf4e0779b33c0/simple_axisline3.py \ No newline at end of file diff --git a/_downloads/b7170b60e365976225836bf400c56e0a/polar_bar.ipynb b/_downloads/b7170b60e365976225836bf400c56e0a/polar_bar.ipynb deleted file mode 120000 index 1a7fcfbf106..00000000000 --- a/_downloads/b7170b60e365976225836bf400c56e0a/polar_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b7170b60e365976225836bf400c56e0a/polar_bar.ipynb \ No newline at end of file diff --git a/_downloads/b7178fea6063e9d6f4111c31f2c4373c/auto_ticks.ipynb b/_downloads/b7178fea6063e9d6f4111c31f2c4373c/auto_ticks.ipynb deleted file mode 120000 index 46d9aedb9d1..00000000000 --- a/_downloads/b7178fea6063e9d6f4111c31f2c4373c/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b7178fea6063e9d6f4111c31f2c4373c/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/b71e8a25c10a4bc1d32f538c87e94b10/demo_text_path.ipynb b/_downloads/b71e8a25c10a4bc1d32f538c87e94b10/demo_text_path.ipynb deleted file mode 100644 index 6d9dd6e6562..00000000000 --- a/_downloads/b71e8a25c10a4bc1d32f538c87e94b10/demo_text_path.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Text Path\n\n\nUse a text as `Path`. The tool that allows for such conversion is a\n`~matplotlib.textpath.TextPath`. The resulting path can be employed\ne.g. as a clip path for an image.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.image import BboxImage\nimport numpy as np\nfrom matplotlib.transforms import IdentityTransform\n\nimport matplotlib.patches as mpatches\n\nfrom matplotlib.offsetbox import AnnotationBbox,\\\n AnchoredOffsetbox, AuxTransformBox\n\nfrom matplotlib.cbook import get_sample_data\n\nfrom matplotlib.text import TextPath\n\n\nclass PathClippedImagePatch(mpatches.PathPatch):\n \"\"\"\n The given image is used to draw the face of the patch. Internally,\n it uses BboxImage whose clippath set to the path of the patch.\n\n FIXME : The result is currently dpi dependent.\n \"\"\"\n\n def __init__(self, path, bbox_image, **kwargs):\n mpatches.PathPatch.__init__(self, path, **kwargs)\n self._init_bbox_image(bbox_image)\n\n def set_facecolor(self, color):\n \"\"\"simply ignore facecolor\"\"\"\n mpatches.PathPatch.set_facecolor(self, \"none\")\n\n def _init_bbox_image(self, im):\n\n bbox_image = BboxImage(self.get_window_extent,\n norm=None,\n origin=None,\n )\n bbox_image.set_transform(IdentityTransform())\n\n bbox_image.set_data(im)\n self.bbox_image = bbox_image\n\n def draw(self, renderer=None):\n\n # the clip path must be updated every draw. any solution? -JJ\n self.bbox_image.set_clip_path(self._path, self.get_transform())\n self.bbox_image.draw(renderer)\n\n mpatches.PathPatch.draw(self, renderer)\n\n\nif __name__ == \"__main__\":\n\n usetex = plt.rcParams[\"text.usetex\"]\n\n fig = plt.figure()\n\n # EXAMPLE 1\n\n ax = plt.subplot(211)\n\n arr = plt.imread(get_sample_data(\"grace_hopper.png\"))\n\n text_path = TextPath((0, 0), \"!?\", size=150)\n p = PathClippedImagePatch(text_path, arr, ec=\"k\",\n transform=IdentityTransform())\n\n # p.set_clip_on(False)\n\n # make offset box\n offsetbox = AuxTransformBox(IdentityTransform())\n offsetbox.add_artist(p)\n\n # make anchored offset box\n ao = AnchoredOffsetbox(loc='upper left', child=offsetbox, frameon=True,\n borderpad=0.2)\n ax.add_artist(ao)\n\n # another text\n from matplotlib.patches import PathPatch\n if usetex:\n r = r\"\\mbox{textpath supports mathtext \\& \\TeX}\"\n else:\n r = r\"textpath supports mathtext & TeX\"\n\n text_path = TextPath((0, 0), r,\n size=20, usetex=usetex)\n\n p1 = PathPatch(text_path, ec=\"w\", lw=3, fc=\"w\", alpha=0.9,\n transform=IdentityTransform())\n p2 = PathPatch(text_path, ec=\"none\", fc=\"k\",\n transform=IdentityTransform())\n\n offsetbox2 = AuxTransformBox(IdentityTransform())\n offsetbox2.add_artist(p1)\n offsetbox2.add_artist(p2)\n\n ab = AnnotationBbox(offsetbox2, (0.95, 0.05),\n xycoords='axes fraction',\n boxcoords=\"offset points\",\n box_alignment=(1., 0.),\n frameon=False\n )\n ax.add_artist(ab)\n\n ax.imshow([[0, 1, 2], [1, 2, 3]], cmap=plt.cm.gist_gray_r,\n interpolation=\"bilinear\",\n aspect=\"auto\")\n\n # EXAMPLE 2\n\n ax = plt.subplot(212)\n\n arr = np.arange(256).reshape(1, 256)/256.\n\n if usetex:\n s = (r\"$\\displaystyle\\left[\\sum_{n=1}^\\infty\"\n r\"\\frac{-e^{i\\pi}}{2^n}\\right]$!\")\n else:\n s = r\"$\\left[\\sum_{n=1}^\\infty\\frac{-e^{i\\pi}}{2^n}\\right]$!\"\n text_path = TextPath((0, 0), s, size=40, usetex=usetex)\n text_patch = PathClippedImagePatch(text_path, arr, ec=\"none\",\n transform=IdentityTransform())\n\n shadow1 = mpatches.Shadow(text_patch, 1, -1,\n props=dict(fc=\"none\", ec=\"0.6\", lw=3))\n shadow2 = mpatches.Shadow(text_patch, 1, -1,\n props=dict(fc=\"0.3\", ec=\"none\"))\n\n # make offset box\n offsetbox = AuxTransformBox(IdentityTransform())\n offsetbox.add_artist(shadow1)\n offsetbox.add_artist(shadow2)\n offsetbox.add_artist(text_patch)\n\n # place the anchored offset box using AnnotationBbox\n ab = AnnotationBbox(offsetbox, (0.5, 0.5),\n xycoords='data',\n boxcoords=\"offset points\",\n box_alignment=(0.5, 0.5),\n )\n # text_path.set_size(10)\n\n ax.add_artist(ab)\n\n ax.set_xlim(0, 1)\n ax.set_ylim(0, 1)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b731085813360bda2b9759db1f7e39a9/3D.ipynb b/_downloads/b731085813360bda2b9759db1f7e39a9/3D.ipynb deleted file mode 120000 index 63b005124db..00000000000 --- a/_downloads/b731085813360bda2b9759db1f7e39a9/3D.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b731085813360bda2b9759db1f7e39a9/3D.ipynb \ No newline at end of file diff --git a/_downloads/b7322e8c6f4938a0cfe0228d82bfd859/image_nonuniform.py b/_downloads/b7322e8c6f4938a0cfe0228d82bfd859/image_nonuniform.py deleted file mode 120000 index 2df0fe4f6b2..00000000000 --- a/_downloads/b7322e8c6f4938a0cfe0228d82bfd859/image_nonuniform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b7322e8c6f4938a0cfe0228d82bfd859/image_nonuniform.py \ No newline at end of file diff --git a/_downloads/b73272d168a77feda8cd1ce67f8e33c5/mathtext.ipynb b/_downloads/b73272d168a77feda8cd1ce67f8e33c5/mathtext.ipynb deleted file mode 120000 index a628e830fc7..00000000000 --- a/_downloads/b73272d168a77feda8cd1ce67f8e33c5/mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b73272d168a77feda8cd1ce67f8e33c5/mathtext.ipynb \ No newline at end of file diff --git a/_downloads/b745a003eba563ec22474c9c51225893/annotate_simple02.ipynb b/_downloads/b745a003eba563ec22474c9c51225893/annotate_simple02.ipynb deleted file mode 120000 index 4baa8263818..00000000000 --- a/_downloads/b745a003eba563ec22474c9c51225893/annotate_simple02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b745a003eba563ec22474c9c51225893/annotate_simple02.ipynb \ No newline at end of file diff --git a/_downloads/b749d21f7a2f640075f31af04cfe356f/colorbar_tick_labelling_demo.ipynb b/_downloads/b749d21f7a2f640075f31af04cfe356f/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index 12bca6f1102..00000000000 --- a/_downloads/b749d21f7a2f640075f31af04cfe356f/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b749d21f7a2f640075f31af04cfe356f/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/b74c695a21223ee368038600097a0aa4/secondary_axis.py b/_downloads/b74c695a21223ee368038600097a0aa4/secondary_axis.py deleted file mode 120000 index d2650f7e668..00000000000 --- a/_downloads/b74c695a21223ee368038600097a0aa4/secondary_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b74c695a21223ee368038600097a0aa4/secondary_axis.py \ No newline at end of file diff --git a/_downloads/b757a464e6c36d1fb3a78463a8df8511/custom_legends.ipynb b/_downloads/b757a464e6c36d1fb3a78463a8df8511/custom_legends.ipynb deleted file mode 120000 index 72056eb1677..00000000000 --- a/_downloads/b757a464e6c36d1fb3a78463a8df8511/custom_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b757a464e6c36d1fb3a78463a8df8511/custom_legends.ipynb \ No newline at end of file diff --git a/_downloads/b757b9bd0e2fd72e9b60578c34bfcffe/lasso_selector_demo_sgskip.ipynb b/_downloads/b757b9bd0e2fd72e9b60578c34bfcffe/lasso_selector_demo_sgskip.ipynb deleted file mode 120000 index 16598f1da25..00000000000 --- a/_downloads/b757b9bd0e2fd72e9b60578c34bfcffe/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b757b9bd0e2fd72e9b60578c34bfcffe/lasso_selector_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/b769ba223ad595b91433cbee5672f6d7/anchored_box04.ipynb b/_downloads/b769ba223ad595b91433cbee5672f6d7/anchored_box04.ipynb deleted file mode 100644 index f71308101f9..00000000000 --- a/_downloads/b769ba223ad595b91433cbee5672f6d7/anchored_box04.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box04\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Ellipse\nimport matplotlib.pyplot as plt\nfrom matplotlib.offsetbox import (AnchoredOffsetbox, DrawingArea, HPacker,\n TextArea)\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nbox1 = TextArea(\" Test : \", textprops=dict(color=\"k\"))\n\nbox2 = DrawingArea(60, 20, 0, 0)\nel1 = Ellipse((10, 10), width=16, height=5, angle=30, fc=\"r\")\nel2 = Ellipse((30, 10), width=16, height=5, angle=170, fc=\"g\")\nel3 = Ellipse((50, 10), width=16, height=5, angle=230, fc=\"b\")\nbox2.add_artist(el1)\nbox2.add_artist(el2)\nbox2.add_artist(el3)\n\nbox = HPacker(children=[box1, box2],\n align=\"center\",\n pad=0, sep=5)\n\nanchored_box = AnchoredOffsetbox(loc='lower left',\n child=box, pad=0.,\n frameon=True,\n bbox_to_anchor=(0., 1.02),\n bbox_transform=ax.transAxes,\n borderpad=0.,\n )\n\nax.add_artist(anchored_box)\n\nfig.subplots_adjust(top=0.8)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b76a75c615f48f812bb47b88eb89ff1a/broken_barh.py b/_downloads/b76a75c615f48f812bb47b88eb89ff1a/broken_barh.py deleted file mode 120000 index 757d8157428..00000000000 --- a/_downloads/b76a75c615f48f812bb47b88eb89ff1a/broken_barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b76a75c615f48f812bb47b88eb89ff1a/broken_barh.py \ No newline at end of file diff --git a/_downloads/b76c5e6d4b454b07a658399c0d7a84d5/auto_ticks.ipynb b/_downloads/b76c5e6d4b454b07a658399c0d7a84d5/auto_ticks.ipynb deleted file mode 120000 index ad1942de1cf..00000000000 --- a/_downloads/b76c5e6d4b454b07a658399c0d7a84d5/auto_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b76c5e6d4b454b07a658399c0d7a84d5/auto_ticks.ipynb \ No newline at end of file diff --git a/_downloads/b7741583ac0a5da7f9e21a0a2dfba105/colorbar_basics.py b/_downloads/b7741583ac0a5da7f9e21a0a2dfba105/colorbar_basics.py deleted file mode 100644 index 64bed1449da..00000000000 --- a/_downloads/b7741583ac0a5da7f9e21a0a2dfba105/colorbar_basics.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -======== -Colorbar -======== - -Use `~.figure.Figure.colorbar` by specifying the mappable object (here -the `~.matplotlib.image.AxesImage` returned by `~.axes.Axes.imshow`) -and the axes to attach the colorbar to. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# setup some generic data -N = 37 -x, y = np.mgrid[:N, :N] -Z = (np.cos(x*0.2) + np.sin(y*0.3)) - -# mask out the negative and positive values, respectively -Zpos = np.ma.masked_less(Z, 0) -Zneg = np.ma.masked_greater(Z, 0) - -fig, (ax1, ax2, ax3) = plt.subplots(figsize=(13, 3), ncols=3) - -# plot just the positive data and save the -# color "mappable" object returned by ax1.imshow -pos = ax1.imshow(Zpos, cmap='Blues', interpolation='none') - -# add the colorbar using the figure's method, -# telling which mappable we're talking about and -# which axes object it should be near -fig.colorbar(pos, ax=ax1) - -# repeat everything above for the negative data -neg = ax2.imshow(Zneg, cmap='Reds_r', interpolation='none') -fig.colorbar(neg, ax=ax2) - -# Plot both positive and negative values between +/- 1.2 -pos_neg_clipped = ax3.imshow(Z, cmap='RdBu', vmin=-1.2, vmax=1.2, - interpolation='none') -# Add minorticks on the colorbar to make it easy to read the -# values off the colorbar. -cbar = fig.colorbar(pos_neg_clipped, ax=ax3, extend='both') -cbar.minorticks_on() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -import matplotlib.colorbar -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colorbar.Colorbar.minorticks_on -matplotlib.colorbar.Colorbar.minorticks_off diff --git a/_downloads/b778a5046f21a69f442c6dee1f6c3cbd/custom_scale.py b/_downloads/b778a5046f21a69f442c6dee1f6c3cbd/custom_scale.py deleted file mode 120000 index 00b5dc50add..00000000000 --- a/_downloads/b778a5046f21a69f442c6dee1f6c3cbd/custom_scale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b778a5046f21a69f442c6dee1f6c3cbd/custom_scale.py \ No newline at end of file diff --git a/_downloads/b77d4f6392550d666e7c286d39350508/boxplot.ipynb b/_downloads/b77d4f6392550d666e7c286d39350508/boxplot.ipynb deleted file mode 100644 index 682c8dc9fc2..00000000000 --- a/_downloads/b77d4f6392550d666e7c286d39350508/boxplot.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Artist customization in box plots\n\n\nThis example demonstrates how to use the various kwargs\nto fully customize box plots. The first figure demonstrates\nhow to remove and add individual components (note that the\nmean is the only value not shown by default). The second\nfigure demonstrates how the styles of the artists can\nbe customized. It also demonstrates how to set the limit\nof the whiskers to specific percentiles (lower right axes)\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# fake data\nnp.random.seed(19680801)\ndata = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75)\nlabels = list('ABCD')\nfs = 10 # fontsize" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to toggle the display of different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True)\naxes[0, 0].boxplot(data, labels=labels)\naxes[0, 0].set_title('Default', fontsize=fs)\n\naxes[0, 1].boxplot(data, labels=labels, showmeans=True)\naxes[0, 1].set_title('showmeans=True', fontsize=fs)\n\naxes[0, 2].boxplot(data, labels=labels, showmeans=True, meanline=True)\naxes[0, 2].set_title('showmeans=True,\\nmeanline=True', fontsize=fs)\n\naxes[1, 0].boxplot(data, labels=labels, showbox=False, showcaps=False)\ntufte_title = 'Tufte Style \\n(showbox=False,\\nshowcaps=False)'\naxes[1, 0].set_title(tufte_title, fontsize=fs)\n\naxes[1, 1].boxplot(data, labels=labels, notch=True, bootstrap=10000)\naxes[1, 1].set_title('notch=True,\\nbootstrap=10000', fontsize=fs)\n\naxes[1, 2].boxplot(data, labels=labels, showfliers=False)\naxes[1, 2].set_title('showfliers=False', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to customize the display different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod')\nflierprops = dict(marker='o', markerfacecolor='green', markersize=12,\n linestyle='none')\nmedianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick')\nmeanpointprops = dict(marker='D', markeredgecolor='black',\n markerfacecolor='firebrick')\nmeanlineprops = dict(linestyle='--', linewidth=2.5, color='purple')\n\nfig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True)\naxes[0, 0].boxplot(data, boxprops=boxprops)\naxes[0, 0].set_title('Custom boxprops', fontsize=fs)\n\naxes[0, 1].boxplot(data, flierprops=flierprops, medianprops=medianprops)\naxes[0, 1].set_title('Custom medianprops\\nand flierprops', fontsize=fs)\n\naxes[0, 2].boxplot(data, whis='range')\naxes[0, 2].set_title('whis=\"range\"', fontsize=fs)\n\naxes[1, 0].boxplot(data, meanprops=meanpointprops, meanline=False,\n showmeans=True)\naxes[1, 0].set_title('Custom mean\\nas point', fontsize=fs)\n\naxes[1, 1].boxplot(data, meanprops=meanlineprops, meanline=True,\n showmeans=True)\naxes[1, 1].set_title('Custom mean\\nas line', fontsize=fs)\n\naxes[1, 2].boxplot(data, whis=[15, 85])\naxes[1, 2].set_title('whis=[15, 85]\\n#percentiles', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.suptitle(\"I never said they'd be pretty\")\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b77dafabc7f731ce029ea2289ab1ed48/quiver_demo.py b/_downloads/b77dafabc7f731ce029ea2289ab1ed48/quiver_demo.py deleted file mode 100644 index f06f4e17198..00000000000 --- a/_downloads/b77dafabc7f731ce029ea2289ab1ed48/quiver_demo.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -======================================= -Advanced quiver and quiverkey functions -======================================= - -Demonstrates some more advanced options for `~.axes.Axes.quiver`. For a simple -example refer to :doc:`/gallery/images_contours_and_fields/quiver_simple_demo`. - -Note: The plot autoscaling does not take into account the arrows, so -those on the boundaries may reach out of the picture. This is not an easy -problem to solve in a perfectly general way. The recommended workaround is to -manually set the Axes limits in such a case. -""" - -import matplotlib.pyplot as plt -import numpy as np - -X, Y = np.meshgrid(np.arange(0, 2 * np.pi, .2), np.arange(0, 2 * np.pi, .2)) -U = np.cos(X) -V = np.sin(Y) - -############################################################################### - -fig1, ax1 = plt.subplots() -ax1.set_title('Arrows scale with plot width, not view') -Q = ax1.quiver(X, Y, U, V, units='width') -qk = ax1.quiverkey(Q, 0.9, 0.9, 2, r'$2 \frac{m}{s}$', labelpos='E', - coordinates='figure') - -############################################################################### - -fig2, ax2 = plt.subplots() -ax2.set_title("pivot='mid'; every third arrow; units='inches'") -Q = ax2.quiver(X[::3, ::3], Y[::3, ::3], U[::3, ::3], V[::3, ::3], - pivot='mid', units='inches') -qk = ax2.quiverkey(Q, 0.9, 0.9, 1, r'$1 \frac{m}{s}$', labelpos='E', - coordinates='figure') -ax2.scatter(X[::3, ::3], Y[::3, ::3], color='r', s=5) - -############################################################################### - -# sphinx_gallery_thumbnail_number = 3 - -fig3, ax3 = plt.subplots() -ax3.set_title("pivot='tip'; scales with x view") -M = np.hypot(U, V) -Q = ax3.quiver(X, Y, U, V, M, units='x', pivot='tip', width=0.022, - scale=1 / 0.15) -qk = ax3.quiverkey(Q, 0.9, 0.9, 1, r'$1 \frac{m}{s}$', labelpos='E', - coordinates='figure') -ax3.scatter(X, Y, color='0.5', s=1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.quiver -matplotlib.pyplot.quiver -matplotlib.axes.Axes.quiverkey -matplotlib.pyplot.quiverkey diff --git a/_downloads/b78169eceed1cabe1333d214e0a9773b/bxp.ipynb b/_downloads/b78169eceed1cabe1333d214e0a9773b/bxp.ipynb deleted file mode 120000 index 8707cbb6827..00000000000 --- a/_downloads/b78169eceed1cabe1333d214e0a9773b/bxp.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b78169eceed1cabe1333d214e0a9773b/bxp.ipynb \ No newline at end of file diff --git a/_downloads/b7860ae75c37e2335560ee709d6497d6/radian_demo.py b/_downloads/b7860ae75c37e2335560ee709d6497d6/radian_demo.py deleted file mode 120000 index 7f5a955bba8..00000000000 --- a/_downloads/b7860ae75c37e2335560ee709d6497d6/radian_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b7860ae75c37e2335560ee709d6497d6/radian_demo.py \ No newline at end of file diff --git a/_downloads/b7869e68a3c2b089dc1a56492e41416c/font_indexing.py b/_downloads/b7869e68a3c2b089dc1a56492e41416c/font_indexing.py deleted file mode 120000 index eeeedb17555..00000000000 --- a/_downloads/b7869e68a3c2b089dc1a56492e41416c/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b7869e68a3c2b089dc1a56492e41416c/font_indexing.py \ No newline at end of file diff --git a/_downloads/b792fd30972d8032b00c553dbca50ed2/multiple_yaxis_with_spines.py b/_downloads/b792fd30972d8032b00c553dbca50ed2/multiple_yaxis_with_spines.py deleted file mode 120000 index bed8e425a1f..00000000000 --- a/_downloads/b792fd30972d8032b00c553dbca50ed2/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b792fd30972d8032b00c553dbca50ed2/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/b79b361dc05a6f147c5624f45a88ab70/svg_histogram_sgskip.py b/_downloads/b79b361dc05a6f147c5624f45a88ab70/svg_histogram_sgskip.py deleted file mode 100644 index 3791fe1ae93..00000000000 --- a/_downloads/b79b361dc05a6f147c5624f45a88ab70/svg_histogram_sgskip.py +++ /dev/null @@ -1,160 +0,0 @@ -""" -============= -SVG Histogram -============= - -Demonstrate how to create an interactive histogram, in which bars -are hidden or shown by clicking on legend markers. - -The interactivity is encoded in ecmascript (javascript) and inserted in -the SVG code in a post-processing step. To render the image, open it in -a web browser. SVG is supported in most web browsers used by Linux and -OSX users. Windows IE9 supports SVG, but earlier versions do not. - -Notes ------ -The matplotlib backend lets us assign ids to each object. This is the -mechanism used here to relate matplotlib objects created in python and -the corresponding SVG constructs that are parsed in the second step. -While flexible, ids are cumbersome to use for large collection of -objects. Two mechanisms could be used to simplify things: - -* systematic grouping of objects into SVG tags, -* assigning classes to each SVG object according to its origin. - -For example, instead of modifying the properties of each individual bar, -the bars from the `hist` function could either be grouped in -a PatchCollection, or be assigned a class="hist_##" attribute. - -CSS could also be used more extensively to replace repetitive markup -throughout the generated SVG. - -Author: david.huard@gmail.com - -""" - - -import numpy as np -import matplotlib.pyplot as plt -import xml.etree.ElementTree as ET -from io import BytesIO -import json - - -plt.rcParams['svg.fonttype'] = 'none' - -# Apparently, this `register_namespace` method works only with -# python 2.7 and up and is necessary to avoid garbling the XML name -# space with ns0. -ET.register_namespace("", "http://www.w3.org/2000/svg") - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# --- Create histogram, legend and title --- -plt.figure() -r = np.random.randn(100) -r1 = r + 1 -labels = ['Rabbits', 'Frogs'] -H = plt.hist([r, r1], label=labels) -containers = H[-1] -leg = plt.legend(frameon=False) -plt.title("From a web browser, click on the legend\n" - "marker to toggle the corresponding histogram.") - - -# --- Add ids to the svg objects we'll modify - -hist_patches = {} -for ic, c in enumerate(containers): - hist_patches['hist_%d' % ic] = [] - for il, element in enumerate(c): - element.set_gid('hist_%d_patch_%d' % (ic, il)) - hist_patches['hist_%d' % ic].append('hist_%d_patch_%d' % (ic, il)) - -# Set ids for the legend patches -for i, t in enumerate(leg.get_patches()): - t.set_gid('leg_patch_%d' % i) - -# Set ids for the text patches -for i, t in enumerate(leg.get_texts()): - t.set_gid('leg_text_%d' % i) - -# Save SVG in a fake file object. -f = BytesIO() -plt.savefig(f, format="svg") - -# Create XML tree from the SVG file. -tree, xmlid = ET.XMLID(f.getvalue()) - - -# --- Add interactivity --- - -# Add attributes to the patch objects. -for i, t in enumerate(leg.get_patches()): - el = xmlid['leg_patch_%d' % i] - el.set('cursor', 'pointer') - el.set('onclick', "toggle_hist(this)") - -# Add attributes to the text objects. -for i, t in enumerate(leg.get_texts()): - el = xmlid['leg_text_%d' % i] - el.set('cursor', 'pointer') - el.set('onclick', "toggle_hist(this)") - -# Create script defining the function `toggle_hist`. -# We create a global variable `container` that stores the patches id -# belonging to each histogram. Then a function "toggle_element" sets the -# visibility attribute of all patches of each histogram and the opacity -# of the marker itself. - -script = """ - -""" % json.dumps(hist_patches) - -# Add a transition effect -css = tree.getchildren()[0][0] -css.text = css.text + "g {-webkit-transition:opacity 0.4s ease-out;" + \ - "-moz-transition:opacity 0.4s ease-out;}" - -# Insert the script and save to file. -tree.insert(0, ET.XML(script)) - -ET.ElementTree(tree).write("svg_histogram.svg") diff --git a/_downloads/b7a159cf1580aadaf28858035758b0b4/demo_axes_hbox_divider.py b/_downloads/b7a159cf1580aadaf28858035758b0b4/demo_axes_hbox_divider.py deleted file mode 120000 index 0a29ae62c39..00000000000 --- a/_downloads/b7a159cf1580aadaf28858035758b0b4/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b7a159cf1580aadaf28858035758b0b4/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/_downloads/b7afb4c938b1a5c8e7de45c305f853be/tricontour_smooth_delaunay.ipynb b/_downloads/b7afb4c938b1a5c8e7de45c305f853be/tricontour_smooth_delaunay.ipynb deleted file mode 100644 index 5d48eed6d4f..00000000000 --- a/_downloads/b7afb4c938b1a5c8e7de45c305f853be/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tricontour Smooth Delaunay\n\n\nDemonstrates high-resolution tricontouring of a random set of points;\na `matplotlib.tri.TriAnalyzer` is used to improve the plot quality.\n\nThe initial data points and triangular grid for this demo are:\n\n- a set of random points is instantiated, inside [-1, 1] x [-1, 1] square\n- A Delaunay triangulation of these points is then computed, of which a\n random subset of triangles is masked out by the user (based on\n *init_mask_frac* parameter). This simulates invalidated data.\n\nThe proposed generic procedure to obtain a high resolution contouring of such\na data set is the following:\n\n1. Compute an extended mask with a `matplotlib.tri.TriAnalyzer`, which will\n exclude badly shaped (flat) triangles from the border of the\n triangulation. Apply the mask to the triangulation (using set_mask).\n2. Refine and interpolate the data using a\n `matplotlib.tri.UniformTriRefiner`.\n3. Plot the refined data with `~.axes.Axes.tricontour`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.tri import Triangulation, TriAnalyzer, UniformTriRefiner\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport numpy as np\n\n\n#-----------------------------------------------------------------------------\n# Analytical test function\n#-----------------------------------------------------------------------------\ndef experiment_res(x, y):\n \"\"\"An analytic function representing experiment results.\"\"\"\n x = 2 * x\n r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2)\n theta1 = np.arctan2(0.5 - x, 0.5 - y)\n r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2)\n theta2 = np.arctan2(-x - 0.2, -y - 0.2)\n z = (4 * (np.exp((r1/10)**2) - 1) * 30 * np.cos(3 * theta1) +\n (np.exp((r2/10)**2) - 1) * 30 * np.cos(5 * theta2) +\n 2 * (x**2 + y**2))\n return (np.max(z) - z) / (np.max(z) - np.min(z))\n\n#-----------------------------------------------------------------------------\n# Generating the initial data test points and triangulation for the demo\n#-----------------------------------------------------------------------------\n# User parameters for data test points\nn_test = 200 # Number of test data points, tested from 3 to 5000 for subdiv=3\n\nsubdiv = 3 # Number of recursive subdivisions of the initial mesh for smooth\n # plots. Values >3 might result in a very high number of triangles\n # for the refine mesh: new triangles numbering = (4**subdiv)*ntri\n\ninit_mask_frac = 0.0 # Float > 0. adjusting the proportion of\n # (invalid) initial triangles which will be masked\n # out. Enter 0 for no mask.\n\nmin_circle_ratio = .01 # Minimum circle ratio - border triangles with circle\n # ratio below this will be masked if they touch a\n # border. Suggested value 0.01; use -1 to keep\n # all triangles.\n\n# Random points\nrandom_gen = np.random.RandomState(seed=19680801)\nx_test = random_gen.uniform(-1., 1., size=n_test)\ny_test = random_gen.uniform(-1., 1., size=n_test)\nz_test = experiment_res(x_test, y_test)\n\n# meshing with Delaunay triangulation\ntri = Triangulation(x_test, y_test)\nntri = tri.triangles.shape[0]\n\n# Some invalid data are masked out\nmask_init = np.zeros(ntri, dtype=bool)\nmasked_tri = random_gen.randint(0, ntri, int(ntri * init_mask_frac))\nmask_init[masked_tri] = True\ntri.set_mask(mask_init)\n\n\n#-----------------------------------------------------------------------------\n# Improving the triangulation before high-res plots: removing flat triangles\n#-----------------------------------------------------------------------------\n# masking badly shaped triangles at the border of the triangular mesh.\nmask = TriAnalyzer(tri).get_flat_tri_mask(min_circle_ratio)\ntri.set_mask(mask)\n\n# refining the data\nrefiner = UniformTriRefiner(tri)\ntri_refi, z_test_refi = refiner.refine_field(z_test, subdiv=subdiv)\n\n# analytical 'results' for comparison\nz_expected = experiment_res(tri_refi.x, tri_refi.y)\n\n# for the demo: loading the 'flat' triangles for plot\nflat_tri = Triangulation(x_test, y_test)\nflat_tri.set_mask(~mask)\n\n\n#-----------------------------------------------------------------------------\n# Now the plots\n#-----------------------------------------------------------------------------\n# User options for plots\nplot_tri = True # plot of base triangulation\nplot_masked_tri = True # plot of excessively flat excluded triangles\nplot_refi_tri = False # plot of refined triangulation\nplot_expected = False # plot of analytical function values for comparison\n\n\n# Graphical options for tricontouring\nlevels = np.arange(0., 1., 0.025)\ncmap = cm.get_cmap(name='Blues', lut=None)\n\nfig, ax = plt.subplots()\nax.set_aspect('equal')\nax.set_title(\"Filtering a Delaunay mesh\\n\" +\n \"(application to high-resolution tricontouring)\")\n\n# 1) plot of the refined (computed) data contours:\nax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap,\n linewidths=[2.0, 0.5, 1.0, 0.5])\n# 2) plot of the expected (analytical) data contours (dashed):\nif plot_expected:\n ax.tricontour(tri_refi, z_expected, levels=levels, cmap=cmap,\n linestyles='--')\n# 3) plot of the fine mesh on which interpolation was done:\nif plot_refi_tri:\n ax.triplot(tri_refi, color='0.97')\n# 4) plot of the initial 'coarse' mesh:\nif plot_tri:\n ax.triplot(tri, color='0.7')\n# 4) plot of the unvalidated triangles from naive Delaunay Triangulation:\nif plot_masked_tri:\n ax.triplot(flat_tri, color='red')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.tri\nmatplotlib.tri.Triangulation\nmatplotlib.tri.TriAnalyzer\nmatplotlib.tri.UniformTriRefiner" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b7b56ff750536a7f643cd3b11b92cbd1/placing_text_boxes.py b/_downloads/b7b56ff750536a7f643cd3b11b92cbd1/placing_text_boxes.py deleted file mode 100644 index ef64337f007..00000000000 --- a/_downloads/b7b56ff750536a7f643cd3b11b92cbd1/placing_text_boxes.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -Placing text boxes -================== - -When decorating axes with text boxes, two useful tricks are to place -the text in axes coordinates (see :doc:`/tutorials/advanced/transforms_tutorial`), so the -text doesn't move around with changes in x or y limits. You can also -use the ``bbox`` property of text to surround the text with a -:class:`~matplotlib.patches.Patch` instance -- the ``bbox`` keyword -argument takes a dictionary with keys that are Patch properties. -""" - -import numpy as np -import matplotlib.pyplot as plt - -np.random.seed(19680801) - -fig, ax = plt.subplots() -x = 30*np.random.randn(10000) -mu = x.mean() -median = np.median(x) -sigma = x.std() -textstr = '\n'.join(( - r'$\mu=%.2f$' % (mu, ), - r'$\mathrm{median}=%.2f$' % (median, ), - r'$\sigma=%.2f$' % (sigma, ))) - -ax.hist(x, 50) -# these are matplotlib.patch.Patch properties -props = dict(boxstyle='round', facecolor='wheat', alpha=0.5) - -# place a text box in upper left in axes coords -ax.text(0.05, 0.95, textstr, transform=ax.transAxes, fontsize=14, - verticalalignment='top', bbox=props) - -plt.show() diff --git a/_downloads/b7bd134e80a925f25f266863812080c6/tick-formatters.py b/_downloads/b7bd134e80a925f25f266863812080c6/tick-formatters.py deleted file mode 120000 index 7a7456d89b4..00000000000 --- a/_downloads/b7bd134e80a925f25f266863812080c6/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b7bd134e80a925f25f266863812080c6/tick-formatters.py \ No newline at end of file diff --git a/_downloads/b7be6dcbb98f9ca2a499a033af3d8036/pylab_with_gtk_sgskip.py b/_downloads/b7be6dcbb98f9ca2a499a033af3d8036/pylab_with_gtk_sgskip.py deleted file mode 120000 index eccf2650ae3..00000000000 --- a/_downloads/b7be6dcbb98f9ca2a499a033af3d8036/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b7be6dcbb98f9ca2a499a033af3d8036/pylab_with_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/b7c3c0d6d54fc10eabcc05de8c43ea3c/fonts_demo.ipynb b/_downloads/b7c3c0d6d54fc10eabcc05de8c43ea3c/fonts_demo.ipynb deleted file mode 100644 index 84dfc0af483..00000000000 --- a/_downloads/b7c3c0d6d54fc10eabcc05de8c43ea3c/fonts_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================================\nFonts demo (object-oriented style)\n==================================\n\nSet font properties using setters.\n\nSee :doc:`fonts_demo_kw` to achieve the same effect using kwargs.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.font_manager import FontProperties\nimport matplotlib.pyplot as plt\n\nfont0 = FontProperties()\nalignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'}\n# Show family options\n\nfamilies = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace']\n\nfont1 = font0.copy()\nfont1.set_size('large')\n\nt = plt.figtext(0.1, 0.9, 'family', fontproperties=font1, **alignment)\n\nyp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2]\n\nfor k, family in enumerate(families):\n font = font0.copy()\n font.set_family(family)\n t = plt.figtext(0.1, yp[k], family, fontproperties=font, **alignment)\n\n# Show style options\n\nstyles = ['normal', 'italic', 'oblique']\n\nt = plt.figtext(0.3, 0.9, 'style', fontproperties=font1, **alignment)\n\nfor k, style in enumerate(styles):\n font = font0.copy()\n font.set_family('sans-serif')\n font.set_style(style)\n t = plt.figtext(0.3, yp[k], style, fontproperties=font, **alignment)\n\n# Show variant options\n\nvariants = ['normal', 'small-caps']\n\nt = plt.figtext(0.5, 0.9, 'variant', fontproperties=font1, **alignment)\n\nfor k, variant in enumerate(variants):\n font = font0.copy()\n font.set_family('serif')\n font.set_variant(variant)\n t = plt.figtext(0.5, yp[k], variant, fontproperties=font, **alignment)\n\n# Show weight options\n\nweights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black']\n\nt = plt.figtext(0.7, 0.9, 'weight', fontproperties=font1, **alignment)\n\nfor k, weight in enumerate(weights):\n font = font0.copy()\n font.set_weight(weight)\n t = plt.figtext(0.7, yp[k], weight, fontproperties=font, **alignment)\n\n# Show size options\n\nsizes = ['xx-small', 'x-small', 'small', 'medium', 'large',\n 'x-large', 'xx-large']\n\nt = plt.figtext(0.9, 0.9, 'size', fontproperties=font1, **alignment)\n\nfor k, size in enumerate(sizes):\n font = font0.copy()\n font.set_size(size)\n t = plt.figtext(0.9, yp[k], size, fontproperties=font, **alignment)\n\n# Show bold italic\n\nfont = font0.copy()\nfont.set_style('italic')\nfont.set_weight('bold')\nfont.set_size('x-small')\nt = plt.figtext(0.3, 0.1, 'bold italic', fontproperties=font, **alignment)\n\nfont = font0.copy()\nfont.set_style('italic')\nfont.set_weight('bold')\nfont.set_size('medium')\nt = plt.figtext(0.3, 0.2, 'bold italic', fontproperties=font, **alignment)\n\nfont = font0.copy()\nfont.set_style('italic')\nfont.set_weight('bold')\nfont.set_size('x-large')\nt = plt.figtext(-0.4, 0.3, 'bold italic', fontproperties=font, **alignment)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b7c75c6da835c4564c72015afb83cc5c/hyperlinks_sgskip.ipynb b/_downloads/b7c75c6da835c4564c72015afb83cc5c/hyperlinks_sgskip.ipynb deleted file mode 120000 index 8d77162df19..00000000000 --- a/_downloads/b7c75c6da835c4564c72015afb83cc5c/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b7c75c6da835c4564c72015afb83cc5c/hyperlinks_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/b7c8bc258dfac45e0732434bd02d97b9/text_fontdict.py b/_downloads/b7c8bc258dfac45e0732434bd02d97b9/text_fontdict.py deleted file mode 120000 index 1c76fd9bfc9..00000000000 --- a/_downloads/b7c8bc258dfac45e0732434bd02d97b9/text_fontdict.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b7c8bc258dfac45e0732434bd02d97b9/text_fontdict.py \ No newline at end of file diff --git a/_downloads/b7ca1e07fb637087a10f52fccb669392/cursor.py b/_downloads/b7ca1e07fb637087a10f52fccb669392/cursor.py deleted file mode 100644 index 6fa20ca2117..00000000000 --- a/_downloads/b7ca1e07fb637087a10f52fccb669392/cursor.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -====== -Cursor -====== - -""" -from matplotlib.widgets import Cursor -import numpy as np -import matplotlib.pyplot as plt - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig = plt.figure(figsize=(8, 6)) -ax = fig.add_subplot(111, facecolor='#FFFFCC') - -x, y = 4*(np.random.rand(2, 100) - .5) -ax.plot(x, y, 'o') -ax.set_xlim(-2, 2) -ax.set_ylim(-2, 2) - -# Set useblit=True on most backends for enhanced performance. -cursor = Cursor(ax, useblit=True, color='red', linewidth=2) - -plt.show() diff --git a/_downloads/b7caae05b31dcfac6c2d8a9ada169c0f/axis_equal_demo.ipynb b/_downloads/b7caae05b31dcfac6c2d8a9ada169c0f/axis_equal_demo.ipynb deleted file mode 120000 index b78ecf705fc..00000000000 --- a/_downloads/b7caae05b31dcfac6c2d8a9ada169c0f/axis_equal_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b7caae05b31dcfac6c2d8a9ada169c0f/axis_equal_demo.ipynb \ No newline at end of file diff --git a/_downloads/b7d7fa382a19a2e1aa0311301df5c300/marker_reference.ipynb b/_downloads/b7d7fa382a19a2e1aa0311301df5c300/marker_reference.ipynb deleted file mode 100644 index f4dca8894a8..00000000000 --- a/_downloads/b7d7fa382a19a2e1aa0311301df5c300/marker_reference.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Marker Reference\n\n\nReference for filled-, unfilled- and custom marker types with Matplotlib.\n\nFor a list of all markers see the `matplotlib.markers` documentation. Also\nrefer to the :doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference`\nand :doc:`/gallery/shapes_and_collections/marker_path` examples.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.lines import Line2D\n\n\npoints = np.ones(3) # Draw 3 points for each line\ntext_style = dict(horizontalalignment='right', verticalalignment='center',\n fontsize=12, fontdict={'family': 'monospace'})\nmarker_style = dict(linestyle=':', color='0.8', markersize=10,\n mfc=\"C0\", mec=\"C0\")\n\n\ndef format_axes(ax):\n ax.margins(0.2)\n ax.set_axis_off()\n ax.invert_yaxis()\n\n\ndef split_list(a_list):\n i_half = len(a_list) // 2\n return (a_list[:i_half], a_list[i_half:])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Filled and unfilled-marker types\n================================\n\nPlot all un-filled markers\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(ncols=2)\nfig.suptitle('un-filled markers', fontsize=14)\n\n# Filter out filled markers and marker settings that do nothing.\nunfilled_markers = [m for m, func in Line2D.markers.items()\n if func != 'nothing' and m not in Line2D.filled_markers]\n\nfor ax, markers in zip(axes, split_list(unfilled_markers)):\n for y, marker in enumerate(markers):\n ax.text(-0.5, y, repr(marker), **text_style)\n ax.plot(y * points, marker=marker, **marker_style)\n format_axes(ax)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot all filled markers.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(ncols=2)\nfor ax, markers in zip(axes, split_list(Line2D.filled_markers)):\n for y, marker in enumerate(markers):\n ax.text(-0.5, y, repr(marker), **text_style)\n ax.plot(y * points, marker=marker, **marker_style)\n format_axes(ax)\nfig.suptitle('filled markers', fontsize=14)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Custom Markers with MathText\n============================\n\nUse :doc:`MathText `, to use custom marker symbols,\nlike e.g. ``\"$\\u266B$\"``. For an overview over the STIX font symbols refer\nto the `STIX font table `_.\nAlso see the :doc:`/gallery/text_labels_and_annotations/stix_fonts_demo`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nfig.subplots_adjust(left=0.4)\n\nmarker_style.update(mec=\"None\", markersize=15)\nmarkers = [\"$1$\", r\"$\\frac{1}{2}$\", \"$f$\", \"$\\u266B$\", r\"$\\mathcal{A}$\"]\n\n\nfor y, marker in enumerate(markers):\n # Escape dollars so that the text is written \"as is\", not as mathtext.\n ax.text(-0.5, y, repr(marker).replace(\"$\", r\"\\$\"), **text_style)\n ax.plot(y * points, marker=marker, **marker_style)\nformat_axes(ax)\nfig.suptitle('mathtext markers', fontsize=14)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b7d821bca98574f989464c7dd10bdeb2/gridspec_nested.py b/_downloads/b7d821bca98574f989464c7dd10bdeb2/gridspec_nested.py deleted file mode 120000 index 9316cbbbeba..00000000000 --- a/_downloads/b7d821bca98574f989464c7dd10bdeb2/gridspec_nested.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b7d821bca98574f989464c7dd10bdeb2/gridspec_nested.py \ No newline at end of file diff --git a/_downloads/b7e01667ea42889eb2be450f08140f7e/pyplot_two_subplots.py b/_downloads/b7e01667ea42889eb2be450f08140f7e/pyplot_two_subplots.py deleted file mode 120000 index 1a00a4d6724..00000000000 --- a/_downloads/b7e01667ea42889eb2be450f08140f7e/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b7e01667ea42889eb2be450f08140f7e/pyplot_two_subplots.py \ No newline at end of file diff --git a/_downloads/b7ebbe8496a423ae11fd0ca4bce6cbac/bayes_update.py b/_downloads/b7ebbe8496a423ae11fd0ca4bce6cbac/bayes_update.py deleted file mode 120000 index 163b610ce09..00000000000 --- a/_downloads/b7ebbe8496a423ae11fd0ca4bce6cbac/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b7ebbe8496a423ae11fd0ca4bce6cbac/bayes_update.py \ No newline at end of file diff --git a/_downloads/b7f9610b6147f5b414e1a3ed450ce7c6/wxcursor_demo_sgskip.py b/_downloads/b7f9610b6147f5b414e1a3ed450ce7c6/wxcursor_demo_sgskip.py deleted file mode 120000 index d1f76eae3a9..00000000000 --- a/_downloads/b7f9610b6147f5b414e1a3ed450ce7c6/wxcursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b7f9610b6147f5b414e1a3ed450ce7c6/wxcursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/b800e01bccc61aca79def2e360eef4dc/colors.ipynb b/_downloads/b800e01bccc61aca79def2e360eef4dc/colors.ipynb deleted file mode 120000 index c48ffb907d3..00000000000 --- a/_downloads/b800e01bccc61aca79def2e360eef4dc/colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b800e01bccc61aca79def2e360eef4dc/colors.ipynb \ No newline at end of file diff --git a/_downloads/b81419c2fceb32a9830b886049a585b5/histogram_multihist.ipynb b/_downloads/b81419c2fceb32a9830b886049a585b5/histogram_multihist.ipynb deleted file mode 120000 index 0261efa7b20..00000000000 --- a/_downloads/b81419c2fceb32a9830b886049a585b5/histogram_multihist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b81419c2fceb32a9830b886049a585b5/histogram_multihist.ipynb \ No newline at end of file diff --git a/_downloads/b819697fe2410d2f48bc1b0adc6f4401/arctest.py b/_downloads/b819697fe2410d2f48bc1b0adc6f4401/arctest.py deleted file mode 120000 index 5d592aca9e0..00000000000 --- a/_downloads/b819697fe2410d2f48bc1b0adc6f4401/arctest.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b819697fe2410d2f48bc1b0adc6f4401/arctest.py \ No newline at end of file diff --git a/_downloads/b83149e07da485669714d334672c0eae/annotate_simple_coord03.ipynb b/_downloads/b83149e07da485669714d334672c0eae/annotate_simple_coord03.ipynb deleted file mode 120000 index 72e050afc81..00000000000 --- a/_downloads/b83149e07da485669714d334672c0eae/annotate_simple_coord03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b83149e07da485669714d334672c0eae/annotate_simple_coord03.ipynb \ No newline at end of file diff --git a/_downloads/b8324bfdc05d33b2194764b0fce4411a/contour_frontpage.py b/_downloads/b8324bfdc05d33b2194764b0fce4411a/contour_frontpage.py deleted file mode 120000 index 59370741bd5..00000000000 --- a/_downloads/b8324bfdc05d33b2194764b0fce4411a/contour_frontpage.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/b8324bfdc05d33b2194764b0fce4411a/contour_frontpage.py \ No newline at end of file diff --git a/_downloads/b83741751d236099f06494fa8cc53f34/simple_axisline.py b/_downloads/b83741751d236099f06494fa8cc53f34/simple_axisline.py deleted file mode 120000 index 3558e435f4f..00000000000 --- a/_downloads/b83741751d236099f06494fa8cc53f34/simple_axisline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b83741751d236099f06494fa8cc53f34/simple_axisline.py \ No newline at end of file diff --git a/_downloads/b84518ace4fa67c0459b0cc43f2675ea/viewlims.py b/_downloads/b84518ace4fa67c0459b0cc43f2675ea/viewlims.py deleted file mode 120000 index c29cb414a68..00000000000 --- a/_downloads/b84518ace4fa67c0459b0cc43f2675ea/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b84518ace4fa67c0459b0cc43f2675ea/viewlims.py \ No newline at end of file diff --git a/_downloads/b84bfa81320c2aee3c0080cdfc80dcf9/named_colors.py b/_downloads/b84bfa81320c2aee3c0080cdfc80dcf9/named_colors.py deleted file mode 120000 index d42159b10b9..00000000000 --- a/_downloads/b84bfa81320c2aee3c0080cdfc80dcf9/named_colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b84bfa81320c2aee3c0080cdfc80dcf9/named_colors.py \ No newline at end of file diff --git a/_downloads/b84f9db24232bbec47b848a682368e8e/ggplot.ipynb b/_downloads/b84f9db24232bbec47b848a682368e8e/ggplot.ipynb deleted file mode 120000 index f37c152d3a9..00000000000 --- a/_downloads/b84f9db24232bbec47b848a682368e8e/ggplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b84f9db24232bbec47b848a682368e8e/ggplot.ipynb \ No newline at end of file diff --git a/_downloads/b8596090abeb81780756f82c9ac29bd5/geo_demo.ipynb b/_downloads/b8596090abeb81780756f82c9ac29bd5/geo_demo.ipynb deleted file mode 100644 index 7d81f57f5c6..00000000000 --- a/_downloads/b8596090abeb81780756f82c9ac29bd5/geo_demo.ipynb +++ /dev/null @@ -1,98 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Geographic Projections\n\n\nThis shows 4 possible projections using subplot. Matplotlib also\nsupports `Basemaps Toolkit `_ and\n`Cartopy `_ for geographic projections.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"aitoff\")\nplt.title(\"Aitoff\")\nplt.grid(True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"hammer\")\nplt.title(\"Hammer\")\nplt.grid(True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"lambert\")\nplt.title(\"Lambert\")\nplt.grid(True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(111, projection=\"mollweide\")\nplt.title(\"Mollweide\")\nplt.grid(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b85d4fa8694380c80801ff6ca6c222dd/svg_filter_pie.ipynb b/_downloads/b85d4fa8694380c80801ff6ca6c222dd/svg_filter_pie.ipynb deleted file mode 100644 index 7d45acdaed1..00000000000 --- a/_downloads/b85d4fa8694380c80801ff6ca6c222dd/svg_filter_pie.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Filter Pie\n\n\nDemonstrate SVG filtering effects which might be used with mpl.\nThe pie chart drawing code is borrowed from pie_demo.py\n\nNote that the filtering effects are only effective if your svg renderer\nsupport it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import Shadow\n\n# make a square figure and axes\nfig = plt.figure(figsize=(6, 6))\nax = fig.add_axes([0.1, 0.1, 0.8, 0.8])\n\nlabels = 'Frogs', 'Hogs', 'Dogs', 'Logs'\nfracs = [15, 30, 45, 10]\n\nexplode = (0, 0.05, 0, 0)\n\n# We want to draw the shadow for each pie but we will not use \"shadow\"\n# option as it does'n save the references to the shadow patches.\npies = ax.pie(fracs, explode=explode, labels=labels, autopct='%1.1f%%')\n\nfor w in pies[0]:\n # set the id with the label.\n w.set_gid(w.get_label())\n\n # we don't want to draw the edge of the pie\n w.set_edgecolor(\"none\")\n\nfor w in pies[0]:\n # create shadow patch\n s = Shadow(w, -0.01, -0.01)\n s.set_gid(w.get_gid() + \"_shadow\")\n s.set_zorder(w.get_zorder() - 0.1)\n ax.add_patch(s)\n\n\n# save\nfrom io import BytesIO\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\nimport xml.etree.cElementTree as ET\n\n\n# filter definition for shadow using a gaussian blur\n# and lightening effect.\n# The lightening filter is copied from http://www.w3.org/TR/SVG/filters.html\n\n# I tested it with Inkscape and Firefox3. \"Gaussian blur\" is supported\n# in both, but the lightening effect only in the Inkscape. Also note\n# that, Inkscape's exporting also may not support it.\n\nfilter_def = \"\"\"\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\"\"\"\n\n\ntree, xmlid = ET.XMLID(f.getvalue())\n\n# insert the filter definition in the svg dom tree.\ntree.insert(0, ET.XML(filter_def))\n\nfor i, pie_name in enumerate(labels):\n pie = xmlid[pie_name]\n pie.set(\"filter\", 'url(#MyFilter)')\n\n shadow = xmlid[pie_name + \"_shadow\"]\n shadow.set(\"filter\", 'url(#dropshadow)')\n\nfn = \"svg_filter_pie.svg\"\nprint(\"Saving '%s'\" % fn)\nET.ElementTree(tree).write(fn)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b86219b41031bb22f006de3b11b355c4/errorbar_features.ipynb b/_downloads/b86219b41031bb22f006de3b11b355c4/errorbar_features.ipynb deleted file mode 120000 index e58ba9b73f9..00000000000 --- a/_downloads/b86219b41031bb22f006de3b11b355c4/errorbar_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b86219b41031bb22f006de3b11b355c4/errorbar_features.ipynb \ No newline at end of file diff --git a/_downloads/b86575d0bfe4c3798b5d7e0d30317519/plot_solarizedlight2.ipynb b/_downloads/b86575d0bfe4c3798b5d7e0d30317519/plot_solarizedlight2.ipynb deleted file mode 120000 index 7741c7eb169..00000000000 --- a/_downloads/b86575d0bfe4c3798b5d7e0d30317519/plot_solarizedlight2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b86575d0bfe4c3798b5d7e0d30317519/plot_solarizedlight2.ipynb \ No newline at end of file diff --git a/_downloads/b87999edca21d499cf8f8c3028687d99/embedding_in_gtk3_sgskip.ipynb b/_downloads/b87999edca21d499cf8f8c3028687d99/embedding_in_gtk3_sgskip.ipynb deleted file mode 100644 index de84e969dce..00000000000 --- a/_downloads/b87999edca21d499cf8f8c3028687d99/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in GTK3\n\n\nDemonstrate adding a FigureCanvasGTK3Agg widget to a Gtk.ScrolledWindow using\nGTK3 accessed via pygobject.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\nfrom matplotlib.backends.backend_gtk3agg import (\n FigureCanvasGTK3Agg as FigureCanvas)\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nwin = Gtk.Window()\nwin.connect(\"delete-event\", Gtk.main_quit)\nwin.set_default_size(400, 300)\nwin.set_title(\"Embedding in GTK\")\n\nf = Figure(figsize=(5, 4), dpi=100)\na = f.add_subplot(111)\nt = np.arange(0.0, 3.0, 0.01)\ns = np.sin(2*np.pi*t)\na.plot(t, s)\n\nsw = Gtk.ScrolledWindow()\nwin.add(sw)\n# A scrolled window border goes outside the scrollbars and viewport\nsw.set_border_width(10)\n\ncanvas = FigureCanvas(f) # a Gtk.DrawingArea\ncanvas.set_size_request(800, 600)\nsw.add_with_viewport(canvas)\n\nwin.show_all()\nGtk.main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b8876d51318555f0762d38c4c8de8d56/colormapnorms.py b/_downloads/b8876d51318555f0762d38c4c8de8d56/colormapnorms.py deleted file mode 120000 index 02339728f32..00000000000 --- a/_downloads/b8876d51318555f0762d38c4c8de8d56/colormapnorms.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b8876d51318555f0762d38c4c8de8d56/colormapnorms.py \ No newline at end of file diff --git a/_downloads/b8961e967081a7aac2b727a99f860c9d/customize_rc.py b/_downloads/b8961e967081a7aac2b727a99f860c9d/customize_rc.py deleted file mode 120000 index dc1b8ce9245..00000000000 --- a/_downloads/b8961e967081a7aac2b727a99f860c9d/customize_rc.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b8961e967081a7aac2b727a99f860c9d/customize_rc.py \ No newline at end of file diff --git a/_downloads/b898547613a2bf0a5cb60314cc4fd8bb/pyplot_formatstr.py b/_downloads/b898547613a2bf0a5cb60314cc4fd8bb/pyplot_formatstr.py deleted file mode 100644 index 3e5b1806b5c..00000000000 --- a/_downloads/b898547613a2bf0a5cb60314cc4fd8bb/pyplot_formatstr.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -==================== -plot() format string -==================== - -Use a format string (here, 'ro') to set the color and markers of a -`~matplotlib.axes.Axes.plot`. -""" - -import matplotlib.pyplot as plt -plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.plot -matplotlib.axes.Axes.plot diff --git a/_downloads/b89cc4c09ddadd252aaac9a8a5e042f6/svg_filter_line.py b/_downloads/b89cc4c09ddadd252aaac9a8a5e042f6/svg_filter_line.py deleted file mode 100644 index dc098f5276f..00000000000 --- a/_downloads/b89cc4c09ddadd252aaac9a8a5e042f6/svg_filter_line.py +++ /dev/null @@ -1,86 +0,0 @@ -""" -=============== -SVG Filter Line -=============== - -Demonstrate SVG filtering effects which might be used with mpl. - -Note that the filtering effects are only effective if your svg renderer -support it. -""" - - -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms - -fig1 = plt.figure() -ax = fig1.add_axes([0.1, 0.1, 0.8, 0.8]) - -# draw lines -l1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], "bo-", - mec="b", lw=5, ms=10, label="Line 1") -l2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], "rs-", - mec="r", lw=5, ms=10, color="r", label="Line 2") - - -for l in [l1, l2]: - - # draw shadows with same lines with slight offset and gray colors. - - xx = l.get_xdata() - yy = l.get_ydata() - shadow, = ax.plot(xx, yy) - shadow.update_from(l) - - # adjust color - shadow.set_color("0.2") - # adjust zorder of the shadow lines so that it is drawn below the - # original lines - shadow.set_zorder(l.get_zorder() - 0.5) - - # offset transform - ot = mtransforms.offset_copy(l.get_transform(), fig1, - x=4.0, y=-6.0, units='points') - - shadow.set_transform(ot) - - # set the id for a later use - shadow.set_gid(l.get_label() + "_shadow") - - -ax.set_xlim(0., 1.) -ax.set_ylim(0., 1.) - -# save the figure as a bytes string in the svg format. -from io import BytesIO -f = BytesIO() -plt.savefig(f, format="svg") - - -import xml.etree.cElementTree as ET - -# filter definition for a gaussian blur -filter_def = """ - - - - - -""" - - -# read in the saved svg -tree, xmlid = ET.XMLID(f.getvalue()) - -# insert the filter definition in the svg dom tree. -tree.insert(0, ET.XML(filter_def)) - -for l in [l1, l2]: - # pick up the svg element with given id - shadow = xmlid[l.get_label() + "_shadow"] - # apply shadow filter - shadow.set("filter", 'url(#dropshadow)') - -fn = "svg_filter_line.svg" -print("Saving '%s'" % fn) -ET.ElementTree(tree).write(fn) diff --git a/_downloads/b8acbe60dd277c60c7a6c4b6b6ef19c7/customize_rc.ipynb b/_downloads/b8acbe60dd277c60c7a6c4b6b6ef19c7/customize_rc.ipynb deleted file mode 100644 index 8854c3d35c0..00000000000 --- a/_downloads/b8acbe60dd277c60c7a6c4b6b6ef19c7/customize_rc.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customize Rc\n\n\nI'm not trying to make a good looking figure here, but just to show\nsome examples of customizing rc params on the fly\n\nIf you like to work interactively, and need to create different sets\nof defaults for figures (e.g., one set of defaults for publication, one\nset for interactive exploration), you may want to define some\nfunctions in a custom module that set the defaults, e.g.,::\n\n def set_pub():\n rc('font', weight='bold') # bold fonts are easier to see\n rc('tick', labelsize=15) # tick labels bigger\n rc('lines', lw=1, color='k') # thicker black lines\n rc('grid', c='0.5', ls='-', lw=0.5) # solid gray grid lines\n rc('savefig', dpi=300) # higher res outputs\n\nThen as you are working interactively, you just need to do::\n\n >>> set_pub()\n >>> subplot(111)\n >>> plot([1,2,3])\n >>> savefig('myfig')\n >>> rcdefaults() # restore the defaults\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nplt.subplot(311)\nplt.plot([1, 2, 3])\n\n# the axes attributes need to be set before the call to subplot\nplt.rc('font', weight='bold')\nplt.rc('xtick.major', size=5, pad=7)\nplt.rc('xtick', labelsize=15)\n\n# using aliases for color, linestyle and linewidth; gray, solid, thick\nplt.rc('grid', c='0.5', ls='-', lw=5)\nplt.rc('lines', lw=2, color='g')\nplt.subplot(312)\n\nplt.plot([1, 2, 3])\nplt.grid(True)\n\nplt.rcdefaults()\nplt.subplot(313)\nplt.plot([1, 2, 3])\nplt.grid(True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b8b507c5e7e86e27b185a966e9e7c470/simple_anchored_artists.py b/_downloads/b8b507c5e7e86e27b185a966e9e7c470/simple_anchored_artists.py deleted file mode 120000 index 316aff93317..00000000000 --- a/_downloads/b8b507c5e7e86e27b185a966e9e7c470/simple_anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b8b507c5e7e86e27b185a966e9e7c470/simple_anchored_artists.py \ No newline at end of file diff --git a/_downloads/b8b618d6352f56589b24ff334fd32442/color_by_yvalue.ipynb b/_downloads/b8b618d6352f56589b24ff334fd32442/color_by_yvalue.ipynb deleted file mode 120000 index 8e838f526a1..00000000000 --- a/_downloads/b8b618d6352f56589b24ff334fd32442/color_by_yvalue.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b8b618d6352f56589b24ff334fd32442/color_by_yvalue.ipynb \ No newline at end of file diff --git a/_downloads/b8be48493e5f9da6b2f129468a07b342/demo_axes_hbox_divider.ipynb b/_downloads/b8be48493e5f9da6b2f129468a07b342/demo_axes_hbox_divider.ipynb deleted file mode 120000 index b600e04be5e..00000000000 --- a/_downloads/b8be48493e5f9da6b2f129468a07b342/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b8be48493e5f9da6b2f129468a07b342/demo_axes_hbox_divider.ipynb \ No newline at end of file diff --git a/_downloads/b8c57e62999229824f455e779d286772/spectrum_demo.py b/_downloads/b8c57e62999229824f455e779d286772/spectrum_demo.py deleted file mode 120000 index 6e7d3ccf7b1..00000000000 --- a/_downloads/b8c57e62999229824f455e779d286772/spectrum_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b8c57e62999229824f455e779d286772/spectrum_demo.py \ No newline at end of file diff --git a/_downloads/b8c7557537e617b4303c6aa23d331a2a/embedding_in_wx2_sgskip.py b/_downloads/b8c7557537e617b4303c6aa23d331a2a/embedding_in_wx2_sgskip.py deleted file mode 120000 index 95c5ade9885..00000000000 --- a/_downloads/b8c7557537e617b4303c6aa23d331a2a/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b8c7557537e617b4303c6aa23d331a2a/embedding_in_wx2_sgskip.py \ No newline at end of file diff --git a/_downloads/b8caa87891aeeab8d8fc99ee5b734ca6/colormap_normalizations.py b/_downloads/b8caa87891aeeab8d8fc99ee5b734ca6/colormap_normalizations.py deleted file mode 120000 index 6317af4da88..00000000000 --- a/_downloads/b8caa87891aeeab8d8fc99ee5b734ca6/colormap_normalizations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b8caa87891aeeab8d8fc99ee5b734ca6/colormap_normalizations.py \ No newline at end of file diff --git a/_downloads/b8d04af933d98b51bc0add05f45014d3/simple_axes_divider2.ipynb b/_downloads/b8d04af933d98b51bc0add05f45014d3/simple_axes_divider2.ipynb deleted file mode 120000 index 1a834688a67..00000000000 --- a/_downloads/b8d04af933d98b51bc0add05f45014d3/simple_axes_divider2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b8d04af933d98b51bc0add05f45014d3/simple_axes_divider2.ipynb \ No newline at end of file diff --git a/_downloads/b8d0c29a30614a70f08c7ae3288224c0/keypress_demo.py b/_downloads/b8d0c29a30614a70f08c7ae3288224c0/keypress_demo.py deleted file mode 120000 index 063813ecb80..00000000000 --- a/_downloads/b8d0c29a30614a70f08c7ae3288224c0/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b8d0c29a30614a70f08c7ae3288224c0/keypress_demo.py \ No newline at end of file diff --git a/_downloads/b8d5a0d6c57347f6e3f770413291dc62/simple_axesgrid.py b/_downloads/b8d5a0d6c57347f6e3f770413291dc62/simple_axesgrid.py deleted file mode 100644 index fdd94cd3224..00000000000 --- a/_downloads/b8d5a0d6c57347f6e3f770413291dc62/simple_axesgrid.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -================ -Simple ImageGrid -================ - -Align multiple images using `~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`. -""" - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid -import numpy as np - -im1 = np.arange(100).reshape((10, 10)) -im2 = im1.T -im3 = np.flipud(im1) -im4 = np.fliplr(im2) - -fig = plt.figure(figsize=(4., 4.)) -grid = ImageGrid(fig, 111, # similar to subplot(111) - nrows_ncols=(2, 2), # creates 2x2 grid of axes - axes_pad=0.1, # pad between axes in inch. - ) - -for ax, im in zip(grid, [im1, im2, im3, im4]): - # Iterating over the grid returns the Axes. - ax.imshow(im) - -plt.show() diff --git a/_downloads/b8d7f44c321c87f837f5f59444c69878/subplot_demo.py b/_downloads/b8d7f44c321c87f837f5f59444c69878/subplot_demo.py deleted file mode 120000 index 57b6a28f93b..00000000000 --- a/_downloads/b8d7f44c321c87f837f5f59444c69878/subplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b8d7f44c321c87f837f5f59444c69878/subplot_demo.py \ No newline at end of file diff --git a/_downloads/b8f909e3295e33c0cd253f0f6b856186/annotation_polar.py b/_downloads/b8f909e3295e33c0cd253f0f6b856186/annotation_polar.py deleted file mode 120000 index a279ad9ae22..00000000000 --- a/_downloads/b8f909e3295e33c0cd253f0f6b856186/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b8f909e3295e33c0cd253f0f6b856186/annotation_polar.py \ No newline at end of file diff --git a/_downloads/b8fe55ddde1f98799e51eb5342d9c85a/subplot_demo.py b/_downloads/b8fe55ddde1f98799e51eb5342d9c85a/subplot_demo.py deleted file mode 120000 index d4a1a48c506..00000000000 --- a/_downloads/b8fe55ddde1f98799e51eb5342d9c85a/subplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b8fe55ddde1f98799e51eb5342d9c85a/subplot_demo.py \ No newline at end of file diff --git a/_downloads/b90231d1ebdefce640cf91f92410a735/colormap_normalizations_diverging.py b/_downloads/b90231d1ebdefce640cf91f92410a735/colormap_normalizations_diverging.py deleted file mode 100644 index 7a5a68c29b7..00000000000 --- a/_downloads/b90231d1ebdefce640cf91f92410a735/colormap_normalizations_diverging.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -===================================== -DivergingNorm colormap normalization -===================================== - -Sometimes we want to have a different colormap on either side of a -conceptual center point, and we want those two colormaps to have -different linear scales. An example is a topographic map where the land -and ocean have a center at zero, but land typically has a greater -elevation range than the water has depth range, and they are often -represented by a different colormap. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import matplotlib.colors as colors - -filename = cbook.get_sample_data('topobathy.npz', asfileobj=False) -with np.load(filename) as dem: - topo = dem['topo'] - longitude = dem['longitude'] - latitude = dem['latitude'] - -fig, ax = plt.subplots(constrained_layout=True) -# make a colormap that has land and ocean clearly delineated and of the -# same length (256 + 256) -colors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256)) -colors_land = plt.cm.terrain(np.linspace(0.25, 1, 256)) -all_colors = np.vstack((colors_undersea, colors_land)) -terrain_map = colors.LinearSegmentedColormap.from_list('terrain_map', - all_colors) - -# make the norm: Note the center is offset so that the land has more -# dynamic range: -divnorm = colors.DivergingNorm(vmin=-500, vcenter=0, vmax=4000) - -pcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm, - cmap=terrain_map,) -ax.set_xlabel('Lon $[^o E]$') -ax.set_ylabel('Lat $[^o N]$') -ax.set_aspect(1 / np.cos(np.deg2rad(49))) -fig.colorbar(pcm, shrink=0.6, extend='both', label='Elevation [m]') -plt.show() diff --git a/_downloads/b91de4a9d508ee8262944930c1047989/boxplot_vs_violin.ipynb b/_downloads/b91de4a9d508ee8262944930c1047989/boxplot_vs_violin.ipynb deleted file mode 120000 index cbbee6251a0..00000000000 --- a/_downloads/b91de4a9d508ee8262944930c1047989/boxplot_vs_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b91de4a9d508ee8262944930c1047989/boxplot_vs_violin.ipynb \ No newline at end of file diff --git a/_downloads/b92198177549598827d36ad4ea10fe93/text_commands.ipynb b/_downloads/b92198177549598827d36ad4ea10fe93/text_commands.ipynb deleted file mode 120000 index 583ce5b2692..00000000000 --- a/_downloads/b92198177549598827d36ad4ea10fe93/text_commands.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b92198177549598827d36ad4ea10fe93/text_commands.ipynb \ No newline at end of file diff --git a/_downloads/b925596c18450baa1c901b714a7dcb5a/colorbar_basics.py b/_downloads/b925596c18450baa1c901b714a7dcb5a/colorbar_basics.py deleted file mode 100644 index 64bed1449da..00000000000 --- a/_downloads/b925596c18450baa1c901b714a7dcb5a/colorbar_basics.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -======== -Colorbar -======== - -Use `~.figure.Figure.colorbar` by specifying the mappable object (here -the `~.matplotlib.image.AxesImage` returned by `~.axes.Axes.imshow`) -and the axes to attach the colorbar to. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# setup some generic data -N = 37 -x, y = np.mgrid[:N, :N] -Z = (np.cos(x*0.2) + np.sin(y*0.3)) - -# mask out the negative and positive values, respectively -Zpos = np.ma.masked_less(Z, 0) -Zneg = np.ma.masked_greater(Z, 0) - -fig, (ax1, ax2, ax3) = plt.subplots(figsize=(13, 3), ncols=3) - -# plot just the positive data and save the -# color "mappable" object returned by ax1.imshow -pos = ax1.imshow(Zpos, cmap='Blues', interpolation='none') - -# add the colorbar using the figure's method, -# telling which mappable we're talking about and -# which axes object it should be near -fig.colorbar(pos, ax=ax1) - -# repeat everything above for the negative data -neg = ax2.imshow(Zneg, cmap='Reds_r', interpolation='none') -fig.colorbar(neg, ax=ax2) - -# Plot both positive and negative values between +/- 1.2 -pos_neg_clipped = ax3.imshow(Z, cmap='RdBu', vmin=-1.2, vmax=1.2, - interpolation='none') -# Add minorticks on the colorbar to make it easy to read the -# values off the colorbar. -cbar = fig.colorbar(pos_neg_clipped, ax=ax3, extend='both') -cbar.minorticks_on() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -import matplotlib.colorbar -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colorbar.Colorbar.minorticks_on -matplotlib.colorbar.Colorbar.minorticks_off diff --git a/_downloads/b93480b61df94bba61ad2c4d26cf5868/mplot3d.py b/_downloads/b93480b61df94bba61ad2c4d26cf5868/mplot3d.py deleted file mode 120000 index ffb89aea7e5..00000000000 --- a/_downloads/b93480b61df94bba61ad2c4d26cf5868/mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b93480b61df94bba61ad2c4d26cf5868/mplot3d.py \ No newline at end of file diff --git a/_downloads/b940001cdcf7561f5385dc1cf226ce0d/barchart_demo.py b/_downloads/b940001cdcf7561f5385dc1cf226ce0d/barchart_demo.py deleted file mode 120000 index 8d451c1387b..00000000000 --- a/_downloads/b940001cdcf7561f5385dc1cf226ce0d/barchart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b940001cdcf7561f5385dc1cf226ce0d/barchart_demo.py \ No newline at end of file diff --git a/_downloads/b94fab511b78e21ebe8f658a3bc637b2/polar_demo.py b/_downloads/b94fab511b78e21ebe8f658a3bc637b2/polar_demo.py deleted file mode 120000 index 50c21a13eb8..00000000000 --- a/_downloads/b94fab511b78e21ebe8f658a3bc637b2/polar_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b94fab511b78e21ebe8f658a3bc637b2/polar_demo.py \ No newline at end of file diff --git a/_downloads/b95fcad3afac855e9f551fb903019306/usetex.py b/_downloads/b95fcad3afac855e9f551fb903019306/usetex.py deleted file mode 120000 index b3424b89ae3..00000000000 --- a/_downloads/b95fcad3afac855e9f551fb903019306/usetex.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b95fcad3afac855e9f551fb903019306/usetex.py \ No newline at end of file diff --git a/_downloads/b96050932da3e104b9275e8c73d14a6e/engineering_formatter.ipynb b/_downloads/b96050932da3e104b9275e8c73d14a6e/engineering_formatter.ipynb deleted file mode 100644 index 92b9f71f954..00000000000 --- a/_downloads/b96050932da3e104b9275e8c73d14a6e/engineering_formatter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Labeling ticks using engineering notation\n\n\nUse of the engineering Formatter.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfrom matplotlib.ticker import EngFormatter\n\n# Fixing random state for reproducibility\nprng = np.random.RandomState(19680801)\n\n# Create artificial data to plot.\n# The x data span over several decades to demonstrate several SI prefixes.\nxs = np.logspace(1, 9, 100)\nys = (0.8 + 0.4 * prng.uniform(size=100)) * np.log10(xs)**2\n\n# Figure width is doubled (2*6.4) to display nicely 2 subplots side by side.\nfig, (ax0, ax1) = plt.subplots(nrows=2, figsize=(7, 9.6))\nfor ax in (ax0, ax1):\n ax.set_xscale('log')\n\n# Demo of the default settings, with a user-defined unit label.\nax0.set_title('Full unit ticklabels, w/ default precision & space separator')\nformatter0 = EngFormatter(unit='Hz')\nax0.xaxis.set_major_formatter(formatter0)\nax0.plot(xs, ys)\nax0.set_xlabel('Frequency')\n\n# Demo of the options `places` (number of digit after decimal point) and\n# `sep` (separator between the number and the prefix/unit).\nax1.set_title('SI-prefix only ticklabels, 1-digit precision & '\n 'thin space separator')\nformatter1 = EngFormatter(places=1, sep=\"\\N{THIN SPACE}\") # U+2009\nax1.xaxis.set_major_formatter(formatter1)\nax1.plot(xs, ys)\nax1.set_xlabel('Frequency [Hz]')\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b967947099d9f462e3e83f5df8d24deb/parasite_simple.ipynb b/_downloads/b967947099d9f462e3e83f5df8d24deb/parasite_simple.ipynb deleted file mode 120000 index 7882e86d23b..00000000000 --- a/_downloads/b967947099d9f462e3e83f5df8d24deb/parasite_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b967947099d9f462e3e83f5df8d24deb/parasite_simple.ipynb \ No newline at end of file diff --git a/_downloads/b972a3547264c3db2a7081ac03832e06/xkcd.ipynb b/_downloads/b972a3547264c3db2a7081ac03832e06/xkcd.ipynb deleted file mode 120000 index e02178bae88..00000000000 --- a/_downloads/b972a3547264c3db2a7081ac03832e06/xkcd.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b972a3547264c3db2a7081ac03832e06/xkcd.ipynb \ No newline at end of file diff --git a/_downloads/b98186b910d0b9a8c139ad170f9c0eb6/tutorials_jupyter.zip b/_downloads/b98186b910d0b9a8c139ad170f9c0eb6/tutorials_jupyter.zip deleted file mode 100644 index c8ecd8fc692..00000000000 Binary files a/_downloads/b98186b910d0b9a8c139ad170f9c0eb6/tutorials_jupyter.zip and /dev/null differ diff --git a/_downloads/b986f65df1e00e043f4b04d8da15eb4b/annotate_simple_coord01.ipynb b/_downloads/b986f65df1e00e043f4b04d8da15eb4b/annotate_simple_coord01.ipynb deleted file mode 100644 index f9b3d5f329e..00000000000 --- a/_downloads/b986f65df1e00e043f4b04d8da15eb4b/annotate_simple_coord01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple Coord01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(3, 2))\nan1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\nan2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1,\n xytext=(30, 0), textcoords=\"offset points\",\n va=\"center\", ha=\"left\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b992e4233add55b18bdad21f75acf1b5/compound_path.py b/_downloads/b992e4233add55b18bdad21f75acf1b5/compound_path.py deleted file mode 120000 index d67f65e8900..00000000000 --- a/_downloads/b992e4233add55b18bdad21f75acf1b5/compound_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b992e4233add55b18bdad21f75acf1b5/compound_path.py \ No newline at end of file diff --git a/_downloads/b9a9bd5f261850e19a5a3db7eee29998/tricontour_smooth_delaunay.py b/_downloads/b9a9bd5f261850e19a5a3db7eee29998/tricontour_smooth_delaunay.py deleted file mode 120000 index 4cb99d5df38..00000000000 --- a/_downloads/b9a9bd5f261850e19a5a3db7eee29998/tricontour_smooth_delaunay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b9a9bd5f261850e19a5a3db7eee29998/tricontour_smooth_delaunay.py \ No newline at end of file diff --git a/_downloads/b9ab9185207ba0b1f762b4e2380974eb/basic_units.ipynb b/_downloads/b9ab9185207ba0b1f762b4e2380974eb/basic_units.ipynb deleted file mode 120000 index ffbacdd75aa..00000000000 --- a/_downloads/b9ab9185207ba0b1f762b4e2380974eb/basic_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b9ab9185207ba0b1f762b4e2380974eb/basic_units.ipynb \ No newline at end of file diff --git a/_downloads/b9b445a731772066acdff3fece0f773e/xkcd.ipynb b/_downloads/b9b445a731772066acdff3fece0f773e/xkcd.ipynb deleted file mode 120000 index 2c879828bb2..00000000000 --- a/_downloads/b9b445a731772066acdff3fece0f773e/xkcd.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b9b445a731772066acdff3fece0f773e/xkcd.ipynb \ No newline at end of file diff --git a/_downloads/b9b9c6242bc7480020c4a13eb63eab79/coords_demo.ipynb b/_downloads/b9b9c6242bc7480020c4a13eb63eab79/coords_demo.ipynb deleted file mode 120000 index b901f668408..00000000000 --- a/_downloads/b9b9c6242bc7480020c4a13eb63eab79/coords_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b9b9c6242bc7480020c4a13eb63eab79/coords_demo.ipynb \ No newline at end of file diff --git a/_downloads/b9c70d627e28f32d1aab151c1c253b0a/pick_event_demo2.py b/_downloads/b9c70d627e28f32d1aab151c1c253b0a/pick_event_demo2.py deleted file mode 120000 index 5a4d904c3e5..00000000000 --- a/_downloads/b9c70d627e28f32d1aab151c1c253b0a/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/b9c70d627e28f32d1aab151c1c253b0a/pick_event_demo2.py \ No newline at end of file diff --git a/_downloads/b9ccc225a9488811ec7ceeb6dfc7d21f/images.py b/_downloads/b9ccc225a9488811ec7ceeb6dfc7d21f/images.py deleted file mode 100644 index 423bf22da30..00000000000 --- a/_downloads/b9ccc225a9488811ec7ceeb6dfc7d21f/images.py +++ /dev/null @@ -1,274 +0,0 @@ -""" -============== -Image tutorial -============== - -A short tutorial on plotting images with Matplotlib. - -.. _imaging_startup: - -Startup commands -=================== - -First, let's start IPython. It is a most excellent enhancement to the -standard Python prompt, and it ties in especially well with -Matplotlib. Start IPython either at a shell, or the IPython Notebook now. - -With IPython started, we now need to connect to a GUI event loop. This -tells IPython where (and how) to display plots. To connect to a GUI -loop, execute the **%matplotlib** magic at your IPython prompt. There's more -detail on exactly what this does at `IPython's documentation on GUI -event loops -`_. - -If you're using IPython Notebook, the same commands are available, but -people commonly use a specific argument to the %matplotlib magic: - -.. sourcecode:: ipython - - In [1]: %matplotlib inline - -This turns on inline plotting, where plot graphics will appear in your -notebook. This has important implications for interactivity. For inline plotting, commands in -cells below the cell that outputs a plot will not affect the plot. For example, -changing the color map is not possible from cells below the cell that creates a plot. -However, for other backends, such as Qt5, that open a separate window, -cells below those that create the plot will change the plot - it is a -live object in memory. - -This tutorial will use matplotlib's imperative-style plotting -interface, pyplot. This interface maintains global state, and is very -useful for quickly and easily experimenting with various plot -settings. The alternative is the object-oriented interface, which is also -very powerful, and generally more suitable for large application -development. If you'd like to learn about the object-oriented -interface, a great place to start is our :doc:`Usage guide -`. For now, let's get on -with the imperative-style approach: -""" - -import matplotlib.pyplot as plt -import matplotlib.image as mpimg - -############################################################################### -# .. _importing_data: -# -# Importing image data into Numpy arrays -# =============================================== -# -# Loading image data is supported by the `Pillow -# `_ library. Natively, Matplotlib -# only supports PNG images. The commands shown below fall back on Pillow if -# the native read fails. -# -# The image used in this example is a PNG file, but keep that Pillow -# requirement in mind for your own data. -# -# Here's the image we're going to play with: -# -# .. image:: ../../_static/stinkbug.png -# -# It's a 24-bit RGB PNG image (8 bits for each of R, G, B). Depending -# on where you get your data, the other kinds of image that you'll most -# likely encounter are RGBA images, which allow for transparency, or -# single-channel grayscale (luminosity) images. You can right click on -# it and choose "Save image as" to download it to your computer for the -# rest of this tutorial. -# -# And here we go... - -img = mpimg.imread('../../doc/_static/stinkbug.png') -print(img) - -############################################################################### -# Note the dtype there - float32. Matplotlib has rescaled the 8 bit -# data from each channel to floating point data between 0.0 and 1.0. As -# a side note, the only datatype that Pillow can work with is uint8. -# Matplotlib plotting can handle float32 and uint8, but image -# reading/writing for any format other than PNG is limited to uint8 -# data. Why 8 bits? Most displays can only render 8 bits per channel -# worth of color gradation. Why can they only render 8 bits/channel? -# Because that's about all the human eye can see. More here (from a -# photography standpoint): `Luminous Landscape bit depth tutorial -# `_. -# -# Each inner list represents a pixel. Here, with an RGB image, there -# are 3 values. Since it's a black and white image, R, G, and B are all -# similar. An RGBA (where A is alpha, or transparency), has 4 values -# per inner list, and a simple luminance image just has one value (and -# is thus only a 2-D array, not a 3-D array). For RGB and RGBA images, -# matplotlib supports float32 and uint8 data types. For grayscale, -# matplotlib supports only float32. If your array data does not meet -# one of these descriptions, you need to rescale it. -# -# .. _plotting_data: -# -# Plotting numpy arrays as images -# =================================== -# -# So, you have your data in a numpy array (either by importing it, or by -# generating it). Let's render it. In Matplotlib, this is performed -# using the :func:`~matplotlib.pyplot.imshow` function. Here we'll grab -# the plot object. This object gives you an easy way to manipulate the -# plot from the prompt. - -imgplot = plt.imshow(img) - -############################################################################### -# You can also plot any numpy array. -# -# .. _Pseudocolor: -# -# Applying pseudocolor schemes to image plots -# ------------------------------------------------- -# -# Pseudocolor can be a useful tool for enhancing contrast and -# visualizing your data more easily. This is especially useful when -# making presentations of your data using projectors - their contrast is -# typically quite poor. -# -# Pseudocolor is only relevant to single-channel, grayscale, luminosity -# images. We currently have an RGB image. Since R, G, and B are all -# similar (see for yourself above or in your data), we can just pick one -# channel of our data: - -lum_img = img[:, :, 0] - -# This is array slicing. You can read more in the `Numpy tutorial -# `_. - -plt.imshow(lum_img) - -############################################################################### -# Now, with a luminosity (2D, no color) image, the default colormap (aka lookup table, -# LUT), is applied. The default is called viridis. There are plenty of -# others to choose from. - -plt.imshow(lum_img, cmap="hot") - -############################################################################### -# Note that you can also change colormaps on existing plot objects using the -# :meth:`~matplotlib.image.Image.set_cmap` method: - -imgplot = plt.imshow(lum_img) -imgplot.set_cmap('nipy_spectral') - -############################################################################### -# -# .. note:: -# -# However, remember that in the IPython notebook with the inline backend, -# you can't make changes to plots that have already been rendered. If you -# create imgplot here in one cell, you cannot call set_cmap() on it in a later -# cell and expect the earlier plot to change. Make sure that you enter these -# commands together in one cell. plt commands will not change plots from earlier -# cells. -# -# There are many other colormap schemes available. See the `list and -# images of the colormaps -# <../colors/colormaps.html>`_. -# -# .. _`Color Bars`: -# -# Color scale reference -# ------------------------ -# -# It's helpful to have an idea of what value a color represents. We can -# do that by adding color bars. - -imgplot = plt.imshow(lum_img) -plt.colorbar() - -############################################################################### -# This adds a colorbar to your existing figure. This won't -# automatically change if you change you switch to a different -# colormap - you have to re-create your plot, and add in the colorbar -# again. -# -# .. _`Data ranges`: -# -# Examining a specific data range -# --------------------------------- -# -# Sometimes you want to enhance the contrast in your image, or expand -# the contrast in a particular region while sacrificing the detail in -# colors that don't vary much, or don't matter. A good tool to find -# interesting regions is the histogram. To create a histogram of our -# image data, we use the :func:`~matplotlib.pyplot.hist` function. - -plt.hist(lum_img.ravel(), bins=256, range=(0.0, 1.0), fc='k', ec='k') - -############################################################################### -# Most often, the "interesting" part of the image is around the peak, -# and you can get extra contrast by clipping the regions above and/or -# below the peak. In our histogram, it looks like there's not much -# useful information in the high end (not many white things in the -# image). Let's adjust the upper limit, so that we effectively "zoom in -# on" part of the histogram. We do this by passing the clim argument to -# imshow. You could also do this by calling the -# :meth:`~matplotlib.image.Image.set_clim` method of the image plot -# object, but make sure that you do so in the same cell as your plot -# command when working with the IPython Notebook - it will not change -# plots from earlier cells. -# -# You can specify the clim in the call to ``plot``. - -imgplot = plt.imshow(lum_img, clim=(0.0, 0.7)) - -############################################################################### -# You can also specify the clim using the returned object -fig = plt.figure() -a = fig.add_subplot(1, 2, 1) -imgplot = plt.imshow(lum_img) -a.set_title('Before') -plt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal') -a = fig.add_subplot(1, 2, 2) -imgplot = plt.imshow(lum_img) -imgplot.set_clim(0.0, 0.7) -a.set_title('After') -plt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal') - -############################################################################### -# .. _Interpolation: -# -# Array Interpolation schemes -# --------------------------- -# -# Interpolation calculates what the color or value of a pixel "should" -# be, according to different mathematical schemes. One common place -# that this happens is when you resize an image. The number of pixels -# change, but you want the same information. Since pixels are discrete, -# there's missing space. Interpolation is how you fill that space. -# This is why your images sometimes come out looking pixelated when you -# blow them up. The effect is more pronounced when the difference -# between the original image and the expanded image is greater. Let's -# take our image and shrink it. We're effectively discarding pixels, -# only keeping a select few. Now when we plot it, that data gets blown -# up to the size on your screen. The old pixels aren't there anymore, -# and the computer has to draw in pixels to fill that space. -# -# We'll use the Pillow library that we used to load the image also to resize -# the image. - -from PIL import Image - -img = Image.open('../../doc/_static/stinkbug.png') -img.thumbnail((64, 64), Image.ANTIALIAS) # resizes image in-place -imgplot = plt.imshow(img) - -############################################################################### -# Here we have the default interpolation, bilinear, since we did not -# give :func:`~matplotlib.pyplot.imshow` any interpolation argument. -# -# Let's try some others. Here's "nearest", which does no interpolation. - -imgplot = plt.imshow(img, interpolation="nearest") - -############################################################################### -# and bicubic: - -imgplot = plt.imshow(img, interpolation="bicubic") - -############################################################################### -# Bicubic interpolation is often used when blowing up photos - people -# tend to prefer blurry over pixelated. diff --git a/_downloads/b9ce66af7564ce0525b3b8313d0871bf/pyplot_text.ipynb b/_downloads/b9ce66af7564ce0525b3b8313d0871bf/pyplot_text.ipynb deleted file mode 120000 index 35d6cad0e79..00000000000 --- a/_downloads/b9ce66af7564ce0525b3b8313d0871bf/pyplot_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b9ce66af7564ce0525b3b8313d0871bf/pyplot_text.ipynb \ No newline at end of file diff --git a/_downloads/b9d4c1eac8724349d8eebe6393ce5ae0/annotate_simple02.py b/_downloads/b9d4c1eac8724349d8eebe6393ce5ae0/annotate_simple02.py deleted file mode 120000 index ab3d5fe9aec..00000000000 --- a/_downloads/b9d4c1eac8724349d8eebe6393ce5ae0/annotate_simple02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/b9d4c1eac8724349d8eebe6393ce5ae0/annotate_simple02.py \ No newline at end of file diff --git a/_downloads/b9d8228ac2c09087c4de7138cc32667e/fonts_demo.ipynb b/_downloads/b9d8228ac2c09087c4de7138cc32667e/fonts_demo.ipynb deleted file mode 120000 index 938be009ce8..00000000000 --- a/_downloads/b9d8228ac2c09087c4de7138cc32667e/fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/b9d8228ac2c09087c4de7138cc32667e/fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/b9da9284db9d54da20e247af86b277fe/pyplot_two_subplots.ipynb b/_downloads/b9da9284db9d54da20e247af86b277fe/pyplot_two_subplots.ipynb deleted file mode 120000 index 588aa980efd..00000000000 --- a/_downloads/b9da9284db9d54da20e247af86b277fe/pyplot_two_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b9da9284db9d54da20e247af86b277fe/pyplot_two_subplots.ipynb \ No newline at end of file diff --git a/_downloads/b9dd961633ad27d20b2a18babf66dc31/color_demo.ipynb b/_downloads/b9dd961633ad27d20b2a18babf66dc31/color_demo.ipynb deleted file mode 100644 index 19fd63074d9..00000000000 --- a/_downloads/b9dd961633ad27d20b2a18babf66dc31/color_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Color Demo\n\n\nMatplotlib recognizes the following formats to specify a color:\n\n1) an RGB or RGBA tuple of float values in ``[0, 1]`` (e.g. ``(0.1, 0.2, 0.5)``\n or ``(0.1, 0.2, 0.5, 0.3)``). RGBA is short for Red, Green, Blue, Alpha;\n2) a hex RGB or RGBA string (e.g., ``'#0F0F0F'`` or ``'#0F0F0F0F'``);\n3) a string representation of a float value in ``[0, 1]`` inclusive for gray\n level (e.g., ``'0.5'``);\n4) a single letter string, i.e. one of\n ``{'b', 'g', 'r', 'c', 'm', 'y', 'k', 'w'}``;\n5) a X11/CSS4 (\"html\") color name, e.g. ``\"blue\"``;\n6) a name from the `xkcd color survey `__,\n prefixed with ``'xkcd:'`` (e.g., ``'xkcd:sky blue'``);\n7) a \"Cn\" color spec, i.e. `'C'` followed by a number, which is an index into\n the default property cycle (``matplotlib.rcParams['axes.prop_cycle']``); the\n indexing is intended to occur at rendering time, and defaults to black if\n the cycle does not include color.\n8) one of ``{'tab:blue', 'tab:orange', 'tab:green',\n 'tab:red', 'tab:purple', 'tab:brown', 'tab:pink',\n 'tab:gray', 'tab:olive', 'tab:cyan'}`` which are the Tableau Colors from the\n 'tab10' categorical palette (which is the default color cycle);\n\nFor more information on colors in matplotlib see\n\n* the :doc:`/tutorials/colors/colors` tutorial;\n* the `matplotlib.colors` API;\n* the :doc:`/gallery/color/named_colors` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.linspace(0.0, 2.0, 201)\ns = np.sin(2 * np.pi * t)\n\n# 1) RGB tuple:\nfig, ax = plt.subplots(facecolor=(.18, .31, .31))\n# 2) hex string:\nax.set_facecolor('#eafff5')\n# 3) gray level string:\nax.set_title('Voltage vs. time chart', color='0.7')\n# 4) single letter color string\nax.set_xlabel('time (s)', color='c')\n# 5) a named color:\nax.set_ylabel('voltage (mV)', color='peachpuff')\n# 6) a named xkcd color:\nax.plot(t, s, 'xkcd:crimson')\n# 7) Cn notation:\nax.plot(t, .7*s, color='C4', linestyle='--')\n# 8) tab notation:\nax.tick_params(labelcolor='tab:orange')\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.colors\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.set_facecolor\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.tick_params" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/b9ef6f84d8dd108e5700bbf0e163014a/cursor.py b/_downloads/b9ef6f84d8dd108e5700bbf0e163014a/cursor.py deleted file mode 120000 index 0d201e8cfd7..00000000000 --- a/_downloads/b9ef6f84d8dd108e5700bbf0e163014a/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/b9ef6f84d8dd108e5700bbf0e163014a/cursor.py \ No newline at end of file diff --git a/_downloads/b9ef7d434622c70bb680c6edbd2ad6a1/axis_direction_demo_step01.py b/_downloads/b9ef7d434622c70bb680c6edbd2ad6a1/axis_direction_demo_step01.py deleted file mode 120000 index e505ca27be8..00000000000 --- a/_downloads/b9ef7d434622c70bb680c6edbd2ad6a1/axis_direction_demo_step01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/b9ef7d434622c70bb680c6edbd2ad6a1/axis_direction_demo_step01.py \ No newline at end of file diff --git a/_downloads/ba089b2e052edb471bd1625ee6614626/fill_between_demo.ipynb b/_downloads/ba089b2e052edb471bd1625ee6614626/fill_between_demo.ipynb deleted file mode 120000 index fc2b0500b41..00000000000 --- a/_downloads/ba089b2e052edb471bd1625ee6614626/fill_between_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ba089b2e052edb471bd1625ee6614626/fill_between_demo.ipynb \ No newline at end of file diff --git a/_downloads/ba099c1e206c3231756174c49ee85a00/annotate_with_units.ipynb b/_downloads/ba099c1e206c3231756174c49ee85a00/annotate_with_units.ipynb deleted file mode 120000 index 295d7299d35..00000000000 --- a/_downloads/ba099c1e206c3231756174c49ee85a00/annotate_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ba099c1e206c3231756174c49ee85a00/annotate_with_units.ipynb \ No newline at end of file diff --git a/_downloads/ba0f82c5907a97942f115a693c35bddf/lines3d.ipynb b/_downloads/ba0f82c5907a97942f115a693c35bddf/lines3d.ipynb deleted file mode 120000 index 30221ee9034..00000000000 --- a/_downloads/ba0f82c5907a97942f115a693c35bddf/lines3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ba0f82c5907a97942f115a693c35bddf/lines3d.ipynb \ No newline at end of file diff --git a/_downloads/ba126eea81f92c910eeeba61582214e7/geo_demo.ipynb b/_downloads/ba126eea81f92c910eeeba61582214e7/geo_demo.ipynb deleted file mode 120000 index 9da8133b878..00000000000 --- a/_downloads/ba126eea81f92c910eeeba61582214e7/geo_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ba126eea81f92c910eeeba61582214e7/geo_demo.ipynb \ No newline at end of file diff --git a/_downloads/ba1597350ba5c464738013fa8bba72d6/contour_manual.ipynb b/_downloads/ba1597350ba5c464738013fa8bba72d6/contour_manual.ipynb deleted file mode 120000 index adde3c6c709..00000000000 --- a/_downloads/ba1597350ba5c464738013fa8bba72d6/contour_manual.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ba1597350ba5c464738013fa8bba72d6/contour_manual.ipynb \ No newline at end of file diff --git a/_downloads/ba1b9ee09dc152797aa858d2ffe8290d/subplot_demo.py b/_downloads/ba1b9ee09dc152797aa858d2ffe8290d/subplot_demo.py deleted file mode 100644 index 836476829a6..00000000000 --- a/_downloads/ba1b9ee09dc152797aa858d2ffe8290d/subplot_demo.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -================== -Basic Subplot Demo -================== - -Demo with two subplots. -For more options, see -:doc:`/gallery/subplots_axes_and_figures/subplots_demo` -""" -import numpy as np -import matplotlib.pyplot as plt - -# Data for plotting -x1 = np.linspace(0.0, 5.0) -x2 = np.linspace(0.0, 2.0) -y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) -y2 = np.cos(2 * np.pi * x2) - -# Create two subplots sharing y axis -fig, (ax1, ax2) = plt.subplots(2, sharey=True) - -ax1.plot(x1, y1, 'ko-') -ax1.set(title='A tale of 2 subplots', ylabel='Damped oscillation') - -ax2.plot(x2, y2, 'r.-') -ax2.set(xlabel='time (s)', ylabel='Undamped') - -plt.show() diff --git a/_downloads/ba1ea95b76df0e3c2685c480dc72cf24/axes_margins.ipynb b/_downloads/ba1ea95b76df0e3c2685c480dc72cf24/axes_margins.ipynb deleted file mode 120000 index ef30e5874e2..00000000000 --- a/_downloads/ba1ea95b76df0e3c2685c480dc72cf24/axes_margins.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ba1ea95b76df0e3c2685c480dc72cf24/axes_margins.ipynb \ No newline at end of file diff --git a/_downloads/ba35003024cfd18667225036ba85030c/irregulardatagrid.ipynb b/_downloads/ba35003024cfd18667225036ba85030c/irregulardatagrid.ipynb deleted file mode 120000 index 190f75593a6..00000000000 --- a/_downloads/ba35003024cfd18667225036ba85030c/irregulardatagrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ba35003024cfd18667225036ba85030c/irregulardatagrid.ipynb \ No newline at end of file diff --git a/_downloads/ba3bf53cbc5ac778be9f16c1414f464d/polar_legend.ipynb b/_downloads/ba3bf53cbc5ac778be9f16c1414f464d/polar_legend.ipynb deleted file mode 100644 index 5c86b3fd93a..00000000000 --- a/_downloads/ba3bf53cbc5ac778be9f16c1414f464d/polar_legend.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Polar Legend\n\n\nDemo of a legend on a polar-axis plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# radar green, solid grid lines\nplt.rc('grid', color='#316931', linewidth=1, linestyle='-')\nplt.rc('xtick', labelsize=15)\nplt.rc('ytick', labelsize=15)\n\n# force square figure and square axes looks better for polar, IMO\nfig = plt.figure(figsize=(8, 8))\nax = fig.add_axes([0.1, 0.1, 0.8, 0.8],\n projection='polar', facecolor='#d5de9c')\n\nr = np.arange(0, 3.0, 0.01)\ntheta = 2 * np.pi * r\nax.plot(theta, r, color='#ee8d18', lw=3, label='a line')\nax.plot(0.5 * theta, r, color='blue', ls='--', lw=3, label='another line')\nax.legend()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.legend\nmatplotlib.projections.polar\nmatplotlib.projections.polar.PolarAxes" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ba4dbec714855554cc48d352b5d4038b/subplot_toolbar.ipynb b/_downloads/ba4dbec714855554cc48d352b5d4038b/subplot_toolbar.ipynb deleted file mode 120000 index 680e81b4f81..00000000000 --- a/_downloads/ba4dbec714855554cc48d352b5d4038b/subplot_toolbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/ba4dbec714855554cc48d352b5d4038b/subplot_toolbar.ipynb \ No newline at end of file diff --git a/_downloads/ba51694bf1e99f621b805c7ad5e5bd2f/marker_fillstyle_reference.py b/_downloads/ba51694bf1e99f621b805c7ad5e5bd2f/marker_fillstyle_reference.py deleted file mode 120000 index 481d31a9300..00000000000 --- a/_downloads/ba51694bf1e99f621b805c7ad5e5bd2f/marker_fillstyle_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/ba51694bf1e99f621b805c7ad5e5bd2f/marker_fillstyle_reference.py \ No newline at end of file diff --git a/_downloads/ba557ef9e53243f7bcead80f8c816256/date_concise_formatter.py b/_downloads/ba557ef9e53243f7bcead80f8c816256/date_concise_formatter.py deleted file mode 120000 index cd8969136fd..00000000000 --- a/_downloads/ba557ef9e53243f7bcead80f8c816256/date_concise_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/ba557ef9e53243f7bcead80f8c816256/date_concise_formatter.py \ No newline at end of file diff --git a/_downloads/ba5f78e6312450ffe81bd16e33787831/spectrum_demo.ipynb b/_downloads/ba5f78e6312450ffe81bd16e33787831/spectrum_demo.ipynb deleted file mode 100644 index b7aadbf7c76..00000000000 --- a/_downloads/ba5f78e6312450ffe81bd16e33787831/spectrum_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spectrum Representations\n\n\nThe plots show different spectrum representations of a sine signal with\nadditive noise. A (frequency) spectrum of a discrete-time signal is calculated\nby utilizing the fast Fourier transform (FFT).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nnp.random.seed(0)\n\ndt = 0.01 # sampling interval\nFs = 1 / dt # sampling frequency\nt = np.arange(0, 10, dt)\n\n# generate noise:\nnse = np.random.randn(len(t))\nr = np.exp(-t / 0.05)\ncnse = np.convolve(nse, r) * dt\ncnse = cnse[:len(t)]\n\ns = 0.1 * np.sin(4 * np.pi * t) + cnse # the signal\n\nfig, axes = plt.subplots(nrows=3, ncols=2, figsize=(7, 7))\n\n# plot time signal:\naxes[0, 0].set_title(\"Signal\")\naxes[0, 0].plot(t, s, color='C0')\naxes[0, 0].set_xlabel(\"Time\")\naxes[0, 0].set_ylabel(\"Amplitude\")\n\n# plot different spectrum types:\naxes[1, 0].set_title(\"Magnitude Spectrum\")\naxes[1, 0].magnitude_spectrum(s, Fs=Fs, color='C1')\n\naxes[1, 1].set_title(\"Log. Magnitude Spectrum\")\naxes[1, 1].magnitude_spectrum(s, Fs=Fs, scale='dB', color='C1')\n\naxes[2, 0].set_title(\"Phase Spectrum \")\naxes[2, 0].phase_spectrum(s, Fs=Fs, color='C2')\n\naxes[2, 1].set_title(\"Angle Spectrum\")\naxes[2, 1].angle_spectrum(s, Fs=Fs, color='C2')\n\naxes[0, 1].remove() # don't display empty ax\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ba74504e8b846f18b45abc9eec3bf230/demo_ticklabel_direction.ipynb b/_downloads/ba74504e8b846f18b45abc9eec3bf230/demo_ticklabel_direction.ipynb deleted file mode 100644 index 82b79d0f904..00000000000 --- a/_downloads/ba74504e8b846f18b45abc9eec3bf230/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Ticklabel Direction\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.axislines as axislines\n\n\ndef setup_axes(fig, rect):\n ax = axislines.Subplot(fig, rect)\n fig.add_subplot(ax)\n\n ax.set_yticks([0.2, 0.8])\n ax.set_xticks([0.2, 0.8])\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 3))\nfig.subplots_adjust(bottom=0.2)\n\nax = setup_axes(fig, 131)\nfor axis in ax.axis.values():\n axis.major_ticks.set_tick_out(True)\n# or you can simply do \"ax.axis[:].major_ticks.set_tick_out(True)\"\n\nax = setup_axes(fig, 132)\nax.axis[\"left\"].set_axis_direction(\"right\")\nax.axis[\"bottom\"].set_axis_direction(\"top\")\nax.axis[\"right\"].set_axis_direction(\"left\")\nax.axis[\"top\"].set_axis_direction(\"bottom\")\n\nax = setup_axes(fig, 133)\nax.axis[\"left\"].set_axis_direction(\"right\")\nax.axis[:].major_ticks.set_tick_out(True)\n\nax.axis[\"left\"].label.set_text(\"Long Label Left\")\nax.axis[\"bottom\"].label.set_text(\"Label Bottom\")\nax.axis[\"right\"].label.set_text(\"Long Label Right\")\nax.axis[\"right\"].label.set_visible(True)\nax.axis[\"left\"].label.set_pad(0)\nax.axis[\"bottom\"].label.set_pad(10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ba8a23230591c5d84502de26d4f2b878/spines.py b/_downloads/ba8a23230591c5d84502de26d4f2b878/spines.py deleted file mode 120000 index 7c71b97f4c0..00000000000 --- a/_downloads/ba8a23230591c5d84502de26d4f2b878/spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ba8a23230591c5d84502de26d4f2b878/spines.py \ No newline at end of file diff --git a/_downloads/ba8a3acd5eadcc506b09167b06d1345a/nested_pie.ipynb b/_downloads/ba8a3acd5eadcc506b09167b06d1345a/nested_pie.ipynb deleted file mode 120000 index b4c0836fe61..00000000000 --- a/_downloads/ba8a3acd5eadcc506b09167b06d1345a/nested_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ba8a3acd5eadcc506b09167b06d1345a/nested_pie.ipynb \ No newline at end of file diff --git a/_downloads/ba92304e861b70cb845d7059b73148ee/demo_fixed_size_axes.ipynb b/_downloads/ba92304e861b70cb845d7059b73148ee/demo_fixed_size_axes.ipynb deleted file mode 120000 index 908febd6b7d..00000000000 --- a/_downloads/ba92304e861b70cb845d7059b73148ee/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ba92304e861b70cb845d7059b73148ee/demo_fixed_size_axes.ipynb \ No newline at end of file diff --git a/_downloads/ba933887427453be6ced1e79ac1014fc/axisartist.ipynb b/_downloads/ba933887427453be6ced1e79ac1014fc/axisartist.ipynb deleted file mode 120000 index 39908be8610..00000000000 --- a/_downloads/ba933887427453be6ced1e79ac1014fc/axisartist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ba933887427453be6ced1e79ac1014fc/axisartist.ipynb \ No newline at end of file diff --git a/_downloads/ba9d1f284741acea96f729604e692a0e/connectionstyle_demo.py b/_downloads/ba9d1f284741acea96f729604e692a0e/connectionstyle_demo.py deleted file mode 100644 index d429822b696..00000000000 --- a/_downloads/ba9d1f284741acea96f729604e692a0e/connectionstyle_demo.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -==================== -Connectionstyle Demo -==================== - -When creating an annotation using `~.Axes.annotate`, the arrow shape can be -controlled via the *connectionstyle* parameter of *arrowprops*. For further -details see the description of `.FancyArrowPatch`. -""" - -import matplotlib.pyplot as plt - - -def demo_con_style(ax, connectionstyle): - x1, y1 = 0.3, 0.2 - x2, y2 = 0.8, 0.6 - - ax.plot([x1, x2], [y1, y2], ".") - ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", color="0.5", - shrinkA=5, shrinkB=5, - patchA=None, patchB=None, - connectionstyle=connectionstyle, - ), - ) - - ax.text(.05, .95, connectionstyle.replace(",", ",\n"), - transform=ax.transAxes, ha="left", va="top") - - -fig, axs = plt.subplots(3, 5, figsize=(8, 4.8)) -demo_con_style(axs[0, 0], "angle3,angleA=90,angleB=0") -demo_con_style(axs[1, 0], "angle3,angleA=0,angleB=90") -demo_con_style(axs[0, 1], "arc3,rad=0.") -demo_con_style(axs[1, 1], "arc3,rad=0.3") -demo_con_style(axs[2, 1], "arc3,rad=-0.3") -demo_con_style(axs[0, 2], "angle,angleA=-90,angleB=180,rad=0") -demo_con_style(axs[1, 2], "angle,angleA=-90,angleB=180,rad=5") -demo_con_style(axs[2, 2], "angle,angleA=-90,angleB=10,rad=5") -demo_con_style(axs[0, 3], "arc,angleA=-90,angleB=0,armA=30,armB=30,rad=0") -demo_con_style(axs[1, 3], "arc,angleA=-90,angleB=0,armA=30,armB=30,rad=5") -demo_con_style(axs[2, 3], "arc,angleA=-90,angleB=0,armA=0,armB=40,rad=0") -demo_con_style(axs[0, 4], "bar,fraction=0.3") -demo_con_style(axs[1, 4], "bar,fraction=-0.3") -demo_con_style(axs[2, 4], "bar,angle=180,fraction=-0.2") - -for ax in axs.flat: - ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1) -fig.tight_layout(pad=0.2) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.annotate -matplotlib.patches.FancyArrowPatch diff --git a/_downloads/ba9f2780d9fd895bd54de93edb252872/text_rotation_relative_to_line.py b/_downloads/ba9f2780d9fd895bd54de93edb252872/text_rotation_relative_to_line.py deleted file mode 100644 index 572797b82f0..00000000000 --- a/_downloads/ba9f2780d9fd895bd54de93edb252872/text_rotation_relative_to_line.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -============================== -Text Rotation Relative To Line -============================== - -Text objects in matplotlib are normally rotated with respect to the -screen coordinate system (i.e., 45 degrees rotation plots text along a -line that is in between horizontal and vertical no matter how the axes -are changed). However, at times one wants to rotate text with respect -to something on the plot. In this case, the correct angle won't be -the angle of that object in the plot coordinate system, but the angle -that that object APPEARS in the screen coordinate system. This angle -is found by transforming the angle from the plot to the screen -coordinate system, as shown in the example below. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Plot diagonal line (45 degrees) -h = plt.plot(np.arange(0, 10), np.arange(0, 10)) - -# set limits so that it no longer looks on screen to be 45 degrees -plt.xlim([-10, 20]) - -# Locations to plot text -l1 = np.array((1, 1)) -l2 = np.array((5, 5)) - -# Rotate angle -angle = 45 -trans_angle = plt.gca().transData.transform_angles(np.array((45,)), - l2.reshape((1, 2)))[0] - -# Plot text -th1 = plt.text(l1[0], l1[1], 'text not rotated correctly', fontsize=16, - rotation=angle, rotation_mode='anchor') -th2 = plt.text(l2[0], l2[1], 'text rotated correctly', fontsize=16, - rotation=trans_angle, rotation_mode='anchor') - -plt.show() diff --git a/_downloads/ba9f96788a476ef4899bdd16d6ecdf21/spectrum_demo.py b/_downloads/ba9f96788a476ef4899bdd16d6ecdf21/spectrum_demo.py deleted file mode 120000 index 7c03e9e1e2c..00000000000 --- a/_downloads/ba9f96788a476ef4899bdd16d6ecdf21/spectrum_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ba9f96788a476ef4899bdd16d6ecdf21/spectrum_demo.py \ No newline at end of file diff --git a/_downloads/baa469584b6b2a23c32bfc9bc3102ad1/patheffect_demo.py b/_downloads/baa469584b6b2a23c32bfc9bc3102ad1/patheffect_demo.py deleted file mode 100644 index 4455d63cecf..00000000000 --- a/_downloads/baa469584b6b2a23c32bfc9bc3102ad1/patheffect_demo.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -=============== -Patheffect Demo -=============== - -""" -import matplotlib.pyplot as plt -import matplotlib.patheffects as PathEffects -import numpy as np - -plt.figure(figsize=(8, 3)) -ax1 = plt.subplot(131) -ax1.imshow([[1, 2], [2, 3]]) -txt = ax1.annotate("test", (1., 1.), (0., 0), - arrowprops=dict(arrowstyle="->", - connectionstyle="angle3", lw=2), - size=20, ha="center", - path_effects=[PathEffects.withStroke(linewidth=3, - foreground="w")]) -txt.arrow_patch.set_path_effects([ - PathEffects.Stroke(linewidth=5, foreground="w"), - PathEffects.Normal()]) - -pe = [PathEffects.withStroke(linewidth=3, - foreground="w")] -ax1.grid(True, linestyle="-", path_effects=pe) - -ax2 = plt.subplot(132) -arr = np.arange(25).reshape((5, 5)) -ax2.imshow(arr) -cntr = ax2.contour(arr, colors="k") - -plt.setp(cntr.collections, path_effects=[ - PathEffects.withStroke(linewidth=3, foreground="w")]) - -clbls = ax2.clabel(cntr, fmt="%2.0f", use_clabeltext=True) -plt.setp(clbls, path_effects=[ - PathEffects.withStroke(linewidth=3, foreground="w")]) - -# shadow as a path effect -ax3 = plt.subplot(133) -p1, = ax3.plot([0, 1], [0, 1]) -leg = ax3.legend([p1], ["Line 1"], fancybox=True, loc='upper left') -leg.legendPatch.set_path_effects([PathEffects.withSimplePatchShadow()]) - -plt.show() diff --git a/_downloads/baac087495c425fe13a98e1c28743aac/lasso_demo.ipynb b/_downloads/baac087495c425fe13a98e1c28743aac/lasso_demo.ipynb deleted file mode 120000 index 8689af01ee1..00000000000 --- a/_downloads/baac087495c425fe13a98e1c28743aac/lasso_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/baac087495c425fe13a98e1c28743aac/lasso_demo.ipynb \ No newline at end of file diff --git a/_downloads/baac875042f12fcc72d3b920bb074ec4/log_test.ipynb b/_downloads/baac875042f12fcc72d3b920bb074ec4/log_test.ipynb deleted file mode 120000 index e2d06f34d79..00000000000 --- a/_downloads/baac875042f12fcc72d3b920bb074ec4/log_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/baac875042f12fcc72d3b920bb074ec4/log_test.ipynb \ No newline at end of file diff --git a/_downloads/baae154266d887b67087d938bc3f4ac2/anchored_box04.py b/_downloads/baae154266d887b67087d938bc3f4ac2/anchored_box04.py deleted file mode 120000 index 4db0d169828..00000000000 --- a/_downloads/baae154266d887b67087d938bc3f4ac2/anchored_box04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/baae154266d887b67087d938bc3f4ac2/anchored_box04.py \ No newline at end of file diff --git a/_downloads/bab04ba117228a3a5ffa127852032f42/custom_boxstyle01.py b/_downloads/bab04ba117228a3a5ffa127852032f42/custom_boxstyle01.py deleted file mode 100644 index 1b645d94bf5..00000000000 --- a/_downloads/bab04ba117228a3a5ffa127852032f42/custom_boxstyle01.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -================= -Custom Boxstyle01 -================= - -""" -from matplotlib.path import Path - - -def custom_box_style(x0, y0, width, height, mutation_size, mutation_aspect=1): - """ - Given the location and size of the box, return the path of - the box around it. - - - *x0*, *y0*, *width*, *height* : location and size of the box - - *mutation_size* : a reference scale for the mutation. - - *aspect_ratio* : aspect-ration for the mutation. - """ - - # note that we are ignoring mutation_aspect. This is okay in general. - - # padding - mypad = 0.3 - pad = mutation_size * mypad - - # width and height with padding added. - width = width + 2 * pad - height = height + 2 * pad - - # boundary of the padded box - x0, y0 = x0 - pad, y0 - pad - x1, y1 = x0 + width, y0 + height - - cp = [(x0, y0), - (x1, y0), (x1, y1), (x0, y1), - (x0-pad, (y0+y1)/2.), (x0, y0), - (x0, y0)] - - com = [Path.MOVETO, - Path.LINETO, Path.LINETO, Path.LINETO, - Path.LINETO, Path.LINETO, - Path.CLOSEPOLY] - - path = Path(cp, com) - - return path - - -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(3, 3)) -ax.text(0.5, 0.5, "Test", size=30, va="center", ha="center", - bbox=dict(boxstyle=custom_box_style, alpha=0.2)) - -plt.show() diff --git a/_downloads/bab09b4568cd90ac356921951d4c9976/dark_background.py b/_downloads/bab09b4568cd90ac356921951d4c9976/dark_background.py deleted file mode 120000 index 8535ca8be33..00000000000 --- a/_downloads/bab09b4568cd90ac356921951d4c9976/dark_background.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bab09b4568cd90ac356921951d4c9976/dark_background.py \ No newline at end of file diff --git a/_downloads/bab4843756699babb62930efa5ac44d0/barb_demo.ipynb b/_downloads/bab4843756699babb62930efa5ac44d0/barb_demo.ipynb deleted file mode 120000 index 1975a82b867..00000000000 --- a/_downloads/bab4843756699babb62930efa5ac44d0/barb_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bab4843756699babb62930efa5ac44d0/barb_demo.ipynb \ No newline at end of file diff --git a/_downloads/bac3842eb433c4ebdae729c9b1ae782d/contourf_demo.py b/_downloads/bac3842eb433c4ebdae729c9b1ae782d/contourf_demo.py deleted file mode 120000 index d82c73a23ab..00000000000 --- a/_downloads/bac3842eb433c4ebdae729c9b1ae782d/contourf_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bac3842eb433c4ebdae729c9b1ae782d/contourf_demo.py \ No newline at end of file diff --git a/_downloads/baca3c3513a3e3102673c4c4bf6dfd44/colorbar_tick_labelling_demo.ipynb b/_downloads/baca3c3513a3e3102673c4c4bf6dfd44/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index 446480af69a..00000000000 --- a/_downloads/baca3c3513a3e3102673c4c4bf6dfd44/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/baca3c3513a3e3102673c4c4bf6dfd44/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/bachelors_degrees_by_gender.ipynb b/_downloads/bachelors_degrees_by_gender.ipynb deleted file mode 120000 index f2292e72b8b..00000000000 --- a/_downloads/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bachelors_degrees_by_gender.ipynb \ No newline at end of file diff --git a/_downloads/bachelors_degrees_by_gender.py b/_downloads/bachelors_degrees_by_gender.py deleted file mode 120000 index ebfbeb89851..00000000000 --- a/_downloads/bachelors_degrees_by_gender.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bachelors_degrees_by_gender.py \ No newline at end of file diff --git a/_downloads/bad1f7ef31ca0140581c379409e0ac6e/simple_axis_direction03.py b/_downloads/bad1f7ef31ca0140581c379409e0ac6e/simple_axis_direction03.py deleted file mode 100644 index 5185d144ab1..00000000000 --- a/_downloads/bad1f7ef31ca0140581c379409e0ac6e/simple_axis_direction03.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -======================= -Simple Axis Direction03 -======================= - -""" - -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_subplot(ax) - - ax.set_yticks([0.2, 0.8]) - ax.set_xticks([0.2, 0.8]) - - return ax - - -fig = plt.figure(figsize=(5, 2)) -fig.subplots_adjust(wspace=0.4, bottom=0.3) - -ax1 = setup_axes(fig, "121") -ax1.set_xlabel("X-label") -ax1.set_ylabel("Y-label") - -ax1.axis[:].invert_ticklabel_direction() - -ax2 = setup_axes(fig, "122") -ax2.set_xlabel("X-label") -ax2.set_ylabel("Y-label") - -ax2.axis[:].major_ticks.set_tick_out(True) - -plt.show() diff --git a/_downloads/bad4569afffc59fab7369853eda950d9/named_colors.ipynb b/_downloads/bad4569afffc59fab7369853eda950d9/named_colors.ipynb deleted file mode 120000 index 6cec6310f8b..00000000000 --- a/_downloads/bad4569afffc59fab7369853eda950d9/named_colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bad4569afffc59fab7369853eda950d9/named_colors.ipynb \ No newline at end of file diff --git a/_downloads/baf0d3efaae02907076c0f40ca7926b9/date_index_formatter.ipynb b/_downloads/baf0d3efaae02907076c0f40ca7926b9/date_index_formatter.ipynb deleted file mode 120000 index 39c941d1309..00000000000 --- a/_downloads/baf0d3efaae02907076c0f40ca7926b9/date_index_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/baf0d3efaae02907076c0f40ca7926b9/date_index_formatter.ipynb \ No newline at end of file diff --git a/_downloads/baff8c83ff3de78d9041ea2c54aab689/whats_new_98_4_fill_between.py b/_downloads/baff8c83ff3de78d9041ea2c54aab689/whats_new_98_4_fill_between.py deleted file mode 100644 index 8719a5428e0..00000000000 --- a/_downloads/baff8c83ff3de78d9041ea2c54aab689/whats_new_98_4_fill_between.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -============ -Fill Between -============ - -Fill the area between two curves. -""" -import matplotlib.pyplot as plt -import numpy as np - -x = np.arange(-5, 5, 0.01) -y1 = -5*x*x + x + 10 -y2 = 5*x*x + x - -fig, ax = plt.subplots() -ax.plot(x, y1, x, y2, color='black') -ax.fill_between(x, y1, y2, where=y2 >y1, facecolor='yellow', alpha=0.5) -ax.fill_between(x, y1, y2, where=y2 <=y1, facecolor='red', alpha=0.5) -ax.set_title('Fill Between') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.fill_between diff --git a/_downloads/bar_demo2.ipynb b/_downloads/bar_demo2.ipynb deleted file mode 120000 index 8e190c19b48..00000000000 --- a/_downloads/bar_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bar_demo2.ipynb \ No newline at end of file diff --git a/_downloads/bar_demo2.py b/_downloads/bar_demo2.py deleted file mode 120000 index 9eb3a109134..00000000000 --- a/_downloads/bar_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bar_demo2.py \ No newline at end of file diff --git a/_downloads/bar_stacked.ipynb b/_downloads/bar_stacked.ipynb deleted file mode 120000 index d7fbfcab0cc..00000000000 --- a/_downloads/bar_stacked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bar_stacked.ipynb \ No newline at end of file diff --git a/_downloads/bar_stacked.py b/_downloads/bar_stacked.py deleted file mode 120000 index 8265d76bfd7..00000000000 --- a/_downloads/bar_stacked.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bar_stacked.py \ No newline at end of file diff --git a/_downloads/bar_unit_demo.ipynb b/_downloads/bar_unit_demo.ipynb deleted file mode 120000 index 41b4b34b62d..00000000000 --- a/_downloads/bar_unit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bar_unit_demo.ipynb \ No newline at end of file diff --git a/_downloads/bar_unit_demo.py b/_downloads/bar_unit_demo.py deleted file mode 120000 index 29a197ba5cf..00000000000 --- a/_downloads/bar_unit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bar_unit_demo.py \ No newline at end of file diff --git a/_downloads/barb_demo.ipynb b/_downloads/barb_demo.ipynb deleted file mode 120000 index 1632e6934f9..00000000000 --- a/_downloads/barb_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barb_demo.ipynb \ No newline at end of file diff --git a/_downloads/barb_demo.py b/_downloads/barb_demo.py deleted file mode 120000 index f57941c5e95..00000000000 --- a/_downloads/barb_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barb_demo.py \ No newline at end of file diff --git a/_downloads/barchart.ipynb b/_downloads/barchart.ipynb deleted file mode 120000 index 9a835f3ad06..00000000000 --- a/_downloads/barchart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barchart.ipynb \ No newline at end of file diff --git a/_downloads/barchart.py b/_downloads/barchart.py deleted file mode 120000 index b8d28e86997..00000000000 --- a/_downloads/barchart.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barchart.py \ No newline at end of file diff --git a/_downloads/barchart_demo.ipynb b/_downloads/barchart_demo.ipynb deleted file mode 120000 index b85d093b3d7..00000000000 --- a/_downloads/barchart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barchart_demo.ipynb \ No newline at end of file diff --git a/_downloads/barchart_demo.py b/_downloads/barchart_demo.py deleted file mode 120000 index 21a21d089c5..00000000000 --- a/_downloads/barchart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barchart_demo.py \ No newline at end of file diff --git a/_downloads/barcode_demo.ipynb b/_downloads/barcode_demo.ipynb deleted file mode 120000 index 0a1cd06ff3d..00000000000 --- a/_downloads/barcode_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barcode_demo.ipynb \ No newline at end of file diff --git a/_downloads/barcode_demo.py b/_downloads/barcode_demo.py deleted file mode 120000 index ac9f82f7338..00000000000 --- a/_downloads/barcode_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barcode_demo.py \ No newline at end of file diff --git a/_downloads/barh.ipynb b/_downloads/barh.ipynb deleted file mode 120000 index 10e410d3691..00000000000 --- a/_downloads/barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barh.ipynb \ No newline at end of file diff --git a/_downloads/barh.py b/_downloads/barh.py deleted file mode 120000 index 7e9c22c65f4..00000000000 --- a/_downloads/barh.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/barh.py \ No newline at end of file diff --git a/_downloads/bars3d.ipynb b/_downloads/bars3d.ipynb deleted file mode 120000 index fa67c0099af..00000000000 --- a/_downloads/bars3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bars3d.ipynb \ No newline at end of file diff --git a/_downloads/bars3d.py b/_downloads/bars3d.py deleted file mode 120000 index d006c2110dd..00000000000 --- a/_downloads/bars3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bars3d.py \ No newline at end of file diff --git a/_downloads/basic_example.ipynb b/_downloads/basic_example.ipynb deleted file mode 120000 index 9306a347ca4..00000000000 --- a/_downloads/basic_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/basic_example.ipynb \ No newline at end of file diff --git a/_downloads/basic_example.py b/_downloads/basic_example.py deleted file mode 120000 index ad512918ec1..00000000000 --- a/_downloads/basic_example.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/basic_example.py \ No newline at end of file diff --git a/_downloads/basic_example_writer_sgskip.ipynb b/_downloads/basic_example_writer_sgskip.ipynb deleted file mode 120000 index 1d79973e3aa..00000000000 --- a/_downloads/basic_example_writer_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/basic_example_writer_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/basic_example_writer_sgskip.py b/_downloads/basic_example_writer_sgskip.py deleted file mode 120000 index cf83aa5bc0a..00000000000 --- a/_downloads/basic_example_writer_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/basic_example_writer_sgskip.py \ No newline at end of file diff --git a/_downloads/basic_units.ipynb b/_downloads/basic_units.ipynb deleted file mode 120000 index 3498b6daabf..00000000000 --- a/_downloads/basic_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/basic_units.ipynb \ No newline at end of file diff --git a/_downloads/basic_units.py b/_downloads/basic_units.py deleted file mode 120000 index 41b69ca62eb..00000000000 --- a/_downloads/basic_units.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/basic_units.py \ No newline at end of file diff --git a/_downloads/bayes_update.ipynb b/_downloads/bayes_update.ipynb deleted file mode 120000 index 1e8638ec67b..00000000000 --- a/_downloads/bayes_update.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bayes_update.ipynb \ No newline at end of file diff --git a/_downloads/bayes_update.py b/_downloads/bayes_update.py deleted file mode 120000 index 8b436bd2fe5..00000000000 --- a/_downloads/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bayes_update.py \ No newline at end of file diff --git a/_downloads/bayes_update_sgskip.ipynb b/_downloads/bayes_update_sgskip.ipynb deleted file mode 120000 index 3b8f864143a..00000000000 --- a/_downloads/bayes_update_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/bayes_update_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/bayes_update_sgskip.py b/_downloads/bayes_update_sgskip.py deleted file mode 120000 index 6a05beac3a1..00000000000 --- a/_downloads/bayes_update_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/bayes_update_sgskip.py \ No newline at end of file diff --git a/_downloads/bb0580289006b321b47cf070fd5c1bfb/simple_axes_divider3.py b/_downloads/bb0580289006b321b47cf070fd5c1bfb/simple_axes_divider3.py deleted file mode 120000 index 6955fdafdce..00000000000 --- a/_downloads/bb0580289006b321b47cf070fd5c1bfb/simple_axes_divider3.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bb0580289006b321b47cf070fd5c1bfb/simple_axes_divider3.py \ No newline at end of file diff --git a/_downloads/bb09451c41e3b1bd8f2018d0d08ef6ef/fonts_demo_kw.ipynb b/_downloads/bb09451c41e3b1bd8f2018d0d08ef6ef/fonts_demo_kw.ipynb deleted file mode 120000 index fd927c8844d..00000000000 --- a/_downloads/bb09451c41e3b1bd8f2018d0d08ef6ef/fonts_demo_kw.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bb09451c41e3b1bd8f2018d0d08ef6ef/fonts_demo_kw.ipynb \ No newline at end of file diff --git a/_downloads/bb1cf40092dfbcfe40ec08b6f35d1ae0/boxplot_demo_pyplot.py b/_downloads/bb1cf40092dfbcfe40ec08b6f35d1ae0/boxplot_demo_pyplot.py deleted file mode 100644 index 26e4fcd9b72..00000000000 --- a/_downloads/bb1cf40092dfbcfe40ec08b6f35d1ae0/boxplot_demo_pyplot.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -============ -Boxplot Demo -============ - -Example boxplot code -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# fake up some data -spread = np.random.rand(50) * 100 -center = np.ones(25) * 50 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -data = np.concatenate((spread, center, flier_high, flier_low)) - -############################################################################### - -fig1, ax1 = plt.subplots() -ax1.set_title('Basic Plot') -ax1.boxplot(data) - -############################################################################### - -fig2, ax2 = plt.subplots() -ax2.set_title('Notched boxes') -ax2.boxplot(data, notch=True) - -############################################################################### - -green_diamond = dict(markerfacecolor='g', marker='D') -fig3, ax3 = plt.subplots() -ax3.set_title('Changed Outlier Symbols') -ax3.boxplot(data, flierprops=green_diamond) - -############################################################################### - -fig4, ax4 = plt.subplots() -ax4.set_title('Hide Outlier Points') -ax4.boxplot(data, showfliers=False) - -############################################################################### - -red_square = dict(markerfacecolor='r', marker='s') -fig5, ax5 = plt.subplots() -ax5.set_title('Horizontal Boxes') -ax5.boxplot(data, vert=False, flierprops=red_square) - -############################################################################### - -fig6, ax6 = plt.subplots() -ax6.set_title('Shorter Whisker Length') -ax6.boxplot(data, flierprops=red_square, vert=False, whis=0.75) - -############################################################################### -# Fake up some more data - -spread = np.random.rand(50) * 100 -center = np.ones(25) * 40 -flier_high = np.random.rand(10) * 100 + 100 -flier_low = np.random.rand(10) * -100 -d2 = np.concatenate((spread, center, flier_high, flier_low)) -data.shape = (-1, 1) -d2.shape = (-1, 1) - -############################################################################### -# Making a 2-D array only works if all the columns are the -# same length. If they are not, then use a list instead. -# This is actually more efficient because boxplot converts -# a 2-D array into a list of vectors internally anyway. - -data = [data, d2, d2[::2,0]] -fig7, ax7 = plt.subplots() -ax7.set_title('Multiple Samples with Different sizes') -ax7.boxplot(data) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.boxplot -matplotlib.pyplot.boxplot diff --git a/_downloads/bb2c81da08385d80d3f8b5d14b2dd53e/watermark_text.ipynb b/_downloads/bb2c81da08385d80d3f8b5d14b2dd53e/watermark_text.ipynb deleted file mode 120000 index 02f24c6a4ed..00000000000 --- a/_downloads/bb2c81da08385d80d3f8b5d14b2dd53e/watermark_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bb2c81da08385d80d3f8b5d14b2dd53e/watermark_text.ipynb \ No newline at end of file diff --git a/_downloads/bb464c5502990db5638eeb7dd7986256/pcolormesh_levels.py b/_downloads/bb464c5502990db5638eeb7dd7986256/pcolormesh_levels.py deleted file mode 120000 index bd1e6a0a5e2..00000000000 --- a/_downloads/bb464c5502990db5638eeb7dd7986256/pcolormesh_levels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bb464c5502990db5638eeb7dd7986256/pcolormesh_levels.py \ No newline at end of file diff --git a/_downloads/bb65ea378c226861ef36d7e60f1c2afc/boxplot_demo.py b/_downloads/bb65ea378c226861ef36d7e60f1c2afc/boxplot_demo.py deleted file mode 120000 index 20a5ce37cce..00000000000 --- a/_downloads/bb65ea378c226861ef36d7e60f1c2afc/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bb65ea378c226861ef36d7e60f1c2afc/boxplot_demo.py \ No newline at end of file diff --git a/_downloads/bb682f022912692f490c5c3e20e0b35b/simple_axisline.py b/_downloads/bb682f022912692f490c5c3e20e0b35b/simple_axisline.py deleted file mode 120000 index cf8e0f29d38..00000000000 --- a/_downloads/bb682f022912692f490c5c3e20e0b35b/simple_axisline.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bb682f022912692f490c5c3e20e0b35b/simple_axisline.py \ No newline at end of file diff --git a/_downloads/bb685ed192838067de1007e8757d139f/image_slices_viewer.ipynb b/_downloads/bb685ed192838067de1007e8757d139f/image_slices_viewer.ipynb deleted file mode 100644 index 069415a1a7a..00000000000 --- a/_downloads/bb685ed192838067de1007e8757d139f/image_slices_viewer.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Slices Viewer\n\n\nScroll through 2D image slices of a 3D array.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nclass IndexTracker(object):\n def __init__(self, ax, X):\n self.ax = ax\n ax.set_title('use scroll wheel to navigate images')\n\n self.X = X\n rows, cols, self.slices = X.shape\n self.ind = self.slices//2\n\n self.im = ax.imshow(self.X[:, :, self.ind])\n self.update()\n\n def onscroll(self, event):\n print(\"%s %s\" % (event.button, event.step))\n if event.button == 'up':\n self.ind = (self.ind + 1) % self.slices\n else:\n self.ind = (self.ind - 1) % self.slices\n self.update()\n\n def update(self):\n self.im.set_data(self.X[:, :, self.ind])\n self.ax.set_ylabel('slice %s' % self.ind)\n self.im.axes.figure.canvas.draw()\n\n\nfig, ax = plt.subplots(1, 1)\n\nX = np.random.rand(20, 20, 40)\n\ntracker = IndexTracker(ax, X)\n\n\nfig.canvas.mpl_connect('scroll_event', tracker.onscroll)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bb6e7ea004dfb464715c1ca53e8469cf/simple_axesgrid2.ipynb b/_downloads/bb6e7ea004dfb464715c1ca53e8469cf/simple_axesgrid2.ipynb deleted file mode 120000 index d6d92d9b9cb..00000000000 --- a/_downloads/bb6e7ea004dfb464715c1ca53e8469cf/simple_axesgrid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bb6e7ea004dfb464715c1ca53e8469cf/simple_axesgrid2.ipynb \ No newline at end of file diff --git a/_downloads/bb75719931ad5e5d4152de655eb04983/polys3d.py b/_downloads/bb75719931ad5e5d4152de655eb04983/polys3d.py deleted file mode 120000 index 56599a0373e..00000000000 --- a/_downloads/bb75719931ad5e5d4152de655eb04983/polys3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bb75719931ad5e5d4152de655eb04983/polys3d.py \ No newline at end of file diff --git a/_downloads/bb7e4b0e098c81335bb5c1c659516c02/image_zcoord.ipynb b/_downloads/bb7e4b0e098c81335bb5c1c659516c02/image_zcoord.ipynb deleted file mode 120000 index 589c4ceaf68..00000000000 --- a/_downloads/bb7e4b0e098c81335bb5c1c659516c02/image_zcoord.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bb7e4b0e098c81335bb5c1c659516c02/image_zcoord.ipynb \ No newline at end of file diff --git a/_downloads/bb89062d28438a7995e8aa78ea9b04dc/surface3d_radial.py b/_downloads/bb89062d28438a7995e8aa78ea9b04dc/surface3d_radial.py deleted file mode 100644 index 521f6195330..00000000000 --- a/_downloads/bb89062d28438a7995e8aa78ea9b04dc/surface3d_radial.py +++ /dev/null @@ -1,41 +0,0 @@ -''' -================================= -3D surface with polar coordinates -================================= - -Demonstrates plotting a surface defined in polar coordinates. -Uses the reversed version of the YlGnBu color map. -Also demonstrates writing axis labels with latex math mode. - -Example contributed by Armin Moser. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Create the mesh in polar coordinates and compute corresponding Z. -r = np.linspace(0, 1.25, 50) -p = np.linspace(0, 2*np.pi, 50) -R, P = np.meshgrid(r, p) -Z = ((R**2 - 1)**2) - -# Express the mesh in the cartesian system. -X, Y = R*np.cos(P), R*np.sin(P) - -# Plot the surface. -ax.plot_surface(X, Y, Z, cmap=plt.cm.YlGnBu_r) - -# Tweak the limits and add latex math labels. -ax.set_zlim(0, 1) -ax.set_xlabel(r'$\phi_\mathrm{real}$') -ax.set_ylabel(r'$\phi_\mathrm{im}$') -ax.set_zlabel(r'$V(\phi)$') - -plt.show() diff --git a/_downloads/bb8ab997a05999ca386c67a62a0dbf86/barh.ipynb b/_downloads/bb8ab997a05999ca386c67a62a0dbf86/barh.ipynb deleted file mode 120000 index b5aaf8e7ce4..00000000000 --- a/_downloads/bb8ab997a05999ca386c67a62a0dbf86/barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bb8ab997a05999ca386c67a62a0dbf86/barh.ipynb \ No newline at end of file diff --git a/_downloads/bb9303d7a1c341aaf403bf82d17eede4/table_demo.ipynb b/_downloads/bb9303d7a1c341aaf403bf82d17eede4/table_demo.ipynb deleted file mode 120000 index b2a0596c0e2..00000000000 --- a/_downloads/bb9303d7a1c341aaf403bf82d17eede4/table_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bb9303d7a1c341aaf403bf82d17eede4/table_demo.ipynb \ No newline at end of file diff --git a/_downloads/bb9a1742d6f7c46a133b5967a2e07e28/fonts_demo.py b/_downloads/bb9a1742d6f7c46a133b5967a2e07e28/fonts_demo.py deleted file mode 100644 index 1aa38dcbcf3..00000000000 --- a/_downloads/bb9a1742d6f7c46a133b5967a2e07e28/fonts_demo.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -================================== -Fonts demo (object-oriented style) -================================== - -Set font properties using setters. - -See :doc:`fonts_demo_kw` to achieve the same effect using kwargs. -""" - -from matplotlib.font_manager import FontProperties -import matplotlib.pyplot as plt - -font0 = FontProperties() -alignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'} -# Show family options - -families = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace'] - -font1 = font0.copy() -font1.set_size('large') - -t = plt.figtext(0.1, 0.9, 'family', fontproperties=font1, **alignment) - -yp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2] - -for k, family in enumerate(families): - font = font0.copy() - font.set_family(family) - t = plt.figtext(0.1, yp[k], family, fontproperties=font, **alignment) - -# Show style options - -styles = ['normal', 'italic', 'oblique'] - -t = plt.figtext(0.3, 0.9, 'style', fontproperties=font1, **alignment) - -for k, style in enumerate(styles): - font = font0.copy() - font.set_family('sans-serif') - font.set_style(style) - t = plt.figtext(0.3, yp[k], style, fontproperties=font, **alignment) - -# Show variant options - -variants = ['normal', 'small-caps'] - -t = plt.figtext(0.5, 0.9, 'variant', fontproperties=font1, **alignment) - -for k, variant in enumerate(variants): - font = font0.copy() - font.set_family('serif') - font.set_variant(variant) - t = plt.figtext(0.5, yp[k], variant, fontproperties=font, **alignment) - -# Show weight options - -weights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black'] - -t = plt.figtext(0.7, 0.9, 'weight', fontproperties=font1, **alignment) - -for k, weight in enumerate(weights): - font = font0.copy() - font.set_weight(weight) - t = plt.figtext(0.7, yp[k], weight, fontproperties=font, **alignment) - -# Show size options - -sizes = ['xx-small', 'x-small', 'small', 'medium', 'large', - 'x-large', 'xx-large'] - -t = plt.figtext(0.9, 0.9, 'size', fontproperties=font1, **alignment) - -for k, size in enumerate(sizes): - font = font0.copy() - font.set_size(size) - t = plt.figtext(0.9, yp[k], size, fontproperties=font, **alignment) - -# Show bold italic - -font = font0.copy() -font.set_style('italic') -font.set_weight('bold') -font.set_size('x-small') -t = plt.figtext(0.3, 0.1, 'bold italic', fontproperties=font, **alignment) - -font = font0.copy() -font.set_style('italic') -font.set_weight('bold') -font.set_size('medium') -t = plt.figtext(0.3, 0.2, 'bold italic', fontproperties=font, **alignment) - -font = font0.copy() -font.set_style('italic') -font.set_weight('bold') -font.set_size('x-large') -t = plt.figtext(-0.4, 0.3, 'bold italic', fontproperties=font, **alignment) - -plt.show() diff --git a/_downloads/bb9bda33299d5afc47a30211451d3ace/demo_colorbar_of_inset_axes.ipynb b/_downloads/bb9bda33299d5afc47a30211451d3ace/demo_colorbar_of_inset_axes.ipynb deleted file mode 120000 index 00cc2193fae..00000000000 --- a/_downloads/bb9bda33299d5afc47a30211451d3ace/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bb9bda33299d5afc47a30211451d3ace/demo_colorbar_of_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/bbac55c7ae300c2806f1e94719771826/pipong.ipynb b/_downloads/bbac55c7ae300c2806f1e94719771826/pipong.ipynb deleted file mode 120000 index 32cea84c93b..00000000000 --- a/_downloads/bbac55c7ae300c2806f1e94719771826/pipong.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bbac55c7ae300c2806f1e94719771826/pipong.ipynb \ No newline at end of file diff --git a/_downloads/bbbb011a91d0fa03016711e11dec1aeb/custom_boxstyle01.py b/_downloads/bbbb011a91d0fa03016711e11dec1aeb/custom_boxstyle01.py deleted file mode 120000 index 6aa5cfeb075..00000000000 --- a/_downloads/bbbb011a91d0fa03016711e11dec1aeb/custom_boxstyle01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bbbb011a91d0fa03016711e11dec1aeb/custom_boxstyle01.py \ No newline at end of file diff --git a/_downloads/bbbe892a39f5c720d3cae373dc382499/contour3d_2.py b/_downloads/bbbe892a39f5c720d3cae373dc382499/contour3d_2.py deleted file mode 120000 index 998b5b257be..00000000000 --- a/_downloads/bbbe892a39f5c720d3cae373dc382499/contour3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bbbe892a39f5c720d3cae373dc382499/contour3d_2.py \ No newline at end of file diff --git a/_downloads/bbbece85102c8f1d3acc24acf859b2ca/colormaps.ipynb b/_downloads/bbbece85102c8f1d3acc24acf859b2ca/colormaps.ipynb deleted file mode 120000 index ab398ca271a..00000000000 --- a/_downloads/bbbece85102c8f1d3acc24acf859b2ca/colormaps.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bbbece85102c8f1d3acc24acf859b2ca/colormaps.ipynb \ No newline at end of file diff --git a/_downloads/bbc514f3a1016c7b7672428cb8502dbf/quiver.py b/_downloads/bbc514f3a1016c7b7672428cb8502dbf/quiver.py deleted file mode 120000 index 422b37f4e5c..00000000000 --- a/_downloads/bbc514f3a1016c7b7672428cb8502dbf/quiver.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bbc514f3a1016c7b7672428cb8502dbf/quiver.py \ No newline at end of file diff --git a/_downloads/bbcff3935c7dec40c11e344ba651241d/pie_demo2.ipynb b/_downloads/bbcff3935c7dec40c11e344ba651241d/pie_demo2.ipynb deleted file mode 100644 index d464f3b2bb9..00000000000 --- a/_downloads/bbcff3935c7dec40c11e344ba651241d/pie_demo2.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pie Demo2\n\n\nMake a pie charts using :meth:`~.axes.Axes.pie`.\n\nThis example demonstrates some pie chart features like labels, varying size,\nautolabeling the percentage, offsetting a slice and adding a shadow.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Some data\nlabels = 'Frogs', 'Hogs', 'Dogs', 'Logs'\nfracs = [15, 30, 45, 10]\n\n# Make figure and axes\nfig, axs = plt.subplots(2, 2)\n\n# A standard pie plot\naxs[0, 0].pie(fracs, labels=labels, autopct='%1.1f%%', shadow=True)\n\n# Shift the second slice using explode\naxs[0, 1].pie(fracs, labels=labels, autopct='%.0f%%', shadow=True,\n explode=(0, 0.1, 0, 0))\n\n# Adapt radius and text size for a smaller pie\npatches, texts, autotexts = axs[1, 0].pie(fracs, labels=labels,\n autopct='%.0f%%',\n textprops={'size': 'smaller'},\n shadow=True, radius=0.5)\n# Make percent texts even smaller\nplt.setp(autotexts, size='x-small')\nautotexts[0].set_color('white')\n\n# Use a smaller explode and turn of the shadow for better visibility\npatches, texts, autotexts = axs[1, 1].pie(fracs, labels=labels,\n autopct='%.0f%%',\n textprops={'size': 'smaller'},\n shadow=False, radius=0.5,\n explode=(0, 0.05, 0, 0))\nplt.setp(autotexts, size='x-small')\nautotexts[0].set_color('white')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bbd166902d85a544106970577c33fa8d/polar_demo.ipynb b/_downloads/bbd166902d85a544106970577c33fa8d/polar_demo.ipynb deleted file mode 120000 index 02ff95abc20..00000000000 --- a/_downloads/bbd166902d85a544106970577c33fa8d/polar_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bbd166902d85a544106970577c33fa8d/polar_demo.ipynb \ No newline at end of file diff --git a/_downloads/bbd317c257d492eba8304bb635bd3975/polygon_selector_demo.ipynb b/_downloads/bbd317c257d492eba8304bb635bd3975/polygon_selector_demo.ipynb deleted file mode 120000 index 46dd4de6263..00000000000 --- a/_downloads/bbd317c257d492eba8304bb635bd3975/polygon_selector_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bbd317c257d492eba8304bb635bd3975/polygon_selector_demo.ipynb \ No newline at end of file diff --git a/_downloads/bbda3a7019f5b486b28573b3ad78b241/customized_violin.py b/_downloads/bbda3a7019f5b486b28573b3ad78b241/customized_violin.py deleted file mode 120000 index 8359a6bc0a6..00000000000 --- a/_downloads/bbda3a7019f5b486b28573b3ad78b241/customized_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bbda3a7019f5b486b28573b3ad78b241/customized_violin.py \ No newline at end of file diff --git a/_downloads/bbdd1c97f4d841f93b2eba494bb42975/fourier_demo_wx_sgskip.py b/_downloads/bbdd1c97f4d841f93b2eba494bb42975/fourier_demo_wx_sgskip.py deleted file mode 120000 index e03fd56fb7a..00000000000 --- a/_downloads/bbdd1c97f4d841f93b2eba494bb42975/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bbdd1c97f4d841f93b2eba494bb42975/fourier_demo_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/bbe078b8650119cc74649a38bfa47f87/scatter_symbol.py b/_downloads/bbe078b8650119cc74649a38bfa47f87/scatter_symbol.py deleted file mode 120000 index de39576b815..00000000000 --- a/_downloads/bbe078b8650119cc74649a38bfa47f87/scatter_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bbe078b8650119cc74649a38bfa47f87/scatter_symbol.py \ No newline at end of file diff --git a/_downloads/bbec0b783ea6731a808986c5abe3a307/errorbar_limits_simple.ipynb b/_downloads/bbec0b783ea6731a808986c5abe3a307/errorbar_limits_simple.ipynb deleted file mode 120000 index c0004fda7f2..00000000000 --- a/_downloads/bbec0b783ea6731a808986c5abe3a307/errorbar_limits_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bbec0b783ea6731a808986c5abe3a307/errorbar_limits_simple.ipynb \ No newline at end of file diff --git a/_downloads/bbfbea86f9cb538599d83b50ca226803/pyplot_simple.py b/_downloads/bbfbea86f9cb538599d83b50ca226803/pyplot_simple.py deleted file mode 120000 index 736a4d11285..00000000000 --- a/_downloads/bbfbea86f9cb538599d83b50ca226803/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bbfbea86f9cb538599d83b50ca226803/pyplot_simple.py \ No newline at end of file diff --git a/_downloads/bbox_intersect.ipynb b/_downloads/bbox_intersect.ipynb deleted file mode 120000 index 85785942f9a..00000000000 --- a/_downloads/bbox_intersect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bbox_intersect.ipynb \ No newline at end of file diff --git a/_downloads/bbox_intersect.py b/_downloads/bbox_intersect.py deleted file mode 120000 index b0e9ed9903c..00000000000 --- a/_downloads/bbox_intersect.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bbox_intersect.py \ No newline at end of file diff --git a/_downloads/bc0d357bec3bac877f8d63dcb4b8a67a/simple_axis_pad.ipynb b/_downloads/bc0d357bec3bac877f8d63dcb4b8a67a/simple_axis_pad.ipynb deleted file mode 120000 index 5c64615544e..00000000000 --- a/_downloads/bc0d357bec3bac877f8d63dcb4b8a67a/simple_axis_pad.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bc0d357bec3bac877f8d63dcb4b8a67a/simple_axis_pad.ipynb \ No newline at end of file diff --git a/_downloads/bc1121e0b9de8da53e1ddfd483fd7e32/whats_new_98_4_legend.ipynb b/_downloads/bc1121e0b9de8da53e1ddfd483fd7e32/whats_new_98_4_legend.ipynb deleted file mode 120000 index eed4cc14826..00000000000 --- a/_downloads/bc1121e0b9de8da53e1ddfd483fd7e32/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bc1121e0b9de8da53e1ddfd483fd7e32/whats_new_98_4_legend.ipynb \ No newline at end of file diff --git a/_downloads/bc13e7f47de32e454f938d22ed01e78f/animation_demo.ipynb b/_downloads/bc13e7f47de32e454f938d22ed01e78f/animation_demo.ipynb deleted file mode 120000 index 7efeaf37755..00000000000 --- a/_downloads/bc13e7f47de32e454f938d22ed01e78f/animation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bc13e7f47de32e454f938d22ed01e78f/animation_demo.ipynb \ No newline at end of file diff --git a/_downloads/bc13f85b4da5e97453c9669e8250a231/spectrum_demo.py b/_downloads/bc13f85b4da5e97453c9669e8250a231/spectrum_demo.py deleted file mode 120000 index 8d6a5da0478..00000000000 --- a/_downloads/bc13f85b4da5e97453c9669e8250a231/spectrum_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bc13f85b4da5e97453c9669e8250a231/spectrum_demo.py \ No newline at end of file diff --git a/_downloads/bc15cb912cd995fdd1a278ab73fd7f87/tricontour.ipynb b/_downloads/bc15cb912cd995fdd1a278ab73fd7f87/tricontour.ipynb deleted file mode 120000 index bfd10653da3..00000000000 --- a/_downloads/bc15cb912cd995fdd1a278ab73fd7f87/tricontour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bc15cb912cd995fdd1a278ab73fd7f87/tricontour.ipynb \ No newline at end of file diff --git a/_downloads/bc391bd76cd0ce583df46d3cdc6c25ae/hinton_demo.ipynb b/_downloads/bc391bd76cd0ce583df46d3cdc6c25ae/hinton_demo.ipynb deleted file mode 100644 index a888df991d5..00000000000 --- a/_downloads/bc391bd76cd0ce583df46d3cdc6c25ae/hinton_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hinton diagrams\n\n\nHinton diagrams are useful for visualizing the values of a 2D array (e.g.\na weight matrix): Positive and negative values are represented by white and\nblack squares, respectively, and the size of each square represents the\nmagnitude of each value.\n\nInitial idea from David Warde-Farley on the SciPy Cookbook\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef hinton(matrix, max_weight=None, ax=None):\n \"\"\"Draw Hinton diagram for visualizing a weight matrix.\"\"\"\n ax = ax if ax is not None else plt.gca()\n\n if not max_weight:\n max_weight = 2 ** np.ceil(np.log(np.abs(matrix).max()) / np.log(2))\n\n ax.patch.set_facecolor('gray')\n ax.set_aspect('equal', 'box')\n ax.xaxis.set_major_locator(plt.NullLocator())\n ax.yaxis.set_major_locator(plt.NullLocator())\n\n for (x, y), w in np.ndenumerate(matrix):\n color = 'white' if w > 0 else 'black'\n size = np.sqrt(np.abs(w) / max_weight)\n rect = plt.Rectangle([x - size / 2, y - size / 2], size, size,\n facecolor=color, edgecolor=color)\n ax.add_patch(rect)\n\n ax.autoscale_view()\n ax.invert_yaxis()\n\n\nif __name__ == '__main__':\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n\n hinton(np.random.rand(20, 20) - 0.5)\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bc3953873438ab59ba14ccf3ed0008b3/voxels_rgb.ipynb b/_downloads/bc3953873438ab59ba14ccf3ed0008b3/voxels_rgb.ipynb deleted file mode 120000 index 32ebde29eb6..00000000000 --- a/_downloads/bc3953873438ab59ba14ccf3ed0008b3/voxels_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bc3953873438ab59ba14ccf3ed0008b3/voxels_rgb.ipynb \ No newline at end of file diff --git a/_downloads/bc42b72aad27272d15fce1c6810b0d42/share_axis_lims_views.py b/_downloads/bc42b72aad27272d15fce1c6810b0d42/share_axis_lims_views.py deleted file mode 120000 index e7189b64bf6..00000000000 --- a/_downloads/bc42b72aad27272d15fce1c6810b0d42/share_axis_lims_views.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bc42b72aad27272d15fce1c6810b0d42/share_axis_lims_views.py \ No newline at end of file diff --git a/_downloads/bc4613730e08241f5ee7da6455792a0f/scatter_star_poly.py b/_downloads/bc4613730e08241f5ee7da6455792a0f/scatter_star_poly.py deleted file mode 100644 index 6dafbf27c83..00000000000 --- a/_downloads/bc4613730e08241f5ee7da6455792a0f/scatter_star_poly.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -================= -Scatter Star Poly -================= - -Create multiple scatter plots with different -star symbols. - -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x = np.random.rand(10) -y = np.random.rand(10) -z = np.sqrt(x**2 + y**2) - -plt.subplot(321) -plt.scatter(x, y, s=80, c=z, marker=">") - -plt.subplot(322) -plt.scatter(x, y, s=80, c=z, marker=(5, 0)) - -verts = np.array([[-1, -1], [1, -1], [1, 1], [-1, -1]]) -plt.subplot(323) -plt.scatter(x, y, s=80, c=z, marker=verts) - -plt.subplot(324) -plt.scatter(x, y, s=80, c=z, marker=(5, 1)) - -plt.subplot(325) -plt.scatter(x, y, s=80, c=z, marker='+') - -plt.subplot(326) -plt.scatter(x, y, s=80, c=z, marker=(5, 2)) - -plt.show() diff --git a/_downloads/bc46f093ed322c4e750c036c1ef62cf0/data_browser.ipynb b/_downloads/bc46f093ed322c4e750c036c1ef62cf0/data_browser.ipynb deleted file mode 120000 index 5969f4be9e7..00000000000 --- a/_downloads/bc46f093ed322c4e750c036c1ef62cf0/data_browser.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bc46f093ed322c4e750c036c1ef62cf0/data_browser.ipynb \ No newline at end of file diff --git a/_downloads/bc5db1e97f59350a1c10f9d1e39a8da1/whats_new_98_4_fancy.py b/_downloads/bc5db1e97f59350a1c10f9d1e39a8da1/whats_new_98_4_fancy.py deleted file mode 100644 index d611ba9417a..00000000000 --- a/_downloads/bc5db1e97f59350a1c10f9d1e39a8da1/whats_new_98_4_fancy.py +++ /dev/null @@ -1,80 +0,0 @@ -""" -====================== -Whats New 0.98.4 Fancy -====================== - -Create fancy box and arrow styles. -""" -import matplotlib.patches as mpatch -import matplotlib.pyplot as plt - -figheight = 8 -fig = plt.figure(figsize=(9, figheight), dpi=80) -fontsize = 0.4 * fig.dpi - -def make_boxstyles(ax): - styles = mpatch.BoxStyle.get_styles() - - for i, (stylename, styleclass) in enumerate(sorted(styles.items())): - ax.text(0.5, (float(len(styles)) - 0.5 - i)/len(styles), stylename, - ha="center", - size=fontsize, - transform=ax.transAxes, - bbox=dict(boxstyle=stylename, fc="w", ec="k")) - -def make_arrowstyles(ax): - styles = mpatch.ArrowStyle.get_styles() - - ax.set_xlim(0, 4) - ax.set_ylim(0, figheight) - - for i, (stylename, styleclass) in enumerate(sorted(styles.items())): - y = (float(len(styles)) - 0.25 - i) # /figheight - p = mpatch.Circle((3.2, y), 0.2, fc="w") - ax.add_patch(p) - - ax.annotate(stylename, (3.2, y), - (2., y), - # xycoords="figure fraction", textcoords="figure fraction", - ha="right", va="center", - size=fontsize, - arrowprops=dict(arrowstyle=stylename, - patchB=p, - shrinkA=5, - shrinkB=5, - fc="w", ec="k", - connectionstyle="arc3,rad=-0.05", - ), - bbox=dict(boxstyle="square", fc="w")) - - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - -ax1 = fig.add_subplot(121, frameon=False, xticks=[], yticks=[]) -make_boxstyles(ax1) - -ax2 = fig.add_subplot(122, frameon=False, xticks=[], yticks=[]) -make_arrowstyles(ax2) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.BoxStyle -matplotlib.patches.BoxStyle.get_styles -matplotlib.patches.ArrowStyle -matplotlib.patches.ArrowStyle.get_styles -matplotlib.axes.Axes.text -matplotlib.axes.Axes.annotate diff --git a/_downloads/bc69e6a9c93b4b514f9b42f8e61a7d79/gridspec_multicolumn.py b/_downloads/bc69e6a9c93b4b514f9b42f8e61a7d79/gridspec_multicolumn.py deleted file mode 100644 index 5a22aa2d310..00000000000 --- a/_downloads/bc69e6a9c93b4b514f9b42f8e61a7d79/gridspec_multicolumn.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -======================================================= -Using Gridspec to make multi-column/row subplot layouts -======================================================= - -`.GridSpec` is a flexible way to layout -subplot grids. Here is an example with a 3x3 grid, and -axes spanning all three columns, two columns, and two rows. - -""" -import matplotlib.pyplot as plt -from matplotlib.gridspec import GridSpec - - -def format_axes(fig): - for i, ax in enumerate(fig.axes): - ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center") - ax.tick_params(labelbottom=False, labelleft=False) - -fig = plt.figure(constrained_layout=True) - -gs = GridSpec(3, 3, figure=fig) -ax1 = fig.add_subplot(gs[0, :]) -# identical to ax1 = plt.subplot(gs.new_subplotspec((0, 0), colspan=3)) -ax2 = fig.add_subplot(gs[1, :-1]) -ax3 = fig.add_subplot(gs[1:, -1]) -ax4 = fig.add_subplot(gs[-1, 0]) -ax5 = fig.add_subplot(gs[-1, -2]) - -fig.suptitle("GridSpec") -format_axes(fig) - -plt.show() diff --git a/_downloads/bc7bb2ca998dad191d0ed3d71df71d5f/tricontour3d.py b/_downloads/bc7bb2ca998dad191d0ed3d71df71d5f/tricontour3d.py deleted file mode 120000 index 996b910a114..00000000000 --- a/_downloads/bc7bb2ca998dad191d0ed3d71df71d5f/tricontour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bc7bb2ca998dad191d0ed3d71df71d5f/tricontour3d.py \ No newline at end of file diff --git a/_downloads/bc95de3d822471c2258b354dd0f89f12/pyplot_three.ipynb b/_downloads/bc95de3d822471c2258b354dd0f89f12/pyplot_three.ipynb deleted file mode 120000 index 8ad4ec827a8..00000000000 --- a/_downloads/bc95de3d822471c2258b354dd0f89f12/pyplot_three.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bc95de3d822471c2258b354dd0f89f12/pyplot_three.ipynb \ No newline at end of file diff --git a/_downloads/bc9735ba2ce09278809c68b7f82bdee8/font_table.py b/_downloads/bc9735ba2ce09278809c68b7f82bdee8/font_table.py deleted file mode 120000 index ea32b9d90cb..00000000000 --- a/_downloads/bc9735ba2ce09278809c68b7f82bdee8/font_table.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bc9735ba2ce09278809c68b7f82bdee8/font_table.py \ No newline at end of file diff --git a/_downloads/bc9afc44d259d30c077d8314e373e760/unicode_minus.py b/_downloads/bc9afc44d259d30c077d8314e373e760/unicode_minus.py deleted file mode 120000 index af36d972daa..00000000000 --- a/_downloads/bc9afc44d259d30c077d8314e373e760/unicode_minus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bc9afc44d259d30c077d8314e373e760/unicode_minus.py \ No newline at end of file diff --git a/_downloads/bc9bf683befe9925881c3614524a0e8b/multiple_yaxis_with_spines.ipynb b/_downloads/bc9bf683befe9925881c3614524a0e8b/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index 9a611f7373b..00000000000 --- a/_downloads/bc9bf683befe9925881c3614524a0e8b/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bc9bf683befe9925881c3614524a0e8b/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/bca023c6f3eb9201d06f52e27715007b/bmh.ipynb b/_downloads/bca023c6f3eb9201d06f52e27715007b/bmh.ipynb deleted file mode 120000 index 12f0a5b9543..00000000000 --- a/_downloads/bca023c6f3eb9201d06f52e27715007b/bmh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bca023c6f3eb9201d06f52e27715007b/bmh.ipynb \ No newline at end of file diff --git a/_downloads/bcaa5803e7e2d2b31a18ed163a862605/ginput_manual_clabel_sgskip.py b/_downloads/bcaa5803e7e2d2b31a18ed163a862605/ginput_manual_clabel_sgskip.py deleted file mode 100644 index 0dc41b05230..00000000000 --- a/_downloads/bcaa5803e7e2d2b31a18ed163a862605/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -===================== -Interactive functions -===================== - -This provides examples of uses of interactive functions, such as ginput, -waitforbuttonpress and manual clabel placement. - -This script must be run interactively using a backend that has a -graphical user interface (for example, using GTK3Agg backend, but not -PS backend). - -""" - -import time - -import numpy as np -import matplotlib.pyplot as plt - - -def tellme(s): - print(s) - plt.title(s, fontsize=16) - plt.draw() - -################################################## -# Define a triangle by clicking three points - - -plt.clf() -plt.setp(plt.gca(), autoscale_on=False) - -tellme('You will define a triangle, click to begin') - -plt.waitforbuttonpress() - -while True: - pts = [] - while len(pts) < 3: - tellme('Select 3 corners with mouse') - pts = np.asarray(plt.ginput(3, timeout=-1)) - if len(pts) < 3: - tellme('Too few points, starting over') - time.sleep(1) # Wait a second - - ph = plt.fill(pts[:, 0], pts[:, 1], 'r', lw=2) - - tellme('Happy? Key click for yes, mouse click for no') - - if plt.waitforbuttonpress(): - break - - # Get rid of fill - for p in ph: - p.remove() - - -################################################## -# Now contour according to distance from triangle -# corners - just an example - -# Define a nice function of distance from individual pts -def f(x, y, pts): - z = np.zeros_like(x) - for p in pts: - z = z + 1/(np.sqrt((x - p[0])**2 + (y - p[1])**2)) - return 1/z - - -X, Y = np.meshgrid(np.linspace(-1, 1, 51), np.linspace(-1, 1, 51)) -Z = f(X, Y, pts) - -CS = plt.contour(X, Y, Z, 20) - -tellme('Use mouse to select contour label locations, middle button to finish') -CL = plt.clabel(CS, manual=True) - -################################################## -# Now do a zoom - -tellme('Now do a nested zoom, click to begin') -plt.waitforbuttonpress() - -while True: - tellme('Select two corners of zoom, middle mouse button to finish') - pts = plt.ginput(2, timeout=-1) - if len(pts) < 2: - break - (x0, y0), (x1, y1) = pts - xmin, xmax = sorted([x0, x1]) - ymin, ymax = sorted([y0, y1]) - plt.xlim(xmin, xmax) - plt.ylim(ymin, ymax) - -tellme('All Done!') -plt.show() diff --git a/_downloads/bcc1680993d37e8ec1b23636fdbb81d9/ggplot.ipynb b/_downloads/bcc1680993d37e8ec1b23636fdbb81d9/ggplot.ipynb deleted file mode 120000 index 108aecf9a55..00000000000 --- a/_downloads/bcc1680993d37e8ec1b23636fdbb81d9/ggplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bcc1680993d37e8ec1b23636fdbb81d9/ggplot.ipynb \ No newline at end of file diff --git a/_downloads/bccdfb1ca992efd7eb0b4ab22d03dab4/mri_with_eeg.py b/_downloads/bccdfb1ca992efd7eb0b4ab22d03dab4/mri_with_eeg.py deleted file mode 100644 index 0f622bf42a6..00000000000 --- a/_downloads/bccdfb1ca992efd7eb0b4ab22d03dab4/mri_with_eeg.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============ -MRI With EEG -============ - -Displays a set of subplots with an MRI image, its intensity -histogram and some EEG traces. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import matplotlib.cm as cm - -from matplotlib.collections import LineCollection -from matplotlib.ticker import MultipleLocator - -fig = plt.figure("MRI_with_EEG") - -# Load the MRI data (256x256 16 bit integers) -with cbook.get_sample_data('s1045.ima.gz') as dfile: - im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256)) - -# Plot the MRI image -ax0 = fig.add_subplot(2, 2, 1) -ax0.imshow(im, cmap=cm.gray) -ax0.axis('off') - -# Plot the histogram of MRI intensity -ax1 = fig.add_subplot(2, 2, 2) -im = np.ravel(im) -im = im[np.nonzero(im)] # Ignore the background -im = im / (2**16 - 1) # Normalize -ax1.hist(im, bins=100) -ax1.xaxis.set_major_locator(MultipleLocator(0.4)) -ax1.minorticks_on() -ax1.set_yticks([]) -ax1.set_xlabel('Intensity (a.u.)') -ax1.set_ylabel('MRI density') - -# Load the EEG data -n_samples, n_rows = 800, 4 -with cbook.get_sample_data('eeg.dat') as eegfile: - data = np.fromfile(eegfile, dtype=float).reshape((n_samples, n_rows)) -t = 10 * np.arange(n_samples) / n_samples - -# Plot the EEG -ticklocs = [] -ax2 = fig.add_subplot(2, 1, 2) -ax2.set_xlim(0, 10) -ax2.set_xticks(np.arange(10)) -dmin = data.min() -dmax = data.max() -dr = (dmax - dmin) * 0.7 # Crowd them a bit. -y0 = dmin -y1 = (n_rows - 1) * dr + dmax -ax2.set_ylim(y0, y1) - -segs = [] -for i in range(n_rows): - segs.append(np.column_stack((t, data[:, i]))) - ticklocs.append(i * dr) - -offsets = np.zeros((n_rows, 2), dtype=float) -offsets[:, 1] = ticklocs - -lines = LineCollection(segs, offsets=offsets, transOffset=None) -ax2.add_collection(lines) - -# Set the yticks to use axes coordinates on the y axis -ax2.set_yticks(ticklocs) -ax2.set_yticklabels(['PG3', 'PG5', 'PG7', 'PG9']) - -ax2.set_xlabel('Time (s)') - - -plt.tight_layout() -plt.show() diff --git a/_downloads/bcd13c54425bf1d3da2de334976d6583/contour3d_3.ipynb b/_downloads/bcd13c54425bf1d3da2de334976d6583/contour3d_3.ipynb deleted file mode 100644 index 97b30b422f4..00000000000 --- a/_downloads/bcd13c54425bf1d3da2de334976d6583/contour3d_3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Projecting contour profiles onto a graph\n\n\nDemonstrates displaying a 3D surface while also projecting contour 'profiles'\nonto the 'walls' of the graph.\n\nSee contourf3d_demo2 for the filled version.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot the 3D surface\nax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3)\n\n# Plot projections of the contours for each dimension. By choosing offsets\n# that match the appropriate axes limits, the projected contours will sit on\n# the 'walls' of the graph\ncset = ax.contour(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm)\ncset = ax.contour(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm)\ncset = ax.contour(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm)\n\nax.set_xlim(-40, 40)\nax.set_ylim(-40, 40)\nax.set_zlim(-100, 100)\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bce6db635339bccbfec3fc0ff2b72b73/horizontal_barchart_distribution.ipynb b/_downloads/bce6db635339bccbfec3fc0ff2b72b73/horizontal_barchart_distribution.ipynb deleted file mode 100644 index 54269033929..00000000000 --- a/_downloads/bce6db635339bccbfec3fc0ff2b72b73/horizontal_barchart_distribution.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Discrete distribution as horizontal bar chart\n\n\nStacked bar charts can be used to visualize discrete distributions.\n\nThis example visualizes the result of a survey in which people could rate\ntheir agreement to questions on a five-element scale.\n\nThe horizontal stacking is achieved by calling `~.Axes.barh()` for each\ncategory and passing the starting point as the cumulative sum of the\nalready drawn bars via the parameter ``left``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ncategory_names = ['Strongly disagree', 'Disagree',\n 'Neither agree nor disagree', 'Agree', 'Strongly agree']\nresults = {\n 'Question 1': [10, 15, 17, 32, 26],\n 'Question 2': [26, 22, 29, 10, 13],\n 'Question 3': [35, 37, 7, 2, 19],\n 'Question 4': [32, 11, 9, 15, 33],\n 'Question 5': [21, 29, 5, 5, 40],\n 'Question 6': [8, 19, 5, 30, 38]\n}\n\n\ndef survey(results, category_names):\n \"\"\"\n Parameters\n ----------\n results : dict\n A mapping from question labels to a list of answers per category.\n It is assumed all lists contain the same number of entries and that\n it matches the length of *category_names*.\n category_names : list of str\n The category labels.\n \"\"\"\n labels = list(results.keys())\n data = np.array(list(results.values()))\n data_cum = data.cumsum(axis=1)\n category_colors = plt.get_cmap('RdYlGn')(\n np.linspace(0.15, 0.85, data.shape[1]))\n\n fig, ax = plt.subplots(figsize=(9.2, 5))\n ax.invert_yaxis()\n ax.xaxis.set_visible(False)\n ax.set_xlim(0, np.sum(data, axis=1).max())\n\n for i, (colname, color) in enumerate(zip(category_names, category_colors)):\n widths = data[:, i]\n starts = data_cum[:, i] - widths\n ax.barh(labels, widths, left=starts, height=0.5,\n label=colname, color=color)\n xcenters = starts + widths / 2\n\n r, g, b, _ = color\n text_color = 'white' if r * g * b < 0.5 else 'darkgrey'\n for y, (x, c) in enumerate(zip(xcenters, widths)):\n ax.text(x, y, str(int(c)), ha='center', va='center',\n color=text_color)\n ax.legend(ncol=len(category_names), bbox_to_anchor=(0, 1),\n loc='lower left', fontsize='small')\n\n return fig, ax\n\n\nsurvey(results, category_names)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.barh\nmatplotlib.pyplot.barh\nmatplotlib.axes.Axes.text\nmatplotlib.pyplot.text\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bceb4b9f5e5ac5d82ae5766799c93e0e/ellipse_collection.py b/_downloads/bceb4b9f5e5ac5d82ae5766799c93e0e/ellipse_collection.py deleted file mode 120000 index cb4e438efca..00000000000 --- a/_downloads/bceb4b9f5e5ac5d82ae5766799c93e0e/ellipse_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bceb4b9f5e5ac5d82ae5766799c93e0e/ellipse_collection.py \ No newline at end of file diff --git a/_downloads/bcf15dd30bf8c43f7bfcaa6e78272247/shading_example.py b/_downloads/bcf15dd30bf8c43f7bfcaa6e78272247/shading_example.py deleted file mode 100644 index 95f7e59f5a7..00000000000 --- a/_downloads/bcf15dd30bf8c43f7bfcaa6e78272247/shading_example.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -=============== -Shading example -=============== - -Example showing how to make shaded relief plots like Mathematica_ or -`Generic Mapping Tools`_. - -.. _Mathematica: http://reference.wolfram.com/mathematica/ref/ReliefPlot.html -.. _Generic Mapping Tools: https://gmt.soest.hawaii.edu/ -""" - -import numpy as np -from matplotlib import cbook -import matplotlib.pyplot as plt -from matplotlib.colors import LightSource - - -def main(): - # Test data - x, y = np.mgrid[-5:5:0.05, -5:5:0.05] - z = 5 * (np.sqrt(x**2 + y**2) + np.sin(x**2 + y**2)) - - with cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \ - np.load(file) as dem: - elev = dem['elevation'] - - fig = compare(z, plt.cm.copper) - fig.suptitle('HSV Blending Looks Best with Smooth Surfaces', y=0.95) - - fig = compare(elev, plt.cm.gist_earth, ve=0.05) - fig.suptitle('Overlay Blending Looks Best with Rough Surfaces', y=0.95) - - plt.show() - - -def compare(z, cmap, ve=1): - # Create subplots and hide ticks - fig, axs = plt.subplots(ncols=2, nrows=2) - for ax in axs.flat: - ax.set(xticks=[], yticks=[]) - - # Illuminate the scene from the northwest - ls = LightSource(azdeg=315, altdeg=45) - - axs[0, 0].imshow(z, cmap=cmap) - axs[0, 0].set(xlabel='Colormapped Data') - - axs[0, 1].imshow(ls.hillshade(z, vert_exag=ve), cmap='gray') - axs[0, 1].set(xlabel='Illumination Intensity') - - rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='hsv') - axs[1, 0].imshow(rgb) - axs[1, 0].set(xlabel='Blend Mode: "hsv" (default)') - - rgb = ls.shade(z, cmap=cmap, vert_exag=ve, blend_mode='overlay') - axs[1, 1].imshow(rgb) - axs[1, 1].set(xlabel='Blend Mode: "overlay"') - - return fig - - -if __name__ == '__main__': - main() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown in this example: - -import matplotlib -matplotlib.colors.LightSource -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/bcf73af211343e4dc267597e699d0b31/wire3d_animation_sgskip.py b/_downloads/bcf73af211343e4dc267597e699d0b31/wire3d_animation_sgskip.py deleted file mode 100644 index 4e727817264..00000000000 --- a/_downloads/bcf73af211343e4dc267597e699d0b31/wire3d_animation_sgskip.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -========================== -Rotating 3D wireframe plot -========================== - -A very simple 'animation' of a 3D plot. See also rotate_axes3d_demo. - -(This example is skipped when building the documentation gallery because it -intentionally takes a long time to run) -""" - - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np -import time - - -def generate(X, Y, phi): - ''' - Generates Z data for the points in the X, Y meshgrid and parameter phi. - ''' - R = 1 - np.sqrt(X**2 + Y**2) - return np.cos(2 * np.pi * X + phi) * R - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Make the X, Y meshgrid. -xs = np.linspace(-1, 1, 50) -ys = np.linspace(-1, 1, 50) -X, Y = np.meshgrid(xs, ys) - -# Set the z axis limits so they aren't recalculated each frame. -ax.set_zlim(-1, 1) - -# Begin plotting. -wframe = None -tstart = time.time() -for phi in np.linspace(0, 180. / np.pi, 100): - # If a line collection is already remove it before drawing. - if wframe: - ax.collections.remove(wframe) - - # Plot the new wireframe and pause briefly before continuing. - Z = generate(X, Y, phi) - wframe = ax.plot_wireframe(X, Y, Z, rstride=2, cstride=2) - plt.pause(.001) - -print('Average FPS: %f' % (100 / (time.time() - tstart))) diff --git a/_downloads/bcfd587a655d7980519846be5539cfa5/log_bar.ipynb b/_downloads/bcfd587a655d7980519846be5539cfa5/log_bar.ipynb deleted file mode 120000 index 67c5321ee7f..00000000000 --- a/_downloads/bcfd587a655d7980519846be5539cfa5/log_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bcfd587a655d7980519846be5539cfa5/log_bar.ipynb \ No newline at end of file diff --git a/_downloads/bd0b0f4f415edcc731e658c0d5b4c506/units_scatter.ipynb b/_downloads/bd0b0f4f415edcc731e658c0d5b4c506/units_scatter.ipynb deleted file mode 120000 index 379b8b27d93..00000000000 --- a/_downloads/bd0b0f4f415edcc731e658c0d5b4c506/units_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bd0b0f4f415edcc731e658c0d5b4c506/units_scatter.ipynb \ No newline at end of file diff --git a/_downloads/bd1329f9986198950305183b4443e4fe/embedding_webagg_sgskip.ipynb b/_downloads/bd1329f9986198950305183b4443e4fe/embedding_webagg_sgskip.ipynb deleted file mode 100644 index 0adccdd4d3d..00000000000 --- a/_downloads/bd1329f9986198950305183b4443e4fe/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding WebAgg\n\n\nThis example demonstrates how to embed matplotlib WebAgg interactive\nplotting in your own web application and framework. It is not\nnecessary to do all this if you merely want to display a plot in a\nbrowser or use matplotlib's built-in Tornado-based server \"on the\nside\".\n\nThe framework being used must support web sockets.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import io\n\ntry:\n import tornado\nexcept ImportError:\n raise RuntimeError(\"This example requires tornado.\")\nimport tornado.web\nimport tornado.httpserver\nimport tornado.ioloop\nimport tornado.websocket\n\n\nfrom matplotlib.backends.backend_webagg_core import (\n FigureManagerWebAgg, new_figure_manager_given_figure)\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\nimport json\n\n\ndef create_figure():\n \"\"\"\n Creates a simple example figure.\n \"\"\"\n fig = Figure()\n a = fig.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2 * np.pi * t)\n a.plot(t, s)\n return fig\n\n\n# The following is the content of the web page. You would normally\n# generate this using some sort of template facility in your web\n# framework, but here we just use Python string formatting.\nhtml_content = \"\"\"\n\n \n \n \n \n \n \n \n \n \n\n \n\n matplotlib\n \n\n \n
\n
\n \n\n\"\"\"\n\n\nclass MyApplication(tornado.web.Application):\n class MainPage(tornado.web.RequestHandler):\n \"\"\"\n Serves the main HTML page.\n \"\"\"\n\n def get(self):\n manager = self.application.manager\n ws_uri = \"ws://{req.host}/\".format(req=self.request)\n content = html_content % {\n \"ws_uri\": ws_uri, \"fig_id\": manager.num}\n self.write(content)\n\n class MplJs(tornado.web.RequestHandler):\n \"\"\"\n Serves the generated matplotlib javascript file. The content\n is dynamically generated based on which toolbar functions the\n user has defined. Call `FigureManagerWebAgg` to get its\n content.\n \"\"\"\n\n def get(self):\n self.set_header('Content-Type', 'application/javascript')\n js_content = FigureManagerWebAgg.get_javascript()\n\n self.write(js_content)\n\n class Download(tornado.web.RequestHandler):\n \"\"\"\n Handles downloading of the figure in various file formats.\n \"\"\"\n\n def get(self, fmt):\n manager = self.application.manager\n\n mimetypes = {\n 'ps': 'application/postscript',\n 'eps': 'application/postscript',\n 'pdf': 'application/pdf',\n 'svg': 'image/svg+xml',\n 'png': 'image/png',\n 'jpeg': 'image/jpeg',\n 'tif': 'image/tiff',\n 'emf': 'application/emf'\n }\n\n self.set_header('Content-Type', mimetypes.get(fmt, 'binary'))\n\n buff = io.BytesIO()\n manager.canvas.figure.savefig(buff, format=fmt)\n self.write(buff.getvalue())\n\n class WebSocket(tornado.websocket.WebSocketHandler):\n \"\"\"\n A websocket for interactive communication between the plot in\n the browser and the server.\n\n In addition to the methods required by tornado, it is required to\n have two callback methods:\n\n - ``send_json(json_content)`` is called by matplotlib when\n it needs to send json to the browser. `json_content` is\n a JSON tree (Python dictionary), and it is the responsibility\n of this implementation to encode it as a string to send over\n the socket.\n\n - ``send_binary(blob)`` is called to send binary image data\n to the browser.\n \"\"\"\n supports_binary = True\n\n def open(self):\n # Register the websocket with the FigureManager.\n manager = self.application.manager\n manager.add_web_socket(self)\n if hasattr(self, 'set_nodelay'):\n self.set_nodelay(True)\n\n def on_close(self):\n # When the socket is closed, deregister the websocket with\n # the FigureManager.\n manager = self.application.manager\n manager.remove_web_socket(self)\n\n def on_message(self, message):\n # The 'supports_binary' message is relevant to the\n # websocket itself. The other messages get passed along\n # to matplotlib as-is.\n\n # Every message has a \"type\" and a \"figure_id\".\n message = json.loads(message)\n if message['type'] == 'supports_binary':\n self.supports_binary = message['value']\n else:\n manager = self.application.manager\n manager.handle_json(message)\n\n def send_json(self, content):\n self.write_message(json.dumps(content))\n\n def send_binary(self, blob):\n if self.supports_binary:\n self.write_message(blob, binary=True)\n else:\n data_uri = \"data:image/png;base64,{0}\".format(\n blob.encode('base64').replace('\\n', ''))\n self.write_message(data_uri)\n\n def __init__(self, figure):\n self.figure = figure\n self.manager = new_figure_manager_given_figure(id(figure), figure)\n\n super().__init__([\n # Static files for the CSS and JS\n (r'/_static/(.*)',\n tornado.web.StaticFileHandler,\n {'path': FigureManagerWebAgg.get_static_file_path()}),\n\n # The page that contains all of the pieces\n ('/', self.MainPage),\n\n ('/mpl.js', self.MplJs),\n\n # Sends images and events to the browser, and receives\n # events from the browser\n ('/ws', self.WebSocket),\n\n # Handles the downloading (i.e., saving) of static images\n (r'/download.([a-z0-9.]+)', self.Download),\n ])\n\n\nif __name__ == \"__main__\":\n figure = create_figure()\n application = MyApplication(figure)\n\n http_server = tornado.httpserver.HTTPServer(application)\n http_server.listen(8080)\n\n print(\"http://127.0.0.1:8080/\")\n print(\"Press Ctrl+C to quit\")\n\n tornado.ioloop.IOLoop.instance().start()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bd1507b848a6ad003e293c256bc2c830/quad_bezier.ipynb b/_downloads/bd1507b848a6ad003e293c256bc2c830/quad_bezier.ipynb deleted file mode 120000 index 9272562a318..00000000000 --- a/_downloads/bd1507b848a6ad003e293c256bc2c830/quad_bezier.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bd1507b848a6ad003e293c256bc2c830/quad_bezier.ipynb \ No newline at end of file diff --git a/_downloads/bd174ce75b292e7e21e43d7719eecd67/svg_tooltip_sgskip.ipynb b/_downloads/bd174ce75b292e7e21e43d7719eecd67/svg_tooltip_sgskip.ipynb deleted file mode 120000 index 6743d9180e1..00000000000 --- a/_downloads/bd174ce75b292e7e21e43d7719eecd67/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bd174ce75b292e7e21e43d7719eecd67/svg_tooltip_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/bd229a6315b2b181581f030f3286bc7e/boxplot_color.ipynb b/_downloads/bd229a6315b2b181581f030f3286bc7e/boxplot_color.ipynb deleted file mode 120000 index 44326274109..00000000000 --- a/_downloads/bd229a6315b2b181581f030f3286bc7e/boxplot_color.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bd229a6315b2b181581f030f3286bc7e/boxplot_color.ipynb \ No newline at end of file diff --git a/_downloads/bd2499acf684ea47fe0131a822a66663/double_pendulum_sgskip.ipynb b/_downloads/bd2499acf684ea47fe0131a822a66663/double_pendulum_sgskip.ipynb deleted file mode 120000 index 532c33650fe..00000000000 --- a/_downloads/bd2499acf684ea47fe0131a822a66663/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bd2499acf684ea47fe0131a822a66663/double_pendulum_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/bd33658dc3d623347b77c7d99b74cd5f/marker_fillstyle_reference.ipynb b/_downloads/bd33658dc3d623347b77c7d99b74cd5f/marker_fillstyle_reference.ipynb deleted file mode 120000 index 909cb9cbf03..00000000000 --- a/_downloads/bd33658dc3d623347b77c7d99b74cd5f/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bd33658dc3d623347b77c7d99b74cd5f/marker_fillstyle_reference.ipynb \ No newline at end of file diff --git a/_downloads/bd4214664d319c676ac9ef9d0069f7ab/errorbars_and_boxes.ipynb b/_downloads/bd4214664d319c676ac9ef9d0069f7ab/errorbars_and_boxes.ipynb deleted file mode 120000 index 0448b44a29e..00000000000 --- a/_downloads/bd4214664d319c676ac9ef9d0069f7ab/errorbars_and_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bd4214664d319c676ac9ef9d0069f7ab/errorbars_and_boxes.ipynb \ No newline at end of file diff --git a/_downloads/bd4506e4428c62be124c7daed2eaf598/demo_gridspec01.py b/_downloads/bd4506e4428c62be124c7daed2eaf598/demo_gridspec01.py deleted file mode 120000 index 53cc84e9912..00000000000 --- a/_downloads/bd4506e4428c62be124c7daed2eaf598/demo_gridspec01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bd4506e4428c62be124c7daed2eaf598/demo_gridspec01.py \ No newline at end of file diff --git a/_downloads/bd491b1479ed912ae9583ff8db382d44/image_thumbnail_sgskip.ipynb b/_downloads/bd491b1479ed912ae9583ff8db382d44/image_thumbnail_sgskip.ipynb deleted file mode 120000 index 4e316d5f414..00000000000 --- a/_downloads/bd491b1479ed912ae9583ff8db382d44/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bd491b1479ed912ae9583ff8db382d44/image_thumbnail_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/bd50dd0854c0df80c2774fd9d665732e/errorbar.ipynb b/_downloads/bd50dd0854c0df80c2774fd9d665732e/errorbar.ipynb deleted file mode 120000 index cc199e704e6..00000000000 --- a/_downloads/bd50dd0854c0df80c2774fd9d665732e/errorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bd50dd0854c0df80c2774fd9d665732e/errorbar.ipynb \ No newline at end of file diff --git a/_downloads/bd659a969008996178c38e8c5f3f4fec/polar_scatter.py b/_downloads/bd659a969008996178c38e8c5f3f4fec/polar_scatter.py deleted file mode 100644 index 350369ed355..00000000000 --- a/_downloads/bd659a969008996178c38e8c5f3f4fec/polar_scatter.py +++ /dev/null @@ -1,75 +0,0 @@ -""" -========================== -Scatter plot on polar axis -========================== - -Size increases radially in this example and color increases with angle -(just to verify the symbols are being scattered correctly). -""" -import numpy as np -import matplotlib.pyplot as plt - - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# Compute areas and colors -N = 150 -r = 2 * np.random.rand(N) -theta = 2 * np.pi * np.random.rand(N) -area = 200 * r**2 -colors = theta - -fig = plt.figure() -ax = fig.add_subplot(111, projection='polar') -c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75) - -############################################################################### -# Scatter plot on polar axis, with offset origin -# ---------------------------------------------- -# -# The main difference with the previous plot is the configuration of the origin -# radius, producing an annulus. Additionally, the theta zero location is set to -# rotate the plot. - -fig = plt.figure() -ax = fig.add_subplot(111, polar=True) -c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75) - -ax.set_rorigin(-2.5) -ax.set_theta_zero_location('W', offset=10) - -############################################################################### -# Scatter plot on polar axis confined to a sector -# ----------------------------------------------- -# -# The main difference with the previous plots is the configuration of the -# theta start and end limits, producing a sector instead of a full circle. - -fig = plt.figure() -ax = fig.add_subplot(111, polar=True) -c = ax.scatter(theta, r, c=colors, s=area, cmap='hsv', alpha=0.75) - -ax.set_thetamin(45) -ax.set_thetamax(135) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes.set_rorigin -matplotlib.projections.polar.PolarAxes.set_theta_zero_location -matplotlib.projections.polar.PolarAxes.set_thetamin -matplotlib.projections.polar.PolarAxes.set_thetamax diff --git a/_downloads/bd67ba4ff04d8ab5785fdcdf1d0f2c9c/barb_demo.py b/_downloads/bd67ba4ff04d8ab5785fdcdf1d0f2c9c/barb_demo.py deleted file mode 120000 index a8cab98fc01..00000000000 --- a/_downloads/bd67ba4ff04d8ab5785fdcdf1d0f2c9c/barb_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bd67ba4ff04d8ab5785fdcdf1d0f2c9c/barb_demo.py \ No newline at end of file diff --git a/_downloads/bd68f9495f9b94861567eba0ddc9bb24/annotate_simple04.py b/_downloads/bd68f9495f9b94861567eba0ddc9bb24/annotate_simple04.py deleted file mode 120000 index b20747388d3..00000000000 --- a/_downloads/bd68f9495f9b94861567eba0ddc9bb24/annotate_simple04.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bd68f9495f9b94861567eba0ddc9bb24/annotate_simple04.py \ No newline at end of file diff --git a/_downloads/bd6ff1ac87ee14e407e8e89210483484/mathtext_asarray.py b/_downloads/bd6ff1ac87ee14e407e8e89210483484/mathtext_asarray.py deleted file mode 100644 index ee107d099bf..00000000000 --- a/_downloads/bd6ff1ac87ee14e407e8e89210483484/mathtext_asarray.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=============================== -A mathtext image as numpy array -=============================== - -Make images from LaTeX strings. -""" - -import matplotlib.mathtext as mathtext -import matplotlib.pyplot as plt -import matplotlib -matplotlib.rc('image', origin='upper') - -parser = mathtext.MathTextParser("Bitmap") -parser.to_png('test2.png', - r'$\left[\left\lfloor\frac{5}{\frac{\left(3\right)}{4}} ' - r'y\right)\right]$', color='green', fontsize=14, dpi=100) - -rgba1, depth1 = parser.to_rgba( - r'IQ: $\sigma_i=15$', color='blue', fontsize=20, dpi=200) -rgba2, depth2 = parser.to_rgba( - r'some other string', color='red', fontsize=20, dpi=200) - -fig = plt.figure() -fig.figimage(rgba1, 100, 100) -fig.figimage(rgba2, 100, 300) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.mathtext -matplotlib.mathtext.MathTextParser -matplotlib.mathtext.MathTextParser.to_png -matplotlib.mathtext.MathTextParser.to_rgba -matplotlib.figure.Figure.figimage diff --git a/_downloads/bd760f00796dd78c594bc49a4a115ece/artist_reference.ipynb b/_downloads/bd760f00796dd78c594bc49a4a115ece/artist_reference.ipynb deleted file mode 120000 index 67a8065ff29..00000000000 --- a/_downloads/bd760f00796dd78c594bc49a4a115ece/artist_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bd760f00796dd78c594bc49a4a115ece/artist_reference.ipynb \ No newline at end of file diff --git a/_downloads/bda7295da72b013fbe224c1ee5628d3b/pick_event_demo2.py b/_downloads/bda7295da72b013fbe224c1ee5628d3b/pick_event_demo2.py deleted file mode 120000 index 7c0eaca0f71..00000000000 --- a/_downloads/bda7295da72b013fbe224c1ee5628d3b/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bda7295da72b013fbe224c1ee5628d3b/pick_event_demo2.py \ No newline at end of file diff --git a/_downloads/bdade4ab9cae7fa591030b8c810f62be/unicode_minus.py b/_downloads/bdade4ab9cae7fa591030b8c810f62be/unicode_minus.py deleted file mode 120000 index 05dc797a2ff..00000000000 --- a/_downloads/bdade4ab9cae7fa591030b8c810f62be/unicode_minus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bdade4ab9cae7fa591030b8c810f62be/unicode_minus.py \ No newline at end of file diff --git a/_downloads/bdb2d7abf1a2522aacb45278c02b0369/dynamic_image.py b/_downloads/bdb2d7abf1a2522aacb45278c02b0369/dynamic_image.py deleted file mode 120000 index 29ecec45c64..00000000000 --- a/_downloads/bdb2d7abf1a2522aacb45278c02b0369/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bdb2d7abf1a2522aacb45278c02b0369/dynamic_image.py \ No newline at end of file diff --git a/_downloads/bdb386bffc0db85aa487e96df8f24e3e/boxplot_color.ipynb b/_downloads/bdb386bffc0db85aa487e96df8f24e3e/boxplot_color.ipynb deleted file mode 100644 index 5fb2aadd810..00000000000 --- a/_downloads/bdb386bffc0db85aa487e96df8f24e3e/boxplot_color.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Box plots with custom fill colors\n\n\nThis plot illustrates how to create two types of box plots\n(rectangular and notched), and how to fill them with custom\ncolors by accessing the properties of the artists of the\nbox plots. Additionally, the ``labels`` parameter is used to\nprovide x-tick labels for each sample.\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Random test data\nnp.random.seed(19680801)\nall_data = [np.random.normal(0, std, size=100) for std in range(1, 4)]\nlabels = ['x1', 'x2', 'x3']\n\nfig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4))\n\n# rectangular box plot\nbplot1 = axes[0].boxplot(all_data,\n vert=True, # vertical box alignment\n patch_artist=True, # fill with color\n labels=labels) # will be used to label x-ticks\naxes[0].set_title('Rectangular box plot')\n\n# notch shape box plot\nbplot2 = axes[1].boxplot(all_data,\n notch=True, # notch shape\n vert=True, # vertical box alignment\n patch_artist=True, # fill with color\n labels=labels) # will be used to label x-ticks\naxes[1].set_title('Notched box plot')\n\n# fill with colors\ncolors = ['pink', 'lightblue', 'lightgreen']\nfor bplot in (bplot1, bplot2):\n for patch, color in zip(bplot['boxes'], colors):\n patch.set_facecolor(color)\n\n# adding horizontal grid lines\nfor ax in axes:\n ax.yaxis.grid(True)\n ax.set_xlabel('Three separate samples')\n ax.set_ylabel('Observed values')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bdc12f06d6c368371f9f4c4c56f85927/demo_gridspec05.py b/_downloads/bdc12f06d6c368371f9f4c4c56f85927/demo_gridspec05.py deleted file mode 120000 index 7c4883e4d33..00000000000 --- a/_downloads/bdc12f06d6c368371f9f4c4c56f85927/demo_gridspec05.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/bdc12f06d6c368371f9f4c4c56f85927/demo_gridspec05.py \ No newline at end of file diff --git a/_downloads/bdc931dcaa2ade173e4c4615c9225c85/fancybox_demo.py b/_downloads/bdc931dcaa2ade173e4c4615c9225c85/fancybox_demo.py deleted file mode 100644 index a4b434c1b1c..00000000000 --- a/_downloads/bdc931dcaa2ade173e4c4615c9225c85/fancybox_demo.py +++ /dev/null @@ -1,212 +0,0 @@ -""" -============= -Fancybox Demo -============= - -Plotting fancy boxes with Matplotlib. - -The following examples show how to plot boxes with different -visual properties. -""" -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms -import matplotlib.patches as mpatch -from matplotlib.patches import FancyBboxPatch - -############################################################################### -# First we'll show some sample boxes with fancybox. - -styles = mpatch.BoxStyle.get_styles() -spacing = 1.2 - -figheight = (spacing * len(styles) + .5) -fig = plt.figure(figsize=(4 / 1.5, figheight / 1.5)) -fontsize = 0.3 * 72 - -for i, stylename in enumerate(sorted(styles)): - fig.text(0.5, (spacing * (len(styles) - i) - 0.5) / figheight, stylename, - ha="center", - size=fontsize, - transform=fig.transFigure, - bbox=dict(boxstyle=stylename, fc="w", ec="k")) - -plt.show() - -############################################################################### -# Next we'll show off multiple fancy boxes at once. - -# Bbox object around which the fancy box will be drawn. -bb = mtransforms.Bbox([[0.3, 0.4], [0.7, 0.6]]) - - -def draw_bbox(ax, bb): - # boxstyle=square with pad=0, i.e. bbox itself. - p_bbox = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="square,pad=0.", - ec="k", fc="none", zorder=10., - ) - ax.add_patch(p_bbox) - - -def test1(ax): - - # a fancy box with round corners. pad=0.1 - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.1", - fc=(1., .8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - ax.text(0.1, 0.8, - r' boxstyle="round,pad=0.1"', - size=10, transform=ax.transAxes) - - # draws control points for the fancy box. - # l = p_fancy.get_path().vertices - # ax.plot(l[:,0], l[:,1], ".") - - # draw the original bbox in black - draw_bbox(ax, bb) - - -def test2(ax): - - # bbox=round has two optional argument. pad and rounding_size. - # They can be set during the initialization. - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.1", - fc=(1., .8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - # boxstyle and its argument can be later modified with - # set_boxstyle method. Note that the old attributes are simply - # forgotten even if the boxstyle name is same. - - p_fancy.set_boxstyle("round,pad=0.1, rounding_size=0.2") - # or - # p_fancy.set_boxstyle("round", pad=0.1, rounding_size=0.2) - - ax.text(0.1, 0.8, - ' boxstyle="round,pad=0.1\n rounding_size=0.2"', - size=10, transform=ax.transAxes) - - # draws control points for the fancy box. - # l = p_fancy.get_path().vertices - # ax.plot(l[:,0], l[:,1], ".") - - draw_bbox(ax, bb) - - -def test3(ax): - - # mutation_scale determine overall scale of the mutation, - # i.e. both pad and rounding_size is scaled according to this - # value. - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.1", - mutation_scale=2., - fc=(1., .8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - ax.text(0.1, 0.8, - ' boxstyle="round,pad=0.1"\n mutation_scale=2', - size=10, transform=ax.transAxes) - - # draws control points for the fancy box. - # l = p_fancy.get_path().vertices - # ax.plot(l[:,0], l[:,1], ".") - - draw_bbox(ax, bb) - - -def test4(ax): - - # When the aspect ratio of the axes is not 1, the fancy box may - # not be what you expected (green) - - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.2", - fc="none", - ec=(0., .5, 0.), zorder=4) - - ax.add_patch(p_fancy) - - # You can compensate this by setting the mutation_aspect (pink). - p_fancy = FancyBboxPatch((bb.xmin, bb.ymin), - abs(bb.width), abs(bb.height), - boxstyle="round,pad=0.3", - mutation_aspect=.5, - fc=(1., 0.8, 1.), - ec=(1., 0.5, 1.)) - - ax.add_patch(p_fancy) - - ax.text(0.1, 0.8, - ' boxstyle="round,pad=0.3"\n mutation_aspect=.5', - size=10, transform=ax.transAxes) - - draw_bbox(ax, bb) - - -def test_all(): - plt.clf() - - ax = plt.subplot(2, 2, 1) - test1(ax) - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - ax.set_title("test1") - ax.set_aspect(1.) - - ax = plt.subplot(2, 2, 2) - ax.set_title("test2") - test2(ax) - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - ax.set_aspect(1.) - - ax = plt.subplot(2, 2, 3) - ax.set_title("test3") - test3(ax) - ax.set_xlim(0., 1.) - ax.set_ylim(0., 1.) - ax.set_aspect(1) - - ax = plt.subplot(2, 2, 4) - ax.set_title("test4") - test4(ax) - ax.set_xlim(-0.5, 1.5) - ax.set_ylim(0., 1.) - ax.set_aspect(2.) - - plt.show() - - -test_all() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.FancyBboxPatch -matplotlib.patches.BoxStyle -matplotlib.patches.BoxStyle.get_styles -matplotlib.transforms.Bbox diff --git a/_downloads/bddc8db0cc99c6e6097050b2fb922782/whats_new_1_subplot3d.ipynb b/_downloads/bddc8db0cc99c6e6097050b2fb922782/whats_new_1_subplot3d.ipynb deleted file mode 120000 index b5db379b1db..00000000000 --- a/_downloads/bddc8db0cc99c6e6097050b2fb922782/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/bddc8db0cc99c6e6097050b2fb922782/whats_new_1_subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/bdde4c12c85bb097ea8f53d14e8d3fc1/frame_grabbing_sgskip.ipynb b/_downloads/bdde4c12c85bb097ea8f53d14e8d3fc1/frame_grabbing_sgskip.ipynb deleted file mode 120000 index 63c7663ba2b..00000000000 --- a/_downloads/bdde4c12c85bb097ea8f53d14e8d3fc1/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bdde4c12c85bb097ea8f53d14e8d3fc1/frame_grabbing_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/bde231b9ccfb626b4574b1734c62b3a3/wxcursor_demo_sgskip.ipynb b/_downloads/bde231b9ccfb626b4574b1734c62b3a3/wxcursor_demo_sgskip.ipynb deleted file mode 100644 index ceafa5c8782..00000000000 --- a/_downloads/bde231b9ccfb626b4574b1734c62b3a3/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# WXcursor Demo\n\n\nExample to draw a cursor and report the data coords in wx.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wx import NavigationToolbar2Wx\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nimport wx\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self, ):\n wx.Frame.__init__(self, None, -1, 'CanvasFrame', size=(550, 350))\n\n self.figure = Figure()\n self.axes = self.figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2*np.pi*t)\n\n self.axes.plot(t, s)\n self.axes.set_xlabel('t')\n self.axes.set_ylabel('sin(t)')\n self.figure_canvas = FigureCanvas(self, -1, self.figure)\n\n # Note that event is a MplEvent\n self.figure_canvas.mpl_connect(\n 'motion_notify_event', self.UpdateStatusBar)\n self.figure_canvas.Bind(wx.EVT_ENTER_WINDOW, self.ChangeCursor)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.sizer.Add(self.figure_canvas, 1, wx.LEFT | wx.TOP | wx.GROW)\n self.SetSizer(self.sizer)\n self.Fit()\n\n self.statusBar = wx.StatusBar(self, -1)\n self.SetStatusBar(self.statusBar)\n\n self.toolbar = NavigationToolbar2Wx(self.figure_canvas)\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n self.toolbar.Show()\n\n def ChangeCursor(self, event):\n self.figure_canvas.SetCursor(wx.Cursor(wx.CURSOR_BULLSEYE))\n\n def UpdateStatusBar(self, event):\n if event.inaxes:\n self.statusBar.SetStatusText(\n \"x={} y={}\".format(event.xdata, event.ydata))\n\n\nclass App(wx.App):\n def OnInit(self):\n 'Create the main window and insert the custom frame'\n frame = CanvasFrame()\n self.SetTopWindow(frame)\n frame.Show(True)\n return True\n\n\nif __name__ == '__main__':\n app = App(0)\n app.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bdf1327bcdd8760e8c91d7fc29b81b8e/contourf_log.py b/_downloads/bdf1327bcdd8760e8c91d7fc29b81b8e/contourf_log.py deleted file mode 120000 index afa308b4c54..00000000000 --- a/_downloads/bdf1327bcdd8760e8c91d7fc29b81b8e/contourf_log.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bdf1327bcdd8760e8c91d7fc29b81b8e/contourf_log.py \ No newline at end of file diff --git a/_downloads/bdf1d0d32848019c0b6dffbe9eb09b00/axisartist.py b/_downloads/bdf1d0d32848019c0b6dffbe9eb09b00/axisartist.py deleted file mode 120000 index a1fe90b8e0e..00000000000 --- a/_downloads/bdf1d0d32848019c0b6dffbe9eb09b00/axisartist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bdf1d0d32848019c0b6dffbe9eb09b00/axisartist.py \ No newline at end of file diff --git a/_downloads/bdf3334ca366ed27cf39add31d181e7d/image_transparency_blend.py b/_downloads/bdf3334ca366ed27cf39add31d181e7d/image_transparency_blend.py deleted file mode 120000 index 14b9fa33388..00000000000 --- a/_downloads/bdf3334ca366ed27cf39add31d181e7d/image_transparency_blend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bdf3334ca366ed27cf39add31d181e7d/image_transparency_blend.py \ No newline at end of file diff --git a/_downloads/bdf442300bbd96b3875ce5a004d80a0e/sankey_links.py b/_downloads/bdf442300bbd96b3875ce5a004d80a0e/sankey_links.py deleted file mode 120000 index 6fd6c9fc21b..00000000000 --- a/_downloads/bdf442300bbd96b3875ce5a004d80a0e/sankey_links.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bdf442300bbd96b3875ce5a004d80a0e/sankey_links.py \ No newline at end of file diff --git a/_downloads/bdff7d05e144074d9340f776b8f5741b/zoom_inset_axes.py b/_downloads/bdff7d05e144074d9340f776b8f5741b/zoom_inset_axes.py deleted file mode 120000 index 06250216a8d..00000000000 --- a/_downloads/bdff7d05e144074d9340f776b8f5741b/zoom_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bdff7d05e144074d9340f776b8f5741b/zoom_inset_axes.py \ No newline at end of file diff --git a/_downloads/be05e9ce0bed2e5981601588b38b8760/axis_equal_demo.py b/_downloads/be05e9ce0bed2e5981601588b38b8760/axis_equal_demo.py deleted file mode 120000 index be29e399b4e..00000000000 --- a/_downloads/be05e9ce0bed2e5981601588b38b8760/axis_equal_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/be05e9ce0bed2e5981601588b38b8760/axis_equal_demo.py \ No newline at end of file diff --git a/_downloads/be0b7203db530cb3b50023a49048daa9/scatter_symbol.py b/_downloads/be0b7203db530cb3b50023a49048daa9/scatter_symbol.py deleted file mode 120000 index a6993f05752..00000000000 --- a/_downloads/be0b7203db530cb3b50023a49048daa9/scatter_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/be0b7203db530cb3b50023a49048daa9/scatter_symbol.py \ No newline at end of file diff --git a/_downloads/be12cb6aa6e321f461d8bfc7065071b5/frame_grabbing_sgskip.ipynb b/_downloads/be12cb6aa6e321f461d8bfc7065071b5/frame_grabbing_sgskip.ipynb deleted file mode 120000 index 69848ab308c..00000000000 --- a/_downloads/be12cb6aa6e321f461d8bfc7065071b5/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/be12cb6aa6e321f461d8bfc7065071b5/frame_grabbing_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/be13f69d8c6e6d12e02b3dd74a6bbcdc/donut.ipynb b/_downloads/be13f69d8c6e6d12e02b3dd74a6bbcdc/donut.ipynb deleted file mode 120000 index 6dc0ed01e7d..00000000000 --- a/_downloads/be13f69d8c6e6d12e02b3dd74a6bbcdc/donut.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/be13f69d8c6e6d12e02b3dd74a6bbcdc/donut.ipynb \ No newline at end of file diff --git a/_downloads/be17cb77da9af9bd2fad867c8205ae9c/usage.ipynb b/_downloads/be17cb77da9af9bd2fad867c8205ae9c/usage.ipynb deleted file mode 120000 index 80564590883..00000000000 --- a/_downloads/be17cb77da9af9bd2fad867c8205ae9c/usage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/be17cb77da9af9bd2fad867c8205ae9c/usage.ipynb \ No newline at end of file diff --git a/_downloads/be2939a518dab831c4d343d142e6c9f1/colormaps.ipynb b/_downloads/be2939a518dab831c4d343d142e6c9f1/colormaps.ipynb deleted file mode 120000 index f86e9155c01..00000000000 --- a/_downloads/be2939a518dab831c4d343d142e6c9f1/colormaps.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/be2939a518dab831c4d343d142e6c9f1/colormaps.ipynb \ No newline at end of file diff --git a/_downloads/be4f761d0b0329fc94c94fd5e27968cc/custom_ticker1.py b/_downloads/be4f761d0b0329fc94c94fd5e27968cc/custom_ticker1.py deleted file mode 120000 index 41cfb5a028f..00000000000 --- a/_downloads/be4f761d0b0329fc94c94fd5e27968cc/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/be4f761d0b0329fc94c94fd5e27968cc/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/be514460f1e89fd1a002048af6d6d5f0/bmh.ipynb b/_downloads/be514460f1e89fd1a002048af6d6d5f0/bmh.ipynb deleted file mode 100644 index 6cf9deab84d..00000000000 --- a/_downloads/be514460f1e89fd1a002048af6d6d5f0/bmh.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bayesian Methods for Hackers style sheet\n\n\nThis example demonstrates the style used in the Bayesian Methods for Hackers\n[1]_ online book.\n\n.. [1] http://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from numpy.random import beta\nimport matplotlib.pyplot as plt\n\n\nplt.style.use('bmh')\n\n\ndef plot_beta_hist(ax, a, b):\n ax.hist(beta(a, b, size=10000), histtype=\"stepfilled\",\n bins=25, alpha=0.8, density=True)\n\n\nfig, ax = plt.subplots()\nplot_beta_hist(ax, 10, 10)\nplot_beta_hist(ax, 4, 12)\nplot_beta_hist(ax, 50, 12)\nplot_beta_hist(ax, 6, 55)\nax.set_title(\"'bmh' style sheet\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/be57d40691da4316212b76a0f4be5669/mathtext_wx_sgskip.py b/_downloads/be57d40691da4316212b76a0f4be5669/mathtext_wx_sgskip.py deleted file mode 120000 index 55b6efcbd6d..00000000000 --- a/_downloads/be57d40691da4316212b76a0f4be5669/mathtext_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/be57d40691da4316212b76a0f4be5669/mathtext_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/be5b22bf48132c8ec5511f631775b2b4/fill_between_alpha.ipynb b/_downloads/be5b22bf48132c8ec5511f631775b2b4/fill_between_alpha.ipynb deleted file mode 100644 index 9a6849a0cdc..00000000000 --- a/_downloads/be5b22bf48132c8ec5511f631775b2b4/fill_between_alpha.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nFill Between and Alpha\n======================\n\nThe :meth:`~matplotlib.axes.Axes.fill_between` function generates a\nshaded region between a min and max boundary that is useful for\nillustrating ranges. It has a very handy ``where`` argument to\ncombine filling with logical ranges, e.g., to just fill in a curve over\nsome threshold value.\n\nAt its most basic level, ``fill_between`` can be use to enhance a\ngraphs visual appearance. Let's compare two graphs of a financial\ntimes with a simple line plot on the left and a filled line on the\nright.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.cbook as cbook\n\n# load up some sample financial data\nwith cbook.get_sample_data('goog.npz') as datafile:\n r = np.load(datafile)['price_data'].view(np.recarray)\n# Matplotlib prefers datetime instead of np.datetime64.\ndate = r.date.astype('O')\n# create two subplots with the shared x and y axes\nfig, (ax1, ax2) = plt.subplots(1, 2, sharex=True, sharey=True)\n\npricemin = r.close.min()\n\nax1.plot(date, r.close, lw=2)\nax2.fill_between(date, pricemin, r.close, facecolor='blue', alpha=0.5)\n\nfor ax in ax1, ax2:\n ax.grid(True)\n\nax1.set_ylabel('price')\nfor label in ax2.get_yticklabels():\n label.set_visible(False)\n\nfig.suptitle('Google (GOOG) daily closing price')\nfig.autofmt_xdate()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The alpha channel is not necessary here, but it can be used to soften\ncolors for more visually appealing plots. In other examples, as we'll\nsee below, the alpha channel is functionally useful as the shaded\nregions can overlap and alpha allows you to see both. Note that the\npostscript format does not support alpha (this is a postscript\nlimitation, not a matplotlib limitation), so when using alpha save\nyour figures in PNG, PDF or SVG.\n\nOur next example computes two populations of random walkers with a\ndifferent mean and standard deviation of the normal distributions from\nwhich the steps are drawn. We use shared regions to plot +/- one\nstandard deviation of the mean position of the population. Here the\nalpha channel is useful, not just aesthetic.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Nsteps, Nwalkers = 100, 250\nt = np.arange(Nsteps)\n\n# an (Nsteps x Nwalkers) array of random walk steps\nS1 = 0.002 + 0.01*np.random.randn(Nsteps, Nwalkers)\nS2 = 0.004 + 0.02*np.random.randn(Nsteps, Nwalkers)\n\n# an (Nsteps x Nwalkers) array of random walker positions\nX1 = S1.cumsum(axis=0)\nX2 = S2.cumsum(axis=0)\n\n\n# Nsteps length arrays empirical means and standard deviations of both\n# populations over time\nmu1 = X1.mean(axis=1)\nsigma1 = X1.std(axis=1)\nmu2 = X2.mean(axis=1)\nsigma2 = X2.std(axis=1)\n\n# plot it!\nfig, ax = plt.subplots(1)\nax.plot(t, mu1, lw=2, label='mean population 1', color='blue')\nax.plot(t, mu2, lw=2, label='mean population 2', color='yellow')\nax.fill_between(t, mu1+sigma1, mu1-sigma1, facecolor='blue', alpha=0.5)\nax.fill_between(t, mu2+sigma2, mu2-sigma2, facecolor='yellow', alpha=0.5)\nax.set_title(r'random walkers empirical $\\mu$ and $\\pm \\sigma$ interval')\nax.legend(loc='upper left')\nax.set_xlabel('num steps')\nax.set_ylabel('position')\nax.grid()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The ``where`` keyword argument is very handy for highlighting certain\nregions of the graph. ``where`` takes a boolean mask the same length\nas the x, ymin and ymax arguments, and only fills in the region where\nthe boolean mask is True. In the example below, we simulate a single\nrandom walker and compute the analytic mean and standard deviation of\nthe population positions. The population mean is shown as the black\ndashed line, and the plus/minus one sigma deviation from the mean is\nshown as the yellow filled region. We use the where mask\n``X > upper_bound`` to find the region where the walker is above the one\nsigma boundary, and shade that region blue.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Nsteps = 500\nt = np.arange(Nsteps)\n\nmu = 0.002\nsigma = 0.01\n\n# the steps and position\nS = mu + sigma*np.random.randn(Nsteps)\nX = S.cumsum()\n\n# the 1 sigma upper and lower analytic population bounds\nlower_bound = mu*t - sigma*np.sqrt(t)\nupper_bound = mu*t + sigma*np.sqrt(t)\n\nfig, ax = plt.subplots(1)\nax.plot(t, X, lw=2, label='walker position', color='blue')\nax.plot(t, mu*t, lw=1, label='population mean', color='black', ls='--')\nax.fill_between(t, lower_bound, upper_bound, facecolor='yellow', alpha=0.5,\n label='1 sigma range')\nax.legend(loc='upper left')\n\n# here we use the where argument to only fill the region where the\n# walker is above the population 1 sigma boundary\nax.fill_between(t, upper_bound, X, where=X > upper_bound, facecolor='blue',\n alpha=0.5)\nax.set_xlabel('num steps')\nax.set_ylabel('position')\nax.grid()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another handy use of filled regions is to highlight horizontal or\nvertical spans of an axes -- for that matplotlib has some helper\nfunctions :meth:`~matplotlib.axes.Axes.axhspan` and\n:meth:`~matplotlib.axes.Axes.axvspan` and example\n:doc:`/gallery/subplots_axes_and_figures/axhspan_demo`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/be6333ab0ecc939b838042f78e3ed590/polygon_selector_demo.ipynb b/_downloads/be6333ab0ecc939b838042f78e3ed590/polygon_selector_demo.ipynb deleted file mode 100644 index c39fcd36e8a..00000000000 --- a/_downloads/be6333ab0ecc939b838042f78e3ed590/polygon_selector_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Polygon Selector Demo\n\n\nShows how one can select indices of a polygon interactively.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib.widgets import PolygonSelector\nfrom matplotlib.path import Path\n\n\nclass SelectFromCollection(object):\n \"\"\"Select indices from a matplotlib collection using `PolygonSelector`.\n\n Selected indices are saved in the `ind` attribute. This tool fades out the\n points that are not part of the selection (i.e., reduces their alpha\n values). If your collection has alpha < 1, this tool will permanently\n alter the alpha values.\n\n Note that this tool selects collection objects based on their *origins*\n (i.e., `offsets`).\n\n Parameters\n ----------\n ax : :class:`~matplotlib.axes.Axes`\n Axes to interact with.\n\n collection : :class:`matplotlib.collections.Collection` subclass\n Collection you want to select from.\n\n alpha_other : 0 <= float <= 1\n To highlight a selection, this tool sets all selected points to an\n alpha value of 1 and non-selected points to `alpha_other`.\n \"\"\"\n\n def __init__(self, ax, collection, alpha_other=0.3):\n self.canvas = ax.figure.canvas\n self.collection = collection\n self.alpha_other = alpha_other\n\n self.xys = collection.get_offsets()\n self.Npts = len(self.xys)\n\n # Ensure that we have separate colors for each object\n self.fc = collection.get_facecolors()\n if len(self.fc) == 0:\n raise ValueError('Collection must have a facecolor')\n elif len(self.fc) == 1:\n self.fc = np.tile(self.fc, (self.Npts, 1))\n\n self.poly = PolygonSelector(ax, self.onselect)\n self.ind = []\n\n def onselect(self, verts):\n path = Path(verts)\n self.ind = np.nonzero(path.contains_points(self.xys))[0]\n self.fc[:, -1] = self.alpha_other\n self.fc[self.ind, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n def disconnect(self):\n self.poly.disconnect_events()\n self.fc[:, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n\n fig, ax = plt.subplots()\n grid_size = 5\n grid_x = np.tile(np.arange(grid_size), grid_size)\n grid_y = np.repeat(np.arange(grid_size), grid_size)\n pts = ax.scatter(grid_x, grid_y)\n\n selector = SelectFromCollection(ax, pts)\n\n print(\"Select points in the figure by enclosing them within a polygon.\")\n print(\"Press the 'esc' key to start a new polygon.\")\n print(\"Try holding the 'shift' key to move all of the vertices.\")\n print(\"Try holding the 'ctrl' key to move a single vertex.\")\n\n plt.show()\n\n selector.disconnect()\n\n # After figure is closed print the coordinates of the selected points\n print('\\nSelected points:')\n print(selector.xys[selector.ind])" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/be66bf59d26d7f970fdafee261fa5f9c/multicursor.ipynb b/_downloads/be66bf59d26d7f970fdafee261fa5f9c/multicursor.ipynb deleted file mode 120000 index ddde0e81427..00000000000 --- a/_downloads/be66bf59d26d7f970fdafee261fa5f9c/multicursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/be66bf59d26d7f970fdafee261fa5f9c/multicursor.ipynb \ No newline at end of file diff --git a/_downloads/be79354f8f327c6134d53f71034ad2cc/histogram.py b/_downloads/be79354f8f327c6134d53f71034ad2cc/histogram.py deleted file mode 120000 index ba741ee5eb5..00000000000 --- a/_downloads/be79354f8f327c6134d53f71034ad2cc/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/be79354f8f327c6134d53f71034ad2cc/histogram.py \ No newline at end of file diff --git a/_downloads/be8d576134964c49e1b0f2462c63002f/rain.py b/_downloads/be8d576134964c49e1b0f2462c63002f/rain.py deleted file mode 120000 index 35333aeac9d..00000000000 --- a/_downloads/be8d576134964c49e1b0f2462c63002f/rain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/be8d576134964c49e1b0f2462c63002f/rain.py \ No newline at end of file diff --git a/_downloads/be8dd86f32ea5c6416e43ebc1bb358fb/bayes_update.py b/_downloads/be8dd86f32ea5c6416e43ebc1bb358fb/bayes_update.py deleted file mode 120000 index 0e8d1be93a5..00000000000 --- a/_downloads/be8dd86f32ea5c6416e43ebc1bb358fb/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/be8dd86f32ea5c6416e43ebc1bb358fb/bayes_update.py \ No newline at end of file diff --git a/_downloads/be8f7f88ab352615a5fab46ce09d30e1/colorbar_basics.py b/_downloads/be8f7f88ab352615a5fab46ce09d30e1/colorbar_basics.py deleted file mode 120000 index 58e95854a92..00000000000 --- a/_downloads/be8f7f88ab352615a5fab46ce09d30e1/colorbar_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/be8f7f88ab352615a5fab46ce09d30e1/colorbar_basics.py \ No newline at end of file diff --git a/_downloads/be92f876be87e0b01c434dd44d4ecea5/vline_hline_demo.ipynb b/_downloads/be92f876be87e0b01c434dd44d4ecea5/vline_hline_demo.ipynb deleted file mode 120000 index aaee5a4374f..00000000000 --- a/_downloads/be92f876be87e0b01c434dd44d4ecea5/vline_hline_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/be92f876be87e0b01c434dd44d4ecea5/vline_hline_demo.ipynb \ No newline at end of file diff --git a/_downloads/be940851a1269ea3401684177b870d92/artists.py b/_downloads/be940851a1269ea3401684177b870d92/artists.py deleted file mode 120000 index 8ca1b2b2af3..00000000000 --- a/_downloads/be940851a1269ea3401684177b870d92/artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/be940851a1269ea3401684177b870d92/artists.py \ No newline at end of file diff --git a/_downloads/be969e9b199ab8112fe72be1c15c55c3/image_thumbnail_sgskip.ipynb b/_downloads/be969e9b199ab8112fe72be1c15c55c3/image_thumbnail_sgskip.ipynb deleted file mode 120000 index e68d5d7e142..00000000000 --- a/_downloads/be969e9b199ab8112fe72be1c15c55c3/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/be969e9b199ab8112fe72be1c15c55c3/image_thumbnail_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/bea141aa211880f8734553ebfce669da/canvasagg.py b/_downloads/bea141aa211880f8734553ebfce669da/canvasagg.py deleted file mode 120000 index ca1dd4475bc..00000000000 --- a/_downloads/bea141aa211880f8734553ebfce669da/canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bea141aa211880f8734553ebfce669da/canvasagg.py \ No newline at end of file diff --git a/_downloads/bec52923c4e8bde35b6455fdff6def07/scatter_star_poly.py b/_downloads/bec52923c4e8bde35b6455fdff6def07/scatter_star_poly.py deleted file mode 120000 index 9bb9a484b88..00000000000 --- a/_downloads/bec52923c4e8bde35b6455fdff6def07/scatter_star_poly.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bec52923c4e8bde35b6455fdff6def07/scatter_star_poly.py \ No newline at end of file diff --git a/_downloads/bede81906f5c07fdaa74c2847675a6ea/fig_x.py b/_downloads/bede81906f5c07fdaa74c2847675a6ea/fig_x.py deleted file mode 120000 index f8b5275f2bd..00000000000 --- a/_downloads/bede81906f5c07fdaa74c2847675a6ea/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bede81906f5c07fdaa74c2847675a6ea/fig_x.py \ No newline at end of file diff --git a/_downloads/bee27d4536a5654dea320134daa5b44b/contour_image.ipynb b/_downloads/bee27d4536a5654dea320134daa5b44b/contour_image.ipynb deleted file mode 120000 index e1fdaa7891b..00000000000 --- a/_downloads/bee27d4536a5654dea320134daa5b44b/contour_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bee27d4536a5654dea320134daa5b44b/contour_image.ipynb \ No newline at end of file diff --git a/_downloads/beedf292d885e68c52ccbe446ad49f4b/fonts_demo.py b/_downloads/beedf292d885e68c52ccbe446ad49f4b/fonts_demo.py deleted file mode 120000 index 1031a5069ff..00000000000 --- a/_downloads/beedf292d885e68c52ccbe446ad49f4b/fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/beedf292d885e68c52ccbe446ad49f4b/fonts_demo.py \ No newline at end of file diff --git a/_downloads/bef256d01b6a59d165350b944934b4ab/watermark_text.ipynb b/_downloads/bef256d01b6a59d165350b944934b4ab/watermark_text.ipynb deleted file mode 120000 index 16e59a5a41b..00000000000 --- a/_downloads/bef256d01b6a59d165350b944934b4ab/watermark_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bef256d01b6a59d165350b944934b4ab/watermark_text.ipynb \ No newline at end of file diff --git a/_downloads/befcd2062d84c91e56227d987a16ed6e/triinterp_demo.ipynb b/_downloads/befcd2062d84c91e56227d987a16ed6e/triinterp_demo.ipynb deleted file mode 120000 index 0d91bcfe84f..00000000000 --- a/_downloads/befcd2062d84c91e56227d987a16ed6e/triinterp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/befcd2062d84c91e56227d987a16ed6e/triinterp_demo.ipynb \ No newline at end of file diff --git a/_downloads/bf019ccca63ca62c8a12b2dc9a8c2edf/leftventricle_bulleye.py b/_downloads/bf019ccca63ca62c8a12b2dc9a8c2edf/leftventricle_bulleye.py deleted file mode 120000 index fa8fbf2c84a..00000000000 --- a/_downloads/bf019ccca63ca62c8a12b2dc9a8c2edf/leftventricle_bulleye.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bf019ccca63ca62c8a12b2dc9a8c2edf/leftventricle_bulleye.py \ No newline at end of file diff --git a/_downloads/bf03b3b7a1c4e04acbb2d88dcedc0f39/fancybox_demo.py b/_downloads/bf03b3b7a1c4e04acbb2d88dcedc0f39/fancybox_demo.py deleted file mode 120000 index df97f849611..00000000000 --- a/_downloads/bf03b3b7a1c4e04acbb2d88dcedc0f39/fancybox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bf03b3b7a1c4e04acbb2d88dcedc0f39/fancybox_demo.py \ No newline at end of file diff --git a/_downloads/bf06787700981a066305ae1e24db6cd0/rasterization_demo.py b/_downloads/bf06787700981a066305ae1e24db6cd0/rasterization_demo.py deleted file mode 100644 index 96d8b5868ca..00000000000 --- a/_downloads/bf06787700981a066305ae1e24db6cd0/rasterization_demo.py +++ /dev/null @@ -1,56 +0,0 @@ -""" -================== -Rasterization Demo -================== - -""" -import numpy as np -import matplotlib.pyplot as plt - -d = np.arange(100).reshape(10, 10) -x, y = np.meshgrid(np.arange(11), np.arange(11)) - -theta = 0.25*np.pi -xx = x*np.cos(theta) - y*np.sin(theta) -yy = x*np.sin(theta) + y*np.cos(theta) - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) -ax1.set_aspect(1) -ax1.pcolormesh(xx, yy, d) -ax1.set_title("No Rasterization") - -ax2.set_aspect(1) -ax2.set_title("Rasterization") - -m = ax2.pcolormesh(xx, yy, d) -m.set_rasterized(True) - -ax3.set_aspect(1) -ax3.pcolormesh(xx, yy, d) -ax3.text(0.5, 0.5, "Text", alpha=0.2, - va="center", ha="center", size=50, transform=ax3.transAxes) - -ax3.set_title("No Rasterization") - - -ax4.set_aspect(1) -m = ax4.pcolormesh(xx, yy, d) -m.set_zorder(-20) - -ax4.text(0.5, 0.5, "Text", alpha=0.2, - zorder=-15, - va="center", ha="center", size=50, transform=ax4.transAxes) - -ax4.set_rasterization_zorder(-10) - -ax4.set_title("Rasterization z$<-10$") - - -# ax2.title.set_rasterized(True) # should display a warning - -plt.savefig("test_rasterization.pdf", dpi=150) -plt.savefig("test_rasterization.eps", dpi=150) - -if not plt.rcParams["text.usetex"]: - plt.savefig("test_rasterization.svg", dpi=150) - # svg backend currently ignores the dpi diff --git a/_downloads/bf0c66d82443515f6ffc1625103c0329/unchained.py b/_downloads/bf0c66d82443515f6ffc1625103c0329/unchained.py deleted file mode 120000 index a35c0a4716f..00000000000 --- a/_downloads/bf0c66d82443515f6ffc1625103c0329/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bf0c66d82443515f6ffc1625103c0329/unchained.py \ No newline at end of file diff --git a/_downloads/bf12fc90aeaff5ce1fd06d98c61dd4e8/linestyles.ipynb b/_downloads/bf12fc90aeaff5ce1fd06d98c61dd4e8/linestyles.ipynb deleted file mode 120000 index aa8eab50910..00000000000 --- a/_downloads/bf12fc90aeaff5ce1fd06d98c61dd4e8/linestyles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bf12fc90aeaff5ce1fd06d98c61dd4e8/linestyles.ipynb \ No newline at end of file diff --git a/_downloads/bf155ae1a8c5bbb926d348ab69ba4e6f/simple_axisartist1.ipynb b/_downloads/bf155ae1a8c5bbb926d348ab69ba4e6f/simple_axisartist1.ipynb deleted file mode 120000 index 556c52d6158..00000000000 --- a/_downloads/bf155ae1a8c5bbb926d348ab69ba4e6f/simple_axisartist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bf155ae1a8c5bbb926d348ab69ba4e6f/simple_axisartist1.ipynb \ No newline at end of file diff --git a/_downloads/bf25f9aadd7babf9bfa0c3eda62c925a/usetex_demo.py b/_downloads/bf25f9aadd7babf9bfa0c3eda62c925a/usetex_demo.py deleted file mode 100644 index 09902ad9efe..00000000000 --- a/_downloads/bf25f9aadd7babf9bfa0c3eda62c925a/usetex_demo.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -=========== -Usetex Demo -=========== - -Shows how to use latex in a plot. - -Also refer to the :doc:`/tutorials/text/usetex` guide. -""" - -import numpy as np -import matplotlib.pyplot as plt -plt.rc('text', usetex=True) - -# interface tracking profiles -N = 500 -delta = 0.6 -X = np.linspace(-1, 1, N) -plt.plot(X, (1 - np.tanh(4 * X / delta)) / 2, # phase field tanh profiles - X, (1.4 + np.tanh(4 * X / delta)) / 4, "C2", # composition profile - X, X < 0, 'k--') # sharp interface - -# legend -plt.legend(('phase field', 'level set', 'sharp interface'), - shadow=True, loc=(0.01, 0.48), handlelength=1.5, fontsize=16) - -# the arrow -plt.annotate("", xy=(-delta / 2., 0.1), xytext=(delta / 2., 0.1), - arrowprops=dict(arrowstyle="<->", connectionstyle="arc3")) -plt.text(0, 0.1, r'$\delta$', - {'color': 'black', 'fontsize': 24, 'ha': 'center', 'va': 'center', - 'bbox': dict(boxstyle="round", fc="white", ec="black", pad=0.2)}) - -# Use tex in labels -plt.xticks((-1, 0, 1), ('$-1$', r'$\pm 0$', '$+1$'), color='k', size=20) - -# Left Y-axis labels, combine math mode and text mode -plt.ylabel(r'\bf{phase field} $\phi$', {'color': 'C0', 'fontsize': 20}) -plt.yticks((0, 0.5, 1), (r'\bf{0}', r'\bf{.5}', r'\bf{1}'), color='k', size=20) - -# Right Y-axis labels -plt.text(1.02, 0.5, r"\bf{level set} $\phi$", {'color': 'C2', 'fontsize': 20}, - horizontalalignment='left', - verticalalignment='center', - rotation=90, - clip_on=False, - transform=plt.gca().transAxes) - -# Use multiline environment inside a `text`. -# level set equations -eq1 = r"\begin{eqnarray*}" + \ - r"|\nabla\phi| &=& 1,\\" + \ - r"\frac{\partial \phi}{\partial t} + U|\nabla \phi| &=& 0 " + \ - r"\end{eqnarray*}" -plt.text(1, 0.9, eq1, {'color': 'C2', 'fontsize': 18}, va="top", ha="right") - -# phase field equations -eq2 = r'\begin{eqnarray*}' + \ - r'\mathcal{F} &=& \int f\left( \phi, c \right) dV, \\ ' + \ - r'\frac{ \partial \phi } { \partial t } &=& -M_{ \phi } ' + \ - r'\frac{ \delta \mathcal{F} } { \delta \phi }' + \ - r'\end{eqnarray*}' -plt.text(0.18, 0.18, eq2, {'color': 'C0', 'fontsize': 16}) - -plt.text(-1, .30, r'gamma: $\gamma$', {'color': 'r', 'fontsize': 20}) -plt.text(-1, .18, r'Omega: $\Omega$', {'color': 'b', 'fontsize': 20}) - -plt.show() diff --git a/_downloads/bf3619ac878414b086e5459e01d93b45/boxplot_demo.ipynb b/_downloads/bf3619ac878414b086e5459e01d93b45/boxplot_demo.ipynb deleted file mode 120000 index c3d3e12873e..00000000000 --- a/_downloads/bf3619ac878414b086e5459e01d93b45/boxplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bf3619ac878414b086e5459e01d93b45/boxplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/bf3705d1ea40d0a539e4216cfea23dc0/whats_new_98_4_fill_between.ipynb b/_downloads/bf3705d1ea40d0a539e4216cfea23dc0/whats_new_98_4_fill_between.ipynb deleted file mode 120000 index 7831c05047f..00000000000 --- a/_downloads/bf3705d1ea40d0a539e4216cfea23dc0/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bf3705d1ea40d0a539e4216cfea23dc0/whats_new_98_4_fill_between.ipynb \ No newline at end of file diff --git a/_downloads/bf4021a44205862a28bef8a08bfba2f8/linestyles.py b/_downloads/bf4021a44205862a28bef8a08bfba2f8/linestyles.py deleted file mode 100644 index cbae3f1d741..00000000000 --- a/_downloads/bf4021a44205862a28bef8a08bfba2f8/linestyles.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -========== -Linestyles -========== - -Simple linestyles can be defined using the strings "solid", "dotted", "dashed" -or "dashdot". More refined control can be achieved by providing a dash tuple -``(offset, (on_off_seq))``. For example, ``(0, (3, 10, 1, 15))`` means -(3pt line, 10pt space, 1pt line, 15pt space) with no offset. See also -`.Line2D.set_linestyle`. - -*Note*: The dash style can also be configured via `.Line2D.set_dashes` -as shown in :doc:`/gallery/lines_bars_and_markers/line_demo_dash_control` -and passing a list of dash sequences using the keyword *dashes* to the -cycler in :doc:`property_cycle `. -""" -import numpy as np -import matplotlib.pyplot as plt - -linestyle_str = [ - ('solid', 'solid'), # Same as (0, ()) or '-' - ('dotted', 'dotted'), # Same as (0, (1, 1)) or '.' - ('dashed', 'dashed'), # Same as '--' - ('dashdot', 'dashdot')] # Same as '-.' - -linestyle_tuple = [ - ('loosely dotted', (0, (1, 10))), - ('dotted', (0, (1, 1))), - ('densely dotted', (0, (1, 1))), - - ('loosely dashed', (0, (5, 10))), - ('dashed', (0, (5, 5))), - ('densely dashed', (0, (5, 1))), - - ('loosely dashdotted', (0, (3, 10, 1, 10))), - ('dashdotted', (0, (3, 5, 1, 5))), - ('densely dashdotted', (0, (3, 1, 1, 1))), - - ('dashdotdotted', (0, (3, 5, 1, 5, 1, 5))), - ('loosely dashdotdotted', (0, (3, 10, 1, 10, 1, 10))), - ('densely dashdotdotted', (0, (3, 1, 1, 1, 1, 1)))] - - -def plot_linestyles(ax, linestyles): - X, Y = np.linspace(0, 100, 10), np.zeros(10) - yticklabels = [] - - for i, (name, linestyle) in enumerate(linestyles): - ax.plot(X, Y+i, linestyle=linestyle, linewidth=1.5, color='black') - yticklabels.append(name) - - ax.set(xticks=[], ylim=(-0.5, len(linestyles)-0.5), - yticks=np.arange(len(linestyles)), yticklabels=yticklabels) - - # For each line style, add a text annotation with a small offset from - # the reference point (0 in Axes coords, y tick value in Data coords). - for i, (name, linestyle) in enumerate(linestyles): - ax.annotate(repr(linestyle), - xy=(0.0, i), xycoords=ax.get_yaxis_transform(), - xytext=(-6, -12), textcoords='offset points', - color="blue", fontsize=8, ha="right", family="monospace") - - -fig, (ax0, ax1) = plt.subplots(2, 1, gridspec_kw={'height_ratios': [1, 3]}, - figsize=(10, 8)) - -plot_linestyles(ax0, linestyle_str[::-1]) -plot_linestyles(ax1, linestyle_tuple[::-1]) - -plt.tight_layout() -plt.show() diff --git a/_downloads/bf46f16a7e02d7ba5c7a2e1673011792/colorbar_basics.ipynb b/_downloads/bf46f16a7e02d7ba5c7a2e1673011792/colorbar_basics.ipynb deleted file mode 120000 index 1ca1a06b961..00000000000 --- a/_downloads/bf46f16a7e02d7ba5c7a2e1673011792/colorbar_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bf46f16a7e02d7ba5c7a2e1673011792/colorbar_basics.ipynb \ No newline at end of file diff --git a/_downloads/bf4b5c401eeb2383094144d3cc29dccc/demo_axisline_style.ipynb b/_downloads/bf4b5c401eeb2383094144d3cc29dccc/demo_axisline_style.ipynb deleted file mode 100644 index 31d8a9552d5..00000000000 --- a/_downloads/bf4b5c401eeb2383094144d3cc29dccc/demo_axisline_style.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis line styles\n\n\nThis example shows some configurations for axis style.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axisartist.axislines import SubplotZero\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = SubplotZero(fig, 111)\nfig.add_subplot(ax)\n\nfor direction in [\"xzero\", \"yzero\"]:\n # adds arrows at the ends of each axis\n ax.axis[direction].set_axisline_style(\"-|>\")\n\n # adds X and Y-axis from the origin\n ax.axis[direction].set_visible(True)\n\nfor direction in [\"left\", \"right\", \"bottom\", \"top\"]:\n # hides borders\n ax.axis[direction].set_visible(False)\n\nx = np.linspace(-0.5, 1., 100)\nax.plot(x, np.sin(x*np.pi))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bf58535d6c5f868a6a361250313884e3/violinplot.py b/_downloads/bf58535d6c5f868a6a361250313884e3/violinplot.py deleted file mode 120000 index 0423c4ac680..00000000000 --- a/_downloads/bf58535d6c5f868a6a361250313884e3/violinplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bf58535d6c5f868a6a361250313884e3/violinplot.py \ No newline at end of file diff --git a/_downloads/bf5de16d4fc3ea459e98f4f976c32e75/psd_demo.ipynb b/_downloads/bf5de16d4fc3ea459e98f4f976c32e75/psd_demo.ipynb deleted file mode 100644 index 6ec826470f8..00000000000 --- a/_downloads/bf5de16d4fc3ea459e98f4f976c32e75/psd_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Psd Demo\n\n\nPlotting Power Spectral Density (PSD) in Matplotlib.\n\nThe PSD is a common plot in the field of signal processing. NumPy has\nmany useful libraries for computing a PSD. Below we demo a few examples\nof how this can be accomplished and visualized with Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.mlab as mlab\nimport matplotlib.gridspec as gridspec\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ndt = 0.01\nt = np.arange(0, 10, dt)\nnse = np.random.randn(len(t))\nr = np.exp(-t / 0.05)\n\ncnse = np.convolve(nse, r) * dt\ncnse = cnse[:len(t)]\ns = 0.1 * np.sin(2 * np.pi * t) + cnse\n\nplt.subplot(211)\nplt.plot(t, s)\nplt.subplot(212)\nplt.psd(s, 512, 1 / dt)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Compare this with the equivalent Matlab code to accomplish the same thing::\n\n dt = 0.01;\n t = [0:dt:10];\n nse = randn(size(t));\n r = exp(-t/0.05);\n cnse = conv(nse, r)*dt;\n cnse = cnse(1:length(t));\n s = 0.1*sin(2*pi*t) + cnse;\n\n subplot(211)\n plot(t,s)\n subplot(212)\n psd(s, 512, 1/dt)\n\nBelow we'll show a slightly more complex example that demonstrates\nhow padding affects the resulting PSD.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "dt = np.pi / 100.\nfs = 1. / dt\nt = np.arange(0, 8, dt)\ny = 10. * np.sin(2 * np.pi * 4 * t) + 5. * np.sin(2 * np.pi * 4.25 * t)\ny = y + np.random.randn(*t.shape)\n\n# Plot the raw time series\nfig = plt.figure(constrained_layout=True)\ngs = gridspec.GridSpec(2, 3, figure=fig)\nax = fig.add_subplot(gs[0, :])\nax.plot(t, y)\nax.set_xlabel('time [s]')\nax.set_ylabel('signal')\n\n# Plot the PSD with different amounts of zero padding. This uses the entire\n# time series at once\nax2 = fig.add_subplot(gs[1, 0])\nax2.psd(y, NFFT=len(t), pad_to=len(t), Fs=fs)\nax2.psd(y, NFFT=len(t), pad_to=len(t) * 2, Fs=fs)\nax2.psd(y, NFFT=len(t), pad_to=len(t) * 4, Fs=fs)\nplt.title('zero padding')\n\n# Plot the PSD with different block sizes, Zero pad to the length of the\n# original data sequence.\nax3 = fig.add_subplot(gs[1, 1], sharex=ax2, sharey=ax2)\nax3.psd(y, NFFT=len(t), pad_to=len(t), Fs=fs)\nax3.psd(y, NFFT=len(t) // 2, pad_to=len(t), Fs=fs)\nax3.psd(y, NFFT=len(t) // 4, pad_to=len(t), Fs=fs)\nax3.set_ylabel('')\nplt.title('block size')\n\n# Plot the PSD with different amounts of overlap between blocks\nax4 = fig.add_subplot(gs[1, 2], sharex=ax2, sharey=ax2)\nax4.psd(y, NFFT=len(t) // 2, pad_to=len(t), noverlap=0, Fs=fs)\nax4.psd(y, NFFT=len(t) // 2, pad_to=len(t),\n noverlap=int(0.05 * len(t) / 2.), Fs=fs)\nax4.psd(y, NFFT=len(t) // 2, pad_to=len(t),\n noverlap=int(0.2 * len(t) / 2.), Fs=fs)\nax4.set_ylabel('')\nplt.title('overlap')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is a ported version of a MATLAB example from the signal\nprocessing toolbox that showed some difference at one time between\nMatplotlib's and MATLAB's scaling of the PSD.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fs = 1000\nt = np.linspace(0, 0.3, 301)\nA = np.array([2, 8]).reshape(-1, 1)\nf = np.array([150, 140]).reshape(-1, 1)\nxn = (A * np.sin(2 * np.pi * f * t)).sum(axis=0)\nxn += 5 * np.random.randn(*t.shape)\n\nfig, (ax0, ax1) = plt.subplots(ncols=2, constrained_layout=True)\n\nyticks = np.arange(-50, 30, 10)\nyrange = (yticks[0], yticks[-1])\nxticks = np.arange(0, 550, 100)\n\nax0.psd(xn, NFFT=301, Fs=fs, window=mlab.window_none, pad_to=1024,\n scale_by_freq=True)\nax0.set_title('Periodogram')\nax0.set_yticks(yticks)\nax0.set_xticks(xticks)\nax0.grid(True)\nax0.set_ylim(yrange)\n\nax1.psd(xn, NFFT=150, Fs=fs, window=mlab.window_none, pad_to=512, noverlap=75,\n scale_by_freq=True)\nax1.set_title('Welch')\nax1.set_xticks(xticks)\nax1.set_yticks(yticks)\nax1.set_ylabel('') # overwrite the y-label added by `psd`\nax1.grid(True)\nax1.set_ylim(yrange)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is a ported version of a MATLAB example from the signal\nprocessing toolbox that showed some difference at one time between\nMatplotlib's and MATLAB's scaling of the PSD.\n\nIt uses a complex signal so we can see that complex PSD's work properly.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "prng = np.random.RandomState(19680801) # to ensure reproducibility\n\nfs = 1000\nt = np.linspace(0, 0.3, 301)\nA = np.array([2, 8]).reshape(-1, 1)\nf = np.array([150, 140]).reshape(-1, 1)\nxn = (A * np.exp(2j * np.pi * f * t)).sum(axis=0) + 5 * prng.randn(*t.shape)\n\nfig, (ax0, ax1) = plt.subplots(ncols=2, constrained_layout=True)\n\nyticks = np.arange(-50, 30, 10)\nyrange = (yticks[0], yticks[-1])\nxticks = np.arange(-500, 550, 200)\n\nax0.psd(xn, NFFT=301, Fs=fs, window=mlab.window_none, pad_to=1024,\n scale_by_freq=True)\nax0.set_title('Periodogram')\nax0.set_yticks(yticks)\nax0.set_xticks(xticks)\nax0.grid(True)\nax0.set_ylim(yrange)\n\nax1.psd(xn, NFFT=150, Fs=fs, window=mlab.window_none, pad_to=512, noverlap=75,\n scale_by_freq=True)\nax1.set_title('Welch')\nax1.set_xticks(xticks)\nax1.set_yticks(yticks)\nax1.set_ylabel('') # overwrite the y-label added by `psd`\nax1.grid(True)\nax1.set_ylim(yrange)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bf63bfdb553f3086da9aff319d8a4084/eventcollection_demo.py b/_downloads/bf63bfdb553f3086da9aff319d8a4084/eventcollection_demo.py deleted file mode 120000 index 7a7b4e7aa34..00000000000 --- a/_downloads/bf63bfdb553f3086da9aff319d8a4084/eventcollection_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bf63bfdb553f3086da9aff319d8a4084/eventcollection_demo.py \ No newline at end of file diff --git a/_downloads/bf686a883574d658c28f1bc74a3d2463/colormapnorms.ipynb b/_downloads/bf686a883574d658c28f1bc74a3d2463/colormapnorms.ipynb deleted file mode 120000 index d5f8b41a353..00000000000 --- a/_downloads/bf686a883574d658c28f1bc74a3d2463/colormapnorms.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bf686a883574d658c28f1bc74a3d2463/colormapnorms.ipynb \ No newline at end of file diff --git a/_downloads/bf6c2c171dcf8b015ea61200e3373028/lifecycle.ipynb b/_downloads/bf6c2c171dcf8b015ea61200e3373028/lifecycle.ipynb deleted file mode 120000 index 3a33004ccd3..00000000000 --- a/_downloads/bf6c2c171dcf8b015ea61200e3373028/lifecycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bf6c2c171dcf8b015ea61200e3373028/lifecycle.ipynb \ No newline at end of file diff --git a/_downloads/bf6d0a45f5a6dec6f679c42b579ead7a/strip_chart.py b/_downloads/bf6d0a45f5a6dec6f679c42b579ead7a/strip_chart.py deleted file mode 120000 index 8c98059c020..00000000000 --- a/_downloads/bf6d0a45f5a6dec6f679c42b579ead7a/strip_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bf6d0a45f5a6dec6f679c42b579ead7a/strip_chart.py \ No newline at end of file diff --git a/_downloads/bf76d6f76a2bd6e2f3cc1b6690591ede/mathtext_wx_sgskip.py b/_downloads/bf76d6f76a2bd6e2f3cc1b6690591ede/mathtext_wx_sgskip.py deleted file mode 120000 index 818c72a1e6b..00000000000 --- a/_downloads/bf76d6f76a2bd6e2f3cc1b6690591ede/mathtext_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bf76d6f76a2bd6e2f3cc1b6690591ede/mathtext_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/bf79ea0ff97dbbea26264f9abafa668a/embedding_in_wx5_sgskip.ipynb b/_downloads/bf79ea0ff97dbbea26264f9abafa668a/embedding_in_wx5_sgskip.ipynb deleted file mode 100644 index 99bcc5707c4..00000000000 --- a/_downloads/bf79ea0ff97dbbea26264f9abafa668a/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #5\n==================\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import wx\nimport wx.lib.agw.aui as aui\nimport wx.lib.mixins.inspection as wit\n\nimport matplotlib as mpl\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar\n\n\nclass Plot(wx.Panel):\n def __init__(self, parent, id=-1, dpi=None, **kwargs):\n wx.Panel.__init__(self, parent, id=id, **kwargs)\n self.figure = mpl.figure.Figure(dpi=dpi, figsize=(2, 2))\n self.canvas = FigureCanvas(self, -1, self.figure)\n self.toolbar = NavigationToolbar(self.canvas)\n self.toolbar.Realize()\n\n sizer = wx.BoxSizer(wx.VERTICAL)\n sizer.Add(self.canvas, 1, wx.EXPAND)\n sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n self.SetSizer(sizer)\n\n\nclass PlotNotebook(wx.Panel):\n def __init__(self, parent, id=-1):\n wx.Panel.__init__(self, parent, id=id)\n self.nb = aui.AuiNotebook(self)\n sizer = wx.BoxSizer()\n sizer.Add(self.nb, 1, wx.EXPAND)\n self.SetSizer(sizer)\n\n def add(self, name=\"plot\"):\n page = Plot(self.nb)\n self.nb.AddPage(page, name)\n return page.figure\n\n\ndef demo():\n # alternatively you could use\n #app = wx.App()\n # InspectableApp is a great debug tool, see:\n # http://wiki.wxpython.org/Widget%20Inspection%20Tool\n app = wit.InspectableApp()\n frame = wx.Frame(None, -1, 'Plotter')\n plotter = PlotNotebook(frame)\n axes1 = plotter.add('figure 1').gca()\n axes1.plot([1, 2, 3], [2, 1, 4])\n axes2 = plotter.add('figure 2').gca()\n axes2.plot([1, 2, 3, 4, 5], [2, 1, 4, 2, 3])\n frame.Show()\n app.MainLoop()\n\nif __name__ == \"__main__\":\n demo()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bf80ffb7a1b576d515a36a8e7bd2b572/annotation_demo.ipynb b/_downloads/bf80ffb7a1b576d515a36a8e7bd2b572/annotation_demo.ipynb deleted file mode 100644 index de4719637a7..00000000000 --- a/_downloads/bf80ffb7a1b576d515a36a8e7bd2b572/annotation_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotating Plots\n\n\nThe following examples show how it is possible to annotate plots in matplotlib.\nThis includes highlighting specific points of interest and using various\nvisual tools to call attention to this point. For a more complete and in-depth\ndescription of the annotation and text tools in :mod:`matplotlib`, see the\n:doc:`tutorial on annotation `.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.patches import Ellipse\nimport numpy as np\nfrom matplotlib.text import OffsetFrom" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Specifying text points and annotation points\n--------------------------------------------\n\nYou must specify an annotation point `xy=(x,y)` to annotate this point.\nadditionally, you may specify a text point `xytext=(x,y)` for the\nlocation of the text for this annotation. Optionally, you can\nspecify the coordinate system of `xy` and `xytext` with one of the\nfollowing strings for `xycoords` and `textcoords` (default is 'data')::\n\n 'figure points' : points from the lower left corner of the figure\n 'figure pixels' : pixels from the lower left corner of the figure\n 'figure fraction' : 0,0 is lower left of figure and 1,1 is upper, right\n 'axes points' : points from lower left corner of axes\n 'axes pixels' : pixels from lower left corner of axes\n 'axes fraction' : 0,0 is lower left of axes and 1,1 is upper right\n 'offset points' : Specify an offset (in points) from the xy value\n 'offset pixels' : Specify an offset (in pixels) from the xy value\n 'data' : use the axes data coordinate system\n\nNote: for physical coordinate systems (points or pixels) the origin is the\n(bottom, left) of the figure or axes.\n\nOptionally, you can specify arrow properties which draws and arrow\nfrom the text to the annotated point by giving a dictionary of arrow\nproperties\n\nValid keys are::\n\n width : the width of the arrow in points\n frac : the fraction of the arrow length occupied by the head\n headwidth : the width of the base of the arrow head in points\n shrink : move the tip and base some percent away from the\n annotated point and text\n any key for matplotlib.patches.polygon (e.g., facecolor)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Create our figure and data we'll use for plotting\nfig, ax = plt.subplots(figsize=(3, 3))\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\n\n# Plot a line and add some simple annotations\nline, = ax.plot(t, s)\nax.annotate('figure pixels',\n xy=(10, 10), xycoords='figure pixels')\nax.annotate('figure points',\n xy=(80, 80), xycoords='figure points')\nax.annotate('figure fraction',\n xy=(.025, .975), xycoords='figure fraction',\n horizontalalignment='left', verticalalignment='top',\n fontsize=20)\n\n# The following examples show off how these arrows are drawn.\n\nax.annotate('point offset from data',\n xy=(2, 1), xycoords='data',\n xytext=(-15, 25), textcoords='offset points',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='bottom')\n\nax.annotate('axes fraction',\n xy=(3, 1), xycoords='data',\n xytext=(0.8, 0.95), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top')\n\n# You may also use negative points or pixels to specify from (right, top).\n# E.g., (-10, 10) is 10 points to the left of the right side of the axes and 10\n# points above the bottom\n\nax.annotate('pixel offset from axes fraction',\n xy=(1, 0), xycoords='axes fraction',\n xytext=(-20, 20), textcoords='offset pixels',\n horizontalalignment='right',\n verticalalignment='bottom')\n\nax.set(xlim=(-1, 5), ylim=(-3, 5))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using multiple coordinate systems and axis types\n------------------------------------------------\n\nYou can specify the xypoint and the xytext in different positions and\ncoordinate systems, and optionally turn on a connecting line and mark\nthe point with a marker. Annotations work on polar axes too.\n\nIn the example below, the xy point is in native coordinates (xycoords\ndefaults to 'data'). For a polar axes, this is in (theta, radius) space.\nThe text in the example is placed in the fractional figure coordinate system.\nText keyword args like horizontal and vertical alignment are respected.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(subplot_kw=dict(projection='polar'), figsize=(3, 3))\nr = np.arange(0, 1, 0.001)\ntheta = 2*2*np.pi*r\nline, = ax.plot(theta, r)\n\nind = 800\nthisr, thistheta = r[ind], theta[ind]\nax.plot([thistheta], [thisr], 'o')\nax.annotate('a polar annotation',\n xy=(thistheta, thisr), # theta, radius\n xytext=(0.05, 0.05), # fraction, fraction\n textcoords='figure fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='left',\n verticalalignment='bottom')\n\n# You can also use polar notation on a cartesian axes. Here the native\n# coordinate system ('data') is cartesian, so you need to specify the\n# xycoords and textcoords as 'polar' if you want to use (theta, radius).\n\nel = Ellipse((0, 0), 10, 20, facecolor='r', alpha=0.5)\n\nfig, ax = plt.subplots(subplot_kw=dict(aspect='equal'))\nax.add_artist(el)\nel.set_clip_box(ax.bbox)\nax.annotate('the top',\n xy=(np.pi/2., 10.), # theta, radius\n xytext=(np.pi/3, 20.), # theta, radius\n xycoords='polar',\n textcoords='polar',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='left',\n verticalalignment='bottom',\n clip_on=True) # clip to the axes bounding box\n\nax.set(xlim=[-20, 20], ylim=[-20, 20])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Customizing arrow and bubble styles\n-----------------------------------\n\nThe arrow between xytext and the annotation point, as well as the bubble\nthat covers the annotation text, are highly customizable. Below are a few\nparameter options as well as their resulting output.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 5))\n\nt = np.arange(0.0, 5.0, 0.01)\ns = np.cos(2*np.pi*t)\nline, = ax.plot(t, s, lw=3)\n\nax.annotate('straight',\n xy=(0, 1), xycoords='data',\n xytext=(-50, 30), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\"))\n\nax.annotate('arc3,\\nrad 0.2',\n xy=(0.5, -1), xycoords='data',\n xytext=(-80, -60), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc3,rad=.2\"))\n\nax.annotate('arc,\\nangle 50',\n xy=(1., 1), xycoords='data',\n xytext=(-90, 50), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc,angleA=0,armA=50,rad=10\"))\n\nax.annotate('arc,\\narms',\n xy=(1.5, -1), xycoords='data',\n xytext=(-80, -60), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc,angleA=0,armA=40,angleB=-90,armB=30,rad=7\"))\n\nax.annotate('angle,\\nangle 90',\n xy=(2., 1), xycoords='data',\n xytext=(-70, 30), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\"))\n\nax.annotate('angle3,\\nangle -90',\n xy=(2.5, -1), xycoords='data',\n xytext=(-80, -60), textcoords='offset points',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle3,angleA=0,angleB=-90\"))\n\nax.annotate('angle,\\nround',\n xy=(3., 1), xycoords='data',\n xytext=(-60, 30), textcoords='offset points',\n bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\"))\n\nax.annotate('angle,\\nround4',\n xy=(3.5, -1), xycoords='data',\n xytext=(-70, -80), textcoords='offset points',\n size=20,\n bbox=dict(boxstyle=\"round4,pad=.5\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=-90,rad=10\"))\n\nax.annotate('angle,\\nshrink',\n xy=(4., 1), xycoords='data',\n xytext=(-60, 30), textcoords='offset points',\n bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n shrinkA=0, shrinkB=10,\n connectionstyle=\"angle,angleA=0,angleB=90,rad=10\"))\n\n# You can pass an empty string to get only annotation arrows rendered\nann = ax.annotate('', xy=(4., 1.), xycoords='data',\n xytext=(4.5, -1), textcoords='data',\n arrowprops=dict(arrowstyle=\"<->\",\n connectionstyle=\"bar\",\n ec=\"k\",\n shrinkA=5, shrinkB=5))\n\nax.set(xlim=(-1, 5), ylim=(-4, 3))\n\n# We'll create another figure so that it doesn't get too cluttered\nfig, ax = plt.subplots()\n\nel = Ellipse((2, -1), 0.5, 0.5)\nax.add_patch(el)\n\nax.annotate('$->$',\n xy=(2., -1), xycoords='data',\n xytext=(-150, -140), textcoords='offset points',\n bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"->\",\n patchB=el,\n connectionstyle=\"angle,angleA=90,angleB=0,rad=10\"))\n\nax.annotate('arrow\\nfancy',\n xy=(2., -1), xycoords='data',\n xytext=(-100, 60), textcoords='offset points',\n size=20,\n # bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"fancy\",\n fc=\"0.6\", ec=\"none\",\n patchB=el,\n connectionstyle=\"angle3,angleA=0,angleB=-90\"))\n\nax.annotate('arrow\\nsimple',\n xy=(2., -1), xycoords='data',\n xytext=(100, 60), textcoords='offset points',\n size=20,\n # bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"simple\",\n fc=\"0.6\", ec=\"none\",\n patchB=el,\n connectionstyle=\"arc3,rad=0.3\"))\n\nax.annotate('wedge',\n xy=(2., -1), xycoords='data',\n xytext=(-100, -100), textcoords='offset points',\n size=20,\n # bbox=dict(boxstyle=\"round\", fc=\"0.8\"),\n arrowprops=dict(arrowstyle=\"wedge,tail_width=0.7\",\n fc=\"0.6\", ec=\"none\",\n patchB=el,\n connectionstyle=\"arc3,rad=-0.3\"))\n\nann = ax.annotate('bubble,\\ncontours',\n xy=(2., -1), xycoords='data',\n xytext=(0, -70), textcoords='offset points',\n size=20,\n bbox=dict(boxstyle=\"round\",\n fc=(1.0, 0.7, 0.7),\n ec=(1., .5, .5)),\n arrowprops=dict(arrowstyle=\"wedge,tail_width=1.\",\n fc=(1.0, 0.7, 0.7), ec=(1., .5, .5),\n patchA=None,\n patchB=el,\n relpos=(0.2, 0.8),\n connectionstyle=\"arc3,rad=-0.1\"))\n\nann = ax.annotate('bubble',\n xy=(2., -1), xycoords='data',\n xytext=(55, 0), textcoords='offset points',\n size=20, va=\"center\",\n bbox=dict(boxstyle=\"round\", fc=(1.0, 0.7, 0.7), ec=\"none\"),\n arrowprops=dict(arrowstyle=\"wedge,tail_width=1.\",\n fc=(1.0, 0.7, 0.7), ec=\"none\",\n patchA=None,\n patchB=el,\n relpos=(0.2, 0.5)))\n\nax.set(xlim=(-1, 5), ylim=(-5, 3))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "More examples of coordinate systems\n-----------------------------------\n\nBelow we'll show a few more examples of coordinate systems and how the\nlocation of annotations may be specified.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2)\n\nbbox_args = dict(boxstyle=\"round\", fc=\"0.8\")\narrow_args = dict(arrowstyle=\"->\")\n\n# Here we'll demonstrate the extents of the coordinate system and how\n# we place annotating text.\n\nax1.annotate('figure fraction : 0, 0', xy=(0, 0), xycoords='figure fraction',\n xytext=(20, 20), textcoords='offset points',\n ha=\"left\", va=\"bottom\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax1.annotate('figure fraction : 1, 1', xy=(1, 1), xycoords='figure fraction',\n xytext=(-20, -20), textcoords='offset points',\n ha=\"right\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax1.annotate('axes fraction : 0, 0', xy=(0, 0), xycoords='axes fraction',\n xytext=(20, 20), textcoords='offset points',\n ha=\"left\", va=\"bottom\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax1.annotate('axes fraction : 1, 1', xy=(1, 1), xycoords='axes fraction',\n xytext=(-20, -20), textcoords='offset points',\n ha=\"right\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\n# It is also possible to generate draggable annotations\n\nan1 = ax1.annotate('Drag me 1', xy=(.5, .7), xycoords='data',\n #xytext=(.5, .7), textcoords='data',\n ha=\"center\", va=\"center\",\n bbox=bbox_args,\n #arrowprops=arrow_args\n )\n\nan2 = ax1.annotate('Drag me 2', xy=(.5, .5), xycoords=an1,\n xytext=(.5, .3), textcoords='axes fraction',\n ha=\"center\", va=\"center\",\n bbox=bbox_args,\n arrowprops=dict(patchB=an1.get_bbox_patch(),\n connectionstyle=\"arc3,rad=0.2\",\n **arrow_args))\nan1.draggable()\nan2.draggable()\n\nan3 = ax1.annotate('', xy=(.5, .5), xycoords=an2,\n xytext=(.5, .5), textcoords=an1,\n ha=\"center\", va=\"center\",\n bbox=bbox_args,\n arrowprops=dict(patchA=an1.get_bbox_patch(),\n patchB=an2.get_bbox_patch(),\n connectionstyle=\"arc3,rad=0.2\",\n **arrow_args))\n\n# Finally we'll show off some more complex annotation and placement\n\ntext = ax2.annotate('xy=(0, 1)\\nxycoords=(\"data\", \"axes fraction\")',\n xy=(0, 1), xycoords=(\"data\", 'axes fraction'),\n xytext=(0, -20), textcoords='offset points',\n ha=\"center\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax2.annotate('xy=(0.5, 0)\\nxycoords=artist',\n xy=(0.5, 0.), xycoords=text,\n xytext=(0, -20), textcoords='offset points',\n ha=\"center\", va=\"top\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax2.annotate('xy=(0.8, 0.5)\\nxycoords=ax1.transData',\n xy=(0.8, 0.5), xycoords=ax1.transData,\n xytext=(10, 10),\n textcoords=OffsetFrom(ax2.bbox, (0, 0), \"points\"),\n ha=\"left\", va=\"bottom\",\n bbox=bbox_args,\n arrowprops=arrow_args)\n\nax2.set(xlim=[-2, 2], ylim=[-2, 2])\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bf81670349cc7dd3325071feb505a7ad/simple_axis_pad.ipynb b/_downloads/bf81670349cc7dd3325071feb505a7ad/simple_axis_pad.ipynb deleted file mode 100644 index 14252542402..00000000000 --- a/_downloads/bf81670349cc7dd3325071feb505a7ad/simple_axis_pad.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axis Pad\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nimport mpl_toolkits.axisartist.grid_finder as grid_finder\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\n\nimport mpl_toolkits.axisartist as axisartist\n\nfrom mpl_toolkits.axisartist.grid_helper_curvelinear import \\\n GridHelperCurveLinear\n\n\ndef setup_axes(fig, rect):\n \"\"\"\n polar projection, but in a rectangular box.\n \"\"\"\n\n # see demo_curvelinear_grid.py for details\n tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform()\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20, 20,\n lon_cycle=360,\n lat_cycle=None,\n lon_minmax=None,\n lat_minmax=(0, np.inf),\n )\n\n grid_locator1 = angle_helper.LocatorDMS(12)\n grid_locator2 = grid_finder.MaxNLocator(5)\n\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1\n )\n\n ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper)\n ax1.axis[:].set_visible(False)\n\n fig.add_subplot(ax1)\n\n ax1.set_aspect(1.)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n return ax1\n\n\ndef add_floating_axis1(ax1):\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 30)\n axis.label.set_text(r\"$\\theta = 30^{\\circ}$\")\n axis.label.set_visible(True)\n\n return axis\n\n\ndef add_floating_axis2(ax1):\n ax1.axis[\"lon\"] = axis = ax1.new_floating_axis(1, 6)\n axis.label.set_text(r\"$r = 6$\")\n axis.label.set_visible(True)\n\n return axis\n\n\nfig = plt.figure(figsize=(9, 3.))\nfig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99,\n wspace=0.01, hspace=0.01)\n\n\ndef ann(ax1, d):\n if plt.rcParams[\"text.usetex\"]:\n d = d.replace(\"_\", r\"\\_\")\n\n ax1.annotate(d, (0.5, 1), (5, -5),\n xycoords=\"axes fraction\", textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\n\nax1 = setup_axes(fig, rect=141)\naxis = add_floating_axis1(ax1)\nann(ax1, r\"default\")\n\nax1 = setup_axes(fig, rect=142)\naxis = add_floating_axis1(ax1)\naxis.major_ticklabels.set_pad(10)\nann(ax1, r\"ticklabels.set_pad(10)\")\n\nax1 = setup_axes(fig, rect=143)\naxis = add_floating_axis1(ax1)\naxis.label.set_pad(20)\nann(ax1, r\"label.set_pad(20)\")\n\nax1 = setup_axes(fig, rect=144)\naxis = add_floating_axis1(ax1)\naxis.major_ticks.set_tick_out(True)\nann(ax1, \"ticks.set_tick_out(True)\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bf8e342f17871c4a9cda682faf4e1ac0/placing_text_boxes.ipynb b/_downloads/bf8e342f17871c4a9cda682faf4e1ac0/placing_text_boxes.ipynb deleted file mode 120000 index 5496fa71a37..00000000000 --- a/_downloads/bf8e342f17871c4a9cda682faf4e1ac0/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bf8e342f17871c4a9cda682faf4e1ac0/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/bf950363eb1b8fa96275606996eb6077/contourf_log.py b/_downloads/bf950363eb1b8fa96275606996eb6077/contourf_log.py deleted file mode 100644 index f728946dae6..00000000000 --- a/_downloads/bf950363eb1b8fa96275606996eb6077/contourf_log.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -============================ -Contourf and log color scale -============================ - -Demonstrate use of a log color scale in contourf -""" - -import matplotlib.pyplot as plt -import numpy as np -from numpy import ma -from matplotlib import ticker, cm - -N = 100 -x = np.linspace(-3.0, 3.0, N) -y = np.linspace(-2.0, 2.0, N) - -X, Y = np.meshgrid(x, y) - -# A low hump with a spike coming out. -# Needs to have z/colour axis on a log scale so we see both hump and spike. -# linear scale only shows the spike. -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -z = Z1 + 50 * Z2 - -# Put in some negative values (lower left corner) to cause trouble with logs: -z[:5, :5] = -1 - -# The following is not strictly essential, but it will eliminate -# a warning. Comment it out to see the warning. -z = ma.masked_where(z <= 0, z) - - -# Automatic selection of levels works; setting the -# log locator tells contourf to use a log scale: -fig, ax = plt.subplots() -cs = ax.contourf(X, Y, z, locator=ticker.LogLocator(), cmap=cm.PuBu_r) - -# Alternatively, you can manually set the levels -# and the norm: -# lev_exp = np.arange(np.floor(np.log10(z.min())-1), -# np.ceil(np.log10(z.max())+1)) -# levs = np.power(10, lev_exp) -# cs = ax.contourf(X, Y, z, levs, norm=colors.LogNorm()) - -cbar = fig.colorbar(cs) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.ticker.LogLocator diff --git a/_downloads/bf9734fad09a86ee5555ffed59dcd6a0/color_cycle_default.py b/_downloads/bf9734fad09a86ee5555ffed59dcd6a0/color_cycle_default.py deleted file mode 120000 index 02d237969fc..00000000000 --- a/_downloads/bf9734fad09a86ee5555ffed59dcd6a0/color_cycle_default.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bf9734fad09a86ee5555ffed59dcd6a0/color_cycle_default.py \ No newline at end of file diff --git a/_downloads/bf9873b35c5dcea48b0a99b05e1f3d4e/cursor.py b/_downloads/bf9873b35c5dcea48b0a99b05e1f3d4e/cursor.py deleted file mode 120000 index 3e28cb56fcc..00000000000 --- a/_downloads/bf9873b35c5dcea48b0a99b05e1f3d4e/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bf9873b35c5dcea48b0a99b05e1f3d4e/cursor.py \ No newline at end of file diff --git a/_downloads/bf9deb8448073bd12252ec4c7828e99b/pgf_texsystem.py b/_downloads/bf9deb8448073bd12252ec4c7828e99b/pgf_texsystem.py deleted file mode 100644 index d3e53518353..00000000000 --- a/_downloads/bf9deb8448073bd12252ec4c7828e99b/pgf_texsystem.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -============= -Pgf Texsystem -============= - -""" - -import matplotlib.pyplot as plt -plt.rcParams.update({ - "pgf.texsystem": "pdflatex", - "pgf.preamble": [ - r"\usepackage[utf8x]{inputenc}", - r"\usepackage[T1]{fontenc}", - r"\usepackage{cmbright}", - ] -}) - -plt.figure(figsize=(4.5, 2.5)) -plt.plot(range(5)) -plt.text(0.5, 3., "serif", family="serif") -plt.text(0.5, 2., "monospace", family="monospace") -plt.text(2.5, 2., "sans-serif", family="sans-serif") -plt.xlabel(r"µ is not $\mu$") -plt.tight_layout(.5) - -plt.savefig("pgf_texsystem.pdf") -plt.savefig("pgf_texsystem.png") diff --git a/_downloads/bf9ef8b51aeea6553751ee8060c5e19e/spine_placement_demo.py b/_downloads/bf9ef8b51aeea6553751ee8060c5e19e/spine_placement_demo.py deleted file mode 120000 index efd12cda83e..00000000000 --- a/_downloads/bf9ef8b51aeea6553751ee8060c5e19e/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bf9ef8b51aeea6553751ee8060c5e19e/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/bfa7ffc013ea0d1e4aa6ba4fa9694beb/image_annotated_heatmap.py b/_downloads/bfa7ffc013ea0d1e4aa6ba4fa9694beb/image_annotated_heatmap.py deleted file mode 100644 index 077e8460cb2..00000000000 --- a/_downloads/bfa7ffc013ea0d1e4aa6ba4fa9694beb/image_annotated_heatmap.py +++ /dev/null @@ -1,320 +0,0 @@ -""" -=========================== -Creating annotated heatmaps -=========================== - -It is often desirable to show data which depends on two independent -variables as a color coded image plot. This is often referred to as a -heatmap. If the data is categorical, this would be called a categorical -heatmap. -Matplotlib's :meth:`imshow ` function makes -production of such plots particularly easy. - -The following examples show how to create a heatmap with annotations. -We will start with an easy example and expand it to be usable as a -universal function. -""" - - -############################################################################## -# -# A simple categorical heatmap -# ---------------------------- -# -# We may start by defining some data. What we need is a 2D list or array -# which defines the data to color code. We then also need two lists or arrays -# of categories; of course the number of elements in those lists -# need to match the data along the respective axes. -# The heatmap itself is an :meth:`imshow ` plot -# with the labels set to the categories we have. -# Note that it is important to set both, the tick locations -# (:meth:`set_xticks`) as well as the -# tick labels (:meth:`set_xticklabels`), -# otherwise they would become out of sync. The locations are just -# the ascending integer numbers, while the ticklabels are the labels to show. -# Finally we can label the data itself by creating a -# :class:`~matplotlib.text.Text` within each cell showing the value of -# that cell. - - -import numpy as np -import matplotlib -import matplotlib.pyplot as plt -# sphinx_gallery_thumbnail_number = 2 - -vegetables = ["cucumber", "tomato", "lettuce", "asparagus", - "potato", "wheat", "barley"] -farmers = ["Farmer Joe", "Upland Bros.", "Smith Gardening", - "Agrifun", "Organiculture", "BioGoods Ltd.", "Cornylee Corp."] - -harvest = np.array([[0.8, 2.4, 2.5, 3.9, 0.0, 4.0, 0.0], - [2.4, 0.0, 4.0, 1.0, 2.7, 0.0, 0.0], - [1.1, 2.4, 0.8, 4.3, 1.9, 4.4, 0.0], - [0.6, 0.0, 0.3, 0.0, 3.1, 0.0, 0.0], - [0.7, 1.7, 0.6, 2.6, 2.2, 6.2, 0.0], - [1.3, 1.2, 0.0, 0.0, 0.0, 3.2, 5.1], - [0.1, 2.0, 0.0, 1.4, 0.0, 1.9, 6.3]]) - - -fig, ax = plt.subplots() -im = ax.imshow(harvest) - -# We want to show all ticks... -ax.set_xticks(np.arange(len(farmers))) -ax.set_yticks(np.arange(len(vegetables))) -# ... and label them with the respective list entries -ax.set_xticklabels(farmers) -ax.set_yticklabels(vegetables) - -# Rotate the tick labels and set their alignment. -plt.setp(ax.get_xticklabels(), rotation=45, ha="right", - rotation_mode="anchor") - -# Loop over data dimensions and create text annotations. -for i in range(len(vegetables)): - for j in range(len(farmers)): - text = ax.text(j, i, harvest[i, j], - ha="center", va="center", color="w") - -ax.set_title("Harvest of local farmers (in tons/year)") -fig.tight_layout() -plt.show() - - -############################################################################# -# Using the helper function code style -# ------------------------------------ -# -# As discussed in the :ref:`Coding styles ` -# one might want to reuse such code to create some kind of heatmap -# for different input data and/or on different axes. -# We create a function that takes the data and the row and column labels as -# input, and allows arguments that are used to customize the plot -# -# Here, in addition to the above we also want to create a colorbar and -# position the labels above of the heatmap instead of below it. -# The annotations shall get different colors depending on a threshold -# for better contrast against the pixel color. -# Finally, we turn the surrounding axes spines off and create -# a grid of white lines to separate the cells. - - -def heatmap(data, row_labels, col_labels, ax=None, - cbar_kw={}, cbarlabel="", **kwargs): - """ - Create a heatmap from a numpy array and two lists of labels. - - Parameters - ---------- - data - A 2D numpy array of shape (N, M). - row_labels - A list or array of length N with the labels for the rows. - col_labels - A list or array of length M with the labels for the columns. - ax - A `matplotlib.axes.Axes` instance to which the heatmap is plotted. If - not provided, use current axes or create a new one. Optional. - cbar_kw - A dictionary with arguments to `matplotlib.Figure.colorbar`. Optional. - cbarlabel - The label for the colorbar. Optional. - **kwargs - All other arguments are forwarded to `imshow`. - """ - - if not ax: - ax = plt.gca() - - # Plot the heatmap - im = ax.imshow(data, **kwargs) - - # Create colorbar - cbar = ax.figure.colorbar(im, ax=ax, **cbar_kw) - cbar.ax.set_ylabel(cbarlabel, rotation=-90, va="bottom") - - # We want to show all ticks... - ax.set_xticks(np.arange(data.shape[1])) - ax.set_yticks(np.arange(data.shape[0])) - # ... and label them with the respective list entries. - ax.set_xticklabels(col_labels) - ax.set_yticklabels(row_labels) - - # Let the horizontal axes labeling appear on top. - ax.tick_params(top=True, bottom=False, - labeltop=True, labelbottom=False) - - # Rotate the tick labels and set their alignment. - plt.setp(ax.get_xticklabels(), rotation=-30, ha="right", - rotation_mode="anchor") - - # Turn spines off and create white grid. - for edge, spine in ax.spines.items(): - spine.set_visible(False) - - ax.set_xticks(np.arange(data.shape[1]+1)-.5, minor=True) - ax.set_yticks(np.arange(data.shape[0]+1)-.5, minor=True) - ax.grid(which="minor", color="w", linestyle='-', linewidth=3) - ax.tick_params(which="minor", bottom=False, left=False) - - return im, cbar - - -def annotate_heatmap(im, data=None, valfmt="{x:.2f}", - textcolors=["black", "white"], - threshold=None, **textkw): - """ - A function to annotate a heatmap. - - Parameters - ---------- - im - The AxesImage to be labeled. - data - Data used to annotate. If None, the image's data is used. Optional. - valfmt - The format of the annotations inside the heatmap. This should either - use the string format method, e.g. "$ {x:.2f}", or be a - `matplotlib.ticker.Formatter`. Optional. - textcolors - A list or array of two color specifications. The first is used for - values below a threshold, the second for those above. Optional. - threshold - Value in data units according to which the colors from textcolors are - applied. If None (the default) uses the middle of the colormap as - separation. Optional. - **kwargs - All other arguments are forwarded to each call to `text` used to create - the text labels. - """ - - if not isinstance(data, (list, np.ndarray)): - data = im.get_array() - - # Normalize the threshold to the images color range. - if threshold is not None: - threshold = im.norm(threshold) - else: - threshold = im.norm(data.max())/2. - - # Set default alignment to center, but allow it to be - # overwritten by textkw. - kw = dict(horizontalalignment="center", - verticalalignment="center") - kw.update(textkw) - - # Get the formatter in case a string is supplied - if isinstance(valfmt, str): - valfmt = matplotlib.ticker.StrMethodFormatter(valfmt) - - # Loop over the data and create a `Text` for each "pixel". - # Change the text's color depending on the data. - texts = [] - for i in range(data.shape[0]): - for j in range(data.shape[1]): - kw.update(color=textcolors[int(im.norm(data[i, j]) > threshold)]) - text = im.axes.text(j, i, valfmt(data[i, j], None), **kw) - texts.append(text) - - return texts - - -########################################################################## -# The above now allows us to keep the actual plot creation pretty compact. -# - -fig, ax = plt.subplots() - -im, cbar = heatmap(harvest, vegetables, farmers, ax=ax, - cmap="YlGn", cbarlabel="harvest [t/year]") -texts = annotate_heatmap(im, valfmt="{x:.1f} t") - -fig.tight_layout() -plt.show() - - -############################################################################# -# Some more complex heatmap examples -# ---------------------------------- -# -# In the following we show the versatility of the previously created -# functions by applying it in different cases and using different arguments. -# - -np.random.seed(19680801) - -fig, ((ax, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(8, 6)) - -# Replicate the above example with a different font size and colormap. - -im, _ = heatmap(harvest, vegetables, farmers, ax=ax, - cmap="Wistia", cbarlabel="harvest [t/year]") -annotate_heatmap(im, valfmt="{x:.1f}", size=7) - -# Create some new data, give further arguments to imshow (vmin), -# use an integer format on the annotations and provide some colors. - -data = np.random.randint(2, 100, size=(7, 7)) -y = ["Book {}".format(i) for i in range(1, 8)] -x = ["Store {}".format(i) for i in list("ABCDEFG")] -im, _ = heatmap(data, y, x, ax=ax2, vmin=0, - cmap="magma_r", cbarlabel="weekly sold copies") -annotate_heatmap(im, valfmt="{x:d}", size=7, threshold=20, - textcolors=["red", "white"]) - -# Sometimes even the data itself is categorical. Here we use a -# :class:`matplotlib.colors.BoundaryNorm` to get the data into classes -# and use this to colorize the plot, but also to obtain the class -# labels from an array of classes. - -data = np.random.randn(6, 6) -y = ["Prod. {}".format(i) for i in range(10, 70, 10)] -x = ["Cycle {}".format(i) for i in range(1, 7)] - -qrates = np.array(list("ABCDEFG")) -norm = matplotlib.colors.BoundaryNorm(np.linspace(-3.5, 3.5, 8), 7) -fmt = matplotlib.ticker.FuncFormatter(lambda x, pos: qrates[::-1][norm(x)]) - -im, _ = heatmap(data, y, x, ax=ax3, - cmap=plt.get_cmap("PiYG", 7), norm=norm, - cbar_kw=dict(ticks=np.arange(-3, 4), format=fmt), - cbarlabel="Quality Rating") - -annotate_heatmap(im, valfmt=fmt, size=9, fontweight="bold", threshold=-1, - textcolors=["red", "black"]) - -# We can nicely plot a correlation matrix. Since this is bound by -1 and 1, -# we use those as vmin and vmax. We may also remove leading zeros and hide -# the diagonal elements (which are all 1) by using a -# :class:`matplotlib.ticker.FuncFormatter`. - -corr_matrix = np.corrcoef(np.random.rand(6, 5)) -im, _ = heatmap(corr_matrix, vegetables, vegetables, ax=ax4, - cmap="PuOr", vmin=-1, vmax=1, - cbarlabel="correlation coeff.") - - -def func(x, pos): - return "{:.2f}".format(x).replace("0.", ".").replace("1.00", "") - -annotate_heatmap(im, valfmt=matplotlib.ticker.FuncFormatter(func), size=7) - - -plt.tight_layout() -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The usage of the following functions and methods is shown in this example: - - -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar diff --git a/_downloads/bfb09f67c66e535034d8b92a70f5c0e8/stackplot_demo.ipynb b/_downloads/bfb09f67c66e535034d8b92a70f5c0e8/stackplot_demo.ipynb deleted file mode 120000 index 4e8319f7a93..00000000000 --- a/_downloads/bfb09f67c66e535034d8b92a70f5c0e8/stackplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bfb09f67c66e535034d8b92a70f5c0e8/stackplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/bfba084048b56f218e3b1fd4aa7be5da/triinterp_demo.py b/_downloads/bfba084048b56f218e3b1fd4aa7be5da/triinterp_demo.py deleted file mode 120000 index cdfd6b867c4..00000000000 --- a/_downloads/bfba084048b56f218e3b1fd4aa7be5da/triinterp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bfba084048b56f218e3b1fd4aa7be5da/triinterp_demo.py \ No newline at end of file diff --git a/_downloads/bfc386bcf2ce4543b2e4dbe31c5c1033/contour_corner_mask.ipynb b/_downloads/bfc386bcf2ce4543b2e4dbe31c5c1033/contour_corner_mask.ipynb deleted file mode 120000 index e0920e2d1d8..00000000000 --- a/_downloads/bfc386bcf2ce4543b2e4dbe31c5c1033/contour_corner_mask.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bfc386bcf2ce4543b2e4dbe31c5c1033/contour_corner_mask.ipynb \ No newline at end of file diff --git a/_downloads/bfc53bd1cdcc54fdd2f5afce6795b8a9/text_rotation_relative_to_line.py b/_downloads/bfc53bd1cdcc54fdd2f5afce6795b8a9/text_rotation_relative_to_line.py deleted file mode 120000 index 63db07c0c97..00000000000 --- a/_downloads/bfc53bd1cdcc54fdd2f5afce6795b8a9/text_rotation_relative_to_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bfc53bd1cdcc54fdd2f5afce6795b8a9/text_rotation_relative_to_line.py \ No newline at end of file diff --git a/_downloads/bfceeb0ae08df195ff5ad3316874ccb3/scatter_masked.py b/_downloads/bfceeb0ae08df195ff5ad3316874ccb3/scatter_masked.py deleted file mode 120000 index c2e483170d0..00000000000 --- a/_downloads/bfceeb0ae08df195ff5ad3316874ccb3/scatter_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/bfceeb0ae08df195ff5ad3316874ccb3/scatter_masked.py \ No newline at end of file diff --git a/_downloads/bfd012f9b5a5f79d4c0ecf36ccb49169/embedding_in_tk_sgskip.ipynb b/_downloads/bfd012f9b5a5f79d4c0ecf36ccb49169/embedding_in_tk_sgskip.ipynb deleted file mode 120000 index 52f5f7c4568..00000000000 --- a/_downloads/bfd012f9b5a5f79d4c0ecf36ccb49169/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bfd012f9b5a5f79d4c0ecf36ccb49169/embedding_in_tk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/bfd29de5271aa3863674a765c0ca18ed/demo_edge_colorbar.py b/_downloads/bfd29de5271aa3863674a765c0ca18ed/demo_edge_colorbar.py deleted file mode 100644 index 313790a9edf..00000000000 --- a/_downloads/bfd29de5271aa3863674a765c0ca18ed/demo_edge_colorbar.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -================== -Demo Edge Colorbar -================== - -This example shows how to use one common colorbar for each row or column -of an image grid. -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import AxesGrid - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def demo_bottom_cbar(fig): - """ - A grid of 2x2 images with a colorbar for each column. - """ - grid = AxesGrid(fig, 121, # similar to subplot(121) - nrows_ncols=(2, 2), - axes_pad=0.10, - share_all=True, - label_mode="1", - cbar_location="bottom", - cbar_mode="edge", - cbar_pad=0.25, - cbar_size="15%", - direction="column" - ) - - Z, extent = get_demo_image() - cmaps = [plt.get_cmap("autumn"), plt.get_cmap("summer")] - for i in range(4): - im = grid[i].imshow(Z, extent=extent, interpolation="nearest", - cmap=cmaps[i//2]) - if i % 2: - cbar = grid.cbar_axes[i//2].colorbar(im) - - for cax in grid.cbar_axes: - cax.toggle_label(True) - cax.axis[cax.orientation].set_label("Bar") - - # This affects all axes as share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_right_cbar(fig): - """ - A grid of 2x2 images. Each row has its own colorbar. - """ - grid = AxesGrid(fig, 122, # similar to subplot(122) - nrows_ncols=(2, 2), - axes_pad=0.10, - label_mode="1", - share_all=True, - cbar_location="right", - cbar_mode="edge", - cbar_size="7%", - cbar_pad="2%", - ) - Z, extent = get_demo_image() - cmaps = [plt.get_cmap("spring"), plt.get_cmap("winter")] - for i in range(4): - im = grid[i].imshow(Z, extent=extent, interpolation="nearest", - cmap=cmaps[i//2]) - if i % 2: - grid.cbar_axes[i//2].colorbar(im) - - for cax in grid.cbar_axes: - cax.toggle_label(True) - cax.axis[cax.orientation].set_label('Foo') - - # This affects all axes because we set share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -fig = plt.figure(figsize=(5.5, 2.5)) -fig.subplots_adjust(left=0.05, right=0.93) - -demo_bottom_cbar(fig) -demo_right_cbar(fig) - -plt.show() diff --git a/_downloads/bfdcdbcdd94f5c9c28b3bd17e029766d/colormap_normalizations_power.ipynb b/_downloads/bfdcdbcdd94f5c9c28b3bd17e029766d/colormap_normalizations_power.ipynb deleted file mode 120000 index c84f2763001..00000000000 --- a/_downloads/bfdcdbcdd94f5c9c28b3bd17e029766d/colormap_normalizations_power.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bfdcdbcdd94f5c9c28b3bd17e029766d/colormap_normalizations_power.ipynb \ No newline at end of file diff --git a/_downloads/bfdd4a9d03b8cd591117eab7d9e3bb0d/axisartist.py b/_downloads/bfdd4a9d03b8cd591117eab7d9e3bb0d/axisartist.py deleted file mode 120000 index e507b4b99d6..00000000000 --- a/_downloads/bfdd4a9d03b8cd591117eab7d9e3bb0d/axisartist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/bfdd4a9d03b8cd591117eab7d9e3bb0d/axisartist.py \ No newline at end of file diff --git a/_downloads/bfe1c6bcf7c932ac613ac7c85987f45f/pythonic_matplotlib.ipynb b/_downloads/bfe1c6bcf7c932ac613ac7c85987f45f/pythonic_matplotlib.ipynb deleted file mode 120000 index 145820bad15..00000000000 --- a/_downloads/bfe1c6bcf7c932ac613ac7c85987f45f/pythonic_matplotlib.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bfe1c6bcf7c932ac613ac7c85987f45f/pythonic_matplotlib.ipynb \ No newline at end of file diff --git a/_downloads/bfe84ff4f4fd8a0725174d779ee8d0e2/gridspec_multicolumn.ipynb b/_downloads/bfe84ff4f4fd8a0725174d779ee8d0e2/gridspec_multicolumn.ipynb deleted file mode 100644 index d8b8283c3a6..00000000000 --- a/_downloads/bfe84ff4f4fd8a0725174d779ee8d0e2/gridspec_multicolumn.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=======================================================\nUsing Gridspec to make multi-column/row subplot layouts\n=======================================================\n\n`.GridSpec` is a flexible way to layout\nsubplot grids. Here is an example with a 3x3 grid, and\naxes spanning all three columns, two columns, and two rows.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.gridspec import GridSpec\n\n\ndef format_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\nfig = plt.figure(constrained_layout=True)\n\ngs = GridSpec(3, 3, figure=fig)\nax1 = fig.add_subplot(gs[0, :])\n# identical to ax1 = plt.subplot(gs.new_subplotspec((0, 0), colspan=3))\nax2 = fig.add_subplot(gs[1, :-1])\nax3 = fig.add_subplot(gs[1:, -1])\nax4 = fig.add_subplot(gs[-1, 0])\nax5 = fig.add_subplot(gs[-1, -2])\n\nfig.suptitle(\"GridSpec\")\nformat_axes(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bfeb934bd7e87a776c31ca73c7218c9e/scatter.py b/_downloads/bfeb934bd7e87a776c31ca73c7218c9e/scatter.py deleted file mode 120000 index 64e29973e72..00000000000 --- a/_downloads/bfeb934bd7e87a776c31ca73c7218c9e/scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/bfeb934bd7e87a776c31ca73c7218c9e/scatter.py \ No newline at end of file diff --git a/_downloads/bfed0ff31bfc9b540e4349ad4ccc0177/anchored_box04.py b/_downloads/bfed0ff31bfc9b540e4349ad4ccc0177/anchored_box04.py deleted file mode 100644 index d641e7a18ac..00000000000 --- a/_downloads/bfed0ff31bfc9b540e4349ad4ccc0177/anchored_box04.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -============== -Anchored Box04 -============== - -""" -from matplotlib.patches import Ellipse -import matplotlib.pyplot as plt -from matplotlib.offsetbox import (AnchoredOffsetbox, DrawingArea, HPacker, - TextArea) - - -fig, ax = plt.subplots(figsize=(3, 3)) - -box1 = TextArea(" Test : ", textprops=dict(color="k")) - -box2 = DrawingArea(60, 20, 0, 0) -el1 = Ellipse((10, 10), width=16, height=5, angle=30, fc="r") -el2 = Ellipse((30, 10), width=16, height=5, angle=170, fc="g") -el3 = Ellipse((50, 10), width=16, height=5, angle=230, fc="b") -box2.add_artist(el1) -box2.add_artist(el2) -box2.add_artist(el3) - -box = HPacker(children=[box1, box2], - align="center", - pad=0, sep=5) - -anchored_box = AnchoredOffsetbox(loc='lower left', - child=box, pad=0., - frameon=True, - bbox_to_anchor=(0., 1.02), - bbox_transform=ax.transAxes, - borderpad=0., - ) - -ax.add_artist(anchored_box) - -fig.subplots_adjust(top=0.8) -plt.show() diff --git a/_downloads/bfee2ac0998db51bd4869f0abbd46e8e/polar_bar.ipynb b/_downloads/bfee2ac0998db51bd4869f0abbd46e8e/polar_bar.ipynb deleted file mode 120000 index eb6c6c975e0..00000000000 --- a/_downloads/bfee2ac0998db51bd4869f0abbd46e8e/polar_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/bfee2ac0998db51bd4869f0abbd46e8e/polar_bar.ipynb \ No newline at end of file diff --git a/_downloads/bff2eddcc66c9cb361f567f45507d3fa/looking_glass.py b/_downloads/bff2eddcc66c9cb361f567f45507d3fa/looking_glass.py deleted file mode 120000 index 7608ff35f94..00000000000 --- a/_downloads/bff2eddcc66c9cb361f567f45507d3fa/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/bff2eddcc66c9cb361f567f45507d3fa/looking_glass.py \ No newline at end of file diff --git a/_downloads/bffd9ef5d5eefe8f34f6a72e4236621b/errorbar_features.py b/_downloads/bffd9ef5d5eefe8f34f6a72e4236621b/errorbar_features.py deleted file mode 100644 index 1dd68a24700..00000000000 --- a/_downloads/bffd9ef5d5eefe8f34f6a72e4236621b/errorbar_features.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -======================================= -Different ways of specifying error bars -======================================= - -Errors can be specified as a constant value (as shown in -`errorbar_demo.py`). However, this example demonstrates -how they vary by specifying arrays of error values. - -If the raw ``x`` and ``y`` data have length N, there are two options: - -Array of shape (N,): - Error varies for each point, but the error values are - symmetric (i.e. the lower and upper values are equal). - -Array of shape (2, N): - Error varies for each point, and the lower and upper limits - (in that order) are different (asymmetric case) - -In addition, this example demonstrates how to use log -scale with error bars. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.arange(0.1, 4, 0.5) -y = np.exp(-x) - -# example error bar values that vary with x-position -error = 0.1 + 0.2 * x - -fig, (ax0, ax1) = plt.subplots(nrows=2, sharex=True) -ax0.errorbar(x, y, yerr=error, fmt='-o') -ax0.set_title('variable, symmetric error') - -# error bar values w/ different -/+ errors that -# also vary with the x-position -lower_error = 0.4 * error -upper_error = error -asymmetric_error = [lower_error, upper_error] - -ax1.errorbar(x, y, xerr=asymmetric_error, fmt='o') -ax1.set_title('variable, asymmetric error') -ax1.set_yscale('log') -plt.show() diff --git a/_downloads/bffec615035c28991260983bc2fcacd6/demo_tight_layout.ipynb b/_downloads/bffec615035c28991260983bc2fcacd6/demo_tight_layout.ipynb deleted file mode 100644 index 1bc7c87d505..00000000000 --- a/_downloads/bffec615035c28991260983bc2fcacd6/demo_tight_layout.ipynb +++ /dev/null @@ -1,160 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Resizing axes with tight layout\n\n\n`~.figure.Figure.tight_layout` attempts to resize subplots in\na figure so that there are no overlaps between axes objects and labels\non the axes.\n\nSee :doc:`/tutorials/intermediate/tight_layout_guide` for more details and\n:doc:`/tutorials/intermediate/constrainedlayout_guide` for an alternative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport itertools\nimport warnings\n\n\nfontsizes = itertools.cycle([8, 16, 24, 32])\n\n\ndef example_plot(ax):\n ax.plot([1, 2])\n ax.set_xlabel('x-label', fontsize=next(fontsizes))\n ax.set_ylabel('y-label', fontsize=next(fontsizes))\n ax.set_title('Title', fontsize=next(fontsizes))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nexample_plot(ax)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(nrows=2, ncols=1)\nexample_plot(ax1)\nexample_plot(ax2)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2)\nexample_plot(ax1)\nexample_plot(ax2)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(nrows=3, ncols=3)\nfor row in axes:\n for ax in row:\n example_plot(ax)\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot(221)\nax2 = plt.subplot(223)\nax3 = plt.subplot(122)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\n\nplt.tight_layout()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\nax1 = plt.subplot2grid((3, 3), (0, 0))\nax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2)\nax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\nexample_plot(ax4)\n\nplt.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\n\ngs1 = fig.add_gridspec(3, 1)\nax1 = fig.add_subplot(gs1[0])\nax2 = fig.add_subplot(gs1[1])\nax3 = fig.add_subplot(gs1[2])\n\nexample_plot(ax1)\nexample_plot(ax2)\nexample_plot(ax3)\n\ngs1.tight_layout(fig, rect=[None, None, 0.45, None])\n\ngs2 = fig.add_gridspec(2, 1)\nax4 = fig.add_subplot(gs2[0])\nax5 = fig.add_subplot(gs2[1])\n\nexample_plot(ax4)\nexample_plot(ax5)\n\nwith warnings.catch_warnings():\n # gs2.tight_layout cannot handle the subplots from the first gridspec\n # (gs1), so it will raise a warning. We are going to match the gridspecs\n # manually so we can filter the warning away.\n warnings.simplefilter(\"ignore\", UserWarning)\n gs2.tight_layout(fig, rect=[0.45, None, None, None])\n\n# now match the top and bottom of two gridspecs.\ntop = min(gs1.top, gs2.top)\nbottom = max(gs1.bottom, gs2.bottom)\n\ngs1.update(top=top, bottom=bottom)\ngs2.update(top=top, bottom=bottom)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.tight_layout\nmatplotlib.figure.Figure.tight_layout\nmatplotlib.figure.Figure.add_gridspec\nmatplotlib.figure.Figure.add_subplot\nmatplotlib.pyplot.subplot2grid" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/bmh.ipynb b/_downloads/bmh.ipynb deleted file mode 120000 index 69ade0e0f94..00000000000 --- a/_downloads/bmh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bmh.ipynb \ No newline at end of file diff --git a/_downloads/bmh.py b/_downloads/bmh.py deleted file mode 120000 index c9c145edee6..00000000000 --- a/_downloads/bmh.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bmh.py \ No newline at end of file diff --git a/_downloads/boxplot.ipynb b/_downloads/boxplot.ipynb deleted file mode 120000 index 2c65c22df4c..00000000000 --- a/_downloads/boxplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot.ipynb \ No newline at end of file diff --git a/_downloads/boxplot.py b/_downloads/boxplot.py deleted file mode 120000 index d2209543c0e..00000000000 --- a/_downloads/boxplot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot.py \ No newline at end of file diff --git a/_downloads/boxplot_color.ipynb b/_downloads/boxplot_color.ipynb deleted file mode 120000 index 7449e12473d..00000000000 --- a/_downloads/boxplot_color.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_color.ipynb \ No newline at end of file diff --git a/_downloads/boxplot_color.py b/_downloads/boxplot_color.py deleted file mode 120000 index e226db2f210..00000000000 --- a/_downloads/boxplot_color.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_color.py \ No newline at end of file diff --git a/_downloads/boxplot_demo.ipynb b/_downloads/boxplot_demo.ipynb deleted file mode 120000 index 869d6269e93..00000000000 --- a/_downloads/boxplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/boxplot_demo.py b/_downloads/boxplot_demo.py deleted file mode 120000 index 22a6a0d41bb..00000000000 --- a/_downloads/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_demo.py \ No newline at end of file diff --git a/_downloads/boxplot_demo1.ipynb b/_downloads/boxplot_demo1.ipynb deleted file mode 120000 index bcba872c887..00000000000 --- a/_downloads/boxplot_demo1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/boxplot_demo1.ipynb \ No newline at end of file diff --git a/_downloads/boxplot_demo1.py b/_downloads/boxplot_demo1.py deleted file mode 120000 index 4445ea87ad9..00000000000 --- a/_downloads/boxplot_demo1.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/boxplot_demo1.py \ No newline at end of file diff --git a/_downloads/boxplot_demo_pyplot.ipynb b/_downloads/boxplot_demo_pyplot.ipynb deleted file mode 120000 index 25fa2ced31e..00000000000 --- a/_downloads/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_demo_pyplot.ipynb \ No newline at end of file diff --git a/_downloads/boxplot_demo_pyplot.py b/_downloads/boxplot_demo_pyplot.py deleted file mode 120000 index 423c4d2c4aa..00000000000 --- a/_downloads/boxplot_demo_pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_demo_pyplot.py \ No newline at end of file diff --git a/_downloads/boxplot_vs_violin.ipynb b/_downloads/boxplot_vs_violin.ipynb deleted file mode 120000 index 1f10bbbc023..00000000000 --- a/_downloads/boxplot_vs_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_vs_violin.ipynb \ No newline at end of file diff --git a/_downloads/boxplot_vs_violin.py b/_downloads/boxplot_vs_violin.py deleted file mode 120000 index 728adb77d3c..00000000000 --- a/_downloads/boxplot_vs_violin.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/boxplot_vs_violin.py \ No newline at end of file diff --git a/_downloads/broken_axis.ipynb b/_downloads/broken_axis.ipynb deleted file mode 120000 index a96b8a11acd..00000000000 --- a/_downloads/broken_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/broken_axis.ipynb \ No newline at end of file diff --git a/_downloads/broken_axis.py b/_downloads/broken_axis.py deleted file mode 120000 index e03767627d0..00000000000 --- a/_downloads/broken_axis.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/broken_axis.py \ No newline at end of file diff --git a/_downloads/broken_barh.ipynb b/_downloads/broken_barh.ipynb deleted file mode 120000 index b3273ffe9d3..00000000000 --- a/_downloads/broken_barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/broken_barh.ipynb \ No newline at end of file diff --git a/_downloads/broken_barh.py b/_downloads/broken_barh.py deleted file mode 120000 index d3425b681d9..00000000000 --- a/_downloads/broken_barh.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/broken_barh.py \ No newline at end of file diff --git a/_downloads/buttons.ipynb b/_downloads/buttons.ipynb deleted file mode 120000 index 56130aba46d..00000000000 --- a/_downloads/buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/buttons.ipynb \ No newline at end of file diff --git a/_downloads/buttons.py b/_downloads/buttons.py deleted file mode 120000 index 391e1b2a007..00000000000 --- a/_downloads/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/buttons.py \ No newline at end of file diff --git a/_downloads/bxp.ipynb b/_downloads/bxp.ipynb deleted file mode 120000 index 9adf57bdc35..00000000000 --- a/_downloads/bxp.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bxp.ipynb \ No newline at end of file diff --git a/_downloads/bxp.py b/_downloads/bxp.py deleted file mode 120000 index 19d7717d3b9..00000000000 --- a/_downloads/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/bxp.py \ No newline at end of file diff --git a/_downloads/c00162e913ad3e65d98bda8769146562/bbox_intersect.py b/_downloads/c00162e913ad3e65d98bda8769146562/bbox_intersect.py deleted file mode 100644 index 22150ed447a..00000000000 --- a/_downloads/c00162e913ad3e65d98bda8769146562/bbox_intersect.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -=========================================== -Changing colors of lines intersecting a box -=========================================== - -The lines intersecting the rectangle are colored in red, while the others -are left as blue lines. This example showcases the `intersect_bbox` function. - -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.transforms import Bbox -from matplotlib.path import Path - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -left, bottom, width, height = (-1, -1, 2, 2) -rect = plt.Rectangle((left, bottom), width, height, - facecolor="black", alpha=0.1) - -fig, ax = plt.subplots() -ax.add_patch(rect) - -bbox = Bbox.from_bounds(left, bottom, width, height) - -for i in range(12): - vertices = (np.random.random((2, 2)) - 0.5) * 6.0 - path = Path(vertices) - if path.intersects_bbox(bbox): - color = 'r' - else: - color = 'b' - ax.plot(vertices[:, 0], vertices[:, 1], color=color) - -plt.show() diff --git a/_downloads/c00ad6edb65f4fb6365319dd961817b6/annotate_with_units.ipynb b/_downloads/c00ad6edb65f4fb6365319dd961817b6/annotate_with_units.ipynb deleted file mode 120000 index 219912875fd..00000000000 --- a/_downloads/c00ad6edb65f4fb6365319dd961817b6/annotate_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c00ad6edb65f4fb6365319dd961817b6/annotate_with_units.ipynb \ No newline at end of file diff --git a/_downloads/c00afe7030685c63919f358fb0201b78/aspect_loglog.ipynb b/_downloads/c00afe7030685c63919f358fb0201b78/aspect_loglog.ipynb deleted file mode 120000 index e9557cfd558..00000000000 --- a/_downloads/c00afe7030685c63919f358fb0201b78/aspect_loglog.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c00afe7030685c63919f358fb0201b78/aspect_loglog.ipynb \ No newline at end of file diff --git a/_downloads/c02566553f644f4a1313126b43788262/font_file.py b/_downloads/c02566553f644f4a1313126b43788262/font_file.py deleted file mode 120000 index 21ae49735a9..00000000000 --- a/_downloads/c02566553f644f4a1313126b43788262/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c02566553f644f4a1313126b43788262/font_file.py \ No newline at end of file diff --git a/_downloads/c02dd516123f659adacaf1995383437e/placing_text_boxes.py b/_downloads/c02dd516123f659adacaf1995383437e/placing_text_boxes.py deleted file mode 120000 index 223552bf8d5..00000000000 --- a/_downloads/c02dd516123f659adacaf1995383437e/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c02dd516123f659adacaf1995383437e/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/c02fe57a0561bef65d7fa7055a1a9564/power_norm.py b/_downloads/c02fe57a0561bef65d7fa7055a1a9564/power_norm.py deleted file mode 100644 index 25db8bd2834..00000000000 --- a/_downloads/c02fe57a0561bef65d7fa7055a1a9564/power_norm.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -======================== -Exploring normalizations -======================== - -Various normalization on a multivariate normal distribution. - -""" - -import matplotlib.pyplot as plt -import matplotlib.colors as mcolors -import numpy as np -from numpy.random import multivariate_normal - -data = np.vstack([ - multivariate_normal([10, 10], [[3, 2], [2, 3]], size=100000), - multivariate_normal([30, 20], [[2, 3], [1, 3]], size=1000) -]) - -gammas = [0.8, 0.5, 0.3] - -fig, axes = plt.subplots(nrows=2, ncols=2) - -axes[0, 0].set_title('Linear normalization') -axes[0, 0].hist2d(data[:, 0], data[:, 1], bins=100) - -for ax, gamma in zip(axes.flat[1:], gammas): - ax.set_title(r'Power law $(\gamma=%1.1f)$' % gamma) - ax.hist2d(data[:, 0], data[:, 1], - bins=100, norm=mcolors.PowerNorm(gamma)) - -fig.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.colors.PowerNorm -matplotlib.axes.Axes.hist2d -matplotlib.pyplot.hist2d diff --git a/_downloads/c035aacd670079690c30a6b2a475cdd9/agg_buffer_to_array.py b/_downloads/c035aacd670079690c30a6b2a475cdd9/agg_buffer_to_array.py deleted file mode 100644 index 0085a75de0b..00000000000 --- a/_downloads/c035aacd670079690c30a6b2a475cdd9/agg_buffer_to_array.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=================== -Agg Buffer To Array -=================== - -Convert a rendered figure to its image (NumPy array) representation. -""" -import matplotlib.pyplot as plt -import numpy as np - -# make an agg figure -fig, ax = plt.subplots() -ax.plot([1, 2, 3]) -ax.set_title('a simple figure') -fig.canvas.draw() - -# grab the pixel buffer and dump it into a numpy array -X = np.array(fig.canvas.renderer.buffer_rgba()) - -# now display the array X as an Axes in a new figure -fig2 = plt.figure() -ax2 = fig2.add_subplot(111, frameon=False) -ax2.imshow(X) -plt.show() diff --git a/_downloads/c03e75f753189ee9470ea405a2cab815/joinstyle.ipynb b/_downloads/c03e75f753189ee9470ea405a2cab815/joinstyle.ipynb deleted file mode 100644 index e1e5b933b0d..00000000000 --- a/_downloads/c03e75f753189ee9470ea405a2cab815/joinstyle.ipynb +++ /dev/null @@ -1,97 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Join styles and cap styles\n\n\nThis example demonstrates the available join styles and cap styles.\n\nBoth are used in `.Line2D` and various ``Collections`` from\n`matplotlib.collections` as well as some functions that create these, e.g.\n`~matplotlib.pyplot.plot`.\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Join styles\n\"\"\"\"\"\"\"\"\"\"\"\n\nJoin styles define how the connection between two line segments is drawn.\n\nSee the respective ``solid_joinstyle``, ``dash_joinstyle`` or ``joinstyle``\nparameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef plot_angle(ax, x, y, angle, style):\n phi = np.radians(angle)\n xx = [x + .5, x, x + .5*np.cos(phi)]\n yy = [y, y, y + .5*np.sin(phi)]\n ax.plot(xx, yy, lw=12, color='tab:blue', solid_joinstyle=style)\n ax.plot(xx, yy, lw=1, color='black')\n ax.plot(xx[1], yy[1], 'o', color='tab:red', markersize=3)\n\n\nfig, ax = plt.subplots(figsize=(8, 6))\nax.set_title('Join style')\n\nfor x, style in enumerate(['miter', 'round', 'bevel']):\n ax.text(x, 5, style)\n for y, angle in enumerate([20, 45, 60, 90, 120]):\n plot_angle(ax, x, y, angle, style)\n if x == 0:\n ax.text(-1.3, y, f'{angle} degrees')\nax.text(1, 4.7, '(default)')\n\nax.set_xlim(-1.5, 2.75)\nax.set_ylim(-.5, 5.5)\nax.xaxis.set_visible(False)\nax.yaxis.set_visible(False)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Cap styles\n\"\"\"\"\"\"\"\"\"\"\n\nCap styles define how the the end of a line is drawn.\n\nSee the respective ``solid_capstyle``, ``dash_capstyle`` or ``capstyle``\nparameters.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 2))\nax.set_title('Cap style')\n\nfor x, style in enumerate(['butt', 'round', 'projecting']):\n ax.text(x, 1, style)\n xx = [x, x+0.5]\n yy = [0, 0]\n ax.plot(xx, yy, lw=12, color='tab:blue', solid_capstyle=style)\n ax.plot(xx, yy, lw=1, color='black')\n ax.plot(xx, yy, 'o', color='tab:red', markersize=3)\nax.text(2, 0.7, '(default)')\n\nax.set_ylim(-.5, 1.5)\nax.xaxis.set_visible(False)\nax.yaxis.set_visible(False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c03eafe7c3fc73f00f6e70085e0126f2/autowrap.py b/_downloads/c03eafe7c3fc73f00f6e70085e0126f2/autowrap.py deleted file mode 100644 index cfd583d1d07..00000000000 --- a/_downloads/c03eafe7c3fc73f00f6e70085e0126f2/autowrap.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -================== -Auto-wrapping text -================== - -Matplotlib can wrap text automatically, but if it's too long, the text will be -displayed slightly outside of the boundaries of the axis anyways. -""" - -import matplotlib.pyplot as plt - -fig = plt.figure() -plt.axis([0, 10, 0, 10]) -t = ("This is a really long string that I'd rather have wrapped so that it " - "doesn't go outside of the figure, but if it's long enough it will go " - "off the top or bottom!") -plt.text(4, 1, t, ha='left', rotation=15, wrap=True) -plt.text(6, 5, t, ha='left', rotation=15, wrap=True) -plt.text(5, 5, t, ha='right', rotation=-15, wrap=True) -plt.text(5, 10, t, fontsize=18, style='oblique', ha='center', - va='top', wrap=True) -plt.text(3, 4, t, family='serif', style='italic', ha='right', wrap=True) -plt.text(-1, 0, t, ha='left', rotation=-15, wrap=True) - -plt.show() diff --git a/_downloads/c0552c4579c71ccae972170d096f372a/annotate_simple02.py b/_downloads/c0552c4579c71ccae972170d096f372a/annotate_simple02.py deleted file mode 120000 index 51e4bb8d8b4..00000000000 --- a/_downloads/c0552c4579c71ccae972170d096f372a/annotate_simple02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c0552c4579c71ccae972170d096f372a/annotate_simple02.py \ No newline at end of file diff --git a/_downloads/c05cc4ea15a9dca88c942134537c17d0/pgf.ipynb b/_downloads/c05cc4ea15a9dca88c942134537c17d0/pgf.ipynb deleted file mode 120000 index 36d7db4a3a0..00000000000 --- a/_downloads/c05cc4ea15a9dca88c942134537c17d0/pgf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c05cc4ea15a9dca88c942134537c17d0/pgf.ipynb \ No newline at end of file diff --git a/_downloads/c060022f9d5fe3e178eabcc5e4b9a013/marker_fillstyle_reference.py b/_downloads/c060022f9d5fe3e178eabcc5e4b9a013/marker_fillstyle_reference.py deleted file mode 100644 index 512bc4c5da5..00000000000 --- a/_downloads/c060022f9d5fe3e178eabcc5e4b9a013/marker_fillstyle_reference.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -===================== -Marker filling-styles -===================== - -Reference for marker fill-styles included with Matplotlib. - -Also refer to the -:doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference` -and :doc:`/gallery/shapes_and_collections/marker_path` examples. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.lines import Line2D - - -points = np.ones(5) # Draw 5 points for each line -marker_style = dict(color='tab:blue', linestyle=':', marker='o', - markersize=15, markerfacecoloralt='tab:red') - -fig, ax = plt.subplots() - -# Plot all fill styles. -for y, fill_style in enumerate(Line2D.fillStyles): - ax.text(-0.5, y, repr(fill_style), - horizontalalignment='center', verticalalignment='center') - ax.plot(y * points, fillstyle=fill_style, **marker_style) - -ax.set_axis_off() -ax.set_title('fill style') - -plt.show() diff --git a/_downloads/c0628320bbda5ffb2a8b231020d31fa5/demo_fixed_size_axes.ipynb b/_downloads/c0628320bbda5ffb2a8b231020d31fa5/demo_fixed_size_axes.ipynb deleted file mode 120000 index 3b31cc73133..00000000000 --- a/_downloads/c0628320bbda5ffb2a8b231020d31fa5/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c0628320bbda5ffb2a8b231020d31fa5/demo_fixed_size_axes.ipynb \ No newline at end of file diff --git a/_downloads/c062bf60cd815b981c5f7f6125a85f13/mathtext_asarray.py b/_downloads/c062bf60cd815b981c5f7f6125a85f13/mathtext_asarray.py deleted file mode 100644 index ee107d099bf..00000000000 --- a/_downloads/c062bf60cd815b981c5f7f6125a85f13/mathtext_asarray.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -=============================== -A mathtext image as numpy array -=============================== - -Make images from LaTeX strings. -""" - -import matplotlib.mathtext as mathtext -import matplotlib.pyplot as plt -import matplotlib -matplotlib.rc('image', origin='upper') - -parser = mathtext.MathTextParser("Bitmap") -parser.to_png('test2.png', - r'$\left[\left\lfloor\frac{5}{\frac{\left(3\right)}{4}} ' - r'y\right)\right]$', color='green', fontsize=14, dpi=100) - -rgba1, depth1 = parser.to_rgba( - r'IQ: $\sigma_i=15$', color='blue', fontsize=20, dpi=200) -rgba2, depth2 = parser.to_rgba( - r'some other string', color='red', fontsize=20, dpi=200) - -fig = plt.figure() -fig.figimage(rgba1, 100, 100) -fig.figimage(rgba2, 100, 300) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.mathtext -matplotlib.mathtext.MathTextParser -matplotlib.mathtext.MathTextParser.to_png -matplotlib.mathtext.MathTextParser.to_rgba -matplotlib.figure.Figure.figimage diff --git a/_downloads/c06ee4feb3b9f83ae10e7ff7733673cc/ellipse_with_units.ipynb b/_downloads/c06ee4feb3b9f83ae10e7ff7733673cc/ellipse_with_units.ipynb deleted file mode 120000 index 93409cb85e6..00000000000 --- a/_downloads/c06ee4feb3b9f83ae10e7ff7733673cc/ellipse_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c06ee4feb3b9f83ae10e7ff7733673cc/ellipse_with_units.ipynb \ No newline at end of file diff --git a/_downloads/c07b9884180a6683186dc8f55737627d/fill_between_alpha.py b/_downloads/c07b9884180a6683186dc8f55737627d/fill_between_alpha.py deleted file mode 120000 index ea8e713b0c2..00000000000 --- a/_downloads/c07b9884180a6683186dc8f55737627d/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c07b9884180a6683186dc8f55737627d/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/c07bbba0debb4426b16bbff949f2dc48/pcolormesh.ipynb b/_downloads/c07bbba0debb4426b16bbff949f2dc48/pcolormesh.ipynb deleted file mode 120000 index ed5ec87355c..00000000000 --- a/_downloads/c07bbba0debb4426b16bbff949f2dc48/pcolormesh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c07bbba0debb4426b16bbff949f2dc48/pcolormesh.ipynb \ No newline at end of file diff --git a/_downloads/c0849e867d954da8b286d436618c7f86/ellipse_demo.py b/_downloads/c0849e867d954da8b286d436618c7f86/ellipse_demo.py deleted file mode 120000 index 56990b68864..00000000000 --- a/_downloads/c0849e867d954da8b286d436618c7f86/ellipse_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c0849e867d954da8b286d436618c7f86/ellipse_demo.py \ No newline at end of file diff --git a/_downloads/c08881ff905bac0ced64da581a650859/check_buttons.py b/_downloads/c08881ff905bac0ced64da581a650859/check_buttons.py deleted file mode 120000 index be8f55f5daf..00000000000 --- a/_downloads/c08881ff905bac0ced64da581a650859/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c08881ff905bac0ced64da581a650859/check_buttons.py \ No newline at end of file diff --git a/_downloads/c09293808f1126b536785a01143fab55/hist3d.ipynb b/_downloads/c09293808f1126b536785a01143fab55/hist3d.ipynb deleted file mode 120000 index 19ee1d2984d..00000000000 --- a/_downloads/c09293808f1126b536785a01143fab55/hist3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c09293808f1126b536785a01143fab55/hist3d.ipynb \ No newline at end of file diff --git a/_downloads/c095727ae80d7a1d06dbe6aeca238d1a/text_layout.ipynb b/_downloads/c095727ae80d7a1d06dbe6aeca238d1a/text_layout.ipynb deleted file mode 120000 index 767c16237c6..00000000000 --- a/_downloads/c095727ae80d7a1d06dbe6aeca238d1a/text_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c095727ae80d7a1d06dbe6aeca238d1a/text_layout.ipynb \ No newline at end of file diff --git a/_downloads/c0988f01107adbde12789078e5999db1/whats_new_98_4_legend.ipynb b/_downloads/c0988f01107adbde12789078e5999db1/whats_new_98_4_legend.ipynb deleted file mode 120000 index 4640f7813ad..00000000000 --- a/_downloads/c0988f01107adbde12789078e5999db1/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c0988f01107adbde12789078e5999db1/whats_new_98_4_legend.ipynb \ No newline at end of file diff --git a/_downloads/c09c471b5c26b689f1e4a4e984d94e50/nested_pie.ipynb b/_downloads/c09c471b5c26b689f1e4a4e984d94e50/nested_pie.ipynb deleted file mode 100644 index 8a95107c295..00000000000 --- a/_downloads/c09c471b5c26b689f1e4a4e984d94e50/nested_pie.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nested pie charts\n\n\nThe following examples show two ways to build a nested pie chart\nin Matplotlib. Such charts are often referred to as donut charts.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The most straightforward way to build a pie chart is to use the\n:meth:`pie method `\n\nIn this case, pie takes values corresponding to counts in a group.\nWe'll first generate some fake data, corresponding to three groups.\nIn the inner circle, we'll treat each number as belonging to its\nown group. In the outer circle, we'll plot them as members of their\noriginal 3 groups.\n\nThe effect of the donut shape is achieved by setting a `width` to\nthe pie's wedges through the `wedgeprops` argument.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\nsize = 0.3\nvals = np.array([[60., 32.], [37., 40.], [29., 10.]])\n\ncmap = plt.get_cmap(\"tab20c\")\nouter_colors = cmap(np.arange(3)*4)\ninner_colors = cmap(np.array([1, 2, 5, 6, 9, 10]))\n\nax.pie(vals.sum(axis=1), radius=1, colors=outer_colors,\n wedgeprops=dict(width=size, edgecolor='w'))\n\nax.pie(vals.flatten(), radius=1-size, colors=inner_colors,\n wedgeprops=dict(width=size, edgecolor='w'))\n\nax.set(aspect=\"equal\", title='Pie plot with `ax.pie`')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "However, you can accomplish the same output by using a bar plot on\naxes with a polar coordinate system. This may give more flexibility on\nthe exact design of the plot.\n\nIn this case, we need to map x-values of the bar chart onto radians of\na circle. The cumulative sum of the values are used as the edges\nof the bars.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(subplot_kw=dict(polar=True))\n\nsize = 0.3\nvals = np.array([[60., 32.], [37., 40.], [29., 10.]])\n#normalize vals to 2 pi\nvalsnorm = vals/np.sum(vals)*2*np.pi\n#obtain the ordinates of the bar edges\nvalsleft = np.cumsum(np.append(0, valsnorm.flatten()[:-1])).reshape(vals.shape)\n\ncmap = plt.get_cmap(\"tab20c\")\nouter_colors = cmap(np.arange(3)*4)\ninner_colors = cmap(np.array([1, 2, 5, 6, 9, 10]))\n\nax.bar(x=valsleft[:, 0],\n width=valsnorm.sum(axis=1), bottom=1-size, height=size,\n color=outer_colors, edgecolor='w', linewidth=1, align=\"edge\")\n\nax.bar(x=valsleft.flatten(),\n width=valsnorm.flatten(), bottom=1-2*size, height=size,\n color=inner_colors, edgecolor='w', linewidth=1, align=\"edge\")\n\nax.set(title=\"Pie plot with `ax.bar` and polar coordinates\")\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie\nmatplotlib.axes.Axes.bar\nmatplotlib.pyplot.bar\nmatplotlib.projections.polar\nmatplotlib.axes.Axes.set\nmatplotlib.axes.Axes.set_axis_off" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c0a98afe4e5050f4f38dd4ae89c81622/demo_gridspec01.py b/_downloads/c0a98afe4e5050f4f38dd4ae89c81622/demo_gridspec01.py deleted file mode 120000 index 104d4256716..00000000000 --- a/_downloads/c0a98afe4e5050f4f38dd4ae89c81622/demo_gridspec01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c0a98afe4e5050f4f38dd4ae89c81622/demo_gridspec01.py \ No newline at end of file diff --git a/_downloads/c0b6a1c863337a7a54913ff3820e598b/axes_grid.ipynb b/_downloads/c0b6a1c863337a7a54913ff3820e598b/axes_grid.ipynb deleted file mode 100644 index 799bb08d258..00000000000 --- a/_downloads/c0b6a1c863337a7a54913ff3820e598b/axes_grid.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Overview of axes_grid1 toolkit\n\n\nControlling the layout of plots with the axes_grid toolkit.\n\n\nWhat is axes_grid1 toolkit?\n===========================\n\n*axes_grid1* is a collection of helper classes to ease displaying\n(multiple) images with matplotlib. In matplotlib, the axes location\n(and size) is specified in the normalized figure coordinates, which\nmay not be ideal for displaying images that needs to have a given\naspect ratio. For example, it helps if you have a colorbar whose\nheight always matches that of the image. `ImageGrid`_, `RGB Axes`_ and\n`AxesDivider`_ are helper classes that deals with adjusting the\nlocation of (multiple) Axes. They provides a framework to adjust the\nposition of multiple axes at the drawing time. `ParasiteAxes`_\nprovides twinx(or twiny)-like features so that you can plot different\ndata (e.g., different y-scale) in a same Axes. `AnchoredArtists`_\nincludes custom artists which are placed at some anchored position,\nlike the legend.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png\n :target: ../../gallery/axes_grid1/demo_axes_grid.html\n :align: center\n :scale: 50\n\n Demo Axes Grid\n\n\naxes_grid1\n==========\n\nImageGrid\n---------\n\n\nA class that creates a grid of Axes. In matplotlib, the axes location\n(and size) is specified in the normalized figure coordinates. This may\nnot be ideal for images that needs to be displayed with a given aspect\nratio. For example, displaying images of a same size with some fixed\npadding between them cannot be easily done in matplotlib. ImageGrid is\nused in such case.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid_001.png\n :target: ../../gallery/axes_grid1/simple_axesgrid.html\n :align: center\n :scale: 50\n\n Simple Axesgrid\n\n* The position of each axes is determined at the drawing time (see\n `AxesDivider`_), so that the size of the entire grid fits in the\n given rectangle (like the aspect of axes). Note that in this example,\n the paddings between axes are fixed even if you changes the figure\n size.\n\n* axes in the same column has a same axes width (in figure\n coordinate), and similarly, axes in the same row has a same\n height. The widths (height) of the axes in the same row (column) are\n scaled according to their view limits (xlim or ylim).\n\n .. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid2_001.png\n :target: ../../gallery/axes_grid1/simple_axesgrid2.html\n :align: center\n :scale: 50\n\n Simple Axes Grid\n\n* xaxis are shared among axes in a same column. Similarly, yaxis are\n shared among axes in a same row. Therefore, changing axis properties\n (view limits, tick location, etc. either by plot commands or using\n your mouse in interactive backends) of one axes will affect all\n other shared axes.\n\n\n\nWhen initialized, ImageGrid creates given number (*ngrids* or *ncols* *\n*nrows* if *ngrids* is None) of Axes instances. A sequence-like\ninterface is provided to access the individual Axes instances (e.g.,\ngrid[0] is the first Axes in the grid. See below for the order of\naxes).\n\n\n\nImageGrid takes following arguments,\n\n\n ============= ======== ================================================\n Name Default Description\n ============= ======== ================================================\n fig\n rect\n nrows_ncols number of rows and cols. e.g., (2,2)\n ngrids None number of grids. nrows x ncols if None\n direction \"row\" increasing direction of axes number. [row|column]\n axes_pad 0.02 pad between axes in inches\n add_all True Add axes to figures if True\n share_all False xaxis & yaxis of all axes are shared if True\n aspect True aspect of axes\n label_mode \"L\" location of tick labels thaw will be displayed.\n \"1\" (only the lower left axes),\n \"L\" (left most and bottom most axes),\n or \"all\".\n cbar_mode None [None|single|each]\n cbar_location \"right\" [right|top]\n cbar_pad None pad between image axes and colorbar axes\n cbar_size \"5%\" size of the colorbar\n axes_class None\n ============= ======== ================================================\n\n *rect*\n specifies the location of the grid. You can either specify\n coordinates of the rectangle to be used (e.g., (0.1, 0.1, 0.8, 0.8)\n as in the Axes), or the subplot-like position (e.g., \"121\").\n\n *direction*\n means the increasing direction of the axes number.\n\n *aspect*\n By default (False), widths and heights of axes in the grid are\n scaled independently. If True, they are scaled according to their\n data limits (similar to aspect parameter in mpl).\n\n *share_all*\n if True, xaxis and yaxis of all axes are shared.\n\n *direction*\n direction of increasing axes number. For \"row\",\n\n +---------+---------+\n | grid[0] | grid[1] |\n +---------+---------+\n | grid[2] | grid[3] |\n +---------+---------+\n\n For \"column\",\n\n +---------+---------+\n | grid[0] | grid[2] |\n +---------+---------+\n | grid[1] | grid[3] |\n +---------+---------+\n\nYou can also create a colorbar (or colorbars). You can have colorbar\nfor each axes (cbar_mode=\"each\"), or you can have a single colorbar\nfor the grid (cbar_mode=\"single\"). The colorbar can be placed on your\nright, or top. The axes for each colorbar is stored as a *cbar_axes*\nattribute.\n\n\n\nThe examples below show what you can do with ImageGrid.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png\n :target: ../../gallery/axes_grid1/demo_axes_grid.html\n :align: center\n :scale: 50\n\n Demo Axes Grid\n\n\nAxesDivider Class\n-----------------\n\nBehind the scene, the ImageGrid class and the RGBAxes class utilize the\nAxesDivider class, whose role is to calculate the location of the axes\nat drawing time. While a more about the AxesDivider is (will be)\nexplained in (yet to be written) AxesDividerGuide, direct use of the\nAxesDivider class will not be necessary for most users. The\naxes_divider module provides a helper function make_axes_locatable,\nwhich can be useful. It takes a existing axes instance and create a\ndivider for it. ::\n\n ax = subplot(1,1,1)\n divider = make_axes_locatable(ax)\n\n\n\n\n*make_axes_locatable* returns an instance of the AxesLocator class,\nderived from the Locator. It provides *append_axes* method that\ncreates a new axes on the given side of (\"top\", \"right\", \"bottom\" and\n\"left\") of the original axes.\n\n\n\ncolorbar whose height (or width) in sync with the master axes\n-------------------------------------------------------------\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_colorbar_001.png\n :target: ../../gallery/axes_grid1/simple_colorbar.html\n :align: center\n :scale: 50\n\n Simple Colorbar\n\n\n\n\nscatter_hist.py with AxesDivider\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe \"scatter_hist.py\" example in mpl can be rewritten using\n*make_axes_locatable*. ::\n\n axScatter = subplot(111)\n axScatter.scatter(x, y)\n axScatter.set_aspect(1.)\n\n # create new axes on the right and on the top of the current axes.\n divider = make_axes_locatable(axScatter)\n axHistx = divider.append_axes(\"top\", size=1.2, pad=0.1, sharex=axScatter)\n axHisty = divider.append_axes(\"right\", size=1.2, pad=0.1, sharey=axScatter)\n\n # the scatter plot:\n # histograms\n bins = np.arange(-lim, lim + binwidth, binwidth)\n axHistx.hist(x, bins=bins)\n axHisty.hist(y, bins=bins, orientation='horizontal')\n\n\nSee the full source code below.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_scatter_hist_locatable_axes_001.png\n :target: ../../gallery/axes_grid1/scatter_hist_locatable_axes.html\n :align: center\n :scale: 50\n\n Scatter Hist\n\n\nThe scatter_hist using the AxesDivider has some advantage over the\noriginal scatter_hist.py in mpl. For example, you can set the aspect\nratio of the scatter plot, even with the x-axis or y-axis is shared\naccordingly.\n\n\nParasiteAxes\n------------\n\nThe ParasiteAxes is an axes whose location is identical to its host\naxes. The location is adjusted in the drawing time, thus it works even\nif the host change its location (e.g., images).\n\nIn most cases, you first create a host axes, which provides a few\nmethod that can be used to create parasite axes. They are *twinx*,\n*twiny* (which are similar to twinx and twiny in the matplotlib) and\n*twin*. *twin* takes an arbitrary transformation that maps between the\ndata coordinates of the host axes and the parasite axes. *draw*\nmethod of the parasite axes are never called. Instead, host axes\ncollects artists in parasite axes and draw them as if they belong to\nthe host axes, i.e., artists in parasite axes are merged to those of\nthe host axes and then drawn according to their zorder. The host and\nparasite axes modifies some of the axes behavior. For example, color\ncycle for plot lines are shared between host and parasites. Also, the\nlegend command in host, creates a legend that includes lines in the\nparasite axes. To create a host axes, you may use *host_subplot* or\n*host_axes* command.\n\n\nExample 1. twinx\n~~~~~~~~~~~~~~~~\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple_001.png\n :target: ../../gallery/axes_grid1/parasite_simple.html\n :align: center\n :scale: 50\n\n Parasite Simple\n\nExample 2. twin\n~~~~~~~~~~~~~~~\n\n*twin* without a transform argument assumes that the parasite axes has the\nsame data transform as the host. This can be useful when you want the\ntop(or right)-axis to have different tick-locations, tick-labels, or\ntick-formatter for bottom(or left)-axis. ::\n\n ax2 = ax.twin() # now, ax2 is responsible for \"top\" axis and \"right\" axis\n ax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi])\n ax2.set_xticklabels([\"0\", r\"$\\frac{1}{2}\\pi$\",\n r\"$\\pi$\", r\"$\\frac{3}{2}\\pi$\", r\"$2\\pi$\"])\n\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axisline4_001.png\n :target: ../../gallery/axes_grid1/simple_axisline4.html\n :align: center\n :scale: 50\n\n Simple Axisline4\n\n\n\nA more sophisticated example using twin. Note that if you change the\nx-limit in the host axes, the x-limit of the parasite axes will change\naccordingly.\n\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple2_001.png\n :target: ../../gallery/axes_grid1/parasite_simple2.html\n :align: center\n :scale: 50\n\n Parasite Simple2\n\n\nAnchoredArtists\n---------------\n\nIt's a collection of artists whose location is anchored to the (axes)\nbbox, like the legend. It is derived from *OffsetBox* in mpl, and\nartist need to be drawn in the canvas coordinate. But, there is a\nlimited support for an arbitrary transform. For example, the ellipse\nin the example below will have width and height in the data\ncoordinate.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_anchored_artists_001.png\n :target: ../../gallery/axes_grid1/simple_anchored_artists.html\n :align: center\n :scale: 50\n\n Simple Anchored Artists\n\n\nInsetLocator\n------------\n\n:mod:`mpl_toolkits.axes_grid1.inset_locator` provides helper classes\nand functions to place your (inset) axes at the anchored position of\nthe parent axes, similarly to AnchoredArtist.\n\nUsing :func:`mpl_toolkits.axes_grid1.inset_locator.inset_axes`, you\ncan have inset axes whose size is either fixed, or a fixed proportion\nof the parent axes. For example,::\n\n inset_axes = inset_axes(parent_axes,\n width=\"30%\", # width = 30% of parent_bbox\n height=1., # height : 1 inch\n loc='lower left')\n\ncreates an inset axes whose width is 30% of the parent axes and whose\nheight is fixed at 1 inch.\n\nYou may creates your inset whose size is determined so that the data\nscale of the inset axes to be that of the parent axes multiplied by\nsome factor. For example, ::\n\n inset_axes = zoomed_inset_axes(ax,\n 0.5, # zoom = 0.5\n loc='upper right')\n\ncreates an inset axes whose data scale is half of the parent axes.\nHere is complete examples.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo_001.png\n :target: ../../gallery/axes_grid1/inset_locator_demo.html\n :align: center\n :scale: 50\n\n Inset Locator Demo\n\nFor example, :func:`zoomed_inset_axes` can be used when you want the\ninset represents the zoom-up of the small portion in the parent axes.\nAnd :mod:`~mpl_toolkits/axes_grid/inset_locator` provides a helper\nfunction :func:`mark_inset` to mark the location of the area\nrepresented by the inset axes.\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo2_001.png\n :target: ../../gallery/axes_grid1/inset_locator_demo2.html\n :align: center\n :scale: 50\n\n Inset Locator Demo2\n\n\nRGB Axes\n~~~~~~~~\n\nRGBAxes is a helper class to conveniently show RGB composite\nimages. Like ImageGrid, the location of axes are adjusted so that the\narea occupied by them fits in a given rectangle. Also, the xaxis and\nyaxis of each axes are shared. ::\n\n from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes\n\n fig = plt.figure()\n ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8])\n\n r, g, b = get_rgb() # r,g,b are 2-d images\n ax.imshow_rgb(r, g, b,\n origin=\"lower\", interpolation=\"nearest\")\n\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_rgb_001.png\n :target: ../../gallery/axes_grid1/simple_rgb.html\n :align: center\n :scale: 50\n\n Simple Rgb\n\n\nAxesDivider\n===========\n\nThe axes_divider module provides helper classes to adjust the axes\npositions of a set of images at drawing time.\n\n* :mod:`~mpl_toolkits.axes_grid1.axes_size` provides a class of\n units that are used to determine the size of each axes. For example,\n you can specify a fixed size.\n\n* :class:`~mpl_toolkits.axes_grid1.axes_size.Divider` is the class\n that calculates the axes position. It divides the given\n rectangular area into several areas. The divider is initialized by\n setting the lists of horizontal and vertical sizes on which the division\n will be based. Then use\n :meth:`~mpl_toolkits.axes_grid1.axes_size.Divider.new_locator`,\n which returns a callable object that can be used to set the\n axes_locator of the axes.\n\n\nFirst, initialize the divider by specifying its grids, i.e.,\nhorizontal and vertical.\n\nfor example,::\n\n rect = [0.2, 0.2, 0.6, 0.6]\n horiz=[h0, h1, h2, h3]\n vert=[v0, v1, v2]\n divider = Divider(fig, rect, horiz, vert)\n\nwhere, rect is a bounds of the box that will be divided and h0,..h3,\nv0,..v2 need to be an instance of classes in the\n:mod:`~mpl_toolkits.axes_grid1.axes_size`. They have *get_size* method\nthat returns a tuple of two floats. The first float is the relative\nsize, and the second float is the absolute size. Consider a following\ngrid.\n\n+-----+-----+-----+-----+\n| v0 | | | |\n+-----+-----+-----+-----+\n| v1 | | | |\n+-----+-----+-----+-----+\n|h0,v2| h1 | h2 | h3 |\n+-----+-----+-----+-----+\n\n\n* v0 => 0, 2\n* v1 => 2, 0\n* v2 => 3, 0\n\nThe height of the bottom row is always 2 (axes_divider internally\nassumes that the unit is inches). The first and the second rows have a\nheight ratio of 2:3. For example, if the total height of the grid is 6,\nthen the first and second row will each occupy 2/(2+3) and 3/(2+3) of\n(6-1) inches. The widths of the horizontal columns will be similarly\ndetermined. When the aspect ratio is set, the total height (or width) will\nbe adjusted accordingly.\n\n\nThe :mod:`mpl_toolkits.axes_grid1.axes_size` contains several classes\nthat can be used to set the horizontal and vertical configurations. For\nexample, for vertical configuration one could use::\n\n from mpl_toolkits.axes_grid1.axes_size import Fixed, Scaled\n vert = [Fixed(2), Scaled(2), Scaled(3)]\n\nAfter you set up the divider object, then you create a locator\ninstance that will be given to the axes object.::\n\n locator = divider.new_locator(nx=0, ny=1)\n ax.set_axes_locator(locator)\n\nThe return value of the new_locator method is an instance of the\nAxesLocator class. It is a callable object that returns the\nlocation and size of the cell at the first column and the second row.\nYou may create a locator that spans over multiple cells.::\n\n locator = divider.new_locator(nx=0, nx=2, ny=1)\n\nThe above locator, when called, will return the position and size of\nthe cells spanning the first and second column and the first row. In\nthis example, it will return [0:2, 1].\n\nSee the example,\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider2_001.png\n :target: ../../gallery/axes_grid1/simple_axes_divider2.html\n :align: center\n :scale: 50\n\n Simple Axes Divider2\n\nYou can adjust the size of each axes according to its x or y\ndata limits (AxesX and AxesY).\n\n.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider3_001.png\n :target: ../../gallery/axes_grid1/simple_axes_divider3.html\n :align: center\n :scale: 50\n\n Simple Axes Divider3\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c0babb88a22ef5b1bc75bd285ed05f77/subplots_adjust.py b/_downloads/c0babb88a22ef5b1bc75bd285ed05f77/subplots_adjust.py deleted file mode 100644 index 1a310f8c3a5..00000000000 --- a/_downloads/c0babb88a22ef5b1bc75bd285ed05f77/subplots_adjust.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=============== -Subplots Adjust -=============== - -Adjusting the spacing of margins and subplots using -:func:`~matplotlib.pyplot.subplots_adjust`. -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -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) - -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() diff --git a/_downloads/c0bccb4f70a4ca3449b918e5bbb2157c/shared_axis_demo.ipynb b/_downloads/c0bccb4f70a4ca3449b918e5bbb2157c/shared_axis_demo.ipynb deleted file mode 120000 index d551a1cb5d0..00000000000 --- a/_downloads/c0bccb4f70a4ca3449b918e5bbb2157c/shared_axis_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c0bccb4f70a4ca3449b918e5bbb2157c/shared_axis_demo.ipynb \ No newline at end of file diff --git a/_downloads/c0bdd004d14b14066d03c658533d5204/load_converter.ipynb b/_downloads/c0bdd004d14b14066d03c658533d5204/load_converter.ipynb deleted file mode 100644 index 0a0859076d8..00000000000 --- a/_downloads/c0bdd004d14b14066d03c658533d5204/load_converter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Load converter\n\n\nThis example demonstrates passing a custom converter to `numpy.genfromtxt` to\nextract dates from a CSV file.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import dateutil.parser\nfrom matplotlib import cbook, dates\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\ndatafile = cbook.get_sample_data('msft.csv', asfileobj=False)\nprint('loading', datafile)\n\ndata = np.genfromtxt(\n datafile, delimiter=',', names=True,\n dtype=None, converters={0: dateutil.parser.parse})\n\nfig, ax = plt.subplots()\nax.plot(data['Date'], data['High'], '-')\nfig.autofmt_xdate()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c0c03d5d430a126364fe2cd526ff4504/histogram_cumulative.ipynb b/_downloads/c0c03d5d430a126364fe2cd526ff4504/histogram_cumulative.ipynb deleted file mode 120000 index 25dea24fa88..00000000000 --- a/_downloads/c0c03d5d430a126364fe2cd526ff4504/histogram_cumulative.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c0c03d5d430a126364fe2cd526ff4504/histogram_cumulative.ipynb \ No newline at end of file diff --git a/_downloads/c0c98d0d3f4c4a92e14a7e654bb7c4a0/fill_betweenx_demo.py b/_downloads/c0c98d0d3f4c4a92e14a7e654bb7c4a0/fill_betweenx_demo.py deleted file mode 120000 index bc63ad52b5a..00000000000 --- a/_downloads/c0c98d0d3f4c4a92e14a7e654bb7c4a0/fill_betweenx_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c0c98d0d3f4c4a92e14a7e654bb7c4a0/fill_betweenx_demo.py \ No newline at end of file diff --git a/_downloads/c0cbb94695892dc0e14a352caf748ff6/font_indexing.ipynb b/_downloads/c0cbb94695892dc0e14a352caf748ff6/font_indexing.ipynb deleted file mode 120000 index 52ff3c653ed..00000000000 --- a/_downloads/c0cbb94695892dc0e14a352caf748ff6/font_indexing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c0cbb94695892dc0e14a352caf748ff6/font_indexing.ipynb \ No newline at end of file diff --git a/_downloads/c0dca0cebb664c0c9dec8119840480a9/artists.py b/_downloads/c0dca0cebb664c0c9dec8119840480a9/artists.py deleted file mode 120000 index 0b7b9f79941..00000000000 --- a/_downloads/c0dca0cebb664c0c9dec8119840480a9/artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c0dca0cebb664c0c9dec8119840480a9/artists.py \ No newline at end of file diff --git a/_downloads/c0e8784eadc9e379db03c20d65d14684/patheffects_guide.ipynb b/_downloads/c0e8784eadc9e379db03c20d65d14684/patheffects_guide.ipynb deleted file mode 100644 index 63fefb4df00..00000000000 --- a/_downloads/c0e8784eadc9e379db03c20d65d14684/patheffects_guide.ipynb +++ /dev/null @@ -1,115 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Path effects guide\n\n\nDefining paths that objects follow on a canvas.\n\n.. py:module:: matplotlib.patheffects\n\n\nMatplotlib's :mod:`~matplotlib.patheffects` module provides functionality to\napply a multiple draw stage to any Artist which can be rendered via a\n:class:`~matplotlib.path.Path`.\n\nArtists which can have a path effect applied to them include :class:`~matplotlib.patches.Patch`,\n:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.collections.Collection` and even\n:class:`~matplotlib.text.Text`. Each artist's path effects can be controlled via the\n``set_path_effects`` method (:class:`~matplotlib.artist.Artist.set_path_effects`), which takes\nan iterable of :class:`AbstractPathEffect` instances.\n\nThe simplest path effect is the :class:`Normal` effect, which simply\ndraws the artist without any effect:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patheffects as path_effects\n\nfig = plt.figure(figsize=(5, 1.5))\ntext = fig.text(0.5, 0.5, 'Hello path effects world!\\nThis is the normal '\n 'path effect.\\nPretty dull, huh?',\n ha='center', va='center', size=20)\ntext.set_path_effects([path_effects.Normal()])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Whilst the plot doesn't look any different to what you would expect without any path\neffects, the drawing of the text now been changed to use the path effects\nframework, opening up the possibilities for more interesting examples.\n\nAdding a shadow\n---------------\n\nA far more interesting path effect than :class:`Normal` is the\ndrop-shadow, which we can apply to any of our path based artists. The classes\n:class:`SimplePatchShadow` and\n:class:`SimpleLineShadow` do precisely this by drawing either a filled\npatch or a line patch below the original artist:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patheffects as path_effects\n\ntext = plt.text(0.5, 0.5, 'Hello path effects world!',\n path_effects=[path_effects.withSimplePatchShadow()])\n\nplt.plot([0, 3, 2, 5], linewidth=5, color='blue',\n path_effects=[path_effects.SimpleLineShadow(),\n path_effects.Normal()])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice the two approaches to setting the path effects in this example. The\nfirst uses the ``with*`` classes to include the desired functionality automatically\nfollowed with the \"normal\" effect, whereas the latter explicitly defines the two path\neffects to draw.\n\nMaking an artist stand out\n--------------------------\n\nOne nice way of making artists visually stand out is to draw an outline in a bold\ncolor below the actual artist. The :class:`Stroke` path effect\nmakes this a relatively simple task:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(7, 1))\ntext = fig.text(0.5, 0.5, 'This text stands out because of\\n'\n 'its black border.', color='white',\n ha='center', va='center', size=30)\ntext.set_path_effects([path_effects.Stroke(linewidth=3, foreground='black'),\n path_effects.Normal()])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It is important to note that this effect only works because we have drawn the text\npath twice; once with a thick black line, and then once with the original text\npath on top.\n\nYou may have noticed that the keywords to :class:`Stroke` and\n:class:`SimplePatchShadow` and :class:`SimpleLineShadow` are not the usual Artist\nkeywords (such as ``facecolor`` and ``edgecolor`` etc.). This is because with these\npath effects we are operating at lower level of matplotlib. In fact, the keywords\nwhich are accepted are those for a :class:`matplotlib.backend_bases.GraphicsContextBase`\ninstance, which have been designed for making it easy to create new backends - and not\nfor its user interface.\n\n\nGreater control of the path effect artist\n-----------------------------------------\n\nAs already mentioned, some of the path effects operate at a lower level than most users\nwill be used to, meaning that setting keywords such as ``facecolor`` and ``edgecolor``\nraise an AttributeError. Luckily there is a generic :class:`PathPatchEffect` path effect\nwhich creates a :class:`~matplotlib.patches.PathPatch` class with the original path.\nThe keywords to this effect are identical to those of :class:`~matplotlib.patches.PathPatch`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(8, 1))\nt = fig.text(0.02, 0.5, 'Hatch shadow', fontsize=75, weight=1000, va='center')\nt.set_path_effects([path_effects.PathPatchEffect(offset=(4, -4), hatch='xxxx',\n facecolor='gray'),\n path_effects.PathPatchEffect(edgecolor='white', linewidth=1.1,\n facecolor='black')])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "..\n Headings for future consideration:\n\n Implementing a custom path effect\n ---------------------------------\n\n What is going on under the hood\n --------------------------------\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c0effe5b6480bde8e7380adda1adce3a/simple_axes_divider1.ipynb b/_downloads/c0effe5b6480bde8e7380adda1adce3a/simple_axes_divider1.ipynb deleted file mode 120000 index ced6b4a0e5d..00000000000 --- a/_downloads/c0effe5b6480bde8e7380adda1adce3a/simple_axes_divider1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c0effe5b6480bde8e7380adda1adce3a/simple_axes_divider1.ipynb \ No newline at end of file diff --git a/_downloads/c0fc774cc7f31ac97da140bcecf8167e/stem3d_demo.py b/_downloads/c0fc774cc7f31ac97da140bcecf8167e/stem3d_demo.py deleted file mode 120000 index bbe07910164..00000000000 --- a/_downloads/c0fc774cc7f31ac97da140bcecf8167e/stem3d_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c0fc774cc7f31ac97da140bcecf8167e/stem3d_demo.py \ No newline at end of file diff --git a/_downloads/c1053c112c8f3c34b2a5bfefe366c0df/colormap_normalizations.ipynb b/_downloads/c1053c112c8f3c34b2a5bfefe366c0df/colormap_normalizations.ipynb deleted file mode 120000 index 0b22adb70d0..00000000000 --- a/_downloads/c1053c112c8f3c34b2a5bfefe366c0df/colormap_normalizations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c1053c112c8f3c34b2a5bfefe366c0df/colormap_normalizations.ipynb \ No newline at end of file diff --git a/_downloads/c10834d4de6d0348327194f859cc645e/trifinder_event_demo.py b/_downloads/c10834d4de6d0348327194f859cc645e/trifinder_event_demo.py deleted file mode 120000 index 528edc2c7b0..00000000000 --- a/_downloads/c10834d4de6d0348327194f859cc645e/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c10834d4de6d0348327194f859cc645e/trifinder_event_demo.py \ No newline at end of file diff --git a/_downloads/c10934b5e5f2f3202e5f4527ef3e1fac/engineering_formatter.py b/_downloads/c10934b5e5f2f3202e5f4527ef3e1fac/engineering_formatter.py deleted file mode 100644 index 7be2d0fe59c..00000000000 --- a/_downloads/c10934b5e5f2f3202e5f4527ef3e1fac/engineering_formatter.py +++ /dev/null @@ -1,44 +0,0 @@ -''' -========================================= -Labeling ticks using engineering notation -========================================= - -Use of the engineering Formatter. -''' - -import matplotlib.pyplot as plt -import numpy as np - -from matplotlib.ticker import EngFormatter - -# Fixing random state for reproducibility -prng = np.random.RandomState(19680801) - -# Create artificial data to plot. -# The x data span over several decades to demonstrate several SI prefixes. -xs = np.logspace(1, 9, 100) -ys = (0.8 + 0.4 * prng.uniform(size=100)) * np.log10(xs)**2 - -# Figure width is doubled (2*6.4) to display nicely 2 subplots side by side. -fig, (ax0, ax1) = plt.subplots(nrows=2, figsize=(7, 9.6)) -for ax in (ax0, ax1): - ax.set_xscale('log') - -# Demo of the default settings, with a user-defined unit label. -ax0.set_title('Full unit ticklabels, w/ default precision & space separator') -formatter0 = EngFormatter(unit='Hz') -ax0.xaxis.set_major_formatter(formatter0) -ax0.plot(xs, ys) -ax0.set_xlabel('Frequency') - -# Demo of the options `places` (number of digit after decimal point) and -# `sep` (separator between the number and the prefix/unit). -ax1.set_title('SI-prefix only ticklabels, 1-digit precision & ' - 'thin space separator') -formatter1 = EngFormatter(places=1, sep="\N{THIN SPACE}") # U+2009 -ax1.xaxis.set_major_formatter(formatter1) -ax1.plot(xs, ys) -ax1.set_xlabel('Frequency [Hz]') - -plt.tight_layout() -plt.show() diff --git a/_downloads/c111327ba2101a3cbbf16dbe797167c9/hyperlinks_sgskip.ipynb b/_downloads/c111327ba2101a3cbbf16dbe797167c9/hyperlinks_sgskip.ipynb deleted file mode 100644 index a4e8557a5e0..00000000000 --- a/_downloads/c111327ba2101a3cbbf16dbe797167c9/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hyperlinks\n\n\nThis example demonstrates how to set a hyperlinks on various kinds of elements.\n\nThis currently only works with the SVG backend.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "f = plt.figure()\ns = plt.scatter([1, 2, 3], [4, 5, 6])\ns.set_urls(['http://www.bbc.co.uk/news', 'http://www.google.com', None])\nf.savefig('scatter.svg')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "f = plt.figure()\ndelta = 0.025\nx = y = np.arange(-3.0, 3.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nim = plt.imshow(Z, interpolation='bilinear', cmap=cm.gray,\n origin='lower', extent=[-3, 3, -3, 3])\n\nim.set_url('http://www.google.com')\nf.savefig('image.svg')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c11413088bca6cbf9d22c8feba25fbdd/surface3d_2.py b/_downloads/c11413088bca6cbf9d22c8feba25fbdd/surface3d_2.py deleted file mode 120000 index 88c0b64e303..00000000000 --- a/_downloads/c11413088bca6cbf9d22c8feba25fbdd/surface3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c11413088bca6cbf9d22c8feba25fbdd/surface3d_2.py \ No newline at end of file diff --git a/_downloads/c11717677132c3f9bd045906a6c47849/ticklabels_rotation.py b/_downloads/c11717677132c3f9bd045906a6c47849/ticklabels_rotation.py deleted file mode 100644 index 3a2fd07442e..00000000000 --- a/_downloads/c11717677132c3f9bd045906a6c47849/ticklabels_rotation.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -=========================== -Rotating custom tick labels -=========================== - -Demo of custom tick-labels with user-defined rotation. -""" -import matplotlib.pyplot as plt - - -x = [1, 2, 3, 4] -y = [1, 4, 9, 6] -labels = ['Frogs', 'Hogs', 'Bogs', 'Slogs'] - -plt.plot(x, y) -# You can specify a rotation for the tick labels in degrees or with keywords. -plt.xticks(x, labels, rotation='vertical') -# Pad margins so that markers don't get clipped by the axes -plt.margins(0.2) -# Tweak spacing to prevent clipping of tick-labels -plt.subplots_adjust(bottom=0.15) -plt.show() diff --git a/_downloads/c11a6bb49c7f19102d89908e8ee8c690/surface3d_3.ipynb b/_downloads/c11a6bb49c7f19102d89908e8ee8c690/surface3d_3.ipynb deleted file mode 100644 index a10e660f341..00000000000 --- a/_downloads/c11a6bb49c7f19102d89908e8ee8c690/surface3d_3.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================\n3D surface (checkerboard)\n=========================\n\nDemonstrates plotting a 3D surface colored in a checkerboard pattern.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import LinearLocator\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make data.\nX = np.arange(-5, 5, 0.25)\nxlen = len(X)\nY = np.arange(-5, 5, 0.25)\nylen = len(Y)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\n# Create an empty array of strings with the same shape as the meshgrid, and\n# populate it with two colors in a checkerboard pattern.\ncolortuple = ('y', 'b')\ncolors = np.empty(X.shape, dtype=str)\nfor y in range(ylen):\n for x in range(xlen):\n colors[x, y] = colortuple[(x + y) % len(colortuple)]\n\n# Plot the surface with face colors taken from the array we made.\nsurf = ax.plot_surface(X, Y, Z, facecolors=colors, linewidth=0)\n\n# Customize the z axis.\nax.set_zlim(-1, 1)\nax.w_zaxis.set_major_locator(LinearLocator(6))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c12b7257584ae7644d02dbeba2f5bc38/constrainedlayout_guide.py b/_downloads/c12b7257584ae7644d02dbeba2f5bc38/constrainedlayout_guide.py deleted file mode 120000 index 6873aacb70c..00000000000 --- a/_downloads/c12b7257584ae7644d02dbeba2f5bc38/constrainedlayout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c12b7257584ae7644d02dbeba2f5bc38/constrainedlayout_guide.py \ No newline at end of file diff --git a/_downloads/c13493368b9c88973db36ca69a3f3288/subplot3d.ipynb b/_downloads/c13493368b9c88973db36ca69a3f3288/subplot3d.ipynb deleted file mode 120000 index fc8fb230ff8..00000000000 --- a/_downloads/c13493368b9c88973db36ca69a3f3288/subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c13493368b9c88973db36ca69a3f3288/subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/c137020ec8075a65c9930270026f733f/patch_collection.py b/_downloads/c137020ec8075a65c9930270026f733f/patch_collection.py deleted file mode 120000 index f469f93a84d..00000000000 --- a/_downloads/c137020ec8075a65c9930270026f733f/patch_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c137020ec8075a65c9930270026f733f/patch_collection.py \ No newline at end of file diff --git a/_downloads/c13c75b978d8b05ef07d4d0e73485656/pyplot_two_subplots.py b/_downloads/c13c75b978d8b05ef07d4d0e73485656/pyplot_two_subplots.py deleted file mode 100644 index 8c6453477b2..00000000000 --- a/_downloads/c13c75b978d8b05ef07d4d0e73485656/pyplot_two_subplots.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=================== -Pyplot Two Subplots -=================== - -Create a figure with two subplots with `pyplot.subplot`. -""" -import numpy as np -import matplotlib.pyplot as plt - - -def f(t): - return np.exp(-t) * np.cos(2*np.pi*t) - - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) - -plt.figure() -plt.subplot(211) -plt.plot(t1, f(t1), color='tab:blue', marker='o') -plt.plot(t2, f(t2), color='black') - -plt.subplot(212) -plt.plot(t2, np.cos(2*np.pi*t2), color='tab:orange', linestyle='--') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.figure -matplotlib.pyplot.subplot diff --git a/_downloads/c150c94be46983d92f22f48030692690/line_demo_dash_control.ipynb b/_downloads/c150c94be46983d92f22f48030692690/line_demo_dash_control.ipynb deleted file mode 120000 index 1f3255d5c5f..00000000000 --- a/_downloads/c150c94be46983d92f22f48030692690/line_demo_dash_control.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c150c94be46983d92f22f48030692690/line_demo_dash_control.ipynb \ No newline at end of file diff --git a/_downloads/c15dea038077d8a068f3e3c07b12255e/findobj_demo.ipynb b/_downloads/c15dea038077d8a068f3e3c07b12255e/findobj_demo.ipynb deleted file mode 120000 index 5c577d7dc4f..00000000000 --- a/_downloads/c15dea038077d8a068f3e3c07b12255e/findobj_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c15dea038077d8a068f3e3c07b12255e/findobj_demo.ipynb \ No newline at end of file diff --git a/_downloads/c17828331d16a1a31153bbeccb6e822b/polar_legend.py b/_downloads/c17828331d16a1a31153bbeccb6e822b/polar_legend.py deleted file mode 120000 index 59293bb0fbc..00000000000 --- a/_downloads/c17828331d16a1a31153bbeccb6e822b/polar_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c17828331d16a1a31153bbeccb6e822b/polar_legend.py \ No newline at end of file diff --git a/_downloads/c1846ae32855d872dd59da237b5a91a7/shared_axis_demo.ipynb b/_downloads/c1846ae32855d872dd59da237b5a91a7/shared_axis_demo.ipynb deleted file mode 120000 index 7e53c3493ca..00000000000 --- a/_downloads/c1846ae32855d872dd59da237b5a91a7/shared_axis_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c1846ae32855d872dd59da237b5a91a7/shared_axis_demo.ipynb \ No newline at end of file diff --git a/_downloads/c18aa37d6f5505067cd637234c124f1d/collections.ipynb b/_downloads/c18aa37d6f5505067cd637234c124f1d/collections.ipynb deleted file mode 100644 index 6f68f6f67f6..00000000000 --- a/_downloads/c18aa37d6f5505067cd637234c124f1d/collections.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================================================\nLine, Poly and RegularPoly Collection with autoscaling\n=========================================================\n\nFor the first two subplots, we will use spirals. Their\nsize will be set in plot units, not data units. Their positions\nwill be set in data units by using the \"offsets\" and \"transOffset\"\nkwargs of the `~.collections.LineCollection` and\n`~.collections.PolyCollection`.\n\nThe third subplot will make regular polygons, with the same\ntype of scaling and positioning as in the first two.\n\nThe last subplot illustrates the use of \"offsets=(xo,yo)\",\nthat is, a single tuple instead of a list of tuples, to generate\nsuccessively offset curves, with the offset given in data\nunits. This behavior is available only for the LineCollection.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib import collections, colors, transforms\nimport numpy as np\n\nnverts = 50\nnpts = 100\n\n# Make some spirals\nr = np.arange(nverts)\ntheta = np.linspace(0, 2*np.pi, nverts)\nxx = r * np.sin(theta)\nyy = r * np.cos(theta)\nspiral = np.column_stack([xx, yy])\n\n# Fixing random state for reproducibility\nrs = np.random.RandomState(19680801)\n\n# Make some offsets\nxyo = rs.randn(npts, 2)\n\n# Make a list of colors cycling through the default series.\ncolors = [colors.to_rgba(c)\n for c in plt.rcParams['axes.prop_cycle'].by_key()['color']]\n\nfig, axes = plt.subplots(2, 2)\nfig.subplots_adjust(top=0.92, left=0.07, right=0.97,\n hspace=0.3, wspace=0.3)\n((ax1, ax2), (ax3, ax4)) = axes # unpack the axes\n\n\ncol = collections.LineCollection([spiral], offsets=xyo,\n transOffset=ax1.transData)\ntrans = fig.dpi_scale_trans + transforms.Affine2D().scale(1.0/72.0)\ncol.set_transform(trans) # the points to pixels transform\n# Note: the first argument to the collection initializer\n# must be a list of sequences of x,y tuples; we have only\n# one sequence, but we still have to put it in a list.\nax1.add_collection(col, autolim=True)\n# autolim=True enables autoscaling. For collections with\n# offsets like this, it is neither efficient nor accurate,\n# but it is good enough to generate a plot that you can use\n# as a starting point. If you know beforehand the range of\n# x and y that you want to show, it is better to set them\n# explicitly, leave out the autolim kwarg (or set it to False),\n# and omit the 'ax1.autoscale_view()' call below.\n\n# Make a transform for the line segments such that their size is\n# given in points:\ncol.set_color(colors)\n\nax1.autoscale_view() # See comment above, after ax1.add_collection.\nax1.set_title('LineCollection using offsets')\n\n\n# The same data as above, but fill the curves.\ncol = collections.PolyCollection([spiral], offsets=xyo,\n transOffset=ax2.transData)\ntrans = transforms.Affine2D().scale(fig.dpi/72.0)\ncol.set_transform(trans) # the points to pixels transform\nax2.add_collection(col, autolim=True)\ncol.set_color(colors)\n\n\nax2.autoscale_view()\nax2.set_title('PolyCollection using offsets')\n\n# 7-sided regular polygons\n\ncol = collections.RegularPolyCollection(\n 7, sizes=np.abs(xx) * 10.0, offsets=xyo, transOffset=ax3.transData)\ntrans = transforms.Affine2D().scale(fig.dpi / 72.0)\ncol.set_transform(trans) # the points to pixels transform\nax3.add_collection(col, autolim=True)\ncol.set_color(colors)\nax3.autoscale_view()\nax3.set_title('RegularPolyCollection using offsets')\n\n\n# Simulate a series of ocean current profiles, successively\n# offset by 0.1 m/s so that they form what is sometimes called\n# a \"waterfall\" plot or a \"stagger\" plot.\n\nnverts = 60\nncurves = 20\noffs = (0.1, 0.0)\n\nyy = np.linspace(0, 2*np.pi, nverts)\nym = np.max(yy)\nxx = (0.2 + (ym - yy) / ym) ** 2 * np.cos(yy - 0.4) * 0.5\nsegs = []\nfor i in range(ncurves):\n xxx = xx + 0.02*rs.randn(nverts)\n curve = np.column_stack([xxx, yy * 100])\n segs.append(curve)\n\ncol = collections.LineCollection(segs, offsets=offs)\nax4.add_collection(col, autolim=True)\ncol.set_color(colors)\nax4.autoscale_view()\nax4.set_title('Successive data offsets')\nax4.set_xlabel('Zonal velocity component (m/s)')\nax4.set_ylabel('Depth (m)')\n# Reverse the y-axis so depth increases downward\nax4.set_ylim(ax4.get_ylim()[::-1])\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.figure.Figure\nmatplotlib.collections\nmatplotlib.collections.LineCollection\nmatplotlib.collections.RegularPolyCollection\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.autoscale_view\nmatplotlib.transforms.Affine2D\nmatplotlib.transforms.Affine2D.scale" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c1a1d6fa5a5115121a864324c7e88603/lifecycle.ipynb b/_downloads/c1a1d6fa5a5115121a864324c7e88603/lifecycle.ipynb deleted file mode 120000 index 85e554e4dfe..00000000000 --- a/_downloads/c1a1d6fa5a5115121a864324c7e88603/lifecycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c1a1d6fa5a5115121a864324c7e88603/lifecycle.ipynb \ No newline at end of file diff --git a/_downloads/c1b1db80fec9bb7ea8d8b501d76f2a20/bayes_update.py b/_downloads/c1b1db80fec9bb7ea8d8b501d76f2a20/bayes_update.py deleted file mode 120000 index 68b246d4c55..00000000000 --- a/_downloads/c1b1db80fec9bb7ea8d8b501d76f2a20/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c1b1db80fec9bb7ea8d8b501d76f2a20/bayes_update.py \ No newline at end of file diff --git a/_downloads/c1b568a5c5500164bf3c080af7af7761/colorbar_only.ipynb b/_downloads/c1b568a5c5500164bf3c080af7af7761/colorbar_only.ipynb deleted file mode 120000 index ee33d2c61bb..00000000000 --- a/_downloads/c1b568a5c5500164bf3c080af7af7761/colorbar_only.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c1b568a5c5500164bf3c080af7af7761/colorbar_only.ipynb \ No newline at end of file diff --git a/_downloads/c1b7dfe6d070925f22d2cec673fa732c/customized_violin.ipynb b/_downloads/c1b7dfe6d070925f22d2cec673fa732c/customized_violin.ipynb deleted file mode 120000 index c981e17f243..00000000000 --- a/_downloads/c1b7dfe6d070925f22d2cec673fa732c/customized_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c1b7dfe6d070925f22d2cec673fa732c/customized_violin.ipynb \ No newline at end of file diff --git a/_downloads/c1b91dfcd58d99cf5e6c11f53dc5f831/pyplot_mathtext.ipynb b/_downloads/c1b91dfcd58d99cf5e6c11f53dc5f831/pyplot_mathtext.ipynb deleted file mode 120000 index 319da99121a..00000000000 --- a/_downloads/c1b91dfcd58d99cf5e6c11f53dc5f831/pyplot_mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c1b91dfcd58d99cf5e6c11f53dc5f831/pyplot_mathtext.ipynb \ No newline at end of file diff --git a/_downloads/c1ba64bcddd45d3e625590bfb2ccee92/canvasagg.py b/_downloads/c1ba64bcddd45d3e625590bfb2ccee92/canvasagg.py deleted file mode 120000 index 1845260029e..00000000000 --- a/_downloads/c1ba64bcddd45d3e625590bfb2ccee92/canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c1ba64bcddd45d3e625590bfb2ccee92/canvasagg.py \ No newline at end of file diff --git a/_downloads/c1c20764c0caac6317547b5fe4b970c8/scatter3d.ipynb b/_downloads/c1c20764c0caac6317547b5fe4b970c8/scatter3d.ipynb deleted file mode 120000 index adb1a479fe8..00000000000 --- a/_downloads/c1c20764c0caac6317547b5fe4b970c8/scatter3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c1c20764c0caac6317547b5fe4b970c8/scatter3d.ipynb \ No newline at end of file diff --git a/_downloads/c1dd93d18478148e272976f9bb82cf4e/hist.ipynb b/_downloads/c1dd93d18478148e272976f9bb82cf4e/hist.ipynb deleted file mode 100644 index 136bcecb969..00000000000 --- a/_downloads/c1dd93d18478148e272976f9bb82cf4e/hist.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Histograms\n\n\nDemonstrates how to plot histograms with matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib import colors\nfrom matplotlib.ticker import PercentFormatter\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Generate data and plot a simple histogram\n-----------------------------------------\n\nTo generate a 1D histogram we only need a single vector of numbers. For a 2D\nhistogram we'll need a second vector. We'll generate both below, and show\nthe histogram for each vector.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N_points = 100000\nn_bins = 20\n\n# Generate a normal distribution, center at x=0 and y=5\nx = np.random.randn(N_points)\ny = .4 * x + np.random.randn(100000) + 5\n\nfig, axs = plt.subplots(1, 2, sharey=True, tight_layout=True)\n\n# We can set the number of bins with the `bins` kwarg\naxs[0].hist(x, bins=n_bins)\naxs[1].hist(y, bins=n_bins)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Updating histogram colors\n-------------------------\n\nThe histogram method returns (among other things) a `patches` object. This\ngives us access to the properties of the objects drawn. Using this, we can\nedit the histogram to our liking. Let's change the color of each bar\nbased on its y value.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(1, 2, tight_layout=True)\n\n# N is the count in each bin, bins is the lower-limit of the bin\nN, bins, patches = axs[0].hist(x, bins=n_bins)\n\n# We'll color code by height, but you could use any scalar\nfracs = N / N.max()\n\n# we need to normalize the data to 0..1 for the full range of the colormap\nnorm = colors.Normalize(fracs.min(), fracs.max())\n\n# Now, we'll loop through our objects and set the color of each accordingly\nfor thisfrac, thispatch in zip(fracs, patches):\n color = plt.cm.viridis(norm(thisfrac))\n thispatch.set_facecolor(color)\n\n# We can also normalize our inputs by the total number of counts\naxs[1].hist(x, bins=n_bins, density=True)\n\n# Now we format the y-axis to display percentage\naxs[1].yaxis.set_major_formatter(PercentFormatter(xmax=1))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot a 2D histogram\n-------------------\n\nTo plot a 2D histogram, one only needs two vectors of the same length,\ncorresponding to each axis of the histogram.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(tight_layout=True)\nhist = ax.hist2d(x, y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Customizing your histogram\n--------------------------\n\nCustomizing a 2D histogram is similar to the 1D case, you can control\nvisual components such as the bin size or color normalization.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(5, 15), sharex=True, sharey=True,\n tight_layout=True)\n\n# We can increase the number of bins on each axis\naxs[0].hist2d(x, y, bins=40)\n\n# As well as define normalization of the colors\naxs[1].hist2d(x, y, bins=40, norm=colors.LogNorm())\n\n# We can also define custom numbers of bins for each axis\naxs[2].hist2d(x, y, bins=(80, 10), norm=colors.LogNorm())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c1e435815b3297dfc2386fb3daf5a727/artists.py b/_downloads/c1e435815b3297dfc2386fb3daf5a727/artists.py deleted file mode 120000 index e2b08913112..00000000000 --- a/_downloads/c1e435815b3297dfc2386fb3daf5a727/artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c1e435815b3297dfc2386fb3daf5a727/artists.py \ No newline at end of file diff --git a/_downloads/c1ec06e3b75e9126eb8d33f74593a46e/inset_locator_demo2.ipynb b/_downloads/c1ec06e3b75e9126eb8d33f74593a46e/inset_locator_demo2.ipynb deleted file mode 100644 index 819bda5ccad..00000000000 --- a/_downloads/c1ec06e3b75e9126eb8d33f74593a46e/inset_locator_demo2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Inset Locator Demo2\n\n\nThis Demo shows how to create a zoomed inset via `~.zoomed_inset_axes`.\nIn the first subplot an `~.AnchoredSizeBar` shows the zoom effect.\nIn the second subplot a connection to the region of interest is\ncreated via `~.mark_inset`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes, mark_inset\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar\n\nimport numpy as np\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n import numpy as np\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\nfig, (ax, ax2) = plt.subplots(ncols=2, figsize=[6, 3])\n\n\n# First subplot, showing an inset with a size bar.\nax.set_aspect(1)\n\naxins = zoomed_inset_axes(ax, zoom=0.5, loc='upper right')\n# fix the number of ticks on the inset axes\naxins.yaxis.get_major_locator().set_params(nbins=7)\naxins.xaxis.get_major_locator().set_params(nbins=7)\n\nplt.setp(axins.get_xticklabels(), visible=False)\nplt.setp(axins.get_yticklabels(), visible=False)\n\n\ndef add_sizebar(ax, size):\n asb = AnchoredSizeBar(ax.transData,\n size,\n str(size),\n loc=8,\n pad=0.1, borderpad=0.5, sep=5,\n frameon=False)\n ax.add_artist(asb)\n\nadd_sizebar(ax, 0.5)\nadd_sizebar(axins, 0.5)\n\n\n# Second subplot, showing an image with an inset zoom\n# and a marked inset\nZ, extent = get_demo_image()\nZ2 = np.zeros([150, 150], dtype=\"d\")\nny, nx = Z.shape\nZ2[30:30 + ny, 30:30 + nx] = Z\n\n# extent = [-3, 4, -4, 3]\nax2.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\n\naxins2 = zoomed_inset_axes(ax2, 6, loc=1) # zoom = 6\naxins2.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\n# sub region of the original image\nx1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9\naxins2.set_xlim(x1, x2)\naxins2.set_ylim(y1, y2)\n# fix the number of ticks on the inset axes\naxins2.yaxis.get_major_locator().set_params(nbins=7)\naxins2.xaxis.get_major_locator().set_params(nbins=7)\n\nplt.setp(axins2.get_xticklabels(), visible=False)\nplt.setp(axins2.get_yticklabels(), visible=False)\n\n# draw a bbox of the region of the inset axes in the parent axes and\n# connecting lines between the bbox and the inset axes area\nmark_inset(ax2, axins2, loc1=2, loc2=4, fc=\"none\", ec=\"0.5\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c1f8da543804d56b4df29e7f488d3ecb/text_rotation.ipynb b/_downloads/c1f8da543804d56b4df29e7f488d3ecb/text_rotation.ipynb deleted file mode 120000 index a465c15962c..00000000000 --- a/_downloads/c1f8da543804d56b4df29e7f488d3ecb/text_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c1f8da543804d56b4df29e7f488d3ecb/text_rotation.ipynb \ No newline at end of file diff --git a/_downloads/c1fdd4c65339ba1e6d8e9045b456eb06/collections.ipynb b/_downloads/c1fdd4c65339ba1e6d8e9045b456eb06/collections.ipynb deleted file mode 120000 index adff81aa6fb..00000000000 --- a/_downloads/c1fdd4c65339ba1e6d8e9045b456eb06/collections.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c1fdd4c65339ba1e6d8e9045b456eb06/collections.ipynb \ No newline at end of file diff --git a/_downloads/c2008b31464ea8321e94590143dcf286/3D.ipynb b/_downloads/c2008b31464ea8321e94590143dcf286/3D.ipynb deleted file mode 120000 index 7c04dde1115..00000000000 --- a/_downloads/c2008b31464ea8321e94590143dcf286/3D.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2008b31464ea8321e94590143dcf286/3D.ipynb \ No newline at end of file diff --git a/_downloads/c204a2754e6bdf29196e45ee2392cf6e/viewlims.py b/_downloads/c204a2754e6bdf29196e45ee2392cf6e/viewlims.py deleted file mode 120000 index e4ef695b585..00000000000 --- a/_downloads/c204a2754e6bdf29196e45ee2392cf6e/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c204a2754e6bdf29196e45ee2392cf6e/viewlims.py \ No newline at end of file diff --git a/_downloads/c20bc1030ccf45093036eb4f28644c5c/multiple_figs_demo.py b/_downloads/c20bc1030ccf45093036eb4f28644c5c/multiple_figs_demo.py deleted file mode 120000 index c45716a567e..00000000000 --- a/_downloads/c20bc1030ccf45093036eb4f28644c5c/multiple_figs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c20bc1030ccf45093036eb4f28644c5c/multiple_figs_demo.py \ No newline at end of file diff --git a/_downloads/c20d4535f9b1034817f38f5f50d1dd3a/demo_parasite_axes2.py b/_downloads/c20d4535f9b1034817f38f5f50d1dd3a/demo_parasite_axes2.py deleted file mode 120000 index 89a2a19c5b8..00000000000 --- a/_downloads/c20d4535f9b1034817f38f5f50d1dd3a/demo_parasite_axes2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c20d4535f9b1034817f38f5f50d1dd3a/demo_parasite_axes2.py \ No newline at end of file diff --git a/_downloads/c20de885785fd64a0993fa209218ecba/axis_direction_demo_step03.py b/_downloads/c20de885785fd64a0993fa209218ecba/axis_direction_demo_step03.py deleted file mode 120000 index 829dbb2ded0..00000000000 --- a/_downloads/c20de885785fd64a0993fa209218ecba/axis_direction_demo_step03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c20de885785fd64a0993fa209218ecba/axis_direction_demo_step03.py \ No newline at end of file diff --git a/_downloads/c210a324bac996387bd9998611961393/gridspec_multicolumn.ipynb b/_downloads/c210a324bac996387bd9998611961393/gridspec_multicolumn.ipynb deleted file mode 120000 index 366ea730cda..00000000000 --- a/_downloads/c210a324bac996387bd9998611961393/gridspec_multicolumn.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c210a324bac996387bd9998611961393/gridspec_multicolumn.ipynb \ No newline at end of file diff --git a/_downloads/c216bf23d93537c1b4a2d58d217332bb/voxels_torus.ipynb b/_downloads/c216bf23d93537c1b4a2d58d217332bb/voxels_torus.ipynb deleted file mode 120000 index 162ccae4888..00000000000 --- a/_downloads/c216bf23d93537c1b4a2d58d217332bb/voxels_torus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c216bf23d93537c1b4a2d58d217332bb/voxels_torus.ipynb \ No newline at end of file diff --git a/_downloads/c2174e10ada6a495467cc486f074bac5/logos2.ipynb b/_downloads/c2174e10ada6a495467cc486f074bac5/logos2.ipynb deleted file mode 120000 index fe60a9d4af2..00000000000 --- a/_downloads/c2174e10ada6a495467cc486f074bac5/logos2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c2174e10ada6a495467cc486f074bac5/logos2.ipynb \ No newline at end of file diff --git a/_downloads/c21b40e591e215dbe841a6732e3224bf/scatter3d.ipynb b/_downloads/c21b40e591e215dbe841a6732e3224bf/scatter3d.ipynb deleted file mode 120000 index 52308833495..00000000000 --- a/_downloads/c21b40e591e215dbe841a6732e3224bf/scatter3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c21b40e591e215dbe841a6732e3224bf/scatter3d.ipynb \ No newline at end of file diff --git a/_downloads/c2271ead33e5ab00cba2a86f335aabb3/polar_legend.py b/_downloads/c2271ead33e5ab00cba2a86f335aabb3/polar_legend.py deleted file mode 120000 index 620be12e95c..00000000000 --- a/_downloads/c2271ead33e5ab00cba2a86f335aabb3/polar_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c2271ead33e5ab00cba2a86f335aabb3/polar_legend.py \ No newline at end of file diff --git a/_downloads/c22f6941d4ad01d9a6ab6f20155e0b50/coords_report.py b/_downloads/c22f6941d4ad01d9a6ab6f20155e0b50/coords_report.py deleted file mode 120000 index bb36fd6fa29..00000000000 --- a/_downloads/c22f6941d4ad01d9a6ab6f20155e0b50/coords_report.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c22f6941d4ad01d9a6ab6f20155e0b50/coords_report.py \ No newline at end of file diff --git a/_downloads/c22fb5c31a9ffab87a36e8555e2139d9/demo_gridspec06.ipynb b/_downloads/c22fb5c31a9ffab87a36e8555e2139d9/demo_gridspec06.ipynb deleted file mode 100644 index 1c01f9eacb9..00000000000 --- a/_downloads/c22fb5c31a9ffab87a36e8555e2139d9/demo_gridspec06.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Nested GridSpecs\n\n\nThis example demonstrates the use of nested `GridSpec`\\s.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\nimport numpy as np\nfrom itertools import product\n\n\ndef squiggle_xy(a, b, c, d):\n i = np.arange(0.0, 2*np.pi, 0.05)\n return np.sin(i*a)*np.cos(i*b), np.sin(i*c)*np.cos(i*d)\n\n\nfig = plt.figure(figsize=(8, 8))\n\n# gridspec inside gridspec\nouter_grid = gridspec.GridSpec(4, 4, wspace=0.0, hspace=0.0)\n\nfor i in range(16):\n inner_grid = gridspec.GridSpecFromSubplotSpec(3, 3,\n subplot_spec=outer_grid[i], wspace=0.0, hspace=0.0)\n a = i // 4 + 1\n b = i % 4 + 1\n for j, (c, d) in enumerate(product(range(1, 4), repeat=2)):\n ax = fig.add_subplot(inner_grid[j])\n ax.plot(*squiggle_xy(a, b, c, d))\n ax.set_xticks([])\n ax.set_yticks([])\n fig.add_subplot(ax)\n\nall_axes = fig.get_axes()\n\n# show only the outside spines\nfor ax in all_axes:\n for sp in ax.spines.values():\n sp.set_visible(False)\n if ax.is_first_row():\n ax.spines['top'].set_visible(True)\n if ax.is_last_row():\n ax.spines['bottom'].set_visible(True)\n if ax.is_first_col():\n ax.spines['left'].set_visible(True)\n if ax.is_last_col():\n ax.spines['right'].set_visible(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c23288f42b7de3ed4d44e9f34a8c55ad/barchart.py b/_downloads/c23288f42b7de3ed4d44e9f34a8c55ad/barchart.py deleted file mode 120000 index a7138ee5bcf..00000000000 --- a/_downloads/c23288f42b7de3ed4d44e9f34a8c55ad/barchart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c23288f42b7de3ed4d44e9f34a8c55ad/barchart.py \ No newline at end of file diff --git a/_downloads/c234d69c3d431d826ccd7c9930e748f4/colorbar_placement.ipynb b/_downloads/c234d69c3d431d826ccd7c9930e748f4/colorbar_placement.ipynb deleted file mode 120000 index 56e8d52b59d..00000000000 --- a/_downloads/c234d69c3d431d826ccd7c9930e748f4/colorbar_placement.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c234d69c3d431d826ccd7c9930e748f4/colorbar_placement.ipynb \ No newline at end of file diff --git a/_downloads/c24184cf3d0fac1312f57d0911df0f5b/zorder_demo.ipynb b/_downloads/c24184cf3d0fac1312f57d0911df0f5b/zorder_demo.ipynb deleted file mode 120000 index 843c11e5a76..00000000000 --- a/_downloads/c24184cf3d0fac1312f57d0911df0f5b/zorder_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c24184cf3d0fac1312f57d0911df0f5b/zorder_demo.ipynb \ No newline at end of file diff --git a/_downloads/c24377aa0914fd2c7b2999c8622d838d/histogram.py b/_downloads/c24377aa0914fd2c7b2999c8622d838d/histogram.py deleted file mode 120000 index 254ab0fe171..00000000000 --- a/_downloads/c24377aa0914fd2c7b2999c8622d838d/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c24377aa0914fd2c7b2999c8622d838d/histogram.py \ No newline at end of file diff --git a/_downloads/c24b826a16dba0409b111aeed55064e7/marker_path.ipynb b/_downloads/c24b826a16dba0409b111aeed55064e7/marker_path.ipynb deleted file mode 120000 index 502cd25b463..00000000000 --- a/_downloads/c24b826a16dba0409b111aeed55064e7/marker_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/c24b826a16dba0409b111aeed55064e7/marker_path.ipynb \ No newline at end of file diff --git a/_downloads/c24fdee49382865933fadf9336969c63/customized_violin.ipynb b/_downloads/c24fdee49382865933fadf9336969c63/customized_violin.ipynb deleted file mode 120000 index 56b5730944d..00000000000 --- a/_downloads/c24fdee49382865933fadf9336969c63/customized_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c24fdee49382865933fadf9336969c63/customized_violin.ipynb \ No newline at end of file diff --git a/_downloads/c2550f3a7b6e053171c5c044f79d10c0/random_walk.ipynb b/_downloads/c2550f3a7b6e053171c5c044f79d10c0/random_walk.ipynb deleted file mode 120000 index bb0b7751fcf..00000000000 --- a/_downloads/c2550f3a7b6e053171c5c044f79d10c0/random_walk.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2550f3a7b6e053171c5c044f79d10c0/random_walk.ipynb \ No newline at end of file diff --git a/_downloads/c25b32b8a061d70265fc6666b7d11fe2/accented_text.py b/_downloads/c25b32b8a061d70265fc6666b7d11fe2/accented_text.py deleted file mode 120000 index b8018621b99..00000000000 --- a/_downloads/c25b32b8a061d70265fc6666b7d11fe2/accented_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c25b32b8a061d70265fc6666b7d11fe2/accented_text.py \ No newline at end of file diff --git a/_downloads/c260cb53f2d802335f81c114ff27c0d7/wire3d_zero_stride.py b/_downloads/c260cb53f2d802335f81c114ff27c0d7/wire3d_zero_stride.py deleted file mode 100644 index 0eac7b70385..00000000000 --- a/_downloads/c260cb53f2d802335f81c114ff27c0d7/wire3d_zero_stride.py +++ /dev/null @@ -1,28 +0,0 @@ -''' -=================================== -3D wireframe plots in one direction -=================================== - -Demonstrates that setting rstride or cstride to 0 causes wires to not be -generated in the corresponding direction. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt - - -fig, [ax1, ax2] = plt.subplots(2, 1, figsize=(8, 12), subplot_kw={'projection': '3d'}) - -# Get the test data -X, Y, Z = axes3d.get_test_data(0.05) - -# Give the first plot only wireframes of the type y = c -ax1.plot_wireframe(X, Y, Z, rstride=10, cstride=0) -ax1.set_title("Column (x) stride set to 0") - -# Give the second plot only wireframes of the type x = c -ax2.plot_wireframe(X, Y, Z, rstride=0, cstride=10) -ax2.set_title("Row (y) stride set to 0") - -plt.tight_layout() -plt.show() diff --git a/_downloads/c2617e462005dd216d2f4b0d0a5ec5f2/centered_ticklabels.py b/_downloads/c2617e462005dd216d2f4b0d0a5ec5f2/centered_ticklabels.py deleted file mode 120000 index b40c583ea94..00000000000 --- a/_downloads/c2617e462005dd216d2f4b0d0a5ec5f2/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c2617e462005dd216d2f4b0d0a5ec5f2/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/c26454aa1b43d58791d22ad72a4cfcf4/auto_subplots_adjust.ipynb b/_downloads/c26454aa1b43d58791d22ad72a4cfcf4/auto_subplots_adjust.ipynb deleted file mode 100644 index 59aaf3c278a..00000000000 --- a/_downloads/c26454aa1b43d58791d22ad72a4cfcf4/auto_subplots_adjust.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Auto Subplots Adjust\n\n\nAutomatically adjust subplot parameters. This example shows a way to determine\na subplot parameter from the extent of the ticklabels using a callback on the\n:doc:`draw_event`.\n\nNote that a similar result would be achieved using `~.Figure.tight_layout`\nor `~.Figure.constrained_layout`; this example shows how one could customize\nthe subplot parameter adjustment.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\nfig, ax = plt.subplots()\nax.plot(range(10))\nax.set_yticks((2,5,7))\nlabels = ax.set_yticklabels(('really, really, really', 'long', 'labels'))\n\ndef on_draw(event):\n bboxes = []\n for label in labels:\n bbox = label.get_window_extent()\n # the figure transform goes from relative coords->pixels and we\n # want the inverse of that\n bboxi = bbox.inverse_transformed(fig.transFigure)\n bboxes.append(bboxi)\n\n # this is the bbox that bounds all the bboxes, again in relative\n # figure coords\n bbox = mtransforms.Bbox.union(bboxes)\n if fig.subplotpars.left < bbox.width:\n # we need to move it over\n fig.subplots_adjust(left=1.1*bbox.width) # pad a little\n fig.canvas.draw()\n return False\n\nfig.canvas.mpl_connect('draw_event', on_draw)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.artist.Artist.get_window_extent\nmatplotlib.transforms.Bbox\nmatplotlib.transforms.Bbox.inverse_transformed\nmatplotlib.transforms.Bbox.union\nmatplotlib.figure.Figure.subplots_adjust\nmatplotlib.figure.SubplotParams\nmatplotlib.backend_bases.FigureCanvasBase.mpl_connect" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c26e6f3ef388d7cfadf6a4c5570c9d3c/centered_spines_with_arrows.ipynb b/_downloads/c26e6f3ef388d7cfadf6a4c5570c9d3c/centered_spines_with_arrows.ipynb deleted file mode 120000 index 2d2be9c8031..00000000000 --- a/_downloads/c26e6f3ef388d7cfadf6a4c5570c9d3c/centered_spines_with_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c26e6f3ef388d7cfadf6a4c5570c9d3c/centered_spines_with_arrows.ipynb \ No newline at end of file diff --git a/_downloads/c272bdcecbece4cba783b89e80ea4b70/font_table.ipynb b/_downloads/c272bdcecbece4cba783b89e80ea4b70/font_table.ipynb deleted file mode 120000 index 13a3d21b23f..00000000000 --- a/_downloads/c272bdcecbece4cba783b89e80ea4b70/font_table.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c272bdcecbece4cba783b89e80ea4b70/font_table.ipynb \ No newline at end of file diff --git a/_downloads/c284e5e39e90bccb240530a469760b89/table_demo.ipynb b/_downloads/c284e5e39e90bccb240530a469760b89/table_demo.ipynb deleted file mode 120000 index 948cbeea160..00000000000 --- a/_downloads/c284e5e39e90bccb240530a469760b89/table_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c284e5e39e90bccb240530a469760b89/table_demo.ipynb \ No newline at end of file diff --git a/_downloads/c2854b9aa405ba306618e1c5e310192a/quiver_simple_demo.py b/_downloads/c2854b9aa405ba306618e1c5e310192a/quiver_simple_demo.py deleted file mode 120000 index fe4bd0e5386..00000000000 --- a/_downloads/c2854b9aa405ba306618e1c5e310192a/quiver_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2854b9aa405ba306618e1c5e310192a/quiver_simple_demo.py \ No newline at end of file diff --git a/_downloads/c28c3d37efe849c356dfcf18493c8626/connectionstyle_demo.ipynb b/_downloads/c28c3d37efe849c356dfcf18493c8626/connectionstyle_demo.ipynb deleted file mode 120000 index 78cc871eb48..00000000000 --- a/_downloads/c28c3d37efe849c356dfcf18493c8626/connectionstyle_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c28c3d37efe849c356dfcf18493c8626/connectionstyle_demo.ipynb \ No newline at end of file diff --git a/_downloads/c28da96c6e207b461e3adb085c04ab4b/scatter_symbol.py b/_downloads/c28da96c6e207b461e3adb085c04ab4b/scatter_symbol.py deleted file mode 120000 index 156a6976eca..00000000000 --- a/_downloads/c28da96c6e207b461e3adb085c04ab4b/scatter_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/c28da96c6e207b461e3adb085c04ab4b/scatter_symbol.py \ No newline at end of file diff --git a/_downloads/c28e31130cca60f0a4ac710f3fbf96c8/simple_axesgrid.py b/_downloads/c28e31130cca60f0a4ac710f3fbf96c8/simple_axesgrid.py deleted file mode 120000 index febb5edc5a6..00000000000 --- a/_downloads/c28e31130cca60f0a4ac710f3fbf96c8/simple_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c28e31130cca60f0a4ac710f3fbf96c8/simple_axesgrid.py \ No newline at end of file diff --git a/_downloads/c28e92a815bb8d479d791a1f40d357c0/2dcollections3d.ipynb b/_downloads/c28e92a815bb8d479d791a1f40d357c0/2dcollections3d.ipynb deleted file mode 120000 index 09b23c9ae29..00000000000 --- a/_downloads/c28e92a815bb8d479d791a1f40d357c0/2dcollections3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c28e92a815bb8d479d791a1f40d357c0/2dcollections3d.ipynb \ No newline at end of file diff --git a/_downloads/c29250d8aced57752d52674234c3d325/customized_violin.py b/_downloads/c29250d8aced57752d52674234c3d325/customized_violin.py deleted file mode 100644 index c686b309677..00000000000 --- a/_downloads/c29250d8aced57752d52674234c3d325/customized_violin.py +++ /dev/null @@ -1,76 +0,0 @@ -""" -========================= -Violin plot customization -========================= - -This example demonstrates how to fully customize violin plots. -The first plot shows the default style by providing only -the data. The second plot first limits what matplotlib draws -with additional kwargs. Then a simplified representation of -a box plot is drawn on top. Lastly, the styles of the artists -of the violins are modified. - -For more information on violin plots, the scikit-learn docs have a great -section: http://scikit-learn.org/stable/modules/density.html -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def adjacent_values(vals, q1, q3): - upper_adjacent_value = q3 + (q3 - q1) * 1.5 - upper_adjacent_value = np.clip(upper_adjacent_value, q3, vals[-1]) - - lower_adjacent_value = q1 - (q3 - q1) * 1.5 - lower_adjacent_value = np.clip(lower_adjacent_value, vals[0], q1) - return lower_adjacent_value, upper_adjacent_value - - -def set_axis_style(ax, labels): - ax.get_xaxis().set_tick_params(direction='out') - ax.xaxis.set_ticks_position('bottom') - ax.set_xticks(np.arange(1, len(labels) + 1)) - ax.set_xticklabels(labels) - ax.set_xlim(0.25, len(labels) + 0.75) - ax.set_xlabel('Sample name') - - -# create test data -np.random.seed(19680801) -data = [sorted(np.random.normal(0, std, 100)) for std in range(1, 5)] - -fig, (ax1, ax2) = plt.subplots(nrows=1, ncols=2, figsize=(9, 4), sharey=True) - -ax1.set_title('Default violin plot') -ax1.set_ylabel('Observed values') -ax1.violinplot(data) - -ax2.set_title('Customized violin plot') -parts = ax2.violinplot( - data, showmeans=False, showmedians=False, - showextrema=False) - -for pc in parts['bodies']: - pc.set_facecolor('#D43F3A') - pc.set_edgecolor('black') - pc.set_alpha(1) - -quartile1, medians, quartile3 = np.percentile(data, [25, 50, 75], axis=1) -whiskers = np.array([ - adjacent_values(sorted_array, q1, q3) - for sorted_array, q1, q3 in zip(data, quartile1, quartile3)]) -whiskersMin, whiskersMax = whiskers[:, 0], whiskers[:, 1] - -inds = np.arange(1, len(medians) + 1) -ax2.scatter(inds, medians, marker='o', color='white', s=30, zorder=3) -ax2.vlines(inds, quartile1, quartile3, color='k', linestyle='-', lw=5) -ax2.vlines(inds, whiskersMin, whiskersMax, color='k', linestyle='-', lw=1) - -# set style for the axes -labels = ['A', 'B', 'C', 'D'] -for ax in [ax1, ax2]: - set_axis_style(ax, labels) - -plt.subplots_adjust(bottom=0.15, wspace=0.05) -plt.show() diff --git a/_downloads/c293090f798b3d244c3be9d67f90f728/angle_annotation.py b/_downloads/c293090f798b3d244c3be9d67f90f728/angle_annotation.py deleted file mode 120000 index 74f38909542..00000000000 --- a/_downloads/c293090f798b3d244c3be9d67f90f728/angle_annotation.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c293090f798b3d244c3be9d67f90f728/angle_annotation.py \ No newline at end of file diff --git a/_downloads/c29736526e2e2d80da50f19e20ebfa97/subplot_demo.ipynb b/_downloads/c29736526e2e2d80da50f19e20ebfa97/subplot_demo.ipynb deleted file mode 120000 index c77d171f421..00000000000 --- a/_downloads/c29736526e2e2d80da50f19e20ebfa97/subplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c29736526e2e2d80da50f19e20ebfa97/subplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/c2a9f99e7a4ee3b2d1f398638f094028/pyplot.py b/_downloads/c2a9f99e7a4ee3b2d1f398638f094028/pyplot.py deleted file mode 120000 index 801134352b3..00000000000 --- a/_downloads/c2a9f99e7a4ee3b2d1f398638f094028/pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2a9f99e7a4ee3b2d1f398638f094028/pyplot.py \ No newline at end of file diff --git a/_downloads/c2aacf36b8871ca0f2235e2803662802/image_nonuniform.ipynb b/_downloads/c2aacf36b8871ca0f2235e2803662802/image_nonuniform.ipynb deleted file mode 120000 index af2cd9a1a49..00000000000 --- a/_downloads/c2aacf36b8871ca0f2235e2803662802/image_nonuniform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c2aacf36b8871ca0f2235e2803662802/image_nonuniform.ipynb \ No newline at end of file diff --git a/_downloads/c2abef71966332e3b5926d812437aa23/mathtext_asarray.ipynb b/_downloads/c2abef71966332e3b5926d812437aa23/mathtext_asarray.ipynb deleted file mode 120000 index 04aee4aca9c..00000000000 --- a/_downloads/c2abef71966332e3b5926d812437aa23/mathtext_asarray.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c2abef71966332e3b5926d812437aa23/mathtext_asarray.ipynb \ No newline at end of file diff --git a/_downloads/c2afcf64bd978fc6263dc4074991e4b6/spines.py b/_downloads/c2afcf64bd978fc6263dc4074991e4b6/spines.py deleted file mode 100644 index 6c25e899c87..00000000000 --- a/_downloads/c2afcf64bd978fc6263dc4074991e4b6/spines.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -====== -Spines -====== - -This demo compares: - - normal axes, with spines on all four sides; - - an axes with spines only on the left and bottom; - - an axes using custom bounds to limit the extent of the spine. -""" -import numpy as np -import matplotlib.pyplot as plt - - -x = np.linspace(0, 2 * np.pi, 100) -y = 2 * np.sin(x) - -fig, (ax0, ax1, ax2) = plt.subplots(nrows=3) - -ax0.plot(x, y) -ax0.set_title('normal spines') - -ax1.plot(x, y) -ax1.set_title('bottom-left spines') - -# Hide the right and top spines -ax1.spines['right'].set_visible(False) -ax1.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax1.yaxis.set_ticks_position('left') -ax1.xaxis.set_ticks_position('bottom') - -ax2.plot(x, y) - -# Only draw spine between the y-ticks -ax2.spines['left'].set_bounds(-1, 1) -# Hide the right and top spines -ax2.spines['right'].set_visible(False) -ax2.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax2.yaxis.set_ticks_position('left') -ax2.xaxis.set_ticks_position('bottom') - -# Tweak spacing between subplots to prevent labels from overlapping -plt.subplots_adjust(hspace=0.5) -plt.show() diff --git a/_downloads/c2e301e9b35416bc0840efec01bbb0c5/zorder_demo.ipynb b/_downloads/c2e301e9b35416bc0840efec01bbb0c5/zorder_demo.ipynb deleted file mode 120000 index 4d95741a586..00000000000 --- a/_downloads/c2e301e9b35416bc0840efec01bbb0c5/zorder_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2e301e9b35416bc0840efec01bbb0c5/zorder_demo.ipynb \ No newline at end of file diff --git a/_downloads/c2e5e59ee068624c2d6220292ed0fbaa/xcorr_acorr_demo.ipynb b/_downloads/c2e5e59ee068624c2d6220292ed0fbaa/xcorr_acorr_demo.ipynb deleted file mode 120000 index a6a50d6cd1a..00000000000 --- a/_downloads/c2e5e59ee068624c2d6220292ed0fbaa/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2e5e59ee068624c2d6220292ed0fbaa/xcorr_acorr_demo.ipynb \ No newline at end of file diff --git a/_downloads/c2e6d7fe96d63591f92bfc0b316500d0/agg_buffer_to_array.py b/_downloads/c2e6d7fe96d63591f92bfc0b316500d0/agg_buffer_to_array.py deleted file mode 100644 index 0085a75de0b..00000000000 --- a/_downloads/c2e6d7fe96d63591f92bfc0b316500d0/agg_buffer_to_array.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=================== -Agg Buffer To Array -=================== - -Convert a rendered figure to its image (NumPy array) representation. -""" -import matplotlib.pyplot as plt -import numpy as np - -# make an agg figure -fig, ax = plt.subplots() -ax.plot([1, 2, 3]) -ax.set_title('a simple figure') -fig.canvas.draw() - -# grab the pixel buffer and dump it into a numpy array -X = np.array(fig.canvas.renderer.buffer_rgba()) - -# now display the array X as an Axes in a new figure -fig2 = plt.figure() -ax2 = fig2.add_subplot(111, frameon=False) -ax2.imshow(X) -plt.show() diff --git a/_downloads/c2f8546bc74fd1c27ce9864fce8facb9/voxels.ipynb b/_downloads/c2f8546bc74fd1c27ce9864fce8facb9/voxels.ipynb deleted file mode 120000 index ca17fdb055c..00000000000 --- a/_downloads/c2f8546bc74fd1c27ce9864fce8facb9/voxels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2f8546bc74fd1c27ce9864fce8facb9/voxels.ipynb \ No newline at end of file diff --git a/_downloads/c2fe4f95fc7cc4fd0fe1958f8b94ee0d/hexbin_demo.py b/_downloads/c2fe4f95fc7cc4fd0fe1958f8b94ee0d/hexbin_demo.py deleted file mode 120000 index 316682f0fab..00000000000 --- a/_downloads/c2fe4f95fc7cc4fd0fe1958f8b94ee0d/hexbin_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c2fe4f95fc7cc4fd0fe1958f8b94ee0d/hexbin_demo.py \ No newline at end of file diff --git a/_downloads/c3006dea7c0e3d8c376b43c8eeb1da8e/pyplot_two_subplots.ipynb b/_downloads/c3006dea7c0e3d8c376b43c8eeb1da8e/pyplot_two_subplots.ipynb deleted file mode 100644 index 3b7ff88c257..00000000000 --- a/_downloads/c3006dea7c0e3d8c376b43c8eeb1da8e/pyplot_two_subplots.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Two Subplots\n\n\nCreate a figure with two subplots with `pyplot.subplot`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef f(t):\n return np.exp(-t) * np.cos(2*np.pi*t)\n\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\n\nplt.figure()\nplt.subplot(211)\nplt.plot(t1, f(t1), color='tab:blue', marker='o')\nplt.plot(t2, f(t2), color='black')\n\nplt.subplot(212)\nplt.plot(t2, np.cos(2*np.pi*t2), color='tab:orange', linestyle='--')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.figure\nmatplotlib.pyplot.subplot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c3075c8ad9ffcbc76376b320e6bbb7ca/gtk_spreadsheet_sgskip.ipynb b/_downloads/c3075c8ad9ffcbc76376b320e6bbb7ca/gtk_spreadsheet_sgskip.ipynb deleted file mode 120000 index dc12beaf957..00000000000 --- a/_downloads/c3075c8ad9ffcbc76376b320e6bbb7ca/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c3075c8ad9ffcbc76376b320e6bbb7ca/gtk_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c3171348db35c23d56fbe68ae389b41e/colormap_normalizations_custom.ipynb b/_downloads/c3171348db35c23d56fbe68ae389b41e/colormap_normalizations_custom.ipynb deleted file mode 120000 index 15cfc996c54..00000000000 --- a/_downloads/c3171348db35c23d56fbe68ae389b41e/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/c3171348db35c23d56fbe68ae389b41e/colormap_normalizations_custom.ipynb \ No newline at end of file diff --git a/_downloads/c324dd218a5b571d96fa89b439a8df8e/fill_betweenx_demo.ipynb b/_downloads/c324dd218a5b571d96fa89b439a8df8e/fill_betweenx_demo.ipynb deleted file mode 100644 index 849280555f5..00000000000 --- a/_downloads/c324dd218a5b571d96fa89b439a8df8e/fill_betweenx_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fill Betweenx Demo\n\n\nUsing `~.Axes.fill_betweenx` to color along the horizontal direction between\ntwo curves.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ny = np.arange(0.0, 2, 0.01)\nx1 = np.sin(2 * np.pi * y)\nx2 = 1.2 * np.sin(4 * np.pi * y)\n\nfig, [ax1, ax2, ax3] = plt.subplots(1, 3, sharey=True, figsize=(6, 6))\n\nax1.fill_betweenx(y, 0, x1)\nax1.set_title('between (x1, 0)')\n\nax2.fill_betweenx(y, x1, 1)\nax2.set_title('between (x1, 1)')\nax2.set_xlabel('x')\n\nax3.fill_betweenx(y, x1, x2)\nax3.set_title('between (x1, x2)')\n\n# now fill between x1 and x2 where a logical condition is met. Note\n# this is different than calling\n# fill_between(y[where], x1[where], x2[where])\n# because of edge effects over multiple contiguous regions.\n\nfig, [ax, ax1] = plt.subplots(1, 2, sharey=True, figsize=(6, 6))\nax.plot(x1, y, x2, y, color='black')\nax.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green')\nax.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red')\nax.set_title('fill_betweenx where')\n\n# Test support for masked arrays.\nx2 = np.ma.masked_greater(x2, 1.0)\nax1.plot(x1, y, x2, y, color='black')\nax1.fill_betweenx(y, x1, x2, where=x2 >= x1, facecolor='green')\nax1.fill_betweenx(y, x1, x2, where=x2 <= x1, facecolor='red')\nax1.set_title('regions with x2 > 1 are masked')\n\n# This example illustrates a problem; because of the data\n# gridding, there are undesired unfilled triangles at the crossover\n# points. A brute-force solution would be to interpolate all\n# arrays to a very fine grid before plotting.\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c3287ceb815bb294ac22e027d2a53b15/figimage_demo.py b/_downloads/c3287ceb815bb294ac22e027d2a53b15/figimage_demo.py deleted file mode 100644 index ef805576cae..00000000000 --- a/_downloads/c3287ceb815bb294ac22e027d2a53b15/figimage_demo.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============= -Figimage Demo -============= - -This illustrates placing images directly in the figure, with no Axes objects. - -""" -import numpy as np -import matplotlib -import matplotlib.pyplot as plt - - -fig = plt.figure() -Z = np.arange(10000).reshape((100, 100)) -Z[:, 50:] = 1 - -im1 = fig.figimage(Z, xo=50, yo=0, origin='lower') -im2 = fig.figimage(Z, xo=100, yo=100, alpha=.8, origin='lower') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -matplotlib.figure.Figure -matplotlib.figure.Figure.figimage -matplotlib.pyplot.figimage diff --git a/_downloads/c328d03dcd3b9dae9a8b3f008c82073b/artists.ipynb b/_downloads/c328d03dcd3b9dae9a8b3f008c82073b/artists.ipynb deleted file mode 100644 index 5a848765c16..00000000000 --- a/_downloads/c328d03dcd3b9dae9a8b3f008c82073b/artists.ipynb +++ /dev/null @@ -1,173 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Artist tutorial\n\n\nUsing Artist objects to render on the canvas.\n\nThere are three layers to the matplotlib API.\n\n* the :class:`matplotlib.backend_bases.FigureCanvas` is the area onto which\n the figure is drawn\n* the :class:`matplotlib.backend_bases.Renderer` is\n the object which knows how to draw on the\n :class:`~matplotlib.backend_bases.FigureCanvas`\n* and the :class:`matplotlib.artist.Artist` is the object that knows how to use\n a renderer to paint onto the canvas.\n\nThe :class:`~matplotlib.backend_bases.FigureCanvas` and\n:class:`~matplotlib.backend_bases.Renderer` handle all the details of\ntalking to user interface toolkits like `wxPython\n`_ or drawing languages like PostScript\u00ae, and\nthe ``Artist`` handles all the high level constructs like representing\nand laying out the figure, text, and lines. The typical user will\nspend 95% of their time working with the ``Artists``.\n\nThere are two types of ``Artists``: primitives and containers. The primitives\nrepresent the standard graphical objects we want to paint onto our canvas:\n:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.patches.Rectangle`,\n:class:`~matplotlib.text.Text`, :class:`~matplotlib.image.AxesImage`, etc., and\nthe containers are places to put them (:class:`~matplotlib.axis.Axis`,\n:class:`~matplotlib.axes.Axes` and :class:`~matplotlib.figure.Figure`). The\nstandard use is to create a :class:`~matplotlib.figure.Figure` instance, use\nthe ``Figure`` to create one or more :class:`~matplotlib.axes.Axes` or\n:class:`~matplotlib.axes.Subplot` instances, and use the ``Axes`` instance\nhelper methods to create the primitives. In the example below, we create a\n``Figure`` instance using :func:`matplotlib.pyplot.figure`, which is a\nconvenience method for instantiating ``Figure`` instances and connecting them\nwith your user interface or drawing toolkit ``FigureCanvas``. As we will\ndiscuss below, this is not necessary -- you can work directly with PostScript,\nPDF Gtk+, or wxPython ``FigureCanvas`` instances, instantiate your ``Figures``\ndirectly and connect them yourselves -- but since we are focusing here on the\n``Artist`` API we'll let :mod:`~matplotlib.pyplot` handle some of those details\nfor us::\n\n import matplotlib.pyplot as plt\n fig = plt.figure()\n ax = fig.add_subplot(2, 1, 1) # two rows, one column, first plot\n\nThe :class:`~matplotlib.axes.Axes` is probably the most important\nclass in the matplotlib API, and the one you will be working with most\nof the time. This is because the ``Axes`` is the plotting area into\nwhich most of the objects go, and the ``Axes`` has many special helper\nmethods (:meth:`~matplotlib.axes.Axes.plot`,\n:meth:`~matplotlib.axes.Axes.text`,\n:meth:`~matplotlib.axes.Axes.hist`,\n:meth:`~matplotlib.axes.Axes.imshow`) to create the most common\ngraphics primitives (:class:`~matplotlib.lines.Line2D`,\n:class:`~matplotlib.text.Text`,\n:class:`~matplotlib.patches.Rectangle`,\n:class:`~matplotlib.image.Image`, respectively). These helper methods\nwill take your data (e.g., ``numpy`` arrays and strings) and create\nprimitive ``Artist`` instances as needed (e.g., ``Line2D``), add them to\nthe relevant containers, and draw them when requested. Most of you\nare probably familiar with the :class:`~matplotlib.axes.Subplot`,\nwhich is just a special case of an ``Axes`` that lives on a regular\nrows by columns grid of ``Subplot`` instances. If you want to create\nan ``Axes`` at an arbitrary location, simply use the\n:meth:`~matplotlib.figure.Figure.add_axes` method which takes a list\nof ``[left, bottom, width, height]`` values in 0-1 relative figure\ncoordinates::\n\n fig2 = plt.figure()\n ax2 = fig2.add_axes([0.15, 0.1, 0.7, 0.3])\n\nContinuing with our example::\n\n import numpy as np\n t = np.arange(0.0, 1.0, 0.01)\n s = np.sin(2*np.pi*t)\n line, = ax.plot(t, s, color='blue', lw=2)\n\nIn this example, ``ax`` is the ``Axes`` instance created by the\n``fig.add_subplot`` call above (remember ``Subplot`` is just a\nsubclass of ``Axes``) and when you call ``ax.plot``, it creates a\n``Line2D`` instance and adds it to the :attr:`Axes.lines\n` list. In the interactive `ipython\n`_ session below, you can see that the\n``Axes.lines`` list is length one and contains the same line that was\nreturned by the ``line, = ax.plot...`` call:\n\n.. sourcecode:: ipython\n\n In [101]: ax.lines[0]\n Out[101]: \n\n In [102]: line\n Out[102]: \n\nIf you make subsequent calls to ``ax.plot`` (and the hold state is \"on\"\nwhich is the default) then additional lines will be added to the list.\nYou can remove lines later simply by calling the list methods; either\nof these will work::\n\n del ax.lines[0]\n ax.lines.remove(line) # one or the other, not both!\n\nThe Axes also has helper methods to configure and decorate the x-axis\nand y-axis tick, tick labels and axis labels::\n\n xtext = ax.set_xlabel('my xdata') # returns a Text instance\n ytext = ax.set_ylabel('my ydata')\n\nWhen you call :meth:`ax.set_xlabel `,\nit passes the information on the :class:`~matplotlib.text.Text`\ninstance of the :class:`~matplotlib.axis.XAxis`. Each ``Axes``\ninstance contains an :class:`~matplotlib.axis.XAxis` and a\n:class:`~matplotlib.axis.YAxis` instance, which handle the layout and\ndrawing of the ticks, tick labels and axis labels.\n\nTry creating the figure below.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.subplots_adjust(top=0.8)\nax1 = fig.add_subplot(211)\nax1.set_ylabel('volts')\nax1.set_title('a sine wave')\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2*np.pi*t)\nline, = ax1.plot(t, s, color='blue', lw=2)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3])\nn, bins, patches = ax2.hist(np.random.randn(1000), 50,\n facecolor='yellow', edgecolor='yellow')\nax2.set_xlabel('time (s)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nCustomizing your objects\n========================\n\nEvery element in the figure is represented by a matplotlib\n:class:`~matplotlib.artist.Artist`, and each has an extensive list of\nproperties to configure its appearance. The figure itself contains a\n:class:`~matplotlib.patches.Rectangle` exactly the size of the figure,\nwhich you can use to set the background color and transparency of the\nfigures. Likewise, each :class:`~matplotlib.axes.Axes` bounding box\n(the standard white box with black edges in the typical matplotlib\nplot, has a ``Rectangle`` instance that determines the color,\ntransparency, and other properties of the Axes. These instances are\nstored as member variables :attr:`Figure.patch\n` and :attr:`Axes.patch\n` (\"Patch\" is a name inherited from\nMATLAB, and is a 2D \"patch\" of color on the figure, e.g., rectangles,\ncircles and polygons). Every matplotlib ``Artist`` has the following\nproperties\n\n========== ================================================================================\nProperty Description\n========== ================================================================================\nalpha The transparency - a scalar from 0-1\nanimated A boolean that is used to facilitate animated drawing\naxes The axes that the Artist lives in, possibly None\nclip_box The bounding box that clips the Artist\nclip_on Whether clipping is enabled\nclip_path The path the artist is clipped to\ncontains A picking function to test whether the artist contains the pick point\nfigure The figure instance the artist lives in, possibly None\nlabel A text label (e.g., for auto-labeling)\npicker A python object that controls object picking\ntransform The transformation\nvisible A boolean whether the artist should be drawn\nzorder A number which determines the drawing order\nrasterized Boolean; Turns vectors into raster graphics (for compression & eps transparency)\n========== ================================================================================\n\nEach of the properties is accessed with an old-fashioned setter or\ngetter (yes we know this irritates Pythonistas and we plan to support\ndirect access via properties or traits but it hasn't been done yet).\nFor example, to multiply the current alpha by a half::\n\n a = o.get_alpha()\n o.set_alpha(0.5*a)\n\nIf you want to set a number of properties at once, you can also use\nthe ``set`` method with keyword arguments. For example::\n\n o.set(alpha=0.5, zorder=2)\n\nIf you are working interactively at the python shell, a handy way to\ninspect the ``Artist`` properties is to use the\n:func:`matplotlib.artist.getp` function (simply\n:func:`~matplotlib.pyplot.getp` in pyplot), which lists the properties\nand their values. This works for classes derived from ``Artist`` as\nwell, e.g., ``Figure`` and ``Rectangle``. Here are the ``Figure`` rectangle\nproperties mentioned above:\n\n.. sourcecode:: ipython\n\n In [149]: matplotlib.artist.getp(fig.patch)\n\talpha = 1.0\n\tanimated = False\n\tantialiased or aa = True\n\taxes = None\n\tclip_box = None\n\tclip_on = False\n\tclip_path = None\n\tcontains = None\n\tedgecolor or ec = w\n\tfacecolor or fc = 0.75\n\tfigure = Figure(8.125x6.125)\n\tfill = 1\n\thatch = None\n\theight = 1\n\tlabel =\n\tlinewidth or lw = 1.0\n\tpicker = None\n\ttransform = \n\tverts = ((0, 0), (0, 1), (1, 1), (1, 0))\n\tvisible = True\n\twidth = 1\n\twindow_extent = \n\tx = 0\n\ty = 0\n\tzorder = 1\n\nThe docstrings for all of the classes also contain the ``Artist``\nproperties, so you can consult the interactive \"help\" or the\n`artist-api` for a listing of properties for a given object.\n\n\nObject containers\n=================\n\n\nNow that we know how to inspect and set the properties of a given\nobject we want to configure, we need to know how to get at that object.\nAs mentioned in the introduction, there are two kinds of objects:\nprimitives and containers. The primitives are usually the things you\nwant to configure (the font of a :class:`~matplotlib.text.Text`\ninstance, the width of a :class:`~matplotlib.lines.Line2D`) although\nthe containers also have some properties as well -- for example the\n:class:`~matplotlib.axes.Axes` :class:`~matplotlib.artist.Artist` is a\ncontainer that contains many of the primitives in your plot, but it\nalso has properties like the ``xscale`` to control whether the xaxis\nis 'linear' or 'log'. In this section we'll review where the various\ncontainer objects store the ``Artists`` that you want to get at.\n\n\nFigure container\n----------------\n\nThe top level container ``Artist`` is the\n:class:`matplotlib.figure.Figure`, and it contains everything in the\nfigure. The background of the figure is a\n:class:`~matplotlib.patches.Rectangle` which is stored in\n:attr:`Figure.patch `. As\nyou add subplots (:meth:`~matplotlib.figure.Figure.add_subplot`) and\naxes (:meth:`~matplotlib.figure.Figure.add_axes`) to the figure\nthese will be appended to the :attr:`Figure.axes\n`. These are also returned by the\nmethods that create them:\n\n.. sourcecode:: ipython\n\n In [156]: fig = plt.figure()\n\n In [157]: ax1 = fig.add_subplot(211)\n\n In [158]: ax2 = fig.add_axes([0.1, 0.1, 0.7, 0.3])\n\n In [159]: ax1\n Out[159]: \n\n In [160]: print(fig.axes)\n [, ]\n\nBecause the figure maintains the concept of the \"current axes\" (see\n:meth:`Figure.gca ` and\n:meth:`Figure.sca `) to support the\npylab/pyplot state machine, you should not insert or remove axes\ndirectly from the axes list, but rather use the\n:meth:`~matplotlib.figure.Figure.add_subplot` and\n:meth:`~matplotlib.figure.Figure.add_axes` methods to insert, and the\n:meth:`~matplotlib.figure.Figure.delaxes` method to delete. You are\nfree however, to iterate over the list of axes or index into it to get\naccess to ``Axes`` instances you want to customize. Here is an\nexample which turns all the axes grids on::\n\n for ax in fig.axes:\n ax.grid(True)\n\n\nThe figure also has its own text, lines, patches and images, which you\ncan use to add primitives directly. The default coordinate system for\nthe ``Figure`` will simply be in pixels (which is not usually what you\nwant) but you can control this by setting the transform property of\nthe ``Artist`` you are adding to the figure.\n\n.. TODO: Is that still true?\n\nMore useful is \"figure coordinates\" where (0, 0) is the bottom-left of\nthe figure and (1, 1) is the top-right of the figure which you can\nobtain by setting the ``Artist`` transform to :attr:`fig.transFigure\n`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.lines as lines\n\nfig = plt.figure()\n\nl1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig)\nl2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig)\nfig.lines.extend([l1, l2])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is a summary of the Artists the figure contains\n\n.. TODO: Add xrefs to this table\n\n================ ===============================================================\nFigure attribute Description\n================ ===============================================================\naxes A list of Axes instances (includes Subplot)\npatch The Rectangle background\nimages A list of FigureImages patches - useful for raw pixel display\nlegends A list of Figure Legend instances (different from Axes.legends)\nlines A list of Figure Line2D instances (rarely used, see Axes.lines)\npatches A list of Figure patches (rarely used, see Axes.patches)\ntexts A list Figure Text instances\n================ ===============================================================\n\n\nAxes container\n--------------\n\nThe :class:`matplotlib.axes.Axes` is the center of the matplotlib\nuniverse -- it contains the vast majority of all the ``Artists`` used\nin a figure with many helper methods to create and add these\n``Artists`` to itself, as well as helper methods to access and\ncustomize the ``Artists`` it contains. Like the\n:class:`~matplotlib.figure.Figure`, it contains a\n:class:`~matplotlib.patches.Patch`\n:attr:`~matplotlib.axes.Axes.patch` which is a\n:class:`~matplotlib.patches.Rectangle` for Cartesian coordinates and a\n:class:`~matplotlib.patches.Circle` for polar coordinates; this patch\ndetermines the shape, background and border of the plotting region::\n\n ax = fig.add_subplot(111)\n rect = ax.patch # a Rectangle instance\n rect.set_facecolor('green')\n\nWhen you call a plotting method, e.g., the canonical\n:meth:`~matplotlib.axes.Axes.plot` and pass in arrays or lists of\nvalues, the method will create a :meth:`matplotlib.lines.Line2D`\ninstance, update the line with all the ``Line2D`` properties passed as\nkeyword arguments, add the line to the :attr:`Axes.lines\n` container, and returns it to you:\n\n.. sourcecode:: ipython\n\n In [213]: x, y = np.random.rand(2, 100)\n\n In [214]: line, = ax.plot(x, y, '-', color='blue', linewidth=2)\n\n``plot`` returns a list of lines because you can pass in multiple x, y\npairs to plot, and we are unpacking the first element of the length\none list into the line variable. The line has been added to the\n``Axes.lines`` list:\n\n.. sourcecode:: ipython\n\n In [229]: print(ax.lines)\n []\n\nSimilarly, methods that create patches, like\n:meth:`~matplotlib.axes.Axes.bar` creates a list of rectangles, will\nadd the patches to the :attr:`Axes.patches\n` list:\n\n.. sourcecode:: ipython\n\n In [233]: n, bins, rectangles = ax.hist(np.random.randn(1000), 50, facecolor='yellow')\n\n In [234]: rectangles\n Out[234]:
\n\n In [235]: print(len(ax.patches))\n\nYou should not add objects directly to the ``Axes.lines`` or\n``Axes.patches`` lists unless you know exactly what you are doing,\nbecause the ``Axes`` needs to do a few things when it creates and adds\nan object. It sets the figure and axes property of the ``Artist``, as\nwell as the default ``Axes`` transformation (unless a transformation\nis set). It also inspects the data contained in the ``Artist`` to\nupdate the data structures controlling auto-scaling, so that the view\nlimits can be adjusted to contain the plotted data. You can,\nnonetheless, create objects yourself and add them directly to the\n``Axes`` using helper methods like\n:meth:`~matplotlib.axes.Axes.add_line` and\n:meth:`~matplotlib.axes.Axes.add_patch`. Here is an annotated\ninteractive session illustrating what is going on:\n\n.. sourcecode:: ipython\n\n In [262]: fig, ax = plt.subplots()\n\n # create a rectangle instance\n In [263]: rect = matplotlib.patches.Rectangle( (1,1), width=5, height=12)\n\n # by default the axes instance is None\n In [264]: print(rect.get_axes())\n None\n\n # and the transformation instance is set to the \"identity transform\"\n In [265]: print(rect.get_transform())\n \n\n # now we add the Rectangle to the Axes\n In [266]: ax.add_patch(rect)\n\n # and notice that the ax.add_patch method has set the axes\n # instance\n In [267]: print(rect.get_axes())\n Axes(0.125,0.1;0.775x0.8)\n\n # and the transformation has been set too\n In [268]: print(rect.get_transform())\n \n\n # the default axes transformation is ax.transData\n In [269]: print(ax.transData)\n \n\n # notice that the xlimits of the Axes have not been changed\n In [270]: print(ax.get_xlim())\n (0.0, 1.0)\n\n # but the data limits have been updated to encompass the rectangle\n In [271]: print(ax.dataLim.bounds)\n (1.0, 1.0, 5.0, 12.0)\n\n # we can manually invoke the auto-scaling machinery\n In [272]: ax.autoscale_view()\n\n # and now the xlim are updated to encompass the rectangle\n In [273]: print(ax.get_xlim())\n (1.0, 6.0)\n\n # we have to manually force a figure draw\n In [274]: ax.figure.canvas.draw()\n\n\nThere are many, many ``Axes`` helper methods for creating primitive\n``Artists`` and adding them to their respective containers. The table\nbelow summarizes a small sampling of them, the kinds of ``Artist`` they\ncreate, and where they store them\n\n============================== ==================== =======================\nHelper method Artist Container\n============================== ==================== =======================\nax.annotate - text annotations Annotate ax.texts\nax.bar - bar charts Rectangle ax.patches\nax.errorbar - error bar plots Line2D and Rectangle ax.lines and ax.patches\nax.fill - shared area Polygon ax.patches\nax.hist - histograms Rectangle ax.patches\nax.imshow - image data AxesImage ax.images\nax.legend - axes legends Legend ax.legends\nax.plot - xy plots Line2D ax.lines\nax.scatter - scatter charts PolygonCollection ax.collections\nax.text - text Text ax.texts\n============================== ==================== =======================\n\n\nIn addition to all of these ``Artists``, the ``Axes`` contains two\nimportant ``Artist`` containers: the :class:`~matplotlib.axis.XAxis`\nand :class:`~matplotlib.axis.YAxis`, which handle the drawing of the\nticks and labels. These are stored as instance variables\n:attr:`~matplotlib.axes.Axes.xaxis` and\n:attr:`~matplotlib.axes.Axes.yaxis`. The ``XAxis`` and ``YAxis``\ncontainers will be detailed below, but note that the ``Axes`` contains\nmany helper methods which forward calls on to the\n:class:`~matplotlib.axis.Axis` instances so you often do not need to\nwork with them directly unless you want to. For example, you can set\nthe font color of the ``XAxis`` ticklabels using the ``Axes`` helper\nmethod::\n\n for label in ax.get_xticklabels():\n label.set_color('orange')\n\nBelow is a summary of the Artists that the Axes contains\n\n============== ======================================\nAxes attribute Description\n============== ======================================\nartists A list of Artist instances\npatch Rectangle instance for Axes background\ncollections A list of Collection instances\nimages A list of AxesImage\nlegends A list of Legend instances\nlines A list of Line2D instances\npatches A list of Patch instances\ntexts A list of Text instances\nxaxis matplotlib.axis.XAxis instance\nyaxis matplotlib.axis.YAxis instance\n============== ======================================\n\n\nAxis containers\n---------------\n\nThe :class:`matplotlib.axis.Axis` instances handle the drawing of the\ntick lines, the grid lines, the tick labels and the axis label. You\ncan configure the left and right ticks separately for the y-axis, and\nthe upper and lower ticks separately for the x-axis. The ``Axis``\nalso stores the data and view intervals used in auto-scaling, panning\nand zooming, as well as the :class:`~matplotlib.ticker.Locator` and\n:class:`~matplotlib.ticker.Formatter` instances which control where\nthe ticks are placed and how they are represented as strings.\n\nEach ``Axis`` object contains a :attr:`~matplotlib.axis.Axis.label` attribute\n(this is what :mod:`~matplotlib.pyplot` modifies in calls to\n:func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.ylabel`) as\nwell as a list of major and minor ticks. The ticks are\n:class:`~matplotlib.axis.XTick` and :class:`~matplotlib.axis.YTick` instances,\nwhich contain the actual line and text primitives that render the ticks and\nticklabels. Because the ticks are dynamically created as needed (e.g., when\npanning and zooming), you should access the lists of major and minor ticks\nthrough their accessor methods :meth:`~matplotlib.axis.Axis.get_major_ticks`\nand :meth:`~matplotlib.axis.Axis.get_minor_ticks`. Although the ticks contain\nall the primitives and will be covered below, ``Axis`` instances have accessor\nmethods that return the tick lines, tick labels, tick locations etc.:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\naxis = ax.xaxis\naxis.get_ticklocs()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklabels()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "note there are twice as many ticklines as labels because by\n default there are tick lines at the top and bottom but only tick\n labels below the xaxis; this can be customized\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklines()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "by default you get the major ticks back\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklines()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "but you can also ask for the minor ticks\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "axis.get_ticklines(minor=True)\n\n# Here is a summary of some of the useful accessor methods of the ``Axis``\n# (these have corresponding setters where useful, such as\n# set_major_formatter)\n#\n# ====================== =========================================================\n# Accessor method Description\n# ====================== =========================================================\n# get_scale The scale of the axis, e.g., 'log' or 'linear'\n# get_view_interval The interval instance of the axis view limits\n# get_data_interval The interval instance of the axis data limits\n# get_gridlines A list of grid lines for the Axis\n# get_label The axis label - a Text instance\n# get_ticklabels A list of Text instances - keyword minor=True|False\n# get_ticklines A list of Line2D instances - keyword minor=True|False\n# get_ticklocs A list of Tick locations - keyword minor=True|False\n# get_major_locator The matplotlib.ticker.Locator instance for major ticks\n# get_major_formatter The matplotlib.ticker.Formatter instance for major ticks\n# get_minor_locator The matplotlib.ticker.Locator instance for minor ticks\n# get_minor_formatter The matplotlib.ticker.Formatter instance for minor ticks\n# get_major_ticks A list of Tick instances for major ticks\n# get_minor_ticks A list of Tick instances for minor ticks\n# grid Turn the grid on or off for the major or minor ticks\n# ====================== =========================================================\n#\n# Here is an example, not recommended for its beauty, which customizes\n# the axes and tick properties\n\n# plt.figure creates a matplotlib.figure.Figure instance\nfig = plt.figure()\nrect = fig.patch # a rectangle instance\nrect.set_facecolor('lightgoldenrodyellow')\n\nax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4])\nrect = ax1.patch\nrect.set_facecolor('lightslategray')\n\n\nfor label in ax1.xaxis.get_ticklabels():\n # label is a Text instance\n label.set_color('red')\n label.set_rotation(45)\n label.set_fontsize(16)\n\nfor line in ax1.yaxis.get_ticklines():\n # line is a Line2D instance\n line.set_color('green')\n line.set_markersize(25)\n line.set_markeredgewidth(3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nTick containers\n---------------\n\nThe :class:`matplotlib.axis.Tick` is the final container object in our\ndescent from the :class:`~matplotlib.figure.Figure` to the\n:class:`~matplotlib.axes.Axes` to the :class:`~matplotlib.axis.Axis`\nto the :class:`~matplotlib.axis.Tick`. The ``Tick`` contains the tick\nand grid line instances, as well as the label instances for the upper\nand lower ticks. Each of these is accessible directly as an attribute\nof the ``Tick``.\n\n============== ==========================================================\nTick attribute Description\n============== ==========================================================\ntick1line Line2D instance\ntick2line Line2D instance\ngridline Line2D instance\nlabel1 Text instance\nlabel2 Text instance\n============== ==========================================================\n\nHere is an example which sets the formatter for the right side ticks with\ndollar signs and colors them green on the right side of the yaxis\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.ticker as ticker\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\nax.plot(100*np.random.rand(20))\n\nformatter = ticker.FormatStrFormatter('$%1.2f')\nax.yaxis.set_major_formatter(formatter)\n\nfor tick in ax.yaxis.get_major_ticks():\n tick.label1.set_visible(False)\n tick.label2.set_visible(True)\n tick.label2.set_color('green')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c330526567c2224e452c05252d9b1884/color_by_yvalue.py b/_downloads/c330526567c2224e452c05252d9b1884/color_by_yvalue.py deleted file mode 120000 index 8263a33ca67..00000000000 --- a/_downloads/c330526567c2224e452c05252d9b1884/color_by_yvalue.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c330526567c2224e452c05252d9b1884/color_by_yvalue.py \ No newline at end of file diff --git a/_downloads/c336e48c6e2b6975e194fdec20095167/tick_labels_from_values.py b/_downloads/c336e48c6e2b6975e194fdec20095167/tick_labels_from_values.py deleted file mode 100644 index c504796b7a1..00000000000 --- a/_downloads/c336e48c6e2b6975e194fdec20095167/tick_labels_from_values.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -========================================= -Setting tick labels from a list of values -========================================= - -Using ax.set_xticks causes the tick labels to be set on the currently -chosen ticks. However, you may want to allow matplotlib to dynamically -choose the number of ticks and their spacing. - -In this case it may be better to determine the tick label from the -value at the tick. The following example shows how to do this. - -NB: The MaxNLocator is used here to ensure that the tick values -take integer values. - -""" - -import matplotlib.pyplot as plt -from matplotlib.ticker import FuncFormatter, MaxNLocator -fig, ax = plt.subplots() -xs = range(26) -ys = range(26) -labels = list('abcdefghijklmnopqrstuvwxyz') - - -def format_fn(tick_val, tick_pos): - if int(tick_val) in xs: - return labels[int(tick_val)] - else: - return '' - - -ax.xaxis.set_major_formatter(FuncFormatter(format_fn)) -ax.xaxis.set_major_locator(MaxNLocator(integer=True)) -ax.plot(xs, ys) -plt.show() diff --git a/_downloads/c341f7cedef391f799dd2cb799699c4b/histogram_multihist.py b/_downloads/c341f7cedef391f799dd2cb799699c4b/histogram_multihist.py deleted file mode 120000 index 15741d2a988..00000000000 --- a/_downloads/c341f7cedef391f799dd2cb799699c4b/histogram_multihist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c341f7cedef391f799dd2cb799699c4b/histogram_multihist.py \ No newline at end of file diff --git a/_downloads/c34d858fb980470bff18c486e29c9f2f/polygon_selector_demo.py b/_downloads/c34d858fb980470bff18c486e29c9f2f/polygon_selector_demo.py deleted file mode 120000 index 1c9c97578f4..00000000000 --- a/_downloads/c34d858fb980470bff18c486e29c9f2f/polygon_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c34d858fb980470bff18c486e29c9f2f/polygon_selector_demo.py \ No newline at end of file diff --git a/_downloads/c3532baa3d4340617f8af0ed9d394c97/zorder_demo.py b/_downloads/c3532baa3d4340617f8af0ed9d394c97/zorder_demo.py deleted file mode 100644 index e13df715831..00000000000 --- a/_downloads/c3532baa3d4340617f8af0ed9d394c97/zorder_demo.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -=========== -Zorder Demo -=========== - -The default drawing order for axes is patches, lines, text. This -order is determined by the zorder attribute. The following defaults -are set - -======================= ======= -Artist Z-order -======================= ======= -Patch / PatchCollection 1 -Line2D / LineCollection 2 -Text 3 -======================= ======= - -You can change the order for individual artists by setting the zorder. Any -individual plot() call can set a value for the zorder of that particular item. - -In the fist subplot below, the lines are drawn above the patch -collection from the scatter, which is the default. - -In the subplot below, the order is reversed. - -The second figure shows how to control the zorder of individual lines. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -x = np.random.random(20) -y = np.random.random(20) - -############################################################################### -# Lines on top of scatter - -plt.figure() -plt.subplot(211) -plt.plot(x, y, 'C3', lw=3) -plt.scatter(x, y, s=120) -plt.title('Lines on top of dots') - -# Scatter plot on top of lines -plt.subplot(212) -plt.plot(x, y, 'C3', zorder=1, lw=3) -plt.scatter(x, y, s=120, zorder=2) -plt.title('Dots on top of lines') -plt.tight_layout() - -############################################################################### -# A new figure, with individually ordered items - -x = np.linspace(0, 2*np.pi, 100) -plt.rcParams['lines.linewidth'] = 10 -plt.figure() -plt.plot(x, np.sin(x), label='zorder=10', zorder=10) # on top -plt.plot(x, np.sin(1.1*x), label='zorder=1', zorder=1) # bottom -plt.plot(x, np.sin(1.2*x), label='zorder=3', zorder=3) -plt.axhline(0, label='zorder=2', color='grey', zorder=2) -plt.title('Custom order of elements') -l = plt.legend(loc='upper right') -l.set_zorder(20) # put the legend on top -plt.show() diff --git a/_downloads/c3549a960f949135fab7fae6e7db2e7e/plot.ipynb b/_downloads/c3549a960f949135fab7fae6e7db2e7e/plot.ipynb deleted file mode 120000 index 40bae61cff9..00000000000 --- a/_downloads/c3549a960f949135fab7fae6e7db2e7e/plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c3549a960f949135fab7fae6e7db2e7e/plot.ipynb \ No newline at end of file diff --git a/_downloads/c356d23bfd0c6d95dff98ff76590ebd8/ellipse_collection.py b/_downloads/c356d23bfd0c6d95dff98ff76590ebd8/ellipse_collection.py deleted file mode 100644 index 9b7a71f5564..00000000000 --- a/_downloads/c356d23bfd0c6d95dff98ff76590ebd8/ellipse_collection.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================== -Ellipse Collection -================== - -Drawing a collection of ellipses. While this would equally be possible using -a `~.collections.EllipseCollection` or `~.collections.PathCollection`, the use -of an `~.collections.EllipseCollection` allows for much shorter code. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.collections import EllipseCollection - -x = np.arange(10) -y = np.arange(15) -X, Y = np.meshgrid(x, y) - -XY = np.column_stack((X.ravel(), Y.ravel())) - -ww = X / 10.0 -hh = Y / 15.0 -aa = X * 9 - - -fig, ax = plt.subplots() - -ec = EllipseCollection(ww, hh, aa, units='x', offsets=XY, - transOffset=ax.transData) -ec.set_array((X + Y).ravel()) -ax.add_collection(ec) -ax.autoscale_view() -ax.set_xlabel('X') -ax.set_ylabel('y') -cbar = plt.colorbar(ec) -cbar.set_label('X+Y') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.collections -matplotlib.collections.EllipseCollection -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.autoscale_view -matplotlib.cm.ScalarMappable.set_array diff --git a/_downloads/c360a716073f704d3f033e7b50bd7b86/demo_ticklabel_alignment.py b/_downloads/c360a716073f704d3f033e7b50bd7b86/demo_ticklabel_alignment.py deleted file mode 100644 index 452f88e0046..00000000000 --- a/_downloads/c360a716073f704d3f033e7b50bd7b86/demo_ticklabel_alignment.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -======================== -Demo Ticklabel Alignment -======================== - -""" - - -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_subplot(ax) - - ax.set_yticks([0.2, 0.8]) - ax.set_yticklabels(["short", "loooong"]) - ax.set_xticks([0.2, 0.8]) - ax.set_xticklabels([r"$\frac{1}{2}\pi$", r"$\pi$"]) - - return ax - - -fig = plt.figure(figsize=(3, 5)) -fig.subplots_adjust(left=0.5, hspace=0.7) - -ax = setup_axes(fig, 311) -ax.set_ylabel("ha=right") -ax.set_xlabel("va=baseline") - -ax = setup_axes(fig, 312) -ax.axis["left"].major_ticklabels.set_ha("center") -ax.axis["bottom"].major_ticklabels.set_va("top") -ax.set_ylabel("ha=center") -ax.set_xlabel("va=top") - -ax = setup_axes(fig, 313) -ax.axis["left"].major_ticklabels.set_ha("left") -ax.axis["bottom"].major_ticklabels.set_va("bottom") -ax.set_ylabel("ha=left") -ax.set_xlabel("va=bottom") - -plt.show() diff --git a/_downloads/c365c5314e0a8fde3a3de8e33548e2ce/mathtext_asarray.ipynb b/_downloads/c365c5314e0a8fde3a3de8e33548e2ce/mathtext_asarray.ipynb deleted file mode 120000 index ed1ebe29702..00000000000 --- a/_downloads/c365c5314e0a8fde3a3de8e33548e2ce/mathtext_asarray.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c365c5314e0a8fde3a3de8e33548e2ce/mathtext_asarray.ipynb \ No newline at end of file diff --git a/_downloads/c36875f41c37fc7e0ac6c0c0109631c9/simple_axisline.ipynb b/_downloads/c36875f41c37fc7e0ac6c0c0109631c9/simple_axisline.ipynb deleted file mode 120000 index 38643f1a57f..00000000000 --- a/_downloads/c36875f41c37fc7e0ac6c0c0109631c9/simple_axisline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c36875f41c37fc7e0ac6c0c0109631c9/simple_axisline.ipynb \ No newline at end of file diff --git a/_downloads/c37940229ce6f2cb813628c028659085/parasite_simple.py b/_downloads/c37940229ce6f2cb813628c028659085/parasite_simple.py deleted file mode 120000 index f9803140ad0..00000000000 --- a/_downloads/c37940229ce6f2cb813628c028659085/parasite_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c37940229ce6f2cb813628c028659085/parasite_simple.py \ No newline at end of file diff --git a/_downloads/c37a3dc9c1341b03e23844bd564da1c3/multiline.ipynb b/_downloads/c37a3dc9c1341b03e23844bd564da1c3/multiline.ipynb deleted file mode 120000 index a30229eecba..00000000000 --- a/_downloads/c37a3dc9c1341b03e23844bd564da1c3/multiline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c37a3dc9c1341b03e23844bd564da1c3/multiline.ipynb \ No newline at end of file diff --git a/_downloads/c38fc885f5ec2583e789cf0a41d71c72/simple_axisline2.py b/_downloads/c38fc885f5ec2583e789cf0a41d71c72/simple_axisline2.py deleted file mode 100644 index c0523f33da5..00000000000 --- a/_downloads/c38fc885f5ec2583e789cf0a41d71c72/simple_axisline2.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -================ -Simple Axisline2 -================ - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axisartist.axislines import SubplotZero -import numpy as np - -fig = plt.figure(figsize=(4, 3)) - -# a subplot with two additional axis, "xzero" and "yzero". "xzero" is -# y=0 line, and "yzero" is x=0 line. -ax = SubplotZero(fig, 1, 1, 1) -fig.add_subplot(ax) - -# make xzero axis (horizontal axis line through y=0) visible. -ax.axis["xzero"].set_visible(True) -ax.axis["xzero"].label.set_text("Axis Zero") - -# make other axis (bottom, top, right) invisible. -for n in ["bottom", "top", "right"]: - ax.axis[n].set_visible(False) - -xx = np.arange(0, 2*np.pi, 0.01) -ax.plot(xx, np.sin(xx)) - -plt.show() diff --git a/_downloads/c39ba736ecfdb988e5a841df397cbb93/demo_axes_grid.py b/_downloads/c39ba736ecfdb988e5a841df397cbb93/demo_axes_grid.py deleted file mode 100644 index b21b288c355..00000000000 --- a/_downloads/c39ba736ecfdb988e5a841df397cbb93/demo_axes_grid.py +++ /dev/null @@ -1,130 +0,0 @@ -""" -============== -Demo Axes Grid -============== - -Grid of 2x2 images with single or own colorbar. -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def demo_simple_grid(fig): - """ - A grid of 2x2 images with 0.05 inch pad between images and only - the lower-left axes is labeled. - """ - grid = ImageGrid(fig, 141, # similar to subplot(141) - nrows_ncols=(2, 2), - axes_pad=0.05, - label_mode="1", - ) - - Z, extent = get_demo_image() - for ax in grid: - im = ax.imshow(Z, extent=extent, interpolation="nearest") - - # This only affects axes in first column and second row as share_all = - # False. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_grid_with_single_cbar(fig): - """ - A grid of 2x2 images with a single colorbar - """ - grid = ImageGrid(fig, 142, # similar to subplot(142) - nrows_ncols=(2, 2), - axes_pad=0.0, - share_all=True, - label_mode="L", - cbar_location="top", - cbar_mode="single", - ) - - Z, extent = get_demo_image() - for ax in grid: - im = ax.imshow(Z, extent=extent, interpolation="nearest") - grid.cbar_axes[0].colorbar(im) - - for cax in grid.cbar_axes: - cax.toggle_label(False) - - # This affects all axes as share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_grid_with_each_cbar(fig): - """ - A grid of 2x2 images. Each image has its own colorbar. - """ - grid = ImageGrid(fig, 143, # similar to subplot(143) - nrows_ncols=(2, 2), - axes_pad=0.1, - label_mode="1", - share_all=True, - cbar_location="top", - cbar_mode="each", - cbar_size="7%", - cbar_pad="2%", - ) - Z, extent = get_demo_image() - for ax, cax in zip(grid, grid.cbar_axes): - im = ax.imshow(Z, extent=extent, interpolation="nearest") - cax.colorbar(im) - cax.toggle_label(False) - - # This affects all axes because we set share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_grid_with_each_cbar_labelled(fig): - """ - A grid of 2x2 images. Each image has its own colorbar. - """ - grid = ImageGrid(fig, 144, # similar to subplot(144) - nrows_ncols=(2, 2), - axes_pad=(0.45, 0.15), - label_mode="1", - share_all=True, - cbar_location="right", - cbar_mode="each", - cbar_size="7%", - cbar_pad="2%", - ) - Z, extent = get_demo_image() - - # Use a different colorbar range every time - limits = ((0, 1), (-2, 2), (-1.7, 1.4), (-1.5, 1)) - for ax, cax, vlim in zip(grid, grid.cbar_axes, limits): - im = ax.imshow(Z, extent=extent, interpolation="nearest", - vmin=vlim[0], vmax=vlim[1]) - cax.colorbar(im) - cax.set_yticks((vlim[0], vlim[1])) - - # This affects all axes because we set share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -fig = plt.figure(figsize=(10.5, 2.5)) -fig.subplots_adjust(left=0.05, right=0.95) - -demo_simple_grid(fig) -demo_grid_with_single_cbar(fig) -demo_grid_with_each_cbar(fig) -demo_grid_with_each_cbar_labelled(fig) - -plt.show() diff --git a/_downloads/c39bc4cb030756253ed83562dccaebe8/scatter_piecharts.ipynb b/_downloads/c39bc4cb030756253ed83562dccaebe8/scatter_piecharts.ipynb deleted file mode 120000 index c6b8bb80182..00000000000 --- a/_downloads/c39bc4cb030756253ed83562dccaebe8/scatter_piecharts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c39bc4cb030756253ed83562dccaebe8/scatter_piecharts.ipynb \ No newline at end of file diff --git a/_downloads/c39f9f8d3e9365cef90ba58badb9c0be/arrow_guide.py b/_downloads/c39f9f8d3e9365cef90ba58badb9c0be/arrow_guide.py deleted file mode 120000 index 61ff5c0572e..00000000000 --- a/_downloads/c39f9f8d3e9365cef90ba58badb9c0be/arrow_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c39f9f8d3e9365cef90ba58badb9c0be/arrow_guide.py \ No newline at end of file diff --git a/_downloads/c3a0195e36f151c3600a562d4f5bb2cc/usetex_demo.ipynb b/_downloads/c3a0195e36f151c3600a562d4f5bb2cc/usetex_demo.ipynb deleted file mode 100644 index 8991a4e800f..00000000000 --- a/_downloads/c3a0195e36f151c3600a562d4f5bb2cc/usetex_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Usetex Demo\n\n\nShows how to use latex in a plot.\n\nAlso refer to the :doc:`/tutorials/text/usetex` guide.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nplt.rc('text', usetex=True)\n\n# interface tracking profiles\nN = 500\ndelta = 0.6\nX = np.linspace(-1, 1, N)\nplt.plot(X, (1 - np.tanh(4 * X / delta)) / 2, # phase field tanh profiles\n X, (1.4 + np.tanh(4 * X / delta)) / 4, \"C2\", # composition profile\n X, X < 0, 'k--') # sharp interface\n\n# legend\nplt.legend(('phase field', 'level set', 'sharp interface'),\n shadow=True, loc=(0.01, 0.48), handlelength=1.5, fontsize=16)\n\n# the arrow\nplt.annotate(\"\", xy=(-delta / 2., 0.1), xytext=(delta / 2., 0.1),\n arrowprops=dict(arrowstyle=\"<->\", connectionstyle=\"arc3\"))\nplt.text(0, 0.1, r'$\\delta$',\n {'color': 'black', 'fontsize': 24, 'ha': 'center', 'va': 'center',\n 'bbox': dict(boxstyle=\"round\", fc=\"white\", ec=\"black\", pad=0.2)})\n\n# Use tex in labels\nplt.xticks((-1, 0, 1), ('$-1$', r'$\\pm 0$', '$+1$'), color='k', size=20)\n\n# Left Y-axis labels, combine math mode and text mode\nplt.ylabel(r'\\bf{phase field} $\\phi$', {'color': 'C0', 'fontsize': 20})\nplt.yticks((0, 0.5, 1), (r'\\bf{0}', r'\\bf{.5}', r'\\bf{1}'), color='k', size=20)\n\n# Right Y-axis labels\nplt.text(1.02, 0.5, r\"\\bf{level set} $\\phi$\", {'color': 'C2', 'fontsize': 20},\n horizontalalignment='left',\n verticalalignment='center',\n rotation=90,\n clip_on=False,\n transform=plt.gca().transAxes)\n\n# Use multiline environment inside a `text`.\n# level set equations\neq1 = r\"\\begin{eqnarray*}\" + \\\n r\"|\\nabla\\phi| &=& 1,\\\\\" + \\\n r\"\\frac{\\partial \\phi}{\\partial t} + U|\\nabla \\phi| &=& 0 \" + \\\n r\"\\end{eqnarray*}\"\nplt.text(1, 0.9, eq1, {'color': 'C2', 'fontsize': 18}, va=\"top\", ha=\"right\")\n\n# phase field equations\neq2 = r'\\begin{eqnarray*}' + \\\n r'\\mathcal{F} &=& \\int f\\left( \\phi, c \\right) dV, \\\\ ' + \\\n r'\\frac{ \\partial \\phi } { \\partial t } &=& -M_{ \\phi } ' + \\\n r'\\frac{ \\delta \\mathcal{F} } { \\delta \\phi }' + \\\n r'\\end{eqnarray*}'\nplt.text(0.18, 0.18, eq2, {'color': 'C0', 'fontsize': 16})\n\nplt.text(-1, .30, r'gamma: $\\gamma$', {'color': 'r', 'fontsize': 20})\nplt.text(-1, .18, r'Omega: $\\Omega$', {'color': 'b', 'fontsize': 20})\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c3a117616d73e1acd761286e559236c2/ggplot.py b/_downloads/c3a117616d73e1acd761286e559236c2/ggplot.py deleted file mode 120000 index ae45183bbec..00000000000 --- a/_downloads/c3a117616d73e1acd761286e559236c2/ggplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c3a117616d73e1acd761286e559236c2/ggplot.py \ No newline at end of file diff --git a/_downloads/c3a7a3934d03c9510b11a390ddf60a5a/whats_new_99_mplot3d.ipynb b/_downloads/c3a7a3934d03c9510b11a390ddf60a5a/whats_new_99_mplot3d.ipynb deleted file mode 100644 index c44e584b3b3..00000000000 --- a/_downloads/c3a7a3934d03c9510b11a390ddf60a5a/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================\nWhats New 0.99 Mplot3d\n======================\n\nCreate a 3D surface plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom mpl_toolkits.mplot3d import Axes3D\n\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\nfig = plt.figure()\nax = Axes3D(fig)\nax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits\nmpl_toolkits.mplot3d.Axes3D\nmpl_toolkits.mplot3d.Axes3D.plot_surface" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c3ab6eab85b3dc9eed808f97b73ae2d6/annotate_simple02.ipynb b/_downloads/c3ab6eab85b3dc9eed808f97b73ae2d6/annotate_simple02.ipynb deleted file mode 120000 index bd945168c6b..00000000000 --- a/_downloads/c3ab6eab85b3dc9eed808f97b73ae2d6/annotate_simple02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c3ab6eab85b3dc9eed808f97b73ae2d6/annotate_simple02.ipynb \ No newline at end of file diff --git a/_downloads/c3b2615a5e307f96d8ab51358ffce725/errorbar_features.ipynb b/_downloads/c3b2615a5e307f96d8ab51358ffce725/errorbar_features.ipynb deleted file mode 120000 index 2143559a113..00000000000 --- a/_downloads/c3b2615a5e307f96d8ab51358ffce725/errorbar_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c3b2615a5e307f96d8ab51358ffce725/errorbar_features.ipynb \ No newline at end of file diff --git a/_downloads/c3b2d0e3ba42c06aa3f8b761123d9027/contour_demo.py b/_downloads/c3b2d0e3ba42c06aa3f8b761123d9027/contour_demo.py deleted file mode 120000 index d207c0a3001..00000000000 --- a/_downloads/c3b2d0e3ba42c06aa3f8b761123d9027/contour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c3b2d0e3ba42c06aa3f8b761123d9027/contour_demo.py \ No newline at end of file diff --git a/_downloads/c3bf1e39e3cfddea7e1fe616b2614b90/surface3d_radial.ipynb b/_downloads/c3bf1e39e3cfddea7e1fe616b2614b90/surface3d_radial.ipynb deleted file mode 120000 index 7ab45445ae4..00000000000 --- a/_downloads/c3bf1e39e3cfddea7e1fe616b2614b90/surface3d_radial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c3bf1e39e3cfddea7e1fe616b2614b90/surface3d_radial.ipynb \ No newline at end of file diff --git a/_downloads/c3c0a2e8bc0f0e745f40ac4baeed4790/fig_axes_labels_simple.py b/_downloads/c3c0a2e8bc0f0e745f40ac4baeed4790/fig_axes_labels_simple.py deleted file mode 120000 index 613ed5508d6..00000000000 --- a/_downloads/c3c0a2e8bc0f0e745f40ac4baeed4790/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c3c0a2e8bc0f0e745f40ac4baeed4790/fig_axes_labels_simple.py \ No newline at end of file diff --git a/_downloads/c3c222c8249a89b71ba298e74bec20eb/voxels.py b/_downloads/c3c222c8249a89b71ba298e74bec20eb/voxels.py deleted file mode 100644 index 4ba96fff6c6..00000000000 --- a/_downloads/c3c222c8249a89b71ba298e74bec20eb/voxels.py +++ /dev/null @@ -1,38 +0,0 @@ -''' -========================== -3D voxel / volumetric plot -========================== - -Demonstrates plotting 3D volumetric objects with ``ax.voxels`` -''' - -import matplotlib.pyplot as plt -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -# prepare some coordinates -x, y, z = np.indices((8, 8, 8)) - -# draw cuboids in the top left and bottom right corners, and a link between them -cube1 = (x < 3) & (y < 3) & (z < 3) -cube2 = (x >= 5) & (y >= 5) & (z >= 5) -link = abs(x - y) + abs(y - z) + abs(z - x) <= 2 - -# combine the objects into a single boolean array -voxels = cube1 | cube2 | link - -# set the colors of each object -colors = np.empty(voxels.shape, dtype=object) -colors[link] = 'red' -colors[cube1] = 'blue' -colors[cube2] = 'green' - -# and plot everything -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(voxels, facecolors=colors, edgecolor='k') - -plt.show() diff --git a/_downloads/c3c73461cf0b04556155ef4edcf256c2/scalarformatter.py b/_downloads/c3c73461cf0b04556155ef4edcf256c2/scalarformatter.py deleted file mode 100644 index b17bc345e53..00000000000 --- a/_downloads/c3c73461cf0b04556155ef4edcf256c2/scalarformatter.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -========================================= -Tick formatting using the ScalarFormatter -========================================= - -The example shows use of ScalarFormatter with different settings. - -Example 1 : Default - -Example 2 : With no Numerical Offset - -Example 3 : With Mathtext -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.ticker import ScalarFormatter - -############################################################################### -# Example 1 - -x = np.arange(0, 1, .01) -fig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6)) -fig.text(0.5, 0.975, 'The new formatter, default settings', - horizontalalignment='center', - verticalalignment='top') - -ax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5) -ax1.xaxis.set_major_formatter(ScalarFormatter()) -ax1.yaxis.set_major_formatter(ScalarFormatter()) - -ax2.plot(x * 1e5, x * 1e-4) -ax2.xaxis.set_major_formatter(ScalarFormatter()) -ax2.yaxis.set_major_formatter(ScalarFormatter()) - -ax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10) -ax3.xaxis.set_major_formatter(ScalarFormatter()) -ax3.yaxis.set_major_formatter(ScalarFormatter()) - -ax4.plot(-x * 1e5, -x * 1e-4) -ax4.xaxis.set_major_formatter(ScalarFormatter()) -ax4.yaxis.set_major_formatter(ScalarFormatter()) - -fig.subplots_adjust(wspace=0.7, hspace=0.6) - -############################################################################### -# Example 2 - -x = np.arange(0, 1, .01) -fig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6)) -fig.text(0.5, 0.975, 'The new formatter, no numerical offset', - horizontalalignment='center', - verticalalignment='top') - -ax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5) -ax1.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax1.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -ax2.plot(x * 1e5, x * 1e-4) -ax2.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax2.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -ax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10) -ax3.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax3.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -ax4.plot(-x * 1e5, -x * 1e-4) -ax4.xaxis.set_major_formatter(ScalarFormatter(useOffset=False)) -ax4.yaxis.set_major_formatter(ScalarFormatter(useOffset=False)) - -fig.subplots_adjust(wspace=0.7, hspace=0.6) - -############################################################################### -# Example 3 - -x = np.arange(0, 1, .01) -fig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2, figsize=(6, 6)) -fig.text(0.5, 0.975, 'The new formatter, with mathtext', - horizontalalignment='center', - verticalalignment='top') - -ax1.plot(x * 1e5 + 1e10, x * 1e-10 + 1e-5) -ax1.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax1.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -ax2.plot(x * 1e5, x * 1e-4) -ax2.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax2.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -ax3.plot(-x * 1e5 - 1e10, -x * 1e-5 - 1e-10) -ax3.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax3.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -ax4.plot(-x * 1e5, -x * 1e-4) -ax4.xaxis.set_major_formatter(ScalarFormatter(useMathText=True)) -ax4.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) - -fig.subplots_adjust(wspace=0.7, hspace=0.6) - -plt.show() diff --git a/_downloads/c3cb1ad8b405b2b0aa3160af6c393ab9/axes_margins.py b/_downloads/c3cb1ad8b405b2b0aa3160af6c393ab9/axes_margins.py deleted file mode 100644 index 4d553809633..00000000000 --- a/_downloads/c3cb1ad8b405b2b0aa3160af6c393ab9/axes_margins.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -===================================================================== -Zooming in and out using Axes.margins and the subject of "stickiness" -===================================================================== - -The first figure in this example shows how to zoom in and out of a -plot using `~.Axes.margins` instead of `~.Axes.set_xlim` and -`~.Axes.set_ylim`. The second figure demonstrates the concept of -edge "stickiness" introduced by certain methods and artists and how -to effectively work around that. - -""" - -import numpy as np -import matplotlib.pyplot as plt - - -def f(t): - return np.exp(-t) * np.cos(2*np.pi*t) - - -t1 = np.arange(0.0, 3.0, 0.01) - -ax1 = plt.subplot(212) -ax1.margins(0.05) # Default margin is 0.05, value 0 means fit -ax1.plot(t1, f(t1)) - -ax2 = plt.subplot(221) -ax2.margins(2, 2) # Values >0.0 zoom out -ax2.plot(t1, f(t1)) -ax2.set_title('Zoomed out') - -ax3 = plt.subplot(222) -ax3.margins(x=0, y=-0.25) # Values in (-0.5, 0.0) zooms in to center -ax3.plot(t1, f(t1)) -ax3.set_title('Zoomed in') - -plt.show() - - -############################################################################# -# -# On the "stickiness" of certain plotting methods -# """"""""""""""""""""""""""""""""""""""""""""""" -# -# Some plotting functions make the axis limits "sticky" or immune to the will -# of the `~.Axes.margins` methods. For instance, `~.Axes.imshow` and -# `~.Axes.pcolor` expect the user to want the limits to be tight around the -# pixels shown in the plot. If this behavior is not desired, you need to set -# `~.Axes.use_sticky_edges` to `False`. Consider the following example: - -y, x = np.mgrid[:5, 1:6] -poly_coords = [ - (0.25, 2.75), (3.25, 2.75), - (2.25, 0.75), (0.25, 0.75) -] -fig, (ax1, ax2) = plt.subplots(ncols=2) - -# Here we set the stickiness of the axes object... -# ax1 we'll leave as the default, which uses sticky edges -# and we'll turn off stickiness for ax2 -ax2.use_sticky_edges = False - -for ax, status in zip((ax1, ax2), ('Is', 'Is Not')): - cells = ax.pcolor(x, y, x+y, cmap='inferno') # sticky - ax.add_patch( - plt.Polygon(poly_coords, color='forestgreen', alpha=0.5) - ) # not sticky - ax.margins(x=0.1, y=0.05) - ax.set_aspect('equal') - ax.set_title('{} Sticky'.format(status)) - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.margins -matplotlib.pyplot.margins -matplotlib.axes.Axes.use_sticky_edges -matplotlib.axes.Axes.pcolor -matplotlib.pyplot.pcolor -matplotlib.pyplot.Polygon diff --git a/_downloads/c3cd3601e9a93228b90e652aa8418135/markevery_prop_cycle.py b/_downloads/c3cd3601e9a93228b90e652aa8418135/markevery_prop_cycle.py deleted file mode 120000 index 872f0c599c6..00000000000 --- a/_downloads/c3cd3601e9a93228b90e652aa8418135/markevery_prop_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c3cd3601e9a93228b90e652aa8418135/markevery_prop_cycle.py \ No newline at end of file diff --git a/_downloads/c3db7b29c199e7a29f8569c9773c7f6c/contour_label_demo.py b/_downloads/c3db7b29c199e7a29f8569c9773c7f6c/contour_label_demo.py deleted file mode 120000 index 8bf6ca0e04f..00000000000 --- a/_downloads/c3db7b29c199e7a29f8569c9773c7f6c/contour_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c3db7b29c199e7a29f8569c9773c7f6c/contour_label_demo.py \ No newline at end of file diff --git a/_downloads/c3e5479f09e3d7ae0be8430359f8b335/pcolormesh_levels.ipynb b/_downloads/c3e5479f09e3d7ae0be8430359f8b335/pcolormesh_levels.ipynb deleted file mode 100644 index 00cf5f50bc0..00000000000 --- a/_downloads/c3e5479f09e3d7ae0be8430359f8b335/pcolormesh_levels.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# pcolormesh\n\n\nShows how to combine Normalization and Colormap instances to draw\n\"levels\" in :meth:`~.axes.Axes.pcolor`, :meth:`~.axes.Axes.pcolormesh`\nand :meth:`~.axes.Axes.imshow` type plots in a similar\nway to the levels keyword argument to contour/contourf.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import BoundaryNorm\nfrom matplotlib.ticker import MaxNLocator\nimport numpy as np\n\n\n# make these smaller to increase the resolution\ndx, dy = 0.05, 0.05\n\n# generate 2 2d grids for the x & y bounds\ny, x = np.mgrid[slice(1, 5 + dy, dy),\n slice(1, 5 + dx, dx)]\n\nz = np.sin(x)**10 + np.cos(10 + y*x) * np.cos(x)\n\n# x and y are bounds, so z should be the value *inside* those bounds.\n# Therefore, remove the last value from the z array.\nz = z[:-1, :-1]\nlevels = MaxNLocator(nbins=15).tick_values(z.min(), z.max())\n\n\n# pick the desired colormap, sensible levels, and define a normalization\n# instance which takes data values and translates those into levels.\ncmap = plt.get_cmap('PiYG')\nnorm = BoundaryNorm(levels, ncolors=cmap.N, clip=True)\n\nfig, (ax0, ax1) = plt.subplots(nrows=2)\n\nim = ax0.pcolormesh(x, y, z, cmap=cmap, norm=norm)\nfig.colorbar(im, ax=ax0)\nax0.set_title('pcolormesh with levels')\n\n\n# contours are *point* based plots, so convert our bound into point\n# centers\ncf = ax1.contourf(x[:-1, :-1] + dx/2.,\n y[:-1, :-1] + dy/2., z, levels=levels,\n cmap=cmap)\nfig.colorbar(cf, ax=ax1)\nax1.set_title('contourf with levels')\n\n# adjust spacing between subplots so `ax1` title and `ax0` tick labels\n# don't overlap\nfig.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.pcolormesh\nmatplotlib.pyplot.pcolormesh\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.BoundaryNorm\nmatplotlib.ticker.MaxNLocator" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c40224d82f912eaf4a87af7ccfc565dc/joinstyle.ipynb b/_downloads/c40224d82f912eaf4a87af7ccfc565dc/joinstyle.ipynb deleted file mode 120000 index e2f416ca095..00000000000 --- a/_downloads/c40224d82f912eaf4a87af7ccfc565dc/joinstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c40224d82f912eaf4a87af7ccfc565dc/joinstyle.ipynb \ No newline at end of file diff --git a/_downloads/c4060d63d271be9c25a220031aef50a5/demo_colorbar_of_inset_axes.ipynb b/_downloads/c4060d63d271be9c25a220031aef50a5/demo_colorbar_of_inset_axes.ipynb deleted file mode 100644 index 8ed441760ad..00000000000 --- a/_downloads/c4060d63d271be9c25a220031aef50a5/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Colorbar of Inset Axes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.inset_locator import inset_axes, zoomed_inset_axes\nfrom mpl_toolkits.axes_grid1.colorbar import colorbar\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n import numpy as np\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\nfig, ax = plt.subplots(figsize=[5, 4])\n\nZ, extent = get_demo_image()\n\nax.set(aspect=1,\n xlim=(-15, 15),\n ylim=(-20, 5))\n\n\naxins = zoomed_inset_axes(ax, zoom=2, loc='upper left')\nim = axins.imshow(Z, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\nplt.xticks(visible=False)\nplt.yticks(visible=False)\n\n\n# colorbar\ncax = inset_axes(axins,\n width=\"5%\", # width = 10% of parent_bbox width\n height=\"100%\", # height : 50%\n loc='lower left',\n bbox_to_anchor=(1.05, 0., 1, 1),\n bbox_transform=axins.transAxes,\n borderpad=0,\n )\n\ncolorbar(im, cax=cax)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c40b309b03f6dbd7f08c2e4e6be67564/ticklabels_rotation.py b/_downloads/c40b309b03f6dbd7f08c2e4e6be67564/ticklabels_rotation.py deleted file mode 120000 index a71494d239b..00000000000 --- a/_downloads/c40b309b03f6dbd7f08c2e4e6be67564/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c40b309b03f6dbd7f08c2e4e6be67564/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/c417b978958a79da4a06f1eb5cb7e3b5/psd_demo.ipynb b/_downloads/c417b978958a79da4a06f1eb5cb7e3b5/psd_demo.ipynb deleted file mode 120000 index b6748315ef6..00000000000 --- a/_downloads/c417b978958a79da4a06f1eb5cb7e3b5/psd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c417b978958a79da4a06f1eb5cb7e3b5/psd_demo.ipynb \ No newline at end of file diff --git a/_downloads/c420c9beb7bd3ead415b49c21fff6c33/legend_guide.py b/_downloads/c420c9beb7bd3ead415b49c21fff6c33/legend_guide.py deleted file mode 120000 index ff20ec938a9..00000000000 --- a/_downloads/c420c9beb7bd3ead415b49c21fff6c33/legend_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c420c9beb7bd3ead415b49c21fff6c33/legend_guide.py \ No newline at end of file diff --git a/_downloads/c4246ea911128d0e61014b411dd99440/demo_floating_axes.py b/_downloads/c4246ea911128d0e61014b411dd99440/demo_floating_axes.py deleted file mode 100644 index db133fcd89f..00000000000 --- a/_downloads/c4246ea911128d0e61014b411dd99440/demo_floating_axes.py +++ /dev/null @@ -1,160 +0,0 @@ -""" -===================================================== -:mod:`mpl_toolkits.axisartist.floating_axes` features -===================================================== - -Demonstration of features of the :mod:`.floating_axes` module: - -* Using `scatter` and `bar` with changing the shape of the plot. -* Using `GridHelperCurveLinear` to rotate the plot and set the plot boundary. -* Using `FloatingSubplot` to create a subplot using the return value from - `GridHelperCurveLinear`. -* Making a sector plot by adding more features to `GridHelperCurveLinear`. -""" - -from matplotlib.transforms import Affine2D -import mpl_toolkits.axisartist.floating_axes as floating_axes -import numpy as np -import mpl_toolkits.axisartist.angle_helper as angle_helper -from matplotlib.projections import PolarAxes -from mpl_toolkits.axisartist.grid_finder import (FixedLocator, MaxNLocator, - DictFormatter) -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def setup_axes1(fig, rect): - """ - A simple one. - """ - tr = Affine2D().scale(2, 1).rotate_deg(30) - - grid_helper = floating_axes.GridHelperCurveLinear( - tr, extremes=(-0.5, 3.5, 0, 4), - grid_locator1=MaxNLocator(nbins=4), - grid_locator2=MaxNLocator(nbins=4)) - - ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper) - fig.add_subplot(ax1) - - aux_ax = ax1.get_aux_axes(tr) - - return ax1, aux_ax - - -def setup_axes2(fig, rect): - """ - With custom locator and formatter. - Note that the extreme values are swapped. - """ - tr = PolarAxes.PolarTransform() - - pi = np.pi - angle_ticks = [(0, r"$0$"), - (.25*pi, r"$\frac{1}{4}\pi$"), - (.5*pi, r"$\frac{1}{2}\pi$")] - grid_locator1 = FixedLocator([v for v, s in angle_ticks]) - tick_formatter1 = DictFormatter(dict(angle_ticks)) - - grid_locator2 = MaxNLocator(2) - - grid_helper = floating_axes.GridHelperCurveLinear( - tr, extremes=(.5*pi, 0, 2, 1), - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1, - tick_formatter2=None) - - ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper) - fig.add_subplot(ax1) - - # create a parasite axes whose transData in RA, cz - aux_ax = ax1.get_aux_axes(tr) - - aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax - ax1.patch.zorder = 0.9 # but this has a side effect that the patch is - # drawn twice, and possibly over some other - # artists. So, we decrease the zorder a bit to - # prevent this. - - return ax1, aux_ax - - -def setup_axes3(fig, rect): - """ - Sometimes, things like axis_direction need to be adjusted. - """ - - # rotate a bit for better orientation - tr_rotate = Affine2D().translate(-95, 0) - - # scale degree to radians - tr_scale = Affine2D().scale(np.pi/180., 1.) - - tr = tr_rotate + tr_scale + PolarAxes.PolarTransform() - - grid_locator1 = angle_helper.LocatorHMS(4) - tick_formatter1 = angle_helper.FormatterHMS() - - grid_locator2 = MaxNLocator(3) - - # Specify theta limits in degrees - ra0, ra1 = 8.*15, 14.*15 - # Specify radial limits - cz0, cz1 = 0, 14000 - grid_helper = floating_axes.GridHelperCurveLinear( - tr, extremes=(ra0, ra1, cz0, cz1), - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1, - tick_formatter2=None) - - ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper) - fig.add_subplot(ax1) - - # adjust axis - ax1.axis["left"].set_axis_direction("bottom") - ax1.axis["right"].set_axis_direction("top") - - ax1.axis["bottom"].set_visible(False) - ax1.axis["top"].set_axis_direction("bottom") - ax1.axis["top"].toggle(ticklabels=True, label=True) - ax1.axis["top"].major_ticklabels.set_axis_direction("top") - ax1.axis["top"].label.set_axis_direction("top") - - ax1.axis["left"].label.set_text(r"cz [km$^{-1}$]") - ax1.axis["top"].label.set_text(r"$\alpha_{1950}$") - - # create a parasite axes whose transData in RA, cz - aux_ax = ax1.get_aux_axes(tr) - - aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax - ax1.patch.zorder = 0.9 # but this has a side effect that the patch is - # drawn twice, and possibly over some other - # artists. So, we decrease the zorder a bit to - # prevent this. - - return ax1, aux_ax - - -########################################################## -fig = plt.figure(figsize=(8, 4)) -fig.subplots_adjust(wspace=0.3, left=0.05, right=0.95) - -ax1, aux_ax1 = setup_axes1(fig, 131) -aux_ax1.bar([0, 1, 2, 3], [3, 2, 1, 3]) - -ax2, aux_ax2 = setup_axes2(fig, 132) -theta = np.random.rand(10)*.5*np.pi -radius = np.random.rand(10) + 1. -aux_ax2.scatter(theta, radius) - -ax3, aux_ax3 = setup_axes3(fig, 133) - -theta = (8 + np.random.rand(10)*(14 - 8))*15. # in degrees -radius = np.random.rand(10)*14000. -aux_ax3.scatter(theta, radius) - -plt.show() diff --git a/_downloads/c4261942d9acd9ccff07210c5ffc47eb/triinterp_demo.ipynb b/_downloads/c4261942d9acd9ccff07210c5ffc47eb/triinterp_demo.ipynb deleted file mode 100644 index a55b5777703..00000000000 --- a/_downloads/c4261942d9acd9ccff07210c5ffc47eb/triinterp_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triinterp Demo\n\n\nInterpolation from triangular grid to quad grid.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as mtri\nimport numpy as np\n\n# Create triangulation.\nx = np.asarray([0, 1, 2, 3, 0.5, 1.5, 2.5, 1, 2, 1.5])\ny = np.asarray([0, 0, 0, 0, 1.0, 1.0, 1.0, 2, 2, 3.0])\ntriangles = [[0, 1, 4], [1, 2, 5], [2, 3, 6], [1, 5, 4], [2, 6, 5], [4, 5, 7],\n [5, 6, 8], [5, 8, 7], [7, 8, 9]]\ntriang = mtri.Triangulation(x, y, triangles)\n\n# Interpolate to regularly-spaced quad grid.\nz = np.cos(1.5 * x) * np.cos(1.5 * y)\nxi, yi = np.meshgrid(np.linspace(0, 3, 20), np.linspace(0, 3, 20))\n\ninterp_lin = mtri.LinearTriInterpolator(triang, z)\nzi_lin = interp_lin(xi, yi)\n\ninterp_cubic_geom = mtri.CubicTriInterpolator(triang, z, kind='geom')\nzi_cubic_geom = interp_cubic_geom(xi, yi)\n\ninterp_cubic_min_E = mtri.CubicTriInterpolator(triang, z, kind='min_E')\nzi_cubic_min_E = interp_cubic_min_E(xi, yi)\n\n# Set up the figure\nfig, axs = plt.subplots(nrows=2, ncols=2)\naxs = axs.flatten()\n\n# Plot the triangulation.\naxs[0].tricontourf(triang, z)\naxs[0].triplot(triang, 'ko-')\naxs[0].set_title('Triangular grid')\n\n# Plot linear interpolation to quad grid.\naxs[1].contourf(xi, yi, zi_lin)\naxs[1].plot(xi, yi, 'k-', lw=0.5, alpha=0.5)\naxs[1].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5)\naxs[1].set_title(\"Linear interpolation\")\n\n# Plot cubic interpolation to quad grid, kind=geom\naxs[2].contourf(xi, yi, zi_cubic_geom)\naxs[2].plot(xi, yi, 'k-', lw=0.5, alpha=0.5)\naxs[2].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5)\naxs[2].set_title(\"Cubic interpolation,\\nkind='geom'\")\n\n# Plot cubic interpolation to quad grid, kind=min_E\naxs[3].contourf(xi, yi, zi_cubic_min_E)\naxs[3].plot(xi, yi, 'k-', lw=0.5, alpha=0.5)\naxs[3].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5)\naxs[3].set_title(\"Cubic interpolation,\\nkind='min_E'\")\n\nfig.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot\nmatplotlib.tri\nmatplotlib.tri.LinearTriInterpolator\nmatplotlib.tri.CubicTriInterpolator\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c4293a04060f1a4ace8f683502abd27f/text_alignment.ipynb b/_downloads/c4293a04060f1a4ace8f683502abd27f/text_alignment.ipynb deleted file mode 120000 index dd180a89fe3..00000000000 --- a/_downloads/c4293a04060f1a4ace8f683502abd27f/text_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c4293a04060f1a4ace8f683502abd27f/text_alignment.ipynb \ No newline at end of file diff --git a/_downloads/c432e821636af879ca093470a7098e04/marker_reference.py b/_downloads/c432e821636af879ca093470a7098e04/marker_reference.py deleted file mode 120000 index 02fb7547e24..00000000000 --- a/_downloads/c432e821636af879ca093470a7098e04/marker_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c432e821636af879ca093470a7098e04/marker_reference.py \ No newline at end of file diff --git a/_downloads/c445ba5709c4decdf7f8bdb2fb42c716/custom_projection.py b/_downloads/c445ba5709c4decdf7f8bdb2fb42c716/custom_projection.py deleted file mode 120000 index f0e933be453..00000000000 --- a/_downloads/c445ba5709c4decdf7f8bdb2fb42c716/custom_projection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c445ba5709c4decdf7f8bdb2fb42c716/custom_projection.py \ No newline at end of file diff --git a/_downloads/c45117d813e005d392e7e35559b5d2f5/embedding_in_wx2_sgskip.ipynb b/_downloads/c45117d813e005d392e7e35559b5d2f5/embedding_in_wx2_sgskip.ipynb deleted file mode 120000 index 68894c52001..00000000000 --- a/_downloads/c45117d813e005d392e7e35559b5d2f5/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c45117d813e005d392e7e35559b5d2f5/embedding_in_wx2_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c451a463d09263d1eb52792106c96266/stairs_demo.ipynb b/_downloads/c451a463d09263d1eb52792106c96266/stairs_demo.ipynb deleted file mode 120000 index 5cc86ee6b4b..00000000000 --- a/_downloads/c451a463d09263d1eb52792106c96266/stairs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c451a463d09263d1eb52792106c96266/stairs_demo.ipynb \ No newline at end of file diff --git a/_downloads/c453f0eaaa404f745f70f670002f4c87/scatter_symbol.ipynb b/_downloads/c453f0eaaa404f745f70f670002f4c87/scatter_symbol.ipynb deleted file mode 120000 index a1a3a88cf15..00000000000 --- a/_downloads/c453f0eaaa404f745f70f670002f4c87/scatter_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c453f0eaaa404f745f70f670002f4c87/scatter_symbol.ipynb \ No newline at end of file diff --git a/_downloads/c45474008e821348fc1c1ed721b52023/axes_props.py b/_downloads/c45474008e821348fc1c1ed721b52023/axes_props.py deleted file mode 100644 index f2e52febed3..00000000000 --- a/_downloads/c45474008e821348fc1c1ed721b52023/axes_props.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -========== -Axes Props -========== - -You can control the axis tick and grid properties -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 2.0, 0.01) -s = np.sin(2 * np.pi * t) - -fig, ax = plt.subplots() -ax.plot(t, s) - -ax.grid(True, linestyle='-.') -ax.tick_params(labelcolor='r', labelsize='medium', width=3) - -plt.show() diff --git a/_downloads/c45649bbf5126722bd95da5362a4fddc/poly_editor.py b/_downloads/c45649bbf5126722bd95da5362a4fddc/poly_editor.py deleted file mode 120000 index 221f8d92937..00000000000 --- a/_downloads/c45649bbf5126722bd95da5362a4fddc/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c45649bbf5126722bd95da5362a4fddc/poly_editor.py \ No newline at end of file diff --git a/_downloads/c45b1707ced50b259869034a79c9dfa5/polar_bar.py b/_downloads/c45b1707ced50b259869034a79c9dfa5/polar_bar.py deleted file mode 120000 index 2074d06a8fa..00000000000 --- a/_downloads/c45b1707ced50b259869034a79c9dfa5/polar_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c45b1707ced50b259869034a79c9dfa5/polar_bar.py \ No newline at end of file diff --git a/_downloads/c45fd17e10ff2324af973d556a378f18/logit_demo.py b/_downloads/c45fd17e10ff2324af973d556a378f18/logit_demo.py deleted file mode 120000 index cf714dbcb29..00000000000 --- a/_downloads/c45fd17e10ff2324af973d556a378f18/logit_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c45fd17e10ff2324af973d556a378f18/logit_demo.py \ No newline at end of file diff --git a/_downloads/c46d51152af22d0e69bdd4cc5d8ebf40/fill_spiral.py b/_downloads/c46d51152af22d0e69bdd4cc5d8ebf40/fill_spiral.py deleted file mode 100644 index e82f0203e39..00000000000 --- a/_downloads/c46d51152af22d0e69bdd4cc5d8ebf40/fill_spiral.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -=========== -Fill Spiral -=========== - -""" -import matplotlib.pyplot as plt -import numpy as np - -theta = np.arange(0, 8*np.pi, 0.1) -a = 1 -b = .2 - -for dt in np.arange(0, 2*np.pi, np.pi/2.0): - - x = a*np.cos(theta + dt)*np.exp(b*theta) - y = a*np.sin(theta + dt)*np.exp(b*theta) - - dt = dt + np.pi/4.0 - - x2 = a*np.cos(theta + dt)*np.exp(b*theta) - y2 = a*np.sin(theta + dt)*np.exp(b*theta) - - xf = np.concatenate((x, x2[::-1])) - yf = np.concatenate((y, y2[::-1])) - - p1 = plt.fill(xf, yf) - -plt.show() diff --git a/_downloads/c473ca529a5b6cfeb1abfa4b38916753/multipage_pdf.py b/_downloads/c473ca529a5b6cfeb1abfa4b38916753/multipage_pdf.py deleted file mode 100644 index 9986237c7f2..00000000000 --- a/_downloads/c473ca529a5b6cfeb1abfa4b38916753/multipage_pdf.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============= -Multipage PDF -============= - -This is a demo of creating a pdf file with several pages, -as well as adding metadata and annotations to pdf files. - -If you want to use a multipage pdf file using LaTeX, you need -to use `from matplotlib.backends.backend_pgf import PdfPages`. -This version however does not support `attach_note`. -""" - -import datetime -import numpy as np -from matplotlib.backends.backend_pdf import PdfPages -import matplotlib.pyplot as plt - -# Create the PdfPages object to which we will save the pages: -# The with statement makes sure that the PdfPages object is closed properly at -# the end of the block, even if an Exception occurs. -with PdfPages('multipage_pdf.pdf') as pdf: - plt.figure(figsize=(3, 3)) - plt.plot(range(7), [3, 1, 4, 1, 5, 9, 2], 'r-o') - plt.title('Page One') - pdf.savefig() # saves the current figure into a pdf page - plt.close() - - # if LaTeX is not installed or error caught, change to `usetex=False` - plt.rc('text', usetex=True) - plt.figure(figsize=(8, 6)) - x = np.arange(0, 5, 0.1) - plt.plot(x, np.sin(x), 'b-') - plt.title('Page Two') - pdf.attach_note("plot of sin(x)") # you can add a pdf note to - # attach metadata to a page - pdf.savefig() - plt.close() - - plt.rc('text', usetex=False) - fig = plt.figure(figsize=(4, 5)) - plt.plot(x, x ** 2, 'ko') - plt.title('Page Three') - pdf.savefig(fig) # or you can pass a Figure object to pdf.savefig - plt.close() - - # We can also set the file's metadata via the PdfPages object: - d = pdf.infodict() - d['Title'] = 'Multipage PDF Example' - d['Author'] = 'Jouni K. Sepp\xe4nen' - d['Subject'] = 'How to create a multipage pdf file and set its metadata' - d['Keywords'] = 'PdfPages multipage keywords author title subject' - d['CreationDate'] = datetime.datetime(2009, 11, 13) - d['ModDate'] = datetime.datetime.today() diff --git a/_downloads/c47e585d5a5aabe1ae02f73130ec94ae/svg_filter_pie.py b/_downloads/c47e585d5a5aabe1ae02f73130ec94ae/svg_filter_pie.py deleted file mode 120000 index 93bb6a68ec8..00000000000 --- a/_downloads/c47e585d5a5aabe1ae02f73130ec94ae/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c47e585d5a5aabe1ae02f73130ec94ae/svg_filter_pie.py \ No newline at end of file diff --git a/_downloads/c486aaac077abec069311c02320fb3ef/axis_direction_demo_step02.py b/_downloads/c486aaac077abec069311c02320fb3ef/axis_direction_demo_step02.py deleted file mode 100644 index de6a21df428..00000000000 --- a/_downloads/c486aaac077abec069311c02320fb3ef/axis_direction_demo_step02.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -========================== -Axis Direction Demo Step02 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - #ax.axis[:].toggle(all=False) - #ax.axis[:].line.set_visible(False) - ax.axis[:].set_visible(False) - - ax.axis["x"] = ax.new_floating_axis(1, 0.5) - ax.axis["x"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(6, 2.5)) -fig.subplots_adjust(bottom=0.2, top=0.8) - -ax1 = setup_axes(fig, "121") -ax1.axis["x"].set_ticklabel_direction("+") -ax1.annotate("ticklabel direction=$+$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -ax2 = setup_axes(fig, "122") -ax2.axis["x"].set_ticklabel_direction("-") -ax2.annotate("ticklabel direction=$-$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -plt.show() diff --git a/_downloads/c489281f9c2c188621a9c8ede846c392/demo_curvelinear_grid.ipynb b/_downloads/c489281f9c2c188621a9c8ede846c392/demo_curvelinear_grid.ipynb deleted file mode 120000 index f02703ccf34..00000000000 --- a/_downloads/c489281f9c2c188621a9c8ede846c392/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c489281f9c2c188621a9c8ede846c392/demo_curvelinear_grid.ipynb \ No newline at end of file diff --git a/_downloads/c4a4b3db8d6084a2497eacfa3a34f575/axisartist.py b/_downloads/c4a4b3db8d6084a2497eacfa3a34f575/axisartist.py deleted file mode 120000 index 5bbcfe90231..00000000000 --- a/_downloads/c4a4b3db8d6084a2497eacfa3a34f575/axisartist.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c4a4b3db8d6084a2497eacfa3a34f575/axisartist.py \ No newline at end of file diff --git a/_downloads/c4a65417036aa9b333545c6ff62b4669/errorbar.py b/_downloads/c4a65417036aa9b333545c6ff62b4669/errorbar.py deleted file mode 120000 index 18f4eb2203f..00000000000 --- a/_downloads/c4a65417036aa9b333545c6ff62b4669/errorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c4a65417036aa9b333545c6ff62b4669/errorbar.py \ No newline at end of file diff --git a/_downloads/c4a660cbb4f680c2b4c4a941af50870c/basic_units.py b/_downloads/c4a660cbb4f680c2b4c4a941af50870c/basic_units.py deleted file mode 120000 index 0f53191deaf..00000000000 --- a/_downloads/c4a660cbb4f680c2b4c4a941af50870c/basic_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c4a660cbb4f680c2b4c4a941af50870c/basic_units.py \ No newline at end of file diff --git a/_downloads/c4b2ac6448664169e6393daaa56adbd5/hist3d.ipynb b/_downloads/c4b2ac6448664169e6393daaa56adbd5/hist3d.ipynb deleted file mode 100644 index d600a40b06f..00000000000 --- a/_downloads/c4b2ac6448664169e6393daaa56adbd5/hist3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Create 3D histogram of 2D data\n\n\nDemo of a histogram for 2 dimensional data as a bar graph in 3D.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\nx, y = np.random.rand(2, 100) * 4\nhist, xedges, yedges = np.histogram2d(x, y, bins=4, range=[[0, 4], [0, 4]])\n\n# Construct arrays for the anchor positions of the 16 bars.\nxpos, ypos = np.meshgrid(xedges[:-1] + 0.25, yedges[:-1] + 0.25, indexing=\"ij\")\nxpos = xpos.ravel()\nypos = ypos.ravel()\nzpos = 0\n\n# Construct arrays with the dimensions for the 16 bars.\ndx = dy = 0.5 * np.ones_like(zpos)\ndz = hist.ravel()\n\nax.bar3d(xpos, ypos, zpos, dx, dy, dz, zsort='average')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c4b4d12d878b6fe7c294b6bf7ac62082/barcode_demo.ipynb b/_downloads/c4b4d12d878b6fe7c294b6bf7ac62082/barcode_demo.ipynb deleted file mode 120000 index becbc60246f..00000000000 --- a/_downloads/c4b4d12d878b6fe7c294b6bf7ac62082/barcode_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c4b4d12d878b6fe7c294b6bf7ac62082/barcode_demo.ipynb \ No newline at end of file diff --git a/_downloads/c4b5be2f262be60575e854b67b660942/secondary_axis.py b/_downloads/c4b5be2f262be60575e854b67b660942/secondary_axis.py deleted file mode 100644 index caa27a9c895..00000000000 --- a/_downloads/c4b5be2f262be60575e854b67b660942/secondary_axis.py +++ /dev/null @@ -1,164 +0,0 @@ -""" -============== -Secondary Axis -============== - -Sometimes we want as secondary axis on a plot, for instance to convert -radians to degrees on the same plot. We can do this by making a child -axes with only one axis visible via `.Axes.axes.secondary_xaxis` and -`.Axes.axes.secondary_yaxis`. This secondary axis can have a different scale -than the main axis by providing both a forward and an inverse conversion -function in a tuple to the ``functions`` kwarg: -""" - -import matplotlib.pyplot as plt -import numpy as np -import datetime -import matplotlib.dates as mdates -from matplotlib.transforms import Transform -from matplotlib.ticker import ( - AutoLocator, AutoMinorLocator) - -fig, ax = plt.subplots(constrained_layout=True) -x = np.arange(0, 360, 1) -y = np.sin(2 * x * np.pi / 180) -ax.plot(x, y) -ax.set_xlabel('angle [degrees]') -ax.set_ylabel('signal') -ax.set_title('Sine wave') - - -def deg2rad(x): - return x * np.pi / 180 - - -def rad2deg(x): - return x * 180 / np.pi - -secax = ax.secondary_xaxis('top', functions=(deg2rad, rad2deg)) -secax.set_xlabel('angle [rad]') -plt.show() - -########################################################################### -# Here is the case of converting from wavenumber to wavelength in a -# log-log scale. -# -# .. note :: -# -# In this case, the xscale of the parent is logarithmic, so the child is -# made logarithmic as well. - -fig, ax = plt.subplots(constrained_layout=True) -x = np.arange(0.02, 1, 0.02) -np.random.seed(19680801) -y = np.random.randn(len(x)) ** 2 -ax.loglog(x, y) -ax.set_xlabel('f [Hz]') -ax.set_ylabel('PSD') -ax.set_title('Random spectrum') - - -def forward(x): - return 1 / x - - -def inverse(x): - return 1 / x - -secax = ax.secondary_xaxis('top', functions=(forward, inverse)) -secax.set_xlabel('period [s]') -plt.show() - -########################################################################### -# Sometime we want to relate the axes in a transform that is ad-hoc from -# the data, and is derived empirically. In that case we can set the -# forward and inverse transforms functions to be linear interpolations from the -# one data set to the other. - -fig, ax = plt.subplots(constrained_layout=True) -xdata = np.arange(1, 11, 0.4) -ydata = np.random.randn(len(xdata)) -ax.plot(xdata, ydata, label='Plotted data') - -xold = np.arange(0, 11, 0.2) -# fake data set relating x co-ordinate to another data-derived co-ordinate. -# xnew must be monotonic, so we sort... -xnew = np.sort(10 * np.exp(-xold / 4) + np.random.randn(len(xold)) / 3) - -ax.plot(xold[3:], xnew[3:], label='Transform data') -ax.set_xlabel('X [m]') -ax.legend() - - -def forward(x): - return np.interp(x, xold, xnew) - - -def inverse(x): - return np.interp(x, xnew, xold) - -secax = ax.secondary_xaxis('top', functions=(forward, inverse)) -secax.xaxis.set_minor_locator(AutoMinorLocator()) -secax.set_xlabel('$X_{other}$') - -plt.show() - -########################################################################### -# A final example translates np.datetime64 to yearday on the x axis and -# from Celsius to Farenheit on the y axis: - - -dates = [datetime.datetime(2018, 1, 1) + datetime.timedelta(hours=k * 6) - for k in range(240)] -temperature = np.random.randn(len(dates)) -fig, ax = plt.subplots(constrained_layout=True) - -ax.plot(dates, temperature) -ax.set_ylabel(r'$T\ [^oC]$') -plt.xticks(rotation=70) - - -def date2yday(x): - """ - x is in matplotlib datenums, so they are floats. - """ - y = x - mdates.date2num(datetime.datetime(2018, 1, 1)) - return y - - -def yday2date(x): - """ - return a matplotlib datenum (x is days since start of year) - """ - y = x + mdates.date2num(datetime.datetime(2018, 1, 1)) - return y - -secaxx = ax.secondary_xaxis('top', functions=(date2yday, yday2date)) -secaxx.set_xlabel('yday [2018]') - - -def CtoF(x): - return x * 1.8 + 32 - - -def FtoC(x): - return (x - 32) / 1.8 - -secaxy = ax.secondary_yaxis('right', functions=(CtoF, FtoC)) -secaxy.set_ylabel(r'$T\ [^oF]$') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib - -matplotlib.axes.Axes.secondary_xaxis -matplotlib.axes.Axes.secondary_yaxis diff --git a/_downloads/c4b794043a51458efcf1d094dad2d15e/membrane.ipynb b/_downloads/c4b794043a51458efcf1d094dad2d15e/membrane.ipynb deleted file mode 100644 index fc406f49ab7..00000000000 --- a/_downloads/c4b794043a51458efcf1d094dad2d15e/membrane.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frontpage plot example\n\n\nThis example reproduces the frontpage simple plot example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport numpy as np\n\n\nwith cbook.get_sample_data('membrane.dat') as datafile:\n x = np.fromfile(datafile, np.float32)\n# 0.0005 is the sample interval\n\nfig, ax = plt.subplots()\nax.plot(x, linewidth=4)\nax.set_xlim(5000, 6000)\nax.set_ylim(-0.6, 0.1)\nax.set_xticks([])\nax.set_yticks([])\nfig.savefig(\"membrane_frontpage.png\", dpi=25) # results in 160x120 px image" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c4c9a1b92dedd033811112379640db60/aspect_loglog.py b/_downloads/c4c9a1b92dedd033811112379640db60/aspect_loglog.py deleted file mode 120000 index f58125fba2f..00000000000 --- a/_downloads/c4c9a1b92dedd033811112379640db60/aspect_loglog.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c4c9a1b92dedd033811112379640db60/aspect_loglog.py \ No newline at end of file diff --git a/_downloads/c4cc8ee8c467a4d180e96166d598a07c/close_event.ipynb b/_downloads/c4cc8ee8c467a4d180e96166d598a07c/close_event.ipynb deleted file mode 100644 index 90658448317..00000000000 --- a/_downloads/c4cc8ee8c467a4d180e96166d598a07c/close_event.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Close Event\n\n\nExample to show connecting events that occur when the figure closes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef handle_close(evt):\n print('Closed Figure!')\n\nfig = plt.figure()\nfig.canvas.mpl_connect('close_event', handle_close)\n\nplt.text(0.35, 0.5, 'Close Me!', dict(size=30))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c4e45e8a84773abf2054b0358e00c84a/polar_legend.ipynb b/_downloads/c4e45e8a84773abf2054b0358e00c84a/polar_legend.ipynb deleted file mode 120000 index 91b42bcd471..00000000000 --- a/_downloads/c4e45e8a84773abf2054b0358e00c84a/polar_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c4e45e8a84773abf2054b0358e00c84a/polar_legend.ipynb \ No newline at end of file diff --git a/_downloads/c4f0533ec83bb6ffb38a04e28335354a/figure_axes_enter_leave.py b/_downloads/c4f0533ec83bb6ffb38a04e28335354a/figure_axes_enter_leave.py deleted file mode 120000 index 590af6eefe7..00000000000 --- a/_downloads/c4f0533ec83bb6ffb38a04e28335354a/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c4f0533ec83bb6ffb38a04e28335354a/figure_axes_enter_leave.py \ No newline at end of file diff --git a/_downloads/c4f2a18ccd63dc25619141aee3712b03/annotations.ipynb b/_downloads/c4f2a18ccd63dc25619141aee3712b03/annotations.ipynb deleted file mode 100644 index 3206703afa9..00000000000 --- a/_downloads/c4f2a18ccd63dc25619141aee3712b03/annotations.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nAnnotations\n===========\n\nAnnotating text with Matplotlib.\n :depth: 3\n\n\nBasic annotation\n================\n\nThe uses of the basic :func:`~matplotlib.pyplot.text` will place text\nat an arbitrary position on the Axes. A common use case of text is to\nannotate some feature of the plot, and the\n:func:`~matplotlib.Axes.annotate` method provides helper functionality\nto make annotations easy. In an annotation, there are two points to\nconsider: the location being annotated represented by the argument\n``xy`` and the location of the text ``xytext``. Both of these\narguments are ``(x,y)`` tuples.\n\n.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_basic_001.png\n :target: ../../gallery/pyplots/annotation_basic.html\n :align: center\n :scale: 50\n\n Annotation Basic\n\nIn this example, both the ``xy`` (arrow tip) and ``xytext`` locations\n(text location) are in data coordinates. There are a variety of other\ncoordinate systems one can choose -- you can specify the coordinate\nsystem of ``xy`` and ``xytext`` with one of the following strings for\n``xycoords`` and ``textcoords`` (default is 'data')\n\n==================== ====================================================\nargument coordinate system\n==================== ====================================================\n 'figure points' points from the lower left corner of the figure\n 'figure pixels' pixels from the lower left corner of the figure\n 'figure fraction' 0,0 is lower left of figure and 1,1 is upper right\n 'axes points' points from lower left corner of axes\n 'axes pixels' pixels from lower left corner of axes\n 'axes fraction' 0,0 is lower left of axes and 1,1 is upper right\n 'data' use the axes data coordinate system\n==================== ====================================================\n\nFor example to place the text coordinates in fractional axes\ncoordinates, one could do::\n\n ax.annotate('local max', xy=(3, 1), xycoords='data',\n xytext=(0.8, 0.95), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='right', verticalalignment='top',\n )\n\nFor physical coordinate systems (points or pixels) the origin is the\nbottom-left of the figure or axes.\n\nOptionally, you can enable drawing of an arrow from the text to the annotated\npoint by giving a dictionary of arrow properties in the optional keyword\nargument ``arrowprops``.\n\n\n==================== =====================================================\n``arrowprops`` key description\n==================== =====================================================\nwidth the width of the arrow in points\nfrac the fraction of the arrow length occupied by the head\nheadwidth the width of the base of the arrow head in points\nshrink move the tip and base some percent away from\n the annotated point and text\n\n\\*\\*kwargs any key for :class:`matplotlib.patches.Polygon`,\n e.g., ``facecolor``\n==================== =====================================================\n\n\nIn the example below, the ``xy`` point is in native coordinates\n(``xycoords`` defaults to 'data'). For a polar axes, this is in\n(theta, radius) space. The text in this example is placed in the\nfractional figure coordinate system. :class:`matplotlib.text.Text`\nkeyword args like ``horizontalalignment``, ``verticalalignment`` and\n``fontsize`` are passed from `~matplotlib.Axes.annotate` to the\n``Text`` instance.\n\n.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_polar_001.png\n :target: ../../gallery/pyplots/annotation_polar.html\n :align: center\n :scale: 50\n\n Annotation Polar\n\nFor more on all the wild and wonderful things you can do with\nannotations, including fancy arrows, see `plotting-guide-annotation`\nand :doc:`/gallery/text_labels_and_annotations/annotation_demo`.\n\n\nDo not proceed unless you have already read `annotations-tutorial`,\n:func:`~matplotlib.pyplot.text` and :func:`~matplotlib.pyplot.annotate`!\n\n\n\nAdvanced Annotation\n===================\n\n\nAnnotating with Text with Box\n-----------------------------\n\nLet's start with a simple example.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_text_arrow_001.png\n :target: ../../gallery/userdemo/annotate_text_arrow.html\n :align: center\n :scale: 50\n\n Annotate Text Arrow\n\n\nThe :func:`~matplotlib.pyplot.text` function in the pyplot module (or\ntext method of the Axes class) takes bbox keyword argument, and when\ngiven, a box around the text is drawn. ::\n\n bbox_props = dict(boxstyle=\"rarrow,pad=0.3\", fc=\"cyan\", ec=\"b\", lw=2)\n t = ax.text(0, 0, \"Direction\", ha=\"center\", va=\"center\", rotation=45,\n size=15,\n bbox=bbox_props)\n\n\nThe patch object associated with the text can be accessed by::\n\n bb = t.get_bbox_patch()\n\nThe return value is an instance of FancyBboxPatch and the patch\nproperties like facecolor, edgewidth, etc. can be accessed and\nmodified as usual. To change the shape of the box, use the *set_boxstyle*\nmethod. ::\n\n bb.set_boxstyle(\"rarrow\", pad=0.6)\n\nThe arguments are the name of the box style with its attributes as\nkeyword arguments. Currently, following box styles are implemented.\n\n ========== ============== ==========================\n Class Name Attrs\n ========== ============== ==========================\n Circle ``circle`` pad=0.3\n DArrow ``darrow`` pad=0.3\n LArrow ``larrow`` pad=0.3\n RArrow ``rarrow`` pad=0.3\n Round ``round`` pad=0.3,rounding_size=None\n Round4 ``round4`` pad=0.3,rounding_size=None\n Roundtooth ``roundtooth`` pad=0.3,tooth_size=None\n Sawtooth ``sawtooth`` pad=0.3,tooth_size=None\n Square ``square`` pad=0.3\n ========== ============== ==========================\n\n.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_fancybox_demo_001.png\n :target: ../../gallery/shapes_and_collections/fancybox_demo.html\n :align: center\n :scale: 50\n\n Fancybox Demo\n\n\nNote that the attribute arguments can be specified within the style\nname with separating comma (this form can be used as \"boxstyle\" value\nof bbox argument when initializing the text instance) ::\n\n bb.set_boxstyle(\"rarrow,pad=0.6\")\n\n\n\n\nAnnotating with Arrow\n---------------------\n\nThe :func:`~matplotlib.pyplot.annotate` function in the pyplot module\n(or annotate method of the Axes class) is used to draw an arrow\nconnecting two points on the plot. ::\n\n ax.annotate(\"Annotation\",\n xy=(x1, y1), xycoords='data',\n xytext=(x2, y2), textcoords='offset points',\n )\n\nThis annotates a point at ``xy`` in the given coordinate (``xycoords``)\nwith the text at ``xytext`` given in ``textcoords``. Often, the\nannotated point is specified in the *data* coordinate and the annotating\ntext in *offset points*.\nSee :func:`~matplotlib.pyplot.annotate` for available coordinate systems.\n\nAn arrow connecting two points (xy & xytext) can be optionally drawn by\nspecifying the ``arrowprops`` argument. To draw only an arrow, use\nempty string as the first argument. ::\n\n ax.annotate(\"\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"arc3\"),\n )\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple01_001.png\n :target: ../../gallery/userdemo/annotate_simple01.html\n :align: center\n :scale: 50\n\n Annotate Simple01\n\nThe arrow drawing takes a few steps.\n\n1. a connecting path between two points are created. This is\n controlled by ``connectionstyle`` key value.\n\n2. If patch object is given (*patchA* & *patchB*), the path is clipped to\n avoid the patch.\n\n3. The path is further shrunk by given amount of pixels (*shrinkA*\n & *shrinkB*)\n\n4. The path is transmuted to arrow patch, which is controlled by the\n ``arrowstyle`` key value.\n\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_explain_001.png\n :target: ../../gallery/userdemo/annotate_explain.html\n :align: center\n :scale: 50\n\n Annotate Explain\n\n\nThe creation of the connecting path between two points is controlled by\n``connectionstyle`` key and the following styles are available.\n\n ========== =============================================\n Name Attrs\n ========== =============================================\n ``angle`` angleA=90,angleB=0,rad=0.0\n ``angle3`` angleA=90,angleB=0\n ``arc`` angleA=0,angleB=0,armA=None,armB=None,rad=0.0\n ``arc3`` rad=0.0\n ``bar`` armA=0.0,armB=0.0,fraction=0.3,angle=None\n ========== =============================================\n\nNote that \"3\" in ``angle3`` and ``arc3`` is meant to indicate that the\nresulting path is a quadratic spline segment (three control\npoints). As will be discussed below, some arrow style options can only\nbe used when the connecting path is a quadratic spline.\n\nThe behavior of each connection style is (limitedly) demonstrated in the\nexample below. (Warning : The behavior of the ``bar`` style is currently not\nwell defined, it may be changed in the future).\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_connectionstyle_demo_001.png\n :target: ../../gallery/userdemo/connectionstyle_demo.html\n :align: center\n :scale: 50\n\n Connectionstyle Demo\n\n\nThe connecting path (after clipping and shrinking) is then mutated to\nan arrow patch, according to the given ``arrowstyle``.\n\n ========== =============================================\n Name Attrs\n ========== =============================================\n ``-`` None\n ``->`` head_length=0.4,head_width=0.2\n ``-[`` widthB=1.0,lengthB=0.2,angleB=None\n ``|-|`` widthA=1.0,widthB=1.0\n ``-|>`` head_length=0.4,head_width=0.2\n ``<-`` head_length=0.4,head_width=0.2\n ``<->`` head_length=0.4,head_width=0.2\n ``<|-`` head_length=0.4,head_width=0.2\n ``<|-|>`` head_length=0.4,head_width=0.2\n ``fancy`` head_length=0.4,head_width=0.4,tail_width=0.4\n ``simple`` head_length=0.5,head_width=0.5,tail_width=0.2\n ``wedge`` tail_width=0.3,shrink_factor=0.5\n ========== =============================================\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_fancyarrow_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/fancyarrow_demo.html\n :align: center\n :scale: 50\n\n Fancyarrow Demo\n\nSome arrowstyles only work with connection styles that generate a\nquadratic-spline segment. They are ``fancy``, ``simple``, and ``wedge``.\nFor these arrow styles, you must use the \"angle3\" or \"arc3\" connection\nstyle.\n\nIf the annotation string is given, the patchA is set to the bbox patch\nof the text by default.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple02_001.png\n :target: ../../gallery/userdemo/annotate_simple02.html\n :align: center\n :scale: 50\n\n Annotate Simple02\n\nAs in the text command, a box around the text can be drawn using\nthe ``bbox`` argument.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple03_001.png\n :target: ../../gallery/userdemo/annotate_simple03.html\n :align: center\n :scale: 50\n\n Annotate Simple03\n\nBy default, the starting point is set to the center of the text\nextent. This can be adjusted with ``relpos`` key value. The values\nare normalized to the extent of the text. For example, (0,0) means\nlower-left corner and (1,1) means top-right.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple04_001.png\n :target: ../../gallery/userdemo/annotate_simple04.html\n :align: center\n :scale: 50\n\n Annotate Simple04\n\n\nPlacing Artist at the anchored location of the Axes\n---------------------------------------------------\n\nThere are classes of artists that can be placed at an anchored location\nin the Axes. A common example is the legend. This type of artist can\nbe created by using the OffsetBox class. A few predefined classes are\navailable in ``mpl_toolkits.axes_grid1.anchored_artists`` others in\n``matplotlib.offsetbox`` ::\n\n from matplotlib.offsetbox import AnchoredText\n at = AnchoredText(\"Figure 1a\",\n prop=dict(size=15), frameon=True,\n loc='upper left',\n )\n at.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at)\n\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box01_001.png\n :target: ../../gallery/userdemo/anchored_box01.html\n :align: center\n :scale: 50\n\n Anchored Box01\n\n\nThe *loc* keyword has same meaning as in the legend command.\n\nA simple application is when the size of the artist (or collection of\nartists) is known in pixel size during the time of creation. For\nexample, If you want to draw a circle with fixed size of 20 pixel x 20\npixel (radius = 10 pixel), you can utilize\n``AnchoredDrawingArea``. The instance is created with a size of the\ndrawing area (in pixels), and arbitrary artists can added to the\ndrawing area. Note that the extents of the artists that are added to\nthe drawing area are not related to the placement of the drawing\narea itself. Only the initial size matters. ::\n\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea\n\n ada = AnchoredDrawingArea(20, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\n p1 = Circle((10, 10), 10)\n ada.drawing_area.add_artist(p1)\n p2 = Circle((30, 10), 5, fc=\"r\")\n ada.drawing_area.add_artist(p2)\n\nThe artists that are added to the drawing area should not have a\ntransform set (it will be overridden) and the dimensions of those\nartists are interpreted as a pixel coordinate, i.e., the radius of the\ncircles in above example are 10 pixels and 5 pixels, respectively.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box02_001.png\n :target: ../../gallery/userdemo/anchored_box02.html\n :align: center\n :scale: 50\n\n Anchored Box02\n\nSometimes, you want your artists to scale with the data coordinate (or\ncoordinates other than canvas pixels). You can use\n``AnchoredAuxTransformBox`` class. This is similar to\n``AnchoredDrawingArea`` except that the extent of the artist is\ndetermined during the drawing time respecting the specified transform. ::\n\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox\n\n box = AnchoredAuxTransformBox(ax.transData, loc='upper left')\n el = Ellipse((0,0), width=0.1, height=0.4, angle=30) # in data coordinates!\n box.drawing_area.add_artist(el)\n\nThe ellipse in the above example will have width and height\ncorresponding to 0.1 and 0.4 in data coordinates and will be\nautomatically scaled when the view limits of the axes change.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box03_001.png\n :target: ../../gallery/userdemo/anchored_box03.html\n :align: center\n :scale: 50\n\n Anchored Box03\n\nAs in the legend, the bbox_to_anchor argument can be set. Using the\nHPacker and VPacker, you can have an arrangement(?) of artist as in the\nlegend (as a matter of fact, this is how the legend is created).\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box04_001.png\n :target: ../../gallery/userdemo/anchored_box04.html\n :align: center\n :scale: 50\n\n Anchored Box04\n\nNote that unlike the legend, the ``bbox_transform`` is set\nto IdentityTransform by default.\n\nUsing Complex Coordinates with Annotations\n------------------------------------------\n\nThe Annotation in matplotlib supports several types of coordinates as\ndescribed in `annotations-tutorial`. For an advanced user who wants\nmore control, it supports a few other options.\n\n 1. :class:`~matplotlib.transforms.Transform` instance. For example, ::\n\n ax.annotate(\"Test\", xy=(0.5, 0.5), xycoords=ax.transAxes)\n\n is identical to ::\n\n ax.annotate(\"Test\", xy=(0.5, 0.5), xycoords=\"axes fraction\")\n\n With this, you can annotate a point in other axes. ::\n\n ax1, ax2 = subplot(121), subplot(122)\n ax2.annotate(\"Test\", xy=(0.5, 0.5), xycoords=ax1.transData,\n xytext=(0.5, 0.5), textcoords=ax2.transData,\n arrowprops=dict(arrowstyle=\"->\"))\n\n 2. :class:`~matplotlib.artist.Artist` instance. The xy value (or\n xytext) is interpreted as a fractional coordinate of the bbox\n (return value of *get_window_extent*) of the artist. ::\n\n an1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\n an2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1, # (1,0.5) of the an1's bbox\n xytext=(30,0), textcoords=\"offset points\",\n va=\"center\", ha=\"left\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\n\n .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord01_001.png\n :target: ../../gallery/userdemo/annotate_simple_coord01.html\n :align: center\n :scale: 50\n\n Annotation with Simple Coordinates\n\n Note that it is your responsibility that the extent of the\n coordinate artist (*an1* in above example) is determined before *an2*\n gets drawn. In most cases, it means that *an2* needs to be drawn\n later than *an1*.\n\n\n 3. A callable object that returns an instance of either\n :class:`~matplotlib.transforms.BboxBase` or\n :class:`~matplotlib.transforms.Transform`. If a transform is\n returned, it is the same as 1 and if a bbox is returned, it is the same\n as 2. The callable object should take a single argument of the\n renderer instance. For example, the following two commands give\n identical results ::\n\n an2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1,\n xytext=(30,0), textcoords=\"offset points\")\n an2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1.get_window_extent,\n xytext=(30,0), textcoords=\"offset points\")\n\n\n 4. A tuple of two coordinate specifications. The first item is for the\n x-coordinate and the second is for the y-coordinate. For example, ::\n\n annotate(\"Test\", xy=(0.5, 1), xycoords=(\"data\", \"axes fraction\"))\n\n 0.5 is in data coordinates, and 1 is in normalized axes coordinates.\n You may use an artist or transform as with a tuple. For example,\n\n .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord02_001.png\n :target: ../../gallery/userdemo/annotate_simple_coord02.html\n :align: center\n :scale: 50\n\n Annotation with Simple Coordinates 2\n\n 5. Sometimes, you want your annotation with some \"offset points\", not from the\n annotated point but from some other point.\n :class:`~matplotlib.text.OffsetFrom` is a helper class for such cases.\n\n .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord03_001.png\n :target: ../../gallery/userdemo/annotate_simple_coord03.html\n :align: center\n :scale: 50\n\n Annotation with Simple Coordinates 3\n\n You may take a look at this example\n :doc:`/gallery/text_labels_and_annotations/annotation_demo`.\n\nUsing ConnectionPatch\n---------------------\n\nThe ConnectionPatch is like an annotation without text. While the annotate\nfunction is recommended in most situations, the ConnectionPatch is useful when\nyou want to connect points in different axes. ::\n\n from matplotlib.patches import ConnectionPatch\n xy = (0.2, 0.2)\n con = ConnectionPatch(xyA=xy, xyB=xy, coordsA=\"data\", coordsB=\"data\",\n axesA=ax1, axesB=ax2)\n ax2.add_artist(con)\n\nThe above code connects point xy in the data coordinates of ``ax1`` to\npoint xy in the data coordinates of ``ax2``. Here is a simple example.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_connect_simple01_001.png\n :target: ../../gallery/userdemo/connect_simple01.html\n :align: center\n :scale: 50\n\n Connect Simple01\n\n\nWhile the ConnectionPatch instance can be added to any axes, you may want to add\nit to the axes that is latest in drawing order to prevent overlap by other\naxes.\n\n\nAdvanced Topics\n~~~~~~~~~~~~~~~\n\nZoom effect between Axes\n------------------------\n\n``mpl_toolkits.axes_grid1.inset_locator`` defines some patch classes useful\nfor interconnecting two axes. Understanding the code requires some\nknowledge of how mpl's transform works. But, utilizing it will be\nstraight forward.\n\n\n.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_axes_zoom_effect_001.png\n :target: ../../gallery/subplots_axes_and_figures/axes_zoom_effect.html\n :align: center\n :scale: 50\n\n Axes Zoom Effect\n\n\nDefine Custom BoxStyle\n----------------------\n\nYou can use a custom box style. The value for the ``boxstyle`` can be a\ncallable object in the following forms.::\n\n def __call__(self, x0, y0, width, height, mutation_size,\n aspect_ratio=1.):\n '''\n Given the location and size of the box, return the path of\n the box around it.\n\n - *x0*, *y0*, *width*, *height* : location and size of the box\n - *mutation_size* : a reference scale for the mutation.\n - *aspect_ratio* : aspect-ratio for the mutation.\n '''\n path = ...\n return path\n\nHere is a complete example.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle01_001.png\n :target: ../../gallery/userdemo/custom_boxstyle01.html\n :align: center\n :scale: 50\n\n Custom Boxstyle01\n\nHowever, it is recommended that you derive from the\nmatplotlib.patches.BoxStyle._Base as demonstrated below.\n\n.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle02_001.png\n :target: ../../gallery/userdemo/custom_boxstyle02.html\n :align: center\n :scale: 50\n\n Custom Boxstyle02\n\n\nSimilarly, you can define a custom ConnectionStyle and a custom ArrowStyle.\nSee the source code of ``lib/matplotlib/patches.py`` and check\nhow each style class is defined.\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c4f54a042d9a81d3afae26490415434f/subplot3d.py b/_downloads/c4f54a042d9a81d3afae26490415434f/subplot3d.py deleted file mode 120000 index 8cb7f0b725b..00000000000 --- a/_downloads/c4f54a042d9a81d3afae26490415434f/subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c4f54a042d9a81d3afae26490415434f/subplot3d.py \ No newline at end of file diff --git a/_downloads/c4f71c0af42fc46e063fbfb41197eef5/agg_buffer_to_array.py b/_downloads/c4f71c0af42fc46e063fbfb41197eef5/agg_buffer_to_array.py deleted file mode 120000 index 949c9b94be6..00000000000 --- a/_downloads/c4f71c0af42fc46e063fbfb41197eef5/agg_buffer_to_array.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c4f71c0af42fc46e063fbfb41197eef5/agg_buffer_to_array.py \ No newline at end of file diff --git a/_downloads/c4f7e1ac83c84b81f0b38fc0b156daad/custom_scale.py b/_downloads/c4f7e1ac83c84b81f0b38fc0b156daad/custom_scale.py deleted file mode 120000 index 30402c62600..00000000000 --- a/_downloads/c4f7e1ac83c84b81f0b38fc0b156daad/custom_scale.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c4f7e1ac83c84b81f0b38fc0b156daad/custom_scale.py \ No newline at end of file diff --git a/_downloads/c4fdc6d8ede428a8a2d58beed4acf06c/text3d.py b/_downloads/c4fdc6d8ede428a8a2d58beed4acf06c/text3d.py deleted file mode 100644 index ed4934faf5a..00000000000 --- a/_downloads/c4fdc6d8ede428a8a2d58beed4acf06c/text3d.py +++ /dev/null @@ -1,53 +0,0 @@ -''' -====================== -Text annotations in 3D -====================== - -Demonstrates the placement of text annotations on a 3D plot. - -Functionality shown: - - - Using the text function with three types of 'zdir' values: None, an axis - name (ex. 'x'), or a direction tuple (ex. (1, 1, 0)). - - Using the text function with the color keyword. - - - Using the text2D function to place text on a fixed position on the ax - object. - -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Demo 1: zdir -zdirs = (None, 'x', 'y', 'z', (1, 1, 0), (1, 1, 1)) -xs = (1, 4, 4, 9, 4, 1) -ys = (2, 5, 8, 10, 1, 2) -zs = (10, 3, 8, 9, 1, 8) - -for zdir, x, y, z in zip(zdirs, xs, ys, zs): - label = '(%d, %d, %d), dir=%s' % (x, y, z, zdir) - ax.text(x, y, z, label, zdir) - -# Demo 2: color -ax.text(9, 0, 0, "red", color='red') - -# Demo 3: text2D -# Placement 0, 0 would be the bottom left, 1, 1 would be the top right. -ax.text2D(0.05, 0.95, "2D Text", transform=ax.transAxes) - -# Tweaking display region and labels -ax.set_xlim(0, 10) -ax.set_ylim(0, 10) -ax.set_zlim(0, 10) -ax.set_xlabel('X axis') -ax.set_ylabel('Y axis') -ax.set_zlabel('Z axis') - -plt.show() diff --git a/_downloads/c4fed0d1844aa480572cb604997e8f0d/boxplot_plot.py b/_downloads/c4fed0d1844aa480572cb604997e8f0d/boxplot_plot.py deleted file mode 120000 index ea63911e368..00000000000 --- a/_downloads/c4fed0d1844aa480572cb604997e8f0d/boxplot_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c4fed0d1844aa480572cb604997e8f0d/boxplot_plot.py \ No newline at end of file diff --git a/_downloads/c4ff15a770abdb9bab4fcdd68585cd73/keypress_demo.ipynb b/_downloads/c4ff15a770abdb9bab4fcdd68585cd73/keypress_demo.ipynb deleted file mode 120000 index 11b69cec949..00000000000 --- a/_downloads/c4ff15a770abdb9bab4fcdd68585cd73/keypress_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c4ff15a770abdb9bab4fcdd68585cd73/keypress_demo.ipynb \ No newline at end of file diff --git a/_downloads/c4ffdc5a5ec4701904e9e7fe39d8defa/annotations.py b/_downloads/c4ffdc5a5ec4701904e9e7fe39d8defa/annotations.py deleted file mode 120000 index 3741d553356..00000000000 --- a/_downloads/c4ffdc5a5ec4701904e9e7fe39d8defa/annotations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c4ffdc5a5ec4701904e9e7fe39d8defa/annotations.py \ No newline at end of file diff --git a/_downloads/c5020c475c83fbee4e470a9caa7535a7/svg_filter_pie.ipynb b/_downloads/c5020c475c83fbee4e470a9caa7535a7/svg_filter_pie.ipynb deleted file mode 120000 index d78a04fd36b..00000000000 --- a/_downloads/c5020c475c83fbee4e470a9caa7535a7/svg_filter_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c5020c475c83fbee4e470a9caa7535a7/svg_filter_pie.ipynb \ No newline at end of file diff --git a/_downloads/c5095bdc3c9af860353f6bbbebeb97e0/bbox_intersect.py b/_downloads/c5095bdc3c9af860353f6bbbebeb97e0/bbox_intersect.py deleted file mode 120000 index 71e3d4e8eec..00000000000 --- a/_downloads/c5095bdc3c9af860353f6bbbebeb97e0/bbox_intersect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c5095bdc3c9af860353f6bbbebeb97e0/bbox_intersect.py \ No newline at end of file diff --git a/_downloads/c50ddb5f94c88229b4c9554b9d769826/coords_demo.py b/_downloads/c50ddb5f94c88229b4c9554b9d769826/coords_demo.py deleted file mode 120000 index 3e6464a1caa..00000000000 --- a/_downloads/c50ddb5f94c88229b4c9554b9d769826/coords_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c50ddb5f94c88229b4c9554b9d769826/coords_demo.py \ No newline at end of file diff --git a/_downloads/c50e27d7baf2ecea28bbdb23ad9459c9/patheffects_guide.ipynb b/_downloads/c50e27d7baf2ecea28bbdb23ad9459c9/patheffects_guide.ipynb deleted file mode 120000 index 5d9557c14b5..00000000000 --- a/_downloads/c50e27d7baf2ecea28bbdb23ad9459c9/patheffects_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c50e27d7baf2ecea28bbdb23ad9459c9/patheffects_guide.ipynb \ No newline at end of file diff --git a/_downloads/c50e44f1b7ebcda51fc604ca7c72d28a/share_axis_lims_views.ipynb b/_downloads/c50e44f1b7ebcda51fc604ca7c72d28a/share_axis_lims_views.ipynb deleted file mode 120000 index d1a132c5434..00000000000 --- a/_downloads/c50e44f1b7ebcda51fc604ca7c72d28a/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c50e44f1b7ebcda51fc604ca7c72d28a/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/c51197e1e444b0872521c05699f1d266/simple_axes_divider1.ipynb b/_downloads/c51197e1e444b0872521c05699f1d266/simple_axes_divider1.ipynb deleted file mode 100644 index 210ed623e8d..00000000000 --- a/_downloads/c51197e1e444b0872521c05699f1d266/simple_axes_divider1.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axes Divider 1\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import Size, Divider\nimport matplotlib.pyplot as plt\n\n\nfig1 = plt.figure(1, (6, 6))\n\n# fixed size in inch\nhoriz = [Size.Fixed(1.), Size.Fixed(.5), Size.Fixed(1.5),\n Size.Fixed(.5)]\nvert = [Size.Fixed(1.5), Size.Fixed(.5), Size.Fixed(1.)]\n\nrect = (0.1, 0.1, 0.8, 0.8)\n# divide the axes rectangle into grid whose size is specified by horiz * vert\ndivider = Divider(fig1, rect, horiz, vert, aspect=False)\n\n# the rect parameter will be ignore as we will set axes_locator\nax1 = fig1.add_axes(rect, label=\"1\")\nax2 = fig1.add_axes(rect, label=\"2\")\nax3 = fig1.add_axes(rect, label=\"3\")\nax4 = fig1.add_axes(rect, label=\"4\")\n\nax1.set_axes_locator(divider.new_locator(nx=0, ny=0))\nax2.set_axes_locator(divider.new_locator(nx=0, ny=2))\nax3.set_axes_locator(divider.new_locator(nx=2, ny=2))\nax4.set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c51fdb0c1c3dbfb87a5a916decfefffe/random_walk.ipynb b/_downloads/c51fdb0c1c3dbfb87a5a916decfefffe/random_walk.ipynb deleted file mode 120000 index 7f2d44d3052..00000000000 --- a/_downloads/c51fdb0c1c3dbfb87a5a916decfefffe/random_walk.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c51fdb0c1c3dbfb87a5a916decfefffe/random_walk.ipynb \ No newline at end of file diff --git a/_downloads/c528bcbdb36cf8e251a71fb57f721d9e/fig_x.ipynb b/_downloads/c528bcbdb36cf8e251a71fb57f721d9e/fig_x.ipynb deleted file mode 100644 index 6ed48cf4450..00000000000 --- a/_downloads/c528bcbdb36cf8e251a71fb57f721d9e/fig_x.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Adding lines to figures\n\n\nAdding lines to a figure without any axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.lines as lines\n\n\nfig = plt.figure()\nl1 = lines.Line2D([0, 1], [0, 1], transform=fig.transFigure, figure=fig)\nl2 = lines.Line2D([0, 1], [1, 0], transform=fig.transFigure, figure=fig)\nfig.lines.extend([l1, l2])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.figure\nmatplotlib.lines\nmatplotlib.lines.Line2D" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c52eb5c89b2b41c7a4848a4a7c0649b2/nested_pie.py b/_downloads/c52eb5c89b2b41c7a4848a4a7c0649b2/nested_pie.py deleted file mode 120000 index 418144a2d73..00000000000 --- a/_downloads/c52eb5c89b2b41c7a4848a4a7c0649b2/nested_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c52eb5c89b2b41c7a4848a4a7c0649b2/nested_pie.py \ No newline at end of file diff --git a/_downloads/c52f8b4291b2ebdd8a28942c5b786190/path_tutorial.ipynb b/_downloads/c52f8b4291b2ebdd8a28942c5b786190/path_tutorial.ipynb deleted file mode 120000 index 506b1fc5cd9..00000000000 --- a/_downloads/c52f8b4291b2ebdd8a28942c5b786190/path_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c52f8b4291b2ebdd8a28942c5b786190/path_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/c53046419d84d1eb912e1ce17dcc1789/demo_floating_axes.py b/_downloads/c53046419d84d1eb912e1ce17dcc1789/demo_floating_axes.py deleted file mode 120000 index 28b393fce88..00000000000 --- a/_downloads/c53046419d84d1eb912e1ce17dcc1789/demo_floating_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c53046419d84d1eb912e1ce17dcc1789/demo_floating_axes.py \ No newline at end of file diff --git a/_downloads/c5313a609d2240ea8f3acc2e5b17503c/resample.py b/_downloads/c5313a609d2240ea8f3acc2e5b17503c/resample.py deleted file mode 120000 index 26d5780cf62..00000000000 --- a/_downloads/c5313a609d2240ea8f3acc2e5b17503c/resample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c5313a609d2240ea8f3acc2e5b17503c/resample.py \ No newline at end of file diff --git a/_downloads/c53b1cd1f8ee014b889b4ffc9e7f94cd/boxplot.py b/_downloads/c53b1cd1f8ee014b889b4ffc9e7f94cd/boxplot.py deleted file mode 100644 index 80586c75a2c..00000000000 --- a/_downloads/c53b1cd1f8ee014b889b4ffc9e7f94cd/boxplot.py +++ /dev/null @@ -1,97 +0,0 @@ -""" -================================= -Artist customization in box plots -================================= - -This example demonstrates how to use the various kwargs -to fully customize box plots. The first figure demonstrates -how to remove and add individual components (note that the -mean is the only value not shown by default). The second -figure demonstrates how the styles of the artists can -be customized. It also demonstrates how to set the limit -of the whiskers to specific percentiles (lower right axes) - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf - -""" - -import numpy as np -import matplotlib.pyplot as plt - -# fake data -np.random.seed(19680801) -data = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75) -labels = list('ABCD') -fs = 10 # fontsize - -############################################################################### -# Demonstrate how to toggle the display of different elements: - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True) -axes[0, 0].boxplot(data, labels=labels) -axes[0, 0].set_title('Default', fontsize=fs) - -axes[0, 1].boxplot(data, labels=labels, showmeans=True) -axes[0, 1].set_title('showmeans=True', fontsize=fs) - -axes[0, 2].boxplot(data, labels=labels, showmeans=True, meanline=True) -axes[0, 2].set_title('showmeans=True,\nmeanline=True', fontsize=fs) - -axes[1, 0].boxplot(data, labels=labels, showbox=False, showcaps=False) -tufte_title = 'Tufte Style \n(showbox=False,\nshowcaps=False)' -axes[1, 0].set_title(tufte_title, fontsize=fs) - -axes[1, 1].boxplot(data, labels=labels, notch=True, bootstrap=10000) -axes[1, 1].set_title('notch=True,\nbootstrap=10000', fontsize=fs) - -axes[1, 2].boxplot(data, labels=labels, showfliers=False) -axes[1, 2].set_title('showfliers=False', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.subplots_adjust(hspace=0.4) -plt.show() - - -############################################################################### -# Demonstrate how to customize the display different elements: - -boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod') -flierprops = dict(marker='o', markerfacecolor='green', markersize=12, - linestyle='none') -medianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick') -meanpointprops = dict(marker='D', markeredgecolor='black', - markerfacecolor='firebrick') -meanlineprops = dict(linestyle='--', linewidth=2.5, color='purple') - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True) -axes[0, 0].boxplot(data, boxprops=boxprops) -axes[0, 0].set_title('Custom boxprops', fontsize=fs) - -axes[0, 1].boxplot(data, flierprops=flierprops, medianprops=medianprops) -axes[0, 1].set_title('Custom medianprops\nand flierprops', fontsize=fs) - -axes[0, 2].boxplot(data, whis='range') -axes[0, 2].set_title('whis="range"', fontsize=fs) - -axes[1, 0].boxplot(data, meanprops=meanpointprops, meanline=False, - showmeans=True) -axes[1, 0].set_title('Custom mean\nas point', fontsize=fs) - -axes[1, 1].boxplot(data, meanprops=meanlineprops, meanline=True, - showmeans=True) -axes[1, 1].set_title('Custom mean\nas line', fontsize=fs) - -axes[1, 2].boxplot(data, whis=[15, 85]) -axes[1, 2].set_title('whis=[15, 85]\n#percentiles', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.suptitle("I never said they'd be pretty") -fig.subplots_adjust(hspace=0.4) -plt.show() diff --git a/_downloads/c53f51aeb28d080a340f539601ec63a4/axes_demo.py b/_downloads/c53f51aeb28d080a340f539601ec63a4/axes_demo.py deleted file mode 120000 index e1c74d3449b..00000000000 --- a/_downloads/c53f51aeb28d080a340f539601ec63a4/axes_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c53f51aeb28d080a340f539601ec63a4/axes_demo.py \ No newline at end of file diff --git a/_downloads/c53f9446a003863bb62ac816277a0163/embedding_in_qt_sgskip.ipynb b/_downloads/c53f9446a003863bb62ac816277a0163/embedding_in_qt_sgskip.ipynb deleted file mode 100644 index 7e07d5f27cb..00000000000 --- a/_downloads/c53f9446a003863bb62ac816277a0163/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in Qt\n\n\nSimple Qt application embedding Matplotlib canvases. This program will work\nequally well using Qt4 and Qt5. Either version of Qt can be selected (for\nexample) by setting the ``MPLBACKEND`` environment variable to \"Qt4Agg\" or\n\"Qt5Agg\", or by first importing the desired version of PyQt.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import sys\nimport time\n\nimport numpy as np\n\nfrom matplotlib.backends.qt_compat import QtCore, QtWidgets, is_pyqt5\nif is_pyqt5():\n from matplotlib.backends.backend_qt5agg import (\n FigureCanvas, NavigationToolbar2QT as NavigationToolbar)\nelse:\n from matplotlib.backends.backend_qt4agg import (\n FigureCanvas, NavigationToolbar2QT as NavigationToolbar)\nfrom matplotlib.figure import Figure\n\n\nclass ApplicationWindow(QtWidgets.QMainWindow):\n def __init__(self):\n super().__init__()\n self._main = QtWidgets.QWidget()\n self.setCentralWidget(self._main)\n layout = QtWidgets.QVBoxLayout(self._main)\n\n static_canvas = FigureCanvas(Figure(figsize=(5, 3)))\n layout.addWidget(static_canvas)\n self.addToolBar(NavigationToolbar(static_canvas, self))\n\n dynamic_canvas = FigureCanvas(Figure(figsize=(5, 3)))\n layout.addWidget(dynamic_canvas)\n self.addToolBar(QtCore.Qt.BottomToolBarArea,\n NavigationToolbar(dynamic_canvas, self))\n\n self._static_ax = static_canvas.figure.subplots()\n t = np.linspace(0, 10, 501)\n self._static_ax.plot(t, np.tan(t), \".\")\n\n self._dynamic_ax = dynamic_canvas.figure.subplots()\n self._timer = dynamic_canvas.new_timer(\n 100, [(self._update_canvas, (), {})])\n self._timer.start()\n\n def _update_canvas(self):\n self._dynamic_ax.clear()\n t = np.linspace(0, 10, 101)\n # Shift the sinusoid as a function of time.\n self._dynamic_ax.plot(t, np.sin(t + time.time()))\n self._dynamic_ax.figure.canvas.draw()\n\n\nif __name__ == \"__main__\":\n qapp = QtWidgets.QApplication(sys.argv)\n app = ApplicationWindow()\n app.show()\n qapp.exec_()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c53f98993a95a4066ecfc6ff66a73658/bachelors_degrees_by_gender.ipynb b/_downloads/c53f98993a95a4066ecfc6ff66a73658/bachelors_degrees_by_gender.ipynb deleted file mode 120000 index d70ff855005..00000000000 --- a/_downloads/c53f98993a95a4066ecfc6ff66a73658/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c53f98993a95a4066ecfc6ff66a73658/bachelors_degrees_by_gender.ipynb \ No newline at end of file diff --git a/_downloads/c541bf82ea53e9f8f59f9cc6c3ac44f0/pie_demo2.ipynb b/_downloads/c541bf82ea53e9f8f59f9cc6c3ac44f0/pie_demo2.ipynb deleted file mode 100644 index c382c5a8e55..00000000000 --- a/_downloads/c541bf82ea53e9f8f59f9cc6c3ac44f0/pie_demo2.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pie Demo2\n\n\nMake a pie charts using :meth:`~.axes.Axes.pie`.\n\nThis example demonstrates some pie chart features like labels, varying size,\nautolabeling the percentage, offsetting a slice and adding a shadow.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Some data\nlabels = 'Frogs', 'Hogs', 'Dogs', 'Logs'\nfracs = [15, 30, 45, 10]\n\n# Make figure and axes\nfig, axs = plt.subplots(2, 2)\n\n# A standard pie plot\naxs[0, 0].pie(fracs, labels=labels, autopct='%1.1f%%', shadow=True)\n\n# Shift the second slice using explode\naxs[0, 1].pie(fracs, labels=labels, autopct='%.0f%%', shadow=True,\n explode=(0, 0.1, 0, 0))\n\n# Adapt radius and text size for a smaller pie\npatches, texts, autotexts = axs[1, 0].pie(fracs, labels=labels,\n autopct='%.0f%%',\n textprops={'size': 'smaller'},\n shadow=True, radius=0.5)\n# Make percent texts even smaller\nplt.setp(autotexts, size='x-small')\nautotexts[0].set_color('white')\n\n# Use a smaller explode and turn of the shadow for better visibility\npatches, texts, autotexts = axs[1, 1].pie(fracs, labels=labels,\n autopct='%.0f%%',\n textprops={'size': 'smaller'},\n shadow=False, radius=0.5,\n explode=(0, 0.05, 0, 0))\nplt.setp(autotexts, size='x-small')\nautotexts[0].set_color('white')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pie\nmatplotlib.pyplot.pie" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c54cec9b793b348604f00991c32c87a2/multiprocess_sgskip.py b/_downloads/c54cec9b793b348604f00991c32c87a2/multiprocess_sgskip.py deleted file mode 100644 index 517fdc39255..00000000000 --- a/_downloads/c54cec9b793b348604f00991c32c87a2/multiprocess_sgskip.py +++ /dev/null @@ -1,106 +0,0 @@ -""" -============ -Multiprocess -============ - -Demo of using multiprocessing for generating data in one process and -plotting in another. - -Written by Robert Cimrman -""" - -import multiprocessing as mp -import time - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -############################################################################### -# -# Processing Class -# ================ -# -# This class plots data it receives from a pipe. -# - - -class ProcessPlotter(object): - def __init__(self): - self.x = [] - self.y = [] - - def terminate(self): - plt.close('all') - - def call_back(self): - while self.pipe.poll(): - command = self.pipe.recv() - if command is None: - self.terminate() - return False - else: - self.x.append(command[0]) - self.y.append(command[1]) - self.ax.plot(self.x, self.y, 'ro') - self.fig.canvas.draw() - return True - - def __call__(self, pipe): - print('starting plotter...') - - self.pipe = pipe - self.fig, self.ax = plt.subplots() - timer = self.fig.canvas.new_timer(interval=1000) - timer.add_callback(self.call_back) - timer.start() - - print('...done') - plt.show() - -############################################################################### -# -# Plotting class -# ============== -# -# This class uses multiprocessing to spawn a process to run code from the -# class above. When initialized, it creates a pipe and an instance of -# ``ProcessPlotter`` which will be run in a separate process. -# -# When run from the command line, the parent process sends data to the spawned -# process which is then plotted via the callback function specified in -# ``ProcessPlotter:__call__``. -# - - -class NBPlot(object): - def __init__(self): - self.plot_pipe, plotter_pipe = mp.Pipe() - self.plotter = ProcessPlotter() - self.plot_process = mp.Process( - target=self.plotter, args=(plotter_pipe,), daemon=True) - self.plot_process.start() - - def plot(self, finished=False): - send = self.plot_pipe.send - if finished: - send(None) - else: - data = np.random.random(2) - send(data) - - -def main(): - pl = NBPlot() - for ii in range(10): - pl.plot() - time.sleep(0.5) - pl.plot(finished=True) - - -if __name__ == '__main__': - if plt.get_backend() == "MacOSX": - mp.set_start_method("forkserver") - main() diff --git a/_downloads/c54f37aca0e6188e16d86056e4596788/embedding_in_tk_sgskip.py b/_downloads/c54f37aca0e6188e16d86056e4596788/embedding_in_tk_sgskip.py deleted file mode 120000 index 68d23ff54be..00000000000 --- a/_downloads/c54f37aca0e6188e16d86056e4596788/embedding_in_tk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c54f37aca0e6188e16d86056e4596788/embedding_in_tk_sgskip.py \ No newline at end of file diff --git a/_downloads/c565f4e7c30126a74656dfb7002fd553/coords_report.ipynb b/_downloads/c565f4e7c30126a74656dfb7002fd553/coords_report.ipynb deleted file mode 100644 index f629566ec54..00000000000 --- a/_downloads/c565f4e7c30126a74656dfb7002fd553/coords_report.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Coords Report\n\n\nOverride the default reporting of coords.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef millions(x):\n return '$%1.1fM' % (x*1e-6)\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx = np.random.rand(20)\ny = 1e7*np.random.rand(20)\n\nfig, ax = plt.subplots()\nax.fmt_ydata = millions\nplt.plot(x, y, 'o')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c56b886d4ce4555a31768b6d5e456be0/image_slices_viewer.py b/_downloads/c56b886d4ce4555a31768b6d5e456be0/image_slices_viewer.py deleted file mode 120000 index aefa9918b20..00000000000 --- a/_downloads/c56b886d4ce4555a31768b6d5e456be0/image_slices_viewer.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c56b886d4ce4555a31768b6d5e456be0/image_slices_viewer.py \ No newline at end of file diff --git a/_downloads/c571c17fa6a5a48df071756700b86187/date_precision_and_epochs.py b/_downloads/c571c17fa6a5a48df071756700b86187/date_precision_and_epochs.py deleted file mode 120000 index 43caf1582c9..00000000000 --- a/_downloads/c571c17fa6a5a48df071756700b86187/date_precision_and_epochs.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/c571c17fa6a5a48df071756700b86187/date_precision_and_epochs.py \ No newline at end of file diff --git a/_downloads/c581f9209a5a198025df38f57b436228/spine_placement_demo.py b/_downloads/c581f9209a5a198025df38f57b436228/spine_placement_demo.py deleted file mode 120000 index 8305eba1ed7..00000000000 --- a/_downloads/c581f9209a5a198025df38f57b436228/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c581f9209a5a198025df38f57b436228/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/c58c9876bfeb8400f8af1f2f4b73ad3d/check_buttons.py b/_downloads/c58c9876bfeb8400f8af1f2f4b73ad3d/check_buttons.py deleted file mode 120000 index 89a857c7389..00000000000 --- a/_downloads/c58c9876bfeb8400f8af1f2f4b73ad3d/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c58c9876bfeb8400f8af1f2f4b73ad3d/check_buttons.py \ No newline at end of file diff --git a/_downloads/c58f7f66a7206520d8eef2c5a8a20d72/demo_edge_colorbar.py b/_downloads/c58f7f66a7206520d8eef2c5a8a20d72/demo_edge_colorbar.py deleted file mode 120000 index d9b3a075cb7..00000000000 --- a/_downloads/c58f7f66a7206520d8eef2c5a8a20d72/demo_edge_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c58f7f66a7206520d8eef2c5a8a20d72/demo_edge_colorbar.py \ No newline at end of file diff --git a/_downloads/c599f065d9429b975dc871cae0c191a4/arrow_demo.py b/_downloads/c599f065d9429b975dc871cae0c191a4/arrow_demo.py deleted file mode 100644 index cc1f8dd127a..00000000000 --- a/_downloads/c599f065d9429b975dc871cae0c191a4/arrow_demo.py +++ /dev/null @@ -1,303 +0,0 @@ -""" -========== -Arrow Demo -========== - -Arrow drawing example for the new fancy_arrow facilities. - -Code contributed by: Rob Knight - -usage: - - python arrow_demo.py realistic|full|sample|extreme - - -""" -import matplotlib.pyplot as plt -import numpy as np - -rates_to_bases = {'r1': 'AT', 'r2': 'TA', 'r3': 'GA', 'r4': 'AG', 'r5': 'CA', - 'r6': 'AC', 'r7': 'GT', 'r8': 'TG', 'r9': 'CT', 'r10': 'TC', - 'r11': 'GC', 'r12': 'CG'} -numbered_bases_to_rates = {v: k for k, v in rates_to_bases.items()} -lettered_bases_to_rates = {v: 'r' + v for k, v in rates_to_bases.items()} - - -def make_arrow_plot(data, size=4, display='length', shape='right', - max_arrow_width=0.03, arrow_sep=0.02, alpha=0.5, - normalize_data=False, ec=None, labelcolor=None, - head_starts_at_zero=True, - rate_labels=lettered_bases_to_rates, - **kwargs): - """Makes an arrow plot. - - Parameters: - - data: dict with probabilities for the bases and pair transitions. - size: size of the graph in inches. - display: 'length', 'width', or 'alpha' for arrow property to change. - shape: 'full', 'left', or 'right' for full or half arrows. - max_arrow_width: maximum width of an arrow, data coordinates. - arrow_sep: separation between arrows in a pair, data coordinates. - alpha: maximum opacity of arrows, default 0.8. - - **kwargs can be anything allowed by a Arrow object, e.g. - linewidth and edgecolor. - """ - - plt.xlim(-0.5, 1.5) - plt.ylim(-0.5, 1.5) - plt.gcf().set_size_inches(size, size) - plt.xticks([]) - plt.yticks([]) - max_text_size = size * 12 - min_text_size = size - label_text_size = size * 2.5 - text_params = {'ha': 'center', 'va': 'center', 'family': 'sans-serif', - 'fontweight': 'bold'} - r2 = np.sqrt(2) - - deltas = { - 'AT': (1, 0), - 'TA': (-1, 0), - 'GA': (0, 1), - 'AG': (0, -1), - 'CA': (-1 / r2, 1 / r2), - 'AC': (1 / r2, -1 / r2), - 'GT': (1 / r2, 1 / r2), - 'TG': (-1 / r2, -1 / r2), - 'CT': (0, 1), - 'TC': (0, -1), - 'GC': (1, 0), - 'CG': (-1, 0)} - - colors = { - 'AT': 'r', - 'TA': 'k', - 'GA': 'g', - 'AG': 'r', - 'CA': 'b', - 'AC': 'r', - 'GT': 'g', - 'TG': 'k', - 'CT': 'b', - 'TC': 'k', - 'GC': 'g', - 'CG': 'b'} - - label_positions = { - 'AT': 'center', - 'TA': 'center', - 'GA': 'center', - 'AG': 'center', - 'CA': 'left', - 'AC': 'left', - 'GT': 'left', - 'TG': 'left', - 'CT': 'center', - 'TC': 'center', - 'GC': 'center', - 'CG': 'center'} - - def do_fontsize(k): - return float(np.clip(max_text_size * np.sqrt(data[k]), - min_text_size, max_text_size)) - - A = plt.text(0, 1, '$A_3$', color='r', size=do_fontsize('A'), - **text_params) - T = plt.text(1, 1, '$T_3$', color='k', size=do_fontsize('T'), - **text_params) - G = plt.text(0, 0, '$G_3$', color='g', size=do_fontsize('G'), - **text_params) - C = plt.text(1, 0, '$C_3$', color='b', size=do_fontsize('C'), - **text_params) - - arrow_h_offset = 0.25 # data coordinates, empirically determined - max_arrow_length = 1 - 2 * arrow_h_offset - max_head_width = 2.5 * max_arrow_width - max_head_length = 2 * max_arrow_width - arrow_params = {'length_includes_head': True, 'shape': shape, - 'head_starts_at_zero': head_starts_at_zero} - sf = 0.6 # max arrow size represents this in data coords - - d = (r2 / 2 + arrow_h_offset - 0.5) / r2 # distance for diags - r2v = arrow_sep / r2 # offset for diags - - # tuple of x, y for start position - positions = { - 'AT': (arrow_h_offset, 1 + arrow_sep), - 'TA': (1 - arrow_h_offset, 1 - arrow_sep), - 'GA': (-arrow_sep, arrow_h_offset), - 'AG': (arrow_sep, 1 - arrow_h_offset), - 'CA': (1 - d - r2v, d - r2v), - 'AC': (d + r2v, 1 - d + r2v), - 'GT': (d - r2v, d + r2v), - 'TG': (1 - d + r2v, 1 - d - r2v), - 'CT': (1 - arrow_sep, arrow_h_offset), - 'TC': (1 + arrow_sep, 1 - arrow_h_offset), - 'GC': (arrow_h_offset, arrow_sep), - 'CG': (1 - arrow_h_offset, -arrow_sep)} - - if normalize_data: - # find maximum value for rates, i.e. where keys are 2 chars long - max_val = max((v for k, v in data.items() if len(k) == 2), default=0) - # divide rates by max val, multiply by arrow scale factor - for k, v in data.items(): - data[k] = v / max_val * sf - - def draw_arrow(pair, alpha=alpha, ec=ec, labelcolor=labelcolor): - # set the length of the arrow - if display == 'length': - length = (max_head_length - + data[pair] / sf * (max_arrow_length - max_head_length)) - else: - length = max_arrow_length - # set the transparency of the arrow - if display == 'alpha': - alpha = min(data[pair] / sf, alpha) - - # set the width of the arrow - if display == 'width': - scale = data[pair] / sf - width = max_arrow_width * scale - head_width = max_head_width * scale - head_length = max_head_length * scale - else: - width = max_arrow_width - head_width = max_head_width - head_length = max_head_length - - fc = colors[pair] - ec = ec or fc - - x_scale, y_scale = deltas[pair] - x_pos, y_pos = positions[pair] - plt.arrow(x_pos, y_pos, x_scale * length, y_scale * length, - fc=fc, ec=ec, alpha=alpha, width=width, - head_width=head_width, head_length=head_length, - **arrow_params) - - # figure out coordinates for text - # if drawing relative to base: x and y are same as for arrow - # dx and dy are one arrow width left and up - # need to rotate based on direction of arrow, use x_scale and y_scale - # as sin x and cos x? - sx, cx = y_scale, x_scale - - where = label_positions[pair] - if where == 'left': - orig_position = 3 * np.array([[max_arrow_width, max_arrow_width]]) - elif where == 'absolute': - orig_position = np.array([[max_arrow_length / 2.0, - 3 * max_arrow_width]]) - elif where == 'right': - orig_position = np.array([[length - 3 * max_arrow_width, - 3 * max_arrow_width]]) - elif where == 'center': - orig_position = np.array([[length / 2.0, 3 * max_arrow_width]]) - else: - raise ValueError("Got unknown position parameter %s" % where) - - M = np.array([[cx, sx], [-sx, cx]]) - coords = np.dot(orig_position, M) + [[x_pos, y_pos]] - x, y = np.ravel(coords) - orig_label = rate_labels[pair] - label = r'$%s_{_{\mathrm{%s}}}$' % (orig_label[0], orig_label[1:]) - - plt.text(x, y, label, size=label_text_size, ha='center', va='center', - color=labelcolor or fc) - - for p in sorted(positions): - draw_arrow(p) - - -# test data -all_on_max = dict([(i, 1) for i in 'TCAG'] + - [(i + j, 0.6) for i in 'TCAG' for j in 'TCAG']) - -realistic_data = { - 'A': 0.4, - 'T': 0.3, - 'G': 0.5, - 'C': 0.2, - 'AT': 0.4, - 'AC': 0.3, - 'AG': 0.2, - 'TA': 0.2, - 'TC': 0.3, - 'TG': 0.4, - 'CT': 0.2, - 'CG': 0.3, - 'CA': 0.2, - 'GA': 0.1, - 'GT': 0.4, - 'GC': 0.1} - -extreme_data = { - 'A': 0.75, - 'T': 0.10, - 'G': 0.10, - 'C': 0.05, - 'AT': 0.6, - 'AC': 0.3, - 'AG': 0.1, - 'TA': 0.02, - 'TC': 0.3, - 'TG': 0.01, - 'CT': 0.2, - 'CG': 0.5, - 'CA': 0.2, - 'GA': 0.1, - 'GT': 0.4, - 'GC': 0.2} - -sample_data = { - 'A': 0.2137, - 'T': 0.3541, - 'G': 0.1946, - 'C': 0.2376, - 'AT': 0.0228, - 'AC': 0.0684, - 'AG': 0.2056, - 'TA': 0.0315, - 'TC': 0.0629, - 'TG': 0.0315, - 'CT': 0.1355, - 'CG': 0.0401, - 'CA': 0.0703, - 'GA': 0.1824, - 'GT': 0.0387, - 'GC': 0.1106} - - -if __name__ == '__main__': - from sys import argv - d = None - if len(argv) > 1: - if argv[1] == 'full': - d = all_on_max - scaled = False - elif argv[1] == 'extreme': - d = extreme_data - scaled = False - elif argv[1] == 'realistic': - d = realistic_data - scaled = False - elif argv[1] == 'sample': - d = sample_data - scaled = True - if d is None: - d = all_on_max - scaled = False - if len(argv) > 2: - display = argv[2] - else: - display = 'length' - - size = 4 - plt.figure(figsize=(size, size)) - - make_arrow_plot(d, display=display, linewidth=0.001, edgecolor=None, - normalize_data=scaled, head_starts_at_zero=True, size=size) - - plt.show() diff --git a/_downloads/c59a2be9c3c5afff6594c0989e27fc6f/gridspec_nested.py b/_downloads/c59a2be9c3c5afff6594c0989e27fc6f/gridspec_nested.py deleted file mode 120000 index 05be7d8a23d..00000000000 --- a/_downloads/c59a2be9c3c5afff6594c0989e27fc6f/gridspec_nested.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c59a2be9c3c5afff6594c0989e27fc6f/gridspec_nested.py \ No newline at end of file diff --git a/_downloads/c59b57a1b7c33d9a31ea149e02254fac/embedding_in_gtk3_sgskip.ipynb b/_downloads/c59b57a1b7c33d9a31ea149e02254fac/embedding_in_gtk3_sgskip.ipynb deleted file mode 120000 index 88217e77914..00000000000 --- a/_downloads/c59b57a1b7c33d9a31ea149e02254fac/embedding_in_gtk3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c59b57a1b7c33d9a31ea149e02254fac/embedding_in_gtk3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c5a397303291bd1f1e9cebe31505c0c6/mri_with_eeg.py b/_downloads/c5a397303291bd1f1e9cebe31505c0c6/mri_with_eeg.py deleted file mode 120000 index 39a224f9faf..00000000000 --- a/_downloads/c5a397303291bd1f1e9cebe31505c0c6/mri_with_eeg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c5a397303291bd1f1e9cebe31505c0c6/mri_with_eeg.py \ No newline at end of file diff --git a/_downloads/c5b98be42d49ffc35762f34731ce2247/pick_event_demo.py b/_downloads/c5b98be42d49ffc35762f34731ce2247/pick_event_demo.py deleted file mode 120000 index 4366a41b840..00000000000 --- a/_downloads/c5b98be42d49ffc35762f34731ce2247/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c5b98be42d49ffc35762f34731ce2247/pick_event_demo.py \ No newline at end of file diff --git a/_downloads/c5bc3990deaf514c61124a190d02118a/ginput_manual_clabel_sgskip.ipynb b/_downloads/c5bc3990deaf514c61124a190d02118a/ginput_manual_clabel_sgskip.ipynb deleted file mode 120000 index 869a3a46d24..00000000000 --- a/_downloads/c5bc3990deaf514c61124a190d02118a/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c5bc3990deaf514c61124a190d02118a/ginput_manual_clabel_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c5e045e047c1fde5aa0501aac26fc158/inset_locator_demo.py b/_downloads/c5e045e047c1fde5aa0501aac26fc158/inset_locator_demo.py deleted file mode 120000 index 86851420fdf..00000000000 --- a/_downloads/c5e045e047c1fde5aa0501aac26fc158/inset_locator_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c5e045e047c1fde5aa0501aac26fc158/inset_locator_demo.py \ No newline at end of file diff --git a/_downloads/c5e77d3263538abd8d35ff3de2c447dd/pie_demo2.py b/_downloads/c5e77d3263538abd8d35ff3de2c447dd/pie_demo2.py deleted file mode 100644 index fc173eda78e..00000000000 --- a/_downloads/c5e77d3263538abd8d35ff3de2c447dd/pie_demo2.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -========= -Pie Demo2 -========= - -Make a pie charts using :meth:`~.axes.Axes.pie`. - -This example demonstrates some pie chart features like labels, varying size, -autolabeling the percentage, offsetting a slice and adding a shadow. -""" - -import matplotlib.pyplot as plt - -# Some data -labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' -fracs = [15, 30, 45, 10] - -# Make figure and axes -fig, axs = plt.subplots(2, 2) - -# A standard pie plot -axs[0, 0].pie(fracs, labels=labels, autopct='%1.1f%%', shadow=True) - -# Shift the second slice using explode -axs[0, 1].pie(fracs, labels=labels, autopct='%.0f%%', shadow=True, - explode=(0, 0.1, 0, 0)) - -# Adapt radius and text size for a smaller pie -patches, texts, autotexts = axs[1, 0].pie(fracs, labels=labels, - autopct='%.0f%%', - textprops={'size': 'smaller'}, - shadow=True, radius=0.5) -# Make percent texts even smaller -plt.setp(autotexts, size='x-small') -autotexts[0].set_color('white') - -# Use a smaller explode and turn of the shadow for better visibility -patches, texts, autotexts = axs[1, 1].pie(fracs, labels=labels, - autopct='%.0f%%', - textprops={'size': 'smaller'}, - shadow=False, radius=0.5, - explode=(0, 0.05, 0, 0)) -plt.setp(autotexts, size='x-small') -autotexts[0].set_color('white') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie diff --git a/_downloads/c5f51daa3012869b5b1ccefc69266cab/bar_demo2.py b/_downloads/c5f51daa3012869b5b1ccefc69266cab/bar_demo2.py deleted file mode 120000 index 3ffe95e7d20..00000000000 --- a/_downloads/c5f51daa3012869b5b1ccefc69266cab/bar_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c5f51daa3012869b5b1ccefc69266cab/bar_demo2.py \ No newline at end of file diff --git a/_downloads/c5fabf57743930875fae4885a310aa83/cursor_demo_sgskip.ipynb b/_downloads/c5fabf57743930875fae4885a310aa83/cursor_demo_sgskip.ipynb deleted file mode 120000 index f351b0c3743..00000000000 --- a/_downloads/c5fabf57743930875fae4885a310aa83/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/c5fabf57743930875fae4885a310aa83/cursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c5fc2f5e3c1599758f9f4842570c06d4/ticklabels_rotation.ipynb b/_downloads/c5fc2f5e3c1599758f9f4842570c06d4/ticklabels_rotation.ipynb deleted file mode 120000 index 25eaa62113e..00000000000 --- a/_downloads/c5fc2f5e3c1599758f9f4842570c06d4/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c5fc2f5e3c1599758f9f4842570c06d4/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/c60254cbe84cc61a7c76b249733e69ab/sankey_links.ipynb b/_downloads/c60254cbe84cc61a7c76b249733e69ab/sankey_links.ipynb deleted file mode 120000 index f3c0ffd5cd0..00000000000 --- a/_downloads/c60254cbe84cc61a7c76b249733e69ab/sankey_links.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c60254cbe84cc61a7c76b249733e69ab/sankey_links.ipynb \ No newline at end of file diff --git a/_downloads/c607c64035a93a621ab5a050ee87c655/pie_and_donut_labels.py b/_downloads/c607c64035a93a621ab5a050ee87c655/pie_and_donut_labels.py deleted file mode 100644 index 237c5e71508..00000000000 --- a/_downloads/c607c64035a93a621ab5a050ee87c655/pie_and_donut_labels.py +++ /dev/null @@ -1,142 +0,0 @@ -""" -========================== -Labeling a pie and a donut -========================== - -Welcome to the matplotlib bakery. We will create a pie and a donut -chart through the :meth:`pie method ` and -show how to label them with a :meth:`legend ` -as well as with :meth:`annotations `. -""" - -############################################################################### -# As usual we would start by defining the imports and create a figure with -# subplots. -# Now it's time for the pie. Starting with a pie recipe, we create the data -# and a list of labels from it. -# -# We can provide a function to the ``autopct`` argument, which will expand -# automatic percentage labeling by showing absolute values; we calculate -# the latter back from relative data and the known sum of all values. -# -# We then create the pie and store the returned objects for later. -# The first returned element of the returned tuple is a list of the wedges. -# Those are -# :class:`matplotlib.patches.Wedge ` patches, which -# can directly be used as the handles for a legend. We can use the -# legend's ``bbox_to_anchor`` argument to position the legend outside of -# the pie. Here we use the axes coordinates ``(1, 0, 0.5, 1)`` together -# with the location ``"center left"``; i.e. -# the left central point of the legend will be at the left central point of the -# bounding box, spanning from ``(1,0)`` to ``(1.5,1)`` in axes coordinates. - -import numpy as np -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect="equal")) - -recipe = ["375 g flour", - "75 g sugar", - "250 g butter", - "300 g berries"] - -data = [float(x.split()[0]) for x in recipe] -ingredients = [x.split()[-1] for x in recipe] - - -def func(pct, allvals): - absolute = int(pct/100.*np.sum(allvals)) - return "{:.1f}%\n({:d} g)".format(pct, absolute) - - -wedges, texts, autotexts = ax.pie(data, autopct=lambda pct: func(pct, data), - textprops=dict(color="w")) - -ax.legend(wedges, ingredients, - title="Ingredients", - loc="center left", - bbox_to_anchor=(1, 0, 0.5, 1)) - -plt.setp(autotexts, size=8, weight="bold") - -ax.set_title("Matplotlib bakery: A pie") - -plt.show() - - -############################################################################### -# Now it's time for the donut. Starting with a donut recipe, we transcribe -# the data to numbers (converting 1 egg to 50 g), and directly plot the pie. -# The pie? Wait... it's going to be donut, is it not? -# Well, as we see here, the donut is a pie, having a certain ``width`` set to -# the wedges, which is different from its radius. It's as easy as it gets. -# This is done via the ``wedgeprops`` argument. -# -# We then want to label the wedges via -# :meth:`annotations `. We first create some -# dictionaries of common properties, which we can later pass as keyword -# argument. We then iterate over all wedges and for each -# -# * calculate the angle of the wedge's center, -# * from that obtain the coordinates of the point at that angle on the -# circumference, -# * determine the horizontal alignment of the text, depending on which side -# of the circle the point lies, -# * update the connection style with the obtained angle to have the annotation -# arrow point outwards from the donut, -# * finally, create the annotation with all the previously -# determined parameters. - - -fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect="equal")) - -recipe = ["225 g flour", - "90 g sugar", - "1 egg", - "60 g butter", - "100 ml milk", - "1/2 package of yeast"] - -data = [225, 90, 50, 60, 100, 5] - -wedges, texts = ax.pie(data, wedgeprops=dict(width=0.5), startangle=-40) - -bbox_props = dict(boxstyle="square,pad=0.3", fc="w", ec="k", lw=0.72) -kw = dict(arrowprops=dict(arrowstyle="-"), - bbox=bbox_props, zorder=0, va="center") - -for i, p in enumerate(wedges): - ang = (p.theta2 - p.theta1)/2. + p.theta1 - y = np.sin(np.deg2rad(ang)) - x = np.cos(np.deg2rad(ang)) - horizontalalignment = {-1: "right", 1: "left"}[int(np.sign(x))] - connectionstyle = "angle,angleA=0,angleB={}".format(ang) - kw["arrowprops"].update({"connectionstyle": connectionstyle}) - ax.annotate(recipe[i], xy=(x, y), xytext=(1.35*np.sign(x), 1.4*y), - horizontalalignment=horizontalalignment, **kw) - -ax.set_title("Matplotlib bakery: A donut") - -plt.show() - -############################################################################### -# And here it is, the donut. Note however, that if we were to use this recipe, -# the ingredients would suffice for around 6 donuts - producing one huge -# donut is untested and might result in kitchen errors. - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend diff --git a/_downloads/c60d8f9d7a4fe932899f8bd4e709d850/ellipse_with_units.ipynb b/_downloads/c60d8f9d7a4fe932899f8bd4e709d850/ellipse_with_units.ipynb deleted file mode 120000 index f3f2497e3e4..00000000000 --- a/_downloads/c60d8f9d7a4fe932899f8bd4e709d850/ellipse_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c60d8f9d7a4fe932899f8bd4e709d850/ellipse_with_units.ipynb \ No newline at end of file diff --git a/_downloads/c60ffc913f10652532a7fefd86af4f52/legend_demo.ipynb b/_downloads/c60ffc913f10652532a7fefd86af4f52/legend_demo.ipynb deleted file mode 120000 index a39f98fa036..00000000000 --- a/_downloads/c60ffc913f10652532a7fefd86af4f52/legend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c60ffc913f10652532a7fefd86af4f52/legend_demo.ipynb \ No newline at end of file diff --git a/_downloads/c61c6893f46781718d0e4424b50f22af/gallery_python.zip b/_downloads/c61c6893f46781718d0e4424b50f22af/gallery_python.zip deleted file mode 100644 index e27d42234de..00000000000 Binary files a/_downloads/c61c6893f46781718d0e4424b50f22af/gallery_python.zip and /dev/null differ diff --git a/_downloads/c61d3441398f643578a2d91d8efa65d6/color_cycle.py b/_downloads/c61d3441398f643578a2d91d8efa65d6/color_cycle.py deleted file mode 120000 index c369905b555..00000000000 --- a/_downloads/c61d3441398f643578a2d91d8efa65d6/color_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c61d3441398f643578a2d91d8efa65d6/color_cycle.py \ No newline at end of file diff --git a/_downloads/c61f62a317c5d9b78d454eac95cb0740/tricontour_smooth_user.ipynb b/_downloads/c61f62a317c5d9b78d454eac95cb0740/tricontour_smooth_user.ipynb deleted file mode 120000 index f68c6484a6f..00000000000 --- a/_downloads/c61f62a317c5d9b78d454eac95cb0740/tricontour_smooth_user.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c61f62a317c5d9b78d454eac95cb0740/tricontour_smooth_user.ipynb \ No newline at end of file diff --git a/_downloads/c621151c86eb12c1c6e429ea7ed6240d/whats_new_98_4_fill_between.py b/_downloads/c621151c86eb12c1c6e429ea7ed6240d/whats_new_98_4_fill_between.py deleted file mode 100644 index 8719a5428e0..00000000000 --- a/_downloads/c621151c86eb12c1c6e429ea7ed6240d/whats_new_98_4_fill_between.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -============ -Fill Between -============ - -Fill the area between two curves. -""" -import matplotlib.pyplot as plt -import numpy as np - -x = np.arange(-5, 5, 0.01) -y1 = -5*x*x + x + 10 -y2 = 5*x*x + x - -fig, ax = plt.subplots() -ax.plot(x, y1, x, y2, color='black') -ax.fill_between(x, y1, y2, where=y2 >y1, facecolor='yellow', alpha=0.5) -ax.fill_between(x, y1, y2, where=y2 <=y1, facecolor='red', alpha=0.5) -ax.set_title('Fill Between') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.fill_between diff --git a/_downloads/c6251455b63b3af370ad32c6b3102072/axis_equal_demo.ipynb b/_downloads/c6251455b63b3af370ad32c6b3102072/axis_equal_demo.ipynb deleted file mode 100644 index c59c8b33a7d..00000000000 --- a/_downloads/c6251455b63b3af370ad32c6b3102072/axis_equal_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Equal Demo\n\n\nHow to set and adjust plots with equal axis ratios.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Plot circle of radius 3.\n\nan = np.linspace(0, 2 * np.pi, 100)\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[0, 0].set_title('not equal, looks like ellipse', fontsize=10)\n\naxs[0, 1].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[0, 1].axis('equal')\naxs[0, 1].set_title('equal, looks like circle', fontsize=10)\n\naxs[1, 0].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[1, 0].axis('equal')\naxs[1, 0].set(xlim=(-3, 3), ylim=(-3, 3))\naxs[1, 0].set_title('still a circle, even after changing limits', fontsize=10)\n\naxs[1, 1].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[1, 1].set_aspect('equal', 'box')\naxs[1, 1].set_title('still a circle, auto-adjusted data limits', fontsize=10)\n\nfig.tight_layout()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c62d6d263eb84fb592c401fbb575253e/contourf3d.py b/_downloads/c62d6d263eb84fb592c401fbb575253e/contourf3d.py deleted file mode 100644 index 200cbef792e..00000000000 --- a/_downloads/c62d6d263eb84fb592c401fbb575253e/contourf3d.py +++ /dev/null @@ -1,25 +0,0 @@ -''' -=============== -Filled contours -=============== - -contourf differs from contour in that it creates filled contours, ie. -a discrete number of colours are used to shade the domain. - -This is like a contourf plot in 2D except that the shaded region corresponding -to the level c is graphed on the plane z=c. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -cset = ax.contourf(X, Y, Z, cmap=cm.coolwarm) - -ax.clabel(cset, fontsize=9, inline=1) - -plt.show() diff --git a/_downloads/c62e99ea33f0dc4137dc1a890be60664/inset_locator_demo.ipynb b/_downloads/c62e99ea33f0dc4137dc1a890be60664/inset_locator_demo.ipynb deleted file mode 120000 index 352d983cd21..00000000000 --- a/_downloads/c62e99ea33f0dc4137dc1a890be60664/inset_locator_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c62e99ea33f0dc4137dc1a890be60664/inset_locator_demo.ipynb \ No newline at end of file diff --git a/_downloads/c634fa105bb7865d74e10704a2f5d879/gtk_spreadsheet_sgskip.py b/_downloads/c634fa105bb7865d74e10704a2f5d879/gtk_spreadsheet_sgskip.py deleted file mode 120000 index 8c760f33d6f..00000000000 --- a/_downloads/c634fa105bb7865d74e10704a2f5d879/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/c634fa105bb7865d74e10704a2f5d879/gtk_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/c6429030b362a553cd537c4612ed45cb/annotate_simple04.ipynb b/_downloads/c6429030b362a553cd537c4612ed45cb/annotate_simple04.ipynb deleted file mode 120000 index e88917798a7..00000000000 --- a/_downloads/c6429030b362a553cd537c4612ed45cb/annotate_simple04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c6429030b362a553cd537c4612ed45cb/annotate_simple04.ipynb \ No newline at end of file diff --git a/_downloads/c6483af0b81ecbceccad56808dc21608/axes_demo.py b/_downloads/c6483af0b81ecbceccad56808dc21608/axes_demo.py deleted file mode 100644 index 97256742043..00000000000 --- a/_downloads/c6483af0b81ecbceccad56808dc21608/axes_demo.py +++ /dev/null @@ -1,52 +0,0 @@ -""" -========= -Axes Demo -========= - -Example use of ``fig.add_axes`` to create inset axes within the main plot axes. - -Please see also the :ref:`axes_grid_examples` section, and the following three -examples: - - - :doc:`/gallery/subplots_axes_and_figures/zoom_inset_axes` - - :doc:`/gallery/axes_grid1/inset_locator_demo` - - :doc:`/gallery/axes_grid1/inset_locator_demo2` -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# create some data to use for the plot -dt = 0.001 -t = np.arange(0.0, 10.0, dt) -r = np.exp(-t[:1000] / 0.05) # impulse response -x = np.random.randn(len(t)) -s = np.convolve(x, r)[:len(x)] * dt # colored noise - -fig, main_ax = plt.subplots() -main_ax.plot(t, s) -main_ax.set_xlim(0, 1) -main_ax.set_ylim(1.1 * np.min(s), 2 * np.max(s)) -main_ax.set_xlabel('time (s)') -main_ax.set_ylabel('current (nA)') -main_ax.set_title('Gaussian colored noise') - -# this is an inset axes over the main axes -right_inset_ax = fig.add_axes([.65, .6, .2, .2], facecolor='k') -right_inset_ax.hist(s, 400, density=True) -right_inset_ax.set_title('Probability') -right_inset_ax.set_xticks([]) -right_inset_ax.set_yticks([]) - -# this is another inset axes over the main axes -left_inset_ax = fig.add_axes([.2, .6, .2, .2], facecolor='k') -left_inset_ax.plot(t[:len(r)], r) -left_inset_ax.set_title('Impulse response') -left_inset_ax.set_xlim(0, 0.2) -left_inset_ax.set_xticks([]) -left_inset_ax.set_yticks([]) - -plt.show() diff --git a/_downloads/c64a00fed71faab58809bec8bd339224/bbox_intersect.ipynb b/_downloads/c64a00fed71faab58809bec8bd339224/bbox_intersect.ipynb deleted file mode 120000 index 9bd4178a341..00000000000 --- a/_downloads/c64a00fed71faab58809bec8bd339224/bbox_intersect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c64a00fed71faab58809bec8bd339224/bbox_intersect.ipynb \ No newline at end of file diff --git a/_downloads/c64e79b529e2928b839b30430240545e/double_pendulum_sgskip.py b/_downloads/c64e79b529e2928b839b30430240545e/double_pendulum_sgskip.py deleted file mode 100644 index 55657f336e8..00000000000 --- a/_downloads/c64e79b529e2928b839b30430240545e/double_pendulum_sgskip.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -=========================== -The double pendulum problem -=========================== - -This animation illustrates the double pendulum problem. - -Double pendulum formula translated from the C code at -http://www.physics.usyd.edu.au/~wheat/dpend_html/solve_dpend.c -""" - -from numpy import sin, cos -import numpy as np -import matplotlib.pyplot as plt -import scipy.integrate as integrate -import matplotlib.animation as animation - -G = 9.8 # acceleration due to gravity, in m/s^2 -L1 = 1.0 # length of pendulum 1 in m -L2 = 1.0 # length of pendulum 2 in m -M1 = 1.0 # mass of pendulum 1 in kg -M2 = 1.0 # mass of pendulum 2 in kg - - -def derivs(state, t): - - dydx = np.zeros_like(state) - dydx[0] = state[1] - - delta = state[2] - state[0] - den1 = (M1+M2) * L1 - M2 * L1 * cos(delta) * cos(delta) - dydx[1] = ((M2 * L1 * state[1] * state[1] * sin(delta) * cos(delta) - + M2 * G * sin(state[2]) * cos(delta) - + M2 * L2 * state[3] * state[3] * sin(delta) - - (M1+M2) * G * sin(state[0])) - / den1) - - dydx[2] = state[3] - - den2 = (L2/L1) * den1 - dydx[3] = ((- M2 * L2 * state[3] * state[3] * sin(delta) * cos(delta) - + (M1+M2) * G * sin(state[0]) * cos(delta) - - (M1+M2) * L1 * state[1] * state[1] * sin(delta) - - (M1+M2) * G * sin(state[2])) - / den2) - - return dydx - -# create a time array from 0..100 sampled at 0.05 second steps -dt = 0.05 -t = np.arange(0, 20, dt) - -# th1 and th2 are the initial angles (degrees) -# w10 and w20 are the initial angular velocities (degrees per second) -th1 = 120.0 -w1 = 0.0 -th2 = -10.0 -w2 = 0.0 - -# initial state -state = np.radians([th1, w1, th2, w2]) - -# integrate your ODE using scipy.integrate. -y = integrate.odeint(derivs, state, t) - -x1 = L1*sin(y[:, 0]) -y1 = -L1*cos(y[:, 0]) - -x2 = L2*sin(y[:, 2]) + x1 -y2 = -L2*cos(y[:, 2]) + y1 - -fig = plt.figure() -ax = fig.add_subplot(111, autoscale_on=False, xlim=(-2, 2), ylim=(-2, 2)) -ax.set_aspect('equal') -ax.grid() - -line, = ax.plot([], [], 'o-', lw=2) -time_template = 'time = %.1fs' -time_text = ax.text(0.05, 0.9, '', transform=ax.transAxes) - - -def init(): - line.set_data([], []) - time_text.set_text('') - return line, time_text - - -def animate(i): - thisx = [0, x1[i], x2[i]] - thisy = [0, y1[i], y2[i]] - - line.set_data(thisx, thisy) - time_text.set_text(time_template % (i*dt)) - return line, time_text - - -ani = animation.FuncAnimation(fig, animate, range(1, len(y)), - interval=dt*1000, blit=True, init_func=init) -plt.show() diff --git a/_downloads/c652abe9cccadbf89fed4a7006c5fa93/bayes_update.py b/_downloads/c652abe9cccadbf89fed4a7006c5fa93/bayes_update.py deleted file mode 120000 index bcd5ea40bf4..00000000000 --- a/_downloads/c652abe9cccadbf89fed4a7006c5fa93/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c652abe9cccadbf89fed4a7006c5fa93/bayes_update.py \ No newline at end of file diff --git a/_downloads/c6573f3215b267a42014f4b74464642c/embedding_in_qt_sgskip.ipynb b/_downloads/c6573f3215b267a42014f4b74464642c/embedding_in_qt_sgskip.ipynb deleted file mode 100644 index 72a7a05aaac..00000000000 --- a/_downloads/c6573f3215b267a42014f4b74464642c/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in Qt\n\n\nSimple Qt application embedding Matplotlib canvases. This program will work\nequally well using Qt4 and Qt5. Either version of Qt can be selected (for\nexample) by setting the ``MPLBACKEND`` environment variable to \"Qt4Agg\" or\n\"Qt5Agg\", or by first importing the desired version of PyQt.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import sys\nimport time\n\nimport numpy as np\n\nfrom matplotlib.backends.qt_compat import QtCore, QtWidgets, is_pyqt5\nif is_pyqt5():\n from matplotlib.backends.backend_qt5agg import (\n FigureCanvas, NavigationToolbar2QT as NavigationToolbar)\nelse:\n from matplotlib.backends.backend_qt4agg import (\n FigureCanvas, NavigationToolbar2QT as NavigationToolbar)\nfrom matplotlib.figure import Figure\n\n\nclass ApplicationWindow(QtWidgets.QMainWindow):\n def __init__(self):\n super().__init__()\n self._main = QtWidgets.QWidget()\n self.setCentralWidget(self._main)\n layout = QtWidgets.QVBoxLayout(self._main)\n\n static_canvas = FigureCanvas(Figure(figsize=(5, 3)))\n layout.addWidget(static_canvas)\n self.addToolBar(NavigationToolbar(static_canvas, self))\n\n dynamic_canvas = FigureCanvas(Figure(figsize=(5, 3)))\n layout.addWidget(dynamic_canvas)\n self.addToolBar(QtCore.Qt.BottomToolBarArea,\n NavigationToolbar(dynamic_canvas, self))\n\n self._static_ax = static_canvas.figure.subplots()\n t = np.linspace(0, 10, 501)\n self._static_ax.plot(t, np.tan(t), \".\")\n\n self._dynamic_ax = dynamic_canvas.figure.subplots()\n self._timer = dynamic_canvas.new_timer(\n 100, [(self._update_canvas, (), {})])\n self._timer.start()\n\n def _update_canvas(self):\n self._dynamic_ax.clear()\n t = np.linspace(0, 10, 101)\n # Shift the sinusoid as a function of time.\n self._dynamic_ax.plot(t, np.sin(t + time.time()))\n self._dynamic_ax.figure.canvas.draw()\n\n\nif __name__ == \"__main__\":\n qapp = QtWidgets.QApplication(sys.argv)\n app = ApplicationWindow()\n app.show()\n qapp.exec_()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c6657faec2838598812ce671c10b3eb3/artists.py b/_downloads/c6657faec2838598812ce671c10b3eb3/artists.py deleted file mode 120000 index d0e750dbbf3..00000000000 --- a/_downloads/c6657faec2838598812ce671c10b3eb3/artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6657faec2838598812ce671c10b3eb3/artists.py \ No newline at end of file diff --git a/_downloads/c66b42cfe8c13c0863fca65c47bc572c/polar_legend.ipynb b/_downloads/c66b42cfe8c13c0863fca65c47bc572c/polar_legend.ipynb deleted file mode 120000 index 2f363855a0d..00000000000 --- a/_downloads/c66b42cfe8c13c0863fca65c47bc572c/polar_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c66b42cfe8c13c0863fca65c47bc572c/polar_legend.ipynb \ No newline at end of file diff --git a/_downloads/c6723de6c7db3c0e8f5e835a53527772/errorbars_and_boxes.ipynb b/_downloads/c6723de6c7db3c0e8f5e835a53527772/errorbars_and_boxes.ipynb deleted file mode 100644 index 8fb11a85a77..00000000000 --- a/_downloads/c6723de6c7db3c0e8f5e835a53527772/errorbars_and_boxes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating boxes from error bars using PatchCollection\n\n\nIn this example, we snazz up a pretty standard error bar plot by adding\na rectangle patch defined by the limits of the bars in both the x- and\ny- directions. To do this, we have to write our own custom function\ncalled ``make_error_boxes``. Close inspection of this function will\nreveal the preferred pattern in writing functions for matplotlib:\n\n 1. an ``Axes`` object is passed directly to the function\n 2. the function operates on the `Axes` methods directly, not through\n the ``pyplot`` interface\n 3. plotting kwargs that could be abbreviated are spelled out for\n better code readability in the future (for example we use\n ``facecolor`` instead of ``fc``)\n 4. the artists returned by the ``Axes`` plotting methods are then\n returned by the function so that, if desired, their styles\n can be modified later outside of the function (they are not\n modified in this example).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.collections import PatchCollection\nfrom matplotlib.patches import Rectangle\n\n# Number of data points\nn = 5\n\n# Dummy data\nnp.random.seed(19680801)\nx = np.arange(0, n, 1)\ny = np.random.rand(n) * 5.\n\n# Dummy errors (above and below)\nxerr = np.random.rand(2, n) + 0.1\nyerr = np.random.rand(2, n) + 0.2\n\n\ndef make_error_boxes(ax, xdata, ydata, xerror, yerror, facecolor='r',\n edgecolor='None', alpha=0.5):\n\n # Create list for all the error patches\n errorboxes = []\n\n # Loop over data points; create box from errors at each point\n for x, y, xe, ye in zip(xdata, ydata, xerror.T, yerror.T):\n rect = Rectangle((x - xe[0], y - ye[0]), xe.sum(), ye.sum())\n errorboxes.append(rect)\n\n # Create patch collection with specified colour/alpha\n pc = PatchCollection(errorboxes, facecolor=facecolor, alpha=alpha,\n edgecolor=edgecolor)\n\n # Add collection to axes\n ax.add_collection(pc)\n\n # Plot errorbars\n artists = ax.errorbar(xdata, ydata, xerr=xerror, yerr=yerror,\n fmt='None', ecolor='k')\n\n return artists\n\n\n# Create figure and axes\nfig, ax = plt.subplots(1)\n\n# Call function to create error boxes\n_ = make_error_boxes(ax, x, y, xerr, yerr)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c6735a42bcc685bb9e52b944e835c645/animate_decay.py b/_downloads/c6735a42bcc685bb9e52b944e835c645/animate_decay.py deleted file mode 120000 index d48f69dbcef..00000000000 --- a/_downloads/c6735a42bcc685bb9e52b944e835c645/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c6735a42bcc685bb9e52b944e835c645/animate_decay.py \ No newline at end of file diff --git a/_downloads/c6761544e9275747ef2762700a87d329/multiline.ipynb b/_downloads/c6761544e9275747ef2762700a87d329/multiline.ipynb deleted file mode 120000 index f2ecd3d1268..00000000000 --- a/_downloads/c6761544e9275747ef2762700a87d329/multiline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c6761544e9275747ef2762700a87d329/multiline.ipynb \ No newline at end of file diff --git a/_downloads/c67c12d1c072a1147e19317c1f28149b/figure_title.py b/_downloads/c67c12d1c072a1147e19317c1f28149b/figure_title.py deleted file mode 100644 index 1c54c3887be..00000000000 --- a/_downloads/c67c12d1c072a1147e19317c1f28149b/figure_title.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -============ -Figure Title -============ - -Create a figure with separate subplot titles and a centered figure title. -""" -import matplotlib.pyplot as plt -import numpy as np - - -def f(t): - s1 = np.cos(2*np.pi*t) - e1 = np.exp(-t) - return s1 * e1 - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) -t3 = np.arange(0.0, 2.0, 0.01) - - -fig, axs = plt.subplots(2, 1, constrained_layout=True) -axs[0].plot(t1, f(t1), 'o', t2, f(t2), '-') -axs[0].set_title('subplot 1') -axs[0].set_xlabel('distance (m)') -axs[0].set_ylabel('Damped oscillation') -fig.suptitle('This is a somewhat long figure title', fontsize=16) - -axs[1].plot(t3, np.cos(2*np.pi*t3), '--') -axs[1].set_xlabel('time (s)') -axs[1].set_title('subplot 2') -axs[1].set_ylabel('Undamped') - -plt.show() diff --git a/_downloads/c681ea246e6cafa00a74f50e0d76ed26/watermark_image.ipynb b/_downloads/c681ea246e6cafa00a74f50e0d76ed26/watermark_image.ipynb deleted file mode 120000 index 6c387061de4..00000000000 --- a/_downloads/c681ea246e6cafa00a74f50e0d76ed26/watermark_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c681ea246e6cafa00a74f50e0d76ed26/watermark_image.ipynb \ No newline at end of file diff --git a/_downloads/c689f89a63c96266b797c14cbcb714ac/line_styles_reference.ipynb b/_downloads/c689f89a63c96266b797c14cbcb714ac/line_styles_reference.ipynb deleted file mode 120000 index d88530dbdf3..00000000000 --- a/_downloads/c689f89a63c96266b797c14cbcb714ac/line_styles_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c689f89a63c96266b797c14cbcb714ac/line_styles_reference.ipynb \ No newline at end of file diff --git a/_downloads/c6948f323cbca03b01f924814dcb53f5/simple_axis_direction03.ipynb b/_downloads/c6948f323cbca03b01f924814dcb53f5/simple_axis_direction03.ipynb deleted file mode 120000 index 3ec47576802..00000000000 --- a/_downloads/c6948f323cbca03b01f924814dcb53f5/simple_axis_direction03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c6948f323cbca03b01f924814dcb53f5/simple_axis_direction03.ipynb \ No newline at end of file diff --git a/_downloads/c69af37739373bae6a5b9304b8c48543/color_cycler.ipynb b/_downloads/c69af37739373bae6a5b9304b8c48543/color_cycler.ipynb deleted file mode 120000 index cf79e7482c0..00000000000 --- a/_downloads/c69af37739373bae6a5b9304b8c48543/color_cycler.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/c69af37739373bae6a5b9304b8c48543/color_cycler.ipynb \ No newline at end of file diff --git a/_downloads/c6a4e9018c33b34a6dce5cb883a20148/multiprocess_sgskip.ipynb b/_downloads/c6a4e9018c33b34a6dce5cb883a20148/multiprocess_sgskip.ipynb deleted file mode 120000 index 2323fe1deb3..00000000000 --- a/_downloads/c6a4e9018c33b34a6dce5cb883a20148/multiprocess_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6a4e9018c33b34a6dce5cb883a20148/multiprocess_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c6a555ff261af3e96fd863a386a8a5c6/custom_projection.ipynb b/_downloads/c6a555ff261af3e96fd863a386a8a5c6/custom_projection.ipynb deleted file mode 120000 index b5a7df28337..00000000000 --- a/_downloads/c6a555ff261af3e96fd863a386a8a5c6/custom_projection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c6a555ff261af3e96fd863a386a8a5c6/custom_projection.ipynb \ No newline at end of file diff --git a/_downloads/c6a7517a0ff8394ff62c49f7574e7959/text_rotation_relative_to_line.ipynb b/_downloads/c6a7517a0ff8394ff62c49f7574e7959/text_rotation_relative_to_line.ipynb deleted file mode 120000 index 1b763cb4869..00000000000 --- a/_downloads/c6a7517a0ff8394ff62c49f7574e7959/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6a7517a0ff8394ff62c49f7574e7959/text_rotation_relative_to_line.ipynb \ No newline at end of file diff --git a/_downloads/c6acf869b4fd3b9494fec567f4e01318/barchart_demo.ipynb b/_downloads/c6acf869b4fd3b9494fec567f4e01318/barchart_demo.ipynb deleted file mode 120000 index cbc05b1d84f..00000000000 --- a/_downloads/c6acf869b4fd3b9494fec567f4e01318/barchart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6acf869b4fd3b9494fec567f4e01318/barchart_demo.ipynb \ No newline at end of file diff --git a/_downloads/c6bccf4819ab0be5cdfd9f0d849b83e5/buttons.py b/_downloads/c6bccf4819ab0be5cdfd9f0d849b83e5/buttons.py deleted file mode 120000 index 8f2c0b69748..00000000000 --- a/_downloads/c6bccf4819ab0be5cdfd9f0d849b83e5/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6bccf4819ab0be5cdfd9f0d849b83e5/buttons.py \ No newline at end of file diff --git a/_downloads/c6d8bbc9daf408a8f2b2c55344dab325/markevery_prop_cycle.ipynb b/_downloads/c6d8bbc9daf408a8f2b2c55344dab325/markevery_prop_cycle.ipynb deleted file mode 100644 index aef5b17ab48..00000000000 --- a/_downloads/c6d8bbc9daf408a8f2b2c55344dab325/markevery_prop_cycle.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# prop_cycle property markevery in rcParams\n\n\nThis example demonstrates a working solution to issue #8576, providing full\nsupport of the markevery property for axes.prop_cycle assignments through\nrcParams. Makes use of the same list of markevery cases from the\n:doc:`markevery demo\n`.\n\nRenders a plot with shifted-sine curves along each column with\na unique markevery value for each sine curve.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from cycler import cycler\nimport numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\n\n# Define a list of markevery cases and color cases to plot\ncases = [None,\n 8,\n (30, 8),\n [16, 24, 30],\n [0, -1],\n slice(100, 200, 3),\n 0.1,\n 0.3,\n 1.5,\n (0.0, 0.1),\n (0.45, 0.1)]\n\ncolors = ['#1f77b4',\n '#ff7f0e',\n '#2ca02c',\n '#d62728',\n '#9467bd',\n '#8c564b',\n '#e377c2',\n '#7f7f7f',\n '#bcbd22',\n '#17becf',\n '#1a55FF']\n\n# Configure rcParams axes.prop_cycle to simultaneously cycle cases and colors.\nmpl.rcParams['axes.prop_cycle'] = cycler(markevery=cases, color=colors)\n\n# Create data points and offsets\nx = np.linspace(0, 2 * np.pi)\noffsets = np.linspace(0, 2 * np.pi, 11, endpoint=False)\nyy = np.transpose([np.sin(x + phi) for phi in offsets])\n\n# Set the plot curve with markers and a title\nfig = plt.figure()\nax = fig.add_axes([0.1, 0.1, 0.6, 0.75])\n\nfor i in range(len(cases)):\n ax.plot(yy[:, i], marker='o', label=str(cases[i]))\n ax.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)\n\nplt.title('Support for axes.prop_cycle cycler with markevery')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c6debe8c17bf6b28e5b275992940b5fd/legend_demo.py b/_downloads/c6debe8c17bf6b28e5b275992940b5fd/legend_demo.py deleted file mode 120000 index 258247bd97c..00000000000 --- a/_downloads/c6debe8c17bf6b28e5b275992940b5fd/legend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c6debe8c17bf6b28e5b275992940b5fd/legend_demo.py \ No newline at end of file diff --git a/_downloads/c6e37e7d36682b1ba9f4cdac0e7e67d8/shading_example.ipynb b/_downloads/c6e37e7d36682b1ba9f4cdac0e7e67d8/shading_example.ipynb deleted file mode 120000 index 971b819a26d..00000000000 --- a/_downloads/c6e37e7d36682b1ba9f4cdac0e7e67d8/shading_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c6e37e7d36682b1ba9f4cdac0e7e67d8/shading_example.ipynb \ No newline at end of file diff --git a/_downloads/c6e4299a0eafa1ded6bc20e8de7b0b70/boxplot_vs_violin.ipynb b/_downloads/c6e4299a0eafa1ded6bc20e8de7b0b70/boxplot_vs_violin.ipynb deleted file mode 120000 index b2611d7d06b..00000000000 --- a/_downloads/c6e4299a0eafa1ded6bc20e8de7b0b70/boxplot_vs_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6e4299a0eafa1ded6bc20e8de7b0b70/boxplot_vs_violin.ipynb \ No newline at end of file diff --git a/_downloads/c6e6baef82461eca54f70246112fc299/bayes_update.ipynb b/_downloads/c6e6baef82461eca54f70246112fc299/bayes_update.ipynb deleted file mode 120000 index 49a9e87dd9a..00000000000 --- a/_downloads/c6e6baef82461eca54f70246112fc299/bayes_update.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6e6baef82461eca54f70246112fc299/bayes_update.ipynb \ No newline at end of file diff --git a/_downloads/c6ef9201c46442744af31f2c95e31e41/fahrenheit_celsius_scales.py b/_downloads/c6ef9201c46442744af31f2c95e31e41/fahrenheit_celsius_scales.py deleted file mode 120000 index 792a7e86d69..00000000000 --- a/_downloads/c6ef9201c46442744af31f2c95e31e41/fahrenheit_celsius_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c6ef9201c46442744af31f2c95e31e41/fahrenheit_celsius_scales.py \ No newline at end of file diff --git a/_downloads/c6f54fdada533c9a55c7f4b0bb5665ed/named_colors.py b/_downloads/c6f54fdada533c9a55c7f4b0bb5665ed/named_colors.py deleted file mode 120000 index 329cf414f09..00000000000 --- a/_downloads/c6f54fdada533c9a55c7f4b0bb5665ed/named_colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c6f54fdada533c9a55c7f4b0bb5665ed/named_colors.py \ No newline at end of file diff --git a/_downloads/c71a756999a5cacfd767880b3f5f5a19/dynamic_image.py b/_downloads/c71a756999a5cacfd767880b3f5f5a19/dynamic_image.py deleted file mode 120000 index 04a6baf4581..00000000000 --- a/_downloads/c71a756999a5cacfd767880b3f5f5a19/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c71a756999a5cacfd767880b3f5f5a19/dynamic_image.py \ No newline at end of file diff --git a/_downloads/c71d96906728c0ebc7db75f381b639f7/colormap-manipulation.ipynb b/_downloads/c71d96906728c0ebc7db75f381b639f7/colormap-manipulation.ipynb deleted file mode 120000 index e1249a45a73..00000000000 --- a/_downloads/c71d96906728c0ebc7db75f381b639f7/colormap-manipulation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c71d96906728c0ebc7db75f381b639f7/colormap-manipulation.ipynb \ No newline at end of file diff --git a/_downloads/c7249f64a7f76ef0d21144b19fecd00d/axhspan_demo.ipynb b/_downloads/c7249f64a7f76ef0d21144b19fecd00d/axhspan_demo.ipynb deleted file mode 120000 index c48dfc7151e..00000000000 --- a/_downloads/c7249f64a7f76ef0d21144b19fecd00d/axhspan_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c7249f64a7f76ef0d21144b19fecd00d/axhspan_demo.ipynb \ No newline at end of file diff --git a/_downloads/c72b5c86482118d65f6b7549ae2053e9/demo_axisline_style.py b/_downloads/c72b5c86482118d65f6b7549ae2053e9/demo_axisline_style.py deleted file mode 120000 index c047e570a50..00000000000 --- a/_downloads/c72b5c86482118d65f6b7549ae2053e9/demo_axisline_style.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c72b5c86482118d65f6b7549ae2053e9/demo_axisline_style.py \ No newline at end of file diff --git a/_downloads/c72c67aa6c35d06d6bec155781de52c6/membrane.py b/_downloads/c72c67aa6c35d06d6bec155781de52c6/membrane.py deleted file mode 100644 index 4e126eceda5..00000000000 --- a/_downloads/c72c67aa6c35d06d6bec155781de52c6/membrane.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -====================== -Frontpage plot example -====================== - -This example reproduces the frontpage simple plot example. -""" - -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import numpy as np - - -with cbook.get_sample_data('membrane.dat') as datafile: - x = np.fromfile(datafile, np.float32) -# 0.0005 is the sample interval - -fig, ax = plt.subplots() -ax.plot(x, linewidth=4) -ax.set_xlim(5000, 6000) -ax.set_ylim(-0.6, 0.1) -ax.set_xticks([]) -ax.set_yticks([]) -fig.savefig("membrane_frontpage.png", dpi=25) # results in 160x120 px image diff --git a/_downloads/c737dd2de0a1c9165b34e3813e9f78ff/demo_curvelinear_grid2.ipynb b/_downloads/c737dd2de0a1c9165b34e3813e9f78ff/demo_curvelinear_grid2.ipynb deleted file mode 120000 index 7d5c3cda094..00000000000 --- a/_downloads/c737dd2de0a1c9165b34e3813e9f78ff/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c737dd2de0a1c9165b34e3813e9f78ff/demo_curvelinear_grid2.ipynb \ No newline at end of file diff --git a/_downloads/c74312b504857ab8c777a503f3738ee2/simple_axesgrid.py b/_downloads/c74312b504857ab8c777a503f3738ee2/simple_axesgrid.py deleted file mode 120000 index 2f6817b3b85..00000000000 --- a/_downloads/c74312b504857ab8c777a503f3738ee2/simple_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c74312b504857ab8c777a503f3738ee2/simple_axesgrid.py \ No newline at end of file diff --git a/_downloads/c74980a0eebff2d1e4254511992d2321/watermark_text.py b/_downloads/c74980a0eebff2d1e4254511992d2321/watermark_text.py deleted file mode 120000 index e9b2f49e230..00000000000 --- a/_downloads/c74980a0eebff2d1e4254511992d2321/watermark_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c74980a0eebff2d1e4254511992d2321/watermark_text.py \ No newline at end of file diff --git a/_downloads/c75477f60c99c7350a9a125e69b99a02/matshow.py b/_downloads/c75477f60c99c7350a9a125e69b99a02/matshow.py deleted file mode 100644 index 4980e116a11..00000000000 --- a/_downloads/c75477f60c99c7350a9a125e69b99a02/matshow.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -======= -Matshow -======= - -Simple `~.axes.Axes.matshow` example. -""" -import matplotlib.pyplot as plt -import numpy as np - - -def samplemat(dims): - """Make a matrix with all zeros and increasing elements on the diagonal""" - aa = np.zeros(dims) - for i in range(min(dims)): - aa[i, i] = i - return aa - - -# Display matrix -plt.matshow(samplemat((15, 15))) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.matshow -matplotlib.pyplot.matshow diff --git a/_downloads/c755fc31a8410db32e8c385f5eb7d713/demo_axes_hbox_divider.py b/_downloads/c755fc31a8410db32e8c385f5eb7d713/demo_axes_hbox_divider.py deleted file mode 120000 index 7a11067ef21..00000000000 --- a/_downloads/c755fc31a8410db32e8c385f5eb7d713/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c755fc31a8410db32e8c385f5eb7d713/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/_downloads/c756320ecfe307e4d39af0e4fe6819fb/image_annotated_heatmap.ipynb b/_downloads/c756320ecfe307e4d39af0e4fe6819fb/image_annotated_heatmap.ipynb deleted file mode 120000 index 245a157bb95..00000000000 --- a/_downloads/c756320ecfe307e4d39af0e4fe6819fb/image_annotated_heatmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c756320ecfe307e4d39af0e4fe6819fb/image_annotated_heatmap.ipynb \ No newline at end of file diff --git a/_downloads/c76ca8d26cbd964a37dbeadf1fa66186/anchored_box02.ipynb b/_downloads/c76ca8d26cbd964a37dbeadf1fa66186/anchored_box02.ipynb deleted file mode 120000 index 49e796d23c5..00000000000 --- a/_downloads/c76ca8d26cbd964a37dbeadf1fa66186/anchored_box02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c76ca8d26cbd964a37dbeadf1fa66186/anchored_box02.ipynb \ No newline at end of file diff --git a/_downloads/c77676c83994575427b30a8023a55f76/contour_demo.py b/_downloads/c77676c83994575427b30a8023a55f76/contour_demo.py deleted file mode 120000 index d6d44042892..00000000000 --- a/_downloads/c77676c83994575427b30a8023a55f76/contour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c77676c83994575427b30a8023a55f76/contour_demo.py \ No newline at end of file diff --git a/_downloads/c77f2577e581ec5e5fe09b279d2089e8/hatch_demo.py b/_downloads/c77f2577e581ec5e5fe09b279d2089e8/hatch_demo.py deleted file mode 120000 index 2f00fb1c088..00000000000 --- a/_downloads/c77f2577e581ec5e5fe09b279d2089e8/hatch_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c77f2577e581ec5e5fe09b279d2089e8/hatch_demo.py \ No newline at end of file diff --git a/_downloads/c787b4f117aa65c7839a4ba79a65e1fc/barb_demo.py b/_downloads/c787b4f117aa65c7839a4ba79a65e1fc/barb_demo.py deleted file mode 120000 index b7460c239a2..00000000000 --- a/_downloads/c787b4f117aa65c7839a4ba79a65e1fc/barb_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c787b4f117aa65c7839a4ba79a65e1fc/barb_demo.py \ No newline at end of file diff --git a/_downloads/c78829305a15b25649b2d554a04e210a/axis_equal_demo.ipynb b/_downloads/c78829305a15b25649b2d554a04e210a/axis_equal_demo.ipynb deleted file mode 120000 index a2f3c8efdbc..00000000000 --- a/_downloads/c78829305a15b25649b2d554a04e210a/axis_equal_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c78829305a15b25649b2d554a04e210a/axis_equal_demo.ipynb \ No newline at end of file diff --git a/_downloads/c79240fc21d0a40a2dca5fcf35ec49d1/spine_placement_demo.ipynb b/_downloads/c79240fc21d0a40a2dca5fcf35ec49d1/spine_placement_demo.ipynb deleted file mode 120000 index 04935816f88..00000000000 --- a/_downloads/c79240fc21d0a40a2dca5fcf35ec49d1/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/c79240fc21d0a40a2dca5fcf35ec49d1/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/c792aa22288f4c3228a273af01f4dc8e/mathtext_wx_sgskip.ipynb b/_downloads/c792aa22288f4c3228a273af01f4dc8e/mathtext_wx_sgskip.ipynb deleted file mode 120000 index 134ae80bf9f..00000000000 --- a/_downloads/c792aa22288f4c3228a273af01f4dc8e/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c792aa22288f4c3228a273af01f4dc8e/mathtext_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c79b5b744d27beee7abea77d7fe33361/demo_gridspec06.ipynb b/_downloads/c79b5b744d27beee7abea77d7fe33361/demo_gridspec06.ipynb deleted file mode 120000 index 126ab5de80d..00000000000 --- a/_downloads/c79b5b744d27beee7abea77d7fe33361/demo_gridspec06.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c79b5b744d27beee7abea77d7fe33361/demo_gridspec06.ipynb \ No newline at end of file diff --git a/_downloads/c79ef84ec2b37cf2c7513fc6104948a7/multi_image.ipynb b/_downloads/c79ef84ec2b37cf2c7513fc6104948a7/multi_image.ipynb deleted file mode 100644 index cbb5255b747..00000000000 --- a/_downloads/c79ef84ec2b37cf2c7513fc6104948a7/multi_image.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multi Image\n\n\nMake a set of images with a single colormap, norm, and colorbar.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import colors\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nnp.random.seed(19680801)\nNr = 3\nNc = 2\ncmap = \"cool\"\n\nfig, axs = plt.subplots(Nr, Nc)\nfig.suptitle('Multiple images')\n\nimages = []\nfor i in range(Nr):\n for j in range(Nc):\n # Generate data with a range that varies from one plot to the next.\n data = ((1 + i + j) / 10) * np.random.rand(10, 20) * 1e-6\n images.append(axs[i, j].imshow(data, cmap=cmap))\n axs[i, j].label_outer()\n\n# Find the min and max of all colors for use in setting the color scale.\nvmin = min(image.get_array().min() for image in images)\nvmax = max(image.get_array().max() for image in images)\nnorm = colors.Normalize(vmin=vmin, vmax=vmax)\nfor im in images:\n im.set_norm(norm)\n\nfig.colorbar(images[0], ax=axs, orientation='horizontal', fraction=.1)\n\n\n# Make images respond to changes in the norm of other images (e.g. via the\n# \"edit axis, curves and images parameters\" GUI on Qt), but be careful not to\n# recurse infinitely!\ndef update(changed_image):\n for im in images:\n if (changed_image.get_cmap() != im.get_cmap()\n or changed_image.get_clim() != im.get_clim()):\n im.set_cmap(changed_image.get_cmap())\n im.set_clim(changed_image.get_clim())\n\n\nfor im in images:\n im.callbacksSM.connect('changed', update)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors.Normalize\nmatplotlib.cm.ScalarMappable.set_cmap\nmatplotlib.cm.ScalarMappable.set_norm\nmatplotlib.cm.ScalarMappable.set_clim\nmatplotlib.cbook.CallbackRegistry.connect" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c7a5021847fe4db28b6f0b544f555d7d/simple_axes_divider2.py b/_downloads/c7a5021847fe4db28b6f0b544f555d7d/simple_axes_divider2.py deleted file mode 100644 index 834e8cc0129..00000000000 --- a/_downloads/c7a5021847fe4db28b6f0b544f555d7d/simple_axes_divider2.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -===================== -Simple Axes Divider 2 -===================== - -""" -import mpl_toolkits.axes_grid1.axes_size as Size -from mpl_toolkits.axes_grid1 import Divider -import matplotlib.pyplot as plt - -fig = plt.figure(figsize=(5.5, 4.)) - -# the rect parameter will be ignore as we will set axes_locator -rect = (0.1, 0.1, 0.8, 0.8) -ax = [fig.add_axes(rect, label="%d" % i) for i in range(4)] - -horiz = [Size.Scaled(1.5), Size.Fixed(.5), Size.Scaled(1.), - Size.Scaled(.5)] - -vert = [Size.Scaled(1.), Size.Fixed(.5), Size.Scaled(1.5)] - -# divide the axes rectangle into grid whose size is specified by horiz * vert -divider = Divider(fig, rect, horiz, vert, aspect=False) - -ax[0].set_axes_locator(divider.new_locator(nx=0, ny=0)) -ax[1].set_axes_locator(divider.new_locator(nx=0, ny=2)) -ax[2].set_axes_locator(divider.new_locator(nx=2, ny=2)) -ax[3].set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0)) - -for ax1 in ax: - ax1.tick_params(labelbottom=False, labelleft=False) - -plt.show() diff --git a/_downloads/c7a6d5b802f2b2608dc5397b819291cc/cursor_demo_sgskip.py b/_downloads/c7a6d5b802f2b2608dc5397b819291cc/cursor_demo_sgskip.py deleted file mode 120000 index c98e3b00894..00000000000 --- a/_downloads/c7a6d5b802f2b2608dc5397b819291cc/cursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c7a6d5b802f2b2608dc5397b819291cc/cursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/c7a7f374ef0dfafcb8b79964a60d28e6/spine_placement_demo.py b/_downloads/c7a7f374ef0dfafcb8b79964a60d28e6/spine_placement_demo.py deleted file mode 120000 index f8ac176ba56..00000000000 --- a/_downloads/c7a7f374ef0dfafcb8b79964a60d28e6/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/c7a7f374ef0dfafcb8b79964a60d28e6/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/c7a8a45749fccf34a283f0159c1336a6/simple_axesgrid2.ipynb b/_downloads/c7a8a45749fccf34a283f0159c1336a6/simple_axesgrid2.ipynb deleted file mode 100644 index 034b2452efe..00000000000 --- a/_downloads/c7a8a45749fccf34a283f0159c1336a6/simple_axesgrid2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple ImageGrid 2\n\n\nAlign multiple images of different sizes using\n`~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\nfig = plt.figure(figsize=(5.5, 3.5))\ngrid = ImageGrid(fig, 111, # similar to subplot(111)\n nrows_ncols=(1, 3),\n axes_pad=0.1,\n add_all=True,\n label_mode=\"L\",\n )\n\nZ, extent = get_demo_image() # demo image\n\nim1 = Z\nim2 = Z[:, :10]\nim3 = Z[:, 10:]\nvmin, vmax = Z.min(), Z.max()\nfor ax, im in zip(grid, [im1, im2, im3]):\n ax.imshow(im, origin=\"lower\", vmin=vmin, vmax=vmax,\n interpolation=\"nearest\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c7b27332a2e53923edb7ffb5315d4fa3/demo_ribbon_box.py b/_downloads/c7b27332a2e53923edb7ffb5315d4fa3/demo_ribbon_box.py deleted file mode 120000 index 6c05814b84c..00000000000 --- a/_downloads/c7b27332a2e53923edb7ffb5315d4fa3/demo_ribbon_box.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c7b27332a2e53923edb7ffb5315d4fa3/demo_ribbon_box.py \ No newline at end of file diff --git a/_downloads/c7b63011b199e530922aef66fc1e42f7/log_demo.ipynb b/_downloads/c7b63011b199e530922aef66fc1e42f7/log_demo.ipynb deleted file mode 120000 index e252b37047b..00000000000 --- a/_downloads/c7b63011b199e530922aef66fc1e42f7/log_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c7b63011b199e530922aef66fc1e42f7/log_demo.ipynb \ No newline at end of file diff --git a/_downloads/c7bc02757d0d252bc335d134f0d26ed5/stackplot_demo.py b/_downloads/c7bc02757d0d252bc335d134f0d26ed5/stackplot_demo.py deleted file mode 120000 index 9370d4213ba..00000000000 --- a/_downloads/c7bc02757d0d252bc335d134f0d26ed5/stackplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c7bc02757d0d252bc335d134f0d26ed5/stackplot_demo.py \ No newline at end of file diff --git a/_downloads/c7c1a3ec68d08378c8f15175716dc5ac/usetex_fonteffects.ipynb b/_downloads/c7c1a3ec68d08378c8f15175716dc5ac/usetex_fonteffects.ipynb deleted file mode 120000 index f2b266e8d33..00000000000 --- a/_downloads/c7c1a3ec68d08378c8f15175716dc5ac/usetex_fonteffects.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c7c1a3ec68d08378c8f15175716dc5ac/usetex_fonteffects.ipynb \ No newline at end of file diff --git a/_downloads/c7c68354b4da509e0ed4d70ace4444c9/contourf3d.ipynb b/_downloads/c7c68354b4da509e0ed4d70ace4444c9/contourf3d.ipynb deleted file mode 120000 index 67626f773f7..00000000000 --- a/_downloads/c7c68354b4da509e0ed4d70ace4444c9/contourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c7c68354b4da509e0ed4d70ace4444c9/contourf3d.ipynb \ No newline at end of file diff --git a/_downloads/c7dd70314c5506621c0738d12a0a6aa8/system_monitor.py b/_downloads/c7dd70314c5506621c0738d12a0a6aa8/system_monitor.py deleted file mode 120000 index ec920360812..00000000000 --- a/_downloads/c7dd70314c5506621c0738d12a0a6aa8/system_monitor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/c7dd70314c5506621c0738d12a0a6aa8/system_monitor.py \ No newline at end of file diff --git a/_downloads/c7e0cf451debc7c8a4cff1d30607c0ca/trifinder_event_demo.ipynb b/_downloads/c7e0cf451debc7c8a4cff1d30607c0ca/trifinder_event_demo.ipynb deleted file mode 120000 index 14504b4b812..00000000000 --- a/_downloads/c7e0cf451debc7c8a4cff1d30607c0ca/trifinder_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c7e0cf451debc7c8a4cff1d30607c0ca/trifinder_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/c7e10c41640ecb77082fd4b32cbbfb6a/contour_demo.ipynb b/_downloads/c7e10c41640ecb77082fd4b32cbbfb6a/contour_demo.ipynb deleted file mode 120000 index f647a012ddc..00000000000 --- a/_downloads/c7e10c41640ecb77082fd4b32cbbfb6a/contour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c7e10c41640ecb77082fd4b32cbbfb6a/contour_demo.ipynb \ No newline at end of file diff --git a/_downloads/c7e50d8f9d8afd746884d4b0426a8903/demo_gridspec06.ipynb b/_downloads/c7e50d8f9d8afd746884d4b0426a8903/demo_gridspec06.ipynb deleted file mode 120000 index 4e11cc912c8..00000000000 --- a/_downloads/c7e50d8f9d8afd746884d4b0426a8903/demo_gridspec06.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c7e50d8f9d8afd746884d4b0426a8903/demo_gridspec06.ipynb \ No newline at end of file diff --git a/_downloads/c7e5f3c7248cec276d25383005e7f300/colormapnorms.py b/_downloads/c7e5f3c7248cec276d25383005e7f300/colormapnorms.py deleted file mode 100644 index c5929ad1f02..00000000000 --- a/_downloads/c7e5f3c7248cec276d25383005e7f300/colormapnorms.py +++ /dev/null @@ -1,256 +0,0 @@ -""" -Colormap Normalization -====================== - -Objects that use colormaps by default linearly map the colors in the -colormap from data values *vmin* to *vmax*. For example:: - - pcm = ax.pcolormesh(x, y, Z, vmin=-1., vmax=1., cmap='RdBu_r') - -will map the data in *Z* linearly from -1 to +1, so *Z=0* will -give a color at the center of the colormap *RdBu_r* (white in this -case). - -Matplotlib does this mapping in two steps, with a normalization from -[0,1] occurring first, and then mapping onto the indices in the -colormap. Normalizations are classes defined in the -:func:`matplotlib.colors` module. The default, linear normalization is -:func:`matplotlib.colors.Normalize`. - -Artists that map data to color pass the arguments *vmin* and *vmax* to -construct a :func:`matplotlib.colors.Normalize` instance, then call it: - -.. ipython:: - - In [1]: import matplotlib as mpl - - In [2]: norm = mpl.colors.Normalize(vmin=-1.,vmax=1.) - - In [3]: norm(0.) - Out[3]: 0.5 - -However, there are sometimes cases where it is useful to map data to -colormaps in a non-linear fashion. - -Logarithmic ------------ - -One of the most common transformations is to plot data by taking -its logarithm (to the base-10). This transformation is useful to -display changes across disparate scales. Using :func:`colors.LogNorm` -normalizes the data via :math:`log_{10}`. In the example below, -there are two bumps, one much smaller than the other. Using -:func:`colors.LogNorm`, the shape and location of each bump can clearly -be seen: -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors -import matplotlib.cbook as cbook - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out of the top right. Needs to have -# z/colour axis on a log scale so we see both hump and spike. linear -# scale only shows the spike. -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -Z = Z1 + 50 * Z2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolor(X, Y, Z, - norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') -plt.show() - -############################################################################### -# Symmetric logarithmic -# --------------------- -# -# Similarly, it sometimes happens that there is data that is positive -# and negative, but we would still like a logarithmic scaling applied to -# both. In this case, the negative numbers are also scaled -# logarithmically, and mapped to smaller numbers; e.g., if `vmin=-vmax`, -# then they the negative numbers are mapped from 0 to 0.5 and the -# positive from 0.5 to 1. -# -# Since the logarithm of values close to zero tends toward infinity, a -# small range around zero needs to be mapped linearly. The parameter -# *linthresh* allows the user to specify the size of this range -# (-*linthresh*, *linthresh*). The size of this range in the colormap is -# set by *linscale*. When *linscale* == 1.0 (the default), the space used -# for the positive and negative halves of the linear range will be equal -# to one decade in the logarithmic range. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03, - vmin=-1.0, vmax=1.0), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') -plt.show() - -############################################################################### -# Power-law -# --------- -# -# Sometimes it is useful to remap the colors onto a power-law -# relationship (i.e. :math:`y=x^{\gamma}`, where :math:`\gamma` is the -# power). For this we use the :func:`colors.PowerNorm`. It takes as an -# argument *gamma* (*gamma* == 1.0 will just yield the default linear -# normalization): -# -# .. note:: -# -# There should probably be a good reason for plotting the data using -# this type of transformation. Technical viewers are used to linear -# and logarithmic axes and data transformations. Power laws are less -# common, and viewers should explicitly be made aware that they have -# been used. - -N = 100 -X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)] -Z1 = (1 + np.sin(Y * 10.)) * X**(2.) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=0.5), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') -plt.show() - -############################################################################### -# Discrete bounds -# --------------- -# -# Another normaization that comes with Matplotlib is -# :func:`colors.BoundaryNorm`. In addition to *vmin* and *vmax*, this -# takes as arguments boundaries between which data is to be mapped. The -# colors are then linearly distributed between these "bounds". For -# instance: -# -# .. ipython:: -# -# In [2]: import matplotlib.colors as colors -# -# In [3]: bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -# -# In [4]: norm = colors.BoundaryNorm(boundaries=bounds, ncolors=4) -# -# In [5]: print(norm([-0.2,-0.15,-0.02, 0.3, 0.8, 0.99])) -# [0 0 1 2 3 3] -# -# Note unlike the other norms, this norm returns values from 0 to *ncolors*-1. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(3, 1, figsize=(8, 8)) -ax = ax.flatten() -# even bounds gives a contour-like effect -bounds = np.linspace(-1, 1, 10) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[0].pcolormesh(X, Y, Z, - norm=norm, - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical') - -# uneven bounds changes the colormapping: -bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical') - -pcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical') -plt.show() - - -############################################################################### -# DivergingNorm: Different mapping on either side of a center -# ----------------------------------------------------------- -# -# Sometimes we want to have a different colormap on either side of a -# conceptual center point, and we want those two colormaps to have -# different linear scales. An example is a topographic map where the land -# and ocean have a center at zero, but land typically has a greater -# elevation range than the water has depth range, and they are often -# represented by a different colormap. - -filename = cbook.get_sample_data('topobathy.npz', asfileobj=False) -with np.load(filename) as dem: - topo = dem['topo'] - longitude = dem['longitude'] - latitude = dem['latitude'] - -fig, ax = plt.subplots() -# make a colormap that has land and ocean clearly delineated and of the -# same length (256 + 256) -colors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256)) -colors_land = plt.cm.terrain(np.linspace(0.25, 1, 256)) -all_colors = np.vstack((colors_undersea, colors_land)) -terrain_map = colors.LinearSegmentedColormap.from_list('terrain_map', - all_colors) - -# make the norm: Note the center is offset so that the land has more -# dynamic range: -divnorm = colors.DivergingNorm(vmin=-500., vcenter=0, vmax=4000) - -pcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm, - cmap=terrain_map,) -# Simple geographic plot, set aspect ratio beecause distance between lines of -# longitude depends on latitude. -ax.set_aspect(1 / np.cos(np.deg2rad(49))) -fig.colorbar(pcm, shrink=0.6) -plt.show() - - -############################################################################### -# Custom normalization: Manually implement two linear ranges -# ---------------------------------------------------------- -# -# The `.DivergingNorm` described above makes a useful example for -# defining your own norm. - -class MidpointNormalize(colors.Normalize): - def __init__(self, vmin=None, vmax=None, vcenter=None, clip=False): - self.vcenter = vcenter - colors.Normalize.__init__(self, vmin, vmax, clip) - - def __call__(self, value, clip=None): - # I'm ignoring masked values and all kinds of edge cases to make a - # simple example... - x, y = [self.vmin, self.vcenter, self.vmax], [0, 0.5, 1] - return np.ma.masked_array(np.interp(value, x, y)) - - -fig, ax = plt.subplots() -midnorm = MidpointNormalize(vmin=-500., vcenter=0, vmax=4000) - -pcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=midnorm, - cmap=terrain_map) -ax.set_aspect(1 / np.cos(np.deg2rad(49))) -fig.colorbar(pcm, shrink=0.6, extend='both') -plt.show() diff --git a/_downloads/c7e6ed0a36d0783c1995239c010e683b/color_cycler.ipynb b/_downloads/c7e6ed0a36d0783c1995239c010e683b/color_cycler.ipynb deleted file mode 100644 index ddd12c83f91..00000000000 --- a/_downloads/c7e6ed0a36d0783c1995239c010e683b/color_cycler.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Styling with cycler\n\n\nDemo of custom property-cycle settings to control colors and other style\nproperties for multi-line plots.\n\nThis example demonstrates two different APIs:\n\n1. Setting the default :doc:`rc parameter`\n specifying the property cycle. This affects all subsequent axes (but not\n axes already created).\n2. Setting the property cycle for a single pair of axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from cycler import cycler\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\nx = np.linspace(0, 2 * np.pi)\noffsets = np.linspace(0, 2*np.pi, 4, endpoint=False)\n# Create array with shifted-sine curve along each column\nyy = np.transpose([np.sin(x + phi) for phi in offsets])\n\n# 1. Setting prop cycle on default rc parameter\nplt.rc('lines', linewidth=4)\nplt.rc('axes', prop_cycle=(cycler(color=['r', 'g', 'b', 'y']) +\n cycler(linestyle=['-', '--', ':', '-.'])))\nfig, (ax0, ax1) = plt.subplots(nrows=2, constrained_layout=True)\nax0.plot(yy)\nax0.set_title('Set default color cycle to rgby')\n\n# 2. Define prop cycle for single set of axes\n# For the most general use-case, you can provide a cycler to\n# `.set_prop_cycle`.\n# Here, we use the convenient shortcut that we can alternatively pass\n# one or more properties as keyword arguments. This creates and sets\n# a cycler iterating simultaneously over all properties.\nax1.set_prop_cycle(color=['c', 'm', 'y', 'k'], lw=[1, 2, 3, 4])\nax1.plot(yy)\nax1.set_title('Set axes color cycle to cmyk')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.set_prop_cycle" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c7ebcd51dd534027d351b6a2aa70dfbc/pie_demo2.py b/_downloads/c7ebcd51dd534027d351b6a2aa70dfbc/pie_demo2.py deleted file mode 120000 index 9e18dbc6879..00000000000 --- a/_downloads/c7ebcd51dd534027d351b6a2aa70dfbc/pie_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c7ebcd51dd534027d351b6a2aa70dfbc/pie_demo2.py \ No newline at end of file diff --git a/_downloads/c7ef3f349898febbdf3d84fa4d57cde4/simple_axisline2.ipynb b/_downloads/c7ef3f349898febbdf3d84fa4d57cde4/simple_axisline2.ipynb deleted file mode 120000 index 5fe3a5a6a17..00000000000 --- a/_downloads/c7ef3f349898febbdf3d84fa4d57cde4/simple_axisline2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c7ef3f349898febbdf3d84fa4d57cde4/simple_axisline2.ipynb \ No newline at end of file diff --git a/_downloads/c7f004e31adb3bb6196893bc8023e71c/embedding_in_wx2_sgskip.ipynb b/_downloads/c7f004e31adb3bb6196893bc8023e71c/embedding_in_wx2_sgskip.ipynb deleted file mode 120000 index da7cf13f39b..00000000000 --- a/_downloads/c7f004e31adb3bb6196893bc8023e71c/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c7f004e31adb3bb6196893bc8023e71c/embedding_in_wx2_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c7f3c43d1e10fd150b18873f70d0822e/simple_legend01.ipynb b/_downloads/c7f3c43d1e10fd150b18873f70d0822e/simple_legend01.ipynb deleted file mode 100644 index b360ce31d5c..00000000000 --- a/_downloads/c7f3c43d1e10fd150b18873f70d0822e/simple_legend01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Legend01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nplt.subplot(211)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n# Place a legend above this subplot, expanding itself to\n# fully use the given bounding box.\nplt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left',\n ncol=2, mode=\"expand\", borderaxespad=0.)\n\nplt.subplot(223)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n# Place a legend to the right of this smaller subplot.\nplt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c7f95fa8ff47434387d21a04265f5e88/named_colors.py b/_downloads/c7f95fa8ff47434387d21a04265f5e88/named_colors.py deleted file mode 120000 index 3671e672824..00000000000 --- a/_downloads/c7f95fa8ff47434387d21a04265f5e88/named_colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c7f95fa8ff47434387d21a04265f5e88/named_colors.py \ No newline at end of file diff --git a/_downloads/c7fbb065e91c427e0ffbdd36893d54b8/fancytextbox_demo.ipynb b/_downloads/c7fbb065e91c427e0ffbdd36893d54b8/fancytextbox_demo.ipynb deleted file mode 120000 index 4ad4c3bda20..00000000000 --- a/_downloads/c7fbb065e91c427e0ffbdd36893d54b8/fancytextbox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c7fbb065e91c427e0ffbdd36893d54b8/fancytextbox_demo.ipynb \ No newline at end of file diff --git a/_downloads/c807ac968504e1d66da3a3a7e452eda6/patheffects_guide.ipynb b/_downloads/c807ac968504e1d66da3a3a7e452eda6/patheffects_guide.ipynb deleted file mode 120000 index e4852b9bd69..00000000000 --- a/_downloads/c807ac968504e1d66da3a3a7e452eda6/patheffects_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c807ac968504e1d66da3a3a7e452eda6/patheffects_guide.ipynb \ No newline at end of file diff --git a/_downloads/c81c470f513bf64e2135c73bad035b3a/mathtext.py b/_downloads/c81c470f513bf64e2135c73bad035b3a/mathtext.py deleted file mode 120000 index 32d6fede661..00000000000 --- a/_downloads/c81c470f513bf64e2135c73bad035b3a/mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c81c470f513bf64e2135c73bad035b3a/mathtext.py \ No newline at end of file diff --git a/_downloads/c82f7fb3d184ccbd2575a6708040d806/interpolation_methods.ipynb b/_downloads/c82f7fb3d184ccbd2575a6708040d806/interpolation_methods.ipynb deleted file mode 120000 index a1760cfb099..00000000000 --- a/_downloads/c82f7fb3d184ccbd2575a6708040d806/interpolation_methods.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c82f7fb3d184ccbd2575a6708040d806/interpolation_methods.ipynb \ No newline at end of file diff --git a/_downloads/c82ff8eba7ca4fb30eaec720be83b9cb/violinplot.py b/_downloads/c82ff8eba7ca4fb30eaec720be83b9cb/violinplot.py deleted file mode 120000 index 84d850a4f2f..00000000000 --- a/_downloads/c82ff8eba7ca4fb30eaec720be83b9cb/violinplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c82ff8eba7ca4fb30eaec720be83b9cb/violinplot.py \ No newline at end of file diff --git a/_downloads/c83b1731d1c5ed67afcdde2cc66abf87/whats_new_1_subplot3d.ipynb b/_downloads/c83b1731d1c5ed67afcdde2cc66abf87/whats_new_1_subplot3d.ipynb deleted file mode 120000 index 83cc790c673..00000000000 --- a/_downloads/c83b1731d1c5ed67afcdde2cc66abf87/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c83b1731d1c5ed67afcdde2cc66abf87/whats_new_1_subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/c8408d30bd5f27070c5fa7a675e2db86/plotfile_demo.ipynb b/_downloads/c8408d30bd5f27070c5fa7a675e2db86/plotfile_demo.ipynb deleted file mode 120000 index 4e53c5477e7..00000000000 --- a/_downloads/c8408d30bd5f27070c5fa7a675e2db86/plotfile_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c8408d30bd5f27070c5fa7a675e2db86/plotfile_demo.ipynb \ No newline at end of file diff --git a/_downloads/c8496925d369718503f000238447152f/quadmesh_demo.py b/_downloads/c8496925d369718503f000238447152f/quadmesh_demo.py deleted file mode 120000 index c01da6ed711..00000000000 --- a/_downloads/c8496925d369718503f000238447152f/quadmesh_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c8496925d369718503f000238447152f/quadmesh_demo.py \ No newline at end of file diff --git a/_downloads/c85894b7c993708a0dbe6a43ca3fffe6/subplot3d.ipynb b/_downloads/c85894b7c993708a0dbe6a43ca3fffe6/subplot3d.ipynb deleted file mode 120000 index bd0b5ae7956..00000000000 --- a/_downloads/c85894b7c993708a0dbe6a43ca3fffe6/subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c85894b7c993708a0dbe6a43ca3fffe6/subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/c85de37afa53d7adf32ba144cc06349c/fancyarrow_demo.ipynb b/_downloads/c85de37afa53d7adf32ba144cc06349c/fancyarrow_demo.ipynb deleted file mode 120000 index c8df650f979..00000000000 --- a/_downloads/c85de37afa53d7adf32ba144cc06349c/fancyarrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c85de37afa53d7adf32ba144cc06349c/fancyarrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/c86a988dbcaf0afda20ece54e4d7c481/usetex_demo.py b/_downloads/c86a988dbcaf0afda20ece54e4d7c481/usetex_demo.py deleted file mode 120000 index e221c090453..00000000000 --- a/_downloads/c86a988dbcaf0afda20ece54e4d7c481/usetex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c86a988dbcaf0afda20ece54e4d7c481/usetex_demo.py \ No newline at end of file diff --git a/_downloads/c86cb8d87bacc80c9ad6c82a50127065/named_colors.py b/_downloads/c86cb8d87bacc80c9ad6c82a50127065/named_colors.py deleted file mode 120000 index 6c9449383bc..00000000000 --- a/_downloads/c86cb8d87bacc80c9ad6c82a50127065/named_colors.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c86cb8d87bacc80c9ad6c82a50127065/named_colors.py \ No newline at end of file diff --git a/_downloads/c86de27c76459c759e2d811ed144e0d3/barchart_demo.ipynb b/_downloads/c86de27c76459c759e2d811ed144e0d3/barchart_demo.ipynb deleted file mode 120000 index ebd83965b28..00000000000 --- a/_downloads/c86de27c76459c759e2d811ed144e0d3/barchart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c86de27c76459c759e2d811ed144e0d3/barchart_demo.ipynb \ No newline at end of file diff --git a/_downloads/c873e822b934416c966f2a3d7e402b4f/spine_placement_demo.ipynb b/_downloads/c873e822b934416c966f2a3d7e402b4f/spine_placement_demo.ipynb deleted file mode 120000 index 913c59b6a5c..00000000000 --- a/_downloads/c873e822b934416c966f2a3d7e402b4f/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c873e822b934416c966f2a3d7e402b4f/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/c881c7d0496fb39e00db10e6fda30079/strip_chart.py b/_downloads/c881c7d0496fb39e00db10e6fda30079/strip_chart.py deleted file mode 120000 index 13a46222b49..00000000000 --- a/_downloads/c881c7d0496fb39e00db10e6fda30079/strip_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c881c7d0496fb39e00db10e6fda30079/strip_chart.py \ No newline at end of file diff --git a/_downloads/c88582050913aadf02acd076fb1ade4f/linestyles.py b/_downloads/c88582050913aadf02acd076fb1ade4f/linestyles.py deleted file mode 120000 index 01de0f5f335..00000000000 --- a/_downloads/c88582050913aadf02acd076fb1ade4f/linestyles.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c88582050913aadf02acd076fb1ade4f/linestyles.py \ No newline at end of file diff --git a/_downloads/c8881925b7a0328b1d04c2966dfc2810/scatter_demo2.py b/_downloads/c8881925b7a0328b1d04c2966dfc2810/scatter_demo2.py deleted file mode 100644 index da7d8433a01..00000000000 --- a/_downloads/c8881925b7a0328b1d04c2966dfc2810/scatter_demo2.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============= -Scatter Demo2 -============= - -Demo of scatter plot with varying marker colors and sizes. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook - -# Load a numpy record array from yahoo csv data with fields date, open, close, -# volume, adj_close from the mpl-data/example directory. The record array -# stores the date as an np.datetime64 with a day unit ('D') in the date column. -with cbook.get_sample_data('goog.npz') as datafile: - price_data = np.load(datafile)['price_data'].view(np.recarray) -price_data = price_data[-250:] # get the most recent 250 trading days - -delta1 = np.diff(price_data.adj_close) / price_data.adj_close[:-1] - -# Marker size in units of points^2 -volume = (15 * price_data.volume[:-2] / price_data.volume[0])**2 -close = 0.003 * price_data.close[:-2] / 0.003 * price_data.open[:-2] - -fig, ax = plt.subplots() -ax.scatter(delta1[:-1], delta1[1:], c=close, s=volume, alpha=0.5) - -ax.set_xlabel(r'$\Delta_i$', fontsize=15) -ax.set_ylabel(r'$\Delta_{i+1}$', fontsize=15) -ax.set_title('Volume and percent change') - -ax.grid(True) -fig.tight_layout() - -plt.show() diff --git a/_downloads/c89f7a5d78dcb36902c78c2844a91056/simple_axesgrid2.ipynb b/_downloads/c89f7a5d78dcb36902c78c2844a91056/simple_axesgrid2.ipynb deleted file mode 120000 index 133725fda8f..00000000000 --- a/_downloads/c89f7a5d78dcb36902c78c2844a91056/simple_axesgrid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c89f7a5d78dcb36902c78c2844a91056/simple_axesgrid2.ipynb \ No newline at end of file diff --git a/_downloads/c8a63f222b5c2e063c431cd9b1e72838/line_collection.py b/_downloads/c8a63f222b5c2e063c431cd9b1e72838/line_collection.py deleted file mode 120000 index 66abcab3436..00000000000 --- a/_downloads/c8a63f222b5c2e063c431cd9b1e72838/line_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c8a63f222b5c2e063c431cd9b1e72838/line_collection.py \ No newline at end of file diff --git a/_downloads/c8ab40aa46849d0f1efc9226861f8090/contour_manual.py b/_downloads/c8ab40aa46849d0f1efc9226861f8090/contour_manual.py deleted file mode 100644 index cc47bce184c..00000000000 --- a/_downloads/c8ab40aa46849d0f1efc9226861f8090/contour_manual.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -============== -Manual Contour -============== - -Example of displaying your own contour lines and polygons using ContourSet. -""" -import matplotlib.pyplot as plt -from matplotlib.contour import ContourSet -import matplotlib.cm as cm - - -############################################################################### -# Contour lines for each level are a list/tuple of polygons. -lines0 = [[[0, 0], [0, 4]]] -lines1 = [[[2, 0], [1, 2], [1, 3]]] -lines2 = [[[3, 0], [3, 2]], [[3, 3], [3, 4]]] # Note two lines. - -############################################################################### -# Filled contours between two levels are also a list/tuple of polygons. -# Points can be ordered clockwise or anticlockwise. -filled01 = [[[0, 0], [0, 4], [1, 3], [1, 2], [2, 0]]] -filled12 = [[[2, 0], [3, 0], [3, 2], [1, 3], [1, 2]], # Note two polygons. - [[1, 4], [3, 4], [3, 3]]] - -############################################################################### - -fig, ax = plt.subplots() - -# Filled contours using filled=True. -cs = ContourSet(ax, [0, 1, 2], [filled01, filled12], filled=True, cmap=cm.bone) -cbar = fig.colorbar(cs) - -# Contour lines (non-filled). -lines = ContourSet( - ax, [0, 1, 2], [lines0, lines1, lines2], cmap=cm.cool, linewidths=3) -cbar.add_lines(lines) - -ax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 4.5), - title='User-specified contours') - -############################################################################### -# Multiple filled contour lines can be specified in a single list of polygon -# vertices along with a list of vertex kinds (code types) as described in the -# Path class. This is particularly useful for polygons with holes. -# Here a code type of 1 is a MOVETO, and 2 is a LINETO. - -fig, ax = plt.subplots() -filled01 = [[[0, 0], [3, 0], [3, 3], [0, 3], [1, 1], [1, 2], [2, 2], [2, 1]]] -kinds01 = [[1, 2, 2, 2, 1, 2, 2, 2]] -cs = ContourSet(ax, [0, 1], [filled01], [kinds01], filled=True) -cbar = fig.colorbar(cs) - -ax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 3.5), - title='User specified filled contours with holes') - -plt.show() diff --git a/_downloads/c8b1a08507409981478d291c9ede3129/lasso_selector_demo_sgskip.ipynb b/_downloads/c8b1a08507409981478d291c9ede3129/lasso_selector_demo_sgskip.ipynb deleted file mode 120000 index ab233fe31d1..00000000000 --- a/_downloads/c8b1a08507409981478d291c9ede3129/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c8b1a08507409981478d291c9ede3129/lasso_selector_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c8b7d8570c70c830f826c65fea2f86e9/pyplot_three.py b/_downloads/c8b7d8570c70c830f826c65fea2f86e9/pyplot_three.py deleted file mode 100644 index 9026e4acae1..00000000000 --- a/_downloads/c8b7d8570c70c830f826c65fea2f86e9/pyplot_three.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============ -Pyplot Three -============ - -Plot three line plots in a single call to `~matplotlib.pyplot.plot`. -""" -import numpy as np -import matplotlib.pyplot as plt - -# evenly sampled time at 200ms intervals -t = np.arange(0., 5., 0.2) - -# red dashes, blue squares and green triangles -plt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.plot -matplotlib.axes.Axes.plot diff --git a/_downloads/c8bc7ee8ba885a996d9ea6790e87852b/frame_grabbing_sgskip.ipynb b/_downloads/c8bc7ee8ba885a996d9ea6790e87852b/frame_grabbing_sgskip.ipynb deleted file mode 100644 index 3e875091bf8..00000000000 --- a/_downloads/c8bc7ee8ba885a996d9ea6790e87852b/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Frame grabbing\n\n\nUse a MovieWriter directly to grab individual frames and write them to a\nfile. This avoids any event loop integration, and thus works even with the Agg\nbackend. This is not recommended for use in an interactive setting.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nmatplotlib.use(\"Agg\")\nimport matplotlib.pyplot as plt\nfrom matplotlib.animation import FFMpegWriter\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nmetadata = dict(title='Movie Test', artist='Matplotlib',\n comment='Movie support!')\nwriter = FFMpegWriter(fps=15, metadata=metadata)\n\nfig = plt.figure()\nl, = plt.plot([], [], 'k-o')\n\nplt.xlim(-5, 5)\nplt.ylim(-5, 5)\n\nx0, y0 = 0, 0\n\nwith writer.saving(fig, \"writer_test.mp4\", 100):\n for i in range(100):\n x0 += 0.1 * np.random.randn()\n y0 += 0.1 * np.random.randn()\n l.set_data(x0, y0)\n writer.grab_frame()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c8be5d8e7668702611ff1625af1697e3/barh.ipynb b/_downloads/c8be5d8e7668702611ff1625af1697e3/barh.ipynb deleted file mode 120000 index 51d3eff4faa..00000000000 --- a/_downloads/c8be5d8e7668702611ff1625af1697e3/barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c8be5d8e7668702611ff1625af1697e3/barh.ipynb \ No newline at end of file diff --git a/_downloads/c8cb4233ddf11eda2c7de63ed16656a9/demo_floating_axes.ipynb b/_downloads/c8cb4233ddf11eda2c7de63ed16656a9/demo_floating_axes.ipynb deleted file mode 100644 index 8516146b577..00000000000 --- a/_downloads/c8cb4233ddf11eda2c7de63ed16656a9/demo_floating_axes.ipynb +++ /dev/null @@ -1,65 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================================================\n:mod:`mpl_toolkits.axisartist.floating_axes` features\n=====================================================\n\nDemonstration of features of the :mod:`.floating_axes` module:\n\n* Using `scatter` and `bar` with changing the shape of the plot.\n* Using `GridHelperCurveLinear` to rotate the plot and set the plot boundary.\n* Using `FloatingSubplot` to create a subplot using the return value from\n `GridHelperCurveLinear`.\n* Making a sector plot by adding more features to `GridHelperCurveLinear`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.transforms import Affine2D\nimport mpl_toolkits.axisartist.floating_axes as floating_axes\nimport numpy as np\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nfrom matplotlib.projections import PolarAxes\nfrom mpl_toolkits.axisartist.grid_finder import (FixedLocator, MaxNLocator,\n DictFormatter)\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef setup_axes1(fig, rect):\n \"\"\"\n A simple one.\n \"\"\"\n tr = Affine2D().scale(2, 1).rotate_deg(30)\n\n grid_helper = floating_axes.GridHelperCurveLinear(\n tr, extremes=(-0.5, 3.5, 0, 4),\n grid_locator1=MaxNLocator(nbins=4),\n grid_locator2=MaxNLocator(nbins=4))\n\n ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper)\n fig.add_subplot(ax1)\n\n aux_ax = ax1.get_aux_axes(tr)\n\n return ax1, aux_ax\n\n\ndef setup_axes2(fig, rect):\n \"\"\"\n With custom locator and formatter.\n Note that the extreme values are swapped.\n \"\"\"\n tr = PolarAxes.PolarTransform()\n\n pi = np.pi\n angle_ticks = [(0, r\"$0$\"),\n (.25*pi, r\"$\\frac{1}{4}\\pi$\"),\n (.5*pi, r\"$\\frac{1}{2}\\pi$\")]\n grid_locator1 = FixedLocator([v for v, s in angle_ticks])\n tick_formatter1 = DictFormatter(dict(angle_ticks))\n\n grid_locator2 = MaxNLocator(2)\n\n grid_helper = floating_axes.GridHelperCurveLinear(\n tr, extremes=(.5*pi, 0, 2, 1),\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1,\n tick_formatter2=None)\n\n ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper)\n fig.add_subplot(ax1)\n\n # create a parasite axes whose transData in RA, cz\n aux_ax = ax1.get_aux_axes(tr)\n\n aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax\n ax1.patch.zorder = 0.9 # but this has a side effect that the patch is\n # drawn twice, and possibly over some other\n # artists. So, we decrease the zorder a bit to\n # prevent this.\n\n return ax1, aux_ax\n\n\ndef setup_axes3(fig, rect):\n \"\"\"\n Sometimes, things like axis_direction need to be adjusted.\n \"\"\"\n\n # rotate a bit for better orientation\n tr_rotate = Affine2D().translate(-95, 0)\n\n # scale degree to radians\n tr_scale = Affine2D().scale(np.pi/180., 1.)\n\n tr = tr_rotate + tr_scale + PolarAxes.PolarTransform()\n\n grid_locator1 = angle_helper.LocatorHMS(4)\n tick_formatter1 = angle_helper.FormatterHMS()\n\n grid_locator2 = MaxNLocator(3)\n\n # Specify theta limits in degrees\n ra0, ra1 = 8.*15, 14.*15\n # Specify radial limits\n cz0, cz1 = 0, 14000\n grid_helper = floating_axes.GridHelperCurveLinear(\n tr, extremes=(ra0, ra1, cz0, cz1),\n grid_locator1=grid_locator1,\n grid_locator2=grid_locator2,\n tick_formatter1=tick_formatter1,\n tick_formatter2=None)\n\n ax1 = floating_axes.FloatingSubplot(fig, rect, grid_helper=grid_helper)\n fig.add_subplot(ax1)\n\n # adjust axis\n ax1.axis[\"left\"].set_axis_direction(\"bottom\")\n ax1.axis[\"right\"].set_axis_direction(\"top\")\n\n ax1.axis[\"bottom\"].set_visible(False)\n ax1.axis[\"top\"].set_axis_direction(\"bottom\")\n ax1.axis[\"top\"].toggle(ticklabels=True, label=True)\n ax1.axis[\"top\"].major_ticklabels.set_axis_direction(\"top\")\n ax1.axis[\"top\"].label.set_axis_direction(\"top\")\n\n ax1.axis[\"left\"].label.set_text(r\"cz [km$^{-1}$]\")\n ax1.axis[\"top\"].label.set_text(r\"$\\alpha_{1950}$\")\n\n # create a parasite axes whose transData in RA, cz\n aux_ax = ax1.get_aux_axes(tr)\n\n aux_ax.patch = ax1.patch # for aux_ax to have a clip path as in ax\n ax1.patch.zorder = 0.9 # but this has a side effect that the patch is\n # drawn twice, and possibly over some other\n # artists. So, we decrease the zorder a bit to\n # prevent this.\n\n return ax1, aux_ax" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(8, 4))\nfig.subplots_adjust(wspace=0.3, left=0.05, right=0.95)\n\nax1, aux_ax1 = setup_axes1(fig, 131)\naux_ax1.bar([0, 1, 2, 3], [3, 2, 1, 3])\n\nax2, aux_ax2 = setup_axes2(fig, 132)\ntheta = np.random.rand(10)*.5*np.pi\nradius = np.random.rand(10) + 1.\naux_ax2.scatter(theta, radius)\n\nax3, aux_ax3 = setup_axes3(fig, 133)\n\ntheta = (8 + np.random.rand(10)*(14 - 8))*15. # in degrees\nradius = np.random.rand(10)*14000.\naux_ax3.scatter(theta, radius)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c8d0a040f6fb880e1571326d4f4c0658/pyplot_mathtext.ipynb b/_downloads/c8d0a040f6fb880e1571326d4f4c0658/pyplot_mathtext.ipynb deleted file mode 100644 index 521765e2b2d..00000000000 --- a/_downloads/c8d0a040f6fb880e1571326d4f4c0658/pyplot_mathtext.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Mathtext\n\n\nUse mathematical expressions in text labels. For an overview over MathText\nsee :doc:`/tutorials/text/mathtext`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nt = np.arange(0.0, 2.0, 0.01)\ns = np.sin(2*np.pi*t)\n\nplt.plot(t,s)\nplt.title(r'$\\alpha_i > \\beta_i$', fontsize=20)\nplt.text(1, -0.6, r'$\\sum_{i=0}^\\infty x_i$', fontsize=20)\nplt.text(0.6, 0.6, r'$\\mathcal{A}\\mathrm{sin}(2 \\omega t)$',\n fontsize=20)\nplt.xlabel('time (s)')\nplt.ylabel('volts (mV)')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.text\nmatplotlib.axes.Axes.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c8dfa5c8b360c85b708209526b36df3b/boxplot_demo_pyplot.ipynb b/_downloads/c8dfa5c8b360c85b708209526b36df3b/boxplot_demo_pyplot.ipynb deleted file mode 120000 index e850e1d56f0..00000000000 --- a/_downloads/c8dfa5c8b360c85b708209526b36df3b/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c8dfa5c8b360c85b708209526b36df3b/boxplot_demo_pyplot.ipynb \ No newline at end of file diff --git a/_downloads/c8e07f284d3bd8e1be7f9c44d2ea97d2/radian_demo.py b/_downloads/c8e07f284d3bd8e1be7f9c44d2ea97d2/radian_demo.py deleted file mode 120000 index 5044fbd2284..00000000000 --- a/_downloads/c8e07f284d3bd8e1be7f9c44d2ea97d2/radian_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c8e07f284d3bd8e1be7f9c44d2ea97d2/radian_demo.py \ No newline at end of file diff --git a/_downloads/c8e29df72662630a67abc0edf854138d/pgf_preamble_sgskip.py b/_downloads/c8e29df72662630a67abc0edf854138d/pgf_preamble_sgskip.py deleted file mode 120000 index 926683c36d9..00000000000 --- a/_downloads/c8e29df72662630a67abc0edf854138d/pgf_preamble_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c8e29df72662630a67abc0edf854138d/pgf_preamble_sgskip.py \ No newline at end of file diff --git a/_downloads/c8f52dc3704a5d4c5d36183e5322ae0e/annotate_simple03.ipynb b/_downloads/c8f52dc3704a5d4c5d36183e5322ae0e/annotate_simple03.ipynb deleted file mode 120000 index c50792dd969..00000000000 --- a/_downloads/c8f52dc3704a5d4c5d36183e5322ae0e/annotate_simple03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c8f52dc3704a5d4c5d36183e5322ae0e/annotate_simple03.ipynb \ No newline at end of file diff --git a/_downloads/c9009b363ce2d312ecc81df9c6d196b9/tutorials_python.zip b/_downloads/c9009b363ce2d312ecc81df9c6d196b9/tutorials_python.zip deleted file mode 120000 index 6869a77d1c5..00000000000 --- a/_downloads/c9009b363ce2d312ecc81df9c6d196b9/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.4.1/_downloads/c9009b363ce2d312ecc81df9c6d196b9/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/c900f54161a1c8005cf9ce23d7753345/customized_violin.ipynb b/_downloads/c900f54161a1c8005cf9ce23d7753345/customized_violin.ipynb deleted file mode 120000 index 8169a3d4c84..00000000000 --- a/_downloads/c900f54161a1c8005cf9ce23d7753345/customized_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c900f54161a1c8005cf9ce23d7753345/customized_violin.ipynb \ No newline at end of file diff --git a/_downloads/c90295cd8353cfc732515925c784566b/pyplot_two_subplots.ipynb b/_downloads/c90295cd8353cfc732515925c784566b/pyplot_two_subplots.ipynb deleted file mode 120000 index fbe7ecb3602..00000000000 --- a/_downloads/c90295cd8353cfc732515925c784566b/pyplot_two_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c90295cd8353cfc732515925c784566b/pyplot_two_subplots.ipynb \ No newline at end of file diff --git a/_downloads/c9070ed489c268e3c3a903c7ddb61194/colormap_normalizations_lognorm.ipynb b/_downloads/c9070ed489c268e3c3a903c7ddb61194/colormap_normalizations_lognorm.ipynb deleted file mode 120000 index 0d039b5e013..00000000000 --- a/_downloads/c9070ed489c268e3c3a903c7ddb61194/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c9070ed489c268e3c3a903c7ddb61194/colormap_normalizations_lognorm.ipynb \ No newline at end of file diff --git a/_downloads/c91b165b59e8de7fa655ea77eebb5d6b/colorbar_placement.py b/_downloads/c91b165b59e8de7fa655ea77eebb5d6b/colorbar_placement.py deleted file mode 100644 index eee99acbea0..00000000000 --- a/_downloads/c91b165b59e8de7fa655ea77eebb5d6b/colorbar_placement.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -================= -Placing Colorbars -================= - -Colorbars indicate the quantitative extent of image data. Placing in -a figure is non-trivial because room needs to be made for them. - -The simplest case is just attaching a colorbar to each axes: -""" -import matplotlib.pyplot as plt -import numpy as np - -fig, axs = plt.subplots(2, 2) -cm = ['RdBu_r', 'viridis'] -for col in range(2): - for row in range(2): - ax = axs[row, col] - pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1), - cmap=cm[col]) - fig.colorbar(pcm, ax=ax) -plt.show() - -###################################################################### -# The first column has the same type of data in both rows, so it may -# be desirable to combine the colorbar which we do by calling -# `.Figure.colorbar` with a list of axes instead of a single axes. - -fig, axs = plt.subplots(2, 2) -cm = ['RdBu_r', 'viridis'] -for col in range(2): - for row in range(2): - ax = axs[row, col] - pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1), - cmap=cm[col]) - fig.colorbar(pcm, ax=axs[:, col], shrink=0.6) -plt.show() - -###################################################################### -# Relatively complicated colorbar layouts are possible using this -# paradigm. Note that this example works far better with -# ``constrained_layout=True`` - -fig, axs = plt.subplots(3, 3, constrained_layout=True) -for ax in axs.flat: - pcm = ax.pcolormesh(np.random.random((20, 20))) - -fig.colorbar(pcm, ax=axs[0, :2], shrink=0.6, location='bottom') -fig.colorbar(pcm, ax=[axs[0, 2]], location='bottom') -fig.colorbar(pcm, ax=axs[1:, :], location='right', shrink=0.6) -fig.colorbar(pcm, ax=[axs[2, 1]], location='left') - - -plt.show() diff --git a/_downloads/c92ef92efeab9c124749ee315bcec339/image_annotated_heatmap.py b/_downloads/c92ef92efeab9c124749ee315bcec339/image_annotated_heatmap.py deleted file mode 120000 index 378212ff434..00000000000 --- a/_downloads/c92ef92efeab9c124749ee315bcec339/image_annotated_heatmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c92ef92efeab9c124749ee315bcec339/image_annotated_heatmap.py \ No newline at end of file diff --git a/_downloads/c93ba1f8a250ddedb412db596cc5b853/customizing.ipynb b/_downloads/c93ba1f8a250ddedb412db596cc5b853/customizing.ipynb deleted file mode 120000 index b9918806741..00000000000 --- a/_downloads/c93ba1f8a250ddedb412db596cc5b853/customizing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c93ba1f8a250ddedb412db596cc5b853/customizing.ipynb \ No newline at end of file diff --git a/_downloads/c94a3a4ba794ba68f9ab98a33d7652a8/load_converter.py b/_downloads/c94a3a4ba794ba68f9ab98a33d7652a8/load_converter.py deleted file mode 120000 index 63a9d07d9a9..00000000000 --- a/_downloads/c94a3a4ba794ba68f9ab98a33d7652a8/load_converter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c94a3a4ba794ba68f9ab98a33d7652a8/load_converter.py \ No newline at end of file diff --git a/_downloads/c94c2cf47052d27ec366585d2b67b615/text_rotation.py b/_downloads/c94c2cf47052d27ec366585d2b67b615/text_rotation.py deleted file mode 120000 index c6bd2843e2c..00000000000 --- a/_downloads/c94c2cf47052d27ec366585d2b67b615/text_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c94c2cf47052d27ec366585d2b67b615/text_rotation.py \ No newline at end of file diff --git a/_downloads/c9583e482cd5f2ee7ce6ee376f7a1338/embedding_in_wx4_sgskip.py b/_downloads/c9583e482cd5f2ee7ce6ee376f7a1338/embedding_in_wx4_sgskip.py deleted file mode 120000 index 471d64fa863..00000000000 --- a/_downloads/c9583e482cd5f2ee7ce6ee376f7a1338/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c9583e482cd5f2ee7ce6ee376f7a1338/embedding_in_wx4_sgskip.py \ No newline at end of file diff --git a/_downloads/c959932316ffd40d04ead8bdf210461d/custom_figure_class.py b/_downloads/c959932316ffd40d04ead8bdf210461d/custom_figure_class.py deleted file mode 120000 index b51933fa01d..00000000000 --- a/_downloads/c959932316ffd40d04ead8bdf210461d/custom_figure_class.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c959932316ffd40d04ead8bdf210461d/custom_figure_class.py \ No newline at end of file diff --git a/_downloads/c95c51c685ba2e2186f17d8368f80504/pyplot.py b/_downloads/c95c51c685ba2e2186f17d8368f80504/pyplot.py deleted file mode 120000 index 369148ac031..00000000000 --- a/_downloads/c95c51c685ba2e2186f17d8368f80504/pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c95c51c685ba2e2186f17d8368f80504/pyplot.py \ No newline at end of file diff --git a/_downloads/c95d07e205e60e3dab13cd26e5939794/log_demo.py b/_downloads/c95d07e205e60e3dab13cd26e5939794/log_demo.py deleted file mode 120000 index ff4dee3d2b4..00000000000 --- a/_downloads/c95d07e205e60e3dab13cd26e5939794/log_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c95d07e205e60e3dab13cd26e5939794/log_demo.py \ No newline at end of file diff --git a/_downloads/c96dfc01ff856cbd15e151f8bcbe951c/embedding_in_wx3_sgskip.ipynb b/_downloads/c96dfc01ff856cbd15e151f8bcbe951c/embedding_in_wx3_sgskip.ipynb deleted file mode 120000 index f01a0631253..00000000000 --- a/_downloads/c96dfc01ff856cbd15e151f8bcbe951c/embedding_in_wx3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c96dfc01ff856cbd15e151f8bcbe951c/embedding_in_wx3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c977dda853870ca68c4e9bcba14df776/sankey_links.ipynb b/_downloads/c977dda853870ca68c4e9bcba14df776/sankey_links.ipynb deleted file mode 120000 index c32c0194cc1..00000000000 --- a/_downloads/c977dda853870ca68c4e9bcba14df776/sankey_links.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c977dda853870ca68c4e9bcba14df776/sankey_links.ipynb \ No newline at end of file diff --git a/_downloads/c97a35f2fcbe2352111222a09ab90e18/looking_glass.py b/_downloads/c97a35f2fcbe2352111222a09ab90e18/looking_glass.py deleted file mode 100644 index aad0cba3a28..00000000000 --- a/_downloads/c97a35f2fcbe2352111222a09ab90e18/looking_glass.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -============= -Looking Glass -============= - -Example using mouse events to simulate a looking glass for inspecting data. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.patches as patches - -# Fixing random state for reproducibility -np.random.seed(19680801) - -x, y = np.random.rand(2, 200) - -fig, ax = plt.subplots() -circ = patches.Circle((0.5, 0.5), 0.25, alpha=0.8, fc='yellow') -ax.add_patch(circ) - - -ax.plot(x, y, alpha=0.2) -line, = ax.plot(x, y, alpha=1.0, clip_path=circ) -ax.set_title("Left click and drag to move looking glass") - - -class EventHandler(object): - def __init__(self): - fig.canvas.mpl_connect('button_press_event', self.onpress) - fig.canvas.mpl_connect('button_release_event', self.onrelease) - fig.canvas.mpl_connect('motion_notify_event', self.onmove) - self.x0, self.y0 = circ.center - self.pressevent = None - - def onpress(self, event): - if event.inaxes != ax: - return - - if not circ.contains(event)[0]: - return - - self.pressevent = event - - def onrelease(self, event): - self.pressevent = None - self.x0, self.y0 = circ.center - - def onmove(self, event): - if self.pressevent is None or event.inaxes != self.pressevent.inaxes: - return - - dx = event.xdata - self.pressevent.xdata - dy = event.ydata - self.pressevent.ydata - circ.center = self.x0 + dx, self.y0 + dy - line.set_clip_path(circ) - fig.canvas.draw() - -handler = EventHandler() -plt.show() diff --git a/_downloads/c983b2dead06dc3cd4568e49bb57f3f6/arrow_simple_demo.ipynb b/_downloads/c983b2dead06dc3cd4568e49bb57f3f6/arrow_simple_demo.ipynb deleted file mode 120000 index da8c70a38e3..00000000000 --- a/_downloads/c983b2dead06dc3cd4568e49bb57f3f6/arrow_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c983b2dead06dc3cd4568e49bb57f3f6/arrow_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/c98a73500ee26c79be52b3c21587e18b/tick_label_right.ipynb b/_downloads/c98a73500ee26c79be52b3c21587e18b/tick_label_right.ipynb deleted file mode 120000 index 6777268aa4a..00000000000 --- a/_downloads/c98a73500ee26c79be52b3c21587e18b/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c98a73500ee26c79be52b3c21587e18b/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/c98e13a4d9575bdc68239d4d6f633668/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/c98e13a4d9575bdc68239d4d6f633668/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 120000 index 2b782926866..00000000000 --- a/_downloads/c98e13a4d9575bdc68239d4d6f633668/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c98e13a4d9575bdc68239d4d6f633668/embedding_in_gtk3_panzoom_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/c99a04dab309f2f045ecbddadce5289c/tricontour_smooth_user.ipynb b/_downloads/c99a04dab309f2f045ecbddadce5289c/tricontour_smooth_user.ipynb deleted file mode 120000 index 36fb1862917..00000000000 --- a/_downloads/c99a04dab309f2f045ecbddadce5289c/tricontour_smooth_user.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c99a04dab309f2f045ecbddadce5289c/tricontour_smooth_user.ipynb \ No newline at end of file diff --git a/_downloads/c9b43a2265a8938c486c5b268d612f79/power_norm.py b/_downloads/c9b43a2265a8938c486c5b268d612f79/power_norm.py deleted file mode 120000 index f9b4e1f8224..00000000000 --- a/_downloads/c9b43a2265a8938c486c5b268d612f79/power_norm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c9b43a2265a8938c486c5b268d612f79/power_norm.py \ No newline at end of file diff --git a/_downloads/c9c14c6b496e6dd6d8f9bf431740b76a/firefox.py b/_downloads/c9c14c6b496e6dd6d8f9bf431740b76a/firefox.py deleted file mode 120000 index 41e78174dd5..00000000000 --- a/_downloads/c9c14c6b496e6dd6d8f9bf431740b76a/firefox.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c9c14c6b496e6dd6d8f9bf431740b76a/firefox.py \ No newline at end of file diff --git a/_downloads/c9c3a6f742558bbef9604d86b5cb36d5/contour_label_demo.ipynb b/_downloads/c9c3a6f742558bbef9604d86b5cb36d5/contour_label_demo.ipynb deleted file mode 120000 index ef97af60d1c..00000000000 --- a/_downloads/c9c3a6f742558bbef9604d86b5cb36d5/contour_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c9c3a6f742558bbef9604d86b5cb36d5/contour_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/c9cc5a2a6e1176bc93809343e4ee67e5/polar_scatter.ipynb b/_downloads/c9cc5a2a6e1176bc93809343e4ee67e5/polar_scatter.ipynb deleted file mode 120000 index 1eba45bda2b..00000000000 --- a/_downloads/c9cc5a2a6e1176bc93809343e4ee67e5/polar_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c9cc5a2a6e1176bc93809343e4ee67e5/polar_scatter.ipynb \ No newline at end of file diff --git a/_downloads/c9cf4027d871453d8776c09993e31bcd/pythonic_matplotlib.py b/_downloads/c9cf4027d871453d8776c09993e31bcd/pythonic_matplotlib.py deleted file mode 120000 index 38147c8d937..00000000000 --- a/_downloads/c9cf4027d871453d8776c09993e31bcd/pythonic_matplotlib.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c9cf4027d871453d8776c09993e31bcd/pythonic_matplotlib.py \ No newline at end of file diff --git a/_downloads/c9d554269189834fb802c7bd21077f14/histogram_path.ipynb b/_downloads/c9d554269189834fb802c7bd21077f14/histogram_path.ipynb deleted file mode 120000 index 24b02e4edcd..00000000000 --- a/_downloads/c9d554269189834fb802c7bd21077f14/histogram_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c9d554269189834fb802c7bd21077f14/histogram_path.ipynb \ No newline at end of file diff --git a/_downloads/c9d72265dc18326e51e35963d1f9869e/zoom_inset_axes.ipynb b/_downloads/c9d72265dc18326e51e35963d1f9869e/zoom_inset_axes.ipynb deleted file mode 100644 index 0997e95777c..00000000000 --- a/_downloads/c9d72265dc18326e51e35963d1f9869e/zoom_inset_axes.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Zoom region inset axes\n\n\nExample of an inset axes and a rectangle showing where the zoom is located.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n import numpy as np\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\nfig, ax = plt.subplots(figsize=[5, 4])\n\n# make data\nZ, extent = get_demo_image()\nZ2 = np.zeros([150, 150], dtype=\"d\")\nny, nx = Z.shape\nZ2[30:30 + ny, 30:30 + nx] = Z\n\nax.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n\n# inset axes....\naxins = ax.inset_axes([0.5, 0.5, 0.47, 0.47])\naxins.imshow(Z2, extent=extent, interpolation=\"nearest\",\n origin=\"lower\")\n# sub region of the original image\nx1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9\naxins.set_xlim(x1, x2)\naxins.set_ylim(y1, y2)\naxins.set_xticklabels('')\naxins.set_yticklabels('')\n\nax.indicate_inset_zoom(axins)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.inset_axes\nmatplotlib.axes.Axes.indicate_inset_zoom\nmatplotlib.axes.Axes.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c9d805dc2da30933aec9cd00f489e347/polar_bar.ipynb b/_downloads/c9d805dc2da30933aec9cd00f489e347/polar_bar.ipynb deleted file mode 120000 index 20b87ffbd87..00000000000 --- a/_downloads/c9d805dc2da30933aec9cd00f489e347/polar_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c9d805dc2da30933aec9cd00f489e347/polar_bar.ipynb \ No newline at end of file diff --git a/_downloads/c9d827088db02af9e8503de0e2b5e500/subplots_demo.ipynb b/_downloads/c9d827088db02af9e8503de0e2b5e500/subplots_demo.ipynb deleted file mode 100644 index 32d650ec0fb..00000000000 --- a/_downloads/c9d827088db02af9e8503de0e2b5e500/subplots_demo.ipynb +++ /dev/null @@ -1,270 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=================================================\nCreating multiple subplots using ``plt.subplots``\n=================================================\n\n`.pyplot.subplots` creates a figure and a grid of subplots with a single call,\nwhile providing reasonable control over how the individual plots are created.\nFor more advanced use cases you can use `.GridSpec` for a more general subplot\nlayout or `.Figure.add_subplot` for adding subplots at arbitrary locations\nwithin the figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 11\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Some example data to display\nx = np.linspace(0, 2 * np.pi, 400)\ny = np.sin(x ** 2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A figure with just one subplot\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\n``subplots()`` without arguments returns a `.Figure` and a single\n`~.axes.Axes`.\n\nThis is actually the simplest and recommended way of creating a single\nFigure and Axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.plot(x, y)\nax.set_title('A single plot')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Stacking subplots in one direction\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThe first two optional arguments of `.pyplot.subplots` define the number of\nrows and columns of the subplot grid.\n\nWhen stacking in one direction only, the returned `axs` is a 1D numpy array\ncontaining the list of created Axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2)\nfig.suptitle('Vertically stacked subplots')\naxs[0].plot(x, y)\naxs[1].plot(x, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you are creating just a few Axes, it's handy to unpack them immediately to\ndedicated variables for each Axes. That way, we can use ``ax1`` instead of\nthe more verbose ``axs[0]``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2)\nfig.suptitle('Vertically stacked subplots')\nax1.plot(x, y)\nax2.plot(x, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To obtain side-by-side subplots, pass parameters ``1, 2`` for one row and two\ncolumns.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2)\nfig.suptitle('Horizontally stacked subplots')\nax1.plot(x, y)\nax2.plot(x, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Stacking subplots in two directions\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nWhen stacking in two directions, the returned `axs` is a 2D numpy array.\n\nIf you have to set parameters for each subplot it's handy to iterate over\nall subplots in a 2D grid using ``for ax in axs.flat:``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2)\naxs[0, 0].plot(x, y)\naxs[0, 0].set_title('Axis [0,0]')\naxs[0, 1].plot(x, y, 'tab:orange')\naxs[0, 1].set_title('Axis [0,1]')\naxs[1, 0].plot(x, -y, 'tab:green')\naxs[1, 0].set_title('Axis [1,0]')\naxs[1, 1].plot(x, -y, 'tab:red')\naxs[1, 1].set_title('Axis [1,1]')\n\nfor ax in axs.flat:\n ax.set(xlabel='x-label', ylabel='y-label')\n\n# Hide x labels and tick labels for top plots and y ticks for right plots.\nfor ax in axs.flat:\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can use tuple-unpacking also in 2D to assign all subplots to dedicated\nvariables:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\nfig.suptitle('Sharing x per column, y per row')\nax1.plot(x, y)\nax2.plot(x, y**2, 'tab:orange')\nax3.plot(x, -y, 'tab:green')\nax4.plot(x, -y**2, 'tab:red')\n\nfor ax in fig.get_axes():\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sharing axes\n\"\"\"\"\"\"\"\"\"\"\"\"\n\nBy default, each Axes is scaled individually. Thus, if the ranges are\ndifferent the tick values of the subplots do not align.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2)\nfig.suptitle('Axes values are scaled individually by default')\nax1.plot(x, y)\nax2.plot(x + 1, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can use *sharex* or *sharey* to align the horizontal or vertical axis.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2, sharex=True)\nfig.suptitle('Aligning x-axis using sharex')\nax1.plot(x, y)\nax2.plot(x + 1, -y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Setting *sharex* or *sharey* to ``True`` enables global sharing across the\nwhole grid, i.e. also the y-axes of vertically stacked subplots have the\nsame scale when using ``sharey=True``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, sharex=True, sharey=True)\nfig.suptitle('Sharing both axes')\naxs[0].plot(x, y ** 2)\naxs[1].plot(x, 0.3 * y, 'o')\naxs[2].plot(x, y, '+')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For subplots that are sharing axes one set of tick labels is enough. Tick\nlabels of inner Axes are automatically removed by *sharex* and *sharey*.\nStill there remains an unused empty space between the subplots.\n\nThe parameter *gridspec_kw* of `.pyplot.subplots` controls the grid\nproperties (see also `.GridSpec`). For example, we can reduce the height\nbetween vertical subplots using ``gridspec_kw={'hspace': 0}``.\n\n`.label_outer` is a handy method to remove labels and ticks from subplots\nthat are not at the edge of the grid.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, sharex=True, sharey=True, gridspec_kw={'hspace': 0})\nfig.suptitle('Sharing both axes')\naxs[0].plot(x, y ** 2)\naxs[1].plot(x, 0.3 * y, 'o')\naxs[2].plot(x, y, '+')\n\n# Hide x labels and tick labels for all but bottom plot.\nfor ax in axs:\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Apart from ``True`` and ``False``, both *sharex* and *sharey* accept the\nvalues 'row' and 'col' to share the values only per row or column.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, sharex='col', sharey='row',\n gridspec_kw={'hspace': 0, 'wspace': 0})\n(ax1, ax2), (ax3, ax4) = axs\nfig.suptitle('Sharing x per column, y per row')\nax1.plot(x, y)\nax2.plot(x, y**2, 'tab:orange')\nax3.plot(x + 1, -y, 'tab:green')\nax4.plot(x + 2, -y**2, 'tab:red')\n\nfor ax in axs.flat:\n ax.label_outer()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Polar axes\n\"\"\"\"\"\"\"\"\"\"\n\nThe parameter *subplot_kw* of `.pyplot.subplots` controls the subplot\nproperties (see also `.Figure.add_subplot`). In particular, this can be used\nto create a grid of polar Axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2, subplot_kw=dict(projection='polar'))\nax1.plot(x, y)\nax2.plot(x, y ** 2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c9ddfee49535889a03f7cd2947fa0576/scalarformatter.py b/_downloads/c9ddfee49535889a03f7cd2947fa0576/scalarformatter.py deleted file mode 120000 index 921804db33f..00000000000 --- a/_downloads/c9ddfee49535889a03f7cd2947fa0576/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/c9ddfee49535889a03f7cd2947fa0576/scalarformatter.py \ No newline at end of file diff --git a/_downloads/c9e78edc931b6bcb90a5241975e1ea47/engineering_formatter.py b/_downloads/c9e78edc931b6bcb90a5241975e1ea47/engineering_formatter.py deleted file mode 120000 index c0d4df2085c..00000000000 --- a/_downloads/c9e78edc931b6bcb90a5241975e1ea47/engineering_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/c9e78edc931b6bcb90a5241975e1ea47/engineering_formatter.py \ No newline at end of file diff --git a/_downloads/c9e91fe194f42551196cab8cf7a4287a/wire3d.ipynb b/_downloads/c9e91fe194f42551196cab8cf7a4287a/wire3d.ipynb deleted file mode 100644 index bf9e046e745..00000000000 --- a/_downloads/c9e91fe194f42551196cab8cf7a4287a/wire3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D wireframe plot\n\n\nA very basic demonstration of a wireframe plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Grab some test data.\nX, Y, Z = axes3d.get_test_data(0.05)\n\n# Plot a basic wireframe.\nax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c9ef992fd2ec76f46883c5b9c28ed48b/errorbar_subsample.py b/_downloads/c9ef992fd2ec76f46883c5b9c28ed48b/errorbar_subsample.py deleted file mode 120000 index 810e38540ef..00000000000 --- a/_downloads/c9ef992fd2ec76f46883c5b9c28ed48b/errorbar_subsample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/c9ef992fd2ec76f46883c5b9c28ed48b/errorbar_subsample.py \ No newline at end of file diff --git a/_downloads/c9f001d6c380458f25514a7e61879ad9/stem_plot.ipynb b/_downloads/c9f001d6c380458f25514a7e61879ad9/stem_plot.ipynb deleted file mode 100644 index d58d33a5c86..00000000000 --- a/_downloads/c9f001d6c380458f25514a7e61879ad9/stem_plot.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Stem Plot\n\n\n`~.pyplot.stem` plots vertical lines from a baseline to the y-coordinate and\nplaces a marker at the tip.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.linspace(0.1, 2 * np.pi, 41)\ny = np.exp(np.sin(x))\n\nplt.stem(x, y, use_line_collection=True)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The position of the baseline can be adapted using *bottom*.\nThe parameters *linefmt*, *markerfmt*, and *basefmt* control basic format\nproperties of the plot. However, in contrast to `~.pyplot.plot` not all\nproperties are configurable via keyword arguments. For more advanced\ncontrol adapt the line objects returned by `~.pyplot`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "markerline, stemlines, baseline = plt.stem(\n x, y, linefmt='grey', markerfmt='D', bottom=1.1, use_line_collection=True)\nmarkerline.set_markerfacecolor('none')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.stem\nmatplotlib.axes.Axes.stem" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c9f24a6bab38404ac641432b12e009fc/polar_scatter.ipynb b/_downloads/c9f24a6bab38404ac641432b12e009fc/polar_scatter.ipynb deleted file mode 120000 index 70db3910037..00000000000 --- a/_downloads/c9f24a6bab38404ac641432b12e009fc/polar_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/c9f24a6bab38404ac641432b12e009fc/polar_scatter.ipynb \ No newline at end of file diff --git a/_downloads/c9f60524e3410bf8cf486119d892b1de/multiple_figs_demo.py b/_downloads/c9f60524e3410bf8cf486119d892b1de/multiple_figs_demo.py deleted file mode 100644 index 55ba32347b4..00000000000 --- a/_downloads/c9f60524e3410bf8cf486119d892b1de/multiple_figs_demo.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -================== -Multiple Figs Demo -================== - -Working with multiple figure windows and subplots -""" -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.0, 2.0, 0.01) -s1 = np.sin(2*np.pi*t) -s2 = np.sin(4*np.pi*t) - -############################################################################### -# Create figure 1 - -plt.figure(1) -plt.subplot(211) -plt.plot(t, s1) -plt.subplot(212) -plt.plot(t, 2*s1) - -############################################################################### -# Create figure 2 - -plt.figure(2) -plt.plot(t, s2) - -############################################################################### -# Now switch back to figure 1 and make some changes - -plt.figure(1) -plt.subplot(211) -plt.plot(t, s2, 's') -ax = plt.gca() -ax.set_xticklabels([]) - -plt.show() diff --git a/_downloads/c9fa61352f83cf82bed466a0fb651182/text_rotation_relative_to_line.ipynb b/_downloads/c9fa61352f83cf82bed466a0fb651182/text_rotation_relative_to_line.ipynb deleted file mode 100644 index 28ffbdfa09e..00000000000 --- a/_downloads/c9fa61352f83cf82bed466a0fb651182/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text Rotation Relative To Line\n\n\nText objects in matplotlib are normally rotated with respect to the\nscreen coordinate system (i.e., 45 degrees rotation plots text along a\nline that is in between horizontal and vertical no matter how the axes\nare changed). However, at times one wants to rotate text with respect\nto something on the plot. In this case, the correct angle won't be\nthe angle of that object in the plot coordinate system, but the angle\nthat that object APPEARS in the screen coordinate system. This angle\nis found by transforming the angle from the plot to the screen\ncoordinate system, as shown in the example below.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Plot diagonal line (45 degrees)\nh = plt.plot(np.arange(0, 10), np.arange(0, 10))\n\n# set limits so that it no longer looks on screen to be 45 degrees\nplt.xlim([-10, 20])\n\n# Locations to plot text\nl1 = np.array((1, 1))\nl2 = np.array((5, 5))\n\n# Rotate angle\nangle = 45\ntrans_angle = plt.gca().transData.transform_angles(np.array((45,)),\n l2.reshape((1, 2)))[0]\n\n# Plot text\nth1 = plt.text(l1[0], l1[1], 'text not rotated correctly', fontsize=16,\n rotation=angle, rotation_mode='anchor')\nth2 = plt.text(l2[0], l2[1], 'text rotated correctly', fontsize=16,\n rotation=trans_angle, rotation_mode='anchor')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/c9fef393db074eeb1b3e493b4a4b8bee/demo_axes_rgb.ipynb b/_downloads/c9fef393db074eeb1b3e493b4a4b8bee/demo_axes_rgb.ipynb deleted file mode 120000 index 64ee79eb909..00000000000 --- a/_downloads/c9fef393db074eeb1b3e493b4a4b8bee/demo_axes_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/c9fef393db074eeb1b3e493b4a4b8bee/demo_axes_rgb.ipynb \ No newline at end of file diff --git a/_downloads/c9fefa3edd341bbece67da77e78351c4/arrow_simple_demo.py b/_downloads/c9fefa3edd341bbece67da77e78351c4/arrow_simple_demo.py deleted file mode 120000 index 8ba1e7cc3c1..00000000000 --- a/_downloads/c9fefa3edd341bbece67da77e78351c4/arrow_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/c9fefa3edd341bbece67da77e78351c4/arrow_simple_demo.py \ No newline at end of file diff --git a/_downloads/ca07138873630dc074e1bf1dd52fbc8a/embedding_webagg_sgskip.ipynb b/_downloads/ca07138873630dc074e1bf1dd52fbc8a/embedding_webagg_sgskip.ipynb deleted file mode 120000 index c78730e40e8..00000000000 --- a/_downloads/ca07138873630dc074e1bf1dd52fbc8a/embedding_webagg_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ca07138873630dc074e1bf1dd52fbc8a/embedding_webagg_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ca07df21f895a07f116a2b00becd0804/colormapnorms.py b/_downloads/ca07df21f895a07f116a2b00becd0804/colormapnorms.py deleted file mode 120000 index d5c06d4411a..00000000000 --- a/_downloads/ca07df21f895a07f116a2b00becd0804/colormapnorms.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca07df21f895a07f116a2b00becd0804/colormapnorms.py \ No newline at end of file diff --git a/_downloads/ca1380776c9d5ee31bcb5784e6ba14d5/radar_chart.py b/_downloads/ca1380776c9d5ee31bcb5784e6ba14d5/radar_chart.py deleted file mode 120000 index 30cae8f0c9d..00000000000 --- a/_downloads/ca1380776c9d5ee31bcb5784e6ba14d5/radar_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca1380776c9d5ee31bcb5784e6ba14d5/radar_chart.py \ No newline at end of file diff --git a/_downloads/ca146b9da729a1048e510020c2890bba/compound_path.py b/_downloads/ca146b9da729a1048e510020c2890bba/compound_path.py deleted file mode 100644 index 5667f494001..00000000000 --- a/_downloads/ca146b9da729a1048e510020c2890bba/compound_path.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============= -Compound path -============= - -Make a compound path -- in this case two simple polygons, a rectangle -and a triangle. Use ``CLOSEPOLY`` and ``MOVETO`` for the different parts of -the compound path -""" -import numpy as np -from matplotlib.path import Path -from matplotlib.patches import PathPatch -import matplotlib.pyplot as plt - - -vertices = [] -codes = [] - -codes = [Path.MOVETO] + [Path.LINETO]*3 + [Path.CLOSEPOLY] -vertices = [(1, 1), (1, 2), (2, 2), (2, 1), (0, 0)] - -codes += [Path.MOVETO] + [Path.LINETO]*2 + [Path.CLOSEPOLY] -vertices += [(4, 4), (5, 5), (5, 4), (0, 0)] - -vertices = np.array(vertices, float) -path = Path(vertices, codes) - -pathpatch = PathPatch(path, facecolor='None', edgecolor='green') - -fig, ax = plt.subplots() -ax.add_patch(pathpatch) -ax.set_title('A compound path') - -ax.autoscale_view() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.axes.Axes.add_patch -matplotlib.axes.Axes.autoscale_view diff --git a/_downloads/ca25efd0cbf4db7ff72e223117ab9ca9/axis_direction_demo_step02.ipynb b/_downloads/ca25efd0cbf4db7ff72e223117ab9ca9/axis_direction_demo_step02.ipynb deleted file mode 120000 index 34b4a7d4677..00000000000 --- a/_downloads/ca25efd0cbf4db7ff72e223117ab9ca9/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca25efd0cbf4db7ff72e223117ab9ca9/axis_direction_demo_step02.ipynb \ No newline at end of file diff --git a/_downloads/ca260842e08ab010b4ca3977bf0f434b/rasterization_demo.py b/_downloads/ca260842e08ab010b4ca3977bf0f434b/rasterization_demo.py deleted file mode 120000 index 7a66fe2f495..00000000000 --- a/_downloads/ca260842e08ab010b4ca3977bf0f434b/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca260842e08ab010b4ca3977bf0f434b/rasterization_demo.py \ No newline at end of file diff --git a/_downloads/ca2a498beb12619961d43a7ba14a3ed1/triplot.ipynb b/_downloads/ca2a498beb12619961d43a7ba14a3ed1/triplot.ipynb deleted file mode 120000 index 29a8886a51b..00000000000 --- a/_downloads/ca2a498beb12619961d43a7ba14a3ed1/triplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ca2a498beb12619961d43a7ba14a3ed1/triplot.ipynb \ No newline at end of file diff --git a/_downloads/ca31439148f22c90fece83dafc20eb42/contour3d_3.py b/_downloads/ca31439148f22c90fece83dafc20eb42/contour3d_3.py deleted file mode 120000 index d782e99c9bb..00000000000 --- a/_downloads/ca31439148f22c90fece83dafc20eb42/contour3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ca31439148f22c90fece83dafc20eb42/contour3d_3.py \ No newline at end of file diff --git a/_downloads/ca37a3544e43028933f87ae5303d9b86/filled_step.ipynb b/_downloads/ca37a3544e43028933f87ae5303d9b86/filled_step.ipynb deleted file mode 120000 index 9c38735c28d..00000000000 --- a/_downloads/ca37a3544e43028933f87ae5303d9b86/filled_step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca37a3544e43028933f87ae5303d9b86/filled_step.ipynb \ No newline at end of file diff --git a/_downloads/ca3c87561b2d83519cd525e576c7f31f/usetex_baseline_test.ipynb b/_downloads/ca3c87561b2d83519cd525e576c7f31f/usetex_baseline_test.ipynb deleted file mode 100644 index a5dbc1a97f4..00000000000 --- a/_downloads/ca3c87561b2d83519cd525e576c7f31f/usetex_baseline_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Usetex Baseline Test\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.axes as maxes\n\nfrom matplotlib import rcParams\nrcParams['text.usetex'] = True\n\n\nclass Axes(maxes.Axes):\n \"\"\"\n A hackish way to simultaneously draw texts w/ usetex=True and\n usetex=False in the same figure. It does not work in the ps backend.\n \"\"\"\n\n def __init__(self, *args, usetex=False, preview=False, **kwargs):\n self.usetex = usetex\n self.preview = preview\n super().__init__(*args, **kwargs)\n\n def draw(self, renderer):\n with plt.rc_context({\"text.usetex\": self.usetex,\n \"text.latex.preview\": self.preview}):\n super().draw(renderer)\n\n\nsubplot = maxes.subplot_class_factory(Axes)\n\n\ndef test_window_extent(ax, usetex, preview):\n\n va = \"baseline\"\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n text_kw = dict(va=va,\n size=50,\n bbox=dict(pad=0., ec=\"k\", fc=\"none\"))\n\n test_strings = [\"lg\", r\"$\\frac{1}{2}\\pi$\",\n r\"$p^{3^A}$\", r\"$p_{3_2}$\"]\n\n ax.axvline(0, color=\"r\")\n\n for i, s in enumerate(test_strings):\n\n ax.axhline(i, color=\"r\")\n ax.text(0., 3 - i, s, **text_kw)\n\n ax.set_xlim(-0.1, 1.1)\n ax.set_ylim(-.8, 3.9)\n\n ax.set_title(\"usetex=%s\\npreview=%s\" % (str(usetex), str(preview)))\n\n\nfig = plt.figure(figsize=(2 * 3, 6.5))\n\nfor i, usetex, preview in [[0, False, False],\n [1, True, False],\n [2, True, True]]:\n ax = subplot(fig, 1, 3, i + 1, usetex=usetex, preview=preview)\n fig.add_subplot(ax)\n fig.subplots_adjust(top=0.85)\n\n test_window_extent(ax, usetex=usetex, preview=preview)\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ca44720abcbb5631b0f7004e4a79aa81/pyplot_simple.ipynb b/_downloads/ca44720abcbb5631b0f7004e4a79aa81/pyplot_simple.ipynb deleted file mode 120000 index fc8623d85c0..00000000000 --- a/_downloads/ca44720abcbb5631b0f7004e4a79aa81/pyplot_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca44720abcbb5631b0f7004e4a79aa81/pyplot_simple.ipynb \ No newline at end of file diff --git a/_downloads/ca47eef40bc2fedfb82ec257112ac0e8/color_cycler.ipynb b/_downloads/ca47eef40bc2fedfb82ec257112ac0e8/color_cycler.ipynb deleted file mode 120000 index 26430fa8d91..00000000000 --- a/_downloads/ca47eef40bc2fedfb82ec257112ac0e8/color_cycler.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ca47eef40bc2fedfb82ec257112ac0e8/color_cycler.ipynb \ No newline at end of file diff --git a/_downloads/ca487dc8c2591cb27330da8e51e2a621/errorbar_features.py b/_downloads/ca487dc8c2591cb27330da8e51e2a621/errorbar_features.py deleted file mode 120000 index bcc464417c5..00000000000 --- a/_downloads/ca487dc8c2591cb27330da8e51e2a621/errorbar_features.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ca487dc8c2591cb27330da8e51e2a621/errorbar_features.py \ No newline at end of file diff --git a/_downloads/ca4ac5ef3e9a40f44c774fc99286a3bf/align_labels_demo.ipynb b/_downloads/ca4ac5ef3e9a40f44c774fc99286a3bf/align_labels_demo.ipynb deleted file mode 120000 index 79e6c9bdb24..00000000000 --- a/_downloads/ca4ac5ef3e9a40f44c774fc99286a3bf/align_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca4ac5ef3e9a40f44c774fc99286a3bf/align_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/ca50fa8a1a0fabf678c5a7120088cd3f/text_layout.py b/_downloads/ca50fa8a1a0fabf678c5a7120088cd3f/text_layout.py deleted file mode 120000 index d24e9c008a1..00000000000 --- a/_downloads/ca50fa8a1a0fabf678c5a7120088cd3f/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ca50fa8a1a0fabf678c5a7120088cd3f/text_layout.py \ No newline at end of file diff --git a/_downloads/ca59738d2337f82a20c6d752430074af/frame_grabbing_sgskip.ipynb b/_downloads/ca59738d2337f82a20c6d752430074af/frame_grabbing_sgskip.ipynb deleted file mode 120000 index fa7c05d6444..00000000000 --- a/_downloads/ca59738d2337f82a20c6d752430074af/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ca59738d2337f82a20c6d752430074af/frame_grabbing_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ca675a104825e0fc1f5523a07e03aec6/subfigures.ipynb b/_downloads/ca675a104825e0fc1f5523a07e03aec6/subfigures.ipynb deleted file mode 120000 index 00c12c864e4..00000000000 --- a/_downloads/ca675a104825e0fc1f5523a07e03aec6/subfigures.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ca675a104825e0fc1f5523a07e03aec6/subfigures.ipynb \ No newline at end of file diff --git a/_downloads/ca67a2b45793f07ef536e15be0f62fc4/demo_gridspec01.py b/_downloads/ca67a2b45793f07ef536e15be0f62fc4/demo_gridspec01.py deleted file mode 120000 index b4335e6fbb3..00000000000 --- a/_downloads/ca67a2b45793f07ef536e15be0f62fc4/demo_gridspec01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ca67a2b45793f07ef536e15be0f62fc4/demo_gridspec01.py \ No newline at end of file diff --git a/_downloads/ca6b9ca5c03bc3bcc678c1286eb0a828/patheffect_demo.py b/_downloads/ca6b9ca5c03bc3bcc678c1286eb0a828/patheffect_demo.py deleted file mode 100644 index 4455d63cecf..00000000000 --- a/_downloads/ca6b9ca5c03bc3bcc678c1286eb0a828/patheffect_demo.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -=============== -Patheffect Demo -=============== - -""" -import matplotlib.pyplot as plt -import matplotlib.patheffects as PathEffects -import numpy as np - -plt.figure(figsize=(8, 3)) -ax1 = plt.subplot(131) -ax1.imshow([[1, 2], [2, 3]]) -txt = ax1.annotate("test", (1., 1.), (0., 0), - arrowprops=dict(arrowstyle="->", - connectionstyle="angle3", lw=2), - size=20, ha="center", - path_effects=[PathEffects.withStroke(linewidth=3, - foreground="w")]) -txt.arrow_patch.set_path_effects([ - PathEffects.Stroke(linewidth=5, foreground="w"), - PathEffects.Normal()]) - -pe = [PathEffects.withStroke(linewidth=3, - foreground="w")] -ax1.grid(True, linestyle="-", path_effects=pe) - -ax2 = plt.subplot(132) -arr = np.arange(25).reshape((5, 5)) -ax2.imshow(arr) -cntr = ax2.contour(arr, colors="k") - -plt.setp(cntr.collections, path_effects=[ - PathEffects.withStroke(linewidth=3, foreground="w")]) - -clbls = ax2.clabel(cntr, fmt="%2.0f", use_clabeltext=True) -plt.setp(clbls, path_effects=[ - PathEffects.withStroke(linewidth=3, foreground="w")]) - -# shadow as a path effect -ax3 = plt.subplot(133) -p1, = ax3.plot([0, 1], [0, 1]) -leg = ax3.legend([p1], ["Line 1"], fancybox=True, loc='upper left') -leg.legendPatch.set_path_effects([PathEffects.withSimplePatchShadow()]) - -plt.show() diff --git a/_downloads/ca75ebe97caaceb3c80315d42129bbc9/figure_axes_enter_leave.ipynb b/_downloads/ca75ebe97caaceb3c80315d42129bbc9/figure_axes_enter_leave.ipynb deleted file mode 120000 index 91a8973c641..00000000000 --- a/_downloads/ca75ebe97caaceb3c80315d42129bbc9/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ca75ebe97caaceb3c80315d42129bbc9/figure_axes_enter_leave.ipynb \ No newline at end of file diff --git a/_downloads/ca7d2ed89088cd8860cfae95dea1c87e/demo_gridspec01.ipynb b/_downloads/ca7d2ed89088cd8860cfae95dea1c87e/demo_gridspec01.ipynb deleted file mode 120000 index a41807b6fce..00000000000 --- a/_downloads/ca7d2ed89088cd8860cfae95dea1c87e/demo_gridspec01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca7d2ed89088cd8860cfae95dea1c87e/demo_gridspec01.ipynb \ No newline at end of file diff --git a/_downloads/ca830be09ef82d0937c7f25ae018755e/system_monitor.ipynb b/_downloads/ca830be09ef82d0937c7f25ae018755e/system_monitor.ipynb deleted file mode 120000 index afdb29a9855..00000000000 --- a/_downloads/ca830be09ef82d0937c7f25ae018755e/system_monitor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/ca830be09ef82d0937c7f25ae018755e/system_monitor.ipynb \ No newline at end of file diff --git a/_downloads/ca838dc32942555e883bd323162256ed/multicolored_line.py b/_downloads/ca838dc32942555e883bd323162256ed/multicolored_line.py deleted file mode 120000 index acc76ddd5f5..00000000000 --- a/_downloads/ca838dc32942555e883bd323162256ed/multicolored_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ca838dc32942555e883bd323162256ed/multicolored_line.py \ No newline at end of file diff --git a/_downloads/ca872ba6702b17f3a88cdcac9065e1a0/pong_sgskip.py b/_downloads/ca872ba6702b17f3a88cdcac9065e1a0/pong_sgskip.py deleted file mode 100644 index e25153e826a..00000000000 --- a/_downloads/ca872ba6702b17f3a88cdcac9065e1a0/pong_sgskip.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -==== -Pong -==== - -A small game demo using Matplotlib. - -.. only:: builder_html - - This example requires :download:`pipong.py ` - -""" -import time - - -import matplotlib.pyplot as plt -import pipong - - -fig, ax = plt.subplots() -canvas = ax.figure.canvas -animation = pipong.Game(ax) - -# disable the default key bindings -if fig.canvas.manager.key_press_handler_id is not None: - canvas.mpl_disconnect(fig.canvas.manager.key_press_handler_id) - - -# reset the blitting background on redraw -def handle_redraw(event): - animation.background = None - - -# bootstrap after the first draw -def start_anim(event): - canvas.mpl_disconnect(start_anim.cid) - - def local_draw(): - if animation.ax.get_renderer_cache(): - animation.draw(None) - start_anim.timer.add_callback(local_draw) - start_anim.timer.start() - canvas.mpl_connect('draw_event', handle_redraw) - - -start_anim.cid = canvas.mpl_connect('draw_event', start_anim) -start_anim.timer = animation.canvas.new_timer() -start_anim.timer.interval = 1 - -tstart = time.time() - -plt.show() -print('FPS: %f' % (animation.cnt/(time.time() - tstart))) diff --git a/_downloads/ca895582bbf02d474114eb9e6243f143/text_rotation.ipynb b/_downloads/ca895582bbf02d474114eb9e6243f143/text_rotation.ipynb deleted file mode 120000 index 3fb651064c0..00000000000 --- a/_downloads/ca895582bbf02d474114eb9e6243f143/text_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca895582bbf02d474114eb9e6243f143/text_rotation.ipynb \ No newline at end of file diff --git a/_downloads/ca8b9210ce4b715a00ea03d1b0674d21/vline_hline_demo.py b/_downloads/ca8b9210ce4b715a00ea03d1b0674d21/vline_hline_demo.py deleted file mode 100644 index 458bb27327f..00000000000 --- a/_downloads/ca8b9210ce4b715a00ea03d1b0674d21/vline_hline_demo.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -================= -hlines and vlines -================= - -This example showcases the functions hlines and vlines. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -t = np.arange(0.0, 5.0, 0.1) -s = np.exp(-t) + np.sin(2 * np.pi * t) + 1 -nse = np.random.normal(0.0, 0.3, t.shape) * s - -fig, (vax, hax) = plt.subplots(1, 2, figsize=(12, 6)) - -vax.plot(t, s + nse, '^') -vax.vlines(t, [0], s) -# By using ``transform=vax.get_xaxis_transform()`` the y coordinates are scaled -# such that 0 maps to the bottom of the axes and 1 to the top. -vax.vlines([1, 2], 0, 1, transform=vax.get_xaxis_transform(), colors='r') -vax.set_xlabel('time (s)') -vax.set_title('Vertical lines demo') - -hax.plot(s + nse, t, '^') -hax.hlines(t, [0], s, lw=2) -hax.set_xlabel('time (s)') -hax.set_title('Horizontal lines demo') - -plt.show() diff --git a/_downloads/ca970494a5be87ad27a6a7472a8a4d3b/keypress_demo.ipynb b/_downloads/ca970494a5be87ad27a6a7472a8a4d3b/keypress_demo.ipynb deleted file mode 120000 index 8ada30176fb..00000000000 --- a/_downloads/ca970494a5be87ad27a6a7472a8a4d3b/keypress_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ca970494a5be87ad27a6a7472a8a4d3b/keypress_demo.ipynb \ No newline at end of file diff --git a/_downloads/caa4714e28167c683c6334e50bbc36d8/sankey_rankine.ipynb b/_downloads/caa4714e28167c683c6334e50bbc36d8/sankey_rankine.ipynb deleted file mode 120000 index 396628f1ddc..00000000000 --- a/_downloads/caa4714e28167c683c6334e50bbc36d8/sankey_rankine.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/caa4714e28167c683c6334e50bbc36d8/sankey_rankine.ipynb \ No newline at end of file diff --git a/_downloads/caad23e8baae9b519987c58e6494082a/menu.ipynb b/_downloads/caad23e8baae9b519987c58e6494082a/menu.ipynb deleted file mode 120000 index f9d1fc9c1f3..00000000000 --- a/_downloads/caad23e8baae9b519987c58e6494082a/menu.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/caad23e8baae9b519987c58e6494082a/menu.ipynb \ No newline at end of file diff --git a/_downloads/cab00627afd0a9fa97b382809ca1bdfa/scatter_with_legend.ipynb b/_downloads/cab00627afd0a9fa97b382809ca1bdfa/scatter_with_legend.ipynb deleted file mode 120000 index 16e9a935c2a..00000000000 --- a/_downloads/cab00627afd0a9fa97b382809ca1bdfa/scatter_with_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cab00627afd0a9fa97b382809ca1bdfa/scatter_with_legend.ipynb \ No newline at end of file diff --git a/_downloads/cab87f33fe8231420d0cdca293f6b8eb/boxplot_color.ipynb b/_downloads/cab87f33fe8231420d0cdca293f6b8eb/boxplot_color.ipynb deleted file mode 120000 index db225489600..00000000000 --- a/_downloads/cab87f33fe8231420d0cdca293f6b8eb/boxplot_color.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cab87f33fe8231420d0cdca293f6b8eb/boxplot_color.ipynb \ No newline at end of file diff --git a/_downloads/cab9084dc8222e1d56923fc5796a0360/image_demo.ipynb b/_downloads/cab9084dc8222e1d56923fc5796a0360/image_demo.ipynb deleted file mode 120000 index 405a1b0239f..00000000000 --- a/_downloads/cab9084dc8222e1d56923fc5796a0360/image_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cab9084dc8222e1d56923fc5796a0360/image_demo.ipynb \ No newline at end of file diff --git a/_downloads/cacd9bcdb36aa90879c63836e645518e/firefox.py b/_downloads/cacd9bcdb36aa90879c63836e645518e/firefox.py deleted file mode 120000 index d4fc61f7407..00000000000 --- a/_downloads/cacd9bcdb36aa90879c63836e645518e/firefox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cacd9bcdb36aa90879c63836e645518e/firefox.py \ No newline at end of file diff --git a/_downloads/cad92a5243cc6fc7b198c1297893d9ad/colormap_normalizations_symlognorm.py b/_downloads/cad92a5243cc6fc7b198c1297893d9ad/colormap_normalizations_symlognorm.py deleted file mode 120000 index 721fbe7e363..00000000000 --- a/_downloads/cad92a5243cc6fc7b198c1297893d9ad/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cad92a5243cc6fc7b198c1297893d9ad/colormap_normalizations_symlognorm.py \ No newline at end of file diff --git a/_downloads/cadcf04c0a5eda9084fb7e7c57e05d9e/textbox.ipynb b/_downloads/cadcf04c0a5eda9084fb7e7c57e05d9e/textbox.ipynb deleted file mode 120000 index 984f6560b2a..00000000000 --- a/_downloads/cadcf04c0a5eda9084fb7e7c57e05d9e/textbox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cadcf04c0a5eda9084fb7e7c57e05d9e/textbox.ipynb \ No newline at end of file diff --git a/_downloads/cadd1a9ef54774cc1748933b9f25d54a/quiver3d.py b/_downloads/cadd1a9ef54774cc1748933b9f25d54a/quiver3d.py deleted file mode 120000 index 59a0634a2cf..00000000000 --- a/_downloads/cadd1a9ef54774cc1748933b9f25d54a/quiver3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cadd1a9ef54774cc1748933b9f25d54a/quiver3d.py \ No newline at end of file diff --git a/_downloads/cae236a47a4a84c39ca9c49b23230e1a/imshow_extent.py b/_downloads/cae236a47a4a84c39ca9c49b23230e1a/imshow_extent.py deleted file mode 120000 index 50d8fbff701..00000000000 --- a/_downloads/cae236a47a4a84c39ca9c49b23230e1a/imshow_extent.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cae236a47a4a84c39ca9c49b23230e1a/imshow_extent.py \ No newline at end of file diff --git a/_downloads/caf740739687209453acc6e28dea9159/textbox.py b/_downloads/caf740739687209453acc6e28dea9159/textbox.py deleted file mode 120000 index c0c7866dbc3..00000000000 --- a/_downloads/caf740739687209453acc6e28dea9159/textbox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/caf740739687209453acc6e28dea9159/textbox.py \ No newline at end of file diff --git a/_downloads/caf7420058f455ac6ebed6a2ecab8451/annotate_simple_coord01.ipynb b/_downloads/caf7420058f455ac6ebed6a2ecab8451/annotate_simple_coord01.ipynb deleted file mode 120000 index 3694f19c101..00000000000 --- a/_downloads/caf7420058f455ac6ebed6a2ecab8451/annotate_simple_coord01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/caf7420058f455ac6ebed6a2ecab8451/annotate_simple_coord01.ipynb \ No newline at end of file diff --git a/_downloads/cafb776863039035f53c086374eba313/mri_demo.py b/_downloads/cafb776863039035f53c086374eba313/mri_demo.py deleted file mode 120000 index 13938125a0d..00000000000 --- a/_downloads/cafb776863039035f53c086374eba313/mri_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cafb776863039035f53c086374eba313/mri_demo.py \ No newline at end of file diff --git a/_downloads/cafceb37c9397d60bd1f04da0c92c497/pathpatch3d.ipynb b/_downloads/cafceb37c9397d60bd1f04da0c92c497/pathpatch3d.ipynb deleted file mode 120000 index 4ad23294871..00000000000 --- a/_downloads/cafceb37c9397d60bd1f04da0c92c497/pathpatch3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cafceb37c9397d60bd1f04da0c92c497/pathpatch3d.ipynb \ No newline at end of file diff --git a/_downloads/cafe9c02d0cad665609a5e115b909ed6/gridspec_multicolumn.ipynb b/_downloads/cafe9c02d0cad665609a5e115b909ed6/gridspec_multicolumn.ipynb deleted file mode 120000 index 6be8a266e44..00000000000 --- a/_downloads/cafe9c02d0cad665609a5e115b909ed6/gridspec_multicolumn.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cafe9c02d0cad665609a5e115b909ed6/gridspec_multicolumn.ipynb \ No newline at end of file diff --git a/_downloads/canvasagg.ipynb b/_downloads/canvasagg.ipynb deleted file mode 120000 index 5d5dc262585..00000000000 --- a/_downloads/canvasagg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/canvasagg.ipynb \ No newline at end of file diff --git a/_downloads/canvasagg.py b/_downloads/canvasagg.py deleted file mode 120000 index e8ace0b8078..00000000000 --- a/_downloads/canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/canvasagg.py \ No newline at end of file diff --git a/_downloads/categorical_variables.ipynb b/_downloads/categorical_variables.ipynb deleted file mode 120000 index e205946904f..00000000000 --- a/_downloads/categorical_variables.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/categorical_variables.ipynb \ No newline at end of file diff --git a/_downloads/categorical_variables.py b/_downloads/categorical_variables.py deleted file mode 120000 index cad702f159c..00000000000 --- a/_downloads/categorical_variables.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/categorical_variables.py \ No newline at end of file diff --git a/_downloads/cb015338cd0c53f12401454541447261/custom_cmap.ipynb b/_downloads/cb015338cd0c53f12401454541447261/custom_cmap.ipynb deleted file mode 100644 index 630f8fa7833..00000000000 --- a/_downloads/cb015338cd0c53f12401454541447261/custom_cmap.ipynb +++ /dev/null @@ -1,180 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating a colormap from a list of colors\n\n\nFor more detail on creating and manipulating colormaps see\n:doc:`/tutorials/colors/colormap-manipulation`.\n\nCreating a :doc:`colormap `\nfrom a list of colors can be done with the\n:meth:`~.colors.LinearSegmentedColormap.from_list` method of\n`LinearSegmentedColormap`. You must pass a list of RGB tuples that define the\nmixture of colors from 0 to 1.\n\n\nCreating custom colormaps\n-------------------------\nIt is also possible to create a custom mapping for a colormap. This is\naccomplished by creating dictionary that specifies how the RGB channels\nchange from one end of the cmap to the other.\n\nExample: suppose you want red to increase from 0 to 1 over the bottom\nhalf, green to do the same over the middle half, and blue over the top\nhalf. Then you would use::\n\n cdict = {'red': ((0.0, 0.0, 0.0),\n (0.5, 1.0, 1.0),\n (1.0, 1.0, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (0.25, 0.0, 0.0),\n (0.75, 1.0, 1.0),\n (1.0, 1.0, 1.0)),\n\n 'blue': ((0.0, 0.0, 0.0),\n (0.5, 0.0, 0.0),\n (1.0, 1.0, 1.0))}\n\nIf, as in this example, there are no discontinuities in the r, g, and b\ncomponents, then it is quite simple: the second and third element of\neach tuple, above, is the same--call it \"y\". The first element (\"x\")\ndefines interpolation intervals over the full range of 0 to 1, and it\nmust span that whole range. In other words, the values of x divide the\n0-to-1 range into a set of segments, and y gives the end-point color\nvalues for each segment.\n\nNow consider the green. cdict['green'] is saying that for\n0 <= x <= 0.25, y is zero; no green.\n0.25 < x <= 0.75, y varies linearly from 0 to 1.\nx > 0.75, y remains at 1, full green.\n\nIf there are discontinuities, then it is a little more complicated.\nLabel the 3 elements in each row in the cdict entry for a given color as\n(x, y0, y1). Then for values of x between x[i] and x[i+1] the color\nvalue is interpolated between y1[i] and y0[i+1].\n\nGoing back to the cookbook example, look at cdict['red']; because y0 !=\ny1, it is saying that for x from 0 to 0.5, red increases from 0 to 1,\nbut then it jumps down, so that for x from 0.5 to 1, red increases from\n0.7 to 1. Green ramps from 0 to 1 as x goes from 0 to 0.5, then jumps\nback to 0, and ramps back to 1 as x goes from 0.5 to 1.::\n\n row i: x y0 y1\n /\n /\n row i+1: x y0 y1\n\nAbove is an attempt to show that for x in the range x[i] to x[i+1], the\ninterpolation is between y1[i] and y0[i+1]. So, y0[0] and y1[-1] are\nnever used.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.colors import LinearSegmentedColormap\n\n# Make some illustrative fake data:\n\nx = np.arange(0, np.pi, 0.1)\ny = np.arange(0, 2 * np.pi, 0.1)\nX, Y = np.meshgrid(x, y)\nZ = np.cos(X) * np.sin(Y) * 10" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "--- Colormaps from a list ---\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "colors = [(1, 0, 0), (0, 1, 0), (0, 0, 1)] # R -> G -> B\nn_bins = [3, 6, 10, 100] # Discretizes the interpolation into bins\ncmap_name = 'my_list'\nfig, axs = plt.subplots(2, 2, figsize=(6, 9))\nfig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05)\nfor n_bin, ax in zip(n_bins, axs.ravel()):\n # Create the colormap\n cm = LinearSegmentedColormap.from_list(\n cmap_name, colors, N=n_bin)\n # Fewer bins will result in \"coarser\" colomap interpolation\n im = ax.imshow(Z, interpolation='nearest', origin='lower', cmap=cm)\n ax.set_title(\"N bins: %s\" % n_bin)\n fig.colorbar(im, ax=ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "--- Custom colormaps ---\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cdict1 = {'red': ((0.0, 0.0, 0.0),\n (0.5, 0.0, 0.1),\n (1.0, 1.0, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (1.0, 0.0, 0.0)),\n\n 'blue': ((0.0, 0.0, 1.0),\n (0.5, 0.1, 0.0),\n (1.0, 0.0, 0.0))\n }\n\ncdict2 = {'red': ((0.0, 0.0, 0.0),\n (0.5, 0.0, 1.0),\n (1.0, 0.1, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (1.0, 0.0, 0.0)),\n\n 'blue': ((0.0, 0.0, 0.1),\n (0.5, 1.0, 0.0),\n (1.0, 0.0, 0.0))\n }\n\ncdict3 = {'red': ((0.0, 0.0, 0.0),\n (0.25, 0.0, 0.0),\n (0.5, 0.8, 1.0),\n (0.75, 1.0, 1.0),\n (1.0, 0.4, 1.0)),\n\n 'green': ((0.0, 0.0, 0.0),\n (0.25, 0.0, 0.0),\n (0.5, 0.9, 0.9),\n (0.75, 0.0, 0.0),\n (1.0, 0.0, 0.0)),\n\n 'blue': ((0.0, 0.0, 0.4),\n (0.25, 1.0, 1.0),\n (0.5, 1.0, 0.8),\n (0.75, 0.0, 0.0),\n (1.0, 0.0, 0.0))\n }\n\n# Make a modified version of cdict3 with some transparency\n# in the middle of the range.\ncdict4 = {**cdict3,\n 'alpha': ((0.0, 1.0, 1.0),\n # (0.25,1.0, 1.0),\n (0.5, 0.3, 0.3),\n # (0.75,1.0, 1.0),\n (1.0, 1.0, 1.0)),\n }" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we will use this example to illustrate 3 ways of\nhandling custom colormaps.\nFirst, the most direct and explicit:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "blue_red1 = LinearSegmentedColormap('BlueRed1', cdict1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Second, create the map explicitly and register it.\nLike the first method, this method works with any kind\nof Colormap, not just\na LinearSegmentedColormap:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "blue_red2 = LinearSegmentedColormap('BlueRed2', cdict2)\nplt.register_cmap(cmap=blue_red2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Third, for LinearSegmentedColormap only,\nleave everything to register_cmap:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.register_cmap(name='BlueRed3', data=cdict3) # optional lut kwarg\nplt.register_cmap(name='BlueRedAlpha', data=cdict4)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make the figure:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(6, 9))\nfig.subplots_adjust(left=0.02, bottom=0.06, right=0.95, top=0.94, wspace=0.05)\n\n# Make 4 subplots:\n\nim1 = axs[0, 0].imshow(Z, interpolation='nearest', cmap=blue_red1)\nfig.colorbar(im1, ax=axs[0, 0])\n\ncmap = plt.get_cmap('BlueRed2')\nim2 = axs[1, 0].imshow(Z, interpolation='nearest', cmap=cmap)\nfig.colorbar(im2, ax=axs[1, 0])\n\n# Now we will set the third cmap as the default. One would\n# not normally do this in the middle of a script like this;\n# it is done here just to illustrate the method.\n\nplt.rcParams['image.cmap'] = 'BlueRed3'\n\nim3 = axs[0, 1].imshow(Z, interpolation='nearest')\nfig.colorbar(im3, ax=axs[0, 1])\naxs[0, 1].set_title(\"Alpha = 1\")\n\n# Or as yet another variation, we can replace the rcParams\n# specification *before* the imshow with the following *after*\n# imshow.\n# This sets the new default *and* sets the colormap of the last\n# image-like item plotted via pyplot, if any.\n#\n\n# Draw a line with low zorder so it will be behind the image.\naxs[1, 1].plot([0, 10 * np.pi], [0, 20 * np.pi], color='c', lw=20, zorder=-1)\n\nim4 = axs[1, 1].imshow(Z, interpolation='nearest')\nfig.colorbar(im4, ax=axs[1, 1])\n\n# Here it is: changing the colormap for the current image and its\n# colorbar after they have been plotted.\nim4.set_cmap('BlueRedAlpha')\naxs[1, 1].set_title(\"Varying alpha\")\n#\n\nfig.suptitle('Custom Blue-Red colormaps', fontsize=16)\nfig.subplots_adjust(top=0.9)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.colors\nmatplotlib.colors.LinearSegmentedColormap\nmatplotlib.colors.LinearSegmentedColormap.from_list\nmatplotlib.cm\nmatplotlib.cm.ScalarMappable.set_cmap\nmatplotlib.pyplot.register_cmap\nmatplotlib.cm.register_cmap" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cb0f4d799c43c9033e13d386f2427d85/fig_axes_customize_simple.py b/_downloads/cb0f4d799c43c9033e13d386f2427d85/fig_axes_customize_simple.py deleted file mode 100644 index 0d665b6a474..00000000000 --- a/_downloads/cb0f4d799c43c9033e13d386f2427d85/fig_axes_customize_simple.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -========================= -Fig Axes Customize Simple -========================= - -Customize the background, labels and ticks of a simple plot. -""" - -import matplotlib.pyplot as plt - -############################################################################### -# ``plt.figure`` creates a ```matplotlib.figure.Figure`` instance - -fig = plt.figure() -rect = fig.patch # a rectangle instance -rect.set_facecolor('lightgoldenrodyellow') - -ax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4]) -rect = ax1.patch -rect.set_facecolor('lightslategray') - - -for label in ax1.xaxis.get_ticklabels(): - # label is a Text instance - label.set_color('tab:red') - label.set_rotation(45) - label.set_fontsize(16) - -for line in ax1.yaxis.get_ticklines(): - # line is a Line2D instance - line.set_color('tab:green') - line.set_markersize(25) - line.set_markeredgewidth(3) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axis.Axis.get_ticklabels -matplotlib.axis.Axis.get_ticklines -matplotlib.text.Text.set_rotation -matplotlib.text.Text.set_fontsize -matplotlib.text.Text.set_color -matplotlib.lines.Line2D -matplotlib.lines.Line2D.set_color -matplotlib.lines.Line2D.set_markersize -matplotlib.lines.Line2D.set_markeredgewidth -matplotlib.patches.Patch.set_facecolor diff --git a/_downloads/cb18111a06f53f94cd51564034724b0b/fig_axes_labels_simple.ipynb b/_downloads/cb18111a06f53f94cd51564034724b0b/fig_axes_labels_simple.ipynb deleted file mode 100644 index 726494c7948..00000000000 --- a/_downloads/cb18111a06f53f94cd51564034724b0b/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple axes labels\n\n\nLabel the axes of a plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.subplots_adjust(top=0.8)\nax1 = fig.add_subplot(211)\nax1.set_ylabel('volts')\nax1.set_title('a sine wave')\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2 * np.pi * t)\nline, = ax1.plot(t, s, lw=2)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3])\nn, bins, patches = ax2.hist(np.random.randn(1000), 50)\nax2.set_xlabel('time (s)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.hist\nmatplotlib.figure.Figure.add_axes" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cb19f91a84969c41de8600a61bfc605d/mri_with_eeg.py b/_downloads/cb19f91a84969c41de8600a61bfc605d/mri_with_eeg.py deleted file mode 120000 index 42cc3039150..00000000000 --- a/_downloads/cb19f91a84969c41de8600a61bfc605d/mri_with_eeg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cb19f91a84969c41de8600a61bfc605d/mri_with_eeg.py \ No newline at end of file diff --git a/_downloads/cb1f567fd3db1e0aafff311599bd2b0f/print_stdout_sgskip.ipynb b/_downloads/cb1f567fd3db1e0aafff311599bd2b0f/print_stdout_sgskip.ipynb deleted file mode 120000 index e7b9f12fda7..00000000000 --- a/_downloads/cb1f567fd3db1e0aafff311599bd2b0f/print_stdout_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cb1f567fd3db1e0aafff311599bd2b0f/print_stdout_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/cb2f7f95910dcdfd5146478e03247867/ftface_props.ipynb b/_downloads/cb2f7f95910dcdfd5146478e03247867/ftface_props.ipynb deleted file mode 120000 index 47cdb2e987f..00000000000 --- a/_downloads/cb2f7f95910dcdfd5146478e03247867/ftface_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cb2f7f95910dcdfd5146478e03247867/ftface_props.ipynb \ No newline at end of file diff --git a/_downloads/cb3060306c9de9fd895a0b0b889b159f/lasso_selector_demo_sgskip.py b/_downloads/cb3060306c9de9fd895a0b0b889b159f/lasso_selector_demo_sgskip.py deleted file mode 100644 index ac6c7325199..00000000000 --- a/_downloads/cb3060306c9de9fd895a0b0b889b159f/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -=================== -Lasso Selector Demo -=================== - -Interactively selecting data points with the lasso tool. - -This examples plots a scatter plot. You can then select a few points by drawing -a lasso loop around the points on the graph. To draw, just click -on the graph, hold, and drag it around the points you need to select. -""" - - -import numpy as np - -from matplotlib.widgets import LassoSelector -from matplotlib.path import Path - - -class SelectFromCollection(object): - """Select indices from a matplotlib collection using `LassoSelector`. - - Selected indices are saved in the `ind` attribute. This tool fades out the - points that are not part of the selection (i.e., reduces their alpha - values). If your collection has alpha < 1, this tool will permanently - alter the alpha values. - - Note that this tool selects collection objects based on their *origins* - (i.e., `offsets`). - - Parameters - ---------- - ax : :class:`~matplotlib.axes.Axes` - Axes to interact with. - - collection : :class:`matplotlib.collections.Collection` subclass - Collection you want to select from. - - alpha_other : 0 <= float <= 1 - To highlight a selection, this tool sets all selected points to an - alpha value of 1 and non-selected points to `alpha_other`. - """ - - def __init__(self, ax, collection, alpha_other=0.3): - self.canvas = ax.figure.canvas - self.collection = collection - self.alpha_other = alpha_other - - self.xys = collection.get_offsets() - self.Npts = len(self.xys) - - # Ensure that we have separate colors for each object - self.fc = collection.get_facecolors() - if len(self.fc) == 0: - raise ValueError('Collection must have a facecolor') - elif len(self.fc) == 1: - self.fc = np.tile(self.fc, (self.Npts, 1)) - - self.lasso = LassoSelector(ax, onselect=self.onselect) - self.ind = [] - - def onselect(self, verts): - path = Path(verts) - self.ind = np.nonzero(path.contains_points(self.xys))[0] - self.fc[:, -1] = self.alpha_other - self.fc[self.ind, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - def disconnect(self): - self.lasso.disconnect_events() - self.fc[:, -1] = 1 - self.collection.set_facecolors(self.fc) - self.canvas.draw_idle() - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - - # Fixing random state for reproducibility - np.random.seed(19680801) - - data = np.random.rand(100, 2) - - subplot_kw = dict(xlim=(0, 1), ylim=(0, 1), autoscale_on=False) - fig, ax = plt.subplots(subplot_kw=subplot_kw) - - pts = ax.scatter(data[:, 0], data[:, 1], s=80) - selector = SelectFromCollection(ax, pts) - - def accept(event): - if event.key == "enter": - print("Selected points:") - print(selector.xys[selector.ind]) - selector.disconnect() - ax.set_title("") - fig.canvas.draw() - - fig.canvas.mpl_connect("key_press_event", accept) - ax.set_title("Press enter to accept selected points.") - - plt.show() diff --git a/_downloads/cb3afd547cdd5c561123fb052b3763cf/create_subplots.py b/_downloads/cb3afd547cdd5c561123fb052b3763cf/create_subplots.py deleted file mode 100644 index 976f2482163..00000000000 --- a/_downloads/cb3afd547cdd5c561123fb052b3763cf/create_subplots.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -Easily creating subplots -======================== - -In early versions of matplotlib, if you wanted to use the pythonic API -and create a figure instance and from that create a grid of subplots, -possibly with shared axes, it involved a fair amount of boilerplate -code. e.g. -""" - -import matplotlib.pyplot as plt -import numpy as np - -x = np.random.randn(50) - -# old style -fig = plt.figure() -ax1 = fig.add_subplot(221) -ax2 = fig.add_subplot(222, sharex=ax1, sharey=ax1) -ax3 = fig.add_subplot(223, sharex=ax1, sharey=ax1) -ax3 = fig.add_subplot(224, sharex=ax1, sharey=ax1) - -############################################################################### -# Fernando Perez has provided a nice top level method to create in -# :func:`~matplotlib.pyplots.subplots` (note the "s" at the end) -# everything at once, and turn on x and y sharing for the whole bunch. -# You can either unpack the axes individually... - -# new style method 1; unpack the axes -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, sharex=True, sharey=True) -ax1.plot(x) - -############################################################################### -# or get them back as a numrows x numcolumns object array which supports -# numpy indexing - -# new style method 2; use an axes array -fig, axs = plt.subplots(2, 2, sharex=True, sharey=True) -axs[0, 0].plot(x) - -plt.show() diff --git a/_downloads/cb3e170fbe8b287adc37f65c863b4ac7/errorbar_features.py b/_downloads/cb3e170fbe8b287adc37f65c863b4ac7/errorbar_features.py deleted file mode 100644 index 1dd68a24700..00000000000 --- a/_downloads/cb3e170fbe8b287adc37f65c863b4ac7/errorbar_features.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -======================================= -Different ways of specifying error bars -======================================= - -Errors can be specified as a constant value (as shown in -`errorbar_demo.py`). However, this example demonstrates -how they vary by specifying arrays of error values. - -If the raw ``x`` and ``y`` data have length N, there are two options: - -Array of shape (N,): - Error varies for each point, but the error values are - symmetric (i.e. the lower and upper values are equal). - -Array of shape (2, N): - Error varies for each point, and the lower and upper limits - (in that order) are different (asymmetric case) - -In addition, this example demonstrates how to use log -scale with error bars. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.arange(0.1, 4, 0.5) -y = np.exp(-x) - -# example error bar values that vary with x-position -error = 0.1 + 0.2 * x - -fig, (ax0, ax1) = plt.subplots(nrows=2, sharex=True) -ax0.errorbar(x, y, yerr=error, fmt='-o') -ax0.set_title('variable, symmetric error') - -# error bar values w/ different -/+ errors that -# also vary with the x-position -lower_error = 0.4 * error -upper_error = error -asymmetric_error = [lower_error, upper_error] - -ax1.errorbar(x, y, xerr=asymmetric_error, fmt='o') -ax1.set_title('variable, asymmetric error') -ax1.set_yscale('log') -plt.show() diff --git a/_downloads/cb4056e826e378dfbe040323a3812287/animation_demo.py b/_downloads/cb4056e826e378dfbe040323a3812287/animation_demo.py deleted file mode 120000 index 8c78f191903..00000000000 --- a/_downloads/cb4056e826e378dfbe040323a3812287/animation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cb4056e826e378dfbe040323a3812287/animation_demo.py \ No newline at end of file diff --git a/_downloads/cb455b5079acdd92ddab8dd664046d2d/gridspec.ipynb b/_downloads/cb455b5079acdd92ddab8dd664046d2d/gridspec.ipynb deleted file mode 120000 index e4cf7841fc3..00000000000 --- a/_downloads/cb455b5079acdd92ddab8dd664046d2d/gridspec.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cb455b5079acdd92ddab8dd664046d2d/gridspec.ipynb \ No newline at end of file diff --git a/_downloads/cb48c4d6f69a997e5504e7a5a4f7ae5b/boxplot_color.py b/_downloads/cb48c4d6f69a997e5504e7a5a4f7ae5b/boxplot_color.py deleted file mode 100644 index 16adb44faba..00000000000 --- a/_downloads/cb48c4d6f69a997e5504e7a5a4f7ae5b/boxplot_color.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================================= -Box plots with custom fill colors -================================= - -This plot illustrates how to create two types of box plots -(rectangular and notched), and how to fill them with custom -colors by accessing the properties of the artists of the -box plots. Additionally, the ``labels`` parameter is used to -provide x-tick labels for each sample. - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Random test data -np.random.seed(19680801) -all_data = [np.random.normal(0, std, size=100) for std in range(1, 4)] -labels = ['x1', 'x2', 'x3'] - -fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4)) - -# rectangular box plot -bplot1 = axes[0].boxplot(all_data, - vert=True, # vertical box alignment - patch_artist=True, # fill with color - labels=labels) # will be used to label x-ticks -axes[0].set_title('Rectangular box plot') - -# notch shape box plot -bplot2 = axes[1].boxplot(all_data, - notch=True, # notch shape - vert=True, # vertical box alignment - patch_artist=True, # fill with color - labels=labels) # will be used to label x-ticks -axes[1].set_title('Notched box plot') - -# fill with colors -colors = ['pink', 'lightblue', 'lightgreen'] -for bplot in (bplot1, bplot2): - for patch, color in zip(bplot['boxes'], colors): - patch.set_facecolor(color) - -# adding horizontal grid lines -for ax in axes: - ax.yaxis.grid(True) - ax.set_xlabel('Three separate samples') - ax.set_ylabel('Observed values') - -plt.show() diff --git a/_downloads/cb4bf0866d27f7969487bd78c6f7e66e/offset.py b/_downloads/cb4bf0866d27f7969487bd78c6f7e66e/offset.py deleted file mode 100644 index 04c56ed2066..00000000000 --- a/_downloads/cb4bf0866d27f7969487bd78c6f7e66e/offset.py +++ /dev/null @@ -1,36 +0,0 @@ -''' -========================= -Automatic Text Offsetting -========================= - -This example demonstrates mplot3d's offset text display. -As one rotates the 3D figure, the offsets should remain oriented the -same way as the axis label, and should also be located "away" -from the center of the plot. - -This demo triggers the display of the offset text for the x and -y axis by adding 1e5 to X and Y. Anything less would not -automatically trigger it. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = fig.gca(projection='3d') - -X, Y = np.mgrid[0:6*np.pi:0.25, 0:4*np.pi:0.25] -Z = np.sqrt(np.abs(np.cos(X) + np.cos(Y))) - -ax.plot_surface(X + 1e5, Y + 1e5, Z, cmap='autumn', cstride=2, rstride=2) - -ax.set_xlabel("X label") -ax.set_ylabel("Y label") -ax.set_zlabel("Z label") -ax.set_zlim(0, 2) - -plt.show() diff --git a/_downloads/cb4c91bcf6b29e6308694b69920cec1f/tick_label_right.py b/_downloads/cb4c91bcf6b29e6308694b69920cec1f/tick_label_right.py deleted file mode 120000 index f62deba7b65..00000000000 --- a/_downloads/cb4c91bcf6b29e6308694b69920cec1f/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cb4c91bcf6b29e6308694b69920cec1f/tick_label_right.py \ No newline at end of file diff --git a/_downloads/cb5d6e536542c365e0431150e5b22bbd/aspect_loglog.ipynb b/_downloads/cb5d6e536542c365e0431150e5b22bbd/aspect_loglog.ipynb deleted file mode 120000 index ce2edbd9ecc..00000000000 --- a/_downloads/cb5d6e536542c365e0431150e5b22bbd/aspect_loglog.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cb5d6e536542c365e0431150e5b22bbd/aspect_loglog.ipynb \ No newline at end of file diff --git a/_downloads/cb5f3e724677c36fcd8d97eb6e8a60f1/broken_axis.ipynb b/_downloads/cb5f3e724677c36fcd8d97eb6e8a60f1/broken_axis.ipynb deleted file mode 100644 index b774f05d624..00000000000 --- a/_downloads/cb5f3e724677c36fcd8d97eb6e8a60f1/broken_axis.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Broken Axis\n\n\nBroken axis example, where the y-axis will have a portion cut out.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\n# 30 points between [0, 0.2) originally made using np.random.rand(30)*.2\npts = np.array([\n 0.015, 0.166, 0.133, 0.159, 0.041, 0.024, 0.195, 0.039, 0.161, 0.018,\n 0.143, 0.056, 0.125, 0.096, 0.094, 0.051, 0.043, 0.021, 0.138, 0.075,\n 0.109, 0.195, 0.050, 0.074, 0.079, 0.155, 0.020, 0.010, 0.061, 0.008])\n\n# Now let's make two outlier points which are far away from everything.\npts[[3, 14]] += .8\n\n# If we were to simply plot pts, we'd lose most of the interesting\n# details due to the outliers. So let's 'break' or 'cut-out' the y-axis\n# into two portions - use the top (ax) for the outliers, and the bottom\n# (ax2) for the details of the majority of our data\nf, (ax, ax2) = plt.subplots(2, 1, sharex=True)\n\n# plot the same data on both axes\nax.plot(pts)\nax2.plot(pts)\n\n# zoom-in / limit the view to different portions of the data\nax.set_ylim(.78, 1.) # outliers only\nax2.set_ylim(0, .22) # most of the data\n\n# hide the spines between ax and ax2\nax.spines['bottom'].set_visible(False)\nax2.spines['top'].set_visible(False)\nax.xaxis.tick_top()\nax.tick_params(labeltop=False) # don't put tick labels at the top\nax2.xaxis.tick_bottom()\n\n# This looks pretty good, and was fairly painless, but you can get that\n# cut-out diagonal lines look with just a bit more work. The important\n# thing to know here is that in axes coordinates, which are always\n# between 0-1, spine endpoints are at these locations (0,0), (0,1),\n# (1,0), and (1,1). Thus, we just need to put the diagonals in the\n# appropriate corners of each of our axes, and so long as we use the\n# right transform and disable clipping.\n\nd = .015 # how big to make the diagonal lines in axes coordinates\n# arguments to pass to plot, just so we don't keep repeating them\nkwargs = dict(transform=ax.transAxes, color='k', clip_on=False)\nax.plot((-d, +d), (-d, +d), **kwargs) # top-left diagonal\nax.plot((1 - d, 1 + d), (-d, +d), **kwargs) # top-right diagonal\n\nkwargs.update(transform=ax2.transAxes) # switch to the bottom axes\nax2.plot((-d, +d), (1 - d, 1 + d), **kwargs) # bottom-left diagonal\nax2.plot((1 - d, 1 + d), (1 - d, 1 + d), **kwargs) # bottom-right diagonal\n\n# What's cool about this is that now if we vary the distance between\n# ax and ax2 via f.subplots_adjust(hspace=...) or plt.subplot_tool(),\n# the diagonal lines will move accordingly, and stay right at the tips\n# of the spines they are 'breaking'\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cb648f0a2bf0fa02d8b682af6eb1135e/quiver3d.ipynb b/_downloads/cb648f0a2bf0fa02d8b682af6eb1135e/quiver3d.ipynb deleted file mode 120000 index bd4d1f1ea8b..00000000000 --- a/_downloads/cb648f0a2bf0fa02d8b682af6eb1135e/quiver3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cb648f0a2bf0fa02d8b682af6eb1135e/quiver3d.ipynb \ No newline at end of file diff --git a/_downloads/cb764b24927a9cb3515d0c208dcf9eef/simple_axes_divider2.py b/_downloads/cb764b24927a9cb3515d0c208dcf9eef/simple_axes_divider2.py deleted file mode 120000 index e78d6de44b2..00000000000 --- a/_downloads/cb764b24927a9cb3515d0c208dcf9eef/simple_axes_divider2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cb764b24927a9cb3515d0c208dcf9eef/simple_axes_divider2.py \ No newline at end of file diff --git a/_downloads/cb7cf2f931ec87ecbbb45b23a69f8651/annotate_explain.py b/_downloads/cb7cf2f931ec87ecbbb45b23a69f8651/annotate_explain.py deleted file mode 120000 index c0e82d9e938..00000000000 --- a/_downloads/cb7cf2f931ec87ecbbb45b23a69f8651/annotate_explain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cb7cf2f931ec87ecbbb45b23a69f8651/annotate_explain.py \ No newline at end of file diff --git a/_downloads/cb7eda3f07aec6210de070d6d2fbdb6e/simple_axes_divider2.ipynb b/_downloads/cb7eda3f07aec6210de070d6d2fbdb6e/simple_axes_divider2.ipynb deleted file mode 120000 index 4d66179cd93..00000000000 --- a/_downloads/cb7eda3f07aec6210de070d6d2fbdb6e/simple_axes_divider2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cb7eda3f07aec6210de070d6d2fbdb6e/simple_axes_divider2.ipynb \ No newline at end of file diff --git a/_downloads/cb8c9ef44385406eb6101408fb1906bd/histogram.ipynb b/_downloads/cb8c9ef44385406eb6101408fb1906bd/histogram.ipynb deleted file mode 120000 index 21f08f25025..00000000000 --- a/_downloads/cb8c9ef44385406eb6101408fb1906bd/histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cb8c9ef44385406eb6101408fb1906bd/histogram.ipynb \ No newline at end of file diff --git a/_downloads/cb8eb5718cbfd15b217afae10bdaa9a6/animated_histogram.py b/_downloads/cb8eb5718cbfd15b217afae10bdaa9a6/animated_histogram.py deleted file mode 120000 index 766f5292c2c..00000000000 --- a/_downloads/cb8eb5718cbfd15b217afae10bdaa9a6/animated_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cb8eb5718cbfd15b217afae10bdaa9a6/animated_histogram.py \ No newline at end of file diff --git a/_downloads/cb98e2f7c13c51bd079176a3098b9a85/colormap_normalizations.py b/_downloads/cb98e2f7c13c51bd079176a3098b9a85/colormap_normalizations.py deleted file mode 100644 index b13d7f213cf..00000000000 --- a/_downloads/cb98e2f7c13c51bd079176a3098b9a85/colormap_normalizations.py +++ /dev/null @@ -1,141 +0,0 @@ -""" -======================= -Colormap Normalizations -======================= - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -############################################################################### -# Lognorm: Instead of pcolor log10(Z1) you can have colorbars that have -# the exponential labels using a norm. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out of the top. Needs to have -# z/colour axis on a log scale so we see both hump and spike. linear -# scale only shows the spike. - -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -Z = Z1 + 50 * Z2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolor(X, Y, Z, - norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - - -############################################################################### -# PowerNorm: Here a power-law trend in X partially obscures a rectified -# sine wave in Y. We can remove the power law using a PowerNorm. - -X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)] -Z1 = (1 + np.sin(Y * 10.)) * X**(2.) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1. / 2.), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - -############################################################################### -# SymLogNorm: two humps, one negative and one positive, The positive -# with 5-times the amplitude. Linearly, you cannot see detail in the -# negative hump. Here we logarithmically scale the positive and -# negative data separately. -# -# Note that colorbar labels do not come out looking very good. - -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = 5 * np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, - norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03, - vmin=-1.0, vmax=1.0), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='RdBu_r', vmin=-np.max(Z1)) -fig.colorbar(pcm, ax=ax[1], extend='both') - - -############################################################################### -# Custom Norm: An example with a customized normalization. This one -# uses the example above, and normalizes the negative data differently -# from the positive. - -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -# Example of making your own norm. Also see matplotlib.colors. -# From Joe Kington: This one gives two different linear ramps: - - -class MidpointNormalize(colors.Normalize): - def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False): - self.midpoint = midpoint - colors.Normalize.__init__(self, vmin, vmax, clip) - - def __call__(self, value, clip=None): - # I'm ignoring masked values and all kinds of edge cases to make a - # simple example... - x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1] - return np.ma.masked_array(np.interp(value, x, y)) - - -##### -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=MidpointNormalize(midpoint=0.), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') - -############################################################################### -# BoundaryNorm: For this one you provide the boundaries for your colors, -# and the Norm puts the first color in between the first pair, the -# second color between the second pair, etc. - -fig, ax = plt.subplots(3, 1, figsize=(8, 8)) -ax = ax.flatten() -# even bounds gives a contour-like effect -bounds = np.linspace(-1, 1, 10) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[0].pcolormesh(X, Y, Z, - norm=norm, - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical') - -# uneven bounds changes the colormapping: -bounds = np.array([-0.25, -0.125, 0, 0.5, 1]) -norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256) -pcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical') - -pcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z1)) -fig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical') - -plt.show() diff --git a/_downloads/cb9bba39200c1e9d9b1ac5a8e74a969a/multiple_histograms_side_by_side.ipynb b/_downloads/cb9bba39200c1e9d9b1ac5a8e74a969a/multiple_histograms_side_by_side.ipynb deleted file mode 120000 index 11ff7e87272..00000000000 --- a/_downloads/cb9bba39200c1e9d9b1ac5a8e74a969a/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cb9bba39200c1e9d9b1ac5a8e74a969a/multiple_histograms_side_by_side.ipynb \ No newline at end of file diff --git a/_downloads/cbbafdf13414dc179656ea7970e9867f/surface3d_radial.ipynb b/_downloads/cbbafdf13414dc179656ea7970e9867f/surface3d_radial.ipynb deleted file mode 120000 index 0f49ab387b3..00000000000 --- a/_downloads/cbbafdf13414dc179656ea7970e9867f/surface3d_radial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cbbafdf13414dc179656ea7970e9867f/surface3d_radial.ipynb \ No newline at end of file diff --git a/_downloads/cbbd95388d3c34002df29e72d631e35d/sankey_basics.py b/_downloads/cbbd95388d3c34002df29e72d631e35d/sankey_basics.py deleted file mode 120000 index b2b64078f0f..00000000000 --- a/_downloads/cbbd95388d3c34002df29e72d631e35d/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cbbd95388d3c34002df29e72d631e35d/sankey_basics.py \ No newline at end of file diff --git a/_downloads/cbbf002ede2144ba5c82a467d7455199/scatter.py b/_downloads/cbbf002ede2144ba5c82a467d7455199/scatter.py deleted file mode 100644 index 673766a6ea4..00000000000 --- a/_downloads/cbbf002ede2144ba5c82a467d7455199/scatter.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -============ -Scatter plot -============ - -This example showcases a simple scatter plot. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -N = 50 -x = np.random.rand(N) -y = np.random.rand(N) -colors = np.random.rand(N) -area = (30 * np.random.rand(N))**2 # 0 to 15 point radii - -plt.scatter(x, y, s=area, c=colors, alpha=0.5) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: -import matplotlib - -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter diff --git a/_downloads/cbc6cc42af06a4be6b3d6f8c5e33ead1/figure_title.py b/_downloads/cbc6cc42af06a4be6b3d6f8c5e33ead1/figure_title.py deleted file mode 120000 index b3c0074268c..00000000000 --- a/_downloads/cbc6cc42af06a4be6b3d6f8c5e33ead1/figure_title.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cbc6cc42af06a4be6b3d6f8c5e33ead1/figure_title.py \ No newline at end of file diff --git a/_downloads/cbd1f973537d920c623b873a6f2f7284/color_cycle_default.py b/_downloads/cbd1f973537d920c623b873a6f2f7284/color_cycle_default.py deleted file mode 100644 index 8de0048b54a..00000000000 --- a/_downloads/cbd1f973537d920c623b873a6f2f7284/color_cycle_default.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -==================================== -Colors in the default property cycle -==================================== - -Display the colors from the default prop_cycle, which is obtained from the -:doc:`rc parameters`. -""" -import numpy as np -import matplotlib.pyplot as plt - - -prop_cycle = plt.rcParams['axes.prop_cycle'] -colors = prop_cycle.by_key()['color'] - -lwbase = plt.rcParams['lines.linewidth'] -thin = lwbase / 2 -thick = lwbase * 3 - -fig, axs = plt.subplots(nrows=2, ncols=2, sharex=True, sharey=True) -for icol in range(2): - if icol == 0: - lwx, lwy = thin, lwbase - else: - lwx, lwy = lwbase, thick - for irow in range(2): - for i, color in enumerate(colors): - axs[irow, icol].axhline(i, color=color, lw=lwx) - axs[irow, icol].axvline(i, color=color, lw=lwy) - - axs[1, icol].set_facecolor('k') - axs[1, icol].xaxis.set_ticks(np.arange(0, 10, 2)) - axs[0, icol].set_title('line widths (pts): %g, %g' % (lwx, lwy), - fontsize='medium') - -for irow in range(2): - axs[irow, 0].yaxis.set_ticks(np.arange(0, 10, 2)) - -fig.suptitle('Colors in the default prop_cycle', fontsize='large') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.axhline -matplotlib.axes.Axes.axvline -matplotlib.pyplot.axhline -matplotlib.pyplot.axvline -matplotlib.axes.Axes.set_facecolor -matplotlib.figure.Figure.suptitle diff --git a/_downloads/cbe402274c1dc42372f505250f0db29e/image_demo.ipynb b/_downloads/cbe402274c1dc42372f505250f0db29e/image_demo.ipynb deleted file mode 100644 index f9e52dcfe18..00000000000 --- a/_downloads/cbe402274c1dc42372f505250f0db29e/image_demo.ipynb +++ /dev/null @@ -1,162 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Demo\n\n\nMany ways to plot images in Matplotlib.\n\nThe most common way to plot images in Matplotlib is with\n:meth:`~.axes.Axes.imshow`. The following examples demonstrate much of the\nfunctionality of imshow and the many images you can create.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nfrom matplotlib.path import Path\nfrom matplotlib.patches import PathPatch" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First we'll generate a simple bivariate normal distribution.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "delta = 0.025\nx = y = np.arange(-3.0, 3.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots()\nim = ax.imshow(Z, interpolation='bilinear', cmap=cm.RdYlGn,\n origin='lower', extent=[-3, 3, -3, 3],\n vmax=abs(Z).max(), vmin=-abs(Z).max())\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It is also possible to show images of pictures.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# A sample image\nwith cbook.get_sample_data('ada.png') as image_file:\n image = plt.imread(image_file)\n\nfig, ax = plt.subplots()\nax.imshow(image)\nax.axis('off') # clear x-axis and y-axis\n\n\n# And another image\n\nw, h = 512, 512\n\nwith cbook.get_sample_data('ct.raw.gz') as datafile:\n s = datafile.read()\nA = np.frombuffer(s, np.uint16).astype(float).reshape((w, h))\nA /= A.max()\n\nfig, ax = plt.subplots()\nextent = (0, 25, 0, 25)\nim = ax.imshow(A, cmap=plt.cm.hot, origin='upper', extent=extent)\n\nmarkers = [(15.9, 14.5), (16.8, 15)]\nx, y = zip(*markers)\nax.plot(x, y, 'o')\n\nax.set_title('CT density')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Interpolating images\n--------------------\n\nIt is also possible to interpolate images before displaying them. Be careful,\nas this may manipulate the way your data looks, but it can be helpful for\nachieving the look you want. Below we'll display the same (small) array,\ninterpolated with three different interpolation methods.\n\nThe center of the pixel at A[i,j] is plotted at i+0.5, i+0.5. If you\nare using interpolation='nearest', the region bounded by (i,j) and\n(i+1,j+1) will have the same color. If you are using interpolation,\nthe pixel center will have the same color as it does with nearest, but\nother pixels will be interpolated between the neighboring pixels.\n\nTo prevent edge effects when doing interpolation, Matplotlib pads the input\narray with identical pixels around the edge: if you have a 5x5 array with\ncolors a-y as below::\n\n a b c d e\n f g h i j\n k l m n o\n p q r s t\n u v w x y\n\nMatplotlib computes the interpolation and resizing on the padded array ::\n\n a a b c d e e\n a a b c d e e\n f f g h i j j\n k k l m n o o\n p p q r s t t\n o u v w x y y\n o u v w x y y\n\nand then extracts the central region of the result. (Extremely old versions\nof Matplotlib (<0.63) did not pad the array, but instead adjusted the view\nlimits to hide the affected edge areas.)\n\nThis approach allows plotting the full extent of an array without\nedge effects, and for example to layer multiple images of different\nsizes over one another with different interpolation methods -- see\n:doc:`/gallery/images_contours_and_fields/layer_images`. It also implies\na performance hit, as this new temporary, padded array must be created.\nSophisticated interpolation also implies a performance hit; for maximal\nperformance or very large images, interpolation='nearest' is suggested.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "A = np.random.rand(5, 5)\n\nfig, axs = plt.subplots(1, 3, figsize=(10, 3))\nfor ax, interp in zip(axs, ['nearest', 'bilinear', 'bicubic']):\n ax.imshow(A, interpolation=interp)\n ax.set_title(interp.capitalize())\n ax.grid(True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify whether images should be plotted with the array origin\nx[0,0] in the upper left or lower right by using the origin parameter.\nYou can also control the default setting image.origin in your\n`matplotlibrc file `. For more on\nthis topic see the :doc:`complete guide on origin and extent\n`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.arange(120).reshape((10, 12))\n\ninterp = 'bilinear'\nfig, axs = plt.subplots(nrows=2, sharex=True, figsize=(3, 5))\naxs[0].set_title('blue should be up')\naxs[0].imshow(x, origin='upper', interpolation=interp)\n\naxs[1].set_title('blue should be down')\naxs[1].imshow(x, origin='lower', interpolation=interp)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, we'll show an image using a clip path.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "delta = 0.025\nx = y = np.arange(-3.0, 3.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\npath = Path([[0, 1], [1, 0], [0, -1], [-1, 0], [0, 1]])\npatch = PathPatch(path, facecolor='none')\n\nfig, ax = plt.subplots()\nax.add_patch(patch)\n\nim = ax.imshow(Z, interpolation='bilinear', cmap=cm.gray,\n origin='lower', extent=[-3, 3, -3, 3],\n clip_path=patch, clip_on=True)\nim.set_clip_path(patch)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.artist.Artist.set_clip_path\nmatplotlib.patches.PathPatch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cbe766e29fb3ca25376a2b6543487ddf/tricontour_smooth_delaunay.ipynb b/_downloads/cbe766e29fb3ca25376a2b6543487ddf/tricontour_smooth_delaunay.ipynb deleted file mode 120000 index 8d137f60abf..00000000000 --- a/_downloads/cbe766e29fb3ca25376a2b6543487ddf/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cbe766e29fb3ca25376a2b6543487ddf/tricontour_smooth_delaunay.ipynb \ No newline at end of file diff --git a/_downloads/cbe7a30a6d39e7319d87c9680a8ee755/legend.py b/_downloads/cbe7a30a6d39e7319d87c9680a8ee755/legend.py deleted file mode 120000 index 3bbd57b059e..00000000000 --- a/_downloads/cbe7a30a6d39e7319d87c9680a8ee755/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cbe7a30a6d39e7319d87c9680a8ee755/legend.py \ No newline at end of file diff --git a/_downloads/cbed135ee05d67662eef601ed4923f61/colormap-manipulation.ipynb b/_downloads/cbed135ee05d67662eef601ed4923f61/colormap-manipulation.ipynb deleted file mode 120000 index 5322c92af5f..00000000000 --- a/_downloads/cbed135ee05d67662eef601ed4923f61/colormap-manipulation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cbed135ee05d67662eef601ed4923f61/colormap-manipulation.ipynb \ No newline at end of file diff --git a/_downloads/cbef7d88dc4b20bac91ebcedbedc53af/histogram.py b/_downloads/cbef7d88dc4b20bac91ebcedbedc53af/histogram.py deleted file mode 100644 index a0938bdb891..00000000000 --- a/_downloads/cbef7d88dc4b20bac91ebcedbedc53af/histogram.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -=========================== -Frontpage histogram example -=========================== - -This example reproduces the frontpage histogram example. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -random_state = np.random.RandomState(19680801) -X = random_state.randn(10000) - -fig, ax = plt.subplots() -ax.hist(X, bins=25, density=True) -x = np.linspace(-5, 5, 1000) -ax.plot(x, 1 / np.sqrt(2*np.pi) * np.exp(-(x**2)/2), linewidth=4) -ax.set_xticks([]) -ax.set_yticks([]) -fig.savefig("histogram_frontpage.png", dpi=25) # results in 160x120 px image diff --git a/_downloads/cbf9138ebc52fdb0f53abbc003cc2a99/colormap_normalizations_lognorm.ipynb b/_downloads/cbf9138ebc52fdb0f53abbc003cc2a99/colormap_normalizations_lognorm.ipynb deleted file mode 120000 index 67929d2ebc6..00000000000 --- a/_downloads/cbf9138ebc52fdb0f53abbc003cc2a99/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cbf9138ebc52fdb0f53abbc003cc2a99/colormap_normalizations_lognorm.ipynb \ No newline at end of file diff --git a/_downloads/cc01376ad4639d6a580787b9db2ea0c7/figimage_demo.py b/_downloads/cc01376ad4639d6a580787b9db2ea0c7/figimage_demo.py deleted file mode 120000 index 80699a5eb0b..00000000000 --- a/_downloads/cc01376ad4639d6a580787b9db2ea0c7/figimage_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc01376ad4639d6a580787b9db2ea0c7/figimage_demo.py \ No newline at end of file diff --git a/_downloads/cc023632e1c53b8ee50b9e3a81bcfe8e/transforms_tutorial.ipynb b/_downloads/cc023632e1c53b8ee50b9e3a81bcfe8e/transforms_tutorial.ipynb deleted file mode 120000 index 6c1a893e40f..00000000000 --- a/_downloads/cc023632e1c53b8ee50b9e3a81bcfe8e/transforms_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc023632e1c53b8ee50b9e3a81bcfe8e/transforms_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/cc036dd02e5c2d77299351452767f8e1/simple_anchored_artists.py b/_downloads/cc036dd02e5c2d77299351452767f8e1/simple_anchored_artists.py deleted file mode 100644 index 9a8ae92335e..00000000000 --- a/_downloads/cc036dd02e5c2d77299351452767f8e1/simple_anchored_artists.py +++ /dev/null @@ -1,84 +0,0 @@ -""" -======================= -Simple Anchored Artists -======================= - -This example illustrates the use of the anchored helper classes found in -:py:mod:`~matplotlib.offsetbox` and in the :ref:`toolkit_axesgrid1-index`. -An implementation of a similar figure, but without use of the toolkit, -can be found in :doc:`/gallery/misc/anchored_artists`. -""" - -import matplotlib.pyplot as plt - - -def draw_text(ax): - """ - Draw two text-boxes, anchored by different corners to the upper-left - corner of the figure. - """ - from matplotlib.offsetbox import AnchoredText - at = AnchoredText("Figure 1a", - loc='upper left', prop=dict(size=8), frameon=True, - ) - at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at) - - at2 = AnchoredText("Figure 1(b)", - loc='lower left', prop=dict(size=8), frameon=True, - bbox_to_anchor=(0., 1.), - bbox_transform=ax.transAxes - ) - at2.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at2) - - -def draw_circle(ax): - """ - Draw a circle in axis coordinates - """ - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea - from matplotlib.patches import Circle - ada = AnchoredDrawingArea(20, 20, 0, 0, - loc='upper right', pad=0., frameon=False) - p = Circle((10, 10), 10) - ada.da.add_artist(p) - ax.add_artist(ada) - - -def draw_ellipse(ax): - """ - Draw an ellipse of width=0.1, height=0.15 in data coordinates - """ - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredEllipse - ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0., - loc='lower left', pad=0.5, borderpad=0.4, - frameon=True) - - ax.add_artist(ae) - - -def draw_sizebar(ax): - """ - Draw a horizontal bar with length of 0.1 in data coordinates, - with a fixed label underneath. - """ - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar - asb = AnchoredSizeBar(ax.transData, - 0.1, - r"1$^{\prime}$", - loc='lower center', - pad=0.1, borderpad=0.5, sep=5, - frameon=False) - ax.add_artist(asb) - - -ax = plt.gca() -ax.set_aspect(1.) - -draw_text(ax) -draw_circle(ax) -draw_ellipse(ax) -draw_sizebar(ax) - -plt.show() diff --git a/_downloads/cc127c47819d0c9c298704dead74d96f/gradient_bar.py b/_downloads/cc127c47819d0c9c298704dead74d96f/gradient_bar.py deleted file mode 120000 index 8600a77a55c..00000000000 --- a/_downloads/cc127c47819d0c9c298704dead74d96f/gradient_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc127c47819d0c9c298704dead74d96f/gradient_bar.py \ No newline at end of file diff --git a/_downloads/cc1d2f3cea1ac11f452c5df402eb6d49/annotate_with_units.py b/_downloads/cc1d2f3cea1ac11f452c5df402eb6d49/annotate_with_units.py deleted file mode 120000 index 4ef462c7d32..00000000000 --- a/_downloads/cc1d2f3cea1ac11f452c5df402eb6d49/annotate_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc1d2f3cea1ac11f452c5df402eb6d49/annotate_with_units.py \ No newline at end of file diff --git a/_downloads/cc1e58c6a2460b80a3689f3b175aee2d/transoffset.py b/_downloads/cc1e58c6a2460b80a3689f3b175aee2d/transoffset.py deleted file mode 100644 index d9acf0aa6cf..00000000000 --- a/_downloads/cc1e58c6a2460b80a3689f3b175aee2d/transoffset.py +++ /dev/null @@ -1,58 +0,0 @@ -''' -=========== -Transoffset -=========== - -This illustrates the use of transforms.offset_copy to -make a transform that positions a drawing element such as -a text string at a specified offset in screen coordinates -(dots or inches) relative to a location given in any -coordinates. - -Every Artist--the mpl class from which classes such as -Text and Line are derived--has a transform that can be -set when the Artist is created, such as by the corresponding -pyplot command. By default this is usually the Axes.transData -transform, going from data units to screen dots. We can -use the offset_copy function to make a modified copy of -this transform, where the modification consists of an -offset. -''' - -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms -import numpy as np - - -xs = np.arange(7) -ys = xs**2 - -fig = plt.figure(figsize=(5, 10)) -ax = plt.subplot(2, 1, 1) - -# If we want the same offset for each text instance, -# we only need to make one transform. To get the -# transform argument to offset_copy, we need to make the axes -# first; the subplot command above is one way to do this. -trans_offset = mtransforms.offset_copy(ax.transData, fig=fig, - x=0.05, y=0.10, units='inches') - -for x, y in zip(xs, ys): - plt.plot(x, y, 'ro') - plt.text(x, y, '%d, %d' % (int(x), int(y)), transform=trans_offset) - - -# offset_copy works for polar plots also. -ax = plt.subplot(2, 1, 2, projection='polar') - -trans_offset = mtransforms.offset_copy(ax.transData, fig=fig, - y=6, units='dots') - -for x, y in zip(xs, ys): - plt.polar(x, y, 'ro') - plt.text(x, y, '%d, %d' % (int(x), int(y)), - transform=trans_offset, - horizontalalignment='center', - verticalalignment='bottom') - -plt.show() diff --git a/_downloads/cc20e2cd4e1f3224493ce17cecd4bd13/rotate_axes3d_sgskip.py b/_downloads/cc20e2cd4e1f3224493ce17cecd4bd13/rotate_axes3d_sgskip.py deleted file mode 120000 index aeab3052e19..00000000000 --- a/_downloads/cc20e2cd4e1f3224493ce17cecd4bd13/rotate_axes3d_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc20e2cd4e1f3224493ce17cecd4bd13/rotate_axes3d_sgskip.py \ No newline at end of file diff --git a/_downloads/cc22e8b6b3f94a6fb6041a8f1d92ee1c/ggplot.py b/_downloads/cc22e8b6b3f94a6fb6041a8f1d92ee1c/ggplot.py deleted file mode 100644 index 799021e50cf..00000000000 --- a/_downloads/cc22e8b6b3f94a6fb6041a8f1d92ee1c/ggplot.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -================== -ggplot style sheet -================== - -This example demonstrates the "ggplot" style, which adjusts the style to -emulate ggplot_ (a popular plotting package for R_). - -These settings were shamelessly stolen from [1]_ (with permission). - -.. [1] https://web.archive.org/web/20111215111010/http://www.huyng.com/archives/sane-color-scheme-for-matplotlib/691/ - -.. _ggplot: https://ggplot2.tidyverse.org/ -.. _R: https://www.r-project.org/ - -""" -import numpy as np -import matplotlib.pyplot as plt - -plt.style.use('ggplot') - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, axes = plt.subplots(ncols=2, nrows=2) -ax1, ax2, ax3, ax4 = axes.ravel() - -# scatter plot (Note: `plt.scatter` doesn't use default colors) -x, y = np.random.normal(size=(2, 200)) -ax1.plot(x, y, 'o') - -# sinusoidal lines with colors from default color cycle -L = 2*np.pi -x = np.linspace(0, L) -ncolors = len(plt.rcParams['axes.prop_cycle']) -shift = np.linspace(0, L, ncolors, endpoint=False) -for s in shift: - ax2.plot(x, np.sin(x + s), '-') -ax2.margins(0) - -# bar graphs -x = np.arange(5) -y1, y2 = np.random.randint(1, 25, size=(2, 5)) -width = 0.25 -ax3.bar(x, y1, width) -ax3.bar(x + width, y2, width, - color=list(plt.rcParams['axes.prop_cycle'])[2]['color']) -ax3.set_xticks(x + width) -ax3.set_xticklabels(['a', 'b', 'c', 'd', 'e']) - -# circles with colors from default color cycle -for i, color in enumerate(plt.rcParams['axes.prop_cycle']): - xy = np.random.normal(size=2) - ax4.add_patch(plt.Circle(xy, radius=0.3, color=color['color'])) -ax4.axis('equal') -ax4.margins(0) - -plt.show() diff --git a/_downloads/cc299a75925ffa9e3f725522f357d2b9/skewt.ipynb b/_downloads/cc299a75925ffa9e3f725522f357d2b9/skewt.ipynb deleted file mode 100644 index 09953b4fd4d..00000000000 --- a/_downloads/cc299a75925ffa9e3f725522f357d2b9/skewt.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===========================================================\nSkewT-logP diagram: using transforms and custom projections\n===========================================================\n\nThis serves as an intensive exercise of Matplotlib's transforms and custom\nprojection API. This example produces a so-called SkewT-logP diagram, which is\na common plot in meteorology for displaying vertical profiles of temperature.\nAs far as Matplotlib is concerned, the complexity comes from having X and Y\naxes that are not orthogonal. This is handled by including a skew component to\nthe basic Axes transforms. Additional complexity comes in handling the fact\nthat the upper and lower X-axes have different data ranges, which necessitates\na bunch of custom classes for ticks, spines, and axis to handle this.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from contextlib import ExitStack\n\nfrom matplotlib.axes import Axes\nimport matplotlib.transforms as transforms\nimport matplotlib.axis as maxis\nimport matplotlib.spines as mspines\nfrom matplotlib.projections import register_projection\n\n\n# The sole purpose of this class is to look at the upper, lower, or total\n# interval as appropriate and see what parts of the tick to draw, if any.\nclass SkewXTick(maxis.XTick):\n def draw(self, renderer):\n # When adding the callbacks with `stack.callback`, we fetch the current\n # visibility state of the artist with `get_visible`; the ExitStack will\n # restore these states (`set_visible`) at the end of the block (after\n # the draw).\n with ExitStack() as stack:\n for artist in [self.gridline, self.tick1line, self.tick2line,\n self.label1, self.label2]:\n stack.callback(artist.set_visible, artist.get_visible())\n needs_lower = transforms.interval_contains(\n self.axes.lower_xlim, self.get_loc())\n needs_upper = transforms.interval_contains(\n self.axes.upper_xlim, self.get_loc())\n self.tick1line.set_visible(\n self.tick1line.get_visible() and needs_lower)\n self.label1.set_visible(\n self.label1.get_visible() and needs_lower)\n self.tick2line.set_visible(\n self.tick2line.get_visible() and needs_upper)\n self.label2.set_visible(\n self.label2.get_visible() and needs_upper)\n super(SkewXTick, self).draw(renderer)\n\n def get_view_interval(self):\n return self.axes.xaxis.get_view_interval()\n\n\n# This class exists to provide two separate sets of intervals to the tick,\n# as well as create instances of the custom tick\nclass SkewXAxis(maxis.XAxis):\n def _get_tick(self, major):\n return SkewXTick(self.axes, None, '', major=major)\n\n def get_view_interval(self):\n return self.axes.upper_xlim[0], self.axes.lower_xlim[1]\n\n\n# This class exists to calculate the separate data range of the\n# upper X-axis and draw the spine there. It also provides this range\n# to the X-axis artist for ticking and gridlines\nclass SkewSpine(mspines.Spine):\n def _adjust_location(self):\n pts = self._path.vertices\n if self.spine_type == 'top':\n pts[:, 0] = self.axes.upper_xlim\n else:\n pts[:, 0] = self.axes.lower_xlim\n\n\n# This class handles registration of the skew-xaxes as a projection as well\n# as setting up the appropriate transformations. It also overrides standard\n# spines and axes instances as appropriate.\nclass SkewXAxes(Axes):\n # The projection must specify a name. This will be used be the\n # user to select the projection, i.e. ``subplot(111,\n # projection='skewx')``.\n name = 'skewx'\n\n def _init_axis(self):\n # Taken from Axes and modified to use our modified X-axis\n self.xaxis = SkewXAxis(self)\n self.spines['top'].register_axis(self.xaxis)\n self.spines['bottom'].register_axis(self.xaxis)\n self.yaxis = maxis.YAxis(self)\n self.spines['left'].register_axis(self.yaxis)\n self.spines['right'].register_axis(self.yaxis)\n\n def _gen_axes_spines(self):\n spines = {'top': SkewSpine.linear_spine(self, 'top'),\n 'bottom': mspines.Spine.linear_spine(self, 'bottom'),\n 'left': mspines.Spine.linear_spine(self, 'left'),\n 'right': mspines.Spine.linear_spine(self, 'right')}\n return spines\n\n def _set_lim_and_transforms(self):\n \"\"\"\n This is called once when the plot is created to set up all the\n transforms for the data, text and grids.\n \"\"\"\n rot = 30\n\n # Get the standard transform setup from the Axes base class\n super()._set_lim_and_transforms()\n\n # Need to put the skew in the middle, after the scale and limits,\n # but before the transAxes. This way, the skew is done in Axes\n # coordinates thus performing the transform around the proper origin\n # We keep the pre-transAxes transform around for other users, like the\n # spines for finding bounds\n self.transDataToAxes = (\n self.transScale\n + self.transLimits\n + transforms.Affine2D().skew_deg(rot, 0)\n )\n # Create the full transform from Data to Pixels\n self.transData = self.transDataToAxes + self.transAxes\n\n # Blended transforms like this need to have the skewing applied using\n # both axes, in axes coords like before.\n self._xaxis_transform = (\n transforms.blended_transform_factory(\n self.transScale + self.transLimits,\n transforms.IdentityTransform())\n + transforms.Affine2D().skew_deg(rot, 0)\n + self.transAxes\n )\n\n @property\n def lower_xlim(self):\n return self.axes.viewLim.intervalx\n\n @property\n def upper_xlim(self):\n pts = [[0., 1.], [1., 1.]]\n return self.transDataToAxes.inverted().transform(pts)[:, 0]\n\n\n# Now register the projection with matplotlib so the user can select it.\nregister_projection(SkewXAxes)\n\nif __name__ == '__main__':\n # Now make a simple example using the custom projection.\n from io import StringIO\n from matplotlib.ticker import (MultipleLocator, NullFormatter,\n ScalarFormatter)\n import matplotlib.pyplot as plt\n import numpy as np\n\n # Some example data.\n data_txt = '''\n 978.0 345 7.8 0.8\n 971.0 404 7.2 0.2\n 946.7 610 5.2 -1.8\n 944.0 634 5.0 -2.0\n 925.0 798 3.4 -2.6\n 911.8 914 2.4 -2.7\n 906.0 966 2.0 -2.7\n 877.9 1219 0.4 -3.2\n 850.0 1478 -1.3 -3.7\n 841.0 1563 -1.9 -3.8\n 823.0 1736 1.4 -0.7\n 813.6 1829 4.5 1.2\n 809.0 1875 6.0 2.2\n 798.0 1988 7.4 -0.6\n 791.0 2061 7.6 -1.4\n 783.9 2134 7.0 -1.7\n 755.1 2438 4.8 -3.1\n 727.3 2743 2.5 -4.4\n 700.5 3048 0.2 -5.8\n 700.0 3054 0.2 -5.8\n 698.0 3077 0.0 -6.0\n 687.0 3204 -0.1 -7.1\n 648.9 3658 -3.2 -10.9\n 631.0 3881 -4.7 -12.7\n 600.7 4267 -6.4 -16.7\n 592.0 4381 -6.9 -17.9\n 577.6 4572 -8.1 -19.6\n 555.3 4877 -10.0 -22.3\n 536.0 5151 -11.7 -24.7\n 533.8 5182 -11.9 -25.0\n 500.0 5680 -15.9 -29.9\n 472.3 6096 -19.7 -33.4\n 453.0 6401 -22.4 -36.0\n 400.0 7310 -30.7 -43.7\n 399.7 7315 -30.8 -43.8\n 387.0 7543 -33.1 -46.1\n 382.7 7620 -33.8 -46.8\n 342.0 8398 -40.5 -53.5\n 320.4 8839 -43.7 -56.7\n 318.0 8890 -44.1 -57.1\n 310.0 9060 -44.7 -58.7\n 306.1 9144 -43.9 -57.9\n 305.0 9169 -43.7 -57.7\n 300.0 9280 -43.5 -57.5\n 292.0 9462 -43.7 -58.7\n 276.0 9838 -47.1 -62.1\n 264.0 10132 -47.5 -62.5\n 251.0 10464 -49.7 -64.7\n 250.0 10490 -49.7 -64.7\n 247.0 10569 -48.7 -63.7\n 244.0 10649 -48.9 -63.9\n 243.3 10668 -48.9 -63.9\n 220.0 11327 -50.3 -65.3\n 212.0 11569 -50.5 -65.5\n 210.0 11631 -49.7 -64.7\n 200.0 11950 -49.9 -64.9\n 194.0 12149 -49.9 -64.9\n 183.0 12529 -51.3 -66.3\n 164.0 13233 -55.3 -68.3\n 152.0 13716 -56.5 -69.5\n 150.0 13800 -57.1 -70.1\n 136.0 14414 -60.5 -72.5\n 132.0 14600 -60.1 -72.1\n 131.4 14630 -60.2 -72.2\n 128.0 14792 -60.9 -72.9\n 125.0 14939 -60.1 -72.1\n 119.0 15240 -62.2 -73.8\n 112.0 15616 -64.9 -75.9\n 108.0 15838 -64.1 -75.1\n 107.8 15850 -64.1 -75.1\n 105.0 16010 -64.7 -75.7\n 103.0 16128 -62.9 -73.9\n 100.0 16310 -62.5 -73.5\n '''\n\n # Parse the data\n sound_data = StringIO(data_txt)\n p, h, T, Td = np.loadtxt(sound_data, unpack=True)\n\n # Create a new figure. The dimensions here give a good aspect ratio\n fig = plt.figure(figsize=(6.5875, 6.2125))\n ax = fig.add_subplot(111, projection='skewx')\n\n plt.grid(True)\n\n # Plot the data using normal plotting functions, in this case using\n # log scaling in Y, as dictated by the typical meteorological plot\n ax.semilogy(T, p, color='C3')\n ax.semilogy(Td, p, color='C2')\n\n # An example of a slanted line at constant X\n l = ax.axvline(0, color='C0')\n\n # Disables the log-formatting that comes with semilogy\n ax.yaxis.set_major_formatter(ScalarFormatter())\n ax.yaxis.set_minor_formatter(NullFormatter())\n ax.set_yticks(np.linspace(100, 1000, 10))\n ax.set_ylim(1050, 100)\n\n ax.xaxis.set_major_locator(MultipleLocator(10))\n ax.set_xlim(-50, 50)\n\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.transforms\nmatplotlib.spines\nmatplotlib.spines.Spine\nmatplotlib.spines.Spine.register_axis\nmatplotlib.projections\nmatplotlib.projections.register_projection" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cc2ab56dcecf197d76db5550211c587d/triinterp_demo.ipynb b/_downloads/cc2ab56dcecf197d76db5550211c587d/triinterp_demo.ipynb deleted file mode 120000 index 8bf6432002a..00000000000 --- a/_downloads/cc2ab56dcecf197d76db5550211c587d/triinterp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc2ab56dcecf197d76db5550211c587d/triinterp_demo.ipynb \ No newline at end of file diff --git a/_downloads/cc45c6ac571c446bad9128fc84ae8866/polygon_selector_demo.py b/_downloads/cc45c6ac571c446bad9128fc84ae8866/polygon_selector_demo.py deleted file mode 120000 index 00d773a8d15..00000000000 --- a/_downloads/cc45c6ac571c446bad9128fc84ae8866/polygon_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc45c6ac571c446bad9128fc84ae8866/polygon_selector_demo.py \ No newline at end of file diff --git a/_downloads/cc46224ebb7a7afda7d8b6f3a1e58c06/axes_grid.py b/_downloads/cc46224ebb7a7afda7d8b6f3a1e58c06/axes_grid.py deleted file mode 100644 index 03111a581c1..00000000000 --- a/_downloads/cc46224ebb7a7afda7d8b6f3a1e58c06/axes_grid.py +++ /dev/null @@ -1,508 +0,0 @@ -r""" -============================== -Overview of axes_grid1 toolkit -============================== - -Controlling the layout of plots with the axes_grid toolkit. - -.. _axes_grid1_users-guide-index: - -What is axes_grid1 toolkit? -=========================== - -*axes_grid1* is a collection of helper classes to ease displaying -(multiple) images with matplotlib. In matplotlib, the axes location -(and size) is specified in the normalized figure coordinates, which -may not be ideal for displaying images that needs to have a given -aspect ratio. For example, it helps if you have a colorbar whose -height always matches that of the image. `ImageGrid`_, `RGB Axes`_ and -`AxesDivider`_ are helper classes that deals with adjusting the -location of (multiple) Axes. They provides a framework to adjust the -position of multiple axes at the drawing time. `ParasiteAxes`_ -provides twinx(or twiny)-like features so that you can plot different -data (e.g., different y-scale) in a same Axes. `AnchoredArtists`_ -includes custom artists which are placed at some anchored position, -like the legend. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png - :target: ../../gallery/axes_grid1/demo_axes_grid.html - :align: center - :scale: 50 - - Demo Axes Grid - - -axes_grid1 -========== - -ImageGrid ---------- - - -A class that creates a grid of Axes. In matplotlib, the axes location -(and size) is specified in the normalized figure coordinates. This may -not be ideal for images that needs to be displayed with a given aspect -ratio. For example, displaying images of a same size with some fixed -padding between them cannot be easily done in matplotlib. ImageGrid is -used in such case. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid_001.png - :target: ../../gallery/axes_grid1/simple_axesgrid.html - :align: center - :scale: 50 - - Simple Axesgrid - -* The position of each axes is determined at the drawing time (see - `AxesDivider`_), so that the size of the entire grid fits in the - given rectangle (like the aspect of axes). Note that in this example, - the paddings between axes are fixed even if you changes the figure - size. - -* axes in the same column has a same axes width (in figure - coordinate), and similarly, axes in the same row has a same - height. The widths (height) of the axes in the same row (column) are - scaled according to their view limits (xlim or ylim). - - .. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axesgrid2_001.png - :target: ../../gallery/axes_grid1/simple_axesgrid2.html - :align: center - :scale: 50 - - Simple Axes Grid - -* xaxis are shared among axes in a same column. Similarly, yaxis are - shared among axes in a same row. Therefore, changing axis properties - (view limits, tick location, etc. either by plot commands or using - your mouse in interactive backends) of one axes will affect all - other shared axes. - - - -When initialized, ImageGrid creates given number (*ngrids* or *ncols* * -*nrows* if *ngrids* is None) of Axes instances. A sequence-like -interface is provided to access the individual Axes instances (e.g., -grid[0] is the first Axes in the grid. See below for the order of -axes). - - - -ImageGrid takes following arguments, - - - ============= ======== ================================================ - Name Default Description - ============= ======== ================================================ - fig - rect - nrows_ncols number of rows and cols. e.g., (2,2) - ngrids None number of grids. nrows x ncols if None - direction "row" increasing direction of axes number. [row|column] - axes_pad 0.02 pad between axes in inches - add_all True Add axes to figures if True - share_all False xaxis & yaxis of all axes are shared if True - aspect True aspect of axes - label_mode "L" location of tick labels thaw will be displayed. - "1" (only the lower left axes), - "L" (left most and bottom most axes), - or "all". - cbar_mode None [None|single|each] - cbar_location "right" [right|top] - cbar_pad None pad between image axes and colorbar axes - cbar_size "5%" size of the colorbar - axes_class None - ============= ======== ================================================ - - *rect* - specifies the location of the grid. You can either specify - coordinates of the rectangle to be used (e.g., (0.1, 0.1, 0.8, 0.8) - as in the Axes), or the subplot-like position (e.g., "121"). - - *direction* - means the increasing direction of the axes number. - - *aspect* - By default (False), widths and heights of axes in the grid are - scaled independently. If True, they are scaled according to their - data limits (similar to aspect parameter in mpl). - - *share_all* - if True, xaxis and yaxis of all axes are shared. - - *direction* - direction of increasing axes number. For "row", - - +---------+---------+ - | grid[0] | grid[1] | - +---------+---------+ - | grid[2] | grid[3] | - +---------+---------+ - - For "column", - - +---------+---------+ - | grid[0] | grid[2] | - +---------+---------+ - | grid[1] | grid[3] | - +---------+---------+ - -You can also create a colorbar (or colorbars). You can have colorbar -for each axes (cbar_mode="each"), or you can have a single colorbar -for the grid (cbar_mode="single"). The colorbar can be placed on your -right, or top. The axes for each colorbar is stored as a *cbar_axes* -attribute. - - - -The examples below show what you can do with ImageGrid. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_demo_axes_grid_001.png - :target: ../../gallery/axes_grid1/demo_axes_grid.html - :align: center - :scale: 50 - - Demo Axes Grid - - -AxesDivider Class ------------------ - -Behind the scene, the ImageGrid class and the RGBAxes class utilize the -AxesDivider class, whose role is to calculate the location of the axes -at drawing time. While a more about the AxesDivider is (will be) -explained in (yet to be written) AxesDividerGuide, direct use of the -AxesDivider class will not be necessary for most users. The -axes_divider module provides a helper function make_axes_locatable, -which can be useful. It takes a existing axes instance and create a -divider for it. :: - - ax = subplot(1,1,1) - divider = make_axes_locatable(ax) - - - - -*make_axes_locatable* returns an instance of the AxesLocator class, -derived from the Locator. It provides *append_axes* method that -creates a new axes on the given side of ("top", "right", "bottom" and -"left") of the original axes. - - - -colorbar whose height (or width) in sync with the master axes -------------------------------------------------------------- - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_colorbar_001.png - :target: ../../gallery/axes_grid1/simple_colorbar.html - :align: center - :scale: 50 - - Simple Colorbar - - - - -scatter_hist.py with AxesDivider -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The "scatter_hist.py" example in mpl can be rewritten using -*make_axes_locatable*. :: - - axScatter = subplot(111) - axScatter.scatter(x, y) - axScatter.set_aspect(1.) - - # create new axes on the right and on the top of the current axes. - divider = make_axes_locatable(axScatter) - axHistx = divider.append_axes("top", size=1.2, pad=0.1, sharex=axScatter) - axHisty = divider.append_axes("right", size=1.2, pad=0.1, sharey=axScatter) - - # the scatter plot: - # histograms - bins = np.arange(-lim, lim + binwidth, binwidth) - axHistx.hist(x, bins=bins) - axHisty.hist(y, bins=bins, orientation='horizontal') - - -See the full source code below. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_scatter_hist_locatable_axes_001.png - :target: ../../gallery/axes_grid1/scatter_hist_locatable_axes.html - :align: center - :scale: 50 - - Scatter Hist - - -The scatter_hist using the AxesDivider has some advantage over the -original scatter_hist.py in mpl. For example, you can set the aspect -ratio of the scatter plot, even with the x-axis or y-axis is shared -accordingly. - - -ParasiteAxes ------------- - -The ParasiteAxes is an axes whose location is identical to its host -axes. The location is adjusted in the drawing time, thus it works even -if the host change its location (e.g., images). - -In most cases, you first create a host axes, which provides a few -method that can be used to create parasite axes. They are *twinx*, -*twiny* (which are similar to twinx and twiny in the matplotlib) and -*twin*. *twin* takes an arbitrary transformation that maps between the -data coordinates of the host axes and the parasite axes. *draw* -method of the parasite axes are never called. Instead, host axes -collects artists in parasite axes and draw them as if they belong to -the host axes, i.e., artists in parasite axes are merged to those of -the host axes and then drawn according to their zorder. The host and -parasite axes modifies some of the axes behavior. For example, color -cycle for plot lines are shared between host and parasites. Also, the -legend command in host, creates a legend that includes lines in the -parasite axes. To create a host axes, you may use *host_subplot* or -*host_axes* command. - - -Example 1. twinx -~~~~~~~~~~~~~~~~ - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple_001.png - :target: ../../gallery/axes_grid1/parasite_simple.html - :align: center - :scale: 50 - - Parasite Simple - -Example 2. twin -~~~~~~~~~~~~~~~ - -*twin* without a transform argument assumes that the parasite axes has the -same data transform as the host. This can be useful when you want the -top(or right)-axis to have different tick-locations, tick-labels, or -tick-formatter for bottom(or left)-axis. :: - - ax2 = ax.twin() # now, ax2 is responsible for "top" axis and "right" axis - ax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi]) - ax2.set_xticklabels(["0", r"$\frac{1}{2}\pi$", - r"$\pi$", r"$\frac{3}{2}\pi$", r"$2\pi$"]) - - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axisline4_001.png - :target: ../../gallery/axes_grid1/simple_axisline4.html - :align: center - :scale: 50 - - Simple Axisline4 - - - -A more sophisticated example using twin. Note that if you change the -x-limit in the host axes, the x-limit of the parasite axes will change -accordingly. - - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_parasite_simple2_001.png - :target: ../../gallery/axes_grid1/parasite_simple2.html - :align: center - :scale: 50 - - Parasite Simple2 - - -AnchoredArtists ---------------- - -It's a collection of artists whose location is anchored to the (axes) -bbox, like the legend. It is derived from *OffsetBox* in mpl, and -artist need to be drawn in the canvas coordinate. But, there is a -limited support for an arbitrary transform. For example, the ellipse -in the example below will have width and height in the data -coordinate. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_anchored_artists_001.png - :target: ../../gallery/axes_grid1/simple_anchored_artists.html - :align: center - :scale: 50 - - Simple Anchored Artists - - -InsetLocator ------------- - -:mod:`mpl_toolkits.axes_grid1.inset_locator` provides helper classes -and functions to place your (inset) axes at the anchored position of -the parent axes, similarly to AnchoredArtist. - -Using :func:`mpl_toolkits.axes_grid1.inset_locator.inset_axes`, you -can have inset axes whose size is either fixed, or a fixed proportion -of the parent axes. For example,:: - - inset_axes = inset_axes(parent_axes, - width="30%", # width = 30% of parent_bbox - height=1., # height : 1 inch - loc='lower left') - -creates an inset axes whose width is 30% of the parent axes and whose -height is fixed at 1 inch. - -You may creates your inset whose size is determined so that the data -scale of the inset axes to be that of the parent axes multiplied by -some factor. For example, :: - - inset_axes = zoomed_inset_axes(ax, - 0.5, # zoom = 0.5 - loc='upper right') - -creates an inset axes whose data scale is half of the parent axes. -Here is complete examples. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo_001.png - :target: ../../gallery/axes_grid1/inset_locator_demo.html - :align: center - :scale: 50 - - Inset Locator Demo - -For example, :func:`zoomed_inset_axes` can be used when you want the -inset represents the zoom-up of the small portion in the parent axes. -And :mod:`~mpl_toolkits/axes_grid/inset_locator` provides a helper -function :func:`mark_inset` to mark the location of the area -represented by the inset axes. - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_inset_locator_demo2_001.png - :target: ../../gallery/axes_grid1/inset_locator_demo2.html - :align: center - :scale: 50 - - Inset Locator Demo2 - - -RGB Axes -~~~~~~~~ - -RGBAxes is a helper class to conveniently show RGB composite -images. Like ImageGrid, the location of axes are adjusted so that the -area occupied by them fits in a given rectangle. Also, the xaxis and -yaxis of each axes are shared. :: - - from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes - - fig = plt.figure() - ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8]) - - r, g, b = get_rgb() # r,g,b are 2-d images - ax.imshow_rgb(r, g, b, - origin="lower", interpolation="nearest") - - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_rgb_001.png - :target: ../../gallery/axes_grid1/simple_rgb.html - :align: center - :scale: 50 - - Simple Rgb - - -AxesDivider -=========== - -The axes_divider module provides helper classes to adjust the axes -positions of a set of images at drawing time. - -* :mod:`~mpl_toolkits.axes_grid1.axes_size` provides a class of - units that are used to determine the size of each axes. For example, - you can specify a fixed size. - -* :class:`~mpl_toolkits.axes_grid1.axes_size.Divider` is the class - that calculates the axes position. It divides the given - rectangular area into several areas. The divider is initialized by - setting the lists of horizontal and vertical sizes on which the division - will be based. Then use - :meth:`~mpl_toolkits.axes_grid1.axes_size.Divider.new_locator`, - which returns a callable object that can be used to set the - axes_locator of the axes. - - -First, initialize the divider by specifying its grids, i.e., -horizontal and vertical. - -for example,:: - - rect = [0.2, 0.2, 0.6, 0.6] - horiz=[h0, h1, h2, h3] - vert=[v0, v1, v2] - divider = Divider(fig, rect, horiz, vert) - -where, rect is a bounds of the box that will be divided and h0,..h3, -v0,..v2 need to be an instance of classes in the -:mod:`~mpl_toolkits.axes_grid1.axes_size`. They have *get_size* method -that returns a tuple of two floats. The first float is the relative -size, and the second float is the absolute size. Consider a following -grid. - -+-----+-----+-----+-----+ -| v0 | | | | -+-----+-----+-----+-----+ -| v1 | | | | -+-----+-----+-----+-----+ -|h0,v2| h1 | h2 | h3 | -+-----+-----+-----+-----+ - - -* v0 => 0, 2 -* v1 => 2, 0 -* v2 => 3, 0 - -The height of the bottom row is always 2 (axes_divider internally -assumes that the unit is inches). The first and the second rows have a -height ratio of 2:3. For example, if the total height of the grid is 6, -then the first and second row will each occupy 2/(2+3) and 3/(2+3) of -(6-1) inches. The widths of the horizontal columns will be similarly -determined. When the aspect ratio is set, the total height (or width) will -be adjusted accordingly. - - -The :mod:`mpl_toolkits.axes_grid1.axes_size` contains several classes -that can be used to set the horizontal and vertical configurations. For -example, for vertical configuration one could use:: - - from mpl_toolkits.axes_grid1.axes_size import Fixed, Scaled - vert = [Fixed(2), Scaled(2), Scaled(3)] - -After you set up the divider object, then you create a locator -instance that will be given to the axes object.:: - - locator = divider.new_locator(nx=0, ny=1) - ax.set_axes_locator(locator) - -The return value of the new_locator method is an instance of the -AxesLocator class. It is a callable object that returns the -location and size of the cell at the first column and the second row. -You may create a locator that spans over multiple cells.:: - - locator = divider.new_locator(nx=0, nx=2, ny=1) - -The above locator, when called, will return the position and size of -the cells spanning the first and second column and the first row. In -this example, it will return [0:2, 1]. - -See the example, - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider2_001.png - :target: ../../gallery/axes_grid1/simple_axes_divider2.html - :align: center - :scale: 50 - - Simple Axes Divider2 - -You can adjust the size of each axes according to its x or y -data limits (AxesX and AxesY). - -.. figure:: ../../gallery/axes_grid1/images/sphx_glr_simple_axes_divider3_001.png - :target: ../../gallery/axes_grid1/simple_axes_divider3.html - :align: center - :scale: 50 - - Simple Axes Divider3 -""" diff --git a/_downloads/cc48d3d83de552bc27d96f2d9f32d599/pgf_preamble_sgskip.py b/_downloads/cc48d3d83de552bc27d96f2d9f32d599/pgf_preamble_sgskip.py deleted file mode 120000 index f8fadf3f159..00000000000 --- a/_downloads/cc48d3d83de552bc27d96f2d9f32d599/pgf_preamble_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cc48d3d83de552bc27d96f2d9f32d599/pgf_preamble_sgskip.py \ No newline at end of file diff --git a/_downloads/cc49ae1a59d0f768e7cdafaedc4e2685/gridspec_nested.ipynb b/_downloads/cc49ae1a59d0f768e7cdafaedc4e2685/gridspec_nested.ipynb deleted file mode 120000 index a1e4eb8d9d0..00000000000 --- a/_downloads/cc49ae1a59d0f768e7cdafaedc4e2685/gridspec_nested.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cc49ae1a59d0f768e7cdafaedc4e2685/gridspec_nested.ipynb \ No newline at end of file diff --git a/_downloads/cc4e36bfe238f043e60002b4c16370c6/arrow_demo.ipynb b/_downloads/cc4e36bfe238f043e60002b4c16370c6/arrow_demo.ipynb deleted file mode 120000 index e0ffb960666..00000000000 --- a/_downloads/cc4e36bfe238f043e60002b4c16370c6/arrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cc4e36bfe238f043e60002b4c16370c6/arrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/cc64fa071716ecd614ef5a2043e1193e/simple_legend02.ipynb b/_downloads/cc64fa071716ecd614ef5a2043e1193e/simple_legend02.ipynb deleted file mode 100644 index 7b8da88819a..00000000000 --- a/_downloads/cc64fa071716ecd614ef5a2043e1193e/simple_legend02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Legend02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nline1, = ax.plot([1, 2, 3], label=\"Line 1\", linestyle='--')\nline2, = ax.plot([3, 2, 1], label=\"Line 2\", linewidth=4)\n\n# Create a legend for the first line.\nfirst_legend = ax.legend(handles=[line1], loc='upper right')\n\n# Add the legend manually to the current Axes.\nax.add_artist(first_legend)\n\n# Create another legend for the second line.\nax.legend(handles=[line2], loc='lower right')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cc92ad9592331cf92f73f829cda2aee8/simple_annotate01.py b/_downloads/cc92ad9592331cf92f73f829cda2aee8/simple_annotate01.py deleted file mode 120000 index d0b46585c6c..00000000000 --- a/_downloads/cc92ad9592331cf92f73f829cda2aee8/simple_annotate01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc92ad9592331cf92f73f829cda2aee8/simple_annotate01.py \ No newline at end of file diff --git a/_downloads/cc966ab50884aa7555a9dbfcce01bba8/web_application_server_sgskip.ipynb b/_downloads/cc966ab50884aa7555a9dbfcce01bba8/web_application_server_sgskip.ipynb deleted file mode 120000 index 62ef98e7f5e..00000000000 --- a/_downloads/cc966ab50884aa7555a9dbfcce01bba8/web_application_server_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cc966ab50884aa7555a9dbfcce01bba8/web_application_server_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/cc975bc8e4cfa4eee662972860623390/simple_legend01.ipynb b/_downloads/cc975bc8e4cfa4eee662972860623390/simple_legend01.ipynb deleted file mode 100644 index ef063d0bd0b..00000000000 --- a/_downloads/cc975bc8e4cfa4eee662972860623390/simple_legend01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Legend01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nplt.subplot(211)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n# Place a legend above this subplot, expanding itself to\n# fully use the given bounding box.\nplt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left',\n ncol=2, mode=\"expand\", borderaxespad=0.)\n\nplt.subplot(223)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n# Place a legend to the right of this smaller subplot.\nplt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cc97d3ff8fd13a81dd9d07d25068a739/image_annotated_heatmap.ipynb b/_downloads/cc97d3ff8fd13a81dd9d07d25068a739/image_annotated_heatmap.ipynb deleted file mode 120000 index 2f694536c21..00000000000 --- a/_downloads/cc97d3ff8fd13a81dd9d07d25068a739/image_annotated_heatmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cc97d3ff8fd13a81dd9d07d25068a739/image_annotated_heatmap.ipynb \ No newline at end of file diff --git a/_downloads/cc9841a92aff6eee951f0d677fa728f9/affine_image.py b/_downloads/cc9841a92aff6eee951f0d677fa728f9/affine_image.py deleted file mode 120000 index ef013c0bd46..00000000000 --- a/_downloads/cc9841a92aff6eee951f0d677fa728f9/affine_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cc9841a92aff6eee951f0d677fa728f9/affine_image.py \ No newline at end of file diff --git a/_downloads/cc9885ce5dbeeab12432b33a0d82e578/demo_colorbar_of_inset_axes.py b/_downloads/cc9885ce5dbeeab12432b33a0d82e578/demo_colorbar_of_inset_axes.py deleted file mode 120000 index 445b5fd0934..00000000000 --- a/_downloads/cc9885ce5dbeeab12432b33a0d82e578/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cc9885ce5dbeeab12432b33a0d82e578/demo_colorbar_of_inset_axes.py \ No newline at end of file diff --git a/_downloads/cc99ccef816e82b016c47cc8f025e9ac/contourf3d_2.py b/_downloads/cc99ccef816e82b016c47cc8f025e9ac/contourf3d_2.py deleted file mode 100644 index b76c77d57b9..00000000000 --- a/_downloads/cc99ccef816e82b016c47cc8f025e9ac/contourf3d_2.py +++ /dev/null @@ -1,38 +0,0 @@ -''' -====================================== -Projecting filled contour onto a graph -====================================== - -Demonstrates displaying a 3D surface while also projecting filled contour -'profiles' onto the 'walls' of the graph. - -See contour3d_demo2 for the unfilled version. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot the 3D surface -ax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3) - -# Plot projections of the contours for each dimension. By choosing offsets -# that match the appropriate axes limits, the projected contours will sit on -# the 'walls' of the graph -cset = ax.contourf(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm) -cset = ax.contourf(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm) -cset = ax.contourf(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm) - -ax.set_xlim(-40, 40) -ax.set_ylim(-40, 40) -ax.set_zlim(-100, 100) - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -plt.show() diff --git a/_downloads/cc9be43389d684197161e28d85b5c09a/titles_demo.py b/_downloads/cc9be43389d684197161e28d85b5c09a/titles_demo.py deleted file mode 120000 index 012f33896fd..00000000000 --- a/_downloads/cc9be43389d684197161e28d85b5c09a/titles_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cc9be43389d684197161e28d85b5c09a/titles_demo.py \ No newline at end of file diff --git a/_downloads/cca5744cf245be48192ddbb97678f25e/image_annotated_heatmap.ipynb b/_downloads/cca5744cf245be48192ddbb97678f25e/image_annotated_heatmap.ipynb deleted file mode 120000 index e1d8cea21a6..00000000000 --- a/_downloads/cca5744cf245be48192ddbb97678f25e/image_annotated_heatmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cca5744cf245be48192ddbb97678f25e/image_annotated_heatmap.ipynb \ No newline at end of file diff --git a/_downloads/ccb41fb8b32e1fa15ca039a7877b3f49/plot_streamplot.py b/_downloads/ccb41fb8b32e1fa15ca039a7877b3f49/plot_streamplot.py deleted file mode 120000 index 05ac5661e0e..00000000000 --- a/_downloads/ccb41fb8b32e1fa15ca039a7877b3f49/plot_streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ccb41fb8b32e1fa15ca039a7877b3f49/plot_streamplot.py \ No newline at end of file diff --git a/_downloads/ccc7b61dd46dd3085b0e79456ad181fd/histogram_histtypes.ipynb b/_downloads/ccc7b61dd46dd3085b0e79456ad181fd/histogram_histtypes.ipynb deleted file mode 120000 index 61e97dccbc3..00000000000 --- a/_downloads/ccc7b61dd46dd3085b0e79456ad181fd/histogram_histtypes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ccc7b61dd46dd3085b0e79456ad181fd/histogram_histtypes.ipynb \ No newline at end of file diff --git a/_downloads/ccd61beeedafcda3efc12672963d956e/hat_graph.ipynb b/_downloads/ccd61beeedafcda3efc12672963d956e/hat_graph.ipynb deleted file mode 120000 index e2c4cb4ddec..00000000000 --- a/_downloads/ccd61beeedafcda3efc12672963d956e/hat_graph.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ccd61beeedafcda3efc12672963d956e/hat_graph.ipynb \ No newline at end of file diff --git a/_downloads/ccd74b035d9ad8dfe4110ae637cb61a6/artists.ipynb b/_downloads/ccd74b035d9ad8dfe4110ae637cb61a6/artists.ipynb deleted file mode 120000 index b842e091be9..00000000000 --- a/_downloads/ccd74b035d9ad8dfe4110ae637cb61a6/artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ccd74b035d9ad8dfe4110ae637cb61a6/artists.ipynb \ No newline at end of file diff --git a/_downloads/ccefa18b329266fcb084a1e6bb4f1dfd/anscombe.ipynb b/_downloads/ccefa18b329266fcb084a1e6bb4f1dfd/anscombe.ipynb deleted file mode 120000 index af574e92553..00000000000 --- a/_downloads/ccefa18b329266fcb084a1e6bb4f1dfd/anscombe.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ccefa18b329266fcb084a1e6bb4f1dfd/anscombe.ipynb \ No newline at end of file diff --git a/_downloads/ccefc8601bbbf574a73b3341b9e61c16/connectionstyle_demo.py b/_downloads/ccefc8601bbbf574a73b3341b9e61c16/connectionstyle_demo.py deleted file mode 100644 index d429822b696..00000000000 --- a/_downloads/ccefc8601bbbf574a73b3341b9e61c16/connectionstyle_demo.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -==================== -Connectionstyle Demo -==================== - -When creating an annotation using `~.Axes.annotate`, the arrow shape can be -controlled via the *connectionstyle* parameter of *arrowprops*. For further -details see the description of `.FancyArrowPatch`. -""" - -import matplotlib.pyplot as plt - - -def demo_con_style(ax, connectionstyle): - x1, y1 = 0.3, 0.2 - x2, y2 = 0.8, 0.6 - - ax.plot([x1, x2], [y1, y2], ".") - ax.annotate("", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='data', - arrowprops=dict(arrowstyle="->", color="0.5", - shrinkA=5, shrinkB=5, - patchA=None, patchB=None, - connectionstyle=connectionstyle, - ), - ) - - ax.text(.05, .95, connectionstyle.replace(",", ",\n"), - transform=ax.transAxes, ha="left", va="top") - - -fig, axs = plt.subplots(3, 5, figsize=(8, 4.8)) -demo_con_style(axs[0, 0], "angle3,angleA=90,angleB=0") -demo_con_style(axs[1, 0], "angle3,angleA=0,angleB=90") -demo_con_style(axs[0, 1], "arc3,rad=0.") -demo_con_style(axs[1, 1], "arc3,rad=0.3") -demo_con_style(axs[2, 1], "arc3,rad=-0.3") -demo_con_style(axs[0, 2], "angle,angleA=-90,angleB=180,rad=0") -demo_con_style(axs[1, 2], "angle,angleA=-90,angleB=180,rad=5") -demo_con_style(axs[2, 2], "angle,angleA=-90,angleB=10,rad=5") -demo_con_style(axs[0, 3], "arc,angleA=-90,angleB=0,armA=30,armB=30,rad=0") -demo_con_style(axs[1, 3], "arc,angleA=-90,angleB=0,armA=30,armB=30,rad=5") -demo_con_style(axs[2, 3], "arc,angleA=-90,angleB=0,armA=0,armB=40,rad=0") -demo_con_style(axs[0, 4], "bar,fraction=0.3") -demo_con_style(axs[1, 4], "bar,fraction=-0.3") -demo_con_style(axs[2, 4], "bar,angle=180,fraction=-0.2") - -for ax in axs.flat: - ax.set(xlim=(0, 1), ylim=(0, 1), xticks=[], yticks=[], aspect=1) -fig.tight_layout(pad=0.2) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.annotate -matplotlib.patches.FancyArrowPatch diff --git a/_downloads/ccf07aff2a0406ca2deb20bef2855bf0/simple_axis_pad.ipynb b/_downloads/ccf07aff2a0406ca2deb20bef2855bf0/simple_axis_pad.ipynb deleted file mode 120000 index fe9c282a86e..00000000000 --- a/_downloads/ccf07aff2a0406ca2deb20bef2855bf0/simple_axis_pad.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ccf07aff2a0406ca2deb20bef2855bf0/simple_axis_pad.ipynb \ No newline at end of file diff --git a/_downloads/ccf89cfb51613e00650f1384502e62d7/annotate_with_units.py b/_downloads/ccf89cfb51613e00650f1384502e62d7/annotate_with_units.py deleted file mode 100644 index cd4e47ddaf1..00000000000 --- a/_downloads/ccf89cfb51613e00650f1384502e62d7/annotate_with_units.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -===================== -Annotation with units -===================== - -The example illustrates how to create text and arrow -annotations using a centimeter-scale plot. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" - -import matplotlib.pyplot as plt -from basic_units import cm - -fig, ax = plt.subplots() - -ax.annotate("Note 01", [0.5*cm, 0.5*cm]) - -# xy and text both unitized -ax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data', - xytext=(0.8*cm, 0.95*cm), textcoords='data', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top') - -# mixing units w/ nonunits -ax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data', - xytext=(0.8, 0.95), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top') - - -ax.set_xlim(0*cm, 4*cm) -ax.set_ylim(0*cm, 4*cm) -plt.show() diff --git a/_downloads/ccfef24fc41c87653177bed5506f74f8/markevery_prop_cycle.py b/_downloads/ccfef24fc41c87653177bed5506f74f8/markevery_prop_cycle.py deleted file mode 120000 index f42267475f8..00000000000 --- a/_downloads/ccfef24fc41c87653177bed5506f74f8/markevery_prop_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ccfef24fc41c87653177bed5506f74f8/markevery_prop_cycle.py \ No newline at end of file diff --git a/_downloads/cd00562b4ba6e2165f4af4827c6219c9/trigradient_demo.py b/_downloads/cd00562b4ba6e2165f4af4827c6219c9/trigradient_demo.py deleted file mode 100644 index d1120ebf59b..00000000000 --- a/_downloads/cd00562b4ba6e2165f4af4827c6219c9/trigradient_demo.py +++ /dev/null @@ -1,111 +0,0 @@ -""" -================ -Trigradient Demo -================ - -Demonstrates computation of gradient with -`matplotlib.tri.CubicTriInterpolator`. -""" -from matplotlib.tri import ( - Triangulation, UniformTriRefiner, CubicTriInterpolator) -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import numpy as np - - -#----------------------------------------------------------------------------- -# Electrical potential of a dipole -#----------------------------------------------------------------------------- -def dipole_potential(x, y): - """The electric dipole potential V, at position *x*, *y*.""" - r_sq = x**2 + y**2 - theta = np.arctan2(y, x) - z = np.cos(theta)/r_sq - return (np.max(z) - z) / (np.max(z) - np.min(z)) - - -#----------------------------------------------------------------------------- -# Creating a Triangulation -#----------------------------------------------------------------------------- -# First create the x and y coordinates of the points. -n_angles = 30 -n_radii = 10 -min_radius = 0.2 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -V = dipole_potential(x, y) - -# Create the Triangulation; no triangles specified so Delaunay triangulation -# created. -triang = Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -#----------------------------------------------------------------------------- -# Refine data - interpolates the electrical potential V -#----------------------------------------------------------------------------- -refiner = UniformTriRefiner(triang) -tri_refi, z_test_refi = refiner.refine_field(V, subdiv=3) - -#----------------------------------------------------------------------------- -# Computes the electrical field (Ex, Ey) as gradient of electrical potential -#----------------------------------------------------------------------------- -tci = CubicTriInterpolator(triang, -V) -# Gradient requested here at the mesh nodes but could be anywhere else: -(Ex, Ey) = tci.gradient(triang.x, triang.y) -E_norm = np.sqrt(Ex**2 + Ey**2) - -#----------------------------------------------------------------------------- -# Plot the triangulation, the potential iso-contours and the vector field -#----------------------------------------------------------------------------- -fig, ax = plt.subplots() -ax.set_aspect('equal') -# Enforce the margins, and enlarge them to give room for the vectors. -ax.use_sticky_edges = False -ax.margins(0.07) - -ax.triplot(triang, color='0.8') - -levels = np.arange(0., 1., 0.01) -cmap = cm.get_cmap(name='hot', lut=None) -ax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap, - linewidths=[2.0, 1.0, 1.0, 1.0]) -# Plots direction of the electrical vector field -ax.quiver(triang.x, triang.y, Ex/E_norm, Ey/E_norm, - units='xy', scale=10., zorder=3, color='blue', - width=0.007, headwidth=3., headlength=4.) - -ax.set_title('Gradient plot: an electrical dipole') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.tri -matplotlib.tri.Triangulation -matplotlib.tri.CubicTriInterpolator -matplotlib.tri.CubicTriInterpolator.gradient -matplotlib.tri.UniformTriRefiner -matplotlib.axes.Axes.quiver -matplotlib.pyplot.quiver diff --git a/_downloads/cd061ed36b7ea2e5573b5fa17522a1c8/pie_demo2.ipynb b/_downloads/cd061ed36b7ea2e5573b5fa17522a1c8/pie_demo2.ipynb deleted file mode 120000 index bba16d08768..00000000000 --- a/_downloads/cd061ed36b7ea2e5573b5fa17522a1c8/pie_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cd061ed36b7ea2e5573b5fa17522a1c8/pie_demo2.ipynb \ No newline at end of file diff --git a/_downloads/cd0804205e1e7a7dc38d09727568e16d/menu.py b/_downloads/cd0804205e1e7a7dc38d09727568e16d/menu.py deleted file mode 120000 index 11a1cbbecbd..00000000000 --- a/_downloads/cd0804205e1e7a7dc38d09727568e16d/menu.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cd0804205e1e7a7dc38d09727568e16d/menu.py \ No newline at end of file diff --git a/_downloads/cd19598844ea7b33e3cd5eed88f45e8e/dashpointlabel.ipynb b/_downloads/cd19598844ea7b33e3cd5eed88f45e8e/dashpointlabel.ipynb deleted file mode 120000 index 61ada42a8fb..00000000000 --- a/_downloads/cd19598844ea7b33e3cd5eed88f45e8e/dashpointlabel.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cd19598844ea7b33e3cd5eed88f45e8e/dashpointlabel.ipynb \ No newline at end of file diff --git a/_downloads/cd37bda336bd8e6fa6215f9d9f2b7741/annotate_simple02.ipynb b/_downloads/cd37bda336bd8e6fa6215f9d9f2b7741/annotate_simple02.ipynb deleted file mode 120000 index a940cb33afc..00000000000 --- a/_downloads/cd37bda336bd8e6fa6215f9d9f2b7741/annotate_simple02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cd37bda336bd8e6fa6215f9d9f2b7741/annotate_simple02.ipynb \ No newline at end of file diff --git a/_downloads/cd4009f307acd22677fd08fabb110c67/polar_scatter.py b/_downloads/cd4009f307acd22677fd08fabb110c67/polar_scatter.py deleted file mode 120000 index 84191018681..00000000000 --- a/_downloads/cd4009f307acd22677fd08fabb110c67/polar_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cd4009f307acd22677fd08fabb110c67/polar_scatter.py \ No newline at end of file diff --git a/_downloads/cd42db0ead4c2c8ef060303377b9fc35/tricontourf3d.ipynb b/_downloads/cd42db0ead4c2c8ef060303377b9fc35/tricontourf3d.ipynb deleted file mode 120000 index b3b48220fec..00000000000 --- a/_downloads/cd42db0ead4c2c8ef060303377b9fc35/tricontourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cd42db0ead4c2c8ef060303377b9fc35/tricontourf3d.ipynb \ No newline at end of file diff --git a/_downloads/cd48a560b699c4824edccf1e38240610/simple_axisline2.py b/_downloads/cd48a560b699c4824edccf1e38240610/simple_axisline2.py deleted file mode 120000 index 340fc95c26c..00000000000 --- a/_downloads/cd48a560b699c4824edccf1e38240610/simple_axisline2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cd48a560b699c4824edccf1e38240610/simple_axisline2.py \ No newline at end of file diff --git a/_downloads/cd4ac3f2574057d1f8e52b7ec75d7a07/line_with_text.ipynb b/_downloads/cd4ac3f2574057d1f8e52b7ec75d7a07/line_with_text.ipynb deleted file mode 100644 index baffe8651db..00000000000 --- a/_downloads/cd4ac3f2574057d1f8e52b7ec75d7a07/line_with_text.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Artist within an artist\n\n\nOverride basic methods so an artist can contain another\nartist. In this case, the line contains a Text instance to label it.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.lines as lines\nimport matplotlib.transforms as mtransforms\nimport matplotlib.text as mtext\n\n\nclass MyLine(lines.Line2D):\n def __init__(self, *args, **kwargs):\n # we'll update the position when the line data is set\n self.text = mtext.Text(0, 0, '')\n lines.Line2D.__init__(self, *args, **kwargs)\n\n # we can't access the label attr until *after* the line is\n # initiated\n self.text.set_text(self.get_label())\n\n def set_figure(self, figure):\n self.text.set_figure(figure)\n lines.Line2D.set_figure(self, figure)\n\n def set_axes(self, axes):\n self.text.set_axes(axes)\n lines.Line2D.set_axes(self, axes)\n\n def set_transform(self, transform):\n # 2 pixel offset\n texttrans = transform + mtransforms.Affine2D().translate(2, 2)\n self.text.set_transform(texttrans)\n lines.Line2D.set_transform(self, transform)\n\n def set_data(self, x, y):\n if len(x):\n self.text.set_position((x[-1], y[-1]))\n\n lines.Line2D.set_data(self, x, y)\n\n def draw(self, renderer):\n # draw my label at the end of the line with 2 pixel offset\n lines.Line2D.draw(self, renderer)\n self.text.draw(renderer)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nx, y = np.random.rand(2, 20)\nline = MyLine(x, y, mfc='red', ms=12, label='line label')\n#line.text.set_text('line label')\nline.text.set_color('red')\nline.text.set_fontsize(16)\n\nax.add_line(line)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.lines\nmatplotlib.lines.Line2D\nmatplotlib.lines.Line2D.set_data\nmatplotlib.artist\nmatplotlib.artist.Artist\nmatplotlib.artist.Artist.draw\nmatplotlib.artist.Artist.set_transform\nmatplotlib.text\nmatplotlib.text.Text\nmatplotlib.text.Text.set_color\nmatplotlib.text.Text.set_fontsize\nmatplotlib.text.Text.set_position\nmatplotlib.axes.Axes.add_line\nmatplotlib.transforms\nmatplotlib.transforms.Affine2D" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cd52a2b2e531387f161f5c4a3b083376/autowrap.ipynb b/_downloads/cd52a2b2e531387f161f5c4a3b083376/autowrap.ipynb deleted file mode 100644 index 0705556eb9f..00000000000 --- a/_downloads/cd52a2b2e531387f161f5c4a3b083376/autowrap.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Auto-wrapping text\n\n\nMatplotlib can wrap text automatically, but if it's too long, the text will be\ndisplayed slightly outside of the boundaries of the axis anyways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig = plt.figure()\nplt.axis([0, 10, 0, 10])\nt = (\"This is a really long string that I'd rather have wrapped so that it \"\n \"doesn't go outside of the figure, but if it's long enough it will go \"\n \"off the top or bottom!\")\nplt.text(4, 1, t, ha='left', rotation=15, wrap=True)\nplt.text(6, 5, t, ha='left', rotation=15, wrap=True)\nplt.text(5, 5, t, ha='right', rotation=-15, wrap=True)\nplt.text(5, 10, t, fontsize=18, style='oblique', ha='center',\n va='top', wrap=True)\nplt.text(3, 4, t, family='serif', style='italic', ha='right', wrap=True)\nplt.text(-1, 0, t, ha='left', rotation=-15, wrap=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cd5300369704ca04872099e2c7d559bb/wire3d.ipynb b/_downloads/cd5300369704ca04872099e2c7d559bb/wire3d.ipynb deleted file mode 120000 index 275c5838120..00000000000 --- a/_downloads/cd5300369704ca04872099e2c7d559bb/wire3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cd5300369704ca04872099e2c7d559bb/wire3d.ipynb \ No newline at end of file diff --git a/_downloads/cd592debcb1f3021e9a685b0fa79a19a/linestyles.py b/_downloads/cd592debcb1f3021e9a685b0fa79a19a/linestyles.py deleted file mode 120000 index 4edb515b134..00000000000 --- a/_downloads/cd592debcb1f3021e9a685b0fa79a19a/linestyles.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cd592debcb1f3021e9a685b0fa79a19a/linestyles.py \ No newline at end of file diff --git a/_downloads/cd707a2e547f9c5cc37d8223347217a1/textbox.ipynb b/_downloads/cd707a2e547f9c5cc37d8223347217a1/textbox.ipynb deleted file mode 100644 index ecc32592832..00000000000 --- a/_downloads/cd707a2e547f9c5cc37d8223347217a1/textbox.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Textbox\n\n\nAllowing text input with the Textbox widget.\n\nYou can use the Textbox widget to let users provide any text that needs to be\ndisplayed, including formulas. You can use a submit button to create plots\nwith the given input.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import TextBox\nfig, ax = plt.subplots()\nplt.subplots_adjust(bottom=0.2)\nt = np.arange(-2.0, 2.0, 0.001)\ns = t ** 2\ninitial_text = \"t ** 2\"\nl, = plt.plot(t, s, lw=2)\n\n\ndef submit(text):\n ydata = eval(text)\n l.set_ydata(ydata)\n ax.set_ylim(np.min(ydata), np.max(ydata))\n plt.draw()\n\naxbox = plt.axes([0.1, 0.05, 0.8, 0.075])\ntext_box = TextBox(axbox, 'Evaluate', initial=initial_text)\ntext_box.on_submit(submit)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cd7200300c2fd320cf2f89ab4f89f6d5/violinplot.ipynb b/_downloads/cd7200300c2fd320cf2f89ab4f89f6d5/violinplot.ipynb deleted file mode 120000 index 15c59c31bf4..00000000000 --- a/_downloads/cd7200300c2fd320cf2f89ab4f89f6d5/violinplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cd7200300c2fd320cf2f89ab4f89f6d5/violinplot.ipynb \ No newline at end of file diff --git a/_downloads/cd86d8ccb8b6062345c259efc9f8ace9/date.ipynb b/_downloads/cd86d8ccb8b6062345c259efc9f8ace9/date.ipynb deleted file mode 120000 index e6f94aed69b..00000000000 --- a/_downloads/cd86d8ccb8b6062345c259efc9f8ace9/date.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cd86d8ccb8b6062345c259efc9f8ace9/date.ipynb \ No newline at end of file diff --git a/_downloads/cd8bdae3ff99c0f90871f190c7a6c13f/image_annotated_heatmap.py b/_downloads/cd8bdae3ff99c0f90871f190c7a6c13f/image_annotated_heatmap.py deleted file mode 100644 index 077e8460cb2..00000000000 --- a/_downloads/cd8bdae3ff99c0f90871f190c7a6c13f/image_annotated_heatmap.py +++ /dev/null @@ -1,320 +0,0 @@ -""" -=========================== -Creating annotated heatmaps -=========================== - -It is often desirable to show data which depends on two independent -variables as a color coded image plot. This is often referred to as a -heatmap. If the data is categorical, this would be called a categorical -heatmap. -Matplotlib's :meth:`imshow ` function makes -production of such plots particularly easy. - -The following examples show how to create a heatmap with annotations. -We will start with an easy example and expand it to be usable as a -universal function. -""" - - -############################################################################## -# -# A simple categorical heatmap -# ---------------------------- -# -# We may start by defining some data. What we need is a 2D list or array -# which defines the data to color code. We then also need two lists or arrays -# of categories; of course the number of elements in those lists -# need to match the data along the respective axes. -# The heatmap itself is an :meth:`imshow ` plot -# with the labels set to the categories we have. -# Note that it is important to set both, the tick locations -# (:meth:`set_xticks`) as well as the -# tick labels (:meth:`set_xticklabels`), -# otherwise they would become out of sync. The locations are just -# the ascending integer numbers, while the ticklabels are the labels to show. -# Finally we can label the data itself by creating a -# :class:`~matplotlib.text.Text` within each cell showing the value of -# that cell. - - -import numpy as np -import matplotlib -import matplotlib.pyplot as plt -# sphinx_gallery_thumbnail_number = 2 - -vegetables = ["cucumber", "tomato", "lettuce", "asparagus", - "potato", "wheat", "barley"] -farmers = ["Farmer Joe", "Upland Bros.", "Smith Gardening", - "Agrifun", "Organiculture", "BioGoods Ltd.", "Cornylee Corp."] - -harvest = np.array([[0.8, 2.4, 2.5, 3.9, 0.0, 4.0, 0.0], - [2.4, 0.0, 4.0, 1.0, 2.7, 0.0, 0.0], - [1.1, 2.4, 0.8, 4.3, 1.9, 4.4, 0.0], - [0.6, 0.0, 0.3, 0.0, 3.1, 0.0, 0.0], - [0.7, 1.7, 0.6, 2.6, 2.2, 6.2, 0.0], - [1.3, 1.2, 0.0, 0.0, 0.0, 3.2, 5.1], - [0.1, 2.0, 0.0, 1.4, 0.0, 1.9, 6.3]]) - - -fig, ax = plt.subplots() -im = ax.imshow(harvest) - -# We want to show all ticks... -ax.set_xticks(np.arange(len(farmers))) -ax.set_yticks(np.arange(len(vegetables))) -# ... and label them with the respective list entries -ax.set_xticklabels(farmers) -ax.set_yticklabels(vegetables) - -# Rotate the tick labels and set their alignment. -plt.setp(ax.get_xticklabels(), rotation=45, ha="right", - rotation_mode="anchor") - -# Loop over data dimensions and create text annotations. -for i in range(len(vegetables)): - for j in range(len(farmers)): - text = ax.text(j, i, harvest[i, j], - ha="center", va="center", color="w") - -ax.set_title("Harvest of local farmers (in tons/year)") -fig.tight_layout() -plt.show() - - -############################################################################# -# Using the helper function code style -# ------------------------------------ -# -# As discussed in the :ref:`Coding styles ` -# one might want to reuse such code to create some kind of heatmap -# for different input data and/or on different axes. -# We create a function that takes the data and the row and column labels as -# input, and allows arguments that are used to customize the plot -# -# Here, in addition to the above we also want to create a colorbar and -# position the labels above of the heatmap instead of below it. -# The annotations shall get different colors depending on a threshold -# for better contrast against the pixel color. -# Finally, we turn the surrounding axes spines off and create -# a grid of white lines to separate the cells. - - -def heatmap(data, row_labels, col_labels, ax=None, - cbar_kw={}, cbarlabel="", **kwargs): - """ - Create a heatmap from a numpy array and two lists of labels. - - Parameters - ---------- - data - A 2D numpy array of shape (N, M). - row_labels - A list or array of length N with the labels for the rows. - col_labels - A list or array of length M with the labels for the columns. - ax - A `matplotlib.axes.Axes` instance to which the heatmap is plotted. If - not provided, use current axes or create a new one. Optional. - cbar_kw - A dictionary with arguments to `matplotlib.Figure.colorbar`. Optional. - cbarlabel - The label for the colorbar. Optional. - **kwargs - All other arguments are forwarded to `imshow`. - """ - - if not ax: - ax = plt.gca() - - # Plot the heatmap - im = ax.imshow(data, **kwargs) - - # Create colorbar - cbar = ax.figure.colorbar(im, ax=ax, **cbar_kw) - cbar.ax.set_ylabel(cbarlabel, rotation=-90, va="bottom") - - # We want to show all ticks... - ax.set_xticks(np.arange(data.shape[1])) - ax.set_yticks(np.arange(data.shape[0])) - # ... and label them with the respective list entries. - ax.set_xticklabels(col_labels) - ax.set_yticklabels(row_labels) - - # Let the horizontal axes labeling appear on top. - ax.tick_params(top=True, bottom=False, - labeltop=True, labelbottom=False) - - # Rotate the tick labels and set their alignment. - plt.setp(ax.get_xticklabels(), rotation=-30, ha="right", - rotation_mode="anchor") - - # Turn spines off and create white grid. - for edge, spine in ax.spines.items(): - spine.set_visible(False) - - ax.set_xticks(np.arange(data.shape[1]+1)-.5, minor=True) - ax.set_yticks(np.arange(data.shape[0]+1)-.5, minor=True) - ax.grid(which="minor", color="w", linestyle='-', linewidth=3) - ax.tick_params(which="minor", bottom=False, left=False) - - return im, cbar - - -def annotate_heatmap(im, data=None, valfmt="{x:.2f}", - textcolors=["black", "white"], - threshold=None, **textkw): - """ - A function to annotate a heatmap. - - Parameters - ---------- - im - The AxesImage to be labeled. - data - Data used to annotate. If None, the image's data is used. Optional. - valfmt - The format of the annotations inside the heatmap. This should either - use the string format method, e.g. "$ {x:.2f}", or be a - `matplotlib.ticker.Formatter`. Optional. - textcolors - A list or array of two color specifications. The first is used for - values below a threshold, the second for those above. Optional. - threshold - Value in data units according to which the colors from textcolors are - applied. If None (the default) uses the middle of the colormap as - separation. Optional. - **kwargs - All other arguments are forwarded to each call to `text` used to create - the text labels. - """ - - if not isinstance(data, (list, np.ndarray)): - data = im.get_array() - - # Normalize the threshold to the images color range. - if threshold is not None: - threshold = im.norm(threshold) - else: - threshold = im.norm(data.max())/2. - - # Set default alignment to center, but allow it to be - # overwritten by textkw. - kw = dict(horizontalalignment="center", - verticalalignment="center") - kw.update(textkw) - - # Get the formatter in case a string is supplied - if isinstance(valfmt, str): - valfmt = matplotlib.ticker.StrMethodFormatter(valfmt) - - # Loop over the data and create a `Text` for each "pixel". - # Change the text's color depending on the data. - texts = [] - for i in range(data.shape[0]): - for j in range(data.shape[1]): - kw.update(color=textcolors[int(im.norm(data[i, j]) > threshold)]) - text = im.axes.text(j, i, valfmt(data[i, j], None), **kw) - texts.append(text) - - return texts - - -########################################################################## -# The above now allows us to keep the actual plot creation pretty compact. -# - -fig, ax = plt.subplots() - -im, cbar = heatmap(harvest, vegetables, farmers, ax=ax, - cmap="YlGn", cbarlabel="harvest [t/year]") -texts = annotate_heatmap(im, valfmt="{x:.1f} t") - -fig.tight_layout() -plt.show() - - -############################################################################# -# Some more complex heatmap examples -# ---------------------------------- -# -# In the following we show the versatility of the previously created -# functions by applying it in different cases and using different arguments. -# - -np.random.seed(19680801) - -fig, ((ax, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(8, 6)) - -# Replicate the above example with a different font size and colormap. - -im, _ = heatmap(harvest, vegetables, farmers, ax=ax, - cmap="Wistia", cbarlabel="harvest [t/year]") -annotate_heatmap(im, valfmt="{x:.1f}", size=7) - -# Create some new data, give further arguments to imshow (vmin), -# use an integer format on the annotations and provide some colors. - -data = np.random.randint(2, 100, size=(7, 7)) -y = ["Book {}".format(i) for i in range(1, 8)] -x = ["Store {}".format(i) for i in list("ABCDEFG")] -im, _ = heatmap(data, y, x, ax=ax2, vmin=0, - cmap="magma_r", cbarlabel="weekly sold copies") -annotate_heatmap(im, valfmt="{x:d}", size=7, threshold=20, - textcolors=["red", "white"]) - -# Sometimes even the data itself is categorical. Here we use a -# :class:`matplotlib.colors.BoundaryNorm` to get the data into classes -# and use this to colorize the plot, but also to obtain the class -# labels from an array of classes. - -data = np.random.randn(6, 6) -y = ["Prod. {}".format(i) for i in range(10, 70, 10)] -x = ["Cycle {}".format(i) for i in range(1, 7)] - -qrates = np.array(list("ABCDEFG")) -norm = matplotlib.colors.BoundaryNorm(np.linspace(-3.5, 3.5, 8), 7) -fmt = matplotlib.ticker.FuncFormatter(lambda x, pos: qrates[::-1][norm(x)]) - -im, _ = heatmap(data, y, x, ax=ax3, - cmap=plt.get_cmap("PiYG", 7), norm=norm, - cbar_kw=dict(ticks=np.arange(-3, 4), format=fmt), - cbarlabel="Quality Rating") - -annotate_heatmap(im, valfmt=fmt, size=9, fontweight="bold", threshold=-1, - textcolors=["red", "black"]) - -# We can nicely plot a correlation matrix. Since this is bound by -1 and 1, -# we use those as vmin and vmax. We may also remove leading zeros and hide -# the diagonal elements (which are all 1) by using a -# :class:`matplotlib.ticker.FuncFormatter`. - -corr_matrix = np.corrcoef(np.random.rand(6, 5)) -im, _ = heatmap(corr_matrix, vegetables, vegetables, ax=ax4, - cmap="PuOr", vmin=-1, vmax=1, - cbarlabel="correlation coeff.") - - -def func(x, pos): - return "{:.2f}".format(x).replace("0.", ".").replace("1.00", "") - -annotate_heatmap(im, valfmt=matplotlib.ticker.FuncFormatter(func), size=7) - - -plt.tight_layout() -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The usage of the following functions and methods is shown in this example: - - -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar diff --git a/_downloads/cd95cba3ed1a8fa3bc171f6b6467fca9/markevery_demo.ipynb b/_downloads/cd95cba3ed1a8fa3bc171f6b6467fca9/markevery_demo.ipynb deleted file mode 120000 index 4f2314cb1da..00000000000 --- a/_downloads/cd95cba3ed1a8fa3bc171f6b6467fca9/markevery_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cd95cba3ed1a8fa3bc171f6b6467fca9/markevery_demo.ipynb \ No newline at end of file diff --git a/_downloads/cd9ed53b797f24159fad9513f15802ec/text_alignment.ipynb b/_downloads/cd9ed53b797f24159fad9513f15802ec/text_alignment.ipynb deleted file mode 120000 index 3cb44a85eae..00000000000 --- a/_downloads/cd9ed53b797f24159fad9513f15802ec/text_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cd9ed53b797f24159fad9513f15802ec/text_alignment.ipynb \ No newline at end of file diff --git a/_downloads/cda818d308c613f16b1390c047e6d48c/subplot_toolbar.ipynb b/_downloads/cda818d308c613f16b1390c047e6d48c/subplot_toolbar.ipynb deleted file mode 100644 index 37e2bc607a9..00000000000 --- a/_downloads/cda818d308c613f16b1390c047e6d48c/subplot_toolbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Subplot Toolbar\n\n\nMatplotlib has a toolbar available for adjusting subplot spacing.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].imshow(np.random.random((100, 100)))\n\naxs[0, 1].imshow(np.random.random((100, 100)))\n\naxs[1, 0].imshow(np.random.random((100, 100)))\n\naxs[1, 1].imshow(np.random.random((100, 100)))\n\nplt.subplot_tool()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cdaf330892481c6c8fc9fb662454366d/hist.py b/_downloads/cdaf330892481c6c8fc9fb662454366d/hist.py deleted file mode 120000 index 194677c9750..00000000000 --- a/_downloads/cdaf330892481c6c8fc9fb662454366d/hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cdaf330892481c6c8fc9fb662454366d/hist.py \ No newline at end of file diff --git a/_downloads/cdafaa1c5e87461a00e79146d87ba64f/contour_label_demo.py b/_downloads/cdafaa1c5e87461a00e79146d87ba64f/contour_label_demo.py deleted file mode 120000 index ba045ed70bd..00000000000 --- a/_downloads/cdafaa1c5e87461a00e79146d87ba64f/contour_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cdafaa1c5e87461a00e79146d87ba64f/contour_label_demo.py \ No newline at end of file diff --git a/_downloads/cdb345284a973e10d62ef76021de032e/svg_tooltip_sgskip.py b/_downloads/cdb345284a973e10d62ef76021de032e/svg_tooltip_sgskip.py deleted file mode 100644 index 815ce269a9f..00000000000 --- a/_downloads/cdb345284a973e10d62ef76021de032e/svg_tooltip_sgskip.py +++ /dev/null @@ -1,108 +0,0 @@ -""" -=========== -SVG Tooltip -=========== - -This example shows how to create a tooltip that will show up when -hovering over a matplotlib patch. - -Although it is possible to create the tooltip from CSS or javascript, -here we create it in matplotlib and simply toggle its visibility on -when hovering over the patch. This approach provides total control over -the tooltip placement and appearance, at the expense of more code up -front. - -The alternative approach would be to put the tooltip content in `title` -attributes of SVG objects. Then, using an existing js/CSS library, it -would be relatively straightforward to create the tooltip in the -browser. The content would be dictated by the `title` attribute, and -the appearance by the CSS. - - -:author: David Huard -""" - - -import matplotlib.pyplot as plt -import xml.etree.ElementTree as ET -from io import BytesIO - -ET.register_namespace("", "http://www.w3.org/2000/svg") - -fig, ax = plt.subplots() - -# Create patches to which tooltips will be assigned. -rect1 = plt.Rectangle((10, -20), 10, 5, fc='blue') -rect2 = plt.Rectangle((-20, 15), 10, 5, fc='green') - -shapes = [rect1, rect2] -labels = ['This is a blue rectangle.', 'This is a green rectangle'] - -for i, (item, label) in enumerate(zip(shapes, labels)): - patch = ax.add_patch(item) - annotate = ax.annotate(labels[i], xy=item.get_xy(), xytext=(0, 0), - textcoords='offset points', color='w', ha='center', - fontsize=8, bbox=dict(boxstyle='round, pad=.5', - fc=(.1, .1, .1, .92), - ec=(1., 1., 1.), lw=1, - zorder=1)) - - ax.add_patch(patch) - patch.set_gid('mypatch_{:03d}'.format(i)) - annotate.set_gid('mytooltip_{:03d}'.format(i)) - -# Save the figure in a fake file object -ax.set_xlim(-30, 30) -ax.set_ylim(-30, 30) -ax.set_aspect('equal') - -f = BytesIO() -plt.savefig(f, format="svg") - -# --- Add interactivity --- - -# Create XML tree from the SVG file. -tree, xmlid = ET.XMLID(f.getvalue()) -tree.set('onload', 'init(evt)') - -for i in shapes: - # Get the index of the shape - index = shapes.index(i) - # Hide the tooltips - tooltip = xmlid['mytooltip_{:03d}'.format(index)] - tooltip.set('visibility', 'hidden') - # Assign onmouseover and onmouseout callbacks to patches. - mypatch = xmlid['mypatch_{:03d}'.format(index)] - mypatch.set('onmouseover', "ShowTooltip(this)") - mypatch.set('onmouseout', "HideTooltip(this)") - -# This is the script defining the ShowTooltip and HideTooltip functions. -script = """ - - """ - -# Insert the script at the top of the file and save it. -tree.insert(0, ET.XML(script)) -ET.ElementTree(tree).write('svg_tooltip.svg') diff --git a/_downloads/cdbb8df3c3e3e22efddcdd31efb8eda8/ellipse_collection.py b/_downloads/cdbb8df3c3e3e22efddcdd31efb8eda8/ellipse_collection.py deleted file mode 120000 index 2f19c9d2d10..00000000000 --- a/_downloads/cdbb8df3c3e3e22efddcdd31efb8eda8/ellipse_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cdbb8df3c3e3e22efddcdd31efb8eda8/ellipse_collection.py \ No newline at end of file diff --git a/_downloads/cdbdf3f19630221fe99d3090e6c48878/axes_props.ipynb b/_downloads/cdbdf3f19630221fe99d3090e6c48878/axes_props.ipynb deleted file mode 100644 index e35a5df53d5..00000000000 --- a/_downloads/cdbdf3f19630221fe99d3090e6c48878/axes_props.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axes Props\n\n\nYou can control the axis tick and grid properties\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 2.0, 0.01)\ns = np.sin(2 * np.pi * t)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\n\nax.grid(True, linestyle='-.')\nax.tick_params(labelcolor='r', labelsize='medium', width=3)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cdc2218e81a02d4397493f03b9e41846/timers.py b/_downloads/cdc2218e81a02d4397493f03b9e41846/timers.py deleted file mode 120000 index 57e9cfdbbdf..00000000000 --- a/_downloads/cdc2218e81a02d4397493f03b9e41846/timers.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cdc2218e81a02d4397493f03b9e41846/timers.py \ No newline at end of file diff --git a/_downloads/cdc4e3a67523c1e29defa4caf3ac39ce/gtk_spreadsheet_sgskip.py b/_downloads/cdc4e3a67523c1e29defa4caf3ac39ce/gtk_spreadsheet_sgskip.py deleted file mode 120000 index 6908d649a7d..00000000000 --- a/_downloads/cdc4e3a67523c1e29defa4caf3ac39ce/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cdc4e3a67523c1e29defa4caf3ac39ce/gtk_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/cddfb452956cf0b0160de1e97400f887/font_family_rc_sgskip.py b/_downloads/cddfb452956cf0b0160de1e97400f887/font_family_rc_sgskip.py deleted file mode 120000 index 5af4cc726a9..00000000000 --- a/_downloads/cddfb452956cf0b0160de1e97400f887/font_family_rc_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cddfb452956cf0b0160de1e97400f887/font_family_rc_sgskip.py \ No newline at end of file diff --git a/_downloads/cdea01689f3457b1b18bb2b14cfa1b79/simple_axisline4.py b/_downloads/cdea01689f3457b1b18bb2b14cfa1b79/simple_axisline4.py deleted file mode 100644 index 91b76cf3e95..00000000000 --- a/_downloads/cdea01689f3457b1b18bb2b14cfa1b79/simple_axisline4.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -================ -Simple Axisline4 -================ - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import host_subplot -import numpy as np - -ax = host_subplot(111) -xx = np.arange(0, 2*np.pi, 0.01) -ax.plot(xx, np.sin(xx)) - -ax2 = ax.twin() # ax2 is responsible for "top" axis and "right" axis -ax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi]) -ax2.set_xticklabels(["$0$", r"$\frac{1}{2}\pi$", - r"$\pi$", r"$\frac{3}{2}\pi$", r"$2\pi$"]) - -ax2.axis["right"].major_ticklabels.set_visible(False) -ax2.axis["top"].major_ticklabels.set_visible(True) - -plt.show() diff --git a/_downloads/cdf1c870d544c031a5361309c14c0238/date_demo_rrule.ipynb b/_downloads/cdf1c870d544c031a5361309c14c0238/date_demo_rrule.ipynb deleted file mode 120000 index 7dd97b2644d..00000000000 --- a/_downloads/cdf1c870d544c031a5361309c14c0238/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cdf1c870d544c031a5361309c14c0238/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/cdf52bd2b635195d6b24e2b96254017a/plot_solarizedlight2.ipynb b/_downloads/cdf52bd2b635195d6b24e2b96254017a/plot_solarizedlight2.ipynb deleted file mode 120000 index 66165c4c95f..00000000000 --- a/_downloads/cdf52bd2b635195d6b24e2b96254017a/plot_solarizedlight2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cdf52bd2b635195d6b24e2b96254017a/plot_solarizedlight2.ipynb \ No newline at end of file diff --git a/_downloads/cdf640741af20e515fa1eb109aed4ecb/boxplot_demo.py b/_downloads/cdf640741af20e515fa1eb109aed4ecb/boxplot_demo.py deleted file mode 120000 index 575d30886b4..00000000000 --- a/_downloads/cdf640741af20e515fa1eb109aed4ecb/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cdf640741af20e515fa1eb109aed4ecb/boxplot_demo.py \ No newline at end of file diff --git a/_downloads/cdf820e25f369b15532da99f511934a6/surface3d_radial.ipynb b/_downloads/cdf820e25f369b15532da99f511934a6/surface3d_radial.ipynb deleted file mode 120000 index 17f8df8d33d..00000000000 --- a/_downloads/cdf820e25f369b15532da99f511934a6/surface3d_radial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cdf820e25f369b15532da99f511934a6/surface3d_radial.ipynb \ No newline at end of file diff --git a/_downloads/cdfb795ca84b16eb56000201952f8f40/patheffect_demo.py b/_downloads/cdfb795ca84b16eb56000201952f8f40/patheffect_demo.py deleted file mode 120000 index d4298c6a56f..00000000000 --- a/_downloads/cdfb795ca84b16eb56000201952f8f40/patheffect_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cdfb795ca84b16eb56000201952f8f40/patheffect_demo.py \ No newline at end of file diff --git a/_downloads/ce05fc8a5e90983a5c8388625e32002f/multiline.py b/_downloads/ce05fc8a5e90983a5c8388625e32002f/multiline.py deleted file mode 120000 index d131c75a27e..00000000000 --- a/_downloads/ce05fc8a5e90983a5c8388625e32002f/multiline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ce05fc8a5e90983a5c8388625e32002f/multiline.py \ No newline at end of file diff --git a/_downloads/ce1874e537f31f4b08d60c2a69aee7b1/fill_spiral.ipynb b/_downloads/ce1874e537f31f4b08d60c2a69aee7b1/fill_spiral.ipynb deleted file mode 120000 index 3a7b4d0a0d4..00000000000 --- a/_downloads/ce1874e537f31f4b08d60c2a69aee7b1/fill_spiral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ce1874e537f31f4b08d60c2a69aee7b1/fill_spiral.ipynb \ No newline at end of file diff --git a/_downloads/ce197be2804473652d62a1064d4efe8d/scatter_piecharts.py b/_downloads/ce197be2804473652d62a1064d4efe8d/scatter_piecharts.py deleted file mode 100644 index d4ffaa34d15..00000000000 --- a/_downloads/ce197be2804473652d62a1064d4efe8d/scatter_piecharts.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -=================================== -Scatter plot with pie chart markers -=================================== - -This example makes custom 'pie charts' as the markers for a scatter plot. - -Thanks to Manuel Metz for the example -""" - -import numpy as np -import matplotlib.pyplot as plt - -# first define the ratios -r1 = 0.2 # 20% -r2 = r1 + 0.4 # 40% - -# define some sizes of the scatter marker -sizes = np.array([60, 80, 120]) - -# calculate the points of the first pie marker -# -# these are just the origin (0,0) + -# some points on a circle cos,sin -x = [0] + np.cos(np.linspace(0, 2 * np.pi * r1, 10)).tolist() -y = [0] + np.sin(np.linspace(0, 2 * np.pi * r1, 10)).tolist() -xy1 = np.column_stack([x, y]) -s1 = np.abs(xy1).max() - -x = [0] + np.cos(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist() -y = [0] + np.sin(np.linspace(2 * np.pi * r1, 2 * np.pi * r2, 10)).tolist() -xy2 = np.column_stack([x, y]) -s2 = np.abs(xy2).max() - -x = [0] + np.cos(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist() -y = [0] + np.sin(np.linspace(2 * np.pi * r2, 2 * np.pi, 10)).tolist() -xy3 = np.column_stack([x, y]) -s3 = np.abs(xy3).max() - -fig, ax = plt.subplots() -ax.scatter(range(3), range(3), marker=xy1, - s=s1 ** 2 * sizes, facecolor='blue') -ax.scatter(range(3), range(3), marker=xy2, - s=s2 ** 2 * sizes, facecolor='green') -ax.scatter(range(3), range(3), marker=xy3, - s=s3 ** 2 * sizes, facecolor='red') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.scatter -matplotlib.pyplot.scatter diff --git a/_downloads/ce1b7db4460c528d5cfca6f36e31ac30/mplot3d.ipynb b/_downloads/ce1b7db4460c528d5cfca6f36e31ac30/mplot3d.ipynb deleted file mode 120000 index ca3cec682e5..00000000000 --- a/_downloads/ce1b7db4460c528d5cfca6f36e31ac30/mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ce1b7db4460c528d5cfca6f36e31ac30/mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/ce247d395c1ac34ee08990693f2e8611/pong_sgskip.ipynb b/_downloads/ce247d395c1ac34ee08990693f2e8611/pong_sgskip.ipynb deleted file mode 120000 index a4a6afbeb1c..00000000000 --- a/_downloads/ce247d395c1ac34ee08990693f2e8611/pong_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ce247d395c1ac34ee08990693f2e8611/pong_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ce24aad61d904766e781a2d4a31c2ae7/arrow_simple_demo.py b/_downloads/ce24aad61d904766e781a2d4a31c2ae7/arrow_simple_demo.py deleted file mode 100644 index c8a07ee204d..00000000000 --- a/_downloads/ce24aad61d904766e781a2d4a31c2ae7/arrow_simple_demo.py +++ /dev/null @@ -1,11 +0,0 @@ -""" -================= -Arrow Simple Demo -================= - -""" -import matplotlib.pyplot as plt - -ax = plt.axes() -ax.arrow(0, 0, 0.5, 0.5, head_width=0.05, head_length=0.1, fc='k', ec='k') -plt.show() diff --git a/_downloads/ce266e80802dd8fa18caeb4538a4e806/polar_scatter.ipynb b/_downloads/ce266e80802dd8fa18caeb4538a4e806/polar_scatter.ipynb deleted file mode 120000 index 4d004643c7b..00000000000 --- a/_downloads/ce266e80802dd8fa18caeb4538a4e806/polar_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ce266e80802dd8fa18caeb4538a4e806/polar_scatter.ipynb \ No newline at end of file diff --git a/_downloads/ce30612813cc055850d08d60aaffc990/patch_collection.py b/_downloads/ce30612813cc055850d08d60aaffc990/patch_collection.py deleted file mode 100644 index 05e343465ff..00000000000 --- a/_downloads/ce30612813cc055850d08d60aaffc990/patch_collection.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============================ -Circles, Wedges and Polygons -============================ - -This example demonstrates how to use -:class:`patch collections<~.collections.PatchCollection>`. -""" - -import numpy as np -from matplotlib.patches import Circle, Wedge, Polygon -from matplotlib.collections import PatchCollection -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() - -resolution = 50 # the number of vertices -N = 3 -x = np.random.rand(N) -y = np.random.rand(N) -radii = 0.1*np.random.rand(N) -patches = [] -for x1, y1, r in zip(x, y, radii): - circle = Circle((x1, y1), r) - patches.append(circle) - -x = np.random.rand(N) -y = np.random.rand(N) -radii = 0.1*np.random.rand(N) -theta1 = 360.0*np.random.rand(N) -theta2 = 360.0*np.random.rand(N) -for x1, y1, r, t1, t2 in zip(x, y, radii, theta1, theta2): - wedge = Wedge((x1, y1), r, t1, t2) - patches.append(wedge) - -# Some limiting conditions on Wedge -patches += [ - Wedge((.3, .7), .1, 0, 360), # Full circle - Wedge((.7, .8), .2, 0, 360, width=0.05), # Full ring - Wedge((.8, .3), .2, 0, 45), # Full sector - Wedge((.8, .3), .2, 45, 90, width=0.10), # Ring sector -] - -for i in range(N): - polygon = Polygon(np.random.rand(N, 2), True) - patches.append(polygon) - -colors = 100*np.random.rand(len(patches)) -p = PatchCollection(patches, alpha=0.4) -p.set_array(np.array(colors)) -ax.add_collection(p) -fig.colorbar(p, ax=ax) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.Circle -matplotlib.patches.Wedge -matplotlib.patches.Polygon -matplotlib.collections.PatchCollection -matplotlib.collections.Collection.set_array -matplotlib.axes.Axes.add_collection -matplotlib.figure.Figure.colorbar diff --git a/_downloads/ce3239d184a21e46a34ca057ddadd8d6/scatter_hist.ipynb b/_downloads/ce3239d184a21e46a34ca057ddadd8d6/scatter_hist.ipynb deleted file mode 120000 index 1858126f621..00000000000 --- a/_downloads/ce3239d184a21e46a34ca057ddadd8d6/scatter_hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ce3239d184a21e46a34ca057ddadd8d6/scatter_hist.ipynb \ No newline at end of file diff --git a/_downloads/ce45a0c1f1a998a6a5fbcf822af66c92/annotate_transform.py b/_downloads/ce45a0c1f1a998a6a5fbcf822af66c92/annotate_transform.py deleted file mode 120000 index 056c99c5095..00000000000 --- a/_downloads/ce45a0c1f1a998a6a5fbcf822af66c92/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ce45a0c1f1a998a6a5fbcf822af66c92/annotate_transform.py \ No newline at end of file diff --git a/_downloads/ce49a5fb730ab9171cf532e396171319/scatter_custom_symbol.py b/_downloads/ce49a5fb730ab9171cf532e396171319/scatter_custom_symbol.py deleted file mode 120000 index 046200fdd25..00000000000 --- a/_downloads/ce49a5fb730ab9171cf532e396171319/scatter_custom_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ce49a5fb730ab9171cf532e396171319/scatter_custom_symbol.py \ No newline at end of file diff --git a/_downloads/ce584bc303aa75cfcfd7a67782f047ea/demo_annotation_box.ipynb b/_downloads/ce584bc303aa75cfcfd7a67782f047ea/demo_annotation_box.ipynb deleted file mode 120000 index 7a9d7916697..00000000000 --- a/_downloads/ce584bc303aa75cfcfd7a67782f047ea/demo_annotation_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ce584bc303aa75cfcfd7a67782f047ea/demo_annotation_box.ipynb \ No newline at end of file diff --git a/_downloads/ce58e233c1662384003e44d9764e0860/scatter_hist_locatable_axes.ipynb b/_downloads/ce58e233c1662384003e44d9764e0860/scatter_hist_locatable_axes.ipynb deleted file mode 120000 index 862324315d6..00000000000 --- a/_downloads/ce58e233c1662384003e44d9764e0860/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ce58e233c1662384003e44d9764e0860/scatter_hist_locatable_axes.ipynb \ No newline at end of file diff --git a/_downloads/ce6b4f0968bb6e9821d6d9762280ef07/connect_simple01.py b/_downloads/ce6b4f0968bb6e9821d6d9762280ef07/connect_simple01.py deleted file mode 120000 index 08096bd67f6..00000000000 --- a/_downloads/ce6b4f0968bb6e9821d6d9762280ef07/connect_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ce6b4f0968bb6e9821d6d9762280ef07/connect_simple01.py \ No newline at end of file diff --git a/_downloads/ce6efd42f86b4acf02ad01757a206da3/hatch_demo.ipynb b/_downloads/ce6efd42f86b4acf02ad01757a206da3/hatch_demo.ipynb deleted file mode 120000 index fcf5412c2d8..00000000000 --- a/_downloads/ce6efd42f86b4acf02ad01757a206da3/hatch_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ce6efd42f86b4acf02ad01757a206da3/hatch_demo.ipynb \ No newline at end of file diff --git a/_downloads/ce6f2dd25959def5cc5a0b20e46dd612/boxplot_demo_pyplot.py b/_downloads/ce6f2dd25959def5cc5a0b20e46dd612/boxplot_demo_pyplot.py deleted file mode 120000 index 71c10fd02f5..00000000000 --- a/_downloads/ce6f2dd25959def5cc5a0b20e46dd612/boxplot_demo_pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ce6f2dd25959def5cc5a0b20e46dd612/boxplot_demo_pyplot.py \ No newline at end of file diff --git a/_downloads/ce71bf52a8f4989594c44e55d236d849/plot_solarizedlight2.py b/_downloads/ce71bf52a8f4989594c44e55d236d849/plot_solarizedlight2.py deleted file mode 100644 index b1a30b6fe14..00000000000 --- a/_downloads/ce71bf52a8f4989594c44e55d236d849/plot_solarizedlight2.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -========================== -Solarized Light stylesheet -========================== - -This shows an example of "Solarized_Light" styling, which -tries to replicate the styles of: - - - ``__ - - ``__ - - ``__ - -and work of: - - - ``__ - -using all 8 accents of the color palette - starting with blue - -ToDo: - - Create alpha values for bar and stacked charts. .33 or .5 - - Apply Layout Rules -""" -import matplotlib.pyplot as plt -import numpy as np -x = np.linspace(0, 10) -with plt.style.context('Solarize_Light2'): - plt.plot(x, np.sin(x) + x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 2 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 3 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 4 + np.random.randn(50)) - plt.plot(x, np.sin(x) + 5 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 6 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 7 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 8 * x + np.random.randn(50)) - # Number of accent colors in the color scheme - plt.title('8 Random Lines - Line') - plt.xlabel('x label', fontsize=14) - plt.ylabel('y label', fontsize=14) - -plt.show() diff --git a/_downloads/ce7c7099387a7307576db8a606d01be3/quad_bezier.ipynb b/_downloads/ce7c7099387a7307576db8a606d01be3/quad_bezier.ipynb deleted file mode 100644 index b7deaa57e9c..00000000000 --- a/_downloads/ce7c7099387a7307576db8a606d01be3/quad_bezier.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Bezier Curve\n\n\nThis example showcases the `~.patches.PathPatch` object to create a Bezier\npolycurve path patch.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nPath = mpath.Path\n\nfig, ax = plt.subplots()\npp1 = mpatches.PathPatch(\n Path([(0, 0), (1, 0), (1, 1), (0, 0)],\n [Path.MOVETO, Path.CURVE3, Path.CURVE3, Path.CLOSEPOLY]),\n fc=\"none\", transform=ax.transData)\n\nax.add_patch(pp1)\nax.plot([0.75], [0.25], \"ro\")\nax.set_title('The red point should be on the path')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.axes.Axes.add_patch" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ce87ecce04ae999c35c0f3e219653827/canvasagg.ipynb b/_downloads/ce87ecce04ae999c35c0f3e219653827/canvasagg.ipynb deleted file mode 120000 index e8646e2ee11..00000000000 --- a/_downloads/ce87ecce04ae999c35c0f3e219653827/canvasagg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ce87ecce04ae999c35c0f3e219653827/canvasagg.ipynb \ No newline at end of file diff --git a/_downloads/ce889bca51a180072ba0c2bc8f68978d/legend_guide.py b/_downloads/ce889bca51a180072ba0c2bc8f68978d/legend_guide.py deleted file mode 120000 index 76287f17ed2..00000000000 --- a/_downloads/ce889bca51a180072ba0c2bc8f68978d/legend_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ce889bca51a180072ba0c2bc8f68978d/legend_guide.py \ No newline at end of file diff --git a/_downloads/ce8a4f7a3c082d4560356c789a3b16e3/pyplot_text.ipynb b/_downloads/ce8a4f7a3c082d4560356c789a3b16e3/pyplot_text.ipynb deleted file mode 120000 index 589c2f6cb52..00000000000 --- a/_downloads/ce8a4f7a3c082d4560356c789a3b16e3/pyplot_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ce8a4f7a3c082d4560356c789a3b16e3/pyplot_text.ipynb \ No newline at end of file diff --git a/_downloads/ce8b04de52ca58261ec5e3fef9872058/style_sheets_reference.ipynb b/_downloads/ce8b04de52ca58261ec5e3fef9872058/style_sheets_reference.ipynb deleted file mode 120000 index 2381a8f8b79..00000000000 --- a/_downloads/ce8b04de52ca58261ec5e3fef9872058/style_sheets_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ce8b04de52ca58261ec5e3fef9872058/style_sheets_reference.ipynb \ No newline at end of file diff --git a/_downloads/ce8e6360730f85b0fb2ccd31d452f725/surface3d_3.py b/_downloads/ce8e6360730f85b0fb2ccd31d452f725/surface3d_3.py deleted file mode 120000 index 56a9aee50fc..00000000000 --- a/_downloads/ce8e6360730f85b0fb2ccd31d452f725/surface3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ce8e6360730f85b0fb2ccd31d452f725/surface3d_3.py \ No newline at end of file diff --git a/_downloads/ce934135c1eb77d0aa284a948f1a584e/image_clip_path.py b/_downloads/ce934135c1eb77d0aa284a948f1a584e/image_clip_path.py deleted file mode 120000 index d734feef0c8..00000000000 --- a/_downloads/ce934135c1eb77d0aa284a948f1a584e/image_clip_path.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ce934135c1eb77d0aa284a948f1a584e/image_clip_path.py \ No newline at end of file diff --git a/_downloads/ce96ebc9aea465c72f0e92b7d38d7901/titles_demo.py b/_downloads/ce96ebc9aea465c72f0e92b7d38d7901/titles_demo.py deleted file mode 100644 index 5fb5544e9dc..00000000000 --- a/_downloads/ce96ebc9aea465c72f0e92b7d38d7901/titles_demo.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -=========== -Titles Demo -=========== - -matplotlib can display plot titles centered, flush with the left side of -a set of axes, and flush with the right side of a set of axes. - -""" -import matplotlib.pyplot as plt - -plt.plot(range(10)) - -plt.title('Center Title') -plt.title('Left Title', loc='left') -plt.title('Right Title', loc='right') - -plt.show() diff --git a/_downloads/cea75a1b6c67f66e67b9891ededd7a8d/contourf3d_2.ipynb b/_downloads/cea75a1b6c67f66e67b9891ededd7a8d/contourf3d_2.ipynb deleted file mode 120000 index b083b9d28f4..00000000000 --- a/_downloads/cea75a1b6c67f66e67b9891ededd7a8d/contourf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cea75a1b6c67f66e67b9891ededd7a8d/contourf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/ceba212cb4d454f0b6dcc70435e3c4c8/embedding_in_wx4_sgskip.py b/_downloads/ceba212cb4d454f0b6dcc70435e3c4c8/embedding_in_wx4_sgskip.py deleted file mode 120000 index 270edfe62f7..00000000000 --- a/_downloads/ceba212cb4d454f0b6dcc70435e3c4c8/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ceba212cb4d454f0b6dcc70435e3c4c8/embedding_in_wx4_sgskip.py \ No newline at end of file diff --git a/_downloads/cebef8dec3b04832849fe893cb7dff6d/histogram_multihist.ipynb b/_downloads/cebef8dec3b04832849fe893cb7dff6d/histogram_multihist.ipynb deleted file mode 120000 index 943d63c2301..00000000000 --- a/_downloads/cebef8dec3b04832849fe893cb7dff6d/histogram_multihist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cebef8dec3b04832849fe893cb7dff6d/histogram_multihist.ipynb \ No newline at end of file diff --git a/_downloads/cec2d2b1fcd1b8772f6e00b439ea540b/colormap_normalizations.ipynb b/_downloads/cec2d2b1fcd1b8772f6e00b439ea540b/colormap_normalizations.ipynb deleted file mode 100644 index f083bb3c8dd..00000000000 --- a/_downloads/cec2d2b1fcd1b8772f6e00b439ea540b/colormap_normalizations.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Lognorm: Instead of pcolor log10(Z1) you can have colorbars that have\nthe exponential labels using a norm.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out of the top. Needs to have\n# z/colour axis on a log scale so we see both hump and spike. linear\n# scale only shows the spike.\n\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nZ = Z1 + 50 * Z2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolor(X, Y, Z,\n norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "PowerNorm: Here a power-law trend in X partially obscures a rectified\nsine wave in Y. We can remove the power law using a PowerNorm.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)]\nZ1 = (1 + np.sin(Y * 10.)) * X**(2.)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1. / 2.),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "SymLogNorm: two humps, one negative and one positive, The positive\nwith 5-times the amplitude. Linearly, you cannot see detail in the\nnegative hump. Here we logarithmically scale the positive and\nnegative data separately.\n\nNote that colorbar labels do not come out looking very good.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = 5 * np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1,\n norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03,\n vmin=-1.0, vmax=1.0),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='RdBu_r', vmin=-np.max(Z1))\nfig.colorbar(pcm, ax=ax[1], extend='both')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Custom Norm: An example with a customized normalization. This one\nuses the example above, and normalizes the negative data differently\nfrom the positive.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n# Example of making your own norm. Also see matplotlib.colors.\n# From Joe Kington: This one gives two different linear ramps:\n\n\nclass MidpointNormalize(colors.Normalize):\n def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False):\n self.midpoint = midpoint\n colors.Normalize.__init__(self, vmin, vmax, clip)\n\n def __call__(self, value, clip=None):\n # I'm ignoring masked values and all kinds of edge cases to make a\n # simple example...\n x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1]\n return np.ma.masked_array(np.interp(value, x, y))\n\n\n#####\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=MidpointNormalize(midpoint=0.),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "BoundaryNorm: For this one you provide the boundaries for your colors,\nand the Norm puts the first color in between the first pair, the\nsecond color between the second pair, etc.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(3, 1, figsize=(8, 8))\nax = ax.flatten()\n# even bounds gives a contour-like effect\nbounds = np.linspace(-1, 1, 10)\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=norm,\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical')\n\n# uneven bounds changes the colormapping:\nbounds = np.array([-0.25, -0.125, 0, 0.5, 1])\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical')\n\npcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z1))\nfig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cec7ab65767ff5217c21ae213755cda8/demo_colorbar_with_axes_divider.py b/_downloads/cec7ab65767ff5217c21ae213755cda8/demo_colorbar_with_axes_divider.py deleted file mode 120000 index 2b0d50e7c0d..00000000000 --- a/_downloads/cec7ab65767ff5217c21ae213755cda8/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cec7ab65767ff5217c21ae213755cda8/demo_colorbar_with_axes_divider.py \ No newline at end of file diff --git a/_downloads/ced11a990eb68b5e6781bd91f43278fa/color_by_yvalue.ipynb b/_downloads/ced11a990eb68b5e6781bd91f43278fa/color_by_yvalue.ipynb deleted file mode 120000 index 7f6238b1a42..00000000000 --- a/_downloads/ced11a990eb68b5e6781bd91f43278fa/color_by_yvalue.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ced11a990eb68b5e6781bd91f43278fa/color_by_yvalue.ipynb \ No newline at end of file diff --git a/_downloads/ced323eac5d8789d93bc6285b2f4ff8e/embedding_in_wx5_sgskip.ipynb b/_downloads/ced323eac5d8789d93bc6285b2f4ff8e/embedding_in_wx5_sgskip.ipynb deleted file mode 120000 index b5febddfce0..00000000000 --- a/_downloads/ced323eac5d8789d93bc6285b2f4ff8e/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ced323eac5d8789d93bc6285b2f4ff8e/embedding_in_wx5_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ced4ce8c77f5767efba419259cd64c85/demo_axes_divider.ipynb b/_downloads/ced4ce8c77f5767efba419259cd64c85/demo_axes_divider.ipynb deleted file mode 120000 index 7eb60a1ca46..00000000000 --- a/_downloads/ced4ce8c77f5767efba419259cd64c85/demo_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ced4ce8c77f5767efba419259cd64c85/demo_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/ced65b6ad7d12225d30e28378211fa15/pcolor_demo.py b/_downloads/ced65b6ad7d12225d30e28378211fa15/pcolor_demo.py deleted file mode 120000 index 5c37bd61182..00000000000 --- a/_downloads/ced65b6ad7d12225d30e28378211fa15/pcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ced65b6ad7d12225d30e28378211fa15/pcolor_demo.py \ No newline at end of file diff --git a/_downloads/ced7b86cef1592fa600d257f948fc8b0/barcode_demo.py b/_downloads/ced7b86cef1592fa600d257f948fc8b0/barcode_demo.py deleted file mode 120000 index ae97f518ce9..00000000000 --- a/_downloads/ced7b86cef1592fa600d257f948fc8b0/barcode_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ced7b86cef1592fa600d257f948fc8b0/barcode_demo.py \ No newline at end of file diff --git a/_downloads/ced995102ba190edcebd0fc3e59d53a9/contour3d.ipynb b/_downloads/ced995102ba190edcebd0fc3e59d53a9/contour3d.ipynb deleted file mode 120000 index ca041382775..00000000000 --- a/_downloads/ced995102ba190edcebd0fc3e59d53a9/contour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ced995102ba190edcebd0fc3e59d53a9/contour3d.ipynb \ No newline at end of file diff --git a/_downloads/cedea6445ffbd457e9c851457fb53d85/usetex_baseline_test.py b/_downloads/cedea6445ffbd457e9c851457fb53d85/usetex_baseline_test.py deleted file mode 100644 index 349fa5915b0..00000000000 --- a/_downloads/cedea6445ffbd457e9c851457fb53d85/usetex_baseline_test.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -==================== -Usetex Baseline Test -==================== - -""" - -import matplotlib.pyplot as plt -import matplotlib.axes as maxes - -from matplotlib import rcParams -rcParams['text.usetex'] = True - - -class Axes(maxes.Axes): - """ - A hackish way to simultaneously draw texts w/ usetex=True and - usetex=False in the same figure. It does not work in the ps backend. - """ - - def __init__(self, *args, usetex=False, preview=False, **kwargs): - self.usetex = usetex - self.preview = preview - super().__init__(*args, **kwargs) - - def draw(self, renderer): - with plt.rc_context({"text.usetex": self.usetex, - "text.latex.preview": self.preview}): - super().draw(renderer) - - -subplot = maxes.subplot_class_factory(Axes) - - -def test_window_extent(ax, usetex, preview): - - va = "baseline" - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - - text_kw = dict(va=va, - size=50, - bbox=dict(pad=0., ec="k", fc="none")) - - test_strings = ["lg", r"$\frac{1}{2}\pi$", - r"$p^{3^A}$", r"$p_{3_2}$"] - - ax.axvline(0, color="r") - - for i, s in enumerate(test_strings): - - ax.axhline(i, color="r") - ax.text(0., 3 - i, s, **text_kw) - - ax.set_xlim(-0.1, 1.1) - ax.set_ylim(-.8, 3.9) - - ax.set_title("usetex=%s\npreview=%s" % (str(usetex), str(preview))) - - -fig = plt.figure(figsize=(2 * 3, 6.5)) - -for i, usetex, preview in [[0, False, False], - [1, True, False], - [2, True, True]]: - ax = subplot(fig, 1, 3, i + 1, usetex=usetex, preview=preview) - fig.add_subplot(ax) - fig.subplots_adjust(top=0.85) - - test_window_extent(ax, usetex=usetex, preview=preview) - - -plt.show() diff --git a/_downloads/cedf8f3ff24039ceb6bca0d2caea2ab3/usetex_baseline_test.py b/_downloads/cedf8f3ff24039ceb6bca0d2caea2ab3/usetex_baseline_test.py deleted file mode 120000 index 37c2f68efb4..00000000000 --- a/_downloads/cedf8f3ff24039ceb6bca0d2caea2ab3/usetex_baseline_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cedf8f3ff24039ceb6bca0d2caea2ab3/usetex_baseline_test.py \ No newline at end of file diff --git a/_downloads/cee853d096a668e2e0a478adf40a4c27/tricontour3d.py b/_downloads/cee853d096a668e2e0a478adf40a4c27/tricontour3d.py deleted file mode 100644 index feb187cbaa1..00000000000 --- a/_downloads/cee853d096a668e2e0a478adf40a4c27/tricontour3d.py +++ /dev/null @@ -1,48 +0,0 @@ -""" -========================== -Triangular 3D contour plot -========================== - -Contour plots of unstructured triangular grids. - -The data used is the same as in the second plot of trisurf3d_demo2. -tricontourf3d_demo shows the filled version of this example. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -n_angles = 48 -n_radii = 8 -min_radius = 0.25 - -# Create the mesh in polar coordinates and compute x, y, z. -radii = np.linspace(min_radius, 0.95, n_radii) -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi/n_angles - -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -z = (np.cos(radii)*np.cos(3*angles)).flatten() - -# Create a custom triangulation. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.tricontour(triang, z, cmap=plt.cm.CMRmap) - -# Customize the view angle so it's easier to understand the plot. -ax.view_init(elev=45.) - -plt.show() diff --git a/_downloads/cef7dc733eaac4024a01c61745cb05ad/scatter_hist_locatable_axes.py b/_downloads/cef7dc733eaac4024a01c61745cb05ad/scatter_hist_locatable_axes.py deleted file mode 120000 index 6b4c5849460..00000000000 --- a/_downloads/cef7dc733eaac4024a01c61745cb05ad/scatter_hist_locatable_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cef7dc733eaac4024a01c61745cb05ad/scatter_hist_locatable_axes.py \ No newline at end of file diff --git a/_downloads/cef9ea39ef8250d69d1955865581c543/violinplot.ipynb b/_downloads/cef9ea39ef8250d69d1955865581c543/violinplot.ipynb deleted file mode 120000 index 9b14b2b19d0..00000000000 --- a/_downloads/cef9ea39ef8250d69d1955865581c543/violinplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cef9ea39ef8250d69d1955865581c543/violinplot.ipynb \ No newline at end of file diff --git a/_downloads/ceffca84be6c38fd9072b27b8675d7a3/gtk_spreadsheet_sgskip.ipynb b/_downloads/ceffca84be6c38fd9072b27b8675d7a3/gtk_spreadsheet_sgskip.ipynb deleted file mode 120000 index b832213d953..00000000000 --- a/_downloads/ceffca84be6c38fd9072b27b8675d7a3/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ceffca84be6c38fd9072b27b8675d7a3/gtk_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/centered_ticklabels.ipynb b/_downloads/centered_ticklabels.ipynb deleted file mode 120000 index f36006621a1..00000000000 --- a/_downloads/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/centered_ticklabels.py b/_downloads/centered_ticklabels.py deleted file mode 120000 index e6624245ddd..00000000000 --- a/_downloads/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/cf0a2d5087e2e0cfb4db4679e3b8efc7/radar_chart.py b/_downloads/cf0a2d5087e2e0cfb4db4679e3b8efc7/radar_chart.py deleted file mode 120000 index b1821a69880..00000000000 --- a/_downloads/cf0a2d5087e2e0cfb4db4679e3b8efc7/radar_chart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cf0a2d5087e2e0cfb4db4679e3b8efc7/radar_chart.py \ No newline at end of file diff --git a/_downloads/cf0c5df46ab915ca35ecacacac7f7d0e/subplot_demo.ipynb b/_downloads/cf0c5df46ab915ca35ecacacac7f7d0e/subplot_demo.ipynb deleted file mode 120000 index 8f131d19efd..00000000000 --- a/_downloads/cf0c5df46ab915ca35ecacacac7f7d0e/subplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cf0c5df46ab915ca35ecacacac7f7d0e/subplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/cf123474543c0bdd287530affd6cd290/colormap_normalizations_power.py b/_downloads/cf123474543c0bdd287530affd6cd290/colormap_normalizations_power.py deleted file mode 120000 index 5ceda701236..00000000000 --- a/_downloads/cf123474543c0bdd287530affd6cd290/colormap_normalizations_power.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cf123474543c0bdd287530affd6cd290/colormap_normalizations_power.py \ No newline at end of file diff --git a/_downloads/cf1efe942fecc62438dcd76a6bfdb169/affine_image.ipynb b/_downloads/cf1efe942fecc62438dcd76a6bfdb169/affine_image.ipynb deleted file mode 120000 index 9cbc277d861..00000000000 --- a/_downloads/cf1efe942fecc62438dcd76a6bfdb169/affine_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cf1efe942fecc62438dcd76a6bfdb169/affine_image.ipynb \ No newline at end of file diff --git a/_downloads/cf1f19fb8c25347637f87db340fabf1c/pyplot_mathtext.ipynb b/_downloads/cf1f19fb8c25347637f87db340fabf1c/pyplot_mathtext.ipynb deleted file mode 120000 index 1bd14015791..00000000000 --- a/_downloads/cf1f19fb8c25347637f87db340fabf1c/pyplot_mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cf1f19fb8c25347637f87db340fabf1c/pyplot_mathtext.ipynb \ No newline at end of file diff --git a/_downloads/cf2a367156c35e17dc95ac4ae3dd6da0/style_sheets_reference.ipynb b/_downloads/cf2a367156c35e17dc95ac4ae3dd6da0/style_sheets_reference.ipynb deleted file mode 120000 index 25023bc875d..00000000000 --- a/_downloads/cf2a367156c35e17dc95ac4ae3dd6da0/style_sheets_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf2a367156c35e17dc95ac4ae3dd6da0/style_sheets_reference.ipynb \ No newline at end of file diff --git a/_downloads/cf394ea0b3985fa8961192bd4dc705cb/fill_betweenx_demo.py b/_downloads/cf394ea0b3985fa8961192bd4dc705cb/fill_betweenx_demo.py deleted file mode 120000 index cd86e172dac..00000000000 --- a/_downloads/cf394ea0b3985fa8961192bd4dc705cb/fill_betweenx_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cf394ea0b3985fa8961192bd4dc705cb/fill_betweenx_demo.py \ No newline at end of file diff --git a/_downloads/cf3eda9fec0edab635188357af1a8bdd/whats_new_99_axes_grid.ipynb b/_downloads/cf3eda9fec0edab635188357af1a8bdd/whats_new_99_axes_grid.ipynb deleted file mode 120000 index 7a3d7be0a65..00000000000 --- a/_downloads/cf3eda9fec0edab635188357af1a8bdd/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf3eda9fec0edab635188357af1a8bdd/whats_new_99_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/cf40c215b743b378975db850657da171/colormap_normalizations.py b/_downloads/cf40c215b743b378975db850657da171/colormap_normalizations.py deleted file mode 120000 index 1ed41b0f3e3..00000000000 --- a/_downloads/cf40c215b743b378975db850657da171/colormap_normalizations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf40c215b743b378975db850657da171/colormap_normalizations.py \ No newline at end of file diff --git a/_downloads/cf48493c2121629018544a2ef0677916/scalarformatter.py b/_downloads/cf48493c2121629018544a2ef0677916/scalarformatter.py deleted file mode 120000 index 40de6b32ad0..00000000000 --- a/_downloads/cf48493c2121629018544a2ef0677916/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf48493c2121629018544a2ef0677916/scalarformatter.py \ No newline at end of file diff --git a/_downloads/cf4a740e0fc084b5b4b092e113f34a95/animate_decay.ipynb b/_downloads/cf4a740e0fc084b5b4b092e113f34a95/animate_decay.ipynb deleted file mode 100644 index d5c77aebac6..00000000000 --- a/_downloads/cf4a740e0fc084b5b4b092e113f34a95/animate_decay.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Decay\n\n\nThis example showcases:\n- using a generator to drive an animation,\n- changing axes limits during an animation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\n\ndef data_gen(t=0):\n cnt = 0\n while cnt < 1000:\n cnt += 1\n t += 0.1\n yield t, np.sin(2*np.pi*t) * np.exp(-t/10.)\n\n\ndef init():\n ax.set_ylim(-1.1, 1.1)\n ax.set_xlim(0, 10)\n del xdata[:]\n del ydata[:]\n line.set_data(xdata, ydata)\n return line,\n\nfig, ax = plt.subplots()\nline, = ax.plot([], [], lw=2)\nax.grid()\nxdata, ydata = [], []\n\n\ndef run(data):\n # update the data\n t, y = data\n xdata.append(t)\n ydata.append(y)\n xmin, xmax = ax.get_xlim()\n\n if t >= xmax:\n ax.set_xlim(xmin, 2*xmax)\n ax.figure.canvas.draw()\n line.set_data(xdata, ydata)\n\n return line,\n\nani = animation.FuncAnimation(fig, run, data_gen, blit=False, interval=10,\n repeat=False, init_func=init)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cf4cfb13376e5e000c8d3e9a1f2cd292/tick_label_right.py b/_downloads/cf4cfb13376e5e000c8d3e9a1f2cd292/tick_label_right.py deleted file mode 120000 index d4bddda8187..00000000000 --- a/_downloads/cf4cfb13376e5e000c8d3e9a1f2cd292/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf4cfb13376e5e000c8d3e9a1f2cd292/tick_label_right.py \ No newline at end of file diff --git a/_downloads/cf600c14334c7d04e8a2ef88c02c9d7c/legend_picking.py b/_downloads/cf600c14334c7d04e8a2ef88c02c9d7c/legend_picking.py deleted file mode 120000 index 8c95da01ce3..00000000000 --- a/_downloads/cf600c14334c7d04e8a2ef88c02c9d7c/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cf600c14334c7d04e8a2ef88c02c9d7c/legend_picking.py \ No newline at end of file diff --git a/_downloads/cf61fb068444d81df2b41dc5948c67ba/mpl_with_glade3_sgskip.py b/_downloads/cf61fb068444d81df2b41dc5948c67ba/mpl_with_glade3_sgskip.py deleted file mode 120000 index 5a3c37cc158..00000000000 --- a/_downloads/cf61fb068444d81df2b41dc5948c67ba/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf61fb068444d81df2b41dc5948c67ba/mpl_with_glade3_sgskip.py \ No newline at end of file diff --git a/_downloads/cf6a6a57cc174fcae3225b0235d2f050/contour_manual.py b/_downloads/cf6a6a57cc174fcae3225b0235d2f050/contour_manual.py deleted file mode 120000 index 528927c2b9e..00000000000 --- a/_downloads/cf6a6a57cc174fcae3225b0235d2f050/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf6a6a57cc174fcae3225b0235d2f050/contour_manual.py \ No newline at end of file diff --git a/_downloads/cf7bf37605d6a53b59242cb3a8e7d95e/text3d.py b/_downloads/cf7bf37605d6a53b59242cb3a8e7d95e/text3d.py deleted file mode 120000 index 6fbc7ac75b7..00000000000 --- a/_downloads/cf7bf37605d6a53b59242cb3a8e7d95e/text3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cf7bf37605d6a53b59242cb3a8e7d95e/text3d.py \ No newline at end of file diff --git a/_downloads/cf7dd4461211fc4fe887335fb9e8fde8/hinton_demo.py b/_downloads/cf7dd4461211fc4fe887335fb9e8fde8/hinton_demo.py deleted file mode 120000 index dd7a424222c..00000000000 --- a/_downloads/cf7dd4461211fc4fe887335fb9e8fde8/hinton_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cf7dd4461211fc4fe887335fb9e8fde8/hinton_demo.py \ No newline at end of file diff --git a/_downloads/cf823a1868a327f46f1754afbe32d06b/tricontour_smooth_user.py b/_downloads/cf823a1868a327f46f1754afbe32d06b/tricontour_smooth_user.py deleted file mode 120000 index acd0c775884..00000000000 --- a/_downloads/cf823a1868a327f46f1754afbe32d06b/tricontour_smooth_user.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cf823a1868a327f46f1754afbe32d06b/tricontour_smooth_user.py \ No newline at end of file diff --git a/_downloads/cf95a31f68015af6cf868caab57e9703/viewlims.py b/_downloads/cf95a31f68015af6cf868caab57e9703/viewlims.py deleted file mode 100644 index 2783bb749e2..00000000000 --- a/_downloads/cf95a31f68015af6cf868caab57e9703/viewlims.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -======== -Viewlims -======== - -Creates two identical panels. Zooming in on the right panel will show -a rectangle in the first panel, denoting the zoomed region. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Rectangle - - -# We just subclass Rectangle so that it can be called with an Axes -# instance, causing the rectangle to update its shape to match the -# bounds of the Axes -class UpdatingRect(Rectangle): - def __call__(self, ax): - self.set_bounds(*ax.viewLim.bounds) - ax.figure.canvas.draw_idle() - - -# A class that will regenerate a fractal set as we zoom in, so that you -# can actually see the increasing detail. A box in the left panel will show -# the area to which we are zoomed. -class MandelbrotDisplay(object): - def __init__(self, h=500, w=500, niter=50, radius=2., power=2): - self.height = h - self.width = w - self.niter = niter - self.radius = radius - self.power = power - - def __call__(self, xstart, xend, ystart, yend): - self.x = np.linspace(xstart, xend, self.width) - self.y = np.linspace(ystart, yend, self.height).reshape(-1, 1) - c = self.x + 1.0j * self.y - threshold_time = np.zeros((self.height, self.width)) - z = np.zeros(threshold_time.shape, dtype=complex) - mask = np.ones(threshold_time.shape, dtype=bool) - for i in range(self.niter): - z[mask] = z[mask]**self.power + c[mask] - mask = (np.abs(z) < self.radius) - threshold_time += mask - return threshold_time - - def ax_update(self, ax): - ax.set_autoscale_on(False) # Otherwise, infinite loop - - # Get the number of points from the number of pixels in the window - dims = ax.patch.get_window_extent().bounds - self.width = int(dims[2] + 0.5) - self.height = int(dims[2] + 0.5) - - # Get the range for the new area - xstart, ystart, xdelta, ydelta = ax.viewLim.bounds - xend = xstart + xdelta - yend = ystart + ydelta - - # Update the image object with our new data and extent - im = ax.images[-1] - im.set_data(self.__call__(xstart, xend, ystart, yend)) - im.set_extent((xstart, xend, ystart, yend)) - ax.figure.canvas.draw_idle() - -md = MandelbrotDisplay() -Z = md(-2., 0.5, -1.25, 1.25) - -fig1, (ax1, ax2) = plt.subplots(1, 2) -ax1.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max())) -ax2.imshow(Z, origin='lower', extent=(md.x.min(), md.x.max(), md.y.min(), md.y.max())) - -rect = UpdatingRect([0, 0], 0, 0, facecolor='None', edgecolor='black', linewidth=1.0) -rect.set_bounds(*ax2.viewLim.bounds) -ax1.add_patch(rect) - -# Connect for changing the view limits -ax2.callbacks.connect('xlim_changed', rect) -ax2.callbacks.connect('ylim_changed', rect) - -ax2.callbacks.connect('xlim_changed', md.ax_update) -ax2.callbacks.connect('ylim_changed', md.ax_update) -ax2.set_title("Zoom here") - -plt.show() diff --git a/_downloads/cf9f753d6489817dbb04d9a1cde5aa12/trisurf3d.py b/_downloads/cf9f753d6489817dbb04d9a1cde5aa12/trisurf3d.py deleted file mode 100644 index 070a3154f2c..00000000000 --- a/_downloads/cf9f753d6489817dbb04d9a1cde5aa12/trisurf3d.py +++ /dev/null @@ -1,37 +0,0 @@ -''' -====================== -Triangular 3D surfaces -====================== - -Plot a 3D surface with a triangular mesh. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -n_radii = 8 -n_angles = 36 - -# Make radii and angles spaces (radius r=0 omitted to eliminate duplication). -radii = np.linspace(0.125, 1.0, n_radii) -angles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)[..., np.newaxis] - -# Convert polar (radii, angles) coords to cartesian (x, y) coords. -# (0, 0) is manually added at this stage, so there will be no duplicate -# points in the (x, y) plane. -x = np.append(0, (radii*np.cos(angles)).flatten()) -y = np.append(0, (radii*np.sin(angles)).flatten()) - -# Compute z to make the pringle surface. -z = np.sin(-x*y) - -fig = plt.figure() -ax = fig.gca(projection='3d') - -ax.plot_trisurf(x, y, z, linewidth=0.2, antialiased=True) - -plt.show() diff --git a/_downloads/cfac2a4b60f88512bd2e9d4eef474719/demo_text_rotation_mode.ipynb b/_downloads/cfac2a4b60f88512bd2e9d4eef474719/demo_text_rotation_mode.ipynb deleted file mode 120000 index 890eb8a6fc9..00000000000 --- a/_downloads/cfac2a4b60f88512bd2e9d4eef474719/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/cfac2a4b60f88512bd2e9d4eef474719/demo_text_rotation_mode.ipynb \ No newline at end of file diff --git a/_downloads/cfb3b1914b74884d5677d00ac66630a2/font_file.ipynb b/_downloads/cfb3b1914b74884d5677d00ac66630a2/font_file.ipynb deleted file mode 120000 index 80373d4e461..00000000000 --- a/_downloads/cfb3b1914b74884d5677d00ac66630a2/font_file.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cfb3b1914b74884d5677d00ac66630a2/font_file.ipynb \ No newline at end of file diff --git a/_downloads/cfb749aae3d9021ed59b0b9a99c7adbe/auto_ticks.ipynb b/_downloads/cfb749aae3d9021ed59b0b9a99c7adbe/auto_ticks.ipynb deleted file mode 100644 index ef9e0e29a84..00000000000 --- a/_downloads/cfb749aae3d9021ed59b0b9a99c7adbe/auto_ticks.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Automatically setting tick labels\n\n\nSetting the behavior of tick auto-placement.\n\nIf you don't explicitly set tick positions / labels, Matplotlib will attempt\nto choose them both automatically based on the displayed data and its limits.\n\nBy default, this attempts to choose tick positions that are distributed\nalong the axis:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\ndots = np.arange(10) / 100. + .03\nx, y = np.meshgrid(dots, dots)\ndata = [x.ravel(), y.ravel()]\nax.scatter(*data, c=data[1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sometimes choosing evenly-distributed ticks results in strange tick numbers.\nIf you'd like Matplotlib to keep ticks located at round numbers, you can\nchange this behavior with the following rcParams value:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(plt.rcParams['axes.autolimit_mode'])\n\n# Now change this value and see the results\nwith plt.rc_context({'axes.autolimit_mode': 'round_numbers'}):\n fig, ax = plt.subplots()\n ax.scatter(*data, c=data[1])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also alter the margins of the axes around the data by\nwith ``axes.(x,y)margin``:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.rc_context({'axes.autolimit_mode': 'round_numbers',\n 'axes.xmargin': .8,\n 'axes.ymargin': .8}):\n fig, ax = plt.subplots()\n ax.scatter(*data, c=data[1])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cfb9233fa482bcd5587d55f8ef0337f0/inset_locator_demo2.ipynb b/_downloads/cfb9233fa482bcd5587d55f8ef0337f0/inset_locator_demo2.ipynb deleted file mode 120000 index 0585e7dc961..00000000000 --- a/_downloads/cfb9233fa482bcd5587d55f8ef0337f0/inset_locator_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cfb9233fa482bcd5587d55f8ef0337f0/inset_locator_demo2.ipynb \ No newline at end of file diff --git a/_downloads/cfbd1208088e34becd3522566eb8852f/animate_decay.ipynb b/_downloads/cfbd1208088e34becd3522566eb8852f/animate_decay.ipynb deleted file mode 120000 index 38b3d0d0e68..00000000000 --- a/_downloads/cfbd1208088e34becd3522566eb8852f/animate_decay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cfbd1208088e34becd3522566eb8852f/animate_decay.ipynb \ No newline at end of file diff --git a/_downloads/cfc16c13f4a562ee23bf206246c5da51/image_nonuniform.py b/_downloads/cfc16c13f4a562ee23bf206246c5da51/image_nonuniform.py deleted file mode 120000 index f1f24858652..00000000000 --- a/_downloads/cfc16c13f4a562ee23bf206246c5da51/image_nonuniform.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cfc16c13f4a562ee23bf206246c5da51/image_nonuniform.py \ No newline at end of file diff --git a/_downloads/cfc62c0905c030153530942a91948d4d/errorbar_limits_simple.py b/_downloads/cfc62c0905c030153530942a91948d4d/errorbar_limits_simple.py deleted file mode 100644 index e314783c276..00000000000 --- a/_downloads/cfc62c0905c030153530942a91948d4d/errorbar_limits_simple.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -======================== -Errorbar limit selection -======================== - -Illustration of selectively drawing lower and/or upper limit symbols on -errorbars using the parameters ``uplims``, ``lolims`` of `~.pyplot.errorbar`. - -Alternatively, you can use 2xN values to draw errorbars in only one direction. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -fig = plt.figure() -x = np.arange(10) -y = 2.5 * np.sin(x / 20 * np.pi) -yerr = np.linspace(0.05, 0.2, 10) - -plt.errorbar(x, y + 3, yerr=yerr, label='both limits (default)') - -plt.errorbar(x, y + 2, yerr=yerr, uplims=True, label='uplims=True') - -plt.errorbar(x, y + 1, yerr=yerr, uplims=True, lolims=True, - label='uplims=True, lolims=True') - -upperlimits = [True, False] * 5 -lowerlimits = [False, True] * 5 -plt.errorbar(x, y, yerr=yerr, uplims=upperlimits, lolims=lowerlimits, - label='subsets of uplims and lolims') - -plt.legend(loc='lower right') - - -############################################################################## -# Similarly ``xuplims``and ``xlolims`` can be used on the horizontal ``xerr`` -# errorbars. - -fig = plt.figure() -x = np.arange(10) / 10 -y = (x + 0.1)**2 - -plt.errorbar(x, y, xerr=0.1, xlolims=True, label='xlolims=True') -y = (x + 0.1)**3 - -plt.errorbar(x + 0.6, y, xerr=0.1, xuplims=upperlimits, xlolims=lowerlimits, - label='subsets of xuplims and xlolims') - -y = (x + 0.1)**4 -plt.errorbar(x + 1.2, y, xerr=0.1, xuplims=True, label='xuplims=True') - -plt.legend() -plt.show() - -############################################################################## -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.errorbar -matplotlib.pyplot.errorbar diff --git a/_downloads/cfd0715060d6c854859a0495309fc47c/coords_report.py b/_downloads/cfd0715060d6c854859a0495309fc47c/coords_report.py deleted file mode 120000 index bacea96f6c7..00000000000 --- a/_downloads/cfd0715060d6c854859a0495309fc47c/coords_report.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/cfd0715060d6c854859a0495309fc47c/coords_report.py \ No newline at end of file diff --git a/_downloads/cfd15ad9906e411c77d4e4de5ec50af6/histogram_multihist.ipynb b/_downloads/cfd15ad9906e411c77d4e4de5ec50af6/histogram_multihist.ipynb deleted file mode 100644 index f245fafe2ff..00000000000 --- a/_downloads/cfd15ad9906e411c77d4e4de5ec50af6/histogram_multihist.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================================================\nThe histogram (hist) function with multiple data sets\n=====================================================\n\nPlot histogram with multiple sample sets and demonstrate:\n\n * Use of legend with multiple sample sets\n * Stacked bars\n * Step curve with no fill\n * Data sets of different sample sizes\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nn_bins = 10\nx = np.random.randn(1000, 3)\n\nfig, axes = plt.subplots(nrows=2, ncols=2)\nax0, ax1, ax2, ax3 = axes.flatten()\n\ncolors = ['red', 'tan', 'lime']\nax0.hist(x, n_bins, density=True, histtype='bar', color=colors, label=colors)\nax0.legend(prop={'size': 10})\nax0.set_title('bars with legend')\n\nax1.hist(x, n_bins, density=True, histtype='bar', stacked=True)\nax1.set_title('stacked bar')\n\nax2.hist(x, n_bins, histtype='step', stacked=True, fill=False)\nax2.set_title('stack step (unfilled)')\n\n# Make a multiple-histogram of data-sets with different length.\nx_multi = [np.random.randn(n) for n in [10000, 5000, 2000]]\nax3.hist(x_multi, n_bins, histtype='bar')\nax3.set_title('different sample sizes')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/cfe5ff2821e86c175206edd7e6617824/lorenz_attractor.ipynb b/_downloads/cfe5ff2821e86c175206edd7e6617824/lorenz_attractor.ipynb deleted file mode 120000 index 84124998357..00000000000 --- a/_downloads/cfe5ff2821e86c175206edd7e6617824/lorenz_attractor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cfe5ff2821e86c175206edd7e6617824/lorenz_attractor.ipynb \ No newline at end of file diff --git a/_downloads/cff0c57a9f43e62cbd6e2ee706caa49e/lasso_selector_demo_sgskip.py b/_downloads/cff0c57a9f43e62cbd6e2ee706caa49e/lasso_selector_demo_sgskip.py deleted file mode 120000 index 55840739184..00000000000 --- a/_downloads/cff0c57a9f43e62cbd6e2ee706caa49e/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/cff0c57a9f43e62cbd6e2ee706caa49e/lasso_selector_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/cffb95f1b93cceb694e54f54423dbf1f/pie_and_donut_labels.ipynb b/_downloads/cffb95f1b93cceb694e54f54423dbf1f/pie_and_donut_labels.ipynb deleted file mode 120000 index 2acbb4ab8f8..00000000000 --- a/_downloads/cffb95f1b93cceb694e54f54423dbf1f/pie_and_donut_labels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/cffb95f1b93cceb694e54f54423dbf1f/pie_and_donut_labels.ipynb \ No newline at end of file diff --git a/_downloads/cffd746d8365ffb6ed02e491def25d1b/custom_figure_class.py b/_downloads/cffd746d8365ffb6ed02e491def25d1b/custom_figure_class.py deleted file mode 100644 index db1315f1f59..00000000000 --- a/_downloads/cffd746d8365ffb6ed02e491def25d1b/custom_figure_class.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -=================== -Custom Figure Class -=================== - -You can pass a custom Figure constructor to figure if you want to derive from -the default Figure. This simple example creates a figure with a figure title. -""" - -import matplotlib.pyplot as plt -from matplotlib.figure import Figure - - -class MyFigure(Figure): - def __init__(self, *args, figtitle='hi mom', **kwargs): - """ - custom kwarg figtitle is a figure title - """ - super().__init__(*args, **kwargs) - self.text(0.5, 0.95, figtitle, ha='center') - - -fig = plt.figure(FigureClass=MyFigure, figtitle='my title') -ax = fig.subplots() -ax.plot([1, 2, 3]) - -plt.show() diff --git a/_downloads/cfff68231b78bf6a19f392d7bd7f47e7/rotate_axes3d_sgskip.ipynb b/_downloads/cfff68231b78bf6a19f392d7bd7f47e7/rotate_axes3d_sgskip.ipynb deleted file mode 120000 index 20fe97085e4..00000000000 --- a/_downloads/cfff68231b78bf6a19f392d7bd7f47e7/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/cfff68231b78bf6a19f392d7bd7f47e7/rotate_axes3d_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/check_buttons.ipynb b/_downloads/check_buttons.ipynb deleted file mode 120000 index c156df6bf49..00000000000 --- a/_downloads/check_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/check_buttons.ipynb \ No newline at end of file diff --git a/_downloads/check_buttons.py b/_downloads/check_buttons.py deleted file mode 120000 index e604c84adc6..00000000000 --- a/_downloads/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/check_buttons.py \ No newline at end of file diff --git a/_downloads/close_event.ipynb b/_downloads/close_event.ipynb deleted file mode 120000 index 062429bf551..00000000000 --- a/_downloads/close_event.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/close_event.ipynb \ No newline at end of file diff --git a/_downloads/close_event.py b/_downloads/close_event.py deleted file mode 120000 index 43dbeb54f14..00000000000 --- a/_downloads/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/close_event.py \ No newline at end of file diff --git a/_downloads/cohere.ipynb b/_downloads/cohere.ipynb deleted file mode 120000 index 68083b6d8db..00000000000 --- a/_downloads/cohere.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/cohere.ipynb \ No newline at end of file diff --git a/_downloads/cohere.py b/_downloads/cohere.py deleted file mode 120000 index 4753fb8b469..00000000000 --- a/_downloads/cohere.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/cohere.py \ No newline at end of file diff --git a/_downloads/collections.ipynb b/_downloads/collections.ipynb deleted file mode 120000 index 16d6daf439d..00000000000 --- a/_downloads/collections.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/collections.ipynb \ No newline at end of file diff --git a/_downloads/collections.py b/_downloads/collections.py deleted file mode 120000 index 3d6682b9b9b..00000000000 --- a/_downloads/collections.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/collections.py \ No newline at end of file diff --git a/_downloads/color_by_yvalue.ipynb b/_downloads/color_by_yvalue.ipynb deleted file mode 120000 index 9a8d201dfa7..00000000000 --- a/_downloads/color_by_yvalue.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_by_yvalue.ipynb \ No newline at end of file diff --git a/_downloads/color_by_yvalue.py b/_downloads/color_by_yvalue.py deleted file mode 120000 index ab28f0400d0..00000000000 --- a/_downloads/color_by_yvalue.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_by_yvalue.py \ No newline at end of file diff --git a/_downloads/color_cycle.ipynb b/_downloads/color_cycle.ipynb deleted file mode 120000 index b1832d57bef..00000000000 --- a/_downloads/color_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_cycle.ipynb \ No newline at end of file diff --git a/_downloads/color_cycle.py b/_downloads/color_cycle.py deleted file mode 120000 index 266ffb35466..00000000000 --- a/_downloads/color_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_cycle.py \ No newline at end of file diff --git a/_downloads/color_cycle1.ipynb b/_downloads/color_cycle1.ipynb deleted file mode 120000 index 050587dd18a..00000000000 --- a/_downloads/color_cycle1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/color_cycle1.ipynb \ No newline at end of file diff --git a/_downloads/color_cycle1.py b/_downloads/color_cycle1.py deleted file mode 120000 index d66bee9cc23..00000000000 --- a/_downloads/color_cycle1.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/color_cycle1.py \ No newline at end of file diff --git a/_downloads/color_cycle_default.ipynb b/_downloads/color_cycle_default.ipynb deleted file mode 120000 index 20ac1b2e664..00000000000 --- a/_downloads/color_cycle_default.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_cycle_default.ipynb \ No newline at end of file diff --git a/_downloads/color_cycle_default.py b/_downloads/color_cycle_default.py deleted file mode 120000 index cbeeb105161..00000000000 --- a/_downloads/color_cycle_default.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_cycle_default.py \ No newline at end of file diff --git a/_downloads/color_cycler.ipynb b/_downloads/color_cycler.ipynb deleted file mode 120000 index eb312ed495e..00000000000 --- a/_downloads/color_cycler.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_cycler.ipynb \ No newline at end of file diff --git a/_downloads/color_cycler.py b/_downloads/color_cycler.py deleted file mode 120000 index 11f06be90e1..00000000000 --- a/_downloads/color_cycler.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_cycler.py \ No newline at end of file diff --git a/_downloads/color_demo.ipynb b/_downloads/color_demo.ipynb deleted file mode 120000 index fe181ab9557..00000000000 --- a/_downloads/color_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_demo.ipynb \ No newline at end of file diff --git a/_downloads/color_demo.py b/_downloads/color_demo.py deleted file mode 120000 index 17c238cd1ba..00000000000 --- a/_downloads/color_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/color_demo.py \ No newline at end of file diff --git a/_downloads/colorbar_basics.ipynb b/_downloads/colorbar_basics.ipynb deleted file mode 120000 index a54149e3860..00000000000 --- a/_downloads/colorbar_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colorbar_basics.ipynb \ No newline at end of file diff --git a/_downloads/colorbar_basics.py b/_downloads/colorbar_basics.py deleted file mode 120000 index 379b685da08..00000000000 --- a/_downloads/colorbar_basics.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colorbar_basics.py \ No newline at end of file diff --git a/_downloads/colorbar_only.ipynb b/_downloads/colorbar_only.ipynb deleted file mode 120000 index cbd834e51fc..00000000000 --- a/_downloads/colorbar_only.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colorbar_only.ipynb \ No newline at end of file diff --git a/_downloads/colorbar_only.py b/_downloads/colorbar_only.py deleted file mode 120000 index 2644e749a29..00000000000 --- a/_downloads/colorbar_only.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colorbar_only.py \ No newline at end of file diff --git a/_downloads/colorbar_tick_labelling_demo.ipynb b/_downloads/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index 920dcc6d977..00000000000 --- a/_downloads/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/colorbar_tick_labelling_demo.py b/_downloads/colorbar_tick_labelling_demo.py deleted file mode 120000 index f127fe862b6..00000000000 --- a/_downloads/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/colormap_normalizations.ipynb b/_downloads/colormap_normalizations.ipynb deleted file mode 120000 index ae50e4b34d8..00000000000 --- a/_downloads/colormap_normalizations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations.ipynb \ No newline at end of file diff --git a/_downloads/colormap_normalizations.py b/_downloads/colormap_normalizations.py deleted file mode 120000 index 18b643529cc..00000000000 --- a/_downloads/colormap_normalizations.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations.py \ No newline at end of file diff --git a/_downloads/colormap_normalizations_bounds.ipynb b/_downloads/colormap_normalizations_bounds.ipynb deleted file mode 120000 index bc706ddacbf..00000000000 --- a/_downloads/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_bounds.ipynb \ No newline at end of file diff --git a/_downloads/colormap_normalizations_bounds.py b/_downloads/colormap_normalizations_bounds.py deleted file mode 120000 index 38c5468c0e2..00000000000 --- a/_downloads/colormap_normalizations_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_bounds.py \ No newline at end of file diff --git a/_downloads/colormap_normalizations_custom.ipynb b/_downloads/colormap_normalizations_custom.ipynb deleted file mode 120000 index 66937d892ee..00000000000 --- a/_downloads/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_custom.ipynb \ No newline at end of file diff --git a/_downloads/colormap_normalizations_custom.py b/_downloads/colormap_normalizations_custom.py deleted file mode 120000 index 2cfb455f5c2..00000000000 --- a/_downloads/colormap_normalizations_custom.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_custom.py \ No newline at end of file diff --git a/_downloads/colormap_normalizations_lognorm.ipynb b/_downloads/colormap_normalizations_lognorm.ipynb deleted file mode 120000 index 687e690b25f..00000000000 --- a/_downloads/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_lognorm.ipynb \ No newline at end of file diff --git a/_downloads/colormap_normalizations_lognorm.py b/_downloads/colormap_normalizations_lognorm.py deleted file mode 120000 index 9aca78f93b4..00000000000 --- a/_downloads/colormap_normalizations_lognorm.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_lognorm.py \ No newline at end of file diff --git a/_downloads/colormap_normalizations_power.ipynb b/_downloads/colormap_normalizations_power.ipynb deleted file mode 120000 index b2ef4c05881..00000000000 --- a/_downloads/colormap_normalizations_power.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_power.ipynb \ No newline at end of file diff --git a/_downloads/colormap_normalizations_power.py b/_downloads/colormap_normalizations_power.py deleted file mode 120000 index 4cdef9513cb..00000000000 --- a/_downloads/colormap_normalizations_power.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_power.py \ No newline at end of file diff --git a/_downloads/colormap_normalizations_symlognorm.ipynb b/_downloads/colormap_normalizations_symlognorm.ipynb deleted file mode 120000 index ab051f27e66..00000000000 --- a/_downloads/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_symlognorm.ipynb \ No newline at end of file diff --git a/_downloads/colormap_normalizations_symlognorm.py b/_downloads/colormap_normalizations_symlognorm.py deleted file mode 120000 index e17961f50e5..00000000000 --- a/_downloads/colormap_normalizations_symlognorm.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_normalizations_symlognorm.py \ No newline at end of file diff --git a/_downloads/colormap_reference.ipynb b/_downloads/colormap_reference.ipynb deleted file mode 120000 index 81bd545cafc..00000000000 --- a/_downloads/colormap_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_reference.ipynb \ No newline at end of file diff --git a/_downloads/colormap_reference.py b/_downloads/colormap_reference.py deleted file mode 120000 index 63a86b57718..00000000000 --- a/_downloads/colormap_reference.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormap_reference.py \ No newline at end of file diff --git a/_downloads/colormapnorms.ipynb b/_downloads/colormapnorms.ipynb deleted file mode 120000 index 8c9bb1e6096..00000000000 --- a/_downloads/colormapnorms.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormapnorms.ipynb \ No newline at end of file diff --git a/_downloads/colormapnorms.py b/_downloads/colormapnorms.py deleted file mode 120000 index 7e8f167e5a7..00000000000 --- a/_downloads/colormapnorms.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormapnorms.py \ No newline at end of file diff --git a/_downloads/colormaps.ipynb b/_downloads/colormaps.ipynb deleted file mode 120000 index bac419d5c97..00000000000 --- a/_downloads/colormaps.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormaps.ipynb \ No newline at end of file diff --git a/_downloads/colormaps.py b/_downloads/colormaps.py deleted file mode 120000 index 84036b7ec90..00000000000 --- a/_downloads/colormaps.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colormaps.py \ No newline at end of file diff --git a/_downloads/colors.ipynb b/_downloads/colors.ipynb deleted file mode 120000 index ae362bb6239..00000000000 --- a/_downloads/colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colors.ipynb \ No newline at end of file diff --git a/_downloads/colors.py b/_downloads/colors.py deleted file mode 120000 index fcf3396b3b7..00000000000 --- a/_downloads/colors.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/colors.py \ No newline at end of file diff --git a/_downloads/colors_sgskip.ipynb b/_downloads/colors_sgskip.ipynb deleted file mode 120000 index b07459df049..00000000000 --- a/_downloads/colors_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/colors_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/colors_sgskip.py b/_downloads/colors_sgskip.py deleted file mode 120000 index bbb533c3e9f..00000000000 --- a/_downloads/colors_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/colors_sgskip.py \ No newline at end of file diff --git a/_downloads/common_date_problems.ipynb b/_downloads/common_date_problems.ipynb deleted file mode 120000 index 3ba6004f8db..00000000000 --- a/_downloads/common_date_problems.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/common_date_problems.ipynb \ No newline at end of file diff --git a/_downloads/common_date_problems.py b/_downloads/common_date_problems.py deleted file mode 120000 index bf5e96184b2..00000000000 --- a/_downloads/common_date_problems.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/common_date_problems.py \ No newline at end of file diff --git a/_downloads/compound_path.ipynb b/_downloads/compound_path.ipynb deleted file mode 120000 index 13523051d5a..00000000000 --- a/_downloads/compound_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/compound_path.ipynb \ No newline at end of file diff --git a/_downloads/compound_path.py b/_downloads/compound_path.py deleted file mode 120000 index 7c95a5d6638..00000000000 --- a/_downloads/compound_path.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/compound_path.py \ No newline at end of file diff --git a/_downloads/compound_path_demo.ipynb b/_downloads/compound_path_demo.ipynb deleted file mode 120000 index 43cea854936..00000000000 --- a/_downloads/compound_path_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/compound_path_demo.ipynb \ No newline at end of file diff --git a/_downloads/compound_path_demo.py b/_downloads/compound_path_demo.py deleted file mode 120000 index ec4f8614091..00000000000 --- a/_downloads/compound_path_demo.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/compound_path_demo.py \ No newline at end of file diff --git a/_downloads/connect_simple01.ipynb b/_downloads/connect_simple01.ipynb deleted file mode 120000 index f6f79d1549c..00000000000 --- a/_downloads/connect_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/connect_simple01.ipynb \ No newline at end of file diff --git a/_downloads/connect_simple01.py b/_downloads/connect_simple01.py deleted file mode 120000 index 31d2e56d6eb..00000000000 --- a/_downloads/connect_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/connect_simple01.py \ No newline at end of file diff --git a/_downloads/connectionstyle_demo.ipynb b/_downloads/connectionstyle_demo.ipynb deleted file mode 120000 index 0ba90ed5f18..00000000000 --- a/_downloads/connectionstyle_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/connectionstyle_demo.ipynb \ No newline at end of file diff --git a/_downloads/connectionstyle_demo.py b/_downloads/connectionstyle_demo.py deleted file mode 120000 index 5dd3bfc13b6..00000000000 --- a/_downloads/connectionstyle_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/connectionstyle_demo.py \ No newline at end of file diff --git a/_downloads/constrainedlayout_guide.ipynb b/_downloads/constrainedlayout_guide.ipynb deleted file mode 120000 index 5b7ec95ae30..00000000000 --- a/_downloads/constrainedlayout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/constrainedlayout_guide.ipynb \ No newline at end of file diff --git a/_downloads/constrainedlayout_guide.py b/_downloads/constrainedlayout_guide.py deleted file mode 120000 index 9c1d97546aa..00000000000 --- a/_downloads/constrainedlayout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/constrainedlayout_guide.py \ No newline at end of file diff --git a/_downloads/contour.ipynb b/_downloads/contour.ipynb deleted file mode 120000 index 39d7d6bca97..00000000000 --- a/_downloads/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour.ipynb \ No newline at end of file diff --git a/_downloads/contour.py b/_downloads/contour.py deleted file mode 120000 index 0f371dab483..00000000000 --- a/_downloads/contour.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour.py \ No newline at end of file diff --git a/_downloads/contour3d.ipynb b/_downloads/contour3d.ipynb deleted file mode 120000 index 32f2265a388..00000000000 --- a/_downloads/contour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour3d.ipynb \ No newline at end of file diff --git a/_downloads/contour3d.py b/_downloads/contour3d.py deleted file mode 120000 index 6469319b932..00000000000 --- a/_downloads/contour3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour3d.py \ No newline at end of file diff --git a/_downloads/contour3d_2.ipynb b/_downloads/contour3d_2.ipynb deleted file mode 120000 index cdb636c316b..00000000000 --- a/_downloads/contour3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour3d_2.ipynb \ No newline at end of file diff --git a/_downloads/contour3d_2.py b/_downloads/contour3d_2.py deleted file mode 120000 index 1cf8da4414b..00000000000 --- a/_downloads/contour3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour3d_2.py \ No newline at end of file diff --git a/_downloads/contour3d_3.ipynb b/_downloads/contour3d_3.ipynb deleted file mode 120000 index 087056e20e9..00000000000 --- a/_downloads/contour3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour3d_3.ipynb \ No newline at end of file diff --git a/_downloads/contour3d_3.py b/_downloads/contour3d_3.py deleted file mode 120000 index 9338b49dcb7..00000000000 --- a/_downloads/contour3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour3d_3.py \ No newline at end of file diff --git a/_downloads/contour_corner_mask.ipynb b/_downloads/contour_corner_mask.ipynb deleted file mode 120000 index 7c35977c224..00000000000 --- a/_downloads/contour_corner_mask.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_corner_mask.ipynb \ No newline at end of file diff --git a/_downloads/contour_corner_mask.py b/_downloads/contour_corner_mask.py deleted file mode 120000 index 686c1600b9e..00000000000 --- a/_downloads/contour_corner_mask.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_corner_mask.py \ No newline at end of file diff --git a/_downloads/contour_demo.ipynb b/_downloads/contour_demo.ipynb deleted file mode 120000 index 66e289bb5e7..00000000000 --- a/_downloads/contour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_demo.ipynb \ No newline at end of file diff --git a/_downloads/contour_demo.py b/_downloads/contour_demo.py deleted file mode 120000 index 69ba85f45f6..00000000000 --- a/_downloads/contour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_demo.py \ No newline at end of file diff --git a/_downloads/contour_image.ipynb b/_downloads/contour_image.ipynb deleted file mode 120000 index 5e409fe51e3..00000000000 --- a/_downloads/contour_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_image.ipynb \ No newline at end of file diff --git a/_downloads/contour_image.py b/_downloads/contour_image.py deleted file mode 120000 index a8e7bb3adc8..00000000000 --- a/_downloads/contour_image.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_image.py \ No newline at end of file diff --git a/_downloads/contour_label_demo.ipynb b/_downloads/contour_label_demo.ipynb deleted file mode 120000 index a88e5e7e643..00000000000 --- a/_downloads/contour_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/contour_label_demo.py b/_downloads/contour_label_demo.py deleted file mode 120000 index 8c664b8fa2b..00000000000 --- a/_downloads/contour_label_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_label_demo.py \ No newline at end of file diff --git a/_downloads/contour_manual.ipynb b/_downloads/contour_manual.ipynb deleted file mode 120000 index aea37875558..00000000000 --- a/_downloads/contour_manual.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_manual.ipynb \ No newline at end of file diff --git a/_downloads/contour_manual.py b/_downloads/contour_manual.py deleted file mode 120000 index c59ae6b4635..00000000000 --- a/_downloads/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contour_manual.py \ No newline at end of file diff --git a/_downloads/contourf3d.ipynb b/_downloads/contourf3d.ipynb deleted file mode 120000 index 6b42c51e0b6..00000000000 --- a/_downloads/contourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf3d.ipynb \ No newline at end of file diff --git a/_downloads/contourf3d.py b/_downloads/contourf3d.py deleted file mode 120000 index d4f5b37a2ea..00000000000 --- a/_downloads/contourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf3d.py \ No newline at end of file diff --git a/_downloads/contourf3d_2.ipynb b/_downloads/contourf3d_2.ipynb deleted file mode 120000 index 9eab168fd64..00000000000 --- a/_downloads/contourf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/contourf3d_2.py b/_downloads/contourf3d_2.py deleted file mode 120000 index fe522989d27..00000000000 --- a/_downloads/contourf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf3d_2.py \ No newline at end of file diff --git a/_downloads/contourf_demo.ipynb b/_downloads/contourf_demo.ipynb deleted file mode 120000 index 4a6faff614f..00000000000 --- a/_downloads/contourf_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf_demo.ipynb \ No newline at end of file diff --git a/_downloads/contourf_demo.py b/_downloads/contourf_demo.py deleted file mode 120000 index ba9ebf3f8e0..00000000000 --- a/_downloads/contourf_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf_demo.py \ No newline at end of file diff --git a/_downloads/contourf_hatching.ipynb b/_downloads/contourf_hatching.ipynb deleted file mode 120000 index 79127fc7f2e..00000000000 --- a/_downloads/contourf_hatching.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf_hatching.ipynb \ No newline at end of file diff --git a/_downloads/contourf_hatching.py b/_downloads/contourf_hatching.py deleted file mode 120000 index c981c33abad..00000000000 --- a/_downloads/contourf_hatching.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf_hatching.py \ No newline at end of file diff --git a/_downloads/contourf_log.ipynb b/_downloads/contourf_log.ipynb deleted file mode 120000 index 0e538fa882e..00000000000 --- a/_downloads/contourf_log.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf_log.ipynb \ No newline at end of file diff --git a/_downloads/contourf_log.py b/_downloads/contourf_log.py deleted file mode 120000 index 50d34869835..00000000000 --- a/_downloads/contourf_log.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/contourf_log.py \ No newline at end of file diff --git a/_downloads/coords_demo.ipynb b/_downloads/coords_demo.ipynb deleted file mode 120000 index 79a921fa7ef..00000000000 --- a/_downloads/coords_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/coords_demo.ipynb \ No newline at end of file diff --git a/_downloads/coords_demo.py b/_downloads/coords_demo.py deleted file mode 120000 index b53ca1d266f..00000000000 --- a/_downloads/coords_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/coords_demo.py \ No newline at end of file diff --git a/_downloads/coords_report.ipynb b/_downloads/coords_report.ipynb deleted file mode 120000 index 592320172e5..00000000000 --- a/_downloads/coords_report.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/coords_report.ipynb \ No newline at end of file diff --git a/_downloads/coords_report.py b/_downloads/coords_report.py deleted file mode 120000 index 282083900c8..00000000000 --- a/_downloads/coords_report.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/coords_report.py \ No newline at end of file diff --git a/_downloads/create_subplots.ipynb b/_downloads/create_subplots.ipynb deleted file mode 120000 index b6b3b1afb48..00000000000 --- a/_downloads/create_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/create_subplots.ipynb \ No newline at end of file diff --git a/_downloads/create_subplots.py b/_downloads/create_subplots.py deleted file mode 120000 index 62fb9c3f757..00000000000 --- a/_downloads/create_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/create_subplots.py \ No newline at end of file diff --git a/_downloads/csd_demo.ipynb b/_downloads/csd_demo.ipynb deleted file mode 120000 index 98f1699d0ca..00000000000 --- a/_downloads/csd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/csd_demo.ipynb \ No newline at end of file diff --git a/_downloads/csd_demo.py b/_downloads/csd_demo.py deleted file mode 120000 index 5ab8d38cc62..00000000000 --- a/_downloads/csd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/csd_demo.py \ No newline at end of file diff --git a/_downloads/cursor.ipynb b/_downloads/cursor.ipynb deleted file mode 120000 index 54b753ac7c7..00000000000 --- a/_downloads/cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/cursor.ipynb \ No newline at end of file diff --git a/_downloads/cursor.py b/_downloads/cursor.py deleted file mode 120000 index 41f79511cf2..00000000000 --- a/_downloads/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/cursor.py \ No newline at end of file diff --git a/_downloads/cursor_demo_sgskip.ipynb b/_downloads/cursor_demo_sgskip.ipynb deleted file mode 120000 index d2f1419c200..00000000000 --- a/_downloads/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/cursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/cursor_demo_sgskip.py b/_downloads/cursor_demo_sgskip.py deleted file mode 120000 index 59de9ab5c97..00000000000 --- a/_downloads/cursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/cursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/custom_boxstyle01.ipynb b/_downloads/custom_boxstyle01.ipynb deleted file mode 120000 index 3681657fbab..00000000000 --- a/_downloads/custom_boxstyle01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_boxstyle01.ipynb \ No newline at end of file diff --git a/_downloads/custom_boxstyle01.py b/_downloads/custom_boxstyle01.py deleted file mode 120000 index 97074eed256..00000000000 --- a/_downloads/custom_boxstyle01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_boxstyle01.py \ No newline at end of file diff --git a/_downloads/custom_boxstyle02.ipynb b/_downloads/custom_boxstyle02.ipynb deleted file mode 120000 index d40b50086e0..00000000000 --- a/_downloads/custom_boxstyle02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_boxstyle02.ipynb \ No newline at end of file diff --git a/_downloads/custom_boxstyle02.py b/_downloads/custom_boxstyle02.py deleted file mode 120000 index d11066efeaa..00000000000 --- a/_downloads/custom_boxstyle02.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_boxstyle02.py \ No newline at end of file diff --git a/_downloads/custom_cmap.ipynb b/_downloads/custom_cmap.ipynb deleted file mode 120000 index 54cb0113f8d..00000000000 --- a/_downloads/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/custom_cmap.py b/_downloads/custom_cmap.py deleted file mode 120000 index ce6eeb093e8..00000000000 --- a/_downloads/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_cmap.py \ No newline at end of file diff --git a/_downloads/custom_figure_class.ipynb b/_downloads/custom_figure_class.ipynb deleted file mode 120000 index 1057031e913..00000000000 --- a/_downloads/custom_figure_class.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_figure_class.ipynb \ No newline at end of file diff --git a/_downloads/custom_figure_class.py b/_downloads/custom_figure_class.py deleted file mode 120000 index af3403653b2..00000000000 --- a/_downloads/custom_figure_class.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_figure_class.py \ No newline at end of file diff --git a/_downloads/custom_legends.ipynb b/_downloads/custom_legends.ipynb deleted file mode 120000 index 8d346b5047e..00000000000 --- a/_downloads/custom_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_legends.ipynb \ No newline at end of file diff --git a/_downloads/custom_legends.py b/_downloads/custom_legends.py deleted file mode 120000 index f8a19f77142..00000000000 --- a/_downloads/custom_legends.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_legends.py \ No newline at end of file diff --git a/_downloads/custom_projection.ipynb b/_downloads/custom_projection.ipynb deleted file mode 120000 index 07ae7733805..00000000000 --- a/_downloads/custom_projection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_projection.ipynb \ No newline at end of file diff --git a/_downloads/custom_projection.py b/_downloads/custom_projection.py deleted file mode 120000 index 2c437ab35de..00000000000 --- a/_downloads/custom_projection.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_projection.py \ No newline at end of file diff --git a/_downloads/custom_projection_example.ipynb b/_downloads/custom_projection_example.ipynb deleted file mode 120000 index 58876d037d3..00000000000 --- a/_downloads/custom_projection_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_downloads/custom_projection_example.ipynb \ No newline at end of file diff --git a/_downloads/custom_projection_example.py b/_downloads/custom_projection_example.py deleted file mode 120000 index 39b688cfe9a..00000000000 --- a/_downloads/custom_projection_example.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_downloads/custom_projection_example.py \ No newline at end of file diff --git a/_downloads/custom_scale.ipynb b/_downloads/custom_scale.ipynb deleted file mode 120000 index 61c62c150a6..00000000000 --- a/_downloads/custom_scale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_scale.ipynb \ No newline at end of file diff --git a/_downloads/custom_scale.py b/_downloads/custom_scale.py deleted file mode 120000 index b9fe2d46428..00000000000 --- a/_downloads/custom_scale.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_scale.py \ No newline at end of file diff --git a/_downloads/custom_scale_example.ipynb b/_downloads/custom_scale_example.ipynb deleted file mode 120000 index db942d8c5ea..00000000000 --- a/_downloads/custom_scale_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_downloads/custom_scale_example.ipynb \ No newline at end of file diff --git a/_downloads/custom_scale_example.py b/_downloads/custom_scale_example.py deleted file mode 120000 index f7546bff6c5..00000000000 --- a/_downloads/custom_scale_example.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_downloads/custom_scale_example.py \ No newline at end of file diff --git a/_downloads/custom_shaded_3d_surface.ipynb b/_downloads/custom_shaded_3d_surface.ipynb deleted file mode 120000 index ccf8f379e81..00000000000 --- a/_downloads/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_shaded_3d_surface.ipynb \ No newline at end of file diff --git a/_downloads/custom_shaded_3d_surface.py b/_downloads/custom_shaded_3d_surface.py deleted file mode 120000 index aff6a06e5c6..00000000000 --- a/_downloads/custom_shaded_3d_surface.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_shaded_3d_surface.py \ No newline at end of file diff --git a/_downloads/custom_ticker1.ipynb b/_downloads/custom_ticker1.ipynb deleted file mode 120000 index 874837c1daa..00000000000 --- a/_downloads/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/custom_ticker1.py b/_downloads/custom_ticker1.py deleted file mode 120000 index 6dd81693300..00000000000 --- a/_downloads/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/customize_rc.ipynb b/_downloads/customize_rc.ipynb deleted file mode 120000 index 5cf3d4555ab..00000000000 --- a/_downloads/customize_rc.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/customize_rc.ipynb \ No newline at end of file diff --git a/_downloads/customize_rc.py b/_downloads/customize_rc.py deleted file mode 120000 index 06015fc822d..00000000000 --- a/_downloads/customize_rc.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/customize_rc.py \ No newline at end of file diff --git a/_downloads/customized_violin.ipynb b/_downloads/customized_violin.ipynb deleted file mode 120000 index e9302f7773f..00000000000 --- a/_downloads/customized_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/customized_violin.ipynb \ No newline at end of file diff --git a/_downloads/customized_violin.py b/_downloads/customized_violin.py deleted file mode 120000 index ef9ef6ca8eb..00000000000 --- a/_downloads/customized_violin.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/customized_violin.py \ No newline at end of file diff --git a/_downloads/customizing.ipynb b/_downloads/customizing.ipynb deleted file mode 120000 index 3d1ffa5c57b..00000000000 --- a/_downloads/customizing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/customizing.ipynb \ No newline at end of file diff --git a/_downloads/customizing.py b/_downloads/customizing.py deleted file mode 120000 index 40ce036f76a..00000000000 --- a/_downloads/customizing.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/customizing.py \ No newline at end of file diff --git a/_downloads/d00c1daefd5825c8e7ad3262d8ca86f3/bar_of_pie.py b/_downloads/d00c1daefd5825c8e7ad3262d8ca86f3/bar_of_pie.py deleted file mode 100644 index 637092d1b8e..00000000000 --- a/_downloads/d00c1daefd5825c8e7ad3262d8ca86f3/bar_of_pie.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -========== -Bar of pie -========== - -Make a "bar of pie" chart where the first slice of the pie is -"exploded" into a bar chart with a further breakdown of said slice's -characteristics. The example demonstrates using a figure with multiple -sets of axes and using the axes patches list to add two ConnectionPatches -to link the subplot charts. -""" - -import matplotlib.pyplot as plt -from matplotlib.patches import ConnectionPatch -import numpy as np - -# make figure and assign axis objects -fig = plt.figure(figsize=(9, 5.0625)) -ax1 = fig.add_subplot(121) -ax2 = fig.add_subplot(122) -fig.subplots_adjust(wspace=0) - -# pie chart parameters -ratios = [.27, .56, .17] -labels = ['Approve', 'Disapprove', 'Undecided'] -explode = [0.1, 0, 0] -# rotate so that first wedge is split by the x-axis -angle = -180 * ratios[0] -ax1.pie(ratios, autopct='%1.1f%%', startangle=angle, - labels=labels, explode=explode) - -# bar chart parameters - -xpos = 0 -bottom = 0 -ratios = [.33, .54, .07, .06] -width = .2 -colors = [[.1, .3, .5], [.1, .3, .3], [.1, .3, .7], [.1, .3, .9]] - -for j in range(len(ratios)): - height = ratios[j] - ax2.bar(xpos, height, width, bottom=bottom, color=colors[j]) - ypos = bottom + ax2.patches[j].get_height() / 2 - bottom += height - ax2.text(xpos, ypos, "%d%%" % (ax2.patches[j].get_height() * 100), - ha='center') - -ax2.set_title('Age of approvers') -ax2.legend(('50-65', 'Over 65', '35-49', 'Under 35')) -ax2.axis('off') -ax2.set_xlim(- 2.5 * width, 2.5 * width) - -# use ConnectionPatch to draw lines between the two plots -# get the wedge data -theta1, theta2 = ax1.patches[0].theta1, ax1.patches[0].theta2 -center, r = ax1.patches[0].center, ax1.patches[0].r -bar_height = sum([item.get_height() for item in ax2.patches]) - -# draw top connecting line -x = r * np.cos(np.pi / 180 * theta2) + center[0] -y = np.sin(np.pi / 180 * theta2) + center[1] -con = ConnectionPatch(xyA=(- width / 2, bar_height), xyB=(x, y), - coordsA="data", coordsB="data", axesA=ax2, axesB=ax1) -con.set_color([0, 0, 0]) -con.set_linewidth(4) -ax2.add_artist(con) - -# draw bottom connecting line -x = r * np.cos(np.pi / 180 * theta1) + center[0] -y = np.sin(np.pi / 180 * theta1) + center[1] -con = ConnectionPatch(xyA=(- width / 2, 0), xyB=(x, y), coordsA="data", - coordsB="data", axesA=ax2, axesB=ax1) -con.set_color([0, 0, 0]) -ax2.add_artist(con) -con.set_linewidth(4) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.axes.Axes.bar -matplotlib.pyplot -matplotlib.patches.ConnectionPatch diff --git a/_downloads/d0122eceeefe5edbdb8cb4e2fcfe7aea/pyplot_mathtext.py b/_downloads/d0122eceeefe5edbdb8cb4e2fcfe7aea/pyplot_mathtext.py deleted file mode 120000 index 4bac2418516..00000000000 --- a/_downloads/d0122eceeefe5edbdb8cb4e2fcfe7aea/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d0122eceeefe5edbdb8cb4e2fcfe7aea/pyplot_mathtext.py \ No newline at end of file diff --git a/_downloads/d0141c97ca8c36319384c707e7c5c3d7/quiver_simple_demo.ipynb b/_downloads/d0141c97ca8c36319384c707e7c5c3d7/quiver_simple_demo.ipynb deleted file mode 120000 index 7dee5c30966..00000000000 --- a/_downloads/d0141c97ca8c36319384c707e7c5c3d7/quiver_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d0141c97ca8c36319384c707e7c5c3d7/quiver_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/d02b8efc935a126bafedc7db5d0ee6a9/tricontour_demo.ipynb b/_downloads/d02b8efc935a126bafedc7db5d0ee6a9/tricontour_demo.ipynb deleted file mode 120000 index 70c3e4217ff..00000000000 --- a/_downloads/d02b8efc935a126bafedc7db5d0ee6a9/tricontour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d02b8efc935a126bafedc7db5d0ee6a9/tricontour_demo.ipynb \ No newline at end of file diff --git a/_downloads/d02cc2ec62705926879bef2873a94cc1/blitting.ipynb b/_downloads/d02cc2ec62705926879bef2873a94cc1/blitting.ipynb deleted file mode 120000 index 445e27b55a1..00000000000 --- a/_downloads/d02cc2ec62705926879bef2873a94cc1/blitting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d02cc2ec62705926879bef2873a94cc1/blitting.ipynb \ No newline at end of file diff --git a/_downloads/d0391869d8016366890f7ba230a8a529/data_browser.py b/_downloads/d0391869d8016366890f7ba230a8a529/data_browser.py deleted file mode 100644 index 461bf0afb60..00000000000 --- a/_downloads/d0391869d8016366890f7ba230a8a529/data_browser.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -============ -Data Browser -============ - -Connecting data between multiple canvases. - -This example covers how to interact data with multiple canvases. This -let's you select and highlight a point on one axis, and generating the -data of that point on the other axis. -""" -import numpy as np - - -class PointBrowser(object): - """ - Click on a point to select and highlight it -- the data that - generated the point will be shown in the lower axes. Use the 'n' - and 'p' keys to browse through the next and previous points - """ - - def __init__(self): - self.lastind = 0 - - self.text = ax.text(0.05, 0.95, 'selected: none', - transform=ax.transAxes, va='top') - self.selected, = ax.plot([xs[0]], [ys[0]], 'o', ms=12, alpha=0.4, - color='yellow', visible=False) - - def onpress(self, event): - if self.lastind is None: - return - if event.key not in ('n', 'p'): - return - if event.key == 'n': - inc = 1 - else: - inc = -1 - - self.lastind += inc - self.lastind = np.clip(self.lastind, 0, len(xs) - 1) - self.update() - - def onpick(self, event): - - if event.artist != line: - return True - - N = len(event.ind) - if not N: - return True - - # the click locations - x = event.mouseevent.xdata - y = event.mouseevent.ydata - - distances = np.hypot(x - xs[event.ind], y - ys[event.ind]) - indmin = distances.argmin() - dataind = event.ind[indmin] - - self.lastind = dataind - self.update() - - def update(self): - if self.lastind is None: - return - - dataind = self.lastind - - ax2.cla() - ax2.plot(X[dataind]) - - ax2.text(0.05, 0.9, 'mu=%1.3f\nsigma=%1.3f' % (xs[dataind], ys[dataind]), - transform=ax2.transAxes, va='top') - ax2.set_ylim(-0.5, 1.5) - self.selected.set_visible(True) - self.selected.set_data(xs[dataind], ys[dataind]) - - self.text.set_text('selected: %d' % dataind) - fig.canvas.draw() - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - # Fixing random state for reproducibility - np.random.seed(19680801) - - X = np.random.rand(100, 200) - xs = np.mean(X, axis=1) - ys = np.std(X, axis=1) - - fig, (ax, ax2) = plt.subplots(2, 1) - ax.set_title('click on point to plot time series') - line, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance - - browser = PointBrowser() - - fig.canvas.mpl_connect('pick_event', browser.onpick) - fig.canvas.mpl_connect('key_press_event', browser.onpress) - - plt.show() diff --git a/_downloads/d03bdf40a4f0de8feaf9a0abaaa2316d/triplot_demo.ipynb b/_downloads/d03bdf40a4f0de8feaf9a0abaaa2316d/triplot_demo.ipynb deleted file mode 100644 index 085af29cb06..00000000000 --- a/_downloads/d03bdf40a4f0de8feaf9a0abaaa2316d/triplot_demo.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Triplot Demo\n\n\nCreating and plotting unstructured triangular grids.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating a Triangulation without specifying the triangles results in the\nDelaunay triangulation of the points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# First create the x and y coordinates of the points.\nn_angles = 36\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the triangulation.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_aspect('equal')\nax1.triplot(triang, 'bo-', lw=1)\nax1.set_title('triplot of Delaunay triangulation')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify your own triangulation rather than perform a Delaunay\ntriangulation of the points, where each triangle is given by the indices of\nthe three points that make up the triangle, ordered in either a clockwise or\nanticlockwise manner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xy = np.asarray([\n [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890],\n [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898],\n [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919],\n [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949],\n [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959],\n [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965],\n [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980],\n [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996],\n [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021],\n [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005],\n [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987],\n [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968],\n [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926],\n [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905],\n [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886],\n [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879],\n [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872],\n [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933],\n [-0.077, 0.990], [-0.059, 0.993]])\nx = np.degrees(xy[:, 0])\ny = np.degrees(xy[:, 1])\n\ntriangles = np.asarray([\n [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64],\n [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63],\n [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68],\n [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7],\n [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9],\n [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12],\n [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71],\n [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71],\n [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19],\n [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24],\n [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28],\n [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45],\n [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40],\n [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40],\n [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38],\n [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Rather than create a Triangulation object, can simply pass x, y and triangles\narrays to triplot directly. It would be better to use a Triangulation object\nif the same triangulation was to be used more than once to save duplicated\ncalculations.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_aspect('equal')\nax2.triplot(x, y, triangles, 'go-', lw=1.0)\nax2.set_title('triplot of user-specified triangulation')\nax2.set_xlabel('Longitude (degrees)')\nax2.set_ylabel('Latitude (degrees)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.tri\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d04433a732a8752afc24de8698571fff/bxp.py b/_downloads/d04433a732a8752afc24de8698571fff/bxp.py deleted file mode 120000 index 453ebfe6d37..00000000000 --- a/_downloads/d04433a732a8752afc24de8698571fff/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d04433a732a8752afc24de8698571fff/bxp.py \ No newline at end of file diff --git a/_downloads/d049a04e415e1cc342f50e155d5d36bb/watermark_image.py b/_downloads/d049a04e415e1cc342f50e155d5d36bb/watermark_image.py deleted file mode 100644 index 38a3aa0d965..00000000000 --- a/_downloads/d049a04e415e1cc342f50e155d5d36bb/watermark_image.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=============== -Watermark image -=============== - -Using a PNG file as a watermark. -""" - -import numpy as np -import matplotlib.cbook as cbook -import matplotlib.image as image -import matplotlib.pyplot as plt - - -with cbook.get_sample_data('logo2.png') as file: - im = image.imread(file) - -fig, ax = plt.subplots() - -ax.plot(np.sin(10 * np.linspace(0, 1)), '-o', ms=20, alpha=0.7, mfc='orange') -ax.grid() -fig.figimage(im, 10, 10, zorder=3, alpha=.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.image -matplotlib.image.imread -matplotlib.pyplot.imread -matplotlib.figure.Figure.figimage diff --git a/_downloads/d04be327aa133db4a6329fc3eb8e96ae/poly_editor.py b/_downloads/d04be327aa133db4a6329fc3eb8e96ae/poly_editor.py deleted file mode 100644 index 1afa89bffd1..00000000000 --- a/_downloads/d04be327aa133db4a6329fc3eb8e96ae/poly_editor.py +++ /dev/null @@ -1,209 +0,0 @@ -""" -=========== -Poly Editor -=========== - -This is an example to show how to build cross-GUI applications using -Matplotlib event handling to interact with objects on the canvas. -""" -import numpy as np -from matplotlib.lines import Line2D -from matplotlib.artist import Artist - - -def dist(x, y): - """ - Return the distance between two points. - """ - d = x - y - return np.sqrt(np.dot(d, d)) - - -def dist_point_to_segment(p, s0, s1): - """ - Get the distance of a point to a segment. - *p*, *s0*, *s1* are *xy* sequences - This algorithm from - http://geomalgorithms.com/a02-_lines.html - """ - v = s1 - s0 - w = p - s0 - c1 = np.dot(w, v) - if c1 <= 0: - return dist(p, s0) - c2 = np.dot(v, v) - if c2 <= c1: - return dist(p, s1) - b = c1 / c2 - pb = s0 + b * v - return dist(p, pb) - - -class PolygonInteractor(object): - """ - A polygon editor. - - Key-bindings - - 't' toggle vertex markers on and off. When vertex markers are on, - you can move them, delete them - - 'd' delete the vertex under point - - 'i' insert a vertex at point. You must be within epsilon of the - line connecting two existing vertices - - """ - - showverts = True - epsilon = 5 # max pixel distance to count as a vertex hit - - def __init__(self, ax, poly): - if poly.figure is None: - raise RuntimeError('You must first add the polygon to a figure ' - 'or canvas before defining the interactor') - self.ax = ax - canvas = poly.figure.canvas - self.poly = poly - - x, y = zip(*self.poly.xy) - self.line = Line2D(x, y, - marker='o', markerfacecolor='r', - animated=True) - self.ax.add_line(self.line) - - self.cid = self.poly.add_callback(self.poly_changed) - self._ind = None # the active vert - - canvas.mpl_connect('draw_event', self.draw_callback) - canvas.mpl_connect('button_press_event', self.button_press_callback) - canvas.mpl_connect('key_press_event', self.key_press_callback) - canvas.mpl_connect('button_release_event', self.button_release_callback) - canvas.mpl_connect('motion_notify_event', self.motion_notify_callback) - self.canvas = canvas - - def draw_callback(self, event): - self.background = self.canvas.copy_from_bbox(self.ax.bbox) - self.ax.draw_artist(self.poly) - self.ax.draw_artist(self.line) - # do not need to blit here, this will fire before the screen is - # updated - - def poly_changed(self, poly): - 'this method is called whenever the polygon object is called' - # only copy the artist props to the line (except visibility) - vis = self.line.get_visible() - Artist.update_from(self.line, poly) - self.line.set_visible(vis) # don't use the poly visibility state - - def get_ind_under_point(self, event): - 'get the index of the vertex under point if within epsilon tolerance' - - # display coords - xy = np.asarray(self.poly.xy) - xyt = self.poly.get_transform().transform(xy) - xt, yt = xyt[:, 0], xyt[:, 1] - d = np.hypot(xt - event.x, yt - event.y) - indseq, = np.nonzero(d == d.min()) - ind = indseq[0] - - if d[ind] >= self.epsilon: - ind = None - - return ind - - def button_press_callback(self, event): - 'whenever a mouse button is pressed' - if not self.showverts: - return - if event.inaxes is None: - return - if event.button != 1: - return - self._ind = self.get_ind_under_point(event) - - def button_release_callback(self, event): - 'whenever a mouse button is released' - if not self.showverts: - return - if event.button != 1: - return - self._ind = None - - def key_press_callback(self, event): - 'whenever a key is pressed' - if not event.inaxes: - return - if event.key == 't': - self.showverts = not self.showverts - self.line.set_visible(self.showverts) - if not self.showverts: - self._ind = None - elif event.key == 'd': - ind = self.get_ind_under_point(event) - if ind is not None: - self.poly.xy = np.delete(self.poly.xy, - ind, axis=0) - self.line.set_data(zip(*self.poly.xy)) - elif event.key == 'i': - xys = self.poly.get_transform().transform(self.poly.xy) - p = event.x, event.y # display coords - for i in range(len(xys) - 1): - s0 = xys[i] - s1 = xys[i + 1] - d = dist_point_to_segment(p, s0, s1) - if d <= self.epsilon: - self.poly.xy = np.insert( - self.poly.xy, i+1, - [event.xdata, event.ydata], - axis=0) - self.line.set_data(zip(*self.poly.xy)) - break - if self.line.stale: - self.canvas.draw_idle() - - def motion_notify_callback(self, event): - 'on mouse movement' - if not self.showverts: - return - if self._ind is None: - return - if event.inaxes is None: - return - if event.button != 1: - return - x, y = event.xdata, event.ydata - - self.poly.xy[self._ind] = x, y - if self._ind == 0: - self.poly.xy[-1] = x, y - elif self._ind == len(self.poly.xy) - 1: - self.poly.xy[0] = x, y - self.line.set_data(zip(*self.poly.xy)) - - self.canvas.restore_region(self.background) - self.ax.draw_artist(self.poly) - self.ax.draw_artist(self.line) - self.canvas.blit(self.ax.bbox) - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - from matplotlib.patches import Polygon - - theta = np.arange(0, 2*np.pi, 0.1) - r = 1.5 - - xs = r * np.cos(theta) - ys = r * np.sin(theta) - - poly = Polygon(np.column_stack([xs, ys]), animated=True) - - fig, ax = plt.subplots() - ax.add_patch(poly) - p = PolygonInteractor(ax, poly) - - ax.set_title('Click and drag a point to move it') - ax.set_xlim((-2, 2)) - ax.set_ylim((-2, 2)) - plt.show() diff --git a/_downloads/d04ebd75100ae3004ec88bb7a2953200/customizing.ipynb b/_downloads/d04ebd75100ae3004ec88bb7a2953200/customizing.ipynb deleted file mode 120000 index bf0b5e5b635..00000000000 --- a/_downloads/d04ebd75100ae3004ec88bb7a2953200/customizing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d04ebd75100ae3004ec88bb7a2953200/customizing.ipynb \ No newline at end of file diff --git a/_downloads/d0507fcb75c42bc21dde983c3cd8ca31/keyword_plotting.ipynb b/_downloads/d0507fcb75c42bc21dde983c3cd8ca31/keyword_plotting.ipynb deleted file mode 120000 index d7a757b0e76..00000000000 --- a/_downloads/d0507fcb75c42bc21dde983c3cd8ca31/keyword_plotting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d0507fcb75c42bc21dde983c3cd8ca31/keyword_plotting.ipynb \ No newline at end of file diff --git a/_downloads/d0512abc47b06d4cc416f01aa25e7098/ginput_manual_clabel_sgskip.py b/_downloads/d0512abc47b06d4cc416f01aa25e7098/ginput_manual_clabel_sgskip.py deleted file mode 100644 index 0dc41b05230..00000000000 --- a/_downloads/d0512abc47b06d4cc416f01aa25e7098/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -===================== -Interactive functions -===================== - -This provides examples of uses of interactive functions, such as ginput, -waitforbuttonpress and manual clabel placement. - -This script must be run interactively using a backend that has a -graphical user interface (for example, using GTK3Agg backend, but not -PS backend). - -""" - -import time - -import numpy as np -import matplotlib.pyplot as plt - - -def tellme(s): - print(s) - plt.title(s, fontsize=16) - plt.draw() - -################################################## -# Define a triangle by clicking three points - - -plt.clf() -plt.setp(plt.gca(), autoscale_on=False) - -tellme('You will define a triangle, click to begin') - -plt.waitforbuttonpress() - -while True: - pts = [] - while len(pts) < 3: - tellme('Select 3 corners with mouse') - pts = np.asarray(plt.ginput(3, timeout=-1)) - if len(pts) < 3: - tellme('Too few points, starting over') - time.sleep(1) # Wait a second - - ph = plt.fill(pts[:, 0], pts[:, 1], 'r', lw=2) - - tellme('Happy? Key click for yes, mouse click for no') - - if plt.waitforbuttonpress(): - break - - # Get rid of fill - for p in ph: - p.remove() - - -################################################## -# Now contour according to distance from triangle -# corners - just an example - -# Define a nice function of distance from individual pts -def f(x, y, pts): - z = np.zeros_like(x) - for p in pts: - z = z + 1/(np.sqrt((x - p[0])**2 + (y - p[1])**2)) - return 1/z - - -X, Y = np.meshgrid(np.linspace(-1, 1, 51), np.linspace(-1, 1, 51)) -Z = f(X, Y, pts) - -CS = plt.contour(X, Y, Z, 20) - -tellme('Use mouse to select contour label locations, middle button to finish') -CL = plt.clabel(CS, manual=True) - -################################################## -# Now do a zoom - -tellme('Now do a nested zoom, click to begin') -plt.waitforbuttonpress() - -while True: - tellme('Select two corners of zoom, middle mouse button to finish') - pts = plt.ginput(2, timeout=-1) - if len(pts) < 2: - break - (x0, y0), (x1, y1) = pts - xmin, xmax = sorted([x0, x1]) - ymin, ymax = sorted([y0, y1]) - plt.xlim(xmin, xmax) - plt.ylim(ymin, ymax) - -tellme('All Done!') -plt.show() diff --git a/_downloads/d05ed888d583203af10b1cfc593ce7bf/barb_demo.py b/_downloads/d05ed888d583203af10b1cfc593ce7bf/barb_demo.py deleted file mode 120000 index af16026a070..00000000000 --- a/_downloads/d05ed888d583203af10b1cfc593ce7bf/barb_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d05ed888d583203af10b1cfc593ce7bf/barb_demo.py \ No newline at end of file diff --git a/_downloads/d068f88cea39314c1b79c61e63f18720/demo_axes_hbox_divider.py b/_downloads/d068f88cea39314c1b79c61e63f18720/demo_axes_hbox_divider.py deleted file mode 120000 index d189b22dc3f..00000000000 --- a/_downloads/d068f88cea39314c1b79c61e63f18720/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d068f88cea39314c1b79c61e63f18720/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/_downloads/d07b332e3a4977a45326200de01a1ca2/annotate_simple01.py b/_downloads/d07b332e3a4977a45326200de01a1ca2/annotate_simple01.py deleted file mode 120000 index 51c3d4934f3..00000000000 --- a/_downloads/d07b332e3a4977a45326200de01a1ca2/annotate_simple01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d07b332e3a4977a45326200de01a1ca2/annotate_simple01.py \ No newline at end of file diff --git a/_downloads/d07d41c9d29de2e2b49c8645d4072882/bar_unit_demo.ipynb b/_downloads/d07d41c9d29de2e2b49c8645d4072882/bar_unit_demo.ipynb deleted file mode 120000 index e5ef713f5dc..00000000000 --- a/_downloads/d07d41c9d29de2e2b49c8645d4072882/bar_unit_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d07d41c9d29de2e2b49c8645d4072882/bar_unit_demo.ipynb \ No newline at end of file diff --git a/_downloads/d0859feb4127da77ac9966bac296198a/image_slices_viewer.ipynb b/_downloads/d0859feb4127da77ac9966bac296198a/image_slices_viewer.ipynb deleted file mode 120000 index 83d74e93a9d..00000000000 --- a/_downloads/d0859feb4127da77ac9966bac296198a/image_slices_viewer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d0859feb4127da77ac9966bac296198a/image_slices_viewer.ipynb \ No newline at end of file diff --git a/_downloads/d08737a170753848fad9150be6254074/colormap_normalizations_lognorm.py b/_downloads/d08737a170753848fad9150be6254074/colormap_normalizations_lognorm.py deleted file mode 120000 index 4a9eaea55f7..00000000000 --- a/_downloads/d08737a170753848fad9150be6254074/colormap_normalizations_lognorm.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d08737a170753848fad9150be6254074/colormap_normalizations_lognorm.py \ No newline at end of file diff --git a/_downloads/d09144c4107ab96d8a55006e711872ef/scalarformatter.py b/_downloads/d09144c4107ab96d8a55006e711872ef/scalarformatter.py deleted file mode 120000 index b7c60b10491..00000000000 --- a/_downloads/d09144c4107ab96d8a55006e711872ef/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d09144c4107ab96d8a55006e711872ef/scalarformatter.py \ No newline at end of file diff --git a/_downloads/d094cac2dbdb8f7511086c4d28cbb74e/trifinder_event_demo.ipynb b/_downloads/d094cac2dbdb8f7511086c4d28cbb74e/trifinder_event_demo.ipynb deleted file mode 100644 index 7c99fd07e1e..00000000000 --- a/_downloads/d094cac2dbdb8f7511086c4d28cbb74e/trifinder_event_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Trifinder Event Demo\n\n\nExample showing the use of a TriFinder object. As the mouse is moved over the\ntriangulation, the triangle under the cursor is highlighted and the index of\nthe triangle is displayed in the plot title.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.tri import Triangulation\nfrom matplotlib.patches import Polygon\nimport numpy as np\n\n\ndef update_polygon(tri):\n if tri == -1:\n points = [0, 0, 0]\n else:\n points = triang.triangles[tri]\n xs = triang.x[points]\n ys = triang.y[points]\n polygon.set_xy(np.column_stack([xs, ys]))\n\n\ndef motion_notify(event):\n if event.inaxes is None:\n tri = -1\n else:\n tri = trifinder(event.xdata, event.ydata)\n update_polygon(tri)\n plt.title('In triangle %i' % tri)\n event.canvas.draw()\n\n\n# Create a Triangulation.\nn_angles = 16\nn_radii = 5\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\ntriang = Triangulation(x, y)\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\n# Use the triangulation's default TriFinder object.\ntrifinder = triang.get_trifinder()\n\n# Setup plot and callbacks.\nplt.subplot(111, aspect='equal')\nplt.triplot(triang, 'bo-')\npolygon = Polygon([[0, 0], [0, 0]], facecolor='y') # dummy data for xs,ys\nupdate_polygon(-1)\nplt.gca().add_patch(polygon)\nplt.gcf().canvas.mpl_connect('motion_notify_event', motion_notify)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d09a6ddd0daca599aeda62065ad57a06/transoffset.ipynb b/_downloads/d09a6ddd0daca599aeda62065ad57a06/transoffset.ipynb deleted file mode 120000 index e9c34d4e758..00000000000 --- a/_downloads/d09a6ddd0daca599aeda62065ad57a06/transoffset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d09a6ddd0daca599aeda62065ad57a06/transoffset.ipynb \ No newline at end of file diff --git a/_downloads/d09def096c5cc7e6df616c649c165bf8/plotfile_demo.py b/_downloads/d09def096c5cc7e6df616c649c165bf8/plotfile_demo.py deleted file mode 100644 index d55323b1f7c..00000000000 --- a/_downloads/d09def096c5cc7e6df616c649c165bf8/plotfile_demo.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -============= -Plotfile Demo -============= - -Example use of ``plotfile`` to plot data directly from a file. -""" - -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook - -fname = cbook.get_sample_data('msft.csv', asfileobj=False) -fname2 = cbook.get_sample_data('data_x_x2_x3.csv', asfileobj=False) - -# test 1; use ints -plt.plotfile(fname, (0, 5, 6)) - -# test 2; use names -plt.plotfile(fname, ('date', 'volume', 'adj_close')) - -# test 3; use semilogy for volume -plt.plotfile(fname, ('date', 'volume', 'adj_close'), - plotfuncs={'volume': 'semilogy'}) - -# test 4; use semilogy for volume -plt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'semilogy'}) - -# test 5; single subplot -plt.plotfile(fname, ('date', 'open', 'high', 'low', 'close'), subplots=False) - -# test 6; labeling, if no names in csv-file -plt.plotfile(fname2, cols=(0, 1, 2), delimiter=' ', - names=['$x$', '$f(x)=x^2$', '$f(x)=x^3$']) - -# test 7; more than one file per figure--illustrated here with a single file -plt.plotfile(fname2, cols=(0, 1), delimiter=' ') -plt.plotfile(fname2, cols=(0, 2), newfig=False, - delimiter=' ') # use current figure -plt.xlabel(r'$x$') -plt.ylabel(r'$f(x) = x^2, x^3$') - -# test 8; use bar for volume -plt.plotfile(fname, (0, 5, 6), plotfuncs={5: 'bar'}) - -plt.show() diff --git a/_downloads/d09ee8cd933b613a4fe541229e46b25f/power_norm.ipynb b/_downloads/d09ee8cd933b613a4fe541229e46b25f/power_norm.ipynb deleted file mode 120000 index 1376a720f46..00000000000 --- a/_downloads/d09ee8cd933b613a4fe541229e46b25f/power_norm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d09ee8cd933b613a4fe541229e46b25f/power_norm.ipynb \ No newline at end of file diff --git a/_downloads/d0ad43d4e98501b902fc33c56d634bde/bar_demo2.ipynb b/_downloads/d0ad43d4e98501b902fc33c56d634bde/bar_demo2.ipynb deleted file mode 120000 index cffcbfc7e23..00000000000 --- a/_downloads/d0ad43d4e98501b902fc33c56d634bde/bar_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d0ad43d4e98501b902fc33c56d634bde/bar_demo2.ipynb \ No newline at end of file diff --git a/_downloads/d0aedf1eb3064b446d84de54d5f16385/coords_demo.py b/_downloads/d0aedf1eb3064b446d84de54d5f16385/coords_demo.py deleted file mode 120000 index 88b816314d9..00000000000 --- a/_downloads/d0aedf1eb3064b446d84de54d5f16385/coords_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d0aedf1eb3064b446d84de54d5f16385/coords_demo.py \ No newline at end of file diff --git a/_downloads/d0b04b64ca44d0ac201bfb9a9024a689/psd_demo.py b/_downloads/d0b04b64ca44d0ac201bfb9a9024a689/psd_demo.py deleted file mode 120000 index 1bfd524f41f..00000000000 --- a/_downloads/d0b04b64ca44d0ac201bfb9a9024a689/psd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d0b04b64ca44d0ac201bfb9a9024a689/psd_demo.py \ No newline at end of file diff --git a/_downloads/d0b1d0ef963e5a6fbced40603e6a6e6c/named_colors.ipynb b/_downloads/d0b1d0ef963e5a6fbced40603e6a6e6c/named_colors.ipynb deleted file mode 120000 index 510bfb90528..00000000000 --- a/_downloads/d0b1d0ef963e5a6fbced40603e6a6e6c/named_colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d0b1d0ef963e5a6fbced40603e6a6e6c/named_colors.ipynb \ No newline at end of file diff --git a/_downloads/d0bc8551c994ffd2d5d967a8b09fc140/ftface_props.ipynb b/_downloads/d0bc8551c994ffd2d5d967a8b09fc140/ftface_props.ipynb deleted file mode 120000 index 7733816403c..00000000000 --- a/_downloads/d0bc8551c994ffd2d5d967a8b09fc140/ftface_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d0bc8551c994ffd2d5d967a8b09fc140/ftface_props.ipynb \ No newline at end of file diff --git a/_downloads/d0bda769956711625cee71000a6822f8/ftface_props.py b/_downloads/d0bda769956711625cee71000a6822f8/ftface_props.py deleted file mode 120000 index f7873e3388a..00000000000 --- a/_downloads/d0bda769956711625cee71000a6822f8/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d0bda769956711625cee71000a6822f8/ftface_props.py \ No newline at end of file diff --git a/_downloads/d0bdf28692705c9e7a4623ef755e30de/demo_parasite_axes.ipynb b/_downloads/d0bdf28692705c9e7a4623ef755e30de/demo_parasite_axes.ipynb deleted file mode 100644 index a237929c0dd..00000000000 --- a/_downloads/d0bdf28692705c9e7a4623ef755e30de/demo_parasite_axes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parasite Axes demo\n\n\nCreate a parasite axes. Such axes would share the x scale with a host axes,\nbut show a different scale in y direction.\n\nThis approach uses `mpl_toolkits.axes_grid1.parasite_axes.HostAxes` and\n`mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes`.\n\nAn alternative approach using standard Matplotlib subplots is shown in the\n:doc:`/gallery/ticks_and_spines/multiple_yaxis_with_spines` example.\n\nAn alternative approach using the `toolkit_axesgrid1-index`\nand `toolkit_axisartist-index` is found in the\n:doc:`/gallery/axisartist/demo_parasite_axes2` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axisartist.parasite_axes import HostAxes, ParasiteAxes\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\n\nhost = HostAxes(fig, [0.15, 0.1, 0.65, 0.8])\npar1 = ParasiteAxes(host, sharex=host)\npar2 = ParasiteAxes(host, sharex=host)\nhost.parasites.append(par1)\nhost.parasites.append(par2)\n\nhost.set_ylabel(\"Density\")\nhost.set_xlabel(\"Distance\")\n\nhost.axis[\"right\"].set_visible(False)\npar1.axis[\"right\"].set_visible(True)\npar1.set_ylabel(\"Temperature\")\n\npar1.axis[\"right\"].major_ticklabels.set_visible(True)\npar1.axis[\"right\"].label.set_visible(True)\n\npar2.set_ylabel(\"Velocity\")\noffset = (60, 0)\nnew_axisline = par2.get_grid_helper().new_fixed_axis\npar2.axis[\"right2\"] = new_axisline(loc=\"right\", axes=par2, offset=offset)\n\nfig.add_axes(host)\n\nhost.set_xlim(0, 2)\nhost.set_ylim(0, 2)\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar1.set_ylabel(\"Temperature\")\n\np1, = host.plot([0, 1, 2], [0, 1, 2], label=\"Density\")\np2, = par1.plot([0, 1, 2], [0, 3, 2], label=\"Temperature\")\np3, = par2.plot([0, 1, 2], [50, 30, 15], label=\"Velocity\")\n\npar1.set_ylim(0, 4)\npar2.set_ylim(1, 65)\n\nhost.legend()\n\nhost.axis[\"left\"].label.set_color(p1.get_color())\npar1.axis[\"right\"].label.set_color(p2.get_color())\npar2.axis[\"right2\"].label.set_color(p3.get_color())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d0bf54c2f8f1b5c0fef851a97d68ee00/annotation_demo.py b/_downloads/d0bf54c2f8f1b5c0fef851a97d68ee00/annotation_demo.py deleted file mode 120000 index 3e9f6cca344..00000000000 --- a/_downloads/d0bf54c2f8f1b5c0fef851a97d68ee00/annotation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d0bf54c2f8f1b5c0fef851a97d68ee00/annotation_demo.py \ No newline at end of file diff --git a/_downloads/d0c4e972ef3ab7562929253a4934da0f/font_table.ipynb b/_downloads/d0c4e972ef3ab7562929253a4934da0f/font_table.ipynb deleted file mode 120000 index 48d1df4ecf4..00000000000 --- a/_downloads/d0c4e972ef3ab7562929253a4934da0f/font_table.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d0c4e972ef3ab7562929253a4934da0f/font_table.ipynb \ No newline at end of file diff --git a/_downloads/d0cae8c4ea44b5b1dc18e7bca12eb0f0/path_editor.py b/_downloads/d0cae8c4ea44b5b1dc18e7bca12eb0f0/path_editor.py deleted file mode 120000 index 2c64c0d4087..00000000000 --- a/_downloads/d0cae8c4ea44b5b1dc18e7bca12eb0f0/path_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d0cae8c4ea44b5b1dc18e7bca12eb0f0/path_editor.py \ No newline at end of file diff --git a/_downloads/d0cf548024ec34afe70165103f0c64a2/embedding_in_qt_sgskip.py b/_downloads/d0cf548024ec34afe70165103f0c64a2/embedding_in_qt_sgskip.py deleted file mode 120000 index 23f2a30f704..00000000000 --- a/_downloads/d0cf548024ec34afe70165103f0c64a2/embedding_in_qt_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d0cf548024ec34afe70165103f0c64a2/embedding_in_qt_sgskip.py \ No newline at end of file diff --git a/_downloads/d0ed3987407228f035ebc122bb7ca3bf/line_with_text.ipynb b/_downloads/d0ed3987407228f035ebc122bb7ca3bf/line_with_text.ipynb deleted file mode 120000 index cf2dfa530e6..00000000000 --- a/_downloads/d0ed3987407228f035ebc122bb7ca3bf/line_with_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d0ed3987407228f035ebc122bb7ca3bf/line_with_text.ipynb \ No newline at end of file diff --git a/_downloads/d0ff8d2f0ff180100b38fce041a9b63f/simple_axisline2.py b/_downloads/d0ff8d2f0ff180100b38fce041a9b63f/simple_axisline2.py deleted file mode 120000 index fa65fe88203..00000000000 --- a/_downloads/d0ff8d2f0ff180100b38fce041a9b63f/simple_axisline2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d0ff8d2f0ff180100b38fce041a9b63f/simple_axisline2.py \ No newline at end of file diff --git a/_downloads/d1061d532cf56c6c6659a2ccf74536ff/hinton_demo.ipynb b/_downloads/d1061d532cf56c6c6659a2ccf74536ff/hinton_demo.ipynb deleted file mode 120000 index 0b4050d0b90..00000000000 --- a/_downloads/d1061d532cf56c6c6659a2ccf74536ff/hinton_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d1061d532cf56c6c6659a2ccf74536ff/hinton_demo.ipynb \ No newline at end of file diff --git a/_downloads/d10d0de4c4efa82daca1fa3f98c048cd/customize_rc.py b/_downloads/d10d0de4c4efa82daca1fa3f98c048cd/customize_rc.py deleted file mode 120000 index aa61a301dbb..00000000000 --- a/_downloads/d10d0de4c4efa82daca1fa3f98c048cd/customize_rc.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d10d0de4c4efa82daca1fa3f98c048cd/customize_rc.py \ No newline at end of file diff --git a/_downloads/d10f6d5393994b4fbd5692c633b2165b/axes_zoom_effect.ipynb b/_downloads/d10f6d5393994b4fbd5692c633b2165b/axes_zoom_effect.ipynb deleted file mode 120000 index 734c06c60b3..00000000000 --- a/_downloads/d10f6d5393994b4fbd5692c633b2165b/axes_zoom_effect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d10f6d5393994b4fbd5692c633b2165b/axes_zoom_effect.ipynb \ No newline at end of file diff --git a/_downloads/d110e378e7edc544a61f1fc82e95f689/tricontour_demo.ipynb b/_downloads/d110e378e7edc544a61f1fc82e95f689/tricontour_demo.ipynb deleted file mode 120000 index f0b57a02ccf..00000000000 --- a/_downloads/d110e378e7edc544a61f1fc82e95f689/tricontour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d110e378e7edc544a61f1fc82e95f689/tricontour_demo.ipynb \ No newline at end of file diff --git a/_downloads/d113d9391ae223a4293a5b73a5c8caab/simple_axesgrid.ipynb b/_downloads/d113d9391ae223a4293a5b73a5c8caab/simple_axesgrid.ipynb deleted file mode 120000 index 74564ac560a..00000000000 --- a/_downloads/d113d9391ae223a4293a5b73a5c8caab/simple_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d113d9391ae223a4293a5b73a5c8caab/simple_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/d11a70e904828e815eef776aa93ff253/radar_chart.py b/_downloads/d11a70e904828e815eef776aa93ff253/radar_chart.py deleted file mode 100644 index a4e9c3666d6..00000000000 --- a/_downloads/d11a70e904828e815eef776aa93ff253/radar_chart.py +++ /dev/null @@ -1,211 +0,0 @@ -""" -====================================== -Radar chart (aka spider or star chart) -====================================== - -This example creates a radar chart, also known as a spider or star chart [1]_. - -Although this example allows a frame of either 'circle' or 'polygon', polygon -frames don't have proper gridlines (the lines are circles instead of polygons). -It's possible to get a polygon grid by setting GRIDLINE_INTERPOLATION_STEPS in -matplotlib.axis to the desired number of vertices, but the orientation of the -polygon is not aligned with the radial axes. - -.. [1] http://en.wikipedia.org/wiki/Radar_chart -""" - -import numpy as np - -import matplotlib.pyplot as plt -from matplotlib.patches import Circle, RegularPolygon -from matplotlib.path import Path -from matplotlib.projections.polar import PolarAxes -from matplotlib.projections import register_projection -from matplotlib.spines import Spine -from matplotlib.transforms import Affine2D - - -def radar_factory(num_vars, frame='circle'): - """Create a radar chart with `num_vars` axes. - - This function creates a RadarAxes projection and registers it. - - Parameters - ---------- - num_vars : int - Number of variables for radar chart. - frame : {'circle' | 'polygon'} - Shape of frame surrounding axes. - - """ - # calculate evenly-spaced axis angles - theta = np.linspace(0, 2*np.pi, num_vars, endpoint=False) - - class RadarAxes(PolarAxes): - - name = 'radar' - # use 1 line segment to connect specified points - RESOLUTION = 1 - - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - # rotate plot such that the first axis is at the top - self.set_theta_zero_location('N') - - def fill(self, *args, closed=True, **kwargs): - """Override fill so that line is closed by default""" - return super().fill(closed=closed, *args, **kwargs) - - def plot(self, *args, **kwargs): - """Override plot so that line is closed by default""" - lines = super().plot(*args, **kwargs) - for line in lines: - self._close_line(line) - - def _close_line(self, line): - x, y = line.get_data() - # FIXME: markers at x[0], y[0] get doubled-up - if x[0] != x[-1]: - x = np.concatenate((x, [x[0]])) - y = np.concatenate((y, [y[0]])) - line.set_data(x, y) - - def set_varlabels(self, labels): - self.set_thetagrids(np.degrees(theta), labels) - - def _gen_axes_patch(self): - # The Axes patch must be centered at (0.5, 0.5) and of radius 0.5 - # in axes coordinates. - if frame == 'circle': - return Circle((0.5, 0.5), 0.5) - elif frame == 'polygon': - return RegularPolygon((0.5, 0.5), num_vars, - radius=.5, edgecolor="k") - else: - raise ValueError("unknown value for 'frame': %s" % frame) - - def _gen_axes_spines(self): - if frame == 'circle': - return super()._gen_axes_spines() - elif frame == 'polygon': - # spine_type must be 'left'/'right'/'top'/'bottom'/'circle'. - spine = Spine(axes=self, - spine_type='circle', - path=Path.unit_regular_polygon(num_vars)) - # unit_regular_polygon gives a polygon of radius 1 centered at - # (0, 0) but we want a polygon of radius 0.5 centered at (0.5, - # 0.5) in axes coordinates. - spine.set_transform(Affine2D().scale(.5).translate(.5, .5) - + self.transAxes) - return {'polar': spine} - else: - raise ValueError("unknown value for 'frame': %s" % frame) - - register_projection(RadarAxes) - return theta - - -def example_data(): - # The following data is from the Denver Aerosol Sources and Health study. - # See doi:10.1016/j.atmosenv.2008.12.017 - # - # The data are pollution source profile estimates for five modeled - # pollution sources (e.g., cars, wood-burning, etc) that emit 7-9 chemical - # species. The radar charts are experimented with here to see if we can - # nicely visualize how the modeled source profiles change across four - # scenarios: - # 1) No gas-phase species present, just seven particulate counts on - # Sulfate - # Nitrate - # Elemental Carbon (EC) - # Organic Carbon fraction 1 (OC) - # Organic Carbon fraction 2 (OC2) - # Organic Carbon fraction 3 (OC3) - # Pyrolized Organic Carbon (OP) - # 2)Inclusion of gas-phase specie carbon monoxide (CO) - # 3)Inclusion of gas-phase specie ozone (O3). - # 4)Inclusion of both gas-phase species is present... - data = [ - ['Sulfate', 'Nitrate', 'EC', 'OC1', 'OC2', 'OC3', 'OP', 'CO', 'O3'], - ('Basecase', [ - [0.88, 0.01, 0.03, 0.03, 0.00, 0.06, 0.01, 0.00, 0.00], - [0.07, 0.95, 0.04, 0.05, 0.00, 0.02, 0.01, 0.00, 0.00], - [0.01, 0.02, 0.85, 0.19, 0.05, 0.10, 0.00, 0.00, 0.00], - [0.02, 0.01, 0.07, 0.01, 0.21, 0.12, 0.98, 0.00, 0.00], - [0.01, 0.01, 0.02, 0.71, 0.74, 0.70, 0.00, 0.00, 0.00]]), - ('With CO', [ - [0.88, 0.02, 0.02, 0.02, 0.00, 0.05, 0.00, 0.05, 0.00], - [0.08, 0.94, 0.04, 0.02, 0.00, 0.01, 0.12, 0.04, 0.00], - [0.01, 0.01, 0.79, 0.10, 0.00, 0.05, 0.00, 0.31, 0.00], - [0.00, 0.02, 0.03, 0.38, 0.31, 0.31, 0.00, 0.59, 0.00], - [0.02, 0.02, 0.11, 0.47, 0.69, 0.58, 0.88, 0.00, 0.00]]), - ('With O3', [ - [0.89, 0.01, 0.07, 0.00, 0.00, 0.05, 0.00, 0.00, 0.03], - [0.07, 0.95, 0.05, 0.04, 0.00, 0.02, 0.12, 0.00, 0.00], - [0.01, 0.02, 0.86, 0.27, 0.16, 0.19, 0.00, 0.00, 0.00], - [0.01, 0.03, 0.00, 0.32, 0.29, 0.27, 0.00, 0.00, 0.95], - [0.02, 0.00, 0.03, 0.37, 0.56, 0.47, 0.87, 0.00, 0.00]]), - ('CO & O3', [ - [0.87, 0.01, 0.08, 0.00, 0.00, 0.04, 0.00, 0.00, 0.01], - [0.09, 0.95, 0.02, 0.03, 0.00, 0.01, 0.13, 0.06, 0.00], - [0.01, 0.02, 0.71, 0.24, 0.13, 0.16, 0.00, 0.50, 0.00], - [0.01, 0.03, 0.00, 0.28, 0.24, 0.23, 0.00, 0.44, 0.88], - [0.02, 0.00, 0.18, 0.45, 0.64, 0.55, 0.86, 0.00, 0.16]]) - ] - return data - - -if __name__ == '__main__': - N = 9 - theta = radar_factory(N, frame='polygon') - - data = example_data() - spoke_labels = data.pop(0) - - fig, axes = plt.subplots(figsize=(9, 9), nrows=2, ncols=2, - subplot_kw=dict(projection='radar')) - fig.subplots_adjust(wspace=0.25, hspace=0.20, top=0.85, bottom=0.05) - - colors = ['b', 'r', 'g', 'm', 'y'] - # Plot the four cases from the example data on separate axes - for ax, (title, case_data) in zip(axes.flat, data): - ax.set_rgrids([0.2, 0.4, 0.6, 0.8]) - ax.set_title(title, weight='bold', size='medium', position=(0.5, 1.1), - horizontalalignment='center', verticalalignment='center') - for d, color in zip(case_data, colors): - ax.plot(theta, d, color=color) - ax.fill(theta, d, facecolor=color, alpha=0.25) - ax.set_varlabels(spoke_labels) - - # add legend relative to top-left plot - ax = axes[0, 0] - labels = ('Factor 1', 'Factor 2', 'Factor 3', 'Factor 4', 'Factor 5') - legend = ax.legend(labels, loc=(0.9, .95), - labelspacing=0.1, fontsize='small') - - fig.text(0.5, 0.965, '5-Factor Solution Profiles Across Four Scenarios', - horizontalalignment='center', color='black', weight='bold', - size='large') - - plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.spines -matplotlib.spines.Spine -matplotlib.projections -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes -matplotlib.projections.register_projection diff --git a/_downloads/d12aab149ad2b04d0a069d36555f43b6/plot_solarizedlight2.ipynb b/_downloads/d12aab149ad2b04d0a069d36555f43b6/plot_solarizedlight2.ipynb deleted file mode 120000 index 0687bfdea40..00000000000 --- a/_downloads/d12aab149ad2b04d0a069d36555f43b6/plot_solarizedlight2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d12aab149ad2b04d0a069d36555f43b6/plot_solarizedlight2.ipynb \ No newline at end of file diff --git a/_downloads/d1340f0af3150676594e30f1bbbe4576/voxels_rgb.py b/_downloads/d1340f0af3150676594e30f1bbbe4576/voxels_rgb.py deleted file mode 120000 index 57fefcb7e44..00000000000 --- a/_downloads/d1340f0af3150676594e30f1bbbe4576/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d1340f0af3150676594e30f1bbbe4576/voxels_rgb.py \ No newline at end of file diff --git a/_downloads/d13b9f7b735ed9cdf774ff1d83114d08/gridspec_multicolumn.py b/_downloads/d13b9f7b735ed9cdf774ff1d83114d08/gridspec_multicolumn.py deleted file mode 120000 index ef939e4898b..00000000000 --- a/_downloads/d13b9f7b735ed9cdf774ff1d83114d08/gridspec_multicolumn.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d13b9f7b735ed9cdf774ff1d83114d08/gridspec_multicolumn.py \ No newline at end of file diff --git a/_downloads/d13f089985f2f312e37f19585fe94bff/rasterization_demo.ipynb b/_downloads/d13f089985f2f312e37f19585fe94bff/rasterization_demo.ipynb deleted file mode 100644 index 964fd73c9ae..00000000000 --- a/_downloads/d13f089985f2f312e37f19585fe94bff/rasterization_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rasterization Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nd = np.arange(100).reshape(10, 10)\nx, y = np.meshgrid(np.arange(11), np.arange(11))\n\ntheta = 0.25*np.pi\nxx = x*np.cos(theta) - y*np.sin(theta)\nyy = x*np.sin(theta) + y*np.cos(theta)\n\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\nax1.set_aspect(1)\nax1.pcolormesh(xx, yy, d)\nax1.set_title(\"No Rasterization\")\n\nax2.set_aspect(1)\nax2.set_title(\"Rasterization\")\n\nm = ax2.pcolormesh(xx, yy, d)\nm.set_rasterized(True)\n\nax3.set_aspect(1)\nax3.pcolormesh(xx, yy, d)\nax3.text(0.5, 0.5, \"Text\", alpha=0.2,\n va=\"center\", ha=\"center\", size=50, transform=ax3.transAxes)\n\nax3.set_title(\"No Rasterization\")\n\n\nax4.set_aspect(1)\nm = ax4.pcolormesh(xx, yy, d)\nm.set_zorder(-20)\n\nax4.text(0.5, 0.5, \"Text\", alpha=0.2,\n zorder=-15,\n va=\"center\", ha=\"center\", size=50, transform=ax4.transAxes)\n\nax4.set_rasterization_zorder(-10)\n\nax4.set_title(\"Rasterization z$<-10$\")\n\n\n# ax2.title.set_rasterized(True) # should display a warning\n\nplt.savefig(\"test_rasterization.pdf\", dpi=150)\nplt.savefig(\"test_rasterization.eps\", dpi=150)\n\nif not plt.rcParams[\"text.usetex\"]:\n plt.savefig(\"test_rasterization.svg\", dpi=150)\n # svg backend currently ignores the dpi" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d14305c9ec0447f38fdc6726c8087d47/anchored_artists.ipynb b/_downloads/d14305c9ec0447f38fdc6726c8087d47/anchored_artists.ipynb deleted file mode 120000 index 662443c97c8..00000000000 --- a/_downloads/d14305c9ec0447f38fdc6726c8087d47/anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d14305c9ec0447f38fdc6726c8087d47/anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/d151561b0e5971717832b2402c3c149c/embedding_in_wx2_sgskip.ipynb b/_downloads/d151561b0e5971717832b2402c3c149c/embedding_in_wx2_sgskip.ipynb deleted file mode 100644 index 5cb03bbf3b1..00000000000 --- a/_downloads/d151561b0e5971717832b2402c3c149c/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #2\n==================\n\nAn example of how to use wxagg in an application with the new\ntoolbar - comment out the add_toolbar line for no toolbar\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wx import NavigationToolbar2Wx as NavigationToolbar\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\nimport wx\nimport wx.lib.mixins.inspection as WIT\n\n\nclass CanvasFrame(wx.Frame):\n def __init__(self):\n wx.Frame.__init__(self, None, -1,\n 'CanvasFrame', size=(550, 350))\n\n self.figure = Figure()\n self.axes = self.figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2 * np.pi * t)\n\n self.axes.plot(t, s)\n self.canvas = FigureCanvas(self, -1, self.figure)\n\n self.sizer = wx.BoxSizer(wx.VERTICAL)\n self.sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.EXPAND)\n self.SetSizer(self.sizer)\n self.Fit()\n\n self.add_toolbar() # comment this out for no toolbar\n\n def add_toolbar(self):\n self.toolbar = NavigationToolbar(self.canvas)\n self.toolbar.Realize()\n # By adding toolbar in sizer, we are able to put it at the bottom\n # of the frame - so appearance is closer to GTK version.\n self.sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n # update the axes menu on the toolbar\n self.toolbar.update()\n\n\n# alternatively you could use\n#class App(wx.App):\nclass App(WIT.InspectableApp):\n def OnInit(self):\n 'Create the main window and insert the custom frame'\n self.Init()\n frame = CanvasFrame()\n frame.Show(True)\n\n return True\n\napp = App(0)\napp.MainLoop()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d15794593a9a13df6fd411e6e02acf52/anchored_box04.py b/_downloads/d15794593a9a13df6fd411e6e02acf52/anchored_box04.py deleted file mode 100644 index d641e7a18ac..00000000000 --- a/_downloads/d15794593a9a13df6fd411e6e02acf52/anchored_box04.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -============== -Anchored Box04 -============== - -""" -from matplotlib.patches import Ellipse -import matplotlib.pyplot as plt -from matplotlib.offsetbox import (AnchoredOffsetbox, DrawingArea, HPacker, - TextArea) - - -fig, ax = plt.subplots(figsize=(3, 3)) - -box1 = TextArea(" Test : ", textprops=dict(color="k")) - -box2 = DrawingArea(60, 20, 0, 0) -el1 = Ellipse((10, 10), width=16, height=5, angle=30, fc="r") -el2 = Ellipse((30, 10), width=16, height=5, angle=170, fc="g") -el3 = Ellipse((50, 10), width=16, height=5, angle=230, fc="b") -box2.add_artist(el1) -box2.add_artist(el2) -box2.add_artist(el3) - -box = HPacker(children=[box1, box2], - align="center", - pad=0, sep=5) - -anchored_box = AnchoredOffsetbox(loc='lower left', - child=box, pad=0., - frameon=True, - bbox_to_anchor=(0., 1.02), - bbox_transform=ax.transAxes, - borderpad=0., - ) - -ax.add_artist(anchored_box) - -fig.subplots_adjust(top=0.8) -plt.show() diff --git a/_downloads/d15a73046e2f4d9b991178a2d6b63890/fancyarrow_demo.ipynb b/_downloads/d15a73046e2f4d9b991178a2d6b63890/fancyarrow_demo.ipynb deleted file mode 120000 index afa827c0101..00000000000 --- a/_downloads/d15a73046e2f4d9b991178a2d6b63890/fancyarrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d15a73046e2f4d9b991178a2d6b63890/fancyarrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/d15d22e6c5a77d707fe81ecbbb61ea49/annotate_simple_coord01.py b/_downloads/d15d22e6c5a77d707fe81ecbbb61ea49/annotate_simple_coord01.py deleted file mode 120000 index 6d162781139..00000000000 --- a/_downloads/d15d22e6c5a77d707fe81ecbbb61ea49/annotate_simple_coord01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d15d22e6c5a77d707fe81ecbbb61ea49/annotate_simple_coord01.py \ No newline at end of file diff --git a/_downloads/d162b6ecb8fdfdc5dff48ff68933d0d0/demo_tight_layout.ipynb b/_downloads/d162b6ecb8fdfdc5dff48ff68933d0d0/demo_tight_layout.ipynb deleted file mode 120000 index 65a5e476b9e..00000000000 --- a/_downloads/d162b6ecb8fdfdc5dff48ff68933d0d0/demo_tight_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d162b6ecb8fdfdc5dff48ff68933d0d0/demo_tight_layout.ipynb \ No newline at end of file diff --git a/_downloads/d1637d3ecea58588a83ea116a2883a26/pie_features.py b/_downloads/d1637d3ecea58588a83ea116a2883a26/pie_features.py deleted file mode 120000 index a4c52845466..00000000000 --- a/_downloads/d1637d3ecea58588a83ea116a2883a26/pie_features.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d1637d3ecea58588a83ea116a2883a26/pie_features.py \ No newline at end of file diff --git a/_downloads/d168297d342307ae0e2f2f81d6cfe355/style_sheets_reference.ipynb b/_downloads/d168297d342307ae0e2f2f81d6cfe355/style_sheets_reference.ipynb deleted file mode 100644 index 7df519a58b4..00000000000 --- a/_downloads/d168297d342307ae0e2f2f81d6cfe355/style_sheets_reference.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Style sheets reference\n\n\nThis script demonstrates the different available style sheets on a\ncommon set of example plots: scatter plot, image, bar graph, patches,\nline plot and histogram,\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef plot_scatter(ax, prng, nb_samples=100):\n \"\"\"Scatter plot.\n \"\"\"\n for mu, sigma, marker in [(-.5, 0.75, 'o'), (0.75, 1., 's')]:\n x, y = prng.normal(loc=mu, scale=sigma, size=(2, nb_samples))\n ax.plot(x, y, ls='none', marker=marker)\n ax.set_xlabel('X-label')\n return ax\n\n\ndef plot_colored_sinusoidal_lines(ax):\n \"\"\"Plot sinusoidal lines with colors following the style color cycle.\n \"\"\"\n L = 2 * np.pi\n x = np.linspace(0, L)\n nb_colors = len(plt.rcParams['axes.prop_cycle'])\n shift = np.linspace(0, L, nb_colors, endpoint=False)\n for s in shift:\n ax.plot(x, np.sin(x + s), '-')\n ax.set_xlim([x[0], x[-1]])\n return ax\n\n\ndef plot_bar_graphs(ax, prng, min_value=5, max_value=25, nb_samples=5):\n \"\"\"Plot two bar graphs side by side, with letters as x-tick labels.\n \"\"\"\n x = np.arange(nb_samples)\n ya, yb = prng.randint(min_value, max_value, size=(2, nb_samples))\n width = 0.25\n ax.bar(x, ya, width)\n ax.bar(x + width, yb, width, color='C2')\n ax.set_xticks(x + width)\n ax.set_xticklabels(['a', 'b', 'c', 'd', 'e'])\n return ax\n\n\ndef plot_colored_circles(ax, prng, nb_samples=15):\n \"\"\"Plot circle patches.\n\n NB: draws a fixed amount of samples, rather than using the length of\n the color cycle, because different styles may have different numbers\n of colors.\n \"\"\"\n for sty_dict, j in zip(plt.rcParams['axes.prop_cycle'], range(nb_samples)):\n ax.add_patch(plt.Circle(prng.normal(scale=3, size=2),\n radius=1.0, color=sty_dict['color']))\n # Force the limits to be the same across the styles (because different\n # styles may have different numbers of available colors).\n ax.set_xlim([-4, 8])\n ax.set_ylim([-5, 6])\n ax.set_aspect('equal', adjustable='box') # to plot circles as circles\n return ax\n\n\ndef plot_image_and_patch(ax, prng, size=(20, 20)):\n \"\"\"Plot an image with random values and superimpose a circular patch.\n \"\"\"\n values = prng.random_sample(size=size)\n ax.imshow(values, interpolation='none')\n c = plt.Circle((5, 5), radius=5, label='patch')\n ax.add_patch(c)\n # Remove ticks\n ax.set_xticks([])\n ax.set_yticks([])\n\n\ndef plot_histograms(ax, prng, nb_samples=10000):\n \"\"\"Plot 4 histograms and a text annotation.\n \"\"\"\n params = ((10, 10), (4, 12), (50, 12), (6, 55))\n for a, b in params:\n values = prng.beta(a, b, size=nb_samples)\n ax.hist(values, histtype=\"stepfilled\", bins=30,\n alpha=0.8, density=True)\n # Add a small annotation.\n ax.annotate('Annotation', xy=(0.25, 4.25),\n xytext=(0.9, 0.9), textcoords=ax.transAxes,\n va=\"top\", ha=\"right\",\n bbox=dict(boxstyle=\"round\", alpha=0.2),\n arrowprops=dict(\n arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=-95,angleB=35,rad=10\"),\n )\n return ax\n\n\ndef plot_figure(style_label=\"\"):\n \"\"\"Setup and plot the demonstration figure with a given style.\n \"\"\"\n # Use a dedicated RandomState instance to draw the same \"random\" values\n # across the different figures.\n prng = np.random.RandomState(96917002)\n\n # Tweak the figure size to be better suited for a row of numerous plots:\n # double the width and halve the height. NB: use relative changes because\n # some styles may have a figure size different from the default one.\n (fig_width, fig_height) = plt.rcParams['figure.figsize']\n fig_size = [fig_width * 2, fig_height / 2]\n\n fig, axes = plt.subplots(ncols=6, nrows=1, num=style_label,\n figsize=fig_size, squeeze=True)\n axes[0].set_ylabel(style_label)\n\n plot_scatter(axes[0], prng)\n plot_image_and_patch(axes[1], prng)\n plot_bar_graphs(axes[2], prng)\n plot_colored_circles(axes[3], prng)\n plot_colored_sinusoidal_lines(axes[4])\n plot_histograms(axes[5], prng)\n\n fig.tight_layout()\n\n return fig\n\n\nif __name__ == \"__main__\":\n\n # Setup a list of all available styles, in alphabetical order but\n # the `default` and `classic` ones, which will be forced resp. in\n # first and second position.\n style_list = ['default', 'classic'] + sorted(\n style for style in plt.style.available if style != 'classic')\n\n # Plot a demonstration figure for every available style sheet.\n for style_label in style_list:\n with plt.style.context(style_label):\n fig = plot_figure(style_label=style_label)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d178cd5a68be8176cbb2a9205aba49ba/date_demo_rrule.py b/_downloads/d178cd5a68be8176cbb2a9205aba49ba/date_demo_rrule.py deleted file mode 120000 index 8555e206786..00000000000 --- a/_downloads/d178cd5a68be8176cbb2a9205aba49ba/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d178cd5a68be8176cbb2a9205aba49ba/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/d17bb6e684a598039531c6414d6890b1/errorbar_limits.py b/_downloads/d17bb6e684a598039531c6414d6890b1/errorbar_limits.py deleted file mode 120000 index 29447230fb1..00000000000 --- a/_downloads/d17bb6e684a598039531c6414d6890b1/errorbar_limits.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d17bb6e684a598039531c6414d6890b1/errorbar_limits.py \ No newline at end of file diff --git a/_downloads/d1898134264a79c71ab5afc23d9225f9/tick-formatters.py b/_downloads/d1898134264a79c71ab5afc23d9225f9/tick-formatters.py deleted file mode 100644 index a5ce0927ffe..00000000000 --- a/_downloads/d1898134264a79c71ab5afc23d9225f9/tick-formatters.py +++ /dev/null @@ -1,108 +0,0 @@ -""" -=============== -Tick formatters -=============== - -Show the different tick formatters. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker - - -# Setup a plot such that only the bottom spine is shown -def setup(ax): - ax.spines['right'].set_color('none') - ax.spines['left'].set_color('none') - ax.yaxis.set_major_locator(ticker.NullLocator()) - ax.spines['top'].set_color('none') - ax.xaxis.set_ticks_position('bottom') - ax.tick_params(which='major', width=1.00, length=5) - ax.tick_params(which='minor', width=0.75, length=2.5, labelsize=10) - ax.set_xlim(0, 5) - ax.set_ylim(0, 1) - ax.patch.set_alpha(0.0) - - -fig = plt.figure(figsize=(8, 6)) -n = 7 - -# Null formatter -ax = fig.add_subplot(n, 1, 1) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.NullFormatter()) -ax.xaxis.set_minor_formatter(ticker.NullFormatter()) -ax.text(0.0, 0.1, "NullFormatter()", fontsize=16, transform=ax.transAxes) - -# Fixed formatter -ax = fig.add_subplot(n, 1, 2) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.0)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -majors = ["", "0", "1", "2", "3", "4", "5"] -ax.xaxis.set_major_formatter(ticker.FixedFormatter(majors)) -minors = [""] + ["%.2f" % (x-int(x)) if (x-int(x)) - else "" for x in np.arange(0, 5, 0.25)] -ax.xaxis.set_minor_formatter(ticker.FixedFormatter(minors)) -ax.text(0.0, 0.1, "FixedFormatter(['', '0', '1', ...])", - fontsize=15, transform=ax.transAxes) - - -# FuncFormatter can be used as a decorator -@ticker.FuncFormatter -def major_formatter(x, pos): - return "[%.2f]" % x - - -ax = fig.add_subplot(n, 1, 3) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(major_formatter) -ax.text(0.0, 0.1, 'FuncFormatter(lambda x, pos: "[%.2f]" % x)', - fontsize=15, transform=ax.transAxes) - - -# FormatStr formatter -ax = fig.add_subplot(n, 1, 4) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.FormatStrFormatter(">%d<")) -ax.text(0.0, 0.1, "FormatStrFormatter('>%d<')", - fontsize=15, transform=ax.transAxes) - -# Scalar formatter -ax = fig.add_subplot(n, 1, 5) -setup(ax) -ax.xaxis.set_major_locator(ticker.AutoLocator()) -ax.xaxis.set_minor_locator(ticker.AutoMinorLocator()) -ax.xaxis.set_major_formatter(ticker.ScalarFormatter(useMathText=True)) -ax.text(0.0, 0.1, "ScalarFormatter()", fontsize=15, transform=ax.transAxes) - -# StrMethod formatter -ax = fig.add_subplot(n, 1, 6) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.StrMethodFormatter("{x}")) -ax.text(0.0, 0.1, "StrMethodFormatter('{x}')", - fontsize=15, transform=ax.transAxes) - -# Percent formatter -ax = fig.add_subplot(n, 1, 7) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.PercentFormatter(xmax=5)) -ax.text(0.0, 0.1, "PercentFormatter(xmax=5)", - fontsize=15, transform=ax.transAxes) - -# Push the top of the top axes outside the figure because we only show the -# bottom spine. -fig.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05) - -plt.show() diff --git a/_downloads/d18d85058fd91550a4120fc252d64e68/pathpatch3d.py b/_downloads/d18d85058fd91550a4120fc252d64e68/pathpatch3d.py deleted file mode 120000 index 56c62684933..00000000000 --- a/_downloads/d18d85058fd91550a4120fc252d64e68/pathpatch3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d18d85058fd91550a4120fc252d64e68/pathpatch3d.py \ No newline at end of file diff --git a/_downloads/d18e0e7dc6454f96ec06ecb9d51c18ed/timers.ipynb b/_downloads/d18e0e7dc6454f96ec06ecb9d51c18ed/timers.ipynb deleted file mode 120000 index 54c46cab9c7..00000000000 --- a/_downloads/d18e0e7dc6454f96ec06ecb9d51c18ed/timers.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d18e0e7dc6454f96ec06ecb9d51c18ed/timers.ipynb \ No newline at end of file diff --git a/_downloads/d1931d8282e151fa96dd506f2f18f2d1/lasso_demo.py b/_downloads/d1931d8282e151fa96dd506f2f18f2d1/lasso_demo.py deleted file mode 120000 index 6d60ad219c7..00000000000 --- a/_downloads/d1931d8282e151fa96dd506f2f18f2d1/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d1931d8282e151fa96dd506f2f18f2d1/lasso_demo.py \ No newline at end of file diff --git a/_downloads/d198a41163802e83f627d0f3457ee844/histogram_histtypes.py b/_downloads/d198a41163802e83f627d0f3457ee844/histogram_histtypes.py deleted file mode 120000 index 76acd2386fc..00000000000 --- a/_downloads/d198a41163802e83f627d0f3457ee844/histogram_histtypes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d198a41163802e83f627d0f3457ee844/histogram_histtypes.py \ No newline at end of file diff --git a/_downloads/d19ece97a4cd50f0f38e84f35f6298d4/colormaps.ipynb b/_downloads/d19ece97a4cd50f0f38e84f35f6298d4/colormaps.ipynb deleted file mode 100644 index b3e5e207a4c..00000000000 --- a/_downloads/d19ece97a4cd50f0f38e84f35f6298d4/colormaps.ipynb +++ /dev/null @@ -1,223 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n********************************\nChoosing Colormaps in Matplotlib\n********************************\n\nMatplotlib has a number of built-in colormaps accessible via\n`.matplotlib.cm.get_cmap`. There are also external libraries like\n[palettable]_ and [colorcet]_ that have many extra colormaps.\nHere we briefly discuss how to choose between the many options. For\nhelp on creating your own colormaps, see\n:doc:`/tutorials/colors/colormap-manipulation`.\n\nOverview\n========\n\nThe idea behind choosing a good colormap is to find a good representation in 3D\ncolorspace for your data set. The best colormap for any given data set depends\non many things including:\n\n- Whether representing form or metric data ([Ware]_)\n\n- Your knowledge of the data set (*e.g.*, is there a critical value\n from which the other values deviate?)\n\n- If there is an intuitive color scheme for the parameter you are plotting\n\n- If there is a standard in the field the audience may be expecting\n\nFor many applications, a perceptually uniform colormap is the best\nchoice --- one in which equal steps in data are perceived as equal\nsteps in the color space. Researchers have found that the human brain\nperceives changes in the lightness parameter as changes in the data\nmuch better than, for example, changes in hue. Therefore, colormaps\nwhich have monotonically increasing lightness through the colormap\nwill be better interpreted by the viewer. A wonderful example of\nperceptually uniform colormaps is [colorcet]_.\n\nColor can be represented in 3D space in various ways. One way to represent color\nis using CIELAB. In CIELAB, color space is represented by lightness,\n$L^*$; red-green, $a^*$; and yellow-blue, $b^*$. The lightness\nparameter $L^*$ can then be used to learn more about how the matplotlib\ncolormaps will be perceived by viewers.\n\nAn excellent starting resource for learning about human perception of colormaps\nis from [IBM]_.\n\n\nClasses of colormaps\n====================\n\nColormaps are often split into several categories based on their function (see,\n*e.g.*, [Moreland]_):\n\n1. Sequential: change in lightness and often saturation of color\n incrementally, often using a single hue; should be used for\n representing information that has ordering.\n\n2. Diverging: change in lightness and possibly saturation of two\n different colors that meet in the middle at an unsaturated color;\n should be used when the information being plotted has a critical\n middle value, such as topography or when the data deviates around\n zero.\n\n3. Cyclic: change in lightness of two different colors that meet in\n the middle and beginning/end at an unsaturated color; should be\n used for values that wrap around at the endpoints, such as phase\n angle, wind direction, or time of day.\n\n4. Qualitative: often are miscellaneous colors; should be used to\n represent information which does not have ordering or\n relationships.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 2\n\nimport numpy as np\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom colorspacious import cspace_converter\nfrom collections import OrderedDict\n\ncmaps = OrderedDict()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sequential\n----------\n\nFor the Sequential plots, the lightness value increases monotonically through\nthe colormaps. This is good. Some of the $L^*$ values in the colormaps\nspan from 0 to 100 (binary and the other grayscale), and others start around\n$L^*=20$. Those that have a smaller range of $L^*$ will accordingly\nhave a smaller perceptual range. Note also that the $L^*$ function varies\namongst the colormaps: some are approximately linear in $L^*$ and others\nare more curved.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Perceptually Uniform Sequential'] = [\n 'viridis', 'plasma', 'inferno', 'magma', 'cividis']\n\ncmaps['Sequential'] = [\n 'Greys', 'Purples', 'Blues', 'Greens', 'Oranges', 'Reds',\n 'YlOrBr', 'YlOrRd', 'OrRd', 'PuRd', 'RdPu', 'BuPu',\n 'GnBu', 'PuBu', 'YlGnBu', 'PuBuGn', 'BuGn', 'YlGn']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sequential2\n-----------\n\nMany of the $L^*$ values from the Sequential2 plots are monotonically\nincreasing, but some (autumn, cool, spring, and winter) plateau or even go both\nup and down in $L^*$ space. Others (afmhot, copper, gist_heat, and hot)\nhave kinks in the $L^*$ functions. Data that is being represented in a\nregion of the colormap that is at a plateau or kink will lead to a perception of\nbanding of the data in those values in the colormap (see [mycarta-banding]_ for\nan excellent example of this).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Sequential (2)'] = [\n 'binary', 'gist_yarg', 'gist_gray', 'gray', 'bone', 'pink',\n 'spring', 'summer', 'autumn', 'winter', 'cool', 'Wistia',\n 'hot', 'afmhot', 'gist_heat', 'copper']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Diverging\n---------\n\nFor the Diverging maps, we want to have monotonically increasing $L^*$\nvalues up to a maximum, which should be close to $L^*=100$, followed by\nmonotonically decreasing $L^*$ values. We are looking for approximately\nequal minimum $L^*$ values at opposite ends of the colormap. By these\nmeasures, BrBG and RdBu are good options. coolwarm is a good option, but it\ndoesn't span a wide range of $L^*$ values (see grayscale section below).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Diverging'] = [\n 'PiYG', 'PRGn', 'BrBG', 'PuOr', 'RdGy', 'RdBu',\n 'RdYlBu', 'RdYlGn', 'Spectral', 'coolwarm', 'bwr', 'seismic']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Cyclic\n------\n\nFor Cyclic maps, we want to start and end on the same color, and meet a\nsymmetric center point in the middle. $L^*$ should change monotonically\nfrom start to middle, and inversely from middle to end. It should be symmetric\non the increasing and decreasing side, and only differ in hue. At the ends and\nmiddle, $L^*$ will reverse direction, which should be smoothed in\n$L^*$ space to reduce artifacts. See [kovesi-colormaps]_ for more\ninformation on the design of cyclic maps.\n\nThe often-used HSV colormap is included in this set of colormaps, although it\nis not symmetric to a center point. Additionally, the $L^*$ values vary\nwidely throughout the colormap, making it a poor choice for representing data\nfor viewers to see perceptually. See an extension on this idea at\n[mycarta-jet]_.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Cyclic'] = ['twilight', 'twilight_shifted', 'hsv']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Qualitative\n-----------\n\nQualitative colormaps are not aimed at being perceptual maps, but looking at the\nlightness parameter can verify that for us. The $L^*$ values move all over\nthe place throughout the colormap, and are clearly not monotonically increasing.\nThese would not be good options for use as perceptual colormaps.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Qualitative'] = ['Pastel1', 'Pastel2', 'Paired', 'Accent',\n 'Dark2', 'Set1', 'Set2', 'Set3',\n 'tab10', 'tab20', 'tab20b', 'tab20c']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Miscellaneous\n-------------\n\nSome of the miscellaneous colormaps have particular uses for which\nthey have been created. For example, gist_earth, ocean, and terrain\nall seem to be created for plotting topography (green/brown) and water\ndepths (blue) together. We would expect to see a divergence in these\ncolormaps, then, but multiple kinks may not be ideal, such as in\ngist_earth and terrain. CMRmap was created to convert well to\ngrayscale, though it does appear to have some small kinks in\n$L^*$. cubehelix was created to vary smoothly in both lightness\nand hue, but appears to have a small hump in the green hue area.\n\nThe often-used jet colormap is included in this set of colormaps. We can see\nthat the $L^*$ values vary widely throughout the colormap, making it a\npoor choice for representing data for viewers to see perceptually. See an\nextension on this idea at [mycarta-jet]_.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cmaps['Miscellaneous'] = [\n 'flag', 'prism', 'ocean', 'gist_earth', 'terrain', 'gist_stern',\n 'gnuplot', 'gnuplot2', 'CMRmap', 'cubehelix', 'brg',\n 'gist_rainbow', 'rainbow', 'jet', 'nipy_spectral', 'gist_ncar']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nFirst, we'll show the range of each colormap. Note that some seem\nto change more \"quickly\" than others.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "nrows = max(len(cmap_list) for cmap_category, cmap_list in cmaps.items())\ngradient = np.linspace(0, 1, 256)\ngradient = np.vstack((gradient, gradient))\n\n\ndef plot_color_gradients(cmap_category, cmap_list, nrows):\n fig, axes = plt.subplots(nrows=nrows)\n fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99)\n axes[0].set_title(cmap_category + ' colormaps', fontsize=14)\n\n for ax, name in zip(axes, cmap_list):\n ax.imshow(gradient, aspect='auto', cmap=plt.get_cmap(name))\n pos = list(ax.get_position().bounds)\n x_text = pos[0] - 0.01\n y_text = pos[1] + pos[3]/2.\n fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10)\n\n # Turn off *all* ticks & spines, not just the ones with colormaps.\n for ax in axes:\n ax.set_axis_off()\n\n\nfor cmap_category, cmap_list in cmaps.items():\n plot_color_gradients(cmap_category, cmap_list, nrows)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Lightness of matplotlib colormaps\n=================================\n\nHere we examine the lightness values of the matplotlib colormaps.\nNote that some documentation on the colormaps is available\n([list-colormaps]_).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rcParams.update({'font.size': 12})\n\n# Number of colormap per subplot for particular cmap categories\n_DSUBS = {'Perceptually Uniform Sequential': 5, 'Sequential': 6,\n 'Sequential (2)': 6, 'Diverging': 6, 'Cyclic': 3,\n 'Qualitative': 4, 'Miscellaneous': 6}\n\n# Spacing between the colormaps of a subplot\n_DC = {'Perceptually Uniform Sequential': 1.4, 'Sequential': 0.7,\n 'Sequential (2)': 1.4, 'Diverging': 1.4, 'Cyclic': 1.4,\n 'Qualitative': 1.4, 'Miscellaneous': 1.4}\n\n# Indices to step through colormap\nx = np.linspace(0.0, 1.0, 100)\n\n# Do plot\nfor cmap_category, cmap_list in cmaps.items():\n\n # Do subplots so that colormaps have enough space.\n # Default is 6 colormaps per subplot.\n dsub = _DSUBS.get(cmap_category, 6)\n nsubplots = int(np.ceil(len(cmap_list) / dsub))\n\n # squeeze=False to handle similarly the case of a single subplot\n fig, axes = plt.subplots(nrows=nsubplots, squeeze=False,\n figsize=(7, 2.6*nsubplots))\n\n for i, ax in enumerate(axes.flat):\n\n locs = [] # locations for text labels\n\n for j, cmap in enumerate(cmap_list[i*dsub:(i+1)*dsub]):\n\n # Get RGB values for colormap and convert the colormap in\n # CAM02-UCS colorspace. lab[0, :, 0] is the lightness.\n rgb = cm.get_cmap(cmap)(x)[np.newaxis, :, :3]\n lab = cspace_converter(\"sRGB1\", \"CAM02-UCS\")(rgb)\n\n # Plot colormap L values. Do separately for each category\n # so each plot can be pretty. To make scatter markers change\n # color along plot:\n # http://stackoverflow.com/questions/8202605/\n\n if cmap_category == 'Sequential':\n # These colormaps all start at high lightness but we want them\n # reversed to look nice in the plot, so reverse the order.\n y_ = lab[0, ::-1, 0]\n c_ = x[::-1]\n else:\n y_ = lab[0, :, 0]\n c_ = x\n\n dc = _DC.get(cmap_category, 1.4) # cmaps horizontal spacing\n ax.scatter(x + j*dc, y_, c=c_, cmap=cmap, s=300, linewidths=0.0)\n\n # Store locations for colormap labels\n if cmap_category in ('Perceptually Uniform Sequential',\n 'Sequential'):\n locs.append(x[-1] + j*dc)\n elif cmap_category in ('Diverging', 'Qualitative', 'Cyclic',\n 'Miscellaneous', 'Sequential (2)'):\n locs.append(x[int(x.size/2.)] + j*dc)\n\n # Set up the axis limits:\n # * the 1st subplot is used as a reference for the x-axis limits\n # * lightness values goes from 0 to 100 (y-axis limits)\n ax.set_xlim(axes[0, 0].get_xlim())\n ax.set_ylim(0.0, 100.0)\n\n # Set up labels for colormaps\n ax.xaxis.set_ticks_position('top')\n ticker = mpl.ticker.FixedLocator(locs)\n ax.xaxis.set_major_locator(ticker)\n formatter = mpl.ticker.FixedFormatter(cmap_list[i*dsub:(i+1)*dsub])\n ax.xaxis.set_major_formatter(formatter)\n ax.xaxis.set_tick_params(rotation=50)\n\n ax.set_xlabel(cmap_category + ' colormaps', fontsize=14)\n fig.text(0.0, 0.55, 'Lightness $L^*$', fontsize=12,\n transform=fig.transFigure, rotation=90)\n\n fig.tight_layout(h_pad=0.0, pad=1.5)\n plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Grayscale conversion\n====================\n\nIt is important to pay attention to conversion to grayscale for color\nplots, since they may be printed on black and white printers. If not\ncarefully considered, your readers may end up with indecipherable\nplots because the grayscale changes unpredictably through the\ncolormap.\n\nConversion to grayscale is done in many different ways [bw]_. Some of the\nbetter ones use a linear combination of the rgb values of a pixel, but\nweighted according to how we perceive color intensity. A nonlinear method of\nconversion to grayscale is to use the $L^*$ values of the pixels. In\ngeneral, similar principles apply for this question as they do for presenting\none's information perceptually; that is, if a colormap is chosen that is\nmonotonically increasing in $L^*$ values, it will print in a reasonable\nmanner to grayscale.\n\nWith this in mind, we see that the Sequential colormaps have reasonable\nrepresentations in grayscale. Some of the Sequential2 colormaps have decent\nenough grayscale representations, though some (autumn, spring, summer,\nwinter) have very little grayscale change. If a colormap like this was used\nin a plot and then the plot was printed to grayscale, a lot of the\ninformation may map to the same gray values. The Diverging colormaps mostly\nvary from darker gray on the outer edges to white in the middle. Some\n(PuOr and seismic) have noticeably darker gray on one side than the other\nand therefore are not very symmetric. coolwarm has little range of gray scale\nand would print to a more uniform plot, losing a lot of detail. Note that\noverlaid, labeled contours could help differentiate between one side of the\ncolormap vs. the other since color cannot be used once a plot is printed to\ngrayscale. Many of the Qualitative and Miscellaneous colormaps, such as\nAccent, hsv, and jet, change from darker to lighter and back to darker gray\nthroughout the colormap. This would make it impossible for a viewer to\ninterpret the information in a plot once it is printed in grayscale.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mpl.rcParams.update({'font.size': 14})\n\n# Indices to step through colormap.\nx = np.linspace(0.0, 1.0, 100)\n\ngradient = np.linspace(0, 1, 256)\ngradient = np.vstack((gradient, gradient))\n\n\ndef plot_color_gradients(cmap_category, cmap_list):\n fig, axes = plt.subplots(nrows=len(cmap_list), ncols=2)\n fig.subplots_adjust(top=0.95, bottom=0.01, left=0.2, right=0.99,\n wspace=0.05)\n fig.suptitle(cmap_category + ' colormaps', fontsize=14, y=1.0, x=0.6)\n\n for ax, name in zip(axes, cmap_list):\n\n # Get RGB values for colormap.\n rgb = cm.get_cmap(plt.get_cmap(name))(x)[np.newaxis, :, :3]\n\n # Get colormap in CAM02-UCS colorspace. We want the lightness.\n lab = cspace_converter(\"sRGB1\", \"CAM02-UCS\")(rgb)\n L = lab[0, :, 0]\n L = np.float32(np.vstack((L, L, L)))\n\n ax[0].imshow(gradient, aspect='auto', cmap=plt.get_cmap(name))\n ax[1].imshow(L, aspect='auto', cmap='binary_r', vmin=0., vmax=100.)\n pos = list(ax[0].get_position().bounds)\n x_text = pos[0] - 0.01\n y_text = pos[1] + pos[3]/2.\n fig.text(x_text, y_text, name, va='center', ha='right', fontsize=10)\n\n # Turn off *all* ticks & spines, not just the ones with colormaps.\n for ax in axes.flat:\n ax.set_axis_off()\n\n plt.show()\n\n\nfor cmap_category, cmap_list in cmaps.items():\n\n plot_color_gradients(cmap_category, cmap_list)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Color vision deficiencies\n=========================\n\nThere is a lot of information available about color blindness (*e.g.*,\n[colorblindness]_). Additionally, there are tools available to convert images\nto how they look for different types of color vision deficiencies.\n\nThe most common form of color vision deficiency involves differentiating\nbetween red and green. Thus, avoiding colormaps with both red and green will\navoid many problems in general.\n\n\nReferences\n==========\n\n.. [colorcet] https://colorcet.pyviz.org\n.. [Ware] http://ccom.unh.edu/sites/default/files/publications/Ware_1988_CGA_Color_sequences_univariate_maps.pdf\n.. [Moreland] http://www.kennethmoreland.com/color-maps/ColorMapsExpanded.pdf\n.. [list-colormaps] https://gist.github.com/endolith/2719900#id7\n.. [mycarta-banding] https://mycarta.wordpress.com/2012/10/14/the-rainbow-is-deadlong-live-the-rainbow-part-4-cie-lab-heated-body/\n.. [mycarta-jet] https://mycarta.wordpress.com/2012/10/06/the-rainbow-is-deadlong-live-the-rainbow-part-3/\n.. [kovesi-colormaps] https://arxiv.org/abs/1509.03700\n.. [bw] http://www.tannerhelland.com/3643/grayscale-image-algorithm-vb6/\n.. [colorblindness] http://www.color-blindness.com/\n.. [IBM] https://doi.org/10.1109/VISUAL.1995.480803\n.. [palettable] https://jiffyclub.github.io/palettable/\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d1a1b122207936ac1c17a1fdee735553/triinterp_demo.py b/_downloads/d1a1b122207936ac1c17a1fdee735553/triinterp_demo.py deleted file mode 100644 index 087a2839ac1..00000000000 --- a/_downloads/d1a1b122207936ac1c17a1fdee735553/triinterp_demo.py +++ /dev/null @@ -1,84 +0,0 @@ -""" -============== -Triinterp Demo -============== - -Interpolation from triangular grid to quad grid. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as mtri -import numpy as np - -# Create triangulation. -x = np.asarray([0, 1, 2, 3, 0.5, 1.5, 2.5, 1, 2, 1.5]) -y = np.asarray([0, 0, 0, 0, 1.0, 1.0, 1.0, 2, 2, 3.0]) -triangles = [[0, 1, 4], [1, 2, 5], [2, 3, 6], [1, 5, 4], [2, 6, 5], [4, 5, 7], - [5, 6, 8], [5, 8, 7], [7, 8, 9]] -triang = mtri.Triangulation(x, y, triangles) - -# Interpolate to regularly-spaced quad grid. -z = np.cos(1.5 * x) * np.cos(1.5 * y) -xi, yi = np.meshgrid(np.linspace(0, 3, 20), np.linspace(0, 3, 20)) - -interp_lin = mtri.LinearTriInterpolator(triang, z) -zi_lin = interp_lin(xi, yi) - -interp_cubic_geom = mtri.CubicTriInterpolator(triang, z, kind='geom') -zi_cubic_geom = interp_cubic_geom(xi, yi) - -interp_cubic_min_E = mtri.CubicTriInterpolator(triang, z, kind='min_E') -zi_cubic_min_E = interp_cubic_min_E(xi, yi) - -# Set up the figure -fig, axs = plt.subplots(nrows=2, ncols=2) -axs = axs.flatten() - -# Plot the triangulation. -axs[0].tricontourf(triang, z) -axs[0].triplot(triang, 'ko-') -axs[0].set_title('Triangular grid') - -# Plot linear interpolation to quad grid. -axs[1].contourf(xi, yi, zi_lin) -axs[1].plot(xi, yi, 'k-', lw=0.5, alpha=0.5) -axs[1].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5) -axs[1].set_title("Linear interpolation") - -# Plot cubic interpolation to quad grid, kind=geom -axs[2].contourf(xi, yi, zi_cubic_geom) -axs[2].plot(xi, yi, 'k-', lw=0.5, alpha=0.5) -axs[2].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5) -axs[2].set_title("Cubic interpolation,\nkind='geom'") - -# Plot cubic interpolation to quad grid, kind=min_E -axs[3].contourf(xi, yi, zi_cubic_min_E) -axs[3].plot(xi, yi, 'k-', lw=0.5, alpha=0.5) -axs[3].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5) -axs[3].set_title("Cubic interpolation,\nkind='min_E'") - -fig.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.tri -matplotlib.tri.LinearTriInterpolator -matplotlib.tri.CubicTriInterpolator -matplotlib.tri.Triangulation diff --git a/_downloads/d1a49ca68b202eb8075b314958e853f1/quiver_simple_demo.py b/_downloads/d1a49ca68b202eb8075b314958e853f1/quiver_simple_demo.py deleted file mode 120000 index f02541e9fa8..00000000000 --- a/_downloads/d1a49ca68b202eb8075b314958e853f1/quiver_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d1a49ca68b202eb8075b314958e853f1/quiver_simple_demo.py \ No newline at end of file diff --git a/_downloads/d1b13ae56eba794fb13f86472c51e257/scatter_piecharts.py b/_downloads/d1b13ae56eba794fb13f86472c51e257/scatter_piecharts.py deleted file mode 120000 index 35042c8d1d2..00000000000 --- a/_downloads/d1b13ae56eba794fb13f86472c51e257/scatter_piecharts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/d1b13ae56eba794fb13f86472c51e257/scatter_piecharts.py \ No newline at end of file diff --git a/_downloads/d1b6738fcf4b442f210407389ef9e181/invert_axes.py b/_downloads/d1b6738fcf4b442f210407389ef9e181/invert_axes.py deleted file mode 120000 index bac4ea7d6e5..00000000000 --- a/_downloads/d1b6738fcf4b442f210407389ef9e181/invert_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d1b6738fcf4b442f210407389ef9e181/invert_axes.py \ No newline at end of file diff --git a/_downloads/d1bee47474dbc13ce86aa2d0fb3e1869/dark_background.ipynb b/_downloads/d1bee47474dbc13ce86aa2d0fb3e1869/dark_background.ipynb deleted file mode 120000 index 6c41c19494b..00000000000 --- a/_downloads/d1bee47474dbc13ce86aa2d0fb3e1869/dark_background.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d1bee47474dbc13ce86aa2d0fb3e1869/dark_background.ipynb \ No newline at end of file diff --git a/_downloads/d1c1131eabfbc47ce19685dd8ae3595e/pathpatch3d.ipynb b/_downloads/d1c1131eabfbc47ce19685dd8ae3595e/pathpatch3d.ipynb deleted file mode 120000 index 75d16781cc1..00000000000 --- a/_downloads/d1c1131eabfbc47ce19685dd8ae3595e/pathpatch3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d1c1131eabfbc47ce19685dd8ae3595e/pathpatch3d.ipynb \ No newline at end of file diff --git a/_downloads/d1c8c37ff80ab9e3bf629e2b952c89a1/categorical_variables.ipynb b/_downloads/d1c8c37ff80ab9e3bf629e2b952c89a1/categorical_variables.ipynb deleted file mode 120000 index 77293ac10cf..00000000000 --- a/_downloads/d1c8c37ff80ab9e3bf629e2b952c89a1/categorical_variables.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d1c8c37ff80ab9e3bf629e2b952c89a1/categorical_variables.ipynb \ No newline at end of file diff --git a/_downloads/d1e5fb1aeaf58e1c73702a94459c637f/pylab_with_gtk_sgskip.py b/_downloads/d1e5fb1aeaf58e1c73702a94459c637f/pylab_with_gtk_sgskip.py deleted file mode 120000 index 62ad96a9e96..00000000000 --- a/_downloads/d1e5fb1aeaf58e1c73702a94459c637f/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d1e5fb1aeaf58e1c73702a94459c637f/pylab_with_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/d1ea00115cb9c41f31fda878221967a8/axes_zoom_effect.ipynb b/_downloads/d1ea00115cb9c41f31fda878221967a8/axes_zoom_effect.ipynb deleted file mode 120000 index 7c30bce4c10..00000000000 --- a/_downloads/d1ea00115cb9c41f31fda878221967a8/axes_zoom_effect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d1ea00115cb9c41f31fda878221967a8/axes_zoom_effect.ipynb \ No newline at end of file diff --git a/_downloads/d1fb9d4660232fb4c49f219f74b8058d/align_ylabels.ipynb b/_downloads/d1fb9d4660232fb4c49f219f74b8058d/align_ylabels.ipynb deleted file mode 120000 index e30ac6a1e90..00000000000 --- a/_downloads/d1fb9d4660232fb4c49f219f74b8058d/align_ylabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d1fb9d4660232fb4c49f219f74b8058d/align_ylabels.ipynb \ No newline at end of file diff --git a/_downloads/d1fe08587ed1813bc6755d4cab564d7c/dfrac_demo.ipynb b/_downloads/d1fe08587ed1813bc6755d4cab564d7c/dfrac_demo.ipynb deleted file mode 100644 index 7c5df029c2e..00000000000 --- a/_downloads/d1fe08587ed1813bc6755d4cab564d7c/dfrac_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================================\nThe difference between \\\\dfrac and \\\\frac\n=========================================\n\nIn this example, the differences between the \\\\dfrac and \\\\frac TeX macros are\nillustrated; in particular, the difference between display style and text style\nfractions when using Mathtex.\n\n.. versionadded:: 2.1\n\n

Note

To use \\\\dfrac with the LaTeX engine (text.usetex : True), you need to\n import the amsmath package with the text.latex.preamble rc, which is\n an unsupported feature; therefore, it is probably a better idea to just\n use the \\\\displaystyle option before the \\\\frac macro to get this behavior\n with the LaTeX engine.

\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig = plt.figure(figsize=(5.25, 0.75))\nfig.text(0.5, 0.3, r'\\dfrac: $\\dfrac{a}{b}$',\n horizontalalignment='center', verticalalignment='center')\nfig.text(0.5, 0.7, r'\\frac: $\\frac{a}{b}$',\n horizontalalignment='center', verticalalignment='center')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d213010fca53685a71132bdd148ffc26/connectionstyle_demo.py b/_downloads/d213010fca53685a71132bdd148ffc26/connectionstyle_demo.py deleted file mode 120000 index e61a093896a..00000000000 --- a/_downloads/d213010fca53685a71132bdd148ffc26/connectionstyle_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d213010fca53685a71132bdd148ffc26/connectionstyle_demo.py \ No newline at end of file diff --git a/_downloads/d216be949b0970d79e7add9dcb73d0d1/spectrum_demo.py b/_downloads/d216be949b0970d79e7add9dcb73d0d1/spectrum_demo.py deleted file mode 120000 index 3df16338d42..00000000000 --- a/_downloads/d216be949b0970d79e7add9dcb73d0d1/spectrum_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d216be949b0970d79e7add9dcb73d0d1/spectrum_demo.py \ No newline at end of file diff --git a/_downloads/d218c20e6f55e32b0fa4a8a6c30a85c2/fahrenheit_celsius_scales.ipynb b/_downloads/d218c20e6f55e32b0fa4a8a6c30a85c2/fahrenheit_celsius_scales.ipynb deleted file mode 120000 index 4737274de88..00000000000 --- a/_downloads/d218c20e6f55e32b0fa4a8a6c30a85c2/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d218c20e6f55e32b0fa4a8a6c30a85c2/fahrenheit_celsius_scales.ipynb \ No newline at end of file diff --git a/_downloads/d220a1744c4c37a4910a7224c8da2105/plot_streamplot.py b/_downloads/d220a1744c4c37a4910a7224c8da2105/plot_streamplot.py deleted file mode 100644 index ab18519d12a..00000000000 --- a/_downloads/d220a1744c4c37a4910a7224c8da2105/plot_streamplot.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -========== -Streamplot -========== - -A stream plot, or streamline plot, is used to display 2D vector fields. This -example shows a few features of the :meth:`~.axes.Axes.streamplot` function: - - * Varying the color along a streamline. - * Varying the density of streamlines. - * Varying the line width along a streamline. - * Controlling the starting points of streamlines. - * Streamlines skipping masked regions and NaN values. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.gridspec as gridspec - -w = 3 -Y, X = np.mgrid[-w:w:100j, -w:w:100j] -U = -1 - X**2 + Y -V = 1 + X - Y**2 -speed = np.sqrt(U**2 + V**2) - -fig = plt.figure(figsize=(7, 9)) -gs = gridspec.GridSpec(nrows=3, ncols=2, height_ratios=[1, 1, 2]) - -# Varying density along a streamline -ax0 = fig.add_subplot(gs[0, 0]) -ax0.streamplot(X, Y, U, V, density=[0.5, 1]) -ax0.set_title('Varying Density') - -# Varying color along a streamline -ax1 = fig.add_subplot(gs[0, 1]) -strm = ax1.streamplot(X, Y, U, V, color=U, linewidth=2, cmap='autumn') -fig.colorbar(strm.lines) -ax1.set_title('Varying Color') - -# Varying line width along a streamline -ax2 = fig.add_subplot(gs[1, 0]) -lw = 5*speed / speed.max() -ax2.streamplot(X, Y, U, V, density=0.6, color='k', linewidth=lw) -ax2.set_title('Varying Line Width') - -# Controlling the starting points of the streamlines -seed_points = np.array([[-2, -1, 0, 1, 2, -1], [-2, -1, 0, 1, 2, 2]]) - -ax3 = fig.add_subplot(gs[1, 1]) -strm = ax3.streamplot(X, Y, U, V, color=U, linewidth=2, - cmap='autumn', start_points=seed_points.T) -fig.colorbar(strm.lines) -ax3.set_title('Controlling Starting Points') - -# Displaying the starting points with blue symbols. -ax3.plot(seed_points[0], seed_points[1], 'bo') -ax3.set(xlim=(-w, w), ylim=(-w, w)) - -# Create a mask -mask = np.zeros(U.shape, dtype=bool) -mask[40:60, 40:60] = True -U[:20, :20] = np.nan -U = np.ma.array(U, mask=mask) - -ax4 = fig.add_subplot(gs[2:, :]) -ax4.streamplot(X, Y, U, V, color='r') -ax4.set_title('Streamplot with Masking') - -ax4.imshow(~mask, extent=(-w, w, -w, w), alpha=0.5, - interpolation='nearest', cmap='gray', aspect='auto') -ax4.set_aspect('equal') - -plt.tight_layout() -plt.show() -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.streamplot -matplotlib.pyplot.streamplot -matplotlib.gridspec -matplotlib.gridspec.GridSpec diff --git a/_downloads/d231879028ab6e5ceef274025ee5765f/errorbars_and_boxes.py b/_downloads/d231879028ab6e5ceef274025ee5765f/errorbars_and_boxes.py deleted file mode 100644 index 2f02643d195..00000000000 --- a/_downloads/d231879028ab6e5ceef274025ee5765f/errorbars_and_boxes.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -==================================================== -Creating boxes from error bars using PatchCollection -==================================================== - -In this example, we snazz up a pretty standard error bar plot by adding -a rectangle patch defined by the limits of the bars in both the x- and -y- directions. To do this, we have to write our own custom function -called ``make_error_boxes``. Close inspection of this function will -reveal the preferred pattern in writing functions for matplotlib: - - 1. an ``Axes`` object is passed directly to the function - 2. the function operates on the `Axes` methods directly, not through - the ``pyplot`` interface - 3. plotting kwargs that could be abbreviated are spelled out for - better code readability in the future (for example we use - ``facecolor`` instead of ``fc``) - 4. the artists returned by the ``Axes`` plotting methods are then - returned by the function so that, if desired, their styles - can be modified later outside of the function (they are not - modified in this example). -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.collections import PatchCollection -from matplotlib.patches import Rectangle - -# Number of data points -n = 5 - -# Dummy data -np.random.seed(19680801) -x = np.arange(0, n, 1) -y = np.random.rand(n) * 5. - -# Dummy errors (above and below) -xerr = np.random.rand(2, n) + 0.1 -yerr = np.random.rand(2, n) + 0.2 - - -def make_error_boxes(ax, xdata, ydata, xerror, yerror, facecolor='r', - edgecolor='None', alpha=0.5): - - # Create list for all the error patches - errorboxes = [] - - # Loop over data points; create box from errors at each point - for x, y, xe, ye in zip(xdata, ydata, xerror.T, yerror.T): - rect = Rectangle((x - xe[0], y - ye[0]), xe.sum(), ye.sum()) - errorboxes.append(rect) - - # Create patch collection with specified colour/alpha - pc = PatchCollection(errorboxes, facecolor=facecolor, alpha=alpha, - edgecolor=edgecolor) - - # Add collection to axes - ax.add_collection(pc) - - # Plot errorbars - artists = ax.errorbar(xdata, ydata, xerr=xerror, yerr=yerror, - fmt='None', ecolor='k') - - return artists - - -# Create figure and axes -fig, ax = plt.subplots(1) - -# Call function to create error boxes -_ = make_error_boxes(ax, x, y, xerr, yerr) - -plt.show() diff --git a/_downloads/d236e03c1621a166871babf0e5f7c7e4/scatter_star_poly.py b/_downloads/d236e03c1621a166871babf0e5f7c7e4/scatter_star_poly.py deleted file mode 120000 index c1c51cac22e..00000000000 --- a/_downloads/d236e03c1621a166871babf0e5f7c7e4/scatter_star_poly.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d236e03c1621a166871babf0e5f7c7e4/scatter_star_poly.py \ No newline at end of file diff --git a/_downloads/d23772520be097d9986a96876cc32b11/image_masked.ipynb b/_downloads/d23772520be097d9986a96876cc32b11/image_masked.ipynb deleted file mode 120000 index 93c3bb42ca4..00000000000 --- a/_downloads/d23772520be097d9986a96876cc32b11/image_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d23772520be097d9986a96876cc32b11/image_masked.ipynb \ No newline at end of file diff --git a/_downloads/d23c7f0745416d8f00af47b8cc0f6394/multipage_pdf.py b/_downloads/d23c7f0745416d8f00af47b8cc0f6394/multipage_pdf.py deleted file mode 120000 index 6134d96eed8..00000000000 --- a/_downloads/d23c7f0745416d8f00af47b8cc0f6394/multipage_pdf.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d23c7f0745416d8f00af47b8cc0f6394/multipage_pdf.py \ No newline at end of file diff --git a/_downloads/d2432b55dbad4709d6327e2b669cfde6/unicode_minus.py b/_downloads/d2432b55dbad4709d6327e2b669cfde6/unicode_minus.py deleted file mode 100644 index 4acfc07a58f..00000000000 --- a/_downloads/d2432b55dbad4709d6327e2b669cfde6/unicode_minus.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -============= -Unicode minus -============= - -You can use the proper typesetting `Unicode minus`__ or the ASCII hyphen for -minus, which some people prefer. :rc:`axes.unicode_minus` controls the default -behavior. - -__ https://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes - -The default is to use the Unicode minus. -""" - -import numpy as np -import matplotlib -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -matplotlib.rcParams['axes.unicode_minus'] = False -fig, ax = plt.subplots() -ax.plot(10*np.random.randn(100), 10*np.random.randn(100), 'o') -ax.set_title('Using hyphen instead of Unicode minus') -plt.show() diff --git a/_downloads/d24bdc1c515e3e997fec787544087369/confidence_ellipse.ipynb b/_downloads/d24bdc1c515e3e997fec787544087369/confidence_ellipse.ipynb deleted file mode 120000 index 25bba25df16..00000000000 --- a/_downloads/d24bdc1c515e3e997fec787544087369/confidence_ellipse.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d24bdc1c515e3e997fec787544087369/confidence_ellipse.ipynb \ No newline at end of file diff --git a/_downloads/d24f48730441a9e7c7bbe320914a177a/svg_tooltip_sgskip.ipynb b/_downloads/d24f48730441a9e7c7bbe320914a177a/svg_tooltip_sgskip.ipynb deleted file mode 120000 index 9aad4cb1ff5..00000000000 --- a/_downloads/d24f48730441a9e7c7bbe320914a177a/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d24f48730441a9e7c7bbe320914a177a/svg_tooltip_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/d25005cba136c305db5b6b5c9a4cabe7/anchored_box01.py b/_downloads/d25005cba136c305db5b6b5c9a4cabe7/anchored_box01.py deleted file mode 120000 index bb30ac55ed9..00000000000 --- a/_downloads/d25005cba136c305db5b6b5c9a4cabe7/anchored_box01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d25005cba136c305db5b6b5c9a4cabe7/anchored_box01.py \ No newline at end of file diff --git a/_downloads/d2507b6d31fddbb007f5db964a38cdf5/auto_subplots_adjust.ipynb b/_downloads/d2507b6d31fddbb007f5db964a38cdf5/auto_subplots_adjust.ipynb deleted file mode 100644 index 851f96764c8..00000000000 --- a/_downloads/d2507b6d31fddbb007f5db964a38cdf5/auto_subplots_adjust.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Auto Subplots Adjust\n\n\nAutomatically adjust subplot parameters. This example shows a way to determine\na subplot parameter from the extent of the ticklabels using a callback on the\n:doc:`draw_event`.\n\nNote that a similar result would be achieved using `~.Figure.tight_layout`\nor `~.Figure.constrained_layout`; this example shows how one could customize\nthe subplot parameter adjustment.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\nfig, ax = plt.subplots()\nax.plot(range(10))\nax.set_yticks((2,5,7))\nlabels = ax.set_yticklabels(('really, really, really', 'long', 'labels'))\n\ndef on_draw(event):\n bboxes = []\n for label in labels:\n bbox = label.get_window_extent()\n # the figure transform goes from relative coords->pixels and we\n # want the inverse of that\n bboxi = bbox.inverse_transformed(fig.transFigure)\n bboxes.append(bboxi)\n\n # this is the bbox that bounds all the bboxes, again in relative\n # figure coords\n bbox = mtransforms.Bbox.union(bboxes)\n if fig.subplotpars.left < bbox.width:\n # we need to move it over\n fig.subplots_adjust(left=1.1*bbox.width) # pad a little\n fig.canvas.draw()\n return False\n\nfig.canvas.mpl_connect('draw_event', on_draw)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.artist.Artist.get_window_extent\nmatplotlib.transforms.Bbox\nmatplotlib.transforms.Bbox.inverse_transformed\nmatplotlib.transforms.Bbox.union\nmatplotlib.figure.Figure.subplots_adjust\nmatplotlib.figure.SubplotParams\nmatplotlib.backend_bases.FigureCanvasBase.mpl_connect" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d25185b85d80132ad6903acdccb70823/nan_test.ipynb b/_downloads/d25185b85d80132ad6903acdccb70823/nan_test.ipynb deleted file mode 120000 index 391348541db..00000000000 --- a/_downloads/d25185b85d80132ad6903acdccb70823/nan_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d25185b85d80132ad6903acdccb70823/nan_test.ipynb \ No newline at end of file diff --git a/_downloads/d2599ba06d8acd7662e977977263c753/simple_axis_direction01.py b/_downloads/d2599ba06d8acd7662e977977263c753/simple_axis_direction01.py deleted file mode 120000 index 53a897efe5a..00000000000 --- a/_downloads/d2599ba06d8acd7662e977977263c753/simple_axis_direction01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d2599ba06d8acd7662e977977263c753/simple_axis_direction01.py \ No newline at end of file diff --git a/_downloads/d2691f761c7b93f0028ea4a84a79b9a0/make_room_for_ylabel_using_axesgrid.py b/_downloads/d2691f761c7b93f0028ea4a84a79b9a0/make_room_for_ylabel_using_axesgrid.py deleted file mode 120000 index fcfc90fbc05..00000000000 --- a/_downloads/d2691f761c7b93f0028ea4a84a79b9a0/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d2691f761c7b93f0028ea4a84a79b9a0/make_room_for_ylabel_using_axesgrid.py \ No newline at end of file diff --git a/_downloads/d26ccef47d31c92b30c200696b21ff5a/customized_violin.py b/_downloads/d26ccef47d31c92b30c200696b21ff5a/customized_violin.py deleted file mode 120000 index 819da1aa4a7..00000000000 --- a/_downloads/d26ccef47d31c92b30c200696b21ff5a/customized_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d26ccef47d31c92b30c200696b21ff5a/customized_violin.py \ No newline at end of file diff --git a/_downloads/d26e903a854444fe1b239842e0befac1/constrainedlayout_guide.py b/_downloads/d26e903a854444fe1b239842e0befac1/constrainedlayout_guide.py deleted file mode 100644 index 621a0dbe33f..00000000000 --- a/_downloads/d26e903a854444fe1b239842e0befac1/constrainedlayout_guide.py +++ /dev/null @@ -1,826 +0,0 @@ -""" -================================ -Constrained Layout Guide -================================ - -How to use constrained-layout to fit plots within your figure cleanly. - -*constrained_layout* automatically adjusts subplots and decorations like -legends and colorbars so that they fit in the figure window while still -preserving, as best they can, the logical layout requested by the user. - -*constrained_layout* is similar to -:doc:`tight_layout`, -but uses a constraint solver to determine the size of axes that allows -them to fit. - -*constrained_layout* needs to be activated before any axes are added to -a figure. Two ways of doing so are - -* using the respective argument to :func:`~.pyplot.subplots` or - :func:`~.pyplot.figure`, e.g.:: - - plt.subplots(constrained_layout=True) - -* activate it via :ref:`rcParams`, like:: - - plt.rcParams['figure.constrained_layout.use'] = True - -Those are described in detail throughout the following sections. - -.. warning:: - - Currently Constrained Layout is **experimental**. The - behaviour and API are subject to change, or the whole functionality - may be removed without a deprecation period. If you *require* your - plots to be absolutely reproducible, get the Axes positions after - running Constrained Layout and use ``ax.set_position()`` in your code - with ``constrained_layout=False``. - -Simple Example -============== - -In Matplotlib, the location of axes (including subplots) are specified in -normalized figure coordinates. It can happen that your axis labels or -titles (or sometimes even ticklabels) go outside the figure area, and are thus -clipped. - -""" - -# sphinx_gallery_thumbnail_number = 18 - - -import matplotlib.pyplot as plt -import matplotlib.colors as mcolors -import matplotlib.gridspec as gridspec -import numpy as np - - -plt.rcParams['savefig.facecolor'] = "0.8" -plt.rcParams['figure.figsize'] = 4.5, 4. - - -def example_plot(ax, fontsize=12, nodec=False): - ax.plot([1, 2]) - - ax.locator_params(nbins=3) - if not nodec: - ax.set_xlabel('x-label', fontsize=fontsize) - ax.set_ylabel('y-label', fontsize=fontsize) - ax.set_title('Title', fontsize=fontsize) - else: - ax.set_xticklabels('') - ax.set_yticklabels('') - - -fig, ax = plt.subplots(constrained_layout=False) -example_plot(ax, fontsize=24) - -############################################################################### -# To prevent this, the location of axes needs to be adjusted. For -# subplots, this can be done by adjusting the subplot params -# (:ref:`howto-subplots-adjust`). However, specifying your figure with the -# ``constrained_layout=True`` kwarg will do the adjusting automatically. - -fig, ax = plt.subplots(constrained_layout=True) -example_plot(ax, fontsize=24) - -############################################################################### -# When you have multiple subplots, often you see labels of different -# axes overlapping each other. - -fig, axs = plt.subplots(2, 2, constrained_layout=False) -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# Specifying ``constrained_layout=True`` in the call to ``plt.subplots`` -# causes the layout to be properly constrained. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax) - -############################################################################### -# Colorbars -# ========= -# -# If you create a colorbar with the :func:`~matplotlib.pyplot.colorbar` -# command you need to make room for it. ``constrained_layout`` does this -# automatically. Note that if you specify ``use_gridspec=True`` it will be -# ignored because this option is made for improving the layout via -# ``tight_layout``. -# -# .. note:: -# -# For the `~.axes.Axes.pcolormesh` kwargs (``pc_kwargs``) we use a -# dictionary. Below we will assign one colorbar to a number of axes each -# containing a `~.cm.ScalarMappable`; specifying the norm and colormap -# ensures the colorbar is accurate for all the axes. - -arr = np.arange(100).reshape((10, 10)) -norm = mcolors.Normalize(vmin=0., vmax=100.) -# see note above: this makes all pcolormesh calls consistent: -pc_kwargs = {'rasterized': True, 'cmap': 'viridis', 'norm': norm} -fig, ax = plt.subplots(figsize=(4, 4), constrained_layout=True) -im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=ax, shrink=0.6) - -############################################################################ -# If you specify a list of axes (or other iterable container) to the -# ``ax`` argument of ``colorbar``, constrained_layout will take space from -# the specified axes. - -fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs, shrink=0.6) - -############################################################################ -# If you specify a list of axes from inside a grid of axes, the colorbar -# will steal space appropriately, and leave a gap, but all subplots will -# still be the same size. - -fig, axs = plt.subplots(3, 3, figsize=(4, 4), constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[1:, ][:, 1], shrink=0.8) -fig.colorbar(im, ax=axs[:, -1], shrink=0.6) - -############################################################################ -# Note that there is a bit of a subtlety when specifying a single axes -# as the parent. In the following, it might be desirable and expected -# for the colorbars to line up, but they don't because the colorbar paired -# with the bottom axes is tied to the subplotspec of the axes, and hence -# shrinks when the gridspec-level colorbar is added. - -fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True) -for ax in axs[:2]: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[:2], shrink=0.6) -im = axs[2].pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[2], shrink=0.6) - -############################################################################ -# The API to make a single-axes behave like a list of axes is to specify -# it as a list (or other iterable container), as below: - -fig, axs = plt.subplots(3, 1, figsize=(4, 4), constrained_layout=True) -for ax in axs[:2]: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs[:2], shrink=0.6) -im = axs[2].pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=[axs[2]], shrink=0.6) - -#################################################### -# Suptitle -# ========= -# -# ``constrained_layout`` can also make room for `~.figure.Figure.suptitle`. - -fig, axs = plt.subplots(2, 2, figsize=(4, 4), constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs, shrink=0.6) -fig.suptitle('Big Suptitle') - -#################################################### -# Legends -# ======= -# -# Legends can be placed outside of their parent axis. -# Constrained-layout is designed to handle this for :meth:`.Axes.legend`. -# However, constrained-layout does *not* handle legends being created via -# :meth:`.Figure.legend` (yet). - -fig, ax = plt.subplots(constrained_layout=True) -ax.plot(np.arange(10), label='This is a plot') -ax.legend(loc='center left', bbox_to_anchor=(0.8, 0.5)) - -############################################# -# However, this will steal space from a subplot layout: - -fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True) -axs[0].plot(np.arange(10)) -axs[1].plot(np.arange(10), label='This is a plot') -axs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5)) - -############################################# -# In order for a legend or other artist to *not* steal space -# from the subplot layout, we can ``leg.set_in_layout(False)``. -# Of course this can mean the legend ends up -# cropped, but can be useful if the plot is subsequently called -# with ``fig.savefig('outname.png', bbox_inches='tight')``. Note, -# however, that the legend's ``get_in_layout`` status will have to be -# toggled again to make the saved file work, and we must manually -# trigger a draw if we want constrained_layout to adjust the size -# of the axes before printing. - -fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True) - -axs[0].plot(np.arange(10)) -axs[1].plot(np.arange(10), label='This is a plot') -leg = axs[1].legend(loc='center left', bbox_to_anchor=(0.8, 0.5)) -leg.set_in_layout(False) -# trigger a draw so that constrained_layout is executed once -# before we turn it off when printing.... -fig.canvas.draw() -# we want the legend included in the bbox_inches='tight' calcs. -leg.set_in_layout(True) -# we don't want the layout to change at this point. -fig.set_constrained_layout(False) -fig.savefig('CL01.png', bbox_inches='tight', dpi=100) - -############################################# -# The saved file looks like: -# -# .. image:: /_static/constrained_layout/CL01.png -# :align: center -# -# A better way to get around this awkwardness is to simply -# use the legend method provided by `.Figure.legend`: -fig, axs = plt.subplots(1, 2, figsize=(4, 2), constrained_layout=True) -axs[0].plot(np.arange(10)) -lines = axs[1].plot(np.arange(10), label='This is a plot') -labels = [l.get_label() for l in lines] -leg = fig.legend(lines, labels, loc='center left', - bbox_to_anchor=(0.8, 0.5), bbox_transform=axs[1].transAxes) -fig.savefig('CL02.png', bbox_inches='tight', dpi=100) - -############################################# -# The saved file looks like: -# -# .. image:: /_static/constrained_layout/CL02.png -# :align: center -# - -############################################################################### -# Padding and Spacing -# =================== -# -# For constrained_layout, we have implemented a padding around the edge of -# each axes. This padding sets the distance from the edge of the plot, -# and the minimum distance between adjacent plots. It is specified in -# inches by the keyword arguments ``w_pad`` and ``h_pad`` to the function -# `~.figure.Figure.set_constrained_layout_pads`: - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax, nodec=True) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=4./72., h_pad=4./72., - hspace=0., wspace=0.) - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax, nodec=True) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0., wspace=0.) - -########################################## -# Spacing between subplots is set by ``wspace`` and ``hspace``. There are -# specified as a fraction of the size of the subplot group as a whole. -# If the size of the figure is changed, then these spaces change in -# proportion. Note in the blow how the space at the edges doesn't change from -# the above, but the space between subplots does. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - example_plot(ax, nodec=True) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0.2, wspace=0.2) - - -########################################## -# Spacing with colorbars -# ----------------------- -# -# Colorbars will be placed ``wspace`` and ``hsapce`` apart from other -# subplots. The padding between the colorbar and the axis it is -# attached to will never be less than ``w_pad`` (for a vertical colorbar) -# or ``h_pad`` (for a horizontal colorbar). Note the use of the ``pad`` kwarg -# here in the ``colorbar`` call. It defaults to 0.02 of the size -# of the axis it is attached to. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - pc = ax.pcolormesh(arr, **pc_kwargs) - fig.colorbar(pc, ax=ax, shrink=0.6, pad=0) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0.2, wspace=0.2) - -########################################## -# In the above example, the colorbar will not ever be closer than 2 pts to -# the plot, but if we want it a bit further away, we can specify its value -# for ``pad`` to be non-zero. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - pc = ax.pcolormesh(arr, **pc_kwargs) - fig.colorbar(im, ax=ax, shrink=0.6, pad=0.05) - ax.set_xticklabels('') - ax.set_yticklabels('') -fig.set_constrained_layout_pads(w_pad=2./72., h_pad=2./72., - hspace=0.2, wspace=0.2) - -########################################## -# rcParams -# ======== -# -# There are five :ref:`rcParams` that can be set, -# either in a script or in the `matplotlibrc` file. -# They all have the prefix ``figure.constrained_layout``: -# -# - ``use``: Whether to use constrained_layout. Default is False -# - ``w_pad``, ``h_pad``: Padding around axes objects. -# Float representing inches. Default is 3./72. inches (3 pts) -# - ``wspace``, ``hspace``: Space between subplot groups. -# Float representing a fraction of the subplot widths being separated. -# Default is 0.02. - -plt.rcParams['figure.constrained_layout.use'] = True -fig, axs = plt.subplots(2, 2, figsize=(3, 3)) -for ax in axs.flat: - example_plot(ax) - -############################# -# Use with GridSpec -# ================= -# -# constrained_layout is meant to be used -# with :func:`~matplotlib.figure.Figure.subplots` or -# :func:`~matplotlib.gridspec.GridSpec` and -# :func:`~matplotlib.figure.Figure.add_subplot`. -# -# Note that in what follows ``constrained_layout=True`` - -fig = plt.figure() - -gs1 = gridspec.GridSpec(2, 1, figure=fig) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -############################################################################### -# More complicated gridspec layouts are possible. Note here we use the -# convenience functions ``add_gridspec`` and ``subgridspec``. - -fig = plt.figure() - -gs0 = fig.add_gridspec(1, 2) - -gs1 = gs0[0].subgridspec(2, 1) -ax1 = fig.add_subplot(gs1[0]) -ax2 = fig.add_subplot(gs1[1]) - -example_plot(ax1) -example_plot(ax2) - -gs2 = gs0[1].subgridspec(3, 1) - -for ss in gs2: - ax = fig.add_subplot(ss) - example_plot(ax) - ax.set_title("") - ax.set_xlabel("") - -ax.set_xlabel("x-label", fontsize=12) - -############################################################################ -# Note that in the above the left and columns don't have the same vertical -# extent. If we want the top and bottom of the two grids to line up then -# they need to be in the same gridspec: - -fig = plt.figure() - -gs0 = fig.add_gridspec(6, 2) - -ax1 = fig.add_subplot(gs0[:3, 0]) -ax2 = fig.add_subplot(gs0[3:, 0]) - -example_plot(ax1) -example_plot(ax2) - -ax = fig.add_subplot(gs0[0:2, 1]) -example_plot(ax) -ax = fig.add_subplot(gs0[2:4, 1]) -example_plot(ax) -ax = fig.add_subplot(gs0[4:, 1]) -example_plot(ax) - -############################################################################ -# This example uses two gridspecs to have the colorbar only pertain to -# one set of pcolors. Note how the left column is wider than the -# two right-hand columns because of this. Of course, if you wanted the -# subplots to be the same size you only needed one gridspec. - - -def docomplicated(suptitle=None): - fig = plt.figure() - gs0 = fig.add_gridspec(1, 2, figure=fig, width_ratios=[1., 2.]) - gsl = gs0[0].subgridspec(2, 1) - gsr = gs0[1].subgridspec(2, 2) - - for gs in gsl: - ax = fig.add_subplot(gs) - example_plot(ax) - axs = [] - for gs in gsr: - ax = fig.add_subplot(gs) - pcm = ax.pcolormesh(arr, **pc_kwargs) - ax.set_xlabel('x-label') - ax.set_ylabel('y-label') - ax.set_title('title') - - axs += [ax] - fig.colorbar(pcm, ax=axs) - if suptitle is not None: - fig.suptitle(suptitle) - -docomplicated() - -############################################################################### -# Manually setting axes positions -# ================================ -# -# There can be good reasons to manually set an axes position. A manual call -# to `~.axes.Axes.set_position` will set the axes so constrained_layout has -# no effect on it anymore. (Note that constrained_layout still leaves the -# space for the axes that is moved). - -fig, axs = plt.subplots(1, 2) -example_plot(axs[0], fontsize=12) -axs[1].set_position([0.2, 0.2, 0.4, 0.4]) - -############################################################################### -# If you want an inset axes in data-space, you need to manually execute the -# layout using ``fig.execute_constrained_layout()`` call. The inset figure -# will then be properly positioned. However, it will not be properly -# positioned if the size of the figure is subsequently changed. Similarly, -# if the figure is printed to another backend, there may be slight changes -# of location due to small differences in how the backends render fonts. - -from matplotlib.transforms import Bbox - -fig, axs = plt.subplots(1, 2) -example_plot(axs[0], fontsize=12) -fig.execute_constrained_layout() -# put into data-space: -bb_data_ax2 = Bbox.from_bounds(0.5, 1., 0.2, 0.4) -disp_coords = axs[0].transData.transform(bb_data_ax2) -fig_coords_ax2 = fig.transFigure.inverted().transform(disp_coords) -bb_ax2 = Bbox(fig_coords_ax2) -ax2 = fig.add_axes(bb_ax2) - -############################################################################### -# Manually turning off ``constrained_layout`` -# =========================================== -# -# ``constrained_layout`` usually adjusts the axes positions on each draw -# of the figure. If you want to get the spacing provided by -# ``constrained_layout`` but not have it update, then do the initial -# draw and then call ``fig.set_constrained_layout(False)``. -# This is potentially useful for animations where the tick labels may -# change length. -# -# Note that ``constrained_layout`` is turned off for ``ZOOM`` and ``PAN`` -# GUI events for the backends that use the toolbar. This prevents the -# axes from changing position during zooming and panning. -# -# -# Limitations -# ======================== -# -# Incompatible functions -# ---------------------- -# -# ``constrained_layout`` will not work on subplots -# created via the `subplot` command. The reason is that each of these -# commands creates a separate `GridSpec` instance and ``constrained_layout`` -# uses (nested) gridspecs to carry out the layout. So the following fails -# to yield a nice layout: - - -fig = plt.figure() - -ax1 = plt.subplot(221) -ax2 = plt.subplot(223) -ax3 = plt.subplot(122) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -############################################################################### -# Of course that layout is possible using a gridspec: - -fig = plt.figure() -gs = fig.add_gridspec(2, 2) - -ax1 = fig.add_subplot(gs[0, 0]) -ax2 = fig.add_subplot(gs[1, 0]) -ax3 = fig.add_subplot(gs[:, 1]) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) - -############################################################################### -# Similarly, -# :func:`~matplotlib.pyplot.subplot2grid` doesn't work for the same reason: -# each call creates a different parent gridspec. - -fig = plt.figure() - -ax1 = plt.subplot2grid((3, 3), (0, 0)) -ax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2) -ax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2) -ax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -############################################################################### -# The way to make this plot compatible with ``constrained_layout`` is again -# to use ``gridspec`` directly - -fig = plt.figure() -gs = fig.add_gridspec(3, 3) - -ax1 = fig.add_subplot(gs[0, 0]) -ax2 = fig.add_subplot(gs[0, 1:]) -ax3 = fig.add_subplot(gs[1:, 0:2]) -ax4 = fig.add_subplot(gs[1:, -1]) - -example_plot(ax1) -example_plot(ax2) -example_plot(ax3) -example_plot(ax4) - -############################################################################### -# Other Caveats -# ------------- -# -# * ``constrained_layout`` only considers ticklabels, axis labels, titles, and -# legends. Thus, other artists may be clipped and also may overlap. -# -# * It assumes that the extra space needed for ticklabels, axis labels, -# and titles is independent of original location of axes. This is -# often true, but there are rare cases where it is not. -# -# * There are small differences in how the backends handle rendering fonts, -# so the results will not be pixel-identical. - -########################################################### -# Debugging -# ========= -# -# Constrained-layout can fail in somewhat unexpected ways. Because it uses -# a constraint solver the solver can find solutions that are mathematically -# correct, but that aren't at all what the user wants. The usual failure -# mode is for all sizes to collapse to their smallest allowable value. If -# this happens, it is for one of two reasons: -# -# 1. There was not enough room for the elements you were requesting to draw. -# 2. There is a bug - in which case open an issue at -# https://github.com/matplotlib/matplotlib/issues. -# -# If there is a bug, please report with a self-contained example that does -# not require outside data or dependencies (other than numpy). - -########################################################### -# Notes on the algorithm -# ====================== -# -# The algorithm for the constraint is relatively straightforward, but -# has some complexity due to the complex ways we can layout a figure. -# -# Figure layout -# ------------- -# -# Figures are laid out in a hierarchy: -# -# 1. Figure: ``fig = plt.figure()`` -# -# a. Gridspec ``gs0 = gridspec.GridSpec(1, 2, figure=fig)`` -# -# i. Subplotspec: ``ss = gs[0, 0]`` -# -# 1. Axes: ``ax0 = fig.add_subplot(ss)`` -# -# ii. Subplotspec: ``ss = gs[0, 1]`` -# -# 1. Gridspec: ``gsR = gridspec.GridSpecFromSubplotSpec(2, 1, ss)`` -# -# - Subplotspec: ``ss = gsR[0, 0]`` -# -# - Axes: ``axR0 = fig.add_subplot(ss)`` -# -# - Subplotspec: ``ss = gsR[1, 0]`` -# -# - Axes: ``axR1 = fig.add_subplot(ss)`` -# -# Each item has a layoutbox associated with it. The nesting of gridspecs -# created with `.GridSpecFromSubplotSpec` can be arbitrarily deep. -# -# Each `~matplotlib.axes.Axes` has *two* layoutboxes. The first one, -# ``ax._layoutbox`` represents the outside of the Axes and all its -# decorations (i.e. ticklabels,axis labels, etc.). -# The second layoutbox corresponds to the Axes' ``ax.position``, which sets -# where in the figure the spines are placed. -# -# Why so many stacked containers? Ideally, all that would be needed are the -# Axes layout boxes. For the Gridspec case, a container is -# needed if the Gridspec is nested via `.GridSpecFromSubplotSpec`. At the -# top level, it is desirable for symmetry, but it also makes room for -# `~.Figure.suptitle`. -# -# For the Subplotspec/Axes case, Axes often have colorbars or other -# annotations that need to be packaged inside the Subplotspec, hence the -# need for the outer layer. -# -# -# Simple case: one Axes -# --------------------- -# -# For a single Axes the layout is straight forward. The Figure and -# outer Gridspec layoutboxes coincide. The Subplotspec and Axes -# boxes also coincide because the Axes has no colorbar. Note -# the difference between the red ``pos`` box and the green ``ax`` box -# is set by the size of the decorations around the Axes. -# -# In the code, this is accomplished by the entries in -# ``do_constrained_layout()`` like:: -# -# ax._poslayoutbox.edit_left_margin_min(-bbox.x0 + pos.x0 + w_padt) -# - -from matplotlib._layoutbox import plot_children - -fig, ax = plt.subplots(constrained_layout=True) -example_plot(ax, fontsize=24) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Simple case: two Axes -# --------------------- -# For this case, the Axes layoutboxes and the Subplotspec boxes still -# co-incide. However, because the decorations in the right-hand plot are so -# much smaller than the left-hand, so the right-hand layoutboxes are smaller. -# -# The Subplotspec boxes are laid out in the code in the subroutine -# ``arange_subplotspecs()``, which simply checks the subplotspecs in the code -# against one another and stacks them appropriately. -# -# The two ``pos`` axes are lined up. Because they have the same -# minimum row, they are lined up at the top. Because -# they have the same maximum row they are lined up at the bottom. In the -# code this is accomplished via the calls to ``layoutbox.align``. If -# there was more than one row, then the same horizontal alignment would -# occur between the rows. -# -# The two ``pos`` axes are given the same width because the subplotspecs -# occupy the same number of columns. This is accomplished in the code where -# ``dcols0`` is compared to ``dcolsC``. If they are equal, then their widths -# are constrained to be equal. -# -# While it is a bit subtle in this case, note that the division between the -# Subplotspecs is *not* centered, but has been moved to the right to make -# space for the larger labels on the left-hand plot. - -fig, ax = plt.subplots(1, 2, constrained_layout=True) -example_plot(ax[0], fontsize=32) -example_plot(ax[1], fontsize=8) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Two Axes and colorbar -# --------------------- -# -# Adding a colorbar makes it clear why the Subplotspec layoutboxes must -# be different from the axes layoutboxes. Here we see the left-hand -# subplotspec has more room to accommodate the `~.Figure.colorbar`, and -# that there are two green ``ax`` boxes inside the ``ss`` box. -# -# Note that the width of the ``pos`` boxes is still the same because of the -# constraint on their widths because their subplotspecs occupy the same -# number of columns (one in this example). -# -# The colorbar layout logic is contained in `~matplotlib.colorbar.make_axes` -# which calls ``_constrained_layout.layoutcolorbarsingle()`` -# for cbars attached to a single axes, and -# ``_constrained_layout.layoutcolorbargridspec()`` if the colorbar is -# associated with a gridspec. - -fig, ax = plt.subplots(1, 2, constrained_layout=True) -im = ax[0].pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=ax[0], shrink=0.6) -im = ax[1].pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Colorbar associated with a Gridspec -# ----------------------------------- -# -# This example shows the Subplotspec layoutboxes being made smaller by -# a colorbar layoutbox. The size of the colorbar layoutbox is -# set to be ``shrink`` smaller than the vertical extent of the ``pos`` -# layoutboxes in the gridspec, and it is made to be centered between -# those two points. - -fig, axs = plt.subplots(2, 2, constrained_layout=True) -for ax in axs.flat: - im = ax.pcolormesh(arr, **pc_kwargs) -fig.colorbar(im, ax=axs, shrink=0.6) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Uneven sized Axes -# ----------------- -# -# There are two ways to make axes have an uneven size in a -# Gridspec layout, either by specifying them to cross Gridspecs rows -# or columns, or by specifying width and height ratios. -# -# The first method is used here. The constraint that makes the heights -# be correct is in the code where ``drowsC < drows0`` which in -# this case would be 1 is less than 2. So we constrain the -# height of the 1-row Axes to be less than half the height of the -# 2-row Axes. -# -# .. note:: -# -# This algorithm can be wrong if the decorations attached to the smaller -# axes are very large, so there is an unaccounted-for edge case. - - -fig = plt.figure(constrained_layout=True) -gs = gridspec.GridSpec(2, 2, figure=fig) -ax = fig.add_subplot(gs[:, 0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[0, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[1, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) - -####################################################################### -# Height and width ratios are accommodated with the same part of -# the code with the smaller axes always constrained to be less in size -# than the larger. - -fig = plt.figure(constrained_layout=True) -gs = gridspec.GridSpec(3, 2, figure=fig, - height_ratios=[1., 0.5, 1.5], - width_ratios=[1.2, 0.8]) -ax = fig.add_subplot(gs[:2, 0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[2, 0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[0, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[1:, 1]) -im = ax.pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) - -######################################################################## -# Empty gridspec slots -# -------------------- -# -# The final piece of the code that has not been explained is what happens if -# there is an empty gridspec opening. In that case a fake invisible axes is -# added and we proceed as before. The empty gridspec has no decorations, but -# the axes position in made the same size as the occupied Axes positions. -# -# This is done at the start of -# ``_constrained_layout.do_constrained_layout()`` (``hassubplotspec``). - -fig = plt.figure(constrained_layout=True) -gs = gridspec.GridSpec(1, 3, figure=fig) -ax = fig.add_subplot(gs[0]) -im = ax.pcolormesh(arr, **pc_kwargs) -ax = fig.add_subplot(gs[-1]) -im = ax.pcolormesh(arr, **pc_kwargs) -plot_children(fig, fig._layoutbox, printit=False) -plt.show() - -######################################################################## -# Other notes -# ----------- -# -# The layout is called only once. This is OK if the original layout was -# pretty close (which it should be in most cases). However, if the layout -# changes a lot from the default layout then the decorators can change size. -# In particular the x and ytick labels can change. If this happens, then -# we should probably call the whole routine twice. diff --git a/_downloads/d2757ab935dc8e4172b143cba41f37c2/hexbin_demo.ipynb b/_downloads/d2757ab935dc8e4172b143cba41f37c2/hexbin_demo.ipynb deleted file mode 120000 index 09adca73835..00000000000 --- a/_downloads/d2757ab935dc8e4172b143cba41f37c2/hexbin_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d2757ab935dc8e4172b143cba41f37c2/hexbin_demo.ipynb \ No newline at end of file diff --git a/_downloads/d278f67299d95ec436c42c7881e0b03e/dashpointlabel.ipynb b/_downloads/d278f67299d95ec436c42c7881e0b03e/dashpointlabel.ipynb deleted file mode 120000 index 287698bd76f..00000000000 --- a/_downloads/d278f67299d95ec436c42c7881e0b03e/dashpointlabel.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d278f67299d95ec436c42c7881e0b03e/dashpointlabel.ipynb \ No newline at end of file diff --git a/_downloads/d27df4f1f97c136fcba086c073e1d9a3/system_monitor.py b/_downloads/d27df4f1f97c136fcba086c073e1d9a3/system_monitor.py deleted file mode 120000 index dc780066c13..00000000000 --- a/_downloads/d27df4f1f97c136fcba086c073e1d9a3/system_monitor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/d27df4f1f97c136fcba086c073e1d9a3/system_monitor.py \ No newline at end of file diff --git a/_downloads/d28e91ed0853123b3f5938ee6143ad8e/two_scales.py b/_downloads/d28e91ed0853123b3f5938ee6143ad8e/two_scales.py deleted file mode 100644 index 6238732e47f..00000000000 --- a/_downloads/d28e91ed0853123b3f5938ee6143ad8e/two_scales.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -=========================== -Plots with different scales -=========================== - -Two plots on the same axes with different left and right scales. - -The trick is to use *two different axes* that share the same *x* axis. -You can use separate `matplotlib.ticker` formatters and locators as -desired since the two axes are independent. - -Such axes are generated by calling the :meth:`.Axes.twinx` method. Likewise, -:meth:`.Axes.twiny` is available to generate axes that share a *y* axis but -have different top and bottom scales. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Create some mock data -t = np.arange(0.01, 10.0, 0.01) -data1 = np.exp(t) -data2 = np.sin(2 * np.pi * t) - -fig, ax1 = plt.subplots() - -color = 'tab:red' -ax1.set_xlabel('time (s)') -ax1.set_ylabel('exp', color=color) -ax1.plot(t, data1, color=color) -ax1.tick_params(axis='y', labelcolor=color) - -ax2 = ax1.twinx() # instantiate a second axes that shares the same x-axis - -color = 'tab:blue' -ax2.set_ylabel('sin', color=color) # we already handled the x-label with ax1 -ax2.plot(t, data2, color=color) -ax2.tick_params(axis='y', labelcolor=color) - -fig.tight_layout() # otherwise the right y-label is slightly clipped -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.twinx -matplotlib.axes.Axes.twiny -matplotlib.axes.Axes.tick_params diff --git a/_downloads/d2b2180fa95d09b2a4636f93f257c01b/custom_boxstyle02.py b/_downloads/d2b2180fa95d09b2a4636f93f257c01b/custom_boxstyle02.py deleted file mode 120000 index 7b3475e167b..00000000000 --- a/_downloads/d2b2180fa95d09b2a4636f93f257c01b/custom_boxstyle02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d2b2180fa95d09b2a4636f93f257c01b/custom_boxstyle02.py \ No newline at end of file diff --git a/_downloads/d2b45e357db018fd2c553288f65f076f/tex_demo.py b/_downloads/d2b45e357db018fd2c553288f65f076f/tex_demo.py deleted file mode 100644 index f8683a82579..00000000000 --- a/_downloads/d2b45e357db018fd2c553288f65f076f/tex_demo.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -================================= -Rendering math equation using TeX -================================= - -You can use TeX to render all of your matplotlib text if the rc -parameter ``text.usetex`` is set. This works currently on the agg and ps -backends, and requires that you have tex and the other dependencies -described in the :doc:`/tutorials/text/usetex` tutorial -properly installed on your system. The first time you run a script -you will see a lot of output from tex and associated tools. The next -time, the run may be silent, as a lot of the information is cached. - -Notice how the label for the y axis is provided using unicode! - -""" -import numpy as np -import matplotlib -matplotlib.rcParams['text.usetex'] = True -import matplotlib.pyplot as plt - - -t = np.linspace(0.0, 1.0, 100) -s = np.cos(4 * np.pi * t) + 2 - -fig, ax = plt.subplots(figsize=(6, 4), tight_layout=True) -ax.plot(t, s) - -ax.set_xlabel(r'\textbf{time (s)}') -ax.set_ylabel('\\textit{Velocity (\N{DEGREE SIGN}/sec)}', fontsize=16) -ax.set_title(r'\TeX\ is Number $\displaystyle\sum_{n=1}^\infty' - r'\frac{-e^{i\pi}}{2^n}$!', fontsize=16, color='r') -plt.show() diff --git a/_downloads/d2c8b8c6d25d7da97611d120d4eafb12/anatomy.ipynb b/_downloads/d2c8b8c6d25d7da97611d120d4eafb12/anatomy.ipynb deleted file mode 120000 index 57c1dc3a4a1..00000000000 --- a/_downloads/d2c8b8c6d25d7da97611d120d4eafb12/anatomy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d2c8b8c6d25d7da97611d120d4eafb12/anatomy.ipynb \ No newline at end of file diff --git a/_downloads/d2c90c24c4f2f177b08dc3784f531d19/hist3d.py b/_downloads/d2c90c24c4f2f177b08dc3784f531d19/hist3d.py deleted file mode 120000 index efc30ac222b..00000000000 --- a/_downloads/d2c90c24c4f2f177b08dc3784f531d19/hist3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d2c90c24c4f2f177b08dc3784f531d19/hist3d.py \ No newline at end of file diff --git a/_downloads/d2ccb4b02b1d1dfdbe111157531e5761/animate_decay.py b/_downloads/d2ccb4b02b1d1dfdbe111157531e5761/animate_decay.py deleted file mode 100644 index b4b2aa091a1..00000000000 --- a/_downloads/d2ccb4b02b1d1dfdbe111157531e5761/animate_decay.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -===== -Decay -===== - -This example showcases: -- using a generator to drive an animation, -- changing axes limits during an animation. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - - -def data_gen(t=0): - cnt = 0 - while cnt < 1000: - cnt += 1 - t += 0.1 - yield t, np.sin(2*np.pi*t) * np.exp(-t/10.) - - -def init(): - ax.set_ylim(-1.1, 1.1) - ax.set_xlim(0, 10) - del xdata[:] - del ydata[:] - line.set_data(xdata, ydata) - return line, - -fig, ax = plt.subplots() -line, = ax.plot([], [], lw=2) -ax.grid() -xdata, ydata = [], [] - - -def run(data): - # update the data - t, y = data - xdata.append(t) - ydata.append(y) - xmin, xmax = ax.get_xlim() - - if t >= xmax: - ax.set_xlim(xmin, 2*xmax) - ax.figure.canvas.draw() - line.set_data(xdata, ydata) - - return line, - -ani = animation.FuncAnimation(fig, run, data_gen, blit=False, interval=10, - repeat=False, init_func=init) -plt.show() diff --git a/_downloads/d2dd7ced37865ed5df34883444163072/annotate_simple_coord03.ipynb b/_downloads/d2dd7ced37865ed5df34883444163072/annotate_simple_coord03.ipynb deleted file mode 100644 index 793fea88549..00000000000 --- a/_downloads/d2dd7ced37865ed5df34883444163072/annotate_simple_coord03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple Coord03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.text import OffsetFrom\n\n\nfig, ax = plt.subplots(figsize=(3, 2))\nan1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\n\noffset_from = OffsetFrom(an1, (0.5, 0))\nan2 = ax.annotate(\"Test 2\", xy=(0.1, 0.1), xycoords=\"data\",\n xytext=(0, -10), textcoords=offset_from,\n # xytext is offset points from \"xy=(0.5, 0), xycoords=an1\"\n va=\"top\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d2dda06b1bb885ef976948ef6ce4650e/embedding_in_qt_sgskip.py b/_downloads/d2dda06b1bb885ef976948ef6ce4650e/embedding_in_qt_sgskip.py deleted file mode 120000 index dbae4bee1e7..00000000000 --- a/_downloads/d2dda06b1bb885ef976948ef6ce4650e/embedding_in_qt_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d2dda06b1bb885ef976948ef6ce4650e/embedding_in_qt_sgskip.py \ No newline at end of file diff --git a/_downloads/d2de7735420fb386b1b157e190a758f8/text_rotation.ipynb b/_downloads/d2de7735420fb386b1b157e190a758f8/text_rotation.ipynb deleted file mode 100644 index b8491897d0d..00000000000 --- a/_downloads/d2de7735420fb386b1b157e190a758f8/text_rotation.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Default text rotation demonstration\n\n\nThe way Matplotlib does text layout by default is counter-intuitive to some, so\nthis example is designed to make it a little clearer.\n\nThe text is aligned by its bounding box (the rectangular box that surrounds the\nink rectangle). The order of operations is rotation then alignment.\nBasically, the text is centered at your x,y location, rotated around this\npoint, and then aligned according to the bounding box of the rotated text.\n\nSo if you specify left, bottom alignment, the bottom left of the\nbounding box of the rotated text will be at the x,y coordinate of the\ntext.\n\nBut a picture is worth a thousand words!\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef addtext(ax, props):\n ax.text(0.5, 0.5, 'text 0', props, rotation=0)\n ax.text(1.5, 0.5, 'text 45', props, rotation=45)\n ax.text(2.5, 0.5, 'text 135', props, rotation=135)\n ax.text(3.5, 0.5, 'text 225', props, rotation=225)\n ax.text(4.5, 0.5, 'text -45', props, rotation=-45)\n for x in range(0, 5):\n ax.scatter(x + 0.5, 0.5, color='r', alpha=0.5)\n ax.set_yticks([0, .5, 1])\n ax.set_xlim(0, 5)\n ax.grid(True)\n\n\n# the text bounding box\nbbox = {'fc': '0.8', 'pad': 0}\n\nfig, axs = plt.subplots(2, 1)\n\naddtext(axs[0], {'ha': 'center', 'va': 'center', 'bbox': bbox})\naxs[0].set_xticks(np.arange(0, 5.1, 0.5), [])\naxs[0].set_ylabel('center / center')\n\naddtext(axs[1], {'ha': 'left', 'va': 'bottom', 'bbox': bbox})\naxs[1].set_xticks(np.arange(0, 5.1, 0.5))\naxs[1].set_ylabel('left / bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d2e1c9473a1b4e6ccf74e818f6b7f957/textbox.py b/_downloads/d2e1c9473a1b4e6ccf74e818f6b7f957/textbox.py deleted file mode 100644 index b3c786014b6..00000000000 --- a/_downloads/d2e1c9473a1b4e6ccf74e818f6b7f957/textbox.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -======= -Textbox -======= - -Allowing text input with the Textbox widget. - -You can use the Textbox widget to let users provide any text that needs to be -displayed, including formulas. You can use a submit button to create plots -with the given input. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import TextBox -fig, ax = plt.subplots() -plt.subplots_adjust(bottom=0.2) -t = np.arange(-2.0, 2.0, 0.001) -s = t ** 2 -initial_text = "t ** 2" -l, = plt.plot(t, s, lw=2) - - -def submit(text): - ydata = eval(text) - l.set_ydata(ydata) - ax.set_ylim(np.min(ydata), np.max(ydata)) - plt.draw() - -axbox = plt.axes([0.1, 0.05, 0.8, 0.075]) -text_box = TextBox(axbox, 'Evaluate', initial=initial_text) -text_box.on_submit(submit) - -plt.show() diff --git a/_downloads/d2e368af21bb629300d1b3032affa09e/date.ipynb b/_downloads/d2e368af21bb629300d1b3032affa09e/date.ipynb deleted file mode 120000 index f8e0dad9c74..00000000000 --- a/_downloads/d2e368af21bb629300d1b3032affa09e/date.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d2e368af21bb629300d1b3032affa09e/date.ipynb \ No newline at end of file diff --git a/_downloads/d2e8fa581ba39f2d28ab253b4d4bf1ed/demo_bboximage.ipynb b/_downloads/d2e8fa581ba39f2d28ab253b4d4bf1ed/demo_bboximage.ipynb deleted file mode 120000 index 5df91da5598..00000000000 --- a/_downloads/d2e8fa581ba39f2d28ab253b4d4bf1ed/demo_bboximage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d2e8fa581ba39f2d28ab253b4d4bf1ed/demo_bboximage.ipynb \ No newline at end of file diff --git a/_downloads/d2f71507987e8d1788233b5cb9b6c470/multiple_yaxis_with_spines.ipynb b/_downloads/d2f71507987e8d1788233b5cb9b6c470/multiple_yaxis_with_spines.ipynb deleted file mode 100644 index 46816e3a40c..00000000000 --- a/_downloads/d2f71507987e8d1788233b5cb9b6c470/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multiple Yaxis With Spines\n\n\nCreate multiple y axes with a shared x axis. This is done by creating\na `~.axes.Axes.twinx` axes, turning all spines but the right one invisible\nand offset its position using `~.spines.Spine.set_position`.\n\nNote that this approach uses `matplotlib.axes.Axes` and their\n:class:`Spines<~matplotlib.spines.Spine>`. An alternative approach for parasite\naxes is shown in the :doc:`/gallery/axisartist/demo_parasite_axes` and\n:doc:`/gallery/axisartist/demo_parasite_axes2` examples.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef make_patch_spines_invisible(ax):\n ax.set_frame_on(True)\n ax.patch.set_visible(False)\n for sp in ax.spines.values():\n sp.set_visible(False)\n\n\nfig, host = plt.subplots()\nfig.subplots_adjust(right=0.75)\n\npar1 = host.twinx()\npar2 = host.twinx()\n\n# Offset the right spine of par2. The ticks and label have already been\n# placed on the right by twinx above.\npar2.spines[\"right\"].set_position((\"axes\", 1.2))\n# Having been created by twinx, par2 has its frame off, so the line of its\n# detached spine is invisible. First, activate the frame but make the patch\n# and spines invisible.\nmake_patch_spines_invisible(par2)\n# Second, show the right spine.\npar2.spines[\"right\"].set_visible(True)\n\np1, = host.plot([0, 1, 2], [0, 1, 2], \"b-\", label=\"Density\")\np2, = par1.plot([0, 1, 2], [0, 3, 2], \"r-\", label=\"Temperature\")\np3, = par2.plot([0, 1, 2], [50, 30, 15], \"g-\", label=\"Velocity\")\n\nhost.set_xlim(0, 2)\nhost.set_ylim(0, 2)\npar1.set_ylim(0, 4)\npar2.set_ylim(1, 65)\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar1.set_ylabel(\"Temperature\")\npar2.set_ylabel(\"Velocity\")\n\nhost.yaxis.label.set_color(p1.get_color())\npar1.yaxis.label.set_color(p2.get_color())\npar2.yaxis.label.set_color(p3.get_color())\n\ntkw = dict(size=4, width=1.5)\nhost.tick_params(axis='y', colors=p1.get_color(), **tkw)\npar1.tick_params(axis='y', colors=p2.get_color(), **tkw)\npar2.tick_params(axis='y', colors=p3.get_color(), **tkw)\nhost.tick_params(axis='x', **tkw)\n\nlines = [p1, p2, p3]\n\nhost.legend(lines, [l.get_label() for l in lines])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d2fbcbbbe2cdb6ae7bb26ea7a55668d5/custom_shaded_3d_surface.ipynb b/_downloads/d2fbcbbbe2cdb6ae7bb26ea7a55668d5/custom_shaded_3d_surface.ipynb deleted file mode 120000 index 20d23435d9e..00000000000 --- a/_downloads/d2fbcbbbe2cdb6ae7bb26ea7a55668d5/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d2fbcbbbe2cdb6ae7bb26ea7a55668d5/custom_shaded_3d_surface.ipynb \ No newline at end of file diff --git a/_downloads/d2ff9ed8bdb7c49d4f0ea32121074b78/subplot_demo.ipynb b/_downloads/d2ff9ed8bdb7c49d4f0ea32121074b78/subplot_demo.ipynb deleted file mode 120000 index 08adb4d05c0..00000000000 --- a/_downloads/d2ff9ed8bdb7c49d4f0ea32121074b78/subplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/d2ff9ed8bdb7c49d4f0ea32121074b78/subplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/d313a4c6dbb0b346dd92d2db05084ac5/log_demo.ipynb b/_downloads/d313a4c6dbb0b346dd92d2db05084ac5/log_demo.ipynb deleted file mode 120000 index 0c1956c4cd8..00000000000 --- a/_downloads/d313a4c6dbb0b346dd92d2db05084ac5/log_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d313a4c6dbb0b346dd92d2db05084ac5/log_demo.ipynb \ No newline at end of file diff --git a/_downloads/d3233625e3385a1339968f856b24899b/font_table.py b/_downloads/d3233625e3385a1339968f856b24899b/font_table.py deleted file mode 100644 index 2cfbd366f65..00000000000 --- a/_downloads/d3233625e3385a1339968f856b24899b/font_table.py +++ /dev/null @@ -1,120 +0,0 @@ -""" -========== -Font table -========== - -Matplotlib's font support is provided by the FreeType library. - -Here, we use `~.Axes.table` to draw a table that shows the glyphs by Unicode -codepoint. For brevity, the table only contains the first 256 glyphs. - -The example is a full working script. You can download it and use it to -investigate a font by running :: - - python font_table.py /path/to/font/file -""" - -import unicodedata - -import matplotlib.font_manager as fm -from matplotlib.ft2font import FT2Font -import matplotlib.pyplot as plt - - -def print_glyphs(path): - """ - Print the all glyphs in the given font file to stdout. - - Parameters - ---------- - path : str or None - The path to the font file. If None, use Matplotlib's default font. - """ - if path is None: - path = fm.findfont(fm.FontProperties()) # The default font. - - font = FT2Font(path) - - charmap = font.get_charmap() - max_indices_len = len(str(max(charmap.values()))) - - print("The font face contains the following glyphs:") - for char_code, glyph_index in charmap.items(): - char = chr(char_code) - name = unicodedata.name( - char, - f"{char_code:#x} ({font.get_glyph_name(glyph_index)})") - print(f"{glyph_index:>{max_indices_len}} {char} {name}") - - -def draw_font_table(path): - """ - Draw a font table of the first 255 chars of the given font. - - Parameters - ---------- - path : str or None - The path to the font file. If None, use Matplotlib's default font. - """ - if path is None: - path = fm.findfont(fm.FontProperties()) # The default font. - - font = FT2Font(path) - # A charmap is a mapping of "character codes" (in the sense of a character - # encoding, e.g. latin-1) to glyph indices (i.e. the internal storage table - # of the font face). - # In FreeType>=2.1, a Unicode charmap (i.e. mapping Unicode codepoints) - # is selected by default. Moreover, recent versions of FreeType will - # automatically synthesize such a charmap if the font does not include one - # (this behavior depends on the font format; for example it is present - # since FreeType 2.0 for Type 1 fonts but only since FreeType 2.8 for - # TrueType (actually, SFNT) fonts). - # The code below (specifically, the ``chr(char_code)`` call) assumes that - # we have indeed selected a Unicode charmap. - codes = font.get_charmap().items() - - labelc = ["{:X}".format(i) for i in range(16)] - labelr = ["{:02X}".format(16 * i) for i in range(16)] - chars = [["" for c in range(16)] for r in range(16)] - - for char_code, glyph_index in codes: - if char_code >= 256: - continue - row, col = divmod(char_code, 16) - chars[row][col] = chr(char_code) - - fig, ax = plt.subplots(figsize=(8, 4)) - ax.set_title(path) - ax.set_axis_off() - - table = ax.table( - cellText=chars, - rowLabels=labelr, - colLabels=labelc, - rowColours=["palegreen"] * 16, - colColours=["palegreen"] * 16, - cellColours=[[".95" for c in range(16)] for r in range(16)], - cellLoc='center', - loc='upper left', - ) - for key, cell in table.get_celld().items(): - row, col = key - if row > 0 and col > -1: # Beware of table's idiosyncratic indexing... - cell.set_text_props(fontproperties=fm.FontProperties(fname=path)) - - fig.tight_layout() - plt.show() - - -if __name__ == "__main__": - from argparse import ArgumentParser - - parser = ArgumentParser(description="Display a font table.") - parser.add_argument("path", nargs="?", help="Path to the font file.") - parser.add_argument("--print-all", action="store_true", - help="Additionally, print all chars to stdout.") - args = parser.parse_args() - - if args.print_all: - print_glyphs(args.path) - draw_font_table(args.path) diff --git a/_downloads/d32597948170983d2b12505dc6fdd9ae/simple_axes_divider2.py b/_downloads/d32597948170983d2b12505dc6fdd9ae/simple_axes_divider2.py deleted file mode 120000 index 283679dd535..00000000000 --- a/_downloads/d32597948170983d2b12505dc6fdd9ae/simple_axes_divider2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d32597948170983d2b12505dc6fdd9ae/simple_axes_divider2.py \ No newline at end of file diff --git a/_downloads/d329c0748dc2220fb87215507bc5506f/demo_ribbon_box.ipynb b/_downloads/d329c0748dc2220fb87215507bc5506f/demo_ribbon_box.ipynb deleted file mode 100644 index ce9ec1492b2..00000000000 --- a/_downloads/d329c0748dc2220fb87215507bc5506f/demo_ribbon_box.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ribbon Box\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib import cbook, colors as mcolors\nfrom matplotlib.image import AxesImage\nimport matplotlib.pyplot as plt\nfrom matplotlib.transforms import Bbox, TransformedBbox, BboxTransformTo\n\n\nclass RibbonBox:\n\n original_image = plt.imread(\n cbook.get_sample_data(\"Minduka_Present_Blue_Pack.png\"))\n cut_location = 70\n b_and_h = original_image[:, :, 2:3]\n color = original_image[:, :, 2:3] - original_image[:, :, 0:1]\n alpha = original_image[:, :, 3:4]\n nx = original_image.shape[1]\n\n def __init__(self, color):\n rgb = mcolors.to_rgba(color)[:3]\n self.im = np.dstack(\n [self.b_and_h - self.color * (1 - np.array(rgb)), self.alpha])\n\n def get_stretched_image(self, stretch_factor):\n stretch_factor = max(stretch_factor, 1)\n ny, nx, nch = self.im.shape\n ny2 = int(ny*stretch_factor)\n return np.vstack(\n [self.im[:self.cut_location],\n np.broadcast_to(\n self.im[self.cut_location], (ny2 - ny, nx, nch)),\n self.im[self.cut_location:]])\n\n\nclass RibbonBoxImage(AxesImage):\n zorder = 1\n\n def __init__(self, ax, bbox, color, *, extent=(0, 1, 0, 1), **kwargs):\n super().__init__(ax, extent=extent, **kwargs)\n self._bbox = bbox\n self._ribbonbox = RibbonBox(color)\n self.set_transform(BboxTransformTo(bbox))\n\n def draw(self, renderer, *args, **kwargs):\n stretch_factor = self._bbox.height / self._bbox.width\n\n ny = int(stretch_factor*self._ribbonbox.nx)\n if self.get_array() is None or self.get_array().shape[0] != ny:\n arr = self._ribbonbox.get_stretched_image(stretch_factor)\n self.set_array(arr)\n\n super().draw(renderer, *args, **kwargs)\n\n\ndef main():\n fig, ax = plt.subplots()\n\n years = np.arange(2004, 2009)\n heights = [7900, 8100, 7900, 6900, 2800]\n box_colors = [\n (0.8, 0.2, 0.2),\n (0.2, 0.8, 0.2),\n (0.2, 0.2, 0.8),\n (0.7, 0.5, 0.8),\n (0.3, 0.8, 0.7),\n ]\n\n for year, h, bc in zip(years, heights, box_colors):\n bbox0 = Bbox.from_extents(year - 0.4, 0., year + 0.4, h)\n bbox = TransformedBbox(bbox0, ax.transData)\n ax.add_artist(RibbonBoxImage(ax, bbox, bc, interpolation=\"bicubic\"))\n ax.annotate(str(h), (year, h), va=\"bottom\", ha=\"center\")\n\n ax.set_xlim(years[0] - 0.5, years[-1] + 0.5)\n ax.set_ylim(0, 10000)\n\n background_gradient = np.zeros((2, 2, 4))\n background_gradient[:, :, :3] = [1, 1, 0]\n background_gradient[:, :, 3] = [[0.1, 0.3], [0.3, 0.5]] # alpha channel\n ax.imshow(background_gradient, interpolation=\"bicubic\", zorder=0.1,\n extent=(0, 1, 0, 1), transform=ax.transAxes, aspect=\"auto\")\n\n plt.show()\n\n\nmain()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d32f52ff402add30e838ae14f75a079c/viewlims.ipynb b/_downloads/d32f52ff402add30e838ae14f75a079c/viewlims.ipynb deleted file mode 120000 index 02ef01ec0fb..00000000000 --- a/_downloads/d32f52ff402add30e838ae14f75a079c/viewlims.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d32f52ff402add30e838ae14f75a079c/viewlims.ipynb \ No newline at end of file diff --git a/_downloads/d331dd130b743c08f6bb39b61996a660/tick-formatters.py b/_downloads/d331dd130b743c08f6bb39b61996a660/tick-formatters.py deleted file mode 120000 index 1ae402e2c03..00000000000 --- a/_downloads/d331dd130b743c08f6bb39b61996a660/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d331dd130b743c08f6bb39b61996a660/tick-formatters.py \ No newline at end of file diff --git a/_downloads/d33d75b2b1ac7d843e3edbdbea0d7ef4/multipage_pdf.py b/_downloads/d33d75b2b1ac7d843e3edbdbea0d7ef4/multipage_pdf.py deleted file mode 120000 index 755aec2d026..00000000000 --- a/_downloads/d33d75b2b1ac7d843e3edbdbea0d7ef4/multipage_pdf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d33d75b2b1ac7d843e3edbdbea0d7ef4/multipage_pdf.py \ No newline at end of file diff --git a/_downloads/d340f8592cae6c5ad2c4a700192f3acc/xkcd.py b/_downloads/d340f8592cae6c5ad2c4a700192f3acc/xkcd.py deleted file mode 120000 index 65d47b190a3..00000000000 --- a/_downloads/d340f8592cae6c5ad2c4a700192f3acc/xkcd.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d340f8592cae6c5ad2c4a700192f3acc/xkcd.py \ No newline at end of file diff --git a/_downloads/d343fb33b0b6939b5b6889746408ce12/whats_new_98_4_fill_between.py b/_downloads/d343fb33b0b6939b5b6889746408ce12/whats_new_98_4_fill_between.py deleted file mode 120000 index 78c76d5707c..00000000000 --- a/_downloads/d343fb33b0b6939b5b6889746408ce12/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d343fb33b0b6939b5b6889746408ce12/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/_downloads/d348774266db78e5bad380d4ae2a2121/pyplot_text.py b/_downloads/d348774266db78e5bad380d4ae2a2121/pyplot_text.py deleted file mode 120000 index 26b050913d4..00000000000 --- a/_downloads/d348774266db78e5bad380d4ae2a2121/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d348774266db78e5bad380d4ae2a2121/pyplot_text.py \ No newline at end of file diff --git a/_downloads/d34fde896458777d8c0b0b8d093cab16/print_stdout_sgskip.py b/_downloads/d34fde896458777d8c0b0b8d093cab16/print_stdout_sgskip.py deleted file mode 100644 index 69b0b33616d..00000000000 --- a/_downloads/d34fde896458777d8c0b0b8d093cab16/print_stdout_sgskip.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -============ -Print Stdout -============ - -print png to standard out - -usage: python print_stdout.py > somefile.png - -""" - -import sys -import matplotlib -matplotlib.use('Agg') -import matplotlib.pyplot as plt - -plt.plot([1, 2, 3]) -plt.savefig(sys.stdout.buffer) diff --git a/_downloads/d355886fadd824759c7eda2d90fccf8f/sankey_links.py b/_downloads/d355886fadd824759c7eda2d90fccf8f/sankey_links.py deleted file mode 100644 index 61dfc06d41b..00000000000 --- a/_downloads/d355886fadd824759c7eda2d90fccf8f/sankey_links.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -====================================== -Long chain of connections using Sankey -====================================== - -Demonstrate/test the Sankey class by producing a long chain of connections. -""" - -import matplotlib.pyplot as plt -from matplotlib.sankey import Sankey - -links_per_side = 6 - - -def side(sankey, n=1): - """Generate a side chain.""" - prior = len(sankey.diagrams) - for i in range(0, 2*n, 2): - sankey.add(flows=[1, -1], orientations=[-1, -1], - patchlabel=str(prior + i), - prior=prior + i - 1, connect=(1, 0), alpha=0.5) - sankey.add(flows=[1, -1], orientations=[1, 1], - patchlabel=str(prior + i + 1), - prior=prior + i, connect=(1, 0), alpha=0.5) - - -def corner(sankey): - """Generate a corner link.""" - prior = len(sankey.diagrams) - sankey.add(flows=[1, -1], orientations=[0, 1], - patchlabel=str(prior), facecolor='k', - prior=prior - 1, connect=(1, 0), alpha=0.5) - - -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], - title="Why would you want to do this?\n(But you could.)") -sankey = Sankey(ax=ax, unit=None) -sankey.add(flows=[1, -1], orientations=[0, 1], - patchlabel="0", facecolor='k', - rotation=45) -side(sankey, n=links_per_side) -corner(sankey) -side(sankey, n=links_per_side) -corner(sankey) -side(sankey, n=links_per_side) -corner(sankey) -side(sankey, n=links_per_side) -sankey.finish() -# Notice: -# 1. The alignment doesn't drift significantly (if at all; with 16007 -# subdiagrams there is still closure). -# 2. The first diagram is rotated 45 deg, so all other diagrams are rotated -# accordingly. - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.sankey -matplotlib.sankey.Sankey -matplotlib.sankey.Sankey.add -matplotlib.sankey.Sankey.finish diff --git a/_downloads/d3644fc496732c1c281a51a93c894165/scales.ipynb b/_downloads/d3644fc496732c1c281a51a93c894165/scales.ipynb deleted file mode 100644 index 2a8ca12ba23..00000000000 --- a/_downloads/d3644fc496732c1c281a51a93c894165/scales.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scales\n\n\nIllustrate the scale transformations applied to axes, e.g. log, symlog, logit.\n\nThe last two examples are examples of using the ``'function'`` scale by\nsupplying forward and inverse functions for the scale transformation.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import NullFormatter, FixedLocator\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# make up some data in the interval ]0, 1[\ny = np.random.normal(loc=0.5, scale=0.4, size=1000)\ny = y[(y > 0) & (y < 1)]\ny.sort()\nx = np.arange(len(y))\n\n# plot with various axes scales\nfig, axs = plt.subplots(3, 2, figsize=(6, 8),\n constrained_layout=True)\n\n# linear\nax = axs[0, 0]\nax.plot(x, y)\nax.set_yscale('linear')\nax.set_title('linear')\nax.grid(True)\n\n\n# log\nax = axs[0, 1]\nax.plot(x, y)\nax.set_yscale('log')\nax.set_title('log')\nax.grid(True)\n\n\n# symmetric log\nax = axs[1, 1]\nax.plot(x, y - y.mean())\nax.set_yscale('symlog', linthreshy=0.02)\nax.set_title('symlog')\nax.grid(True)\n\n# logit\nax = axs[1, 0]\nax.plot(x, y)\nax.set_yscale('logit')\nax.set_title('logit')\nax.grid(True)\nax.yaxis.set_minor_formatter(NullFormatter())\n\n\n# Function x**(1/2)\ndef forward(x):\n return x**(1/2)\n\n\ndef inverse(x):\n return x**2\n\n\nax = axs[2, 0]\nax.plot(x, y)\nax.set_yscale('function', functions=(forward, inverse))\nax.set_title('function: $x^{1/2}$')\nax.grid(True)\nax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2)**2))\nax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2)))\n\n\n# Function Mercator transform\ndef forward(a):\n a = np.deg2rad(a)\n return np.rad2deg(np.log(np.abs(np.tan(a) + 1.0 / np.cos(a))))\n\n\ndef inverse(a):\n a = np.deg2rad(a)\n return np.rad2deg(np.arctan(np.sinh(a)))\n\nax = axs[2, 1]\n\nt = np.arange(-170.0, 170.0, 0.1)\ns = t / 2.\n\nax.plot(t, s, '-', lw=2)\n\nax.set_yscale('function', functions=(forward, inverse))\nax.set_title('function: Mercator')\nax.grid(True)\nax.set_xlim([-180, 180])\nax.yaxis.set_minor_formatter(NullFormatter())\nax.yaxis.set_major_locator(FixedLocator(np.arange(-90, 90, 30)))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.set_yscale\nmatplotlib.axes.Axes.set_xscale\nmatplotlib.axis.Axis.set_major_locator\nmatplotlib.scale.LogitScale\nmatplotlib.scale.LogScale\nmatplotlib.scale.LinearScale\nmatplotlib.scale.SymmetricalLogScale\nmatplotlib.scale.FuncScale" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d36b5eca27b65f4b6ca111c0b67edbdf/custom_ticker1.py b/_downloads/d36b5eca27b65f4b6ca111c0b67edbdf/custom_ticker1.py deleted file mode 120000 index 855eb0cf46d..00000000000 --- a/_downloads/d36b5eca27b65f4b6ca111c0b67edbdf/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d36b5eca27b65f4b6ca111c0b67edbdf/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/d36e41b485c896da23c6c8b256d49f15/polar_demo.py b/_downloads/d36e41b485c896da23c6c8b256d49f15/polar_demo.py deleted file mode 120000 index 0f1ebad553d..00000000000 --- a/_downloads/d36e41b485c896da23c6c8b256d49f15/polar_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d36e41b485c896da23c6c8b256d49f15/polar_demo.py \ No newline at end of file diff --git a/_downloads/d374060d1971ad06b0eefb2834eb9a9f/embedding_in_tk_sgskip.py b/_downloads/d374060d1971ad06b0eefb2834eb9a9f/embedding_in_tk_sgskip.py deleted file mode 100644 index 3b8516dbff3..00000000000 --- a/_downloads/d374060d1971ad06b0eefb2834eb9a9f/embedding_in_tk_sgskip.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -=============== -Embedding in Tk -=============== - -""" - -import tkinter - -from matplotlib.backends.backend_tkagg import ( - FigureCanvasTkAgg, NavigationToolbar2Tk) -# Implement the default Matplotlib key bindings. -from matplotlib.backend_bases import key_press_handler -from matplotlib.figure import Figure - -import numpy as np - - -root = tkinter.Tk() -root.wm_title("Embedding in Tk") - -fig = Figure(figsize=(5, 4), dpi=100) -t = np.arange(0, 3, .01) -fig.add_subplot(111).plot(t, 2 * np.sin(2 * np.pi * t)) - -canvas = FigureCanvasTkAgg(fig, master=root) # A tk.DrawingArea. -canvas.draw() -canvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1) - -toolbar = NavigationToolbar2Tk(canvas, root) -toolbar.update() -canvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1) - - -def on_key_press(event): - print("you pressed {}".format(event.key)) - key_press_handler(event, canvas, toolbar) - - -canvas.mpl_connect("key_press_event", on_key_press) - - -def _quit(): - root.quit() # stops mainloop - root.destroy() # this is necessary on Windows to prevent - # Fatal Python Error: PyEval_RestoreThread: NULL tstate - - -button = tkinter.Button(master=root, text="Quit", command=_quit) -button.pack(side=tkinter.BOTTOM) - -tkinter.mainloop() -# If you put root.destroy() here, it will cause an error if the window is -# closed with the window manager. diff --git a/_downloads/d375054414f0a71288cefca1d591a5d7/gridspec_and_subplots.ipynb b/_downloads/d375054414f0a71288cefca1d591a5d7/gridspec_and_subplots.ipynb deleted file mode 100644 index 25c46d2af56..00000000000 --- a/_downloads/d375054414f0a71288cefca1d591a5d7/gridspec_and_subplots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Combining two subplots using subplots and GridSpec\n\n\nSometimes we want to combine two subplots in an axes layout created with\n`~.Figure.subplots`. We can get the `~.gridspec.GridSpec` from the axes\nand then remove the covered axes and fill the gap with a new bigger axes.\nHere we create a layout with the bottom two axes in the last column combined.\n\nSee also :doc:`/tutorials/intermediate/gridspec`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, axs = plt.subplots(ncols=3, nrows=3)\ngs = axs[1, 2].get_gridspec()\n# remove the underlying axes\nfor ax in axs[1:, -1]:\n ax.remove()\naxbig = fig.add_subplot(gs[1:, -1])\naxbig.annotate('Big Axes \\nGridSpec[1:, -1]', (0.1, 0.5),\n xycoords='axes fraction', va='center')\n\nfig.tight_layout()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d375b8b6e7cb5e809d09e75e9ecd9b6c/power_norm.py b/_downloads/d375b8b6e7cb5e809d09e75e9ecd9b6c/power_norm.py deleted file mode 120000 index ea6c7ed86b8..00000000000 --- a/_downloads/d375b8b6e7cb5e809d09e75e9ecd9b6c/power_norm.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d375b8b6e7cb5e809d09e75e9ecd9b6c/power_norm.py \ No newline at end of file diff --git a/_downloads/d37738073772e1fd2b0f92d77c99d05d/affine_image.ipynb b/_downloads/d37738073772e1fd2b0f92d77c99d05d/affine_image.ipynb deleted file mode 120000 index c8e2aa81dc8..00000000000 --- a/_downloads/d37738073772e1fd2b0f92d77c99d05d/affine_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d37738073772e1fd2b0f92d77c99d05d/affine_image.ipynb \ No newline at end of file diff --git a/_downloads/d38476d9bc0d3a2b500f964a4fba2702/pipong.py b/_downloads/d38476d9bc0d3a2b500f964a4fba2702/pipong.py deleted file mode 100644 index c7a925a7db9..00000000000 --- a/_downloads/d38476d9bc0d3a2b500f964a4fba2702/pipong.py +++ /dev/null @@ -1,291 +0,0 @@ -""" -====== -Pipong -====== - -A Matplotlib based game of Pong illustrating one way to write interactive -animation which are easily ported to multiple backends -pipong.py was written by Paul Ivanov -""" - - -import numpy as np -import matplotlib.pyplot as plt -from numpy.random import randn, randint -from matplotlib.font_manager import FontProperties - -instructions = """ -Player A: Player B: - 'e' up 'i' - 'd' down 'k' - -press 't' -- close these instructions - (animation will be much faster) -press 'a' -- add a puck -press 'A' -- remove a puck -press '1' -- slow down all pucks -press '2' -- speed up all pucks -press '3' -- slow down distractors -press '4' -- speed up distractors -press ' ' -- reset the first puck -press 'n' -- toggle distractors on/off -press 'g' -- toggle the game on/off - - """ - - -class Pad(object): - def __init__(self, disp, x, y, type='l'): - self.disp = disp - self.x = x - self.y = y - self.w = .3 - self.score = 0 - self.xoffset = 0.3 - self.yoffset = 0.1 - if type == 'r': - self.xoffset *= -1.0 - - if type == 'l' or type == 'r': - self.signx = -1.0 - self.signy = 1.0 - else: - self.signx = 1.0 - self.signy = -1.0 - - def contains(self, loc): - return self.disp.get_bbox().contains(loc.x, loc.y) - - -class Puck(object): - def __init__(self, disp, pad, field): - self.vmax = .2 - self.disp = disp - self.field = field - self._reset(pad) - - def _reset(self, pad): - self.x = pad.x + pad.xoffset - if pad.y < 0: - self.y = pad.y + pad.yoffset - else: - self.y = pad.y - pad.yoffset - self.vx = pad.x - self.x - self.vy = pad.y + pad.w/2 - self.y - self._speedlimit() - self._slower() - self._slower() - - def update(self, pads): - self.x += self.vx - self.y += self.vy - for pad in pads: - if pad.contains(self): - self.vx *= 1.2 * pad.signx - self.vy *= 1.2 * pad.signy - fudge = .001 - # probably cleaner with something like... - if self.x < fudge: - pads[1].score += 1 - self._reset(pads[0]) - return True - if self.x > 7 - fudge: - pads[0].score += 1 - self._reset(pads[1]) - return True - if self.y < -1 + fudge or self.y > 1 - fudge: - self.vy *= -1.0 - # add some randomness, just to make it interesting - self.vy -= (randn()/300.0 + 1/300.0) * np.sign(self.vy) - self._speedlimit() - return False - - def _slower(self): - self.vx /= 5.0 - self.vy /= 5.0 - - def _faster(self): - self.vx *= 5.0 - self.vy *= 5.0 - - def _speedlimit(self): - if self.vx > self.vmax: - self.vx = self.vmax - if self.vx < -self.vmax: - self.vx = -self.vmax - - if self.vy > self.vmax: - self.vy = self.vmax - if self.vy < -self.vmax: - self.vy = -self.vmax - - -class Game(object): - def __init__(self, ax): - # create the initial line - self.ax = ax - ax.set_ylim([-1, 1]) - ax.set_xlim([0, 7]) - padAx = 0 - padBx = .50 - padAy = padBy = .30 - padBx += 6.3 - - # pads - pA, = self.ax.barh(padAy, .2, - height=.3, color='k', alpha=.5, edgecolor='b', - lw=2, label="Player B", - animated=True) - pB, = self.ax.barh(padBy, .2, - height=.3, left=padBx, color='k', alpha=.5, - edgecolor='r', lw=2, label="Player A", - animated=True) - - # distractors - self.x = np.arange(0, 2.22*np.pi, 0.01) - self.line, = self.ax.plot(self.x, np.sin(self.x), "r", - animated=True, lw=4) - self.line2, = self.ax.plot(self.x, np.cos(self.x), "g", - animated=True, lw=4) - self.line3, = self.ax.plot(self.x, np.cos(self.x), "g", - animated=True, lw=4) - self.line4, = self.ax.plot(self.x, np.cos(self.x), "r", - animated=True, lw=4) - - # center line - self.centerline, = self.ax.plot([3.5, 3.5], [1, -1], 'k', - alpha=.5, animated=True, lw=8) - - # puck (s) - self.puckdisp = self.ax.scatter([1], [1], label='_nolegend_', - s=200, c='g', - alpha=.9, animated=True) - - self.canvas = self.ax.figure.canvas - self.background = None - self.cnt = 0 - self.distract = True - self.res = 100.0 - self.on = False - self.inst = True # show instructions from the beginning - self.background = None - self.pads = [] - self.pads.append(Pad(pA, padAx, padAy)) - self.pads.append(Pad(pB, padBx, padBy, 'r')) - self.pucks = [] - self.i = self.ax.annotate(instructions, (.5, 0.5), - name='monospace', - verticalalignment='center', - horizontalalignment='center', - multialignment='left', - textcoords='axes fraction', - animated=False) - self.canvas.mpl_connect('key_press_event', self.key_press) - - def draw(self, evt): - draw_artist = self.ax.draw_artist - if self.background is None: - self.background = self.canvas.copy_from_bbox(self.ax.bbox) - - # restore the clean slate background - self.canvas.restore_region(self.background) - - # show the distractors - if self.distract: - self.line.set_ydata(np.sin(self.x + self.cnt/self.res)) - self.line2.set_ydata(np.cos(self.x - self.cnt/self.res)) - self.line3.set_ydata(np.tan(self.x + self.cnt/self.res)) - self.line4.set_ydata(np.tan(self.x - self.cnt/self.res)) - draw_artist(self.line) - draw_artist(self.line2) - draw_artist(self.line3) - draw_artist(self.line4) - - # pucks and pads - if self.on: - self.ax.draw_artist(self.centerline) - for pad in self.pads: - pad.disp.set_y(pad.y) - pad.disp.set_x(pad.x) - self.ax.draw_artist(pad.disp) - - for puck in self.pucks: - if puck.update(self.pads): - # we only get here if someone scored - self.pads[0].disp.set_label( - " " + str(self.pads[0].score)) - self.pads[1].disp.set_label( - " " + str(self.pads[1].score)) - self.ax.legend(loc='center', framealpha=.2, - facecolor='0.5', - prop=FontProperties(size='xx-large', - weight='bold')) - - self.background = None - self.ax.figure.canvas.draw_idle() - return True - puck.disp.set_offsets([[puck.x, puck.y]]) - self.ax.draw_artist(puck.disp) - - # just redraw the axes rectangle - self.canvas.blit(self.ax.bbox) - self.canvas.flush_events() - if self.cnt == 50000: - # just so we don't get carried away - print("...and you've been playing for too long!!!") - plt.close() - - self.cnt += 1 - return True - - def key_press(self, event): - if event.key == '3': - self.res *= 5.0 - if event.key == '4': - self.res /= 5.0 - - if event.key == 'e': - self.pads[0].y += .1 - if self.pads[0].y > 1 - .3: - self.pads[0].y = 1 - .3 - if event.key == 'd': - self.pads[0].y -= .1 - if self.pads[0].y < -1: - self.pads[0].y = -1 - - if event.key == 'i': - self.pads[1].y += .1 - if self.pads[1].y > 1 - .3: - self.pads[1].y = 1 - .3 - if event.key == 'k': - self.pads[1].y -= .1 - if self.pads[1].y < -1: - self.pads[1].y = -1 - - if event.key == 'a': - self.pucks.append(Puck(self.puckdisp, - self.pads[randint(2)], - self.ax.bbox)) - if event.key == 'A' and len(self.pucks): - self.pucks.pop() - if event.key == ' ' and len(self.pucks): - self.pucks[0]._reset(self.pads[randint(2)]) - if event.key == '1': - for p in self.pucks: - p._slower() - if event.key == '2': - for p in self.pucks: - p._faster() - - if event.key == 'n': - self.distract = not self.distract - - if event.key == 'g': - self.on = not self.on - if event.key == 't': - self.inst = not self.inst - self.i.set_visible(not self.i.get_visible()) - self.background = None - self.canvas.draw_idle() - if event.key == 'q': - plt.close() diff --git a/_downloads/d387bf7657883afae7169e9177dd7938/artist_tests.ipynb b/_downloads/d387bf7657883afae7169e9177dd7938/artist_tests.ipynb deleted file mode 120000 index 315b3c96cb5..00000000000 --- a/_downloads/d387bf7657883afae7169e9177dd7938/artist_tests.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d387bf7657883afae7169e9177dd7938/artist_tests.ipynb \ No newline at end of file diff --git a/_downloads/d3883a9d3c3860fad3a6e6b4bc53e99e/demo_axes_grid2.ipynb b/_downloads/d3883a9d3c3860fad3a6e6b4bc53e99e/demo_axes_grid2.ipynb deleted file mode 120000 index 370e0e8fc17..00000000000 --- a/_downloads/d3883a9d3c3860fad3a6e6b4bc53e99e/demo_axes_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d3883a9d3c3860fad3a6e6b4bc53e99e/demo_axes_grid2.ipynb \ No newline at end of file diff --git a/_downloads/d38f0709b33f346f15da9bc156468c74/whats_new_98_4_fancy.py b/_downloads/d38f0709b33f346f15da9bc156468c74/whats_new_98_4_fancy.py deleted file mode 120000 index 0426a0be24e..00000000000 --- a/_downloads/d38f0709b33f346f15da9bc156468c74/whats_new_98_4_fancy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d38f0709b33f346f15da9bc156468c74/whats_new_98_4_fancy.py \ No newline at end of file diff --git a/_downloads/d392feeab60919f3046706b72576b37f/marker_reference.py b/_downloads/d392feeab60919f3046706b72576b37f/marker_reference.py deleted file mode 100644 index b0c2cdca6f8..00000000000 --- a/_downloads/d392feeab60919f3046706b72576b37f/marker_reference.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -================ -Marker Reference -================ - -Reference for filled-, unfilled- and custom marker types with Matplotlib. - -For a list of all markers see the `matplotlib.markers` documentation. Also -refer to the :doc:`/gallery/lines_bars_and_markers/marker_fillstyle_reference` -and :doc:`/gallery/shapes_and_collections/marker_path` examples. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.lines import Line2D - - -points = np.ones(3) # Draw 3 points for each line -text_style = dict(horizontalalignment='right', verticalalignment='center', - fontsize=12, fontdict={'family': 'monospace'}) -marker_style = dict(linestyle=':', color='0.8', markersize=10, - mfc="C0", mec="C0") - - -def format_axes(ax): - ax.margins(0.2) - ax.set_axis_off() - ax.invert_yaxis() - - -def split_list(a_list): - i_half = len(a_list) // 2 - return (a_list[:i_half], a_list[i_half:]) - - -############################################################################### -# Filled and unfilled-marker types -# ================================ -# -# Plot all un-filled markers - -fig, axes = plt.subplots(ncols=2) -fig.suptitle('un-filled markers', fontsize=14) - -# Filter out filled markers and marker settings that do nothing. -unfilled_markers = [m for m, func in Line2D.markers.items() - if func != 'nothing' and m not in Line2D.filled_markers] - -for ax, markers in zip(axes, split_list(unfilled_markers)): - for y, marker in enumerate(markers): - ax.text(-0.5, y, repr(marker), **text_style) - ax.plot(y * points, marker=marker, **marker_style) - format_axes(ax) - -plt.show() - - -############################################################################### -# Plot all filled markers. - -fig, axes = plt.subplots(ncols=2) -for ax, markers in zip(axes, split_list(Line2D.filled_markers)): - for y, marker in enumerate(markers): - ax.text(-0.5, y, repr(marker), **text_style) - ax.plot(y * points, marker=marker, **marker_style) - format_axes(ax) -fig.suptitle('filled markers', fontsize=14) - -plt.show() - - -############################################################################### -# Custom Markers with MathText -# ============================ -# -# Use :doc:`MathText `, to use custom marker symbols, -# like e.g. ``"$\u266B$"``. For an overview over the STIX font symbols refer -# to the `STIX font table `_. -# Also see the :doc:`/gallery/text_labels_and_annotations/stix_fonts_demo`. - - -fig, ax = plt.subplots() -fig.subplots_adjust(left=0.4) - -marker_style.update(mec="None", markersize=15) -markers = ["$1$", r"$\frac{1}{2}$", "$f$", "$\u266B$", r"$\mathcal{A}$"] - - -for y, marker in enumerate(markers): - # Escape dollars so that the text is written "as is", not as mathtext. - ax.text(-0.5, y, repr(marker).replace("$", r"\$"), **text_style) - ax.plot(y * points, marker=marker, **marker_style) -format_axes(ax) -fig.suptitle('mathtext markers', fontsize=14) - -plt.show() diff --git a/_downloads/d3939f703ba7e546569b6445e930e73a/text_intro.ipynb b/_downloads/d3939f703ba7e546569b6445e930e73a/text_intro.ipynb deleted file mode 100644 index 338b3398352..00000000000 --- a/_downloads/d3939f703ba7e546569b6445e930e73a/text_intro.ipynb +++ /dev/null @@ -1,349 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text in Matplotlib Plots\n\n\nIntroduction to plotting and working with text in Matplotlib.\n\nMatplotlib has extensive text support, including support for\nmathematical expressions, truetype support for raster and\nvector outputs, newline separated text with arbitrary\nrotations, and unicode support.\n\nBecause it embeds fonts directly in output documents, e.g., for postscript\nor PDF, what you see on the screen is what you get in the hardcopy.\n`FreeType `_ support\nproduces very nice, antialiased fonts, that look good even at small\nraster sizes. Matplotlib includes its own\n:mod:`matplotlib.font_manager` (thanks to Paul Barrett), which\nimplements a cross platform, `W3C `\ncompliant font finding algorithm.\n\nThe user has a great deal of control over text properties (font size, font\nweight, text location and color, etc.) with sensible defaults set in\nthe :doc:`rc file `.\nAnd significantly, for those interested in mathematical\nor scientific figures, Matplotlib implements a large number of TeX\nmath symbols and commands, supporting :doc:`mathematical expressions\n` anywhere in your figure.\n\n\nBasic text commands\n===================\n\nThe following commands are used to create text in the pyplot\ninterface and the object-oriented API:\n\n=================== =================== ======================================\n`.pyplot` API OO API description\n=================== =================== ======================================\n`~.pyplot.text` `~.Axes.text` Add text at an arbitrary location of\n the `~matplotlib.axes.Axes`.\n\n`~.pyplot.annotate` `~.Axes.annotate` Add an annotation, with an optional\n arrow, at an arbitrary location of the\n `~matplotlib.axes.Axes`.\n\n`~.pyplot.xlabel` `~.Axes.set_xlabel` Add a label to the\n `~matplotlib.axes.Axes`\\'s x-axis.\n\n`~.pyplot.ylabel` `~.Axes.set_ylabel` Add a label to the\n `~matplotlib.axes.Axes`\\'s y-axis.\n\n`~.pyplot.title` `~.Axes.set_title` Add a title to the\n `~matplotlib.axes.Axes`.\n\n`~.pyplot.figtext` `~.Figure.text` Add text at an arbitrary location of\n the `.Figure`.\n\n`~.pyplot.suptitle` `~.Figure.suptitle` Add a title to the `.Figure`.\n=================== =================== ======================================\n\nAll of these functions create and return a `.Text` instance, which can be\nconfigured with a variety of font and other properties. The example below\nshows all of these commands in action, and more detail is provided in the\nsections that follow.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold')\n\nax = fig.add_subplot(111)\nfig.subplots_adjust(top=0.85)\nax.set_title('axes title')\n\nax.set_xlabel('xlabel')\nax.set_ylabel('ylabel')\n\nax.text(3, 8, 'boxed italics text in data coords', style='italic',\n bbox={'facecolor': 'red', 'alpha': 0.5, 'pad': 10})\n\nax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15)\n\nax.text(3, 2, 'unicode: Institut f\u00fcr Festk\u00f6rperphysik')\n\nax.text(0.95, 0.01, 'colored text in axes coords',\n verticalalignment='bottom', horizontalalignment='right',\n transform=ax.transAxes,\n color='green', fontsize=15)\n\n\nax.plot([2], [1], 'o')\nax.annotate('annotate', xy=(2, 1), xytext=(3, 4),\n arrowprops=dict(facecolor='black', shrink=0.05))\n\nax.axis([0, 10, 0, 10])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Labels for x- and y-axis\n========================\n\nSpecifying the labels for the x- and y-axis is straightforward, via the\n`~matplotlib.axes.Axes.set_xlabel` and `~matplotlib.axes.Axes.set_ylabel`\nmethods.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx1 = np.linspace(0.0, 5.0, 100)\ny1 = np.cos(2 * np.pi * x1) * np.exp(-x1)\n\nfig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1)\nax.set_xlabel('time [s]')\nax.set_ylabel('Damped oscillation [V]')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The x- and y-labels are automatically placed so that they clear the x- and\ny-ticklabels. Compare the plot below with that above, and note the y-label\nis to the left of the one above.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1*10000)\nax.set_xlabel('time [s]')\nax.set_ylabel('Damped oscillation [V]')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you want to move the labels, you can specify the *labelpad* keyword\nargument, where the value is points (1/72\", the same unit used to specify\nfontsizes).\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1*10000)\nax.set_xlabel('time [s]')\nax.set_ylabel('Damped oscillation [V]', labelpad=18)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Or, the labels accept all the `.Text` keyword arguments, including\n*position*, via which we can manually specify the label positions. Here we\nput the xlabel to the far left of the axis. Note, that the y-coordinate of\nthis position has no effect - to adjust the y-position we need to use the\n*labelpad* kwarg.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1)\nax.set_xlabel('time [s]', position=(0., 1e6),\n horizontalalignment='left')\nax.set_ylabel('Damped oscillation [V]')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "All the labelling in this tutorial can be changed by manipulating the\n`matplotlib.font_manager.FontProperties` method, or by named kwargs to\n`~matplotlib.axes.Axes.set_xlabel`\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.font_manager import FontProperties\n\nfont = FontProperties()\nfont.set_family('serif')\nfont.set_name('Times New Roman')\nfont.set_style('italic')\n\nfig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.15, left=0.2)\nax.plot(x1, y1)\nax.set_xlabel('time [s]', fontsize='large', fontweight='bold')\nax.set_ylabel('Damped oscillation [V]', fontproperties=font)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, we can use native TeX rendering in all text objects and have\nmultiple lines:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(bottom=0.2, left=0.2)\nax.plot(x1, np.cumsum(y1**2))\nax.set_xlabel('time [s] \\n This was a long experiment')\nax.set_ylabel(r'$\\int\\ Y^2\\ dt\\ \\ [V^2 s]$')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Titles\n======\n\nSubplot titles are set in much the same way as labels, but there is\nthe *loc* keyword arguments that can change the position and justification\nfrom the default value of ``loc=center``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 1, figsize=(5, 6), tight_layout=True)\nlocs = ['center', 'left', 'right']\nfor ax, loc in zip(axs, locs):\n ax.plot(x1, y1)\n ax.set_title('Title with loc at '+loc, loc=loc)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Vertical spacing for titles is controlled via :rc:`axes.titlepad`, which\ndefaults to 5 points. Setting to a different value moves the title.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(5, 3))\nfig.subplots_adjust(top=0.8)\nax.plot(x1, y1)\nax.set_title('Vertically offset title', pad=30)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Ticks and ticklabels\n====================\n\nPlacing ticks and ticklabels is a very tricky aspect of making a figure.\nMatplotlib does the best it can automatically, but it also offers a very\nflexible framework for determining the choices for tick locations, and\nhow they are labelled.\n\nTerminology\n~~~~~~~~~~~\n\n*Axes* have an `matplotlib.axis` object for the ``ax.xaxis``\nand ``ax.yaxis`` that\ncontain the information about how the labels in the axis are laid out.\n\nThe axis API is explained in detail in the documentation to\n`~matplotlib.axis`.\n\nAn Axis object has major and minor ticks. The Axis has a\n`matplotlib.xaxis.set_major_locator` and\n`matplotlib.xaxis.set_minor_locator` methods that use the data being plotted\nto determine\nthe location of major and minor ticks. There are also\n`matplotlib.xaxis.set_major_formatter` and\n`matplotlib.xaxis.set_minor_formatters` methods that format the tick labels.\n\nSimple ticks\n~~~~~~~~~~~~\n\nIt often is convenient to simply define the\ntick values, and sometimes the tick labels, overriding the default\nlocators and formatters. This is discouraged because it breaks itneractive\nnavigation of the plot. It also can reset the axis limits: note that\nthe second plot has the ticks we asked for, including ones that are\nwell outside the automatic view limits.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\naxs[1].xaxis.set_ticks(np.arange(0., 8.1, 2.))\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can of course fix this after the fact, but it does highlight a\nweakness of hard-coding the ticks. This example also changes the format\nof the ticks:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\nticks = np.arange(0., 8.1, 2.)\n# list comprehension to get all tick labels...\ntickla = ['%1.2f' % tick for tick in ticks]\naxs[1].xaxis.set_ticks(ticks)\naxs[1].xaxis.set_ticklabels(tickla)\naxs[1].set_xlim(axs[0].get_xlim())\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Tick Locators and Formatters\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nInstead of making a list of all the tickalbels, we could have\nused a `matplotlib.ticker.FormatStrFormatter` and passed it to the\n``ax.xaxis``\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\nticks = np.arange(0., 8.1, 2.)\n# list comprehension to get all tick labels...\nformatter = matplotlib.ticker.StrMethodFormatter('{x:1.1f}')\naxs[1].xaxis.set_ticks(ticks)\naxs[1].xaxis.set_major_formatter(formatter)\naxs[1].set_xlim(axs[0].get_xlim())\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And of course we could have used a non-default locator to set the\ntick locations. Note we still pass in the tick values, but the\nx-limit fix used above is *not* needed.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 1, figsize=(5, 3), tight_layout=True)\naxs[0].plot(x1, y1)\naxs[1].plot(x1, y1)\nformatter = matplotlib.ticker.FormatStrFormatter('%1.1f')\nlocator = matplotlib.ticker.FixedLocator(ticks)\naxs[1].xaxis.set_major_locator(locator)\naxs[1].xaxis.set_major_formatter(formatter)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The default formatter is the `matplotlib.ticker.MaxNLocator` called as\n``ticker.MaxNLocator(self, nbins='auto', steps=[1, 2, 2.5, 5, 10])``\nThe *steps* keyword contains a list of multiples that can be used for\ntick values. i.e. in this case, 2, 4, 6 would be acceptable ticks,\nas would 20, 40, 60 or 0.2, 0.4, 0.6. However, 3, 6, 9 would not be\nacceptable because 3 doesn't appear in the list of steps.\n\n``nbins=auto`` uses an algorithm to determine how many ticks will\nbe acceptable based on how long the axis is. The fontsize of the\nticklabel is taken into account, but the length of the tick string\nis not (because its not yet known.) In the bottom row, the\nticklabels are quite large, so we set ``nbins=4`` to make the\nlabels fit in the right-hand plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2, figsize=(8, 5), tight_layout=True)\nfor n, ax in enumerate(axs.flat):\n ax.plot(x1*10., y1)\n\nformatter = matplotlib.ticker.FormatStrFormatter('%1.1f')\nlocator = matplotlib.ticker.MaxNLocator(nbins='auto', steps=[1, 4, 10])\naxs[0, 1].xaxis.set_major_locator(locator)\naxs[0, 1].xaxis.set_major_formatter(formatter)\n\nformatter = matplotlib.ticker.FormatStrFormatter('%1.5f')\nlocator = matplotlib.ticker.AutoLocator()\naxs[1, 0].xaxis.set_major_formatter(formatter)\naxs[1, 0].xaxis.set_major_locator(locator)\n\nformatter = matplotlib.ticker.FormatStrFormatter('%1.5f')\nlocator = matplotlib.ticker.MaxNLocator(nbins=4)\naxs[1, 1].xaxis.set_major_formatter(formatter)\naxs[1, 1].xaxis.set_major_locator(locator)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, we can specify functions for the formatter using\n`matplotlib.ticker.FuncFormatter`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def formatoddticks(x, pos):\n \"\"\"Format odd tick positions\n \"\"\"\n if x % 2:\n return '%1.2f' % x\n else:\n return ''\n\nfig, ax = plt.subplots(figsize=(5, 3), tight_layout=True)\nax.plot(x1, y1)\nformatter = matplotlib.ticker.FuncFormatter(formatoddticks)\nlocator = matplotlib.ticker.MaxNLocator(nbins=6)\nax.xaxis.set_major_formatter(formatter)\nax.xaxis.set_major_locator(locator)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Dateticks\n~~~~~~~~~\n\nMatplotlib can accept `datetime.datetime` and `numpy.datetime64`\nobjects as plotting arguments. Dates and times require special\nformatting, which can often benefit from manual intervention. In\norder to help, dates have special Locators and Formatters,\ndefined in the `matplotlib.dates` module.\n\nA simple example is as follows. Note how we have to rotate the\ntick labels so that they don't over-run each other.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import datetime\n\nfig, ax = plt.subplots(figsize=(5, 3), tight_layout=True)\nbase = datetime.datetime(2017, 1, 1, 0, 0, 1)\ntime = [base + datetime.timedelta(days=x) for x in range(len(y1))]\n\nax.plot(time, y1)\nax.tick_params(axis='x', rotation=70)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can pass a format\nto `matplotlib.dates.DateFormatter`. Also note that the 29th and the\nnext month are very close together. We can fix this by using the\n`dates.DayLocator` class, which allows us to specify a list of days of the\nmonth to use. Similar formatters are listed in the `matplotlib.dates` module.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.dates as mdates\n\nlocator = mdates.DayLocator(bymonthday=[1, 15])\nformatter = mdates.DateFormatter('%b %d')\n\nfig, ax = plt.subplots(figsize=(5, 3), tight_layout=True)\nax.xaxis.set_major_locator(locator)\nax.xaxis.set_major_formatter(formatter)\nax.plot(time, y1)\nax.tick_params(axis='x', rotation=70)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legends and Annotations\n=======================\n\n- Legends: :doc:`/tutorials/intermediate/legend_guide`\n- Annotations: :doc:`/tutorials/text/annotations`\n\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d39410152951eda393f99207b9cae76c/viewlims.py b/_downloads/d39410152951eda393f99207b9cae76c/viewlims.py deleted file mode 120000 index 05f0e3fe761..00000000000 --- a/_downloads/d39410152951eda393f99207b9cae76c/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d39410152951eda393f99207b9cae76c/viewlims.py \ No newline at end of file diff --git a/_downloads/d3943d5f2149528e78085f416a9ee596/annotate_simple_coord01.ipynb b/_downloads/d3943d5f2149528e78085f416a9ee596/annotate_simple_coord01.ipynb deleted file mode 120000 index 284c383d8d3..00000000000 --- a/_downloads/d3943d5f2149528e78085f416a9ee596/annotate_simple_coord01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d3943d5f2149528e78085f416a9ee596/annotate_simple_coord01.ipynb \ No newline at end of file diff --git a/_downloads/d3981163353445577dbd3f6f30a628cb/tutorials_jupyter.zip b/_downloads/d3981163353445577dbd3f6f30a628cb/tutorials_jupyter.zip deleted file mode 120000 index 98915ea9429..00000000000 --- a/_downloads/d3981163353445577dbd3f6f30a628cb/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.1/_downloads/d3981163353445577dbd3f6f30a628cb/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/d39b9ac96b73d378598403501ed2aff7/anchored_box02.py b/_downloads/d39b9ac96b73d378598403501ed2aff7/anchored_box02.py deleted file mode 120000 index a432ecfa2ae..00000000000 --- a/_downloads/d39b9ac96b73d378598403501ed2aff7/anchored_box02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/d39b9ac96b73d378598403501ed2aff7/anchored_box02.py \ No newline at end of file diff --git a/_downloads/d39c5f0c6d62ca2ed9669b96b776a211/gridspec.ipynb b/_downloads/d39c5f0c6d62ca2ed9669b96b776a211/gridspec.ipynb deleted file mode 120000 index 2a52a11d0f5..00000000000 --- a/_downloads/d39c5f0c6d62ca2ed9669b96b776a211/gridspec.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.0/_downloads/d39c5f0c6d62ca2ed9669b96b776a211/gridspec.ipynb \ No newline at end of file diff --git a/_downloads/d3a5d131b31b93dea798f6491e5976d7/usetex_fonteffects.py b/_downloads/d3a5d131b31b93dea798f6491e5976d7/usetex_fonteffects.py deleted file mode 120000 index 9b0877be37e..00000000000 --- a/_downloads/d3a5d131b31b93dea798f6491e5976d7/usetex_fonteffects.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d3a5d131b31b93dea798f6491e5976d7/usetex_fonteffects.py \ No newline at end of file diff --git a/_downloads/d3afa8d6965c299bedb4e837b1db166a/csd_demo.py b/_downloads/d3afa8d6965c299bedb4e837b1db166a/csd_demo.py deleted file mode 120000 index d8f60c24d06..00000000000 --- a/_downloads/d3afa8d6965c299bedb4e837b1db166a/csd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d3afa8d6965c299bedb4e837b1db166a/csd_demo.py \ No newline at end of file diff --git a/_downloads/d3b5b77ae2e6fe099d9ce9a9248acafc/horizontal_barchart_distribution.ipynb b/_downloads/d3b5b77ae2e6fe099d9ce9a9248acafc/horizontal_barchart_distribution.ipynb deleted file mode 120000 index 79ac67f87f2..00000000000 --- a/_downloads/d3b5b77ae2e6fe099d9ce9a9248acafc/horizontal_barchart_distribution.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d3b5b77ae2e6fe099d9ce9a9248acafc/horizontal_barchart_distribution.ipynb \ No newline at end of file diff --git a/_downloads/d3b6ca0b3f3226cf453ab0df3a5b4f3c/resample.py b/_downloads/d3b6ca0b3f3226cf453ab0df3a5b4f3c/resample.py deleted file mode 120000 index 83c4ae40d31..00000000000 --- a/_downloads/d3b6ca0b3f3226cf453ab0df3a5b4f3c/resample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d3b6ca0b3f3226cf453ab0df3a5b4f3c/resample.py \ No newline at end of file diff --git a/_downloads/d3ba96658c9b0e9111b5c6d8cdaeb0d8/multicursor.py b/_downloads/d3ba96658c9b0e9111b5c6d8cdaeb0d8/multicursor.py deleted file mode 100644 index 7622792dd22..00000000000 --- a/_downloads/d3ba96658c9b0e9111b5c6d8cdaeb0d8/multicursor.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=========== -Multicursor -=========== - -Showing a cursor on multiple plots simultaneously. - -This example generates two subplots and on hovering the cursor over data in one -subplot, the values of that datapoint are shown in both respectively. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import MultiCursor - -t = np.arange(0.0, 2.0, 0.01) -s1 = np.sin(2*np.pi*t) -s2 = np.sin(4*np.pi*t) - -fig, (ax1, ax2) = plt.subplots(2, sharex=True) -ax1.plot(t, s1) -ax2.plot(t, s2) - -multi = MultiCursor(fig.canvas, (ax1, ax2), color='r', lw=1) -plt.show() diff --git a/_downloads/d3dec10854c128c361afa0b3e18b0479/gradient_bar.py b/_downloads/d3dec10854c128c361afa0b3e18b0479/gradient_bar.py deleted file mode 120000 index 59a7015bba2..00000000000 --- a/_downloads/d3dec10854c128c361afa0b3e18b0479/gradient_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d3dec10854c128c361afa0b3e18b0479/gradient_bar.py \ No newline at end of file diff --git a/_downloads/d3df8cd7e5e1049fe8c53ecde6d088a1/spines.ipynb b/_downloads/d3df8cd7e5e1049fe8c53ecde6d088a1/spines.ipynb deleted file mode 100644 index a9f5683f6c9..00000000000 --- a/_downloads/d3df8cd7e5e1049fe8c53ecde6d088a1/spines.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spines\n\n\nThis demo compares:\n - normal axes, with spines on all four sides;\n - an axes with spines only on the left and bottom;\n - an axes using custom bounds to limit the extent of the spine.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nx = np.linspace(0, 2 * np.pi, 100)\ny = 2 * np.sin(x)\n\nfig, (ax0, ax1, ax2) = plt.subplots(nrows=3)\n\nax0.plot(x, y)\nax0.set_title('normal spines')\n\nax1.plot(x, y)\nax1.set_title('bottom-left spines')\n\n# Hide the right and top spines\nax1.spines['right'].set_visible(False)\nax1.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax1.yaxis.set_ticks_position('left')\nax1.xaxis.set_ticks_position('bottom')\n\nax2.plot(x, y)\n\n# Only draw spine between the y-ticks\nax2.spines['left'].set_bounds(-1, 1)\n# Hide the right and top spines\nax2.spines['right'].set_visible(False)\nax2.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax2.yaxis.set_ticks_position('left')\nax2.xaxis.set_ticks_position('bottom')\n\n# Tweak spacing between subplots to prevent labels from overlapping\nplt.subplots_adjust(hspace=0.5)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d3e03bcd2d9b68a4935bcc3d6521292f/image_transparency_blend.ipynb b/_downloads/d3e03bcd2d9b68a4935bcc3d6521292f/image_transparency_blend.ipynb deleted file mode 120000 index 1e3b281822b..00000000000 --- a/_downloads/d3e03bcd2d9b68a4935bcc3d6521292f/image_transparency_blend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d3e03bcd2d9b68a4935bcc3d6521292f/image_transparency_blend.ipynb \ No newline at end of file diff --git a/_downloads/d3f1f9b5f9da71a37fbea5b93016dbf3/placing_text_boxes.ipynb b/_downloads/d3f1f9b5f9da71a37fbea5b93016dbf3/placing_text_boxes.ipynb deleted file mode 120000 index 7a175d5a00c..00000000000 --- a/_downloads/d3f1f9b5f9da71a37fbea5b93016dbf3/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d3f1f9b5f9da71a37fbea5b93016dbf3/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/d3f78c66e5c9180a2a7e6aefa623abb8/inset_locator_demo.ipynb b/_downloads/d3f78c66e5c9180a2a7e6aefa623abb8/inset_locator_demo.ipynb deleted file mode 100644 index f1bcf3f082a..00000000000 --- a/_downloads/d3f78c66e5c9180a2a7e6aefa623abb8/inset_locator_demo.ipynb +++ /dev/null @@ -1,97 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Inset Locator Demo\n\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The `.inset_locator`'s `~.inset_locator.inset_axes` allows\neasily placing insets in the corners of the axes by specifying a width and\nheight and optionally a location (loc) that accepts locations as codes,\nsimilar to `~matplotlib.axes.Axes.legend`.\nBy default, the inset is offset by some points from the axes,\ncontrolled via the `borderpad` parameter.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.inset_locator import inset_axes\n\n\nfig, (ax, ax2) = plt.subplots(1, 2, figsize=[5.5, 2.8])\n\n# Create inset of width 1.3 inches and height 0.9 inches\n# at the default upper right location\naxins = inset_axes(ax, width=1.3, height=0.9)\n\n# Create inset of width 30% and height 40% of the parent axes' bounding box\n# at the lower left corner (loc=3)\naxins2 = inset_axes(ax, width=\"30%\", height=\"40%\", loc=3)\n\n# Create inset of mixed specifications in the second subplot;\n# width is 30% of parent axes' bounding box and\n# height is 1 inch at the upper left corner (loc=2)\naxins3 = inset_axes(ax2, width=\"30%\", height=1., loc=2)\n\n# Create an inset in the lower right corner (loc=4) with borderpad=1, i.e.\n# 10 points padding (as 10pt is the default fontsize) to the parent axes\naxins4 = inset_axes(ax2, width=\"20%\", height=\"20%\", loc=4, borderpad=1)\n\n# Turn ticklabels of insets off\nfor axi in [axins, axins2, axins3, axins4]:\n axi.tick_params(labelleft=False, labelbottom=False)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The arguments `bbox_to_anchor` and `bbox_transfrom` can be used for a more\nfine grained control over the inset position and size or even to position\nthe inset at completely arbitrary positions.\nThe `bbox_to_anchor` sets the bounding box in coordinates according to the\n`bbox_transform`.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=[5.5, 2.8])\nax = fig.add_subplot(121)\n\n# We use the axes transform as bbox_transform. Therefore the bounding box\n# needs to be specified in axes coordinates ((0,0) is the lower left corner\n# of the axes, (1,1) is the upper right corner).\n# The bounding box (.2, .4, .6, .5) starts at (.2,.4) and ranges to (.8,.9)\n# in those coordinates.\n# Inside of this bounding box an inset of half the bounding box' width and\n# three quarters of the bounding box' height is created. The lower left corner\n# of the inset is aligned to the lower left corner of the bounding box (loc=3).\n# The inset is then offset by the default 0.5 in units of the font size.\n\naxins = inset_axes(ax, width=\"50%\", height=\"75%\",\n bbox_to_anchor=(.2, .4, .6, .5),\n bbox_transform=ax.transAxes, loc=3)\n\n# For visualization purposes we mark the bounding box by a rectangle\nax.add_patch(plt.Rectangle((.2, .4), .6, .5, ls=\"--\", ec=\"c\", fc=\"None\",\n transform=ax.transAxes))\n\n# We set the axis limits to something other than the default, in order to not\n# distract from the fact that axes coordinates are used here.\nax.set(xlim=(0, 10), ylim=(0, 10))\n\n\n# Note how the two following insets are created at the same positions, one by\n# use of the default parent axes' bbox and the other via a bbox in axes\n# coordinates and the respective transform.\nax2 = fig.add_subplot(222)\naxins2 = inset_axes(ax2, width=\"30%\", height=\"50%\")\n\nax3 = fig.add_subplot(224)\naxins3 = inset_axes(ax3, width=\"100%\", height=\"100%\",\n bbox_to_anchor=(.7, .5, .3, .5),\n bbox_transform=ax3.transAxes)\n\n# For visualization purposes we mark the bounding box by a rectangle\nax2.add_patch(plt.Rectangle((0, 0), 1, 1, ls=\"--\", lw=2, ec=\"c\", fc=\"None\"))\nax3.add_patch(plt.Rectangle((.7, .5), .3, .5, ls=\"--\", lw=2,\n ec=\"c\", fc=\"None\"))\n\n# Turn ticklabels off\nfor axi in [axins2, axins3, ax2, ax3]:\n axi.tick_params(labelleft=False, labelbottom=False)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the above the axes transform together with 4-tuple bounding boxes has been\nused as it mostly is useful to specify an inset relative to the axes it is\nan inset to. However other use cases are equally possible. The following\nexample examines some of those.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=[5.5, 2.8])\nax = fig.add_subplot(131)\n\n# Create an inset outside the axes\naxins = inset_axes(ax, width=\"100%\", height=\"100%\",\n bbox_to_anchor=(1.05, .6, .5, .4),\n bbox_transform=ax.transAxes, loc=2, borderpad=0)\naxins.tick_params(left=False, right=True, labelleft=False, labelright=True)\n\n# Create an inset with a 2-tuple bounding box. Note that this creates a\n# bbox without extent. This hence only makes sense when specifying\n# width and height in absolute units (inches).\naxins2 = inset_axes(ax, width=0.5, height=0.4,\n bbox_to_anchor=(0.33, 0.25),\n bbox_transform=ax.transAxes, loc=3, borderpad=0)\n\n\nax2 = fig.add_subplot(133)\nax2.set_xscale(\"log\")\nax2.set(xlim=(1e-6, 1e6), ylim=(-2, 6))\n\n# Create inset in data coordinates using ax.transData as transform\naxins3 = inset_axes(ax2, width=\"100%\", height=\"100%\",\n bbox_to_anchor=(1e-2, 2, 1e3, 3),\n bbox_transform=ax2.transData, loc=2, borderpad=0)\n\n# Create an inset horizontally centered in figure coordinates and vertically\n# bound to line up with the axes.\nfrom matplotlib.transforms import blended_transform_factory\ntransform = blended_transform_factory(fig.transFigure, ax2.transAxes)\naxins4 = inset_axes(ax2, width=\"16%\", height=\"34%\",\n bbox_to_anchor=(0, 0, 1, 1),\n bbox_transform=transform, loc=8, borderpad=0)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d3fb1d3a99657083d83658f19b8cae49/simple_axisline2.py b/_downloads/d3fb1d3a99657083d83658f19b8cae49/simple_axisline2.py deleted file mode 120000 index d146742a89f..00000000000 --- a/_downloads/d3fb1d3a99657083d83658f19b8cae49/simple_axisline2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/d3fb1d3a99657083d83658f19b8cae49/simple_axisline2.py \ No newline at end of file diff --git a/_downloads/d3fe050deaf1ae9769f77d4988331ffa/demo_ribbon_box.ipynb b/_downloads/d3fe050deaf1ae9769f77d4988331ffa/demo_ribbon_box.ipynb deleted file mode 120000 index 40dfba3d83b..00000000000 --- a/_downloads/d3fe050deaf1ae9769f77d4988331ffa/demo_ribbon_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d3fe050deaf1ae9769f77d4988331ffa/demo_ribbon_box.ipynb \ No newline at end of file diff --git a/_downloads/d4044cd103325bb513269f8fe0431f93/contour_demo.ipynb b/_downloads/d4044cd103325bb513269f8fe0431f93/contour_demo.ipynb deleted file mode 100644 index 4b11fe9ae9c..00000000000 --- a/_downloads/d4044cd103325bb513269f8fe0431f93/contour_demo.ipynb +++ /dev/null @@ -1,180 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Demo\n\n\nIllustrate simple contour plotting, contours on an image with\na colorbar for the contours, and labelled contours.\n\nSee also the :doc:`contour image example\n`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.pyplot as plt\n\n\ndelta = 0.025\nx = np.arange(-3.0, 3.0, delta)\ny = np.arange(-2.0, 2.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create a simple contour plot with labels using default colors. The\ninline argument to clabel will control whether the labels are draw\nover the line segments of the contour, removing the lines beneath\nthe label\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z)\nax.clabel(CS, inline=1, fontsize=10)\nax.set_title('Simplest default with labels')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "contour labels can be placed manually by providing list of positions\n(in data coordinate). See ginput_manual_clabel.py for interactive\nplacement.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z)\nmanual_locations = [(-1, -1.4), (-0.62, -0.7), (-2, 0.5), (1.7, 1.2), (2.0, 1.4), (2.4, 1.7)]\nax.clabel(CS, inline=1, fontsize=10, manual=manual_locations)\nax.set_title('labels at selected locations')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can force all the contours to be the same color.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z, 6,\n colors='k', # negative contours will be dashed by default\n )\nax.clabel(CS, fontsize=9, inline=1)\nax.set_title('Single color - negative contours dashed')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can set negative contours to be solid instead of dashed:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.rcParams['contour.negative_linestyle'] = 'solid'\nfig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z, 6,\n colors='k', # negative contours will be dashed by default\n )\nax.clabel(CS, fontsize=9, inline=1)\nax.set_title('Single color - negative contours solid')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And you can manually specify the colors of the contour\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z, 6,\n linewidths=np.arange(.5, 4, .5),\n colors=('r', 'green', 'blue', (1, 1, 0), '#afeeee', '0.5')\n )\nax.clabel(CS, fontsize=9, inline=1)\nax.set_title('Crazy lines')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Or you can use a colormap to specify the colors; the default\ncolormap will be used for the contour lines\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nim = ax.imshow(Z, interpolation='bilinear', origin='lower',\n cmap=cm.gray, extent=(-3, 3, -2, 2))\nlevels = np.arange(-1.2, 1.6, 0.2)\nCS = ax.contour(Z, levels, origin='lower', cmap='flag',\n linewidths=2, extent=(-3, 3, -2, 2))\n\n# Thicken the zero contour.\nzc = CS.collections[6]\nplt.setp(zc, linewidth=4)\n\nax.clabel(CS, levels[1::2], # label every second level\n inline=1, fmt='%1.1f', fontsize=14)\n\n# make a colorbar for the contour lines\nCB = fig.colorbar(CS, shrink=0.8, extend='both')\n\nax.set_title('Lines with colorbar')\n\n# We can still add a colorbar for the image, too.\nCBI = fig.colorbar(im, orientation='horizontal', shrink=0.8)\n\n# This makes the original colorbar look a bit out of place,\n# so let's improve its position.\n\nl, b, w, h = ax.get_position().bounds\nll, bb, ww, hh = CB.ax.get_position().bounds\nCB.ax.set_position([ll, b + 0.1*h, ww, h*0.8])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.axes.Axes.clabel\nmatplotlib.pyplot.clabel\nmatplotlib.axes.Axes.set_position\nmatplotlib.axes.Axes.get_position" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d4073b4ae6c52eb465857c370e3eca11/quiver3d.py b/_downloads/d4073b4ae6c52eb465857c370e3eca11/quiver3d.py deleted file mode 100644 index 6921b4a1d26..00000000000 --- a/_downloads/d4073b4ae6c52eb465857c370e3eca11/quiver3d.py +++ /dev/null @@ -1,31 +0,0 @@ -''' -============== -3D quiver plot -============== - -Demonstrates plotting directional arrows at points on a 3d meshgrid. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make the grid -x, y, z = np.meshgrid(np.arange(-0.8, 1, 0.2), - np.arange(-0.8, 1, 0.2), - np.arange(-0.8, 1, 0.8)) - -# Make the direction data for the arrows -u = np.sin(np.pi * x) * np.cos(np.pi * y) * np.cos(np.pi * z) -v = -np.cos(np.pi * x) * np.sin(np.pi * y) * np.cos(np.pi * z) -w = (np.sqrt(2.0 / 3.0) * np.cos(np.pi * x) * np.cos(np.pi * y) * - np.sin(np.pi * z)) - -ax.quiver(x, y, z, u, v, w, length=0.1, normalize=True) - -plt.show() diff --git a/_downloads/d41063bb6415def79166f3b9ddc694b6/nan_test.py b/_downloads/d41063bb6415def79166f3b9ddc694b6/nan_test.py deleted file mode 100644 index 4216f6960ae..00000000000 --- a/_downloads/d41063bb6415def79166f3b9ddc694b6/nan_test.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -======== -Nan Test -======== - -Example: simple line plots with NaNs inserted. -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0.0, 1.0 + 0.01, 0.01) -s = np.cos(2 * 2*np.pi * t) -t[41:60] = np.nan - -plt.subplot(2, 1, 1) -plt.plot(t, s, '-', lw=2) - -plt.xlabel('time (s)') -plt.ylabel('voltage (mV)') -plt.title('A sine wave with a gap of NaNs between 0.4 and 0.6') -plt.grid(True) - -plt.subplot(2, 1, 2) -t[0] = np.nan -t[-1] = np.nan -plt.plot(t, s, '-', lw=2) -plt.title('Also with NaN in first and last point') - -plt.xlabel('time (s)') -plt.ylabel('more nans') -plt.grid(True) - -plt.tight_layout() -plt.show() diff --git a/_downloads/d4181db192477b3ae0e2c353d35b5934/path_patch.ipynb b/_downloads/d4181db192477b3ae0e2c353d35b5934/path_patch.ipynb deleted file mode 120000 index a769c64afb6..00000000000 --- a/_downloads/d4181db192477b3ae0e2c353d35b5934/path_patch.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d4181db192477b3ae0e2c353d35b5934/path_patch.ipynb \ No newline at end of file diff --git a/_downloads/d41eabc1655d02206fc88780e98e00b5/embedding_in_wx2_sgskip.ipynb b/_downloads/d41eabc1655d02206fc88780e98e00b5/embedding_in_wx2_sgskip.ipynb deleted file mode 120000 index b091b85b179..00000000000 --- a/_downloads/d41eabc1655d02206fc88780e98e00b5/embedding_in_wx2_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d41eabc1655d02206fc88780e98e00b5/embedding_in_wx2_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/d438e83045bc77008e643e77fded813e/barb_demo.py b/_downloads/d438e83045bc77008e643e77fded813e/barb_demo.py deleted file mode 120000 index dcf511c8b6e..00000000000 --- a/_downloads/d438e83045bc77008e643e77fded813e/barb_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d438e83045bc77008e643e77fded813e/barb_demo.py \ No newline at end of file diff --git a/_downloads/d43f7abc86ae3d0af10ddabd4317f06b/demo_axes_hbox_divider.ipynb b/_downloads/d43f7abc86ae3d0af10ddabd4317f06b/demo_axes_hbox_divider.ipynb deleted file mode 120000 index 14440df6617..00000000000 --- a/_downloads/d43f7abc86ae3d0af10ddabd4317f06b/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d43f7abc86ae3d0af10ddabd4317f06b/demo_axes_hbox_divider.ipynb \ No newline at end of file diff --git a/_downloads/d44057e67c74f58305bc801b421b085f/histogram_multihist.py b/_downloads/d44057e67c74f58305bc801b421b085f/histogram_multihist.py deleted file mode 120000 index 16f9bde16c7..00000000000 --- a/_downloads/d44057e67c74f58305bc801b421b085f/histogram_multihist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d44057e67c74f58305bc801b421b085f/histogram_multihist.py \ No newline at end of file diff --git a/_downloads/d441affd37b47c7dcc7eb8b36352778e/contourf3d.py b/_downloads/d441affd37b47c7dcc7eb8b36352778e/contourf3d.py deleted file mode 120000 index bb2c2c7207f..00000000000 --- a/_downloads/d441affd37b47c7dcc7eb8b36352778e/contourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d441affd37b47c7dcc7eb8b36352778e/contourf3d.py \ No newline at end of file diff --git a/_downloads/d447793d6370f79bf7243416ee6135f0/quiver3d.py b/_downloads/d447793d6370f79bf7243416ee6135f0/quiver3d.py deleted file mode 120000 index 9bb7b02e261..00000000000 --- a/_downloads/d447793d6370f79bf7243416ee6135f0/quiver3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d447793d6370f79bf7243416ee6135f0/quiver3d.py \ No newline at end of file diff --git a/_downloads/d447de5280675438c78b8b59cdca7d1e/zoom_window.py b/_downloads/d447de5280675438c78b8b59cdca7d1e/zoom_window.py deleted file mode 120000 index 0a904a13eea..00000000000 --- a/_downloads/d447de5280675438c78b8b59cdca7d1e/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d447de5280675438c78b8b59cdca7d1e/zoom_window.py \ No newline at end of file diff --git a/_downloads/d44f41474c72c6fb30e32200f881afe3/colormap_normalizations_diverging.ipynb b/_downloads/d44f41474c72c6fb30e32200f881afe3/colormap_normalizations_diverging.ipynb deleted file mode 120000 index eb7d224c51a..00000000000 --- a/_downloads/d44f41474c72c6fb30e32200f881afe3/colormap_normalizations_diverging.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d44f41474c72c6fb30e32200f881afe3/colormap_normalizations_diverging.ipynb \ No newline at end of file diff --git a/_downloads/d455953fd3893e007f60b23829764413/multiple_histograms_side_by_side.ipynb b/_downloads/d455953fd3893e007f60b23829764413/multiple_histograms_side_by_side.ipynb deleted file mode 100644 index df5c0618913..00000000000 --- a/_downloads/d455953fd3893e007f60b23829764413/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Producing multiple histograms side by side\n\n\nThis example plots horizontal histograms of different samples along\na categorical x-axis. Additionally, the histograms are plotted to\nbe symmetrical about their x-position, thus making them very similar\nto violin plots.\n\nTo make this highly specialized plot, we can't use the standard ``hist``\nmethod. Instead we use ``barh`` to draw the horizontal bars directly. The\nvertical positions and lengths of the bars are computed via the\n``np.histogram`` function. The histograms for all the samples are\ncomputed using the same range (min and max values) and number of bins,\nso that the bins for each sample are in the same vertical positions.\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\nnumber_of_bins = 20\n\n# An example of three data sets to compare\nnumber_of_data_points = 387\nlabels = [\"A\", \"B\", \"C\"]\ndata_sets = [np.random.normal(0, 1, number_of_data_points),\n np.random.normal(6, 1, number_of_data_points),\n np.random.normal(-3, 1, number_of_data_points)]\n\n# Computed quantities to aid plotting\nhist_range = (np.min(data_sets), np.max(data_sets))\nbinned_data_sets = [\n np.histogram(d, range=hist_range, bins=number_of_bins)[0]\n for d in data_sets\n]\nbinned_maximums = np.max(binned_data_sets, axis=1)\nx_locations = np.arange(0, sum(binned_maximums), np.max(binned_maximums))\n\n# The bin_edges are the same for all of the histograms\nbin_edges = np.linspace(hist_range[0], hist_range[1], number_of_bins + 1)\ncenters = 0.5 * (bin_edges + np.roll(bin_edges, 1))[:-1]\nheights = np.diff(bin_edges)\n\n# Cycle through and plot each histogram\nfig, ax = plt.subplots()\nfor x_loc, binned_data in zip(x_locations, binned_data_sets):\n lefts = x_loc - 0.5 * binned_data\n ax.barh(centers, binned_data, height=heights, left=lefts)\n\nax.set_xticks(x_locations)\nax.set_xticklabels(labels)\n\nax.set_ylabel(\"Data values\")\nax.set_xlabel(\"Data sets\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d457e32c49a4576ef7a9bc7ebac77d62/gridspec.ipynb b/_downloads/d457e32c49a4576ef7a9bc7ebac77d62/gridspec.ipynb deleted file mode 120000 index 67a1dd1cf8b..00000000000 --- a/_downloads/d457e32c49a4576ef7a9bc7ebac77d62/gridspec.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d457e32c49a4576ef7a9bc7ebac77d62/gridspec.ipynb \ No newline at end of file diff --git a/_downloads/d45a5a42c42a54a954edade0a54b8a65/scatter_hist_locatable_axes.ipynb b/_downloads/d45a5a42c42a54a954edade0a54b8a65/scatter_hist_locatable_axes.ipynb deleted file mode 120000 index 25df35a7a86..00000000000 --- a/_downloads/d45a5a42c42a54a954edade0a54b8a65/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d45a5a42c42a54a954edade0a54b8a65/scatter_hist_locatable_axes.ipynb \ No newline at end of file diff --git a/_downloads/d45b9eada4d58e5f118de8e3929c1bb8/pyplot_formatstr.py b/_downloads/d45b9eada4d58e5f118de8e3929c1bb8/pyplot_formatstr.py deleted file mode 120000 index 6546549833a..00000000000 --- a/_downloads/d45b9eada4d58e5f118de8e3929c1bb8/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d45b9eada4d58e5f118de8e3929c1bb8/pyplot_formatstr.py \ No newline at end of file diff --git a/_downloads/d45f2f674d5060eafb8760453871356b/parasite_simple.ipynb b/_downloads/d45f2f674d5060eafb8760453871356b/parasite_simple.ipynb deleted file mode 100644 index bbfe223bdfb..00000000000 --- a/_downloads/d45f2f674d5060eafb8760453871356b/parasite_simple.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parasite Simple\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import host_subplot\nimport matplotlib.pyplot as plt\n\nhost = host_subplot(111)\n\npar = host.twinx()\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar.set_ylabel(\"Temperature\")\n\np1, = host.plot([0, 1, 2], [0, 1, 2], label=\"Density\")\np2, = par.plot([0, 1, 2], [0, 3, 2], label=\"Temperature\")\n\nleg = plt.legend()\n\nhost.yaxis.get_label().set_color(p1.get_color())\nleg.texts[0].set_color(p1.get_color())\n\npar.yaxis.get_label().set_color(p2.get_color())\nleg.texts[1].set_color(p2.get_color())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d464ee595d166ec663d8a61972255d25/colorbar_placement.ipynb b/_downloads/d464ee595d166ec663d8a61972255d25/colorbar_placement.ipynb deleted file mode 120000 index 663bc6a211e..00000000000 --- a/_downloads/d464ee595d166ec663d8a61972255d25/colorbar_placement.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d464ee595d166ec663d8a61972255d25/colorbar_placement.ipynb \ No newline at end of file diff --git a/_downloads/d46f2e0b9e0be02f6f869623d1c78d04/load_converter.ipynb b/_downloads/d46f2e0b9e0be02f6f869623d1c78d04/load_converter.ipynb deleted file mode 120000 index 8c9736a3fd0..00000000000 --- a/_downloads/d46f2e0b9e0be02f6f869623d1c78d04/load_converter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d46f2e0b9e0be02f6f869623d1c78d04/load_converter.ipynb \ No newline at end of file diff --git a/_downloads/d4718022be2010da0684c60371f4593a/colormaps.py b/_downloads/d4718022be2010da0684c60371f4593a/colormaps.py deleted file mode 120000 index 40bfdb30255..00000000000 --- a/_downloads/d4718022be2010da0684c60371f4593a/colormaps.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d4718022be2010da0684c60371f4593a/colormaps.py \ No newline at end of file diff --git a/_downloads/d47f0a12e13c29ce360f348eed4d373c/align_labels_demo.ipynb b/_downloads/d47f0a12e13c29ce360f348eed4d373c/align_labels_demo.ipynb deleted file mode 120000 index ec96df647c2..00000000000 --- a/_downloads/d47f0a12e13c29ce360f348eed4d373c/align_labels_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d47f0a12e13c29ce360f348eed4d373c/align_labels_demo.ipynb \ No newline at end of file diff --git a/_downloads/d47f8fb44a0ac2058625cc1443eb9594/mpl_with_glade3_sgskip.py b/_downloads/d47f8fb44a0ac2058625cc1443eb9594/mpl_with_glade3_sgskip.py deleted file mode 100644 index 3329bc342da..00000000000 --- a/_downloads/d47f8fb44a0ac2058625cc1443eb9594/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -======================= -Matplotlib With Glade 3 -======================= - -""" - -import os - -import gi -gi.require_version('Gtk', '3.0') -from gi.repository import Gtk - -from matplotlib.figure import Figure -from matplotlib.backends.backend_gtk3agg import ( - FigureCanvasGTK3Agg as FigureCanvas) -import numpy as np - - -class Window1Signals(object): - def on_window1_destroy(self, widget): - Gtk.main_quit() - - -def main(): - builder = Gtk.Builder() - builder.add_objects_from_file(os.path.join(os.path.dirname(__file__), - "mpl_with_glade3.glade"), - ("window1", "")) - builder.connect_signals(Window1Signals()) - window = builder.get_object("window1") - sw = builder.get_object("scrolledwindow1") - - # Start of Matplotlib specific code - figure = Figure(figsize=(8, 6), dpi=71) - axis = figure.add_subplot(111) - t = np.arange(0.0, 3.0, 0.01) - s = np.sin(2*np.pi*t) - axis.plot(t, s) - - axis.set_xlabel('time [s]') - axis.set_ylabel('voltage [V]') - - canvas = FigureCanvas(figure) # a Gtk.DrawingArea - canvas.set_size_request(800, 600) - sw.add_with_viewport(canvas) - # End of Matplotlib specific code - - window.show_all() - Gtk.main() - -if __name__ == "__main__": - main() diff --git a/_downloads/d4832f59edf5628fed3ec2eee2cecbf9/markevery_demo.py b/_downloads/d4832f59edf5628fed3ec2eee2cecbf9/markevery_demo.py deleted file mode 120000 index 562ae8e787f..00000000000 --- a/_downloads/d4832f59edf5628fed3ec2eee2cecbf9/markevery_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d4832f59edf5628fed3ec2eee2cecbf9/markevery_demo.py \ No newline at end of file diff --git a/_downloads/d48d1657f3b6fec3981e8ff5f1351a7c/colormap_normalizations_power.py b/_downloads/d48d1657f3b6fec3981e8ff5f1351a7c/colormap_normalizations_power.py deleted file mode 100644 index 77f052b28ac..00000000000 --- a/_downloads/d48d1657f3b6fec3981e8ff5f1351a7c/colormap_normalizations_power.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============================= -Colormap Normalizations Power -============================= - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -''' -PowerNorm: Here a power-law trend in X partially obscures a rectified -sine wave in Y. We can remove the power law using a PowerNorm. -''' -X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)] -Z1 = (1 + np.sin(Y * 10.)) * X**(2.) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1./2.), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - -plt.show() diff --git a/_downloads/d48ff89fa979681e913ad05422f7294b/demo_text_rotation_mode.py b/_downloads/d48ff89fa979681e913ad05422f7294b/demo_text_rotation_mode.py deleted file mode 120000 index 456fe357fb0..00000000000 --- a/_downloads/d48ff89fa979681e913ad05422f7294b/demo_text_rotation_mode.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d48ff89fa979681e913ad05422f7294b/demo_text_rotation_mode.py \ No newline at end of file diff --git a/_downloads/d494ebfe0633f9bb238de91ba3b1700a/spines_bounds.ipynb b/_downloads/d494ebfe0633f9bb238de91ba3b1700a/spines_bounds.ipynb deleted file mode 120000 index 16ec8688903..00000000000 --- a/_downloads/d494ebfe0633f9bb238de91ba3b1700a/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d494ebfe0633f9bb238de91ba3b1700a/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/d49579035b7cd82c968534da0f0299e3/parasite_simple.ipynb b/_downloads/d49579035b7cd82c968534da0f0299e3/parasite_simple.ipynb deleted file mode 120000 index 0395c385d4d..00000000000 --- a/_downloads/d49579035b7cd82c968534da0f0299e3/parasite_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d49579035b7cd82c968534da0f0299e3/parasite_simple.ipynb \ No newline at end of file diff --git a/_downloads/d4a13f6329bc6c7145d3beb57fc7ee52/boxplot_color.py b/_downloads/d4a13f6329bc6c7145d3beb57fc7ee52/boxplot_color.py deleted file mode 120000 index 7050f968d2e..00000000000 --- a/_downloads/d4a13f6329bc6c7145d3beb57fc7ee52/boxplot_color.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d4a13f6329bc6c7145d3beb57fc7ee52/boxplot_color.py \ No newline at end of file diff --git a/_downloads/d4a5ba10e6748b596ad1550320c2532f/simple_axisline4.ipynb b/_downloads/d4a5ba10e6748b596ad1550320c2532f/simple_axisline4.ipynb deleted file mode 120000 index c1387a69e7b..00000000000 --- a/_downloads/d4a5ba10e6748b596ad1550320c2532f/simple_axisline4.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d4a5ba10e6748b596ad1550320c2532f/simple_axisline4.ipynb \ No newline at end of file diff --git a/_downloads/d4b6896143cbb07c757f824dbba82c6a/whats_new_99_spines.py b/_downloads/d4b6896143cbb07c757f824dbba82c6a/whats_new_99_spines.py deleted file mode 120000 index 4472db5c2c8..00000000000 --- a/_downloads/d4b6896143cbb07c757f824dbba82c6a/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d4b6896143cbb07c757f824dbba82c6a/whats_new_99_spines.py \ No newline at end of file diff --git a/_downloads/d4b8227634295b81dc72bc8c5806cbde/lasso_selector_demo_sgskip.py b/_downloads/d4b8227634295b81dc72bc8c5806cbde/lasso_selector_demo_sgskip.py deleted file mode 120000 index 90df95116c5..00000000000 --- a/_downloads/d4b8227634295b81dc72bc8c5806cbde/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d4b8227634295b81dc72bc8c5806cbde/lasso_selector_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/d4b9299685a4aa5ae8953759dc376663/demo_ticklabel_direction.ipynb b/_downloads/d4b9299685a4aa5ae8953759dc376663/demo_ticklabel_direction.ipynb deleted file mode 120000 index 239cd76dd53..00000000000 --- a/_downloads/d4b9299685a4aa5ae8953759dc376663/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d4b9299685a4aa5ae8953759dc376663/demo_ticklabel_direction.ipynb \ No newline at end of file diff --git a/_downloads/d4dce637e7761a834df074c9dc5faf37/sankey_links.py b/_downloads/d4dce637e7761a834df074c9dc5faf37/sankey_links.py deleted file mode 100644 index 61dfc06d41b..00000000000 --- a/_downloads/d4dce637e7761a834df074c9dc5faf37/sankey_links.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -====================================== -Long chain of connections using Sankey -====================================== - -Demonstrate/test the Sankey class by producing a long chain of connections. -""" - -import matplotlib.pyplot as plt -from matplotlib.sankey import Sankey - -links_per_side = 6 - - -def side(sankey, n=1): - """Generate a side chain.""" - prior = len(sankey.diagrams) - for i in range(0, 2*n, 2): - sankey.add(flows=[1, -1], orientations=[-1, -1], - patchlabel=str(prior + i), - prior=prior + i - 1, connect=(1, 0), alpha=0.5) - sankey.add(flows=[1, -1], orientations=[1, 1], - patchlabel=str(prior + i + 1), - prior=prior + i, connect=(1, 0), alpha=0.5) - - -def corner(sankey): - """Generate a corner link.""" - prior = len(sankey.diagrams) - sankey.add(flows=[1, -1], orientations=[0, 1], - patchlabel=str(prior), facecolor='k', - prior=prior - 1, connect=(1, 0), alpha=0.5) - - -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], - title="Why would you want to do this?\n(But you could.)") -sankey = Sankey(ax=ax, unit=None) -sankey.add(flows=[1, -1], orientations=[0, 1], - patchlabel="0", facecolor='k', - rotation=45) -side(sankey, n=links_per_side) -corner(sankey) -side(sankey, n=links_per_side) -corner(sankey) -side(sankey, n=links_per_side) -corner(sankey) -side(sankey, n=links_per_side) -sankey.finish() -# Notice: -# 1. The alignment doesn't drift significantly (if at all; with 16007 -# subdiagrams there is still closure). -# 2. The first diagram is rotated 45 deg, so all other diagrams are rotated -# accordingly. - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.sankey -matplotlib.sankey.Sankey -matplotlib.sankey.Sankey.add -matplotlib.sankey.Sankey.finish diff --git a/_downloads/d4dde7a6dbcdccbbf3e004827944e3fd/multi_image.ipynb b/_downloads/d4dde7a6dbcdccbbf3e004827944e3fd/multi_image.ipynb deleted file mode 120000 index 79c1c7c334e..00000000000 --- a/_downloads/d4dde7a6dbcdccbbf3e004827944e3fd/multi_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d4dde7a6dbcdccbbf3e004827944e3fd/multi_image.ipynb \ No newline at end of file diff --git a/_downloads/d4df2faab0da50513c89f0c7fe01d07d/symlog_demo.ipynb b/_downloads/d4df2faab0da50513c89f0c7fe01d07d/symlog_demo.ipynb deleted file mode 120000 index a831deb045d..00000000000 --- a/_downloads/d4df2faab0da50513c89f0c7fe01d07d/symlog_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d4df2faab0da50513c89f0c7fe01d07d/symlog_demo.ipynb \ No newline at end of file diff --git a/_downloads/d4e260f77c291c8033ec515c25bc676d/fivethirtyeight.py b/_downloads/d4e260f77c291c8033ec515c25bc676d/fivethirtyeight.py deleted file mode 120000 index 77f5b9c89d8..00000000000 --- a/_downloads/d4e260f77c291c8033ec515c25bc676d/fivethirtyeight.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d4e260f77c291c8033ec515c25bc676d/fivethirtyeight.py \ No newline at end of file diff --git a/_downloads/d4efdf1e0a465639caaf6159e3f39e80/simple_colorbar.ipynb b/_downloads/d4efdf1e0a465639caaf6159e3f39e80/simple_colorbar.ipynb deleted file mode 120000 index 590e88d7e9a..00000000000 --- a/_downloads/d4efdf1e0a465639caaf6159e3f39e80/simple_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d4efdf1e0a465639caaf6159e3f39e80/simple_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/d4f8e826c13bbb870ffee065e8625f5d/demo_axes_rgb.py b/_downloads/d4f8e826c13bbb870ffee065e8625f5d/demo_axes_rgb.py deleted file mode 120000 index 9e355ddb18f..00000000000 --- a/_downloads/d4f8e826c13bbb870ffee065e8625f5d/demo_axes_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d4f8e826c13bbb870ffee065e8625f5d/demo_axes_rgb.py \ No newline at end of file diff --git a/_downloads/d4f953602a375eb9317b5327b14d0630/sankey_rankine.py b/_downloads/d4f953602a375eb9317b5327b14d0630/sankey_rankine.py deleted file mode 100644 index 379d2d65f7b..00000000000 --- a/_downloads/d4f953602a375eb9317b5327b14d0630/sankey_rankine.py +++ /dev/null @@ -1,100 +0,0 @@ -""" -=================== -Rankine power cycle -=================== - -Demonstrate the Sankey class with a practical example of a Rankine power cycle. -""" - -import matplotlib.pyplot as plt - -from matplotlib.sankey import Sankey - -fig = plt.figure(figsize=(8, 9)) -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], - title="Rankine Power Cycle: Example 8.6 from Moran and " - "Shapiro\n\x22Fundamentals of Engineering Thermodynamics " - "\x22, 6th ed., 2008") -Hdot = [260.431, 35.078, 180.794, 221.115, 22.700, - 142.361, 10.193, 10.210, 43.670, 44.312, - 68.631, 10.758, 10.758, 0.017, 0.642, - 232.121, 44.559, 100.613, 132.168] # MW -sankey = Sankey(ax=ax, format='%.3G', unit=' MW', gap=0.5, scale=1.0/Hdot[0]) -sankey.add(patchlabel='\n\nPump 1', rotation=90, facecolor='#37c959', - flows=[Hdot[13], Hdot[6], -Hdot[7]], - labels=['Shaft power', '', None], - pathlengths=[0.4, 0.883, 0.25], - orientations=[1, -1, 0]) -sankey.add(patchlabel='\n\nOpen\nheater', facecolor='#37c959', - flows=[Hdot[11], Hdot[7], Hdot[4], -Hdot[8]], - labels=[None, '', None, None], - pathlengths=[0.25, 0.25, 1.93, 0.25], - orientations=[1, 0, -1, 0], prior=0, connect=(2, 1)) -sankey.add(patchlabel='\n\nPump 2', facecolor='#37c959', - flows=[Hdot[14], Hdot[8], -Hdot[9]], - labels=['Shaft power', '', None], - pathlengths=[0.4, 0.25, 0.25], - orientations=[1, 0, 0], prior=1, connect=(3, 1)) -sankey.add(patchlabel='Closed\nheater', trunklength=2.914, fc='#37c959', - flows=[Hdot[9], Hdot[1], -Hdot[11], -Hdot[10]], - pathlengths=[0.25, 1.543, 0.25, 0.25], - labels=['', '', None, None], - orientations=[0, -1, 1, -1], prior=2, connect=(2, 0)) -sankey.add(patchlabel='Trap', facecolor='#37c959', trunklength=5.102, - flows=[Hdot[11], -Hdot[12]], - labels=['\n', None], - pathlengths=[1.0, 1.01], - orientations=[1, 1], prior=3, connect=(2, 0)) -sankey.add(patchlabel='Steam\ngenerator', facecolor='#ff5555', - flows=[Hdot[15], Hdot[10], Hdot[2], -Hdot[3], -Hdot[0]], - labels=['Heat rate', '', '', None, None], - pathlengths=0.25, - orientations=[1, 0, -1, -1, -1], prior=3, connect=(3, 1)) -sankey.add(patchlabel='\n\n\nTurbine 1', facecolor='#37c959', - flows=[Hdot[0], -Hdot[16], -Hdot[1], -Hdot[2]], - labels=['', None, None, None], - pathlengths=[0.25, 0.153, 1.543, 0.25], - orientations=[0, 1, -1, -1], prior=5, connect=(4, 0)) -sankey.add(patchlabel='\n\n\nReheat', facecolor='#37c959', - flows=[Hdot[2], -Hdot[2]], - labels=[None, None], - pathlengths=[0.725, 0.25], - orientations=[-1, 0], prior=6, connect=(3, 0)) -sankey.add(patchlabel='Turbine 2', trunklength=3.212, facecolor='#37c959', - flows=[Hdot[3], Hdot[16], -Hdot[5], -Hdot[4], -Hdot[17]], - labels=[None, 'Shaft power', None, '', 'Shaft power'], - pathlengths=[0.751, 0.15, 0.25, 1.93, 0.25], - orientations=[0, -1, 0, -1, 1], prior=6, connect=(1, 1)) -sankey.add(patchlabel='Condenser', facecolor='#58b1fa', trunklength=1.764, - flows=[Hdot[5], -Hdot[18], -Hdot[6]], - labels=['', 'Heat rate', None], - pathlengths=[0.45, 0.25, 0.883], - orientations=[-1, 1, 0], prior=8, connect=(2, 0)) -diagrams = sankey.finish() -for diagram in diagrams: - diagram.text.set_fontweight('bold') - diagram.text.set_fontsize('10') - for text in diagram.texts: - text.set_fontsize('10') -# Notice that the explicit connections are handled automatically, but the -# implicit ones currently are not. The lengths of the paths and the trunks -# must be adjusted manually, and that is a bit tricky. - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.sankey -matplotlib.sankey.Sankey -matplotlib.sankey.Sankey.add -matplotlib.sankey.Sankey.finish diff --git a/_downloads/d4fcfcd25aca8ca63f0505d928e08493/cohere.py b/_downloads/d4fcfcd25aca8ca63f0505d928e08493/cohere.py deleted file mode 120000 index d2bba9bd739..00000000000 --- a/_downloads/d4fcfcd25aca8ca63f0505d928e08493/cohere.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d4fcfcd25aca8ca63f0505d928e08493/cohere.py \ No newline at end of file diff --git a/_downloads/d4fdff72ef77cc4366d102714eb2aff4/tricontour_smooth_delaunay.ipynb b/_downloads/d4fdff72ef77cc4366d102714eb2aff4/tricontour_smooth_delaunay.ipynb deleted file mode 120000 index 161dc9a72db..00000000000 --- a/_downloads/d4fdff72ef77cc4366d102714eb2aff4/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d4fdff72ef77cc4366d102714eb2aff4/tricontour_smooth_delaunay.ipynb \ No newline at end of file diff --git a/_downloads/d506ef819cb1788be5ee72c6b1728f62/whats_new_98_4_fill_between.py b/_downloads/d506ef819cb1788be5ee72c6b1728f62/whats_new_98_4_fill_between.py deleted file mode 120000 index ade213f4637..00000000000 --- a/_downloads/d506ef819cb1788be5ee72c6b1728f62/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d506ef819cb1788be5ee72c6b1728f62/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/_downloads/d5092fbe3583049e113020b67b2553c9/demo_ticklabel_alignment.ipynb b/_downloads/d5092fbe3583049e113020b67b2553c9/demo_ticklabel_alignment.ipynb deleted file mode 120000 index e6d9b5d7a09..00000000000 --- a/_downloads/d5092fbe3583049e113020b67b2553c9/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d5092fbe3583049e113020b67b2553c9/demo_ticklabel_alignment.ipynb \ No newline at end of file diff --git a/_downloads/d50a07beba6cff38addad517c5db2d2d/angle_annotation.ipynb b/_downloads/d50a07beba6cff38addad517c5db2d2d/angle_annotation.ipynb deleted file mode 120000 index f24c2b77c29..00000000000 --- a/_downloads/d50a07beba6cff38addad517c5db2d2d/angle_annotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d50a07beba6cff38addad517c5db2d2d/angle_annotation.ipynb \ No newline at end of file diff --git a/_downloads/d52ad25b2047e114fa6355f74561cbb2/axes_zoom_effect.py b/_downloads/d52ad25b2047e114fa6355f74561cbb2/axes_zoom_effect.py deleted file mode 120000 index 03b060df455..00000000000 --- a/_downloads/d52ad25b2047e114fa6355f74561cbb2/axes_zoom_effect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d52ad25b2047e114fa6355f74561cbb2/axes_zoom_effect.py \ No newline at end of file diff --git a/_downloads/d52b88eee374011b6532d4e5b93b02a0/anchored_box03.ipynb b/_downloads/d52b88eee374011b6532d4e5b93b02a0/anchored_box03.ipynb deleted file mode 120000 index 762abd4f492..00000000000 --- a/_downloads/d52b88eee374011b6532d4e5b93b02a0/anchored_box03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/d52b88eee374011b6532d4e5b93b02a0/anchored_box03.ipynb \ No newline at end of file diff --git a/_downloads/d53ca5e80ab962185acdcfaa4286840a/fancytextbox_demo.py b/_downloads/d53ca5e80ab962185acdcfaa4286840a/fancytextbox_demo.py deleted file mode 100644 index f7616b37bed..00000000000 --- a/_downloads/d53ca5e80ab962185acdcfaa4286840a/fancytextbox_demo.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -================= -Fancytextbox Demo -================= - -""" -import matplotlib.pyplot as plt - -plt.text(0.6, 0.7, "eggs", size=50, rotation=30., - ha="center", va="center", - bbox=dict(boxstyle="round", - ec=(1., 0.5, 0.5), - fc=(1., 0.8, 0.8), - ) - ) - -plt.text(0.55, 0.6, "spam", size=50, rotation=-25., - ha="right", va="top", - bbox=dict(boxstyle="square", - ec=(1., 0.5, 0.5), - fc=(1., 0.8, 0.8), - ) - ) - -plt.show() diff --git a/_downloads/d5495da7bfff8a67e9727dec9dd93ded/streamplot.ipynb b/_downloads/d5495da7bfff8a67e9727dec9dd93ded/streamplot.ipynb deleted file mode 120000 index 5bf255daaca..00000000000 --- a/_downloads/d5495da7bfff8a67e9727dec9dd93ded/streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d5495da7bfff8a67e9727dec9dd93ded/streamplot.ipynb \ No newline at end of file diff --git a/_downloads/d54cbd2e328fcb9b995f1d7bbb543120/demo_axes_grid.ipynb b/_downloads/d54cbd2e328fcb9b995f1d7bbb543120/demo_axes_grid.ipynb deleted file mode 120000 index c88f9ddb9a1..00000000000 --- a/_downloads/d54cbd2e328fcb9b995f1d7bbb543120/demo_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d54cbd2e328fcb9b995f1d7bbb543120/demo_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/d55065ba30dfa5b3141a57ea66ba4a1f/fourier_demo_wx_sgskip.py b/_downloads/d55065ba30dfa5b3141a57ea66ba4a1f/fourier_demo_wx_sgskip.py deleted file mode 100644 index b00cd01d698..00000000000 --- a/_downloads/d55065ba30dfa5b3141a57ea66ba4a1f/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1,235 +0,0 @@ -""" -=============== -Fourier Demo WX -=============== - -""" - -import numpy as np - -import wx -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.figure import Figure - - -class Knob(object): - """ - Knob - simple class with a "setKnob" method. - A Knob instance is attached to a Param instance, e.g., param.attach(knob) - Base class is for documentation purposes. - """ - - def setKnob(self, value): - pass - - -class Param(object): - """ - The idea of the "Param" class is that some parameter in the GUI may have - several knobs that both control it and reflect the parameter's state, e.g. - a slider, text, and dragging can all change the value of the frequency in - the waveform of this example. - The class allows a cleaner way to update/"feedback" to the other knobs when - one is being changed. Also, this class handles min/max constraints for all - the knobs. - Idea - knob list - in "set" method, knob object is passed as well - - the other knobs in the knob list have a "set" method which gets - called for the others. - """ - - def __init__(self, initialValue=None, minimum=0., maximum=1.): - self.minimum = minimum - self.maximum = maximum - if initialValue != self.constrain(initialValue): - raise ValueError('illegal initial value') - self.value = initialValue - self.knobs = [] - - def attach(self, knob): - self.knobs += [knob] - - def set(self, value, knob=None): - self.value = value - self.value = self.constrain(value) - for feedbackKnob in self.knobs: - if feedbackKnob != knob: - feedbackKnob.setKnob(self.value) - return self.value - - def constrain(self, value): - if value <= self.minimum: - value = self.minimum - if value >= self.maximum: - value = self.maximum - return value - - -class SliderGroup(Knob): - def __init__(self, parent, label, param): - self.sliderLabel = wx.StaticText(parent, label=label) - self.sliderText = wx.TextCtrl(parent, -1, style=wx.TE_PROCESS_ENTER) - self.slider = wx.Slider(parent, -1) - # self.slider.SetMax(param.maximum*1000) - self.slider.SetRange(0, param.maximum * 1000) - self.setKnob(param.value) - - sizer = wx.BoxSizer(wx.HORIZONTAL) - sizer.Add(self.sliderLabel, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, - border=2) - sizer.Add(self.sliderText, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, - border=2) - sizer.Add(self.slider, 1, wx.EXPAND) - self.sizer = sizer - - self.slider.Bind(wx.EVT_SLIDER, self.sliderHandler) - self.sliderText.Bind(wx.EVT_TEXT_ENTER, self.sliderTextHandler) - - self.param = param - self.param.attach(self) - - def sliderHandler(self, evt): - value = evt.GetInt() / 1000. - self.param.set(value) - - def sliderTextHandler(self, evt): - value = float(self.sliderText.GetValue()) - self.param.set(value) - - def setKnob(self, value): - self.sliderText.SetValue('%g' % value) - self.slider.SetValue(value * 1000) - - -class FourierDemoFrame(wx.Frame): - def __init__(self, *args, **kwargs): - wx.Frame.__init__(self, *args, **kwargs) - panel = wx.Panel(self) - - # create the GUI elements - self.createCanvas(panel) - self.createSliders(panel) - - # place them in a sizer for the Layout - sizer = wx.BoxSizer(wx.VERTICAL) - sizer.Add(self.canvas, 1, wx.EXPAND) - sizer.Add(self.frequencySliderGroup.sizer, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5) - sizer.Add(self.amplitudeSliderGroup.sizer, 0, - wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5) - panel.SetSizer(sizer) - - def createCanvas(self, parent): - self.lines = [] - self.figure = Figure() - self.canvas = FigureCanvas(parent, -1, self.figure) - self.canvas.callbacks.connect('button_press_event', self.mouseDown) - self.canvas.callbacks.connect('motion_notify_event', self.mouseMotion) - self.canvas.callbacks.connect('button_release_event', self.mouseUp) - self.state = '' - self.mouseInfo = (None, None, None, None) - self.f0 = Param(2., minimum=0., maximum=6.) - self.A = Param(1., minimum=0.01, maximum=2.) - self.createPlots() - - # Not sure I like having two params attached to the same Knob, - # but that is what we have here... it works but feels kludgy - - # although maybe it's not too bad since the knob changes both params - # at the same time (both f0 and A are affected during a drag) - self.f0.attach(self) - self.A.attach(self) - - def createSliders(self, panel): - self.frequencySliderGroup = SliderGroup( - panel, - label='Frequency f0:', - param=self.f0) - self.amplitudeSliderGroup = SliderGroup(panel, label=' Amplitude a:', - param=self.A) - - def mouseDown(self, evt): - if self.lines[0].contains(evt)[0]: - self.state = 'frequency' - elif self.lines[1].contains(evt)[0]: - self.state = 'time' - else: - self.state = '' - self.mouseInfo = (evt.xdata, evt.ydata, - max(self.f0.value, .1), - self.A.value) - - def mouseMotion(self, evt): - if self.state == '': - return - x, y = evt.xdata, evt.ydata - if x is None: # outside the axes - return - x0, y0, f0Init, AInit = self.mouseInfo - self.A.set(AInit + (AInit * (y - y0) / y0), self) - if self.state == 'frequency': - self.f0.set(f0Init + (f0Init * (x - x0) / x0)) - elif self.state == 'time': - if (x - x0) / x0 != -1.: - self.f0.set(1. / (1. / f0Init + (1. / f0Init * (x - x0) / x0))) - - def mouseUp(self, evt): - self.state = '' - - def createPlots(self): - # This method creates the subplots, waveforms and labels. - # Later, when the waveforms or sliders are dragged, only the - # waveform data will be updated (not here, but below in setKnob). - self.subplot1, self.subplot2 = self.figure.subplots(2) - x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value) - color = (1., 0., 0.) - self.lines += self.subplot1.plot(x1, y1, color=color, linewidth=2) - self.lines += self.subplot2.plot(x2, y2, color=color, linewidth=2) - # Set some plot attributes - self.subplot1.set_title( - "Click and drag waveforms to change frequency and amplitude", - fontsize=12) - self.subplot1.set_ylabel("Frequency Domain Waveform X(f)", fontsize=8) - self.subplot1.set_xlabel("frequency f", fontsize=8) - self.subplot2.set_ylabel("Time Domain Waveform x(t)", fontsize=8) - self.subplot2.set_xlabel("time t", fontsize=8) - self.subplot1.set_xlim([-6, 6]) - self.subplot1.set_ylim([0, 1]) - self.subplot2.set_xlim([-2, 2]) - self.subplot2.set_ylim([-2, 2]) - self.subplot1.text(0.05, .95, - r'$X(f) = \mathcal{F}\{x(t)\}$', - verticalalignment='top', - transform=self.subplot1.transAxes) - self.subplot2.text(0.05, .95, - r'$x(t) = a \cdot \cos(2\pi f_0 t) e^{-\pi t^2}$', - verticalalignment='top', - transform=self.subplot2.transAxes) - - def compute(self, f0, A): - f = np.arange(-6., 6., 0.02) - t = np.arange(-2., 2., 0.01) - x = A * np.cos(2 * np.pi * f0 * t) * np.exp(-np.pi * t ** 2) - X = A / 2 * \ - (np.exp(-np.pi * (f - f0) ** 2) + np.exp(-np.pi * (f + f0) ** 2)) - return f, X, t, x - - def setKnob(self, value): - # Note, we ignore value arg here and just go by state of the params - x1, y1, x2, y2 = self.compute(self.f0.value, self.A.value) - # update the data of the two waveforms - self.lines[0].set(xdata=x1, ydata=y1) - self.lines[1].set(xdata=x2, ydata=y2) - # make the canvas draw its contents again with the new data - self.canvas.draw() - - -class App(wx.App): - def OnInit(self): - self.frame1 = FourierDemoFrame(parent=None, title="Fourier Demo", - size=(640, 480)) - self.frame1.Show() - return True - -app = App() -app.MainLoop() diff --git a/_downloads/d553246353731b1b51fc7cdd12bdd39c/image_slices_viewer.py b/_downloads/d553246353731b1b51fc7cdd12bdd39c/image_slices_viewer.py deleted file mode 120000 index 9bb821e5c48..00000000000 --- a/_downloads/d553246353731b1b51fc7cdd12bdd39c/image_slices_viewer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d553246353731b1b51fc7cdd12bdd39c/image_slices_viewer.py \ No newline at end of file diff --git a/_downloads/d558d74d36a57f66fc595a6bb564b180/embedding_webagg_sgskip.py b/_downloads/d558d74d36a57f66fc595a6bb564b180/embedding_webagg_sgskip.py deleted file mode 120000 index 76a6c7a8f1e..00000000000 --- a/_downloads/d558d74d36a57f66fc595a6bb564b180/embedding_webagg_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d558d74d36a57f66fc595a6bb564b180/embedding_webagg_sgskip.py \ No newline at end of file diff --git a/_downloads/d5644f73d72200443b8843bd6f29c6e8/tripcolor_demo.py b/_downloads/d5644f73d72200443b8843bd6f29c6e8/tripcolor_demo.py deleted file mode 120000 index eed06f6b8af..00000000000 --- a/_downloads/d5644f73d72200443b8843bd6f29c6e8/tripcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d5644f73d72200443b8843bd6f29c6e8/tripcolor_demo.py \ No newline at end of file diff --git a/_downloads/d564b583ce71a0ea05451b677e414dbc/text_props.ipynb b/_downloads/d564b583ce71a0ea05451b677e414dbc/text_props.ipynb deleted file mode 120000 index 484982f7e07..00000000000 --- a/_downloads/d564b583ce71a0ea05451b677e414dbc/text_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d564b583ce71a0ea05451b677e414dbc/text_props.ipynb \ No newline at end of file diff --git a/_downloads/d56884ba830a73f56a87eb72b1221885/subplots_demo.ipynb b/_downloads/d56884ba830a73f56a87eb72b1221885/subplots_demo.ipynb deleted file mode 120000 index db5604e7bd8..00000000000 --- a/_downloads/d56884ba830a73f56a87eb72b1221885/subplots_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d56884ba830a73f56a87eb72b1221885/subplots_demo.ipynb \ No newline at end of file diff --git a/_downloads/d57389db119b083d3eb1532dd1d3b259/membrane.py b/_downloads/d57389db119b083d3eb1532dd1d3b259/membrane.py deleted file mode 100644 index 4e126eceda5..00000000000 --- a/_downloads/d57389db119b083d3eb1532dd1d3b259/membrane.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -====================== -Frontpage plot example -====================== - -This example reproduces the frontpage simple plot example. -""" - -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import numpy as np - - -with cbook.get_sample_data('membrane.dat') as datafile: - x = np.fromfile(datafile, np.float32) -# 0.0005 is the sample interval - -fig, ax = plt.subplots() -ax.plot(x, linewidth=4) -ax.set_xlim(5000, 6000) -ax.set_ylim(-0.6, 0.1) -ax.set_xticks([]) -ax.set_yticks([]) -fig.savefig("membrane_frontpage.png", dpi=25) # results in 160x120 px image diff --git a/_downloads/d57e87430fa16279daa1649d032c8783/make_room_for_ylabel_using_axesgrid.py b/_downloads/d57e87430fa16279daa1649d032c8783/make_room_for_ylabel_using_axesgrid.py deleted file mode 100644 index 28424264ba6..00000000000 --- a/_downloads/d57e87430fa16279daa1649d032c8783/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -=================================== -Make Room For Ylabel Using Axesgrid -=================================== - -""" -from mpl_toolkits.axes_grid1 import make_axes_locatable -from mpl_toolkits.axes_grid1.axes_divider import make_axes_area_auto_adjustable - - -if __name__ == "__main__": - - import matplotlib.pyplot as plt - - def ex1(): - plt.figure(1) - ax = plt.axes([0, 0, 1, 1]) - #ax = plt.subplot(111) - - ax.set_yticks([0.5]) - ax.set_yticklabels(["very long label"]) - - make_axes_area_auto_adjustable(ax) - - def ex2(): - - plt.figure(2) - ax1 = plt.axes([0, 0, 1, 0.5]) - ax2 = plt.axes([0, 0.5, 1, 0.5]) - - ax1.set_yticks([0.5]) - ax1.set_yticklabels(["very long label"]) - ax1.set_ylabel("Y label") - - ax2.set_title("Title") - - make_axes_area_auto_adjustable(ax1, pad=0.1, use_axes=[ax1, ax2]) - make_axes_area_auto_adjustable(ax2, pad=0.1, use_axes=[ax1, ax2]) - - def ex3(): - - fig = plt.figure(3) - ax1 = plt.axes([0, 0, 1, 1]) - divider = make_axes_locatable(ax1) - - ax2 = divider.new_horizontal("100%", pad=0.3, sharey=ax1) - ax2.tick_params(labelleft=False) - fig.add_axes(ax2) - - divider.add_auto_adjustable_area(use_axes=[ax1], pad=0.1, - adjust_dirs=["left"]) - divider.add_auto_adjustable_area(use_axes=[ax2], pad=0.1, - adjust_dirs=["right"]) - divider.add_auto_adjustable_area(use_axes=[ax1, ax2], pad=0.1, - adjust_dirs=["top", "bottom"]) - - ax1.set_yticks([0.5]) - ax1.set_yticklabels(["very long label"]) - - ax2.set_title("Title") - ax2.set_xlabel("X - Label") - - ex1() - ex2() - ex3() - - plt.show() diff --git a/_downloads/d595ac356685e81c555d776a958885b3/customized_violin.ipynb b/_downloads/d595ac356685e81c555d776a958885b3/customized_violin.ipynb deleted file mode 120000 index a26a0498b78..00000000000 --- a/_downloads/d595ac356685e81c555d776a958885b3/customized_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d595ac356685e81c555d776a958885b3/customized_violin.ipynb \ No newline at end of file diff --git a/_downloads/d5965736ffa82563c37862d7f70f9cd3/pathpatch3d.ipynb b/_downloads/d5965736ffa82563c37862d7f70f9cd3/pathpatch3d.ipynb deleted file mode 100644 index 8154ca1f749..00000000000 --- a/_downloads/d5965736ffa82563c37862d7f70f9cd3/pathpatch3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Draw flat objects in 3D plot\n\n\nDemonstrate using pathpatch_2d_to_3d to 'draw' shapes and text on a 3D plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.patches import Circle, PathPatch\nfrom matplotlib.text import TextPath\nfrom matplotlib.transforms import Affine2D\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\nimport mpl_toolkits.mplot3d.art3d as art3d\n\n\ndef text3d(ax, xyz, s, zdir=\"z\", size=None, angle=0, usetex=False, **kwargs):\n '''\n Plots the string 's' on the axes 'ax', with position 'xyz', size 'size',\n and rotation angle 'angle'. 'zdir' gives the axis which is to be treated\n as the third dimension. usetex is a boolean indicating whether the string\n should be interpreted as latex or not. Any additional keyword arguments\n are passed on to transform_path.\n\n Note: zdir affects the interpretation of xyz.\n '''\n x, y, z = xyz\n if zdir == \"y\":\n xy1, z1 = (x, z), y\n elif zdir == \"x\":\n xy1, z1 = (y, z), x\n else:\n xy1, z1 = (x, y), z\n\n text_path = TextPath((0, 0), s, size=size, usetex=usetex)\n trans = Affine2D().rotate(angle).translate(xy1[0], xy1[1])\n\n p1 = PathPatch(trans.transform_path(text_path), **kwargs)\n ax.add_patch(p1)\n art3d.pathpatch_2d_to_3d(p1, z=z1, zdir=zdir)\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Draw a circle on the x=0 'wall'\np = Circle((5, 5), 3)\nax.add_patch(p)\nart3d.pathpatch_2d_to_3d(p, z=0, zdir=\"x\")\n\n# Manually label the axes\ntext3d(ax, (4, -2, 0), \"X-axis\", zdir=\"z\", size=.5, usetex=False,\n ec=\"none\", fc=\"k\")\ntext3d(ax, (12, 4, 0), \"Y-axis\", zdir=\"z\", size=.5, usetex=False,\n angle=np.pi / 2, ec=\"none\", fc=\"k\")\ntext3d(ax, (12, 10, 4), \"Z-axis\", zdir=\"y\", size=.5, usetex=False,\n angle=np.pi / 2, ec=\"none\", fc=\"k\")\n\n# Write a Latex formula on the z=0 'floor'\ntext3d(ax, (1, 5, 0),\n r\"$\\displaystyle G_{\\mu\\nu} + \\Lambda g_{\\mu\\nu} = \"\n r\"\\frac{8\\pi G}{c^4} T_{\\mu\\nu} $\",\n zdir=\"z\", size=1, usetex=True,\n ec=\"none\", fc=\"k\")\n\nax.set_xlim(0, 10)\nax.set_ylim(0, 10)\nax.set_zlim(0, 10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d5984eaebd6584a25b4768f7d140f747/rain.py b/_downloads/d5984eaebd6584a25b4768f7d140f747/rain.py deleted file mode 120000 index fd6046bdc38..00000000000 --- a/_downloads/d5984eaebd6584a25b4768f7d140f747/rain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d5984eaebd6584a25b4768f7d140f747/rain.py \ No newline at end of file diff --git a/_downloads/d59f23730a9a3257fac715981731ebe7/xkcd.ipynb b/_downloads/d59f23730a9a3257fac715981731ebe7/xkcd.ipynb deleted file mode 100644 index 623fa1935fa..00000000000 --- a/_downloads/d59f23730a9a3257fac715981731ebe7/xkcd.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# XKCD\n\n\nShows how to create an xkcd-like plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.xkcd():\n # Based on \"Stove Ownership\" from XKCD by Randall Munroe\n # https://xkcd.com/418/\n\n fig = plt.figure()\n ax = fig.add_axes((0.1, 0.2, 0.8, 0.7))\n ax.spines['right'].set_color('none')\n ax.spines['top'].set_color('none')\n ax.set_xticks([])\n ax.set_yticks([])\n ax.set_ylim([-30, 10])\n\n data = np.ones(100)\n data[70:] -= np.arange(30)\n\n ax.annotate(\n 'THE DAY I REALIZED\\nI COULD COOK BACON\\nWHENEVER I WANTED',\n xy=(70, 1), arrowprops=dict(arrowstyle='->'), xytext=(15, -10))\n\n ax.plot(data)\n\n ax.set_xlabel('time')\n ax.set_ylabel('my overall health')\n fig.text(\n 0.5, 0.05,\n '\"Stove Ownership\" from xkcd by Randall Munroe',\n ha='center')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.xkcd():\n # Based on \"The Data So Far\" from XKCD by Randall Munroe\n # https://xkcd.com/373/\n\n fig = plt.figure()\n ax = fig.add_axes((0.1, 0.2, 0.8, 0.7))\n ax.bar([0, 1], [0, 100], 0.25)\n ax.spines['right'].set_color('none')\n ax.spines['top'].set_color('none')\n ax.xaxis.set_ticks_position('bottom')\n ax.set_xticks([0, 1])\n ax.set_xticklabels(['CONFIRMED BY\\nEXPERIMENT', 'REFUTED BY\\nEXPERIMENT'])\n ax.set_xlim([-0.5, 1.5])\n ax.set_yticks([])\n ax.set_ylim([0, 110])\n\n ax.set_title(\"CLAIMS OF SUPERNATURAL POWERS\")\n\n fig.text(\n 0.5, 0.05,\n '\"The Data So Far\" from xkcd by Randall Munroe',\n ha='center')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d5a764f206ba67bcd2af62731e560892/psd_demo.py b/_downloads/d5a764f206ba67bcd2af62731e560892/psd_demo.py deleted file mode 120000 index dfff4a82d31..00000000000 --- a/_downloads/d5a764f206ba67bcd2af62731e560892/psd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d5a764f206ba67bcd2af62731e560892/psd_demo.py \ No newline at end of file diff --git a/_downloads/d5c217d19c4d4c93afe2fb3bb4c0c404/annotation_polar.py b/_downloads/d5c217d19c4d4c93afe2fb3bb4c0c404/annotation_polar.py deleted file mode 120000 index 9b908f4ac91..00000000000 --- a/_downloads/d5c217d19c4d4c93afe2fb3bb4c0c404/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d5c217d19c4d4c93afe2fb3bb4c0c404/annotation_polar.py \ No newline at end of file diff --git a/_downloads/d5c2eb2852d3c42165eae0981f28a2a8/line_collection.ipynb b/_downloads/d5c2eb2852d3c42165eae0981f28a2a8/line_collection.ipynb deleted file mode 120000 index b3f79231325..00000000000 --- a/_downloads/d5c2eb2852d3c42165eae0981f28a2a8/line_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d5c2eb2852d3c42165eae0981f28a2a8/line_collection.ipynb \ No newline at end of file diff --git a/_downloads/d5d5f2d68ec051098149e3dc896d9706/wire3d_zero_stride.py b/_downloads/d5d5f2d68ec051098149e3dc896d9706/wire3d_zero_stride.py deleted file mode 120000 index f1a6df4ed10..00000000000 --- a/_downloads/d5d5f2d68ec051098149e3dc896d9706/wire3d_zero_stride.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d5d5f2d68ec051098149e3dc896d9706/wire3d_zero_stride.py \ No newline at end of file diff --git a/_downloads/d5e86fd91e42f6fbe41df353ea6707d0/boxplot_demo.py b/_downloads/d5e86fd91e42f6fbe41df353ea6707d0/boxplot_demo.py deleted file mode 120000 index 8517f3d68ee..00000000000 --- a/_downloads/d5e86fd91e42f6fbe41df353ea6707d0/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d5e86fd91e42f6fbe41df353ea6707d0/boxplot_demo.py \ No newline at end of file diff --git a/_downloads/d5f571ca5da1c815e5a7debbff47f370/scatter3d.py b/_downloads/d5f571ca5da1c815e5a7debbff47f370/scatter3d.py deleted file mode 120000 index a8935697c18..00000000000 --- a/_downloads/d5f571ca5da1c815e5a7debbff47f370/scatter3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d5f571ca5da1c815e5a7debbff47f370/scatter3d.py \ No newline at end of file diff --git a/_downloads/d5feb022cdc959fd7766db05dc081030/matshow.ipynb b/_downloads/d5feb022cdc959fd7766db05dc081030/matshow.ipynb deleted file mode 100644 index 61e48b6f7f0..00000000000 --- a/_downloads/d5feb022cdc959fd7766db05dc081030/matshow.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Matshow\n\n\nSimple `~.axes.Axes.matshow` example.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef samplemat(dims):\n \"\"\"Make a matrix with all zeros and increasing elements on the diagonal\"\"\"\n aa = np.zeros(dims)\n for i in range(min(dims)):\n aa[i, i] = i\n return aa\n\n\n# Display matrix\nplt.matshow(samplemat((15, 15)))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.matshow\nmatplotlib.pyplot.matshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d605f66c0b13fb65486ea1c2b748f14e/mathtext_fontfamily_example.ipynb b/_downloads/d605f66c0b13fb65486ea1c2b748f14e/mathtext_fontfamily_example.ipynb deleted file mode 120000 index 9a0721c6b39..00000000000 --- a/_downloads/d605f66c0b13fb65486ea1c2b748f14e/mathtext_fontfamily_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d605f66c0b13fb65486ea1c2b748f14e/mathtext_fontfamily_example.ipynb \ No newline at end of file diff --git a/_downloads/d60a77b1ff08a0bd16adbf984d127e51/watermark_text.ipynb b/_downloads/d60a77b1ff08a0bd16adbf984d127e51/watermark_text.ipynb deleted file mode 120000 index 06e27f2d933..00000000000 --- a/_downloads/d60a77b1ff08a0bd16adbf984d127e51/watermark_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d60a77b1ff08a0bd16adbf984d127e51/watermark_text.ipynb \ No newline at end of file diff --git a/_downloads/d60c5330eb3126e610e0d6cb33dcc7f2/simple_anim.py b/_downloads/d60c5330eb3126e610e0d6cb33dcc7f2/simple_anim.py deleted file mode 120000 index 20b970042e3..00000000000 --- a/_downloads/d60c5330eb3126e610e0d6cb33dcc7f2/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d60c5330eb3126e610e0d6cb33dcc7f2/simple_anim.py \ No newline at end of file diff --git a/_downloads/d61ac013fe3fb9aeb074628ac2d1e12a/strip_chart.ipynb b/_downloads/d61ac013fe3fb9aeb074628ac2d1e12a/strip_chart.ipynb deleted file mode 100644 index e4ad9d6b9b8..00000000000 --- a/_downloads/d61ac013fe3fb9aeb074628ac2d1e12a/strip_chart.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Oscilloscope\n\n\nEmulates an oscilloscope.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.lines import Line2D\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\n\nclass Scope(object):\n def __init__(self, ax, maxt=2, dt=0.02):\n self.ax = ax\n self.dt = dt\n self.maxt = maxt\n self.tdata = [0]\n self.ydata = [0]\n self.line = Line2D(self.tdata, self.ydata)\n self.ax.add_line(self.line)\n self.ax.set_ylim(-.1, 1.1)\n self.ax.set_xlim(0, self.maxt)\n\n def update(self, y):\n lastt = self.tdata[-1]\n if lastt > self.tdata[0] + self.maxt: # reset the arrays\n self.tdata = [self.tdata[-1]]\n self.ydata = [self.ydata[-1]]\n self.ax.set_xlim(self.tdata[0], self.tdata[0] + self.maxt)\n self.ax.figure.canvas.draw()\n\n t = self.tdata[-1] + self.dt\n self.tdata.append(t)\n self.ydata.append(y)\n self.line.set_data(self.tdata, self.ydata)\n return self.line,\n\n\ndef emitter(p=0.03):\n 'return a random value with probability p, else 0'\n while True:\n v = np.random.rand(1)\n if v > p:\n yield 0.\n else:\n yield np.random.rand(1)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nscope = Scope(ax)\n\n# pass a generator in \"emitter\" to produce data for the update func\nani = animation.FuncAnimation(fig, scope.update, emitter, interval=10,\n blit=True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d61ec52a67e86763e0c812f4184d9fdd/firefox.py b/_downloads/d61ec52a67e86763e0c812f4184d9fdd/firefox.py deleted file mode 100644 index 0f597812fa8..00000000000 --- a/_downloads/d61ec52a67e86763e0c812f4184d9fdd/firefox.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -======= -Firefox -======= - -This example shows how to create the Firefox logo with path and patches. -""" - -import re -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.path import Path -import matplotlib.patches as patches - -# From: http://raphaeljs.com/icons/#firefox -firefox = "M28.4,22.469c0.479-0.964,0.851-1.991,1.095-3.066c0.953-3.661,0.666-6.854,0.666-6.854l-0.327,2.104c0,0-0.469-3.896-1.044-5.353c-0.881-2.231-1.273-2.214-1.274-2.21c0.542,1.379,0.494,2.169,0.483,2.288c-0.01-0.016-0.019-0.032-0.027-0.047c-0.131-0.324-0.797-1.819-2.225-2.878c-2.502-2.481-5.943-4.014-9.745-4.015c-4.056,0-7.705,1.745-10.238,4.525C5.444,6.5,5.183,5.938,5.159,5.317c0,0-0.002,0.002-0.006,0.005c0-0.011-0.003-0.021-0.003-0.031c0,0-1.61,1.247-1.436,4.612c-0.299,0.574-0.56,1.172-0.777,1.791c-0.375,0.817-0.75,2.004-1.059,3.746c0,0,0.133-0.422,0.399-0.988c-0.064,0.482-0.103,0.971-0.116,1.467c-0.09,0.845-0.118,1.865-0.039,3.088c0,0,0.032-0.406,0.136-1.021c0.834,6.854,6.667,12.165,13.743,12.165l0,0c1.86,0,3.636-0.37,5.256-1.036C24.938,27.771,27.116,25.196,28.4,22.469zM16.002,3.356c2.446,0,4.73,0.68,6.68,1.86c-2.274-0.528-3.433-0.261-3.423-0.248c0.013,0.015,3.384,0.589,3.981,1.411c0,0-1.431,0-2.856,0.41c-0.065,0.019,5.242,0.663,6.327,5.966c0,0-0.582-1.213-1.301-1.42c0.473,1.439,0.351,4.17-0.1,5.528c-0.058,0.174-0.118-0.755-1.004-1.155c0.284,2.037-0.018,5.268-1.432,6.158c-0.109,0.07,0.887-3.189,0.201-1.93c-4.093,6.276-8.959,2.539-10.934,1.208c1.585,0.388,3.267,0.108,4.242-0.559c0.982-0.672,1.564-1.162,2.087-1.047c0.522,0.117,0.87-0.407,0.464-0.872c-0.405-0.466-1.392-1.105-2.725-0.757c-0.94,0.247-2.107,1.287-3.886,0.233c-1.518-0.899-1.507-1.63-1.507-2.095c0-0.366,0.257-0.88,0.734-1.028c0.58,0.062,1.044,0.214,1.537,0.466c0.005-0.135,0.006-0.315-0.001-0.519c0.039-0.077,0.015-0.311-0.047-0.596c-0.036-0.287-0.097-0.582-0.19-0.851c0.01-0.002,0.017-0.007,0.021-0.021c0.076-0.344,2.147-1.544,2.299-1.659c0.153-0.114,0.55-0.378,0.506-1.183c-0.015-0.265-0.058-0.294-2.232-0.286c-0.917,0.003-1.425-0.894-1.589-1.245c0.222-1.231,0.863-2.11,1.919-2.704c0.02-0.011,0.015-0.021-0.008-0.027c0.219-0.127-2.524-0.006-3.76,1.604C9.674,8.045,9.219,7.95,8.71,7.95c-0.638,0-1.139,0.07-1.603,0.187c-0.05,0.013-0.122,0.011-0.208-0.001C6.769,8.04,6.575,7.88,6.365,7.672c0.161-0.18,0.324-0.356,0.495-0.526C9.201,4.804,12.43,3.357,16.002,3.356z" - - -def svg_parse(path): - commands = {'M': (Path.MOVETO,), - 'L': (Path.LINETO,), - 'Q': (Path.CURVE3,)*2, - 'C': (Path.CURVE4,)*3, - 'Z': (Path.CLOSEPOLY,)} - path_re = re.compile(r'([MLHVCSQTAZ])([^MLHVCSQTAZ]+)', re.IGNORECASE) - float_re = re.compile(r'(?:[\s,]*)([+-]?\d+(?:\.\d+)?)') - vertices = [] - codes = [] - last = (0, 0) - for cmd, values in path_re.findall(path): - points = [float(v) for v in float_re.findall(values)] - points = np.array(points).reshape((len(points)//2, 2)) - if cmd.islower(): - points += last - cmd = cmd.capitalize() - last = points[-1] - codes.extend(commands[cmd]) - vertices.extend(points.tolist()) - return codes, vertices - -# SVG to matplotlib -codes, verts = svg_parse(firefox) -verts = np.array(verts) -path = Path(verts, codes) - -# Make upside down -verts[:, 1] *= -1 -xmin, xmax = verts[:, 0].min()-1, verts[:, 0].max()+1 -ymin, ymax = verts[:, 1].min()-1, verts[:, 1].max()+1 - -fig = plt.figure(figsize=(5, 5)) -ax = fig.add_axes([0.0, 0.0, 1.0, 1.0], frameon=False, aspect=1) - -# White outline (width = 6) -patch = patches.PathPatch(path, facecolor='None', edgecolor='w', lw=6) -ax.add_patch(patch) - -# Actual shape with black outline -patch = patches.PathPatch(path, facecolor='orange', edgecolor='k', lw=2) -ax.add_patch(patch) - -# Centering -ax.set_xlim(xmin, xmax) -ax.set_ylim(ymin, ymax) - -# No ticks -ax.set_xticks([]) -ax.set_yticks([]) - -# Display -plt.show() diff --git a/_downloads/d6293d1923db3b5c65dbbff4dd35baf7/surface3d.py b/_downloads/d6293d1923db3b5c65dbbff4dd35baf7/surface3d.py deleted file mode 120000 index 498b69bc170..00000000000 --- a/_downloads/d6293d1923db3b5c65dbbff4dd35baf7/surface3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d6293d1923db3b5c65dbbff4dd35baf7/surface3d.py \ No newline at end of file diff --git a/_downloads/d637b6d5c2b118b792dac24d3eb97ee6/customize_rc.ipynb b/_downloads/d637b6d5c2b118b792dac24d3eb97ee6/customize_rc.ipynb deleted file mode 120000 index e853b6ec811..00000000000 --- a/_downloads/d637b6d5c2b118b792dac24d3eb97ee6/customize_rc.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d637b6d5c2b118b792dac24d3eb97ee6/customize_rc.ipynb \ No newline at end of file diff --git a/_downloads/d638fc4aa9956fe1de666f49738e0815/boxplot_vs_violin.py b/_downloads/d638fc4aa9956fe1de666f49738e0815/boxplot_vs_violin.py deleted file mode 100644 index 0a89ce55fc1..00000000000 --- a/_downloads/d638fc4aa9956fe1de666f49738e0815/boxplot_vs_violin.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -=================================== -Box plot vs. violin plot comparison -=================================== - -Note that although violin plots are closely related to Tukey's (1977) -box plots, they add useful information such as the distribution of the -sample data (density trace). - -By default, box plots show data points outside 1.5 * the inter-quartile -range as outliers above or below the whiskers whereas violin plots show -the whole range of the data. - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf - -Violin plots require matplotlib >= 1.4. - -For more information on violin plots, the scikit-learn docs have a great -section: http://scikit-learn.org/stable/modules/density.html -""" - -import matplotlib.pyplot as plt -import numpy as np - -fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4)) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# generate some random test data -all_data = [np.random.normal(0, std, 100) for std in range(6, 10)] - -# plot violin plot -axes[0].violinplot(all_data, - showmeans=False, - showmedians=True) -axes[0].set_title('Violin plot') - -# plot box plot -axes[1].boxplot(all_data) -axes[1].set_title('Box plot') - -# adding horizontal grid lines -for ax in axes: - ax.yaxis.grid(True) - ax.set_xticks([y + 1 for y in range(len(all_data))]) - ax.set_xlabel('Four separate samples') - ax.set_ylabel('Observed values') - -# add x-tick labels -plt.setp(axes, xticks=[y + 1 for y in range(len(all_data))], - xticklabels=['x1', 'x2', 'x3', 'x4']) -plt.show() diff --git a/_downloads/d6392f74f993e6a3909f8d439bd80cbe/log_test.py b/_downloads/d6392f74f993e6a3909f8d439bd80cbe/log_test.py deleted file mode 100644 index 3641a1ac646..00000000000 --- a/_downloads/d6392f74f993e6a3909f8d439bd80cbe/log_test.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -======== -Log Axis -======== - -This is an example of assigning a log-scale for the x-axis using -`semilogx`. -""" - -import matplotlib.pyplot as plt -import numpy as np - -fig, ax = plt.subplots() - -dt = 0.01 -t = np.arange(dt, 20.0, dt) - -ax.semilogx(t, np.exp(-t / 5.0)) -ax.grid() - -plt.show() diff --git a/_downloads/d656c05903bb1c17b3793dd1a4168ebd/ellipse_with_units.ipynb b/_downloads/d656c05903bb1c17b3793dd1a4168ebd/ellipse_with_units.ipynb deleted file mode 120000 index 9501dbd6c21..00000000000 --- a/_downloads/d656c05903bb1c17b3793dd1a4168ebd/ellipse_with_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d656c05903bb1c17b3793dd1a4168ebd/ellipse_with_units.ipynb \ No newline at end of file diff --git a/_downloads/d656cf4966c9cc6ce668cc5bf3836f68/units_sample.py b/_downloads/d656cf4966c9cc6ce668cc5bf3836f68/units_sample.py deleted file mode 120000 index 737df61ccf4..00000000000 --- a/_downloads/d656cf4966c9cc6ce668cc5bf3836f68/units_sample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d656cf4966c9cc6ce668cc5bf3836f68/units_sample.py \ No newline at end of file diff --git a/_downloads/d6586b8d958116233ae0d6f9bdf2f8e7/tripcolor_demo.py b/_downloads/d6586b8d958116233ae0d6f9bdf2f8e7/tripcolor_demo.py deleted file mode 120000 index dd32e5db868..00000000000 --- a/_downloads/d6586b8d958116233ae0d6f9bdf2f8e7/tripcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d6586b8d958116233ae0d6f9bdf2f8e7/tripcolor_demo.py \ No newline at end of file diff --git a/_downloads/d65b59ed05561157424678139f4e9e97/coords_report.ipynb b/_downloads/d65b59ed05561157424678139f4e9e97/coords_report.ipynb deleted file mode 120000 index 9f136f13938..00000000000 --- a/_downloads/d65b59ed05561157424678139f4e9e97/coords_report.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d65b59ed05561157424678139f4e9e97/coords_report.ipynb \ No newline at end of file diff --git a/_downloads/d65ff5e8d350a737e991c8ff4a6bca93/canvasagg.py b/_downloads/d65ff5e8d350a737e991c8ff4a6bca93/canvasagg.py deleted file mode 120000 index 0c0cfba285d..00000000000 --- a/_downloads/d65ff5e8d350a737e991c8ff4a6bca93/canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d65ff5e8d350a737e991c8ff4a6bca93/canvasagg.py \ No newline at end of file diff --git a/_downloads/d664881ac6015c7a20bce44d357381e9/demo_edge_colorbar.ipynb b/_downloads/d664881ac6015c7a20bce44d357381e9/demo_edge_colorbar.ipynb deleted file mode 120000 index 1d25bc05e13..00000000000 --- a/_downloads/d664881ac6015c7a20bce44d357381e9/demo_edge_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d664881ac6015c7a20bce44d357381e9/demo_edge_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/d66a5ecc1a6c89e19a968d0ff1a90ffe/fill_betweenx_demo.ipynb b/_downloads/d66a5ecc1a6c89e19a968d0ff1a90ffe/fill_betweenx_demo.ipynb deleted file mode 120000 index 3ab3f3f2748..00000000000 --- a/_downloads/d66a5ecc1a6c89e19a968d0ff1a90ffe/fill_betweenx_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d66a5ecc1a6c89e19a968d0ff1a90ffe/fill_betweenx_demo.ipynb \ No newline at end of file diff --git a/_downloads/d66c3af865863890580b2d3a7257664d/quad_bezier.ipynb b/_downloads/d66c3af865863890580b2d3a7257664d/quad_bezier.ipynb deleted file mode 120000 index 82e0a023e91..00000000000 --- a/_downloads/d66c3af865863890580b2d3a7257664d/quad_bezier.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d66c3af865863890580b2d3a7257664d/quad_bezier.ipynb \ No newline at end of file diff --git a/_downloads/d66f5197a4204704330c232d8922d8f6/align_ylabels.py b/_downloads/d66f5197a4204704330c232d8922d8f6/align_ylabels.py deleted file mode 100644 index 09711eef28a..00000000000 --- a/_downloads/d66f5197a4204704330c232d8922d8f6/align_ylabels.py +++ /dev/null @@ -1,90 +0,0 @@ -""" -============== -Align y-labels -============== - -Two methods are shown here, one using a short call to `.Figure.align_ylabels` -and the second a manual way to align the labels. - -""" -import numpy as np -import matplotlib.pyplot as plt - - -def make_plot(axs): - box = dict(facecolor='yellow', pad=5, alpha=0.2) - - # Fixing random state for reproducibility - np.random.seed(19680801) - ax1 = axs[0, 0] - ax1.plot(2000*np.random.rand(10)) - ax1.set_title('ylabels not aligned') - ax1.set_ylabel('misaligned 1', bbox=box) - ax1.set_ylim(0, 2000) - - ax3 = axs[1, 0] - ax3.set_ylabel('misaligned 2', bbox=box) - ax3.plot(np.random.rand(10)) - - ax2 = axs[0, 1] - ax2.set_title('ylabels aligned') - ax2.plot(2000*np.random.rand(10)) - ax2.set_ylabel('aligned 1', bbox=box) - ax2.set_ylim(0, 2000) - - ax4 = axs[1, 1] - ax4.plot(np.random.rand(10)) - ax4.set_ylabel('aligned 2', bbox=box) - - -# Plot 1: -fig, axs = plt.subplots(2, 2) -fig.subplots_adjust(left=0.2, wspace=0.6) -make_plot(axs) - -# just align the last column of axes: -fig.align_ylabels(axs[:, 1]) -plt.show() - -############################################################################# -# -# .. seealso:: -# `.Figure.align_ylabels` and `.Figure.align_labels` for a direct method -# of doing the same thing. -# Also :doc:`/gallery/subplots_axes_and_figures/align_labels_demo` -# -# -# Or we can manually align the axis labels between subplots manually using the -# `set_label_coords` method of the y-axis object. Note this requires we know -# a good offset value which is hardcoded. - -fig, axs = plt.subplots(2, 2) -fig.subplots_adjust(left=0.2, wspace=0.6) - -make_plot(axs) - -labelx = -0.3 # axes coords - -for j in range(2): - axs[j, 1].yaxis.set_label_coords(labelx, 0.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.figure.Figure.align_ylabels -matplotlib.axis.Axis.set_label_coords -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.set_ylim diff --git a/_downloads/d670af534759ef079d3f9bb64495aee2/surface3d_radial.ipynb b/_downloads/d670af534759ef079d3f9bb64495aee2/surface3d_radial.ipynb deleted file mode 100644 index 37864d5da90..00000000000 --- a/_downloads/d670af534759ef079d3f9bb64495aee2/surface3d_radial.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D surface with polar coordinates\n\n\nDemonstrates plotting a surface defined in polar coordinates.\nUses the reversed version of the YlGnBu color map.\nAlso demonstrates writing axis labels with latex math mode.\n\nExample contributed by Armin Moser.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# Create the mesh in polar coordinates and compute corresponding Z.\nr = np.linspace(0, 1.25, 50)\np = np.linspace(0, 2*np.pi, 50)\nR, P = np.meshgrid(r, p)\nZ = ((R**2 - 1)**2)\n\n# Express the mesh in the cartesian system.\nX, Y = R*np.cos(P), R*np.sin(P)\n\n# Plot the surface.\nax.plot_surface(X, Y, Z, cmap=plt.cm.YlGnBu_r)\n\n# Tweak the limits and add latex math labels.\nax.set_zlim(0, 1)\nax.set_xlabel(r'$\\phi_\\mathrm{real}$')\nax.set_ylabel(r'$\\phi_\\mathrm{im}$')\nax.set_zlabel(r'$V(\\phi)$')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d67315e64b33023c65c5942383193569/arrow_demo.py b/_downloads/d67315e64b33023c65c5942383193569/arrow_demo.py deleted file mode 120000 index 1f571f63fb5..00000000000 --- a/_downloads/d67315e64b33023c65c5942383193569/arrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d67315e64b33023c65c5942383193569/arrow_demo.py \ No newline at end of file diff --git a/_downloads/d67589b4e1532c03a90c6dd61ed6b6b6/annotate_simple01.ipynb b/_downloads/d67589b4e1532c03a90c6dd61ed6b6b6/annotate_simple01.ipynb deleted file mode 120000 index 24db0a9c48a..00000000000 --- a/_downloads/d67589b4e1532c03a90c6dd61ed6b6b6/annotate_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d67589b4e1532c03a90c6dd61ed6b6b6/annotate_simple01.ipynb \ No newline at end of file diff --git a/_downloads/d678b58ce777643e611577a5aafc6f8d/patheffects_guide.ipynb b/_downloads/d678b58ce777643e611577a5aafc6f8d/patheffects_guide.ipynb deleted file mode 100644 index 3776fccf493..00000000000 --- a/_downloads/d678b58ce777643e611577a5aafc6f8d/patheffects_guide.ipynb +++ /dev/null @@ -1,115 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Path effects guide\n\n\nDefining paths that objects follow on a canvas.\n\n.. py:module:: matplotlib.patheffects\n\n\nMatplotlib's :mod:`~matplotlib.patheffects` module provides functionality to\napply a multiple draw stage to any Artist which can be rendered via a\n:class:`~matplotlib.path.Path`.\n\nArtists which can have a path effect applied to them include :class:`~matplotlib.patches.Patch`,\n:class:`~matplotlib.lines.Line2D`, :class:`~matplotlib.collections.Collection` and even\n:class:`~matplotlib.text.Text`. Each artist's path effects can be controlled via the\n``set_path_effects`` method (:class:`~matplotlib.artist.Artist.set_path_effects`), which takes\nan iterable of :class:`AbstractPathEffect` instances.\n\nThe simplest path effect is the :class:`Normal` effect, which simply\ndraws the artist without any effect:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patheffects as path_effects\n\nfig = plt.figure(figsize=(5, 1.5))\ntext = fig.text(0.5, 0.5, 'Hello path effects world!\\nThis is the normal '\n 'path effect.\\nPretty dull, huh?',\n ha='center', va='center', size=20)\ntext.set_path_effects([path_effects.Normal()])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Whilst the plot doesn't look any different to what you would expect without any path\neffects, the drawing of the text now been changed to use the path effects\nframework, opening up the possibilities for more interesting examples.\n\nAdding a shadow\n---------------\n\nA far more interesting path effect than :class:`Normal` is the\ndrop-shadow, which we can apply to any of our path based artists. The classes\n:class:`SimplePatchShadow` and\n:class:`SimpleLineShadow` do precisely this by drawing either a filled\npatch or a line patch below the original artist:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patheffects as path_effects\n\ntext = plt.text(0.5, 0.5, 'Hello path effects world!',\n path_effects=[path_effects.withSimplePatchShadow()])\n\nplt.plot([0, 3, 2, 5], linewidth=5, color='blue',\n path_effects=[path_effects.SimpleLineShadow(),\n path_effects.Normal()])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice the two approaches to setting the path effects in this example. The\nfirst uses the ``with*`` classes to include the desired functionality automatically\nfollowed with the \"normal\" effect, whereas the latter explicitly defines the two path\neffects to draw.\n\nMaking an artist stand out\n--------------------------\n\nOne nice way of making artists visually stand out is to draw an outline in a bold\ncolor below the actual artist. The :class:`Stroke` path effect\nmakes this a relatively simple task:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(7, 1))\ntext = fig.text(0.5, 0.5, 'This text stands out because of\\n'\n 'its black border.', color='white',\n ha='center', va='center', size=30)\ntext.set_path_effects([path_effects.Stroke(linewidth=3, foreground='black'),\n path_effects.Normal()])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It is important to note that this effect only works because we have drawn the text\npath twice; once with a thick black line, and then once with the original text\npath on top.\n\nYou may have noticed that the keywords to :class:`Stroke` and\n:class:`SimplePatchShadow` and :class:`SimpleLineShadow` are not the usual Artist\nkeywords (such as ``facecolor`` and ``edgecolor`` etc.). This is because with these\npath effects we are operating at lower level of matplotlib. In fact, the keywords\nwhich are accepted are those for a :class:`matplotlib.backend_bases.GraphicsContextBase`\ninstance, which have been designed for making it easy to create new backends - and not\nfor its user interface.\n\n\nGreater control of the path effect artist\n-----------------------------------------\n\nAs already mentioned, some of the path effects operate at a lower level than most users\nwill be used to, meaning that setting keywords such as ``facecolor`` and ``edgecolor``\nraise an AttributeError. Luckily there is a generic :class:`PathPatchEffect` path effect\nwhich creates a :class:`~matplotlib.patches.PathPatch` class with the original path.\nThe keywords to this effect are identical to those of :class:`~matplotlib.patches.PathPatch`:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(8, 1))\nt = fig.text(0.02, 0.5, 'Hatch shadow', fontsize=75, weight=1000, va='center')\nt.set_path_effects([path_effects.PathPatchEffect(offset=(4, -4), hatch='xxxx',\n facecolor='gray'),\n path_effects.PathPatchEffect(edgecolor='white', linewidth=1.1,\n facecolor='black')])\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "..\n Headings for future consideration:\n\n Implementing a custom path effect\n ---------------------------------\n\n What is going on under the hood\n --------------------------------\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d67d0f82223f1f8aa32466dbe7030cf9/fancybox_demo.ipynb b/_downloads/d67d0f82223f1f8aa32466dbe7030cf9/fancybox_demo.ipynb deleted file mode 120000 index c136f71f01b..00000000000 --- a/_downloads/d67d0f82223f1f8aa32466dbe7030cf9/fancybox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d67d0f82223f1f8aa32466dbe7030cf9/fancybox_demo.ipynb \ No newline at end of file diff --git a/_downloads/d67dd29dde05405d682aee9be2c0eec2/contour3d.ipynb b/_downloads/d67dd29dde05405d682aee9be2c0eec2/contour3d.ipynb deleted file mode 120000 index 0b1f9ec77f1..00000000000 --- a/_downloads/d67dd29dde05405d682aee9be2c0eec2/contour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d67dd29dde05405d682aee9be2c0eec2/contour3d.ipynb \ No newline at end of file diff --git a/_downloads/d681ffd2506ef693b5e99ca6ff82e796/pgf_preamble_sgskip.py b/_downloads/d681ffd2506ef693b5e99ca6ff82e796/pgf_preamble_sgskip.py deleted file mode 120000 index 60acf7b6ba2..00000000000 --- a/_downloads/d681ffd2506ef693b5e99ca6ff82e796/pgf_preamble_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d681ffd2506ef693b5e99ca6ff82e796/pgf_preamble_sgskip.py \ No newline at end of file diff --git a/_downloads/d68b1781d5281ec7c27fbb79a32121ce/ginput_manual_clabel_sgskip.ipynb b/_downloads/d68b1781d5281ec7c27fbb79a32121ce/ginput_manual_clabel_sgskip.ipynb deleted file mode 120000 index 22e02b52f37..00000000000 --- a/_downloads/d68b1781d5281ec7c27fbb79a32121ce/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d68b1781d5281ec7c27fbb79a32121ce/ginput_manual_clabel_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/d69a102e9d325281d46bd0d21663b6f6/simple_anim.ipynb b/_downloads/d69a102e9d325281d46bd0d21663b6f6/simple_anim.ipynb deleted file mode 120000 index cbfa6ebf9f0..00000000000 --- a/_downloads/d69a102e9d325281d46bd0d21663b6f6/simple_anim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d69a102e9d325281d46bd0d21663b6f6/simple_anim.ipynb \ No newline at end of file diff --git a/_downloads/d6a0c90f1ec23bfb38fb27ccb61e8eb2/date_index_formatter.ipynb b/_downloads/d6a0c90f1ec23bfb38fb27ccb61e8eb2/date_index_formatter.ipynb deleted file mode 120000 index 52374b4551d..00000000000 --- a/_downloads/d6a0c90f1ec23bfb38fb27ccb61e8eb2/date_index_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d6a0c90f1ec23bfb38fb27ccb61e8eb2/date_index_formatter.ipynb \ No newline at end of file diff --git a/_downloads/d6a18ad3cb8dff52f746b112fcc9c441/legend_demo.py b/_downloads/d6a18ad3cb8dff52f746b112fcc9c441/legend_demo.py deleted file mode 120000 index 654e25488b7..00000000000 --- a/_downloads/d6a18ad3cb8dff52f746b112fcc9c441/legend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d6a18ad3cb8dff52f746b112fcc9c441/legend_demo.py \ No newline at end of file diff --git a/_downloads/d6a9628c9ca61f9883b477f0fc379f5b/image_masked.py b/_downloads/d6a9628c9ca61f9883b477f0fc379f5b/image_masked.py deleted file mode 120000 index 1d3cc6469b9..00000000000 --- a/_downloads/d6a9628c9ca61f9883b477f0fc379f5b/image_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d6a9628c9ca61f9883b477f0fc379f5b/image_masked.py \ No newline at end of file diff --git a/_downloads/d6bd5196fe27d3e3f2826817612d1cd0/stix_fonts_demo.py b/_downloads/d6bd5196fe27d3e3f2826817612d1cd0/stix_fonts_demo.py deleted file mode 100644 index c9f263e8c27..00000000000 --- a/_downloads/d6bd5196fe27d3e3f2826817612d1cd0/stix_fonts_demo.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -=============== -STIX Fonts Demo -=============== - -Demonstration of `STIX Fonts `_ used in LaTeX -rendering. -""" - -import matplotlib.pyplot as plt - - -circle123 = "\N{CIRCLED DIGIT ONE}\N{CIRCLED DIGIT TWO}\N{CIRCLED DIGIT THREE}" - -tests = [ - r'$%s\;\mathrm{%s}\;\mathbf{%s}$' % ((circle123,) * 3), - r'$\mathsf{Sans \Omega}\;\mathrm{\mathsf{Sans \Omega}}\;' - r'\mathbf{\mathsf{Sans \Omega}}$', - r'$\mathtt{Monospace}$', - r'$\mathcal{CALLIGRAPHIC}$', - r'$\mathbb{Blackboard\;\pi}$', - r'$\mathrm{\mathbb{Blackboard\;\pi}}$', - r'$\mathbf{\mathbb{Blackboard\;\pi}}$', - r'$\mathfrak{Fraktur}\;\mathbf{\mathfrak{Fraktur}}$', - r'$\mathscr{Script}$', -] - -fig = plt.figure(figsize=(8, len(tests) + 2)) -for i, s in enumerate(tests[::-1]): - fig.text(0, (i + .5) / len(tests), s, fontsize=32) - -plt.show() diff --git a/_downloads/d6c0efc78e18634eb6928426922c6adf/anchored_box01.py b/_downloads/d6c0efc78e18634eb6928426922c6adf/anchored_box01.py deleted file mode 120000 index d25d9023e93..00000000000 --- a/_downloads/d6c0efc78e18634eb6928426922c6adf/anchored_box01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d6c0efc78e18634eb6928426922c6adf/anchored_box01.py \ No newline at end of file diff --git a/_downloads/d6caabae471ccfbb4b558c6cc85bd9c8/accented_text.py b/_downloads/d6caabae471ccfbb4b558c6cc85bd9c8/accented_text.py deleted file mode 120000 index 29d304bb6d2..00000000000 --- a/_downloads/d6caabae471ccfbb4b558c6cc85bd9c8/accented_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d6caabae471ccfbb4b558c6cc85bd9c8/accented_text.py \ No newline at end of file diff --git a/_downloads/d6cb1f94e9fb50cac88bdbc0beb53930/annotate_simple_coord01.py b/_downloads/d6cb1f94e9fb50cac88bdbc0beb53930/annotate_simple_coord01.py deleted file mode 120000 index 918f0b9a8f3..00000000000 --- a/_downloads/d6cb1f94e9fb50cac88bdbc0beb53930/annotate_simple_coord01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d6cb1f94e9fb50cac88bdbc0beb53930/annotate_simple_coord01.py \ No newline at end of file diff --git a/_downloads/d6d3266547e3f81ad43308858b37c8d7/offset.py b/_downloads/d6d3266547e3f81ad43308858b37c8d7/offset.py deleted file mode 120000 index 66a09e2bbc9..00000000000 --- a/_downloads/d6d3266547e3f81ad43308858b37c8d7/offset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d6d3266547e3f81ad43308858b37c8d7/offset.py \ No newline at end of file diff --git a/_downloads/d6d3ebf83c184e3dda128f568e1959f5/ellipse_demo.ipynb b/_downloads/d6d3ebf83c184e3dda128f568e1959f5/ellipse_demo.ipynb deleted file mode 120000 index 3d6c822384e..00000000000 --- a/_downloads/d6d3ebf83c184e3dda128f568e1959f5/ellipse_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d6d3ebf83c184e3dda128f568e1959f5/ellipse_demo.ipynb \ No newline at end of file diff --git a/_downloads/d6deb013d1bf5783955a3285221837c6/autowrap.py b/_downloads/d6deb013d1bf5783955a3285221837c6/autowrap.py deleted file mode 120000 index 6065bcbbac4..00000000000 --- a/_downloads/d6deb013d1bf5783955a3285221837c6/autowrap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d6deb013d1bf5783955a3285221837c6/autowrap.py \ No newline at end of file diff --git a/_downloads/d6e03ebf901bb2ba0ed88a74301fb3cd/tricontour_smooth_user.ipynb b/_downloads/d6e03ebf901bb2ba0ed88a74301fb3cd/tricontour_smooth_user.ipynb deleted file mode 120000 index 745477d35b1..00000000000 --- a/_downloads/d6e03ebf901bb2ba0ed88a74301fb3cd/tricontour_smooth_user.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d6e03ebf901bb2ba0ed88a74301fb3cd/tricontour_smooth_user.ipynb \ No newline at end of file diff --git a/_downloads/d6e90f0b6a85f88b026f623d5e737c4d/simple_axis_direction03.ipynb b/_downloads/d6e90f0b6a85f88b026f623d5e737c4d/simple_axis_direction03.ipynb deleted file mode 120000 index 37d4132f5fd..00000000000 --- a/_downloads/d6e90f0b6a85f88b026f623d5e737c4d/simple_axis_direction03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d6e90f0b6a85f88b026f623d5e737c4d/simple_axis_direction03.ipynb \ No newline at end of file diff --git a/_downloads/d6efdd9783fa28c82b618a111a2c4922/polar_legend.py b/_downloads/d6efdd9783fa28c82b618a111a2c4922/polar_legend.py deleted file mode 120000 index 43496c34131..00000000000 --- a/_downloads/d6efdd9783fa28c82b618a111a2c4922/polar_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d6efdd9783fa28c82b618a111a2c4922/polar_legend.py \ No newline at end of file diff --git a/_downloads/d6f37f0e5c6d62bb1531d4a0c61c05c4/color_cycle_default.py b/_downloads/d6f37f0e5c6d62bb1531d4a0c61c05c4/color_cycle_default.py deleted file mode 120000 index 4ac177ef970..00000000000 --- a/_downloads/d6f37f0e5c6d62bb1531d4a0c61c05c4/color_cycle_default.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d6f37f0e5c6d62bb1531d4a0c61c05c4/color_cycle_default.py \ No newline at end of file diff --git a/_downloads/d6f5f08ce0847101ad5713f03c1196aa/marker_path.ipynb b/_downloads/d6f5f08ce0847101ad5713f03c1196aa/marker_path.ipynb deleted file mode 120000 index dbaf0e158ba..00000000000 --- a/_downloads/d6f5f08ce0847101ad5713f03c1196aa/marker_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d6f5f08ce0847101ad5713f03c1196aa/marker_path.ipynb \ No newline at end of file diff --git a/_downloads/d6f874e0843a8430e9009ec76788bb17/usetex_demo.py b/_downloads/d6f874e0843a8430e9009ec76788bb17/usetex_demo.py deleted file mode 120000 index f0659c8b59f..00000000000 --- a/_downloads/d6f874e0843a8430e9009ec76788bb17/usetex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d6f874e0843a8430e9009ec76788bb17/usetex_demo.py \ No newline at end of file diff --git a/_downloads/d7016fb08fd2874af98ebb6a3172183c/fill_between_demo.ipynb b/_downloads/d7016fb08fd2874af98ebb6a3172183c/fill_between_demo.ipynb deleted file mode 120000 index 6d8cecb69a9..00000000000 --- a/_downloads/d7016fb08fd2874af98ebb6a3172183c/fill_between_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d7016fb08fd2874af98ebb6a3172183c/fill_between_demo.ipynb \ No newline at end of file diff --git a/_downloads/d702dcd8898c8e8b0bae593fe1347a72/filled_step.py b/_downloads/d702dcd8898c8e8b0bae593fe1347a72/filled_step.py deleted file mode 120000 index 29936e9d144..00000000000 --- a/_downloads/d702dcd8898c8e8b0bae593fe1347a72/filled_step.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d702dcd8898c8e8b0bae593fe1347a72/filled_step.py \ No newline at end of file diff --git a/_downloads/d707753257d1aa44add82dae9f2d6de8/fill.ipynb b/_downloads/d707753257d1aa44add82dae9f2d6de8/fill.ipynb deleted file mode 120000 index 69bf9a630be..00000000000 --- a/_downloads/d707753257d1aa44add82dae9f2d6de8/fill.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d707753257d1aa44add82dae9f2d6de8/fill.ipynb \ No newline at end of file diff --git a/_downloads/d70987821156f583f48878f3f514002f/csd_demo.ipynb b/_downloads/d70987821156f583f48878f3f514002f/csd_demo.ipynb deleted file mode 100644 index 3f665c42e05..00000000000 --- a/_downloads/d70987821156f583f48878f3f514002f/csd_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# CSD Demo\n\n\nCompute the cross spectral density of two signals\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n\nfig, (ax1, ax2) = plt.subplots(2, 1)\n# make a little extra space between the subplots\nfig.subplots_adjust(hspace=0.5)\n\ndt = 0.01\nt = np.arange(0, 30, dt)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nnse1 = np.random.randn(len(t)) # white noise 1\nnse2 = np.random.randn(len(t)) # white noise 2\nr = np.exp(-t / 0.05)\n\ncnse1 = np.convolve(nse1, r, mode='same') * dt # colored noise 1\ncnse2 = np.convolve(nse2, r, mode='same') * dt # colored noise 2\n\n# two signals with a coherent part and a random part\ns1 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse1\ns2 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse2\n\nax1.plot(t, s1, t, s2)\nax1.set_xlim(0, 5)\nax1.set_xlabel('time')\nax1.set_ylabel('s1 and s2')\nax1.grid(True)\n\ncxy, f = ax2.csd(s1, s2, 256, 1. / dt)\nax2.set_ylabel('CSD (db)')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d714dbc15c11f0219a5844952c20b3bf/gtk3_spreadsheet_sgskip.py b/_downloads/d714dbc15c11f0219a5844952c20b3bf/gtk3_spreadsheet_sgskip.py deleted file mode 120000 index b92a7dbd09c..00000000000 --- a/_downloads/d714dbc15c11f0219a5844952c20b3bf/gtk3_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d714dbc15c11f0219a5844952c20b3bf/gtk3_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/d71e680910c3ec24440b240019561a28/anscombe.py b/_downloads/d71e680910c3ec24440b240019561a28/anscombe.py deleted file mode 120000 index 173f91aae9c..00000000000 --- a/_downloads/d71e680910c3ec24440b240019561a28/anscombe.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d71e680910c3ec24440b240019561a28/anscombe.py \ No newline at end of file diff --git a/_downloads/d72986c152f0616ea36c9abbf45d66d4/demo_fixed_size_axes.py b/_downloads/d72986c152f0616ea36c9abbf45d66d4/demo_fixed_size_axes.py deleted file mode 100644 index bd989aa8646..00000000000 --- a/_downloads/d72986c152f0616ea36c9abbf45d66d4/demo_fixed_size_axes.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -==================== -Demo Fixed Size Axes -==================== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1 import Divider, Size -from mpl_toolkits.axes_grid1.mpl_axes import Axes - - -def demo_fixed_size_axes(): - fig = plt.figure(figsize=(6, 6)) - - # The first items are for padding and the second items are for the axes. - # sizes are in inch. - h = [Size.Fixed(1.0), Size.Fixed(4.5)] - v = [Size.Fixed(0.7), Size.Fixed(5.)] - - divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False) - # the width and height of the rectangle is ignored. - - ax = Axes(fig, divider.get_position()) - ax.set_axes_locator(divider.new_locator(nx=1, ny=1)) - - fig.add_axes(ax) - - ax.plot([1, 2, 3]) - - -def demo_fixed_pad_axes(): - fig = plt.figure(figsize=(6, 6)) - - # The first & third items are for padding and the second items are for the - # axes. Sizes are in inches. - h = [Size.Fixed(1.0), Size.Scaled(1.), Size.Fixed(.2)] - v = [Size.Fixed(0.7), Size.Scaled(1.), Size.Fixed(.5)] - - divider = Divider(fig, (0.0, 0.0, 1., 1.), h, v, aspect=False) - # the width and height of the rectangle is ignored. - - ax = Axes(fig, divider.get_position()) - ax.set_axes_locator(divider.new_locator(nx=1, ny=1)) - - fig.add_axes(ax) - - ax.plot([1, 2, 3]) - - -if __name__ == "__main__": - demo_fixed_size_axes() - demo_fixed_pad_axes() - - plt.show() diff --git a/_downloads/d72e439b4895e85fe74421e16edba5d5/embedding_in_tk_sgskip.ipynb b/_downloads/d72e439b4895e85fe74421e16edba5d5/embedding_in_tk_sgskip.ipynb deleted file mode 100644 index 5826b8440e5..00000000000 --- a/_downloads/d72e439b4895e85fe74421e16edba5d5/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in Tk\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import tkinter\n\nfrom matplotlib.backends.backend_tkagg import (\n FigureCanvasTkAgg, NavigationToolbar2Tk)\n# Implement the default Matplotlib key bindings.\nfrom matplotlib.backend_bases import key_press_handler\nfrom matplotlib.figure import Figure\n\nimport numpy as np\n\n\nroot = tkinter.Tk()\nroot.wm_title(\"Embedding in Tk\")\n\nfig = Figure(figsize=(5, 4), dpi=100)\nt = np.arange(0, 3, .01)\nfig.add_subplot(111).plot(t, 2 * np.sin(2 * np.pi * t))\n\ncanvas = FigureCanvasTkAgg(fig, master=root) # A tk.DrawingArea.\ncanvas.draw()\ncanvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1)\n\ntoolbar = NavigationToolbar2Tk(canvas, root)\ntoolbar.update()\ncanvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1)\n\n\ndef on_key_press(event):\n print(\"you pressed {}\".format(event.key))\n key_press_handler(event, canvas, toolbar)\n\n\ncanvas.mpl_connect(\"key_press_event\", on_key_press)\n\n\ndef _quit():\n root.quit() # stops mainloop\n root.destroy() # this is necessary on Windows to prevent\n # Fatal Python Error: PyEval_RestoreThread: NULL tstate\n\n\nbutton = tkinter.Button(master=root, text=\"Quit\", command=_quit)\nbutton.pack(side=tkinter.BOTTOM)\n\ntkinter.mainloop()\n# If you put root.destroy() here, it will cause an error if the window is\n# closed with the window manager." - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d7301f23691b0ac024b255af8133ec27/dolphin.py b/_downloads/d7301f23691b0ac024b255af8133ec27/dolphin.py deleted file mode 100644 index 90d48469f42..00000000000 --- a/_downloads/d7301f23691b0ac024b255af8133ec27/dolphin.py +++ /dev/null @@ -1,124 +0,0 @@ -""" -======== -Dolphins -======== - -This example shows how to draw, and manipulate shapes given vertices -and nodes using the `~.path.Path`, `~.patches.PathPatch` and -`~matplotlib.transforms` classes. -""" - -import matplotlib.cm as cm -import matplotlib.pyplot as plt -from matplotlib.patches import Circle, PathPatch -from matplotlib.path import Path -from matplotlib.transforms import Affine2D -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -r = np.random.rand(50) -t = np.random.rand(50) * np.pi * 2.0 -x = r * np.cos(t) -y = r * np.sin(t) - -fig, ax = plt.subplots(figsize=(6, 6)) -circle = Circle((0, 0), 1, facecolor='none', - edgecolor=(0, 0.8, 0.8), linewidth=3, alpha=0.5) -ax.add_patch(circle) - -im = plt.imshow(np.random.random((100, 100)), - origin='lower', cmap=cm.winter, - interpolation='spline36', - extent=([-1, 1, -1, 1])) -im.set_clip_path(circle) - -plt.plot(x, y, 'o', color=(0.9, 0.9, 1.0), alpha=0.8) - -# Dolphin from OpenClipart library by Andy Fitzsimon -# -# -# -# -# - -dolphin = """ -M -0.59739425,160.18173 C -0.62740401,160.18885 -0.57867129,160.11183 --0.57867129,160.11183 C -0.57867129,160.11183 -0.5438361,159.89315 --0.39514638,159.81496 C -0.24645668,159.73678 -0.18316813,159.71981 --0.18316813,159.71981 C -0.18316813,159.71981 -0.10322971,159.58124 --0.057804323,159.58725 C -0.029723983,159.58913 -0.061841603,159.60356 --0.071265813,159.62815 C -0.080250183,159.65325 -0.082918513,159.70554 --0.061841203,159.71248 C -0.040763903,159.7194 -0.0066711426,159.71091 -0.077336307,159.73612 C 0.16879567,159.76377 0.28380306,159.86448 -0.31516668,159.91533 C 0.3465303,159.96618 0.5011127,160.1771 -0.5011127,160.1771 C 0.63668998,160.19238 0.67763022,160.31259 -0.66556395,160.32668 C 0.65339985,160.34212 0.66350443,160.33642 -0.64907098,160.33088 C 0.63463742,160.32533 0.61309688,160.297 -0.5789627,160.29339 C 0.54348657,160.28968 0.52329693,160.27674 -0.50728856,160.27737 C 0.49060916,160.27795 0.48965803,160.31565 -0.46114204,160.33673 C 0.43329696,160.35786 0.4570711,160.39871 -0.43309565,160.40685 C 0.4105108,160.41442 0.39416631,160.33027 -0.3954995,160.2935 C 0.39683269,160.25672 0.43807996,160.21522 -0.44567915,160.19734 C 0.45327833,160.17946 0.27946869,159.9424 --0.061852613,159.99845 C -0.083965233,160.0427 -0.26176109,160.06683 --0.26176109,160.06683 C -0.30127962,160.07028 -0.21167141,160.09731 --0.24649368,160.1011 C -0.32642366,160.11569 -0.34521187,160.06895 --0.40622293,160.0819 C -0.467234,160.09485 -0.56738444,160.17461 --0.59739425,160.18173 -""" - -vertices = [] -codes = [] -parts = dolphin.split() -i = 0 -code_map = { - 'M': (Path.MOVETO, 1), - 'C': (Path.CURVE4, 3), - 'L': (Path.LINETO, 1)} - -while i < len(parts): - code = parts[i] - path_code, npoints = code_map[code] - codes.extend([path_code] * npoints) - vertices.extend([[float(x) for x in y.split(',')] for y in - parts[i + 1:i + npoints + 1]]) - i += npoints + 1 -vertices = np.array(vertices, float) -vertices[:, 1] -= 160 - -dolphin_path = Path(vertices, codes) -dolphin_patch = PathPatch(dolphin_path, facecolor=(0.6, 0.6, 0.6), - edgecolor=(0.0, 0.0, 0.0)) -ax.add_patch(dolphin_patch) - -vertices = Affine2D().rotate_deg(60).transform(vertices) -dolphin_path2 = Path(vertices, codes) -dolphin_patch2 = PathPatch(dolphin_path2, facecolor=(0.5, 0.5, 0.5), - edgecolor=(0.0, 0.0, 0.0)) -ax.add_patch(dolphin_patch2) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.path -matplotlib.path.Path -matplotlib.patches -matplotlib.patches.PathPatch -matplotlib.patches.Circle -matplotlib.axes.Axes.add_patch -matplotlib.transforms -matplotlib.transforms.Affine2D -matplotlib.transforms.Affine2D.rotate_deg diff --git a/_downloads/d735e1b4a27c8f4ef7ffc8382353f91e/simple_axis_direction01.py b/_downloads/d735e1b4a27c8f4ef7ffc8382353f91e/simple_axis_direction01.py deleted file mode 120000 index 293f1f7c13d..00000000000 --- a/_downloads/d735e1b4a27c8f4ef7ffc8382353f91e/simple_axis_direction01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d735e1b4a27c8f4ef7ffc8382353f91e/simple_axis_direction01.py \ No newline at end of file diff --git a/_downloads/d738f6ea2f70a9ae723aff0c9ce6fb1d/colorbar_basics.ipynb b/_downloads/d738f6ea2f70a9ae723aff0c9ce6fb1d/colorbar_basics.ipynb deleted file mode 120000 index 50e319db8ea..00000000000 --- a/_downloads/d738f6ea2f70a9ae723aff0c9ce6fb1d/colorbar_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d738f6ea2f70a9ae723aff0c9ce6fb1d/colorbar_basics.ipynb \ No newline at end of file diff --git a/_downloads/d73abbeb0f6bef10d9125aca9b8ae375/simple_anim.ipynb b/_downloads/d73abbeb0f6bef10d9125aca9b8ae375/simple_anim.ipynb deleted file mode 120000 index b7e42b81f86..00000000000 --- a/_downloads/d73abbeb0f6bef10d9125aca9b8ae375/simple_anim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d73abbeb0f6bef10d9125aca9b8ae375/simple_anim.ipynb \ No newline at end of file diff --git a/_downloads/d74772e7ff098ac0e7157337a9aa10e8/custom_boxstyle01.ipynb b/_downloads/d74772e7ff098ac0e7157337a9aa10e8/custom_boxstyle01.ipynb deleted file mode 120000 index 1c58f08f237..00000000000 --- a/_downloads/d74772e7ff098ac0e7157337a9aa10e8/custom_boxstyle01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d74772e7ff098ac0e7157337a9aa10e8/custom_boxstyle01.ipynb \ No newline at end of file diff --git a/_downloads/d7490544e6fc6953132e1789953736c2/double_pendulum_sgskip.ipynb b/_downloads/d7490544e6fc6953132e1789953736c2/double_pendulum_sgskip.ipynb deleted file mode 120000 index 6b1b3a97dbb..00000000000 --- a/_downloads/d7490544e6fc6953132e1789953736c2/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/d7490544e6fc6953132e1789953736c2/double_pendulum_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/d75376b903f0ac5fe713f8d002383deb/tick-locators.ipynb b/_downloads/d75376b903f0ac5fe713f8d002383deb/tick-locators.ipynb deleted file mode 100644 index cbe50c16a78..00000000000 --- a/_downloads/d75376b903f0ac5fe713f8d002383deb/tick-locators.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tick locators\n\n\nShow the different tick locators.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\n\n\n# Setup a plot such that only the bottom spine is shown\ndef setup(ax):\n ax.spines['right'].set_color('none')\n ax.spines['left'].set_color('none')\n ax.yaxis.set_major_locator(ticker.NullLocator())\n ax.spines['top'].set_color('none')\n ax.xaxis.set_ticks_position('bottom')\n ax.tick_params(which='major', width=1.00)\n ax.tick_params(which='major', length=5)\n ax.tick_params(which='minor', width=0.75)\n ax.tick_params(which='minor', length=2.5)\n ax.set_xlim(0, 5)\n ax.set_ylim(0, 1)\n ax.patch.set_alpha(0.0)\n\n\nplt.figure(figsize=(8, 6))\nn = 8\n\n# Null Locator\nax = plt.subplot(n, 1, 1)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.NullLocator())\nax.xaxis.set_minor_locator(ticker.NullLocator())\nax.text(0.0, 0.1, \"NullLocator()\", fontsize=14, transform=ax.transAxes)\n\n# Multiple Locator\nax = plt.subplot(n, 1, 2)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(0.5))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.1))\nax.text(0.0, 0.1, \"MultipleLocator(0.5)\", fontsize=14,\n transform=ax.transAxes)\n\n# Fixed Locator\nax = plt.subplot(n, 1, 3)\nsetup(ax)\nmajors = [0, 1, 5]\nax.xaxis.set_major_locator(ticker.FixedLocator(majors))\nminors = np.linspace(0, 1, 11)[1:-1]\nax.xaxis.set_minor_locator(ticker.FixedLocator(minors))\nax.text(0.0, 0.1, \"FixedLocator([0, 1, 5])\", fontsize=14,\n transform=ax.transAxes)\n\n# Linear Locator\nax = plt.subplot(n, 1, 4)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.LinearLocator(3))\nax.xaxis.set_minor_locator(ticker.LinearLocator(31))\nax.text(0.0, 0.1, \"LinearLocator(numticks=3)\",\n fontsize=14, transform=ax.transAxes)\n\n# Index Locator\nax = plt.subplot(n, 1, 5)\nsetup(ax)\nax.plot(range(0, 5), [0]*5, color='white')\nax.xaxis.set_major_locator(ticker.IndexLocator(base=.5, offset=.25))\nax.text(0.0, 0.1, \"IndexLocator(base=0.5, offset=0.25)\",\n fontsize=14, transform=ax.transAxes)\n\n# Auto Locator\nax = plt.subplot(n, 1, 6)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.AutoLocator())\nax.xaxis.set_minor_locator(ticker.AutoMinorLocator())\nax.text(0.0, 0.1, \"AutoLocator()\", fontsize=14, transform=ax.transAxes)\n\n# MaxN Locator\nax = plt.subplot(n, 1, 7)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MaxNLocator(4))\nax.xaxis.set_minor_locator(ticker.MaxNLocator(40))\nax.text(0.0, 0.1, \"MaxNLocator(n=4)\", fontsize=14, transform=ax.transAxes)\n\n# Log Locator\nax = plt.subplot(n, 1, 8)\nsetup(ax)\nax.set_xlim(10**3, 10**10)\nax.set_xscale('log')\nax.xaxis.set_major_locator(ticker.LogLocator(base=10.0, numticks=15))\nax.text(0.0, 0.1, \"LogLocator(base=10, numticks=15)\",\n fontsize=15, transform=ax.transAxes)\n\n# Push the top of the top axes outside the figure because we only show the\n# bottom spine.\nplt.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d7576ff295c9d98a94be698590fa63d5/fig_x.ipynb b/_downloads/d7576ff295c9d98a94be698590fa63d5/fig_x.ipynb deleted file mode 120000 index 0fe91b0f00d..00000000000 --- a/_downloads/d7576ff295c9d98a94be698590fa63d5/fig_x.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d7576ff295c9d98a94be698590fa63d5/fig_x.ipynb \ No newline at end of file diff --git a/_downloads/d75ce762c5885cf14404af187af820a1/dfrac_demo.py b/_downloads/d75ce762c5885cf14404af187af820a1/dfrac_demo.py deleted file mode 120000 index 42c8e426e0e..00000000000 --- a/_downloads/d75ce762c5885cf14404af187af820a1/dfrac_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d75ce762c5885cf14404af187af820a1/dfrac_demo.py \ No newline at end of file diff --git a/_downloads/d75e0d26fb553cd768f49385cd1b784d/boxplot_color.py b/_downloads/d75e0d26fb553cd768f49385cd1b784d/boxplot_color.py deleted file mode 120000 index c73fe033fa1..00000000000 --- a/_downloads/d75e0d26fb553cd768f49385cd1b784d/boxplot_color.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d75e0d26fb553cd768f49385cd1b784d/boxplot_color.py \ No newline at end of file diff --git a/_downloads/d762baf4cc5bc4b60a0c31442537fbba/contourf3d.py b/_downloads/d762baf4cc5bc4b60a0c31442537fbba/contourf3d.py deleted file mode 120000 index f7d7feeeed2..00000000000 --- a/_downloads/d762baf4cc5bc4b60a0c31442537fbba/contourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d762baf4cc5bc4b60a0c31442537fbba/contourf3d.py \ No newline at end of file diff --git a/_downloads/d76b51487e9a44c3d895bd5d990879ce/image_masked.ipynb b/_downloads/d76b51487e9a44c3d895bd5d990879ce/image_masked.ipynb deleted file mode 120000 index a37a44c15d0..00000000000 --- a/_downloads/d76b51487e9a44c3d895bd5d990879ce/image_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d76b51487e9a44c3d895bd5d990879ce/image_masked.ipynb \ No newline at end of file diff --git a/_downloads/d7705c2d0dd11929a709f2289f119969/demo_ticklabel_alignment.ipynb b/_downloads/d7705c2d0dd11929a709f2289f119969/demo_ticklabel_alignment.ipynb deleted file mode 100644 index c11d7e3dea9..00000000000 --- a/_downloads/d7705c2d0dd11929a709f2289f119969/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Ticklabel Alignment\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_subplot(ax)\n\n ax.set_yticks([0.2, 0.8])\n ax.set_yticklabels([\"short\", \"loooong\"])\n ax.set_xticks([0.2, 0.8])\n ax.set_xticklabels([r\"$\\frac{1}{2}\\pi$\", r\"$\\pi$\"])\n\n return ax\n\n\nfig = plt.figure(figsize=(3, 5))\nfig.subplots_adjust(left=0.5, hspace=0.7)\n\nax = setup_axes(fig, 311)\nax.set_ylabel(\"ha=right\")\nax.set_xlabel(\"va=baseline\")\n\nax = setup_axes(fig, 312)\nax.axis[\"left\"].major_ticklabels.set_ha(\"center\")\nax.axis[\"bottom\"].major_ticklabels.set_va(\"top\")\nax.set_ylabel(\"ha=center\")\nax.set_xlabel(\"va=top\")\n\nax = setup_axes(fig, 313)\nax.axis[\"left\"].major_ticklabels.set_ha(\"left\")\nax.axis[\"bottom\"].major_ticklabels.set_va(\"bottom\")\nax.set_ylabel(\"ha=left\")\nax.set_xlabel(\"va=bottom\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d771312bc6f54e883eaf4ada5e48bf88/multiple_figs_demo.py b/_downloads/d771312bc6f54e883eaf4ada5e48bf88/multiple_figs_demo.py deleted file mode 120000 index 69f20ba066a..00000000000 --- a/_downloads/d771312bc6f54e883eaf4ada5e48bf88/multiple_figs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d771312bc6f54e883eaf4ada5e48bf88/multiple_figs_demo.py \ No newline at end of file diff --git a/_downloads/d77424fc19235734ca40aa5993efd891/log_test.py b/_downloads/d77424fc19235734ca40aa5993efd891/log_test.py deleted file mode 120000 index 6b8cabd4e07..00000000000 --- a/_downloads/d77424fc19235734ca40aa5993efd891/log_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d77424fc19235734ca40aa5993efd891/log_test.py \ No newline at end of file diff --git a/_downloads/d77bb44f0187b99dde13c3ce19d07add/bxp.py b/_downloads/d77bb44f0187b99dde13c3ce19d07add/bxp.py deleted file mode 120000 index dcdd35f5e4a..00000000000 --- a/_downloads/d77bb44f0187b99dde13c3ce19d07add/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d77bb44f0187b99dde13c3ce19d07add/bxp.py \ No newline at end of file diff --git a/_downloads/d780270a690ed5126e72954f73753832/bar_demo2.ipynb b/_downloads/d780270a690ed5126e72954f73753832/bar_demo2.ipynb deleted file mode 120000 index f9f424a043a..00000000000 --- a/_downloads/d780270a690ed5126e72954f73753832/bar_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d780270a690ed5126e72954f73753832/bar_demo2.ipynb \ No newline at end of file diff --git a/_downloads/d785e6493a44979fa94bb952493e52d4/topographic_hillshading.ipynb b/_downloads/d785e6493a44979fa94bb952493e52d4/topographic_hillshading.ipynb deleted file mode 100644 index 2d4c491dffc..00000000000 --- a/_downloads/d785e6493a44979fa94bb952493e52d4/topographic_hillshading.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Topographic hillshading\n\n\nDemonstrates the visual effect of varying blend mode and vertical exaggeration\non \"hillshaded\" plots.\n\nNote that the \"overlay\" and \"soft\" blend modes work well for complex surfaces\nsuch as this example, while the default \"hsv\" blend mode works best for smooth\nsurfaces such as many mathematical functions.\n\nIn most cases, hillshading is used purely for visual purposes, and *dx*/*dy*\ncan be safely ignored. In that case, you can tweak *vert_exag* (vertical\nexaggeration) by trial and error to give the desired visual effect. However,\nthis example demonstrates how to use the *dx* and *dy* kwargs to ensure that\nthe *vert_exag* parameter is the true vertical exaggeration.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.cbook import get_sample_data\nfrom matplotlib.colors import LightSource\n\n\nwith np.load(get_sample_data('jacksboro_fault_dem.npz')) as dem:\n z = dem['elevation']\n\n #-- Optional dx and dy for accurate vertical exaggeration ----------------\n # If you need topographically accurate vertical exaggeration, or you don't\n # want to guess at what *vert_exag* should be, you'll need to specify the\n # cellsize of the grid (i.e. the *dx* and *dy* parameters). Otherwise, any\n # *vert_exag* value you specify will be relative to the grid spacing of\n # your input data (in other words, *dx* and *dy* default to 1.0, and\n # *vert_exag* is calculated relative to those parameters). Similarly, *dx*\n # and *dy* are assumed to be in the same units as your input z-values.\n # Therefore, we'll need to convert the given dx and dy from decimal degrees\n # to meters.\n dx, dy = dem['dx'], dem['dy']\n dy = 111200 * dy\n dx = 111200 * dx * np.cos(np.radians(dem['ymin']))\n #-------------------------------------------------------------------------\n\n# Shade from the northwest, with the sun 45 degrees from horizontal\nls = LightSource(azdeg=315, altdeg=45)\ncmap = plt.cm.gist_earth\n\nfig, axes = plt.subplots(nrows=4, ncols=3, figsize=(8, 9))\nplt.setp(axes.flat, xticks=[], yticks=[])\n\n# Vary vertical exaggeration and blend mode and plot all combinations\nfor col, ve in zip(axes.T, [0.1, 1, 10]):\n # Show the hillshade intensity image in the first row\n col[0].imshow(ls.hillshade(z, vert_exag=ve, dx=dx, dy=dy), cmap='gray')\n\n # Place hillshaded plots with different blend modes in the rest of the rows\n for ax, mode in zip(col[1:], ['hsv', 'overlay', 'soft']):\n rgb = ls.shade(z, cmap=cmap, blend_mode=mode,\n vert_exag=ve, dx=dx, dy=dy)\n ax.imshow(rgb)\n\n# Label rows and columns\nfor ax, ve in zip(axes[0], [0.1, 1, 10]):\n ax.set_title('{0}'.format(ve), size=18)\nfor ax, mode in zip(axes[:, 0], ['Hillshade', 'hsv', 'overlay', 'soft']):\n ax.set_ylabel(mode, size=18)\n\n# Group labels...\naxes[0, 1].annotate('Vertical Exaggeration', (0.5, 1), xytext=(0, 30),\n textcoords='offset points', xycoords='axes fraction',\n ha='center', va='bottom', size=20)\naxes[2, 0].annotate('Blend Mode', (0, 0.5), xytext=(-30, 0),\n textcoords='offset points', xycoords='axes fraction',\n ha='right', va='center', size=20, rotation=90)\nfig.subplots_adjust(bottom=0.05, right=0.95)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d78636be3f968d13e95f883908e953ad/embedding_in_wx3_sgskip.py b/_downloads/d78636be3f968d13e95f883908e953ad/embedding_in_wx3_sgskip.py deleted file mode 120000 index ab21f7ddfb4..00000000000 --- a/_downloads/d78636be3f968d13e95f883908e953ad/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d78636be3f968d13e95f883908e953ad/embedding_in_wx3_sgskip.py \ No newline at end of file diff --git a/_downloads/d790be211d1f91aaeaca84801863397e/offset.py b/_downloads/d790be211d1f91aaeaca84801863397e/offset.py deleted file mode 120000 index cfdeab2803d..00000000000 --- a/_downloads/d790be211d1f91aaeaca84801863397e/offset.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d790be211d1f91aaeaca84801863397e/offset.py \ No newline at end of file diff --git a/_downloads/d7943b121113ab7ecc633333a8ee2ec5/subplots_demo.py b/_downloads/d7943b121113ab7ecc633333a8ee2ec5/subplots_demo.py deleted file mode 120000 index 69fc120ff5f..00000000000 --- a/_downloads/d7943b121113ab7ecc633333a8ee2ec5/subplots_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d7943b121113ab7ecc633333a8ee2ec5/subplots_demo.py \ No newline at end of file diff --git a/_downloads/d79f0b2ef4fc0669703e8de6a3edc5b9/image_transparency_blend.ipynb b/_downloads/d79f0b2ef4fc0669703e8de6a3edc5b9/image_transparency_blend.ipynb deleted file mode 120000 index 36426596800..00000000000 --- a/_downloads/d79f0b2ef4fc0669703e8de6a3edc5b9/image_transparency_blend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d79f0b2ef4fc0669703e8de6a3edc5b9/image_transparency_blend.ipynb \ No newline at end of file diff --git a/_downloads/d7a8ef4c377f2e86a1af807ef825f0cd/pyplot_simple.ipynb b/_downloads/d7a8ef4c377f2e86a1af807ef825f0cd/pyplot_simple.ipynb deleted file mode 100644 index ef6a99a5445..00000000000 --- a/_downloads/d7a8ef4c377f2e86a1af807ef825f0cd/pyplot_simple.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Simple\n\n\nA most simple plot, where a list of numbers is plotted against their index.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.plot([1,2,3,4])\nplt.ylabel('some numbers')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.plot\nmatplotlib.pyplot.ylabel\nmatplotlib.pyplot.show" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d7b4d8659e79499efb4202b1439faa18/font_indexing.py b/_downloads/d7b4d8659e79499efb4202b1439faa18/font_indexing.py deleted file mode 120000 index a4f0743c582..00000000000 --- a/_downloads/d7b4d8659e79499efb4202b1439faa18/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d7b4d8659e79499efb4202b1439faa18/font_indexing.py \ No newline at end of file diff --git a/_downloads/d7ba451f09433373ef752b005ae1068f/menu.ipynb b/_downloads/d7ba451f09433373ef752b005ae1068f/menu.ipynb deleted file mode 100644 index 83b34523b17..00000000000 --- a/_downloads/d7ba451f09433373ef752b005ae1068f/menu.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Menu\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.colors as colors\nimport matplotlib.patches as patches\nimport matplotlib.mathtext as mathtext\nimport matplotlib.pyplot as plt\nimport matplotlib.artist as artist\nimport matplotlib.image as image\n\n\nclass ItemProperties(object):\n def __init__(self, fontsize=14, labelcolor='black', bgcolor='yellow',\n alpha=1.0):\n self.fontsize = fontsize\n self.labelcolor = labelcolor\n self.bgcolor = bgcolor\n self.alpha = alpha\n\n self.labelcolor_rgb = colors.to_rgba(labelcolor)[:3]\n self.bgcolor_rgb = colors.to_rgba(bgcolor)[:3]\n\n\nclass MenuItem(artist.Artist):\n parser = mathtext.MathTextParser(\"Bitmap\")\n padx = 5\n pady = 5\n\n def __init__(self, fig, labelstr, props=None, hoverprops=None,\n on_select=None):\n artist.Artist.__init__(self)\n\n self.set_figure(fig)\n self.labelstr = labelstr\n\n if props is None:\n props = ItemProperties()\n\n if hoverprops is None:\n hoverprops = ItemProperties()\n\n self.props = props\n self.hoverprops = hoverprops\n\n self.on_select = on_select\n\n x, self.depth = self.parser.to_mask(\n labelstr, fontsize=props.fontsize, dpi=fig.dpi)\n\n if props.fontsize != hoverprops.fontsize:\n raise NotImplementedError(\n 'support for different font sizes not implemented')\n\n self.labelwidth = x.shape[1]\n self.labelheight = x.shape[0]\n\n self.labelArray = np.zeros((x.shape[0], x.shape[1], 4))\n self.labelArray[:, :, -1] = x/255.\n\n self.label = image.FigureImage(fig, origin='upper')\n self.label.set_array(self.labelArray)\n\n # we'll update these later\n self.rect = patches.Rectangle((0, 0), 1, 1)\n\n self.set_hover_props(False)\n\n fig.canvas.mpl_connect('button_release_event', self.check_select)\n\n def check_select(self, event):\n over, junk = self.rect.contains(event)\n if not over:\n return\n\n if self.on_select is not None:\n self.on_select(self)\n\n def set_extent(self, x, y, w, h):\n print(x, y, w, h)\n self.rect.set_x(x)\n self.rect.set_y(y)\n self.rect.set_width(w)\n self.rect.set_height(h)\n\n self.label.ox = x + self.padx\n self.label.oy = y - self.depth + self.pady/2.\n\n self.hover = False\n\n def draw(self, renderer):\n self.rect.draw(renderer)\n self.label.draw(renderer)\n\n def set_hover_props(self, b):\n if b:\n props = self.hoverprops\n else:\n props = self.props\n\n r, g, b = props.labelcolor_rgb\n self.labelArray[:, :, 0] = r\n self.labelArray[:, :, 1] = g\n self.labelArray[:, :, 2] = b\n self.label.set_array(self.labelArray)\n self.rect.set(facecolor=props.bgcolor, alpha=props.alpha)\n\n def set_hover(self, event):\n 'check the hover status of event and return true if status is changed'\n b, junk = self.rect.contains(event)\n\n changed = (b != self.hover)\n\n if changed:\n self.set_hover_props(b)\n\n self.hover = b\n return changed\n\n\nclass Menu(object):\n def __init__(self, fig, menuitems):\n self.figure = fig\n fig.suppressComposite = True\n\n self.menuitems = menuitems\n self.numitems = len(menuitems)\n\n maxw = max(item.labelwidth for item in menuitems)\n maxh = max(item.labelheight for item in menuitems)\n\n totalh = self.numitems*maxh + (self.numitems + 1)*2*MenuItem.pady\n\n x0 = 100\n y0 = 400\n\n width = maxw + 2*MenuItem.padx\n height = maxh + MenuItem.pady\n\n for item in menuitems:\n left = x0\n bottom = y0 - maxh - MenuItem.pady\n\n item.set_extent(left, bottom, width, height)\n\n fig.artists.append(item)\n y0 -= maxh + MenuItem.pady\n\n fig.canvas.mpl_connect('motion_notify_event', self.on_move)\n\n def on_move(self, event):\n draw = False\n for item in self.menuitems:\n draw = item.set_hover(event)\n if draw:\n self.figure.canvas.draw()\n break\n\n\nfig = plt.figure()\nfig.subplots_adjust(left=0.3)\nprops = ItemProperties(labelcolor='black', bgcolor='yellow',\n fontsize=15, alpha=0.2)\nhoverprops = ItemProperties(labelcolor='white', bgcolor='blue',\n fontsize=15, alpha=0.2)\n\nmenuitems = []\nfor label in ('open', 'close', 'save', 'save as', 'quit'):\n def on_select(item):\n print('you selected %s' % item.labelstr)\n item = MenuItem(fig, label, props=props, hoverprops=hoverprops,\n on_select=on_select)\n menuitems.append(item)\n\nmenu = Menu(fig, menuitems)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d7bb21b551985eaa3dc40aee73209e8d/colorbar_placement.py b/_downloads/d7bb21b551985eaa3dc40aee73209e8d/colorbar_placement.py deleted file mode 120000 index 4b49e50a0c0..00000000000 --- a/_downloads/d7bb21b551985eaa3dc40aee73209e8d/colorbar_placement.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d7bb21b551985eaa3dc40aee73209e8d/colorbar_placement.py \ No newline at end of file diff --git a/_downloads/d7bbf80b70c66bb107aa04ea215c5b06/surface3d_2.py b/_downloads/d7bbf80b70c66bb107aa04ea215c5b06/surface3d_2.py deleted file mode 120000 index 1da36c4df88..00000000000 --- a/_downloads/d7bbf80b70c66bb107aa04ea215c5b06/surface3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d7bbf80b70c66bb107aa04ea215c5b06/surface3d_2.py \ No newline at end of file diff --git a/_downloads/d7ce0e66861d3e268cdb97f99ab7535a/wxcursor_demo_sgskip.ipynb b/_downloads/d7ce0e66861d3e268cdb97f99ab7535a/wxcursor_demo_sgskip.ipynb deleted file mode 120000 index 9371ed41bcb..00000000000 --- a/_downloads/d7ce0e66861d3e268cdb97f99ab7535a/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d7ce0e66861d3e268cdb97f99ab7535a/wxcursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/d7d465a2c9064c82355faed3e8b8ef51/named_colors.ipynb b/_downloads/d7d465a2c9064c82355faed3e8b8ef51/named_colors.ipynb deleted file mode 120000 index 26ebb8b383e..00000000000 --- a/_downloads/d7d465a2c9064c82355faed3e8b8ef51/named_colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d7d465a2c9064c82355faed3e8b8ef51/named_colors.ipynb \ No newline at end of file diff --git a/_downloads/d7d49b289085d18ef49697f05b5578c8/pyplot_two_subplots.py b/_downloads/d7d49b289085d18ef49697f05b5578c8/pyplot_two_subplots.py deleted file mode 100644 index 8c6453477b2..00000000000 --- a/_downloads/d7d49b289085d18ef49697f05b5578c8/pyplot_two_subplots.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=================== -Pyplot Two Subplots -=================== - -Create a figure with two subplots with `pyplot.subplot`. -""" -import numpy as np -import matplotlib.pyplot as plt - - -def f(t): - return np.exp(-t) * np.cos(2*np.pi*t) - - -t1 = np.arange(0.0, 5.0, 0.1) -t2 = np.arange(0.0, 5.0, 0.02) - -plt.figure() -plt.subplot(211) -plt.plot(t1, f(t1), color='tab:blue', marker='o') -plt.plot(t2, f(t2), color='black') - -plt.subplot(212) -plt.plot(t2, np.cos(2*np.pi*t2), color='tab:orange', linestyle='--') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.figure -matplotlib.pyplot.subplot diff --git a/_downloads/d7e338728ecc024caa1c9390559f24ae/spines_dropped.py b/_downloads/d7e338728ecc024caa1c9390559f24ae/spines_dropped.py deleted file mode 120000 index 0a5690d381b..00000000000 --- a/_downloads/d7e338728ecc024caa1c9390559f24ae/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d7e338728ecc024caa1c9390559f24ae/spines_dropped.py \ No newline at end of file diff --git a/_downloads/d7e6857969374d787b83386099907aa4/font_indexing.ipynb b/_downloads/d7e6857969374d787b83386099907aa4/font_indexing.ipynb deleted file mode 120000 index 8d5e4146bc6..00000000000 --- a/_downloads/d7e6857969374d787b83386099907aa4/font_indexing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d7e6857969374d787b83386099907aa4/font_indexing.ipynb \ No newline at end of file diff --git a/_downloads/d7e77d820f6269f5d1a867b80c90122d/voxels_rgb.py b/_downloads/d7e77d820f6269f5d1a867b80c90122d/voxels_rgb.py deleted file mode 120000 index 85284f43fe6..00000000000 --- a/_downloads/d7e77d820f6269f5d1a867b80c90122d/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d7e77d820f6269f5d1a867b80c90122d/voxels_rgb.py \ No newline at end of file diff --git a/_downloads/d7f248c2baeea63b646f96f4b6d64fcf/wire3d_zero_stride.ipynb b/_downloads/d7f248c2baeea63b646f96f4b6d64fcf/wire3d_zero_stride.ipynb deleted file mode 120000 index 1a734f0dab9..00000000000 --- a/_downloads/d7f248c2baeea63b646f96f4b6d64fcf/wire3d_zero_stride.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d7f248c2baeea63b646f96f4b6d64fcf/wire3d_zero_stride.ipynb \ No newline at end of file diff --git a/_downloads/d7f8481f3cefa2b925562c14f2c7f5e0/gridspec_multicolumn.py b/_downloads/d7f8481f3cefa2b925562c14f2c7f5e0/gridspec_multicolumn.py deleted file mode 120000 index 2e73c0e00a9..00000000000 --- a/_downloads/d7f8481f3cefa2b925562c14f2c7f5e0/gridspec_multicolumn.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d7f8481f3cefa2b925562c14f2c7f5e0/gridspec_multicolumn.py \ No newline at end of file diff --git a/_downloads/d81a88c30321a7c3f744e78630f533e0/custom_projection.py b/_downloads/d81a88c30321a7c3f744e78630f533e0/custom_projection.py deleted file mode 120000 index d23d035f81c..00000000000 --- a/_downloads/d81a88c30321a7c3f744e78630f533e0/custom_projection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d81a88c30321a7c3f744e78630f533e0/custom_projection.py \ No newline at end of file diff --git a/_downloads/d823c44c752502b494b29f665d23b847/date_index_formatter2.ipynb b/_downloads/d823c44c752502b494b29f665d23b847/date_index_formatter2.ipynb deleted file mode 120000 index c0967ac1d38..00000000000 --- a/_downloads/d823c44c752502b494b29f665d23b847/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/d823c44c752502b494b29f665d23b847/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/d8275194e7ed6da5b3463164aa84a91e/dfrac_demo.ipynb b/_downloads/d8275194e7ed6da5b3463164aa84a91e/dfrac_demo.ipynb deleted file mode 120000 index f0220d22be2..00000000000 --- a/_downloads/d8275194e7ed6da5b3463164aa84a91e/dfrac_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d8275194e7ed6da5b3463164aa84a91e/dfrac_demo.ipynb \ No newline at end of file diff --git a/_downloads/d82b0260fa24165f80027aa553974746/step_demo.ipynb b/_downloads/d82b0260fa24165f80027aa553974746/step_demo.ipynb deleted file mode 120000 index b69ca9a9889..00000000000 --- a/_downloads/d82b0260fa24165f80027aa553974746/step_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d82b0260fa24165f80027aa553974746/step_demo.ipynb \ No newline at end of file diff --git a/_downloads/d8302ab997ee31f618ba1d92784c1742/multicolored_line.py b/_downloads/d8302ab997ee31f618ba1d92784c1742/multicolored_line.py deleted file mode 100644 index 9be424ad281..00000000000 --- a/_downloads/d8302ab997ee31f618ba1d92784c1742/multicolored_line.py +++ /dev/null @@ -1,48 +0,0 @@ -''' -================== -Multicolored lines -================== - -This example shows how to make a multi-colored line. In this example, the line -is colored based on its derivative. -''' - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.collections import LineCollection -from matplotlib.colors import ListedColormap, BoundaryNorm - -x = np.linspace(0, 3 * np.pi, 500) -y = np.sin(x) -dydx = np.cos(0.5 * (x[:-1] + x[1:])) # first derivative - -# Create a set of line segments so that we can color them individually -# This creates the points as a N x 1 x 2 array so that we can stack points -# together easily to get the segments. The segments array for line collection -# needs to be (numlines) x (points per line) x 2 (for x and y) -points = np.array([x, y]).T.reshape(-1, 1, 2) -segments = np.concatenate([points[:-1], points[1:]], axis=1) - -fig, axs = plt.subplots(2, 1, sharex=True, sharey=True) - -# Create a continuous norm to map from data points to colors -norm = plt.Normalize(dydx.min(), dydx.max()) -lc = LineCollection(segments, cmap='viridis', norm=norm) -# Set the values used for colormapping -lc.set_array(dydx) -lc.set_linewidth(2) -line = axs[0].add_collection(lc) -fig.colorbar(line, ax=axs[0]) - -# Use a boundary norm instead -cmap = ListedColormap(['r', 'g', 'b']) -norm = BoundaryNorm([-1, -0.5, 0.5, 1], cmap.N) -lc = LineCollection(segments, cmap=cmap, norm=norm) -lc.set_array(dydx) -lc.set_linewidth(2) -line = axs[1].add_collection(lc) -fig.colorbar(line, ax=axs[1]) - -axs[0].set_xlim(x.min(), x.max()) -axs[0].set_ylim(-1.1, 1.1) -plt.show() diff --git a/_downloads/d834d9e106f0812078c5b77042276ffc/subplot.py b/_downloads/d834d9e106f0812078c5b77042276ffc/subplot.py deleted file mode 120000 index bfd87919e1a..00000000000 --- a/_downloads/d834d9e106f0812078c5b77042276ffc/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d834d9e106f0812078c5b77042276ffc/subplot.py \ No newline at end of file diff --git a/_downloads/d83aad23b8f497badd8cd3785e56f786/boxplot_demo_pyplot.py b/_downloads/d83aad23b8f497badd8cd3785e56f786/boxplot_demo_pyplot.py deleted file mode 120000 index 3a61ef38565..00000000000 --- a/_downloads/d83aad23b8f497badd8cd3785e56f786/boxplot_demo_pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d83aad23b8f497badd8cd3785e56f786/boxplot_demo_pyplot.py \ No newline at end of file diff --git a/_downloads/d83cf612466772138589d608cf8bcd49/simple_axisartist1.ipynb b/_downloads/d83cf612466772138589d608cf8bcd49/simple_axisartist1.ipynb deleted file mode 120000 index 636b5d9d5db..00000000000 --- a/_downloads/d83cf612466772138589d608cf8bcd49/simple_axisartist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d83cf612466772138589d608cf8bcd49/simple_axisartist1.ipynb \ No newline at end of file diff --git a/_downloads/d84b42d498483c5b6a989e09761b4785/boxplot.py b/_downloads/d84b42d498483c5b6a989e09761b4785/boxplot.py deleted file mode 100644 index 80586c75a2c..00000000000 --- a/_downloads/d84b42d498483c5b6a989e09761b4785/boxplot.py +++ /dev/null @@ -1,97 +0,0 @@ -""" -================================= -Artist customization in box plots -================================= - -This example demonstrates how to use the various kwargs -to fully customize box plots. The first figure demonstrates -how to remove and add individual components (note that the -mean is the only value not shown by default). The second -figure demonstrates how the styles of the artists can -be customized. It also demonstrates how to set the limit -of the whiskers to specific percentiles (lower right axes) - -A good general reference on boxplots and their history can be found -here: http://vita.had.co.nz/papers/boxplots.pdf - -""" - -import numpy as np -import matplotlib.pyplot as plt - -# fake data -np.random.seed(19680801) -data = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75) -labels = list('ABCD') -fs = 10 # fontsize - -############################################################################### -# Demonstrate how to toggle the display of different elements: - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True) -axes[0, 0].boxplot(data, labels=labels) -axes[0, 0].set_title('Default', fontsize=fs) - -axes[0, 1].boxplot(data, labels=labels, showmeans=True) -axes[0, 1].set_title('showmeans=True', fontsize=fs) - -axes[0, 2].boxplot(data, labels=labels, showmeans=True, meanline=True) -axes[0, 2].set_title('showmeans=True,\nmeanline=True', fontsize=fs) - -axes[1, 0].boxplot(data, labels=labels, showbox=False, showcaps=False) -tufte_title = 'Tufte Style \n(showbox=False,\nshowcaps=False)' -axes[1, 0].set_title(tufte_title, fontsize=fs) - -axes[1, 1].boxplot(data, labels=labels, notch=True, bootstrap=10000) -axes[1, 1].set_title('notch=True,\nbootstrap=10000', fontsize=fs) - -axes[1, 2].boxplot(data, labels=labels, showfliers=False) -axes[1, 2].set_title('showfliers=False', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.subplots_adjust(hspace=0.4) -plt.show() - - -############################################################################### -# Demonstrate how to customize the display different elements: - -boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod') -flierprops = dict(marker='o', markerfacecolor='green', markersize=12, - linestyle='none') -medianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick') -meanpointprops = dict(marker='D', markeredgecolor='black', - markerfacecolor='firebrick') -meanlineprops = dict(linestyle='--', linewidth=2.5, color='purple') - -fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True) -axes[0, 0].boxplot(data, boxprops=boxprops) -axes[0, 0].set_title('Custom boxprops', fontsize=fs) - -axes[0, 1].boxplot(data, flierprops=flierprops, medianprops=medianprops) -axes[0, 1].set_title('Custom medianprops\nand flierprops', fontsize=fs) - -axes[0, 2].boxplot(data, whis='range') -axes[0, 2].set_title('whis="range"', fontsize=fs) - -axes[1, 0].boxplot(data, meanprops=meanpointprops, meanline=False, - showmeans=True) -axes[1, 0].set_title('Custom mean\nas point', fontsize=fs) - -axes[1, 1].boxplot(data, meanprops=meanlineprops, meanline=True, - showmeans=True) -axes[1, 1].set_title('Custom mean\nas line', fontsize=fs) - -axes[1, 2].boxplot(data, whis=[15, 85]) -axes[1, 2].set_title('whis=[15, 85]\n#percentiles', fontsize=fs) - -for ax in axes.flat: - ax.set_yscale('log') - ax.set_yticklabels([]) - -fig.suptitle("I never said they'd be pretty") -fig.subplots_adjust(hspace=0.4) -plt.show() diff --git a/_downloads/d856da409c480807e0e779c1aeed4571/demo_ticklabel_direction.ipynb b/_downloads/d856da409c480807e0e779c1aeed4571/demo_ticklabel_direction.ipynb deleted file mode 120000 index 099dfac2ee4..00000000000 --- a/_downloads/d856da409c480807e0e779c1aeed4571/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d856da409c480807e0e779c1aeed4571/demo_ticklabel_direction.ipynb \ No newline at end of file diff --git a/_downloads/d858f473b90250703b4e7e699fae2194/simple_axis_direction01.py b/_downloads/d858f473b90250703b4e7e699fae2194/simple_axis_direction01.py deleted file mode 120000 index 3639e540ad6..00000000000 --- a/_downloads/d858f473b90250703b4e7e699fae2194/simple_axis_direction01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d858f473b90250703b4e7e699fae2194/simple_axis_direction01.py \ No newline at end of file diff --git a/_downloads/d872c4431c6e975b438395faa69a0ce9/date_index_formatter2.py b/_downloads/d872c4431c6e975b438395faa69a0ce9/date_index_formatter2.py deleted file mode 120000 index d7ee6182841..00000000000 --- a/_downloads/d872c4431c6e975b438395faa69a0ce9/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d872c4431c6e975b438395faa69a0ce9/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/d87ceabadd83702aaae9787cdcb113b9/align_ylabels.ipynb b/_downloads/d87ceabadd83702aaae9787cdcb113b9/align_ylabels.ipynb deleted file mode 120000 index c5534a9b978..00000000000 --- a/_downloads/d87ceabadd83702aaae9787cdcb113b9/align_ylabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d87ceabadd83702aaae9787cdcb113b9/align_ylabels.ipynb \ No newline at end of file diff --git a/_downloads/d8886fc1ed7c640f1fad4e3115de72ce/dynamic_image.py b/_downloads/d8886fc1ed7c640f1fad4e3115de72ce/dynamic_image.py deleted file mode 120000 index a5657ebeceb..00000000000 --- a/_downloads/d8886fc1ed7c640f1fad4e3115de72ce/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d8886fc1ed7c640f1fad4e3115de72ce/dynamic_image.py \ No newline at end of file diff --git a/_downloads/d895a6f0c934a9fd26e411f80de114a1/simple_axisline4.ipynb b/_downloads/d895a6f0c934a9fd26e411f80de114a1/simple_axisline4.ipynb deleted file mode 100644 index 9adcde82f44..00000000000 --- a/_downloads/d895a6f0c934a9fd26e411f80de114a1/simple_axisline4.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline4\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import host_subplot\nimport numpy as np\n\nax = host_subplot(111)\nxx = np.arange(0, 2*np.pi, 0.01)\nax.plot(xx, np.sin(xx))\n\nax2 = ax.twin() # ax2 is responsible for \"top\" axis and \"right\" axis\nax2.set_xticks([0., .5*np.pi, np.pi, 1.5*np.pi, 2*np.pi])\nax2.set_xticklabels([\"$0$\", r\"$\\frac{1}{2}\\pi$\",\n r\"$\\pi$\", r\"$\\frac{3}{2}\\pi$\", r\"$2\\pi$\"])\n\nax2.axis[\"right\"].major_ticklabels.set_visible(False)\nax2.axis[\"top\"].major_ticklabels.set_visible(True)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d8a7d7a526a97903fb29799dc25827aa/pyplot.ipynb b/_downloads/d8a7d7a526a97903fb29799dc25827aa/pyplot.ipynb deleted file mode 120000 index e8551964459..00000000000 --- a/_downloads/d8a7d7a526a97903fb29799dc25827aa/pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d8a7d7a526a97903fb29799dc25827aa/pyplot.ipynb \ No newline at end of file diff --git a/_downloads/d8b35fbf950e6f3dc8f69c5c7c45229c/double_pendulum_sgskip.ipynb b/_downloads/d8b35fbf950e6f3dc8f69c5c7c45229c/double_pendulum_sgskip.ipynb deleted file mode 120000 index 2b1cc6b9558..00000000000 --- a/_downloads/d8b35fbf950e6f3dc8f69c5c7c45229c/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d8b35fbf950e6f3dc8f69c5c7c45229c/double_pendulum_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/d8bc3eb82be81198a447a74363a4f66f/leftventricle_bulleye.ipynb b/_downloads/d8bc3eb82be81198a447a74363a4f66f/leftventricle_bulleye.ipynb deleted file mode 120000 index 4fbcddb9552..00000000000 --- a/_downloads/d8bc3eb82be81198a447a74363a4f66f/leftventricle_bulleye.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d8bc3eb82be81198a447a74363a4f66f/leftventricle_bulleye.ipynb \ No newline at end of file diff --git a/_downloads/d8bcde6b00100c381e25561bc91fc9fb/quiver3d.py b/_downloads/d8bcde6b00100c381e25561bc91fc9fb/quiver3d.py deleted file mode 100644 index 6921b4a1d26..00000000000 --- a/_downloads/d8bcde6b00100c381e25561bc91fc9fb/quiver3d.py +++ /dev/null @@ -1,31 +0,0 @@ -''' -============== -3D quiver plot -============== - -Demonstrates plotting directional arrows at points on a 3d meshgrid. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -fig = plt.figure() -ax = fig.gca(projection='3d') - -# Make the grid -x, y, z = np.meshgrid(np.arange(-0.8, 1, 0.2), - np.arange(-0.8, 1, 0.2), - np.arange(-0.8, 1, 0.8)) - -# Make the direction data for the arrows -u = np.sin(np.pi * x) * np.cos(np.pi * y) * np.cos(np.pi * z) -v = -np.cos(np.pi * x) * np.sin(np.pi * y) * np.cos(np.pi * z) -w = (np.sqrt(2.0 / 3.0) * np.cos(np.pi * x) * np.cos(np.pi * y) * - np.sin(np.pi * z)) - -ax.quiver(x, y, z, u, v, w, length=0.1, normalize=True) - -plt.show() diff --git a/_downloads/d8c1eaf5bf96ef0ad04cfa7120f1e8c9/marker_reference.py b/_downloads/d8c1eaf5bf96ef0ad04cfa7120f1e8c9/marker_reference.py deleted file mode 120000 index a685ef615bb..00000000000 --- a/_downloads/d8c1eaf5bf96ef0ad04cfa7120f1e8c9/marker_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d8c1eaf5bf96ef0ad04cfa7120f1e8c9/marker_reference.py \ No newline at end of file diff --git a/_downloads/d8c234c696a1fc1aae789db54ecacf25/pyplot_mathtext.py b/_downloads/d8c234c696a1fc1aae789db54ecacf25/pyplot_mathtext.py deleted file mode 100644 index 709488bcc93..00000000000 --- a/_downloads/d8c234c696a1fc1aae789db54ecacf25/pyplot_mathtext.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -=============== -Pyplot Mathtext -=============== - -Use mathematical expressions in text labels. For an overview over MathText -see :doc:`/tutorials/text/mathtext`. -""" -import numpy as np -import matplotlib.pyplot as plt -t = np.arange(0.0, 2.0, 0.01) -s = np.sin(2*np.pi*t) - -plt.plot(t,s) -plt.title(r'$\alpha_i > \beta_i$', fontsize=20) -plt.text(1, -0.6, r'$\sum_{i=0}^\infty x_i$', fontsize=20) -plt.text(0.6, 0.6, r'$\mathcal{A}\mathrm{sin}(2 \omega t)$', - fontsize=20) -plt.xlabel('time (s)') -plt.ylabel('volts (mV)') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.text -matplotlib.axes.Axes.text diff --git a/_downloads/d8c35d3401e4387ece72bb984cdcc7b4/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/d8c35d3401e4387ece72bb984cdcc7b4/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 120000 index 7af8402aed2..00000000000 --- a/_downloads/d8c35d3401e4387ece72bb984cdcc7b4/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d8c35d3401e4387ece72bb984cdcc7b4/embedding_in_gtk3_panzoom_sgskip.py \ No newline at end of file diff --git a/_downloads/d8c3ad5e83f3494cf2e0ea4c033c5c61/axis_equal_demo.ipynb b/_downloads/d8c3ad5e83f3494cf2e0ea4c033c5c61/axis_equal_demo.ipynb deleted file mode 100644 index 016e2d807d7..00000000000 --- a/_downloads/d8c3ad5e83f3494cf2e0ea4c033c5c61/axis_equal_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Equal Demo\n\n\nHow to set and adjust plots with equal axis ratios.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Plot circle of radius 3.\n\nan = np.linspace(0, 2 * np.pi, 100)\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[0, 0].set_title('not equal, looks like ellipse', fontsize=10)\n\naxs[0, 1].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[0, 1].axis('equal')\naxs[0, 1].set_title('equal, looks like circle', fontsize=10)\n\naxs[1, 0].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[1, 0].axis('equal')\naxs[1, 0].set(xlim=(-3, 3), ylim=(-3, 3))\naxs[1, 0].set_title('still a circle, even after changing limits', fontsize=10)\n\naxs[1, 1].plot(3 * np.cos(an), 3 * np.sin(an))\naxs[1, 1].set_aspect('equal', 'box')\naxs[1, 1].set_title('still a circle, auto-adjusted data limits', fontsize=10)\n\nfig.tight_layout()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d8c5c2f66d999cf86c694bb9ac248434/annotate_simple03.ipynb b/_downloads/d8c5c2f66d999cf86c694bb9ac248434/annotate_simple03.ipynb deleted file mode 120000 index bd6376af13c..00000000000 --- a/_downloads/d8c5c2f66d999cf86c694bb9ac248434/annotate_simple03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d8c5c2f66d999cf86c694bb9ac248434/annotate_simple03.ipynb \ No newline at end of file diff --git a/_downloads/d8d393dd765f4c6842b07162622d3db8/tick_xlabel_top.ipynb b/_downloads/d8d393dd765f4c6842b07162622d3db8/tick_xlabel_top.ipynb deleted file mode 100644 index 451e6cd497e..00000000000 --- a/_downloads/d8d393dd765f4c6842b07162622d3db8/tick_xlabel_top.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Set default x-axis tick labels on the top\n\n\nWe can use :rc:`xtick.labeltop` (default False) and :rc:`xtick.top`\n(default False) and :rc:`xtick.labelbottom` (default True) and\n:rc:`xtick.bottom` (default True) to control where on the axes ticks and\ntheir labels appear.\n\nThese properties can also be set in ``.matplotlib/matplotlibrc``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nplt.rcParams['xtick.bottom'] = plt.rcParams['xtick.labelbottom'] = False\nplt.rcParams['xtick.top'] = plt.rcParams['xtick.labeltop'] = True\n\nx = np.arange(10)\n\nfig, ax = plt.subplots()\n\nax.plot(x)\nax.set_title('xlabel top') # Note title moves to make room for ticks\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d8de6cea574d91cd6b8574e1b39edd25/step_demo.py b/_downloads/d8de6cea574d91cd6b8574e1b39edd25/step_demo.py deleted file mode 120000 index 662d8da8d77..00000000000 --- a/_downloads/d8de6cea574d91cd6b8574e1b39edd25/step_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d8de6cea574d91cd6b8574e1b39edd25/step_demo.py \ No newline at end of file diff --git a/_downloads/d8e19dd0e01c3407896dadf26485c0c1/fig_axes_customize_simple.ipynb b/_downloads/d8e19dd0e01c3407896dadf26485c0c1/fig_axes_customize_simple.ipynb deleted file mode 100644 index 7391e2b2fb9..00000000000 --- a/_downloads/d8e19dd0e01c3407896dadf26485c0c1/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fig Axes Customize Simple\n\n\nCustomize the background, labels and ticks of a simple plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "``plt.figure`` creates a ```matplotlib.figure.Figure`` instance\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\nrect = fig.patch # a rectangle instance\nrect.set_facecolor('lightgoldenrodyellow')\n\nax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4])\nrect = ax1.patch\nrect.set_facecolor('lightslategray')\n\n\nfor label in ax1.xaxis.get_ticklabels():\n # label is a Text instance\n label.set_color('tab:red')\n label.set_rotation(45)\n label.set_fontsize(16)\n\nfor line in ax1.yaxis.get_ticklines():\n # line is a Line2D instance\n line.set_color('tab:green')\n line.set_markersize(25)\n line.set_markeredgewidth(3)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axis.Axis.get_ticklabels\nmatplotlib.axis.Axis.get_ticklines\nmatplotlib.text.Text.set_rotation\nmatplotlib.text.Text.set_fontsize\nmatplotlib.text.Text.set_color\nmatplotlib.lines.Line2D\nmatplotlib.lines.Line2D.set_color\nmatplotlib.lines.Line2D.set_markersize\nmatplotlib.lines.Line2D.set_markeredgewidth\nmatplotlib.patches.Patch.set_facecolor" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d8e21fc61d0e1eb934f632d8452a9b80/scatter_demo2.py b/_downloads/d8e21fc61d0e1eb934f632d8452a9b80/scatter_demo2.py deleted file mode 120000 index d33eff8e725..00000000000 --- a/_downloads/d8e21fc61d0e1eb934f632d8452a9b80/scatter_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d8e21fc61d0e1eb934f632d8452a9b80/scatter_demo2.py \ No newline at end of file diff --git a/_downloads/d8f315a44575cd3a8758efc89de6a05c/histogram_features.py b/_downloads/d8f315a44575cd3a8758efc89de6a05c/histogram_features.py deleted file mode 120000 index f51dfb1b656..00000000000 --- a/_downloads/d8f315a44575cd3a8758efc89de6a05c/histogram_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d8f315a44575cd3a8758efc89de6a05c/histogram_features.py \ No newline at end of file diff --git a/_downloads/d8f5f6059d0dbe50b2bfe2e6408e6aa3/tricontour3d.ipynb b/_downloads/d8f5f6059d0dbe50b2bfe2e6408e6aa3/tricontour3d.ipynb deleted file mode 120000 index 90a84a96577..00000000000 --- a/_downloads/d8f5f6059d0dbe50b2bfe2e6408e6aa3/tricontour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d8f5f6059d0dbe50b2bfe2e6408e6aa3/tricontour3d.ipynb \ No newline at end of file diff --git a/_downloads/d8f6d9d36cef112e94b8f682b477dfb2/barh.ipynb b/_downloads/d8f6d9d36cef112e94b8f682b477dfb2/barh.ipynb deleted file mode 100644 index 0cde8d6bcf5..00000000000 --- a/_downloads/d8f6d9d36cef112e94b8f682b477dfb2/barh.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Horizontal bar chart\n\n\nThis example showcases a simple horizontal bar chart.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nplt.rcdefaults()\nfig, ax = plt.subplots()\n\n# Example data\npeople = ('Tom', 'Dick', 'Harry', 'Slim', 'Jim')\ny_pos = np.arange(len(people))\nperformance = 3 + 10 * np.random.rand(len(people))\nerror = np.random.rand(len(people))\n\nax.barh(y_pos, performance, xerr=error, align='center')\nax.set_yticks(y_pos)\nax.set_yticklabels(people)\nax.invert_yaxis() # labels read top-to-bottom\nax.set_xlabel('Performance')\nax.set_title('How fast do you want to go today?')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d9092da607320ca28dcf66bcc9201b10/errorbar_subsample.py b/_downloads/d9092da607320ca28dcf66bcc9201b10/errorbar_subsample.py deleted file mode 120000 index f6dd08fcb76..00000000000 --- a/_downloads/d9092da607320ca28dcf66bcc9201b10/errorbar_subsample.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d9092da607320ca28dcf66bcc9201b10/errorbar_subsample.py \ No newline at end of file diff --git a/_downloads/d920b4853698ded21918b676c6d3b35a/check_buttons.ipynb b/_downloads/d920b4853698ded21918b676c6d3b35a/check_buttons.ipynb deleted file mode 100644 index 35a05a381d9..00000000000 --- a/_downloads/d920b4853698ded21918b676c6d3b35a/check_buttons.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Check Buttons\n\n\nTurning visual elements on and off with check buttons.\n\nThis program shows the use of 'Check Buttons' which is similar to\ncheck boxes. There are 3 different sine waves shown and we can choose which\nwaves are displayed with the check buttons.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import CheckButtons\n\nt = np.arange(0.0, 2.0, 0.01)\ns0 = np.sin(2*np.pi*t)\ns1 = np.sin(4*np.pi*t)\ns2 = np.sin(6*np.pi*t)\n\nfig, ax = plt.subplots()\nl0, = ax.plot(t, s0, visible=False, lw=2, color='k', label='2 Hz')\nl1, = ax.plot(t, s1, lw=2, color='r', label='4 Hz')\nl2, = ax.plot(t, s2, lw=2, color='g', label='6 Hz')\nplt.subplots_adjust(left=0.2)\n\nlines = [l0, l1, l2]\n\n# Make checkbuttons with all plotted lines with correct visibility\nrax = plt.axes([0.05, 0.4, 0.1, 0.15])\nlabels = [str(line.get_label()) for line in lines]\nvisibility = [line.get_visible() for line in lines]\ncheck = CheckButtons(rax, labels, visibility)\n\n\ndef func(label):\n index = labels.index(label)\n lines[index].set_visible(not lines[index].get_visible())\n plt.draw()\n\ncheck.on_clicked(func)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d9289b28cf017ce19326039230d6c2bb/buttons.py b/_downloads/d9289b28cf017ce19326039230d6c2bb/buttons.py deleted file mode 120000 index 6476176414b..00000000000 --- a/_downloads/d9289b28cf017ce19326039230d6c2bb/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d9289b28cf017ce19326039230d6c2bb/buttons.py \ No newline at end of file diff --git a/_downloads/d92eabe640905715c687cd03f927cbb2/text_fontdict.ipynb b/_downloads/d92eabe640905715c687cd03f927cbb2/text_fontdict.ipynb deleted file mode 120000 index 4e63417640a..00000000000 --- a/_downloads/d92eabe640905715c687cd03f927cbb2/text_fontdict.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d92eabe640905715c687cd03f927cbb2/text_fontdict.ipynb \ No newline at end of file diff --git a/_downloads/d9361c23c028a8e7e6a9a290ee0eb4f1/contour3d_3.ipynb b/_downloads/d9361c23c028a8e7e6a9a290ee0eb4f1/contour3d_3.ipynb deleted file mode 120000 index 7d27d725c10..00000000000 --- a/_downloads/d9361c23c028a8e7e6a9a290ee0eb4f1/contour3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d9361c23c028a8e7e6a9a290ee0eb4f1/contour3d_3.ipynb \ No newline at end of file diff --git a/_downloads/d94296ba7ef272f200bf438d5fb9a741/common_date_problems.ipynb b/_downloads/d94296ba7ef272f200bf438d5fb9a741/common_date_problems.ipynb deleted file mode 100644 index ff47b38174e..00000000000 --- a/_downloads/d94296ba7ef272f200bf438d5fb9a741/common_date_problems.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nFixing common date annoyances\n=============================\n\nMatplotlib allows you to natively plots python datetime instances, and\nfor the most part does a good job picking tick locations and string\nformats. There are a couple of things it does not handle so\ngracefully, and here are some tricks to help you work around them.\nWe'll load up some sample date data which contains datetime.date\nobjects in a numpy record array::\n\n In [63]: datafile = cbook.get_sample_data('goog.npz')\n\n In [64]: r = np.load(datafile)['price_data'].view(np.recarray)\n\n In [65]: r.dtype\n Out[65]: dtype([('date', ']\n\nyou will see that the x tick labels are all squashed together.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.cbook as cbook\nimport matplotlib.dates as mdates\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nwith cbook.get_sample_data('goog.npz') as datafile:\n r = np.load(datafile)['price_data'].view(np.recarray)\n\n# Matplotlib prefers datetime instead of np.datetime64.\ndate = r.date.astype('O')\nfig, ax = plt.subplots()\nax.plot(date, r.close)\nax.set_title('Default date handling can cause overlapping labels')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Another annoyance is that if you hover the mouse over the window and\nlook in the lower right corner of the matplotlib toolbar\n(`navigation-toolbar`) at the x and y coordinates, you see that\nthe x locations are formatted the same way the tick labels are, e.g.,\n\"Dec 2004\".\n\nWhat we'd like is for the location in the toolbar to have\na higher degree of precision, e.g., giving us the exact date out mouse is\nhovering over. To fix the first problem, we can use\n:func:`matplotlib.figure.Figure.autofmt_xdate` and to fix the second\nproblem we can use the ``ax.fmt_xdata`` attribute which can be set to\nany function that takes a scalar and returns a string. matplotlib has\na number of date formatters built in, so we'll use one of those.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.plot(date, r.close)\n\n# rotate and align the tick labels so they look better\nfig.autofmt_xdate()\n\n# use a more precise date string for the x axis locations in the\n# toolbar\nax.fmt_xdata = mdates.DateFormatter('%Y-%m-%d')\nax.set_title('fig.autofmt_xdate fixes the labels')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now when you hover your mouse over the plotted data, you'll see date\nformat strings like 2004-12-01 in the toolbar.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d942e3d071c60342eeab95c8627c1ecf/spy_demos.ipynb b/_downloads/d942e3d071c60342eeab95c8627c1ecf/spy_demos.ipynb deleted file mode 100644 index 4d6e3919a3c..00000000000 --- a/_downloads/d942e3d071c60342eeab95c8627c1ecf/spy_demos.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spy Demos\n\n\nPlot the sparsity pattern of arrays.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axs = plt.subplots(2, 2)\nax1 = axs[0, 0]\nax2 = axs[0, 1]\nax3 = axs[1, 0]\nax4 = axs[1, 1]\n\nx = np.random.randn(20, 20)\nx[5, :] = 0.\nx[:, 12] = 0.\n\nax1.spy(x, markersize=5)\nax2.spy(x, precision=0.1, markersize=5)\n\nax3.spy(x)\nax4.spy(x, precision=0.1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.spy\nmatplotlib.pyplot.spy" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d948e8e314857dcbc4b693a5d5b0e6c9/text_rotation_relative_to_line.ipynb b/_downloads/d948e8e314857dcbc4b693a5d5b0e6c9/text_rotation_relative_to_line.ipynb deleted file mode 100644 index 64ce3e66efe..00000000000 --- a/_downloads/d948e8e314857dcbc4b693a5d5b0e6c9/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text Rotation Relative To Line\n\n\nText objects in matplotlib are normally rotated with respect to the\nscreen coordinate system (i.e., 45 degrees rotation plots text along a\nline that is in between horizontal and vertical no matter how the axes\nare changed). However, at times one wants to rotate text with respect\nto something on the plot. In this case, the correct angle won't be\nthe angle of that object in the plot coordinate system, but the angle\nthat that object APPEARS in the screen coordinate system. This angle\nis found by transforming the angle from the plot to the screen\ncoordinate system, as shown in the example below.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Plot diagonal line (45 degrees)\nh = plt.plot(np.arange(0, 10), np.arange(0, 10))\n\n# set limits so that it no longer looks on screen to be 45 degrees\nplt.xlim([-10, 20])\n\n# Locations to plot text\nl1 = np.array((1, 1))\nl2 = np.array((5, 5))\n\n# Rotate angle\nangle = 45\ntrans_angle = plt.gca().transData.transform_angles(np.array((45,)),\n l2.reshape((1, 2)))[0]\n\n# Plot text\nth1 = plt.text(l1[0], l1[1], 'text not rotated correctly', fontsize=16,\n rotation=angle, rotation_mode='anchor')\nth2 = plt.text(l2[0], l2[1], 'text rotated correctly', fontsize=16,\n rotation=trans_angle, rotation_mode='anchor')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d9518f8b6dfa1b18b5824535696356f9/simple_legend01.py b/_downloads/d9518f8b6dfa1b18b5824535696356f9/simple_legend01.py deleted file mode 100644 index 9e178af9be5..00000000000 --- a/_downloads/d9518f8b6dfa1b18b5824535696356f9/simple_legend01.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -=============== -Simple Legend01 -=============== - -""" -import matplotlib.pyplot as plt - - -plt.subplot(211) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") -# Place a legend above this subplot, expanding itself to -# fully use the given bounding box. -plt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left', - ncol=2, mode="expand", borderaxespad=0.) - -plt.subplot(223) -plt.plot([1, 2, 3], label="test1") -plt.plot([3, 2, 1], label="test2") -# Place a legend to the right of this smaller subplot. -plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.) - -plt.show() diff --git a/_downloads/d958505ad660649d1d912ab9779833a7/annotate_simple_coord01.py b/_downloads/d958505ad660649d1d912ab9779833a7/annotate_simple_coord01.py deleted file mode 120000 index c97c6baca1a..00000000000 --- a/_downloads/d958505ad660649d1d912ab9779833a7/annotate_simple_coord01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d958505ad660649d1d912ab9779833a7/annotate_simple_coord01.py \ No newline at end of file diff --git a/_downloads/d961f8f2579c651b5426ddcf18fd96a3/interpolation_methods.py b/_downloads/d961f8f2579c651b5426ddcf18fd96a3/interpolation_methods.py deleted file mode 120000 index aeebf6ec64e..00000000000 --- a/_downloads/d961f8f2579c651b5426ddcf18fd96a3/interpolation_methods.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d961f8f2579c651b5426ddcf18fd96a3/interpolation_methods.py \ No newline at end of file diff --git a/_downloads/d96527dca12ba218548a69784cd5cc04/surface3d_2.ipynb b/_downloads/d96527dca12ba218548a69784cd5cc04/surface3d_2.ipynb deleted file mode 120000 index d32af16c79d..00000000000 --- a/_downloads/d96527dca12ba218548a69784cd5cc04/surface3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d96527dca12ba218548a69784cd5cc04/surface3d_2.ipynb \ No newline at end of file diff --git a/_downloads/d9664ae87b421b5501a2d6fbc28db62c/demo_axes_rgb.py b/_downloads/d9664ae87b421b5501a2d6fbc28db62c/demo_axes_rgb.py deleted file mode 100644 index b7e51e6a68f..00000000000 --- a/_downloads/d9664ae87b421b5501a2d6fbc28db62c/demo_axes_rgb.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -============= -Demo Axes RGB -============= - -RGBAxes to show RGB composite images. -""" -import numpy as np -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.axes_rgb import make_rgb_axes, RGBAxes - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def get_rgb(): - Z, extent = get_demo_image() - - Z[Z < 0] = 0. - Z = Z / Z.max() - - R = Z[:13, :13] - G = Z[2:, 2:] - B = Z[:13, 2:] - - return R, G, B - - -def make_cube(r, g, b): - ny, nx = r.shape - R = np.zeros([ny, nx, 3], dtype="d") - R[:, :, 0] = r - G = np.zeros_like(R) - G[:, :, 1] = g - B = np.zeros_like(R) - B[:, :, 2] = b - - RGB = R + G + B - - return R, G, B, RGB - - -def demo_rgb(): - fig, ax = plt.subplots() - ax_r, ax_g, ax_b = make_rgb_axes(ax, pad=0.02) - - r, g, b = get_rgb() - im_r, im_g, im_b, im_rgb = make_cube(r, g, b) - kwargs = dict(origin="lower", interpolation="nearest") - ax.imshow(im_rgb, **kwargs) - ax_r.imshow(im_r, **kwargs) - ax_g.imshow(im_g, **kwargs) - ax_b.imshow(im_b, **kwargs) - - -def demo_rgb2(): - fig = plt.figure() - ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8], pad=0.0) - - r, g, b = get_rgb() - kwargs = dict(origin="lower", interpolation="nearest") - ax.imshow_rgb(r, g, b, **kwargs) - - ax.RGB.set_xlim(0., 9.5) - ax.RGB.set_ylim(0.9, 10.6) - - for ax1 in [ax.RGB, ax.R, ax.G, ax.B]: - ax1.tick_params(axis='both', direction='in') - for sp1 in ax1.spines.values(): - sp1.set_color("w") - for tick in ax1.xaxis.get_major_ticks() + ax1.yaxis.get_major_ticks(): - tick.tick1line.set_markeredgecolor("w") - tick.tick2line.set_markeredgecolor("w") - - return ax - - -demo_rgb() -demo_rgb2() - -plt.show() diff --git a/_downloads/d97169a8850133651928362d22fa2ffb/mixed_subplots.py b/_downloads/d97169a8850133651928362d22fa2ffb/mixed_subplots.py deleted file mode 120000 index 9e3a4ddd90f..00000000000 --- a/_downloads/d97169a8850133651928362d22fa2ffb/mixed_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d97169a8850133651928362d22fa2ffb/mixed_subplots.py \ No newline at end of file diff --git a/_downloads/d98c7b71395bde3d79c4a572e89495ee/scatter_symbol.ipynb b/_downloads/d98c7b71395bde3d79c4a572e89495ee/scatter_symbol.ipynb deleted file mode 100644 index 87ebc55d905..00000000000 --- a/_downloads/d98c7b71395bde3d79c4a572e89495ee/scatter_symbol.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Symbol\n\n\nScatter plot with clover symbols.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx = np.arange(0.0, 50.0, 2.0)\ny = x ** 1.3 + np.random.rand(*x.shape) * 30.0\ns = np.random.rand(*x.shape) * 800 + 500\n\nplt.scatter(x, y, s, c=\"g\", alpha=0.5, marker=r'$\\clubsuit$',\n label=\"Luck\")\nplt.xlabel(\"Leprechauns\")\nplt.ylabel(\"Gold\")\nplt.legend(loc='upper left')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/d99e984bd3d62e2e294dc546c46f0234/anchored_box04.py b/_downloads/d99e984bd3d62e2e294dc546c46f0234/anchored_box04.py deleted file mode 120000 index 3316cc57d19..00000000000 --- a/_downloads/d99e984bd3d62e2e294dc546c46f0234/anchored_box04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/d99e984bd3d62e2e294dc546c46f0234/anchored_box04.py \ No newline at end of file diff --git a/_downloads/d9a49a8d4c331ce1df9ea376ce24554a/cohere.py b/_downloads/d9a49a8d4c331ce1df9ea376ce24554a/cohere.py deleted file mode 120000 index 140a6b43d6f..00000000000 --- a/_downloads/d9a49a8d4c331ce1df9ea376ce24554a/cohere.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d9a49a8d4c331ce1df9ea376ce24554a/cohere.py \ No newline at end of file diff --git a/_downloads/d9a4c1cd8c62f9590e8c7b030c1b234f/tick-formatters.py b/_downloads/d9a4c1cd8c62f9590e8c7b030c1b234f/tick-formatters.py deleted file mode 100644 index a5ce0927ffe..00000000000 --- a/_downloads/d9a4c1cd8c62f9590e8c7b030c1b234f/tick-formatters.py +++ /dev/null @@ -1,108 +0,0 @@ -""" -=============== -Tick formatters -=============== - -Show the different tick formatters. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker - - -# Setup a plot such that only the bottom spine is shown -def setup(ax): - ax.spines['right'].set_color('none') - ax.spines['left'].set_color('none') - ax.yaxis.set_major_locator(ticker.NullLocator()) - ax.spines['top'].set_color('none') - ax.xaxis.set_ticks_position('bottom') - ax.tick_params(which='major', width=1.00, length=5) - ax.tick_params(which='minor', width=0.75, length=2.5, labelsize=10) - ax.set_xlim(0, 5) - ax.set_ylim(0, 1) - ax.patch.set_alpha(0.0) - - -fig = plt.figure(figsize=(8, 6)) -n = 7 - -# Null formatter -ax = fig.add_subplot(n, 1, 1) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.NullFormatter()) -ax.xaxis.set_minor_formatter(ticker.NullFormatter()) -ax.text(0.0, 0.1, "NullFormatter()", fontsize=16, transform=ax.transAxes) - -# Fixed formatter -ax = fig.add_subplot(n, 1, 2) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.0)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -majors = ["", "0", "1", "2", "3", "4", "5"] -ax.xaxis.set_major_formatter(ticker.FixedFormatter(majors)) -minors = [""] + ["%.2f" % (x-int(x)) if (x-int(x)) - else "" for x in np.arange(0, 5, 0.25)] -ax.xaxis.set_minor_formatter(ticker.FixedFormatter(minors)) -ax.text(0.0, 0.1, "FixedFormatter(['', '0', '1', ...])", - fontsize=15, transform=ax.transAxes) - - -# FuncFormatter can be used as a decorator -@ticker.FuncFormatter -def major_formatter(x, pos): - return "[%.2f]" % x - - -ax = fig.add_subplot(n, 1, 3) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(major_formatter) -ax.text(0.0, 0.1, 'FuncFormatter(lambda x, pos: "[%.2f]" % x)', - fontsize=15, transform=ax.transAxes) - - -# FormatStr formatter -ax = fig.add_subplot(n, 1, 4) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.FormatStrFormatter(">%d<")) -ax.text(0.0, 0.1, "FormatStrFormatter('>%d<')", - fontsize=15, transform=ax.transAxes) - -# Scalar formatter -ax = fig.add_subplot(n, 1, 5) -setup(ax) -ax.xaxis.set_major_locator(ticker.AutoLocator()) -ax.xaxis.set_minor_locator(ticker.AutoMinorLocator()) -ax.xaxis.set_major_formatter(ticker.ScalarFormatter(useMathText=True)) -ax.text(0.0, 0.1, "ScalarFormatter()", fontsize=15, transform=ax.transAxes) - -# StrMethod formatter -ax = fig.add_subplot(n, 1, 6) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.StrMethodFormatter("{x}")) -ax.text(0.0, 0.1, "StrMethodFormatter('{x}')", - fontsize=15, transform=ax.transAxes) - -# Percent formatter -ax = fig.add_subplot(n, 1, 7) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(1.00)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25)) -ax.xaxis.set_major_formatter(ticker.PercentFormatter(xmax=5)) -ax.text(0.0, 0.1, "PercentFormatter(xmax=5)", - fontsize=15, transform=ax.transAxes) - -# Push the top of the top axes outside the figure because we only show the -# bottom spine. -fig.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05) - -plt.show() diff --git a/_downloads/d9affd4778c6449c175e11db4270dc15/annotation_demo.py b/_downloads/d9affd4778c6449c175e11db4270dc15/annotation_demo.py deleted file mode 120000 index ff8dec970f0..00000000000 --- a/_downloads/d9affd4778c6449c175e11db4270dc15/annotation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d9affd4778c6449c175e11db4270dc15/annotation_demo.py \ No newline at end of file diff --git a/_downloads/d9b65d60b61233554e1a6123317baad5/violin.py b/_downloads/d9b65d60b61233554e1a6123317baad5/violin.py deleted file mode 120000 index 826101d4e71..00000000000 --- a/_downloads/d9b65d60b61233554e1a6123317baad5/violin.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d9b65d60b61233554e1a6123317baad5/violin.py \ No newline at end of file diff --git a/_downloads/d9bde68dd85cd9a27505fac628ac7fb2/annotate_text_arrow.py b/_downloads/d9bde68dd85cd9a27505fac628ac7fb2/annotate_text_arrow.py deleted file mode 120000 index 6a77e3faa21..00000000000 --- a/_downloads/d9bde68dd85cd9a27505fac628ac7fb2/annotate_text_arrow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d9bde68dd85cd9a27505fac628ac7fb2/annotate_text_arrow.py \ No newline at end of file diff --git a/_downloads/d9cc4b8b10fc080d7c8765aac58a3236/random_walk.py b/_downloads/d9cc4b8b10fc080d7c8765aac58a3236/random_walk.py deleted file mode 120000 index 3b6cae03099..00000000000 --- a/_downloads/d9cc4b8b10fc080d7c8765aac58a3236/random_walk.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/d9cc4b8b10fc080d7c8765aac58a3236/random_walk.py \ No newline at end of file diff --git a/_downloads/d9ce914b8e2b8f41799e52b8103d3f3c/pipong.ipynb b/_downloads/d9ce914b8e2b8f41799e52b8103d3f3c/pipong.ipynb deleted file mode 120000 index fd40b2a80fc..00000000000 --- a/_downloads/d9ce914b8e2b8f41799e52b8103d3f3c/pipong.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d9ce914b8e2b8f41799e52b8103d3f3c/pipong.ipynb \ No newline at end of file diff --git a/_downloads/d9d01afd50b8f1f2505985b9388634fb/axis_equal_demo.py b/_downloads/d9d01afd50b8f1f2505985b9388634fb/axis_equal_demo.py deleted file mode 120000 index b72b730bb57..00000000000 --- a/_downloads/d9d01afd50b8f1f2505985b9388634fb/axis_equal_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/d9d01afd50b8f1f2505985b9388634fb/axis_equal_demo.py \ No newline at end of file diff --git a/_downloads/d9dd5e65006983f0c92c03e90e40a0cf/cursor_demo_sgskip.py b/_downloads/d9dd5e65006983f0c92c03e90e40a0cf/cursor_demo_sgskip.py deleted file mode 120000 index 664b7a70055..00000000000 --- a/_downloads/d9dd5e65006983f0c92c03e90e40a0cf/cursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/d9dd5e65006983f0c92c03e90e40a0cf/cursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/d9e147e69a16616252ca484597c980ea/tick-formatters.ipynb b/_downloads/d9e147e69a16616252ca484597c980ea/tick-formatters.ipynb deleted file mode 120000 index b96d562e960..00000000000 --- a/_downloads/d9e147e69a16616252ca484597c980ea/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/d9e147e69a16616252ca484597c980ea/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/d9e6c4d8d50352510f114f4486bded2b/date_demo_rrule.ipynb b/_downloads/d9e6c4d8d50352510f114f4486bded2b/date_demo_rrule.ipynb deleted file mode 120000 index e851799f447..00000000000 --- a/_downloads/d9e6c4d8d50352510f114f4486bded2b/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/d9e6c4d8d50352510f114f4486bded2b/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/d9e81a088c3d561a9f2a7f2d377392aa/3d_bars.py b/_downloads/d9e81a088c3d561a9f2a7f2d377392aa/3d_bars.py deleted file mode 120000 index 49236c94ed3..00000000000 --- a/_downloads/d9e81a088c3d561a9f2a7f2d377392aa/3d_bars.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/d9e81a088c3d561a9f2a7f2d377392aa/3d_bars.py \ No newline at end of file diff --git a/_downloads/da037f98ef935f3e174d151b92591524/two_scales.py b/_downloads/da037f98ef935f3e174d151b92591524/two_scales.py deleted file mode 120000 index 380a58e8638..00000000000 --- a/_downloads/da037f98ef935f3e174d151b92591524/two_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da037f98ef935f3e174d151b92591524/two_scales.py \ No newline at end of file diff --git a/_downloads/da0ea20b7c73aa5fb08b377c609da995/axes_grid.py b/_downloads/da0ea20b7c73aa5fb08b377c609da995/axes_grid.py deleted file mode 120000 index 9c03a735f13..00000000000 --- a/_downloads/da0ea20b7c73aa5fb08b377c609da995/axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da0ea20b7c73aa5fb08b377c609da995/axes_grid.py \ No newline at end of file diff --git a/_downloads/da232f10a9248d49ad339868674d2268/path_tutorial.py b/_downloads/da232f10a9248d49ad339868674d2268/path_tutorial.py deleted file mode 100644 index e0444c5e1ca..00000000000 --- a/_downloads/da232f10a9248d49ad339868674d2268/path_tutorial.py +++ /dev/null @@ -1,220 +0,0 @@ -""" -============= -Path Tutorial -============= - -Defining paths in your Matplotlib visualization. - -The object underlying all of the :mod:`matplotlib.patch` objects is -the :class:`~matplotlib.path.Path`, which supports the standard set of -moveto, lineto, curveto commands to draw simple and compound outlines -consisting of line segments and splines. The ``Path`` is instantiated -with a (N,2) array of (x,y) vertices, and a N-length array of path -codes. For example to draw the unit rectangle from (0,0) to (1,1), we -could use this code -""" - -import matplotlib.pyplot as plt -from matplotlib.path import Path -import matplotlib.patches as patches - -verts = [ - (0., 0.), # left, bottom - (0., 1.), # left, top - (1., 1.), # right, top - (1., 0.), # right, bottom - (0., 0.), # ignored -] - -codes = [ - Path.MOVETO, - Path.LINETO, - Path.LINETO, - Path.LINETO, - Path.CLOSEPOLY, -] - -path = Path(verts, codes) - -fig, ax = plt.subplots() -patch = patches.PathPatch(path, facecolor='orange', lw=2) -ax.add_patch(patch) -ax.set_xlim(-2, 2) -ax.set_ylim(-2, 2) -plt.show() - - -############################################################################### -# The following path codes are recognized -# -# ============== ================================= ==================================================================================================================== -# Code Vertices Description -# ============== ================================= ==================================================================================================================== -# ``STOP`` 1 (ignored) A marker for the end of the entire path (currently not required and ignored) -# ``MOVETO`` 1 Pick up the pen and move to the given vertex. -# ``LINETO`` 1 Draw a line from the current position to the given vertex. -# ``CURVE3`` 2 (1 control point, 1 endpoint) Draw a quadratic Bézier curve from the current position, with the given control point, to the given end point. -# ``CURVE4`` 3 (2 control points, 1 endpoint) Draw a cubic Bézier curve from the current position, with the given control points, to the given end point. -# ``CLOSEPOLY`` 1 (point itself is ignored) Draw a line segment to the start point of the current polyline. -# ============== ================================= ==================================================================================================================== -# -# -# .. path-curves: -# -# -# Bézier example -# ============== -# -# Some of the path components require multiple vertices to specify them: -# for example CURVE 3 is a `bézier -# `_ curve with one -# control point and one end point, and CURVE4 has three vertices for the -# two control points and the end point. The example below shows a -# CURVE4 Bézier spline -- the bézier curve will be contained in the -# convex hull of the start point, the two control points, and the end -# point - -verts = [ - (0., 0.), # P0 - (0.2, 1.), # P1 - (1., 0.8), # P2 - (0.8, 0.), # P3 -] - -codes = [ - Path.MOVETO, - Path.CURVE4, - Path.CURVE4, - Path.CURVE4, -] - -path = Path(verts, codes) - -fig, ax = plt.subplots() -patch = patches.PathPatch(path, facecolor='none', lw=2) -ax.add_patch(patch) - -xs, ys = zip(*verts) -ax.plot(xs, ys, 'x--', lw=2, color='black', ms=10) - -ax.text(-0.05, -0.05, 'P0') -ax.text(0.15, 1.05, 'P1') -ax.text(1.05, 0.85, 'P2') -ax.text(0.85, -0.05, 'P3') - -ax.set_xlim(-0.1, 1.1) -ax.set_ylim(-0.1, 1.1) -plt.show() - -############################################################################### -# .. compound_paths: -# -# Compound paths -# ============== -# -# All of the simple patch primitives in matplotlib, Rectangle, Circle, -# Polygon, etc, are implemented with simple path. Plotting functions -# like :meth:`~matplotlib.axes.Axes.hist` and -# :meth:`~matplotlib.axes.Axes.bar`, which create a number of -# primitives, e.g., a bunch of Rectangles, can usually be implemented more -# efficiently using a compound path. The reason ``bar`` creates a list -# of rectangles and not a compound path is largely historical: the -# :class:`~matplotlib.path.Path` code is comparatively new and ``bar`` -# predates it. While we could change it now, it would break old code, -# so here we will cover how to create compound paths, replacing the -# functionality in bar, in case you need to do so in your own code for -# efficiency reasons, e.g., you are creating an animated bar plot. -# -# We will make the histogram chart by creating a series of rectangles -# for each histogram bar: the rectangle width is the bin width and the -# rectangle height is the number of datapoints in that bin. First we'll -# create some random normally distributed data and compute the -# histogram. Because numpy returns the bin edges and not centers, the -# length of ``bins`` is 1 greater than the length of ``n`` in the -# example below:: -# -# # histogram our data with numpy -# data = np.random.randn(1000) -# n, bins = np.histogram(data, 100) -# -# We'll now extract the corners of the rectangles. Each of the -# ``left``, ``bottom``, etc, arrays below is ``len(n)``, where ``n`` is -# the array of counts for each histogram bar:: -# -# # get the corners of the rectangles for the histogram -# left = np.array(bins[:-1]) -# right = np.array(bins[1:]) -# bottom = np.zeros(len(left)) -# top = bottom + n -# -# Now we have to construct our compound path, which will consist of a -# series of ``MOVETO``, ``LINETO`` and ``CLOSEPOLY`` for each rectangle. -# For each rectangle, we need 5 vertices: 1 for the ``MOVETO``, 3 for -# the ``LINETO``, and 1 for the ``CLOSEPOLY``. As indicated in the -# table above, the vertex for the closepoly is ignored but we still need -# it to keep the codes aligned with the vertices:: -# -# nverts = nrects*(1+3+1) -# verts = np.zeros((nverts, 2)) -# codes = np.ones(nverts, int) * path.Path.LINETO -# codes[0::5] = path.Path.MOVETO -# codes[4::5] = path.Path.CLOSEPOLY -# verts[0::5,0] = left -# verts[0::5,1] = bottom -# verts[1::5,0] = left -# verts[1::5,1] = top -# verts[2::5,0] = right -# verts[2::5,1] = top -# verts[3::5,0] = right -# verts[3::5,1] = bottom -# -# All that remains is to create the path, attach it to a -# :class:`~matplotlib.patch.PathPatch`, and add it to our axes:: -# -# barpath = path.Path(verts, codes) -# patch = patches.PathPatch(barpath, facecolor='green', -# edgecolor='yellow', alpha=0.5) -# ax.add_patch(patch) - -import numpy as np -import matplotlib.patches as patches -import matplotlib.path as path - -fig, ax = plt.subplots() -# Fixing random state for reproducibility -np.random.seed(19680801) - -# histogram our data with numpy -data = np.random.randn(1000) -n, bins = np.histogram(data, 100) - -# get the corners of the rectangles for the histogram -left = np.array(bins[:-1]) -right = np.array(bins[1:]) -bottom = np.zeros(len(left)) -top = bottom + n -nrects = len(left) - -nverts = nrects*(1+3+1) -verts = np.zeros((nverts, 2)) -codes = np.ones(nverts, int) * path.Path.LINETO -codes[0::5] = path.Path.MOVETO -codes[4::5] = path.Path.CLOSEPOLY -verts[0::5, 0] = left -verts[0::5, 1] = bottom -verts[1::5, 0] = left -verts[1::5, 1] = top -verts[2::5, 0] = right -verts[2::5, 1] = top -verts[3::5, 0] = right -verts[3::5, 1] = bottom - -barpath = path.Path(verts, codes) -patch = patches.PathPatch(barpath, facecolor='green', - edgecolor='yellow', alpha=0.5) -ax.add_patch(patch) - -ax.set_xlim(left[0], right[-1]) -ax.set_ylim(bottom.min(), top.max()) - -plt.show() diff --git a/_downloads/da23e6ebd47d28dad6b4ec42372035d0/watermark_image.py b/_downloads/da23e6ebd47d28dad6b4ec42372035d0/watermark_image.py deleted file mode 100644 index 38a3aa0d965..00000000000 --- a/_downloads/da23e6ebd47d28dad6b4ec42372035d0/watermark_image.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=============== -Watermark image -=============== - -Using a PNG file as a watermark. -""" - -import numpy as np -import matplotlib.cbook as cbook -import matplotlib.image as image -import matplotlib.pyplot as plt - - -with cbook.get_sample_data('logo2.png') as file: - im = image.imread(file) - -fig, ax = plt.subplots() - -ax.plot(np.sin(10 * np.linspace(0, 1)), '-o', ms=20, alpha=0.7, mfc='orange') -ax.grid() -fig.figimage(im, 10, 10, zorder=3, alpha=.5) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.image -matplotlib.image.imread -matplotlib.pyplot.imread -matplotlib.figure.Figure.figimage diff --git a/_downloads/da263ac203c185137d8facbf151896ed/legend.py b/_downloads/da263ac203c185137d8facbf151896ed/legend.py deleted file mode 120000 index 5c58852003a..00000000000 --- a/_downloads/da263ac203c185137d8facbf151896ed/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da263ac203c185137d8facbf151896ed/legend.py \ No newline at end of file diff --git a/_downloads/da2af2dcf0b593ab8442b68720cb38a3/scatter_star_poly.ipynb b/_downloads/da2af2dcf0b593ab8442b68720cb38a3/scatter_star_poly.ipynb deleted file mode 100644 index c0b9336c752..00000000000 --- a/_downloads/da2af2dcf0b593ab8442b68720cb38a3/scatter_star_poly.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Star Poly\n\n\nCreate multiple scatter plots with different\nstar symbols.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx = np.random.rand(10)\ny = np.random.rand(10)\nz = np.sqrt(x**2 + y**2)\n\nplt.subplot(321)\nplt.scatter(x, y, s=80, c=z, marker=\">\")\n\nplt.subplot(322)\nplt.scatter(x, y, s=80, c=z, marker=(5, 0))\n\nverts = np.array([[-1, -1], [1, -1], [1, 1], [-1, -1]])\nplt.subplot(323)\nplt.scatter(x, y, s=80, c=z, marker=verts)\n\nplt.subplot(324)\nplt.scatter(x, y, s=80, c=z, marker=(5, 1))\n\nplt.subplot(325)\nplt.scatter(x, y, s=80, c=z, marker='+')\n\nplt.subplot(326)\nplt.scatter(x, y, s=80, c=z, marker=(5, 2))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/da372a225813698375af10d8f9f02c64/subplot_demo.py b/_downloads/da372a225813698375af10d8f9f02c64/subplot_demo.py deleted file mode 100644 index 836476829a6..00000000000 --- a/_downloads/da372a225813698375af10d8f9f02c64/subplot_demo.py +++ /dev/null @@ -1,28 +0,0 @@ -""" -================== -Basic Subplot Demo -================== - -Demo with two subplots. -For more options, see -:doc:`/gallery/subplots_axes_and_figures/subplots_demo` -""" -import numpy as np -import matplotlib.pyplot as plt - -# Data for plotting -x1 = np.linspace(0.0, 5.0) -x2 = np.linspace(0.0, 2.0) -y1 = np.cos(2 * np.pi * x1) * np.exp(-x1) -y2 = np.cos(2 * np.pi * x2) - -# Create two subplots sharing y axis -fig, (ax1, ax2) = plt.subplots(2, sharey=True) - -ax1.plot(x1, y1, 'ko-') -ax1.set(title='A tale of 2 subplots', ylabel='Damped oscillation') - -ax2.plot(x2, y2, 'r.-') -ax2.set(xlabel='time (s)', ylabel='Undamped') - -plt.show() diff --git a/_downloads/da38f4c140747dec33d1827e5e342cd1/colorbar_tick_labelling_demo.ipynb b/_downloads/da38f4c140747dec33d1827e5e342cd1/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index 28e05f84c51..00000000000 --- a/_downloads/da38f4c140747dec33d1827e5e342cd1/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/da38f4c140747dec33d1827e5e342cd1/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/da42a975b2f06fa49b57d02a18544f14/custom_ticker1.py b/_downloads/da42a975b2f06fa49b57d02a18544f14/custom_ticker1.py deleted file mode 120000 index e47de155f55..00000000000 --- a/_downloads/da42a975b2f06fa49b57d02a18544f14/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da42a975b2f06fa49b57d02a18544f14/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/da43aaa790b9547d8c76ccf813fb95b5/artist_reference.ipynb b/_downloads/da43aaa790b9547d8c76ccf813fb95b5/artist_reference.ipynb deleted file mode 100644 index 10eeebd51f9..00000000000 --- a/_downloads/da43aaa790b9547d8c76ccf813fb95b5/artist_reference.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Reference for Matplotlib artists\n\n\nThis example displays several of Matplotlib's graphics primitives (artists)\ndrawn using matplotlib API. A full list of artists and the documentation is\navailable at `the artist API `.\n\nCopyright (c) 2010, Bartosz Telenczuk\nBSD License\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.path as mpath\nimport matplotlib.lines as mlines\nimport matplotlib.patches as mpatches\nfrom matplotlib.collections import PatchCollection\n\n\ndef label(xy, text):\n y = xy[1] - 0.15 # shift y-value for label so that it's below the artist\n plt.text(xy[0], y, text, ha=\"center\", family='sans-serif', size=14)\n\n\nfig, ax = plt.subplots()\n# create 3x3 grid to plot the artists\ngrid = np.mgrid[0.2:0.8:3j, 0.2:0.8:3j].reshape(2, -1).T\n\npatches = []\n\n# add a circle\ncircle = mpatches.Circle(grid[0], 0.1, ec=\"none\")\npatches.append(circle)\nlabel(grid[0], \"Circle\")\n\n# add a rectangle\nrect = mpatches.Rectangle(grid[1] - [0.025, 0.05], 0.05, 0.1, ec=\"none\")\npatches.append(rect)\nlabel(grid[1], \"Rectangle\")\n\n# add a wedge\nwedge = mpatches.Wedge(grid[2], 0.1, 30, 270, ec=\"none\")\npatches.append(wedge)\nlabel(grid[2], \"Wedge\")\n\n# add a Polygon\npolygon = mpatches.RegularPolygon(grid[3], 5, 0.1)\npatches.append(polygon)\nlabel(grid[3], \"Polygon\")\n\n# add an ellipse\nellipse = mpatches.Ellipse(grid[4], 0.2, 0.1)\npatches.append(ellipse)\nlabel(grid[4], \"Ellipse\")\n\n# add an arrow\narrow = mpatches.Arrow(grid[5, 0] - 0.05, grid[5, 1] - 0.05, 0.1, 0.1,\n width=0.1)\npatches.append(arrow)\nlabel(grid[5], \"Arrow\")\n\n# add a path patch\nPath = mpath.Path\npath_data = [\n (Path.MOVETO, [0.018, -0.11]),\n (Path.CURVE4, [-0.031, -0.051]),\n (Path.CURVE4, [-0.115, 0.073]),\n (Path.CURVE4, [-0.03, 0.073]),\n (Path.LINETO, [-0.011, 0.039]),\n (Path.CURVE4, [0.043, 0.121]),\n (Path.CURVE4, [0.075, -0.005]),\n (Path.CURVE4, [0.035, -0.027]),\n (Path.CLOSEPOLY, [0.018, -0.11])]\ncodes, verts = zip(*path_data)\npath = mpath.Path(verts + grid[6], codes)\npatch = mpatches.PathPatch(path)\npatches.append(patch)\nlabel(grid[6], \"PathPatch\")\n\n# add a fancy box\nfancybox = mpatches.FancyBboxPatch(\n grid[7] - [0.025, 0.05], 0.05, 0.1,\n boxstyle=mpatches.BoxStyle(\"Round\", pad=0.02))\npatches.append(fancybox)\nlabel(grid[7], \"FancyBboxPatch\")\n\n# add a line\nx, y = np.array([[-0.06, 0.0, 0.1], [0.05, -0.05, 0.05]])\nline = mlines.Line2D(x + grid[8, 0], y + grid[8, 1], lw=5., alpha=0.3)\nlabel(grid[8], \"Line2D\")\n\ncolors = np.linspace(0, 1, len(patches))\ncollection = PatchCollection(patches, cmap=plt.cm.hsv, alpha=0.3)\ncollection.set_array(np.array(colors))\nax.add_collection(collection)\nax.add_line(line)\n\nplt.axis('equal')\nplt.axis('off')\nplt.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.lines\nmatplotlib.lines.Line2D\nmatplotlib.patches\nmatplotlib.patches.Circle\nmatplotlib.patches.Ellipse\nmatplotlib.patches.Wedge\nmatplotlib.patches.Rectangle\nmatplotlib.patches.Arrow\nmatplotlib.patches.PathPatch\nmatplotlib.patches.FancyBboxPatch\nmatplotlib.patches.RegularPolygon\nmatplotlib.collections\nmatplotlib.collections.PatchCollection\nmatplotlib.cm.ScalarMappable.set_array\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.add_line" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/da50ac7b079a84f091f64d6837341593/annotate_simple04.ipynb b/_downloads/da50ac7b079a84f091f64d6837341593/annotate_simple04.ipynb deleted file mode 120000 index b8d91aa7f0e..00000000000 --- a/_downloads/da50ac7b079a84f091f64d6837341593/annotate_simple04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da50ac7b079a84f091f64d6837341593/annotate_simple04.ipynb \ No newline at end of file diff --git a/_downloads/da591af2b729b50631fc797dd0f8bc88/connect_simple01.ipynb b/_downloads/da591af2b729b50631fc797dd0f8bc88/connect_simple01.ipynb deleted file mode 120000 index 1e3177c8b5b..00000000000 --- a/_downloads/da591af2b729b50631fc797dd0f8bc88/connect_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/da591af2b729b50631fc797dd0f8bc88/connect_simple01.ipynb \ No newline at end of file diff --git a/_downloads/da61966468df85002b1ed961cd057067/stem_plot.ipynb b/_downloads/da61966468df85002b1ed961cd057067/stem_plot.ipynb deleted file mode 120000 index 92232ff4f80..00000000000 --- a/_downloads/da61966468df85002b1ed961cd057067/stem_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/da61966468df85002b1ed961cd057067/stem_plot.ipynb \ No newline at end of file diff --git a/_downloads/da6930bc5421b788de76bab0070fb56a/pyplot_three.ipynb b/_downloads/da6930bc5421b788de76bab0070fb56a/pyplot_three.ipynb deleted file mode 120000 index b859a10e3fa..00000000000 --- a/_downloads/da6930bc5421b788de76bab0070fb56a/pyplot_three.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/da6930bc5421b788de76bab0070fb56a/pyplot_three.ipynb \ No newline at end of file diff --git a/_downloads/da7277d081968dcbee5933cfecaf3489/errorbars_and_boxes.py b/_downloads/da7277d081968dcbee5933cfecaf3489/errorbars_and_boxes.py deleted file mode 120000 index 5a06450a17c..00000000000 --- a/_downloads/da7277d081968dcbee5933cfecaf3489/errorbars_and_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da7277d081968dcbee5933cfecaf3489/errorbars_and_boxes.py \ No newline at end of file diff --git a/_downloads/da72fa5872cf9921395b856dd6674e43/aspect_loglog.ipynb b/_downloads/da72fa5872cf9921395b856dd6674e43/aspect_loglog.ipynb deleted file mode 120000 index a230b2be1e3..00000000000 --- a/_downloads/da72fa5872cf9921395b856dd6674e43/aspect_loglog.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/da72fa5872cf9921395b856dd6674e43/aspect_loglog.ipynb \ No newline at end of file diff --git a/_downloads/da831f7b9edfecd92479001433f8446b/simple_axes_divider3.py b/_downloads/da831f7b9edfecd92479001433f8446b/simple_axes_divider3.py deleted file mode 120000 index 6547f9f15d8..00000000000 --- a/_downloads/da831f7b9edfecd92479001433f8446b/simple_axes_divider3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da831f7b9edfecd92479001433f8446b/simple_axes_divider3.py \ No newline at end of file diff --git a/_downloads/da849a0c4ef3902883df5d0cb7e42c6d/animate_decay.py b/_downloads/da849a0c4ef3902883df5d0cb7e42c6d/animate_decay.py deleted file mode 120000 index 7540ac0d251..00000000000 --- a/_downloads/da849a0c4ef3902883df5d0cb7e42c6d/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/da849a0c4ef3902883df5d0cb7e42c6d/animate_decay.py \ No newline at end of file diff --git a/_downloads/da8cacf827800cc7398495a527da865d/path_tutorial.ipynb b/_downloads/da8cacf827800cc7398495a527da865d/path_tutorial.ipynb deleted file mode 100644 index e8cc2c3a4b3..00000000000 --- a/_downloads/da8cacf827800cc7398495a527da865d/path_tutorial.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Path Tutorial\n\n\nDefining paths in your Matplotlib visualization.\n\nThe object underlying all of the :mod:`matplotlib.patch` objects is\nthe :class:`~matplotlib.path.Path`, which supports the standard set of\nmoveto, lineto, curveto commands to draw simple and compound outlines\nconsisting of line segments and splines. The ``Path`` is instantiated\nwith a (N,2) array of (x,y) vertices, and a N-length array of path\ncodes. For example to draw the unit rectangle from (0,0) to (1,1), we\ncould use this code\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.path import Path\nimport matplotlib.patches as patches\n\nverts = [\n (0., 0.), # left, bottom\n (0., 1.), # left, top\n (1., 1.), # right, top\n (1., 0.), # right, bottom\n (0., 0.), # ignored\n]\n\ncodes = [\n Path.MOVETO,\n Path.LINETO,\n Path.LINETO,\n Path.LINETO,\n Path.CLOSEPOLY,\n]\n\npath = Path(verts, codes)\n\nfig, ax = plt.subplots()\npatch = patches.PathPatch(path, facecolor='orange', lw=2)\nax.add_patch(patch)\nax.set_xlim(-2, 2)\nax.set_ylim(-2, 2)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The following path codes are recognized\n\n============== ================================= ====================================================================================================================\nCode Vertices Description\n============== ================================= ====================================================================================================================\n``STOP`` 1 (ignored) A marker for the end of the entire path (currently not required and ignored)\n``MOVETO`` 1 Pick up the pen and move to the given vertex.\n``LINETO`` 1 Draw a line from the current position to the given vertex.\n``CURVE3`` 2 (1 control point, 1 endpoint) Draw a quadratic B\u00e9zier curve from the current position, with the given control point, to the given end point.\n``CURVE4`` 3 (2 control points, 1 endpoint) Draw a cubic B\u00e9zier curve from the current position, with the given control points, to the given end point.\n``CLOSEPOLY`` 1 (point itself is ignored) Draw a line segment to the start point of the current polyline.\n============== ================================= ====================================================================================================================\n\n\n.. path-curves:\n\n\nB\u00e9zier example\n==============\n\nSome of the path components require multiple vertices to specify them:\nfor example CURVE 3 is a `b\u00e9zier\n`_ curve with one\ncontrol point and one end point, and CURVE4 has three vertices for the\ntwo control points and the end point. The example below shows a\nCURVE4 B\u00e9zier spline -- the b\u00e9zier curve will be contained in the\nconvex hull of the start point, the two control points, and the end\npoint\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "verts = [\n (0., 0.), # P0\n (0.2, 1.), # P1\n (1., 0.8), # P2\n (0.8, 0.), # P3\n]\n\ncodes = [\n Path.MOVETO,\n Path.CURVE4,\n Path.CURVE4,\n Path.CURVE4,\n]\n\npath = Path(verts, codes)\n\nfig, ax = plt.subplots()\npatch = patches.PathPatch(path, facecolor='none', lw=2)\nax.add_patch(patch)\n\nxs, ys = zip(*verts)\nax.plot(xs, ys, 'x--', lw=2, color='black', ms=10)\n\nax.text(-0.05, -0.05, 'P0')\nax.text(0.15, 1.05, 'P1')\nax.text(1.05, 0.85, 'P2')\nax.text(0.85, -0.05, 'P3')\n\nax.set_xlim(-0.1, 1.1)\nax.set_ylim(-0.1, 1.1)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ".. compound_paths:\n\nCompound paths\n==============\n\nAll of the simple patch primitives in matplotlib, Rectangle, Circle,\nPolygon, etc, are implemented with simple path. Plotting functions\nlike :meth:`~matplotlib.axes.Axes.hist` and\n:meth:`~matplotlib.axes.Axes.bar`, which create a number of\nprimitives, e.g., a bunch of Rectangles, can usually be implemented more\nefficiently using a compound path. The reason ``bar`` creates a list\nof rectangles and not a compound path is largely historical: the\n:class:`~matplotlib.path.Path` code is comparatively new and ``bar``\npredates it. While we could change it now, it would break old code,\nso here we will cover how to create compound paths, replacing the\nfunctionality in bar, in case you need to do so in your own code for\nefficiency reasons, e.g., you are creating an animated bar plot.\n\nWe will make the histogram chart by creating a series of rectangles\nfor each histogram bar: the rectangle width is the bin width and the\nrectangle height is the number of datapoints in that bin. First we'll\ncreate some random normally distributed data and compute the\nhistogram. Because numpy returns the bin edges and not centers, the\nlength of ``bins`` is 1 greater than the length of ``n`` in the\nexample below::\n\n # histogram our data with numpy\n data = np.random.randn(1000)\n n, bins = np.histogram(data, 100)\n\nWe'll now extract the corners of the rectangles. Each of the\n``left``, ``bottom``, etc, arrays below is ``len(n)``, where ``n`` is\nthe array of counts for each histogram bar::\n\n # get the corners of the rectangles for the histogram\n left = np.array(bins[:-1])\n right = np.array(bins[1:])\n bottom = np.zeros(len(left))\n top = bottom + n\n\nNow we have to construct our compound path, which will consist of a\nseries of ``MOVETO``, ``LINETO`` and ``CLOSEPOLY`` for each rectangle.\nFor each rectangle, we need 5 vertices: 1 for the ``MOVETO``, 3 for\nthe ``LINETO``, and 1 for the ``CLOSEPOLY``. As indicated in the\ntable above, the vertex for the closepoly is ignored but we still need\nit to keep the codes aligned with the vertices::\n\n nverts = nrects*(1+3+1)\n verts = np.zeros((nverts, 2))\n codes = np.ones(nverts, int) * path.Path.LINETO\n codes[0::5] = path.Path.MOVETO\n codes[4::5] = path.Path.CLOSEPOLY\n verts[0::5,0] = left\n verts[0::5,1] = bottom\n verts[1::5,0] = left\n verts[1::5,1] = top\n verts[2::5,0] = right\n verts[2::5,1] = top\n verts[3::5,0] = right\n verts[3::5,1] = bottom\n\nAll that remains is to create the path, attach it to a\n:class:`~matplotlib.patch.PathPatch`, and add it to our axes::\n\n barpath = path.Path(verts, codes)\n patch = patches.PathPatch(barpath, facecolor='green',\n edgecolor='yellow', alpha=0.5)\n ax.add_patch(patch)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.patches as patches\nimport matplotlib.path as path\n\nfig, ax = plt.subplots()\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# histogram our data with numpy\ndata = np.random.randn(1000)\nn, bins = np.histogram(data, 100)\n\n# get the corners of the rectangles for the histogram\nleft = np.array(bins[:-1])\nright = np.array(bins[1:])\nbottom = np.zeros(len(left))\ntop = bottom + n\nnrects = len(left)\n\nnverts = nrects*(1+3+1)\nverts = np.zeros((nverts, 2))\ncodes = np.ones(nverts, int) * path.Path.LINETO\ncodes[0::5] = path.Path.MOVETO\ncodes[4::5] = path.Path.CLOSEPOLY\nverts[0::5, 0] = left\nverts[0::5, 1] = bottom\nverts[1::5, 0] = left\nverts[1::5, 1] = top\nverts[2::5, 0] = right\nverts[2::5, 1] = top\nverts[3::5, 0] = right\nverts[3::5, 1] = bottom\n\nbarpath = path.Path(verts, codes)\npatch = patches.PathPatch(barpath, facecolor='green',\n edgecolor='yellow', alpha=0.5)\nax.add_patch(patch)\n\nax.set_xlim(left[0], right[-1])\nax.set_ylim(bottom.min(), top.max())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/da8e81d0167d5f437298ed2adae5d759/axis_direction_demo_step01.ipynb b/_downloads/da8e81d0167d5f437298ed2adae5d759/axis_direction_demo_step01.ipynb deleted file mode 120000 index a299af7b3d0..00000000000 --- a/_downloads/da8e81d0167d5f437298ed2adae5d759/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/da8e81d0167d5f437298ed2adae5d759/axis_direction_demo_step01.ipynb \ No newline at end of file diff --git a/_downloads/da8f0b530d8fe08e4cb3b41f7a3ec45f/polar_demo.ipynb b/_downloads/da8f0b530d8fe08e4cb3b41f7a3ec45f/polar_demo.ipynb deleted file mode 120000 index e1bce1530f2..00000000000 --- a/_downloads/da8f0b530d8fe08e4cb3b41f7a3ec45f/polar_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/da8f0b530d8fe08e4cb3b41f7a3ec45f/polar_demo.ipynb \ No newline at end of file diff --git a/_downloads/da91b854b40573eada94bf698cc219d2/lifecycle.py b/_downloads/da91b854b40573eada94bf698cc219d2/lifecycle.py deleted file mode 120000 index 5f2feafa540..00000000000 --- a/_downloads/da91b854b40573eada94bf698cc219d2/lifecycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da91b854b40573eada94bf698cc219d2/lifecycle.py \ No newline at end of file diff --git a/_downloads/da938cb6f02b34152b011da397c1cd31/trigradient_demo.py b/_downloads/da938cb6f02b34152b011da397c1cd31/trigradient_demo.py deleted file mode 100644 index d1120ebf59b..00000000000 --- a/_downloads/da938cb6f02b34152b011da397c1cd31/trigradient_demo.py +++ /dev/null @@ -1,111 +0,0 @@ -""" -================ -Trigradient Demo -================ - -Demonstrates computation of gradient with -`matplotlib.tri.CubicTriInterpolator`. -""" -from matplotlib.tri import ( - Triangulation, UniformTriRefiner, CubicTriInterpolator) -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import numpy as np - - -#----------------------------------------------------------------------------- -# Electrical potential of a dipole -#----------------------------------------------------------------------------- -def dipole_potential(x, y): - """The electric dipole potential V, at position *x*, *y*.""" - r_sq = x**2 + y**2 - theta = np.arctan2(y, x) - z = np.cos(theta)/r_sq - return (np.max(z) - z) / (np.max(z) - np.min(z)) - - -#----------------------------------------------------------------------------- -# Creating a Triangulation -#----------------------------------------------------------------------------- -# First create the x and y coordinates of the points. -n_angles = 30 -n_radii = 10 -min_radius = 0.2 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii*np.cos(angles)).flatten() -y = (radii*np.sin(angles)).flatten() -V = dipole_potential(x, y) - -# Create the Triangulation; no triangles specified so Delaunay triangulation -# created. -triang = Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -#----------------------------------------------------------------------------- -# Refine data - interpolates the electrical potential V -#----------------------------------------------------------------------------- -refiner = UniformTriRefiner(triang) -tri_refi, z_test_refi = refiner.refine_field(V, subdiv=3) - -#----------------------------------------------------------------------------- -# Computes the electrical field (Ex, Ey) as gradient of electrical potential -#----------------------------------------------------------------------------- -tci = CubicTriInterpolator(triang, -V) -# Gradient requested here at the mesh nodes but could be anywhere else: -(Ex, Ey) = tci.gradient(triang.x, triang.y) -E_norm = np.sqrt(Ex**2 + Ey**2) - -#----------------------------------------------------------------------------- -# Plot the triangulation, the potential iso-contours and the vector field -#----------------------------------------------------------------------------- -fig, ax = plt.subplots() -ax.set_aspect('equal') -# Enforce the margins, and enlarge them to give room for the vectors. -ax.use_sticky_edges = False -ax.margins(0.07) - -ax.triplot(triang, color='0.8') - -levels = np.arange(0., 1., 0.01) -cmap = cm.get_cmap(name='hot', lut=None) -ax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap, - linewidths=[2.0, 1.0, 1.0, 1.0]) -# Plots direction of the electrical vector field -ax.quiver(triang.x, triang.y, Ex/E_norm, Ey/E_norm, - units='xy', scale=10., zorder=3, color='blue', - width=0.007, headwidth=3., headlength=4.) - -ax.set_title('Gradient plot: an electrical dipole') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.tri -matplotlib.tri.Triangulation -matplotlib.tri.CubicTriInterpolator -matplotlib.tri.CubicTriInterpolator.gradient -matplotlib.tri.UniformTriRefiner -matplotlib.axes.Axes.quiver -matplotlib.pyplot.quiver diff --git a/_downloads/da983462937ef57c66576089f2290a6b/layer_images.py b/_downloads/da983462937ef57c66576089f2290a6b/layer_images.py deleted file mode 120000 index 5d404590bb3..00000000000 --- a/_downloads/da983462937ef57c66576089f2290a6b/layer_images.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/da983462937ef57c66576089f2290a6b/layer_images.py \ No newline at end of file diff --git a/_downloads/da99765e242af99cf1211c7854a2c77a/integral.py b/_downloads/da99765e242af99cf1211c7854a2c77a/integral.py deleted file mode 120000 index 833567ec554..00000000000 --- a/_downloads/da99765e242af99cf1211c7854a2c77a/integral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/da99765e242af99cf1211c7854a2c77a/integral.py \ No newline at end of file diff --git a/_downloads/daaf2b8e29a5659d293690bedf73b2ee/anchored_box02.ipynb b/_downloads/daaf2b8e29a5659d293690bedf73b2ee/anchored_box02.ipynb deleted file mode 120000 index 115ffa3f105..00000000000 --- a/_downloads/daaf2b8e29a5659d293690bedf73b2ee/anchored_box02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/daaf2b8e29a5659d293690bedf73b2ee/anchored_box02.ipynb \ No newline at end of file diff --git a/_downloads/dab62ecca1b2e7cf760fb5853ccf7f1b/mplot3d.ipynb b/_downloads/dab62ecca1b2e7cf760fb5853ccf7f1b/mplot3d.ipynb deleted file mode 120000 index 7ff839c26e9..00000000000 --- a/_downloads/dab62ecca1b2e7cf760fb5853ccf7f1b/mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/dab62ecca1b2e7cf760fb5853ccf7f1b/mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/dabc4913b2e476e7980afa4897896ece/two_scales.py b/_downloads/dabc4913b2e476e7980afa4897896ece/two_scales.py deleted file mode 120000 index a033ee70086..00000000000 --- a/_downloads/dabc4913b2e476e7980afa4897896ece/two_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dabc4913b2e476e7980afa4897896ece/two_scales.py \ No newline at end of file diff --git a/_downloads/dad01571f413a00a1e4b199044159a50/text_props.ipynb b/_downloads/dad01571f413a00a1e4b199044159a50/text_props.ipynb deleted file mode 100644 index 1ea8a18825e..00000000000 --- a/_downloads/dad01571f413a00a1e4b199044159a50/text_props.ipynb +++ /dev/null @@ -1,61 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text properties and layout\n\n\nControlling properties of text and its layout with Matplotlib.\n\nThe :class:`matplotlib.text.Text` instances have a variety of\nproperties which can be configured via keyword arguments to the text\ncommands (e.g., :func:`~matplotlib.pyplot.title`,\n:func:`~matplotlib.pyplot.xlabel` and :func:`~matplotlib.pyplot.text`).\n\n========================== ======================================================================================================================\nProperty Value Type\n========================== ======================================================================================================================\nalpha `float`\nbackgroundcolor any matplotlib :doc:`color `\nbbox `~matplotlib.patches.Rectangle` prop dict plus key ``'pad'`` which is a pad in points\nclip_box a matplotlib.transform.Bbox instance\nclip_on bool\nclip_path a `~matplotlib.path.Path` instance and a `~matplotlib.transforms.Transform` instance, a `~matplotlib.patches.Patch`\ncolor any matplotlib :doc:`color `\nfamily [ ``'serif'`` | ``'sans-serif'`` | ``'cursive'`` | ``'fantasy'`` | ``'monospace'`` ]\nfontproperties a `~matplotlib.font_manager.FontProperties` instance\nhorizontalalignment or ha [ ``'center'`` | ``'right'`` | ``'left'`` ]\nlabel any string\nlinespacing `float`\nmultialignment [``'left'`` | ``'right'`` | ``'center'`` ]\nname or fontname string e.g., [``'Sans'`` | ``'Courier'`` | ``'Helvetica'`` ...]\npicker [None|float|boolean|callable]\nposition (x, y)\nrotation [ angle in degrees | ``'vertical'`` | ``'horizontal'`` ]\nsize or fontsize [ size in points | relative size, e.g., ``'smaller'``, ``'x-large'`` ]\nstyle or fontstyle [ ``'normal'`` | ``'italic'`` | ``'oblique'`` ]\ntext string or anything printable with '%s' conversion\ntransform a `~matplotlib.transforms.Transform` instance\nvariant [ ``'normal'`` | ``'small-caps'`` ]\nverticalalignment or va [ ``'center'`` | ``'top'`` | ``'bottom'`` | ``'baseline'`` ]\nvisible bool\nweight or fontweight [ ``'normal'`` | ``'bold'`` | ``'heavy'`` | ``'light'`` | ``'ultrabold'`` | ``'ultralight'``]\nx `float`\ny `float`\nzorder any number\n========================== ======================================================================================================================\n\n\nYou can lay out text with the alignment arguments\n``horizontalalignment``, ``verticalalignment``, and\n``multialignment``. ``horizontalalignment`` controls whether the x\npositional argument for the text indicates the left, center or right\nside of the text bounding box. ``verticalalignment`` controls whether\nthe y positional argument for the text indicates the bottom, center or\ntop side of the text bounding box. ``multialignment``, for newline\nseparated strings only, controls whether the different lines are left,\ncenter or right justified. Here is an example which uses the\n:func:`~matplotlib.pyplot.text` command to show the various alignment\npossibilities. The use of ``transform=ax.transAxes`` throughout the\ncode indicates that the coordinates are given relative to the axes\nbounding box, with 0,0 being the lower left of the axes and 1,1 the\nupper right.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as patches\n\n# build a rectangle in axes coords\nleft, width = .25, .5\nbottom, height = .25, .5\nright = left + width\ntop = bottom + height\n\nfig = plt.figure()\nax = fig.add_axes([0, 0, 1, 1])\n\n# axes coordinates are 0,0 is bottom left and 1,1 is upper right\np = patches.Rectangle(\n (left, bottom), width, height,\n fill=False, transform=ax.transAxes, clip_on=False\n )\n\nax.add_patch(p)\n\nax.text(left, bottom, 'left top',\n horizontalalignment='left',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, bottom, 'left bottom',\n horizontalalignment='left',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right bottom',\n horizontalalignment='right',\n verticalalignment='bottom',\n transform=ax.transAxes)\n\nax.text(right, top, 'right top',\n horizontalalignment='right',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(right, bottom, 'center top',\n horizontalalignment='center',\n verticalalignment='top',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'right center',\n horizontalalignment='right',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, 0.5*(bottom+top), 'left center',\n horizontalalignment='left',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(0.5*(left+right), 0.5*(bottom+top), 'middle',\n horizontalalignment='center',\n verticalalignment='center',\n fontsize=20, color='red',\n transform=ax.transAxes)\n\nax.text(right, 0.5*(bottom+top), 'centered',\n horizontalalignment='center',\n verticalalignment='center',\n rotation='vertical',\n transform=ax.transAxes)\n\nax.text(left, top, 'rotated\\nwith newlines',\n horizontalalignment='center',\n verticalalignment='center',\n rotation=45,\n transform=ax.transAxes)\n\nax.set_axis_off()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Default Font\n\n\nThe base default font is controlled by a set of rcParams. To set the font\nfor mathematical expressions, use the rcParams beginning with ``mathtext``\n(see `mathtext `).\n\n+---------------------+----------------------------------------------------+\n| rcParam | usage |\n+=====================+====================================================+\n| ``'font.family'`` | List of either names of font or ``{'cursive', |\n| | 'fantasy', 'monospace', 'sans', 'sans serif', |\n| | 'sans-serif', 'serif'}``. |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.style'`` | The default style, ex ``'normal'``, |\n| | ``'italic'``. |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.variant'`` | Default variant, ex ``'normal'``, ``'small-caps'`` |\n| | (untested) |\n+---------------------+----------------------------------------------------+\n| ``'font.stretch'`` | Default stretch, ex ``'normal'``, ``'condensed'`` |\n| | (incomplete) |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.weight'`` | Default weight. Either string or integer |\n| | |\n| | |\n+---------------------+----------------------------------------------------+\n| ``'font.size'`` | Default font size in points. Relative font sizes |\n| | (``'large'``, ``'x-small'``) are computed against |\n| | this size. |\n+---------------------+----------------------------------------------------+\n\nThe mapping between the family aliases (``{'cursive', 'fantasy',\n'monospace', 'sans', 'sans serif', 'sans-serif', 'serif'}``) and actual font names\nis controlled by the following rcParams:\n\n\n+------------------------------------------+--------------------------------+\n| family alias | rcParam with mappings |\n+==========================================+================================+\n| ``'serif'`` | ``'font.serif'`` |\n+------------------------------------------+--------------------------------+\n| ``'monospace'`` | ``'font.monospace'`` |\n+------------------------------------------+--------------------------------+\n| ``'fantasy'`` | ``'font.fantasy'`` |\n+------------------------------------------+--------------------------------+\n| ``'cursive'`` | ``'font.cursive'`` |\n+------------------------------------------+--------------------------------+\n| ``{'sans', 'sans serif', 'sans-serif'}`` | ``'font.sans-serif'`` |\n+------------------------------------------+--------------------------------+\n\n\nwhich are lists of font names.\n\nText with non-latin glyphs\n==========================\n\nAs of v2.0 the `default font ` contains\nglyphs for many western alphabets, but still does not cover all of the\nglyphs that may be required by mpl users. For example, DejaVu has no\ncoverage of Chinese, Korean, or Japanese.\n\n\nTo set the default font to be one that supports the code points you\nneed, prepend the font name to ``'font.family'`` or the desired alias\nlists ::\n\n matplotlib.rcParams['font.sans-serif'] = ['Source Han Sans TW', 'sans-serif']\n\nor set it in your :file:`.matplotlibrc` file::\n\n font.sans-serif: Source Han Sans TW, Arial, sans-serif\n\nTo control the font used on per-artist basis use the ``'name'``,\n``'fontname'`` or ``'fontproperties'`` kwargs documented :doc:`above\n`.\n\n\nOn linux, `fc-list `__ can be a\nuseful tool to discover the font name; for example ::\n\n $ fc-list :lang=zh family\n Noto to Sans Mono CJK TC,Noto Sans Mono CJK TC Bold\n Noto Sans CJK TC,Noto Sans CJK TC Medium\n Noto Sans CJK TC,Noto Sans CJK TC DemiLight\n Noto Sans CJK KR,Noto Sans CJK KR Black\n Noto Sans CJK TC,Noto Sans CJK TC Black\n Noto Sans Mono CJK TC,Noto Sans Mono CJK TC Regular\n Noto Sans CJK SC,Noto Sans CJK SC Light\n\nlists all of the fonts that support Chinese.\n\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dad4493f1dba2e9019601018794f28be/bayes_update.ipynb b/_downloads/dad4493f1dba2e9019601018794f28be/bayes_update.ipynb deleted file mode 120000 index cd79a3a089f..00000000000 --- a/_downloads/dad4493f1dba2e9019601018794f28be/bayes_update.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dad4493f1dba2e9019601018794f28be/bayes_update.ipynb \ No newline at end of file diff --git a/_downloads/dad689e458255c124a6f25431a4b7e92/date_demo_convert.py b/_downloads/dad689e458255c124a6f25431a4b7e92/date_demo_convert.py deleted file mode 120000 index 9e96d820597..00000000000 --- a/_downloads/dad689e458255c124a6f25431a4b7e92/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dad689e458255c124a6f25431a4b7e92/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/dad9aa2da948496a0726839d4f17a8cd/usetex.ipynb b/_downloads/dad9aa2da948496a0726839d4f17a8cd/usetex.ipynb deleted file mode 100644 index 6edd85db8b9..00000000000 --- a/_downloads/dad9aa2da948496a0726839d4f17a8cd/usetex.ipynb +++ /dev/null @@ -1,43 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*************************\nText rendering With LaTeX\n*************************\n\nRendering text with LaTeX in Matplotlib.\n\nMatplotlib has the option to use LaTeX to manage all text layout. This\noption is available with the following backends:\n\n* Agg\n* PS\n* PDF\n\nThe LaTeX option is activated by setting ``text.usetex : True`` in your rc\nsettings. Text handling with matplotlib's LaTeX support is slower than\nmatplotlib's very capable :doc:`mathtext `, but is\nmore flexible, since different LaTeX packages (font packages, math packages,\netc.) can be used. The results can be striking, especially when you take care\nto use the same fonts in your figures as in the main document.\n\nMatplotlib's LaTeX support requires a working LaTeX_ installation, dvipng_\n(which may be included with your LaTeX installation), and Ghostscript_\n(GPL Ghostscript 9.0 or later is required). The executables for these\nexternal dependencies must all be located on your :envvar:`PATH`.\n\nThere are a couple of options to mention, which can be changed using\n:doc:`rc settings `. Here is an example\nmatplotlibrc file::\n\n font.family : serif\n font.serif : Times, Palatino, New Century Schoolbook, Bookman, Computer Modern Roman\n font.sans-serif : Helvetica, Avant Garde, Computer Modern Sans serif\n font.cursive : Zapf Chancery\n font.monospace : Courier, Computer Modern Typewriter\n\n text.usetex : true\n\nThe first valid font in each family is the one that will be loaded. If the\nfonts are not specified, the Computer Modern fonts are used by default. All of\nthe other fonts are Adobe fonts. Times and Palatino each have their own\naccompanying math fonts, while the other Adobe serif fonts make use of the\nComputer Modern math fonts. See the PSNFSS_ documentation for more details.\n\nTo use LaTeX and select Helvetica as the default font, without editing\nmatplotlibrc use::\n\n from matplotlib import rc\n rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})\n ## for Palatino and other serif fonts use:\n #rc('font',**{'family':'serif','serif':['Palatino']})\n rc('text', usetex=True)\n\nHere is the standard example, `tex_demo.py`:\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/tex_demo.html\n :align: center\n :scale: 50\n\n TeX Demo\n\nNote that display math mode (``$$ e=mc^2 $$``) is not supported, but adding the\ncommand ``\\displaystyle``, as in `tex_demo.py`, will produce the same\nresults.\n\n

Note

Certain characters require special escaping in TeX, such as::\n\n # $ % & ~ _ ^ \\ { } \\( \\) \\[ \\]\n\n Therefore, these characters will behave differently depending on\n the rcParam ``text.usetex`` flag.

\n\n\nusetex with unicode\n===================\n\nIt is also possible to use unicode strings with the LaTeX text manager, here is\nan example taken from `tex_demo.py`. The axis labels include Unicode text:\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/tex_demo.html\n :align: center\n :scale: 50\n\n TeX Unicode Demo\n\n\nPostscript options\n==================\n\nIn order to produce encapsulated postscript files that can be embedded in a new\nLaTeX document, the default behavior of matplotlib is to distill the output,\nwhich removes some postscript operators used by LaTeX that are illegal in an\neps file. This step produces results which may be unacceptable to some users,\nbecause the text is coarsely rasterized and converted to bitmaps, which are not\nscalable like standard postscript, and the text is not searchable. One\nworkaround is to set ``ps.distiller.res`` to a higher value (perhaps 6000)\nin your rc settings, which will produce larger files but may look better and\nscale reasonably. A better workaround, which requires Poppler_ or Xpdf_, can be\nactivated by changing the ``ps.usedistiller`` rc setting to ``xpdf``. This\nalternative produces postscript without rasterizing text, so it scales\nproperly, can be edited in Adobe Illustrator, and searched text in pdf\ndocuments.\n\n\nPossible hangups\n================\n\n* On Windows, the :envvar:`PATH` environment variable may need to be modified\n to include the directories containing the latex, dvipng and ghostscript\n executables. See `environment-variables` and\n `setting-windows-environment-variables` for details.\n\n* Using MiKTeX with Computer Modern fonts, if you get odd \\*Agg and PNG\n results, go to MiKTeX/Options and update your format files\n\n* On Ubuntu and Gentoo, the base texlive install does not ship with\n the type1cm package. You may need to install some of the extra\n packages to get all the goodies that come bundled with other latex\n distributions.\n\n* Some progress has been made so matplotlib uses the dvi files\n directly for text layout. This allows latex to be used for text\n layout with the pdf and svg backends, as well as the \\*Agg and PS\n backends. In the future, a latex installation may be the only\n external dependency.\n\n\nTroubleshooting\n===============\n\n* Try deleting your :file:`.matplotlib/tex.cache` directory. If you don't know\n where to find :file:`.matplotlib`, see `locating-matplotlib-config-dir`.\n\n* Make sure LaTeX, dvipng and ghostscript are each working and on your\n :envvar:`PATH`.\n\n* Make sure what you are trying to do is possible in a LaTeX document,\n that your LaTeX syntax is valid and that you are using raw strings\n if necessary to avoid unintended escape sequences.\n\n* Most problems reported on the mailing list have been cleared up by\n upgrading Ghostscript_. If possible, please try upgrading to the\n latest release before reporting problems to the list.\n\n* The ``text.latex.preamble`` rc setting is not officially supported. This\n option provides lots of flexibility, and lots of ways to cause\n problems. Please disable this option before reporting problems to\n the mailing list.\n\n* If you still need help, please see `reporting-problems`\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/daef07a10f6d02e85abb841ee45c8954/histogram_histtypes.ipynb b/_downloads/daef07a10f6d02e85abb841ee45c8954/histogram_histtypes.ipynb deleted file mode 100644 index 363aa8f187c..00000000000 --- a/_downloads/daef07a10f6d02e85abb841ee45c8954/histogram_histtypes.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n================================================================\nDemo of the histogram function's different ``histtype`` settings\n================================================================\n\n* Histogram with step curve that has a color fill.\n* Histogram with custom and unequal bin widths.\n\nSelecting different bin counts and sizes can significantly affect the\nshape of a histogram. The Astropy docs have a great section on how to\nselect these parameters:\nhttp://docs.astropy.org/en/stable/visualization/histogram.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nnp.random.seed(19680801)\n\nmu = 200\nsigma = 25\nx = np.random.normal(mu, sigma, size=100)\n\nfig, (ax0, ax1) = plt.subplots(ncols=2, figsize=(8, 4))\n\nax0.hist(x, 20, density=True, histtype='stepfilled', facecolor='g', alpha=0.75)\nax0.set_title('stepfilled')\n\n# Create a histogram by providing the bin edges (unequally spaced).\nbins = [100, 150, 180, 195, 205, 220, 250, 300]\nax1.hist(x, bins, density=True, histtype='bar', rwidth=0.8)\nax1.set_title('unequal bins')\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/daf155fdcd0f015536d59bcb5f6d7fe1/cursor_demo_sgskip.ipynb b/_downloads/daf155fdcd0f015536d59bcb5f6d7fe1/cursor_demo_sgskip.ipynb deleted file mode 120000 index f51a6d4e15e..00000000000 --- a/_downloads/daf155fdcd0f015536d59bcb5f6d7fe1/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/daf155fdcd0f015536d59bcb5f6d7fe1/cursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/daf204d01ce68348840dc1cce16f2994/pyplot_scales.ipynb b/_downloads/daf204d01ce68348840dc1cce16f2994/pyplot_scales.ipynb deleted file mode 120000 index 928c157d449..00000000000 --- a/_downloads/daf204d01ce68348840dc1cce16f2994/pyplot_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/daf204d01ce68348840dc1cce16f2994/pyplot_scales.ipynb \ No newline at end of file diff --git a/_downloads/dafcf0727bfb2b49003178f996bc6b86/colorbar_placement.ipynb b/_downloads/dafcf0727bfb2b49003178f996bc6b86/colorbar_placement.ipynb deleted file mode 120000 index 02340d3255c..00000000000 --- a/_downloads/dafcf0727bfb2b49003178f996bc6b86/colorbar_placement.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dafcf0727bfb2b49003178f996bc6b86/colorbar_placement.ipynb \ No newline at end of file diff --git a/_downloads/dark_background.ipynb b/_downloads/dark_background.ipynb deleted file mode 120000 index 30c9d0f8770..00000000000 --- a/_downloads/dark_background.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dark_background.ipynb \ No newline at end of file diff --git a/_downloads/dark_background.py b/_downloads/dark_background.py deleted file mode 120000 index 9123aedc30b..00000000000 --- a/_downloads/dark_background.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dark_background.py \ No newline at end of file diff --git a/_downloads/dashpointlabel.ipynb b/_downloads/dashpointlabel.ipynb deleted file mode 120000 index c01bcc0dbc9..00000000000 --- a/_downloads/dashpointlabel.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dashpointlabel.ipynb \ No newline at end of file diff --git a/_downloads/dashpointlabel.py b/_downloads/dashpointlabel.py deleted file mode 120000 index 37293c95508..00000000000 --- a/_downloads/dashpointlabel.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dashpointlabel.py \ No newline at end of file diff --git a/_downloads/data_browser.ipynb b/_downloads/data_browser.ipynb deleted file mode 120000 index 7af70abb04e..00000000000 --- a/_downloads/data_browser.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/data_browser.ipynb \ No newline at end of file diff --git a/_downloads/data_browser.py b/_downloads/data_browser.py deleted file mode 120000 index 0ea3ae92598..00000000000 --- a/_downloads/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/data_browser.py \ No newline at end of file diff --git a/_downloads/date.ipynb b/_downloads/date.ipynb deleted file mode 120000 index ac9f8282b4b..00000000000 --- a/_downloads/date.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date.ipynb \ No newline at end of file diff --git a/_downloads/date.py b/_downloads/date.py deleted file mode 120000 index d0ce9f684bd..00000000000 --- a/_downloads/date.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date.py \ No newline at end of file diff --git a/_downloads/date_demo_convert.ipynb b/_downloads/date_demo_convert.ipynb deleted file mode 120000 index 3925ca6a3cb..00000000000 --- a/_downloads/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/date_demo_convert.py b/_downloads/date_demo_convert.py deleted file mode 120000 index b91ec2cab23..00000000000 --- a/_downloads/date_demo_convert.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_demo_convert.py \ No newline at end of file diff --git a/_downloads/date_demo_rrule.ipynb b/_downloads/date_demo_rrule.ipynb deleted file mode 120000 index 3ee2907bb95..00000000000 --- a/_downloads/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/date_demo_rrule.py b/_downloads/date_demo_rrule.py deleted file mode 120000 index f6bd40ebd43..00000000000 --- a/_downloads/date_demo_rrule.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_demo_rrule.py \ No newline at end of file diff --git a/_downloads/date_index_formatter.ipynb b/_downloads/date_index_formatter.ipynb deleted file mode 120000 index a144c4ee7c1..00000000000 --- a/_downloads/date_index_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_index_formatter.ipynb \ No newline at end of file diff --git a/_downloads/date_index_formatter.py b/_downloads/date_index_formatter.py deleted file mode 120000 index 24e22ee3185..00000000000 --- a/_downloads/date_index_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_index_formatter.py \ No newline at end of file diff --git a/_downloads/date_index_formatter1.ipynb b/_downloads/date_index_formatter1.ipynb deleted file mode 120000 index cc5a6d42d75..00000000000 --- a/_downloads/date_index_formatter1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_downloads/date_index_formatter1.ipynb \ No newline at end of file diff --git a/_downloads/date_index_formatter1.py b/_downloads/date_index_formatter1.py deleted file mode 120000 index e6342b8b5ce..00000000000 --- a/_downloads/date_index_formatter1.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_downloads/date_index_formatter1.py \ No newline at end of file diff --git a/_downloads/date_index_formatter2.ipynb b/_downloads/date_index_formatter2.ipynb deleted file mode 120000 index 983776acf52..00000000000 --- a/_downloads/date_index_formatter2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_index_formatter2.ipynb \ No newline at end of file diff --git a/_downloads/date_index_formatter2.py b/_downloads/date_index_formatter2.py deleted file mode 120000 index bd96912fb24..00000000000 --- a/_downloads/date_index_formatter2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/date_index_formatter2.py \ No newline at end of file diff --git a/_downloads/db0419f4a9e232c37d6e7c90f7191f85/colormap_normalizations_diverging.ipynb b/_downloads/db0419f4a9e232c37d6e7c90f7191f85/colormap_normalizations_diverging.ipynb deleted file mode 120000 index 67f1ce1274b..00000000000 --- a/_downloads/db0419f4a9e232c37d6e7c90f7191f85/colormap_normalizations_diverging.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/db0419f4a9e232c37d6e7c90f7191f85/colormap_normalizations_diverging.ipynb \ No newline at end of file diff --git a/_downloads/db19d93870c5df97263c5f5a2e835466/lifecycle.ipynb b/_downloads/db19d93870c5df97263c5f5a2e835466/lifecycle.ipynb deleted file mode 100644 index 5a11d997bbf..00000000000 --- a/_downloads/db19d93870c5df97263c5f5a2e835466/lifecycle.ipynb +++ /dev/null @@ -1,324 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The Lifecycle of a Plot\n\n\nThis tutorial aims to show the beginning, middle, and end of a single\nvisualization using Matplotlib. We'll begin with some raw data and\nend by saving a figure of a customized visualization. Along the way we'll try\nto highlight some neat features and best-practices using Matplotlib.\n\n.. currentmodule:: matplotlib\n\n

Note

This tutorial is based off of\n `this excellent blog post `_\n by Chris Moffitt. It was transformed into this tutorial by Chris Holdgraf.

\n\nA note on the Object-Oriented API vs Pyplot\n===========================================\n\nMatplotlib has two interfaces. The first is an object-oriented (OO)\ninterface. In this case, we utilize an instance of :class:`axes.Axes`\nin order to render visualizations on an instance of :class:`figure.Figure`.\n\nThe second is based on MATLAB and uses a state-based interface. This is\nencapsulated in the :mod:`pyplot` module. See the :doc:`pyplot tutorials\n` for a more in-depth look at the pyplot\ninterface.\n\nMost of the terms are straightforward but the main thing to remember\nis that:\n\n* The Figure is the final image that may contain 1 or more Axes.\n* The Axes represent an individual plot (don't confuse this with the word\n \"axis\", which refers to the x/y axis of a plot).\n\nWe call methods that do the plotting directly from the Axes, which gives\nus much more flexibility and power in customizing our plot.\n\n

Note

In general, try to use the object-oriented interface over the pyplot\n interface.

\n\nOur data\n========\n\nWe'll use the data from the post from which this tutorial was derived.\nIt contains sales information for a number of companies.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 10\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import FuncFormatter\n\ndata = {'Barton LLC': 109438.50,\n 'Frami, Hills and Schmidt': 103569.59,\n 'Fritsch, Russel and Anderson': 112214.71,\n 'Jerde-Hilpert': 112591.43,\n 'Keeling LLC': 100934.30,\n 'Koepp Ltd': 103660.54,\n 'Kulas Inc': 137351.96,\n 'Trantow-Barrows': 123381.38,\n 'White-Trantow': 135841.99,\n 'Will LLC': 104437.60}\ngroup_data = list(data.values())\ngroup_names = list(data.keys())\ngroup_mean = np.mean(group_data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Getting started\n===============\n\nThis data is naturally visualized as a barplot, with one bar per\ngroup. To do this with the object-oriented approach, we'll first generate\nan instance of :class:`figure.Figure` and\n:class:`axes.Axes`. The Figure is like a canvas, and the Axes\nis a part of that canvas on which we will make a particular visualization.\n\n

Note

Figures can have multiple axes on them. For information on how to do this,\n see the :doc:`Tight Layout tutorial\n `.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now that we have an Axes instance, we can plot on top of it.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Controlling the style\n=====================\n\nThere are many styles available in Matplotlib in order to let you tailor\nyour visualization to your needs. To see a list of styles, we can use\n:mod:`pyplot.style`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(plt.style.available)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can activate a style with the following:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.style.use('fivethirtyeight')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now let's remake the above plot to see how it looks:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The style controls many things, such as color, linewidths, backgrounds,\netc.\n\nCustomizing the plot\n====================\n\nNow we've got a plot with the general look that we want, so let's fine-tune\nit so that it's ready for print. First let's rotate the labels on the x-axis\nso that they show up more clearly. We can gain access to these labels\nwith the :meth:`axes.Axes.get_xticklabels` method:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If we'd like to set the property of many items at once, it's useful to use\nthe :func:`pyplot.setp` function. This will take a list (or many lists) of\nMatplotlib objects, and attempt to set some style element of each one.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It looks like this cut off some of the labels on the bottom. We can\ntell Matplotlib to automatically make room for elements in the figures\nthat we create. To do this we'll set the ``autolayout`` value of our\nrcParams. For more information on controlling the style, layout, and\nother features of plots with rcParams, see\n:doc:`/tutorials/introductory/customizing`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.rcParams.update({'figure.autolayout': True})\n\nfig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next, we'll add labels to the plot. To do this with the OO interface,\nwe can use the :meth:`axes.Axes.set` method to set properties of this\nAxes object.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can also adjust the size of this plot using the :func:`pyplot.subplots`\nfunction. We can do this with the ``figsize`` kwarg.\n\n

Note

While indexing in NumPy follows the form (row, column), the figsize\n kwarg follows the form (width, height). This follows conventions in\n visualization, which unfortunately are different from those of linear\n algebra.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 4))\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For labels, we can specify custom formatting guidelines in the form of\nfunctions by using the :class:`ticker.FuncFormatter` class. Below we'll\ndefine a function that takes an integer as input, and returns a string\nas an output.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def currency(x, pos):\n \"\"\"The two args are the value and tick position\"\"\"\n if x >= 1e6:\n s = '${:1.1f}M'.format(x*1e-6)\n else:\n s = '${:1.0f}K'.format(x*1e-3)\n return s\n\nformatter = FuncFormatter(currency)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can then apply this formatter to the labels on our plot. To do this,\nwe'll use the ``xaxis`` attribute of our axis. This lets you perform\nactions on a specific axis on our plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(6, 8))\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\n\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')\nax.xaxis.set_major_formatter(formatter)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Combining multiple visualizations\n=================================\n\nIt is possible to draw multiple plot elements on the same instance of\n:class:`axes.Axes`. To do this we simply need to call another one of\nthe plot methods on that axes object.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots(figsize=(8, 8))\nax.barh(group_names, group_data)\nlabels = ax.get_xticklabels()\nplt.setp(labels, rotation=45, horizontalalignment='right')\n\n# Add a vertical line, here we set the style in the function call\nax.axvline(group_mean, ls='--', color='r')\n\n# Annotate new companies\nfor group in [3, 5, 8]:\n ax.text(145000, group, \"New Company\", fontsize=10,\n verticalalignment=\"center\")\n\n# Now we'll move our title up since it's getting a little cramped\nax.title.set(y=1.05)\n\nax.set(xlim=[-10000, 140000], xlabel='Total Revenue', ylabel='Company',\n title='Company Revenue')\nax.xaxis.set_major_formatter(formatter)\nax.set_xticks([0, 25e3, 50e3, 75e3, 100e3, 125e3])\nfig.subplots_adjust(right=.1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Saving our plot\n===============\n\nNow that we're happy with the outcome of our plot, we want to save it to\ndisk. There are many file formats we can save to in Matplotlib. To see\na list of available options, use:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(fig.canvas.get_supported_filetypes())" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can then use the :meth:`figure.Figure.savefig` in order to save the figure\nto disk. Note that there are several useful flags we'll show below:\n\n* ``transparent=True`` makes the background of the saved figure transparent\n if the format supports it.\n* ``dpi=80`` controls the resolution (dots per square inch) of the output.\n* ``bbox_inches=\"tight\"`` fits the bounds of the figure to our plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Uncomment this line to save the figure.\n# fig.savefig('sales.png', transparent=False, dpi=80, bbox_inches=\"tight\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/db25218c236286fa9271b811bf35231e/simple_axisline4.py b/_downloads/db25218c236286fa9271b811bf35231e/simple_axisline4.py deleted file mode 120000 index da262fa4dcb..00000000000 --- a/_downloads/db25218c236286fa9271b811bf35231e/simple_axisline4.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/db25218c236286fa9271b811bf35231e/simple_axisline4.py \ No newline at end of file diff --git a/_downloads/db2e3b4ca5ca422a7615fc19f5858c51/sankey_basics.py b/_downloads/db2e3b4ca5ca422a7615fc19f5858c51/sankey_basics.py deleted file mode 100644 index f625a59a8c4..00000000000 --- a/_downloads/db2e3b4ca5ca422a7615fc19f5858c51/sankey_basics.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -================ -The Sankey class -================ - -Demonstrate the Sankey class by producing three basic diagrams. -""" - -import matplotlib.pyplot as plt - -from matplotlib.sankey import Sankey - - -############################################################################### -# Example 1 -- Mostly defaults -# -# This demonstrates how to create a simple diagram by implicitly calling the -# Sankey.add() method and by appending finish() to the call to the class. - -Sankey(flows=[0.25, 0.15, 0.60, -0.20, -0.15, -0.05, -0.50, -0.10], - labels=['', '', '', 'First', 'Second', 'Third', 'Fourth', 'Fifth'], - orientations=[-1, 1, 0, 1, 1, 1, 0, -1]).finish() -plt.title("The default settings produce a diagram like this.") - -############################################################################### -# Notice: -# -# 1. Axes weren't provided when Sankey() was instantiated, so they were -# created automatically. -# 2. The scale argument wasn't necessary since the data was already -# normalized. -# 3. By default, the lengths of the paths are justified. - - -############################################################################### -# Example 2 -# -# This demonstrates: -# -# 1. Setting one path longer than the others -# 2. Placing a label in the middle of the diagram -# 3. Using the scale argument to normalize the flows -# 4. Implicitly passing keyword arguments to PathPatch() -# 5. Changing the angle of the arrow heads -# 6. Changing the offset between the tips of the paths and their labels -# 7. Formatting the numbers in the path labels and the associated unit -# 8. Changing the appearance of the patch and the labels after the figure is -# created - -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], - title="Flow Diagram of a Widget") -sankey = Sankey(ax=ax, scale=0.01, offset=0.2, head_angle=180, - format='%.0f', unit='%') -sankey.add(flows=[25, 0, 60, -10, -20, -5, -15, -10, -40], - labels=['', '', '', 'First', 'Second', 'Third', 'Fourth', - 'Fifth', 'Hurray!'], - orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0], - pathlengths=[0.25, 0.25, 0.25, 0.25, 0.25, 0.6, 0.25, 0.25, - 0.25], - patchlabel="Widget\nA") # Arguments to matplotlib.patches.PathPatch() -diagrams = sankey.finish() -diagrams[0].texts[-1].set_color('r') -diagrams[0].text.set_fontweight('bold') - -############################################################################### -# Notice: -# -# 1. Since the sum of the flows is nonzero, the width of the trunk isn't -# uniform. The matplotlib logging system logs this at the DEBUG level. -# 2. The second flow doesn't appear because its value is zero. Again, this is -# logged at the DEBUG level. - - -############################################################################### -# Example 3 -# -# This demonstrates: -# -# 1. Connecting two systems -# 2. Turning off the labels of the quantities -# 3. Adding a legend - -fig = plt.figure() -ax = fig.add_subplot(1, 1, 1, xticks=[], yticks=[], title="Two Systems") -flows = [0.25, 0.15, 0.60, -0.10, -0.05, -0.25, -0.15, -0.10, -0.35] -sankey = Sankey(ax=ax, unit=None) -sankey.add(flows=flows, label='one', - orientations=[-1, 1, 0, 1, 1, 1, -1, -1, 0]) -sankey.add(flows=[-0.25, 0.15, 0.1], label='two', - orientations=[-1, -1, -1], prior=0, connect=(0, 0)) -diagrams = sankey.finish() -diagrams[-1].patch.set_hatch('/') -plt.legend() - -############################################################################### -# Notice that only one connection is specified, but the systems form a -# circuit since: (1) the lengths of the paths are justified and (2) the -# orientation and ordering of the flows is mirrored. - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.sankey -matplotlib.sankey.Sankey -matplotlib.sankey.Sankey.add -matplotlib.sankey.Sankey.finish diff --git a/_downloads/db38cd1f1d960945f83afd370b3facdc/simple_plot.ipynb b/_downloads/db38cd1f1d960945f83afd370b3facdc/simple_plot.ipynb deleted file mode 120000 index eb67ebf2bbe..00000000000 --- a/_downloads/db38cd1f1d960945f83afd370b3facdc/simple_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/db38cd1f1d960945f83afd370b3facdc/simple_plot.ipynb \ No newline at end of file diff --git a/_downloads/db40c889d274508dc649e5ad8ac27577/dashpointlabel.py b/_downloads/db40c889d274508dc649e5ad8ac27577/dashpointlabel.py deleted file mode 120000 index 12e1de296da..00000000000 --- a/_downloads/db40c889d274508dc649e5ad8ac27577/dashpointlabel.py +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/db40c889d274508dc649e5ad8ac27577/dashpointlabel.py \ No newline at end of file diff --git a/_downloads/db40fb3a1f3ffda2775cb8cb28156c48/tick-formatters.py b/_downloads/db40fb3a1f3ffda2775cb8cb28156c48/tick-formatters.py deleted file mode 120000 index c786db7dd3f..00000000000 --- a/_downloads/db40fb3a1f3ffda2775cb8cb28156c48/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/db40fb3a1f3ffda2775cb8cb28156c48/tick-formatters.py \ No newline at end of file diff --git a/_downloads/db42d735049d4f6de1cc2297211b0809/marker_reference.ipynb b/_downloads/db42d735049d4f6de1cc2297211b0809/marker_reference.ipynb deleted file mode 120000 index 4e967c97aab..00000000000 --- a/_downloads/db42d735049d4f6de1cc2297211b0809/marker_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/db42d735049d4f6de1cc2297211b0809/marker_reference.ipynb \ No newline at end of file diff --git a/_downloads/db452c1cf9c81004034f8147cd7ff111/cursor.ipynb b/_downloads/db452c1cf9c81004034f8147cd7ff111/cursor.ipynb deleted file mode 120000 index cec22a8d6a0..00000000000 --- a/_downloads/db452c1cf9c81004034f8147cd7ff111/cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/db452c1cf9c81004034f8147cd7ff111/cursor.ipynb \ No newline at end of file diff --git a/_downloads/db5c7ff030bf79fa36c70b932df27b43/unchained.ipynb b/_downloads/db5c7ff030bf79fa36c70b932df27b43/unchained.ipynb deleted file mode 120000 index 046aedb9945..00000000000 --- a/_downloads/db5c7ff030bf79fa36c70b932df27b43/unchained.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/db5c7ff030bf79fa36c70b932df27b43/unchained.ipynb \ No newline at end of file diff --git a/_downloads/db5cc7baf9240668548384e96a701dd6/annotated_cursor.ipynb b/_downloads/db5cc7baf9240668548384e96a701dd6/annotated_cursor.ipynb deleted file mode 120000 index 6de0eb113b6..00000000000 --- a/_downloads/db5cc7baf9240668548384e96a701dd6/annotated_cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/db5cc7baf9240668548384e96a701dd6/annotated_cursor.ipynb \ No newline at end of file diff --git a/_downloads/db5f33276c440a841a659fb6d73c8a28/rotate_axes3d_sgskip.py b/_downloads/db5f33276c440a841a659fb6d73c8a28/rotate_axes3d_sgskip.py deleted file mode 120000 index 996b0bf7e35..00000000000 --- a/_downloads/db5f33276c440a841a659fb6d73c8a28/rotate_axes3d_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/db5f33276c440a841a659fb6d73c8a28/rotate_axes3d_sgskip.py \ No newline at end of file diff --git a/_downloads/db6dbf342c423131dd834a16010b9513/whats_new_1_subplot3d.py b/_downloads/db6dbf342c423131dd834a16010b9513/whats_new_1_subplot3d.py deleted file mode 120000 index 81b599688b5..00000000000 --- a/_downloads/db6dbf342c423131dd834a16010b9513/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/db6dbf342c423131dd834a16010b9513/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/_downloads/db6e01b4bc85232fceb850664c185df2/demo_colorbar_of_inset_axes.ipynb b/_downloads/db6e01b4bc85232fceb850664c185df2/demo_colorbar_of_inset_axes.ipynb deleted file mode 120000 index 561a82a4859..00000000000 --- a/_downloads/db6e01b4bc85232fceb850664c185df2/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/db6e01b4bc85232fceb850664c185df2/demo_colorbar_of_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/db707b4db4d1b55cafc8d974a8884469/agg_buffer.ipynb b/_downloads/db707b4db4d1b55cafc8d974a8884469/agg_buffer.ipynb deleted file mode 100644 index ba71539f595..00000000000 --- a/_downloads/db707b4db4d1b55cafc8d974a8884469/agg_buffer.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Agg Buffer\n\n\nUse backend agg to access the figure canvas as an RGB string and then\nconvert it to an array and pass it to Pillow for rendering.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib.backends.backend_agg import FigureCanvasAgg\nimport matplotlib.pyplot as plt\n\nplt.plot([1, 2, 3])\n\ncanvas = plt.get_current_fig_manager().canvas\n\nagg = canvas.switch_backends(FigureCanvasAgg)\nagg.draw()\ns, (width, height) = agg.print_to_buffer()\n\n# Convert to a NumPy array.\nX = np.frombuffer(s, np.uint8).reshape((height, width, 4))\n\n# Pass off to PIL.\nfrom PIL import Image\nim = Image.frombytes(\"RGBA\", (width, height), s)\n\n# Uncomment this line to display the image using ImageMagick's `display` tool.\n# im.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/db7bfb54bc47230875fca56342c545b4/image_slices_viewer.py b/_downloads/db7bfb54bc47230875fca56342c545b4/image_slices_viewer.py deleted file mode 120000 index 803000cdc3a..00000000000 --- a/_downloads/db7bfb54bc47230875fca56342c545b4/image_slices_viewer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/db7bfb54bc47230875fca56342c545b4/image_slices_viewer.py \ No newline at end of file diff --git a/_downloads/db8277079ac9532d6daaed44b21ae18d/pgf_texsystem.py b/_downloads/db8277079ac9532d6daaed44b21ae18d/pgf_texsystem.py deleted file mode 120000 index 239d4f6a4c3..00000000000 --- a/_downloads/db8277079ac9532d6daaed44b21ae18d/pgf_texsystem.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/db8277079ac9532d6daaed44b21ae18d/pgf_texsystem.py \ No newline at end of file diff --git a/_downloads/db8de6a6bf17a39057aa55fc8eb0aedb/simple_plot.ipynb b/_downloads/db8de6a6bf17a39057aa55fc8eb0aedb/simple_plot.ipynb deleted file mode 120000 index 66617659ec3..00000000000 --- a/_downloads/db8de6a6bf17a39057aa55fc8eb0aedb/simple_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/db8de6a6bf17a39057aa55fc8eb0aedb/simple_plot.ipynb \ No newline at end of file diff --git a/_downloads/db9759a596963c31f045d54862985f48/simple_colorbar.py b/_downloads/db9759a596963c31f045d54862985f48/simple_colorbar.py deleted file mode 100644 index e7fed758808..00000000000 --- a/_downloads/db9759a596963c31f045d54862985f48/simple_colorbar.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -=============== -Simple Colorbar -=============== - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import make_axes_locatable -import numpy as np - -ax = plt.subplot(111) -im = ax.imshow(np.arange(100).reshape((10, 10))) - -# create an axes on the right side of ax. The width of cax will be 5% -# of ax and the padding between cax and ax will be fixed at 0.05 inch. -divider = make_axes_locatable(ax) -cax = divider.append_axes("right", size="5%", pad=0.05) - -plt.colorbar(im, cax=cax) diff --git a/_downloads/db9bfe90c6fd3f397758316f5fe42332/bar_of_pie.py b/_downloads/db9bfe90c6fd3f397758316f5fe42332/bar_of_pie.py deleted file mode 120000 index febac8e81e2..00000000000 --- a/_downloads/db9bfe90c6fd3f397758316f5fe42332/bar_of_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/db9bfe90c6fd3f397758316f5fe42332/bar_of_pie.py \ No newline at end of file diff --git a/_downloads/db9f9b74b3c17904326f73e9806fe317/quiver_demo.ipynb b/_downloads/db9f9b74b3c17904326f73e9806fe317/quiver_demo.ipynb deleted file mode 120000 index b9276061055..00000000000 --- a/_downloads/db9f9b74b3c17904326f73e9806fe317/quiver_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/db9f9b74b3c17904326f73e9806fe317/quiver_demo.ipynb \ No newline at end of file diff --git a/_downloads/dba01604a705d5cb460c05cd63f2455d/axes_margins.ipynb b/_downloads/dba01604a705d5cb460c05cd63f2455d/axes_margins.ipynb deleted file mode 120000 index ea7dc5658d4..00000000000 --- a/_downloads/dba01604a705d5cb460c05cd63f2455d/axes_margins.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dba01604a705d5cb460c05cd63f2455d/axes_margins.ipynb \ No newline at end of file diff --git a/_downloads/dba173ee94339283dfda5b45769518a5/demo_gridspec03.py b/_downloads/dba173ee94339283dfda5b45769518a5/demo_gridspec03.py deleted file mode 120000 index 1920235da62..00000000000 --- a/_downloads/dba173ee94339283dfda5b45769518a5/demo_gridspec03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dba173ee94339283dfda5b45769518a5/demo_gridspec03.py \ No newline at end of file diff --git a/_downloads/dba1cc56055915461c1c7d00142fb594/ellipse_demo.ipynb b/_downloads/dba1cc56055915461c1c7d00142fb594/ellipse_demo.ipynb deleted file mode 120000 index 06af0b92184..00000000000 --- a/_downloads/dba1cc56055915461c1c7d00142fb594/ellipse_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dba1cc56055915461c1c7d00142fb594/ellipse_demo.ipynb \ No newline at end of file diff --git a/_downloads/dba2da92b39e39dde01ddd9be0c8dcd2/create_subplots.py b/_downloads/dba2da92b39e39dde01ddd9be0c8dcd2/create_subplots.py deleted file mode 120000 index 4d48f78fa09..00000000000 --- a/_downloads/dba2da92b39e39dde01ddd9be0c8dcd2/create_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/dba2da92b39e39dde01ddd9be0c8dcd2/create_subplots.py \ No newline at end of file diff --git a/_downloads/dba83098270ac66dd68cc70b7f74b2f1/nan_test.py b/_downloads/dba83098270ac66dd68cc70b7f74b2f1/nan_test.py deleted file mode 120000 index 52d41d9adf7..00000000000 --- a/_downloads/dba83098270ac66dd68cc70b7f74b2f1/nan_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/dba83098270ac66dd68cc70b7f74b2f1/nan_test.py \ No newline at end of file diff --git a/_downloads/dbacccdee0ee38127e421cdee4955b35/anchored_box03.ipynb b/_downloads/dbacccdee0ee38127e421cdee4955b35/anchored_box03.ipynb deleted file mode 120000 index be0b46657cf..00000000000 --- a/_downloads/dbacccdee0ee38127e421cdee4955b35/anchored_box03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/dbacccdee0ee38127e421cdee4955b35/anchored_box03.ipynb \ No newline at end of file diff --git a/_downloads/dbacf2e8b4df6bdbd181a9738bc54e12/text_commands.ipynb b/_downloads/dbacf2e8b4df6bdbd181a9738bc54e12/text_commands.ipynb deleted file mode 120000 index cc44e63d918..00000000000 --- a/_downloads/dbacf2e8b4df6bdbd181a9738bc54e12/text_commands.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dbacf2e8b4df6bdbd181a9738bc54e12/text_commands.ipynb \ No newline at end of file diff --git a/_downloads/dbb4604aa545ae45482697fb363b7444/transforms_tutorial.ipynb b/_downloads/dbb4604aa545ae45482697fb363b7444/transforms_tutorial.ipynb deleted file mode 120000 index cba765f956c..00000000000 --- a/_downloads/dbb4604aa545ae45482697fb363b7444/transforms_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/dbb4604aa545ae45482697fb363b7444/transforms_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/dbbb576f4aeb437b0cb994503a7b3a3d/date.py b/_downloads/dbbb576f4aeb437b0cb994503a7b3a3d/date.py deleted file mode 120000 index 0d86321ce9c..00000000000 --- a/_downloads/dbbb576f4aeb437b0cb994503a7b3a3d/date.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/dbbb576f4aeb437b0cb994503a7b3a3d/date.py \ No newline at end of file diff --git a/_downloads/dbbfc471cc5f69a894fff87dbd2bbf19/svg_histogram_sgskip.py b/_downloads/dbbfc471cc5f69a894fff87dbd2bbf19/svg_histogram_sgskip.py deleted file mode 120000 index b7ebc3ec2f1..00000000000 --- a/_downloads/dbbfc471cc5f69a894fff87dbd2bbf19/svg_histogram_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dbbfc471cc5f69a894fff87dbd2bbf19/svg_histogram_sgskip.py \ No newline at end of file diff --git a/_downloads/dbc30f6ec3387cee273cc3fb99774937/contour_image.ipynb b/_downloads/dbc30f6ec3387cee273cc3fb99774937/contour_image.ipynb deleted file mode 120000 index 033ecb3f83e..00000000000 --- a/_downloads/dbc30f6ec3387cee273cc3fb99774937/contour_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dbc30f6ec3387cee273cc3fb99774937/contour_image.ipynb \ No newline at end of file diff --git a/_downloads/dbcd168bf1186b3a454bd69e9e692f8a/ellipse_collection.py b/_downloads/dbcd168bf1186b3a454bd69e9e692f8a/ellipse_collection.py deleted file mode 100644 index 9b7a71f5564..00000000000 --- a/_downloads/dbcd168bf1186b3a454bd69e9e692f8a/ellipse_collection.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================== -Ellipse Collection -================== - -Drawing a collection of ellipses. While this would equally be possible using -a `~.collections.EllipseCollection` or `~.collections.PathCollection`, the use -of an `~.collections.EllipseCollection` allows for much shorter code. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.collections import EllipseCollection - -x = np.arange(10) -y = np.arange(15) -X, Y = np.meshgrid(x, y) - -XY = np.column_stack((X.ravel(), Y.ravel())) - -ww = X / 10.0 -hh = Y / 15.0 -aa = X * 9 - - -fig, ax = plt.subplots() - -ec = EllipseCollection(ww, hh, aa, units='x', offsets=XY, - transOffset=ax.transData) -ec.set_array((X + Y).ravel()) -ax.add_collection(ec) -ax.autoscale_view() -ax.set_xlabel('X') -ax.set_ylabel('y') -cbar = plt.colorbar(ec) -cbar.set_label('X+Y') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.collections -matplotlib.collections.EllipseCollection -matplotlib.axes.Axes.add_collection -matplotlib.axes.Axes.autoscale_view -matplotlib.cm.ScalarMappable.set_array diff --git a/_downloads/dbcf6889070c76accb820e294c709392/demo_fixed_size_axes.py b/_downloads/dbcf6889070c76accb820e294c709392/demo_fixed_size_axes.py deleted file mode 120000 index 19d1b8c576f..00000000000 --- a/_downloads/dbcf6889070c76accb820e294c709392/demo_fixed_size_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dbcf6889070c76accb820e294c709392/demo_fixed_size_axes.py \ No newline at end of file diff --git a/_downloads/dbd3953f87b0e40620f0845b30c9aadf/timers.py b/_downloads/dbd3953f87b0e40620f0845b30c9aadf/timers.py deleted file mode 120000 index 58b1c67e3cd..00000000000 --- a/_downloads/dbd3953f87b0e40620f0845b30c9aadf/timers.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/dbd3953f87b0e40620f0845b30c9aadf/timers.py \ No newline at end of file diff --git a/_downloads/dbebf5e34b56820f67ad4cfeeacefaa9/irregulardatagrid.ipynb b/_downloads/dbebf5e34b56820f67ad4cfeeacefaa9/irregulardatagrid.ipynb deleted file mode 120000 index da1ebce09c5..00000000000 --- a/_downloads/dbebf5e34b56820f67ad4cfeeacefaa9/irregulardatagrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dbebf5e34b56820f67ad4cfeeacefaa9/irregulardatagrid.ipynb \ No newline at end of file diff --git a/_downloads/dbf021f91e5f682b9af5c67e9f2bbe26/mandelbrot.py b/_downloads/dbf021f91e5f682b9af5c67e9f2bbe26/mandelbrot.py deleted file mode 100644 index 873e23ef3eb..00000000000 --- a/_downloads/dbf021f91e5f682b9af5c67e9f2bbe26/mandelbrot.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -=================================== -Shaded & power normalized rendering -=================================== - -The Mandelbrot set rendering can be improved by using a normalized recount -associated with a power normalized colormap (gamma=0.3). Rendering can be -further enhanced thanks to shading. - -The `maxiter` gives the precision of the computation. `maxiter=200` should -take a few seconds on most modern laptops. -""" -import numpy as np - - -def mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon=2.0): - X = np.linspace(xmin, xmax, xn).astype(np.float32) - Y = np.linspace(ymin, ymax, yn).astype(np.float32) - C = X + Y[:, None] * 1j - N = np.zeros_like(C, dtype=int) - Z = np.zeros_like(C) - for n in range(maxiter): - I = abs(Z) < horizon - N[I] = n - Z[I] = Z[I]**2 + C[I] - N[N == maxiter-1] = 0 - return Z, N - - -if __name__ == '__main__': - import time - import matplotlib - from matplotlib import colors - import matplotlib.pyplot as plt - - xmin, xmax, xn = -2.25, +0.75, 3000 // 2 - ymin, ymax, yn = -1.25, +1.25, 2500 // 2 - maxiter = 200 - horizon = 2.0 ** 40 - log_horizon = np.log2(np.log(horizon)) - Z, N = mandelbrot_set(xmin, xmax, ymin, ymax, xn, yn, maxiter, horizon) - - # Normalized recount as explained in: - # https://linas.org/art-gallery/escape/smooth.html - # https://www.ibm.com/developerworks/community/blogs/jfp/entry/My_Christmas_Gift - - # This line will generate warnings for null values but it is faster to - # process them afterwards using the nan_to_num - with np.errstate(invalid='ignore'): - M = np.nan_to_num(N + 1 - np.log2(np.log(abs(Z))) + log_horizon) - - dpi = 72 - width = 10 - height = 10*yn/xn - fig = plt.figure(figsize=(width, height), dpi=dpi) - ax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1) - - # Shaded rendering - light = colors.LightSource(azdeg=315, altdeg=10) - M = light.shade(M, cmap=plt.cm.hot, vert_exag=1.5, - norm=colors.PowerNorm(0.3), blend_mode='hsv') - ax.imshow(M, extent=[xmin, xmax, ymin, ymax], interpolation="bicubic") - ax.set_xticks([]) - ax.set_yticks([]) - - # Some advertisement for matplotlib - year = time.strftime("%Y") - text = ("The Mandelbrot fractal set\n" - "Rendered with matplotlib %s, %s - http://matplotlib.org" - % (matplotlib.__version__, year)) - ax.text(xmin+.025, ymin+.025, text, color="white", fontsize=12, alpha=0.5) - - plt.show() diff --git a/_downloads/dbf365ad0ce72c7b62283d3d532444b5/violinplot.ipynb b/_downloads/dbf365ad0ce72c7b62283d3d532444b5/violinplot.ipynb deleted file mode 120000 index 6a1f75d08f6..00000000000 --- a/_downloads/dbf365ad0ce72c7b62283d3d532444b5/violinplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dbf365ad0ce72c7b62283d3d532444b5/violinplot.ipynb \ No newline at end of file diff --git a/_downloads/dc07706f0f161c905a6e9e2db0bc4d6e/barh.py b/_downloads/dc07706f0f161c905a6e9e2db0bc4d6e/barh.py deleted file mode 100644 index c537c0d9b21..00000000000 --- a/_downloads/dc07706f0f161c905a6e9e2db0bc4d6e/barh.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -==================== -Horizontal bar chart -==================== - -This example showcases a simple horizontal bar chart. -""" -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -plt.rcdefaults() -fig, ax = plt.subplots() - -# Example data -people = ('Tom', 'Dick', 'Harry', 'Slim', 'Jim') -y_pos = np.arange(len(people)) -performance = 3 + 10 * np.random.rand(len(people)) -error = np.random.rand(len(people)) - -ax.barh(y_pos, performance, xerr=error, align='center') -ax.set_yticks(y_pos) -ax.set_yticklabels(people) -ax.invert_yaxis() # labels read top-to-bottom -ax.set_xlabel('Performance') -ax.set_title('How fast do you want to go today?') - -plt.show() diff --git a/_downloads/dc09235d1186f0e8c1d878412ed72c25/patch_collection.py b/_downloads/dc09235d1186f0e8c1d878412ed72c25/patch_collection.py deleted file mode 120000 index 57c137145d2..00000000000 --- a/_downloads/dc09235d1186f0e8c1d878412ed72c25/patch_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dc09235d1186f0e8c1d878412ed72c25/patch_collection.py \ No newline at end of file diff --git a/_downloads/dc0c1afe901291c2cee1c5a5f0fe02a8/scatter_masked.ipynb b/_downloads/dc0c1afe901291c2cee1c5a5f0fe02a8/scatter_masked.ipynb deleted file mode 120000 index 1d7696fdd45..00000000000 --- a/_downloads/dc0c1afe901291c2cee1c5a5f0fe02a8/scatter_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dc0c1afe901291c2cee1c5a5f0fe02a8/scatter_masked.ipynb \ No newline at end of file diff --git a/_downloads/dc0fa44c89259331c1a0e4ba8a1a5ecb/simple_legend01.py b/_downloads/dc0fa44c89259331c1a0e4ba8a1a5ecb/simple_legend01.py deleted file mode 120000 index f956b31de49..00000000000 --- a/_downloads/dc0fa44c89259331c1a0e4ba8a1a5ecb/simple_legend01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/dc0fa44c89259331c1a0e4ba8a1a5ecb/simple_legend01.py \ No newline at end of file diff --git a/_downloads/dc1e3c4bbe4a39071b48c75ac1ad018b/symlog_demo.ipynb b/_downloads/dc1e3c4bbe4a39071b48c75ac1ad018b/symlog_demo.ipynb deleted file mode 100644 index d7bed6cb569..00000000000 --- a/_downloads/dc1e3c4bbe4a39071b48c75ac1ad018b/symlog_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Symlog Demo\n\n\nExample use of symlog (symmetric log) axis scaling.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\ndt = 0.01\nx = np.arange(-50.0, 50.0, dt)\ny = np.arange(0, 100.0, dt)\n\nplt.subplot(311)\nplt.plot(x, y)\nplt.xscale('symlog')\nplt.ylabel('symlogx')\nplt.grid(True)\nplt.gca().xaxis.grid(True, which='minor') # minor grid on too\n\nplt.subplot(312)\nplt.plot(y, x)\nplt.yscale('symlog')\nplt.ylabel('symlogy')\n\nplt.subplot(313)\nplt.plot(x, np.sin(x / 3.0))\nplt.xscale('symlog')\nplt.yscale('symlog', linthreshy=0.015)\nplt.grid(True)\nplt.ylabel('symlog both')\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dc21ba083a8d2caf6a4d6e09e52f7b50/bar_stacked.ipynb b/_downloads/dc21ba083a8d2caf6a4d6e09e52f7b50/bar_stacked.ipynb deleted file mode 120000 index 812a65b1ea8..00000000000 --- a/_downloads/dc21ba083a8d2caf6a4d6e09e52f7b50/bar_stacked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dc21ba083a8d2caf6a4d6e09e52f7b50/bar_stacked.ipynb \ No newline at end of file diff --git a/_downloads/dc22740b87d5dad34fa6c3020e045699/anchored_box01.py b/_downloads/dc22740b87d5dad34fa6c3020e045699/anchored_box01.py deleted file mode 120000 index 24433ca9151..00000000000 --- a/_downloads/dc22740b87d5dad34fa6c3020e045699/anchored_box01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/dc22740b87d5dad34fa6c3020e045699/anchored_box01.py \ No newline at end of file diff --git a/_downloads/dc2f74322a4d8bcd3aaa4e8e23f71f9c/anscombe.py b/_downloads/dc2f74322a4d8bcd3aaa4e8e23f71f9c/anscombe.py deleted file mode 100644 index 2160f7ef98b..00000000000 --- a/_downloads/dc2f74322a4d8bcd3aaa4e8e23f71f9c/anscombe.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -================== -Anscombe's Quartet -================== - -""" -""" -Edward Tufte uses this example from Anscombe to show 4 datasets of x -and y that have the same mean, standard deviation, and regression -line, but which are qualitatively different. -""" - -import matplotlib.pyplot as plt -import numpy as np - -x = [10, 8, 13, 9, 11, 14, 6, 4, 12, 7, 5] -y1 = [8.04, 6.95, 7.58, 8.81, 8.33, 9.96, 7.24, 4.26, 10.84, 4.82, 5.68] -y2 = [9.14, 8.14, 8.74, 8.77, 9.26, 8.10, 6.13, 3.10, 9.13, 7.26, 4.74] -y3 = [7.46, 6.77, 12.74, 7.11, 7.81, 8.84, 6.08, 5.39, 8.15, 6.42, 5.73] -x4 = [8, 8, 8, 8, 8, 8, 8, 19, 8, 8, 8] -y4 = [6.58, 5.76, 7.71, 8.84, 8.47, 7.04, 5.25, 12.50, 5.56, 7.91, 6.89] - - -def fit(x): - return 3 + 0.5 * x - - -fig, axs = plt.subplots(2, 2, sharex=True, sharey=True) -axs[0, 0].set(xlim=(0, 20), ylim=(2, 14)) -axs[0, 0].set(xticks=(0, 10, 20), yticks=(4, 8, 12)) - -xfit = np.array([np.min(x), np.max(x)]) -axs[0, 0].plot(x, y1, 'ks', xfit, fit(xfit), 'r-', lw=2) -axs[0, 1].plot(x, y2, 'ks', xfit, fit(xfit), 'r-', lw=2) -axs[1, 0].plot(x, y3, 'ks', xfit, fit(xfit), 'r-', lw=2) -xfit = np.array([np.min(x4), np.max(x4)]) -axs[1, 1].plot(x4, y4, 'ks', xfit, fit(xfit), 'r-', lw=2) - -for ax, label in zip(axs.flat, ['I', 'II', 'III', 'IV']): - ax.label_outer() - ax.text(3, 12, label, fontsize=20) - -# verify the stats -pairs = (x, y1), (x, y2), (x, y3), (x4, y4) -for x, y in pairs: - print('mean=%1.2f, std=%1.2f, r=%1.2f' % (np.mean(y), np.std(y), - np.corrcoef(x, y)[0][1])) - -plt.show() diff --git a/_downloads/dc3083c1a43c55901a4fabfdacd042f8/annotate_simple01.ipynb b/_downloads/dc3083c1a43c55901a4fabfdacd042f8/annotate_simple01.ipynb deleted file mode 120000 index 4b81331b484..00000000000 --- a/_downloads/dc3083c1a43c55901a4fabfdacd042f8/annotate_simple01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dc3083c1a43c55901a4fabfdacd042f8/annotate_simple01.ipynb \ No newline at end of file diff --git a/_downloads/dc317c27a7e641a4b339b301ed55d4f8/image_masked.py b/_downloads/dc317c27a7e641a4b339b301ed55d4f8/image_masked.py deleted file mode 120000 index bcfcd3a794f..00000000000 --- a/_downloads/dc317c27a7e641a4b339b301ed55d4f8/image_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dc317c27a7e641a4b339b301ed55d4f8/image_masked.py \ No newline at end of file diff --git a/_downloads/dc339fd10a4ddb2b07ca44cda43df4a5/two_scales.ipynb b/_downloads/dc339fd10a4ddb2b07ca44cda43df4a5/two_scales.ipynb deleted file mode 120000 index 284d0f9c400..00000000000 --- a/_downloads/dc339fd10a4ddb2b07ca44cda43df4a5/two_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dc339fd10a4ddb2b07ca44cda43df4a5/two_scales.ipynb \ No newline at end of file diff --git a/_downloads/dc40fe18e76c7ce5ffa7430e7e087efb/polar_bar.py b/_downloads/dc40fe18e76c7ce5ffa7430e7e087efb/polar_bar.py deleted file mode 120000 index 002baba1321..00000000000 --- a/_downloads/dc40fe18e76c7ce5ffa7430e7e087efb/polar_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/dc40fe18e76c7ce5ffa7430e7e087efb/polar_bar.py \ No newline at end of file diff --git a/_downloads/dc45891f67d7b6d004cc2b4a54e8a7f7/zoom_inset_axes.py b/_downloads/dc45891f67d7b6d004cc2b4a54e8a7f7/zoom_inset_axes.py deleted file mode 100644 index f75200d87af..00000000000 --- a/_downloads/dc45891f67d7b6d004cc2b4a54e8a7f7/zoom_inset_axes.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -====================== -Zoom region inset axes -====================== - -Example of an inset axes and a rectangle showing where the zoom is located. - -""" - -import matplotlib.pyplot as plt -import numpy as np - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - import numpy as np - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - -fig, ax = plt.subplots(figsize=[5, 4]) - -# make data -Z, extent = get_demo_image() -Z2 = np.zeros([150, 150], dtype="d") -ny, nx = Z.shape -Z2[30:30 + ny, 30:30 + nx] = Z - -ax.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") - -# inset axes.... -axins = ax.inset_axes([0.5, 0.5, 0.47, 0.47]) -axins.imshow(Z2, extent=extent, interpolation="nearest", - origin="lower") -# sub region of the original image -x1, x2, y1, y2 = -1.5, -0.9, -2.5, -1.9 -axins.set_xlim(x1, x2) -axins.set_ylim(y1, y2) -axins.set_xticklabels('') -axins.set_yticklabels('') - -ax.indicate_inset_zoom(axins) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.inset_axes -matplotlib.axes.Axes.indicate_inset_zoom -matplotlib.axes.Axes.imshow diff --git a/_downloads/dc45ec1f12305f238d2182a4b9e9db20/topographic_hillshading.ipynb b/_downloads/dc45ec1f12305f238d2182a4b9e9db20/topographic_hillshading.ipynb deleted file mode 120000 index 355bf1e18d0..00000000000 --- a/_downloads/dc45ec1f12305f238d2182a4b9e9db20/topographic_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/dc45ec1f12305f238d2182a4b9e9db20/topographic_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/dc5aebe8872851234390828f64132a0c/simple_axesgrid2.ipynb b/_downloads/dc5aebe8872851234390828f64132a0c/simple_axesgrid2.ipynb deleted file mode 120000 index 832230e5498..00000000000 --- a/_downloads/dc5aebe8872851234390828f64132a0c/simple_axesgrid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dc5aebe8872851234390828f64132a0c/simple_axesgrid2.ipynb \ No newline at end of file diff --git a/_downloads/dc5ba078aebe8d7561daefb7dda542a8/gridspec_nested.ipynb b/_downloads/dc5ba078aebe8d7561daefb7dda542a8/gridspec_nested.ipynb deleted file mode 120000 index 551d48884a4..00000000000 --- a/_downloads/dc5ba078aebe8d7561daefb7dda542a8/gridspec_nested.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dc5ba078aebe8d7561daefb7dda542a8/gridspec_nested.ipynb \ No newline at end of file diff --git a/_downloads/dc684ffa4e62a5b5e8b7a31eb28d9677/line_with_text.py b/_downloads/dc684ffa4e62a5b5e8b7a31eb28d9677/line_with_text.py deleted file mode 100644 index c876f688794..00000000000 --- a/_downloads/dc684ffa4e62a5b5e8b7a31eb28d9677/line_with_text.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -======================= -Artist within an artist -======================= - -Override basic methods so an artist can contain another -artist. In this case, the line contains a Text instance to label it. -""" -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.lines as lines -import matplotlib.transforms as mtransforms -import matplotlib.text as mtext - - -class MyLine(lines.Line2D): - def __init__(self, *args, **kwargs): - # we'll update the position when the line data is set - self.text = mtext.Text(0, 0, '') - lines.Line2D.__init__(self, *args, **kwargs) - - # we can't access the label attr until *after* the line is - # initiated - self.text.set_text(self.get_label()) - - def set_figure(self, figure): - self.text.set_figure(figure) - lines.Line2D.set_figure(self, figure) - - def set_axes(self, axes): - self.text.set_axes(axes) - lines.Line2D.set_axes(self, axes) - - def set_transform(self, transform): - # 2 pixel offset - texttrans = transform + mtransforms.Affine2D().translate(2, 2) - self.text.set_transform(texttrans) - lines.Line2D.set_transform(self, transform) - - def set_data(self, x, y): - if len(x): - self.text.set_position((x[-1], y[-1])) - - lines.Line2D.set_data(self, x, y) - - def draw(self, renderer): - # draw my label at the end of the line with 2 pixel offset - lines.Line2D.draw(self, renderer) - self.text.draw(renderer) - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() -x, y = np.random.rand(2, 20) -line = MyLine(x, y, mfc='red', ms=12, label='line label') -#line.text.set_text('line label') -line.text.set_color('red') -line.text.set_fontsize(16) - -ax.add_line(line) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.lines -matplotlib.lines.Line2D -matplotlib.lines.Line2D.set_data -matplotlib.artist -matplotlib.artist.Artist -matplotlib.artist.Artist.draw -matplotlib.artist.Artist.set_transform -matplotlib.text -matplotlib.text.Text -matplotlib.text.Text.set_color -matplotlib.text.Text.set_fontsize -matplotlib.text.Text.set_position -matplotlib.axes.Axes.add_line -matplotlib.transforms -matplotlib.transforms.Affine2D diff --git a/_downloads/dc7bc052f0aaf32a0645982e15750a8b/rain.ipynb b/_downloads/dc7bc052f0aaf32a0645982e15750a8b/rain.ipynb deleted file mode 100644 index c5e2d51067c..00000000000 --- a/_downloads/dc7bc052f0aaf32a0645982e15750a8b/rain.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rain simulation\n\n\nSimulates rain drops on a surface by animating the scale and opacity\nof 50 scatter points.\n\nAuthor: Nicolas P. Rougier\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.animation import FuncAnimation\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# Create new Figure and an Axes which fills it.\nfig = plt.figure(figsize=(7, 7))\nax = fig.add_axes([0, 0, 1, 1], frameon=False)\nax.set_xlim(0, 1), ax.set_xticks([])\nax.set_ylim(0, 1), ax.set_yticks([])\n\n# Create rain data\nn_drops = 50\nrain_drops = np.zeros(n_drops, dtype=[('position', float, 2),\n ('size', float, 1),\n ('growth', float, 1),\n ('color', float, 4)])\n\n# Initialize the raindrops in random positions and with\n# random growth rates.\nrain_drops['position'] = np.random.uniform(0, 1, (n_drops, 2))\nrain_drops['growth'] = np.random.uniform(50, 200, n_drops)\n\n# Construct the scatter which we will update during animation\n# as the raindrops develop.\nscat = ax.scatter(rain_drops['position'][:, 0], rain_drops['position'][:, 1],\n s=rain_drops['size'], lw=0.5, edgecolors=rain_drops['color'],\n facecolors='none')\n\n\ndef update(frame_number):\n # Get an index which we can use to re-spawn the oldest raindrop.\n current_index = frame_number % n_drops\n\n # Make all colors more transparent as time progresses.\n rain_drops['color'][:, 3] -= 1.0/len(rain_drops)\n rain_drops['color'][:, 3] = np.clip(rain_drops['color'][:, 3], 0, 1)\n\n # Make all circles bigger.\n rain_drops['size'] += rain_drops['growth']\n\n # Pick a new position for oldest rain drop, resetting its size,\n # color and growth factor.\n rain_drops['position'][current_index] = np.random.uniform(0, 1, 2)\n rain_drops['size'][current_index] = 5\n rain_drops['color'][current_index] = (0, 0, 0, 1)\n rain_drops['growth'][current_index] = np.random.uniform(50, 200)\n\n # Update the scatter collection, with the new colors, sizes and positions.\n scat.set_edgecolors(rain_drops['color'])\n scat.set_sizes(rain_drops['size'])\n scat.set_offsets(rain_drops['position'])\n\n\n# Construct the animation, using the update function as the animation director.\nanimation = FuncAnimation(fig, update, interval=10)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dc7e1fd7e6da162dc7514cdd6b71f90d/histogram.py b/_downloads/dc7e1fd7e6da162dc7514cdd6b71f90d/histogram.py deleted file mode 100644 index a0938bdb891..00000000000 --- a/_downloads/dc7e1fd7e6da162dc7514cdd6b71f90d/histogram.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -=========================== -Frontpage histogram example -=========================== - -This example reproduces the frontpage histogram example. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -random_state = np.random.RandomState(19680801) -X = random_state.randn(10000) - -fig, ax = plt.subplots() -ax.hist(X, bins=25, density=True) -x = np.linspace(-5, 5, 1000) -ax.plot(x, 1 / np.sqrt(2*np.pi) * np.exp(-(x**2)/2), linewidth=4) -ax.set_xticks([]) -ax.set_yticks([]) -fig.savefig("histogram_frontpage.png", dpi=25) # results in 160x120 px image diff --git a/_downloads/dc8756273537881db60866d6ab95c888/patheffect_demo.ipynb b/_downloads/dc8756273537881db60866d6ab95c888/patheffect_demo.ipynb deleted file mode 120000 index c8de1254d9a..00000000000 --- a/_downloads/dc8756273537881db60866d6ab95c888/patheffect_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dc8756273537881db60866d6ab95c888/patheffect_demo.ipynb \ No newline at end of file diff --git a/_downloads/dc8d3e2821167068005da687d62e8bdf/contourf3d_2.ipynb b/_downloads/dc8d3e2821167068005da687d62e8bdf/contourf3d_2.ipynb deleted file mode 120000 index 0abc4cf6ec3..00000000000 --- a/_downloads/dc8d3e2821167068005da687d62e8bdf/contourf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dc8d3e2821167068005da687d62e8bdf/contourf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/dc99aeba4fa43301b2721578b8933618/log_bar.ipynb b/_downloads/dc99aeba4fa43301b2721578b8933618/log_bar.ipynb deleted file mode 120000 index 231dd69c751..00000000000 --- a/_downloads/dc99aeba4fa43301b2721578b8933618/log_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dc99aeba4fa43301b2721578b8933618/log_bar.ipynb \ No newline at end of file diff --git a/_downloads/dca09f123a1e4a4e365eade72c092f09/spines_dropped.ipynb b/_downloads/dca09f123a1e4a4e365eade72c092f09/spines_dropped.ipynb deleted file mode 100644 index b4d3615caae..00000000000 --- a/_downloads/dca09f123a1e4a4e365eade72c092f09/spines_dropped.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dropped spines\n\n\nDemo of spines offset from the axes (a.k.a. \"dropped spines\").\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, ax = plt.subplots()\n\nimage = np.random.uniform(size=(10, 10))\nax.imshow(image, cmap=plt.cm.gray, interpolation='nearest')\nax.set_title('dropped spines')\n\n# Move left and bottom spines outward by 10 points\nax.spines['left'].set_position(('outward', 10))\nax.spines['bottom'].set_position(('outward', 10))\n# Hide the right and top spines\nax.spines['right'].set_visible(False)\nax.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax.yaxis.set_ticks_position('left')\nax.xaxis.set_ticks_position('bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dca5bba8a3a4a780a0701fa3d71ac3a3/demo_curvelinear_grid2.py b/_downloads/dca5bba8a3a4a780a0701fa3d71ac3a3/demo_curvelinear_grid2.py deleted file mode 120000 index ad3f2fc0098..00000000000 --- a/_downloads/dca5bba8a3a4a780a0701fa3d71ac3a3/demo_curvelinear_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/dca5bba8a3a4a780a0701fa3d71ac3a3/demo_curvelinear_grid2.py \ No newline at end of file diff --git a/_downloads/dca5c606f5a5e2b39817e52509b33b33/histogram_path.ipynb b/_downloads/dca5c606f5a5e2b39817e52509b33b33/histogram_path.ipynb deleted file mode 100644 index 7515dace988..00000000000 --- a/_downloads/dca5c606f5a5e2b39817e52509b33b33/histogram_path.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Building histograms using Rectangles and PolyCollections\n\n\nUsing a path patch to draw rectangles.\nThe technique of using lots of Rectangle instances, or\nthe faster method of using PolyCollections, were implemented before we\nhad proper paths with moveto/lineto, closepoly etc in mpl. Now that\nwe have them, we can draw collections of regularly shaped objects with\nhomogeneous properties more efficiently with a PathCollection. This\nexample makes a histogram -- it's more work to set up the vertex arrays\nat the outset, but it should be much faster for large numbers of\nobjects.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nimport matplotlib.path as path\n\nfig, ax = plt.subplots()\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# histogram our data with numpy\n\ndata = np.random.randn(1000)\nn, bins = np.histogram(data, 50)\n\n# get the corners of the rectangles for the histogram\nleft = np.array(bins[:-1])\nright = np.array(bins[1:])\nbottom = np.zeros(len(left))\ntop = bottom + n\n\n\n# we need a (numrects x numsides x 2) numpy array for the path helper\n# function to build a compound path\nXY = np.array([[left, left, right, right], [bottom, top, top, bottom]]).T\n\n# get the Path object\nbarpath = path.Path.make_compound_path_from_polys(XY)\n\n# make a patch out of it\npatch = patches.PathPatch(barpath)\nax.add_patch(patch)\n\n# update the view limits\nax.set_xlim(left[0], right[-1])\nax.set_ylim(bottom.min(), top.max())\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "It should be noted that instead of creating a three-dimensional array and\nusing `~.path.Path.make_compound_path_from_polys`, we could as well create\nthe compound path directly using vertices and codes as shown below\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "nrects = len(left)\nnverts = nrects*(1+3+1)\nverts = np.zeros((nverts, 2))\ncodes = np.ones(nverts, int) * path.Path.LINETO\ncodes[0::5] = path.Path.MOVETO\ncodes[4::5] = path.Path.CLOSEPOLY\nverts[0::5, 0] = left\nverts[0::5, 1] = bottom\nverts[1::5, 0] = left\nverts[1::5, 1] = top\nverts[2::5, 0] = right\nverts[2::5, 1] = top\nverts[3::5, 0] = right\nverts[3::5, 1] = bottom\n\nbarpath = path.Path(verts, codes)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.path.Path.make_compound_path_from_polys\nmatplotlib.axes.Axes.add_patch\nmatplotlib.collections.PathCollection\n\n# This example shows an alternative to\nmatplotlib.collections.PolyCollection\nmatplotlib.axes.Axes.hist" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dca9da453bcf891e589c9b67ca30dc27/annotate_explain.py b/_downloads/dca9da453bcf891e589c9b67ca30dc27/annotate_explain.py deleted file mode 120000 index d09c103fbeb..00000000000 --- a/_downloads/dca9da453bcf891e589c9b67ca30dc27/annotate_explain.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dca9da453bcf891e589c9b67ca30dc27/annotate_explain.py \ No newline at end of file diff --git a/_downloads/dcba1e47383de931a065325c7fc577c8/annotation_demo.ipynb b/_downloads/dcba1e47383de931a065325c7fc577c8/annotation_demo.ipynb deleted file mode 120000 index c5c1948da80..00000000000 --- a/_downloads/dcba1e47383de931a065325c7fc577c8/annotation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dcba1e47383de931a065325c7fc577c8/annotation_demo.ipynb \ No newline at end of file diff --git a/_downloads/dcd50c62c09fba0558fb0b8b8bdc9b6a/double_pendulum_sgskip.ipynb b/_downloads/dcd50c62c09fba0558fb0b8b8bdc9b6a/double_pendulum_sgskip.ipynb deleted file mode 100644 index 79605df2048..00000000000 --- a/_downloads/dcd50c62c09fba0558fb0b8b8bdc9b6a/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The double pendulum problem\n\n\nThis animation illustrates the double pendulum problem.\n\nDouble pendulum formula translated from the C code at\nhttp://www.physics.usyd.edu.au/~wheat/dpend_html/solve_dpend.c\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from numpy import sin, cos\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport scipy.integrate as integrate\nimport matplotlib.animation as animation\n\nG = 9.8 # acceleration due to gravity, in m/s^2\nL1 = 1.0 # length of pendulum 1 in m\nL2 = 1.0 # length of pendulum 2 in m\nM1 = 1.0 # mass of pendulum 1 in kg\nM2 = 1.0 # mass of pendulum 2 in kg\n\n\ndef derivs(state, t):\n\n dydx = np.zeros_like(state)\n dydx[0] = state[1]\n\n delta = state[2] - state[0]\n den1 = (M1+M2) * L1 - M2 * L1 * cos(delta) * cos(delta)\n dydx[1] = ((M2 * L1 * state[1] * state[1] * sin(delta) * cos(delta)\n + M2 * G * sin(state[2]) * cos(delta)\n + M2 * L2 * state[3] * state[3] * sin(delta)\n - (M1+M2) * G * sin(state[0]))\n / den1)\n\n dydx[2] = state[3]\n\n den2 = (L2/L1) * den1\n dydx[3] = ((- M2 * L2 * state[3] * state[3] * sin(delta) * cos(delta)\n + (M1+M2) * G * sin(state[0]) * cos(delta)\n - (M1+M2) * L1 * state[1] * state[1] * sin(delta)\n - (M1+M2) * G * sin(state[2]))\n / den2)\n\n return dydx\n\n# create a time array from 0..100 sampled at 0.05 second steps\ndt = 0.05\nt = np.arange(0, 20, dt)\n\n# th1 and th2 are the initial angles (degrees)\n# w10 and w20 are the initial angular velocities (degrees per second)\nth1 = 120.0\nw1 = 0.0\nth2 = -10.0\nw2 = 0.0\n\n# initial state\nstate = np.radians([th1, w1, th2, w2])\n\n# integrate your ODE using scipy.integrate.\ny = integrate.odeint(derivs, state, t)\n\nx1 = L1*sin(y[:, 0])\ny1 = -L1*cos(y[:, 0])\n\nx2 = L2*sin(y[:, 2]) + x1\ny2 = -L2*cos(y[:, 2]) + y1\n\nfig = plt.figure()\nax = fig.add_subplot(111, autoscale_on=False, xlim=(-2, 2), ylim=(-2, 2))\nax.set_aspect('equal')\nax.grid()\n\nline, = ax.plot([], [], 'o-', lw=2)\ntime_template = 'time = %.1fs'\ntime_text = ax.text(0.05, 0.9, '', transform=ax.transAxes)\n\n\ndef init():\n line.set_data([], [])\n time_text.set_text('')\n return line, time_text\n\n\ndef animate(i):\n thisx = [0, x1[i], x2[i]]\n thisy = [0, y1[i], y2[i]]\n\n line.set_data(thisx, thisy)\n time_text.set_text(time_template % (i*dt))\n return line, time_text\n\n\nani = animation.FuncAnimation(fig, animate, range(1, len(y)),\n interval=dt*1000, blit=True, init_func=init)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dcd63c9a772a55975ae00ef6c8ee9273/arrow_guide.ipynb b/_downloads/dcd63c9a772a55975ae00ef6c8ee9273/arrow_guide.ipynb deleted file mode 100644 index 44fa67f39d5..00000000000 --- a/_downloads/dcd63c9a772a55975ae00ef6c8ee9273/arrow_guide.ipynb +++ /dev/null @@ -1,119 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Arrow guide\n\n\nAdding arrow patches to plots.\n\nArrows are often used to annotate plots. This tutorial shows how to plot arrows\nthat behave differently when the data limits on a plot are changed. In general,\npoints on a plot can either be fixed in \"data space\" or \"display space\".\nSomething plotted in data space moves when the data limits are altered - an\nexample would the points in a scatter plot. Something plotted in display space\nstays static when data limits are altered - an example would be a figure title\nor the axis labels.\n\nArrows consist of a head (and possibly a tail) and a stem drawn between a\nstart point and end point, called 'anchor points' from now on.\nHere we show three use cases for plotting arrows, depending on whether the\nhead or anchor points need to be fixed in data or display space:\n\n 1. Head shape fixed in display space, anchor points fixed in data space\n 2. Head shape and anchor points fixed in display space\n 3. Entire patch fixed in data space\n\nBelow each use case is presented in turn.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\nx_tail = 0.1\ny_tail = 0.1\nx_head = 0.9\ny_head = 0.9\ndx = x_head - x_tail\ndy = y_head - y_tail" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Head shape fixed in display space and anchor points fixed in data space\n-----------------------------------------------------------------------\n\nThis is useful if you are annotating a plot, and don't want the arrow to\nto change shape or position if you pan or scale the plot. Note that when\nthe axis limits change\n\nIn this case we use `.patches.FancyArrowPatch`\n\nNote that when the axis limits are changed, the arrow shape stays the same,\nbut the anchor points move.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2)\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100)\naxs[0].add_patch(arrow)\n\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100)\naxs[1].add_patch(arrow)\naxs[1].set_xlim(0, 2)\naxs[1].set_ylim(0, 2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Head shape and anchor points fixed in display space\n---------------------------------------------------\n\nThis is useful if you are annotating a plot, and don't want the arrow to\nto change shape or position if you pan or scale the plot.\n\nIn this case we use `.patches.FancyArrowPatch`, and pass the keyword argument\n``transform=ax.transAxes`` where ``ax`` is the axes we are adding the patch\nto.\n\nNote that when the axis limits are changed, the arrow shape and location\nstays the same.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2)\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100,\n transform=axs[0].transAxes)\naxs[0].add_patch(arrow)\n\narrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy),\n mutation_scale=100,\n transform=axs[1].transAxes)\naxs[1].add_patch(arrow)\naxs[1].set_xlim(0, 2)\naxs[1].set_ylim(0, 2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Head shape and anchor points fixed in data space\n------------------------------------------------\n\nIn this case we use `.patches.Arrow`\n\nNote that when the axis limits are changed, the arrow shape and location\nchanges.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2)\n\narrow = mpatches.Arrow(x_tail, y_tail, dx, dy)\naxs[0].add_patch(arrow)\n\narrow = mpatches.Arrow(x_tail, y_tail, dx, dy)\naxs[1].add_patch(arrow)\naxs[1].set_xlim(0, 2)\naxs[1].set_ylim(0, 2)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dcd6af3a3384b030d707536e9a7319f3/custom_legends.py b/_downloads/dcd6af3a3384b030d707536e9a7319f3/custom_legends.py deleted file mode 120000 index 0dd76c0fcc8..00000000000 --- a/_downloads/dcd6af3a3384b030d707536e9a7319f3/custom_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dcd6af3a3384b030d707536e9a7319f3/custom_legends.py \ No newline at end of file diff --git a/_downloads/dcdad11b7ebaaa9757eddd8b1e3fcf9e/fivethirtyeight.py b/_downloads/dcdad11b7ebaaa9757eddd8b1e3fcf9e/fivethirtyeight.py deleted file mode 100644 index 64b7ab07b6a..00000000000 --- a/_downloads/dcdad11b7ebaaa9757eddd8b1e3fcf9e/fivethirtyeight.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -=========================== -FiveThirtyEight style sheet -=========================== - -This shows an example of the "fivethirtyeight" styling, which -tries to replicate the styles from FiveThirtyEight.com. -""" - -import matplotlib.pyplot as plt -import numpy as np - - -plt.style.use('fivethirtyeight') - -x = np.linspace(0, 10) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() - -ax.plot(x, np.sin(x) + x + np.random.randn(50)) -ax.plot(x, np.sin(x) + 0.5 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) + 2 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) - 0.5 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) - 2 * x + np.random.randn(50)) -ax.plot(x, np.sin(x) + np.random.randn(50)) -ax.set_title("'fivethirtyeight' style sheet") - -plt.show() diff --git a/_downloads/dcdeb6aa55491ed7c446ff8ec990a2bd/annotate_simple03.ipynb b/_downloads/dcdeb6aa55491ed7c446ff8ec990a2bd/annotate_simple03.ipynb deleted file mode 120000 index f2bfc64993a..00000000000 --- a/_downloads/dcdeb6aa55491ed7c446ff8ec990a2bd/annotate_simple03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dcdeb6aa55491ed7c446ff8ec990a2bd/annotate_simple03.ipynb \ No newline at end of file diff --git a/_downloads/dce79b27e059f6d13918b0786ecc0b7a/dashpointlabel.ipynb b/_downloads/dce79b27e059f6d13918b0786ecc0b7a/dashpointlabel.ipynb deleted file mode 120000 index 9ce7ebd9764..00000000000 --- a/_downloads/dce79b27e059f6d13918b0786ecc0b7a/dashpointlabel.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dce79b27e059f6d13918b0786ecc0b7a/dashpointlabel.ipynb \ No newline at end of file diff --git a/_downloads/dcf3904f5bf97ac49d7a754aac5d9e1a/timers.ipynb b/_downloads/dcf3904f5bf97ac49d7a754aac5d9e1a/timers.ipynb deleted file mode 120000 index 68ca2e2dcf0..00000000000 --- a/_downloads/dcf3904f5bf97ac49d7a754aac5d9e1a/timers.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dcf3904f5bf97ac49d7a754aac5d9e1a/timers.ipynb \ No newline at end of file diff --git a/_downloads/dcfd63fc031d50e9c085f5dc4aa458b1/sample_plots.ipynb b/_downloads/dcfd63fc031d50e9c085f5dc4aa458b1/sample_plots.ipynb deleted file mode 100644 index e0e1772054f..00000000000 --- a/_downloads/dcfd63fc031d50e9c085f5dc4aa458b1/sample_plots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Sample plots in Matplotlib\n\n\nHere you'll find a host of example plots with the code that\ngenerated them.\n\n\nLine Plot\n=========\n\nHere's how to create a line plot with text labels using\n:func:`~matplotlib.pyplot.plot`.\n\n.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_simple_plot_001.png\n :target: ../../gallery/lines_bars_and_markers/simple_plot.html\n :align: center\n :scale: 50\n\n Simple Plot\n\n\nMultiple subplots in one figure\n===============================\n\nMultiple axes (i.e. subplots) are created with the\n:func:`~matplotlib.pyplot.subplot` function:\n\n.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_subplot_001.png\n :target: ../../gallery/subplots_axes_and_figures/subplot.html\n :align: center\n :scale: 50\n\n Subplot\n\n\nImages\n======\n\nMatplotlib can display images (assuming equally spaced\nhorizontal dimensions) using the :func:`~matplotlib.pyplot.imshow` function.\n\n.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_image_demo_003.png\n :target: ../../gallery/images_contours_and_fields/image_demo.html\n :align: center\n :scale: 50\n\n Example of using :func:`~matplotlib.pyplot.imshow` to display a CT scan\n\n\n\nContouring and pseudocolor\n==========================\n\nThe :func:`~matplotlib.pyplot.pcolormesh` function can make a colored\nrepresentation of a two-dimensional array, even if the horizontal dimensions\nare unevenly spaced. The\n:func:`~matplotlib.pyplot.contour` function is another way to represent\nthe same data:\n\n.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_pcolormesh_levels_001.png\n :target: ../../gallery/images_contours_and_fields/pcolormesh_levels.html\n :align: center\n :scale: 50\n\n Example comparing :func:`~matplotlib.pyplot.pcolormesh` and :func:`~matplotlib.pyplot.contour` for plotting two-dimensional data\n\n\nHistograms\n==========\n\nThe :func:`~matplotlib.pyplot.hist` function automatically generates\nhistograms and returns the bin counts or probabilities:\n\n.. figure:: ../../gallery/statistics/images/sphx_glr_histogram_features_001.png\n :target: ../../gallery/statistics/histogram_features.html\n :align: center\n :scale: 50\n\n Histogram Features\n\n\n\nPaths\n=====\n\nYou can add arbitrary paths in Matplotlib using the\n:mod:`matplotlib.path` module:\n\n.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_path_patch_001.png\n :target: ../../gallery/shapes_and_collections/path_patch.html\n :align: center\n :scale: 50\n\n Path Patch\n\n\nThree-dimensional plotting\n==========================\n\nThe mplot3d toolkit (see `toolkit_mplot3d-tutorial` and\n`mplot3d-examples-index`) has support for simple 3d graphs\nincluding surface, wireframe, scatter, and bar charts.\n\n.. figure:: ../../gallery/mplot3d/images/sphx_glr_surface3d_001.png\n :target: ../../gallery/mplot3d/surface3d.html\n :align: center\n :scale: 50\n\n Surface3d\n\nThanks to John Porter, Jonathon Taylor, Reinier Heeres, and Ben Root for\nthe `mplot3d` toolkit. This toolkit is included with all standard Matplotlib\ninstalls.\n\n\n\nStreamplot\n==========\n\nThe :meth:`~matplotlib.pyplot.streamplot` function plots the streamlines of\na vector field. In addition to simply plotting the streamlines, it allows you\nto map the colors and/or line widths of streamlines to a separate parameter,\nsuch as the speed or local intensity of the vector field.\n\n.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_plot_streamplot_001.png\n :target: ../../gallery/images_contours_and_fields/plot_streamplot.html\n :align: center\n :scale: 50\n\n Streamplot with various plotting options.\n\nThis feature complements the :meth:`~matplotlib.pyplot.quiver` function for\nplotting vector fields. Thanks to Tom Flannaghan and Tony Yu for adding the\nstreamplot function.\n\n\nEllipses\n========\n\nIn support of the `Phoenix `_\nmission to Mars (which used Matplotlib to display ground tracking of\nspacecraft), Michael Droettboom built on work by Charlie Moad to provide\nan extremely accurate 8-spline approximation to elliptical arcs (see\n:class:`~matplotlib.patches.Arc`), which are insensitive to zoom level.\n\n.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_ellipse_demo_001.png\n :target: ../../gallery/shapes_and_collections/ellipse_demo.html\n :align: center\n :scale: 50\n\n Ellipse Demo\n\n\nBar charts\n==========\n\nUse the :func:`~matplotlib.pyplot.bar` function to make bar charts, which\nincludes customizations such as error bars:\n\n.. figure:: ../../gallery/statistics/images/sphx_glr_barchart_demo_001.png\n :target: ../../gallery/statistics/barchart_demo.html\n :align: center\n :scale: 50\n\n Barchart Demo\n\nYou can also create stacked bars\n(`bar_stacked.py <../../gallery/lines_bars_and_markers/bar_stacked.html>`_),\nor horizontal bar charts\n(`barh.py <../../gallery/lines_bars_and_markers/barh.html>`_).\n\n\n\nPie charts\n==========\n\nThe :func:`~matplotlib.pyplot.pie` function allows you to create pie\ncharts. Optional features include auto-labeling the percentage of area,\nexploding one or more wedges from the center of the pie, and a shadow effect.\nTake a close look at the attached code, which generates this figure in just\na few lines of code.\n\n.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_pie_features_001.png\n :target: ../../gallery/pie_and_polar_charts/pie_features.html\n :align: center\n :scale: 50\n\n Pie Features\n\n\nTables\n======\n\nThe :func:`~matplotlib.pyplot.table` function adds a text table\nto an axes.\n\n.. figure:: ../../gallery/misc/images/sphx_glr_table_demo_001.png\n :target: ../../gallery/misc/table_demo.html\n :align: center\n :scale: 50\n\n Table Demo\n\n\n\n\nScatter plots\n=============\n\nThe :func:`~matplotlib.pyplot.scatter` function makes a scatter plot\nwith (optional) size and color arguments. This example plots changes\nin Google's stock price, with marker sizes reflecting the\ntrading volume and colors varying with time. Here, the\nalpha attribute is used to make semitransparent circle markers.\n\n.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_scatter_demo2_001.png\n :target: ../../gallery/lines_bars_and_markers/scatter_demo2.html\n :align: center\n :scale: 50\n\n Scatter Demo2\n\n\n\nGUI widgets\n===========\n\nMatplotlib has basic GUI widgets that are independent of the graphical\nuser interface you are using, allowing you to write cross GUI figures\nand widgets. See :mod:`matplotlib.widgets` and the\n`widget examples <../../gallery/index.html>`_.\n\n.. figure:: ../../gallery/widgets/images/sphx_glr_slider_demo_001.png\n :target: ../../gallery/widgets/slider_demo.html\n :align: center\n :scale: 50\n\n Slider and radio-button GUI.\n\n\n\nFilled curves\n=============\n\nThe :func:`~matplotlib.pyplot.fill` function lets you\nplot filled curves and polygons:\n\n.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_fill_001.png\n :target: ../../gallery/lines_bars_and_markers/fill.html\n :align: center\n :scale: 50\n\n Fill\n\nThanks to Andrew Straw for adding this function.\n\n\nDate handling\n=============\n\nYou can plot timeseries data with major and minor ticks and custom\ntick formatters for both.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_date_001.png\n :target: ../../gallery/text_labels_and_annotations/date.html\n :align: center\n :scale: 50\n\n Date\n\nSee :mod:`matplotlib.ticker` and :mod:`matplotlib.dates` for details and usage.\n\n\n\nLog plots\n=========\n\nThe :func:`~matplotlib.pyplot.semilogx`,\n:func:`~matplotlib.pyplot.semilogy` and\n:func:`~matplotlib.pyplot.loglog` functions simplify the creation of\nlogarithmic plots.\n\n.. figure:: ../../gallery/scales/images/sphx_glr_log_demo_001.png\n :target: ../../gallery/scales/log_demo.html\n :align: center\n :scale: 50\n\n Log Demo\n\nThanks to Andrew Straw, Darren Dale and Gregory Lielens for contributions\nlog-scaling infrastructure.\n\n\nPolar plots\n===========\n\nThe :func:`~matplotlib.pyplot.polar` function generates polar plots.\n\n.. figure:: ../../gallery/pie_and_polar_charts/images/sphx_glr_polar_demo_001.png\n :target: ../../gallery/pie_and_polar_charts/polar_demo.html\n :align: center\n :scale: 50\n\n Polar Demo\n\n\n\nLegends\n=======\n\nThe :func:`~matplotlib.pyplot.legend` function automatically\ngenerates figure legends, with MATLAB-compatible legend-placement\nfunctions.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_legend_001.png\n :target: ../../gallery/text_labels_and_annotations/legend.html\n :align: center\n :scale: 50\n\n Legend\n\nThanks to Charles Twardy for input on the legend function.\n\n\nTeX-notation for text objects\n=============================\n\nBelow is a sampling of the many TeX expressions now supported by Matplotlib's\ninternal mathtext engine. The mathtext module provides TeX style mathematical\nexpressions using `FreeType `_\nand the DejaVu, BaKoMa computer modern, or `STIX `_\nfonts. See the :mod:`matplotlib.mathtext` module for additional details.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_mathtext_examples_001.png\n :target: ../../gallery/text_labels_and_annotations/mathtext_examples.html\n :align: center\n :scale: 50\n\n Mathtext Examples\n\nMatplotlib's mathtext infrastructure is an independent implementation and\ndoes not require TeX or any external packages installed on your computer. See\nthe tutorial at :doc:`/tutorials/text/mathtext`.\n\n\n\nNative TeX rendering\n====================\n\nAlthough Matplotlib's internal math rendering engine is quite\npowerful, sometimes you need TeX. Matplotlib supports external TeX\nrendering of strings with the *usetex* option.\n\n.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_tex_demo_001.png\n :target: ../../gallery/text_labels_and_annotations/tex_demo.html\n :align: center\n :scale: 50\n\n Tex Demo\n\n\nEEG GUI\n=======\n\nYou can embed Matplotlib into pygtk, wx, Tk, or Qt applications.\nHere is a screenshot of an EEG viewer called `pbrain\n`__.\n\n![](../../_static/eeg_small.png)\n\n\nThe lower axes uses :func:`~matplotlib.pyplot.specgram`\nto plot the spectrogram of one of the EEG channels.\n\nFor examples of how to embed Matplotlib in different toolkits, see:\n\n * :doc:`/gallery/user_interfaces/embedding_in_gtk3_sgskip`\n * :doc:`/gallery/user_interfaces/embedding_in_wx2_sgskip`\n * :doc:`/gallery/user_interfaces/mpl_with_glade3_sgskip`\n * :doc:`/gallery/user_interfaces/embedding_in_qt_sgskip`\n * :doc:`/gallery/user_interfaces/embedding_in_tk_sgskip`\n\nXKCD-style sketch plots\n=======================\n\nJust for fun, Matplotlib supports plotting in the style of `xkcd\n`.\n\n.. figure:: ../../gallery/showcase/images/sphx_glr_xkcd_001.png\n :target: ../../gallery/showcase/xkcd.html\n :align: center\n :scale: 50\n\n xkcd\n\nSubplot example\n===============\n\nMany plot types can be combined in one figure to create\npowerful and flexible representations of data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nnp.random.seed(19680801)\ndata = np.random.randn(2, 100)\n\nfig, axs = plt.subplots(2, 2, figsize=(5, 5))\naxs[0, 0].hist(data[0])\naxs[1, 0].scatter(data[0], data[1])\naxs[0, 1].plot(data[0], data[1])\naxs[1, 1].hist2d(data[0], data[1])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dd035af5f3590598b28cc3f0847ba078/axis_direction_demo_step02.py b/_downloads/dd035af5f3590598b28cc3f0847ba078/axis_direction_demo_step02.py deleted file mode 120000 index 670143bc571..00000000000 --- a/_downloads/dd035af5f3590598b28cc3f0847ba078/axis_direction_demo_step02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/dd035af5f3590598b28cc3f0847ba078/axis_direction_demo_step02.py \ No newline at end of file diff --git a/_downloads/dd053839eb038a4aaf4d210dbbd1e975/accented_text.ipynb b/_downloads/dd053839eb038a4aaf4d210dbbd1e975/accented_text.ipynb deleted file mode 100644 index 4f983267c54..00000000000 --- a/_downloads/dd053839eb038a4aaf4d210dbbd1e975/accented_text.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Using accented text in matplotlib\n\n\nMatplotlib supports accented characters via TeX mathtext or unicode.\n\nUsing mathtext, the following accents are provided: \\hat, \\breve, \\grave, \\bar,\n\\acute, \\tilde, \\vec, \\dot, \\ddot. All of them have the same syntax,\ne.g., to make an overbar you do \\bar{o} or to make an o umlaut you do\n\\ddot{o}. The shortcuts are also provided, e.g.,: \\\"o \\'e \\`e \\~n \\.x\n\\^y\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n# Mathtext demo\nfig, ax = plt.subplots()\nax.plot(range(10))\nax.set_title(r'$\\ddot{o}\\acute{e}\\grave{e}\\hat{O}'\n r'\\breve{i}\\bar{A}\\tilde{n}\\vec{q}$', fontsize=20)\n\n# Shorthand is also supported and curly braces are optional\nax.set_xlabel(r\"\"\"$\\\"o\\ddot o \\'e\\`e\\~n\\.x\\^y$\"\"\", fontsize=20)\nax.text(4, 0.5, r\"$F=m\\ddot{x}$\")\nfig.tight_layout()\n\n# Unicode demo\nfig, ax = plt.subplots()\nax.set_title(\"GISCARD CHAHUT\u00c9 \u00c0 L'ASSEMBL\u00c9E\")\nax.set_xlabel(\"LE COUP DE D\u00c9 DE DE GAULLE\")\nax.set_ylabel('Andr\u00e9 was here!')\nax.text(0.2, 0.8, 'Institut f\u00fcr Festk\u00f6rperphysik', rotation=45)\nax.text(0.4, 0.2, 'AVA (check kerning)')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dd0c0170b85f31e14175adb7c92128f8/surface3d_radial.py b/_downloads/dd0c0170b85f31e14175adb7c92128f8/surface3d_radial.py deleted file mode 120000 index 31a44fe184d..00000000000 --- a/_downloads/dd0c0170b85f31e14175adb7c92128f8/surface3d_radial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dd0c0170b85f31e14175adb7c92128f8/surface3d_radial.py \ No newline at end of file diff --git a/_downloads/dd13267f16b53320174dcfdbfc0fa394/agg_buffer.ipynb b/_downloads/dd13267f16b53320174dcfdbfc0fa394/agg_buffer.ipynb deleted file mode 120000 index 61008220437..00000000000 --- a/_downloads/dd13267f16b53320174dcfdbfc0fa394/agg_buffer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dd13267f16b53320174dcfdbfc0fa394/agg_buffer.ipynb \ No newline at end of file diff --git a/_downloads/dd1e66b83cd2f0b762eaf1011d2c9121/multi_image.ipynb b/_downloads/dd1e66b83cd2f0b762eaf1011d2c9121/multi_image.ipynb deleted file mode 120000 index 1c5e99a815a..00000000000 --- a/_downloads/dd1e66b83cd2f0b762eaf1011d2c9121/multi_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/dd1e66b83cd2f0b762eaf1011d2c9121/multi_image.ipynb \ No newline at end of file diff --git a/_downloads/dd2324717e1d91374d648eeb3d104e7f/contour_demo.py b/_downloads/dd2324717e1d91374d648eeb3d104e7f/contour_demo.py deleted file mode 100644 index bfbffe41eb4..00000000000 --- a/_downloads/dd2324717e1d91374d648eeb3d104e7f/contour_demo.py +++ /dev/null @@ -1,137 +0,0 @@ -""" -============ -Contour Demo -============ - -Illustrate simple contour plotting, contours on an image with -a colorbar for the contours, and labelled contours. - -See also the :doc:`contour image example -`. -""" -import matplotlib -import numpy as np -import matplotlib.cm as cm -import matplotlib.pyplot as plt - - -delta = 0.025 -x = np.arange(-3.0, 3.0, delta) -y = np.arange(-2.0, 2.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -############################################################################### -# Create a simple contour plot with labels using default colors. The -# inline argument to clabel will control whether the labels are draw -# over the line segments of the contour, removing the lines beneath -# the label - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z) -ax.clabel(CS, inline=1, fontsize=10) -ax.set_title('Simplest default with labels') - - -############################################################################### -# contour labels can be placed manually by providing list of positions -# (in data coordinate). See ginput_manual_clabel.py for interactive -# placement. - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z) -manual_locations = [(-1, -1.4), (-0.62, -0.7), (-2, 0.5), (1.7, 1.2), (2.0, 1.4), (2.4, 1.7)] -ax.clabel(CS, inline=1, fontsize=10, manual=manual_locations) -ax.set_title('labels at selected locations') - - -############################################################################### -# You can force all the contours to be the same color. - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z, 6, - colors='k', # negative contours will be dashed by default - ) -ax.clabel(CS, fontsize=9, inline=1) -ax.set_title('Single color - negative contours dashed') - -############################################################################### -# You can set negative contours to be solid instead of dashed: - -matplotlib.rcParams['contour.negative_linestyle'] = 'solid' -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z, 6, - colors='k', # negative contours will be dashed by default - ) -ax.clabel(CS, fontsize=9, inline=1) -ax.set_title('Single color - negative contours solid') - - -############################################################################### -# And you can manually specify the colors of the contour - -fig, ax = plt.subplots() -CS = ax.contour(X, Y, Z, 6, - linewidths=np.arange(.5, 4, .5), - colors=('r', 'green', 'blue', (1, 1, 0), '#afeeee', '0.5') - ) -ax.clabel(CS, fontsize=9, inline=1) -ax.set_title('Crazy lines') - - -############################################################################### -# Or you can use a colormap to specify the colors; the default -# colormap will be used for the contour lines - -fig, ax = plt.subplots() -im = ax.imshow(Z, interpolation='bilinear', origin='lower', - cmap=cm.gray, extent=(-3, 3, -2, 2)) -levels = np.arange(-1.2, 1.6, 0.2) -CS = ax.contour(Z, levels, origin='lower', cmap='flag', - linewidths=2, extent=(-3, 3, -2, 2)) - -# Thicken the zero contour. -zc = CS.collections[6] -plt.setp(zc, linewidth=4) - -ax.clabel(CS, levels[1::2], # label every second level - inline=1, fmt='%1.1f', fontsize=14) - -# make a colorbar for the contour lines -CB = fig.colorbar(CS, shrink=0.8, extend='both') - -ax.set_title('Lines with colorbar') - -# We can still add a colorbar for the image, too. -CBI = fig.colorbar(im, orientation='horizontal', shrink=0.8) - -# This makes the original colorbar look a bit out of place, -# so let's improve its position. - -l, b, w, h = ax.get_position().bounds -ll, bb, ww, hh = CB.ax.get_position().bounds -CB.ax.set_position([ll, b + 0.1*h, ww, h*0.8]) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.axes.Axes.clabel -matplotlib.pyplot.clabel -matplotlib.axes.Axes.set_position -matplotlib.axes.Axes.get_position diff --git a/_downloads/dd2a90fdcda80362a3d1883b59b04670/plot_streamplot.ipynb b/_downloads/dd2a90fdcda80362a3d1883b59b04670/plot_streamplot.ipynb deleted file mode 120000 index 0a188689c0c..00000000000 --- a/_downloads/dd2a90fdcda80362a3d1883b59b04670/plot_streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dd2a90fdcda80362a3d1883b59b04670/plot_streamplot.ipynb \ No newline at end of file diff --git a/_downloads/dd2e4d2538f5831a172524f288453495/share_axis_lims_views.ipynb b/_downloads/dd2e4d2538f5831a172524f288453495/share_axis_lims_views.ipynb deleted file mode 100644 index c7f99184148..00000000000 --- a/_downloads/dd2e4d2538f5831a172524f288453495/share_axis_lims_views.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nSharing axis limits and views\n=============================\n\nIt's common to make two or more plots which share an axis, e.g., two\nsubplots with time as a common axis. When you pan and zoom around on\none, you want the other to move around with you. To facilitate this,\nmatplotlib Axes support a ``sharex`` and ``sharey`` attribute. When\nyou create a :func:`~matplotlib.pyplot.subplot` or\n:func:`~matplotlib.pyplot.axes` instance, you can pass in a keyword\nindicating what axes you want to share with\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0, 10, 0.01)\n\nax1 = plt.subplot(211)\nax1.plot(t, np.sin(2*np.pi*t))\n\nax2 = plt.subplot(212, sharex=ax1)\nax2.plot(t, np.sin(4*np.pi*t))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dd314a83577f446493e34d27a1ed8451/colormap_reference.py b/_downloads/dd314a83577f446493e34d27a1ed8451/colormap_reference.py deleted file mode 120000 index c3737841c3b..00000000000 --- a/_downloads/dd314a83577f446493e34d27a1ed8451/colormap_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dd314a83577f446493e34d27a1ed8451/colormap_reference.py \ No newline at end of file diff --git a/_downloads/dd3d3932bdb4213c7c0d8866f8254613/anchored_box04.ipynb b/_downloads/dd3d3932bdb4213c7c0d8866f8254613/anchored_box04.ipynb deleted file mode 100644 index e8c35a41d4d..00000000000 --- a/_downloads/dd3d3932bdb4213c7c0d8866f8254613/anchored_box04.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box04\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Ellipse\nimport matplotlib.pyplot as plt\nfrom matplotlib.offsetbox import (AnchoredOffsetbox, DrawingArea, HPacker,\n TextArea)\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nbox1 = TextArea(\" Test : \", textprops=dict(color=\"k\"))\n\nbox2 = DrawingArea(60, 20, 0, 0)\nel1 = Ellipse((10, 10), width=16, height=5, angle=30, fc=\"r\")\nel2 = Ellipse((30, 10), width=16, height=5, angle=170, fc=\"g\")\nel3 = Ellipse((50, 10), width=16, height=5, angle=230, fc=\"b\")\nbox2.add_artist(el1)\nbox2.add_artist(el2)\nbox2.add_artist(el3)\n\nbox = HPacker(children=[box1, box2],\n align=\"center\",\n pad=0, sep=5)\n\nanchored_box = AnchoredOffsetbox(loc='lower left',\n child=box, pad=0.,\n frameon=True,\n bbox_to_anchor=(0., 1.02),\n bbox_transform=ax.transAxes,\n borderpad=0.,\n )\n\nax.add_artist(anchored_box)\n\nfig.subplots_adjust(top=0.8)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dd44b6fa6bb70231f7c94011c1b84102/lasso_selector_demo_sgskip.ipynb b/_downloads/dd44b6fa6bb70231f7c94011c1b84102/lasso_selector_demo_sgskip.ipynb deleted file mode 120000 index 804a4752393..00000000000 --- a/_downloads/dd44b6fa6bb70231f7c94011c1b84102/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dd44b6fa6bb70231f7c94011c1b84102/lasso_selector_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/dd489e343b6edefa46ba521771cbf081/anatomy.ipynb b/_downloads/dd489e343b6edefa46ba521771cbf081/anatomy.ipynb deleted file mode 100644 index 74831888498..00000000000 --- a/_downloads/dd489e343b6edefa46ba521771cbf081/anatomy.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anatomy of a figure\n\n\nThis figure shows the name of several matplotlib elements composing a figure\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.ticker import AutoMinorLocator, MultipleLocator, FuncFormatter\n\nnp.random.seed(19680801)\n\nX = np.linspace(0.5, 3.5, 100)\nY1 = 3+np.cos(X)\nY2 = 1+np.cos(1+X/0.75)/2\nY3 = np.random.uniform(Y1, Y2, len(X))\n\nfig = plt.figure(figsize=(8, 8))\nax = fig.add_subplot(1, 1, 1, aspect=1)\n\n\ndef minor_tick(x, pos):\n if not x % 1.0:\n return \"\"\n return \"%.2f\" % x\n\nax.xaxis.set_major_locator(MultipleLocator(1.000))\nax.xaxis.set_minor_locator(AutoMinorLocator(4))\nax.yaxis.set_major_locator(MultipleLocator(1.000))\nax.yaxis.set_minor_locator(AutoMinorLocator(4))\nax.xaxis.set_minor_formatter(FuncFormatter(minor_tick))\n\nax.set_xlim(0, 4)\nax.set_ylim(0, 4)\n\nax.tick_params(which='major', width=1.0)\nax.tick_params(which='major', length=10)\nax.tick_params(which='minor', width=1.0, labelsize=10)\nax.tick_params(which='minor', length=5, labelsize=10, labelcolor='0.25')\n\nax.grid(linestyle=\"--\", linewidth=0.5, color='.25', zorder=-10)\n\nax.plot(X, Y1, c=(0.25, 0.25, 1.00), lw=2, label=\"Blue signal\", zorder=10)\nax.plot(X, Y2, c=(1.00, 0.25, 0.25), lw=2, label=\"Red signal\")\nax.plot(X, Y3, linewidth=0,\n marker='o', markerfacecolor='w', markeredgecolor='k')\n\nax.set_title(\"Anatomy of a figure\", fontsize=20, verticalalignment='bottom')\nax.set_xlabel(\"X axis label\")\nax.set_ylabel(\"Y axis label\")\n\nax.legend()\n\n\ndef circle(x, y, radius=0.15):\n from matplotlib.patches import Circle\n from matplotlib.patheffects import withStroke\n circle = Circle((x, y), radius, clip_on=False, zorder=10, linewidth=1,\n edgecolor='black', facecolor=(0, 0, 0, .0125),\n path_effects=[withStroke(linewidth=5, foreground='w')])\n ax.add_artist(circle)\n\n\ndef text(x, y, text):\n ax.text(x, y, text, backgroundcolor=\"white\",\n ha='center', va='top', weight='bold', color='blue')\n\n\n# Minor tick\ncircle(0.50, -0.10)\ntext(0.50, -0.32, \"Minor tick label\")\n\n# Major tick\ncircle(-0.03, 4.00)\ntext(0.03, 3.80, \"Major tick\")\n\n# Minor tick\ncircle(0.00, 3.50)\ntext(0.00, 3.30, \"Minor tick\")\n\n# Major tick label\ncircle(-0.15, 3.00)\ntext(-0.15, 2.80, \"Major tick label\")\n\n# X Label\ncircle(1.80, -0.27)\ntext(1.80, -0.45, \"X axis label\")\n\n# Y Label\ncircle(-0.27, 1.80)\ntext(-0.27, 1.6, \"Y axis label\")\n\n# Title\ncircle(1.60, 4.13)\ntext(1.60, 3.93, \"Title\")\n\n# Blue plot\ncircle(1.75, 2.80)\ntext(1.75, 2.60, \"Line\\n(line plot)\")\n\n# Red plot\ncircle(1.20, 0.60)\ntext(1.20, 0.40, \"Line\\n(line plot)\")\n\n# Scatter plot\ncircle(3.20, 1.75)\ntext(3.20, 1.55, \"Markers\\n(scatter plot)\")\n\n# Grid\ncircle(3.00, 3.00)\ntext(3.00, 2.80, \"Grid\")\n\n# Legend\ncircle(3.70, 3.80)\ntext(3.70, 3.60, \"Legend\")\n\n# Axes\ncircle(0.5, 0.5)\ntext(0.5, 0.3, \"Axes\")\n\n# Figure\ncircle(-0.3, 0.65)\ntext(-0.3, 0.45, \"Figure\")\n\ncolor = 'blue'\nax.annotate('Spines', xy=(4.0, 0.35), xytext=(3.3, 0.5),\n weight='bold', color=color,\n arrowprops=dict(arrowstyle='->',\n connectionstyle=\"arc3\",\n color=color))\n\nax.annotate('', xy=(3.15, 0.0), xytext=(3.45, 0.45),\n weight='bold', color=color,\n arrowprops=dict(arrowstyle='->',\n connectionstyle=\"arc3\",\n color=color))\n\nax.text(4.0, -0.4, \"Made with http://matplotlib.org\",\n fontsize=10, ha=\"right\", color='.5')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dd52b4551720cbe1cdaacad84031fb61/svg_filter_pie.py b/_downloads/dd52b4551720cbe1cdaacad84031fb61/svg_filter_pie.py deleted file mode 120000 index 34eb755811e..00000000000 --- a/_downloads/dd52b4551720cbe1cdaacad84031fb61/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dd52b4551720cbe1cdaacad84031fb61/svg_filter_pie.py \ No newline at end of file diff --git a/_downloads/dd53845e9b4ff2a1c978459bd05b003e/evans_test.py b/_downloads/dd53845e9b4ff2a1c978459bd05b003e/evans_test.py deleted file mode 120000 index 70a5999fb47..00000000000 --- a/_downloads/dd53845e9b4ff2a1c978459bd05b003e/evans_test.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dd53845e9b4ff2a1c978459bd05b003e/evans_test.py \ No newline at end of file diff --git a/_downloads/dd584ae636eff42d8d798eea05b5c40d/log_demo.py b/_downloads/dd584ae636eff42d8d798eea05b5c40d/log_demo.py deleted file mode 100644 index 19bfb858983..00000000000 --- a/_downloads/dd584ae636eff42d8d798eea05b5c40d/log_demo.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -======== -Log Demo -======== - -Examples of plots with logarithmic axes. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Data for plotting -t = np.arange(0.01, 20.0, 0.01) - -# Create figure -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) - -# log y axis -ax1.semilogy(t, np.exp(-t / 5.0)) -ax1.set(title='semilogy') -ax1.grid() - -# log x axis -ax2.semilogx(t, np.sin(2 * np.pi * t)) -ax2.set(title='semilogx') -ax2.grid() - -# log x and y axis -ax3.loglog(t, 20 * np.exp(-t / 10.0), basex=2) -ax3.set(title='loglog base 2 on x') -ax3.grid() - -# With errorbars: clip non-positive values -# Use new data for plotting -x = 10.0**np.linspace(0.0, 2.0, 20) -y = x**2.0 - -ax4.set_xscale("log", nonposx='clip') -ax4.set_yscale("log", nonposy='clip') -ax4.set(title='Errorbars go negative') -ax4.errorbar(x, y, xerr=0.1 * x, yerr=5.0 + 0.75 * y) -# ylim must be set after errorbar to allow errorbar to autoscale limits -ax4.set_ylim(bottom=0.1) - -fig.tight_layout() -plt.show() diff --git a/_downloads/dd6d6b83319e6c1d1306414dcb009091/mathtext_wx_sgskip.ipynb b/_downloads/dd6d6b83319e6c1d1306414dcb009091/mathtext_wx_sgskip.ipynb deleted file mode 120000 index 647bf1f53fa..00000000000 --- a/_downloads/dd6d6b83319e6c1d1306414dcb009091/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dd6d6b83319e6c1d1306414dcb009091/mathtext_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/dd6fa5395030c1611c20e35504c43afe/multiline.py b/_downloads/dd6fa5395030c1611c20e35504c43afe/multiline.py deleted file mode 100644 index ce2cb158af8..00000000000 --- a/_downloads/dd6fa5395030c1611c20e35504c43afe/multiline.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -========= -Multiline -========= - -""" -import matplotlib.pyplot as plt -import numpy as np - -plt.figure(figsize=(7, 4)) -ax = plt.subplot(121) -ax.set_aspect(1) -plt.plot(np.arange(10)) -plt.xlabel('this is a xlabel\n(with newlines!)') -plt.ylabel('this is vertical\ntest', multialignment='center') -plt.text(2, 7, 'this is\nyet another test', - rotation=45, - horizontalalignment='center', - verticalalignment='top', - multialignment='center') - -plt.grid(True) - -plt.subplot(122) - -plt.text(0.29, 0.4, "Mat\nTTp\n123", size=18, - va="baseline", ha="right", multialignment="left", - bbox=dict(fc="none")) - -plt.text(0.34, 0.4, "Mag\nTTT\n123", size=18, - va="baseline", ha="left", multialignment="left", - bbox=dict(fc="none")) - -plt.text(0.95, 0.4, "Mag\nTTT$^{A^A}$\n123", size=18, - va="baseline", ha="right", multialignment="left", - bbox=dict(fc="none")) - -plt.xticks([0.2, 0.4, 0.6, 0.8, 1.], - ["Jan\n2009", "Feb\n2009", "Mar\n2009", "Apr\n2009", "May\n2009"]) - -plt.axhline(0.4) -plt.title("test line spacing for multiline text") - -plt.subplots_adjust(bottom=0.25, top=0.75) -plt.show() diff --git a/_downloads/dd731b8f8f43c14cb78335ec163aefe8/cursor_demo_sgskip.py b/_downloads/dd731b8f8f43c14cb78335ec163aefe8/cursor_demo_sgskip.py deleted file mode 100644 index c5cdedccbc9..00000000000 --- a/_downloads/dd731b8f8f43c14cb78335ec163aefe8/cursor_demo_sgskip.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -=========== -Cursor Demo -=========== - -This example shows how to use Matplotlib to provide a data cursor. It uses -Matplotlib to draw the cursor and may be a slow since this requires redrawing -the figure with every mouse move. - -Faster cursoring is possible using native GUI drawing, as in -:doc:`/gallery/user_interfaces/wxcursor_demo_sgskip`. - -The mpldatacursor__ and mplcursors__ third-party packages can be used to -achieve a similar effect. - -__ https://github.com/joferkington/mpldatacursor -__ https://github.com/anntzer/mplcursors -""" - -import matplotlib.pyplot as plt -import numpy as np - - -class Cursor(object): - def __init__(self, ax): - self.ax = ax - self.lx = ax.axhline(color='k') # the horiz line - self.ly = ax.axvline(color='k') # the vert line - - # text location in axes coords - self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes) - - def mouse_move(self, event): - if not event.inaxes: - return - - x, y = event.xdata, event.ydata - # update the line positions - self.lx.set_ydata(y) - self.ly.set_xdata(x) - - self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y)) - self.ax.figure.canvas.draw() - - -class SnaptoCursor(object): - """ - Like Cursor but the crosshair snaps to the nearest x, y point. - For simplicity, this assumes that *x* is sorted. - """ - - def __init__(self, ax, x, y): - self.ax = ax - self.lx = ax.axhline(color='k') # the horiz line - self.ly = ax.axvline(color='k') # the vert line - self.x = x - self.y = y - # text location in axes coords - self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes) - - def mouse_move(self, event): - if not event.inaxes: - return - - x, y = event.xdata, event.ydata - indx = min(np.searchsorted(self.x, x), len(self.x) - 1) - x = self.x[indx] - y = self.y[indx] - # update the line positions - self.lx.set_ydata(y) - self.ly.set_xdata(x) - - self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y)) - print('x=%1.2f, y=%1.2f' % (x, y)) - self.ax.figure.canvas.draw() - - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2 * 2 * np.pi * t) - -fig, ax = plt.subplots() -ax.plot(t, s, 'o') -cursor = Cursor(ax) -fig.canvas.mpl_connect('motion_notify_event', cursor.mouse_move) - -fig, ax = plt.subplots() -ax.plot(t, s, 'o') -snap_cursor = SnaptoCursor(ax, t, s) -fig.canvas.mpl_connect('motion_notify_event', snap_cursor.mouse_move) - -plt.show() diff --git a/_downloads/dd919b0c621c5e86f06242579e558683/donut.ipynb b/_downloads/dd919b0c621c5e86f06242579e558683/donut.ipynb deleted file mode 100644 index d7aeb69c7c7..00000000000 --- a/_downloads/dd919b0c621c5e86f06242579e558683/donut.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=============\nMmh Donuts!!!\n=============\n\nDraw donuts (miam!) using `~.path.Path`\\s and `~.patches.PathPatch`\\es.\nThis example shows the effect of the path's orientations in a compound path.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.path as mpath\nimport matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\n\ndef wise(v):\n if v == 1:\n return \"CCW\"\n else:\n return \"CW\"\n\n\ndef make_circle(r):\n t = np.arange(0, np.pi * 2.0, 0.01)\n t = t.reshape((len(t), 1))\n x = r * np.cos(t)\n y = r * np.sin(t)\n return np.hstack((x, y))\n\nPath = mpath.Path\n\nfig, ax = plt.subplots()\n\ninside_vertices = make_circle(0.5)\noutside_vertices = make_circle(1.0)\ncodes = np.ones(\n len(inside_vertices), dtype=mpath.Path.code_type) * mpath.Path.LINETO\ncodes[0] = mpath.Path.MOVETO\n\nfor i, (inside, outside) in enumerate(((1, 1), (1, -1), (-1, 1), (-1, -1))):\n # Concatenate the inside and outside subpaths together, changing their\n # order as needed\n vertices = np.concatenate((outside_vertices[::outside],\n inside_vertices[::inside]))\n # Shift the path\n vertices[:, 0] += i * 2.5\n # The codes will be all \"LINETO\" commands, except for \"MOVETO\"s at the\n # beginning of each subpath\n all_codes = np.concatenate((codes, codes))\n # Create the Path object\n path = mpath.Path(vertices, all_codes)\n # Add plot it\n patch = mpatches.PathPatch(path, facecolor='#885500', edgecolor='black')\n ax.add_patch(patch)\n\n ax.annotate(\"Outside %s,\\nInside %s\" % (wise(outside), wise(inside)),\n (i * 2.5, -1.5), va=\"top\", ha=\"center\")\n\nax.set_xlim(-2, 10)\nax.set_ylim(-3, 2)\nax.set_title('Mmm, donuts!')\nax.set_aspect(1.0)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.patches\nmatplotlib.patches.PathPatch\nmatplotlib.patches.Circle\nmatplotlib.axes.Axes.add_patch\nmatplotlib.axes.Axes.annotate\nmatplotlib.axes.Axes.set_aspect\nmatplotlib.axes.Axes.set_xlim\nmatplotlib.axes.Axes.set_ylim\nmatplotlib.axes.Axes.set_title" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dd931b4174566d15635b46802c72858e/gradient_bar.py b/_downloads/dd931b4174566d15635b46802c72858e/gradient_bar.py deleted file mode 100644 index bde05061e53..00000000000 --- a/_downloads/dd931b4174566d15635b46802c72858e/gradient_bar.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -======================== -Bar chart with gradients -======================== - -Matplotlib does not natively support gradients. However, we can emulate a -gradient-filled rectangle by an `.AxesImage` of the right size and coloring. - -In particular, we use a colormap to generate the actual colors. It is then -sufficient to define the underlying values on the corners of the image and -let bicubic interpolation fill out the area. We define the gradient direction -by a unit vector *v*. The values at the corners are then obtained by the -lengths of the projections of the corner vectors on *v*. - -A similar approach can be used to create a gradient background for an axes. -In that case, it is helpful to uses Axes coordinates -(`extent=(0, 1, 0, 1), transform=ax.transAxes`) to be independent of the data -coordinates. - -""" -import matplotlib.pyplot as plt -import numpy as np - -np.random.seed(19680801) - - -def gradient_image(ax, extent, direction=0.3, cmap_range=(0, 1), **kwargs): - """ - Draw a gradient image based on a colormap. - - Parameters - ---------- - ax : Axes - The axes to draw on. - extent - The extent of the image as (xmin, xmax, ymin, ymax). - By default, this is in Axes coordinates but may be - changed using the *transform* kwarg. - direction : float - The direction of the gradient. This is a number in - range 0 (=vertical) to 1 (=horizontal). - cmap_range : float, float - The fraction (cmin, cmax) of the colormap that should be - used for the gradient, where the complete colormap is (0, 1). - **kwargs - Other parameters are passed on to `.Axes.imshow()`. - In particular useful is *cmap*. - """ - phi = direction * np.pi / 2 - v = np.array([np.cos(phi), np.sin(phi)]) - X = np.array([[v @ [1, 0], v @ [1, 1]], - [v @ [0, 0], v @ [0, 1]]]) - a, b = cmap_range - X = a + (b - a) / X.max() * X - im = ax.imshow(X, extent=extent, interpolation='bicubic', - vmin=0, vmax=1, **kwargs) - return im - - -def gradient_bar(ax, x, y, width=0.5, bottom=0): - for left, top in zip(x, y): - right = left + width - gradient_image(ax, extent=(left, right, bottom, top), - cmap=plt.cm.Blues_r, cmap_range=(0, 0.8)) - - -xmin, xmax = xlim = 0, 10 -ymin, ymax = ylim = 0, 1 - -fig, ax = plt.subplots() -ax.set(xlim=xlim, ylim=ylim, autoscale_on=False) - -# background image -gradient_image(ax, direction=0, extent=(0, 1, 0, 1), transform=ax.transAxes, - cmap=plt.cm.Oranges, cmap_range=(0.1, 0.6)) - -N = 10 -x = np.arange(N) + 0.15 -y = np.random.rand(N) -gradient_bar(ax, x, y, width=0.7) -ax.set_aspect('auto') -plt.show() diff --git a/_downloads/dda45c217610b046591c94886fe5bd1e/errorbar_limits.ipynb b/_downloads/dda45c217610b046591c94886fe5bd1e/errorbar_limits.ipynb deleted file mode 100644 index 21c971d3642..00000000000 --- a/_downloads/dda45c217610b046591c94886fe5bd1e/errorbar_limits.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Including upper and lower limits in error bars\n\n\nIn matplotlib, errors bars can have \"limits\". Applying limits to the\nerror bars essentially makes the error unidirectional. Because of that,\nupper and lower limits can be applied in both the y- and x-directions\nvia the ``uplims``, ``lolims``, ``xuplims``, and ``xlolims`` parameters,\nrespectively. These parameters can be scalar or boolean arrays.\n\nFor example, if ``xlolims`` is ``True``, the x-error bars will only\nextend from the data towards increasing values. If ``uplims`` is an\narray filled with ``False`` except for the 4th and 7th values, all of the\ny-error bars will be bidirectional, except the 4th and 7th bars, which\nwill extend from the data towards decreasing y-values.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# example data\nx = np.array([0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0])\ny = np.exp(-x)\nxerr = 0.1\nyerr = 0.2\n\n# lower & upper limits of the error\nlolims = np.array([0, 0, 1, 0, 1, 0, 0, 0, 1, 0], dtype=bool)\nuplims = np.array([0, 1, 0, 0, 0, 1, 0, 0, 0, 1], dtype=bool)\nls = 'dotted'\n\nfig, ax = plt.subplots(figsize=(7, 4))\n\n# standard error bars\nax.errorbar(x, y, xerr=xerr, yerr=yerr, linestyle=ls)\n\n# including upper limits\nax.errorbar(x, y + 0.5, xerr=xerr, yerr=yerr, uplims=uplims,\n linestyle=ls)\n\n# including lower limits\nax.errorbar(x, y + 1.0, xerr=xerr, yerr=yerr, lolims=lolims,\n linestyle=ls)\n\n# including upper and lower limits\nax.errorbar(x, y + 1.5, xerr=xerr, yerr=yerr,\n lolims=lolims, uplims=uplims,\n marker='o', markersize=8,\n linestyle=ls)\n\n# Plot a series with lower and upper limits in both x & y\n# constant x-error with varying y-error\nxerr = 0.2\nyerr = np.zeros_like(x) + 0.2\nyerr[[3, 6]] = 0.3\n\n# mock up some limits by modifying previous data\nxlolims = lolims\nxuplims = uplims\nlolims = np.zeros(x.shape)\nuplims = np.zeros(x.shape)\nlolims[[6]] = True # only limited at this index\nuplims[[3]] = True # only limited at this index\n\n# do the plotting\nax.errorbar(x, y + 2.1, xerr=xerr, yerr=yerr,\n xlolims=xlolims, xuplims=xuplims,\n uplims=uplims, lolims=lolims,\n marker='o', markersize=8,\n linestyle='none')\n\n# tidy up the figure\nax.set_xlim((0, 5.5))\nax.set_title('Errorbar upper and lower limits')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dda664a43892a222db34577d1c921606/histogram_cumulative.ipynb b/_downloads/dda664a43892a222db34577d1c921606/histogram_cumulative.ipynb deleted file mode 120000 index 341ac015369..00000000000 --- a/_downloads/dda664a43892a222db34577d1c921606/histogram_cumulative.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/dda664a43892a222db34577d1c921606/histogram_cumulative.ipynb \ No newline at end of file diff --git a/_downloads/dda973fc1df31f9cb20e3a0a17cf23f6/mri_demo.ipynb b/_downloads/dda973fc1df31f9cb20e3a0a17cf23f6/mri_demo.ipynb deleted file mode 120000 index 1cc07a83903..00000000000 --- a/_downloads/dda973fc1df31f9cb20e3a0a17cf23f6/mri_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dda973fc1df31f9cb20e3a0a17cf23f6/mri_demo.ipynb \ No newline at end of file diff --git a/_downloads/ddacf6526b0ce32fef5d7e768e448e7b/fancybox_demo.ipynb b/_downloads/ddacf6526b0ce32fef5d7e768e448e7b/fancybox_demo.ipynb deleted file mode 120000 index 55f46c299a7..00000000000 --- a/_downloads/ddacf6526b0ce32fef5d7e768e448e7b/fancybox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ddacf6526b0ce32fef5d7e768e448e7b/fancybox_demo.ipynb \ No newline at end of file diff --git a/_downloads/ddb2d93e103c821f5ebbeacee830c574/trifinder_event_demo.py b/_downloads/ddb2d93e103c821f5ebbeacee830c574/trifinder_event_demo.py deleted file mode 120000 index 6e22359e061..00000000000 --- a/_downloads/ddb2d93e103c821f5ebbeacee830c574/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ddb2d93e103c821f5ebbeacee830c574/trifinder_event_demo.py \ No newline at end of file diff --git a/_downloads/ddcd09567083e5fbdc8a8b337ff97165/simple_axisline2.ipynb b/_downloads/ddcd09567083e5fbdc8a8b337ff97165/simple_axisline2.ipynb deleted file mode 120000 index 2697929207f..00000000000 --- a/_downloads/ddcd09567083e5fbdc8a8b337ff97165/simple_axisline2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/ddcd09567083e5fbdc8a8b337ff97165/simple_axisline2.ipynb \ No newline at end of file diff --git a/_downloads/ddce0d5e281a05256c69ffbf8d95a3b3/custom_legends.py b/_downloads/ddce0d5e281a05256c69ffbf8d95a3b3/custom_legends.py deleted file mode 120000 index d45118c2e73..00000000000 --- a/_downloads/ddce0d5e281a05256c69ffbf8d95a3b3/custom_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ddce0d5e281a05256c69ffbf8d95a3b3/custom_legends.py \ No newline at end of file diff --git a/_downloads/ddd134a56a155a085d7605851d943b3f/embedding_in_qt_sgskip.py b/_downloads/ddd134a56a155a085d7605851d943b3f/embedding_in_qt_sgskip.py deleted file mode 120000 index 51aa2b2b13c..00000000000 --- a/_downloads/ddd134a56a155a085d7605851d943b3f/embedding_in_qt_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ddd134a56a155a085d7605851d943b3f/embedding_in_qt_sgskip.py \ No newline at end of file diff --git a/_downloads/ddd20dffbb5085094f08284a913a2abb/mandelbrot.py b/_downloads/ddd20dffbb5085094f08284a913a2abb/mandelbrot.py deleted file mode 120000 index ea5bc6d4f44..00000000000 --- a/_downloads/ddd20dffbb5085094f08284a913a2abb/mandelbrot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ddd20dffbb5085094f08284a913a2abb/mandelbrot.py \ No newline at end of file diff --git a/_downloads/dddabc3191213a1cd9db891e80772dd7/connectionstyle_demo.ipynb b/_downloads/dddabc3191213a1cd9db891e80772dd7/connectionstyle_demo.ipynb deleted file mode 120000 index d81233270e4..00000000000 --- a/_downloads/dddabc3191213a1cd9db891e80772dd7/connectionstyle_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dddabc3191213a1cd9db891e80772dd7/connectionstyle_demo.ipynb \ No newline at end of file diff --git a/_downloads/dddc09b776a1e456843d4327190259af/subplot_demo.ipynb b/_downloads/dddc09b776a1e456843d4327190259af/subplot_demo.ipynb deleted file mode 100644 index ead8b35f915..00000000000 --- a/_downloads/dddc09b776a1e456843d4327190259af/subplot_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Basic Subplot Demo\n\n\nDemo with two subplots.\nFor more options, see\n:doc:`/gallery/subplots_axes_and_figures/subplots_demo`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Data for plotting\nx1 = np.linspace(0.0, 5.0)\nx2 = np.linspace(0.0, 2.0)\ny1 = np.cos(2 * np.pi * x1) * np.exp(-x1)\ny2 = np.cos(2 * np.pi * x2)\n\n# Create two subplots sharing y axis\nfig, (ax1, ax2) = plt.subplots(2, sharey=True)\n\nax1.plot(x1, y1, 'ko-')\nax1.set(title='A tale of 2 subplots', ylabel='Damped oscillation')\n\nax2.plot(x2, y2, 'r.-')\nax2.set(xlabel='time (s)', ylabel='Undamped')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dddc15939bf811a14318d6e99eb67db2/ginput_demo_sgskip.ipynb b/_downloads/dddc15939bf811a14318d6e99eb67db2/ginput_demo_sgskip.ipynb deleted file mode 120000 index 2548dbed6e2..00000000000 --- a/_downloads/dddc15939bf811a14318d6e99eb67db2/ginput_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/dddc15939bf811a14318d6e99eb67db2/ginput_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/dde8bce4a3266a4b3702098ddc49f236/multicolored_line.py b/_downloads/dde8bce4a3266a4b3702098ddc49f236/multicolored_line.py deleted file mode 120000 index f0b52d29534..00000000000 --- a/_downloads/dde8bce4a3266a4b3702098ddc49f236/multicolored_line.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dde8bce4a3266a4b3702098ddc49f236/multicolored_line.py \ No newline at end of file diff --git a/_downloads/ddf02a195788c0b9ecfdb1608a34c62a/aspect_loglog.py b/_downloads/ddf02a195788c0b9ecfdb1608a34c62a/aspect_loglog.py deleted file mode 120000 index d4976cd6b7f..00000000000 --- a/_downloads/ddf02a195788c0b9ecfdb1608a34c62a/aspect_loglog.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ddf02a195788c0b9ecfdb1608a34c62a/aspect_loglog.py \ No newline at end of file diff --git a/_downloads/ddf605facc37a53bab8cc3d28a414725/fancyarrow_demo.py b/_downloads/ddf605facc37a53bab8cc3d28a414725/fancyarrow_demo.py deleted file mode 120000 index 1ecbfbaeeef..00000000000 --- a/_downloads/ddf605facc37a53bab8cc3d28a414725/fancyarrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ddf605facc37a53bab8cc3d28a414725/fancyarrow_demo.py \ No newline at end of file diff --git a/_downloads/ddf64a475b1efb8e59b351f4776ef736/menu.py b/_downloads/ddf64a475b1efb8e59b351f4776ef736/menu.py deleted file mode 120000 index b319ea5fa9c..00000000000 --- a/_downloads/ddf64a475b1efb8e59b351f4776ef736/menu.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ddf64a475b1efb8e59b351f4776ef736/menu.py \ No newline at end of file diff --git a/_downloads/de08d382e3015fc0e1787c66d8db2e3a/plot_streamplot.ipynb b/_downloads/de08d382e3015fc0e1787c66d8db2e3a/plot_streamplot.ipynb deleted file mode 120000 index 10ffc86ac26..00000000000 --- a/_downloads/de08d382e3015fc0e1787c66d8db2e3a/plot_streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/de08d382e3015fc0e1787c66d8db2e3a/plot_streamplot.ipynb \ No newline at end of file diff --git a/_downloads/de0c50c73ccce5ab0e7002f13f16a6d4/hatch_demo.py b/_downloads/de0c50c73ccce5ab0e7002f13f16a6d4/hatch_demo.py deleted file mode 120000 index fc52994dc8c..00000000000 --- a/_downloads/de0c50c73ccce5ab0e7002f13f16a6d4/hatch_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/de0c50c73ccce5ab0e7002f13f16a6d4/hatch_demo.py \ No newline at end of file diff --git a/_downloads/de185df8069c302ac85adb149de3a67d/tricontour_smooth_user.py b/_downloads/de185df8069c302ac85adb149de3a67d/tricontour_smooth_user.py deleted file mode 120000 index 1fdbef9d80a..00000000000 --- a/_downloads/de185df8069c302ac85adb149de3a67d/tricontour_smooth_user.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/de185df8069c302ac85adb149de3a67d/tricontour_smooth_user.py \ No newline at end of file diff --git a/_downloads/de21fe886b70f4b57293aefb27130698/font_table_ttf_sgskip.ipynb b/_downloads/de21fe886b70f4b57293aefb27130698/font_table_ttf_sgskip.ipynb deleted file mode 120000 index 28537cb4dc5..00000000000 --- a/_downloads/de21fe886b70f4b57293aefb27130698/font_table_ttf_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/de21fe886b70f4b57293aefb27130698/font_table_ttf_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/de22ef08c46dfed31dbaae30d5e5595b/spines_bounds.ipynb b/_downloads/de22ef08c46dfed31dbaae30d5e5595b/spines_bounds.ipynb deleted file mode 120000 index 987857083dc..00000000000 --- a/_downloads/de22ef08c46dfed31dbaae30d5e5595b/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/de22ef08c46dfed31dbaae30d5e5595b/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/de2486dda99323084904730cf3e34ee7/demo_text_path.py b/_downloads/de2486dda99323084904730cf3e34ee7/demo_text_path.py deleted file mode 120000 index 6a35c7e4e5f..00000000000 --- a/_downloads/de2486dda99323084904730cf3e34ee7/demo_text_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/de2486dda99323084904730cf3e34ee7/demo_text_path.py \ No newline at end of file diff --git a/_downloads/de27c3282ab4125791a2bad51116602e/subplots_demo.py b/_downloads/de27c3282ab4125791a2bad51116602e/subplots_demo.py deleted file mode 100644 index c850cec7be6..00000000000 --- a/_downloads/de27c3282ab4125791a2bad51116602e/subplots_demo.py +++ /dev/null @@ -1,191 +0,0 @@ -""" -================================================ -Creating multiple subplots using ``plt.subplot`` -================================================ - -`.pyplot.subplots` creates a figure and a grid of subplots with a single call, -while providing reasonable control over how the individual plots are created. -For more advanced use cases you can use `.GridSpec` for a more general subplot -layout or `.Figure.add_subplot` for adding subplots at arbitrary locations -within the figure. -""" - -# sphinx_gallery_thumbnail_number = 11 - -import matplotlib.pyplot as plt -import numpy as np - -# Some example data to display -x = np.linspace(0, 2 * np.pi, 400) -y = np.sin(x ** 2) - -############################################################################### -# A figure with just one subplot -# """""""""""""""""""""""""""""" -# -# ``subplots()`` without arguments returns a `.Figure` and a single -# `~.axes.Axes`. -# -# This is actually the simplest and recommended way of creating a single -# Figure and Axes. - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_title('A single plot') - -############################################################################### -# Stacking subplots in one direction -# """""""""""""""""""""""""""""""""" -# -# The first two optional arguments of `.pyplot.subplots` define the number of -# rows and columns of the subplot grid. -# -# When stacking in one direction only, the returned `axs` is a 1D numpy array -# containing the list of created Axes. - -fig, axs = plt.subplots(2) -fig.suptitle('Vertically stacked subplots') -axs[0].plot(x, y) -axs[1].plot(x, -y) - -############################################################################### -# If you are creating just a few Axes, it's handy to unpack them immediately to -# dedicated variables for each Axes. That way, we can use ``ax1`` instead of -# the more verbose ``axs[0]``. - -fig, (ax1, ax2) = plt.subplots(2) -fig.suptitle('Vertically stacked subplots') -ax1.plot(x, y) -ax2.plot(x, -y) - -############################################################################### -# To obtain side-by-side subplots, pass parameters ``1, 2`` for one row and two -# columns. - -fig, (ax1, ax2) = plt.subplots(1, 2) -fig.suptitle('Horizontally stacked subplots') -ax1.plot(x, y) -ax2.plot(x, -y) - -############################################################################### -# Stacking subplots in two directions -# """"""""""""""""""""""""""""""""""" -# -# When stacking in two directions, the returned `axs` is a 2D numpy array. -# -# If you have to set parameters for each subplot it's handy to iterate over -# all subplots in a 2D grid using ``for ax in axs.flat:``. - -fig, axs = plt.subplots(2, 2) -axs[0, 0].plot(x, y) -axs[0, 0].set_title('Axis [0,0]') -axs[0, 1].plot(x, y, 'tab:orange') -axs[0, 1].set_title('Axis [0,1]') -axs[1, 0].plot(x, -y, 'tab:green') -axs[1, 0].set_title('Axis [1,0]') -axs[1, 1].plot(x, -y, 'tab:red') -axs[1, 1].set_title('Axis [1,1]') - -for ax in axs.flat: - ax.set(xlabel='x-label', ylabel='y-label') - -# Hide x labels and tick labels for top plots and y ticks for right plots. -for ax in axs.flat: - ax.label_outer() - -############################################################################### -# You can use tuple-unpacking also in 2D to assign all subplots to dedicated -# variables: - -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) -fig.suptitle('Sharing x per column, y per row') -ax1.plot(x, y) -ax2.plot(x, y**2, 'tab:orange') -ax3.plot(x, -y, 'tab:green') -ax4.plot(x, -y**2, 'tab:red') - -for ax in fig.get_axes(): - ax.label_outer() - -############################################################################### -# Sharing axes -# """""""""""" -# -# By default, each Axes is scaled individually. Thus, if the ranges are -# different the tick values of the subplots do not align. - -fig, (ax1, ax2) = plt.subplots(2) -fig.suptitle('Axes values are scaled individually by default') -ax1.plot(x, y) -ax2.plot(x + 1, -y) - -############################################################################### -# You can use *sharex* or *sharey* to align the horizontal or vertical axis. - -fig, (ax1, ax2) = plt.subplots(2, sharex=True) -fig.suptitle('Aligning x-axis using sharex') -ax1.plot(x, y) -ax2.plot(x + 1, -y) - -############################################################################### -# Setting *sharex* or *sharey* to ``True`` enables global sharing across the -# whole grid, i.e. also the y-axes of vertically stacked subplots have the -# same scale when using ``sharey=True``. - -fig, axs = plt.subplots(3, sharex=True, sharey=True) -fig.suptitle('Sharing both axes') -axs[0].plot(x, y ** 2) -axs[1].plot(x, 0.3 * y, 'o') -axs[2].plot(x, y, '+') - -############################################################################### -# For subplots that are sharing axes one set of tick labels is enough. Tick -# labels of inner Axes are automatically removed by *sharex* and *sharey*. -# Still there remains an unused empty space between the subplots. -# -# The parameter *gridspec_kw* of `.pyplot.subplots` controls the grid -# properties (see also `.GridSpec`). For example, we can reduce the height -# between vertical subplots using ``gridspec_kw={'hspace': 0}``. -# -# `.label_outer` is a handy method to remove labels and ticks from subplots -# that are not at the edge of the grid. - -fig, axs = plt.subplots(3, sharex=True, sharey=True, gridspec_kw={'hspace': 0}) -fig.suptitle('Sharing both axes') -axs[0].plot(x, y ** 2) -axs[1].plot(x, 0.3 * y, 'o') -axs[2].plot(x, y, '+') - -# Hide x labels and tick labels for all but bottom plot. -for ax in axs: - ax.label_outer() - -############################################################################### -# Apart from ``True`` and ``False``, both *sharex* and *sharey* accept the -# values 'row' and 'col' to share the values only per row or column. - -fig, axs = plt.subplots(2, 2, sharex='col', sharey='row', - gridspec_kw={'hspace': 0, 'wspace': 0}) -(ax1, ax2), (ax3, ax4) = axs -fig.suptitle('Sharing x per column, y per row') -ax1.plot(x, y) -ax2.plot(x, y**2, 'tab:orange') -ax3.plot(x + 1, -y, 'tab:green') -ax4.plot(x + 2, -y**2, 'tab:red') - -for ax in axs.flat: - ax.label_outer() - -############################################################################### -# Polar axes -# """""""""" -# -# The parameter *subplot_kw* of `.pyplot.subplots` controls the subplot -# properties (see also `.Figure.add_subplot`). In particular, this can be used -# to create a grid of polar Axes. - -fig, (ax1, ax2) = plt.subplots(1, 2, subplot_kw=dict(projection='polar')) -ax1.plot(x, y) -ax2.plot(x, y ** 2) - -plt.show() diff --git a/_downloads/de35ff396471ffb03f626a3329eb27e5/subplot_toolbar.ipynb b/_downloads/de35ff396471ffb03f626a3329eb27e5/subplot_toolbar.ipynb deleted file mode 100644 index e5a001244a0..00000000000 --- a/_downloads/de35ff396471ffb03f626a3329eb27e5/subplot_toolbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Subplot Toolbar\n\n\nMatplotlib has a toolbar available for adjusting subplot spacing.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axs = plt.subplots(2, 2)\n\naxs[0, 0].imshow(np.random.random((100, 100)))\n\naxs[0, 1].imshow(np.random.random((100, 100)))\n\naxs[1, 0].imshow(np.random.random((100, 100)))\n\naxs[1, 1].imshow(np.random.random((100, 100)))\n\nplt.subplot_tool()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/de3a9d1d12dbe56e39a78add797993f1/custom_scale.ipynb b/_downloads/de3a9d1d12dbe56e39a78add797993f1/custom_scale.ipynb deleted file mode 100644 index 22ef3de7b50..00000000000 --- a/_downloads/de3a9d1d12dbe56e39a78add797993f1/custom_scale.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom scale\n\n\nCreate a custom scale, by implementing the scaling use for latitude data in a\nMercator Projection.\n\nUnless you are making special use of the `~.Transform` class, you probably\ndon't need to use this verbose method, and instead can use\n`~.matplotlib.scale.FuncScale` and the ``'function'`` option of\n`~.matplotlib.axes.Axes.set_xscale` and `~.matplotlib.axes.Axes.set_yscale`.\nSee the last example in :doc:`/gallery/scales/scales`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom numpy import ma\nfrom matplotlib import scale as mscale\nfrom matplotlib import transforms as mtransforms\nfrom matplotlib.ticker import Formatter, FixedLocator\nfrom matplotlib import rcParams\n\n\n# BUG: this example fails with any other setting of axisbelow\nrcParams['axes.axisbelow'] = False\n\n\nclass MercatorLatitudeScale(mscale.ScaleBase):\n \"\"\"\n Scales data in range -pi/2 to pi/2 (-90 to 90 degrees) using\n the system used to scale latitudes in a Mercator projection.\n\n The scale function:\n ln(tan(y) + sec(y))\n\n The inverse scale function:\n atan(sinh(y))\n\n Since the Mercator scale tends to infinity at +/- 90 degrees,\n there is user-defined threshold, above and below which nothing\n will be plotted. This defaults to +/- 85 degrees.\n\n source:\n http://en.wikipedia.org/wiki/Mercator_projection\n \"\"\"\n\n # The scale class must have a member ``name`` that defines the string used\n # to select the scale. For example, ``gca().set_yscale(\"mercator\")`` would\n # be used to select this scale.\n name = 'mercator'\n\n def __init__(self, axis, *, thresh=np.deg2rad(85), **kwargs):\n \"\"\"\n Any keyword arguments passed to ``set_xscale`` and ``set_yscale`` will\n be passed along to the scale's constructor.\n\n thresh: The degree above which to crop the data.\n \"\"\"\n super().__init__(axis)\n if thresh >= np.pi / 2:\n raise ValueError(\"thresh must be less than pi/2\")\n self.thresh = thresh\n\n def get_transform(self):\n \"\"\"\n Override this method to return a new instance that does the\n actual transformation of the data.\n\n The MercatorLatitudeTransform class is defined below as a\n nested class of this one.\n \"\"\"\n return self.MercatorLatitudeTransform(self.thresh)\n\n def set_default_locators_and_formatters(self, axis):\n \"\"\"\n Override to set up the locators and formatters to use with the\n scale. This is only required if the scale requires custom\n locators and formatters. Writing custom locators and\n formatters is rather outside the scope of this example, but\n there are many helpful examples in ``ticker.py``.\n\n In our case, the Mercator example uses a fixed locator from\n -90 to 90 degrees and a custom formatter class to put convert\n the radians to degrees and put a degree symbol after the\n value::\n \"\"\"\n class DegreeFormatter(Formatter):\n def __call__(self, x, pos=None):\n return \"%d\\N{DEGREE SIGN}\" % np.degrees(x)\n\n axis.set_major_locator(FixedLocator(\n np.radians(np.arange(-90, 90, 10))))\n axis.set_major_formatter(DegreeFormatter())\n axis.set_minor_formatter(DegreeFormatter())\n\n def limit_range_for_scale(self, vmin, vmax, minpos):\n \"\"\"\n Override to limit the bounds of the axis to the domain of the\n transform. In the case of Mercator, the bounds should be\n limited to the threshold that was passed in. Unlike the\n autoscaling provided by the tick locators, this range limiting\n will always be adhered to, whether the axis range is set\n manually, determined automatically or changed through panning\n and zooming.\n \"\"\"\n return max(vmin, -self.thresh), min(vmax, self.thresh)\n\n class MercatorLatitudeTransform(mtransforms.Transform):\n # There are two value members that must be defined.\n # ``input_dims`` and ``output_dims`` specify number of input\n # dimensions and output dimensions to the transformation.\n # These are used by the transformation framework to do some\n # error checking and prevent incompatible transformations from\n # being connected together. When defining transforms for a\n # scale, which are, by definition, separable and have only one\n # dimension, these members should always be set to 1.\n input_dims = 1\n output_dims = 1\n is_separable = True\n has_inverse = True\n\n def __init__(self, thresh):\n mtransforms.Transform.__init__(self)\n self.thresh = thresh\n\n def transform_non_affine(self, a):\n \"\"\"\n This transform takes an Nx1 ``numpy`` array and returns a\n transformed copy. Since the range of the Mercator scale\n is limited by the user-specified threshold, the input\n array must be masked to contain only valid values.\n ``matplotlib`` will handle masked arrays and remove the\n out-of-range data from the plot. Importantly, the\n ``transform`` method *must* return an array that is the\n same shape as the input array, since these values need to\n remain synchronized with values in the other dimension.\n \"\"\"\n masked = ma.masked_where((a < -self.thresh) | (a > self.thresh), a)\n if masked.mask.any():\n return ma.log(np.abs(ma.tan(masked) + 1.0 / ma.cos(masked)))\n else:\n return np.log(np.abs(np.tan(a) + 1.0 / np.cos(a)))\n\n def inverted(self):\n \"\"\"\n Override this method so matplotlib knows how to get the\n inverse transform for this transform.\n \"\"\"\n return MercatorLatitudeScale.InvertedMercatorLatitudeTransform(\n self.thresh)\n\n class InvertedMercatorLatitudeTransform(mtransforms.Transform):\n input_dims = 1\n output_dims = 1\n is_separable = True\n has_inverse = True\n\n def __init__(self, thresh):\n mtransforms.Transform.__init__(self)\n self.thresh = thresh\n\n def transform_non_affine(self, a):\n return np.arctan(np.sinh(a))\n\n def inverted(self):\n return MercatorLatitudeScale.MercatorLatitudeTransform(self.thresh)\n\n# Now that the Scale class has been defined, it must be registered so\n# that ``matplotlib`` can find it.\nmscale.register_scale(MercatorLatitudeScale)\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n\n t = np.arange(-180.0, 180.0, 0.1)\n s = np.radians(t)/2.\n\n plt.plot(t, s, '-', lw=2)\n plt.gca().set_yscale('mercator')\n\n plt.xlabel('Longitude')\n plt.ylabel('Latitude')\n plt.title('Mercator: Projection of the Oppressor')\n plt.grid(True)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/de3ad5e08c748041c803aa35a1a4f788/pythonic_matplotlib.py b/_downloads/de3ad5e08c748041c803aa35a1a4f788/pythonic_matplotlib.py deleted file mode 120000 index 76fd2f1b4ca..00000000000 --- a/_downloads/de3ad5e08c748041c803aa35a1a4f788/pythonic_matplotlib.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/de3ad5e08c748041c803aa35a1a4f788/pythonic_matplotlib.py \ No newline at end of file diff --git a/_downloads/de43c754ad98ef1962b05aadba0130a7/artist_reference.ipynb b/_downloads/de43c754ad98ef1962b05aadba0130a7/artist_reference.ipynb deleted file mode 120000 index a6385d25c51..00000000000 --- a/_downloads/de43c754ad98ef1962b05aadba0130a7/artist_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/de43c754ad98ef1962b05aadba0130a7/artist_reference.ipynb \ No newline at end of file diff --git a/_downloads/de4932798fa38313ae8d1836e921d6f6/poly_editor.ipynb b/_downloads/de4932798fa38313ae8d1836e921d6f6/poly_editor.ipynb deleted file mode 120000 index 675eb70b8ad..00000000000 --- a/_downloads/de4932798fa38313ae8d1836e921d6f6/poly_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/de4932798fa38313ae8d1836e921d6f6/poly_editor.ipynb \ No newline at end of file diff --git a/_downloads/de5059208d0723fc96034c65b8be46de/3D.py b/_downloads/de5059208d0723fc96034c65b8be46de/3D.py deleted file mode 120000 index c53a55220cf..00000000000 --- a/_downloads/de5059208d0723fc96034c65b8be46de/3D.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/de5059208d0723fc96034c65b8be46de/3D.py \ No newline at end of file diff --git a/_downloads/de563e636662822a232084f6f4f64f41/histogram_path.ipynb b/_downloads/de563e636662822a232084f6f4f64f41/histogram_path.ipynb deleted file mode 120000 index 5c902ba943a..00000000000 --- a/_downloads/de563e636662822a232084f6f4f64f41/histogram_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/de563e636662822a232084f6f4f64f41/histogram_path.ipynb \ No newline at end of file diff --git a/_downloads/de5f207756e3b553ec6167e6251d43d7/contourf_hatching.ipynb b/_downloads/de5f207756e3b553ec6167e6251d43d7/contourf_hatching.ipynb deleted file mode 120000 index 0017cfa30c1..00000000000 --- a/_downloads/de5f207756e3b553ec6167e6251d43d7/contourf_hatching.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/de5f207756e3b553ec6167e6251d43d7/contourf_hatching.ipynb \ No newline at end of file diff --git a/_downloads/de5fb71b434162ebe0e15e6fa788ad7a/axis_direction_demo_step03.ipynb b/_downloads/de5fb71b434162ebe0e15e6fa788ad7a/axis_direction_demo_step03.ipynb deleted file mode 120000 index 099b5a89561..00000000000 --- a/_downloads/de5fb71b434162ebe0e15e6fa788ad7a/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/de5fb71b434162ebe0e15e6fa788ad7a/axis_direction_demo_step03.ipynb \ No newline at end of file diff --git a/_downloads/de61d97d5d55c8d597c2ed55ab57ee65/psd_demo.py b/_downloads/de61d97d5d55c8d597c2ed55ab57ee65/psd_demo.py deleted file mode 100644 index cd0d3588263..00000000000 --- a/_downloads/de61d97d5d55c8d597c2ed55ab57ee65/psd_demo.py +++ /dev/null @@ -1,174 +0,0 @@ -""" -======== -Psd Demo -======== - -Plotting Power Spectral Density (PSD) in Matplotlib. - -The PSD is a common plot in the field of signal processing. NumPy has -many useful libraries for computing a PSD. Below we demo a few examples -of how this can be accomplished and visualized with Matplotlib. -""" -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.mlab as mlab -import matplotlib.gridspec as gridspec - -# Fixing random state for reproducibility -np.random.seed(19680801) - -dt = 0.01 -t = np.arange(0, 10, dt) -nse = np.random.randn(len(t)) -r = np.exp(-t / 0.05) - -cnse = np.convolve(nse, r) * dt -cnse = cnse[:len(t)] -s = 0.1 * np.sin(2 * np.pi * t) + cnse - -plt.subplot(211) -plt.plot(t, s) -plt.subplot(212) -plt.psd(s, 512, 1 / dt) - -plt.show() - -############################################################################### -# Compare this with the equivalent Matlab code to accomplish the same thing:: -# -# dt = 0.01; -# t = [0:dt:10]; -# nse = randn(size(t)); -# r = exp(-t/0.05); -# cnse = conv(nse, r)*dt; -# cnse = cnse(1:length(t)); -# s = 0.1*sin(2*pi*t) + cnse; -# -# subplot(211) -# plot(t,s) -# subplot(212) -# psd(s, 512, 1/dt) -# -# Below we'll show a slightly more complex example that demonstrates -# how padding affects the resulting PSD. - -dt = np.pi / 100. -fs = 1. / dt -t = np.arange(0, 8, dt) -y = 10. * np.sin(2 * np.pi * 4 * t) + 5. * np.sin(2 * np.pi * 4.25 * t) -y = y + np.random.randn(*t.shape) - -# Plot the raw time series -fig = plt.figure(constrained_layout=True) -gs = gridspec.GridSpec(2, 3, figure=fig) -ax = fig.add_subplot(gs[0, :]) -ax.plot(t, y) -ax.set_xlabel('time [s]') -ax.set_ylabel('signal') - -# Plot the PSD with different amounts of zero padding. This uses the entire -# time series at once -ax2 = fig.add_subplot(gs[1, 0]) -ax2.psd(y, NFFT=len(t), pad_to=len(t), Fs=fs) -ax2.psd(y, NFFT=len(t), pad_to=len(t) * 2, Fs=fs) -ax2.psd(y, NFFT=len(t), pad_to=len(t) * 4, Fs=fs) -plt.title('zero padding') - -# Plot the PSD with different block sizes, Zero pad to the length of the -# original data sequence. -ax3 = fig.add_subplot(gs[1, 1], sharex=ax2, sharey=ax2) -ax3.psd(y, NFFT=len(t), pad_to=len(t), Fs=fs) -ax3.psd(y, NFFT=len(t) // 2, pad_to=len(t), Fs=fs) -ax3.psd(y, NFFT=len(t) // 4, pad_to=len(t), Fs=fs) -ax3.set_ylabel('') -plt.title('block size') - -# Plot the PSD with different amounts of overlap between blocks -ax4 = fig.add_subplot(gs[1, 2], sharex=ax2, sharey=ax2) -ax4.psd(y, NFFT=len(t) // 2, pad_to=len(t), noverlap=0, Fs=fs) -ax4.psd(y, NFFT=len(t) // 2, pad_to=len(t), - noverlap=int(0.05 * len(t) / 2.), Fs=fs) -ax4.psd(y, NFFT=len(t) // 2, pad_to=len(t), - noverlap=int(0.2 * len(t) / 2.), Fs=fs) -ax4.set_ylabel('') -plt.title('overlap') - -plt.show() - - -############################################################################### -# This is a ported version of a MATLAB example from the signal -# processing toolbox that showed some difference at one time between -# Matplotlib's and MATLAB's scaling of the PSD. - -fs = 1000 -t = np.linspace(0, 0.3, 301) -A = np.array([2, 8]).reshape(-1, 1) -f = np.array([150, 140]).reshape(-1, 1) -xn = (A * np.sin(2 * np.pi * f * t)).sum(axis=0) -xn += 5 * np.random.randn(*t.shape) - -fig, (ax0, ax1) = plt.subplots(ncols=2, constrained_layout=True) - -yticks = np.arange(-50, 30, 10) -yrange = (yticks[0], yticks[-1]) -xticks = np.arange(0, 550, 100) - -ax0.psd(xn, NFFT=301, Fs=fs, window=mlab.window_none, pad_to=1024, - scale_by_freq=True) -ax0.set_title('Periodogram') -ax0.set_yticks(yticks) -ax0.set_xticks(xticks) -ax0.grid(True) -ax0.set_ylim(yrange) - -ax1.psd(xn, NFFT=150, Fs=fs, window=mlab.window_none, pad_to=512, noverlap=75, - scale_by_freq=True) -ax1.set_title('Welch') -ax1.set_xticks(xticks) -ax1.set_yticks(yticks) -ax1.set_ylabel('') # overwrite the y-label added by `psd` -ax1.grid(True) -ax1.set_ylim(yrange) - -plt.show() - -############################################################################### -# This is a ported version of a MATLAB example from the signal -# processing toolbox that showed some difference at one time between -# Matplotlib's and MATLAB's scaling of the PSD. -# -# It uses a complex signal so we can see that complex PSD's work properly. - -prng = np.random.RandomState(19680801) # to ensure reproducibility - -fs = 1000 -t = np.linspace(0, 0.3, 301) -A = np.array([2, 8]).reshape(-1, 1) -f = np.array([150, 140]).reshape(-1, 1) -xn = (A * np.exp(2j * np.pi * f * t)).sum(axis=0) + 5 * prng.randn(*t.shape) - -fig, (ax0, ax1) = plt.subplots(ncols=2, constrained_layout=True) - -yticks = np.arange(-50, 30, 10) -yrange = (yticks[0], yticks[-1]) -xticks = np.arange(-500, 550, 200) - -ax0.psd(xn, NFFT=301, Fs=fs, window=mlab.window_none, pad_to=1024, - scale_by_freq=True) -ax0.set_title('Periodogram') -ax0.set_yticks(yticks) -ax0.set_xticks(xticks) -ax0.grid(True) -ax0.set_ylim(yrange) - -ax1.psd(xn, NFFT=150, Fs=fs, window=mlab.window_none, pad_to=512, noverlap=75, - scale_by_freq=True) -ax1.set_title('Welch') -ax1.set_xticks(xticks) -ax1.set_yticks(yticks) -ax1.set_ylabel('') # overwrite the y-label added by `psd` -ax1.grid(True) -ax1.set_ylim(yrange) - -plt.show() diff --git a/_downloads/de8003900c5e84440a3bb6d59cab409d/simple_axes_divider3.ipynb b/_downloads/de8003900c5e84440a3bb6d59cab409d/simple_axes_divider3.ipynb deleted file mode 120000 index fd3d2c164b8..00000000000 --- a/_downloads/de8003900c5e84440a3bb6d59cab409d/simple_axes_divider3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/de8003900c5e84440a3bb6d59cab409d/simple_axes_divider3.ipynb \ No newline at end of file diff --git a/_downloads/de8fc1e307771dcbeaff29d10070a95b/multiprocess_sgskip.ipynb b/_downloads/de8fc1e307771dcbeaff29d10070a95b/multiprocess_sgskip.ipynb deleted file mode 120000 index 46e2c5cbbd3..00000000000 --- a/_downloads/de8fc1e307771dcbeaff29d10070a95b/multiprocess_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/de8fc1e307771dcbeaff29d10070a95b/multiprocess_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/de99b2900e88f0a6d28183d74bf1a655/ticklabels_rotation.py b/_downloads/de99b2900e88f0a6d28183d74bf1a655/ticklabels_rotation.py deleted file mode 120000 index 171ac52ebe9..00000000000 --- a/_downloads/de99b2900e88f0a6d28183d74bf1a655/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/de99b2900e88f0a6d28183d74bf1a655/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/de9abbf3442949a99cf232bc38fafb3c/mathtext.py b/_downloads/de9abbf3442949a99cf232bc38fafb3c/mathtext.py deleted file mode 120000 index 2a6ba6dfe19..00000000000 --- a/_downloads/de9abbf3442949a99cf232bc38fafb3c/mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/de9abbf3442949a99cf232bc38fafb3c/mathtext.py \ No newline at end of file diff --git a/_downloads/dea1e008db42f3345477370dc2830766/fig_axes_customize_simple.py b/_downloads/dea1e008db42f3345477370dc2830766/fig_axes_customize_simple.py deleted file mode 100644 index 0d665b6a474..00000000000 --- a/_downloads/dea1e008db42f3345477370dc2830766/fig_axes_customize_simple.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -========================= -Fig Axes Customize Simple -========================= - -Customize the background, labels and ticks of a simple plot. -""" - -import matplotlib.pyplot as plt - -############################################################################### -# ``plt.figure`` creates a ```matplotlib.figure.Figure`` instance - -fig = plt.figure() -rect = fig.patch # a rectangle instance -rect.set_facecolor('lightgoldenrodyellow') - -ax1 = fig.add_axes([0.1, 0.3, 0.4, 0.4]) -rect = ax1.patch -rect.set_facecolor('lightslategray') - - -for label in ax1.xaxis.get_ticklabels(): - # label is a Text instance - label.set_color('tab:red') - label.set_rotation(45) - label.set_fontsize(16) - -for line in ax1.yaxis.get_ticklines(): - # line is a Line2D instance - line.set_color('tab:green') - line.set_markersize(25) - line.set_markeredgewidth(3) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axis.Axis.get_ticklabels -matplotlib.axis.Axis.get_ticklines -matplotlib.text.Text.set_rotation -matplotlib.text.Text.set_fontsize -matplotlib.text.Text.set_color -matplotlib.lines.Line2D -matplotlib.lines.Line2D.set_color -matplotlib.lines.Line2D.set_markersize -matplotlib.lines.Line2D.set_markeredgewidth -matplotlib.patches.Patch.set_facecolor diff --git a/_downloads/dea275eb81d513f06ed0c8b2e6b3f93d/layer_images.ipynb b/_downloads/dea275eb81d513f06ed0c8b2e6b3f93d/layer_images.ipynb deleted file mode 120000 index 1f3c6d4b767..00000000000 --- a/_downloads/dea275eb81d513f06ed0c8b2e6b3f93d/layer_images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dea275eb81d513f06ed0c8b2e6b3f93d/layer_images.ipynb \ No newline at end of file diff --git a/_downloads/dea6866476e58b4f2c15ca1de281a5a2/demo_colorbar_with_axes_divider.py b/_downloads/dea6866476e58b4f2c15ca1de281a5a2/demo_colorbar_with_axes_divider.py deleted file mode 100644 index fe808c081e0..00000000000 --- a/_downloads/dea6866476e58b4f2c15ca1de281a5a2/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -=============================== -Demo Colorbar with Axes Divider -=============================== - -The make_axes_locatable function (part of the axes_divider module) takes an -existing axes, creates a divider for it and returns an instance of the -AxesLocator class. The append_axes method of this AxesLocator can then be used -to create a new axes on a given side ("top", "right", "bottom", or "left") of -the original axes. This example uses Axes Divider to add colorbars next to -axes. -""" - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_divider import make_axes_locatable -from mpl_toolkits.axes_grid1.colorbar import colorbar - -fig, (ax1, ax2) = plt.subplots(1, 2) -fig.subplots_adjust(wspace=0.5) - -im1 = ax1.imshow([[1, 2], [3, 4]]) -ax1_divider = make_axes_locatable(ax1) -# add an axes to the right of the main axes. -cax1 = ax1_divider.append_axes("right", size="7%", pad="2%") -cb1 = colorbar(im1, cax=cax1) - -im2 = ax2.imshow([[1, 2], [3, 4]]) -ax2_divider = make_axes_locatable(ax2) -# add an axes above the main axes. -cax2 = ax2_divider.append_axes("top", size="7%", pad="2%") -cb2 = colorbar(im2, cax=cax2, orientation="horizontal") -# change tick position to top. Tick position defaults to bottom and overlaps -# the image. -cax2.xaxis.set_ticks_position("top") - -plt.show() diff --git a/_downloads/dead3c6d04914ecbf36e70452ae010d5/basic_units.ipynb b/_downloads/dead3c6d04914ecbf36e70452ae010d5/basic_units.ipynb deleted file mode 120000 index 0b0b4d44c60..00000000000 --- a/_downloads/dead3c6d04914ecbf36e70452ae010d5/basic_units.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dead3c6d04914ecbf36e70452ae010d5/basic_units.ipynb \ No newline at end of file diff --git a/_downloads/deade9d0a9d12dda227068d90dcd43e0/whats_new_99_spines.ipynb b/_downloads/deade9d0a9d12dda227068d90dcd43e0/whats_new_99_spines.ipynb deleted file mode 120000 index 3b4447d6db6..00000000000 --- a/_downloads/deade9d0a9d12dda227068d90dcd43e0/whats_new_99_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/deade9d0a9d12dda227068d90dcd43e0/whats_new_99_spines.ipynb \ No newline at end of file diff --git a/_downloads/deae2f2a8e327fa793384241e5a2c8bd/legend_demo.py b/_downloads/deae2f2a8e327fa793384241e5a2c8bd/legend_demo.py deleted file mode 100644 index 20fd9325993..00000000000 --- a/_downloads/deae2f2a8e327fa793384241e5a2c8bd/legend_demo.py +++ /dev/null @@ -1,182 +0,0 @@ -""" -=========== -Legend Demo -=========== - -Plotting legends in Matplotlib. - -There are many ways to create and customize legends in Matplotlib. Below -we'll show a few examples for how to do so. - -First we'll show off how to make a legend for specific lines. -""" - -import matplotlib.pyplot as plt -import matplotlib.collections as mcol -from matplotlib.legend_handler import HandlerLineCollection, HandlerTuple -from matplotlib.lines import Line2D -import numpy as np - -t1 = np.arange(0.0, 2.0, 0.1) -t2 = np.arange(0.0, 2.0, 0.01) - -fig, ax = plt.subplots() - -# note that plot returns a list of lines. The "l1, = plot" usage -# extracts the first element of the list into l1 using tuple -# unpacking. So l1 is a Line2D instance, not a sequence of lines -l1, = ax.plot(t2, np.exp(-t2)) -l2, l3 = ax.plot(t2, np.sin(2 * np.pi * t2), '--o', t1, np.log(1 + t1), '.') -l4, = ax.plot(t2, np.exp(-t2) * np.sin(2 * np.pi * t2), 's-.') - -ax.legend((l2, l4), ('oscillatory', 'damped'), loc='upper right', shadow=True) -ax.set_xlabel('time') -ax.set_ylabel('volts') -ax.set_title('Damped oscillation') -plt.show() - - -############################################################################### -# Next we'll demonstrate plotting more complex labels. - -x = np.linspace(0, 1) - -fig, (ax0, ax1) = plt.subplots(2, 1) - -# Plot the lines y=x**n for n=1..4. -for n in range(1, 5): - ax0.plot(x, x**n, label="n={0}".format(n)) -leg = ax0.legend(loc="upper left", bbox_to_anchor=[0, 1], - ncol=2, shadow=True, title="Legend", fancybox=True) -leg.get_title().set_color("red") - -# Demonstrate some more complex labels. -ax1.plot(x, x**2, label="multi\nline") -half_pi = np.linspace(0, np.pi / 2) -ax1.plot(np.sin(half_pi), np.cos(half_pi), label=r"$\frac{1}{2}\pi$") -ax1.plot(x, 2**(x**2), label="$2^{x^2}$") -ax1.legend(shadow=True, fancybox=True) - -plt.show() - - -############################################################################### -# Here we attach legends to more complex plots. - -fig, axes = plt.subplots(3, 1, constrained_layout=True) -top_ax, middle_ax, bottom_ax = axes - -top_ax.bar([0, 1, 2], [0.2, 0.3, 0.1], width=0.4, label="Bar 1", - align="center") -top_ax.bar([0.5, 1.5, 2.5], [0.3, 0.2, 0.2], color="red", width=0.4, - label="Bar 2", align="center") -top_ax.legend() - -middle_ax.errorbar([0, 1, 2], [2, 3, 1], xerr=0.4, fmt="s", label="test 1") -middle_ax.errorbar([0, 1, 2], [3, 2, 4], yerr=0.3, fmt="o", label="test 2") -middle_ax.errorbar([0, 1, 2], [1, 1, 3], xerr=0.4, yerr=0.3, fmt="^", - label="test 3") -middle_ax.legend() - -bottom_ax.stem([0.3, 1.5, 2.7], [1, 3.6, 2.7], label="stem test") -bottom_ax.legend() - -plt.show() - -############################################################################### -# Now we'll showcase legend entries with more than one legend key. - -fig, (ax1, ax2) = plt.subplots(2, 1, constrained_layout=True) - -# First plot: two legend keys for a single entry -p1 = ax1.scatter([1], [5], c='r', marker='s', s=100) -p2 = ax1.scatter([3], [2], c='b', marker='o', s=100) -# `plot` returns a list, but we want the handle - thus the comma on the left -p3, = ax1.plot([1, 5], [4, 4], 'm-d') - -# Assign two of the handles to the same legend entry by putting them in a tuple -# and using a generic handler map (which would be used for any additional -# tuples of handles like (p1, p3)). -l = ax1.legend([(p1, p3), p2], ['two keys', 'one key'], scatterpoints=1, - numpoints=1, handler_map={tuple: HandlerTuple(ndivide=None)}) - -# Second plot: plot two bar charts on top of each other and change the padding -# between the legend keys -x_left = [1, 2, 3] -y_pos = [1, 3, 2] -y_neg = [2, 1, 4] - -rneg = ax2.bar(x_left, y_neg, width=0.5, color='w', hatch='///', label='-1') -rpos = ax2.bar(x_left, y_pos, width=0.5, color='k', label='+1') - -# Treat each legend entry differently by using specific `HandlerTuple`s -l = ax2.legend([(rpos, rneg), (rneg, rpos)], ['pad!=0', 'pad=0'], - handler_map={(rpos, rneg): HandlerTuple(ndivide=None), - (rneg, rpos): HandlerTuple(ndivide=None, pad=0.)}) -plt.show() - -############################################################################### -# Finally, it is also possible to write custom objects that define -# how to stylize legends. - - -class HandlerDashedLines(HandlerLineCollection): - """ - Custom Handler for LineCollection instances. - """ - def create_artists(self, legend, orig_handle, - xdescent, ydescent, width, height, fontsize, trans): - # figure out how many lines there are - numlines = len(orig_handle.get_segments()) - xdata, xdata_marker = self.get_xdata(legend, xdescent, ydescent, - width, height, fontsize) - leglines = [] - # divide the vertical space where the lines will go - # into equal parts based on the number of lines - ydata = np.full_like(xdata, height / (numlines + 1)) - # for each line, create the line at the proper location - # and set the dash pattern - for i in range(numlines): - legline = Line2D(xdata, ydata * (numlines - i) - ydescent) - self.update_prop(legline, orig_handle, legend) - # set color, dash pattern, and linewidth to that - # of the lines in linecollection - try: - color = orig_handle.get_colors()[i] - except IndexError: - color = orig_handle.get_colors()[0] - try: - dashes = orig_handle.get_dashes()[i] - except IndexError: - dashes = orig_handle.get_dashes()[0] - try: - lw = orig_handle.get_linewidths()[i] - except IndexError: - lw = orig_handle.get_linewidths()[0] - if dashes[0] is not None: - legline.set_dashes(dashes[1]) - legline.set_color(color) - legline.set_transform(trans) - legline.set_linewidth(lw) - leglines.append(legline) - return leglines - -x = np.linspace(0, 5, 100) - -fig, ax = plt.subplots() -colors = plt.rcParams['axes.prop_cycle'].by_key()['color'][:5] -styles = ['solid', 'dashed', 'dashed', 'dashed', 'solid'] -lines = [] -for i, color, style in zip(range(5), colors, styles): - ax.plot(x, np.sin(x) - .1 * i, c=color, ls=style) - -# make proxy artists -# make list of one line -- doesn't matter what the coordinates are -line = [[(0, 0)]] -# set up the proxy artist -lc = mcol.LineCollection(5 * line, linestyles=styles, colors=colors) -# create the legend -ax.legend([lc], ['multi-line'], handler_map={type(lc): HandlerDashedLines()}, - handlelength=2.5, handleheight=3) - -plt.show() diff --git a/_downloads/dec05811ddbea112e2364a25d12a65a9/patheffect_demo.ipynb b/_downloads/dec05811ddbea112e2364a25d12a65a9/patheffect_demo.ipynb deleted file mode 100644 index ece320d7138..00000000000 --- a/_downloads/dec05811ddbea112e2364a25d12a65a9/patheffect_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Patheffect Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patheffects as PathEffects\nimport numpy as np\n\nplt.figure(figsize=(8, 3))\nax1 = plt.subplot(131)\nax1.imshow([[1, 2], [2, 3]])\ntxt = ax1.annotate(\"test\", (1., 1.), (0., 0),\n arrowprops=dict(arrowstyle=\"->\",\n connectionstyle=\"angle3\", lw=2),\n size=20, ha=\"center\",\n path_effects=[PathEffects.withStroke(linewidth=3,\n foreground=\"w\")])\ntxt.arrow_patch.set_path_effects([\n PathEffects.Stroke(linewidth=5, foreground=\"w\"),\n PathEffects.Normal()])\n\npe = [PathEffects.withStroke(linewidth=3,\n foreground=\"w\")]\nax1.grid(True, linestyle=\"-\", path_effects=pe)\n\nax2 = plt.subplot(132)\narr = np.arange(25).reshape((5, 5))\nax2.imshow(arr)\ncntr = ax2.contour(arr, colors=\"k\")\n\nplt.setp(cntr.collections, path_effects=[\n PathEffects.withStroke(linewidth=3, foreground=\"w\")])\n\nclbls = ax2.clabel(cntr, fmt=\"%2.0f\", use_clabeltext=True)\nplt.setp(clbls, path_effects=[\n PathEffects.withStroke(linewidth=3, foreground=\"w\")])\n\n# shadow as a path effect\nax3 = plt.subplot(133)\np1, = ax3.plot([0, 1], [0, 1])\nleg = ax3.legend([p1], [\"Line 1\"], fancybox=True, loc='upper left')\nleg.legendPatch.set_path_effects([PathEffects.withSimplePatchShadow()])\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/dec3a4f0f8fe7314f75c161a076bbd43/pgf_preamble_sgskip.ipynb b/_downloads/dec3a4f0f8fe7314f75c161a076bbd43/pgf_preamble_sgskip.ipynb deleted file mode 120000 index 8086503024e..00000000000 --- a/_downloads/dec3a4f0f8fe7314f75c161a076bbd43/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/dec3a4f0f8fe7314f75c161a076bbd43/pgf_preamble_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/dec8ee284d0aa166dca2c29aba12a8ac/pyplot_mathtext.ipynb b/_downloads/dec8ee284d0aa166dca2c29aba12a8ac/pyplot_mathtext.ipynb deleted file mode 100644 index ce8a759b11a..00000000000 --- a/_downloads/dec8ee284d0aa166dca2c29aba12a8ac/pyplot_mathtext.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Mathtext\n\n\nUse mathematical expressions in text labels. For an overview over MathText\nsee :doc:`/tutorials/text/mathtext`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nt = np.arange(0.0, 2.0, 0.01)\ns = np.sin(2*np.pi*t)\n\nplt.plot(t,s)\nplt.title(r'$\\alpha_i > \\beta_i$', fontsize=20)\nplt.text(1, -0.6, r'$\\sum_{i=0}^\\infty x_i$', fontsize=20)\nplt.text(0.6, 0.6, r'$\\mathcal{A}\\mathrm{sin}(2 \\omega t)$',\n fontsize=20)\nplt.xlabel('time (s)')\nplt.ylabel('volts (mV)')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.text\nmatplotlib.axes.Axes.text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/decc1dd1bac2359abeab3c8cde82667b/scatter_custom_symbol.py b/_downloads/decc1dd1bac2359abeab3c8cde82667b/scatter_custom_symbol.py deleted file mode 120000 index e80c12fbc8c..00000000000 --- a/_downloads/decc1dd1bac2359abeab3c8cde82667b/scatter_custom_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/decc1dd1bac2359abeab3c8cde82667b/scatter_custom_symbol.py \ No newline at end of file diff --git a/_downloads/dee7bada9c4b46b30ecc3d089cae6be0/annotate_explain.ipynb b/_downloads/dee7bada9c4b46b30ecc3d089cae6be0/annotate_explain.ipynb deleted file mode 120000 index fa7c0e56e34..00000000000 --- a/_downloads/dee7bada9c4b46b30ecc3d089cae6be0/annotate_explain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dee7bada9c4b46b30ecc3d089cae6be0/annotate_explain.ipynb \ No newline at end of file diff --git a/_downloads/deefdd104877a59a3a6035d185e8b104/demo_ticklabel_alignment.py b/_downloads/deefdd104877a59a3a6035d185e8b104/demo_ticklabel_alignment.py deleted file mode 100644 index 452f88e0046..00000000000 --- a/_downloads/deefdd104877a59a3a6035d185e8b104/demo_ticklabel_alignment.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -======================== -Demo Ticklabel Alignment -======================== - -""" - - -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_subplot(ax) - - ax.set_yticks([0.2, 0.8]) - ax.set_yticklabels(["short", "loooong"]) - ax.set_xticks([0.2, 0.8]) - ax.set_xticklabels([r"$\frac{1}{2}\pi$", r"$\pi$"]) - - return ax - - -fig = plt.figure(figsize=(3, 5)) -fig.subplots_adjust(left=0.5, hspace=0.7) - -ax = setup_axes(fig, 311) -ax.set_ylabel("ha=right") -ax.set_xlabel("va=baseline") - -ax = setup_axes(fig, 312) -ax.axis["left"].major_ticklabels.set_ha("center") -ax.axis["bottom"].major_ticklabels.set_va("top") -ax.set_ylabel("ha=center") -ax.set_xlabel("va=top") - -ax = setup_axes(fig, 313) -ax.axis["left"].major_ticklabels.set_ha("left") -ax.axis["bottom"].major_ticklabels.set_va("bottom") -ax.set_ylabel("ha=left") -ax.set_xlabel("va=bottom") - -plt.show() diff --git a/_downloads/def8ea6c102398422e18c4194813f949/log_bar.ipynb b/_downloads/def8ea6c102398422e18c4194813f949/log_bar.ipynb deleted file mode 120000 index d2959621610..00000000000 --- a/_downloads/def8ea6c102398422e18c4194813f949/log_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/def8ea6c102398422e18c4194813f949/log_bar.ipynb \ No newline at end of file diff --git a/_downloads/demo_agg_filter.ipynb b/_downloads/demo_agg_filter.ipynb deleted file mode 120000 index 57d08a77c83..00000000000 --- a/_downloads/demo_agg_filter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_agg_filter.ipynb \ No newline at end of file diff --git a/_downloads/demo_agg_filter.py b/_downloads/demo_agg_filter.py deleted file mode 120000 index c4ba15c38be..00000000000 --- a/_downloads/demo_agg_filter.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_agg_filter.py \ No newline at end of file diff --git a/_downloads/demo_anchored_direction_arrows.ipynb b/_downloads/demo_anchored_direction_arrows.ipynb deleted file mode 120000 index 6c17f92b4b8..00000000000 --- a/_downloads/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_anchored_direction_arrows.ipynb \ No newline at end of file diff --git a/_downloads/demo_anchored_direction_arrows.py b/_downloads/demo_anchored_direction_arrows.py deleted file mode 120000 index 5ecac358433..00000000000 --- a/_downloads/demo_anchored_direction_arrows.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_anchored_direction_arrows.py \ No newline at end of file diff --git a/_downloads/demo_annotation_box.ipynb b/_downloads/demo_annotation_box.ipynb deleted file mode 120000 index 89a2d6220fc..00000000000 --- a/_downloads/demo_annotation_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_annotation_box.ipynb \ No newline at end of file diff --git a/_downloads/demo_annotation_box.py b/_downloads/demo_annotation_box.py deleted file mode 120000 index b3ff46f718b..00000000000 --- a/_downloads/demo_annotation_box.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_annotation_box.py \ No newline at end of file diff --git a/_downloads/demo_axes_divider.ipynb b/_downloads/demo_axes_divider.ipynb deleted file mode 120000 index 648fec3f64f..00000000000 --- a/_downloads/demo_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/demo_axes_divider.py b/_downloads/demo_axes_divider.py deleted file mode 120000 index 13f0dbefc30..00000000000 --- a/_downloads/demo_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_divider.py \ No newline at end of file diff --git a/_downloads/demo_axes_grid.ipynb b/_downloads/demo_axes_grid.ipynb deleted file mode 120000 index 4df8bf150cf..00000000000 --- a/_downloads/demo_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/demo_axes_grid.py b/_downloads/demo_axes_grid.py deleted file mode 120000 index 8989bbe6d96..00000000000 --- a/_downloads/demo_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_grid.py \ No newline at end of file diff --git a/_downloads/demo_axes_grid2.ipynb b/_downloads/demo_axes_grid2.ipynb deleted file mode 120000 index f686079fd60..00000000000 --- a/_downloads/demo_axes_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_grid2.ipynb \ No newline at end of file diff --git a/_downloads/demo_axes_grid2.py b/_downloads/demo_axes_grid2.py deleted file mode 120000 index 2b3cfc388fa..00000000000 --- a/_downloads/demo_axes_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_grid2.py \ No newline at end of file diff --git a/_downloads/demo_axes_hbox_divider.ipynb b/_downloads/demo_axes_hbox_divider.ipynb deleted file mode 120000 index 75a45ecd294..00000000000 --- a/_downloads/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_hbox_divider.ipynb \ No newline at end of file diff --git a/_downloads/demo_axes_hbox_divider.py b/_downloads/demo_axes_hbox_divider.py deleted file mode 120000 index 741ba2e7b06..00000000000 --- a/_downloads/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/_downloads/demo_axes_rgb.ipynb b/_downloads/demo_axes_rgb.ipynb deleted file mode 120000 index e5b39e8ef4f..00000000000 --- a/_downloads/demo_axes_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_rgb.ipynb \ No newline at end of file diff --git a/_downloads/demo_axes_rgb.py b/_downloads/demo_axes_rgb.py deleted file mode 120000 index d76bfd7aded..00000000000 --- a/_downloads/demo_axes_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axes_rgb.py \ No newline at end of file diff --git a/_downloads/demo_axis_direction.ipynb b/_downloads/demo_axis_direction.ipynb deleted file mode 120000 index 8998237bc26..00000000000 --- a/_downloads/demo_axis_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axis_direction.ipynb \ No newline at end of file diff --git a/_downloads/demo_axis_direction.py b/_downloads/demo_axis_direction.py deleted file mode 120000 index 9d006110797..00000000000 --- a/_downloads/demo_axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axis_direction.py \ No newline at end of file diff --git a/_downloads/demo_axisline_style.ipynb b/_downloads/demo_axisline_style.ipynb deleted file mode 120000 index 7d04c143fc0..00000000000 --- a/_downloads/demo_axisline_style.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axisline_style.ipynb \ No newline at end of file diff --git a/_downloads/demo_axisline_style.py b/_downloads/demo_axisline_style.py deleted file mode 120000 index 184b6f8452b..00000000000 --- a/_downloads/demo_axisline_style.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_axisline_style.py \ No newline at end of file diff --git a/_downloads/demo_bboximage.ipynb b/_downloads/demo_bboximage.ipynb deleted file mode 120000 index 2f12df569ac..00000000000 --- a/_downloads/demo_bboximage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_bboximage.ipynb \ No newline at end of file diff --git a/_downloads/demo_bboximage.py b/_downloads/demo_bboximage.py deleted file mode 120000 index 628107ebd5f..00000000000 --- a/_downloads/demo_bboximage.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_bboximage.py \ No newline at end of file diff --git a/_downloads/demo_colorbar_of_inset_axes.ipynb b/_downloads/demo_colorbar_of_inset_axes.ipynb deleted file mode 120000 index db204e19215..00000000000 --- a/_downloads/demo_colorbar_of_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_colorbar_of_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/demo_colorbar_of_inset_axes.py b/_downloads/demo_colorbar_of_inset_axes.py deleted file mode 120000 index 463cd9e0875..00000000000 --- a/_downloads/demo_colorbar_of_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_colorbar_of_inset_axes.py \ No newline at end of file diff --git a/_downloads/demo_colorbar_with_axes_divider.ipynb b/_downloads/demo_colorbar_with_axes_divider.ipynb deleted file mode 120000 index 2c7c1a01b91..00000000000 --- a/_downloads/demo_colorbar_with_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_colorbar_with_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/demo_colorbar_with_axes_divider.py b/_downloads/demo_colorbar_with_axes_divider.py deleted file mode 120000 index cb6784e54c1..00000000000 --- a/_downloads/demo_colorbar_with_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_colorbar_with_axes_divider.py \ No newline at end of file diff --git a/_downloads/demo_colorbar_with_inset_locator.ipynb b/_downloads/demo_colorbar_with_inset_locator.ipynb deleted file mode 120000 index 933b4716714..00000000000 --- a/_downloads/demo_colorbar_with_inset_locator.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_colorbar_with_inset_locator.ipynb \ No newline at end of file diff --git a/_downloads/demo_colorbar_with_inset_locator.py b/_downloads/demo_colorbar_with_inset_locator.py deleted file mode 120000 index c611e89c68e..00000000000 --- a/_downloads/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_colorbar_with_inset_locator.py \ No newline at end of file diff --git a/_downloads/demo_constrained_layout.ipynb b/_downloads/demo_constrained_layout.ipynb deleted file mode 120000 index 97598c92048..00000000000 --- a/_downloads/demo_constrained_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_constrained_layout.ipynb \ No newline at end of file diff --git a/_downloads/demo_constrained_layout.py b/_downloads/demo_constrained_layout.py deleted file mode 120000 index c4a1a1ac994..00000000000 --- a/_downloads/demo_constrained_layout.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_constrained_layout.py \ No newline at end of file diff --git a/_downloads/demo_curvelinear_grid.ipynb b/_downloads/demo_curvelinear_grid.ipynb deleted file mode 120000 index fea3bd1f1d8..00000000000 --- a/_downloads/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_curvelinear_grid.ipynb \ No newline at end of file diff --git a/_downloads/demo_curvelinear_grid.py b/_downloads/demo_curvelinear_grid.py deleted file mode 120000 index f2e7f294f74..00000000000 --- a/_downloads/demo_curvelinear_grid.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_curvelinear_grid.py \ No newline at end of file diff --git a/_downloads/demo_curvelinear_grid2.ipynb b/_downloads/demo_curvelinear_grid2.ipynb deleted file mode 120000 index 7e04a9abf8a..00000000000 --- a/_downloads/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_curvelinear_grid2.ipynb \ No newline at end of file diff --git a/_downloads/demo_curvelinear_grid2.py b/_downloads/demo_curvelinear_grid2.py deleted file mode 120000 index d421510981b..00000000000 --- a/_downloads/demo_curvelinear_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_curvelinear_grid2.py \ No newline at end of file diff --git a/_downloads/demo_edge_colorbar.ipynb b/_downloads/demo_edge_colorbar.ipynb deleted file mode 120000 index fec74b10985..00000000000 --- a/_downloads/demo_edge_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_edge_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/demo_edge_colorbar.py b/_downloads/demo_edge_colorbar.py deleted file mode 120000 index 41a9bc797cb..00000000000 --- a/_downloads/demo_edge_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_edge_colorbar.py \ No newline at end of file diff --git a/_downloads/demo_fixed_size_axes.ipynb b/_downloads/demo_fixed_size_axes.ipynb deleted file mode 120000 index d1e5524fb88..00000000000 --- a/_downloads/demo_fixed_size_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_fixed_size_axes.ipynb \ No newline at end of file diff --git a/_downloads/demo_fixed_size_axes.py b/_downloads/demo_fixed_size_axes.py deleted file mode 120000 index a87836376c5..00000000000 --- a/_downloads/demo_fixed_size_axes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_fixed_size_axes.py \ No newline at end of file diff --git a/_downloads/demo_floating_axes.ipynb b/_downloads/demo_floating_axes.ipynb deleted file mode 120000 index e8f323410f1..00000000000 --- a/_downloads/demo_floating_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_floating_axes.ipynb \ No newline at end of file diff --git a/_downloads/demo_floating_axes.py b/_downloads/demo_floating_axes.py deleted file mode 120000 index 21d467b66fb..00000000000 --- a/_downloads/demo_floating_axes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_floating_axes.py \ No newline at end of file diff --git a/_downloads/demo_floating_axis.ipynb b/_downloads/demo_floating_axis.ipynb deleted file mode 120000 index 481d9e57d92..00000000000 --- a/_downloads/demo_floating_axis.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_floating_axis.ipynb \ No newline at end of file diff --git a/_downloads/demo_floating_axis.py b/_downloads/demo_floating_axis.py deleted file mode 120000 index 5db650d15d2..00000000000 --- a/_downloads/demo_floating_axis.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_floating_axis.py \ No newline at end of file diff --git a/_downloads/demo_gridspec01.ipynb b/_downloads/demo_gridspec01.ipynb deleted file mode 120000 index ece6db36ad8..00000000000 --- a/_downloads/demo_gridspec01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec01.ipynb \ No newline at end of file diff --git a/_downloads/demo_gridspec01.py b/_downloads/demo_gridspec01.py deleted file mode 120000 index bb5283bbac8..00000000000 --- a/_downloads/demo_gridspec01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec01.py \ No newline at end of file diff --git a/_downloads/demo_gridspec02.ipynb b/_downloads/demo_gridspec02.ipynb deleted file mode 120000 index 8640873c815..00000000000 --- a/_downloads/demo_gridspec02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/demo_gridspec02.ipynb \ No newline at end of file diff --git a/_downloads/demo_gridspec02.py b/_downloads/demo_gridspec02.py deleted file mode 120000 index a0765226b4b..00000000000 --- a/_downloads/demo_gridspec02.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/demo_gridspec02.py \ No newline at end of file diff --git a/_downloads/demo_gridspec03.ipynb b/_downloads/demo_gridspec03.ipynb deleted file mode 120000 index f5a9caf5379..00000000000 --- a/_downloads/demo_gridspec03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec03.ipynb \ No newline at end of file diff --git a/_downloads/demo_gridspec03.py b/_downloads/demo_gridspec03.py deleted file mode 120000 index e93d12bec8d..00000000000 --- a/_downloads/demo_gridspec03.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec03.py \ No newline at end of file diff --git a/_downloads/demo_gridspec04.ipynb b/_downloads/demo_gridspec04.ipynb deleted file mode 120000 index 2f9ef57dda4..00000000000 --- a/_downloads/demo_gridspec04.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/demo_gridspec04.ipynb \ No newline at end of file diff --git a/_downloads/demo_gridspec04.py b/_downloads/demo_gridspec04.py deleted file mode 120000 index d7a5e9e921c..00000000000 --- a/_downloads/demo_gridspec04.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/demo_gridspec04.py \ No newline at end of file diff --git a/_downloads/demo_gridspec05.ipynb b/_downloads/demo_gridspec05.ipynb deleted file mode 120000 index 041f439ef2f..00000000000 --- a/_downloads/demo_gridspec05.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec05.ipynb \ No newline at end of file diff --git a/_downloads/demo_gridspec05.py b/_downloads/demo_gridspec05.py deleted file mode 120000 index 628543825c0..00000000000 --- a/_downloads/demo_gridspec05.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec05.py \ No newline at end of file diff --git a/_downloads/demo_gridspec06.ipynb b/_downloads/demo_gridspec06.ipynb deleted file mode 120000 index 239ab577ed7..00000000000 --- a/_downloads/demo_gridspec06.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec06.ipynb \ No newline at end of file diff --git a/_downloads/demo_gridspec06.py b/_downloads/demo_gridspec06.py deleted file mode 120000 index 0d57a2f146b..00000000000 --- a/_downloads/demo_gridspec06.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_gridspec06.py \ No newline at end of file diff --git a/_downloads/demo_imagegrid_aspect.ipynb b/_downloads/demo_imagegrid_aspect.ipynb deleted file mode 120000 index 33dd4778dd7..00000000000 --- a/_downloads/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_imagegrid_aspect.ipynb \ No newline at end of file diff --git a/_downloads/demo_imagegrid_aspect.py b/_downloads/demo_imagegrid_aspect.py deleted file mode 120000 index 73100f0b859..00000000000 --- a/_downloads/demo_imagegrid_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_imagegrid_aspect.py \ No newline at end of file diff --git a/_downloads/demo_new_colorbar.ipynb b/_downloads/demo_new_colorbar.ipynb deleted file mode 120000 index 0ba665cd715..00000000000 --- a/_downloads/demo_new_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/demo_new_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/demo_new_colorbar.py b/_downloads/demo_new_colorbar.py deleted file mode 120000 index 597151c16a6..00000000000 --- a/_downloads/demo_new_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/demo_new_colorbar.py \ No newline at end of file diff --git a/_downloads/demo_parasite_axes.ipynb b/_downloads/demo_parasite_axes.ipynb deleted file mode 120000 index dade62cc0f7..00000000000 --- a/_downloads/demo_parasite_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_parasite_axes.ipynb \ No newline at end of file diff --git a/_downloads/demo_parasite_axes.py b/_downloads/demo_parasite_axes.py deleted file mode 120000 index e8d9187c175..00000000000 --- a/_downloads/demo_parasite_axes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_parasite_axes.py \ No newline at end of file diff --git a/_downloads/demo_parasite_axes2.ipynb b/_downloads/demo_parasite_axes2.ipynb deleted file mode 120000 index e39005bd086..00000000000 --- a/_downloads/demo_parasite_axes2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_parasite_axes2.ipynb \ No newline at end of file diff --git a/_downloads/demo_parasite_axes2.py b/_downloads/demo_parasite_axes2.py deleted file mode 120000 index 45aaeb49111..00000000000 --- a/_downloads/demo_parasite_axes2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_parasite_axes2.py \ No newline at end of file diff --git a/_downloads/demo_parasite_axes_sgskip.ipynb b/_downloads/demo_parasite_axes_sgskip.ipynb deleted file mode 120000 index 83422e9cb8a..00000000000 --- a/_downloads/demo_parasite_axes_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/demo_parasite_axes_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/demo_parasite_axes_sgskip.py b/_downloads/demo_parasite_axes_sgskip.py deleted file mode 120000 index a680422678e..00000000000 --- a/_downloads/demo_parasite_axes_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/demo_parasite_axes_sgskip.py \ No newline at end of file diff --git a/_downloads/demo_ribbon_box.ipynb b/_downloads/demo_ribbon_box.ipynb deleted file mode 120000 index 95afa814777..00000000000 --- a/_downloads/demo_ribbon_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_ribbon_box.ipynb \ No newline at end of file diff --git a/_downloads/demo_ribbon_box.py b/_downloads/demo_ribbon_box.py deleted file mode 120000 index bb2d29af54e..00000000000 --- a/_downloads/demo_ribbon_box.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_ribbon_box.py \ No newline at end of file diff --git a/_downloads/demo_text_path.ipynb b/_downloads/demo_text_path.ipynb deleted file mode 120000 index f36368b4c18..00000000000 --- a/_downloads/demo_text_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_text_path.ipynb \ No newline at end of file diff --git a/_downloads/demo_text_path.py b/_downloads/demo_text_path.py deleted file mode 120000 index f46224db25b..00000000000 --- a/_downloads/demo_text_path.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_text_path.py \ No newline at end of file diff --git a/_downloads/demo_text_rotation_mode.ipynb b/_downloads/demo_text_rotation_mode.ipynb deleted file mode 120000 index ab04eed5568..00000000000 --- a/_downloads/demo_text_rotation_mode.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_text_rotation_mode.ipynb \ No newline at end of file diff --git a/_downloads/demo_text_rotation_mode.py b/_downloads/demo_text_rotation_mode.py deleted file mode 120000 index 7e6c4fb8f3d..00000000000 --- a/_downloads/demo_text_rotation_mode.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_text_rotation_mode.py \ No newline at end of file diff --git a/_downloads/demo_ticklabel_alignment.ipynb b/_downloads/demo_ticklabel_alignment.ipynb deleted file mode 120000 index 84a8e0c78c5..00000000000 --- a/_downloads/demo_ticklabel_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_ticklabel_alignment.ipynb \ No newline at end of file diff --git a/_downloads/demo_ticklabel_alignment.py b/_downloads/demo_ticklabel_alignment.py deleted file mode 120000 index cc4907f00e3..00000000000 --- a/_downloads/demo_ticklabel_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_ticklabel_alignment.py \ No newline at end of file diff --git a/_downloads/demo_ticklabel_direction.ipynb b/_downloads/demo_ticklabel_direction.ipynb deleted file mode 120000 index 6f210623059..00000000000 --- a/_downloads/demo_ticklabel_direction.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_ticklabel_direction.ipynb \ No newline at end of file diff --git a/_downloads/demo_ticklabel_direction.py b/_downloads/demo_ticklabel_direction.py deleted file mode 120000 index 44bff045d68..00000000000 --- a/_downloads/demo_ticklabel_direction.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_ticklabel_direction.py \ No newline at end of file diff --git a/_downloads/demo_tight_layout.ipynb b/_downloads/demo_tight_layout.ipynb deleted file mode 120000 index 5adebe1d94f..00000000000 --- a/_downloads/demo_tight_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_tight_layout.ipynb \ No newline at end of file diff --git a/_downloads/demo_tight_layout.py b/_downloads/demo_tight_layout.py deleted file mode 120000 index f91fc359a1d..00000000000 --- a/_downloads/demo_tight_layout.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/demo_tight_layout.py \ No newline at end of file diff --git a/_downloads/df013465fdd49b99450d01ab7e4dce97/date.py b/_downloads/df013465fdd49b99450d01ab7e4dce97/date.py deleted file mode 100644 index 72beeace35f..00000000000 --- a/_downloads/df013465fdd49b99450d01ab7e4dce97/date.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -================ -Date tick labels -================ - -Show how to make date plots in Matplotlib using date tick locators and -formatters. See :doc:`/gallery/ticks_and_spines/major_minor_demo` for more -information on controlling major and minor ticks. - -All matplotlib date plotting is done by converting date instances into days -since 0001-01-01 00:00:00 UTC plus one day (for historical reasons). The -conversion, tick locating and formatting is done behind the scenes so this -is most transparent to you. The dates module provides several converter -functions `matplotlib.dates.date2num` and `matplotlib.dates.num2date`. -These can convert between `datetime.datetime` objects and -:class:`numpy.datetime64` objects. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.dates as mdates -import matplotlib.cbook as cbook - -years = mdates.YearLocator() # every year -months = mdates.MonthLocator() # every month -years_fmt = mdates.DateFormatter('%Y') - -# Load a numpy structured array from yahoo csv data with fields date, open, -# close, volume, adj_close from the mpl-data/example directory. This array -# stores the date as an np.datetime64 with a day unit ('D') in the 'date' -# column. -with cbook.get_sample_data('goog.npz') as datafile: - data = np.load(datafile)['price_data'] - -fig, ax = plt.subplots() -ax.plot('date', 'adj_close', data=data) - -# format the ticks -ax.xaxis.set_major_locator(years) -ax.xaxis.set_major_formatter(years_fmt) -ax.xaxis.set_minor_locator(months) - -# round to nearest years. -datemin = np.datetime64(data['date'][0], 'Y') -datemax = np.datetime64(data['date'][-1], 'Y') + np.timedelta64(1, 'Y') -ax.set_xlim(datemin, datemax) - -# format the coords message box -ax.format_xdata = mdates.DateFormatter('%Y-%m-%d') -ax.format_ydata = lambda x: '$%1.2f' % x # format the price. -ax.grid(True) - -# rotates and right aligns the x labels, and moves the bottom of the -# axes up to make room for them -fig.autofmt_xdate() - -plt.show() diff --git a/_downloads/df076924a819415b0d8d3b469ebac54b/simple_axisline.py b/_downloads/df076924a819415b0d8d3b469ebac54b/simple_axisline.py deleted file mode 100644 index 9ec7283894f..00000000000 --- a/_downloads/df076924a819415b0d8d3b469ebac54b/simple_axisline.py +++ /dev/null @@ -1,40 +0,0 @@ -""" -=============== -Simple Axisline -=============== - -""" -import matplotlib.pyplot as plt - -from mpl_toolkits.axisartist.axislines import SubplotZero - - -fig = plt.figure() -fig.subplots_adjust(right=0.85) -ax = SubplotZero(fig, 1, 1, 1) -fig.add_subplot(ax) - -# make right and top axis invisible -ax.axis["right"].set_visible(False) -ax.axis["top"].set_visible(False) - -# make xzero axis (horizontal axis line through y=0) visible. -ax.axis["xzero"].set_visible(True) -ax.axis["xzero"].label.set_text("Axis Zero") - -ax.set_ylim(-2, 4) -ax.set_xlabel("Label X") -ax.set_ylabel("Label Y") -# or -#ax.axis["bottom"].label.set_text("Label X") -#ax.axis["left"].label.set_text("Label Y") - -# make new (right-side) yaxis, but with some offset -offset = (20, 0) -new_axisline = ax.get_grid_helper().new_fixed_axis - -ax.axis["right2"] = new_axisline(loc="right", offset=offset, axes=ax) -ax.axis["right2"].label.set_text("Label Y2") - -ax.plot([-2, 3, 2]) -plt.show() diff --git a/_downloads/df1d324db7e9075a4b2d7b6cdacdc288/shared_axis_demo.py b/_downloads/df1d324db7e9075a4b2d7b6cdacdc288/shared_axis_demo.py deleted file mode 120000 index 1e95a39cd9f..00000000000 --- a/_downloads/df1d324db7e9075a4b2d7b6cdacdc288/shared_axis_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/df1d324db7e9075a4b2d7b6cdacdc288/shared_axis_demo.py \ No newline at end of file diff --git a/_downloads/df36cee64898b4160ce60ff7090d1ef6/annotate_transform.py b/_downloads/df36cee64898b4160ce60ff7090d1ef6/annotate_transform.py deleted file mode 120000 index 5f7d5450a77..00000000000 --- a/_downloads/df36cee64898b4160ce60ff7090d1ef6/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/df36cee64898b4160ce60ff7090d1ef6/annotate_transform.py \ No newline at end of file diff --git a/_downloads/df386a01c6daddc69082d8298e150498/annotate_transform.ipynb b/_downloads/df386a01c6daddc69082d8298e150498/annotate_transform.ipynb deleted file mode 100644 index eaa3a174bdf..00000000000 --- a/_downloads/df386a01c6daddc69082d8298e150498/annotate_transform.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Transform\n\n\nThis example shows how to use different coordinate systems for annotations.\nFor a complete overview of the annotation capabilities, also see the\n:doc:`annotation tutorial`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = np.arange(0, 10, 0.005)\ny = np.exp(-x/2.) * np.sin(2*np.pi*x)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.set_xlim(0, 10)\nax.set_ylim(-1, 1)\n\nxdata, ydata = 5, 0\nxdisplay, ydisplay = ax.transData.transform_point((xdata, ydata))\n\nbbox = dict(boxstyle=\"round\", fc=\"0.8\")\narrowprops = dict(\n arrowstyle = \"->\",\n connectionstyle = \"angle,angleA=0,angleB=90,rad=10\")\n\noffset = 72\nax.annotate('data = (%.1f, %.1f)'%(xdata, ydata),\n (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\n\ndisp = ax.annotate('display = (%.1f, %.1f)'%(xdisplay, ydisplay),\n (xdisplay, ydisplay), xytext=(0.5*offset, -offset),\n xycoords='figure pixels',\n textcoords='offset points',\n bbox=bbox, arrowprops=arrowprops)\n\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.transforms.Transform.transform_point\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/df39ff38f0a443dfcd353d53e7795d41/pgf_fonts.py b/_downloads/df39ff38f0a443dfcd353d53e7795d41/pgf_fonts.py deleted file mode 120000 index 6600c0cf13d..00000000000 --- a/_downloads/df39ff38f0a443dfcd353d53e7795d41/pgf_fonts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/df39ff38f0a443dfcd353d53e7795d41/pgf_fonts.py \ No newline at end of file diff --git a/_downloads/df46ccfb4578031b60c3ca220cf74e81/subplots_adjust.ipynb b/_downloads/df46ccfb4578031b60c3ca220cf74e81/subplots_adjust.ipynb deleted file mode 120000 index b1ae5b91cbf..00000000000 --- a/_downloads/df46ccfb4578031b60c3ca220cf74e81/subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/df46ccfb4578031b60c3ca220cf74e81/subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/df511152ceacf3ced5a243ea12996dd8/axis_direction_demo_step04.ipynb b/_downloads/df511152ceacf3ced5a243ea12996dd8/axis_direction_demo_step04.ipynb deleted file mode 100644 index aba52f67b5e..00000000000 --- a/_downloads/df511152ceacf3ced5a243ea12996dd8/axis_direction_demo_step04.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step04\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x1\"] = ax.new_floating_axis(1, 0.3)\n ax.axis[\"x1\"].set_axisline_style(\"->\", size=1.5)\n\n ax.axis[\"x2\"] = ax.new_floating_axis(1, 0.7)\n ax.axis[\"x2\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 2.5))\nfig.subplots_adjust(bottom=0.2, top=0.8)\n\nax1 = setup_axes(fig, \"121\")\nax1.axis[\"x1\"].label.set_text(\"rotation=0\")\nax1.axis[\"x1\"].toggle(ticklabels=False)\n\nax1.axis[\"x2\"].label.set_text(\"rotation=10\")\nax1.axis[\"x2\"].label.set_rotation(10)\nax1.axis[\"x2\"].toggle(ticklabels=False)\n\nax1.annotate(\"label direction=$+$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nax2 = setup_axes(fig, \"122\")\n\nax2.axis[\"x1\"].set_axislabel_direction(\"-\")\nax2.axis[\"x2\"].set_axislabel_direction(\"-\")\n\nax2.axis[\"x1\"].label.set_text(\"rotation=0\")\nax2.axis[\"x1\"].toggle(ticklabels=False)\n\nax2.axis[\"x2\"].label.set_text(\"rotation=10\")\nax2.axis[\"x2\"].label.set_rotation(10)\nax2.axis[\"x2\"].toggle(ticklabels=False)\n\nax2.annotate(\"label direction=$-$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/df541082bd2de7e0c69216de2da396dc/spy_demos.ipynb b/_downloads/df541082bd2de7e0c69216de2da396dc/spy_demos.ipynb deleted file mode 100644 index ce36238271a..00000000000 --- a/_downloads/df541082bd2de7e0c69216de2da396dc/spy_demos.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Spy Demos\n\n\nPlot the sparsity pattern of arrays.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axs = plt.subplots(2, 2)\nax1 = axs[0, 0]\nax2 = axs[0, 1]\nax3 = axs[1, 0]\nax4 = axs[1, 1]\n\nx = np.random.randn(20, 20)\nx[5, :] = 0.\nx[:, 12] = 0.\n\nax1.spy(x, markersize=5)\nax2.spy(x, precision=0.1, markersize=5)\n\nax3.spy(x)\nax4.spy(x, precision=0.1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.spy\nmatplotlib.pyplot.spy" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/df59296aa8fc9ea88e391229aaacee39/whats_new_99_axes_grid.ipynb b/_downloads/df59296aa8fc9ea88e391229aaacee39/whats_new_99_axes_grid.ipynb deleted file mode 100644 index cddb3a16bb8..00000000000 --- a/_downloads/df59296aa8fc9ea88e391229aaacee39/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n========================\nWhats New 0.99 Axes Grid\n========================\n\nCreate RGB composite images.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_rgb import RGBAxes\n\n\ndef get_demo_image():\n # prepare image\n delta = 0.5\n\n extent = (-3, 4, -4, 3)\n x = np.arange(-3.0, 4.001, delta)\n y = np.arange(-4.0, 3.001, delta)\n X, Y = np.meshgrid(x, y)\n Z1 = np.exp(-X**2 - Y**2)\n Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\n Z = (Z1 - Z2) * 2\n\n return Z, extent\n\n\ndef get_rgb():\n Z, extent = get_demo_image()\n\n Z[Z < 0] = 0.\n Z = Z / Z.max()\n\n R = Z[:13, :13]\n G = Z[2:, 2:]\n B = Z[:13, 2:]\n\n return R, G, B\n\n\nfig = plt.figure()\nax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8])\n\nr, g, b = get_rgb()\nkwargs = dict(origin=\"lower\", interpolation=\"nearest\")\nax.imshow_rgb(r, g, b, **kwargs)\n\nax.RGB.set_xlim(0., 9.5)\nax.RGB.set_ylim(0.9, 10.6)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import mpl_toolkits\nmpl_toolkits.axes_grid1.axes_rgb.RGBAxes\nmpl_toolkits.axes_grid1.axes_rgb.RGBAxes.imshow_rgb" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/df5db11d28878bc06740dc4c68f7440c/print_stdout_sgskip.py b/_downloads/df5db11d28878bc06740dc4c68f7440c/print_stdout_sgskip.py deleted file mode 120000 index 294d4ccc444..00000000000 --- a/_downloads/df5db11d28878bc06740dc4c68f7440c/print_stdout_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/df5db11d28878bc06740dc4c68f7440c/print_stdout_sgskip.py \ No newline at end of file diff --git a/_downloads/df6ec4c1da140120cf29502b2bd76f29/slider_demo.py b/_downloads/df6ec4c1da140120cf29502b2bd76f29/slider_demo.py deleted file mode 120000 index bcb6e0867ac..00000000000 --- a/_downloads/df6ec4c1da140120cf29502b2bd76f29/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/df6ec4c1da140120cf29502b2bd76f29/slider_demo.py \ No newline at end of file diff --git a/_downloads/df733f9bc8fdc992fa8ea76034ce706a/contourf.py b/_downloads/df733f9bc8fdc992fa8ea76034ce706a/contourf.py deleted file mode 120000 index a63f2e20b16..00000000000 --- a/_downloads/df733f9bc8fdc992fa8ea76034ce706a/contourf.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/df733f9bc8fdc992fa8ea76034ce706a/contourf.py \ No newline at end of file diff --git a/_downloads/df75fbd43f33621c3d6e0c623eccad27/scatter_custom_symbol.ipynb b/_downloads/df75fbd43f33621c3d6e0c623eccad27/scatter_custom_symbol.ipynb deleted file mode 120000 index 61a0d7f1574..00000000000 --- a/_downloads/df75fbd43f33621c3d6e0c623eccad27/scatter_custom_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/df75fbd43f33621c3d6e0c623eccad27/scatter_custom_symbol.ipynb \ No newline at end of file diff --git a/_downloads/df7c2aaf33fbf014739a5123155f47bb/pick_event_demo.ipynb b/_downloads/df7c2aaf33fbf014739a5123155f47bb/pick_event_demo.ipynb deleted file mode 120000 index 178b296b7ce..00000000000 --- a/_downloads/df7c2aaf33fbf014739a5123155f47bb/pick_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/df7c2aaf33fbf014739a5123155f47bb/pick_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/df80b103b8e8ebf9fbe04c9a3ea4178f/barh.ipynb b/_downloads/df80b103b8e8ebf9fbe04c9a3ea4178f/barh.ipynb deleted file mode 100644 index 5a112b18db4..00000000000 --- a/_downloads/df80b103b8e8ebf9fbe04c9a3ea4178f/barh.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Horizontal bar chart\n\n\nThis example showcases a simple horizontal bar chart.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nplt.rcdefaults()\nfig, ax = plt.subplots()\n\n# Example data\npeople = ('Tom', 'Dick', 'Harry', 'Slim', 'Jim')\ny_pos = np.arange(len(people))\nperformance = 3 + 10 * np.random.rand(len(people))\nerror = np.random.rand(len(people))\n\nax.barh(y_pos, performance, xerr=error, align='center')\nax.set_yticks(y_pos)\nax.set_yticklabels(people)\nax.invert_yaxis() # labels read top-to-bottom\nax.set_xlabel('Performance')\nax.set_title('How fast do you want to go today?')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/df81e7878bdf7345a50c7353869769e3/arrow_demo.ipynb b/_downloads/df81e7878bdf7345a50c7353869769e3/arrow_demo.ipynb deleted file mode 100644 index fadb5422e8d..00000000000 --- a/_downloads/df81e7878bdf7345a50c7353869769e3/arrow_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Arrow Demo\n\n\nArrow drawing example for the new fancy_arrow facilities.\n\nCode contributed by: Rob Knight \n\nusage:\n\n python arrow_demo.py realistic|full|sample|extreme\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nrates_to_bases = {'r1': 'AT', 'r2': 'TA', 'r3': 'GA', 'r4': 'AG', 'r5': 'CA',\n 'r6': 'AC', 'r7': 'GT', 'r8': 'TG', 'r9': 'CT', 'r10': 'TC',\n 'r11': 'GC', 'r12': 'CG'}\nnumbered_bases_to_rates = {v: k for k, v in rates_to_bases.items()}\nlettered_bases_to_rates = {v: 'r' + v for k, v in rates_to_bases.items()}\n\n\ndef make_arrow_plot(data, size=4, display='length', shape='right',\n max_arrow_width=0.03, arrow_sep=0.02, alpha=0.5,\n normalize_data=False, ec=None, labelcolor=None,\n head_starts_at_zero=True,\n rate_labels=lettered_bases_to_rates,\n **kwargs):\n \"\"\"Makes an arrow plot.\n\n Parameters:\n\n data: dict with probabilities for the bases and pair transitions.\n size: size of the graph in inches.\n display: 'length', 'width', or 'alpha' for arrow property to change.\n shape: 'full', 'left', or 'right' for full or half arrows.\n max_arrow_width: maximum width of an arrow, data coordinates.\n arrow_sep: separation between arrows in a pair, data coordinates.\n alpha: maximum opacity of arrows, default 0.8.\n\n **kwargs can be anything allowed by a Arrow object, e.g.\n linewidth and edgecolor.\n \"\"\"\n\n plt.xlim(-0.5, 1.5)\n plt.ylim(-0.5, 1.5)\n plt.gcf().set_size_inches(size, size)\n plt.xticks([])\n plt.yticks([])\n max_text_size = size * 12\n min_text_size = size\n label_text_size = size * 2.5\n text_params = {'ha': 'center', 'va': 'center', 'family': 'sans-serif',\n 'fontweight': 'bold'}\n r2 = np.sqrt(2)\n\n deltas = {\n 'AT': (1, 0),\n 'TA': (-1, 0),\n 'GA': (0, 1),\n 'AG': (0, -1),\n 'CA': (-1 / r2, 1 / r2),\n 'AC': (1 / r2, -1 / r2),\n 'GT': (1 / r2, 1 / r2),\n 'TG': (-1 / r2, -1 / r2),\n 'CT': (0, 1),\n 'TC': (0, -1),\n 'GC': (1, 0),\n 'CG': (-1, 0)}\n\n colors = {\n 'AT': 'r',\n 'TA': 'k',\n 'GA': 'g',\n 'AG': 'r',\n 'CA': 'b',\n 'AC': 'r',\n 'GT': 'g',\n 'TG': 'k',\n 'CT': 'b',\n 'TC': 'k',\n 'GC': 'g',\n 'CG': 'b'}\n\n label_positions = {\n 'AT': 'center',\n 'TA': 'center',\n 'GA': 'center',\n 'AG': 'center',\n 'CA': 'left',\n 'AC': 'left',\n 'GT': 'left',\n 'TG': 'left',\n 'CT': 'center',\n 'TC': 'center',\n 'GC': 'center',\n 'CG': 'center'}\n\n def do_fontsize(k):\n return float(np.clip(max_text_size * np.sqrt(data[k]),\n min_text_size, max_text_size))\n\n A = plt.text(0, 1, '$A_3$', color='r', size=do_fontsize('A'),\n **text_params)\n T = plt.text(1, 1, '$T_3$', color='k', size=do_fontsize('T'),\n **text_params)\n G = plt.text(0, 0, '$G_3$', color='g', size=do_fontsize('G'),\n **text_params)\n C = plt.text(1, 0, '$C_3$', color='b', size=do_fontsize('C'),\n **text_params)\n\n arrow_h_offset = 0.25 # data coordinates, empirically determined\n max_arrow_length = 1 - 2 * arrow_h_offset\n max_head_width = 2.5 * max_arrow_width\n max_head_length = 2 * max_arrow_width\n arrow_params = {'length_includes_head': True, 'shape': shape,\n 'head_starts_at_zero': head_starts_at_zero}\n sf = 0.6 # max arrow size represents this in data coords\n\n d = (r2 / 2 + arrow_h_offset - 0.5) / r2 # distance for diags\n r2v = arrow_sep / r2 # offset for diags\n\n # tuple of x, y for start position\n positions = {\n 'AT': (arrow_h_offset, 1 + arrow_sep),\n 'TA': (1 - arrow_h_offset, 1 - arrow_sep),\n 'GA': (-arrow_sep, arrow_h_offset),\n 'AG': (arrow_sep, 1 - arrow_h_offset),\n 'CA': (1 - d - r2v, d - r2v),\n 'AC': (d + r2v, 1 - d + r2v),\n 'GT': (d - r2v, d + r2v),\n 'TG': (1 - d + r2v, 1 - d - r2v),\n 'CT': (1 - arrow_sep, arrow_h_offset),\n 'TC': (1 + arrow_sep, 1 - arrow_h_offset),\n 'GC': (arrow_h_offset, arrow_sep),\n 'CG': (1 - arrow_h_offset, -arrow_sep)}\n\n if normalize_data:\n # find maximum value for rates, i.e. where keys are 2 chars long\n max_val = max((v for k, v in data.items() if len(k) == 2), default=0)\n # divide rates by max val, multiply by arrow scale factor\n for k, v in data.items():\n data[k] = v / max_val * sf\n\n def draw_arrow(pair, alpha=alpha, ec=ec, labelcolor=labelcolor):\n # set the length of the arrow\n if display == 'length':\n length = (max_head_length\n + data[pair] / sf * (max_arrow_length - max_head_length))\n else:\n length = max_arrow_length\n # set the transparency of the arrow\n if display == 'alpha':\n alpha = min(data[pair] / sf, alpha)\n\n # set the width of the arrow\n if display == 'width':\n scale = data[pair] / sf\n width = max_arrow_width * scale\n head_width = max_head_width * scale\n head_length = max_head_length * scale\n else:\n width = max_arrow_width\n head_width = max_head_width\n head_length = max_head_length\n\n fc = colors[pair]\n ec = ec or fc\n\n x_scale, y_scale = deltas[pair]\n x_pos, y_pos = positions[pair]\n plt.arrow(x_pos, y_pos, x_scale * length, y_scale * length,\n fc=fc, ec=ec, alpha=alpha, width=width,\n head_width=head_width, head_length=head_length,\n **arrow_params)\n\n # figure out coordinates for text\n # if drawing relative to base: x and y are same as for arrow\n # dx and dy are one arrow width left and up\n # need to rotate based on direction of arrow, use x_scale and y_scale\n # as sin x and cos x?\n sx, cx = y_scale, x_scale\n\n where = label_positions[pair]\n if where == 'left':\n orig_position = 3 * np.array([[max_arrow_width, max_arrow_width]])\n elif where == 'absolute':\n orig_position = np.array([[max_arrow_length / 2.0,\n 3 * max_arrow_width]])\n elif where == 'right':\n orig_position = np.array([[length - 3 * max_arrow_width,\n 3 * max_arrow_width]])\n elif where == 'center':\n orig_position = np.array([[length / 2.0, 3 * max_arrow_width]])\n else:\n raise ValueError(\"Got unknown position parameter %s\" % where)\n\n M = np.array([[cx, sx], [-sx, cx]])\n coords = np.dot(orig_position, M) + [[x_pos, y_pos]]\n x, y = np.ravel(coords)\n orig_label = rate_labels[pair]\n label = r'$%s_{_{\\mathrm{%s}}}$' % (orig_label[0], orig_label[1:])\n\n plt.text(x, y, label, size=label_text_size, ha='center', va='center',\n color=labelcolor or fc)\n\n for p in sorted(positions):\n draw_arrow(p)\n\n\n# test data\nall_on_max = dict([(i, 1) for i in 'TCAG'] +\n [(i + j, 0.6) for i in 'TCAG' for j in 'TCAG'])\n\nrealistic_data = {\n 'A': 0.4,\n 'T': 0.3,\n 'G': 0.5,\n 'C': 0.2,\n 'AT': 0.4,\n 'AC': 0.3,\n 'AG': 0.2,\n 'TA': 0.2,\n 'TC': 0.3,\n 'TG': 0.4,\n 'CT': 0.2,\n 'CG': 0.3,\n 'CA': 0.2,\n 'GA': 0.1,\n 'GT': 0.4,\n 'GC': 0.1}\n\nextreme_data = {\n 'A': 0.75,\n 'T': 0.10,\n 'G': 0.10,\n 'C': 0.05,\n 'AT': 0.6,\n 'AC': 0.3,\n 'AG': 0.1,\n 'TA': 0.02,\n 'TC': 0.3,\n 'TG': 0.01,\n 'CT': 0.2,\n 'CG': 0.5,\n 'CA': 0.2,\n 'GA': 0.1,\n 'GT': 0.4,\n 'GC': 0.2}\n\nsample_data = {\n 'A': 0.2137,\n 'T': 0.3541,\n 'G': 0.1946,\n 'C': 0.2376,\n 'AT': 0.0228,\n 'AC': 0.0684,\n 'AG': 0.2056,\n 'TA': 0.0315,\n 'TC': 0.0629,\n 'TG': 0.0315,\n 'CT': 0.1355,\n 'CG': 0.0401,\n 'CA': 0.0703,\n 'GA': 0.1824,\n 'GT': 0.0387,\n 'GC': 0.1106}\n\n\nif __name__ == '__main__':\n from sys import argv\n d = None\n if len(argv) > 1:\n if argv[1] == 'full':\n d = all_on_max\n scaled = False\n elif argv[1] == 'extreme':\n d = extreme_data\n scaled = False\n elif argv[1] == 'realistic':\n d = realistic_data\n scaled = False\n elif argv[1] == 'sample':\n d = sample_data\n scaled = True\n if d is None:\n d = all_on_max\n scaled = False\n if len(argv) > 2:\n display = argv[2]\n else:\n display = 'length'\n\n size = 4\n plt.figure(figsize=(size, size))\n\n make_arrow_plot(d, display=display, linewidth=0.001, edgecolor=None,\n normalize_data=scaled, head_starts_at_zero=True, size=size)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/df93546fe3187cb4b910b43eabb4bc95/gridspec.py b/_downloads/df93546fe3187cb4b910b43eabb4bc95/gridspec.py deleted file mode 120000 index 8791df44821..00000000000 --- a/_downloads/df93546fe3187cb4b910b43eabb4bc95/gridspec.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/df93546fe3187cb4b910b43eabb4bc95/gridspec.py \ No newline at end of file diff --git a/_downloads/df96527974e21185cf03f4b21a0ea758/donut.ipynb b/_downloads/df96527974e21185cf03f4b21a0ea758/donut.ipynb deleted file mode 120000 index 039d4efeab6..00000000000 --- a/_downloads/df96527974e21185cf03f4b21a0ea758/donut.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/df96527974e21185cf03f4b21a0ea758/donut.ipynb \ No newline at end of file diff --git a/_downloads/df9e971c508ee7af6fe50f9838ccdc02/annotate_transform.ipynb b/_downloads/df9e971c508ee7af6fe50f9838ccdc02/annotate_transform.ipynb deleted file mode 120000 index e69c1df146e..00000000000 --- a/_downloads/df9e971c508ee7af6fe50f9838ccdc02/annotate_transform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/df9e971c508ee7af6fe50f9838ccdc02/annotate_transform.ipynb \ No newline at end of file diff --git a/_downloads/dfbd84351d5dc63a6c088e8eaa893176/simple_rgb.py b/_downloads/dfbd84351d5dc63a6c088e8eaa893176/simple_rgb.py deleted file mode 120000 index 0f16e88e371..00000000000 --- a/_downloads/dfbd84351d5dc63a6c088e8eaa893176/simple_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/dfbd84351d5dc63a6c088e8eaa893176/simple_rgb.py \ No newline at end of file diff --git a/_downloads/dfc94fb2ec0c2608e3d25209cb475c05/custom_shaded_3d_surface.py b/_downloads/dfc94fb2ec0c2608e3d25209cb475c05/custom_shaded_3d_surface.py deleted file mode 120000 index 414a522ae07..00000000000 --- a/_downloads/dfc94fb2ec0c2608e3d25209cb475c05/custom_shaded_3d_surface.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dfc94fb2ec0c2608e3d25209cb475c05/custom_shaded_3d_surface.py \ No newline at end of file diff --git a/_downloads/dfd4294fec03878b139423934c711e67/pyplot_text.py b/_downloads/dfd4294fec03878b139423934c711e67/pyplot_text.py deleted file mode 120000 index 69c758573cc..00000000000 --- a/_downloads/dfd4294fec03878b139423934c711e67/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dfd4294fec03878b139423934c711e67/pyplot_text.py \ No newline at end of file diff --git a/_downloads/dfe935a0f31da5eda3a40a6a1cd6cfa7/pick_event_demo2.py b/_downloads/dfe935a0f31da5eda3a40a6a1cd6cfa7/pick_event_demo2.py deleted file mode 100644 index 72cd4d6f471..00000000000 --- a/_downloads/dfe935a0f31da5eda3a40a6a1cd6cfa7/pick_event_demo2.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -================ -Pick Event Demo2 -================ - -compute the mean and standard deviation (stddev) of 100 data sets and plot -mean vs stddev. When you click on one of the mu, sigma points, plot the raw -data from the dataset that generated the mean and stddev. -""" -import numpy as np -import matplotlib.pyplot as plt - - -X = np.random.rand(100, 1000) -xs = np.mean(X, axis=1) -ys = np.std(X, axis=1) - -fig, ax = plt.subplots() -ax.set_title('click on point to plot time series') -line, = ax.plot(xs, ys, 'o', picker=5) # 5 points tolerance - - -def onpick(event): - - if event.artist != line: - return True - - N = len(event.ind) - if not N: - return True - - figi, axs = plt.subplots(N, squeeze=False) - for ax, dataind in zip(axs.flat, event.ind): - ax.plot(X[dataind]) - ax.text(.05, .9, 'mu=%1.3f\nsigma=%1.3f' % (xs[dataind], ys[dataind]), - transform=ax.transAxes, va='top') - ax.set_ylim(-0.5, 1.5) - figi.show() - return True - -fig.canvas.mpl_connect('pick_event', onpick) - -plt.show() diff --git a/_downloads/dfe94297bb412f1b1610bd279c4236db/contourf_demo.py b/_downloads/dfe94297bb412f1b1610bd279c4236db/contourf_demo.py deleted file mode 120000 index 07823ddbb98..00000000000 --- a/_downloads/dfe94297bb412f1b1610bd279c4236db/contourf_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/dfe94297bb412f1b1610bd279c4236db/contourf_demo.py \ No newline at end of file diff --git a/_downloads/dff28d81cd4bf2d9040591d5029bb172/transoffset.ipynb b/_downloads/dff28d81cd4bf2d9040591d5029bb172/transoffset.ipynb deleted file mode 120000 index a603cf85fdb..00000000000 --- a/_downloads/dff28d81cd4bf2d9040591d5029bb172/transoffset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dff28d81cd4bf2d9040591d5029bb172/transoffset.ipynb \ No newline at end of file diff --git a/_downloads/dffff5bd8cc2801877f4f6ac9d7b9d41/log_bar.ipynb b/_downloads/dffff5bd8cc2801877f4f6ac9d7b9d41/log_bar.ipynb deleted file mode 120000 index 165192f67e3..00000000000 --- a/_downloads/dffff5bd8cc2801877f4f6ac9d7b9d41/log_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/dffff5bd8cc2801877f4f6ac9d7b9d41/log_bar.ipynb \ No newline at end of file diff --git a/_downloads/dfrac_demo.ipynb b/_downloads/dfrac_demo.ipynb deleted file mode 120000 index ee5a57aac70..00000000000 --- a/_downloads/dfrac_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dfrac_demo.ipynb \ No newline at end of file diff --git a/_downloads/dfrac_demo.py b/_downloads/dfrac_demo.py deleted file mode 120000 index 6a6b2098745..00000000000 --- a/_downloads/dfrac_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dfrac_demo.py \ No newline at end of file diff --git a/_downloads/dollar_ticks.ipynb b/_downloads/dollar_ticks.ipynb deleted file mode 120000 index 9631a147a12..00000000000 --- a/_downloads/dollar_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dollar_ticks.ipynb \ No newline at end of file diff --git a/_downloads/dollar_ticks.py b/_downloads/dollar_ticks.py deleted file mode 120000 index 26057c9e8a0..00000000000 --- a/_downloads/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dollar_ticks.py \ No newline at end of file diff --git a/_downloads/dolphin.ipynb b/_downloads/dolphin.ipynb deleted file mode 120000 index 9c033c41b56..00000000000 --- a/_downloads/dolphin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dolphin.ipynb \ No newline at end of file diff --git a/_downloads/dolphin.py b/_downloads/dolphin.py deleted file mode 120000 index 00d19255f16..00000000000 --- a/_downloads/dolphin.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dolphin.py \ No newline at end of file diff --git a/_downloads/donut.ipynb b/_downloads/donut.ipynb deleted file mode 120000 index 735a08275f4..00000000000 --- a/_downloads/donut.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/donut.ipynb \ No newline at end of file diff --git a/_downloads/donut.py b/_downloads/donut.py deleted file mode 120000 index efcf8eff698..00000000000 --- a/_downloads/donut.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/donut.py \ No newline at end of file diff --git a/_downloads/double_pendulum_animated_sgskip.ipynb b/_downloads/double_pendulum_animated_sgskip.ipynb deleted file mode 120000 index c77499a6a42..00000000000 --- a/_downloads/double_pendulum_animated_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/double_pendulum_animated_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/double_pendulum_animated_sgskip.py b/_downloads/double_pendulum_animated_sgskip.py deleted file mode 120000 index b64da5f60b6..00000000000 --- a/_downloads/double_pendulum_animated_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/double_pendulum_animated_sgskip.py \ No newline at end of file diff --git a/_downloads/double_pendulum_sgskip.ipynb b/_downloads/double_pendulum_sgskip.ipynb deleted file mode 120000 index f8be7238fc9..00000000000 --- a/_downloads/double_pendulum_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/double_pendulum_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/double_pendulum_sgskip.py b/_downloads/double_pendulum_sgskip.py deleted file mode 120000 index dfe0efb67f5..00000000000 --- a/_downloads/double_pendulum_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/double_pendulum_sgskip.py \ No newline at end of file diff --git a/_downloads/dynamic_image.ipynb b/_downloads/dynamic_image.ipynb deleted file mode 120000 index 367c8859013..00000000000 --- a/_downloads/dynamic_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dynamic_image.ipynb \ No newline at end of file diff --git a/_downloads/dynamic_image.py b/_downloads/dynamic_image.py deleted file mode 120000 index b138e252556..00000000000 --- a/_downloads/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/dynamic_image.py \ No newline at end of file diff --git a/_downloads/dynamic_image2.ipynb b/_downloads/dynamic_image2.ipynb deleted file mode 120000 index f77aa0ae611..00000000000 --- a/_downloads/dynamic_image2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/dynamic_image2.ipynb \ No newline at end of file diff --git a/_downloads/dynamic_image2.py b/_downloads/dynamic_image2.py deleted file mode 120000 index e2a4cb3a435..00000000000 --- a/_downloads/dynamic_image2.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/dynamic_image2.py \ No newline at end of file diff --git a/_downloads/e0063f9ef7596d5c1bd6d64caecff015/pyplot_two_subplots.ipynb b/_downloads/e0063f9ef7596d5c1bd6d64caecff015/pyplot_two_subplots.ipynb deleted file mode 120000 index 99c8d5ca169..00000000000 --- a/_downloads/e0063f9ef7596d5c1bd6d64caecff015/pyplot_two_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0063f9ef7596d5c1bd6d64caecff015/pyplot_two_subplots.ipynb \ No newline at end of file diff --git a/_downloads/e0090413cc18f2a4ecd3c89fb9cc88d7/fill_betweenx_demo.ipynb b/_downloads/e0090413cc18f2a4ecd3c89fb9cc88d7/fill_betweenx_demo.ipynb deleted file mode 120000 index 976a60ef9bb..00000000000 --- a/_downloads/e0090413cc18f2a4ecd3c89fb9cc88d7/fill_betweenx_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e0090413cc18f2a4ecd3c89fb9cc88d7/fill_betweenx_demo.ipynb \ No newline at end of file diff --git a/_downloads/e00a28808c13b6126f71b9b882466189/boxplot_vs_violin.ipynb b/_downloads/e00a28808c13b6126f71b9b882466189/boxplot_vs_violin.ipynb deleted file mode 120000 index 86e2fe140e5..00000000000 --- a/_downloads/e00a28808c13b6126f71b9b882466189/boxplot_vs_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e00a28808c13b6126f71b9b882466189/boxplot_vs_violin.ipynb \ No newline at end of file diff --git a/_downloads/e00aa6c0f7c3dee563516cbeec608900/mouse_cursor.ipynb b/_downloads/e00aa6c0f7c3dee563516cbeec608900/mouse_cursor.ipynb deleted file mode 120000 index ce94278c2a1..00000000000 --- a/_downloads/e00aa6c0f7c3dee563516cbeec608900/mouse_cursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e00aa6c0f7c3dee563516cbeec608900/mouse_cursor.ipynb \ No newline at end of file diff --git a/_downloads/e01448737f71ce88ac3f2177a351c1de/polygon_selector_demo.py b/_downloads/e01448737f71ce88ac3f2177a351c1de/polygon_selector_demo.py deleted file mode 120000 index ab57f630ea3..00000000000 --- a/_downloads/e01448737f71ce88ac3f2177a351c1de/polygon_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e01448737f71ce88ac3f2177a351c1de/polygon_selector_demo.py \ No newline at end of file diff --git a/_downloads/e01e4071ca59c670972d307a1aad7fe8/embedding_in_wx5_sgskip.ipynb b/_downloads/e01e4071ca59c670972d307a1aad7fe8/embedding_in_wx5_sgskip.ipynb deleted file mode 120000 index 03beace1d54..00000000000 --- a/_downloads/e01e4071ca59c670972d307a1aad7fe8/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e01e4071ca59c670972d307a1aad7fe8/embedding_in_wx5_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/e01fc73e193d6115814055ca8c0c79d4/whats_new_99_axes_grid.ipynb b/_downloads/e01fc73e193d6115814055ca8c0c79d4/whats_new_99_axes_grid.ipynb deleted file mode 120000 index b9c8c897d37..00000000000 --- a/_downloads/e01fc73e193d6115814055ca8c0c79d4/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e01fc73e193d6115814055ca8c0c79d4/whats_new_99_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/e02242916eece78398076790e1fbed5a/eventplot_demo.py b/_downloads/e02242916eece78398076790e1fbed5a/eventplot_demo.py deleted file mode 120000 index c0df7935adb..00000000000 --- a/_downloads/e02242916eece78398076790e1fbed5a/eventplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e02242916eece78398076790e1fbed5a/eventplot_demo.py \ No newline at end of file diff --git a/_downloads/e036354a6644afdd66202e8b1d27eff6/polar_demo.py b/_downloads/e036354a6644afdd66202e8b1d27eff6/polar_demo.py deleted file mode 100644 index 1ba897a9fa4..00000000000 --- a/_downloads/e036354a6644afdd66202e8b1d27eff6/polar_demo.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -========== -Polar Demo -========== - -Demo of a line plot on a polar axis. -""" -import numpy as np -import matplotlib.pyplot as plt - - -r = np.arange(0, 2, 0.01) -theta = 2 * np.pi * r - -ax = plt.subplot(111, projection='polar') -ax.plot(theta, r) -ax.set_rmax(2) -ax.set_rticks([0.5, 1, 1.5, 2]) # Less radial ticks -ax.set_rlabel_position(-22.5) # Move radial labels away from plotted line -ax.grid(True) - -ax.set_title("A line plot on a polar axis", va='bottom') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes -matplotlib.projections.polar.PolarAxes.set_rticks -matplotlib.projections.polar.PolarAxes.set_rmax -matplotlib.projections.polar.PolarAxes.set_rlabel_position diff --git a/_downloads/e03a5dd7addb665fe67190bafb1aecf4/arrow_simple_demo.py b/_downloads/e03a5dd7addb665fe67190bafb1aecf4/arrow_simple_demo.py deleted file mode 120000 index 1f4685d7d94..00000000000 --- a/_downloads/e03a5dd7addb665fe67190bafb1aecf4/arrow_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e03a5dd7addb665fe67190bafb1aecf4/arrow_simple_demo.py \ No newline at end of file diff --git a/_downloads/e040d0e1d8705d8dd6b4e8df8556d7ed/artist_tests.ipynb b/_downloads/e040d0e1d8705d8dd6b4e8df8556d7ed/artist_tests.ipynb deleted file mode 120000 index ab45ff09ea8..00000000000 --- a/_downloads/e040d0e1d8705d8dd6b4e8df8556d7ed/artist_tests.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e040d0e1d8705d8dd6b4e8df8556d7ed/artist_tests.ipynb \ No newline at end of file diff --git a/_downloads/e04ba92cf9404a991832d055bce0278a/custom_boxstyle01.ipynb b/_downloads/e04ba92cf9404a991832d055bce0278a/custom_boxstyle01.ipynb deleted file mode 120000 index 49fdd917cf7..00000000000 --- a/_downloads/e04ba92cf9404a991832d055bce0278a/custom_boxstyle01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e04ba92cf9404a991832d055bce0278a/custom_boxstyle01.ipynb \ No newline at end of file diff --git a/_downloads/e05305630812832e94503609a85657a9/units_scatter.py b/_downloads/e05305630812832e94503609a85657a9/units_scatter.py deleted file mode 120000 index 48a4ecb6fc9..00000000000 --- a/_downloads/e05305630812832e94503609a85657a9/units_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e05305630812832e94503609a85657a9/units_scatter.py \ No newline at end of file diff --git a/_downloads/e05ba857ae2f585c6eff51f0d78e0ec6/bxp.py b/_downloads/e05ba857ae2f585c6eff51f0d78e0ec6/bxp.py deleted file mode 120000 index 9b7bb3fad6a..00000000000 --- a/_downloads/e05ba857ae2f585c6eff51f0d78e0ec6/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e05ba857ae2f585c6eff51f0d78e0ec6/bxp.py \ No newline at end of file diff --git a/_downloads/e06155370ddd652af322b6b691988381/pgf_fonts.py b/_downloads/e06155370ddd652af322b6b691988381/pgf_fonts.py deleted file mode 120000 index 814ffbd5598..00000000000 --- a/_downloads/e06155370ddd652af322b6b691988381/pgf_fonts.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e06155370ddd652af322b6b691988381/pgf_fonts.py \ No newline at end of file diff --git a/_downloads/e061a9a800f083630abcf40c46d83e80/demo_text_rotation_mode.py b/_downloads/e061a9a800f083630abcf40c46d83e80/demo_text_rotation_mode.py deleted file mode 120000 index 99396dbca4b..00000000000 --- a/_downloads/e061a9a800f083630abcf40c46d83e80/demo_text_rotation_mode.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e061a9a800f083630abcf40c46d83e80/demo_text_rotation_mode.py \ No newline at end of file diff --git a/_downloads/e062a14dff82342a2fd2dee33eea7ecb/logos2.ipynb b/_downloads/e062a14dff82342a2fd2dee33eea7ecb/logos2.ipynb deleted file mode 120000 index beabe4a45f6..00000000000 --- a/_downloads/e062a14dff82342a2fd2dee33eea7ecb/logos2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e062a14dff82342a2fd2dee33eea7ecb/logos2.ipynb \ No newline at end of file diff --git a/_downloads/e07a27849f8c90fc19dfaa096d8e843e/compound_path.py b/_downloads/e07a27849f8c90fc19dfaa096d8e843e/compound_path.py deleted file mode 120000 index 010602e1da2..00000000000 --- a/_downloads/e07a27849f8c90fc19dfaa096d8e843e/compound_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e07a27849f8c90fc19dfaa096d8e843e/compound_path.py \ No newline at end of file diff --git a/_downloads/e07d90d2c10f30b4026bc00845eeac17/colormap_normalizations.py b/_downloads/e07d90d2c10f30b4026bc00845eeac17/colormap_normalizations.py deleted file mode 120000 index 7e1be53a948..00000000000 --- a/_downloads/e07d90d2c10f30b4026bc00845eeac17/colormap_normalizations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e07d90d2c10f30b4026bc00845eeac17/colormap_normalizations.py \ No newline at end of file diff --git a/_downloads/e08194fbd26985341907d3fbfbe07ddb/histogram_features.py b/_downloads/e08194fbd26985341907d3fbfbe07ddb/histogram_features.py deleted file mode 120000 index 7f423e9c6b1..00000000000 --- a/_downloads/e08194fbd26985341907d3fbfbe07ddb/histogram_features.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e08194fbd26985341907d3fbfbe07ddb/histogram_features.py \ No newline at end of file diff --git a/_downloads/e082c0a2a0728ba5ff22d3c8e216a50e/pipong.ipynb b/_downloads/e082c0a2a0728ba5ff22d3c8e216a50e/pipong.ipynb deleted file mode 100644 index a0281cfdcc6..00000000000 --- a/_downloads/e082c0a2a0728ba5ff22d3c8e216a50e/pipong.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pipong\n\n\nA Matplotlib based game of Pong illustrating one way to write interactive\nanimation which are easily ported to multiple backends\npipong.py was written by Paul Ivanov \n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom numpy.random import randn, randint\nfrom matplotlib.font_manager import FontProperties\n\ninstructions = \"\"\"\nPlayer A: Player B:\n 'e' up 'i'\n 'd' down 'k'\n\npress 't' -- close these instructions\n (animation will be much faster)\npress 'a' -- add a puck\npress 'A' -- remove a puck\npress '1' -- slow down all pucks\npress '2' -- speed up all pucks\npress '3' -- slow down distractors\npress '4' -- speed up distractors\npress ' ' -- reset the first puck\npress 'n' -- toggle distractors on/off\npress 'g' -- toggle the game on/off\n\n \"\"\"\n\n\nclass Pad(object):\n def __init__(self, disp, x, y, type='l'):\n self.disp = disp\n self.x = x\n self.y = y\n self.w = .3\n self.score = 0\n self.xoffset = 0.3\n self.yoffset = 0.1\n if type == 'r':\n self.xoffset *= -1.0\n\n if type == 'l' or type == 'r':\n self.signx = -1.0\n self.signy = 1.0\n else:\n self.signx = 1.0\n self.signy = -1.0\n\n def contains(self, loc):\n return self.disp.get_bbox().contains(loc.x, loc.y)\n\n\nclass Puck(object):\n def __init__(self, disp, pad, field):\n self.vmax = .2\n self.disp = disp\n self.field = field\n self._reset(pad)\n\n def _reset(self, pad):\n self.x = pad.x + pad.xoffset\n if pad.y < 0:\n self.y = pad.y + pad.yoffset\n else:\n self.y = pad.y - pad.yoffset\n self.vx = pad.x - self.x\n self.vy = pad.y + pad.w/2 - self.y\n self._speedlimit()\n self._slower()\n self._slower()\n\n def update(self, pads):\n self.x += self.vx\n self.y += self.vy\n for pad in pads:\n if pad.contains(self):\n self.vx *= 1.2 * pad.signx\n self.vy *= 1.2 * pad.signy\n fudge = .001\n # probably cleaner with something like...\n if self.x < fudge:\n pads[1].score += 1\n self._reset(pads[0])\n return True\n if self.x > 7 - fudge:\n pads[0].score += 1\n self._reset(pads[1])\n return True\n if self.y < -1 + fudge or self.y > 1 - fudge:\n self.vy *= -1.0\n # add some randomness, just to make it interesting\n self.vy -= (randn()/300.0 + 1/300.0) * np.sign(self.vy)\n self._speedlimit()\n return False\n\n def _slower(self):\n self.vx /= 5.0\n self.vy /= 5.0\n\n def _faster(self):\n self.vx *= 5.0\n self.vy *= 5.0\n\n def _speedlimit(self):\n if self.vx > self.vmax:\n self.vx = self.vmax\n if self.vx < -self.vmax:\n self.vx = -self.vmax\n\n if self.vy > self.vmax:\n self.vy = self.vmax\n if self.vy < -self.vmax:\n self.vy = -self.vmax\n\n\nclass Game(object):\n def __init__(self, ax):\n # create the initial line\n self.ax = ax\n ax.set_ylim([-1, 1])\n ax.set_xlim([0, 7])\n padAx = 0\n padBx = .50\n padAy = padBy = .30\n padBx += 6.3\n\n # pads\n pA, = self.ax.barh(padAy, .2,\n height=.3, color='k', alpha=.5, edgecolor='b',\n lw=2, label=\"Player B\",\n animated=True)\n pB, = self.ax.barh(padBy, .2,\n height=.3, left=padBx, color='k', alpha=.5,\n edgecolor='r', lw=2, label=\"Player A\",\n animated=True)\n\n # distractors\n self.x = np.arange(0, 2.22*np.pi, 0.01)\n self.line, = self.ax.plot(self.x, np.sin(self.x), \"r\",\n animated=True, lw=4)\n self.line2, = self.ax.plot(self.x, np.cos(self.x), \"g\",\n animated=True, lw=4)\n self.line3, = self.ax.plot(self.x, np.cos(self.x), \"g\",\n animated=True, lw=4)\n self.line4, = self.ax.plot(self.x, np.cos(self.x), \"r\",\n animated=True, lw=4)\n\n # center line\n self.centerline, = self.ax.plot([3.5, 3.5], [1, -1], 'k',\n alpha=.5, animated=True, lw=8)\n\n # puck (s)\n self.puckdisp = self.ax.scatter([1], [1], label='_nolegend_',\n s=200, c='g',\n alpha=.9, animated=True)\n\n self.canvas = self.ax.figure.canvas\n self.background = None\n self.cnt = 0\n self.distract = True\n self.res = 100.0\n self.on = False\n self.inst = True # show instructions from the beginning\n self.background = None\n self.pads = []\n self.pads.append(Pad(pA, padAx, padAy))\n self.pads.append(Pad(pB, padBx, padBy, 'r'))\n self.pucks = []\n self.i = self.ax.annotate(instructions, (.5, 0.5),\n name='monospace',\n verticalalignment='center',\n horizontalalignment='center',\n multialignment='left',\n textcoords='axes fraction',\n animated=False)\n self.canvas.mpl_connect('key_press_event', self.key_press)\n\n def draw(self, evt):\n draw_artist = self.ax.draw_artist\n if self.background is None:\n self.background = self.canvas.copy_from_bbox(self.ax.bbox)\n\n # restore the clean slate background\n self.canvas.restore_region(self.background)\n\n # show the distractors\n if self.distract:\n self.line.set_ydata(np.sin(self.x + self.cnt/self.res))\n self.line2.set_ydata(np.cos(self.x - self.cnt/self.res))\n self.line3.set_ydata(np.tan(self.x + self.cnt/self.res))\n self.line4.set_ydata(np.tan(self.x - self.cnt/self.res))\n draw_artist(self.line)\n draw_artist(self.line2)\n draw_artist(self.line3)\n draw_artist(self.line4)\n\n # pucks and pads\n if self.on:\n self.ax.draw_artist(self.centerline)\n for pad in self.pads:\n pad.disp.set_y(pad.y)\n pad.disp.set_x(pad.x)\n self.ax.draw_artist(pad.disp)\n\n for puck in self.pucks:\n if puck.update(self.pads):\n # we only get here if someone scored\n self.pads[0].disp.set_label(\n \" \" + str(self.pads[0].score))\n self.pads[1].disp.set_label(\n \" \" + str(self.pads[1].score))\n self.ax.legend(loc='center', framealpha=.2,\n facecolor='0.5',\n prop=FontProperties(size='xx-large',\n weight='bold'))\n\n self.background = None\n self.ax.figure.canvas.draw_idle()\n return True\n puck.disp.set_offsets([[puck.x, puck.y]])\n self.ax.draw_artist(puck.disp)\n\n # just redraw the axes rectangle\n self.canvas.blit(self.ax.bbox)\n self.canvas.flush_events()\n if self.cnt == 50000:\n # just so we don't get carried away\n print(\"...and you've been playing for too long!!!\")\n plt.close()\n\n self.cnt += 1\n return True\n\n def key_press(self, event):\n if event.key == '3':\n self.res *= 5.0\n if event.key == '4':\n self.res /= 5.0\n\n if event.key == 'e':\n self.pads[0].y += .1\n if self.pads[0].y > 1 - .3:\n self.pads[0].y = 1 - .3\n if event.key == 'd':\n self.pads[0].y -= .1\n if self.pads[0].y < -1:\n self.pads[0].y = -1\n\n if event.key == 'i':\n self.pads[1].y += .1\n if self.pads[1].y > 1 - .3:\n self.pads[1].y = 1 - .3\n if event.key == 'k':\n self.pads[1].y -= .1\n if self.pads[1].y < -1:\n self.pads[1].y = -1\n\n if event.key == 'a':\n self.pucks.append(Puck(self.puckdisp,\n self.pads[randint(2)],\n self.ax.bbox))\n if event.key == 'A' and len(self.pucks):\n self.pucks.pop()\n if event.key == ' ' and len(self.pucks):\n self.pucks[0]._reset(self.pads[randint(2)])\n if event.key == '1':\n for p in self.pucks:\n p._slower()\n if event.key == '2':\n for p in self.pucks:\n p._faster()\n\n if event.key == 'n':\n self.distract = not self.distract\n\n if event.key == 'g':\n self.on = not self.on\n if event.key == 't':\n self.inst = not self.inst\n self.i.set_visible(not self.i.get_visible())\n self.background = None\n self.canvas.draw_idle()\n if event.key == 'q':\n plt.close()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e083acff8c432fb894763a00cc487c53/ggplot.ipynb b/_downloads/e083acff8c432fb894763a00cc487c53/ggplot.ipynb deleted file mode 100644 index 00920205826..00000000000 --- a/_downloads/e083acff8c432fb894763a00cc487c53/ggplot.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# ggplot style sheet\n\n\nThis example demonstrates the \"ggplot\" style, which adjusts the style to\nemulate ggplot_ (a popular plotting package for R_).\n\nThese settings were shamelessly stolen from [1]_ (with permission).\n\n.. [1] https://web.archive.org/web/20111215111010/http://www.huyng.com/archives/sane-color-scheme-for-matplotlib/691/\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nplt.style.use('ggplot')\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nfig, axes = plt.subplots(ncols=2, nrows=2)\nax1, ax2, ax3, ax4 = axes.ravel()\n\n# scatter plot (Note: `plt.scatter` doesn't use default colors)\nx, y = np.random.normal(size=(2, 200))\nax1.plot(x, y, 'o')\n\n# sinusoidal lines with colors from default color cycle\nL = 2*np.pi\nx = np.linspace(0, L)\nncolors = len(plt.rcParams['axes.prop_cycle'])\nshift = np.linspace(0, L, ncolors, endpoint=False)\nfor s in shift:\n ax2.plot(x, np.sin(x + s), '-')\nax2.margins(0)\n\n# bar graphs\nx = np.arange(5)\ny1, y2 = np.random.randint(1, 25, size=(2, 5))\nwidth = 0.25\nax3.bar(x, y1, width)\nax3.bar(x + width, y2, width,\n color=list(plt.rcParams['axes.prop_cycle'])[2]['color'])\nax3.set_xticks(x + width)\nax3.set_xticklabels(['a', 'b', 'c', 'd', 'e'])\n\n# circles with colors from default color cycle\nfor i, color in enumerate(plt.rcParams['axes.prop_cycle']):\n xy = np.random.normal(size=2)\n ax4.add_patch(plt.Circle(xy, radius=0.3, color=color['color']))\nax4.axis('equal')\nax4.margins(0)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e08e2452251202adce4e9269cc7b75eb/axis_direction_demo_step01.ipynb b/_downloads/e08e2452251202adce4e9269cc7b75eb/axis_direction_demo_step01.ipynb deleted file mode 120000 index 00d34d71817..00000000000 --- a/_downloads/e08e2452251202adce4e9269cc7b75eb/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e08e2452251202adce4e9269cc7b75eb/axis_direction_demo_step01.ipynb \ No newline at end of file diff --git a/_downloads/e0930ecf23db5bce1bed4f23e48bfa1b/embedding_in_tk_sgskip.ipynb b/_downloads/e0930ecf23db5bce1bed4f23e48bfa1b/embedding_in_tk_sgskip.ipynb deleted file mode 120000 index 604ca199e4e..00000000000 --- a/_downloads/e0930ecf23db5bce1bed4f23e48bfa1b/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0930ecf23db5bce1bed4f23e48bfa1b/embedding_in_tk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/e095e5e659f0cf5edf24dfcbe6e35b32/demo_constrained_layout.py b/_downloads/e095e5e659f0cf5edf24dfcbe6e35b32/demo_constrained_layout.py deleted file mode 120000 index ae747316379..00000000000 --- a/_downloads/e095e5e659f0cf5edf24dfcbe6e35b32/demo_constrained_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e095e5e659f0cf5edf24dfcbe6e35b32/demo_constrained_layout.py \ No newline at end of file diff --git a/_downloads/e0981f66fa3b2d4dc13bad1b378b4886/secondary_axis.py b/_downloads/e0981f66fa3b2d4dc13bad1b378b4886/secondary_axis.py deleted file mode 120000 index 722825b8aba..00000000000 --- a/_downloads/e0981f66fa3b2d4dc13bad1b378b4886/secondary_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e0981f66fa3b2d4dc13bad1b378b4886/secondary_axis.py \ No newline at end of file diff --git a/_downloads/e0a12bb4981a17f54d6effbee1da88af/ginput_demo_sgskip.py b/_downloads/e0a12bb4981a17f54d6effbee1da88af/ginput_demo_sgskip.py deleted file mode 120000 index 7abb437ca22..00000000000 --- a/_downloads/e0a12bb4981a17f54d6effbee1da88af/ginput_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/e0a12bb4981a17f54d6effbee1da88af/ginput_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/e0a27ecefca35017e6100a8601ded4d7/trifinder_event_demo.py b/_downloads/e0a27ecefca35017e6100a8601ded4d7/trifinder_event_demo.py deleted file mode 120000 index 04fa5df6588..00000000000 --- a/_downloads/e0a27ecefca35017e6100a8601ded4d7/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e0a27ecefca35017e6100a8601ded4d7/trifinder_event_demo.py \ No newline at end of file diff --git a/_downloads/e0a4487c72e17c4922a2f78c247d527a/subplot_toolbar.ipynb b/_downloads/e0a4487c72e17c4922a2f78c247d527a/subplot_toolbar.ipynb deleted file mode 120000 index 9b58d34e370..00000000000 --- a/_downloads/e0a4487c72e17c4922a2f78c247d527a/subplot_toolbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0a4487c72e17c4922a2f78c247d527a/subplot_toolbar.ipynb \ No newline at end of file diff --git a/_downloads/e0a5d82cf0cf5c9b6c95aae23f310e51/triinterp_demo.ipynb b/_downloads/e0a5d82cf0cf5c9b6c95aae23f310e51/triinterp_demo.ipynb deleted file mode 120000 index 15d6a1c47b0..00000000000 --- a/_downloads/e0a5d82cf0cf5c9b6c95aae23f310e51/triinterp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e0a5d82cf0cf5c9b6c95aae23f310e51/triinterp_demo.ipynb \ No newline at end of file diff --git a/_downloads/e0ab6fa687db368f4a4d4557a5bff557/demo_bboximage.ipynb b/_downloads/e0ab6fa687db368f4a4d4557a5bff557/demo_bboximage.ipynb deleted file mode 100644 index 20716398fdc..00000000000 --- a/_downloads/e0ab6fa687db368f4a4d4557a5bff557/demo_bboximage.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# BboxImage Demo\n\n\nA :class:`~matplotlib.image.BboxImage` can be used to position\nan image according to a bounding box. This demo shows how to\nshow an image inside a `text.Text`'s bounding box as well as\nhow to manually create a bounding box for the image.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.image import BboxImage\nfrom matplotlib.transforms import Bbox, TransformedBbox\n\n\nfig, (ax1, ax2) = plt.subplots(ncols=2)\n\n# ----------------------------\n# Create a BboxImage with Text\n# ----------------------------\ntxt = ax1.text(0.5, 0.5, \"test\", size=30, ha=\"center\", color=\"w\")\nkwargs = dict()\n\nbbox_image = BboxImage(txt.get_window_extent,\n norm=None,\n origin=None,\n clip_on=False,\n **kwargs\n )\na = np.arange(256).reshape(1, 256)/256.\nbbox_image.set_data(a)\nax1.add_artist(bbox_image)\n\n# ------------------------------------\n# Create a BboxImage for each colormap\n# ------------------------------------\na = np.linspace(0, 1, 256).reshape(1, -1)\na = np.vstack((a, a))\n\n# List of all colormaps; skip reversed colormaps.\nmaps = sorted(m for m in plt.cm.cmap_d if not m.endswith(\"_r\"))\n\nncol = 2\nnrow = len(maps)//ncol + 1\n\nxpad_fraction = 0.3\ndx = 1./(ncol + xpad_fraction*(ncol - 1))\n\nypad_fraction = 0.3\ndy = 1./(nrow + ypad_fraction*(nrow - 1))\n\nfor i, m in enumerate(maps):\n ix, iy = divmod(i, nrow)\n\n bbox0 = Bbox.from_bounds(ix*dx*(1 + xpad_fraction),\n 1. - iy*dy*(1 + ypad_fraction) - dy,\n dx, dy)\n bbox = TransformedBbox(bbox0, ax2.transAxes)\n\n bbox_image = BboxImage(bbox,\n cmap=plt.get_cmap(m),\n norm=None,\n origin=None,\n **kwargs\n )\n\n bbox_image.set_data(a)\n ax2.add_artist(bbox_image)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.image.BboxImage\nmatplotlib.transforms.Bbox\nmatplotlib.transforms.TransformedBbox\nmatplotlib.text.Text" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e0b93860b8efdf0f8fc0ac8805989193/aspect_loglog.py b/_downloads/e0b93860b8efdf0f8fc0ac8805989193/aspect_loglog.py deleted file mode 100644 index 90c0422ca38..00000000000 --- a/_downloads/e0b93860b8efdf0f8fc0ac8805989193/aspect_loglog.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============= -Loglog Aspect -============= - -""" -import matplotlib.pyplot as plt - -fig, (ax1, ax2) = plt.subplots(1, 2) -ax1.set_xscale("log") -ax1.set_yscale("log") -ax1.set_xlim(1e1, 1e3) -ax1.set_ylim(1e2, 1e3) -ax1.set_aspect(1) -ax1.set_title("adjustable = box") - -ax2.set_xscale("log") -ax2.set_yscale("log") -ax2.set_adjustable("datalim") -ax2.plot([1, 3, 10], [1, 9, 100], "o-") -ax2.set_xlim(1e-1, 1e2) -ax2.set_ylim(1e-1, 1e3) -ax2.set_aspect(1) -ax2.set_title("adjustable = datalim") - -plt.show() diff --git a/_downloads/e0b9d1f12802e4de60aa43cc33d0fb5b/demo_parasite_axes.ipynb b/_downloads/e0b9d1f12802e4de60aa43cc33d0fb5b/demo_parasite_axes.ipynb deleted file mode 120000 index dc9fd9f371c..00000000000 --- a/_downloads/e0b9d1f12802e4de60aa43cc33d0fb5b/demo_parasite_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e0b9d1f12802e4de60aa43cc33d0fb5b/demo_parasite_axes.ipynb \ No newline at end of file diff --git a/_downloads/e0bddb4b7d87c22c2241df44ea62238d/step.py b/_downloads/e0bddb4b7d87c22c2241df44ea62238d/step.py deleted file mode 120000 index aa0b090ce7c..00000000000 --- a/_downloads/e0bddb4b7d87c22c2241df44ea62238d/step.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e0bddb4b7d87c22c2241df44ea62238d/step.py \ No newline at end of file diff --git a/_downloads/e0bea323b36b671e023bdbddbff5c934/dynamic_image.py b/_downloads/e0bea323b36b671e023bdbddbff5c934/dynamic_image.py deleted file mode 120000 index 9d0f132ba2d..00000000000 --- a/_downloads/e0bea323b36b671e023bdbddbff5c934/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e0bea323b36b671e023bdbddbff5c934/dynamic_image.py \ No newline at end of file diff --git a/_downloads/e0c4db7a0b5a7b671c5350a70fb94a73/pyplot_text.py b/_downloads/e0c4db7a0b5a7b671c5350a70fb94a73/pyplot_text.py deleted file mode 120000 index e9954d46f65..00000000000 --- a/_downloads/e0c4db7a0b5a7b671c5350a70fb94a73/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0c4db7a0b5a7b671c5350a70fb94a73/pyplot_text.py \ No newline at end of file diff --git a/_downloads/e0c89604b51070294a2cc068b431fb0b/demo_curvelinear_grid2.py b/_downloads/e0c89604b51070294a2cc068b431fb0b/demo_curvelinear_grid2.py deleted file mode 100644 index 88b656b32cd..00000000000 --- a/_downloads/e0c89604b51070294a2cc068b431fb0b/demo_curvelinear_grid2.py +++ /dev/null @@ -1,70 +0,0 @@ -""" -====================== -Demo Curvelinear Grid2 -====================== - -Custom grid and ticklines. - -This example demonstrates how to use GridHelperCurveLinear to define -custom grids and ticklines by applying a transformation on the grid. -As showcase on the plot, a 5x5 matrix is displayed on the axes. -""" - -import numpy as np -import matplotlib.pyplot as plt - -from mpl_toolkits.axisartist.grid_helper_curvelinear import \ - GridHelperCurveLinear -from mpl_toolkits.axisartist.grid_finder import MaxNLocator -from mpl_toolkits.axisartist.axislines import Subplot - -import mpl_toolkits.axisartist.angle_helper as angle_helper - - -def curvelinear_test1(fig): - """ - grid for custom transform. - """ - - def tr(x, y): - sgn = np.sign(x) - x, y = np.abs(np.asarray(x)), np.asarray(y) - return sgn*x**.5, y - - def inv_tr(x, y): - sgn = np.sign(x) - x, y = np.asarray(x), np.asarray(y) - return sgn*x**2, y - - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle=None, - lat_cycle=None, - # (0, np.inf), - lon_minmax=None, - lat_minmax=None, - ) - - grid_helper = GridHelperCurveLinear((tr, inv_tr), - extreme_finder=extreme_finder, - # better tick density - grid_locator1=MaxNLocator(nbins=6), - grid_locator2=MaxNLocator(nbins=6)) - - ax1 = Subplot(fig, 111, grid_helper=grid_helper) - # ax1 will have a ticks and gridlines defined by the given - # transform (+ transData of the Axes). Note that the transform of - # the Axes itself (i.e., transData) is not affected by the given - # transform. - - fig.add_subplot(ax1) - - ax1.imshow(np.arange(25).reshape(5, 5), - vmax=50, cmap=plt.cm.gray_r, - interpolation="nearest", - origin="lower") - - -if __name__ == "__main__": - fig = plt.figure(figsize=(7, 4)) - curvelinear_test1(fig) - plt.show() diff --git a/_downloads/e0cc670a5de8df398ca9b1995790fd8d/colors.ipynb b/_downloads/e0cc670a5de8df398ca9b1995790fd8d/colors.ipynb deleted file mode 120000 index a708c5ca90e..00000000000 --- a/_downloads/e0cc670a5de8df398ca9b1995790fd8d/colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0cc670a5de8df398ca9b1995790fd8d/colors.ipynb \ No newline at end of file diff --git a/_downloads/e0cd1229c02e9204b2aa0dd60cfe969f/confidence_ellipse.ipynb b/_downloads/e0cd1229c02e9204b2aa0dd60cfe969f/confidence_ellipse.ipynb deleted file mode 120000 index b6462291189..00000000000 --- a/_downloads/e0cd1229c02e9204b2aa0dd60cfe969f/confidence_ellipse.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0cd1229c02e9204b2aa0dd60cfe969f/confidence_ellipse.ipynb \ No newline at end of file diff --git a/_downloads/e0d9201551b3a4e5eacf0d4579a7f243/nan_test.py b/_downloads/e0d9201551b3a4e5eacf0d4579a7f243/nan_test.py deleted file mode 100644 index 4216f6960ae..00000000000 --- a/_downloads/e0d9201551b3a4e5eacf0d4579a7f243/nan_test.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -======== -Nan Test -======== - -Example: simple line plots with NaNs inserted. -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0.0, 1.0 + 0.01, 0.01) -s = np.cos(2 * 2*np.pi * t) -t[41:60] = np.nan - -plt.subplot(2, 1, 1) -plt.plot(t, s, '-', lw=2) - -plt.xlabel('time (s)') -plt.ylabel('voltage (mV)') -plt.title('A sine wave with a gap of NaNs between 0.4 and 0.6') -plt.grid(True) - -plt.subplot(2, 1, 2) -t[0] = np.nan -t[-1] = np.nan -plt.plot(t, s, '-', lw=2) -plt.title('Also with NaN in first and last point') - -plt.xlabel('time (s)') -plt.ylabel('more nans') -plt.grid(True) - -plt.tight_layout() -plt.show() diff --git a/_downloads/e0dcecaaa2effa41b3854baa5387f0d0/fancytextbox_demo.py b/_downloads/e0dcecaaa2effa41b3854baa5387f0d0/fancytextbox_demo.py deleted file mode 120000 index 9ace4351fd1..00000000000 --- a/_downloads/e0dcecaaa2effa41b3854baa5387f0d0/fancytextbox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0dcecaaa2effa41b3854baa5387f0d0/fancytextbox_demo.py \ No newline at end of file diff --git a/_downloads/e0e40b3e9e06c88fc18b4d94eb89c8a5/scatter.ipynb b/_downloads/e0e40b3e9e06c88fc18b4d94eb89c8a5/scatter.ipynb deleted file mode 120000 index 54c20d1ab2d..00000000000 --- a/_downloads/e0e40b3e9e06c88fc18b4d94eb89c8a5/scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e0e40b3e9e06c88fc18b4d94eb89c8a5/scatter.ipynb \ No newline at end of file diff --git a/_downloads/e0e4efb3be796bfb1a07b12603336606/pcolor_demo.py b/_downloads/e0e4efb3be796bfb1a07b12603336606/pcolor_demo.py deleted file mode 120000 index 138dd5e595c..00000000000 --- a/_downloads/e0e4efb3be796bfb1a07b12603336606/pcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e0e4efb3be796bfb1a07b12603336606/pcolor_demo.py \ No newline at end of file diff --git a/_downloads/e0ed1ce8819a2cdaff294f9d99ca83dd/spines_dropped.ipynb b/_downloads/e0ed1ce8819a2cdaff294f9d99ca83dd/spines_dropped.ipynb deleted file mode 120000 index 6652b3657d3..00000000000 --- a/_downloads/e0ed1ce8819a2cdaff294f9d99ca83dd/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/e0ed1ce8819a2cdaff294f9d99ca83dd/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/e0eebc937e8db95b60e4d7aeea546426/histogram_multihist.ipynb b/_downloads/e0eebc937e8db95b60e4d7aeea546426/histogram_multihist.ipynb deleted file mode 120000 index ae3a7ef43fd..00000000000 --- a/_downloads/e0eebc937e8db95b60e4d7aeea546426/histogram_multihist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e0eebc937e8db95b60e4d7aeea546426/histogram_multihist.ipynb \ No newline at end of file diff --git a/_downloads/e0eed6adfd092a02066233c47cf0a08e/titles_demo.ipynb b/_downloads/e0eed6adfd092a02066233c47cf0a08e/titles_demo.ipynb deleted file mode 100644 index 17495d534be..00000000000 --- a/_downloads/e0eed6adfd092a02066233c47cf0a08e/titles_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Titles Demo\n\n\nmatplotlib can display plot titles centered, flush with the left side of\na set of axes, and flush with the right side of a set of axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nplt.plot(range(10))\n\nplt.title('Center Title')\nplt.title('Left Title', loc='left')\nplt.title('Right Title', loc='right')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e0f3c44cace38660e8b8d7e233023507/mri_demo.py b/_downloads/e0f3c44cace38660e8b8d7e233023507/mri_demo.py deleted file mode 120000 index 2b4a46847c6..00000000000 --- a/_downloads/e0f3c44cace38660e8b8d7e233023507/mri_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e0f3c44cace38660e8b8d7e233023507/mri_demo.py \ No newline at end of file diff --git a/_downloads/e0fb6e0d9c82955568008b9d486518d4/anatomy.py b/_downloads/e0fb6e0d9c82955568008b9d486518d4/anatomy.py deleted file mode 100644 index b29f99f0dd9..00000000000 --- a/_downloads/e0fb6e0d9c82955568008b9d486518d4/anatomy.py +++ /dev/null @@ -1,143 +0,0 @@ -""" -=================== -Anatomy of a figure -=================== - -This figure shows the name of several matplotlib elements composing a figure -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.ticker import AutoMinorLocator, MultipleLocator, FuncFormatter - -np.random.seed(19680801) - -X = np.linspace(0.5, 3.5, 100) -Y1 = 3+np.cos(X) -Y2 = 1+np.cos(1+X/0.75)/2 -Y3 = np.random.uniform(Y1, Y2, len(X)) - -fig = plt.figure(figsize=(8, 8)) -ax = fig.add_subplot(1, 1, 1, aspect=1) - - -def minor_tick(x, pos): - if not x % 1.0: - return "" - return "%.2f" % x - -ax.xaxis.set_major_locator(MultipleLocator(1.000)) -ax.xaxis.set_minor_locator(AutoMinorLocator(4)) -ax.yaxis.set_major_locator(MultipleLocator(1.000)) -ax.yaxis.set_minor_locator(AutoMinorLocator(4)) -ax.xaxis.set_minor_formatter(FuncFormatter(minor_tick)) - -ax.set_xlim(0, 4) -ax.set_ylim(0, 4) - -ax.tick_params(which='major', width=1.0) -ax.tick_params(which='major', length=10) -ax.tick_params(which='minor', width=1.0, labelsize=10) -ax.tick_params(which='minor', length=5, labelsize=10, labelcolor='0.25') - -ax.grid(linestyle="--", linewidth=0.5, color='.25', zorder=-10) - -ax.plot(X, Y1, c=(0.25, 0.25, 1.00), lw=2, label="Blue signal", zorder=10) -ax.plot(X, Y2, c=(1.00, 0.25, 0.25), lw=2, label="Red signal") -ax.plot(X, Y3, linewidth=0, - marker='o', markerfacecolor='w', markeredgecolor='k') - -ax.set_title("Anatomy of a figure", fontsize=20, verticalalignment='bottom') -ax.set_xlabel("X axis label") -ax.set_ylabel("Y axis label") - -ax.legend() - - -def circle(x, y, radius=0.15): - from matplotlib.patches import Circle - from matplotlib.patheffects import withStroke - circle = Circle((x, y), radius, clip_on=False, zorder=10, linewidth=1, - edgecolor='black', facecolor=(0, 0, 0, .0125), - path_effects=[withStroke(linewidth=5, foreground='w')]) - ax.add_artist(circle) - - -def text(x, y, text): - ax.text(x, y, text, backgroundcolor="white", - ha='center', va='top', weight='bold', color='blue') - - -# Minor tick -circle(0.50, -0.10) -text(0.50, -0.32, "Minor tick label") - -# Major tick -circle(-0.03, 4.00) -text(0.03, 3.80, "Major tick") - -# Minor tick -circle(0.00, 3.50) -text(0.00, 3.30, "Minor tick") - -# Major tick label -circle(-0.15, 3.00) -text(-0.15, 2.80, "Major tick label") - -# X Label -circle(1.80, -0.27) -text(1.80, -0.45, "X axis label") - -# Y Label -circle(-0.27, 1.80) -text(-0.27, 1.6, "Y axis label") - -# Title -circle(1.60, 4.13) -text(1.60, 3.93, "Title") - -# Blue plot -circle(1.75, 2.80) -text(1.75, 2.60, "Line\n(line plot)") - -# Red plot -circle(1.20, 0.60) -text(1.20, 0.40, "Line\n(line plot)") - -# Scatter plot -circle(3.20, 1.75) -text(3.20, 1.55, "Markers\n(scatter plot)") - -# Grid -circle(3.00, 3.00) -text(3.00, 2.80, "Grid") - -# Legend -circle(3.70, 3.80) -text(3.70, 3.60, "Legend") - -# Axes -circle(0.5, 0.5) -text(0.5, 0.3, "Axes") - -# Figure -circle(-0.3, 0.65) -text(-0.3, 0.45, "Figure") - -color = 'blue' -ax.annotate('Spines', xy=(4.0, 0.35), xytext=(3.3, 0.5), - weight='bold', color=color, - arrowprops=dict(arrowstyle='->', - connectionstyle="arc3", - color=color)) - -ax.annotate('', xy=(3.15, 0.0), xytext=(3.45, 0.45), - weight='bold', color=color, - arrowprops=dict(arrowstyle='->', - connectionstyle="arc3", - color=color)) - -ax.text(4.0, -0.4, "Made with http://matplotlib.org", - fontsize=10, ha="right", color='.5') - -plt.show() diff --git a/_downloads/e1028cf47fdabb042c3b1f183c06f207/placing_text_boxes.py b/_downloads/e1028cf47fdabb042c3b1f183c06f207/placing_text_boxes.py deleted file mode 120000 index bba344cb9fa..00000000000 --- a/_downloads/e1028cf47fdabb042c3b1f183c06f207/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/e1028cf47fdabb042c3b1f183c06f207/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/e10d177bc75e53c6d3576494c0072e3c/pie_features.py b/_downloads/e10d177bc75e53c6d3576494c0072e3c/pie_features.py deleted file mode 120000 index 192abf3027a..00000000000 --- a/_downloads/e10d177bc75e53c6d3576494c0072e3c/pie_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e10d177bc75e53c6d3576494c0072e3c/pie_features.py \ No newline at end of file diff --git a/_downloads/e10d91c58039c201a3fcf218a3658b87/advanced_hillshading.ipynb b/_downloads/e10d91c58039c201a3fcf218a3658b87/advanced_hillshading.ipynb deleted file mode 120000 index a2020adcacc..00000000000 --- a/_downloads/e10d91c58039c201a3fcf218a3658b87/advanced_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e10d91c58039c201a3fcf218a3658b87/advanced_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/e12a28418663abf4777433eda224ff3c/centered_ticklabels.ipynb b/_downloads/e12a28418663abf4777433eda224ff3c/centered_ticklabels.ipynb deleted file mode 120000 index 348f37c5f9b..00000000000 --- a/_downloads/e12a28418663abf4777433eda224ff3c/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e12a28418663abf4777433eda224ff3c/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/e12d0e39d5fe2b1c8628709e88ba1507/tripcolor_demo.ipynb b/_downloads/e12d0e39d5fe2b1c8628709e88ba1507/tripcolor_demo.ipynb deleted file mode 100644 index 906a3829d16..00000000000 --- a/_downloads/e12d0e39d5fe2b1c8628709e88ba1507/tripcolor_demo.ipynb +++ /dev/null @@ -1,162 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tripcolor Demo\n\n\nPseudocolor plots of unstructured triangular grids.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating a Triangulation without specifying the triangles results in the\nDelaunay triangulation of the points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# First create the x and y coordinates of the points.\nn_angles = 36\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\nz = (np.cos(radii) * np.cos(3 * angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "tripcolor plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_aspect('equal')\ntpc = ax1.tripcolor(triang, z, shading='flat')\nfig1.colorbar(tpc)\nax1.set_title('tripcolor of Delaunay triangulation, flat shading')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Illustrate Gouraud shading.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_aspect('equal')\ntpc = ax2.tripcolor(triang, z, shading='gouraud')\nfig2.colorbar(tpc)\nax2.set_title('tripcolor of Delaunay triangulation, gouraud shading')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify your own triangulation rather than perform a Delaunay\ntriangulation of the points, where each triangle is given by the indices of\nthe three points that make up the triangle, ordered in either a clockwise or\nanticlockwise manner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xy = np.asarray([\n [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890],\n [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898],\n [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919],\n [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949],\n [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959],\n [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965],\n [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980],\n [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996],\n [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021],\n [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005],\n [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987],\n [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968],\n [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926],\n [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905],\n [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886],\n [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879],\n [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872],\n [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933],\n [-0.077, 0.990], [-0.059, 0.993]])\nx, y = np.rad2deg(xy).T\n\ntriangles = np.asarray([\n [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64],\n [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63],\n [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68],\n [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7],\n [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9],\n [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12],\n [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71],\n [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71],\n [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19],\n [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24],\n [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28],\n [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45],\n [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40],\n [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40],\n [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38],\n [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]])\n\nxmid = x[triangles].mean(axis=1)\nymid = y[triangles].mean(axis=1)\nx0 = -5\ny0 = 52\nzfaces = np.exp(-0.01 * ((xmid - x0) * (xmid - x0) +\n (ymid - y0) * (ymid - y0)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Rather than create a Triangulation object, can simply pass x, y and triangles\narrays to tripcolor directly. It would be better to use a Triangulation\nobject if the same triangulation was to be used more than once to save\nduplicated calculations.\nCan specify one color value per face rather than one per point by using the\nfacecolors kwarg.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig3, ax3 = plt.subplots()\nax3.set_aspect('equal')\ntpc = ax3.tripcolor(x, y, triangles, facecolors=zfaces, edgecolors='k')\nfig3.colorbar(tpc)\nax3.set_title('tripcolor of user-specified triangulation')\nax3.set_xlabel('Longitude (degrees)')\nax3.set_ylabel('Latitude (degrees)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tripcolor\nmatplotlib.pyplot.tripcolor\nmatplotlib.tri\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e12f8c4e9db6a4028979b6a069f4e93b/simple_anim.py b/_downloads/e12f8c4e9db6a4028979b6a069f4e93b/simple_anim.py deleted file mode 120000 index 8df872b6d18..00000000000 --- a/_downloads/e12f8c4e9db6a4028979b6a069f4e93b/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e12f8c4e9db6a4028979b6a069f4e93b/simple_anim.py \ No newline at end of file diff --git a/_downloads/e13338757e7efbb3d79fa2559628eb9e/axis_direction_demo_step02.py b/_downloads/e13338757e7efbb3d79fa2559628eb9e/axis_direction_demo_step02.py deleted file mode 120000 index dd206d4f3b1..00000000000 --- a/_downloads/e13338757e7efbb3d79fa2559628eb9e/axis_direction_demo_step02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e13338757e7efbb3d79fa2559628eb9e/axis_direction_demo_step02.py \ No newline at end of file diff --git a/_downloads/e13d85c741869e46fc38b3d93b4eff22/legend_guide.ipynb b/_downloads/e13d85c741869e46fc38b3d93b4eff22/legend_guide.ipynb deleted file mode 120000 index 3edbcfbd27d..00000000000 --- a/_downloads/e13d85c741869e46fc38b3d93b4eff22/legend_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e13d85c741869e46fc38b3d93b4eff22/legend_guide.ipynb \ No newline at end of file diff --git a/_downloads/e14ab5a33ba3f97dd9fd03e78f38006f/demo_curvelinear_grid2.ipynb b/_downloads/e14ab5a33ba3f97dd9fd03e78f38006f/demo_curvelinear_grid2.ipynb deleted file mode 120000 index 43bb1b11738..00000000000 --- a/_downloads/e14ab5a33ba3f97dd9fd03e78f38006f/demo_curvelinear_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e14ab5a33ba3f97dd9fd03e78f38006f/demo_curvelinear_grid2.ipynb \ No newline at end of file diff --git a/_downloads/e1522aa187c04e1b51833748171bddeb/embedding_in_wx3_sgskip.py b/_downloads/e1522aa187c04e1b51833748171bddeb/embedding_in_wx3_sgskip.py deleted file mode 120000 index 079de24fb1e..00000000000 --- a/_downloads/e1522aa187c04e1b51833748171bddeb/embedding_in_wx3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e1522aa187c04e1b51833748171bddeb/embedding_in_wx3_sgskip.py \ No newline at end of file diff --git a/_downloads/e1525b9ee22e6dd650f5032c4619034b/simple_legend02.ipynb b/_downloads/e1525b9ee22e6dd650f5032c4619034b/simple_legend02.ipynb deleted file mode 120000 index 00e384ec06c..00000000000 --- a/_downloads/e1525b9ee22e6dd650f5032c4619034b/simple_legend02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e1525b9ee22e6dd650f5032c4619034b/simple_legend02.ipynb \ No newline at end of file diff --git a/_downloads/e15268a5a97094ab53ecf46eee22cf9f/connectionstyle_demo.ipynb b/_downloads/e15268a5a97094ab53ecf46eee22cf9f/connectionstyle_demo.ipynb deleted file mode 120000 index de2773d3e1f..00000000000 --- a/_downloads/e15268a5a97094ab53ecf46eee22cf9f/connectionstyle_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e15268a5a97094ab53ecf46eee22cf9f/connectionstyle_demo.ipynb \ No newline at end of file diff --git a/_downloads/e153f85f0c57cbad2825e42b336ffc03/3d_bars.ipynb b/_downloads/e153f85f0c57cbad2825e42b336ffc03/3d_bars.ipynb deleted file mode 120000 index 95fa59ded3f..00000000000 --- a/_downloads/e153f85f0c57cbad2825e42b336ffc03/3d_bars.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e153f85f0c57cbad2825e42b336ffc03/3d_bars.ipynb \ No newline at end of file diff --git a/_downloads/e15ed3ea85ecd8a9a8f3eb10ae7212eb/mpl_with_glade3_sgskip.ipynb b/_downloads/e15ed3ea85ecd8a9a8f3eb10ae7212eb/mpl_with_glade3_sgskip.ipynb deleted file mode 120000 index f823d4b5878..00000000000 --- a/_downloads/e15ed3ea85ecd8a9a8f3eb10ae7212eb/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e15ed3ea85ecd8a9a8f3eb10ae7212eb/mpl_with_glade3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/e16324eb66b2244b53f479a500fa272c/affine_image.ipynb b/_downloads/e16324eb66b2244b53f479a500fa272c/affine_image.ipynb deleted file mode 120000 index 92bcc97a201..00000000000 --- a/_downloads/e16324eb66b2244b53f479a500fa272c/affine_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e16324eb66b2244b53f479a500fa272c/affine_image.ipynb \ No newline at end of file diff --git a/_downloads/e16ec179bf376736d5c18191aba41cbf/gallery_jupyter.zip b/_downloads/e16ec179bf376736d5c18191aba41cbf/gallery_jupyter.zip deleted file mode 100644 index 9cf1e15f15e..00000000000 Binary files a/_downloads/e16ec179bf376736d5c18191aba41cbf/gallery_jupyter.zip and /dev/null differ diff --git a/_downloads/e17388af9e275cd91afa99d2fe645152/bars3d.py b/_downloads/e17388af9e275cd91afa99d2fe645152/bars3d.py deleted file mode 120000 index be7b93f872f..00000000000 --- a/_downloads/e17388af9e275cd91afa99d2fe645152/bars3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e17388af9e275cd91afa99d2fe645152/bars3d.py \ No newline at end of file diff --git a/_downloads/e174d486ffd4e200ffb647865f434e4a/demo_axes_grid2.ipynb b/_downloads/e174d486ffd4e200ffb647865f434e4a/demo_axes_grid2.ipynb deleted file mode 120000 index 2b033b2f033..00000000000 --- a/_downloads/e174d486ffd4e200ffb647865f434e4a/demo_axes_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e174d486ffd4e200ffb647865f434e4a/demo_axes_grid2.ipynb \ No newline at end of file diff --git a/_downloads/e1963abe5606805cce036c31c4a23a74/contour3d.py b/_downloads/e1963abe5606805cce036c31c4a23a74/contour3d.py deleted file mode 120000 index c0179d8c77b..00000000000 --- a/_downloads/e1963abe5606805cce036c31c4a23a74/contour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e1963abe5606805cce036c31c4a23a74/contour3d.py \ No newline at end of file diff --git a/_downloads/e198e86ef00a23571ea6af55fcf45ce9/inset_locator_demo2.ipynb b/_downloads/e198e86ef00a23571ea6af55fcf45ce9/inset_locator_demo2.ipynb deleted file mode 120000 index 6cdabc19cb9..00000000000 --- a/_downloads/e198e86ef00a23571ea6af55fcf45ce9/inset_locator_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e198e86ef00a23571ea6af55fcf45ce9/inset_locator_demo2.ipynb \ No newline at end of file diff --git a/_downloads/e1a9efcd0a9e889499abacec5670fae2/image_annotated_heatmap.ipynb b/_downloads/e1a9efcd0a9e889499abacec5670fae2/image_annotated_heatmap.ipynb deleted file mode 120000 index d74f73b69e0..00000000000 --- a/_downloads/e1a9efcd0a9e889499abacec5670fae2/image_annotated_heatmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e1a9efcd0a9e889499abacec5670fae2/image_annotated_heatmap.ipynb \ No newline at end of file diff --git a/_downloads/e1afd595b23b9d9e9ea0565ed73bd69e/colorbar_tick_labelling_demo.ipynb b/_downloads/e1afd595b23b9d9e9ea0565ed73bd69e/colorbar_tick_labelling_demo.ipynb deleted file mode 120000 index 8f7fadc1585..00000000000 --- a/_downloads/e1afd595b23b9d9e9ea0565ed73bd69e/colorbar_tick_labelling_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/e1afd595b23b9d9e9ea0565ed73bd69e/colorbar_tick_labelling_demo.ipynb \ No newline at end of file diff --git a/_downloads/e1b261c5336141f04e6e4ddea1005cba/log_demo.ipynb b/_downloads/e1b261c5336141f04e6e4ddea1005cba/log_demo.ipynb deleted file mode 100644 index c42fa1e6bba..00000000000 --- a/_downloads/e1b261c5336141f04e6e4ddea1005cba/log_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Log Demo\n\n\nExamples of plots with logarithmic axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Data for plotting\nt = np.arange(0.01, 20.0, 0.01)\n\n# Create figure\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)\n\n# log y axis\nax1.semilogy(t, np.exp(-t / 5.0))\nax1.set(title='semilogy')\nax1.grid()\n\n# log x axis\nax2.semilogx(t, np.sin(2 * np.pi * t))\nax2.set(title='semilogx')\nax2.grid()\n\n# log x and y axis\nax3.loglog(t, 20 * np.exp(-t / 10.0), basex=2)\nax3.set(title='loglog base 2 on x')\nax3.grid()\n\n# With errorbars: clip non-positive values\n# Use new data for plotting\nx = 10.0**np.linspace(0.0, 2.0, 20)\ny = x**2.0\n\nax4.set_xscale(\"log\", nonposx='clip')\nax4.set_yscale(\"log\", nonposy='clip')\nax4.set(title='Errorbars go negative')\nax4.errorbar(x, y, xerr=0.1 * x, yerr=5.0 + 0.75 * y)\n# ylim must be set after errorbar to allow errorbar to autoscale limits\nax4.set_ylim(bottom=0.1)\n\nfig.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e1b3f25ce980802441c8fa7af14b8956/axis_direction_demo_step03.py b/_downloads/e1b3f25ce980802441c8fa7af14b8956/axis_direction_demo_step03.py deleted file mode 100644 index 6b6d6a28746..00000000000 --- a/_downloads/e1b3f25ce980802441c8fa7af14b8956/axis_direction_demo_step03.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -========================== -Axis Direction Demo Step03 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - #ax.axis[:].toggle(all=False) - #ax.axis[:].line.set_visible(False) - ax.axis[:].set_visible(False) - - ax.axis["x"] = ax.new_floating_axis(1, 0.5) - ax.axis["x"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(6, 2.5)) -fig.subplots_adjust(bottom=0.2, top=0.8) - -ax1 = setup_axes(fig, "121") -ax1.axis["x"].label.set_text("Label") -ax1.axis["x"].toggle(ticklabels=False) -ax1.axis["x"].set_axislabel_direction("+") -ax1.annotate("label direction=$+$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -ax2 = setup_axes(fig, "122") -ax2.axis["x"].label.set_text("Label") -ax2.axis["x"].toggle(ticklabels=False) -ax2.axis["x"].set_axislabel_direction("-") -ax2.annotate("label direction=$-$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -plt.show() diff --git a/_downloads/e1b7370f51717b6d7a0f3bd895049cb4/customized_violin.py b/_downloads/e1b7370f51717b6d7a0f3bd895049cb4/customized_violin.py deleted file mode 120000 index 212601aff73..00000000000 --- a/_downloads/e1b7370f51717b6d7a0f3bd895049cb4/customized_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e1b7370f51717b6d7a0f3bd895049cb4/customized_violin.py \ No newline at end of file diff --git a/_downloads/e1b789133c5456501baa017df0fb9795/named_colors.ipynb b/_downloads/e1b789133c5456501baa017df0fb9795/named_colors.ipynb deleted file mode 120000 index ae9f9ed1ccf..00000000000 --- a/_downloads/e1b789133c5456501baa017df0fb9795/named_colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e1b789133c5456501baa017df0fb9795/named_colors.ipynb \ No newline at end of file diff --git a/_downloads/e1bd6935414c57c50cb0ac9f595e0a8a/contour3d_3.py b/_downloads/e1bd6935414c57c50cb0ac9f595e0a8a/contour3d_3.py deleted file mode 100644 index 42f26f46dd1..00000000000 --- a/_downloads/e1bd6935414c57c50cb0ac9f595e0a8a/contour3d_3.py +++ /dev/null @@ -1,38 +0,0 @@ -''' -======================================== -Projecting contour profiles onto a graph -======================================== - -Demonstrates displaying a 3D surface while also projecting contour 'profiles' -onto the 'walls' of the graph. - -See contourf3d_demo2 for the filled version. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot the 3D surface -ax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3) - -# Plot projections of the contours for each dimension. By choosing offsets -# that match the appropriate axes limits, the projected contours will sit on -# the 'walls' of the graph -cset = ax.contour(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm) -cset = ax.contour(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm) -cset = ax.contour(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm) - -ax.set_xlim(-40, 40) -ax.set_ylim(-40, 40) -ax.set_zlim(-100, 100) - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -plt.show() diff --git a/_downloads/e1cb843d071418e06a1039c42a3c65e6/axis_direction_demo_step01.ipynb b/_downloads/e1cb843d071418e06a1039c42a3c65e6/axis_direction_demo_step01.ipynb deleted file mode 120000 index c02f5ea13f2..00000000000 --- a/_downloads/e1cb843d071418e06a1039c42a3c65e6/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e1cb843d071418e06a1039c42a3c65e6/axis_direction_demo_step01.ipynb \ No newline at end of file diff --git a/_downloads/e1cd2bd053b14f58ab6b3b8b0976ec08/parasite_simple.py b/_downloads/e1cd2bd053b14f58ab6b3b8b0976ec08/parasite_simple.py deleted file mode 100644 index c76f70ee9d7..00000000000 --- a/_downloads/e1cd2bd053b14f58ab6b3b8b0976ec08/parasite_simple.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -=============== -Parasite Simple -=============== - -""" -from mpl_toolkits.axes_grid1 import host_subplot -import matplotlib.pyplot as plt - -host = host_subplot(111) - -par = host.twinx() - -host.set_xlabel("Distance") -host.set_ylabel("Density") -par.set_ylabel("Temperature") - -p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density") -p2, = par.plot([0, 1, 2], [0, 3, 2], label="Temperature") - -leg = plt.legend() - -host.yaxis.get_label().set_color(p1.get_color()) -leg.texts[0].set_color(p1.get_color()) - -par.yaxis.get_label().set_color(p2.get_color()) -leg.texts[1].set_color(p2.get_color()) - -plt.show() diff --git a/_downloads/e1d1b96c8d57ee3ce57a35f14b8bb6da/figimage_demo.ipynb b/_downloads/e1d1b96c8d57ee3ce57a35f14b8bb6da/figimage_demo.ipynb deleted file mode 120000 index f85eeb1c24a..00000000000 --- a/_downloads/e1d1b96c8d57ee3ce57a35f14b8bb6da/figimage_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e1d1b96c8d57ee3ce57a35f14b8bb6da/figimage_demo.ipynb \ No newline at end of file diff --git a/_downloads/e1e038535a90a9495309cbcca0c446dc/colors.ipynb b/_downloads/e1e038535a90a9495309cbcca0c446dc/colors.ipynb deleted file mode 120000 index e828cf9eb61..00000000000 --- a/_downloads/e1e038535a90a9495309cbcca0c446dc/colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e1e038535a90a9495309cbcca0c446dc/colors.ipynb \ No newline at end of file diff --git a/_downloads/e1e59f620922db39649502f6c7980d20/multi_image.py b/_downloads/e1e59f620922db39649502f6c7980d20/multi_image.py deleted file mode 120000 index f06f42b50fc..00000000000 --- a/_downloads/e1e59f620922db39649502f6c7980d20/multi_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e1e59f620922db39649502f6c7980d20/multi_image.py \ No newline at end of file diff --git a/_downloads/e1f27538055a2128384d12d8c9151287/axis_direction_demo_step04.py b/_downloads/e1f27538055a2128384d12d8c9151287/axis_direction_demo_step04.py deleted file mode 120000 index 5157a4ea6bf..00000000000 --- a/_downloads/e1f27538055a2128384d12d8c9151287/axis_direction_demo_step04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e1f27538055a2128384d12d8c9151287/axis_direction_demo_step04.py \ No newline at end of file diff --git a/_downloads/e1f718112f0c134bce33f04d84505add/pick_event_demo2.py b/_downloads/e1f718112f0c134bce33f04d84505add/pick_event_demo2.py deleted file mode 120000 index baef3a6b47c..00000000000 --- a/_downloads/e1f718112f0c134bce33f04d84505add/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e1f718112f0c134bce33f04d84505add/pick_event_demo2.py \ No newline at end of file diff --git a/_downloads/e1f83cc720b9f460194271afb2f59bb2/polys3d.py b/_downloads/e1f83cc720b9f460194271afb2f59bb2/polys3d.py deleted file mode 120000 index fb335c30ac2..00000000000 --- a/_downloads/e1f83cc720b9f460194271afb2f59bb2/polys3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e1f83cc720b9f460194271afb2f59bb2/polys3d.py \ No newline at end of file diff --git a/_downloads/e206585cb204581eef9322d8b2b4cc03/mixed_subplots.ipynb b/_downloads/e206585cb204581eef9322d8b2b4cc03/mixed_subplots.ipynb deleted file mode 120000 index db205af180a..00000000000 --- a/_downloads/e206585cb204581eef9322d8b2b4cc03/mixed_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e206585cb204581eef9322d8b2b4cc03/mixed_subplots.ipynb \ No newline at end of file diff --git a/_downloads/e206e642ddd604ff7f24217788e666d3/demo_bboximage.py b/_downloads/e206e642ddd604ff7f24217788e666d3/demo_bboximage.py deleted file mode 100644 index 7ea364af4f5..00000000000 --- a/_downloads/e206e642ddd604ff7f24217788e666d3/demo_bboximage.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -============== -BboxImage Demo -============== - -A :class:`~matplotlib.image.BboxImage` can be used to position -an image according to a bounding box. This demo shows how to -show an image inside a `text.Text`'s bounding box as well as -how to manually create a bounding box for the image. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.image import BboxImage -from matplotlib.transforms import Bbox, TransformedBbox - - -fig, (ax1, ax2) = plt.subplots(ncols=2) - -# ---------------------------- -# Create a BboxImage with Text -# ---------------------------- -txt = ax1.text(0.5, 0.5, "test", size=30, ha="center", color="w") -kwargs = dict() - -bbox_image = BboxImage(txt.get_window_extent, - norm=None, - origin=None, - clip_on=False, - **kwargs - ) -a = np.arange(256).reshape(1, 256)/256. -bbox_image.set_data(a) -ax1.add_artist(bbox_image) - -# ------------------------------------ -# Create a BboxImage for each colormap -# ------------------------------------ -a = np.linspace(0, 1, 256).reshape(1, -1) -a = np.vstack((a, a)) - -# List of all colormaps; skip reversed colormaps. -maps = sorted(m for m in plt.cm.cmap_d if not m.endswith("_r")) - -ncol = 2 -nrow = len(maps)//ncol + 1 - -xpad_fraction = 0.3 -dx = 1./(ncol + xpad_fraction*(ncol - 1)) - -ypad_fraction = 0.3 -dy = 1./(nrow + ypad_fraction*(nrow - 1)) - -for i, m in enumerate(maps): - ix, iy = divmod(i, nrow) - - bbox0 = Bbox.from_bounds(ix*dx*(1 + xpad_fraction), - 1. - iy*dy*(1 + ypad_fraction) - dy, - dx, dy) - bbox = TransformedBbox(bbox0, ax2.transAxes) - - bbox_image = BboxImage(bbox, - cmap=plt.get_cmap(m), - norm=None, - origin=None, - **kwargs - ) - - bbox_image.set_data(a) - ax2.add_artist(bbox_image) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.image.BboxImage -matplotlib.transforms.Bbox -matplotlib.transforms.TransformedBbox -matplotlib.text.Text diff --git a/_downloads/e2088409c252e0df833d345795ea70e7/toolmanager_sgskip.py b/_downloads/e2088409c252e0df833d345795ea70e7/toolmanager_sgskip.py deleted file mode 120000 index e2f1dc621b8..00000000000 --- a/_downloads/e2088409c252e0df833d345795ea70e7/toolmanager_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e2088409c252e0df833d345795ea70e7/toolmanager_sgskip.py \ No newline at end of file diff --git a/_downloads/e2174f7bdc06ad628a756f14967811ee/color_cycle.ipynb b/_downloads/e2174f7bdc06ad628a756f14967811ee/color_cycle.ipynb deleted file mode 100644 index 84b4a1815fb..00000000000 --- a/_downloads/e2174f7bdc06ad628a756f14967811ee/color_cycle.ipynb +++ /dev/null @@ -1,133 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Styling with cycler\n\n\nDemo of custom property-cycle settings to control colors and other style\nproperties for multi-line plots.\n\n

Note

More complete documentation of the ``cycler`` API can be found\n `here `_.

\n\nThis example demonstrates two different APIs:\n\n1. Setting the default rc parameter specifying the property cycle.\n This affects all subsequent axes (but not axes already created).\n2. Setting the property cycle for a single pair of axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from cycler import cycler\nimport numpy as np\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First we'll generate some sample data, in this case, four offset sine\ncurves.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 2 * np.pi, 50)\noffsets = np.linspace(0, 2 * np.pi, 4, endpoint=False)\nyy = np.transpose([np.sin(x + phi) for phi in offsets])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now ``yy`` has shape\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(yy.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "So ``yy[:, i]`` will give you the ``i``-th offset sine curve. Let's set the\ndefault ``prop_cycle`` using :func:`matplotlib.pyplot.rc`. We'll combine a\ncolor cycler and a linestyle cycler by adding (``+``) two ``cycler``'s\ntogether. See the bottom of this tutorial for more information about\ncombining different cyclers.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "default_cycler = (cycler(color=['r', 'g', 'b', 'y']) +\n cycler(linestyle=['-', '--', ':', '-.']))\n\nplt.rc('lines', linewidth=4)\nplt.rc('axes', prop_cycle=default_cycler)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we'll generate a figure with two axes, one on top of the other. On the\nfirst axis, we'll plot with the default cycler. On the second axis, we'll\nset the ``prop_cycle`` using :func:`matplotlib.axes.Axes.set_prop_cycle`,\nwhich will only set the ``prop_cycle`` for this :mod:`matplotlib.axes.Axes`\ninstance. We'll use a second ``cycler`` that combines a color cycler and a\nlinewidth cycler.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "custom_cycler = (cycler(color=['c', 'm', 'y', 'k']) +\n cycler(lw=[1, 2, 3, 4]))\n\nfig, (ax0, ax1) = plt.subplots(nrows=2)\nax0.plot(yy)\nax0.set_title('Set default color cycle to rgby')\nax1.set_prop_cycle(custom_cycler)\nax1.plot(yy)\nax1.set_title('Set axes color cycle to cmyk')\n\n# Add a bit more space between the two plots.\nfig.subplots_adjust(hspace=0.3)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Setting ``prop_cycle`` in the ``matplotlibrc`` file or style files\n------------------------------------------------------------------\n\nRemember, if you want to set a custom cycler in your\n``.matplotlibrc`` file or a style file (``style.mplstyle``), you can set the\n``axes.prop_cycle`` property:\n\n.. code-block:: python\n\n axes.prop_cycle : cycler(color='bgrcmyk')\n\nCycling through multiple properties\n-----------------------------------\n\nYou can add cyclers:\n\n.. code-block:: python\n\n from cycler import cycler\n cc = (cycler(color=list('rgb')) +\n cycler(linestyle=['-', '--', '-.']))\n for d in cc:\n print(d)\n\nResults in:\n\n.. code-block:: python\n\n {'color': 'r', 'linestyle': '-'}\n {'color': 'g', 'linestyle': '--'}\n {'color': 'b', 'linestyle': '-.'}\n\n\nYou can multiply cyclers:\n\n.. code-block:: python\n\n from cycler import cycler\n cc = (cycler(color=list('rgb')) *\n cycler(linestyle=['-', '--', '-.']))\n for d in cc:\n print(d)\n\nResults in:\n\n.. code-block:: python\n\n {'color': 'r', 'linestyle': '-'}\n {'color': 'r', 'linestyle': '--'}\n {'color': 'r', 'linestyle': '-.'}\n {'color': 'g', 'linestyle': '-'}\n {'color': 'g', 'linestyle': '--'}\n {'color': 'g', 'linestyle': '-.'}\n {'color': 'b', 'linestyle': '-'}\n {'color': 'b', 'linestyle': '--'}\n {'color': 'b', 'linestyle': '-.'}\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e2258c40002ea2c73899d212da24e825/embedding_in_wx5_sgskip.ipynb b/_downloads/e2258c40002ea2c73899d212da24e825/embedding_in_wx5_sgskip.ipynb deleted file mode 100644 index 1b884ea3d90..00000000000 --- a/_downloads/e2258c40002ea2c73899d212da24e825/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================\nEmbedding in wx #5\n==================\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import wx\nimport wx.lib.agw.aui as aui\nimport wx.lib.mixins.inspection as wit\n\nimport matplotlib as mpl\nfrom matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas\nfrom matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar\n\n\nclass Plot(wx.Panel):\n def __init__(self, parent, id=-1, dpi=None, **kwargs):\n wx.Panel.__init__(self, parent, id=id, **kwargs)\n self.figure = mpl.figure.Figure(dpi=dpi, figsize=(2, 2))\n self.canvas = FigureCanvas(self, -1, self.figure)\n self.toolbar = NavigationToolbar(self.canvas)\n self.toolbar.Realize()\n\n sizer = wx.BoxSizer(wx.VERTICAL)\n sizer.Add(self.canvas, 1, wx.EXPAND)\n sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND)\n self.SetSizer(sizer)\n\n\nclass PlotNotebook(wx.Panel):\n def __init__(self, parent, id=-1):\n wx.Panel.__init__(self, parent, id=id)\n self.nb = aui.AuiNotebook(self)\n sizer = wx.BoxSizer()\n sizer.Add(self.nb, 1, wx.EXPAND)\n self.SetSizer(sizer)\n\n def add(self, name=\"plot\"):\n page = Plot(self.nb)\n self.nb.AddPage(page, name)\n return page.figure\n\n\ndef demo():\n # alternatively you could use\n #app = wx.App()\n # InspectableApp is a great debug tool, see:\n # http://wiki.wxpython.org/Widget%20Inspection%20Tool\n app = wit.InspectableApp()\n frame = wx.Frame(None, -1, 'Plotter')\n plotter = PlotNotebook(frame)\n axes1 = plotter.add('figure 1').gca()\n axes1.plot([1, 2, 3], [2, 1, 4])\n axes2 = plotter.add('figure 2').gca()\n axes2.plot([1, 2, 3, 4, 5], [2, 1, 4, 2, 3])\n frame.Show()\n app.MainLoop()\n\nif __name__ == \"__main__\":\n demo()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e23d2261b1d9989ad36138368c758b16/colormap_reference.ipynb b/_downloads/e23d2261b1d9989ad36138368c758b16/colormap_reference.ipynb deleted file mode 120000 index dcf1576fbfe..00000000000 --- a/_downloads/e23d2261b1d9989ad36138368c758b16/colormap_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e23d2261b1d9989ad36138368c758b16/colormap_reference.ipynb \ No newline at end of file diff --git a/_downloads/e23f6604205aeda9740b796dc08b6642/demo_gridspec03.ipynb b/_downloads/e23f6604205aeda9740b796dc08b6642/demo_gridspec03.ipynb deleted file mode 120000 index edfdae57ae3..00000000000 --- a/_downloads/e23f6604205aeda9740b796dc08b6642/demo_gridspec03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e23f6604205aeda9740b796dc08b6642/demo_gridspec03.ipynb \ No newline at end of file diff --git a/_downloads/e249c53d173031c70c18c218b25982fa/surface3d_radial.py b/_downloads/e249c53d173031c70c18c218b25982fa/surface3d_radial.py deleted file mode 120000 index 3ba418a89d3..00000000000 --- a/_downloads/e249c53d173031c70c18c218b25982fa/surface3d_radial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e249c53d173031c70c18c218b25982fa/surface3d_radial.py \ No newline at end of file diff --git a/_downloads/e24bf11453a4b788b23c3beb137d7b53/multicursor.ipynb b/_downloads/e24bf11453a4b788b23c3beb137d7b53/multicursor.ipynb deleted file mode 100644 index 193a85c15bf..00000000000 --- a/_downloads/e24bf11453a4b788b23c3beb137d7b53/multicursor.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multicursor\n\n\nShowing a cursor on multiple plots simultaneously.\n\nThis example generates two subplots and on hovering the cursor over data in one\nsubplot, the values of that datapoint are shown in both respectively.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import MultiCursor\n\nt = np.arange(0.0, 2.0, 0.01)\ns1 = np.sin(2*np.pi*t)\ns2 = np.sin(4*np.pi*t)\n\nfig, (ax1, ax2) = plt.subplots(2, sharex=True)\nax1.plot(t, s1)\nax2.plot(t, s2)\n\nmulti = MultiCursor(fig.canvas, (ax1, ax2), color='r', lw=1)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e24e3e0db408a967fe1592ecb628b5d1/axhspan_demo.py b/_downloads/e24e3e0db408a967fe1592ecb628b5d1/axhspan_demo.py deleted file mode 120000 index 8f0e314473d..00000000000 --- a/_downloads/e24e3e0db408a967fe1592ecb628b5d1/axhspan_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e24e3e0db408a967fe1592ecb628b5d1/axhspan_demo.py \ No newline at end of file diff --git a/_downloads/e25201468cdae97ffe6132d6f925df98/text_props.py b/_downloads/e25201468cdae97ffe6132d6f925df98/text_props.py deleted file mode 120000 index d9580015fed..00000000000 --- a/_downloads/e25201468cdae97ffe6132d6f925df98/text_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e25201468cdae97ffe6132d6f925df98/text_props.py \ No newline at end of file diff --git a/_downloads/e2591dfc346166bc9efd64df6fa5fbd0/common_date_problems.py b/_downloads/e2591dfc346166bc9efd64df6fa5fbd0/common_date_problems.py deleted file mode 120000 index 7d1e0425a29..00000000000 --- a/_downloads/e2591dfc346166bc9efd64df6fa5fbd0/common_date_problems.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e2591dfc346166bc9efd64df6fa5fbd0/common_date_problems.py \ No newline at end of file diff --git a/_downloads/e25ac61c0a262403df0edb58b53ab384/voxels_rgb.py b/_downloads/e25ac61c0a262403df0edb58b53ab384/voxels_rgb.py deleted file mode 100644 index 5b1a87e9551..00000000000 --- a/_downloads/e25ac61c0a262403df0edb58b53ab384/voxels_rgb.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -========================================== -3D voxel / volumetric plot with rgb colors -========================================== - -Demonstrates using `Axes3D.voxels` to visualize parts of a color space. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def midpoints(x): - sl = () - for i in range(x.ndim): - x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0 - sl += np.index_exp[:] - return x - -# prepare some coordinates, and attach rgb values to each -r, g, b = np.indices((17, 17, 17)) / 16.0 -rc = midpoints(r) -gc = midpoints(g) -bc = midpoints(b) - -# define a sphere about [0.5, 0.5, 0.5] -sphere = (rc - 0.5)**2 + (gc - 0.5)**2 + (bc - 0.5)**2 < 0.5**2 - -# combine the color components -colors = np.zeros(sphere.shape + (3,)) -colors[..., 0] = rc -colors[..., 1] = gc -colors[..., 2] = bc - -# and plot everything -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(r, g, b, sphere, - facecolors=colors, - edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter - linewidth=0.5) -ax.set(xlabel='r', ylabel='g', zlabel='b') - -plt.show() diff --git a/_downloads/e26637f8e4761b22c61bac4e4884f443/demo_gridspec03.py b/_downloads/e26637f8e4761b22c61bac4e4884f443/demo_gridspec03.py deleted file mode 120000 index c2decd04a95..00000000000 --- a/_downloads/e26637f8e4761b22c61bac4e4884f443/demo_gridspec03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e26637f8e4761b22c61bac4e4884f443/demo_gridspec03.py \ No newline at end of file diff --git a/_downloads/e282812c8b9fe491d8486fb7f183479d/patheffect_demo.py b/_downloads/e282812c8b9fe491d8486fb7f183479d/patheffect_demo.py deleted file mode 120000 index 734c476728f..00000000000 --- a/_downloads/e282812c8b9fe491d8486fb7f183479d/patheffect_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e282812c8b9fe491d8486fb7f183479d/patheffect_demo.py \ No newline at end of file diff --git a/_downloads/e28911f34cb4f26ddcbb342d86db098c/engineering_formatter.py b/_downloads/e28911f34cb4f26ddcbb342d86db098c/engineering_formatter.py deleted file mode 120000 index a82c462a062..00000000000 --- a/_downloads/e28911f34cb4f26ddcbb342d86db098c/engineering_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e28911f34cb4f26ddcbb342d86db098c/engineering_formatter.py \ No newline at end of file diff --git a/_downloads/e292a7971b80ae88ac65e1b747e468fb/text_props.ipynb b/_downloads/e292a7971b80ae88ac65e1b747e468fb/text_props.ipynb deleted file mode 120000 index d08c171cd76..00000000000 --- a/_downloads/e292a7971b80ae88ac65e1b747e468fb/text_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e292a7971b80ae88ac65e1b747e468fb/text_props.ipynb \ No newline at end of file diff --git a/_downloads/e29586626ddd310a651e9d18a24b2803/tricontour_demo.ipynb b/_downloads/e29586626ddd310a651e9d18a24b2803/tricontour_demo.ipynb deleted file mode 120000 index b733b870f4f..00000000000 --- a/_downloads/e29586626ddd310a651e9d18a24b2803/tricontour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e29586626ddd310a651e9d18a24b2803/tricontour_demo.ipynb \ No newline at end of file diff --git a/_downloads/e2969b7c57d954c296d240ddf53ebfc3/barcode_demo.ipynb b/_downloads/e2969b7c57d954c296d240ddf53ebfc3/barcode_demo.ipynb deleted file mode 120000 index 1ee81819a0d..00000000000 --- a/_downloads/e2969b7c57d954c296d240ddf53ebfc3/barcode_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e2969b7c57d954c296d240ddf53ebfc3/barcode_demo.ipynb \ No newline at end of file diff --git a/_downloads/e296dca8c98a6af33f74bfd1dd05498b/scatter_star_poly.py b/_downloads/e296dca8c98a6af33f74bfd1dd05498b/scatter_star_poly.py deleted file mode 120000 index 407af072a0c..00000000000 --- a/_downloads/e296dca8c98a6af33f74bfd1dd05498b/scatter_star_poly.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e296dca8c98a6af33f74bfd1dd05498b/scatter_star_poly.py \ No newline at end of file diff --git a/_downloads/e296fc40ba715311fdebebae0ecf1c71/scatter_with_legend.py b/_downloads/e296fc40ba715311fdebebae0ecf1c71/scatter_with_legend.py deleted file mode 120000 index 2466f0fd8ab..00000000000 --- a/_downloads/e296fc40ba715311fdebebae0ecf1c71/scatter_with_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e296fc40ba715311fdebebae0ecf1c71/scatter_with_legend.py \ No newline at end of file diff --git a/_downloads/e29764a7164e5936cd63002772c58d4d/annotate_simple_coord01.ipynb b/_downloads/e29764a7164e5936cd63002772c58d4d/annotate_simple_coord01.ipynb deleted file mode 120000 index 287acc13659..00000000000 --- a/_downloads/e29764a7164e5936cd63002772c58d4d/annotate_simple_coord01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e29764a7164e5936cd63002772c58d4d/annotate_simple_coord01.ipynb \ No newline at end of file diff --git a/_downloads/e29bc4787865bb2263f3386052d2c646/keypress_demo.py b/_downloads/e29bc4787865bb2263f3386052d2c646/keypress_demo.py deleted file mode 120000 index 118f9d93fdd..00000000000 --- a/_downloads/e29bc4787865bb2263f3386052d2c646/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e29bc4787865bb2263f3386052d2c646/keypress_demo.py \ No newline at end of file diff --git a/_downloads/e29deef9b0546c8b5558462757e2cbaa/share_axis_lims_views.py b/_downloads/e29deef9b0546c8b5558462757e2cbaa/share_axis_lims_views.py deleted file mode 120000 index 4d2b574ce51..00000000000 --- a/_downloads/e29deef9b0546c8b5558462757e2cbaa/share_axis_lims_views.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e29deef9b0546c8b5558462757e2cbaa/share_axis_lims_views.py \ No newline at end of file diff --git a/_downloads/e2ac394c3c01c672ed5e8e2955904c7d/contour_label_demo.ipynb b/_downloads/e2ac394c3c01c672ed5e8e2955904c7d/contour_label_demo.ipynb deleted file mode 100644 index e0ba57959fc..00000000000 --- a/_downloads/e2ac394c3c01c672ed5e8e2955904c7d/contour_label_demo.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour Label Demo\n\n\nIllustrate some of the more advanced things that one can do with\ncontour labels.\n\nSee also the :doc:`contour demo example\n`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport numpy as np\nimport matplotlib.ticker as ticker\nimport matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define our surface\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "delta = 0.025\nx = np.arange(-3.0, 3.0, delta)\ny = np.arange(-2.0, 2.0, delta)\nX, Y = np.meshgrid(x, y)\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Make contour labels using creative float classes\nFollows suggestion of Manuel Metz\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Define a class that forces representation of float to look a certain way\n# This remove trailing zero so '1.0' becomes '1'\n\n\nclass nf(float):\n def __repr__(self):\n s = f'{self:.1f}'\n return f'{self:.0f}' if s[-1] == '0' else s\n\n\n# Basic contour plot\nfig, ax = plt.subplots()\nCS = ax.contour(X, Y, Z)\n\n# Recast levels to new class\nCS.levels = [nf(val) for val in CS.levels]\n\n# Label levels with specially formatted floats\nif plt.rcParams[\"text.usetex\"]:\n fmt = r'%r \\%%'\nelse:\n fmt = '%r %%'\n\nax.clabel(CS, CS.levels, inline=True, fmt=fmt, fontsize=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Label contours with arbitrary strings using a dictionary\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\n\n# Basic contour plot\nCS1 = ax1.contour(X, Y, Z)\n\nfmt = {}\nstrs = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh']\nfor l, s in zip(CS1.levels, strs):\n fmt[l] = s\n\n# Label every other level using strings\nax1.clabel(CS1, CS1.levels[::2], inline=True, fmt=fmt, fontsize=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Use a Formatter\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\n\nCS2 = ax2.contour(X, Y, 100**Z, locator=plt.LogLocator())\nfmt = ticker.LogFormatterMathtext()\nfmt.create_dummy_axis()\nax2.clabel(CS2, CS2.levels, fmt=fmt)\nax2.set_title(\"$100^Z$\")\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "matplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.clabel\nmatplotlib.pyplot.clabel\nmatplotlib.ticker.LogFormatterMathtext\nmatplotlib.ticker.TickHelper.create_dummy_axis" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e2b0096ce1e0adac0b3d5006e3fc7b5f/subplots_adjust.ipynb b/_downloads/e2b0096ce1e0adac0b3d5006e3fc7b5f/subplots_adjust.ipynb deleted file mode 120000 index 115096279d6..00000000000 --- a/_downloads/e2b0096ce1e0adac0b3d5006e3fc7b5f/subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e2b0096ce1e0adac0b3d5006e3fc7b5f/subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/e2bc1dae24e5f23350a6454cb09000fa/subplots_adjust.ipynb b/_downloads/e2bc1dae24e5f23350a6454cb09000fa/subplots_adjust.ipynb deleted file mode 120000 index 6f3abf39ec7..00000000000 --- a/_downloads/e2bc1dae24e5f23350a6454cb09000fa/subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e2bc1dae24e5f23350a6454cb09000fa/subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/e2c6868f4553aebf86f85fd631d5f23f/axis_direction_demo_step03.ipynb b/_downloads/e2c6868f4553aebf86f85fd631d5f23f/axis_direction_demo_step03.ipynb deleted file mode 120000 index 6549e12d124..00000000000 --- a/_downloads/e2c6868f4553aebf86f85fd631d5f23f/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e2c6868f4553aebf86f85fd631d5f23f/axis_direction_demo_step03.ipynb \ No newline at end of file diff --git a/_downloads/e2c6b24054aa033883f96144aa207881/histogram_features.ipynb b/_downloads/e2c6b24054aa033883f96144aa207881/histogram_features.ipynb deleted file mode 120000 index 67fb03bc89f..00000000000 --- a/_downloads/e2c6b24054aa033883f96144aa207881/histogram_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e2c6b24054aa033883f96144aa207881/histogram_features.ipynb \ No newline at end of file diff --git a/_downloads/e2c7055da7d68441c32659a67cdd083f/autowrap.ipynb b/_downloads/e2c7055da7d68441c32659a67cdd083f/autowrap.ipynb deleted file mode 120000 index b183624e07e..00000000000 --- a/_downloads/e2c7055da7d68441c32659a67cdd083f/autowrap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e2c7055da7d68441c32659a67cdd083f/autowrap.ipynb \ No newline at end of file diff --git a/_downloads/e2dcf2adf285392f57a794d3be33c240/figure_title.ipynb b/_downloads/e2dcf2adf285392f57a794d3be33c240/figure_title.ipynb deleted file mode 120000 index 451c3ce739d..00000000000 --- a/_downloads/e2dcf2adf285392f57a794d3be33c240/figure_title.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e2dcf2adf285392f57a794d3be33c240/figure_title.ipynb \ No newline at end of file diff --git a/_downloads/e2e9df9f7d0778daedb3892ffc00274b/arrow_simple_demo.ipynb b/_downloads/e2e9df9f7d0778daedb3892ffc00274b/arrow_simple_demo.ipynb deleted file mode 100644 index ba200b60e9a..00000000000 --- a/_downloads/e2e9df9f7d0778daedb3892ffc00274b/arrow_simple_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Arrow Simple Demo\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nax = plt.axes()\nax.arrow(0, 0, 0.5, 0.5, head_width=0.05, head_length=0.1, fc='k', ec='k')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e2f1cfe6efa60e82e7e807c084d4fef8/wire3d.py b/_downloads/e2f1cfe6efa60e82e7e807c084d4fef8/wire3d.py deleted file mode 120000 index c4d18ced053..00000000000 --- a/_downloads/e2f1cfe6efa60e82e7e807c084d4fef8/wire3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e2f1cfe6efa60e82e7e807c084d4fef8/wire3d.py \ No newline at end of file diff --git a/_downloads/e2ff895afdc101d69bc98cd452b203db/fonts_demo_kw.py b/_downloads/e2ff895afdc101d69bc98cd452b203db/fonts_demo_kw.py deleted file mode 120000 index ea796573266..00000000000 --- a/_downloads/e2ff895afdc101d69bc98cd452b203db/fonts_demo_kw.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e2ff895afdc101d69bc98cd452b203db/fonts_demo_kw.py \ No newline at end of file diff --git a/_downloads/e3009de1124eb76a07a796bbf94b3260/simple_anchored_artists.ipynb b/_downloads/e3009de1124eb76a07a796bbf94b3260/simple_anchored_artists.ipynb deleted file mode 120000 index f10bda86dd9..00000000000 --- a/_downloads/e3009de1124eb76a07a796bbf94b3260/simple_anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e3009de1124eb76a07a796bbf94b3260/simple_anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/e30931f9cdd67ddca47f3c2a7ec762c7/tick_label_right.py b/_downloads/e30931f9cdd67ddca47f3c2a7ec762c7/tick_label_right.py deleted file mode 120000 index 5380574d0df..00000000000 --- a/_downloads/e30931f9cdd67ddca47f3c2a7ec762c7/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e30931f9cdd67ddca47f3c2a7ec762c7/tick_label_right.py \ No newline at end of file diff --git a/_downloads/e313e729f0fa7c96338e2074320c5524/colormap_normalizations_symlognorm.ipynb b/_downloads/e313e729f0fa7c96338e2074320c5524/colormap_normalizations_symlognorm.ipynb deleted file mode 120000 index aa6358e3c65..00000000000 --- a/_downloads/e313e729f0fa7c96338e2074320c5524/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e313e729f0fa7c96338e2074320c5524/colormap_normalizations_symlognorm.ipynb \ No newline at end of file diff --git a/_downloads/e31674ab111af5ee64fc33fcffb07940/annotate_transform.py b/_downloads/e31674ab111af5ee64fc33fcffb07940/annotate_transform.py deleted file mode 100644 index 249dee2efdc..00000000000 --- a/_downloads/e31674ab111af5ee64fc33fcffb07940/annotate_transform.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -================== -Annotate Transform -================== - -This example shows how to use different coordinate systems for annotations. -For a complete overview of the annotation capabilities, also see the -:doc:`annotation tutorial`. -""" -import numpy as np -import matplotlib.pyplot as plt - -x = np.arange(0, 10, 0.005) -y = np.exp(-x/2.) * np.sin(2*np.pi*x) - -fig, ax = plt.subplots() -ax.plot(x, y) -ax.set_xlim(0, 10) -ax.set_ylim(-1, 1) - -xdata, ydata = 5, 0 -xdisplay, ydisplay = ax.transData.transform_point((xdata, ydata)) - -bbox = dict(boxstyle="round", fc="0.8") -arrowprops = dict( - arrowstyle = "->", - connectionstyle = "angle,angleA=0,angleB=90,rad=10") - -offset = 72 -ax.annotate('data = (%.1f, %.1f)'%(xdata, ydata), - (xdata, ydata), xytext=(-2*offset, offset), textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - - -disp = ax.annotate('display = (%.1f, %.1f)'%(xdisplay, ydisplay), - (xdisplay, ydisplay), xytext=(0.5*offset, -offset), - xycoords='figure pixels', - textcoords='offset points', - bbox=bbox, arrowprops=arrowprops) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.transforms.Transform.transform_point -matplotlib.axes.Axes.annotate -matplotlib.pyplot.annotate diff --git a/_downloads/e318d4f406edcb9dfe74e1d2c58a3322/multiple_yaxis_with_spines.ipynb b/_downloads/e318d4f406edcb9dfe74e1d2c58a3322/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index 29b2ee26eb1..00000000000 --- a/_downloads/e318d4f406edcb9dfe74e1d2c58a3322/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/e318d4f406edcb9dfe74e1d2c58a3322/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/e32ea61d874883fa9a2fcaa95a1b21a7/logos2.ipynb b/_downloads/e32ea61d874883fa9a2fcaa95a1b21a7/logos2.ipynb deleted file mode 120000 index 90a02e0a5eb..00000000000 --- a/_downloads/e32ea61d874883fa9a2fcaa95a1b21a7/logos2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e32ea61d874883fa9a2fcaa95a1b21a7/logos2.ipynb \ No newline at end of file diff --git a/_downloads/e330e58face7eb113dac7addbe0fe720/custom_shaded_3d_surface.ipynb b/_downloads/e330e58face7eb113dac7addbe0fe720/custom_shaded_3d_surface.ipynb deleted file mode 100644 index 4a661ad7cd9..00000000000 --- a/_downloads/e330e58face7eb113dac7addbe0fe720/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom hillshading in a 3D surface plot\n\n\nDemonstrates using custom hillshading in a 3D surface plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib import cbook\nfrom matplotlib import cm\nfrom matplotlib.colors import LightSource\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Load and format data\nwith cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \\\n np.load(file) as dem:\n z = dem['elevation']\n nrows, ncols = z.shape\n x = np.linspace(dem['xmin'], dem['xmax'], ncols)\n y = np.linspace(dem['ymin'], dem['ymax'], nrows)\n x, y = np.meshgrid(x, y)\n\nregion = np.s_[5:50, 5:50]\nx, y, z = x[region], y[region], z[region]\n\n# Set up plot\nfig, ax = plt.subplots(subplot_kw=dict(projection='3d'))\n\nls = LightSource(270, 45)\n# To use a custom hillshading mode, override the built-in shading and pass\n# in the rgb colors of the shaded surface calculated from \"shade\".\nrgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft')\nsurf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb,\n linewidth=0, antialiased=False, shade=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e33522ccd086ee7e38260439a813c264/toolmanager_sgskip.py b/_downloads/e33522ccd086ee7e38260439a813c264/toolmanager_sgskip.py deleted file mode 120000 index 00926fd6e93..00000000000 --- a/_downloads/e33522ccd086ee7e38260439a813c264/toolmanager_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e33522ccd086ee7e38260439a813c264/toolmanager_sgskip.py \ No newline at end of file diff --git a/_downloads/e341f381bf36e0565fe3204ccfe776e4/polar_bar.py b/_downloads/e341f381bf36e0565fe3204ccfe776e4/polar_bar.py deleted file mode 120000 index b0f9fc85b57..00000000000 --- a/_downloads/e341f381bf36e0565fe3204ccfe776e4/polar_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e341f381bf36e0565fe3204ccfe776e4/polar_bar.py \ No newline at end of file diff --git a/_downloads/e3441c91908c65204c106ffd2565e0d8/contour3d_3.py b/_downloads/e3441c91908c65204c106ffd2565e0d8/contour3d_3.py deleted file mode 120000 index 292ae45c4eb..00000000000 --- a/_downloads/e3441c91908c65204c106ffd2565e0d8/contour3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e3441c91908c65204c106ffd2565e0d8/contour3d_3.py \ No newline at end of file diff --git a/_downloads/e3488863c68c454e6b50367702282811/fig_axes_labels_simple.py b/_downloads/e3488863c68c454e6b50367702282811/fig_axes_labels_simple.py deleted file mode 100644 index b7d3bd25b74..00000000000 --- a/_downloads/e3488863c68c454e6b50367702282811/fig_axes_labels_simple.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -================== -Simple axes labels -================== - -Label the axes of a plot. -""" -import numpy as np -import matplotlib.pyplot as plt - -fig = plt.figure() -fig.subplots_adjust(top=0.8) -ax1 = fig.add_subplot(211) -ax1.set_ylabel('volts') -ax1.set_title('a sine wave') - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2 * np.pi * t) -line, = ax1.plot(t, s, lw=2) - -# Fixing random state for reproducibility -np.random.seed(19680801) - -ax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3]) -n, bins, patches = ax2.hist(np.random.randn(1000), 50) -ax2.set_xlabel('time (s)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.set_xlabel -matplotlib.axes.Axes.set_ylabel -matplotlib.axes.Axes.set_title -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.hist -matplotlib.figure.Figure.add_axes diff --git a/_downloads/e34a1823d27a56e8dd554f82097a140a/demo_text_rotation_mode.py b/_downloads/e34a1823d27a56e8dd554f82097a140a/demo_text_rotation_mode.py deleted file mode 100644 index 2cb7fd66afd..00000000000 --- a/_downloads/e34a1823d27a56e8dd554f82097a140a/demo_text_rotation_mode.py +++ /dev/null @@ -1,89 +0,0 @@ -r""" -======================= -Demo Text Rotation Mode -======================= - -This example illustrates the effect of ``rotation_mode`` on the positioning -of rotated text. - -Rotated `.Text`\s are created by passing the parameter ``rotation`` to -the constructor or the axes' method `~.axes.Axes.text`. - -The actual positioning depends on the additional parameters -``horizontalalignment``, ``verticalalignment`` and ``rotation_mode``. -``rotation_mode`` determines the order of rotation and alignment: - -- ``roation_mode='default'`` (or None) first rotates the text and then aligns - the bounding box of the rotated text. -- ``roation_mode='anchor'`` aligns the unrotated text and then rotates the - text around the point of alignment. - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.axes_grid import ImageGrid - - -def test_rotation_mode(fig, mode, subplot_location): - ha_list = ["left", "center", "right"] - va_list = ["top", "center", "baseline", "bottom"] - grid = ImageGrid(fig, subplot_location, - nrows_ncols=(len(va_list), len(ha_list)), - share_all=True, aspect=True, cbar_mode=None) - - # labels and title - for ha, ax in zip(ha_list, grid.axes_row[-1]): - ax.axis["bottom"].label.set_text(ha) - for va, ax in zip(va_list, grid.axes_column[0]): - ax.axis["left"].label.set_text(va) - grid.axes_row[0][1].set_title(f"rotation_mode='{mode}'", size="large") - - if mode == "default": - kw = dict() - else: - kw = dict( - bbox=dict(boxstyle="square,pad=0.", ec="none", fc="C1", alpha=0.3)) - - # use a different text alignment in each axes - texts = [] - for (va, ha), ax in zip([(x, y) for x in va_list for y in ha_list], grid): - # prepare axes layout - for axis in ax.axis.values(): - axis.toggle(ticks=False, ticklabels=False) - ax.axvline(0.5, color="skyblue", zorder=0) - ax.axhline(0.5, color="skyblue", zorder=0) - ax.plot(0.5, 0.5, color="C0", marker="o", zorder=1) - - # add text with rotation and alignment settings - tx = ax.text(0.5, 0.5, "Tpg", - size="x-large", rotation=40, - horizontalalignment=ha, verticalalignment=va, - rotation_mode=mode, **kw) - texts.append(tx) - - if mode == "default": - # highlight bbox - fig.canvas.draw() - for ax, tx in zip(grid, texts): - bb = tx.get_window_extent().inverse_transformed(ax.transData) - rect = plt.Rectangle((bb.x0, bb.y0), bb.width, bb.height, - facecolor="C1", alpha=0.3, zorder=2) - ax.add_patch(rect) - - -fig = plt.figure(figsize=(8, 6)) -test_rotation_mode(fig, "default", 121) -test_rotation_mode(fig, "anchor", 122) -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following method is shown in this example: - -import matplotlib -matplotlib.axes.Axes.text diff --git a/_downloads/e34cd3cd186883563f7a6377d595472f/axisartist.ipynb b/_downloads/e34cd3cd186883563f7a6377d595472f/axisartist.ipynb deleted file mode 120000 index 15cabcf94ea..00000000000 --- a/_downloads/e34cd3cd186883563f7a6377d595472f/axisartist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e34cd3cd186883563f7a6377d595472f/axisartist.ipynb \ No newline at end of file diff --git a/_downloads/e34d24257918887ced81c56651971deb/pylab_with_gtk_sgskip.ipynb b/_downloads/e34d24257918887ced81c56651971deb/pylab_with_gtk_sgskip.ipynb deleted file mode 120000 index 82092bdc45b..00000000000 --- a/_downloads/e34d24257918887ced81c56651971deb/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e34d24257918887ced81c56651971deb/pylab_with_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/e35aa5011cbda019f8e0abcc8634f71a/custom_cmap.py b/_downloads/e35aa5011cbda019f8e0abcc8634f71a/custom_cmap.py deleted file mode 120000 index 378406dbc3b..00000000000 --- a/_downloads/e35aa5011cbda019f8e0abcc8634f71a/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e35aa5011cbda019f8e0abcc8634f71a/custom_cmap.py \ No newline at end of file diff --git a/_downloads/e35d481ebeb17f42d5121aef63b57bd0/bar_of_pie.py b/_downloads/e35d481ebeb17f42d5121aef63b57bd0/bar_of_pie.py deleted file mode 120000 index 69e17e9e511..00000000000 --- a/_downloads/e35d481ebeb17f42d5121aef63b57bd0/bar_of_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e35d481ebeb17f42d5121aef63b57bd0/bar_of_pie.py \ No newline at end of file diff --git a/_downloads/e362da4d7be444f92ac22d09114e29ca/bayes_update.ipynb b/_downloads/e362da4d7be444f92ac22d09114e29ca/bayes_update.ipynb deleted file mode 100644 index 6f9e42f900d..00000000000 --- a/_downloads/e362da4d7be444f92ac22d09114e29ca/bayes_update.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# The Bayes update\n\n\nThis animation displays the posterior estimate updates as it is refitted when\nnew data arrives.\nThe vertical line represents the theoretical value to which the plotted\ndistribution should converge.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import math\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.animation import FuncAnimation\n\n\ndef beta_pdf(x, a, b):\n return (x**(a-1) * (1-x)**(b-1) * math.gamma(a + b)\n / (math.gamma(a) * math.gamma(b)))\n\n\nclass UpdateDist(object):\n def __init__(self, ax, prob=0.5):\n self.success = 0\n self.prob = prob\n self.line, = ax.plot([], [], 'k-')\n self.x = np.linspace(0, 1, 200)\n self.ax = ax\n\n # Set up plot parameters\n self.ax.set_xlim(0, 1)\n self.ax.set_ylim(0, 15)\n self.ax.grid(True)\n\n # This vertical line represents the theoretical value, to\n # which the plotted distribution should converge.\n self.ax.axvline(prob, linestyle='--', color='black')\n\n def init(self):\n self.success = 0\n self.line.set_data([], [])\n return self.line,\n\n def __call__(self, i):\n # This way the plot can continuously run and we just keep\n # watching new realizations of the process\n if i == 0:\n return self.init()\n\n # Choose success based on exceed a threshold with a uniform pick\n if np.random.rand(1,) < self.prob:\n self.success += 1\n y = beta_pdf(self.x, self.success + 1, (i - self.success) + 1)\n self.line.set_data(self.x, y)\n return self.line,\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\nud = UpdateDist(ax, prob=0.7)\nanim = FuncAnimation(fig, ud, frames=np.arange(100), init_func=ud.init,\n interval=100, blit=True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e36d8d9ac1307af9d71bd5234dd29a35/load_converter.ipynb b/_downloads/e36d8d9ac1307af9d71bd5234dd29a35/load_converter.ipynb deleted file mode 120000 index a53c073340c..00000000000 --- a/_downloads/e36d8d9ac1307af9d71bd5234dd29a35/load_converter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e36d8d9ac1307af9d71bd5234dd29a35/load_converter.ipynb \ No newline at end of file diff --git a/_downloads/e36dd90ed92d49914d5065e8bcd53b88/simple_axis_pad.py b/_downloads/e36dd90ed92d49914d5065e8bcd53b88/simple_axis_pad.py deleted file mode 120000 index b5bc0f33c88..00000000000 --- a/_downloads/e36dd90ed92d49914d5065e8bcd53b88/simple_axis_pad.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e36dd90ed92d49914d5065e8bcd53b88/simple_axis_pad.py \ No newline at end of file diff --git a/_downloads/e377b92c1c942c3c84cd47acd95c0058/centered_ticklabels.ipynb b/_downloads/e377b92c1c942c3c84cd47acd95c0058/centered_ticklabels.ipynb deleted file mode 120000 index 38bf7a4e2a2..00000000000 --- a/_downloads/e377b92c1c942c3c84cd47acd95c0058/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e377b92c1c942c3c84cd47acd95c0058/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/e381ff22fb3c4babf64f9497c79a4697/placing_text_boxes.py b/_downloads/e381ff22fb3c4babf64f9497c79a4697/placing_text_boxes.py deleted file mode 120000 index 19f3d71d533..00000000000 --- a/_downloads/e381ff22fb3c4babf64f9497c79a4697/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e381ff22fb3c4babf64f9497c79a4697/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/e389a342c2d4827bb934967bf336586c/gallery_jupyter.zip b/_downloads/e389a342c2d4827bb934967bf336586c/gallery_jupyter.zip deleted file mode 120000 index a169dc73faa..00000000000 --- a/_downloads/e389a342c2d4827bb934967bf336586c/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e389a342c2d4827bb934967bf336586c/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/e38a5d92cf29f0e1c296616cd1f13c5b/pathpatch3d.py b/_downloads/e38a5d92cf29f0e1c296616cd1f13c5b/pathpatch3d.py deleted file mode 100644 index 962e54d8dce..00000000000 --- a/_downloads/e38a5d92cf29f0e1c296616cd1f13c5b/pathpatch3d.py +++ /dev/null @@ -1,72 +0,0 @@ -""" -============================ -Draw flat objects in 3D plot -============================ - -Demonstrate using pathpatch_2d_to_3d to 'draw' shapes and text on a 3D plot. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Circle, PathPatch -from matplotlib.text import TextPath -from matplotlib.transforms import Affine2D -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import -import mpl_toolkits.mplot3d.art3d as art3d - - -def text3d(ax, xyz, s, zdir="z", size=None, angle=0, usetex=False, **kwargs): - ''' - Plots the string 's' on the axes 'ax', with position 'xyz', size 'size', - and rotation angle 'angle'. 'zdir' gives the axis which is to be treated - as the third dimension. usetex is a boolean indicating whether the string - should be interpreted as latex or not. Any additional keyword arguments - are passed on to transform_path. - - Note: zdir affects the interpretation of xyz. - ''' - x, y, z = xyz - if zdir == "y": - xy1, z1 = (x, z), y - elif zdir == "x": - xy1, z1 = (y, z), x - else: - xy1, z1 = (x, y), z - - text_path = TextPath((0, 0), s, size=size, usetex=usetex) - trans = Affine2D().rotate(angle).translate(xy1[0], xy1[1]) - - p1 = PathPatch(trans.transform_path(text_path), **kwargs) - ax.add_patch(p1) - art3d.pathpatch_2d_to_3d(p1, z=z1, zdir=zdir) - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Draw a circle on the x=0 'wall' -p = Circle((5, 5), 3) -ax.add_patch(p) -art3d.pathpatch_2d_to_3d(p, z=0, zdir="x") - -# Manually label the axes -text3d(ax, (4, -2, 0), "X-axis", zdir="z", size=.5, usetex=False, - ec="none", fc="k") -text3d(ax, (12, 4, 0), "Y-axis", zdir="z", size=.5, usetex=False, - angle=np.pi / 2, ec="none", fc="k") -text3d(ax, (12, 10, 4), "Z-axis", zdir="y", size=.5, usetex=False, - angle=np.pi / 2, ec="none", fc="k") - -# Write a Latex formula on the z=0 'floor' -text3d(ax, (1, 5, 0), - r"$\displaystyle G_{\mu\nu} + \Lambda g_{\mu\nu} = " - r"\frac{8\pi G}{c^4} T_{\mu\nu} $", - zdir="z", size=1, usetex=True, - ec="none", fc="k") - -ax.set_xlim(0, 10) -ax.set_ylim(0, 10) -ax.set_zlim(0, 10) - -plt.show() diff --git a/_downloads/e38d13965cc57ed10fc07e2d7dee9afc/line_with_text.py b/_downloads/e38d13965cc57ed10fc07e2d7dee9afc/line_with_text.py deleted file mode 120000 index b2730c2e549..00000000000 --- a/_downloads/e38d13965cc57ed10fc07e2d7dee9afc/line_with_text.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e38d13965cc57ed10fc07e2d7dee9afc/line_with_text.py \ No newline at end of file diff --git a/_downloads/e3918078b0e6097f223ed35eeb37f083/fill_between_demo.ipynb b/_downloads/e3918078b0e6097f223ed35eeb37f083/fill_between_demo.ipynb deleted file mode 120000 index 72e6e9527df..00000000000 --- a/_downloads/e3918078b0e6097f223ed35eeb37f083/fill_between_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e3918078b0e6097f223ed35eeb37f083/fill_between_demo.ipynb \ No newline at end of file diff --git a/_downloads/e39303004a648034b5f0804fb4a8fa2f/demo_gridspec03.ipynb b/_downloads/e39303004a648034b5f0804fb4a8fa2f/demo_gridspec03.ipynb deleted file mode 120000 index fc15c7d8fdb..00000000000 --- a/_downloads/e39303004a648034b5f0804fb4a8fa2f/demo_gridspec03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e39303004a648034b5f0804fb4a8fa2f/demo_gridspec03.ipynb \ No newline at end of file diff --git a/_downloads/e3a5ddabf36d688d56b14b13509e29eb/tick-formatters.py b/_downloads/e3a5ddabf36d688d56b14b13509e29eb/tick-formatters.py deleted file mode 120000 index 6c6d950d106..00000000000 --- a/_downloads/e3a5ddabf36d688d56b14b13509e29eb/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e3a5ddabf36d688d56b14b13509e29eb/tick-formatters.py \ No newline at end of file diff --git a/_downloads/e3a6d95779d2a005d5565d05a6d54aab/spines_bounds.py b/_downloads/e3a6d95779d2a005d5565d05a6d54aab/spines_bounds.py deleted file mode 120000 index 24b9d176b7f..00000000000 --- a/_downloads/e3a6d95779d2a005d5565d05a6d54aab/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e3a6d95779d2a005d5565d05a6d54aab/spines_bounds.py \ No newline at end of file diff --git a/_downloads/e3a7ee7c93c25c8562c268a2182a428a/date_index_formatter.py b/_downloads/e3a7ee7c93c25c8562c268a2182a428a/date_index_formatter.py deleted file mode 120000 index ee20b92b2bd..00000000000 --- a/_downloads/e3a7ee7c93c25c8562c268a2182a428a/date_index_formatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/e3a7ee7c93c25c8562c268a2182a428a/date_index_formatter.py \ No newline at end of file diff --git a/_downloads/e3a9f6c767a2a10e9044ec0bbebeb43d/plotfile_demo.ipynb b/_downloads/e3a9f6c767a2a10e9044ec0bbebeb43d/plotfile_demo.ipynb deleted file mode 120000 index 5f182f1cc77..00000000000 --- a/_downloads/e3a9f6c767a2a10e9044ec0bbebeb43d/plotfile_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e3a9f6c767a2a10e9044ec0bbebeb43d/plotfile_demo.ipynb \ No newline at end of file diff --git a/_downloads/e3ad9604ffb89a57dddeffd0524408db/barchart.py b/_downloads/e3ad9604ffb89a57dddeffd0524408db/barchart.py deleted file mode 120000 index 3fb1488ce88..00000000000 --- a/_downloads/e3ad9604ffb89a57dddeffd0524408db/barchart.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e3ad9604ffb89a57dddeffd0524408db/barchart.py \ No newline at end of file diff --git a/_downloads/e3b41a52bfabfcf4ea71798bec3b3353/colormap_normalizations_bounds.ipynb b/_downloads/e3b41a52bfabfcf4ea71798bec3b3353/colormap_normalizations_bounds.ipynb deleted file mode 120000 index 308f2e584bf..00000000000 --- a/_downloads/e3b41a52bfabfcf4ea71798bec3b3353/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e3b41a52bfabfcf4ea71798bec3b3353/colormap_normalizations_bounds.ipynb \ No newline at end of file diff --git a/_downloads/e3b874c9522433b5d8ebeeb206b6f68f/svg_filter_pie.py b/_downloads/e3b874c9522433b5d8ebeeb206b6f68f/svg_filter_pie.py deleted file mode 100644 index bcc901028bd..00000000000 --- a/_downloads/e3b874c9522433b5d8ebeeb206b6f68f/svg_filter_pie.py +++ /dev/null @@ -1,95 +0,0 @@ -""" -============== -SVG Filter Pie -============== - -Demonstrate SVG filtering effects which might be used with mpl. -The pie chart drawing code is borrowed from pie_demo.py - -Note that the filtering effects are only effective if your svg renderer -support it. -""" - -import matplotlib.pyplot as plt -from matplotlib.patches import Shadow - -# make a square figure and axes -fig = plt.figure(figsize=(6, 6)) -ax = fig.add_axes([0.1, 0.1, 0.8, 0.8]) - -labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' -fracs = [15, 30, 45, 10] - -explode = (0, 0.05, 0, 0) - -# We want to draw the shadow for each pie but we will not use "shadow" -# option as it does'n save the references to the shadow patches. -pies = ax.pie(fracs, explode=explode, labels=labels, autopct='%1.1f%%') - -for w in pies[0]: - # set the id with the label. - w.set_gid(w.get_label()) - - # we don't want to draw the edge of the pie - w.set_edgecolor("none") - -for w in pies[0]: - # create shadow patch - s = Shadow(w, -0.01, -0.01) - s.set_gid(w.get_gid() + "_shadow") - s.set_zorder(w.get_zorder() - 0.1) - ax.add_patch(s) - - -# save -from io import BytesIO -f = BytesIO() -plt.savefig(f, format="svg") - -import xml.etree.cElementTree as ET - - -# filter definition for shadow using a gaussian blur -# and lightening effect. -# The lightening filter is copied from http://www.w3.org/TR/SVG/filters.html - -# I tested it with Inkscape and Firefox3. "Gaussian blur" is supported -# in both, but the lightening effect only in the Inkscape. Also note -# that, Inkscape's exporting also may not support it. - -filter_def = """ - - - - - - - - - - - - - - - -""" - - -tree, xmlid = ET.XMLID(f.getvalue()) - -# insert the filter definition in the svg dom tree. -tree.insert(0, ET.XML(filter_def)) - -for i, pie_name in enumerate(labels): - pie = xmlid[pie_name] - pie.set("filter", 'url(#MyFilter)') - - shadow = xmlid[pie_name + "_shadow"] - shadow.set("filter", 'url(#dropshadow)') - -fn = "svg_filter_pie.svg" -print("Saving '%s'" % fn) -ET.ElementTree(tree).write(fn) diff --git a/_downloads/e3c78b3b05ff6e7301244ddf938f536e/lines3d.py b/_downloads/e3c78b3b05ff6e7301244ddf938f536e/lines3d.py deleted file mode 120000 index e1ec386d2c2..00000000000 --- a/_downloads/e3c78b3b05ff6e7301244ddf938f536e/lines3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e3c78b3b05ff6e7301244ddf938f536e/lines3d.py \ No newline at end of file diff --git a/_downloads/e3c7bbfa7dac8bc24258e330ea2748fb/demo_annotation_box.ipynb b/_downloads/e3c7bbfa7dac8bc24258e330ea2748fb/demo_annotation_box.ipynb deleted file mode 100644 index 6a5d0bb9bf8..00000000000 --- a/_downloads/e3c7bbfa7dac8bc24258e330ea2748fb/demo_annotation_box.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Demo Annotation Box\n\n\nThe AnnotationBbox Artist creates an annotation using an OffsetBox. This\nexample demonstrates three different OffsetBoxes: TextArea, DrawingArea and\nOffsetImage. AnnotationBbox gives more fine-grained control than using the axes\nmethod annotate.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfrom matplotlib.patches import Circle\nfrom matplotlib.offsetbox import (TextArea, DrawingArea, OffsetImage,\n AnnotationBbox)\nfrom matplotlib.cbook import get_sample_data\n\n\nfig, ax = plt.subplots()\n\n# Define a 1st position to annotate (display it with a marker)\nxy = (0.5, 0.7)\nax.plot(xy[0], xy[1], \".r\")\n\n# Annotate the 1st position with a text box ('Test 1')\noffsetbox = TextArea(\"Test 1\", minimumdescent=False)\n\nab = AnnotationBbox(offsetbox, xy,\n xybox=(-20, 40),\n xycoords='data',\n boxcoords=\"offset points\",\n arrowprops=dict(arrowstyle=\"->\"))\nax.add_artist(ab)\n\n# Annotate the 1st position with another text box ('Test')\noffsetbox = TextArea(\"Test\", minimumdescent=False)\n\nab = AnnotationBbox(offsetbox, xy,\n xybox=(1.02, xy[1]),\n xycoords='data',\n boxcoords=(\"axes fraction\", \"data\"),\n box_alignment=(0., 0.5),\n arrowprops=dict(arrowstyle=\"->\"))\nax.add_artist(ab)\n\n# Define a 2nd position to annotate (don't display with a marker this time)\nxy = [0.3, 0.55]\n\n# Annotate the 2nd position with a circle patch\nda = DrawingArea(20, 20, 0, 0)\np = Circle((10, 10), 10)\nda.add_artist(p)\n\nab = AnnotationBbox(da, xy,\n xybox=(1.02, xy[1]),\n xycoords='data',\n boxcoords=(\"axes fraction\", \"data\"),\n box_alignment=(0., 0.5),\n arrowprops=dict(arrowstyle=\"->\"))\n\nax.add_artist(ab)\n\n# Annotate the 2nd position with an image (a generated array of pixels)\narr = np.arange(100).reshape((10, 10))\nim = OffsetImage(arr, zoom=2)\nim.image.axes = ax\n\nab = AnnotationBbox(im, xy,\n xybox=(-50., 50.),\n xycoords='data',\n boxcoords=\"offset points\",\n pad=0.3,\n arrowprops=dict(arrowstyle=\"->\"))\n\nax.add_artist(ab)\n\n# Annotate the 2nd position with another image (a Grace Hopper portrait)\nwith get_sample_data(\"grace_hopper.png\") as file:\n arr_img = plt.imread(file, format='png')\n\nimagebox = OffsetImage(arr_img, zoom=0.2)\nimagebox.image.axes = ax\n\nab = AnnotationBbox(imagebox, xy,\n xybox=(120., -80.),\n xycoords='data',\n boxcoords=\"offset points\",\n pad=0.5,\n arrowprops=dict(\n arrowstyle=\"->\",\n connectionstyle=\"angle,angleA=0,angleB=90,rad=3\")\n )\n\nax.add_artist(ab)\n\n# Fix the display limits to see everything\nax.set_xlim(0, 1)\nax.set_ylim(0, 1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown in this\nexample:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Circle\nTextArea\nDrawingArea\nOffsetImage\nAnnotationBbox\nget_sample_data\nplt.subplots\nplt.imread\nplt.show" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e3d4b225611ae122b0209e811aa396c0/gridspec_nested.ipynb b/_downloads/e3d4b225611ae122b0209e811aa396c0/gridspec_nested.ipynb deleted file mode 120000 index a9d68455f0d..00000000000 --- a/_downloads/e3d4b225611ae122b0209e811aa396c0/gridspec_nested.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e3d4b225611ae122b0209e811aa396c0/gridspec_nested.ipynb \ No newline at end of file diff --git a/_downloads/e3ec4c2e982df13934d3ecdae227b396/hist3d.py b/_downloads/e3ec4c2e982df13934d3ecdae227b396/hist3d.py deleted file mode 120000 index e3b63fa1d21..00000000000 --- a/_downloads/e3ec4c2e982df13934d3ecdae227b396/hist3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e3ec4c2e982df13934d3ecdae227b396/hist3d.py \ No newline at end of file diff --git a/_downloads/e3f83e6c28ed19274848f31ef6907a6a/colormap_normalizations_lognorm.ipynb b/_downloads/e3f83e6c28ed19274848f31ef6907a6a/colormap_normalizations_lognorm.ipynb deleted file mode 120000 index 0aeeb247cf0..00000000000 --- a/_downloads/e3f83e6c28ed19274848f31ef6907a6a/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e3f83e6c28ed19274848f31ef6907a6a/colormap_normalizations_lognorm.ipynb \ No newline at end of file diff --git a/_downloads/e3fd5551000325f956d03e85ffcde2a8/scatter.ipynb b/_downloads/e3fd5551000325f956d03e85ffcde2a8/scatter.ipynb deleted file mode 100644 index 85af44c78a8..00000000000 --- a/_downloads/e3fd5551000325f956d03e85ffcde2a8/scatter.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter plot\n\n\nThis example showcases a simple scatter plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nN = 50\nx = np.random.rand(N)\ny = np.random.rand(N)\ncolors = np.random.rand(N)\narea = (30 * np.random.rand(N))**2 # 0 to 15 point radii\n\nplt.scatter(x, y, s=area, c=colors, alpha=0.5)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\n\nmatplotlib.axes.Axes.scatter\nmatplotlib.pyplot.scatter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e4026de48a4b063c69fee8379f1a30be/colorbar_placement.py b/_downloads/e4026de48a4b063c69fee8379f1a30be/colorbar_placement.py deleted file mode 120000 index 91f04010487..00000000000 --- a/_downloads/e4026de48a4b063c69fee8379f1a30be/colorbar_placement.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e4026de48a4b063c69fee8379f1a30be/colorbar_placement.py \ No newline at end of file diff --git a/_downloads/e402ba8bf1c1be702f80fdbd502adc9e/custom_legends.py b/_downloads/e402ba8bf1c1be702f80fdbd502adc9e/custom_legends.py deleted file mode 100644 index f37cd2ab61f..00000000000 --- a/_downloads/e402ba8bf1c1be702f80fdbd502adc9e/custom_legends.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -======================== -Composing Custom Legends -======================== - -Composing custom legends piece-by-piece. - -.. note:: - - For more information on creating and customizing legends, see the following - pages: - - * :doc:`/tutorials/intermediate/legend_guide` - * :doc:`/gallery/text_labels_and_annotations/legend_demo` - -Sometimes you don't want a legend that is explicitly tied to data that -you have plotted. For example, say you have plotted 10 lines, but don't -want a legend item to show up for each one. If you simply plot the lines -and call ``ax.legend()``, you will get the following: -""" -# sphinx_gallery_thumbnail_number = 2 -from matplotlib import rcParams, cycler -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - -N = 10 -data = [np.logspace(0, 1, 100) + np.random.randn(100) + ii for ii in range(N)] -data = np.array(data).T -cmap = plt.cm.coolwarm -rcParams['axes.prop_cycle'] = cycler(color=cmap(np.linspace(0, 1, N))) - -fig, ax = plt.subplots() -lines = ax.plot(data) -ax.legend(lines) - -############################################################################## -# Note that one legend item per line was created. -# In this case, we can compose a legend using Matplotlib objects that aren't -# explicitly tied to the data that was plotted. For example: - -from matplotlib.lines import Line2D -custom_lines = [Line2D([0], [0], color=cmap(0.), lw=4), - Line2D([0], [0], color=cmap(.5), lw=4), - Line2D([0], [0], color=cmap(1.), lw=4)] - -fig, ax = plt.subplots() -lines = ax.plot(data) -ax.legend(custom_lines, ['Cold', 'Medium', 'Hot']) - - -############################################################################### -# There are many other Matplotlib objects that can be used in this way. In the -# code below we've listed a few common ones. - -from matplotlib.patches import Patch -from matplotlib.lines import Line2D - -legend_elements = [Line2D([0], [0], color='b', lw=4, label='Line'), - Line2D([0], [0], marker='o', color='w', label='Scatter', - markerfacecolor='g', markersize=15), - Patch(facecolor='orange', edgecolor='r', - label='Color Patch')] - -# Create the figure -fig, ax = plt.subplots() -ax.legend(handles=legend_elements, loc='center') - -plt.show() diff --git a/_downloads/e409107b5b9481fcdfb3d001defb4118/fahrenheit_celsius_scales.ipynb b/_downloads/e409107b5b9481fcdfb3d001defb4118/fahrenheit_celsius_scales.ipynb deleted file mode 100644 index 4a5aee99847..00000000000 --- a/_downloads/e409107b5b9481fcdfb3d001defb4118/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Different scales on the same axes\n\n\nDemo of how to display two scales on the left and right y axis.\n\nThis example uses the Fahrenheit and Celsius scales.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef fahrenheit2celsius(temp):\n \"\"\"\n Returns temperature in Celsius.\n \"\"\"\n return (5. / 9.) * (temp - 32)\n\n\ndef convert_ax_c_to_celsius(ax_f):\n \"\"\"\n Update second axis according with first axis.\n \"\"\"\n y1, y2 = ax_f.get_ylim()\n ax_c.set_ylim(fahrenheit2celsius(y1), fahrenheit2celsius(y2))\n ax_c.figure.canvas.draw()\n\nfig, ax_f = plt.subplots()\nax_c = ax_f.twinx()\n\n# automatically update ylim of ax2 when ylim of ax1 changes.\nax_f.callbacks.connect(\"ylim_changed\", convert_ax_c_to_celsius)\nax_f.plot(np.linspace(-40, 120, 100))\nax_f.set_xlim(0, 100)\n\nax_f.set_title('Two scales: Fahrenheit and Celsius')\nax_f.set_ylabel('Fahrenheit')\nax_c.set_ylabel('Celsius')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e41c1453506b97d894134bd7d4a34554/demo_anchored_direction_arrows.ipynb b/_downloads/e41c1453506b97d894134bd7d4a34554/demo_anchored_direction_arrows.ipynb deleted file mode 120000 index a6de3cbd1ce..00000000000 --- a/_downloads/e41c1453506b97d894134bd7d4a34554/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e41c1453506b97d894134bd7d4a34554/demo_anchored_direction_arrows.ipynb \ No newline at end of file diff --git a/_downloads/e41d1680a93a490689990af0797a91bd/tricontourf.py b/_downloads/e41d1680a93a490689990af0797a91bd/tricontourf.py deleted file mode 120000 index eae29094ec9..00000000000 --- a/_downloads/e41d1680a93a490689990af0797a91bd/tricontourf.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e41d1680a93a490689990af0797a91bd/tricontourf.py \ No newline at end of file diff --git a/_downloads/e41d341aa44473aa21b5a2e1167d92b9/custom_boxstyle01.ipynb b/_downloads/e41d341aa44473aa21b5a2e1167d92b9/custom_boxstyle01.ipynb deleted file mode 120000 index 058d3997f29..00000000000 --- a/_downloads/e41d341aa44473aa21b5a2e1167d92b9/custom_boxstyle01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e41d341aa44473aa21b5a2e1167d92b9/custom_boxstyle01.ipynb \ No newline at end of file diff --git a/_downloads/e4223ac22613c7c646d98e1c522d0b65/text_fontdict.py b/_downloads/e4223ac22613c7c646d98e1c522d0b65/text_fontdict.py deleted file mode 120000 index 1f100cf34f7..00000000000 --- a/_downloads/e4223ac22613c7c646d98e1c522d0b65/text_fontdict.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e4223ac22613c7c646d98e1c522d0b65/text_fontdict.py \ No newline at end of file diff --git a/_downloads/e42288196be6067f4b57c39eb5259c65/scalarformatter.ipynb b/_downloads/e42288196be6067f4b57c39eb5259c65/scalarformatter.ipynb deleted file mode 120000 index 2eba36051d2..00000000000 --- a/_downloads/e42288196be6067f4b57c39eb5259c65/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e42288196be6067f4b57c39eb5259c65/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/e425e5bbb7c0e8ac60f3e6ddea5d4e59/capstyle.ipynb b/_downloads/e425e5bbb7c0e8ac60f3e6ddea5d4e59/capstyle.ipynb deleted file mode 120000 index c75e9ba912d..00000000000 --- a/_downloads/e425e5bbb7c0e8ac60f3e6ddea5d4e59/capstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e425e5bbb7c0e8ac60f3e6ddea5d4e59/capstyle.ipynb \ No newline at end of file diff --git a/_downloads/e43287fa5e212f86c4ccf92320c52b51/bars3d.py b/_downloads/e43287fa5e212f86c4ccf92320c52b51/bars3d.py deleted file mode 120000 index 035b25985f8..00000000000 --- a/_downloads/e43287fa5e212f86c4ccf92320c52b51/bars3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e43287fa5e212f86c4ccf92320c52b51/bars3d.py \ No newline at end of file diff --git a/_downloads/e4345257ef7f21af00abb3c055cd768f/coords_demo.ipynb b/_downloads/e4345257ef7f21af00abb3c055cd768f/coords_demo.ipynb deleted file mode 100644 index a57433d8fc8..00000000000 --- a/_downloads/e4345257ef7f21af00abb3c055cd768f/coords_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Coords demo\n\n\nAn example of how to interact with the plotting canvas by connecting to move\nand click events.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.backend_bases import MouseButton\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2 * np.pi * t)\nfig, ax = plt.subplots()\nax.plot(t, s)\n\n\ndef on_move(event):\n # get the x and y pixel coords\n x, y = event.x, event.y\n if event.inaxes:\n ax = event.inaxes # the axes instance\n print('data coords %f %f' % (event.xdata, event.ydata))\n\n\ndef on_click(event):\n if event.button is MouseButton.LEFT:\n print('disconnecting callback')\n plt.disconnect(binding_id)\n\n\nbinding_id = plt.connect('motion_notify_event', on_move)\nplt.connect('button_press_event', on_click)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e4377d3a88a22bdc694d925889b400d0/axes_props.ipynb b/_downloads/e4377d3a88a22bdc694d925889b400d0/axes_props.ipynb deleted file mode 120000 index 4b49ffec72d..00000000000 --- a/_downloads/e4377d3a88a22bdc694d925889b400d0/axes_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e4377d3a88a22bdc694d925889b400d0/axes_props.ipynb \ No newline at end of file diff --git a/_downloads/e43a80b5ee7552340dac998204e62054/contour3d_3.py b/_downloads/e43a80b5ee7552340dac998204e62054/contour3d_3.py deleted file mode 100644 index 42f26f46dd1..00000000000 --- a/_downloads/e43a80b5ee7552340dac998204e62054/contour3d_3.py +++ /dev/null @@ -1,38 +0,0 @@ -''' -======================================== -Projecting contour profiles onto a graph -======================================== - -Demonstrates displaying a 3D surface while also projecting contour 'profiles' -onto the 'walls' of the graph. - -See contourf3d_demo2 for the filled version. -''' - -from mpl_toolkits.mplot3d import axes3d -import matplotlib.pyplot as plt -from matplotlib import cm - -fig = plt.figure() -ax = fig.gca(projection='3d') -X, Y, Z = axes3d.get_test_data(0.05) - -# Plot the 3D surface -ax.plot_surface(X, Y, Z, rstride=8, cstride=8, alpha=0.3) - -# Plot projections of the contours for each dimension. By choosing offsets -# that match the appropriate axes limits, the projected contours will sit on -# the 'walls' of the graph -cset = ax.contour(X, Y, Z, zdir='z', offset=-100, cmap=cm.coolwarm) -cset = ax.contour(X, Y, Z, zdir='x', offset=-40, cmap=cm.coolwarm) -cset = ax.contour(X, Y, Z, zdir='y', offset=40, cmap=cm.coolwarm) - -ax.set_xlim(-40, 40) -ax.set_ylim(-40, 40) -ax.set_zlim(-100, 100) - -ax.set_xlabel('X') -ax.set_ylabel('Y') -ax.set_zlabel('Z') - -plt.show() diff --git a/_downloads/e43b85c390c955fb7f4fba0019fdcfe7/collections.ipynb b/_downloads/e43b85c390c955fb7f4fba0019fdcfe7/collections.ipynb deleted file mode 120000 index db8d4fe7ceb..00000000000 --- a/_downloads/e43b85c390c955fb7f4fba0019fdcfe7/collections.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e43b85c390c955fb7f4fba0019fdcfe7/collections.ipynb \ No newline at end of file diff --git a/_downloads/e4421238d577bd823746b037bcaac73a/errorbar_subsample.py b/_downloads/e4421238d577bd823746b037bcaac73a/errorbar_subsample.py deleted file mode 100644 index 8b4d11087ac..00000000000 --- a/_downloads/e4421238d577bd823746b037bcaac73a/errorbar_subsample.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -================== -Errorbar Subsample -================== - -Demo for the errorevery keyword to show data full accuracy data plots with -few errorbars. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# example data -x = np.arange(0.1, 4, 0.1) -y = np.exp(-x) - -# example variable error bar values -yerr = 0.1 + 0.1 * np.sqrt(x) - - -# Now switch to a more OO interface to exercise more features. -fig, axs = plt.subplots(nrows=1, ncols=2, sharex=True) -ax = axs[0] -ax.errorbar(x, y, yerr=yerr) -ax.set_title('all errorbars') - -ax = axs[1] -ax.errorbar(x, y, yerr=yerr, errorevery=5) -ax.set_title('only every 5th errorbar') - - -fig.suptitle('Errorbar subsampling for better appearance') - -plt.show() diff --git a/_downloads/e456167237c110647b2857685a027344/multiple_figs_demo.ipynb b/_downloads/e456167237c110647b2857685a027344/multiple_figs_demo.ipynb deleted file mode 120000 index e93cc5fb87b..00000000000 --- a/_downloads/e456167237c110647b2857685a027344/multiple_figs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e456167237c110647b2857685a027344/multiple_figs_demo.ipynb \ No newline at end of file diff --git a/_downloads/e45b1baf620f87ad56203bb740887f8e/font_indexing.py b/_downloads/e45b1baf620f87ad56203bb740887f8e/font_indexing.py deleted file mode 120000 index 8eb2e6afba9..00000000000 --- a/_downloads/e45b1baf620f87ad56203bb740887f8e/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e45b1baf620f87ad56203bb740887f8e/font_indexing.py \ No newline at end of file diff --git a/_downloads/e45f193bebe5db835665575d4e057a0f/major_minor_demo.py b/_downloads/e45f193bebe5db835665575d4e057a0f/major_minor_demo.py deleted file mode 100644 index 1143bf3ebae..00000000000 --- a/_downloads/e45f193bebe5db835665575d4e057a0f/major_minor_demo.py +++ /dev/null @@ -1,76 +0,0 @@ -r""" -===================== -Major and minor ticks -===================== - -Demonstrate how to use major and minor tickers. - -The two relevant classes are `.Locator`\s and `.Formatter`\s. Locators -determine where the ticks are, and formatters control the formatting of tick -labels. - -Minor ticks are off by default (using `.NullLocator` and `.NullFormatter`). -Minor ticks can be turned on without labels by setting the minor locator. -Minor tick labels can be turned on by setting the minor formatter. - -`MultipleLocator` places ticks on multiples of some base. `FormatStrFormatter` -uses a format string (e.g., '%d' or '%1.2f' or '%1.1f cm' ) to format the tick -labels. - -`.pyplot.grid` changes the grid settings of the major ticks of the y and y axis -together. If you want to control the grid of the minor ticks for a given axis, -use for example :: - - ax.xaxis.grid(True, which='minor') - -Note that a given locator or formatter instance can only be used on a single -axis (because the locator stores references to the axis data and view limits). -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.ticker import (MultipleLocator, FormatStrFormatter, - AutoMinorLocator) - - -t = np.arange(0.0, 100.0, 0.1) -s = np.sin(0.1 * np.pi * t) * np.exp(-t * 0.01) - -fig, ax = plt.subplots() -ax.plot(t, s) - -# Make a plot with major ticks that are multiples of 20 and minor ticks that -# are multiples of 5. Label major ticks with '%d' formatting but don't label -# minor ticks. -ax.xaxis.set_major_locator(MultipleLocator(20)) -ax.xaxis.set_major_formatter(FormatStrFormatter('%d')) - -# For the minor ticks, use no labels; default NullFormatter. -ax.xaxis.set_minor_locator(MultipleLocator(5)) - -plt.show() - -############################################################################### -# Automatic tick selection for major and minor ticks. -# -# Use interactive pan and zoom to see how the tick intervals change. There will -# be either 4 or 5 minor tick intervals per major interval, depending on the -# major interval. -# -# One can supply an argument to AutoMinorLocator to specify a fixed number of -# minor intervals per major interval, e.g. ``AutoMinorLocator(2)`` would lead -# to a single minor tick between major ticks. - -t = np.arange(0.0, 100.0, 0.01) -s = np.sin(2 * np.pi * t) * np.exp(-t * 0.01) - -fig, ax = plt.subplots() -ax.plot(t, s) - -ax.xaxis.set_minor_locator(AutoMinorLocator()) - -ax.tick_params(which='both', width=2) -ax.tick_params(which='major', length=7) -ax.tick_params(which='minor', length=4, color='r') - -plt.show() diff --git a/_downloads/e46a8d77906904db48e0e64959be9b24/specgram_demo.py b/_downloads/e46a8d77906904db48e0e64959be9b24/specgram_demo.py deleted file mode 120000 index e9e3a99cd1e..00000000000 --- a/_downloads/e46a8d77906904db48e0e64959be9b24/specgram_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e46a8d77906904db48e0e64959be9b24/specgram_demo.py \ No newline at end of file diff --git a/_downloads/e46e9801f8d9919c7ae1ed11a4a51731/custom_shaded_3d_surface.ipynb b/_downloads/e46e9801f8d9919c7ae1ed11a4a51731/custom_shaded_3d_surface.ipynb deleted file mode 100644 index affe1d609ae..00000000000 --- a/_downloads/e46e9801f8d9919c7ae1ed11a4a51731/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom hillshading in a 3D surface plot\n\n\nDemonstrates using custom hillshading in a 3D surface plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib import cbook\nfrom matplotlib import cm\nfrom matplotlib.colors import LightSource\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Load and format data\nwith cbook.get_sample_data('jacksboro_fault_dem.npz') as file, \\\n np.load(file) as dem:\n z = dem['elevation']\n nrows, ncols = z.shape\n x = np.linspace(dem['xmin'], dem['xmax'], ncols)\n y = np.linspace(dem['ymin'], dem['ymax'], nrows)\n x, y = np.meshgrid(x, y)\n\nregion = np.s_[5:50, 5:50]\nx, y, z = x[region], y[region], z[region]\n\n# Set up plot\nfig, ax = plt.subplots(subplot_kw=dict(projection='3d'))\n\nls = LightSource(270, 45)\n# To use a custom hillshading mode, override the built-in shading and pass\n# in the rgb colors of the shaded surface calculated from \"shade\".\nrgb = ls.shade(z, cmap=cm.gist_earth, vert_exag=0.1, blend_mode='soft')\nsurf = ax.plot_surface(x, y, z, rstride=1, cstride=1, facecolors=rgb,\n linewidth=0, antialiased=False, shade=False)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e4756d15a448e594441c3af8121a0059/annotate_simple_coord01.ipynb b/_downloads/e4756d15a448e594441c3af8121a0059/annotate_simple_coord01.ipynb deleted file mode 100644 index 9fb1a80da63..00000000000 --- a/_downloads/e4756d15a448e594441c3af8121a0059/annotate_simple_coord01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple Coord01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(3, 2))\nan1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\nan2 = ax.annotate(\"Test 2\", xy=(1, 0.5), xycoords=an1,\n xytext=(30, 0), textcoords=\"offset points\",\n va=\"center\", ha=\"left\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e479b7c021901dfa1f3c60226a521902/subplot3d.ipynb b/_downloads/e479b7c021901dfa1f3c60226a521902/subplot3d.ipynb deleted file mode 120000 index 508ef47a651..00000000000 --- a/_downloads/e479b7c021901dfa1f3c60226a521902/subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e479b7c021901dfa1f3c60226a521902/subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/e479bd76c2564869d225f7da92059e7e/image_clip_path.ipynb b/_downloads/e479bd76c2564869d225f7da92059e7e/image_clip_path.ipynb deleted file mode 100644 index 6fcf3f9524b..00000000000 --- a/_downloads/e479bd76c2564869d225f7da92059e7e/image_clip_path.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Clipping images with patches\n\n\nDemo of image that's been clipped by a circular patch.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nimport matplotlib.cbook as cbook\n\n\nwith cbook.get_sample_data('grace_hopper.png') as image_file:\n image = plt.imread(image_file)\n\nfig, ax = plt.subplots()\nim = ax.imshow(image)\npatch = patches.Circle((260, 200), radius=200, transform=ax.transData)\nim.set_clip_path(patch)\n\nax.axis('off')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow\nmatplotlib.artist.Artist.set_clip_path" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e47f08e6d66558b2494a9172fc01d302/fonts_demo_kw.py b/_downloads/e47f08e6d66558b2494a9172fc01d302/fonts_demo_kw.py deleted file mode 120000 index 802a5121969..00000000000 --- a/_downloads/e47f08e6d66558b2494a9172fc01d302/fonts_demo_kw.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e47f08e6d66558b2494a9172fc01d302/fonts_demo_kw.py \ No newline at end of file diff --git a/_downloads/e48226ad2b0cf3d29c49a9c78f0bfc28/table_demo.ipynb b/_downloads/e48226ad2b0cf3d29c49a9c78f0bfc28/table_demo.ipynb deleted file mode 120000 index bdcd5589196..00000000000 --- a/_downloads/e48226ad2b0cf3d29c49a9c78f0bfc28/table_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e48226ad2b0cf3d29c49a9c78f0bfc28/table_demo.ipynb \ No newline at end of file diff --git a/_downloads/e49713273d398a330ec193a9bd7c3b44/boxplot_demo.ipynb b/_downloads/e49713273d398a330ec193a9bd7c3b44/boxplot_demo.ipynb deleted file mode 100644 index d70139db775..00000000000 --- a/_downloads/e49713273d398a330ec193a9bd7c3b44/boxplot_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Boxplots\n\n\nVisualizing boxplots with matplotlib.\n\nThe following examples show off how to visualize boxplots with\nMatplotlib. There are many options to control their appearance and\nthe statistics that they use to summarize the data.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.patches import Polygon\n\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# fake up some data\nspread = np.random.rand(50) * 100\ncenter = np.ones(25) * 50\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\ndata = np.concatenate((spread, center, flier_high, flier_low))\n\nfig, axs = plt.subplots(2, 3)\n\n# basic plot\naxs[0, 0].boxplot(data)\naxs[0, 0].set_title('basic plot')\n\n# notched plot\naxs[0, 1].boxplot(data, 1)\naxs[0, 1].set_title('notched plot')\n\n# change outlier point symbols\naxs[0, 2].boxplot(data, 0, 'gD')\naxs[0, 2].set_title('change outlier\\npoint symbols')\n\n# don't show outlier points\naxs[1, 0].boxplot(data, 0, '')\naxs[1, 0].set_title(\"don't show\\noutlier points\")\n\n# horizontal boxes\naxs[1, 1].boxplot(data, 0, 'rs', 0)\naxs[1, 1].set_title('horizontal boxes')\n\n# change whisker length\naxs[1, 2].boxplot(data, 0, 'rs', 0, 0.75)\naxs[1, 2].set_title('change whisker length')\n\nfig.subplots_adjust(left=0.08, right=0.98, bottom=0.05, top=0.9,\n hspace=0.4, wspace=0.3)\n\n# fake up some more data\nspread = np.random.rand(50) * 100\ncenter = np.ones(25) * 40\nflier_high = np.random.rand(10) * 100 + 100\nflier_low = np.random.rand(10) * -100\nd2 = np.concatenate((spread, center, flier_high, flier_low))\ndata.shape = (-1, 1)\nd2.shape = (-1, 1)\n# Making a 2-D array only works if all the columns are the\n# same length. If they are not, then use a list instead.\n# This is actually more efficient because boxplot converts\n# a 2-D array into a list of vectors internally anyway.\ndata = [data, d2, d2[::2, 0]]\n\n# Multiple box plots on one Axes\nfig, ax = plt.subplots()\nax.boxplot(data)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Below we'll generate data from five different probability distributions,\neach with different characteristics. We want to play with how an IID\nbootstrap resample of the data preserves the distributional\nproperties of the original sample, and a boxplot is one visual tool\nto make this assessment\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "random_dists = ['Normal(1,1)', ' Lognormal(1,1)', 'Exp(1)', 'Gumbel(6,4)',\n 'Triangular(2,9,11)']\nN = 500\n\nnorm = np.random.normal(1, 1, N)\nlogn = np.random.lognormal(1, 1, N)\nexpo = np.random.exponential(1, N)\ngumb = np.random.gumbel(6, 4, N)\ntria = np.random.triangular(2, 9, 11, N)\n\n# Generate some random indices that we'll use to resample the original data\n# arrays. For code brevity, just use the same random indices for each array\nbootstrap_indices = np.random.randint(0, N, N)\ndata = [\n norm, norm[bootstrap_indices],\n logn, logn[bootstrap_indices],\n expo, expo[bootstrap_indices],\n gumb, gumb[bootstrap_indices],\n tria, tria[bootstrap_indices],\n]\n\nfig, ax1 = plt.subplots(figsize=(10, 6))\nfig.canvas.set_window_title('A Boxplot Example')\nfig.subplots_adjust(left=0.075, right=0.95, top=0.9, bottom=0.25)\n\nbp = ax1.boxplot(data, notch=0, sym='+', vert=1, whis=1.5)\nplt.setp(bp['boxes'], color='black')\nplt.setp(bp['whiskers'], color='black')\nplt.setp(bp['fliers'], color='red', marker='+')\n\n# Add a horizontal grid to the plot, but make it very light in color\n# so we can use it for reading data values but not be distracting\nax1.yaxis.grid(True, linestyle='-', which='major', color='lightgrey',\n alpha=0.5)\n\n# Hide these grid behind plot objects\nax1.set_axisbelow(True)\nax1.set_title('Comparison of IID Bootstrap Resampling Across Five Distributions')\nax1.set_xlabel('Distribution')\nax1.set_ylabel('Value')\n\n# Now fill the boxes with desired colors\nbox_colors = ['darkkhaki', 'royalblue']\nnum_boxes = len(data)\nmedians = np.empty(num_boxes)\nfor i in range(num_boxes):\n box = bp['boxes'][i]\n boxX = []\n boxY = []\n for j in range(5):\n boxX.append(box.get_xdata()[j])\n boxY.append(box.get_ydata()[j])\n box_coords = np.column_stack([boxX, boxY])\n # Alternate between Dark Khaki and Royal Blue\n ax1.add_patch(Polygon(box_coords, facecolor=box_colors[i % 2]))\n # Now draw the median lines back over what we just filled in\n med = bp['medians'][i]\n medianX = []\n medianY = []\n for j in range(2):\n medianX.append(med.get_xdata()[j])\n medianY.append(med.get_ydata()[j])\n ax1.plot(medianX, medianY, 'k')\n medians[i] = medianY[0]\n # Finally, overplot the sample averages, with horizontal alignment\n # in the center of each box\n ax1.plot(np.average(med.get_xdata()), np.average(data[i]),\n color='w', marker='*', markeredgecolor='k')\n\n# Set the axes ranges and axes labels\nax1.set_xlim(0.5, num_boxes + 0.5)\ntop = 40\nbottom = -5\nax1.set_ylim(bottom, top)\nax1.set_xticklabels(np.repeat(random_dists, 2),\n rotation=45, fontsize=8)\n\n# Due to the Y-axis scale being different across samples, it can be\n# hard to compare differences in medians across the samples. Add upper\n# X-axis tick labels with the sample medians to aid in comparison\n# (just use two decimal places of precision)\npos = np.arange(num_boxes) + 1\nupper_labels = [str(np.round(s, 2)) for s in medians]\nweights = ['bold', 'semibold']\nfor tick, label in zip(range(num_boxes), ax1.get_xticklabels()):\n k = tick % 2\n ax1.text(pos[tick], .95, upper_labels[tick],\n transform=ax1.get_xaxis_transform(),\n horizontalalignment='center', size='x-small',\n weight=weights[k], color=box_colors[k])\n\n# Finally, add a basic legend\nfig.text(0.80, 0.08, f'{N} Random Numbers',\n backgroundcolor=box_colors[0], color='black', weight='roman',\n size='x-small')\nfig.text(0.80, 0.045, 'IID Bootstrap Resample',\n backgroundcolor=box_colors[1],\n color='white', weight='roman', size='x-small')\nfig.text(0.80, 0.015, '*', color='white', backgroundcolor='silver',\n weight='roman', size='medium')\nfig.text(0.815, 0.013, ' Average Value', color='black', weight='roman',\n size='x-small')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we write a custom function to bootstrap confidence intervals.\nWe can then use the boxplot along with this function to show these intervals.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def fakeBootStrapper(n):\n '''\n This is just a placeholder for the user's method of\n bootstrapping the median and its confidence intervals.\n\n Returns an arbitrary median and confidence intervals\n packed into a tuple\n '''\n if n == 1:\n med = 0.1\n CI = (-0.25, 0.25)\n else:\n med = 0.2\n CI = (-0.35, 0.50)\n\n return med, CI\n\ninc = 0.1\ne1 = np.random.normal(0, 1, size=500)\ne2 = np.random.normal(0, 1, size=500)\ne3 = np.random.normal(0, 1 + inc, size=500)\ne4 = np.random.normal(0, 1 + 2*inc, size=500)\n\ntreatments = [e1, e2, e3, e4]\nmed1, CI1 = fakeBootStrapper(1)\nmed2, CI2 = fakeBootStrapper(2)\nmedians = [None, None, med1, med2]\nconf_intervals = [None, None, CI1, CI2]\n\nfig, ax = plt.subplots()\npos = np.array(range(len(treatments))) + 1\nbp = ax.boxplot(treatments, sym='k+', positions=pos,\n notch=1, bootstrap=5000,\n usermedians=medians,\n conf_intervals=conf_intervals)\n\nax.set_xlabel('treatment')\nax.set_ylabel('response')\nplt.setp(bp['whiskers'], color='k', linestyle='-')\nplt.setp(bp['fliers'], markersize=3.0)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e49d8c32b32d38491e0b45d2c96f442e/pathpatch3d.py b/_downloads/e49d8c32b32d38491e0b45d2c96f442e/pathpatch3d.py deleted file mode 120000 index 60b6a40d210..00000000000 --- a/_downloads/e49d8c32b32d38491e0b45d2c96f442e/pathpatch3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e49d8c32b32d38491e0b45d2c96f442e/pathpatch3d.py \ No newline at end of file diff --git a/_downloads/e49e19071e334ce6f4c9e6be130788cf/radio_buttons.ipynb b/_downloads/e49e19071e334ce6f4c9e6be130788cf/radio_buttons.ipynb deleted file mode 120000 index def5e42e87c..00000000000 --- a/_downloads/e49e19071e334ce6f4c9e6be130788cf/radio_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e49e19071e334ce6f4c9e6be130788cf/radio_buttons.ipynb \ No newline at end of file diff --git a/_downloads/e4acf572196121a553d12001911cc494/engineering_formatter.ipynb b/_downloads/e4acf572196121a553d12001911cc494/engineering_formatter.ipynb deleted file mode 120000 index 5d355a9fefb..00000000000 --- a/_downloads/e4acf572196121a553d12001911cc494/engineering_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e4acf572196121a553d12001911cc494/engineering_formatter.ipynb \ No newline at end of file diff --git a/_downloads/e4b1cabb5977c2ba648476b0ca8cbb78/lines3d.ipynb b/_downloads/e4b1cabb5977c2ba648476b0ca8cbb78/lines3d.ipynb deleted file mode 100644 index 4a329d8d61e..00000000000 --- a/_downloads/e4b1cabb5977c2ba648476b0ca8cbb78/lines3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parametric Curve\n\n\nThis example demonstrates plotting a parametric curve in 3D.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\nplt.rcParams['legend.fontsize'] = 10\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Prepare arrays x, y, z\ntheta = np.linspace(-4 * np.pi, 4 * np.pi, 100)\nz = np.linspace(-2, 2, 100)\nr = z**2 + 1\nx = r * np.sin(theta)\ny = r * np.cos(theta)\n\nax.plot(x, y, z, label='parametric curve')\nax.legend()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e4b39decb09960e9c836b3965e9b49f3/demo_edge_colorbar.py b/_downloads/e4b39decb09960e9c836b3965e9b49f3/demo_edge_colorbar.py deleted file mode 120000 index 663ebf5497c..00000000000 --- a/_downloads/e4b39decb09960e9c836b3965e9b49f3/demo_edge_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e4b39decb09960e9c836b3965e9b49f3/demo_edge_colorbar.py \ No newline at end of file diff --git a/_downloads/e4b69e79b080b0ee2dcdf971acbbad20/coords_demo.ipynb b/_downloads/e4b69e79b080b0ee2dcdf971acbbad20/coords_demo.ipynb deleted file mode 120000 index 703a21504bf..00000000000 --- a/_downloads/e4b69e79b080b0ee2dcdf971acbbad20/coords_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e4b69e79b080b0ee2dcdf971acbbad20/coords_demo.ipynb \ No newline at end of file diff --git a/_downloads/e4b847285cbb298ca797ed3ecb969f44/ggplot.py b/_downloads/e4b847285cbb298ca797ed3ecb969f44/ggplot.py deleted file mode 120000 index 52bdefa4638..00000000000 --- a/_downloads/e4b847285cbb298ca797ed3ecb969f44/ggplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e4b847285cbb298ca797ed3ecb969f44/ggplot.py \ No newline at end of file diff --git a/_downloads/e4b90d70b3daca90b69de650261fe076/pyplot_mathtext.ipynb b/_downloads/e4b90d70b3daca90b69de650261fe076/pyplot_mathtext.ipynb deleted file mode 120000 index 4bfcba373c0..00000000000 --- a/_downloads/e4b90d70b3daca90b69de650261fe076/pyplot_mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e4b90d70b3daca90b69de650261fe076/pyplot_mathtext.ipynb \ No newline at end of file diff --git a/_downloads/e4b9e5738841231f0661eabc38f1dec9/shading_example.py b/_downloads/e4b9e5738841231f0661eabc38f1dec9/shading_example.py deleted file mode 120000 index fa4ab1025f8..00000000000 --- a/_downloads/e4b9e5738841231f0661eabc38f1dec9/shading_example.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e4b9e5738841231f0661eabc38f1dec9/shading_example.py \ No newline at end of file diff --git a/_downloads/e4ba394a3ddfb22ccc50a8047f9a32b3/bar.ipynb b/_downloads/e4ba394a3ddfb22ccc50a8047f9a32b3/bar.ipynb deleted file mode 120000 index 94a4c453ae3..00000000000 --- a/_downloads/e4ba394a3ddfb22ccc50a8047f9a32b3/bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e4ba394a3ddfb22ccc50a8047f9a32b3/bar.ipynb \ No newline at end of file diff --git a/_downloads/e4bbf7b2e61cd96b51d7ae53e3717c3a/subplots_adjust.ipynb b/_downloads/e4bbf7b2e61cd96b51d7ae53e3717c3a/subplots_adjust.ipynb deleted file mode 120000 index 230131e5484..00000000000 --- a/_downloads/e4bbf7b2e61cd96b51d7ae53e3717c3a/subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e4bbf7b2e61cd96b51d7ae53e3717c3a/subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/e4d942ec32b738d8f87246d8a4586bc8/annotate_simple_coord03.ipynb b/_downloads/e4d942ec32b738d8f87246d8a4586bc8/annotate_simple_coord03.ipynb deleted file mode 120000 index e17440259d6..00000000000 --- a/_downloads/e4d942ec32b738d8f87246d8a4586bc8/annotate_simple_coord03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e4d942ec32b738d8f87246d8a4586bc8/annotate_simple_coord03.ipynb \ No newline at end of file diff --git a/_downloads/e4e3bbd0b1c82e93b916e64bd632f7a9/timeline.py b/_downloads/e4e3bbd0b1c82e93b916e64bd632f7a9/timeline.py deleted file mode 120000 index 0c282453c5f..00000000000 --- a/_downloads/e4e3bbd0b1c82e93b916e64bd632f7a9/timeline.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e4e3bbd0b1c82e93b916e64bd632f7a9/timeline.py \ No newline at end of file diff --git a/_downloads/e4ecff637819b7faf5ea0ba740cf140a/colorbar_tick_labelling_demo.py b/_downloads/e4ecff637819b7faf5ea0ba740cf140a/colorbar_tick_labelling_demo.py deleted file mode 100644 index fd19f3a93ce..00000000000 --- a/_downloads/e4ecff637819b7faf5ea0ba740cf140a/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -============================ -Colorbar Tick Labelling Demo -============================ - -Produce custom labelling for a colorbar. - -Contributed by Scott Sinclair -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import cm -from numpy.random import randn - -############################################################################### -# Make plot with vertical (default) colorbar - -fig, ax = plt.subplots() - -data = np.clip(randn(250, 250), -1, 1) - -cax = ax.imshow(data, interpolation='nearest', cmap=cm.coolwarm) -ax.set_title('Gaussian noise with vertical colorbar') - -# Add colorbar, make sure to specify tick locations to match desired ticklabels -cbar = fig.colorbar(cax, ticks=[-1, 0, 1]) -cbar.ax.set_yticklabels(['< -1', '0', '> 1']) # vertically oriented colorbar - -############################################################################### -# Make plot with horizontal colorbar - -fig, ax = plt.subplots() - -data = np.clip(randn(250, 250), -1, 1) - -cax = ax.imshow(data, interpolation='nearest', cmap=cm.afmhot) -ax.set_title('Gaussian noise with horizontal colorbar') - -cbar = fig.colorbar(cax, ticks=[-1, 0, 1], orientation='horizontal') -cbar.ax.set_xticklabels(['Low', 'Medium', 'High']) # horizontal colorbar - -plt.show() diff --git a/_downloads/e4f4e27de9a7d31913f28ff6ca5174c8/axes_margins.py b/_downloads/e4f4e27de9a7d31913f28ff6ca5174c8/axes_margins.py deleted file mode 120000 index c60a39f1397..00000000000 --- a/_downloads/e4f4e27de9a7d31913f28ff6ca5174c8/axes_margins.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e4f4e27de9a7d31913f28ff6ca5174c8/axes_margins.py \ No newline at end of file diff --git a/_downloads/e4f6590279f4f3d3016b8ca913ed0ced/trigradient_demo.ipynb b/_downloads/e4f6590279f4f3d3016b8ca913ed0ced/trigradient_demo.ipynb deleted file mode 100644 index f123f50608f..00000000000 --- a/_downloads/e4f6590279f4f3d3016b8ca913ed0ced/trigradient_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Trigradient Demo\n\n\nDemonstrates computation of gradient with\n`matplotlib.tri.CubicTriInterpolator`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.tri import (\n Triangulation, UniformTriRefiner, CubicTriInterpolator)\nimport matplotlib.pyplot as plt\nimport matplotlib.cm as cm\nimport numpy as np\n\n\n#-----------------------------------------------------------------------------\n# Electrical potential of a dipole\n#-----------------------------------------------------------------------------\ndef dipole_potential(x, y):\n \"\"\"The electric dipole potential V, at position *x*, *y*.\"\"\"\n r_sq = x**2 + y**2\n theta = np.arctan2(y, x)\n z = np.cos(theta)/r_sq\n return (np.max(z) - z) / (np.max(z) - np.min(z))\n\n\n#-----------------------------------------------------------------------------\n# Creating a Triangulation\n#-----------------------------------------------------------------------------\n# First create the x and y coordinates of the points.\nn_angles = 30\nn_radii = 10\nmin_radius = 0.2\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nV = dipole_potential(x, y)\n\n# Create the Triangulation; no triangles specified so Delaunay triangulation\n# created.\ntriang = Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)\n\n#-----------------------------------------------------------------------------\n# Refine data - interpolates the electrical potential V\n#-----------------------------------------------------------------------------\nrefiner = UniformTriRefiner(triang)\ntri_refi, z_test_refi = refiner.refine_field(V, subdiv=3)\n\n#-----------------------------------------------------------------------------\n# Computes the electrical field (Ex, Ey) as gradient of electrical potential\n#-----------------------------------------------------------------------------\ntci = CubicTriInterpolator(triang, -V)\n# Gradient requested here at the mesh nodes but could be anywhere else:\n(Ex, Ey) = tci.gradient(triang.x, triang.y)\nE_norm = np.sqrt(Ex**2 + Ey**2)\n\n#-----------------------------------------------------------------------------\n# Plot the triangulation, the potential iso-contours and the vector field\n#-----------------------------------------------------------------------------\nfig, ax = plt.subplots()\nax.set_aspect('equal')\n# Enforce the margins, and enlarge them to give room for the vectors.\nax.use_sticky_edges = False\nax.margins(0.07)\n\nax.triplot(triang, color='0.8')\n\nlevels = np.arange(0., 1., 0.01)\ncmap = cm.get_cmap(name='hot', lut=None)\nax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap,\n linewidths=[2.0, 1.0, 1.0, 1.0])\n# Plots direction of the electrical vector field\nax.quiver(triang.x, triang.y, Ex/E_norm, Ey/E_norm,\n units='xy', scale=10., zorder=3, color='blue',\n width=0.007, headwidth=3., headlength=4.)\n\nax.set_title('Gradient plot: an electrical dipole')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.triplot\nmatplotlib.pyplot.triplot\nmatplotlib.tri\nmatplotlib.tri.Triangulation\nmatplotlib.tri.CubicTriInterpolator\nmatplotlib.tri.CubicTriInterpolator.gradient\nmatplotlib.tri.UniformTriRefiner\nmatplotlib.axes.Axes.quiver\nmatplotlib.pyplot.quiver" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e4febba1ef2aeb7dae3ea4636ae5d136/embedding_in_wx5_sgskip.ipynb b/_downloads/e4febba1ef2aeb7dae3ea4636ae5d136/embedding_in_wx5_sgskip.ipynb deleted file mode 120000 index ce35879b642..00000000000 --- a/_downloads/e4febba1ef2aeb7dae3ea4636ae5d136/embedding_in_wx5_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e4febba1ef2aeb7dae3ea4636ae5d136/embedding_in_wx5_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/e503f511d04f1500e8f03670bd290883/log_bar.ipynb b/_downloads/e503f511d04f1500e8f03670bd290883/log_bar.ipynb deleted file mode 100644 index 1b3a5bfffc3..00000000000 --- a/_downloads/e503f511d04f1500e8f03670bd290883/log_bar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Log Bar\n\n\nPlotting a bar chart with a logarithmic y-axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\ndata = ((3, 1000), (10, 3), (100, 30), (500, 800), (50, 1))\n\ndim = len(data[0])\nw = 0.75\ndimw = w / dim\n\nfig, ax = plt.subplots()\nx = np.arange(len(data))\nfor i in range(len(data[0])):\n y = [d[i] for d in data]\n b = ax.bar(x + i * dimw, y, dimw, bottom=0.001)\n\nax.set_xticks(x + dimw / 2, map(str, x))\nax.set_yscale('log')\n\nax.set_xlabel('x')\nax.set_ylabel('y')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e5073fa1424a892b2cab4732450c5244/scatter_demo2.py b/_downloads/e5073fa1424a892b2cab4732450c5244/scatter_demo2.py deleted file mode 120000 index ea7e58646b8..00000000000 --- a/_downloads/e5073fa1424a892b2cab4732450c5244/scatter_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e5073fa1424a892b2cab4732450c5244/scatter_demo2.py \ No newline at end of file diff --git a/_downloads/e50a80167762974fb388551f059a7a4d/arrow_guide.py b/_downloads/e50a80167762974fb388551f059a7a4d/arrow_guide.py deleted file mode 100644 index e895b48cdd7..00000000000 --- a/_downloads/e50a80167762974fb388551f059a7a4d/arrow_guide.py +++ /dev/null @@ -1,110 +0,0 @@ -""" -=========== -Arrow guide -=========== - -Adding arrow patches to plots. - -Arrows are often used to annotate plots. This tutorial shows how to plot arrows -that behave differently when the data limits on a plot are changed. In general, -points on a plot can either be fixed in "data space" or "display space". -Something plotted in data space moves when the data limits are altered - an -example would the points in a scatter plot. Something plotted in display space -stays static when data limits are altered - an example would be a figure title -or the axis labels. - -Arrows consist of a head (and possibly a tail) and a stem drawn between a -start point and end point, called 'anchor points' from now on. -Here we show three use cases for plotting arrows, depending on whether the -head or anchor points need to be fixed in data or display space: - - 1. Head shape fixed in display space, anchor points fixed in data space - 2. Head shape and anchor points fixed in display space - 3. Entire patch fixed in data space - -Below each use case is presented in turn. -""" -import matplotlib.patches as mpatches -import matplotlib.pyplot as plt -x_tail = 0.1 -y_tail = 0.1 -x_head = 0.9 -y_head = 0.9 -dx = x_head - x_tail -dy = y_head - y_tail - - -############################################################################### -# Head shape fixed in display space and anchor points fixed in data space -# ----------------------------------------------------------------------- -# -# This is useful if you are annotating a plot, and don't want the arrow to -# to change shape or position if you pan or scale the plot. Note that when -# the axis limits change -# -# In this case we use `.patches.FancyArrowPatch` -# -# Note that when the axis limits are changed, the arrow shape stays the same, -# but the anchor points move. - -fig, axs = plt.subplots(nrows=2) -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100) -axs[0].add_patch(arrow) - -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100) -axs[1].add_patch(arrow) -axs[1].set_xlim(0, 2) -axs[1].set_ylim(0, 2) - -############################################################################### -# Head shape and anchor points fixed in display space -# --------------------------------------------------- -# -# This is useful if you are annotating a plot, and don't want the arrow to -# to change shape or position if you pan or scale the plot. -# -# In this case we use `.patches.FancyArrowPatch`, and pass the keyword argument -# ``transform=ax.transAxes`` where ``ax`` is the axes we are adding the patch -# to. -# -# Note that when the axis limits are changed, the arrow shape and location -# stays the same. - -fig, axs = plt.subplots(nrows=2) -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100, - transform=axs[0].transAxes) -axs[0].add_patch(arrow) - -arrow = mpatches.FancyArrowPatch((x_tail, y_tail), (dx, dy), - mutation_scale=100, - transform=axs[1].transAxes) -axs[1].add_patch(arrow) -axs[1].set_xlim(0, 2) -axs[1].set_ylim(0, 2) - - -############################################################################### -# Head shape and anchor points fixed in data space -# ------------------------------------------------ -# -# In this case we use `.patches.Arrow` -# -# Note that when the axis limits are changed, the arrow shape and location -# changes. - -fig, axs = plt.subplots(nrows=2) - -arrow = mpatches.Arrow(x_tail, y_tail, dx, dy) -axs[0].add_patch(arrow) - -arrow = mpatches.Arrow(x_tail, y_tail, dx, dy) -axs[1].add_patch(arrow) -axs[1].set_xlim(0, 2) -axs[1].set_ylim(0, 2) - -############################################################################### - -plt.show() diff --git a/_downloads/e50f8a452f26fe3a91153a90215f6d8b/customized_violin.ipynb b/_downloads/e50f8a452f26fe3a91153a90215f6d8b/customized_violin.ipynb deleted file mode 120000 index 5e54f316342..00000000000 --- a/_downloads/e50f8a452f26fe3a91153a90215f6d8b/customized_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e50f8a452f26fe3a91153a90215f6d8b/customized_violin.ipynb \ No newline at end of file diff --git a/_downloads/e515bbb9631bbddbc3347b3d1c45a892/tick-locators.py b/_downloads/e515bbb9631bbddbc3347b3d1c45a892/tick-locators.py deleted file mode 100644 index 7586739558a..00000000000 --- a/_downloads/e515bbb9631bbddbc3347b3d1c45a892/tick-locators.py +++ /dev/null @@ -1,101 +0,0 @@ -""" -============= -Tick locators -============= - -Show the different tick locators. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker - - -# Setup a plot such that only the bottom spine is shown -def setup(ax): - ax.spines['right'].set_color('none') - ax.spines['left'].set_color('none') - ax.yaxis.set_major_locator(ticker.NullLocator()) - ax.spines['top'].set_color('none') - ax.xaxis.set_ticks_position('bottom') - ax.tick_params(which='major', width=1.00) - ax.tick_params(which='major', length=5) - ax.tick_params(which='minor', width=0.75) - ax.tick_params(which='minor', length=2.5) - ax.set_xlim(0, 5) - ax.set_ylim(0, 1) - ax.patch.set_alpha(0.0) - - -plt.figure(figsize=(8, 6)) -n = 8 - -# Null Locator -ax = plt.subplot(n, 1, 1) -setup(ax) -ax.xaxis.set_major_locator(ticker.NullLocator()) -ax.xaxis.set_minor_locator(ticker.NullLocator()) -ax.text(0.0, 0.1, "NullLocator()", fontsize=14, transform=ax.transAxes) - -# Multiple Locator -ax = plt.subplot(n, 1, 2) -setup(ax) -ax.xaxis.set_major_locator(ticker.MultipleLocator(0.5)) -ax.xaxis.set_minor_locator(ticker.MultipleLocator(0.1)) -ax.text(0.0, 0.1, "MultipleLocator(0.5)", fontsize=14, - transform=ax.transAxes) - -# Fixed Locator -ax = plt.subplot(n, 1, 3) -setup(ax) -majors = [0, 1, 5] -ax.xaxis.set_major_locator(ticker.FixedLocator(majors)) -minors = np.linspace(0, 1, 11)[1:-1] -ax.xaxis.set_minor_locator(ticker.FixedLocator(minors)) -ax.text(0.0, 0.1, "FixedLocator([0, 1, 5])", fontsize=14, - transform=ax.transAxes) - -# Linear Locator -ax = plt.subplot(n, 1, 4) -setup(ax) -ax.xaxis.set_major_locator(ticker.LinearLocator(3)) -ax.xaxis.set_minor_locator(ticker.LinearLocator(31)) -ax.text(0.0, 0.1, "LinearLocator(numticks=3)", - fontsize=14, transform=ax.transAxes) - -# Index Locator -ax = plt.subplot(n, 1, 5) -setup(ax) -ax.plot(range(0, 5), [0]*5, color='white') -ax.xaxis.set_major_locator(ticker.IndexLocator(base=.5, offset=.25)) -ax.text(0.0, 0.1, "IndexLocator(base=0.5, offset=0.25)", - fontsize=14, transform=ax.transAxes) - -# Auto Locator -ax = plt.subplot(n, 1, 6) -setup(ax) -ax.xaxis.set_major_locator(ticker.AutoLocator()) -ax.xaxis.set_minor_locator(ticker.AutoMinorLocator()) -ax.text(0.0, 0.1, "AutoLocator()", fontsize=14, transform=ax.transAxes) - -# MaxN Locator -ax = plt.subplot(n, 1, 7) -setup(ax) -ax.xaxis.set_major_locator(ticker.MaxNLocator(4)) -ax.xaxis.set_minor_locator(ticker.MaxNLocator(40)) -ax.text(0.0, 0.1, "MaxNLocator(n=4)", fontsize=14, transform=ax.transAxes) - -# Log Locator -ax = plt.subplot(n, 1, 8) -setup(ax) -ax.set_xlim(10**3, 10**10) -ax.set_xscale('log') -ax.xaxis.set_major_locator(ticker.LogLocator(base=10.0, numticks=15)) -ax.text(0.0, 0.1, "LogLocator(base=10, numticks=15)", - fontsize=15, transform=ax.transAxes) - -# Push the top of the top axes outside the figure because we only show the -# bottom spine. -plt.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05) - -plt.show() diff --git a/_downloads/e517d1820d6c4b11b0131e000aa95e73/boxplot_vs_violin.py b/_downloads/e517d1820d6c4b11b0131e000aa95e73/boxplot_vs_violin.py deleted file mode 120000 index c1606da3b94..00000000000 --- a/_downloads/e517d1820d6c4b11b0131e000aa95e73/boxplot_vs_violin.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e517d1820d6c4b11b0131e000aa95e73/boxplot_vs_violin.py \ No newline at end of file diff --git a/_downloads/e51a0bf93e64f64bcdf39a379238e634/ellipse_demo.py b/_downloads/e51a0bf93e64f64bcdf39a379238e634/ellipse_demo.py deleted file mode 120000 index 6399ef47a9b..00000000000 --- a/_downloads/e51a0bf93e64f64bcdf39a379238e634/ellipse_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e51a0bf93e64f64bcdf39a379238e634/ellipse_demo.py \ No newline at end of file diff --git a/_downloads/e51c5a6c23aa393857ae153c44ac1113/colorbar_tick_labelling_demo.py b/_downloads/e51c5a6c23aa393857ae153c44ac1113/colorbar_tick_labelling_demo.py deleted file mode 120000 index 920e341061b..00000000000 --- a/_downloads/e51c5a6c23aa393857ae153c44ac1113/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/e51c5a6c23aa393857ae153c44ac1113/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/e5204e85648498209a1e591be3f72bba/demo_gridspec01.ipynb b/_downloads/e5204e85648498209a1e591be3f72bba/demo_gridspec01.ipynb deleted file mode 100644 index a82aafbac36..00000000000 --- a/_downloads/e5204e85648498209a1e591be3f72bba/demo_gridspec01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# subplot2grid demo\n\n\nThis example demonstrates the use of `plt.subplot2grid` to generate subplots.\nUsing `GridSpec`, as demonstrated in :doc:`/gallery/userdemo/demo_gridspec03`\nis generally preferred.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef annotate_axes(fig):\n for i, ax in enumerate(fig.axes):\n ax.text(0.5, 0.5, \"ax%d\" % (i+1), va=\"center\", ha=\"center\")\n ax.tick_params(labelbottom=False, labelleft=False)\n\n\nfig = plt.figure()\nax1 = plt.subplot2grid((3, 3), (0, 0), colspan=3)\nax2 = plt.subplot2grid((3, 3), (1, 0), colspan=2)\nax3 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)\nax4 = plt.subplot2grid((3, 3), (2, 0))\nax5 = plt.subplot2grid((3, 3), (2, 1))\n\nannotate_axes(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e5249f758f874f1a31165243cc024030/spines_dropped.py b/_downloads/e5249f758f874f1a31165243cc024030/spines_dropped.py deleted file mode 100644 index 4b7bbbac3a7..00000000000 --- a/_downloads/e5249f758f874f1a31165243cc024030/spines_dropped.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -============== -Dropped spines -============== - -Demo of spines offset from the axes (a.k.a. "dropped spines"). -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, ax = plt.subplots() - -image = np.random.uniform(size=(10, 10)) -ax.imshow(image, cmap=plt.cm.gray, interpolation='nearest') -ax.set_title('dropped spines') - -# Move left and bottom spines outward by 10 points -ax.spines['left'].set_position(('outward', 10)) -ax.spines['bottom'].set_position(('outward', 10)) -# Hide the right and top spines -ax.spines['right'].set_visible(False) -ax.spines['top'].set_visible(False) -# Only show ticks on the left and bottom spines -ax.yaxis.set_ticks_position('left') -ax.xaxis.set_ticks_position('bottom') - -plt.show() diff --git a/_downloads/e52a9a2c83ddd28d71a9a9803e9ffb6b/patch_collection.py b/_downloads/e52a9a2c83ddd28d71a9a9803e9ffb6b/patch_collection.py deleted file mode 100644 index 05e343465ff..00000000000 --- a/_downloads/e52a9a2c83ddd28d71a9a9803e9ffb6b/patch_collection.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============================ -Circles, Wedges and Polygons -============================ - -This example demonstrates how to use -:class:`patch collections<~.collections.PatchCollection>`. -""" - -import numpy as np -from matplotlib.patches import Circle, Wedge, Polygon -from matplotlib.collections import PatchCollection -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig, ax = plt.subplots() - -resolution = 50 # the number of vertices -N = 3 -x = np.random.rand(N) -y = np.random.rand(N) -radii = 0.1*np.random.rand(N) -patches = [] -for x1, y1, r in zip(x, y, radii): - circle = Circle((x1, y1), r) - patches.append(circle) - -x = np.random.rand(N) -y = np.random.rand(N) -radii = 0.1*np.random.rand(N) -theta1 = 360.0*np.random.rand(N) -theta2 = 360.0*np.random.rand(N) -for x1, y1, r, t1, t2 in zip(x, y, radii, theta1, theta2): - wedge = Wedge((x1, y1), r, t1, t2) - patches.append(wedge) - -# Some limiting conditions on Wedge -patches += [ - Wedge((.3, .7), .1, 0, 360), # Full circle - Wedge((.7, .8), .2, 0, 360, width=0.05), # Full ring - Wedge((.8, .3), .2, 0, 45), # Full sector - Wedge((.8, .3), .2, 45, 90, width=0.10), # Ring sector -] - -for i in range(N): - polygon = Polygon(np.random.rand(N, 2), True) - patches.append(polygon) - -colors = 100*np.random.rand(len(patches)) -p = PatchCollection(patches, alpha=0.4) -p.set_array(np.array(colors)) -ax.add_collection(p) -fig.colorbar(p, ax=ax) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.patches -matplotlib.patches.Circle -matplotlib.patches.Wedge -matplotlib.patches.Polygon -matplotlib.collections.PatchCollection -matplotlib.collections.Collection.set_array -matplotlib.axes.Axes.add_collection -matplotlib.figure.Figure.colorbar diff --git a/_downloads/e531690563903be24f14a17e1c9a4b07/annotate_simple_coord03.ipynb b/_downloads/e531690563903be24f14a17e1c9a4b07/annotate_simple_coord03.ipynb deleted file mode 120000 index aef6dee95fa..00000000000 --- a/_downloads/e531690563903be24f14a17e1c9a4b07/annotate_simple_coord03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e531690563903be24f14a17e1c9a4b07/annotate_simple_coord03.ipynb \ No newline at end of file diff --git a/_downloads/e54a5ab49830f990e6fef8588b023dc6/unchained.py b/_downloads/e54a5ab49830f990e6fef8588b023dc6/unchained.py deleted file mode 100644 index fbcce8337ee..00000000000 --- a/_downloads/e54a5ab49830f990e6fef8588b023dc6/unchained.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -======================== -MATPLOTLIB **UNCHAINED** -======================== - -Comparative path demonstration of frequency from a fake signal of a pulsar -(mostly known because of the cover for Joy Division's Unknown Pleasures). - -Author: Nicolas P. Rougier -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# Create new Figure with black background -fig = plt.figure(figsize=(8, 8), facecolor='black') - -# Add a subplot with no frame -ax = plt.subplot(111, frameon=False) - -# Generate random data -data = np.random.uniform(0, 1, (64, 75)) -X = np.linspace(-1, 1, data.shape[-1]) -G = 1.5 * np.exp(-4 * X ** 2) - -# Generate line plots -lines = [] -for i in range(len(data)): - # Small reduction of the X extents to get a cheap perspective effect - xscale = 1 - i / 200. - # Same for linewidth (thicker strokes on bottom) - lw = 1.5 - i / 100.0 - line, = ax.plot(xscale * X, i + G * data[i], color="w", lw=lw) - lines.append(line) - -# Set y limit (or first line is cropped because of thickness) -ax.set_ylim(-1, 70) - -# No ticks -ax.set_xticks([]) -ax.set_yticks([]) - -# 2 part titles to get different font weights -ax.text(0.5, 1.0, "MATPLOTLIB ", transform=ax.transAxes, - ha="right", va="bottom", color="w", - family="sans-serif", fontweight="light", fontsize=16) -ax.text(0.5, 1.0, "UNCHAINED", transform=ax.transAxes, - ha="left", va="bottom", color="w", - family="sans-serif", fontweight="bold", fontsize=16) - - -def update(*args): - # Shift all data to the right - data[:, 1:] = data[:, :-1] - - # Fill-in new values - data[:, 0] = np.random.uniform(0, 1, len(data)) - - # Update data - for i in range(len(data)): - lines[i].set_ydata(i + G * data[i]) - - # Return modified artists - return lines - -# Construct the animation, using the update function as the animation director. -anim = animation.FuncAnimation(fig, update, interval=10) -plt.show() diff --git a/_downloads/e54ad7318911ceeda7f9c20c7ce10edd/hist3d.ipynb b/_downloads/e54ad7318911ceeda7f9c20c7ce10edd/hist3d.ipynb deleted file mode 120000 index c298dd641db..00000000000 --- a/_downloads/e54ad7318911ceeda7f9c20c7ce10edd/hist3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e54ad7318911ceeda7f9c20c7ce10edd/hist3d.ipynb \ No newline at end of file diff --git a/_downloads/e54b07a14a545bf68721a720baffc228/annotation_demo.ipynb b/_downloads/e54b07a14a545bf68721a720baffc228/annotation_demo.ipynb deleted file mode 120000 index 814c976ff90..00000000000 --- a/_downloads/e54b07a14a545bf68721a720baffc228/annotation_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e54b07a14a545bf68721a720baffc228/annotation_demo.ipynb \ No newline at end of file diff --git a/_downloads/e54cab271312b206f2da1fd722040fdd/pgf_fonts.ipynb b/_downloads/e54cab271312b206f2da1fd722040fdd/pgf_fonts.ipynb deleted file mode 120000 index e63e6604934..00000000000 --- a/_downloads/e54cab271312b206f2da1fd722040fdd/pgf_fonts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e54cab271312b206f2da1fd722040fdd/pgf_fonts.ipynb \ No newline at end of file diff --git a/_downloads/e55d9729045893ed779fa7bbf560c5cc/nested_pie.py b/_downloads/e55d9729045893ed779fa7bbf560c5cc/nested_pie.py deleted file mode 100644 index ce2be648f1c..00000000000 --- a/_downloads/e55d9729045893ed779fa7bbf560c5cc/nested_pie.py +++ /dev/null @@ -1,97 +0,0 @@ -""" -================= -Nested pie charts -================= - -The following examples show two ways to build a nested pie chart -in Matplotlib. Such charts are often referred to as donut charts. - -""" - -import matplotlib.pyplot as plt -import numpy as np - -############################################################################### -# The most straightforward way to build a pie chart is to use the -# :meth:`pie method ` -# -# In this case, pie takes values corresponding to counts in a group. -# We'll first generate some fake data, corresponding to three groups. -# In the inner circle, we'll treat each number as belonging to its -# own group. In the outer circle, we'll plot them as members of their -# original 3 groups. -# -# The effect of the donut shape is achieved by setting a `width` to -# the pie's wedges through the `wedgeprops` argument. - - -fig, ax = plt.subplots() - -size = 0.3 -vals = np.array([[60., 32.], [37., 40.], [29., 10.]]) - -cmap = plt.get_cmap("tab20c") -outer_colors = cmap(np.arange(3)*4) -inner_colors = cmap(np.array([1, 2, 5, 6, 9, 10])) - -ax.pie(vals.sum(axis=1), radius=1, colors=outer_colors, - wedgeprops=dict(width=size, edgecolor='w')) - -ax.pie(vals.flatten(), radius=1-size, colors=inner_colors, - wedgeprops=dict(width=size, edgecolor='w')) - -ax.set(aspect="equal", title='Pie plot with `ax.pie`') -plt.show() - -############################################################################### -# However, you can accomplish the same output by using a bar plot on -# axes with a polar coordinate system. This may give more flexibility on -# the exact design of the plot. -# -# In this case, we need to map x-values of the bar chart onto radians of -# a circle. The cumulative sum of the values are used as the edges -# of the bars. - -fig, ax = plt.subplots(subplot_kw=dict(polar=True)) - -size = 0.3 -vals = np.array([[60., 32.], [37., 40.], [29., 10.]]) -#normalize vals to 2 pi -valsnorm = vals/np.sum(vals)*2*np.pi -#obtain the ordinates of the bar edges -valsleft = np.cumsum(np.append(0, valsnorm.flatten()[:-1])).reshape(vals.shape) - -cmap = plt.get_cmap("tab20c") -outer_colors = cmap(np.arange(3)*4) -inner_colors = cmap(np.array([1, 2, 5, 6, 9, 10])) - -ax.bar(x=valsleft[:, 0], - width=valsnorm.sum(axis=1), bottom=1-size, height=size, - color=outer_colors, edgecolor='w', linewidth=1, align="edge") - -ax.bar(x=valsleft.flatten(), - width=valsnorm.flatten(), bottom=1-2*size, height=size, - color=inner_colors, edgecolor='w', linewidth=1, align="edge") - -ax.set(title="Pie plot with `ax.bar` and polar coordinates") -ax.set_axis_off() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pie -matplotlib.pyplot.pie -matplotlib.axes.Axes.bar -matplotlib.pyplot.bar -matplotlib.projections.polar -matplotlib.axes.Axes.set -matplotlib.axes.Axes.set_axis_off diff --git a/_downloads/e569ca646d8be6e0c9cc9f27a9103dbb/ellipse_collection.ipynb b/_downloads/e569ca646d8be6e0c9cc9f27a9103dbb/ellipse_collection.ipynb deleted file mode 120000 index db075349462..00000000000 --- a/_downloads/e569ca646d8be6e0c9cc9f27a9103dbb/ellipse_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e569ca646d8be6e0c9cc9f27a9103dbb/ellipse_collection.ipynb \ No newline at end of file diff --git a/_downloads/e57104ce75d2c2d8fe539eba1bfa23ed/leftventricle_bulleye.ipynb b/_downloads/e57104ce75d2c2d8fe539eba1bfa23ed/leftventricle_bulleye.ipynb deleted file mode 120000 index 8b874c04c62..00000000000 --- a/_downloads/e57104ce75d2c2d8fe539eba1bfa23ed/leftventricle_bulleye.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e57104ce75d2c2d8fe539eba1bfa23ed/leftventricle_bulleye.ipynb \ No newline at end of file diff --git a/_downloads/e5759bdd4c99bd46716040965ada4896/mplot3d.ipynb b/_downloads/e5759bdd4c99bd46716040965ada4896/mplot3d.ipynb deleted file mode 120000 index 5d442357aa5..00000000000 --- a/_downloads/e5759bdd4c99bd46716040965ada4896/mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e5759bdd4c99bd46716040965ada4896/mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/e579f7b9381a15389ef7be2680c66dbf/axhspan_demo.py b/_downloads/e579f7b9381a15389ef7be2680c66dbf/axhspan_demo.py deleted file mode 120000 index e6f18fbf673..00000000000 --- a/_downloads/e579f7b9381a15389ef7be2680c66dbf/axhspan_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e579f7b9381a15389ef7be2680c66dbf/axhspan_demo.py \ No newline at end of file diff --git a/_downloads/e5935e72a98180215dfc54e393f020a4/zorder_demo.ipynb b/_downloads/e5935e72a98180215dfc54e393f020a4/zorder_demo.ipynb deleted file mode 100644 index c832c448d1c..00000000000 --- a/_downloads/e5935e72a98180215dfc54e393f020a4/zorder_demo.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Zorder Demo\n\n\nThe default drawing order for axes is patches, lines, text. This\norder is determined by the zorder attribute. The following defaults\nare set\n\n======================= =======\nArtist Z-order\n======================= =======\nPatch / PatchCollection 1\nLine2D / LineCollection 2\nText 3\n======================= =======\n\nYou can change the order for individual artists by setting the zorder. Any\nindividual plot() call can set a value for the zorder of that particular item.\n\nIn the fist subplot below, the lines are drawn above the patch\ncollection from the scatter, which is the default.\n\nIn the subplot below, the order is reversed.\n\nThe second figure shows how to control the zorder of individual lines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nx = np.random.random(20)\ny = np.random.random(20)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Lines on top of scatter\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.figure()\nplt.subplot(211)\nplt.plot(x, y, 'C3', lw=3)\nplt.scatter(x, y, s=120)\nplt.title('Lines on top of dots')\n\n# Scatter plot on top of lines\nplt.subplot(212)\nplt.plot(x, y, 'C3', zorder=1, lw=3)\nplt.scatter(x, y, s=120, zorder=2)\nplt.title('Dots on top of lines')\nplt.tight_layout()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A new figure, with individually ordered items\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 2*np.pi, 100)\nplt.rcParams['lines.linewidth'] = 10\nplt.figure()\nplt.plot(x, np.sin(x), label='zorder=10', zorder=10) # on top\nplt.plot(x, np.sin(1.1*x), label='zorder=1', zorder=1) # bottom\nplt.plot(x, np.sin(1.2*x), label='zorder=3', zorder=3)\nplt.axhline(0, label='zorder=2', color='grey', zorder=2)\nplt.title('Custom order of elements')\nl = plt.legend(loc='upper right')\nl.set_zorder(20) # put the legend on top\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e59399f2101f058ce632b6525908e54e/keyword_plotting.py b/_downloads/e59399f2101f058ce632b6525908e54e/keyword_plotting.py deleted file mode 120000 index 6473d06abff..00000000000 --- a/_downloads/e59399f2101f058ce632b6525908e54e/keyword_plotting.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e59399f2101f058ce632b6525908e54e/keyword_plotting.py \ No newline at end of file diff --git a/_downloads/e599e2626fc7cf400b803edc693f0269/demo_text_path.py b/_downloads/e599e2626fc7cf400b803edc693f0269/demo_text_path.py deleted file mode 100644 index 025780e9f27..00000000000 --- a/_downloads/e599e2626fc7cf400b803edc693f0269/demo_text_path.py +++ /dev/null @@ -1,159 +0,0 @@ -""" -============== -Demo Text Path -============== - -Use a text as `Path`. The tool that allows for such conversion is a -`~matplotlib.textpath.TextPath`. The resulting path can be employed -e.g. as a clip path for an image. -""" - -import matplotlib.pyplot as plt -from matplotlib.image import BboxImage -import numpy as np -from matplotlib.transforms import IdentityTransform - -import matplotlib.patches as mpatches - -from matplotlib.offsetbox import AnnotationBbox,\ - AnchoredOffsetbox, AuxTransformBox - -from matplotlib.cbook import get_sample_data - -from matplotlib.text import TextPath - - -class PathClippedImagePatch(mpatches.PathPatch): - """ - The given image is used to draw the face of the patch. Internally, - it uses BboxImage whose clippath set to the path of the patch. - - FIXME : The result is currently dpi dependent. - """ - - def __init__(self, path, bbox_image, **kwargs): - mpatches.PathPatch.__init__(self, path, **kwargs) - self._init_bbox_image(bbox_image) - - def set_facecolor(self, color): - """simply ignore facecolor""" - mpatches.PathPatch.set_facecolor(self, "none") - - def _init_bbox_image(self, im): - - bbox_image = BboxImage(self.get_window_extent, - norm=None, - origin=None, - ) - bbox_image.set_transform(IdentityTransform()) - - bbox_image.set_data(im) - self.bbox_image = bbox_image - - def draw(self, renderer=None): - - # the clip path must be updated every draw. any solution? -JJ - self.bbox_image.set_clip_path(self._path, self.get_transform()) - self.bbox_image.draw(renderer) - - mpatches.PathPatch.draw(self, renderer) - - -if __name__ == "__main__": - - usetex = plt.rcParams["text.usetex"] - - fig = plt.figure() - - # EXAMPLE 1 - - ax = plt.subplot(211) - - arr = plt.imread(get_sample_data("grace_hopper.png")) - - text_path = TextPath((0, 0), "!?", size=150) - p = PathClippedImagePatch(text_path, arr, ec="k", - transform=IdentityTransform()) - - # p.set_clip_on(False) - - # make offset box - offsetbox = AuxTransformBox(IdentityTransform()) - offsetbox.add_artist(p) - - # make anchored offset box - ao = AnchoredOffsetbox(loc='upper left', child=offsetbox, frameon=True, - borderpad=0.2) - ax.add_artist(ao) - - # another text - from matplotlib.patches import PathPatch - if usetex: - r = r"\mbox{textpath supports mathtext \& \TeX}" - else: - r = r"textpath supports mathtext & TeX" - - text_path = TextPath((0, 0), r, - size=20, usetex=usetex) - - p1 = PathPatch(text_path, ec="w", lw=3, fc="w", alpha=0.9, - transform=IdentityTransform()) - p2 = PathPatch(text_path, ec="none", fc="k", - transform=IdentityTransform()) - - offsetbox2 = AuxTransformBox(IdentityTransform()) - offsetbox2.add_artist(p1) - offsetbox2.add_artist(p2) - - ab = AnnotationBbox(offsetbox2, (0.95, 0.05), - xycoords='axes fraction', - boxcoords="offset points", - box_alignment=(1., 0.), - frameon=False - ) - ax.add_artist(ab) - - ax.imshow([[0, 1, 2], [1, 2, 3]], cmap=plt.cm.gist_gray_r, - interpolation="bilinear", - aspect="auto") - - # EXAMPLE 2 - - ax = plt.subplot(212) - - arr = np.arange(256).reshape(1, 256)/256. - - if usetex: - s = (r"$\displaystyle\left[\sum_{n=1}^\infty" - r"\frac{-e^{i\pi}}{2^n}\right]$!") - else: - s = r"$\left[\sum_{n=1}^\infty\frac{-e^{i\pi}}{2^n}\right]$!" - text_path = TextPath((0, 0), s, size=40, usetex=usetex) - text_patch = PathClippedImagePatch(text_path, arr, ec="none", - transform=IdentityTransform()) - - shadow1 = mpatches.Shadow(text_patch, 1, -1, - props=dict(fc="none", ec="0.6", lw=3)) - shadow2 = mpatches.Shadow(text_patch, 1, -1, - props=dict(fc="0.3", ec="none")) - - # make offset box - offsetbox = AuxTransformBox(IdentityTransform()) - offsetbox.add_artist(shadow1) - offsetbox.add_artist(shadow2) - offsetbox.add_artist(text_patch) - - # place the anchored offset box using AnnotationBbox - ab = AnnotationBbox(offsetbox, (0.5, 0.5), - xycoords='data', - boxcoords="offset points", - box_alignment=(0.5, 0.5), - ) - # text_path.set_size(10) - - ax.add_artist(ab) - - ax.set_xlim(0, 1) - ax.set_ylim(0, 1) - - plt.show() diff --git a/_downloads/e59c7fc1ea02b23c213a2688aba898cc/demo_axes_grid.py b/_downloads/e59c7fc1ea02b23c213a2688aba898cc/demo_axes_grid.py deleted file mode 120000 index 898c276aa66..00000000000 --- a/_downloads/e59c7fc1ea02b23c213a2688aba898cc/demo_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e59c7fc1ea02b23c213a2688aba898cc/demo_axes_grid.py \ No newline at end of file diff --git a/_downloads/e59ed242099b0a4c17c161bb5afedc30/multiple_histograms_side_by_side.py b/_downloads/e59ed242099b0a4c17c161bb5afedc30/multiple_histograms_side_by_side.py deleted file mode 120000 index e149a9f3130..00000000000 --- a/_downloads/e59ed242099b0a4c17c161bb5afedc30/multiple_histograms_side_by_side.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e59ed242099b0a4c17c161bb5afedc30/multiple_histograms_side_by_side.py \ No newline at end of file diff --git a/_downloads/e59f8765cc5180c3a65640eaafde5f14/offset.ipynb b/_downloads/e59f8765cc5180c3a65640eaafde5f14/offset.ipynb deleted file mode 120000 index 49c1c99cb6f..00000000000 --- a/_downloads/e59f8765cc5180c3a65640eaafde5f14/offset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e59f8765cc5180c3a65640eaafde5f14/offset.ipynb \ No newline at end of file diff --git a/_downloads/e5ab331cdd18bc36e63bc06fce738bc6/custom_boxstyle02.ipynb b/_downloads/e5ab331cdd18bc36e63bc06fce738bc6/custom_boxstyle02.ipynb deleted file mode 120000 index bc8d79537b6..00000000000 --- a/_downloads/e5ab331cdd18bc36e63bc06fce738bc6/custom_boxstyle02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e5ab331cdd18bc36e63bc06fce738bc6/custom_boxstyle02.ipynb \ No newline at end of file diff --git a/_downloads/e5ae8a10030d3dc095865f29cfd27830/trisurf3d.ipynb b/_downloads/e5ae8a10030d3dc095865f29cfd27830/trisurf3d.ipynb deleted file mode 120000 index c02993f15f6..00000000000 --- a/_downloads/e5ae8a10030d3dc095865f29cfd27830/trisurf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e5ae8a10030d3dc095865f29cfd27830/trisurf3d.ipynb \ No newline at end of file diff --git a/_downloads/e5b215526fc7eeb801e379c68b5c7b19/watermark_image.ipynb b/_downloads/e5b215526fc7eeb801e379c68b5c7b19/watermark_image.ipynb deleted file mode 120000 index 7868c3e4401..00000000000 --- a/_downloads/e5b215526fc7eeb801e379c68b5c7b19/watermark_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e5b215526fc7eeb801e379c68b5c7b19/watermark_image.ipynb \ No newline at end of file diff --git a/_downloads/e5b235c4b1819f12bc92ab3c30343f4e/coords_demo.ipynb b/_downloads/e5b235c4b1819f12bc92ab3c30343f4e/coords_demo.ipynb deleted file mode 120000 index 869a96ad338..00000000000 --- a/_downloads/e5b235c4b1819f12bc92ab3c30343f4e/coords_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e5b235c4b1819f12bc92ab3c30343f4e/coords_demo.ipynb \ No newline at end of file diff --git a/_downloads/e5bb96a95bfef8c7e95a7e2824b19129/demo_ribbon_box.py b/_downloads/e5bb96a95bfef8c7e95a7e2824b19129/demo_ribbon_box.py deleted file mode 120000 index 23bf4b750ee..00000000000 --- a/_downloads/e5bb96a95bfef8c7e95a7e2824b19129/demo_ribbon_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e5bb96a95bfef8c7e95a7e2824b19129/demo_ribbon_box.py \ No newline at end of file diff --git a/_downloads/e5d08d3e99d9a98ba7164269949a3373/tricontour_demo.py b/_downloads/e5d08d3e99d9a98ba7164269949a3373/tricontour_demo.py deleted file mode 120000 index 21b66de209b..00000000000 --- a/_downloads/e5d08d3e99d9a98ba7164269949a3373/tricontour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e5d08d3e99d9a98ba7164269949a3373/tricontour_demo.py \ No newline at end of file diff --git a/_downloads/e5d5fcb2e38851651b83d80a1384d348/common_date_problems.py b/_downloads/e5d5fcb2e38851651b83d80a1384d348/common_date_problems.py deleted file mode 100644 index 5ef4fb64fc8..00000000000 --- a/_downloads/e5d5fcb2e38851651b83d80a1384d348/common_date_problems.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -Fixing common date annoyances -============================= - -Matplotlib allows you to natively plots python datetime instances, and -for the most part does a good job picking tick locations and string -formats. There are a couple of things it does not handle so -gracefully, and here are some tricks to help you work around them. -We'll load up some sample date data which contains datetime.date -objects in a numpy record array:: - - In [63]: datafile = cbook.get_sample_data('goog.npz') - - In [64]: r = np.load(datafile)['price_data'].view(np.recarray) - - In [65]: r.dtype - Out[65]: dtype([('date', '] - -you will see that the x tick labels are all squashed together. -""" -import matplotlib.cbook as cbook -import matplotlib.dates as mdates -import numpy as np -import matplotlib.pyplot as plt - -with cbook.get_sample_data('goog.npz') as datafile: - r = np.load(datafile)['price_data'].view(np.recarray) - -# Matplotlib prefers datetime instead of np.datetime64. -date = r.date.astype('O') -fig, ax = plt.subplots() -ax.plot(date, r.close) -ax.set_title('Default date handling can cause overlapping labels') - -############################################################################### -# Another annoyance is that if you hover the mouse over the window and -# look in the lower right corner of the matplotlib toolbar -# (:ref:`navigation-toolbar`) at the x and y coordinates, you see that -# the x locations are formatted the same way the tick labels are, e.g., -# "Dec 2004". -# -# What we'd like is for the location in the toolbar to have -# a higher degree of precision, e.g., giving us the exact date out mouse is -# hovering over. To fix the first problem, we can use -# :func:`matplotlib.figure.Figure.autofmt_xdate` and to fix the second -# problem we can use the ``ax.fmt_xdata`` attribute which can be set to -# any function that takes a scalar and returns a string. matplotlib has -# a number of date formatters built in, so we'll use one of those. - -fig, ax = plt.subplots() -ax.plot(date, r.close) - -# rotate and align the tick labels so they look better -fig.autofmt_xdate() - -# use a more precise date string for the x axis locations in the -# toolbar -ax.fmt_xdata = mdates.DateFormatter('%Y-%m-%d') -ax.set_title('fig.autofmt_xdate fixes the labels') - -############################################################################### -# Now when you hover your mouse over the plotted data, you'll see date -# format strings like 2004-12-01 in the toolbar. - -plt.show() diff --git a/_downloads/e5df7b1d34002316240dc14b77eefd94/bbox_intersect.ipynb b/_downloads/e5df7b1d34002316240dc14b77eefd94/bbox_intersect.ipynb deleted file mode 120000 index c615aed595d..00000000000 --- a/_downloads/e5df7b1d34002316240dc14b77eefd94/bbox_intersect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e5df7b1d34002316240dc14b77eefd94/bbox_intersect.ipynb \ No newline at end of file diff --git a/_downloads/e5eafaafbf98df18c22654fd8b179813/histogram_path.ipynb b/_downloads/e5eafaafbf98df18c22654fd8b179813/histogram_path.ipynb deleted file mode 120000 index ec394f90dae..00000000000 --- a/_downloads/e5eafaafbf98df18c22654fd8b179813/histogram_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e5eafaafbf98df18c22654fd8b179813/histogram_path.ipynb \ No newline at end of file diff --git a/_downloads/e5f2e46303bc2f434fdf165ef06ff3d9/scatter_masked.ipynb b/_downloads/e5f2e46303bc2f434fdf165ef06ff3d9/scatter_masked.ipynb deleted file mode 100644 index 8480f124027..00000000000 --- a/_downloads/e5f2e46303bc2f434fdf165ef06ff3d9/scatter_masked.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Masked\n\n\nMask some data points and add a line demarking\nmasked regions.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nN = 100\nr0 = 0.6\nx = 0.9 * np.random.rand(N)\ny = 0.9 * np.random.rand(N)\narea = (20 * np.random.rand(N))**2 # 0 to 10 point radii\nc = np.sqrt(area)\nr = np.sqrt(x ** 2 + y ** 2)\narea1 = np.ma.masked_where(r < r0, area)\narea2 = np.ma.masked_where(r >= r0, area)\nplt.scatter(x, y, s=area1, marker='^', c=c)\nplt.scatter(x, y, s=area2, marker='o', c=c)\n# Show the boundary between the regions:\ntheta = np.arange(0, np.pi / 2, 0.01)\nplt.plot(r0 * np.cos(theta), r0 * np.sin(theta))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e5fecf9a567f3c3822a276ba15e30ecc/cursor_demo_sgskip.ipynb b/_downloads/e5fecf9a567f3c3822a276ba15e30ecc/cursor_demo_sgskip.ipynb deleted file mode 120000 index c44ca7691de..00000000000 --- a/_downloads/e5fecf9a567f3c3822a276ba15e30ecc/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e5fecf9a567f3c3822a276ba15e30ecc/cursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/e6103572a9ebb5b8e009fa46968f8612/aspect_loglog.ipynb b/_downloads/e6103572a9ebb5b8e009fa46968f8612/aspect_loglog.ipynb deleted file mode 120000 index e8f905d2025..00000000000 --- a/_downloads/e6103572a9ebb5b8e009fa46968f8612/aspect_loglog.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e6103572a9ebb5b8e009fa46968f8612/aspect_loglog.ipynb \ No newline at end of file diff --git a/_downloads/e611603d515b16f163d329ce6b093755/pgf_preamble_sgskip.py b/_downloads/e611603d515b16f163d329ce6b093755/pgf_preamble_sgskip.py deleted file mode 120000 index f7d43c54688..00000000000 --- a/_downloads/e611603d515b16f163d329ce6b093755/pgf_preamble_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e611603d515b16f163d329ce6b093755/pgf_preamble_sgskip.py \ No newline at end of file diff --git a/_downloads/e61b9ac3bf88d61816477be12cdadff6/surface3d.py b/_downloads/e61b9ac3bf88d61816477be12cdadff6/surface3d.py deleted file mode 120000 index da63d0bf6b0..00000000000 --- a/_downloads/e61b9ac3bf88d61816477be12cdadff6/surface3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e61b9ac3bf88d61816477be12cdadff6/surface3d.py \ No newline at end of file diff --git a/_downloads/e61eef3e6df85f006a8e3f9e0d7e7fbe/sample_plots.py b/_downloads/e61eef3e6df85f006a8e3f9e0d7e7fbe/sample_plots.py deleted file mode 120000 index 9557712ea0e..00000000000 --- a/_downloads/e61eef3e6df85f006a8e3f9e0d7e7fbe/sample_plots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e61eef3e6df85f006a8e3f9e0d7e7fbe/sample_plots.py \ No newline at end of file diff --git a/_downloads/e628a0f2a7dcde9a8e93f414d254a89f/nested_pie.ipynb b/_downloads/e628a0f2a7dcde9a8e93f414d254a89f/nested_pie.ipynb deleted file mode 120000 index d71cf4ecfab..00000000000 --- a/_downloads/e628a0f2a7dcde9a8e93f414d254a89f/nested_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e628a0f2a7dcde9a8e93f414d254a89f/nested_pie.ipynb \ No newline at end of file diff --git a/_downloads/e631a9027aafbef74c7bd1f74367efa8/ellipse_demo.ipynb b/_downloads/e631a9027aafbef74c7bd1f74367efa8/ellipse_demo.ipynb deleted file mode 120000 index 411b14e2a5f..00000000000 --- a/_downloads/e631a9027aafbef74c7bd1f74367efa8/ellipse_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e631a9027aafbef74c7bd1f74367efa8/ellipse_demo.ipynb \ No newline at end of file diff --git a/_downloads/e632c4ec930c587dfad7603657312010/color_by_yvalue.ipynb b/_downloads/e632c4ec930c587dfad7603657312010/color_by_yvalue.ipynb deleted file mode 120000 index 291a9e88552..00000000000 --- a/_downloads/e632c4ec930c587dfad7603657312010/color_by_yvalue.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e632c4ec930c587dfad7603657312010/color_by_yvalue.ipynb \ No newline at end of file diff --git a/_downloads/e63c4934c66fe9c7b3b237359cede0a4/bars3d.py b/_downloads/e63c4934c66fe9c7b3b237359cede0a4/bars3d.py deleted file mode 120000 index 6ed494d8fda..00000000000 --- a/_downloads/e63c4934c66fe9c7b3b237359cede0a4/bars3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e63c4934c66fe9c7b3b237359cede0a4/bars3d.py \ No newline at end of file diff --git a/_downloads/e653226d3d5879459481b99e968da303/colormapnorms.py b/_downloads/e653226d3d5879459481b99e968da303/colormapnorms.py deleted file mode 120000 index b6a1826761f..00000000000 --- a/_downloads/e653226d3d5879459481b99e968da303/colormapnorms.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e653226d3d5879459481b99e968da303/colormapnorms.py \ No newline at end of file diff --git a/_downloads/e654937ff3b6d5fa5c1f736d06ad16a1/lasso_selector_demo_sgskip.ipynb b/_downloads/e654937ff3b6d5fa5c1f736d06ad16a1/lasso_selector_demo_sgskip.ipynb deleted file mode 100644 index 5c774d76b0c..00000000000 --- a/_downloads/e654937ff3b6d5fa5c1f736d06ad16a1/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Lasso Selector Demo\n\n\nInteractively selecting data points with the lasso tool.\n\nThis examples plots a scatter plot. You can then select a few points by drawing\na lasso loop around the points on the graph. To draw, just click\non the graph, hold, and drag it around the points you need to select.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n\nfrom matplotlib.widgets import LassoSelector\nfrom matplotlib.path import Path\n\n\nclass SelectFromCollection(object):\n \"\"\"Select indices from a matplotlib collection using `LassoSelector`.\n\n Selected indices are saved in the `ind` attribute. This tool fades out the\n points that are not part of the selection (i.e., reduces their alpha\n values). If your collection has alpha < 1, this tool will permanently\n alter the alpha values.\n\n Note that this tool selects collection objects based on their *origins*\n (i.e., `offsets`).\n\n Parameters\n ----------\n ax : :class:`~matplotlib.axes.Axes`\n Axes to interact with.\n\n collection : :class:`matplotlib.collections.Collection` subclass\n Collection you want to select from.\n\n alpha_other : 0 <= float <= 1\n To highlight a selection, this tool sets all selected points to an\n alpha value of 1 and non-selected points to `alpha_other`.\n \"\"\"\n\n def __init__(self, ax, collection, alpha_other=0.3):\n self.canvas = ax.figure.canvas\n self.collection = collection\n self.alpha_other = alpha_other\n\n self.xys = collection.get_offsets()\n self.Npts = len(self.xys)\n\n # Ensure that we have separate colors for each object\n self.fc = collection.get_facecolors()\n if len(self.fc) == 0:\n raise ValueError('Collection must have a facecolor')\n elif len(self.fc) == 1:\n self.fc = np.tile(self.fc, (self.Npts, 1))\n\n self.lasso = LassoSelector(ax, onselect=self.onselect)\n self.ind = []\n\n def onselect(self, verts):\n path = Path(verts)\n self.ind = np.nonzero(path.contains_points(self.xys))[0]\n self.fc[:, -1] = self.alpha_other\n self.fc[self.ind, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n def disconnect(self):\n self.lasso.disconnect_events()\n self.fc[:, -1] = 1\n self.collection.set_facecolors(self.fc)\n self.canvas.draw_idle()\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n\n # Fixing random state for reproducibility\n np.random.seed(19680801)\n\n data = np.random.rand(100, 2)\n\n subplot_kw = dict(xlim=(0, 1), ylim=(0, 1), autoscale_on=False)\n fig, ax = plt.subplots(subplot_kw=subplot_kw)\n\n pts = ax.scatter(data[:, 0], data[:, 1], s=80)\n selector = SelectFromCollection(ax, pts)\n\n def accept(event):\n if event.key == \"enter\":\n print(\"Selected points:\")\n print(selector.xys[selector.ind])\n selector.disconnect()\n ax.set_title(\"\")\n fig.canvas.draw()\n\n fig.canvas.mpl_connect(\"key_press_event\", accept)\n ax.set_title(\"Press enter to accept selected points.\")\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e6558f3440dade01d2e4759d688de8c7/textbox.py b/_downloads/e6558f3440dade01d2e4759d688de8c7/textbox.py deleted file mode 120000 index b76830c7961..00000000000 --- a/_downloads/e6558f3440dade01d2e4759d688de8c7/textbox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e6558f3440dade01d2e4759d688de8c7/textbox.py \ No newline at end of file diff --git a/_downloads/e65b146a47bea5b1559ef72171906f2a/hist3d.py b/_downloads/e65b146a47bea5b1559ef72171906f2a/hist3d.py deleted file mode 100644 index c7c71d12f53..00000000000 --- a/_downloads/e65b146a47bea5b1559ef72171906f2a/hist3d.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -============================== -Create 3D histogram of 2D data -============================== - -Demo of a histogram for 2 dimensional data as a bar graph in 3D. -""" - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') -x, y = np.random.rand(2, 100) * 4 -hist, xedges, yedges = np.histogram2d(x, y, bins=4, range=[[0, 4], [0, 4]]) - -# Construct arrays for the anchor positions of the 16 bars. -xpos, ypos = np.meshgrid(xedges[:-1] + 0.25, yedges[:-1] + 0.25, indexing="ij") -xpos = xpos.ravel() -ypos = ypos.ravel() -zpos = 0 - -# Construct arrays with the dimensions for the 16 bars. -dx = dy = 0.5 * np.ones_like(zpos) -dz = hist.ravel() - -ax.bar3d(xpos, ypos, zpos, dx, dy, dz, zsort='average') - -plt.show() diff --git a/_downloads/e66317f33d1cca8d6e1e74986cae21b8/surface3d.py b/_downloads/e66317f33d1cca8d6e1e74986cae21b8/surface3d.py deleted file mode 120000 index ac9b89b8d86..00000000000 --- a/_downloads/e66317f33d1cca8d6e1e74986cae21b8/surface3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e66317f33d1cca8d6e1e74986cae21b8/surface3d.py \ No newline at end of file diff --git a/_downloads/e677e4e0185d928a5dd16c2e9ed7db4b/axes_margins.ipynb b/_downloads/e677e4e0185d928a5dd16c2e9ed7db4b/axes_margins.ipynb deleted file mode 120000 index 5da8472ca47..00000000000 --- a/_downloads/e677e4e0185d928a5dd16c2e9ed7db4b/axes_margins.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e677e4e0185d928a5dd16c2e9ed7db4b/axes_margins.ipynb \ No newline at end of file diff --git a/_downloads/e678bdeabce30d7f7b4a927badf6063e/subplot_toolbar.py b/_downloads/e678bdeabce30d7f7b4a927badf6063e/subplot_toolbar.py deleted file mode 120000 index bb13e51a71f..00000000000 --- a/_downloads/e678bdeabce30d7f7b4a927badf6063e/subplot_toolbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e678bdeabce30d7f7b4a927badf6063e/subplot_toolbar.py \ No newline at end of file diff --git a/_downloads/e680b38c6c94aa90a3d8a1190b92bbb0/line_demo_dash_control.py b/_downloads/e680b38c6c94aa90a3d8a1190b92bbb0/line_demo_dash_control.py deleted file mode 120000 index b04eeb81b92..00000000000 --- a/_downloads/e680b38c6c94aa90a3d8a1190b92bbb0/line_demo_dash_control.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e680b38c6c94aa90a3d8a1190b92bbb0/line_demo_dash_control.py \ No newline at end of file diff --git a/_downloads/e696463719ee6a13c35b04b19d79cc77/align_labels_demo.py b/_downloads/e696463719ee6a13c35b04b19d79cc77/align_labels_demo.py deleted file mode 120000 index 27e58ff7dfa..00000000000 --- a/_downloads/e696463719ee6a13c35b04b19d79cc77/align_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e696463719ee6a13c35b04b19d79cc77/align_labels_demo.py \ No newline at end of file diff --git a/_downloads/e6999febf891ca0ed0279d212d7cfc31/custom_ticker1.ipynb b/_downloads/e6999febf891ca0ed0279d212d7cfc31/custom_ticker1.ipynb deleted file mode 120000 index 02af4c49204..00000000000 --- a/_downloads/e6999febf891ca0ed0279d212d7cfc31/custom_ticker1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/e6999febf891ca0ed0279d212d7cfc31/custom_ticker1.ipynb \ No newline at end of file diff --git a/_downloads/e69cfebb87267ecc844f3813c2b793f1/histogram_cumulative.py b/_downloads/e69cfebb87267ecc844f3813c2b793f1/histogram_cumulative.py deleted file mode 120000 index db70d3b7a45..00000000000 --- a/_downloads/e69cfebb87267ecc844f3813c2b793f1/histogram_cumulative.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e69cfebb87267ecc844f3813c2b793f1/histogram_cumulative.py \ No newline at end of file diff --git a/_downloads/e69d4c15d1e1c87ce8bbd2cb0d5d94b2/custom_cmap.py b/_downloads/e69d4c15d1e1c87ce8bbd2cb0d5d94b2/custom_cmap.py deleted file mode 120000 index ff15ced64a1..00000000000 --- a/_downloads/e69d4c15d1e1c87ce8bbd2cb0d5d94b2/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e69d4c15d1e1c87ce8bbd2cb0d5d94b2/custom_cmap.py \ No newline at end of file diff --git a/_downloads/e69ebd7584c1f550c9f4c56b754b15de/rain.py b/_downloads/e69ebd7584c1f550c9f4c56b754b15de/rain.py deleted file mode 120000 index 71f0fea5860..00000000000 --- a/_downloads/e69ebd7584c1f550c9f4c56b754b15de/rain.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e69ebd7584c1f550c9f4c56b754b15de/rain.py \ No newline at end of file diff --git a/_downloads/e6a4658ed099ad8d2161eb5a8ac03fba/step.ipynb b/_downloads/e6a4658ed099ad8d2161eb5a8ac03fba/step.ipynb deleted file mode 120000 index 11b4744a94a..00000000000 --- a/_downloads/e6a4658ed099ad8d2161eb5a8ac03fba/step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e6a4658ed099ad8d2161eb5a8ac03fba/step.ipynb \ No newline at end of file diff --git a/_downloads/e6a6cd46a5475510e432cedfbf928af7/symlog_demo.py b/_downloads/e6a6cd46a5475510e432cedfbf928af7/symlog_demo.py deleted file mode 120000 index e982efbd8c5..00000000000 --- a/_downloads/e6a6cd46a5475510e432cedfbf928af7/symlog_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e6a6cd46a5475510e432cedfbf928af7/symlog_demo.py \ No newline at end of file diff --git a/_downloads/e6ac2dae668e34d92ffa549767726c2c/gtk_spreadsheet_sgskip.py b/_downloads/e6ac2dae668e34d92ffa549767726c2c/gtk_spreadsheet_sgskip.py deleted file mode 120000 index 52b9c6e0c39..00000000000 --- a/_downloads/e6ac2dae668e34d92ffa549767726c2c/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e6ac2dae668e34d92ffa549767726c2c/gtk_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/e6b026d4ee560ee8e5316c4aae870d43/categorical_variables.py b/_downloads/e6b026d4ee560ee8e5316c4aae870d43/categorical_variables.py deleted file mode 120000 index 2a330a1c490..00000000000 --- a/_downloads/e6b026d4ee560ee8e5316c4aae870d43/categorical_variables.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e6b026d4ee560ee8e5316c4aae870d43/categorical_variables.py \ No newline at end of file diff --git a/_downloads/e6b36cedd1cc9f68242f3b2caa077c83/dashpointlabel.ipynb b/_downloads/e6b36cedd1cc9f68242f3b2caa077c83/dashpointlabel.ipynb deleted file mode 100644 index 54a4d197a0c..00000000000 --- a/_downloads/e6b36cedd1cc9f68242f3b2caa077c83/dashpointlabel.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Dashpoint Label\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import warnings\n\nimport matplotlib.pyplot as plt\n\nwarnings.simplefilter(\"ignore\") # Ignore deprecation of withdash.\n\nDATA = ((1, 3),\n (2, 4),\n (3, 1),\n (4, 2))\n# dash_style =\n# direction, length, (text)rotation, dashrotation, push\n# (The parameters are varied to show their effects, not for visual appeal).\ndash_style = (\n (0, 20, -15, 30, 10),\n (1, 30, 0, 15, 10),\n (0, 40, 15, 15, 10),\n (1, 20, 30, 60, 10))\n\nfig, ax = plt.subplots()\n\n(x, y) = zip(*DATA)\nax.plot(x, y, marker='o')\nfor i in range(len(DATA)):\n (x, y) = DATA[i]\n (dd, dl, r, dr, dp) = dash_style[i]\n t = ax.text(x, y, str((x, y)), withdash=True,\n dashdirection=dd,\n dashlength=dl,\n rotation=r,\n dashrotation=dr,\n dashpush=dp,\n )\n\nax.set_xlim((0, 5))\nax.set_ylim((0, 5))\nax.set(title=\"NOTE: The withdash parameter is deprecated.\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e6ba92e6b3895c138cdda69f1779cf27/quiver_demo.ipynb b/_downloads/e6ba92e6b3895c138cdda69f1779cf27/quiver_demo.ipynb deleted file mode 100644 index e7f2856d224..00000000000 --- a/_downloads/e6ba92e6b3895c138cdda69f1779cf27/quiver_demo.ipynb +++ /dev/null @@ -1,105 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Advanced quiver and quiverkey functions\n\n\nDemonstrates some more advanced options for `~.axes.Axes.quiver`. For a simple\nexample refer to :doc:`/gallery/images_contours_and_fields/quiver_simple_demo`.\n\nNote: The plot autoscaling does not take into account the arrows, so\nthose on the boundaries may reach out of the picture. This is not an easy\nproblem to solve in a perfectly general way. The recommended workaround is to\nmanually set the Axes limits in such a case.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nX, Y = np.meshgrid(np.arange(0, 2 * np.pi, .2), np.arange(0, 2 * np.pi, .2))\nU = np.cos(X)\nV = np.sin(Y)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_title('Arrows scale with plot width, not view')\nQ = ax1.quiver(X, Y, U, V, units='width')\nqk = ax1.quiverkey(Q, 0.9, 0.9, 2, r'$2 \\frac{m}{s}$', labelpos='E',\n coordinates='figure')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_title(\"pivot='mid'; every third arrow; units='inches'\")\nQ = ax2.quiver(X[::3, ::3], Y[::3, ::3], U[::3, ::3], V[::3, ::3],\n pivot='mid', units='inches')\nqk = ax2.quiverkey(Q, 0.9, 0.9, 1, r'$1 \\frac{m}{s}$', labelpos='E',\n coordinates='figure')\nax2.scatter(X[::3, ::3], Y[::3, ::3], color='r', s=5)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 3\n\nfig3, ax3 = plt.subplots()\nax3.set_title(\"pivot='tip'; scales with x view\")\nM = np.hypot(U, V)\nQ = ax3.quiver(X, Y, U, V, M, units='x', pivot='tip', width=0.022,\n scale=1 / 0.15)\nqk = ax3.quiverkey(Q, 0.9, 0.9, 1, r'$1 \\frac{m}{s}$', labelpos='E',\n coordinates='figure')\nax3.scatter(X, Y, color='0.5', s=1)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.quiver\nmatplotlib.pyplot.quiver\nmatplotlib.axes.Axes.quiverkey\nmatplotlib.pyplot.quiverkey" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e6bab0b66c38d3070479e4c712bd060e/color_demo.ipynb b/_downloads/e6bab0b66c38d3070479e4c712bd060e/color_demo.ipynb deleted file mode 120000 index 4c759ac48d8..00000000000 --- a/_downloads/e6bab0b66c38d3070479e4c712bd060e/color_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e6bab0b66c38d3070479e4c712bd060e/color_demo.ipynb \ No newline at end of file diff --git a/_downloads/e6bd068b2e8dc3e096e5f124d1240e99/fonts_demo.ipynb b/_downloads/e6bd068b2e8dc3e096e5f124d1240e99/fonts_demo.ipynb deleted file mode 100644 index 45bb552e506..00000000000 --- a/_downloads/e6bd068b2e8dc3e096e5f124d1240e99/fonts_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==================================\nFonts demo (object-oriented style)\n==================================\n\nSet font properties using setters.\n\nSee :doc:`fonts_demo_kw` to achieve the same effect using kwargs.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.font_manager import FontProperties\nimport matplotlib.pyplot as plt\n\nfont0 = FontProperties()\nalignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'}\n# Show family options\n\nfamilies = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace']\n\nfont1 = font0.copy()\nfont1.set_size('large')\n\nt = plt.figtext(0.1, 0.9, 'family', fontproperties=font1, **alignment)\n\nyp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2]\n\nfor k, family in enumerate(families):\n font = font0.copy()\n font.set_family(family)\n t = plt.figtext(0.1, yp[k], family, fontproperties=font, **alignment)\n\n# Show style options\n\nstyles = ['normal', 'italic', 'oblique']\n\nt = plt.figtext(0.3, 0.9, 'style', fontproperties=font1, **alignment)\n\nfor k, style in enumerate(styles):\n font = font0.copy()\n font.set_family('sans-serif')\n font.set_style(style)\n t = plt.figtext(0.3, yp[k], style, fontproperties=font, **alignment)\n\n# Show variant options\n\nvariants = ['normal', 'small-caps']\n\nt = plt.figtext(0.5, 0.9, 'variant', fontproperties=font1, **alignment)\n\nfor k, variant in enumerate(variants):\n font = font0.copy()\n font.set_family('serif')\n font.set_variant(variant)\n t = plt.figtext(0.5, yp[k], variant, fontproperties=font, **alignment)\n\n# Show weight options\n\nweights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black']\n\nt = plt.figtext(0.7, 0.9, 'weight', fontproperties=font1, **alignment)\n\nfor k, weight in enumerate(weights):\n font = font0.copy()\n font.set_weight(weight)\n t = plt.figtext(0.7, yp[k], weight, fontproperties=font, **alignment)\n\n# Show size options\n\nsizes = ['xx-small', 'x-small', 'small', 'medium', 'large',\n 'x-large', 'xx-large']\n\nt = plt.figtext(0.9, 0.9, 'size', fontproperties=font1, **alignment)\n\nfor k, size in enumerate(sizes):\n font = font0.copy()\n font.set_size(size)\n t = plt.figtext(0.9, yp[k], size, fontproperties=font, **alignment)\n\n# Show bold italic\n\nfont = font0.copy()\nfont.set_style('italic')\nfont.set_weight('bold')\nfont.set_size('x-small')\nt = plt.figtext(0.3, 0.1, 'bold italic', fontproperties=font, **alignment)\n\nfont = font0.copy()\nfont.set_style('italic')\nfont.set_weight('bold')\nfont.set_size('medium')\nt = plt.figtext(0.3, 0.2, 'bold italic', fontproperties=font, **alignment)\n\nfont = font0.copy()\nfont.set_style('italic')\nfont.set_weight('bold')\nfont.set_size('x-large')\nt = plt.figtext(-0.4, 0.3, 'bold italic', fontproperties=font, **alignment)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e6bf1daa312a5f7fe89289b47492fec9/plot_streamplot.ipynb b/_downloads/e6bf1daa312a5f7fe89289b47492fec9/plot_streamplot.ipynb deleted file mode 100644 index acd723799cc..00000000000 --- a/_downloads/e6bf1daa312a5f7fe89289b47492fec9/plot_streamplot.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Streamplot\n\n\nA stream plot, or streamline plot, is used to display 2D vector fields. This\nexample shows a few features of the :meth:`~.axes.Axes.streamplot` function:\n\n * Varying the color along a streamline.\n * Varying the density of streamlines.\n * Varying the line width along a streamline.\n * Controlling the starting points of streamlines.\n * Streamlines skipping masked regions and NaN values.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.gridspec as gridspec\n\nw = 3\nY, X = np.mgrid[-w:w:100j, -w:w:100j]\nU = -1 - X**2 + Y\nV = 1 + X - Y**2\nspeed = np.sqrt(U**2 + V**2)\n\nfig = plt.figure(figsize=(7, 9))\ngs = gridspec.GridSpec(nrows=3, ncols=2, height_ratios=[1, 1, 2])\n\n# Varying density along a streamline\nax0 = fig.add_subplot(gs[0, 0])\nax0.streamplot(X, Y, U, V, density=[0.5, 1])\nax0.set_title('Varying Density')\n\n# Varying color along a streamline\nax1 = fig.add_subplot(gs[0, 1])\nstrm = ax1.streamplot(X, Y, U, V, color=U, linewidth=2, cmap='autumn')\nfig.colorbar(strm.lines)\nax1.set_title('Varying Color')\n\n# Varying line width along a streamline\nax2 = fig.add_subplot(gs[1, 0])\nlw = 5*speed / speed.max()\nax2.streamplot(X, Y, U, V, density=0.6, color='k', linewidth=lw)\nax2.set_title('Varying Line Width')\n\n# Controlling the starting points of the streamlines\nseed_points = np.array([[-2, -1, 0, 1, 2, -1], [-2, -1, 0, 1, 2, 2]])\n\nax3 = fig.add_subplot(gs[1, 1])\nstrm = ax3.streamplot(X, Y, U, V, color=U, linewidth=2,\n cmap='autumn', start_points=seed_points.T)\nfig.colorbar(strm.lines)\nax3.set_title('Controlling Starting Points')\n\n# Displaying the starting points with blue symbols.\nax3.plot(seed_points[0], seed_points[1], 'bo')\nax3.set(xlim=(-w, w), ylim=(-w, w))\n\n# Create a mask\nmask = np.zeros(U.shape, dtype=bool)\nmask[40:60, 40:60] = True\nU[:20, :20] = np.nan\nU = np.ma.array(U, mask=mask)\n\nax4 = fig.add_subplot(gs[2:, :])\nax4.streamplot(X, Y, U, V, color='r')\nax4.set_title('Streamplot with Masking')\n\nax4.imshow(~mask, extent=(-w, w, -w, w), alpha=0.5,\n interpolation='nearest', cmap='gray', aspect='auto')\nax4.set_aspect('equal')\n\nplt.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.streamplot\nmatplotlib.pyplot.streamplot\nmatplotlib.gridspec\nmatplotlib.gridspec.GridSpec" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e6bf5e86787c2107f42eea5b20afdc02/titles_demo.py b/_downloads/e6bf5e86787c2107f42eea5b20afdc02/titles_demo.py deleted file mode 120000 index 4d319ff4721..00000000000 --- a/_downloads/e6bf5e86787c2107f42eea5b20afdc02/titles_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e6bf5e86787c2107f42eea5b20afdc02/titles_demo.py \ No newline at end of file diff --git a/_downloads/e6ccfeb5b58dfdae7fddff83f262b3aa/skewt.py b/_downloads/e6ccfeb5b58dfdae7fddff83f262b3aa/skewt.py deleted file mode 120000 index 21806be3838..00000000000 --- a/_downloads/e6ccfeb5b58dfdae7fddff83f262b3aa/skewt.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e6ccfeb5b58dfdae7fddff83f262b3aa/skewt.py \ No newline at end of file diff --git a/_downloads/e6d5746e5f8e2bf2f1c4a457dc339748/line_collection.py b/_downloads/e6d5746e5f8e2bf2f1c4a457dc339748/line_collection.py deleted file mode 120000 index cac503d2991..00000000000 --- a/_downloads/e6d5746e5f8e2bf2f1c4a457dc339748/line_collection.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e6d5746e5f8e2bf2f1c4a457dc339748/line_collection.py \ No newline at end of file diff --git a/_downloads/e6d6f4a13894ebe30f871a793c21fdbc/voxels_rgb.ipynb b/_downloads/e6d6f4a13894ebe30f871a793c21fdbc/voxels_rgb.ipynb deleted file mode 100644 index 9442dc3ccb5..00000000000 --- a/_downloads/e6d6f4a13894ebe30f871a793c21fdbc/voxels_rgb.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==========================================\n3D voxel / volumetric plot with rgb colors\n==========================================\n\nDemonstrates using `Axes3D.voxels` to visualize parts of a color space.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef midpoints(x):\n sl = ()\n for i in range(x.ndim):\n x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0\n sl += np.index_exp[:]\n return x\n\n# prepare some coordinates, and attach rgb values to each\nr, g, b = np.indices((17, 17, 17)) / 16.0\nrc = midpoints(r)\ngc = midpoints(g)\nbc = midpoints(b)\n\n# define a sphere about [0.5, 0.5, 0.5]\nsphere = (rc - 0.5)**2 + (gc - 0.5)**2 + (bc - 0.5)**2 < 0.5**2\n\n# combine the color components\ncolors = np.zeros(sphere.shape + (3,))\ncolors[..., 0] = rc\ncolors[..., 1] = gc\ncolors[..., 2] = bc\n\n# and plot everything\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(r, g, b, sphere,\n facecolors=colors,\n edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter\n linewidth=0.5)\nax.set(xlabel='r', ylabel='g', zlabel='b')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e6db74f194c6bd1212390fcf96d912dd/gridspec_nested.py b/_downloads/e6db74f194c6bd1212390fcf96d912dd/gridspec_nested.py deleted file mode 120000 index a0fe65e0a21..00000000000 --- a/_downloads/e6db74f194c6bd1212390fcf96d912dd/gridspec_nested.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e6db74f194c6bd1212390fcf96d912dd/gridspec_nested.py \ No newline at end of file diff --git a/_downloads/e6deeea5d5c2936c0c3c5f4daa1dcc60/usetex_fonteffects.ipynb b/_downloads/e6deeea5d5c2936c0c3c5f4daa1dcc60/usetex_fonteffects.ipynb deleted file mode 120000 index 67d937170c7..00000000000 --- a/_downloads/e6deeea5d5c2936c0c3c5f4daa1dcc60/usetex_fonteffects.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e6deeea5d5c2936c0c3c5f4daa1dcc60/usetex_fonteffects.ipynb \ No newline at end of file diff --git a/_downloads/e6e0b55d5c116d45617f8b8ef22ec4af/cursor_demo_sgskip.ipynb b/_downloads/e6e0b55d5c116d45617f8b8ef22ec4af/cursor_demo_sgskip.ipynb deleted file mode 100644 index 15ccc80b246..00000000000 --- a/_downloads/e6e0b55d5c116d45617f8b8ef22ec4af/cursor_demo_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Cursor Demo\n\n\nThis example shows how to use Matplotlib to provide a data cursor. It uses\nMatplotlib to draw the cursor and may be a slow since this requires redrawing\nthe figure with every mouse move.\n\nFaster cursoring is possible using native GUI drawing, as in\n:doc:`/gallery/user_interfaces/wxcursor_demo_sgskip`.\n\nThe mpldatacursor__ and mplcursors__ third-party packages can be used to\nachieve a similar effect.\n\n__ https://github.com/joferkington/mpldatacursor\n__ https://github.com/anntzer/mplcursors\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nclass Cursor(object):\n def __init__(self, ax):\n self.ax = ax\n self.lx = ax.axhline(color='k') # the horiz line\n self.ly = ax.axvline(color='k') # the vert line\n\n # text location in axes coords\n self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes)\n\n def mouse_move(self, event):\n if not event.inaxes:\n return\n\n x, y = event.xdata, event.ydata\n # update the line positions\n self.lx.set_ydata(y)\n self.ly.set_xdata(x)\n\n self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y))\n self.ax.figure.canvas.draw()\n\n\nclass SnaptoCursor(object):\n \"\"\"\n Like Cursor but the crosshair snaps to the nearest x, y point.\n For simplicity, this assumes that *x* is sorted.\n \"\"\"\n\n def __init__(self, ax, x, y):\n self.ax = ax\n self.lx = ax.axhline(color='k') # the horiz line\n self.ly = ax.axvline(color='k') # the vert line\n self.x = x\n self.y = y\n # text location in axes coords\n self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes)\n\n def mouse_move(self, event):\n if not event.inaxes:\n return\n\n x, y = event.xdata, event.ydata\n indx = min(np.searchsorted(self.x, x), len(self.x) - 1)\n x = self.x[indx]\n y = self.y[indx]\n # update the line positions\n self.lx.set_ydata(y)\n self.ly.set_xdata(x)\n\n self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y))\n print('x=%1.2f, y=%1.2f' % (x, y))\n self.ax.figure.canvas.draw()\n\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2 * 2 * np.pi * t)\n\nfig, ax = plt.subplots()\nax.plot(t, s, 'o')\ncursor = Cursor(ax)\nfig.canvas.mpl_connect('motion_notify_event', cursor.mouse_move)\n\nfig, ax = plt.subplots()\nax.plot(t, s, 'o')\nsnap_cursor = SnaptoCursor(ax, t, s)\nfig.canvas.mpl_connect('motion_notify_event', snap_cursor.mouse_move)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e6e3499b7afc0b72715d9bc329a33f8e/pcolormesh_levels.ipynb b/_downloads/e6e3499b7afc0b72715d9bc329a33f8e/pcolormesh_levels.ipynb deleted file mode 120000 index a5b0499084c..00000000000 --- a/_downloads/e6e3499b7afc0b72715d9bc329a33f8e/pcolormesh_levels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e6e3499b7afc0b72715d9bc329a33f8e/pcolormesh_levels.ipynb \ No newline at end of file diff --git a/_downloads/e6e72e9758aac8de5686e9aa9b2235f8/stix_fonts_demo.py b/_downloads/e6e72e9758aac8de5686e9aa9b2235f8/stix_fonts_demo.py deleted file mode 120000 index c8503c7a734..00000000000 --- a/_downloads/e6e72e9758aac8de5686e9aa9b2235f8/stix_fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e6e72e9758aac8de5686e9aa9b2235f8/stix_fonts_demo.py \ No newline at end of file diff --git a/_downloads/e6f162f464e6ebba45ae6c60eb278472/contourf3d_2.py b/_downloads/e6f162f464e6ebba45ae6c60eb278472/contourf3d_2.py deleted file mode 120000 index 64bf89df595..00000000000 --- a/_downloads/e6f162f464e6ebba45ae6c60eb278472/contourf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e6f162f464e6ebba45ae6c60eb278472/contourf3d_2.py \ No newline at end of file diff --git a/_downloads/e6f52f515e9351eb37a79f1788b9b9dc/hinton_demo.py b/_downloads/e6f52f515e9351eb37a79f1788b9b9dc/hinton_demo.py deleted file mode 120000 index 4caf59b74eb..00000000000 --- a/_downloads/e6f52f515e9351eb37a79f1788b9b9dc/hinton_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e6f52f515e9351eb37a79f1788b9b9dc/hinton_demo.py \ No newline at end of file diff --git a/_downloads/e6f72e43f479b87d38e7ccf869935deb/whats_new_98_4_legend.py b/_downloads/e6f72e43f479b87d38e7ccf869935deb/whats_new_98_4_legend.py deleted file mode 100644 index ed534ca1899..00000000000 --- a/_downloads/e6f72e43f479b87d38e7ccf869935deb/whats_new_98_4_legend.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -======================= -Whats New 0.98.4 Legend -======================= - -Create a legend and tweak it with a shadow and a box. -""" -import matplotlib.pyplot as plt -import numpy as np - - -ax = plt.subplot(111) -t1 = np.arange(0.0, 1.0, 0.01) -for n in [1, 2, 3, 4]: - plt.plot(t1, t1**n, label="n=%d"%(n,)) - -leg = plt.legend(loc='best', ncol=2, mode="expand", shadow=True, fancybox=True) -leg.get_frame().set_alpha(0.5) - - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.legend -matplotlib.pyplot.legend -matplotlib.legend.Legend -matplotlib.legend.Legend.get_frame diff --git a/_downloads/e6fc23e3e56696a9f07ff0621274602a/marker_path.ipynb b/_downloads/e6fc23e3e56696a9f07ff0621274602a/marker_path.ipynb deleted file mode 120000 index 02af8dcc75f..00000000000 --- a/_downloads/e6fc23e3e56696a9f07ff0621274602a/marker_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e6fc23e3e56696a9f07ff0621274602a/marker_path.ipynb \ No newline at end of file diff --git a/_downloads/e70948baac5668e2af4a696ae8eea1af/layer_images.py b/_downloads/e70948baac5668e2af4a696ae8eea1af/layer_images.py deleted file mode 100644 index 5b2ba0738a6..00000000000 --- a/_downloads/e70948baac5668e2af4a696ae8eea1af/layer_images.py +++ /dev/null @@ -1,56 +0,0 @@ -""" -============ -Layer Images -============ - -Layer images above one another using alpha blending -""" -import matplotlib.pyplot as plt -import numpy as np - - -def func3(x, y): - return (1 - x / 2 + x**5 + y**3) * np.exp(-(x**2 + y**2)) - - -# make these smaller to increase the resolution -dx, dy = 0.05, 0.05 - -x = np.arange(-3.0, 3.0, dx) -y = np.arange(-3.0, 3.0, dy) -X, Y = np.meshgrid(x, y) - -# when layering multiple images, the images need to have the same -# extent. This does not mean they need to have the same shape, but -# they both need to render to the same coordinate system determined by -# xmin, xmax, ymin, ymax. Note if you use different interpolations -# for the images their apparent extent could be different due to -# interpolation edge effects - -extent = np.min(x), np.max(x), np.min(y), np.max(y) -fig = plt.figure(frameon=False) - -Z1 = np.add.outer(range(8), range(8)) % 2 # chessboard -im1 = plt.imshow(Z1, cmap=plt.cm.gray, interpolation='nearest', - extent=extent) - -Z2 = func3(X, Y) - -im2 = plt.imshow(Z2, cmap=plt.cm.viridis, alpha=.9, interpolation='bilinear', - extent=extent) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow diff --git a/_downloads/e71095f602752428dbb80b43e4746aad/annotate_simple_coord03.ipynb b/_downloads/e71095f602752428dbb80b43e4746aad/annotate_simple_coord03.ipynb deleted file mode 100644 index cef835996a1..00000000000 --- a/_downloads/e71095f602752428dbb80b43e4746aad/annotate_simple_coord03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple Coord03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.text import OffsetFrom\n\n\nfig, ax = plt.subplots(figsize=(3, 2))\nan1 = ax.annotate(\"Test 1\", xy=(0.5, 0.5), xycoords=\"data\",\n va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"))\n\noffset_from = OffsetFrom(an1, (0.5, 0))\nan2 = ax.annotate(\"Test 2\", xy=(0.1, 0.1), xycoords=\"data\",\n xytext=(0, -10), textcoords=offset_from,\n # xytext is offset points from \"xy=(0.5, 0), xycoords=an1\"\n va=\"top\", ha=\"center\",\n bbox=dict(boxstyle=\"round\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"->\"))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e7118af8fe11c0c1a4d80bdff80f8e8e/annotate_transform.py b/_downloads/e7118af8fe11c0c1a4d80bdff80f8e8e/annotate_transform.py deleted file mode 120000 index dd39e0264ec..00000000000 --- a/_downloads/e7118af8fe11c0c1a4d80bdff80f8e8e/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e7118af8fe11c0c1a4d80bdff80f8e8e/annotate_transform.py \ No newline at end of file diff --git a/_downloads/e7144484bbbed3937b77ebdd15139554/anchored_box03.py b/_downloads/e7144484bbbed3937b77ebdd15139554/anchored_box03.py deleted file mode 120000 index 3dfbc552bc4..00000000000 --- a/_downloads/e7144484bbbed3937b77ebdd15139554/anchored_box03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e7144484bbbed3937b77ebdd15139554/anchored_box03.py \ No newline at end of file diff --git a/_downloads/e71550adf9a8688e1e8b2b0a552497e7/step_demo.py b/_downloads/e71550adf9a8688e1e8b2b0a552497e7/step_demo.py deleted file mode 120000 index 05927b77fb3..00000000000 --- a/_downloads/e71550adf9a8688e1e8b2b0a552497e7/step_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e71550adf9a8688e1e8b2b0a552497e7/step_demo.py \ No newline at end of file diff --git a/_downloads/e715ee960f1d19b8ab018ea39bb3794d/spines_bounds.py b/_downloads/e715ee960f1d19b8ab018ea39bb3794d/spines_bounds.py deleted file mode 120000 index 3b83189271d..00000000000 --- a/_downloads/e715ee960f1d19b8ab018ea39bb3794d/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e715ee960f1d19b8ab018ea39bb3794d/spines_bounds.py \ No newline at end of file diff --git a/_downloads/e71992025dcadb44a34b26eb17f8445b/simple_axisline3.py b/_downloads/e71992025dcadb44a34b26eb17f8445b/simple_axisline3.py deleted file mode 100644 index c0b8d16b4e0..00000000000 --- a/_downloads/e71992025dcadb44a34b26eb17f8445b/simple_axisline3.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -================ -Simple Axisline3 -================ - -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axisartist.axislines import Subplot - -fig = plt.figure(figsize=(3, 3)) - -ax = Subplot(fig, 111) -fig.add_subplot(ax) - -ax.axis["right"].set_visible(False) -ax.axis["top"].set_visible(False) - -plt.show() diff --git a/_downloads/e71e3b731c8938e55b8a9e1943f937f5/color_by_yvalue.ipynb b/_downloads/e71e3b731c8938e55b8a9e1943f937f5/color_by_yvalue.ipynb deleted file mode 100644 index 41068518d11..00000000000 --- a/_downloads/e71e3b731c8938e55b8a9e1943f937f5/color_by_yvalue.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Color by y-value\n\n\nUse masked arrays to plot a line with different colors by y-value.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nt = np.arange(0.0, 2.0, 0.01)\ns = np.sin(2 * np.pi * t)\n\nupper = 0.77\nlower = -0.77\n\nsupper = np.ma.masked_where(s < upper, s)\nslower = np.ma.masked_where(s > lower, s)\nsmiddle = np.ma.masked_where((s < lower) | (s > upper), s)\n\nfig, ax = plt.subplots()\nax.plot(t, smiddle, t, slower, t, supper)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.plot\nmatplotlib.pyplot.plot" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e7200300c9f6c821c5cc9b075a926716/surface3d_3.py b/_downloads/e7200300c9f6c821c5cc9b075a926716/surface3d_3.py deleted file mode 120000 index 569e673b288..00000000000 --- a/_downloads/e7200300c9f6c821c5cc9b075a926716/surface3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e7200300c9f6c821c5cc9b075a926716/surface3d_3.py \ No newline at end of file diff --git a/_downloads/e720e68fb2a96903b9c744aeac912b37/demo_bboximage.ipynb b/_downloads/e720e68fb2a96903b9c744aeac912b37/demo_bboximage.ipynb deleted file mode 120000 index 580db16eb40..00000000000 --- a/_downloads/e720e68fb2a96903b9c744aeac912b37/demo_bboximage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e720e68fb2a96903b9c744aeac912b37/demo_bboximage.ipynb \ No newline at end of file diff --git a/_downloads/e72a0e47cc5717eca1be6951636c7499/contour.py b/_downloads/e72a0e47cc5717eca1be6951636c7499/contour.py deleted file mode 100644 index ddb0721c120..00000000000 --- a/_downloads/e72a0e47cc5717eca1be6951636c7499/contour.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -========================= -Frontpage contour example -========================= - -This example reproduces the frontpage contour example. -""" - -import matplotlib.pyplot as plt -import numpy as np -from matplotlib import cm - -extent = (-3, 3, -3, 3) - -delta = 0.5 -x = np.arange(-3.0, 4.001, delta) -y = np.arange(-4.0, 3.001, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = Z1 - Z2 - -norm = cm.colors.Normalize(vmax=abs(Z).max(), vmin=-abs(Z).max()) - -fig, ax = plt.subplots() -cset1 = ax.contourf( - X, Y, Z, 40, - norm=norm) -ax.set_xlim(-2, 2) -ax.set_ylim(-2, 2) -ax.set_xticks([]) -ax.set_yticks([]) -fig.savefig("contour_frontpage.png", dpi=25) # results in 160x120 px image -plt.show() diff --git a/_downloads/e72da44cb6f491edcf49be9215db91b0/triplot_demo.ipynb b/_downloads/e72da44cb6f491edcf49be9215db91b0/triplot_demo.ipynb deleted file mode 120000 index d00e7360047..00000000000 --- a/_downloads/e72da44cb6f491edcf49be9215db91b0/triplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e72da44cb6f491edcf49be9215db91b0/triplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/e731897291f5db582e1521205ea9e61d/contourf_hatching.py b/_downloads/e731897291f5db582e1521205ea9e61d/contourf_hatching.py deleted file mode 120000 index b2397369492..00000000000 --- a/_downloads/e731897291f5db582e1521205ea9e61d/contourf_hatching.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e731897291f5db582e1521205ea9e61d/contourf_hatching.py \ No newline at end of file diff --git a/_downloads/e73b3422099a57e55260412f20ca5b35/symlog_demo.ipynb b/_downloads/e73b3422099a57e55260412f20ca5b35/symlog_demo.ipynb deleted file mode 120000 index 982bf971e49..00000000000 --- a/_downloads/e73b3422099a57e55260412f20ca5b35/symlog_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e73b3422099a57e55260412f20ca5b35/symlog_demo.ipynb \ No newline at end of file diff --git a/_downloads/e7431d03bc6d955e7c214c08f290e092/pgf_texsystem.py b/_downloads/e7431d03bc6d955e7c214c08f290e092/pgf_texsystem.py deleted file mode 120000 index 04f26dc417b..00000000000 --- a/_downloads/e7431d03bc6d955e7c214c08f290e092/pgf_texsystem.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e7431d03bc6d955e7c214c08f290e092/pgf_texsystem.py \ No newline at end of file diff --git a/_downloads/e751c1cd3594cb0ff590d9191244d597/collections.py b/_downloads/e751c1cd3594cb0ff590d9191244d597/collections.py deleted file mode 120000 index 1829a03f8df..00000000000 --- a/_downloads/e751c1cd3594cb0ff590d9191244d597/collections.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e751c1cd3594cb0ff590d9191244d597/collections.py \ No newline at end of file diff --git a/_downloads/e75a7d8117665906677c8f373a00d14d/advanced_hillshading.py b/_downloads/e75a7d8117665906677c8f373a00d14d/advanced_hillshading.py deleted file mode 120000 index 73424ec579f..00000000000 --- a/_downloads/e75a7d8117665906677c8f373a00d14d/advanced_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e75a7d8117665906677c8f373a00d14d/advanced_hillshading.py \ No newline at end of file diff --git a/_downloads/e75da662b53508534248cf01c696ff64/pyplot_simple.py b/_downloads/e75da662b53508534248cf01c696ff64/pyplot_simple.py deleted file mode 100644 index 6ad0483ebe2..00000000000 --- a/_downloads/e75da662b53508534248cf01c696ff64/pyplot_simple.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============= -Pyplot Simple -============= - -A most simple plot, where a list of numbers is plotted against their index. -""" -import matplotlib.pyplot as plt -plt.plot([1,2,3,4]) -plt.ylabel('some numbers') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.plot -matplotlib.pyplot.ylabel -matplotlib.pyplot.show diff --git a/_downloads/e761413ace5bad49c5b4cfffb0fdb8f0/span_regions.py b/_downloads/e761413ace5bad49c5b4cfffb0fdb8f0/span_regions.py deleted file mode 120000 index ccea92ea566..00000000000 --- a/_downloads/e761413ace5bad49c5b4cfffb0fdb8f0/span_regions.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e761413ace5bad49c5b4cfffb0fdb8f0/span_regions.py \ No newline at end of file diff --git a/_downloads/e76354955997eaed2640e48a5d5d9afa/custom_projection.ipynb b/_downloads/e76354955997eaed2640e48a5d5d9afa/custom_projection.ipynb deleted file mode 100644 index 3300496bbe1..00000000000 --- a/_downloads/e76354955997eaed2640e48a5d5d9afa/custom_projection.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom projection\n\n\nShowcase Hammer projection by alleviating many features of Matplotlib.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nfrom matplotlib.axes import Axes\nfrom matplotlib.patches import Circle\nfrom matplotlib.path import Path\nfrom matplotlib.ticker import NullLocator, Formatter, FixedLocator\nfrom matplotlib.transforms import Affine2D, BboxTransformTo, Transform\nfrom matplotlib.projections import register_projection\nimport matplotlib.spines as mspines\nimport matplotlib.axis as maxis\nimport numpy as np\n\nrcParams = matplotlib.rcParams\n\n# This example projection class is rather long, but it is designed to\n# illustrate many features, not all of which will be used every time.\n# It is also common to factor out a lot of these methods into common\n# code used by a number of projections with similar characteristics\n# (see geo.py).\n\n\nclass GeoAxes(Axes):\n \"\"\"\n An abstract base class for geographic projections\n \"\"\"\n class ThetaFormatter(Formatter):\n \"\"\"\n Used to format the theta tick labels. Converts the native\n unit of radians into degrees and adds a degree symbol.\n \"\"\"\n def __init__(self, round_to=1.0):\n self._round_to = round_to\n\n def __call__(self, x, pos=None):\n degrees = np.round(np.rad2deg(x) / self._round_to) * self._round_to\n if rcParams['text.usetex'] and not rcParams['text.latex.unicode']:\n return r\"$%0.0f^\\circ$\" % degrees\n else:\n return \"%0.0f\\N{DEGREE SIGN}\" % degrees\n\n RESOLUTION = 75\n\n def _init_axis(self):\n self.xaxis = maxis.XAxis(self)\n self.yaxis = maxis.YAxis(self)\n # Do not register xaxis or yaxis with spines -- as done in\n # Axes._init_axis() -- until GeoAxes.xaxis.cla() works.\n # self.spines['geo'].register_axis(self.yaxis)\n self._update_transScale()\n\n def cla(self):\n Axes.cla(self)\n\n self.set_longitude_grid(30)\n self.set_latitude_grid(15)\n self.set_longitude_grid_ends(75)\n self.xaxis.set_minor_locator(NullLocator())\n self.yaxis.set_minor_locator(NullLocator())\n self.xaxis.set_ticks_position('none')\n self.yaxis.set_ticks_position('none')\n self.yaxis.set_tick_params(label1On=True)\n # Why do we need to turn on yaxis tick labels, but\n # xaxis tick labels are already on?\n\n self.grid(rcParams['axes.grid'])\n\n Axes.set_xlim(self, -np.pi, np.pi)\n Axes.set_ylim(self, -np.pi / 2.0, np.pi / 2.0)\n\n def _set_lim_and_transforms(self):\n # A (possibly non-linear) projection on the (already scaled) data\n\n # There are three important coordinate spaces going on here:\n #\n # 1. Data space: The space of the data itself\n #\n # 2. Axes space: The unit rectangle (0, 0) to (1, 1)\n # covering the entire plot area.\n #\n # 3. Display space: The coordinates of the resulting image,\n # often in pixels or dpi/inch.\n\n # This function makes heavy use of the Transform classes in\n # ``lib/matplotlib/transforms.py.`` For more information, see\n # the inline documentation there.\n\n # The goal of the first two transformations is to get from the\n # data space (in this case longitude and latitude) to axes\n # space. It is separated into a non-affine and affine part so\n # that the non-affine part does not have to be recomputed when\n # a simple affine change to the figure has been made (such as\n # resizing the window or changing the dpi).\n\n # 1) The core transformation from data space into\n # rectilinear space defined in the HammerTransform class.\n self.transProjection = self._get_core_transform(self.RESOLUTION)\n\n # 2) The above has an output range that is not in the unit\n # rectangle, so scale and translate it so it fits correctly\n # within the axes. The peculiar calculations of xscale and\n # yscale are specific to a Aitoff-Hammer projection, so don't\n # worry about them too much.\n self.transAffine = self._get_affine_transform()\n\n # 3) This is the transformation from axes space to display\n # space.\n self.transAxes = BboxTransformTo(self.bbox)\n\n # Now put these 3 transforms together -- from data all the way\n # to display coordinates. Using the '+' operator, these\n # transforms will be applied \"in order\". The transforms are\n # automatically simplified, if possible, by the underlying\n # transformation framework.\n self.transData = \\\n self.transProjection + \\\n self.transAffine + \\\n self.transAxes\n\n # The main data transformation is set up. Now deal with\n # gridlines and tick labels.\n\n # Longitude gridlines and ticklabels. The input to these\n # transforms are in display space in x and axes space in y.\n # Therefore, the input values will be in range (-xmin, 0),\n # (xmax, 1). The goal of these transforms is to go from that\n # space to display space. The tick labels will be offset 4\n # pixels from the equator.\n self._xaxis_pretransform = \\\n Affine2D() \\\n .scale(1.0, self._longitude_cap * 2.0) \\\n .translate(0.0, -self._longitude_cap)\n self._xaxis_transform = \\\n self._xaxis_pretransform + \\\n self.transData\n self._xaxis_text1_transform = \\\n Affine2D().scale(1.0, 0.0) + \\\n self.transData + \\\n Affine2D().translate(0.0, 4.0)\n self._xaxis_text2_transform = \\\n Affine2D().scale(1.0, 0.0) + \\\n self.transData + \\\n Affine2D().translate(0.0, -4.0)\n\n # Now set up the transforms for the latitude ticks. The input to\n # these transforms are in axes space in x and display space in\n # y. Therefore, the input values will be in range (0, -ymin),\n # (1, ymax). The goal of these transforms is to go from that\n # space to display space. The tick labels will be offset 4\n # pixels from the edge of the axes ellipse.\n yaxis_stretch = Affine2D().scale(np.pi*2, 1).translate(-np.pi, 0)\n yaxis_space = Affine2D().scale(1.0, 1.1)\n self._yaxis_transform = \\\n yaxis_stretch + \\\n self.transData\n yaxis_text_base = \\\n yaxis_stretch + \\\n self.transProjection + \\\n (yaxis_space +\n self.transAffine +\n self.transAxes)\n self._yaxis_text1_transform = \\\n yaxis_text_base + \\\n Affine2D().translate(-8.0, 0.0)\n self._yaxis_text2_transform = \\\n yaxis_text_base + \\\n Affine2D().translate(8.0, 0.0)\n\n def _get_affine_transform(self):\n transform = self._get_core_transform(1)\n xscale, _ = transform.transform_point((np.pi, 0))\n _, yscale = transform.transform_point((0, np.pi / 2.0))\n return Affine2D() \\\n .scale(0.5 / xscale, 0.5 / yscale) \\\n .translate(0.5, 0.5)\n\n def get_xaxis_transform(self, which='grid'):\n \"\"\"\n Override this method to provide a transformation for the\n x-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n if which not in ['tick1', 'tick2', 'grid']:\n raise ValueError(\n \"'which' must be one of 'tick1', 'tick2', or 'grid'\")\n return self._xaxis_transform\n\n def get_xaxis_text1_transform(self, pad):\n return self._xaxis_text1_transform, 'bottom', 'center'\n\n def get_xaxis_text2_transform(self, pad):\n \"\"\"\n Override this method to provide a transformation for the\n secondary x-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n return self._xaxis_text2_transform, 'top', 'center'\n\n def get_yaxis_transform(self, which='grid'):\n \"\"\"\n Override this method to provide a transformation for the\n y-axis grid and ticks.\n \"\"\"\n if which not in ['tick1', 'tick2', 'grid']:\n raise ValueError(\n \"'which' must be one of 'tick1', 'tick2', or 'grid'\")\n return self._yaxis_transform\n\n def get_yaxis_text1_transform(self, pad):\n \"\"\"\n Override this method to provide a transformation for the\n y-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n return self._yaxis_text1_transform, 'center', 'right'\n\n def get_yaxis_text2_transform(self, pad):\n \"\"\"\n Override this method to provide a transformation for the\n secondary y-axis tick labels.\n\n Returns a tuple of the form (transform, valign, halign)\n \"\"\"\n return self._yaxis_text2_transform, 'center', 'left'\n\n def _gen_axes_patch(self):\n \"\"\"\n Override this method to define the shape that is used for the\n background of the plot. It should be a subclass of Patch.\n\n In this case, it is a Circle (that may be warped by the axes\n transform into an ellipse). Any data and gridlines will be\n clipped to this shape.\n \"\"\"\n return Circle((0.5, 0.5), 0.5)\n\n def _gen_axes_spines(self):\n return {'geo': mspines.Spine.circular_spine(self, (0.5, 0.5), 0.5)}\n\n def set_yscale(self, *args, **kwargs):\n if args[0] != 'linear':\n raise NotImplementedError\n\n # Prevent the user from applying scales to one or both of the\n # axes. In this particular case, scaling the axes wouldn't make\n # sense, so we don't allow it.\n set_xscale = set_yscale\n\n # Prevent the user from changing the axes limits. In our case, we\n # want to display the whole sphere all the time, so we override\n # set_xlim and set_ylim to ignore any input. This also applies to\n # interactive panning and zooming in the GUI interfaces.\n def set_xlim(self, *args, **kwargs):\n raise TypeError(\"It is not possible to change axes limits \"\n \"for geographic projections. Please consider \"\n \"using Basemap or Cartopy.\")\n\n set_ylim = set_xlim\n\n def format_coord(self, lon, lat):\n \"\"\"\n Override this method to change how the values are displayed in\n the status bar.\n\n In this case, we want them to be displayed in degrees N/S/E/W.\n \"\"\"\n lon, lat = np.rad2deg([lon, lat])\n if lat >= 0.0:\n ns = 'N'\n else:\n ns = 'S'\n if lon >= 0.0:\n ew = 'E'\n else:\n ew = 'W'\n return ('%f\\N{DEGREE SIGN}%s, %f\\N{DEGREE SIGN}%s'\n % (abs(lat), ns, abs(lon), ew))\n\n def set_longitude_grid(self, degrees):\n \"\"\"\n Set the number of degrees between each longitude grid.\n\n This is an example method that is specific to this projection\n class -- it provides a more convenient interface to set the\n ticking than set_xticks would.\n \"\"\"\n # Skip -180 and 180, which are the fixed limits.\n grid = np.arange(-180 + degrees, 180, degrees)\n self.xaxis.set_major_locator(FixedLocator(np.deg2rad(grid)))\n self.xaxis.set_major_formatter(self.ThetaFormatter(degrees))\n\n def set_latitude_grid(self, degrees):\n \"\"\"\n Set the number of degrees between each longitude grid.\n\n This is an example method that is specific to this projection\n class -- it provides a more convenient interface than\n set_yticks would.\n \"\"\"\n # Skip -90 and 90, which are the fixed limits.\n grid = np.arange(-90 + degrees, 90, degrees)\n self.yaxis.set_major_locator(FixedLocator(np.deg2rad(grid)))\n self.yaxis.set_major_formatter(self.ThetaFormatter(degrees))\n\n def set_longitude_grid_ends(self, degrees):\n \"\"\"\n Set the latitude(s) at which to stop drawing the longitude grids.\n\n Often, in geographic projections, you wouldn't want to draw\n longitude gridlines near the poles. This allows the user to\n specify the degree at which to stop drawing longitude grids.\n\n This is an example method that is specific to this projection\n class -- it provides an interface to something that has no\n analogy in the base Axes class.\n \"\"\"\n self._longitude_cap = np.deg2rad(degrees)\n self._xaxis_pretransform \\\n .clear() \\\n .scale(1.0, self._longitude_cap * 2.0) \\\n .translate(0.0, -self._longitude_cap)\n\n def get_data_ratio(self):\n \"\"\"\n Return the aspect ratio of the data itself.\n\n This method should be overridden by any Axes that have a\n fixed data ratio.\n \"\"\"\n return 1.0\n\n # Interactive panning and zooming is not supported with this projection,\n # so we override all of the following methods to disable it.\n def can_zoom(self):\n \"\"\"\n Return *True* if this axes supports the zoom box button functionality.\n This axes object does not support interactive zoom box.\n \"\"\"\n return False\n\n def can_pan(self):\n \"\"\"\n Return *True* if this axes supports the pan/zoom button functionality.\n This axes object does not support interactive pan/zoom.\n \"\"\"\n return False\n\n def start_pan(self, x, y, button):\n pass\n\n def end_pan(self):\n pass\n\n def drag_pan(self, button, key, x, y):\n pass\n\n\nclass HammerAxes(GeoAxes):\n \"\"\"\n A custom class for the Aitoff-Hammer projection, an equal-area map\n projection.\n\n https://en.wikipedia.org/wiki/Hammer_projection\n \"\"\"\n\n # The projection must specify a name. This will be used by the\n # user to select the projection,\n # i.e. ``subplot(111, projection='custom_hammer')``.\n name = 'custom_hammer'\n\n class HammerTransform(Transform):\n \"\"\"\n The base Hammer transform.\n \"\"\"\n input_dims = 2\n output_dims = 2\n is_separable = False\n\n def __init__(self, resolution):\n \"\"\"\n Create a new Hammer transform. Resolution is the number of steps\n to interpolate between each input line segment to approximate its\n path in curved Hammer space.\n \"\"\"\n Transform.__init__(self)\n self._resolution = resolution\n\n def transform_non_affine(self, ll):\n longitude, latitude = ll.T\n\n # Pre-compute some values\n half_long = longitude / 2\n cos_latitude = np.cos(latitude)\n sqrt2 = np.sqrt(2)\n\n alpha = np.sqrt(1 + cos_latitude * np.cos(half_long))\n x = (2 * sqrt2) * (cos_latitude * np.sin(half_long)) / alpha\n y = (sqrt2 * np.sin(latitude)) / alpha\n return np.column_stack([x, y])\n\n def transform_path_non_affine(self, path):\n # vertices = path.vertices\n ipath = path.interpolated(self._resolution)\n return Path(self.transform(ipath.vertices), ipath.codes)\n\n def inverted(self):\n return HammerAxes.InvertedHammerTransform(self._resolution)\n\n class InvertedHammerTransform(Transform):\n input_dims = 2\n output_dims = 2\n is_separable = False\n\n def __init__(self, resolution):\n Transform.__init__(self)\n self._resolution = resolution\n\n def transform_non_affine(self, xy):\n x, y = xy.T\n z = np.sqrt(1 - (x / 4) ** 2 - (y / 2) ** 2)\n longitude = 2 * np.arctan((z * x) / (2 * (2 * z ** 2 - 1)))\n latitude = np.arcsin(y*z)\n return np.column_stack([longitude, latitude])\n\n def inverted(self):\n return HammerAxes.HammerTransform(self._resolution)\n\n def __init__(self, *args, **kwargs):\n self._longitude_cap = np.pi / 2.0\n GeoAxes.__init__(self, *args, **kwargs)\n self.set_aspect(0.5, adjustable='box', anchor='C')\n self.cla()\n\n def _get_core_transform(self, resolution):\n return self.HammerTransform(resolution)\n\n\n# Now register the projection with Matplotlib so the user can select it.\nregister_projection(HammerAxes)\n\n\nif __name__ == '__main__':\n import matplotlib.pyplot as plt\n # Now make a simple example using the custom projection.\n plt.subplot(111, projection=\"custom_hammer\")\n p = plt.plot([-1, 1, 1], [-1, -1, 1], \"o-\")\n plt.grid(True)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e771df93e7ed75ea40d6cc6c0fbd652f/whats_new_99_spines.py b/_downloads/e771df93e7ed75ea40d6cc6c0fbd652f/whats_new_99_spines.py deleted file mode 120000 index 2c47faa2726..00000000000 --- a/_downloads/e771df93e7ed75ea40d6cc6c0fbd652f/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e771df93e7ed75ea40d6cc6c0fbd652f/whats_new_99_spines.py \ No newline at end of file diff --git a/_downloads/e77c3e6b4092980727cc1894215191d9/annotate_simple02.ipynb b/_downloads/e77c3e6b4092980727cc1894215191d9/annotate_simple02.ipynb deleted file mode 100644 index ad96508e7a7..00000000000 --- a/_downloads/e77c3e6b4092980727cc1894215191d9/annotate_simple02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n arrowprops=dict(arrowstyle=\"simple\",\n connectionstyle=\"arc3,rad=-0.2\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e77ee153c711bd07f197e6f1b6ebc5a5/histogram_multihist.py b/_downloads/e77ee153c711bd07f197e6f1b6ebc5a5/histogram_multihist.py deleted file mode 120000 index d3324254def..00000000000 --- a/_downloads/e77ee153c711bd07f197e6f1b6ebc5a5/histogram_multihist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e77ee153c711bd07f197e6f1b6ebc5a5/histogram_multihist.py \ No newline at end of file diff --git a/_downloads/e783bd9a169cedbd6daea37f80b63cf6/marker_fillstyle_reference.ipynb b/_downloads/e783bd9a169cedbd6daea37f80b63cf6/marker_fillstyle_reference.ipynb deleted file mode 120000 index efed2b77643..00000000000 --- a/_downloads/e783bd9a169cedbd6daea37f80b63cf6/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e783bd9a169cedbd6daea37f80b63cf6/marker_fillstyle_reference.ipynb \ No newline at end of file diff --git a/_downloads/e784f691945ec5caa3c198fe46b80c5e/demo_axes_divider.py b/_downloads/e784f691945ec5caa3c198fe46b80c5e/demo_axes_divider.py deleted file mode 100644 index 62d94a8d478..00000000000 --- a/_downloads/e784f691945ec5caa3c198fe46b80c5e/demo_axes_divider.py +++ /dev/null @@ -1,131 +0,0 @@ -""" -================= -Demo Axes Divider -================= - -Axes divider to calculate location of axes and -create a divider for them using existing axes instances. -""" -import matplotlib.pyplot as plt - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def demo_simple_image(ax): - Z, extent = get_demo_image() - - im = ax.imshow(Z, extent=extent, interpolation="nearest") - cb = plt.colorbar(im) - plt.setp(cb.ax.get_yticklabels(), visible=False) - - -def demo_locatable_axes_hard(fig): - - from mpl_toolkits.axes_grid1 import SubplotDivider, Size - from mpl_toolkits.axes_grid1.mpl_axes import Axes - - divider = SubplotDivider(fig, 2, 2, 2, aspect=True) - - # axes for image - ax = Axes(fig, divider.get_position()) - - # axes for colorbar - ax_cb = Axes(fig, divider.get_position()) - - h = [Size.AxesX(ax), # main axes - Size.Fixed(0.05), # padding, 0.1 inch - Size.Fixed(0.2), # colorbar, 0.3 inch - ] - - v = [Size.AxesY(ax)] - - divider.set_horizontal(h) - divider.set_vertical(v) - - ax.set_axes_locator(divider.new_locator(nx=0, ny=0)) - ax_cb.set_axes_locator(divider.new_locator(nx=2, ny=0)) - - fig.add_axes(ax) - fig.add_axes(ax_cb) - - ax_cb.axis["left"].toggle(all=False) - ax_cb.axis["right"].toggle(ticks=True) - - Z, extent = get_demo_image() - - im = ax.imshow(Z, extent=extent, interpolation="nearest") - plt.colorbar(im, cax=ax_cb) - plt.setp(ax_cb.get_yticklabels(), visible=False) - - -def demo_locatable_axes_easy(ax): - from mpl_toolkits.axes_grid1 import make_axes_locatable - - divider = make_axes_locatable(ax) - - ax_cb = divider.new_horizontal(size="5%", pad=0.05) - fig = ax.get_figure() - fig.add_axes(ax_cb) - - Z, extent = get_demo_image() - im = ax.imshow(Z, extent=extent, interpolation="nearest") - - plt.colorbar(im, cax=ax_cb) - ax_cb.yaxis.tick_right() - ax_cb.yaxis.set_tick_params(labelright=False) - - -def demo_images_side_by_side(ax): - from mpl_toolkits.axes_grid1 import make_axes_locatable - - divider = make_axes_locatable(ax) - - Z, extent = get_demo_image() - ax2 = divider.new_horizontal(size="100%", pad=0.05) - fig1 = ax.get_figure() - fig1.add_axes(ax2) - - ax.imshow(Z, extent=extent, interpolation="nearest") - ax2.imshow(Z, extent=extent, interpolation="nearest") - ax2.yaxis.set_tick_params(labelleft=False) - - -def demo(): - - fig = plt.figure(figsize=(6, 6)) - - # PLOT 1 - # simple image & colorbar - ax = fig.add_subplot(2, 2, 1) - demo_simple_image(ax) - - # PLOT 2 - # image and colorbar whose location is adjusted in the drawing time. - # a hard way - - demo_locatable_axes_hard(fig) - - # PLOT 3 - # image and colorbar whose location is adjusted in the drawing time. - # a easy way - - ax = fig.add_subplot(2, 2, 3) - demo_locatable_axes_easy(ax) - - # PLOT 4 - # two images side by side with fixed padding. - - ax = fig.add_subplot(2, 2, 4) - demo_images_side_by_side(ax) - - plt.show() - - -demo() diff --git a/_downloads/e78e920f9a2cfdd5c9559a384a57e10b/anatomy.py b/_downloads/e78e920f9a2cfdd5c9559a384a57e10b/anatomy.py deleted file mode 120000 index 3a376c7784d..00000000000 --- a/_downloads/e78e920f9a2cfdd5c9559a384a57e10b/anatomy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e78e920f9a2cfdd5c9559a384a57e10b/anatomy.py \ No newline at end of file diff --git a/_downloads/e799edd4e49a543af371149601eb36ed/table_demo.ipynb b/_downloads/e799edd4e49a543af371149601eb36ed/table_demo.ipynb deleted file mode 120000 index 12324bdcf01..00000000000 --- a/_downloads/e799edd4e49a543af371149601eb36ed/table_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e799edd4e49a543af371149601eb36ed/table_demo.ipynb \ No newline at end of file diff --git a/_downloads/e79c95e56873220b4d8d4c4abd3ffc0f/simple_colorbar.ipynb b/_downloads/e79c95e56873220b4d8d4c4abd3ffc0f/simple_colorbar.ipynb deleted file mode 120000 index dd23b28a80f..00000000000 --- a/_downloads/e79c95e56873220b4d8d4c4abd3ffc0f/simple_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e79c95e56873220b4d8d4c4abd3ffc0f/simple_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/e79eba7ec104ccaae7635b4da9fa283d/psd_demo.py b/_downloads/e79eba7ec104ccaae7635b4da9fa283d/psd_demo.py deleted file mode 120000 index 2da355718d6..00000000000 --- a/_downloads/e79eba7ec104ccaae7635b4da9fa283d/psd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e79eba7ec104ccaae7635b4da9fa283d/psd_demo.py \ No newline at end of file diff --git a/_downloads/e7a8f7fe3f5c4176f1d401bc73d6f9ad/custom_cmap.ipynb b/_downloads/e7a8f7fe3f5c4176f1d401bc73d6f9ad/custom_cmap.ipynb deleted file mode 120000 index 267588b44ac..00000000000 --- a/_downloads/e7a8f7fe3f5c4176f1d401bc73d6f9ad/custom_cmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e7a8f7fe3f5c4176f1d401bc73d6f9ad/custom_cmap.ipynb \ No newline at end of file diff --git a/_downloads/e7af73fc2bba3c36bb163ff5df9a702a/annotate_transform.ipynb b/_downloads/e7af73fc2bba3c36bb163ff5df9a702a/annotate_transform.ipynb deleted file mode 120000 index f15667ccff0..00000000000 --- a/_downloads/e7af73fc2bba3c36bb163ff5df9a702a/annotate_transform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e7af73fc2bba3c36bb163ff5df9a702a/annotate_transform.ipynb \ No newline at end of file diff --git a/_downloads/e7b1a49e0f6e14db9f52bd17b566216f/voxels_numpy_logo.ipynb b/_downloads/e7b1a49e0f6e14db9f52bd17b566216f/voxels_numpy_logo.ipynb deleted file mode 120000 index 07d95a4e9a4..00000000000 --- a/_downloads/e7b1a49e0f6e14db9f52bd17b566216f/voxels_numpy_logo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e7b1a49e0f6e14db9f52bd17b566216f/voxels_numpy_logo.ipynb \ No newline at end of file diff --git a/_downloads/e7b4a2f082c9ba00c81b18b6141a830f/polygon_selector_demo.py b/_downloads/e7b4a2f082c9ba00c81b18b6141a830f/polygon_selector_demo.py deleted file mode 120000 index 2ed11fb007a..00000000000 --- a/_downloads/e7b4a2f082c9ba00c81b18b6141a830f/polygon_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e7b4a2f082c9ba00c81b18b6141a830f/polygon_selector_demo.py \ No newline at end of file diff --git a/_downloads/e7b7f4d72ae2c6eb1c339dba2da66475/auto_subplots_adjust.py b/_downloads/e7b7f4d72ae2c6eb1c339dba2da66475/auto_subplots_adjust.py deleted file mode 120000 index bd56932e7fe..00000000000 --- a/_downloads/e7b7f4d72ae2c6eb1c339dba2da66475/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e7b7f4d72ae2c6eb1c339dba2da66475/auto_subplots_adjust.py \ No newline at end of file diff --git a/_downloads/e7bfb4e04737757afa4b2428ae3f4706/colormap_normalizations_power.ipynb b/_downloads/e7bfb4e04737757afa4b2428ae3f4706/colormap_normalizations_power.ipynb deleted file mode 120000 index 2f578787f55..00000000000 --- a/_downloads/e7bfb4e04737757afa4b2428ae3f4706/colormap_normalizations_power.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e7bfb4e04737757afa4b2428ae3f4706/colormap_normalizations_power.ipynb \ No newline at end of file diff --git a/_downloads/e7df2cabb0bfac6fce7ea70f4b44dd99/pgf_texsystem.ipynb b/_downloads/e7df2cabb0bfac6fce7ea70f4b44dd99/pgf_texsystem.ipynb deleted file mode 100644 index c57e3481cfe..00000000000 --- a/_downloads/e7df2cabb0bfac6fce7ea70f4b44dd99/pgf_texsystem.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pgf Texsystem\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nplt.rcParams.update({\n \"pgf.texsystem\": \"pdflatex\",\n \"pgf.preamble\": [\n r\"\\usepackage[utf8x]{inputenc}\",\n r\"\\usepackage[T1]{fontenc}\",\n r\"\\usepackage{cmbright}\",\n ]\n})\n\nplt.figure(figsize=(4.5, 2.5))\nplt.plot(range(5))\nplt.text(0.5, 3., \"serif\", family=\"serif\")\nplt.text(0.5, 2., \"monospace\", family=\"monospace\")\nplt.text(2.5, 2., \"sans-serif\", family=\"sans-serif\")\nplt.xlabel(r\"\u00b5 is not $\\mu$\")\nplt.tight_layout(.5)\n\nplt.savefig(\"pgf_texsystem.pdf\")\nplt.savefig(\"pgf_texsystem.png\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e7e074af01415660277bc02699cc257e/axes_margins.py b/_downloads/e7e074af01415660277bc02699cc257e/axes_margins.py deleted file mode 120000 index b3434f25875..00000000000 --- a/_downloads/e7e074af01415660277bc02699cc257e/axes_margins.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e7e074af01415660277bc02699cc257e/axes_margins.py \ No newline at end of file diff --git a/_downloads/e7e0a472c3c03189ad6651defb536e0e/axis_direction_demo_step01.ipynb b/_downloads/e7e0a472c3c03189ad6651defb536e0e/axis_direction_demo_step01.ipynb deleted file mode 100644 index 8a534efc8de..00000000000 --- a/_downloads/e7e0a472c3c03189ad6651defb536e0e/axis_direction_demo_step01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step01\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x\"] = ax.new_floating_axis(1, 0.5)\n ax.axis[\"x\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(3, 2.5))\nfig.subplots_adjust(top=0.8)\nax1 = setup_axes(fig, \"111\")\n\nax1.axis[\"x\"].set_axis_direction(\"left\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e7e77a6502f9e28a843cccc17c2dfd89/imshow_extent.ipynb b/_downloads/e7e77a6502f9e28a843cccc17c2dfd89/imshow_extent.ipynb deleted file mode 100644 index 118842121c4..00000000000 --- a/_downloads/e7e77a6502f9e28a843cccc17c2dfd89/imshow_extent.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n*origin* and *extent* in `~.Axes.imshow`\n========================================\n\n:meth:`~.Axes.imshow` allows you to render an image (either a 2D array\nwhich will be color-mapped (based on *norm* and *cmap*) or and 3D RGB(A)\narray which will be used as-is) to a rectangular region in dataspace.\nThe orientation of the image in the final rendering is controlled by\nthe *origin* and *extent* kwargs (and attributes on the resulting\n`~.AxesImage` instance) and the data limits of the axes.\n\nThe *extent* kwarg controls the bounding box in data coordinates that\nthe image will fill specified as ``(left, right, bottom, top)`` in\n**data coordinates**, the *origin* kwarg controls how the image fills\nthat bounding box, and the orientation in the final rendered image is\nalso affected by the axes limits.\n\n.. hint:: Most of the code below is used for adding labels and informative\n text to the plots. The described effects of *origin* and *extent* can be\n seen in the plots without the need to follow all code details.\n\n For a quick understanding, you may want to skip the code details below and\n directly continue with the discussion of the results.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.gridspec import GridSpec\n\n\ndef index_to_coordinate(index, extent, origin):\n \"\"\"Return the pixel center of an index.\"\"\"\n left, right, bottom, top = extent\n\n hshift = 0.5 * np.sign(right - left)\n left, right = left + hshift, right - hshift\n vshift = 0.5 * np.sign(top - bottom)\n bottom, top = bottom + vshift, top - vshift\n\n if origin == 'upper':\n bottom, top = top, bottom\n\n return {\n \"[0, 0]\": (left, bottom),\n \"[M', 0]\": (left, top),\n \"[0, N']\": (right, bottom),\n \"[M', N']\": (right, top),\n }[index]\n\n\ndef get_index_label_pos(index, extent, origin, inverted_xindex):\n \"\"\"\n Return the desired position and horizontal alignment of an index label.\n \"\"\"\n if extent is None:\n extent = lookup_extent(origin)\n left, right, bottom, top = extent\n x, y = index_to_coordinate(index, extent, origin)\n\n is_x0 = index[-2:] == \"0]\"\n halign = 'left' if is_x0 ^ inverted_xindex else 'right'\n hshift = 0.5 * np.sign(left - right)\n x += hshift * (1 if is_x0 else -1)\n return x, y, halign\n\n\ndef get_color(index, data, cmap):\n \"\"\"Return the data color of an index.\"\"\"\n val = {\n \"[0, 0]\": data[0, 0],\n \"[0, N']\": data[0, -1],\n \"[M', 0]\": data[-1, 0],\n \"[M', N']\": data[-1, -1],\n }[index]\n return cmap(val / data.max())\n\n\ndef lookup_extent(origin):\n \"\"\"Return extent for label positioning when not given explicitly.\"\"\"\n if origin == 'lower':\n return (-0.5, 6.5, -0.5, 5.5)\n else:\n return (-0.5, 6.5, 5.5, -0.5)\n\n\ndef set_extent_None_text(ax):\n ax.text(3, 2.5, 'equals\\nextent=None', size='large',\n ha='center', va='center', color='w')\n\n\ndef plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim):\n \"\"\"Actually run ``imshow()`` and add extent and index labels.\"\"\"\n im = ax.imshow(data, origin=origin, extent=extent)\n\n # extent labels (left, right, bottom, top)\n left, right, bottom, top = im.get_extent()\n if xlim is None or top > bottom:\n upper_string, lower_string = 'top', 'bottom'\n else:\n upper_string, lower_string = 'bottom', 'top'\n if ylim is None or left < right:\n port_string, starboard_string = 'left', 'right'\n inverted_xindex = False\n else:\n port_string, starboard_string = 'right', 'left'\n inverted_xindex = True\n bbox_kwargs = {'fc': 'w', 'alpha': .75, 'boxstyle': \"round4\"}\n ann_kwargs = {'xycoords': 'axes fraction',\n 'textcoords': 'offset points',\n 'bbox': bbox_kwargs}\n ax.annotate(upper_string, xy=(.5, 1), xytext=(0, -1),\n ha='center', va='top', **ann_kwargs)\n ax.annotate(lower_string, xy=(.5, 0), xytext=(0, 1),\n ha='center', va='bottom', **ann_kwargs)\n ax.annotate(port_string, xy=(0, .5), xytext=(1, 0),\n ha='left', va='center', rotation=90,\n **ann_kwargs)\n ax.annotate(starboard_string, xy=(1, .5), xytext=(-1, 0),\n ha='right', va='center', rotation=-90,\n **ann_kwargs)\n ax.set_title('origin: {origin}'.format(origin=origin))\n\n # index labels\n for index in [\"[0, 0]\", \"[0, N']\", \"[M', 0]\", \"[M', N']\"]:\n tx, ty, halign = get_index_label_pos(index, extent, origin,\n inverted_xindex)\n facecolor = get_color(index, data, im.get_cmap())\n ax.text(tx, ty, index, color='white', ha=halign, va='center',\n bbox={'boxstyle': 'square', 'facecolor': facecolor})\n if xlim:\n ax.set_xlim(*xlim)\n if ylim:\n ax.set_ylim(*ylim)\n\n\ndef generate_imshow_demo_grid(extents, xlim=None, ylim=None):\n N = len(extents)\n fig = plt.figure(tight_layout=True)\n fig.set_size_inches(6, N * (11.25) / 5)\n gs = GridSpec(N, 5, figure=fig)\n\n columns = {'label': [fig.add_subplot(gs[j, 0]) for j in range(N)],\n 'upper': [fig.add_subplot(gs[j, 1:3]) for j in range(N)],\n 'lower': [fig.add_subplot(gs[j, 3:5]) for j in range(N)]}\n x, y = np.ogrid[0:6, 0:7]\n data = x + y\n\n for origin in ['upper', 'lower']:\n for ax, extent in zip(columns[origin], extents):\n plot_imshow_with_labels(ax, data, extent, origin, xlim, ylim)\n\n for ax, extent in zip(columns['label'], extents):\n text_kwargs = {'ha': 'right',\n 'va': 'center',\n 'xycoords': 'axes fraction',\n 'xy': (1, .5)}\n if extent is None:\n ax.annotate('None', **text_kwargs)\n ax.set_title('extent=')\n else:\n left, right, bottom, top = extent\n text = ('left: {left:0.1f}\\nright: {right:0.1f}\\n' +\n 'bottom: {bottom:0.1f}\\ntop: {top:0.1f}\\n').format(\n left=left, right=right, bottom=bottom, top=top)\n\n ax.annotate(text, **text_kwargs)\n ax.axis('off')\n return columns" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Default extent\n--------------\n\nFirst, let's have a look at the default `extent=None`\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "generate_imshow_demo_grid(extents=[None])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Generally, for an array of shape (M, N), the first index runs along the\nvertical, the second index runs along the horizontal.\nThe pixel centers are at integer positions ranging from 0 to ``N' = N - 1``\nhorizontally and from 0 to ``M' = M - 1`` vertically.\n*origin* determines how to the data is filled in the bounding box.\n\nFor ``origin='lower'``:\n\n - [0, 0] is at (left, bottom)\n - [M', 0] is at (left, top)\n - [0, N'] is at (right, bottom)\n - [M', N'] is at (right, top)\n\n``origin='upper'`` reverses the vertical axes direction and filling:\n\n - [0, 0] is at (left, top)\n - [M', 0] is at (left, bottom)\n - [0, N'] is at (right, top)\n - [M', N'] is at (right, bottom)\n\nIn summary, the position of the [0, 0] index as well as the extent are\ninfluenced by *origin*:\n\n====== =============== ==========================================\norigin [0, 0] position extent\n====== =============== ==========================================\nupper top left ``(-0.5, numcols-0.5, numrows-0.5, -0.5)``\nlower bottom left ``(-0.5, numcols-0.5, -0.5, numrows-0.5)``\n====== =============== ==========================================\n\nThe default value of *origin* is set by :rc:`image.origin` which defaults\nto ``'upper'`` to match the matrix indexing conventions in math and\ncomputer graphics image indexing conventions.\n\n\nExplicit extent\n---------------\n\nBy setting *extent* we define the coordinates of the image area. The\nunderlying image data is interpolated/resampled to fill that area.\n\nIf the axes is set to autoscale, then the view limits of the axes are set\nto match the *extent* which ensures that the coordinate set by\n``(left, bottom)`` is at the bottom left of the axes! However, this\nmay invert the axis so they do not increase in the 'natural' direction.\n\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "extents = [(-0.5, 6.5, -0.5, 5.5),\n (-0.5, 6.5, 5.5, -0.5),\n (6.5, -0.5, -0.5, 5.5),\n (6.5, -0.5, 5.5, -0.5)]\n\ncolumns = generate_imshow_demo_grid(extents)\nset_extent_None_text(columns['upper'][1])\nset_extent_None_text(columns['lower'][0])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Explicit extent and axes limits\n-------------------------------\n\nIf we fix the axes limits by explicitly setting `set_xlim` / `set_ylim`, we\nforce a certain size and orientation of the axes.\nThis can decouple the 'left-right' and 'top-bottom' sense of the image from\nthe orientation on the screen.\n\nIn the example below we have chosen the limits slightly larger than the\nextent (note the white areas within the Axes).\n\nWhile we keep the extents as in the examples before, the coordinate (0, 0)\nis now explicitly put at the bottom left and values increase to up and to\nthe right (from the viewer point of view).\nWe can see that:\n\n- The coordinate ``(left, bottom)`` anchors the image which then fills the\n box going towards the ``(right, top)`` point in data space.\n- The first column is always closest to the 'left'.\n- *origin* controls if the first row is closest to 'top' or 'bottom'.\n- The image may be inverted along either direction.\n- The 'left-right' and 'top-bottom' sense of the image may be uncoupled from\n the orientation on the screen.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "generate_imshow_demo_grid(extents=[None] + extents,\n xlim=(-2, 8), ylim=(-1, 6))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e7ecb4f6799167cf0409edff13ddb823/sankey_basics.py b/_downloads/e7ecb4f6799167cf0409edff13ddb823/sankey_basics.py deleted file mode 120000 index ac3ac98240f..00000000000 --- a/_downloads/e7ecb4f6799167cf0409edff13ddb823/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e7ecb4f6799167cf0409edff13ddb823/sankey_basics.py \ No newline at end of file diff --git a/_downloads/e7f3fef00575da4862a4fdf54f821262/create_subplots.ipynb b/_downloads/e7f3fef00575da4862a4fdf54f821262/create_subplots.ipynb deleted file mode 100644 index 4172c8969f5..00000000000 --- a/_downloads/e7f3fef00575da4862a4fdf54f821262/create_subplots.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nEasily creating subplots\n========================\n\nIn early versions of matplotlib, if you wanted to use the pythonic API\nand create a figure instance and from that create a grid of subplots,\npossibly with shared axes, it involved a fair amount of boilerplate\ncode. e.g.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.random.randn(50)\n\n# old style\nfig = plt.figure()\nax1 = fig.add_subplot(221)\nax2 = fig.add_subplot(222, sharex=ax1, sharey=ax1)\nax3 = fig.add_subplot(223, sharex=ax1, sharey=ax1)\nax3 = fig.add_subplot(224, sharex=ax1, sharey=ax1)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Fernando Perez has provided a nice top level method to create in\n:func:`~matplotlib.pyplots.subplots` (note the \"s\" at the end)\neverything at once, and turn on x and y sharing for the whole bunch.\nYou can either unpack the axes individually...\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# new style method 1; unpack the axes\nfig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, sharex=True, sharey=True)\nax1.plot(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "or get them back as a numrows x numcolumns object array which supports\nnumpy indexing\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# new style method 2; use an axes array\nfig, axs = plt.subplots(2, 2, sharex=True, sharey=True)\naxs[0, 0].plot(x)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e7f9c70c85a0baef60a96c67667f5a49/anchored_box02.ipynb b/_downloads/e7f9c70c85a0baef60a96c67667f5a49/anchored_box02.ipynb deleted file mode 100644 index 04a6b83d12a..00000000000 --- a/_downloads/e7f9c70c85a0baef60a96c67667f5a49/anchored_box02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Anchored Box02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Circle\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nada = AnchoredDrawingArea(40, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\np1 = Circle((10, 10), 10)\nada.drawing_area.add_artist(p1)\np2 = Circle((30, 10), 5, fc=\"r\")\nada.drawing_area.add_artist(p2)\n\nax.add_artist(ada)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e801dea16d50e0363c772c4b110b90f6/multiprocess_sgskip.py b/_downloads/e801dea16d50e0363c772c4b110b90f6/multiprocess_sgskip.py deleted file mode 120000 index c83a62fbfca..00000000000 --- a/_downloads/e801dea16d50e0363c772c4b110b90f6/multiprocess_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e801dea16d50e0363c772c4b110b90f6/multiprocess_sgskip.py \ No newline at end of file diff --git a/_downloads/e802de56fe6c31039036870a6344eedf/annotation_demo.py b/_downloads/e802de56fe6c31039036870a6344eedf/annotation_demo.py deleted file mode 120000 index 8eded83ce45..00000000000 --- a/_downloads/e802de56fe6c31039036870a6344eedf/annotation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e802de56fe6c31039036870a6344eedf/annotation_demo.py \ No newline at end of file diff --git a/_downloads/e803661b949f9884713352e1bcb48981/tripcolor_demo.ipynb b/_downloads/e803661b949f9884713352e1bcb48981/tripcolor_demo.ipynb deleted file mode 120000 index 80384a6162c..00000000000 --- a/_downloads/e803661b949f9884713352e1bcb48981/tripcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e803661b949f9884713352e1bcb48981/tripcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/e80ac83cb8eaf98c20a2c93806ff9180/collections.py b/_downloads/e80ac83cb8eaf98c20a2c93806ff9180/collections.py deleted file mode 120000 index 737c31df3df..00000000000 --- a/_downloads/e80ac83cb8eaf98c20a2c93806ff9180/collections.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e80ac83cb8eaf98c20a2c93806ff9180/collections.py \ No newline at end of file diff --git a/_downloads/e813e23d0fb9bee3c3042630ea46547f/bars3d.ipynb b/_downloads/e813e23d0fb9bee3c3042630ea46547f/bars3d.ipynb deleted file mode 120000 index 97c51493e98..00000000000 --- a/_downloads/e813e23d0fb9bee3c3042630ea46547f/bars3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e813e23d0fb9bee3c3042630ea46547f/bars3d.ipynb \ No newline at end of file diff --git a/_downloads/e81d005463e7eaf1ebc33eee4d638cba/path_tutorial.py b/_downloads/e81d005463e7eaf1ebc33eee4d638cba/path_tutorial.py deleted file mode 120000 index ce96180fc19..00000000000 --- a/_downloads/e81d005463e7eaf1ebc33eee4d638cba/path_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e81d005463e7eaf1ebc33eee4d638cba/path_tutorial.py \ No newline at end of file diff --git a/_downloads/e820dfbfc055754e5593dee39633fa7a/customizing.ipynb b/_downloads/e820dfbfc055754e5593dee39633fa7a/customizing.ipynb deleted file mode 120000 index 3d63894cf01..00000000000 --- a/_downloads/e820dfbfc055754e5593dee39633fa7a/customizing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e820dfbfc055754e5593dee39633fa7a/customizing.ipynb \ No newline at end of file diff --git a/_downloads/e82cb60be63bd9a6208c6aeb88e33826/subplots_demo.py b/_downloads/e82cb60be63bd9a6208c6aeb88e33826/subplots_demo.py deleted file mode 120000 index c5230394b54..00000000000 --- a/_downloads/e82cb60be63bd9a6208c6aeb88e33826/subplots_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e82cb60be63bd9a6208c6aeb88e33826/subplots_demo.py \ No newline at end of file diff --git a/_downloads/e8362a2997f8325ea6ff5da748b80c96/log_test.ipynb b/_downloads/e8362a2997f8325ea6ff5da748b80c96/log_test.ipynb deleted file mode 120000 index 921a59002e3..00000000000 --- a/_downloads/e8362a2997f8325ea6ff5da748b80c96/log_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e8362a2997f8325ea6ff5da748b80c96/log_test.ipynb \ No newline at end of file diff --git a/_downloads/e83826b1d5fa98e36c4ba0cc9caf52db/dark_background.py b/_downloads/e83826b1d5fa98e36c4ba0cc9caf52db/dark_background.py deleted file mode 120000 index c33d725e96c..00000000000 --- a/_downloads/e83826b1d5fa98e36c4ba0cc9caf52db/dark_background.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e83826b1d5fa98e36c4ba0cc9caf52db/dark_background.py \ No newline at end of file diff --git a/_downloads/e83a3a3889473a634199a4ec27b3264b/animated_histogram.ipynb b/_downloads/e83a3a3889473a634199a4ec27b3264b/animated_histogram.ipynb deleted file mode 120000 index 4b8d9520cc2..00000000000 --- a/_downloads/e83a3a3889473a634199a4ec27b3264b/animated_histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e83a3a3889473a634199a4ec27b3264b/animated_histogram.ipynb \ No newline at end of file diff --git a/_downloads/e83fa918d4012d4ca7e2bd48e7ab0935/gradient_bar.py b/_downloads/e83fa918d4012d4ca7e2bd48e7ab0935/gradient_bar.py deleted file mode 120000 index e84d18b4b46..00000000000 --- a/_downloads/e83fa918d4012d4ca7e2bd48e7ab0935/gradient_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e83fa918d4012d4ca7e2bd48e7ab0935/gradient_bar.py \ No newline at end of file diff --git a/_downloads/e847b8806485c4c4edc1e207fa32fe0e/simple_axisline2.py b/_downloads/e847b8806485c4c4edc1e207fa32fe0e/simple_axisline2.py deleted file mode 120000 index 638b0868510..00000000000 --- a/_downloads/e847b8806485c4c4edc1e207fa32fe0e/simple_axisline2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e847b8806485c4c4edc1e207fa32fe0e/simple_axisline2.py \ No newline at end of file diff --git a/_downloads/e850dfbda7fd7771dc9fc10014b4945e/contourf_demo.ipynb b/_downloads/e850dfbda7fd7771dc9fc10014b4945e/contourf_demo.ipynb deleted file mode 120000 index 173922e12dc..00000000000 --- a/_downloads/e850dfbda7fd7771dc9fc10014b4945e/contourf_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e850dfbda7fd7771dc9fc10014b4945e/contourf_demo.ipynb \ No newline at end of file diff --git a/_downloads/e8561833383bb54b30c85edd6d816e78/nested_pie.py b/_downloads/e8561833383bb54b30c85edd6d816e78/nested_pie.py deleted file mode 120000 index fe50829cf4f..00000000000 --- a/_downloads/e8561833383bb54b30c85edd6d816e78/nested_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e8561833383bb54b30c85edd6d816e78/nested_pie.py \ No newline at end of file diff --git a/_downloads/e86149c2d4ec9d5b99d6dabd401d63bd/colormap_normalizations.py b/_downloads/e86149c2d4ec9d5b99d6dabd401d63bd/colormap_normalizations.py deleted file mode 120000 index c0491e52cac..00000000000 --- a/_downloads/e86149c2d4ec9d5b99d6dabd401d63bd/colormap_normalizations.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e86149c2d4ec9d5b99d6dabd401d63bd/colormap_normalizations.py \ No newline at end of file diff --git a/_downloads/e86346b798f8721126105076dbaa5e56/simple_axisartist1.ipynb b/_downloads/e86346b798f8721126105076dbaa5e56/simple_axisartist1.ipynb deleted file mode 120000 index e3d0aa26043..00000000000 --- a/_downloads/e86346b798f8721126105076dbaa5e56/simple_axisartist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e86346b798f8721126105076dbaa5e56/simple_axisartist1.ipynb \ No newline at end of file diff --git a/_downloads/e8657fdac971c8f2d04b9a9239206e54/demo_axes_hbox_divider.ipynb b/_downloads/e8657fdac971c8f2d04b9a9239206e54/demo_axes_hbox_divider.ipynb deleted file mode 100644 index c3fb46e0a16..00000000000 --- a/_downloads/e8657fdac971c8f2d04b9a9239206e54/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes Hbox Divider\n\n\nHbox Divider to arrange subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1.axes_divider import HBoxDivider\nimport mpl_toolkits.axes_grid1.axes_size as Size\n\n\ndef make_heights_equal(fig, rect, ax1, ax2, pad):\n # pad in inches\n\n h1, v1 = Size.AxesX(ax1), Size.AxesY(ax1)\n h2, v2 = Size.AxesX(ax2), Size.AxesY(ax2)\n\n pad_v = Size.Scaled(1)\n pad_h = Size.Fixed(pad)\n\n my_divider = HBoxDivider(fig, rect,\n horizontal=[h1, pad_h, h2],\n vertical=[v1, pad_v, v2])\n\n ax1.set_axes_locator(my_divider.new_locator(0))\n ax2.set_axes_locator(my_divider.new_locator(2))\n\n\nif __name__ == \"__main__\":\n\n arr1 = np.arange(20).reshape((4, 5))\n arr2 = np.arange(20).reshape((5, 4))\n\n fig, (ax1, ax2) = plt.subplots(1, 2)\n ax1.imshow(arr1, interpolation=\"nearest\")\n ax2.imshow(arr2, interpolation=\"nearest\")\n\n rect = 111 # subplot param for combined axes\n make_heights_equal(fig, rect, ax1, ax2, pad=0.5) # pad in inches\n\n for ax in [ax1, ax2]:\n ax.locator_params(nbins=4)\n\n # annotate\n ax3 = plt.axes([0.5, 0.5, 0.001, 0.001], frameon=False)\n ax3.xaxis.set_visible(False)\n ax3.yaxis.set_visible(False)\n ax3.annotate(\"Location of two axes are adjusted\\n\"\n \"so that they have equal heights\\n\"\n \"while maintaining their aspect ratios\", (0.5, 0.5),\n xycoords=\"axes fraction\", va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round, pad=1\", fc=\"w\"))\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e86a584c0874b485678b7e4d87a4430c/line_styles_reference.py b/_downloads/e86a584c0874b485678b7e4d87a4430c/line_styles_reference.py deleted file mode 120000 index f2ee336cbca..00000000000 --- a/_downloads/e86a584c0874b485678b7e4d87a4430c/line_styles_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e86a584c0874b485678b7e4d87a4430c/line_styles_reference.py \ No newline at end of file diff --git a/_downloads/e86dc57d96f9e95f6be16904ca52ec9f/line_collection.ipynb b/_downloads/e86dc57d96f9e95f6be16904ca52ec9f/line_collection.ipynb deleted file mode 120000 index 3502907dddb..00000000000 --- a/_downloads/e86dc57d96f9e95f6be16904ca52ec9f/line_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e86dc57d96f9e95f6be16904ca52ec9f/line_collection.ipynb \ No newline at end of file diff --git a/_downloads/e88314c5ef2ff3892bcb1a8c0490f2e4/fonts_demo.ipynb b/_downloads/e88314c5ef2ff3892bcb1a8c0490f2e4/fonts_demo.ipynb deleted file mode 120000 index c06abef07b5..00000000000 --- a/_downloads/e88314c5ef2ff3892bcb1a8c0490f2e4/fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e88314c5ef2ff3892bcb1a8c0490f2e4/fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/e88438d950c9b2ddc23d7c19068b3c3c/colormapnorms.ipynb b/_downloads/e88438d950c9b2ddc23d7c19068b3c3c/colormapnorms.ipynb deleted file mode 120000 index f5e9a819705..00000000000 --- a/_downloads/e88438d950c9b2ddc23d7c19068b3c3c/colormapnorms.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e88438d950c9b2ddc23d7c19068b3c3c/colormapnorms.ipynb \ No newline at end of file diff --git a/_downloads/e887be8c5fe3e27f56076150e6b1649f/demo_axes_grid2.ipynb b/_downloads/e887be8c5fe3e27f56076150e6b1649f/demo_axes_grid2.ipynb deleted file mode 120000 index 56a7508b492..00000000000 --- a/_downloads/e887be8c5fe3e27f56076150e6b1649f/demo_axes_grid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e887be8c5fe3e27f56076150e6b1649f/demo_axes_grid2.ipynb \ No newline at end of file diff --git a/_downloads/e88e8106dd2fb538bae1a776500aae50/demo_axes_grid2.py b/_downloads/e88e8106dd2fb538bae1a776500aae50/demo_axes_grid2.py deleted file mode 120000 index 6a8c63f0a59..00000000000 --- a/_downloads/e88e8106dd2fb538bae1a776500aae50/demo_axes_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e88e8106dd2fb538bae1a776500aae50/demo_axes_grid2.py \ No newline at end of file diff --git a/_downloads/e89e0015c5689922f3182fcef182b68d/colorbar_tick_labelling_demo.py b/_downloads/e89e0015c5689922f3182fcef182b68d/colorbar_tick_labelling_demo.py deleted file mode 120000 index 62fea920b0b..00000000000 --- a/_downloads/e89e0015c5689922f3182fcef182b68d/colorbar_tick_labelling_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e89e0015c5689922f3182fcef182b68d/colorbar_tick_labelling_demo.py \ No newline at end of file diff --git a/_downloads/e89f15b55531ccb9b29d635820459db4/multicolored_line.ipynb b/_downloads/e89f15b55531ccb9b29d635820459db4/multicolored_line.ipynb deleted file mode 100644 index 3bc2c28a1eb..00000000000 --- a/_downloads/e89f15b55531ccb9b29d635820459db4/multicolored_line.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Multicolored lines\n\n\nThis example shows how to make a multi-colored line. In this example, the line\nis colored based on its derivative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.collections import LineCollection\nfrom matplotlib.colors import ListedColormap, BoundaryNorm\n\nx = np.linspace(0, 3 * np.pi, 500)\ny = np.sin(x)\ndydx = np.cos(0.5 * (x[:-1] + x[1:])) # first derivative\n\n# Create a set of line segments so that we can color them individually\n# This creates the points as a N x 1 x 2 array so that we can stack points\n# together easily to get the segments. The segments array for line collection\n# needs to be (numlines) x (points per line) x 2 (for x and y)\npoints = np.array([x, y]).T.reshape(-1, 1, 2)\nsegments = np.concatenate([points[:-1], points[1:]], axis=1)\n\nfig, axs = plt.subplots(2, 1, sharex=True, sharey=True)\n\n# Create a continuous norm to map from data points to colors\nnorm = plt.Normalize(dydx.min(), dydx.max())\nlc = LineCollection(segments, cmap='viridis', norm=norm)\n# Set the values used for colormapping\nlc.set_array(dydx)\nlc.set_linewidth(2)\nline = axs[0].add_collection(lc)\nfig.colorbar(line, ax=axs[0])\n\n# Use a boundary norm instead\ncmap = ListedColormap(['r', 'g', 'b'])\nnorm = BoundaryNorm([-1, -0.5, 0.5, 1], cmap.N)\nlc = LineCollection(segments, cmap=cmap, norm=norm)\nlc.set_array(dydx)\nlc.set_linewidth(2)\nline = axs[1].add_collection(lc)\nfig.colorbar(line, ax=axs[1])\n\naxs[0].set_xlim(x.min(), x.max())\naxs[0].set_ylim(-1.1, 1.1)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e8a11661141c61400835823fee9e2c64/scatter_piecharts.ipynb b/_downloads/e8a11661141c61400835823fee9e2c64/scatter_piecharts.ipynb deleted file mode 120000 index a9e165a65ca..00000000000 --- a/_downloads/e8a11661141c61400835823fee9e2c64/scatter_piecharts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e8a11661141c61400835823fee9e2c64/scatter_piecharts.ipynb \ No newline at end of file diff --git a/_downloads/e8a3495b6629a4214a723aa9d3541a7d/categorical_variables.py b/_downloads/e8a3495b6629a4214a723aa9d3541a7d/categorical_variables.py deleted file mode 120000 index be6ad4121ef..00000000000 --- a/_downloads/e8a3495b6629a4214a723aa9d3541a7d/categorical_variables.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e8a3495b6629a4214a723aa9d3541a7d/categorical_variables.py \ No newline at end of file diff --git a/_downloads/e8b90465a09c0c6b6811559f1ef2a81a/image_masked.py b/_downloads/e8b90465a09c0c6b6811559f1ef2a81a/image_masked.py deleted file mode 120000 index 668637502e9..00000000000 --- a/_downloads/e8b90465a09c0c6b6811559f1ef2a81a/image_masked.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e8b90465a09c0c6b6811559f1ef2a81a/image_masked.py \ No newline at end of file diff --git a/_downloads/e8c20f44b95dd8e8ad19ad1f3c0334a8/errorbar_limits.py b/_downloads/e8c20f44b95dd8e8ad19ad1f3c0334a8/errorbar_limits.py deleted file mode 120000 index dfeb5c03593..00000000000 --- a/_downloads/e8c20f44b95dd8e8ad19ad1f3c0334a8/errorbar_limits.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e8c20f44b95dd8e8ad19ad1f3c0334a8/errorbar_limits.py \ No newline at end of file diff --git a/_downloads/e8c849788d37dd5a43cbb8f9e0e22af9/hyperlinks_sgskip.py b/_downloads/e8c849788d37dd5a43cbb8f9e0e22af9/hyperlinks_sgskip.py deleted file mode 100644 index 5298d45cdc0..00000000000 --- a/_downloads/e8c849788d37dd5a43cbb8f9e0e22af9/hyperlinks_sgskip.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -========== -Hyperlinks -========== - -This example demonstrates how to set a hyperlinks on various kinds of elements. - -This currently only works with the SVG backend. - -""" - - -import numpy as np -import matplotlib.cm as cm -import matplotlib.pyplot as plt - -############################################################################### - -f = plt.figure() -s = plt.scatter([1, 2, 3], [4, 5, 6]) -s.set_urls(['http://www.bbc.co.uk/news', 'http://www.google.com', None]) -f.savefig('scatter.svg') - -############################################################################### - -f = plt.figure() -delta = 0.025 -x = y = np.arange(-3.0, 3.0, delta) -X, Y = np.meshgrid(x, y) -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - -im = plt.imshow(Z, interpolation='bilinear', cmap=cm.gray, - origin='lower', extent=[-3, 3, -3, 3]) - -im.set_url('http://www.google.com') -f.savefig('image.svg') diff --git a/_downloads/e8c858d65bfefd77ba6e5a2440f72b6a/demo_axisline_style.ipynb b/_downloads/e8c858d65bfefd77ba6e5a2440f72b6a/demo_axisline_style.ipynb deleted file mode 120000 index 103a25b9579..00000000000 --- a/_downloads/e8c858d65bfefd77ba6e5a2440f72b6a/demo_axisline_style.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e8c858d65bfefd77ba6e5a2440f72b6a/demo_axisline_style.ipynb \ No newline at end of file diff --git a/_downloads/e8d91da0aa08ca9728e8ac437b8d1f60/quad_bezier.ipynb b/_downloads/e8d91da0aa08ca9728e8ac437b8d1f60/quad_bezier.ipynb deleted file mode 120000 index ef4b60675e2..00000000000 --- a/_downloads/e8d91da0aa08ca9728e8ac437b8d1f60/quad_bezier.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e8d91da0aa08ca9728e8ac437b8d1f60/quad_bezier.ipynb \ No newline at end of file diff --git a/_downloads/e8eab54bc731131aafe266d4199965ed/fill.ipynb b/_downloads/e8eab54bc731131aafe266d4199965ed/fill.ipynb deleted file mode 120000 index 938fed66fbb..00000000000 --- a/_downloads/e8eab54bc731131aafe266d4199965ed/fill.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e8eab54bc731131aafe266d4199965ed/fill.ipynb \ No newline at end of file diff --git a/_downloads/e8eb8a6b31e94c0342a24ffa98844089/usage.py b/_downloads/e8eb8a6b31e94c0342a24ffa98844089/usage.py deleted file mode 100644 index d42f6ead859..00000000000 --- a/_downloads/e8eb8a6b31e94c0342a24ffa98844089/usage.py +++ /dev/null @@ -1,783 +0,0 @@ -""" -*********** -Usage Guide -*********** - -This tutorial covers some basic usage patterns and best-practices to -help you get started with Matplotlib. - -.. _general_concepts: - -General Concepts -================ - -:mod:`matplotlib` has an extensive codebase that can be daunting to many -new users. However, most of matplotlib can be understood with a fairly -simple conceptual framework and knowledge of a few important points. - -Plotting requires action on a range of levels, from the most general -(e.g., 'contour this 2-D array') to the most specific (e.g., 'color -this screen pixel red'). The purpose of a plotting package is to assist -you in visualizing your data as easily as possible, with all the necessary -control -- that is, by using relatively high-level commands most of -the time, and still have the ability to use the low-level commands when -needed. - -Therefore, everything in matplotlib is organized in a hierarchy. At the top -of the hierarchy is the matplotlib "state-machine environment" which is -provided by the :mod:`matplotlib.pyplot` module. At this level, simple -functions are used to add plot elements (lines, images, text, etc.) to -the current axes in the current figure. - -.. note:: - - Pyplot's state-machine environment behaves similarly to MATLAB and - should be most familiar to users with MATLAB experience. - -The next level down in the hierarchy is the first level of the object-oriented -interface, in which pyplot is used only for a few functions such as figure -creation, and the user explicitly creates and keeps track of the figure -and axes objects. At this level, the user uses pyplot to create figures, -and through those figures, one or more axes objects can be created. These -axes objects are then used for most plotting actions. - -For even more control -- which is essential for things like embedding -matplotlib plots in GUI applications -- the pyplot level may be dropped -completely, leaving a purely object-oriented approach. -""" - -# sphinx_gallery_thumbnail_number = 3 -import matplotlib.pyplot as plt -import numpy as np - -############################################################################### -# .. _figure_parts: -# -# Parts of a Figure -# ================= -# -# .. image:: ../../_static/anatomy.png -# -# -# :class:`~matplotlib.figure.Figure` -# ---------------------------------- -# -# The **whole** figure. The figure keeps -# track of all the child :class:`~matplotlib.axes.Axes`, a smattering of -# 'special' artists (titles, figure legends, etc), and the **canvas**. -# (Don't worry too much about the canvas, it is crucial as it is the -# object that actually does the drawing to get you your plot, but as the -# user it is more-or-less invisible to you). A figure can have any -# number of :class:`~matplotlib.axes.Axes`, but to be useful should have -# at least one. -# -# The easiest way to create a new figure is with pyplot: - -fig = plt.figure() # an empty figure with no axes -fig.suptitle('No axes on this figure') # Add a title so we know which it is - -fig, ax_lst = plt.subplots(2, 2) # a figure with a 2x2 grid of Axes - - -############################################################################### -# :class:`~matplotlib.axes.Axes` -# ------------------------------ -# -# This is what you think of as 'a plot', it is the region of the image -# with the data space. A given figure -# can contain many Axes, but a given :class:`~matplotlib.axes.Axes` -# object can only be in one :class:`~matplotlib.figure.Figure`. The -# Axes contains two (or three in the case of 3D) -# :class:`~matplotlib.axis.Axis` objects (be aware of the difference -# between **Axes** and **Axis**) which take care of the data limits (the -# data limits can also be controlled via set via the -# :meth:`~matplotlib.axes.Axes.set_xlim` and -# :meth:`~matplotlib.axes.Axes.set_ylim` :class:`Axes` methods). Each -# :class:`Axes` has a title (set via -# :meth:`~matplotlib.axes.Axes.set_title`), an x-label (set via -# :meth:`~matplotlib.axes.Axes.set_xlabel`), and a y-label set via -# :meth:`~matplotlib.axes.Axes.set_ylabel`). -# -# The :class:`Axes` class and it's member functions are the primary entry -# point to working with the OO interface. -# -# :class:`~matplotlib.axis.Axis` -# ------------------------------ -# -# These are the number-line-like objects. They take -# care of setting the graph limits and generating the ticks (the marks -# on the axis) and ticklabels (strings labeling the ticks). The -# location of the ticks is determined by a -# :class:`~matplotlib.ticker.Locator` object and the ticklabel strings -# are formatted by a :class:`~matplotlib.ticker.Formatter`. The -# combination of the correct :class:`Locator` and :class:`Formatter` gives -# very fine control over the tick locations and labels. -# -# :class:`~matplotlib.artist.Artist` -# ---------------------------------- -# -# Basically everything you can see on the figure is an artist (even the -# :class:`Figure`, :class:`Axes`, and :class:`Axis` objects). This -# includes :class:`Text` objects, :class:`Line2D` objects, -# :class:`collection` objects, :class:`Patch` objects ... (you get the -# idea). When the figure is rendered, all of the artists are drawn to -# the **canvas**. Most Artists are tied to an Axes; such an Artist -# cannot be shared by multiple Axes, or moved from one to another. -# -# .. _input_types: -# -# Types of inputs to plotting functions -# ===================================== -# -# All of plotting functions expect `np.array` or `np.ma.masked_array` as -# input. Classes that are 'array-like' such as `pandas` data objects -# and `np.matrix` may or may not work as intended. It is best to -# convert these to `np.array` objects prior to plotting. -# -# For example, to convert a `pandas.DataFrame` :: -# -# a = pandas.DataFrame(np.random.rand(4,5), columns = list('abcde')) -# a_asarray = a.values -# -# and to convert a `np.matrix` :: -# -# b = np.matrix([[1,2],[3,4]]) -# b_asarray = np.asarray(b) -# -# .. _pylab: -# -# Matplotlib, pyplot and pylab: how are they related? -# ==================================================== -# -# Matplotlib is the whole package and :mod:`matplotlib.pyplot` is a module in -# Matplotlib. -# -# For functions in the pyplot module, there is always a "current" figure and -# axes (which is created automatically on request). For example, in the -# following example, the first call to ``plt.plot`` creates the axes, then -# subsequent calls to ``plt.plot`` add additional lines on the same axes, and -# ``plt.xlabel``, ``plt.ylabel``, ``plt.title`` and ``plt.legend`` set the -# axes labels and title and add a legend. - -x = np.linspace(0, 2, 100) - -plt.plot(x, x, label='linear') -plt.plot(x, x**2, label='quadratic') -plt.plot(x, x**3, label='cubic') - -plt.xlabel('x label') -plt.ylabel('y label') - -plt.title("Simple Plot") - -plt.legend() - -plt.show() - -############################################################################### -# :mod:`pylab` is a convenience module that bulk imports -# :mod:`matplotlib.pyplot` (for plotting) and :mod:`numpy` -# (for mathematics and working with arrays) in a single namespace. -# pylab is deprecated and its use is strongly discouraged because -# of namespace pollution. Use pyplot instead. -# -# For non-interactive plotting it is suggested -# to use pyplot to create the figures and then the OO interface for -# plotting. -# -# .. _coding_styles: -# -# Coding Styles -# ================== -# -# When viewing this documentation and examples, you will find different -# coding styles and usage patterns. These styles are perfectly valid -# and have their pros and cons. Just about all of the examples can be -# converted into another style and achieve the same results. -# The only caveat is to avoid mixing the coding styles for your own code. -# -# .. note:: -# Developers for matplotlib have to follow a specific style and guidelines. -# See :ref:`developers-guide-index`. -# -# Of the different styles, there are two that are officially supported. -# Therefore, these are the preferred ways to use matplotlib. -# -# For the pyplot style, the imports at the top of your -# scripts will typically be:: -# -# import matplotlib.pyplot as plt -# import numpy as np -# -# Then one calls, for example, np.arange, np.zeros, np.pi, plt.figure, -# plt.plot, plt.show, etc. Use the pyplot interface -# for creating figures, and then use the object methods for the rest: - -x = np.arange(0, 10, 0.2) -y = np.sin(x) -fig, ax = plt.subplots() -ax.plot(x, y) -plt.show() - -############################################################################### -# So, why all the extra typing instead of the MATLAB-style (which relies -# on global state and a flat namespace)? For very simple things like -# this example, the only advantage is academic: the wordier styles are -# more explicit, more clear as to where things come from and what is -# going on. For more complicated applications, this explicitness and -# clarity becomes increasingly valuable, and the richer and more -# complete object-oriented interface will likely make the program easier -# to write and maintain. -# -# -# Typically one finds oneself making the same plots over and over -# again, but with different data sets, which leads to needing to write -# specialized functions to do the plotting. The recommended function -# signature is something like: - - -def my_plotter(ax, data1, data2, param_dict): - """ - A helper function to make a graph - - Parameters - ---------- - ax : Axes - The axes to draw to - - data1 : array - The x data - - data2 : array - The y data - - param_dict : dict - Dictionary of kwargs to pass to ax.plot - - Returns - ------- - out : list - list of artists added - """ - out = ax.plot(data1, data2, **param_dict) - return out - -# which you would then use as: - -data1, data2, data3, data4 = np.random.randn(4, 100) -fig, ax = plt.subplots(1, 1) -my_plotter(ax, data1, data2, {'marker': 'x'}) - -############################################################################### -# or if you wanted to have 2 sub-plots: -fig, (ax1, ax2) = plt.subplots(1, 2) -my_plotter(ax1, data1, data2, {'marker': 'x'}) -my_plotter(ax2, data3, data4, {'marker': 'o'}) - -############################################################################### -# Again, for these simple examples this style seems like overkill, however -# once the graphs get slightly more complex it pays off. -# -# -# .. _backends: -# -# Backends -# ======== -# -# .. _what-is-a-backend: -# -# What is a backend? -# ------------------ -# -# A lot of documentation on the website and in the mailing lists refers -# to the "backend" and many new users are confused by this term. -# matplotlib targets many different use cases and output formats. Some -# people use matplotlib interactively from the python shell and have -# plotting windows pop up when they type commands. Some people run -# `Jupyter `_ notebooks and draw inline plots for -# quick data analysis. Others embed matplotlib into graphical user -# interfaces like wxpython or pygtk to build rich applications. Some -# people use matplotlib in batch scripts to generate postscript images -# from numerical simulations, and still others run web application -# servers to dynamically serve up graphs. -# -# To support all of these use cases, matplotlib can target different -# outputs, and each of these capabilities is called a backend; the -# "frontend" is the user facing code, i.e., the plotting code, whereas the -# "backend" does all the hard work behind-the-scenes to make the figure. -# There are two types of backends: user interface backends (for use in -# pygtk, wxpython, tkinter, qt4, or macosx; also referred to as -# "interactive backends") and hardcopy backends to make image files -# (PNG, SVG, PDF, PS; also referred to as "non-interactive backends"). -# -# There are four ways to configure your backend. If they conflict each other, -# the method mentioned last in the following list will be used, e.g. calling -# :func:`~matplotlib.use()` will override the setting in your ``matplotlibrc``. -# -# -# #. The ``backend`` parameter in your ``matplotlibrc`` file (see -# :doc:`/tutorials/introductory/customizing`):: -# -# backend : WXAgg # use wxpython with antigrain (agg) rendering -# -# #. Setting the :envvar:`MPLBACKEND` environment variable, either for your -# current shell or for a single script. On Unix:: -# -# > export MPLBACKEND=module://my_backend -# > python simple_plot.py -# -# > MPLBACKEND="module://my_backend" python simple_plot.py -# -# On Windows, only the former is possible:: -# -# > set MPLBACKEND=module://my_backend -# > python simple_plot.py -# -# Setting this environment variable will override the ``backend`` parameter -# in *any* ``matplotlibrc``, even if there is a ``matplotlibrc`` in your -# current working directory. Therefore setting :envvar:`MPLBACKEND` -# globally, e.g. in your ``.bashrc`` or ``.profile``, is discouraged as it -# might lead to counter-intuitive behavior. -# -# #. If your script depends on a specific backend you can use the -# :func:`~matplotlib.use` function:: -# -# import matplotlib -# matplotlib.use('PS') # generate postscript output by default -# -# If you use the :func:`~matplotlib.use` function, this must be done before -# importing :mod:`matplotlib.pyplot`. Calling :func:`~matplotlib.use` after -# pyplot has been imported will have no effect. Using -# :func:`~matplotlib.use` will require changes in your code if users want to -# use a different backend. Therefore, you should avoid explicitly calling -# :func:`~matplotlib.use` unless absolutely necessary. -# -# .. note:: -# Backend name specifications are not case-sensitive; e.g., 'GTK3Agg' -# and 'gtk3agg' are equivalent. -# -# With a typical installation of matplotlib, such as from a -# binary installer or a linux distribution package, a good default -# backend will already be set, allowing both interactive work and -# plotting from scripts, with output to the screen and/or to -# a file, so at least initially you will not need to use any of the -# methods given above. -# -# If, however, you want to write graphical user interfaces, or a web -# application server (:ref:`howto-webapp`), or need a better -# understanding of what is going on, read on. To make things a little -# more customizable for graphical user interfaces, matplotlib separates -# the concept of the renderer (the thing that actually does the drawing) -# from the canvas (the place where the drawing goes). The canonical -# renderer for user interfaces is ``Agg`` which uses the `Anti-Grain -# Geometry`_ C++ library to make a raster (pixel) image of the figure. -# All of the user interfaces except ``macosx`` can be used with -# agg rendering, e.g., ``WXAgg``, ``GTK3Agg``, ``QT4Agg``, ``QT5Agg``, -# ``TkAgg``. In addition, some of the user interfaces support other rendering -# engines. For example, with GTK+ 3, you can also select Cairo rendering -# (backend ``GTK3Cairo``). -# -# For the rendering engines, one can also distinguish between `vector -# `_ or `raster -# `_ renderers. Vector -# graphics languages issue drawing commands like "draw a line from this -# point to this point" and hence are scale free, and raster backends -# generate a pixel representation of the line whose accuracy depends on a -# DPI setting. -# -# Here is a summary of the matplotlib renderers (there is an eponymous -# backend for each; these are *non-interactive backends*, capable of -# writing to a file): -# -# ============= ============ ================================================ -# Renderer Filetypes Description -# ============= ============ ================================================ -# :term:`AGG` :term:`png` :term:`raster graphics` -- high quality images -# using the `Anti-Grain Geometry`_ engine -# PS :term:`ps` :term:`vector graphics` -- Postscript_ output -# :term:`eps` -# PDF :term:`pdf` :term:`vector graphics` -- -# `Portable Document Format`_ -# SVG :term:`svg` :term:`vector graphics` -- -# `Scalable Vector Graphics`_ -# :term:`Cairo` :term:`png` :term:`raster graphics` and -# :term:`ps` :term:`vector graphics` -- using the -# :term:`pdf` `Cairo graphics`_ library -# :term:`svg` -# ============= ============ ================================================ -# -# And here are the user interfaces and renderer combinations supported; -# these are *interactive backends*, capable of displaying to the screen -# and of using appropriate renderers from the table above to write to -# a file: -# -# ========= ================================================================ -# Backend Description -# ========= ================================================================ -# Qt5Agg Agg rendering in a :term:`Qt5` canvas (requires PyQt5_). This -# backend can be activated in IPython with ``%matplotlib qt5``. -# ipympl Agg rendering embedded in a Jupyter widget. (requires ipympl). -# This backend can be enabled in a Jupyter notebook with -# ``%matplotlib ipympl``. -# GTK3Agg Agg rendering to a :term:`GTK` 3.x canvas (requires PyGObject_, -# and pycairo_ or cairocffi_). This backend can be activated in -# IPython with ``%matplotlib gtk3``. -# macosx Agg rendering into a Cocoa canvas in OSX. This backend can be -# activated in IPython with ``%matplotlib osx``. -# TkAgg Agg rendering to a :term:`Tk` canvas (requires TkInter_). This -# backend can be activated in IPython with ``%matplotlib tk``. -# nbAgg Embed an interactive figure in a Jupyter classic notebook. This -# backend can be enabled in Jupyter notebooks via -# ``%matplotlib notebook``. -# WebAgg On ``show()`` will start a tornado server with an interactive -# figure. -# GTK3Cairo Cairo rendering to a :term:`GTK` 3.x canvas (requires PyGObject_, -# and pycairo_ or cairocffi_). -# Qt4Agg Agg rendering to a :term:`Qt4` canvas (requires PyQt4_ or -# ``pyside``). This backend can be activated in IPython with -# ``%matplotlib qt4``. -# WXAgg Agg rendering to a :term:`wxWidgets` canvas (requires wxPython_ 4). -# This backend can be activated in IPython with ``%matplotlib wx``. -# ========= ================================================================ -# -# .. _`Anti-Grain Geometry`: http://antigrain.com/ -# .. _Postscript: https://en.wikipedia.org/wiki/PostScript -# .. _`Portable Document Format`: https://en.wikipedia.org/wiki/Portable_Document_Format -# .. _`Scalable Vector Graphics`: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics -# .. _`Cairo graphics`: https://wwW.cairographics.org -# .. _PyGObject: https://wiki.gnome.org/action/show/Projects/PyGObject -# .. _pycairo: https://www.cairographics.org/pycairo/ -# .. _cairocffi: https://pythonhosted.org/cairocffi/ -# .. _wxPython: https://www.wxpython.org/ -# .. _TkInter: https://wiki.python.org/moin/TkInter -# .. _PyQt4: https://riverbankcomputing.com/software/pyqt/intro -# .. _PyQt5: https://riverbankcomputing.com/software/pyqt/intro -# -# ipympl -# ------ -# -# The Jupyter widget ecosystem is moving too fast to support directly in -# Matplotlib. To install ipympl -# -# .. code-block:: bash -# -# pip install ipympl -# jupyter nbextension enable --py --sys-prefix ipympl -# -# or -# -# .. code-block:: bash -# -# conda install ipympl -c conda-forge -# -# See `jupyter-matplotlib `__ -# for more details. -# -# GTK and Cairo -# ------------- -# -# `GTK3` backends (*both* `GTK3Agg` and `GTK3Cairo`) depend on Cairo -# (pycairo>=1.11.0 or cairocffi). -# -# How do I select PyQt4 or PySide? -# -------------------------------- -# -# The `QT_API` environment variable can be set to either `pyqt` or `pyside` -# to use `PyQt4` or `PySide`, respectively. -# -# Since the default value for the bindings to be used is `PyQt4`, -# :mod:`matplotlib` first tries to import it, if the import fails, it tries to -# import `PySide`. -# -# .. _interactive-mode: -# -# What is interactive mode? -# =================================== -# -# Use of an interactive backend (see :ref:`what-is-a-backend`) -# permits--but does not by itself require or ensure--plotting -# to the screen. Whether and when plotting to the screen occurs, -# and whether a script or shell session continues after a plot -# is drawn on the screen, depends on the functions and methods -# that are called, and on a state variable that determines whether -# matplotlib is in "interactive mode". The default Boolean value is set -# by the :file:`matplotlibrc` file, and may be customized like any other -# configuration parameter (see :doc:`/tutorials/introductory/customizing`). It -# may also be set via :func:`matplotlib.interactive`, and its -# value may be queried via :func:`matplotlib.is_interactive`. Turning -# interactive mode on and off in the middle of a stream of plotting -# commands, whether in a script or in a shell, is rarely needed -# and potentially confusing, so in the following we will assume all -# plotting is done with interactive mode either on or off. -# -# .. note:: -# Major changes related to interactivity, and in particular the -# role and behavior of :func:`~matplotlib.pyplot.show`, were made in the -# transition to matplotlib version 1.0, and bugs were fixed in -# 1.0.1. Here we describe the version 1.0.1 behavior for the -# primary interactive backends, with the partial exception of -# *macosx*. -# -# Interactive mode may also be turned on via :func:`matplotlib.pyplot.ion`, -# and turned off via :func:`matplotlib.pyplot.ioff`. -# -# .. note:: -# Interactive mode works with suitable backends in ipython and in -# the ordinary python shell, but it does *not* work in the IDLE IDE. -# If the default backend does not support interactivity, an interactive -# backend can be explicitly activated using any of the methods discussed in `What is a backend?`_. -# -# -# Interactive example -# -------------------- -# -# From an ordinary python prompt, or after invoking ipython with no options, -# try this:: -# -# import matplotlib.pyplot as plt -# plt.ion() -# plt.plot([1.6, 2.7]) -# -# Assuming you are running version 1.0.1 or higher, and you have -# an interactive backend installed and selected by default, you should -# see a plot, and your terminal prompt should also be active; you -# can type additional commands such as:: -# -# plt.title("interactive test") -# plt.xlabel("index") -# -# and you will see the plot being updated after each line. Since version 1.5, -# modifying the plot by other means *should* also automatically -# update the display on most backends. Get a reference to the :class:`~matplotlib.axes.Axes` instance, -# and call a method of that instance:: -# -# ax = plt.gca() -# ax.plot([3.1, 2.2]) -# -# If you are using certain backends (like `macosx`), or an older version -# of matplotlib, you may not see the new line added to the plot immediately. -# In this case, you need to explicitly call :func:`~matplotlib.pyplot.draw` -# in order to update the plot:: -# -# plt.draw() -# -# -# Non-interactive example -# ----------------------- -# -# Start a fresh session as in the previous example, but now -# turn interactive mode off:: -# -# import matplotlib.pyplot as plt -# plt.ioff() -# plt.plot([1.6, 2.7]) -# -# Nothing happened--or at least nothing has shown up on the -# screen (unless you are using *macosx* backend, which is -# anomalous). To make the plot appear, you need to do this:: -# -# plt.show() -# -# Now you see the plot, but your terminal command line is -# unresponsive; the :func:`show()` command *blocks* the input -# of additional commands until you manually kill the plot -# window. -# -# What good is this--being forced to use a blocking function? -# Suppose you need a script that plots the contents of a file -# to the screen. You want to look at that plot, and then end -# the script. Without some blocking command such as show(), the -# script would flash up the plot and then end immediately, -# leaving nothing on the screen. -# -# In addition, non-interactive mode delays all drawing until -# show() is called; this is more efficient than redrawing -# the plot each time a line in the script adds a new feature. -# -# Prior to version 1.0, show() generally could not be called -# more than once in a single script (although sometimes one -# could get away with it); for version 1.0.1 and above, this -# restriction is lifted, so one can write a script like this:: -# -# import numpy as np -# import matplotlib.pyplot as plt -# -# plt.ioff() -# for i in range(3): -# plt.plot(np.random.rand(10)) -# plt.show() -# -# which makes three plots, one at a time. I.e. the second plot will show up, -# once the first plot is closed. -# -# Summary -# ------- -# -# In interactive mode, pyplot functions automatically draw -# to the screen. -# -# When plotting interactively, if using -# object method calls in addition to pyplot functions, then -# call :func:`~matplotlib.pyplot.draw` whenever you want to -# refresh the plot. -# -# Use non-interactive mode in scripts in which you want to -# generate one or more figures and display them before ending -# or generating a new set of figures. In that case, use -# :func:`~matplotlib.pyplot.show` to display the figure(s) and -# to block execution until you have manually destroyed them. -# -# .. _performance: -# -# Performance -# =========== -# -# Whether exploring data in interactive mode or programmatically -# saving lots of plots, rendering performance can be a painful -# bottleneck in your pipeline. Matplotlib provides a couple -# ways to greatly reduce rendering time at the cost of a slight -# change (to a settable tolerance) in your plot's appearance. -# The methods available to reduce rendering time depend on the -# type of plot that is being created. -# -# Line segment simplification -# --------------------------- -# -# For plots that have line segments (e.g. typical line plots, -# outlines of polygons, etc.), rendering performance can be -# controlled by the ``path.simplify`` and -# ``path.simplify_threshold`` parameters in your -# ``matplotlibrc`` file (see -# :doc:`/tutorials/introductory/customizing` for -# more information about the ``matplotlibrc`` file). -# The ``path.simplify`` parameter is a boolean indicating whether -# or not line segments are simplified at all. The -# ``path.simplify_threshold`` parameter controls how much line -# segments are simplified; higher thresholds result in quicker -# rendering. -# -# The following script will first display the data without any -# simplification, and then display the same data with simplification. -# Try interacting with both of them:: -# -# import numpy as np -# import matplotlib.pyplot as plt -# import matplotlib as mpl -# -# # Setup, and create the data to plot -# y = np.random.rand(100000) -# y[50000:] *= 2 -# y[np.logspace(1, np.log10(50000), 400).astype(int)] = -1 -# mpl.rcParams['path.simplify'] = True -# -# mpl.rcParams['path.simplify_threshold'] = 0.0 -# plt.plot(y) -# plt.show() -# -# mpl.rcParams['path.simplify_threshold'] = 1.0 -# plt.plot(y) -# plt.show() -# -# Matplotlib currently defaults to a conservative simplification -# threshold of ``1/9``. If you want to change your default settings -# to use a different value, you can change your ``matplotlibrc`` -# file. Alternatively, you could create a new style for -# interactive plotting (with maximal simplification) and another -# style for publication quality plotting (with minimal -# simplification) and activate them as necessary. See -# :doc:`/tutorials/introductory/customizing` for -# instructions on how to perform these actions. -# -# The simplification works by iteratively merging line segments -# into a single vector until the next line segment's perpendicular -# distance to the vector (measured in display-coordinate space) -# is greater than the ``path.simplify_threshold`` parameter. -# -# .. note:: -# Changes related to how line segments are simplified were made -# in version 2.1. Rendering time will still be improved by these -# parameters prior to 2.1, but rendering time for some kinds of -# data will be vastly improved in versions 2.1 and greater. -# -# Marker simplification -# --------------------- -# -# Markers can also be simplified, albeit less robustly than -# line segments. Marker simplification is only available -# to :class:`~matplotlib.lines.Line2D` objects (through the -# ``markevery`` property). Wherever -# :class:`~matplotlib.lines.Line2D` construction parameter -# are passed through, such as -# :func:`matplotlib.pyplot.plot` and -# :meth:`matplotlib.axes.Axes.plot`, the ``markevery`` -# parameter can be used:: -# -# plt.plot(x, y, markevery=10) -# -# The markevery argument allows for naive subsampling, or an -# attempt at evenly spaced (along the *x* axis) sampling. See the -# :doc:`/gallery/lines_bars_and_markers/markevery_demo` -# for more information. -# -# Splitting lines into smaller chunks -# ----------------------------------- -# -# If you are using the Agg backend (see :ref:`what-is-a-backend`), -# then you can make use of the ``agg.path.chunksize`` rc parameter. -# This allows you to specify a chunk size, and any lines with -# greater than that many vertices will be split into multiple -# lines, each of which have no more than ``agg.path.chunksize`` -# many vertices. (Unless ``agg.path.chunksize`` is zero, in -# which case there is no chunking.) For some kind of data, -# chunking the line up into reasonable sizes can greatly -# decrease rendering time. -# -# The following script will first display the data without any -# chunk size restriction, and then display the same data with -# a chunk size of 10,000. The difference can best be seen when -# the figures are large, try maximizing the GUI and then -# interacting with them:: -# -# import numpy as np -# import matplotlib.pyplot as plt -# import matplotlib as mpl -# mpl.rcParams['path.simplify_threshold'] = 1.0 -# -# # Setup, and create the data to plot -# y = np.random.rand(100000) -# y[50000:] *= 2 -# y[np.logspace(1,np.log10(50000), 400).astype(int)] = -1 -# mpl.rcParams['path.simplify'] = True -# -# mpl.rcParams['agg.path.chunksize'] = 0 -# plt.plot(y) -# plt.show() -# -# mpl.rcParams['agg.path.chunksize'] = 10000 -# plt.plot(y) -# plt.show() -# -# Legends -# ------- -# -# The default legend behavior for axes attempts to find the location -# that covers the fewest data points (`loc='best'`). This can be a -# very expensive computation if there are lots of data points. In -# this case, you may want to provide a specific location. -# -# Using the *fast* style -# ---------------------- -# -# The *fast* style can be used to automatically set -# simplification and chunking parameters to reasonable -# settings to speed up plotting large amounts of data. -# It can be used simply by running:: -# -# import matplotlib.style as mplstyle -# mplstyle.use('fast') -# -# It is very light weight, so it plays nicely with other -# styles, just make sure the fast style is applied last -# so that other styles do not overwrite the settings:: -# -# mplstyle.use(['dark_background', 'ggplot', 'fast']) diff --git a/_downloads/e8f5fb547c55505e758bccbd0583f193/figure_title.ipynb b/_downloads/e8f5fb547c55505e758bccbd0583f193/figure_title.ipynb deleted file mode 120000 index 2c26065f707..00000000000 --- a/_downloads/e8f5fb547c55505e758bccbd0583f193/figure_title.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e8f5fb547c55505e758bccbd0583f193/figure_title.ipynb \ No newline at end of file diff --git a/_downloads/e8f841b1f8f416bfb68d625878a0ca9b/subplot3d.ipynb b/_downloads/e8f841b1f8f416bfb68d625878a0ca9b/subplot3d.ipynb deleted file mode 100644 index 2f5d1786185..00000000000 --- a/_downloads/e8f841b1f8f416bfb68d625878a0ca9b/subplot3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D plots as subplots\n\n\nDemonstrate including 3D plots as subplots.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib import cm\nimport numpy as np\n\nfrom mpl_toolkits.mplot3d.axes3d import get_test_data\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\n# set up a figure twice as wide as it is tall\nfig = plt.figure(figsize=plt.figaspect(0.5))\n\n#===============\n# First subplot\n#===============\n# set up the axes for the first plot\nax = fig.add_subplot(1, 2, 1, projection='3d')\n\n# plot a 3D surface like in the example mplot3d/surface3d_demo\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\nsurf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm,\n linewidth=0, antialiased=False)\nax.set_zlim(-1.01, 1.01)\nfig.colorbar(surf, shrink=0.5, aspect=10)\n\n#===============\n# Second subplot\n#===============\n# set up the axes for the second plot\nax = fig.add_subplot(1, 2, 2, projection='3d')\n\n# plot a 3D wireframe like in the example mplot3d/wire3d_demo\nX, Y, Z = get_test_data(0.05)\nax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e8fbaf4b4a2bb06779acc1f440487bd9/watermark_image.py b/_downloads/e8fbaf4b4a2bb06779acc1f440487bd9/watermark_image.py deleted file mode 120000 index 3869592a353..00000000000 --- a/_downloads/e8fbaf4b4a2bb06779acc1f440487bd9/watermark_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e8fbaf4b4a2bb06779acc1f440487bd9/watermark_image.py \ No newline at end of file diff --git a/_downloads/e9052d0215fa39419437bd7cf90e02cb/secondary_axis.py b/_downloads/e9052d0215fa39419437bd7cf90e02cb/secondary_axis.py deleted file mode 120000 index f938b8e96c2..00000000000 --- a/_downloads/e9052d0215fa39419437bd7cf90e02cb/secondary_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e9052d0215fa39419437bd7cf90e02cb/secondary_axis.py \ No newline at end of file diff --git a/_downloads/e907154b844b545d5d44de7aab05fea3/scatter_demo2.ipynb b/_downloads/e907154b844b545d5d44de7aab05fea3/scatter_demo2.ipynb deleted file mode 120000 index 4cc7860f9da..00000000000 --- a/_downloads/e907154b844b545d5d44de7aab05fea3/scatter_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e907154b844b545d5d44de7aab05fea3/scatter_demo2.ipynb \ No newline at end of file diff --git a/_downloads/e9098fca5a73e914fa63b236ec035730/usetex_fonteffects.ipynb b/_downloads/e9098fca5a73e914fa63b236ec035730/usetex_fonteffects.ipynb deleted file mode 100644 index 459da9ca331..00000000000 --- a/_downloads/e9098fca5a73e914fa63b236ec035730/usetex_fonteffects.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Usetex Fonteffects\n\n\nThis script demonstrates that font effects specified in your pdftex.map\nare now supported in pdf usetex.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nmatplotlib.rc('text', usetex=True)\n\n\ndef setfont(font):\n return r'\\font\\a %s at 14pt\\a ' % font\n\n\nfor y, font, text in zip(range(5),\n ['ptmr8r', 'ptmri8r', 'ptmro8r',\n 'ptmr8rn', 'ptmrr8re'],\n ['Nimbus Roman No9 L ' + x for x in\n ['', 'Italics (real italics for comparison)',\n '(slanted)', '(condensed)', '(extended)']]):\n plt.text(0, y, setfont(font) + text)\n\nplt.ylim(-1, 5)\nplt.xlim(-0.2, 0.6)\nplt.setp(plt.gca(), frame_on=False, xticks=(), yticks=())\nplt.title('Usetex font effects')\nplt.savefig('usetex_fonteffects.pdf')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e91b06e6685958c611c202de928641a9/demo_axes_rgb.ipynb b/_downloads/e91b06e6685958c611c202de928641a9/demo_axes_rgb.ipynb deleted file mode 100644 index bcfaffb4117..00000000000 --- a/_downloads/e91b06e6685958c611c202de928641a9/demo_axes_rgb.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Axes RGB\n\n\nRGBAxes to show RGB composite images.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.axes_rgb import make_rgb_axes, RGBAxes\n\n\ndef get_demo_image():\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef get_rgb():\n Z, extent = get_demo_image()\n\n Z[Z < 0] = 0.\n Z = Z / Z.max()\n\n R = Z[:13, :13]\n G = Z[2:, 2:]\n B = Z[:13, 2:]\n\n return R, G, B\n\n\ndef make_cube(r, g, b):\n ny, nx = r.shape\n R = np.zeros([ny, nx, 3], dtype=\"d\")\n R[:, :, 0] = r\n G = np.zeros_like(R)\n G[:, :, 1] = g\n B = np.zeros_like(R)\n B[:, :, 2] = b\n\n RGB = R + G + B\n\n return R, G, B, RGB\n\n\ndef demo_rgb():\n fig, ax = plt.subplots()\n ax_r, ax_g, ax_b = make_rgb_axes(ax, pad=0.02)\n\n r, g, b = get_rgb()\n im_r, im_g, im_b, im_rgb = make_cube(r, g, b)\n kwargs = dict(origin=\"lower\", interpolation=\"nearest\")\n ax.imshow(im_rgb, **kwargs)\n ax_r.imshow(im_r, **kwargs)\n ax_g.imshow(im_g, **kwargs)\n ax_b.imshow(im_b, **kwargs)\n\n\ndef demo_rgb2():\n fig = plt.figure()\n ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8], pad=0.0)\n\n r, g, b = get_rgb()\n kwargs = dict(origin=\"lower\", interpolation=\"nearest\")\n ax.imshow_rgb(r, g, b, **kwargs)\n\n ax.RGB.set_xlim(0., 9.5)\n ax.RGB.set_ylim(0.9, 10.6)\n\n for ax1 in [ax.RGB, ax.R, ax.G, ax.B]:\n ax1.tick_params(axis='both', direction='in')\n for sp1 in ax1.spines.values():\n sp1.set_color(\"w\")\n for tick in ax1.xaxis.get_major_ticks() + ax1.yaxis.get_major_ticks():\n tick.tick1line.set_markeredgecolor(\"w\")\n tick.tick2line.set_markeredgecolor(\"w\")\n\n return ax\n\n\ndemo_rgb()\ndemo_rgb2()\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e91e702e3e67f1f146d9d4f4dab906bb/custom_shaded_3d_surface.ipynb b/_downloads/e91e702e3e67f1f146d9d4f4dab906bb/custom_shaded_3d_surface.ipynb deleted file mode 120000 index 0b845485af1..00000000000 --- a/_downloads/e91e702e3e67f1f146d9d4f4dab906bb/custom_shaded_3d_surface.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e91e702e3e67f1f146d9d4f4dab906bb/custom_shaded_3d_surface.ipynb \ No newline at end of file diff --git a/_downloads/e925cfe399983f2736c593896ad073cb/spectrum_demo.ipynb b/_downloads/e925cfe399983f2736c593896ad073cb/spectrum_demo.ipynb deleted file mode 120000 index e693333c0ac..00000000000 --- a/_downloads/e925cfe399983f2736c593896ad073cb/spectrum_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e925cfe399983f2736c593896ad073cb/spectrum_demo.ipynb \ No newline at end of file diff --git a/_downloads/e93cb3c1aba25314d14dc6fc3ef6c75e/annotate_text_arrow.ipynb b/_downloads/e93cb3c1aba25314d14dc6fc3ef6c75e/annotate_text_arrow.ipynb deleted file mode 100644 index c9f01461a21..00000000000 --- a/_downloads/e93cb3c1aba25314d14dc6fc3ef6c75e/annotate_text_arrow.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Text Arrow\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots(figsize=(5, 5))\nax.set_aspect(1)\n\nx1 = -1 + np.random.randn(100)\ny1 = -1 + np.random.randn(100)\nx2 = 1. + np.random.randn(100)\ny2 = 1. + np.random.randn(100)\n\nax.scatter(x1, y1, color=\"r\")\nax.scatter(x2, y2, color=\"g\")\n\nbbox_props = dict(boxstyle=\"round\", fc=\"w\", ec=\"0.5\", alpha=0.9)\nax.text(-2, -2, \"Sample A\", ha=\"center\", va=\"center\", size=20,\n bbox=bbox_props)\nax.text(2, 2, \"Sample B\", ha=\"center\", va=\"center\", size=20,\n bbox=bbox_props)\n\n\nbbox_props = dict(boxstyle=\"rarrow\", fc=(0.8, 0.9, 0.9), ec=\"b\", lw=2)\nt = ax.text(0, 0, \"Direction\", ha=\"center\", va=\"center\", rotation=45,\n size=15,\n bbox=bbox_props)\n\nbb = t.get_bbox_patch()\nbb.set_boxstyle(\"rarrow\", pad=0.6)\n\nax.set_xlim(-4, 4)\nax.set_ylim(-4, 4)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e93fd28483228599dc6158f2e7c3a512/date_index_formatter.ipynb b/_downloads/e93fd28483228599dc6158f2e7c3a512/date_index_formatter.ipynb deleted file mode 120000 index 6f7abe8af3d..00000000000 --- a/_downloads/e93fd28483228599dc6158f2e7c3a512/date_index_formatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e93fd28483228599dc6158f2e7c3a512/date_index_formatter.ipynb \ No newline at end of file diff --git a/_downloads/e952a83eb3e1ddf1af8bd5d09e6db42e/demo_axes_rgb.py b/_downloads/e952a83eb3e1ddf1af8bd5d09e6db42e/demo_axes_rgb.py deleted file mode 100644 index b7e51e6a68f..00000000000 --- a/_downloads/e952a83eb3e1ddf1af8bd5d09e6db42e/demo_axes_rgb.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -============= -Demo Axes RGB -============= - -RGBAxes to show RGB composite images. -""" -import numpy as np -import matplotlib.pyplot as plt - -from mpl_toolkits.axes_grid1.axes_rgb import make_rgb_axes, RGBAxes - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def get_rgb(): - Z, extent = get_demo_image() - - Z[Z < 0] = 0. - Z = Z / Z.max() - - R = Z[:13, :13] - G = Z[2:, 2:] - B = Z[:13, 2:] - - return R, G, B - - -def make_cube(r, g, b): - ny, nx = r.shape - R = np.zeros([ny, nx, 3], dtype="d") - R[:, :, 0] = r - G = np.zeros_like(R) - G[:, :, 1] = g - B = np.zeros_like(R) - B[:, :, 2] = b - - RGB = R + G + B - - return R, G, B, RGB - - -def demo_rgb(): - fig, ax = plt.subplots() - ax_r, ax_g, ax_b = make_rgb_axes(ax, pad=0.02) - - r, g, b = get_rgb() - im_r, im_g, im_b, im_rgb = make_cube(r, g, b) - kwargs = dict(origin="lower", interpolation="nearest") - ax.imshow(im_rgb, **kwargs) - ax_r.imshow(im_r, **kwargs) - ax_g.imshow(im_g, **kwargs) - ax_b.imshow(im_b, **kwargs) - - -def demo_rgb2(): - fig = plt.figure() - ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8], pad=0.0) - - r, g, b = get_rgb() - kwargs = dict(origin="lower", interpolation="nearest") - ax.imshow_rgb(r, g, b, **kwargs) - - ax.RGB.set_xlim(0., 9.5) - ax.RGB.set_ylim(0.9, 10.6) - - for ax1 in [ax.RGB, ax.R, ax.G, ax.B]: - ax1.tick_params(axis='both', direction='in') - for sp1 in ax1.spines.values(): - sp1.set_color("w") - for tick in ax1.xaxis.get_major_ticks() + ax1.yaxis.get_major_ticks(): - tick.tick1line.set_markeredgecolor("w") - tick.tick2line.set_markeredgecolor("w") - - return ax - - -demo_rgb() -demo_rgb2() - -plt.show() diff --git a/_downloads/e9548ee5f437ecd7b441faa9709bdd2b/boxplot_vs_violin.ipynb b/_downloads/e9548ee5f437ecd7b441faa9709bdd2b/boxplot_vs_violin.ipynb deleted file mode 100644 index 817c2c3ac45..00000000000 --- a/_downloads/e9548ee5f437ecd7b441faa9709bdd2b/boxplot_vs_violin.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===================================\nBox plot vs. violin plot comparison\n===================================\n\nNote that although violin plots are closely related to Tukey's (1977)\nbox plots, they add useful information such as the distribution of the\nsample data (density trace).\n\nBy default, box plots show data points outside 1.5 * the inter-quartile\nrange as outliers above or below the whiskers whereas violin plots show\nthe whole range of the data.\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n\nViolin plots require matplotlib >= 1.4.\n\nFor more information on violin plots, the scikit-learn docs have a great\nsection: http://scikit-learn.org/stable/modules/density.html\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axes = plt.subplots(nrows=1, ncols=2, figsize=(9, 4))\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\n# generate some random test data\nall_data = [np.random.normal(0, std, 100) for std in range(6, 10)]\n\n# plot violin plot\naxes[0].violinplot(all_data,\n showmeans=False,\n showmedians=True)\naxes[0].set_title('Violin plot')\n\n# plot box plot\naxes[1].boxplot(all_data)\naxes[1].set_title('Box plot')\n\n# adding horizontal grid lines\nfor ax in axes:\n ax.yaxis.grid(True)\n ax.set_xticks([y + 1 for y in range(len(all_data))])\n ax.set_xlabel('Four separate samples')\n ax.set_ylabel('Observed values')\n\n# add x-tick labels\nplt.setp(axes, xticks=[y + 1 for y in range(len(all_data))],\n xticklabels=['x1', 'x2', 'x3', 'x4'])\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e95c493455aa4ddc669afb13d312aaed/image_annotated_heatmap.ipynb b/_downloads/e95c493455aa4ddc669afb13d312aaed/image_annotated_heatmap.ipynb deleted file mode 120000 index 0c7310f5307..00000000000 --- a/_downloads/e95c493455aa4ddc669afb13d312aaed/image_annotated_heatmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e95c493455aa4ddc669afb13d312aaed/image_annotated_heatmap.ipynb \ No newline at end of file diff --git a/_downloads/e966d1b4c9dde1af5943f8e8b1e9f2b7/tight_layout_guide.py b/_downloads/e966d1b4c9dde1af5943f8e8b1e9f2b7/tight_layout_guide.py deleted file mode 120000 index f77eeaf68c8..00000000000 --- a/_downloads/e966d1b4c9dde1af5943f8e8b1e9f2b7/tight_layout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e966d1b4c9dde1af5943f8e8b1e9f2b7/tight_layout_guide.py \ No newline at end of file diff --git a/_downloads/e982c5dc7d94004e9714c2cfc02dc3e7/date_demo_rrule.ipynb b/_downloads/e982c5dc7d94004e9714c2cfc02dc3e7/date_demo_rrule.ipynb deleted file mode 120000 index eaefe3404b8..00000000000 --- a/_downloads/e982c5dc7d94004e9714c2cfc02dc3e7/date_demo_rrule.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e982c5dc7d94004e9714c2cfc02dc3e7/date_demo_rrule.ipynb \ No newline at end of file diff --git a/_downloads/e9835b158ad87edaec8ccc7b3ee0bf57/fill_between_alpha.py b/_downloads/e9835b158ad87edaec8ccc7b3ee0bf57/fill_between_alpha.py deleted file mode 120000 index 5ec507a5c69..00000000000 --- a/_downloads/e9835b158ad87edaec8ccc7b3ee0bf57/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e9835b158ad87edaec8ccc7b3ee0bf57/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/e98ab02f923f573f0d241994534c68b0/tex_demo.ipynb b/_downloads/e98ab02f923f573f0d241994534c68b0/tex_demo.ipynb deleted file mode 100644 index 511ba034817..00000000000 --- a/_downloads/e98ab02f923f573f0d241994534c68b0/tex_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rendering math equation using TeX\n\n\nYou can use TeX to render all of your matplotlib text if the rc\nparameter ``text.usetex`` is set. This works currently on the agg and ps\nbackends, and requires that you have tex and the other dependencies\ndescribed in the :doc:`/tutorials/text/usetex` tutorial\nproperly installed on your system. The first time you run a script\nyou will see a lot of output from tex and associated tools. The next\ntime, the run may be silent, as a lot of the information is cached.\n\nNotice how the label for the y axis is provided using unicode!\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib\nmatplotlib.rcParams['text.usetex'] = True\nimport matplotlib.pyplot as plt\n\n\nt = np.linspace(0.0, 1.0, 100)\ns = np.cos(4 * np.pi * t) + 2\n\nfig, ax = plt.subplots(figsize=(6, 4), tight_layout=True)\nax.plot(t, s)\n\nax.set_xlabel(r'\\textbf{time (s)}')\nax.set_ylabel('\\\\textit{Velocity (\\N{DEGREE SIGN}/sec)}', fontsize=16)\nax.set_title(r'\\TeX\\ is Number $\\displaystyle\\sum_{n=1}^\\infty'\n r'\\frac{-e^{i\\pi}}{2^n}$!', fontsize=16, color='r')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e992cf0b4784765a65acab6b8ae91862/polys3d.ipynb b/_downloads/e992cf0b4784765a65acab6b8ae91862/polys3d.ipynb deleted file mode 120000 index e4aa839af2e..00000000000 --- a/_downloads/e992cf0b4784765a65acab6b8ae91862/polys3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/e992cf0b4784765a65acab6b8ae91862/polys3d.ipynb \ No newline at end of file diff --git a/_downloads/e99e270c11d445a8e7fc9ab51bfa857f/web_application_server_sgskip.py b/_downloads/e99e270c11d445a8e7fc9ab51bfa857f/web_application_server_sgskip.py deleted file mode 120000 index ba8cbce8b6a..00000000000 --- a/_downloads/e99e270c11d445a8e7fc9ab51bfa857f/web_application_server_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e99e270c11d445a8e7fc9ab51bfa857f/web_application_server_sgskip.py \ No newline at end of file diff --git a/_downloads/e9b67c2517476fb5e0815718d3a4b930/customize_rc.ipynb b/_downloads/e9b67c2517476fb5e0815718d3a4b930/customize_rc.ipynb deleted file mode 100644 index cdb50f749b1..00000000000 --- a/_downloads/e9b67c2517476fb5e0815718d3a4b930/customize_rc.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Customize Rc\n\n\nI'm not trying to make a good looking figure here, but just to show\nsome examples of customizing rc params on the fly\n\nIf you like to work interactively, and need to create different sets\nof defaults for figures (e.g., one set of defaults for publication, one\nset for interactive exploration), you may want to define some\nfunctions in a custom module that set the defaults, e.g.,::\n\n def set_pub():\n rc('font', weight='bold') # bold fonts are easier to see\n rc('tick', labelsize=15) # tick labels bigger\n rc('lines', lw=1, color='k') # thicker black lines\n rc('grid', c='0.5', ls='-', lw=0.5) # solid gray grid lines\n rc('savefig', dpi=300) # higher res outputs\n\nThen as you are working interactively, you just need to do::\n\n >>> set_pub()\n >>> subplot(111)\n >>> plot([1,2,3])\n >>> savefig('myfig')\n >>> rcdefaults() # restore the defaults\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nplt.subplot(311)\nplt.plot([1, 2, 3])\n\n# the axes attributes need to be set before the call to subplot\nplt.rc('font', weight='bold')\nplt.rc('xtick.major', size=5, pad=7)\nplt.rc('xtick', labelsize=15)\n\n# using aliases for color, linestyle and linewidth; gray, solid, thick\nplt.rc('grid', c='0.5', ls='-', lw=5)\nplt.rc('lines', lw=2, color='g')\nplt.subplot(312)\n\nplt.plot([1, 2, 3])\nplt.grid(True)\n\nplt.rcdefaults()\nplt.subplot(313)\nplt.plot([1, 2, 3])\nplt.grid(True)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/e9b9ec3e7de47d2ccae486e437e86de2/annotations.py b/_downloads/e9b9ec3e7de47d2ccae486e437e86de2/annotations.py deleted file mode 100644 index 278816dff19..00000000000 --- a/_downloads/e9b9ec3e7de47d2ccae486e437e86de2/annotations.py +++ /dev/null @@ -1,610 +0,0 @@ -r""" -Annotations -=========== - -Annotating text with Matplotlib. - -.. contents:: Table of Contents - :depth: 3 - -.. _annotations-tutorial: - -Basic annotation -================ - -The uses of the basic :func:`~matplotlib.pyplot.text` will place text -at an arbitrary position on the Axes. A common use case of text is to -annotate some feature of the plot, and the -:func:`~matplotlib.Axes.annotate` method provides helper functionality -to make annotations easy. In an annotation, there are two points to -consider: the location being annotated represented by the argument -``xy`` and the location of the text ``xytext``. Both of these -arguments are ``(x,y)`` tuples. - -.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_basic_001.png - :target: ../../gallery/pyplots/annotation_basic.html - :align: center - :scale: 50 - - Annotation Basic - -In this example, both the ``xy`` (arrow tip) and ``xytext`` locations -(text location) are in data coordinates. There are a variety of other -coordinate systems one can choose -- you can specify the coordinate -system of ``xy`` and ``xytext`` with one of the following strings for -``xycoords`` and ``textcoords`` (default is 'data') - -==================== ==================================================== -argument coordinate system -==================== ==================================================== - 'figure points' points from the lower left corner of the figure - 'figure pixels' pixels from the lower left corner of the figure - 'figure fraction' 0,0 is lower left of figure and 1,1 is upper right - 'axes points' points from lower left corner of axes - 'axes pixels' pixels from lower left corner of axes - 'axes fraction' 0,0 is lower left of axes and 1,1 is upper right - 'data' use the axes data coordinate system -==================== ==================================================== - -For example to place the text coordinates in fractional axes -coordinates, one could do:: - - ax.annotate('local max', xy=(3, 1), xycoords='data', - xytext=(0.8, 0.95), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top', - ) - -For physical coordinate systems (points or pixels) the origin is the -bottom-left of the figure or axes. - -Optionally, you can enable drawing of an arrow from the text to the annotated -point by giving a dictionary of arrow properties in the optional keyword -argument ``arrowprops``. - - -==================== ===================================================== -``arrowprops`` key description -==================== ===================================================== -width the width of the arrow in points -frac the fraction of the arrow length occupied by the head -headwidth the width of the base of the arrow head in points -shrink move the tip and base some percent away from - the annotated point and text - -\*\*kwargs any key for :class:`matplotlib.patches.Polygon`, - e.g., ``facecolor`` -==================== ===================================================== - - -In the example below, the ``xy`` point is in native coordinates -(``xycoords`` defaults to 'data'). For a polar axes, this is in -(theta, radius) space. The text in this example is placed in the -fractional figure coordinate system. :class:`matplotlib.text.Text` -keyword args like ``horizontalalignment``, ``verticalalignment`` and -``fontsize`` are passed from `~matplotlib.Axes.annotate` to the -``Text`` instance. - -.. figure:: ../../gallery/pyplots/images/sphx_glr_annotation_polar_001.png - :target: ../../gallery/pyplots/annotation_polar.html - :align: center - :scale: 50 - - Annotation Polar - -For more on all the wild and wonderful things you can do with -annotations, including fancy arrows, see :ref:`plotting-guide-annotation` -and :doc:`/gallery/text_labels_and_annotations/annotation_demo`. - - -Do not proceed unless you have already read :ref:`annotations-tutorial`, -:func:`~matplotlib.pyplot.text` and :func:`~matplotlib.pyplot.annotate`! - - -.. _plotting-guide-annotation: - -Advanced Annotation -=================== - - -Annotating with Text with Box ------------------------------ - -Let's start with a simple example. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_text_arrow_001.png - :target: ../../gallery/userdemo/annotate_text_arrow.html - :align: center - :scale: 50 - - Annotate Text Arrow - - -The :func:`~matplotlib.pyplot.text` function in the pyplot module (or -text method of the Axes class) takes bbox keyword argument, and when -given, a box around the text is drawn. :: - - bbox_props = dict(boxstyle="rarrow,pad=0.3", fc="cyan", ec="b", lw=2) - t = ax.text(0, 0, "Direction", ha="center", va="center", rotation=45, - size=15, - bbox=bbox_props) - - -The patch object associated with the text can be accessed by:: - - bb = t.get_bbox_patch() - -The return value is an instance of FancyBboxPatch and the patch -properties like facecolor, edgewidth, etc. can be accessed and -modified as usual. To change the shape of the box, use the *set_boxstyle* -method. :: - - bb.set_boxstyle("rarrow", pad=0.6) - -The arguments are the name of the box style with its attributes as -keyword arguments. Currently, following box styles are implemented. - - ========== ============== ========================== - Class Name Attrs - ========== ============== ========================== - Circle ``circle`` pad=0.3 - DArrow ``darrow`` pad=0.3 - LArrow ``larrow`` pad=0.3 - RArrow ``rarrow`` pad=0.3 - Round ``round`` pad=0.3,rounding_size=None - Round4 ``round4`` pad=0.3,rounding_size=None - Roundtooth ``roundtooth`` pad=0.3,tooth_size=None - Sawtooth ``sawtooth`` pad=0.3,tooth_size=None - Square ``square`` pad=0.3 - ========== ============== ========================== - -.. figure:: ../../gallery/shapes_and_collections/images/sphx_glr_fancybox_demo_001.png - :target: ../../gallery/shapes_and_collections/fancybox_demo.html - :align: center - :scale: 50 - - Fancybox Demo - - -Note that the attribute arguments can be specified within the style -name with separating comma (this form can be used as "boxstyle" value -of bbox argument when initializing the text instance) :: - - bb.set_boxstyle("rarrow,pad=0.6") - - - - -Annotating with Arrow ---------------------- - -The :func:`~matplotlib.pyplot.annotate` function in the pyplot module -(or annotate method of the Axes class) is used to draw an arrow -connecting two points on the plot. :: - - ax.annotate("Annotation", - xy=(x1, y1), xycoords='data', - xytext=(x2, y2), textcoords='offset points', - ) - -This annotates a point at ``xy`` in the given coordinate (``xycoords``) -with the text at ``xytext`` given in ``textcoords``. Often, the -annotated point is specified in the *data* coordinate and the annotating -text in *offset points*. -See :func:`~matplotlib.pyplot.annotate` for available coordinate systems. - -An arrow connecting two points (xy & xytext) can be optionally drawn by -specifying the ``arrowprops`` argument. To draw only an arrow, use -empty string as the first argument. :: - - ax.annotate("", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc3"), - ) - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple01_001.png - :target: ../../gallery/userdemo/annotate_simple01.html - :align: center - :scale: 50 - - Annotate Simple01 - -The arrow drawing takes a few steps. - -1. a connecting path between two points are created. This is - controlled by ``connectionstyle`` key value. - -2. If patch object is given (*patchA* & *patchB*), the path is clipped to - avoid the patch. - -3. The path is further shrunk by given amount of pixels (*shrinkA* - & *shrinkB*) - -4. The path is transmuted to arrow patch, which is controlled by the - ``arrowstyle`` key value. - - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_explain_001.png - :target: ../../gallery/userdemo/annotate_explain.html - :align: center - :scale: 50 - - Annotate Explain - - -The creation of the connecting path between two points is controlled by -``connectionstyle`` key and the following styles are available. - - ========== ============================================= - Name Attrs - ========== ============================================= - ``angle`` angleA=90,angleB=0,rad=0.0 - ``angle3`` angleA=90,angleB=0 - ``arc`` angleA=0,angleB=0,armA=None,armB=None,rad=0.0 - ``arc3`` rad=0.0 - ``bar`` armA=0.0,armB=0.0,fraction=0.3,angle=None - ========== ============================================= - -Note that "3" in ``angle3`` and ``arc3`` is meant to indicate that the -resulting path is a quadratic spline segment (three control -points). As will be discussed below, some arrow style options can only -be used when the connecting path is a quadratic spline. - -The behavior of each connection style is (limitedly) demonstrated in the -example below. (Warning : The behavior of the ``bar`` style is currently not -well defined, it may be changed in the future). - -.. figure:: ../../gallery/userdemo/images/sphx_glr_connectionstyle_demo_001.png - :target: ../../gallery/userdemo/connectionstyle_demo.html - :align: center - :scale: 50 - - Connectionstyle Demo - - -The connecting path (after clipping and shrinking) is then mutated to -an arrow patch, according to the given ``arrowstyle``. - - ========== ============================================= - Name Attrs - ========== ============================================= - ``-`` None - ``->`` head_length=0.4,head_width=0.2 - ``-[`` widthB=1.0,lengthB=0.2,angleB=None - ``|-|`` widthA=1.0,widthB=1.0 - ``-|>`` head_length=0.4,head_width=0.2 - ``<-`` head_length=0.4,head_width=0.2 - ``<->`` head_length=0.4,head_width=0.2 - ``<|-`` head_length=0.4,head_width=0.2 - ``<|-|>`` head_length=0.4,head_width=0.2 - ``fancy`` head_length=0.4,head_width=0.4,tail_width=0.4 - ``simple`` head_length=0.5,head_width=0.5,tail_width=0.2 - ``wedge`` tail_width=0.3,shrink_factor=0.5 - ========== ============================================= - -.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_fancyarrow_demo_001.png - :target: ../../gallery/text_labels_and_annotations/fancyarrow_demo.html - :align: center - :scale: 50 - - Fancyarrow Demo - -Some arrowstyles only work with connection styles that generate a -quadratic-spline segment. They are ``fancy``, ``simple``, and ``wedge``. -For these arrow styles, you must use the "angle3" or "arc3" connection -style. - -If the annotation string is given, the patchA is set to the bbox patch -of the text by default. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple02_001.png - :target: ../../gallery/userdemo/annotate_simple02.html - :align: center - :scale: 50 - - Annotate Simple02 - -As in the text command, a box around the text can be drawn using -the ``bbox`` argument. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple03_001.png - :target: ../../gallery/userdemo/annotate_simple03.html - :align: center - :scale: 50 - - Annotate Simple03 - -By default, the starting point is set to the center of the text -extent. This can be adjusted with ``relpos`` key value. The values -are normalized to the extent of the text. For example, (0,0) means -lower-left corner and (1,1) means top-right. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple04_001.png - :target: ../../gallery/userdemo/annotate_simple04.html - :align: center - :scale: 50 - - Annotate Simple04 - - -Placing Artist at the anchored location of the Axes ---------------------------------------------------- - -There are classes of artists that can be placed at an anchored location -in the Axes. A common example is the legend. This type of artist can -be created by using the OffsetBox class. A few predefined classes are -available in ``mpl_toolkits.axes_grid1.anchored_artists`` others in -``matplotlib.offsetbox`` :: - - from matplotlib.offsetbox import AnchoredText - at = AnchoredText("Figure 1a", - prop=dict(size=15), frameon=True, - loc='upper left', - ) - at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at) - - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box01_001.png - :target: ../../gallery/userdemo/anchored_box01.html - :align: center - :scale: 50 - - Anchored Box01 - - -The *loc* keyword has same meaning as in the legend command. - -A simple application is when the size of the artist (or collection of -artists) is known in pixel size during the time of creation. For -example, If you want to draw a circle with fixed size of 20 pixel x 20 -pixel (radius = 10 pixel), you can utilize -``AnchoredDrawingArea``. The instance is created with a size of the -drawing area (in pixels), and arbitrary artists can added to the -drawing area. Note that the extents of the artists that are added to -the drawing area are not related to the placement of the drawing -area itself. Only the initial size matters. :: - - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea - - ada = AnchoredDrawingArea(20, 20, 0, 0, - loc='upper right', pad=0., frameon=False) - p1 = Circle((10, 10), 10) - ada.drawing_area.add_artist(p1) - p2 = Circle((30, 10), 5, fc="r") - ada.drawing_area.add_artist(p2) - -The artists that are added to the drawing area should not have a -transform set (it will be overridden) and the dimensions of those -artists are interpreted as a pixel coordinate, i.e., the radius of the -circles in above example are 10 pixels and 5 pixels, respectively. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box02_001.png - :target: ../../gallery/userdemo/anchored_box02.html - :align: center - :scale: 50 - - Anchored Box02 - -Sometimes, you want your artists to scale with the data coordinate (or -coordinates other than canvas pixels). You can use -``AnchoredAuxTransformBox`` class. This is similar to -``AnchoredDrawingArea`` except that the extent of the artist is -determined during the drawing time respecting the specified transform. :: - - from mpl_toolkits.axes_grid1.anchored_artists import AnchoredAuxTransformBox - - box = AnchoredAuxTransformBox(ax.transData, loc='upper left') - el = Ellipse((0,0), width=0.1, height=0.4, angle=30) # in data coordinates! - box.drawing_area.add_artist(el) - -The ellipse in the above example will have width and height -corresponding to 0.1 and 0.4 in data coordinates and will be -automatically scaled when the view limits of the axes change. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box03_001.png - :target: ../../gallery/userdemo/anchored_box03.html - :align: center - :scale: 50 - - Anchored Box03 - -As in the legend, the bbox_to_anchor argument can be set. Using the -HPacker and VPacker, you can have an arrangement(?) of artist as in the -legend (as a matter of fact, this is how the legend is created). - -.. figure:: ../../gallery/userdemo/images/sphx_glr_anchored_box04_001.png - :target: ../../gallery/userdemo/anchored_box04.html - :align: center - :scale: 50 - - Anchored Box04 - -Note that unlike the legend, the ``bbox_transform`` is set -to IdentityTransform by default. - -Using Complex Coordinates with Annotations ------------------------------------------- - -The Annotation in matplotlib supports several types of coordinates as -described in :ref:`annotations-tutorial`. For an advanced user who wants -more control, it supports a few other options. - - 1. :class:`~matplotlib.transforms.Transform` instance. For example, :: - - ax.annotate("Test", xy=(0.5, 0.5), xycoords=ax.transAxes) - - is identical to :: - - ax.annotate("Test", xy=(0.5, 0.5), xycoords="axes fraction") - - With this, you can annotate a point in other axes. :: - - ax1, ax2 = subplot(121), subplot(122) - ax2.annotate("Test", xy=(0.5, 0.5), xycoords=ax1.transData, - xytext=(0.5, 0.5), textcoords=ax2.transData, - arrowprops=dict(arrowstyle="->")) - - 2. :class:`~matplotlib.artist.Artist` instance. The xy value (or - xytext) is interpreted as a fractional coordinate of the bbox - (return value of *get_window_extent*) of the artist. :: - - an1 = ax.annotate("Test 1", xy=(0.5, 0.5), xycoords="data", - va="center", ha="center", - bbox=dict(boxstyle="round", fc="w")) - an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1, # (1,0.5) of the an1's bbox - xytext=(30,0), textcoords="offset points", - va="center", ha="left", - bbox=dict(boxstyle="round", fc="w"), - arrowprops=dict(arrowstyle="->")) - - .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord01_001.png - :target: ../../gallery/userdemo/annotate_simple_coord01.html - :align: center - :scale: 50 - - Annotation with Simple Coordinates - - Note that it is your responsibility that the extent of the - coordinate artist (*an1* in above example) is determined before *an2* - gets drawn. In most cases, it means that *an2* needs to be drawn - later than *an1*. - - - 3. A callable object that returns an instance of either - :class:`~matplotlib.transforms.BboxBase` or - :class:`~matplotlib.transforms.Transform`. If a transform is - returned, it is the same as 1 and if a bbox is returned, it is the same - as 2. The callable object should take a single argument of the - renderer instance. For example, the following two commands give - identical results :: - - an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1, - xytext=(30,0), textcoords="offset points") - an2 = ax.annotate("Test 2", xy=(1, 0.5), xycoords=an1.get_window_extent, - xytext=(30,0), textcoords="offset points") - - - 4. A tuple of two coordinate specifications. The first item is for the - x-coordinate and the second is for the y-coordinate. For example, :: - - annotate("Test", xy=(0.5, 1), xycoords=("data", "axes fraction")) - - 0.5 is in data coordinates, and 1 is in normalized axes coordinates. - You may use an artist or transform as with a tuple. For example, - - .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord02_001.png - :target: ../../gallery/userdemo/annotate_simple_coord02.html - :align: center - :scale: 50 - - Annotation with Simple Coordinates 2 - - 5. Sometimes, you want your annotation with some "offset points", not from the - annotated point but from some other point. - :class:`~matplotlib.text.OffsetFrom` is a helper class for such cases. - - .. figure:: ../../gallery/userdemo/images/sphx_glr_annotate_simple_coord03_001.png - :target: ../../gallery/userdemo/annotate_simple_coord03.html - :align: center - :scale: 50 - - Annotation with Simple Coordinates 3 - - You may take a look at this example - :doc:`/gallery/text_labels_and_annotations/annotation_demo`. - -Using ConnectionPatch ---------------------- - -The ConnectionPatch is like an annotation without text. While the annotate -function is recommended in most situations, the ConnectionPatch is useful when -you want to connect points in different axes. :: - - from matplotlib.patches import ConnectionPatch - xy = (0.2, 0.2) - con = ConnectionPatch(xyA=xy, xyB=xy, coordsA="data", coordsB="data", - axesA=ax1, axesB=ax2) - ax2.add_artist(con) - -The above code connects point xy in the data coordinates of ``ax1`` to -point xy in the data coordinates of ``ax2``. Here is a simple example. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_connect_simple01_001.png - :target: ../../gallery/userdemo/connect_simple01.html - :align: center - :scale: 50 - - Connect Simple01 - - -While the ConnectionPatch instance can be added to any axes, you may want to add -it to the axes that is latest in drawing order to prevent overlap by other -axes. - - -Advanced Topics -~~~~~~~~~~~~~~~ - -Zoom effect between Axes ------------------------- - -``mpl_toolkits.axes_grid1.inset_locator`` defines some patch classes useful -for interconnecting two axes. Understanding the code requires some -knowledge of how mpl's transform works. But, utilizing it will be -straight forward. - - -.. figure:: ../../gallery/subplots_axes_and_figures/images/sphx_glr_axes_zoom_effect_001.png - :target: ../../gallery/subplots_axes_and_figures/axes_zoom_effect.html - :align: center - :scale: 50 - - Axes Zoom Effect - - -Define Custom BoxStyle ----------------------- - -You can use a custom box style. The value for the ``boxstyle`` can be a -callable object in the following forms.:: - - def __call__(self, x0, y0, width, height, mutation_size, - aspect_ratio=1.): - ''' - Given the location and size of the box, return the path of - the box around it. - - - *x0*, *y0*, *width*, *height* : location and size of the box - - *mutation_size* : a reference scale for the mutation. - - *aspect_ratio* : aspect-ratio for the mutation. - ''' - path = ... - return path - -Here is a complete example. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle01_001.png - :target: ../../gallery/userdemo/custom_boxstyle01.html - :align: center - :scale: 50 - - Custom Boxstyle01 - -However, it is recommended that you derive from the -matplotlib.patches.BoxStyle._Base as demonstrated below. - -.. figure:: ../../gallery/userdemo/images/sphx_glr_custom_boxstyle02_001.png - :target: ../../gallery/userdemo/custom_boxstyle02.html - :align: center - :scale: 50 - - Custom Boxstyle02 - - -Similarly, you can define a custom ConnectionStyle and a custom ArrowStyle. -See the source code of ``lib/matplotlib/patches.py`` and check -how each style class is defined. -""" diff --git a/_downloads/e9bb895b7413dc48d0e6056938f9d932/inset_locator_demo2.py b/_downloads/e9bb895b7413dc48d0e6056938f9d932/inset_locator_demo2.py deleted file mode 120000 index 0859502583d..00000000000 --- a/_downloads/e9bb895b7413dc48d0e6056938f9d932/inset_locator_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e9bb895b7413dc48d0e6056938f9d932/inset_locator_demo2.py \ No newline at end of file diff --git a/_downloads/e9c2ca4db62c117b7082a17012b4ff17/create_subplots.py b/_downloads/e9c2ca4db62c117b7082a17012b4ff17/create_subplots.py deleted file mode 120000 index bb7072a07b7..00000000000 --- a/_downloads/e9c2ca4db62c117b7082a17012b4ff17/create_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e9c2ca4db62c117b7082a17012b4ff17/create_subplots.py \ No newline at end of file diff --git a/_downloads/e9c51767ceeac1cbc52b99bd8d848522/scatter.py b/_downloads/e9c51767ceeac1cbc52b99bd8d848522/scatter.py deleted file mode 120000 index 351433c21d0..00000000000 --- a/_downloads/e9c51767ceeac1cbc52b99bd8d848522/scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e9c51767ceeac1cbc52b99bd8d848522/scatter.py \ No newline at end of file diff --git a/_downloads/e9c620fd2085056375079781e8cde005/demo_anchored_direction_arrows.py b/_downloads/e9c620fd2085056375079781e8cde005/demo_anchored_direction_arrows.py deleted file mode 100644 index d9b1eb2cc58..00000000000 --- a/_downloads/e9c620fd2085056375079781e8cde005/demo_anchored_direction_arrows.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============================= -Demo Anchored Direction Arrow -============================= - -""" -import matplotlib.pyplot as plt -import numpy as np -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDirectionArrows -import matplotlib.font_manager as fm - -fig, ax = plt.subplots() -ax.imshow(np.random.random((10, 10))) - -# Simple example -simple_arrow = AnchoredDirectionArrows(ax.transAxes, 'X', 'Y') -ax.add_artist(simple_arrow) - -# High contrast arrow -high_contrast_part_1 = AnchoredDirectionArrows( - ax.transAxes, - '111', r'11$\overline{2}$', - loc='upper right', - arrow_props={'ec': 'w', 'fc': 'none', 'alpha': 1, - 'lw': 2} - ) -ax.add_artist(high_contrast_part_1) - -high_contrast_part_2 = AnchoredDirectionArrows( - ax.transAxes, - '111', r'11$\overline{2}$', - loc='upper right', - arrow_props={'ec': 'none', 'fc': 'k'}, - text_props={'ec': 'w', 'fc': 'k', 'lw': 0.4} - ) -ax.add_artist(high_contrast_part_2) - -# Rotated arrow -fontprops = fm.FontProperties(family='serif') - -roatated_arrow = AnchoredDirectionArrows( - ax.transAxes, - '30', '120', - loc='center', - color='w', - angle=30, - fontproperties=fontprops - ) -ax.add_artist(roatated_arrow) - -# Altering arrow directions -a1 = AnchoredDirectionArrows( - ax.transAxes, 'A', 'B', loc='lower center', - length=-0.15, - sep_x=0.03, sep_y=0.03, - color='r' - ) -ax.add_artist(a1) - -a2 = AnchoredDirectionArrows( - ax.transAxes, 'A', ' B', loc='lower left', - aspect_ratio=-1, - sep_x=0.01, sep_y=-0.02, - color='orange' - ) -ax.add_artist(a2) - - -a3 = AnchoredDirectionArrows( - ax.transAxes, ' A', 'B', loc='lower right', - length=-0.15, - aspect_ratio=-1, - sep_y=-0.1, sep_x=0.04, - color='cyan' - ) -ax.add_artist(a3) - -plt.show() diff --git a/_downloads/e9c62fb7b837480ff90a2f91ee42a95e/align_ylabels.ipynb b/_downloads/e9c62fb7b837480ff90a2f91ee42a95e/align_ylabels.ipynb deleted file mode 120000 index e0338f6c960..00000000000 --- a/_downloads/e9c62fb7b837480ff90a2f91ee42a95e/align_ylabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e9c62fb7b837480ff90a2f91ee42a95e/align_ylabels.ipynb \ No newline at end of file diff --git a/_downloads/e9c9eacf74ca066ab643b86a1064ea2e/image_zcoord.py b/_downloads/e9c9eacf74ca066ab643b86a1064ea2e/image_zcoord.py deleted file mode 100644 index 3036bd59c7d..00000000000 --- a/_downloads/e9c9eacf74ca066ab643b86a1064ea2e/image_zcoord.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -================================== -Modifying the coordinate formatter -================================== - -Modify the coordinate formatter to report the image "z" -value of the nearest pixel given x and y. -This functionality is built in by default, but it -is still useful to show how to customize the -`~.axes.Axes.format_coord` function. -""" -import numpy as np -import matplotlib.pyplot as plt - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -X = 10*np.random.rand(5, 3) - -fig, ax = plt.subplots() -ax.imshow(X, interpolation='nearest') - -numrows, numcols = X.shape - - -def format_coord(x, y): - col = int(x + 0.5) - row = int(y + 0.5) - if col >= 0 and col < numcols and row >= 0 and row < numrows: - z = X[row, col] - return 'x=%1.4f, y=%1.4f, z=%1.4f' % (x, y, z) - else: - return 'x=%1.4f, y=%1.4f' % (x, y) - -ax.format_coord = format_coord -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.format_coord -matplotlib.axes.Axes.imshow diff --git a/_downloads/e9ccde2f0196e459c07fe8d8e2095289/rectangle_selector.py b/_downloads/e9ccde2f0196e459c07fe8d8e2095289/rectangle_selector.py deleted file mode 120000 index 4cd28b97750..00000000000 --- a/_downloads/e9ccde2f0196e459c07fe8d8e2095289/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/e9ccde2f0196e459c07fe8d8e2095289/rectangle_selector.py \ No newline at end of file diff --git a/_downloads/e9d9fa757dbad0ad83cb3ee257d0db7a/annotate_simple_coord03.ipynb b/_downloads/e9d9fa757dbad0ad83cb3ee257d0db7a/annotate_simple_coord03.ipynb deleted file mode 120000 index 87052306931..00000000000 --- a/_downloads/e9d9fa757dbad0ad83cb3ee257d0db7a/annotate_simple_coord03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e9d9fa757dbad0ad83cb3ee257d0db7a/annotate_simple_coord03.ipynb \ No newline at end of file diff --git a/_downloads/e9dad76e7dc8b245cfd741fea5807c99/trisurf3d.ipynb b/_downloads/e9dad76e7dc8b245cfd741fea5807c99/trisurf3d.ipynb deleted file mode 120000 index da3c4cf758b..00000000000 --- a/_downloads/e9dad76e7dc8b245cfd741fea5807c99/trisurf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/e9dad76e7dc8b245cfd741fea5807c99/trisurf3d.ipynb \ No newline at end of file diff --git a/_downloads/e9db59defd0d19ee2e67b42fa0cc9930/date_demo_convert.ipynb b/_downloads/e9db59defd0d19ee2e67b42fa0cc9930/date_demo_convert.ipynb deleted file mode 120000 index d6729383d22..00000000000 --- a/_downloads/e9db59defd0d19ee2e67b42fa0cc9930/date_demo_convert.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/e9db59defd0d19ee2e67b42fa0cc9930/date_demo_convert.ipynb \ No newline at end of file diff --git a/_downloads/e9f63478a6b28b6719c51238cf4a4df4/slider_demo.ipynb b/_downloads/e9f63478a6b28b6719c51238cf4a4df4/slider_demo.ipynb deleted file mode 120000 index a6d6f924f3b..00000000000 --- a/_downloads/e9f63478a6b28b6719c51238cf4a4df4/slider_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e9f63478a6b28b6719c51238cf4a4df4/slider_demo.ipynb \ No newline at end of file diff --git a/_downloads/e9f6eedd7e5ceb00078e4e18ad7cc8af/geo_demo.ipynb b/_downloads/e9f6eedd7e5ceb00078e4e18ad7cc8af/geo_demo.ipynb deleted file mode 120000 index ca3c0e7937c..00000000000 --- a/_downloads/e9f6eedd7e5ceb00078e4e18ad7cc8af/geo_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/e9f6eedd7e5ceb00078e4e18ad7cc8af/geo_demo.ipynb \ No newline at end of file diff --git a/_downloads/ea0f2a7b3d9a52658ce479d56df7c588/multipage_pdf.py b/_downloads/ea0f2a7b3d9a52658ce479d56df7c588/multipage_pdf.py deleted file mode 120000 index 5ca7226ba6d..00000000000 --- a/_downloads/ea0f2a7b3d9a52658ce479d56df7c588/multipage_pdf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ea0f2a7b3d9a52658ce479d56df7c588/multipage_pdf.py \ No newline at end of file diff --git a/_downloads/ea116cb51d9f1fba8f7b8ee9b95947d9/demo_axes_divider.ipynb b/_downloads/ea116cb51d9f1fba8f7b8ee9b95947d9/demo_axes_divider.ipynb deleted file mode 120000 index 158913e9642..00000000000 --- a/_downloads/ea116cb51d9f1fba8f7b8ee9b95947d9/demo_axes_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ea116cb51d9f1fba8f7b8ee9b95947d9/demo_axes_divider.ipynb \ No newline at end of file diff --git a/_downloads/ea186fbef5247f6e5d7488161b3962bd/data_browser.py b/_downloads/ea186fbef5247f6e5d7488161b3962bd/data_browser.py deleted file mode 120000 index b899d8c49f6..00000000000 --- a/_downloads/ea186fbef5247f6e5d7488161b3962bd/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ea186fbef5247f6e5d7488161b3962bd/data_browser.py \ No newline at end of file diff --git a/_downloads/ea1f95b29f2c4188004ab6e99c54bcab/axes_zoom_effect.ipynb b/_downloads/ea1f95b29f2c4188004ab6e99c54bcab/axes_zoom_effect.ipynb deleted file mode 120000 index ec93be9a4fc..00000000000 --- a/_downloads/ea1f95b29f2c4188004ab6e99c54bcab/axes_zoom_effect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ea1f95b29f2c4188004ab6e99c54bcab/axes_zoom_effect.ipynb \ No newline at end of file diff --git a/_downloads/ea217359100f2da0cf317e28c6f01466/bar_of_pie.ipynb b/_downloads/ea217359100f2da0cf317e28c6f01466/bar_of_pie.ipynb deleted file mode 120000 index d83de902fb8..00000000000 --- a/_downloads/ea217359100f2da0cf317e28c6f01466/bar_of_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ea217359100f2da0cf317e28c6f01466/bar_of_pie.ipynb \ No newline at end of file diff --git a/_downloads/ea23c7da4c8329c2ed45a9d970ad63e3/whats_new_99_spines.ipynb b/_downloads/ea23c7da4c8329c2ed45a9d970ad63e3/whats_new_99_spines.ipynb deleted file mode 120000 index e54d73cf3b7..00000000000 --- a/_downloads/ea23c7da4c8329c2ed45a9d970ad63e3/whats_new_99_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ea23c7da4c8329c2ed45a9d970ad63e3/whats_new_99_spines.ipynb \ No newline at end of file diff --git a/_downloads/ea24f253cd858996f00919efec03b8e6/usetex_fonteffects.ipynb b/_downloads/ea24f253cd858996f00919efec03b8e6/usetex_fonteffects.ipynb deleted file mode 100644 index b151e6072af..00000000000 --- a/_downloads/ea24f253cd858996f00919efec03b8e6/usetex_fonteffects.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Usetex Fonteffects\n\n\nThis script demonstrates that font effects specified in your pdftex.map\nare now supported in pdf usetex.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nimport matplotlib.pyplot as plt\nmatplotlib.rc('text', usetex=True)\n\n\ndef setfont(font):\n return r'\\font\\a %s at 14pt\\a ' % font\n\n\nfor y, font, text in zip(range(5),\n ['ptmr8r', 'ptmri8r', 'ptmro8r',\n 'ptmr8rn', 'ptmrr8re'],\n ['Nimbus Roman No9 L ' + x for x in\n ['', 'Italics (real italics for comparison)',\n '(slanted)', '(condensed)', '(extended)']]):\n plt.text(0, y, setfont(font) + text)\n\nplt.ylim(-1, 5)\nplt.xlim(-0.2, 0.6)\nplt.setp(plt.gca(), frame_on=False, xticks=(), yticks=())\nplt.title('Usetex font effects')\nplt.savefig('usetex_fonteffects.pdf')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ea323212192c9cd6bb6c1a0d57cd1d58/patch_collection.ipynb b/_downloads/ea323212192c9cd6bb6c1a0d57cd1d58/patch_collection.ipynb deleted file mode 120000 index 6992a12f93a..00000000000 --- a/_downloads/ea323212192c9cd6bb6c1a0d57cd1d58/patch_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ea323212192c9cd6bb6c1a0d57cd1d58/patch_collection.ipynb \ No newline at end of file diff --git a/_downloads/ea3874eba9fa9e462dc88342ed558371/artists.ipynb b/_downloads/ea3874eba9fa9e462dc88342ed558371/artists.ipynb deleted file mode 120000 index f0398bdb20e..00000000000 --- a/_downloads/ea3874eba9fa9e462dc88342ed558371/artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ea3874eba9fa9e462dc88342ed558371/artists.ipynb \ No newline at end of file diff --git a/_downloads/ea3f32f63758f0b2f1f9163bf4aa31ad/customizing.ipynb b/_downloads/ea3f32f63758f0b2f1f9163bf4aa31ad/customizing.ipynb deleted file mode 120000 index 99b4cc2463b..00000000000 --- a/_downloads/ea3f32f63758f0b2f1f9163bf4aa31ad/customizing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ea3f32f63758f0b2f1f9163bf4aa31ad/customizing.ipynb \ No newline at end of file diff --git a/_downloads/ea450efd01cbee3a03d76aa6dfb337ff/contour3d_2.py b/_downloads/ea450efd01cbee3a03d76aa6dfb337ff/contour3d_2.py deleted file mode 120000 index f733e57dec4..00000000000 --- a/_downloads/ea450efd01cbee3a03d76aa6dfb337ff/contour3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ea450efd01cbee3a03d76aa6dfb337ff/contour3d_2.py \ No newline at end of file diff --git a/_downloads/ea5507a59004e464d58ed2968a0afbcb/fonts_demo.py b/_downloads/ea5507a59004e464d58ed2968a0afbcb/fonts_demo.py deleted file mode 100644 index 1aa38dcbcf3..00000000000 --- a/_downloads/ea5507a59004e464d58ed2968a0afbcb/fonts_demo.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -================================== -Fonts demo (object-oriented style) -================================== - -Set font properties using setters. - -See :doc:`fonts_demo_kw` to achieve the same effect using kwargs. -""" - -from matplotlib.font_manager import FontProperties -import matplotlib.pyplot as plt - -font0 = FontProperties() -alignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'} -# Show family options - -families = ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace'] - -font1 = font0.copy() -font1.set_size('large') - -t = plt.figtext(0.1, 0.9, 'family', fontproperties=font1, **alignment) - -yp = [0.8, 0.7, 0.6, 0.5, 0.4, 0.3, 0.2] - -for k, family in enumerate(families): - font = font0.copy() - font.set_family(family) - t = plt.figtext(0.1, yp[k], family, fontproperties=font, **alignment) - -# Show style options - -styles = ['normal', 'italic', 'oblique'] - -t = plt.figtext(0.3, 0.9, 'style', fontproperties=font1, **alignment) - -for k, style in enumerate(styles): - font = font0.copy() - font.set_family('sans-serif') - font.set_style(style) - t = plt.figtext(0.3, yp[k], style, fontproperties=font, **alignment) - -# Show variant options - -variants = ['normal', 'small-caps'] - -t = plt.figtext(0.5, 0.9, 'variant', fontproperties=font1, **alignment) - -for k, variant in enumerate(variants): - font = font0.copy() - font.set_family('serif') - font.set_variant(variant) - t = plt.figtext(0.5, yp[k], variant, fontproperties=font, **alignment) - -# Show weight options - -weights = ['light', 'normal', 'medium', 'semibold', 'bold', 'heavy', 'black'] - -t = plt.figtext(0.7, 0.9, 'weight', fontproperties=font1, **alignment) - -for k, weight in enumerate(weights): - font = font0.copy() - font.set_weight(weight) - t = plt.figtext(0.7, yp[k], weight, fontproperties=font, **alignment) - -# Show size options - -sizes = ['xx-small', 'x-small', 'small', 'medium', 'large', - 'x-large', 'xx-large'] - -t = plt.figtext(0.9, 0.9, 'size', fontproperties=font1, **alignment) - -for k, size in enumerate(sizes): - font = font0.copy() - font.set_size(size) - t = plt.figtext(0.9, yp[k], size, fontproperties=font, **alignment) - -# Show bold italic - -font = font0.copy() -font.set_style('italic') -font.set_weight('bold') -font.set_size('x-small') -t = plt.figtext(0.3, 0.1, 'bold italic', fontproperties=font, **alignment) - -font = font0.copy() -font.set_style('italic') -font.set_weight('bold') -font.set_size('medium') -t = plt.figtext(0.3, 0.2, 'bold italic', fontproperties=font, **alignment) - -font = font0.copy() -font.set_style('italic') -font.set_weight('bold') -font.set_size('x-large') -t = plt.figtext(-0.4, 0.3, 'bold italic', fontproperties=font, **alignment) - -plt.show() diff --git a/_downloads/ea5e7e718dff402d10db655b019b56b2/horizontal_barchart_distribution.py b/_downloads/ea5e7e718dff402d10db655b019b56b2/horizontal_barchart_distribution.py deleted file mode 120000 index 0d27d52afd0..00000000000 --- a/_downloads/ea5e7e718dff402d10db655b019b56b2/horizontal_barchart_distribution.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ea5e7e718dff402d10db655b019b56b2/horizontal_barchart_distribution.py \ No newline at end of file diff --git a/_downloads/ea61553e1b75fe9acb0e30c6271fe0c5/simple_plot.py b/_downloads/ea61553e1b75fe9acb0e30c6271fe0c5/simple_plot.py deleted file mode 120000 index 3dc930f8954..00000000000 --- a/_downloads/ea61553e1b75fe9acb0e30c6271fe0c5/simple_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ea61553e1b75fe9acb0e30c6271fe0c5/simple_plot.py \ No newline at end of file diff --git a/_downloads/ea6c3b9969e32e1144af9170337b4a25/text_intro.ipynb b/_downloads/ea6c3b9969e32e1144af9170337b4a25/text_intro.ipynb deleted file mode 120000 index 05765126462..00000000000 --- a/_downloads/ea6c3b9969e32e1144af9170337b4a25/text_intro.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ea6c3b9969e32e1144af9170337b4a25/text_intro.ipynb \ No newline at end of file diff --git a/_downloads/ea71a0bd5d1a85b8a2eb83f981e1098a/colormap_normalizations_power.ipynb b/_downloads/ea71a0bd5d1a85b8a2eb83f981e1098a/colormap_normalizations_power.ipynb deleted file mode 100644 index b002c0e1ea1..00000000000 --- a/_downloads/ea71a0bd5d1a85b8a2eb83f981e1098a/colormap_normalizations_power.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Power\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n'''\nPowerNorm: Here a power-law trend in X partially obscures a rectified\nsine wave in Y. We can remove the power law using a PowerNorm.\n'''\nX, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)]\nZ1 = (1 + np.sin(Y * 10.)) * X**(2.)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1./2.),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ea73be0751ffd403489ec6af7a17ed2c/plot_types_python.zip b/_downloads/ea73be0751ffd403489ec6af7a17ed2c/plot_types_python.zip deleted file mode 120000 index 750d995ee5c..00000000000 --- a/_downloads/ea73be0751ffd403489ec6af7a17ed2c/plot_types_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ea73be0751ffd403489ec6af7a17ed2c/plot_types_python.zip \ No newline at end of file diff --git a/_downloads/ea7f00b0aa6db1b76f3cc7f3ca2db6f3/embedding_in_gtk3_panzoom_sgskip.py b/_downloads/ea7f00b0aa6db1b76f3cc7f3ca2db6f3/embedding_in_gtk3_panzoom_sgskip.py deleted file mode 120000 index 1447805b99c..00000000000 --- a/_downloads/ea7f00b0aa6db1b76f3cc7f3ca2db6f3/embedding_in_gtk3_panzoom_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ea7f00b0aa6db1b76f3cc7f3ca2db6f3/embedding_in_gtk3_panzoom_sgskip.py \ No newline at end of file diff --git a/_downloads/ea8416586a88db659106473ad5a6721f/tick_labels_from_values.ipynb b/_downloads/ea8416586a88db659106473ad5a6721f/tick_labels_from_values.ipynb deleted file mode 100644 index d732081c7e1..00000000000 --- a/_downloads/ea8416586a88db659106473ad5a6721f/tick_labels_from_values.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Setting tick labels from a list of values\n\n\nUsing ax.set_xticks causes the tick labels to be set on the currently\nchosen ticks. However, you may want to allow matplotlib to dynamically\nchoose the number of ticks and their spacing.\n\nIn this case it may be better to determine the tick label from the\nvalue at the tick. The following example shows how to do this.\n\nNB: The MaxNLocator is used here to ensure that the tick values\ntake integer values.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.ticker import FuncFormatter, MaxNLocator\nfig, ax = plt.subplots()\nxs = range(26)\nys = range(26)\nlabels = list('abcdefghijklmnopqrstuvwxyz')\n\n\ndef format_fn(tick_val, tick_pos):\n if int(tick_val) in xs:\n return labels[int(tick_val)]\n else:\n return ''\n\n\nax.xaxis.set_major_formatter(FuncFormatter(format_fn))\nax.xaxis.set_major_locator(MaxNLocator(integer=True))\nax.plot(xs, ys)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ea8619abf7cfe4b8e899f61aacaa47ec/surface3d.ipynb b/_downloads/ea8619abf7cfe4b8e899f61aacaa47ec/surface3d.ipynb deleted file mode 120000 index 81c24ba1c48..00000000000 --- a/_downloads/ea8619abf7cfe4b8e899f61aacaa47ec/surface3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ea8619abf7cfe4b8e899f61aacaa47ec/surface3d.ipynb \ No newline at end of file diff --git a/_downloads/ea89e4e7a20d946e9a7a12e868fcb90a/pyplot_three.py b/_downloads/ea89e4e7a20d946e9a7a12e868fcb90a/pyplot_three.py deleted file mode 120000 index 089a52edbeb..00000000000 --- a/_downloads/ea89e4e7a20d946e9a7a12e868fcb90a/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ea89e4e7a20d946e9a7a12e868fcb90a/pyplot_three.py \ No newline at end of file diff --git a/_downloads/ea8f835b84c61a747491ce2f728892cc/whats_new_99_axes_grid.py b/_downloads/ea8f835b84c61a747491ce2f728892cc/whats_new_99_axes_grid.py deleted file mode 120000 index 7625179610d..00000000000 --- a/_downloads/ea8f835b84c61a747491ce2f728892cc/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ea8f835b84c61a747491ce2f728892cc/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/_downloads/ea99c56d6a7d2a3364b59f064797e10f/joinstyle.py b/_downloads/ea99c56d6a7d2a3364b59f064797e10f/joinstyle.py deleted file mode 120000 index 1d787406e11..00000000000 --- a/_downloads/ea99c56d6a7d2a3364b59f064797e10f/joinstyle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ea99c56d6a7d2a3364b59f064797e10f/joinstyle.py \ No newline at end of file diff --git a/_downloads/ea9a977f78d643436fd29946455da93a/quiver_demo.py b/_downloads/ea9a977f78d643436fd29946455da93a/quiver_demo.py deleted file mode 120000 index d3d0188356c..00000000000 --- a/_downloads/ea9a977f78d643436fd29946455da93a/quiver_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ea9a977f78d643436fd29946455da93a/quiver_demo.py \ No newline at end of file diff --git a/_downloads/ea9c2b256416873e5da12f0f7333ce22/anchored_artists.py b/_downloads/ea9c2b256416873e5da12f0f7333ce22/anchored_artists.py deleted file mode 100644 index cd829f80fb2..00000000000 --- a/_downloads/ea9c2b256416873e5da12f0f7333ce22/anchored_artists.py +++ /dev/null @@ -1,128 +0,0 @@ -""" -================ -Anchored Artists -================ - -This example illustrates the use of the anchored objects without the -helper classes found in the :ref:`toolkit_axesgrid1-index`. This version -of the figure is similar to the one found in -:doc:`/gallery/axes_grid1/simple_anchored_artists`, but it is -implemented using only the matplotlib namespace, without the help -of additional toolkits. -""" - -from matplotlib import pyplot as plt -from matplotlib.patches import Rectangle, Ellipse -from matplotlib.offsetbox import ( - AnchoredOffsetbox, AuxTransformBox, DrawingArea, TextArea, VPacker) - - -class AnchoredText(AnchoredOffsetbox): - def __init__(self, s, loc, pad=0.4, borderpad=0.5, - prop=None, frameon=True): - self.txt = TextArea(s, minimumdescent=False) - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self.txt, prop=prop, frameon=frameon) - - -def draw_text(ax): - """ - Draw a text-box anchored to the upper-left corner of the figure. - """ - at = AnchoredText("Figure 1a", loc='upper left', frameon=True) - at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") - ax.add_artist(at) - - -class AnchoredDrawingArea(AnchoredOffsetbox): - def __init__(self, width, height, xdescent, ydescent, - loc, pad=0.4, borderpad=0.5, prop=None, frameon=True): - self.da = DrawingArea(width, height, xdescent, ydescent) - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self.da, prop=None, frameon=frameon) - - -def draw_circle(ax): - """ - Draw a circle in axis coordinates - """ - from matplotlib.patches import Circle - ada = AnchoredDrawingArea(20, 20, 0, 0, - loc='upper right', pad=0., frameon=False) - p = Circle((10, 10), 10) - ada.da.add_artist(p) - ax.add_artist(ada) - - -class AnchoredEllipse(AnchoredOffsetbox): - def __init__(self, transform, width, height, angle, loc, - pad=0.1, borderpad=0.1, prop=None, frameon=True): - """ - Draw an ellipse the size in data coordinate of the give axes. - - pad, borderpad in fraction of the legend font size (or prop) - """ - self._box = AuxTransformBox(transform) - self.ellipse = Ellipse((0, 0), width, height, angle) - self._box.add_artist(self.ellipse) - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self._box, prop=prop, frameon=frameon) - - -def draw_ellipse(ax): - """ - Draw an ellipse of width=0.1, height=0.15 in data coordinates - """ - ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0., - loc='lower left', pad=0.5, borderpad=0.4, - frameon=True) - - ax.add_artist(ae) - - -class AnchoredSizeBar(AnchoredOffsetbox): - def __init__(self, transform, size, label, loc, - pad=0.1, borderpad=0.1, sep=2, prop=None, frameon=True): - """ - Draw a horizontal bar with the size in data coordinate of the given - axes. A label will be drawn underneath (center-aligned). - - pad, borderpad in fraction of the legend font size (or prop) - sep in points. - """ - self.size_bar = AuxTransformBox(transform) - self.size_bar.add_artist(Rectangle((0, 0), size, 0, ec="black", lw=1.0)) - - self.txt_label = TextArea(label, minimumdescent=False) - - self._box = VPacker(children=[self.size_bar, self.txt_label], - align="center", - pad=0, sep=sep) - - super().__init__(loc, pad=pad, borderpad=borderpad, - child=self._box, prop=prop, frameon=frameon) - - -def draw_sizebar(ax): - """ - Draw a horizontal bar with length of 0.1 in data coordinates, - with a fixed label underneath. - """ - asb = AnchoredSizeBar(ax.transData, - 0.1, - r"1$^{\prime}$", - loc='lower center', - pad=0.1, borderpad=0.5, sep=5, - frameon=False) - ax.add_artist(asb) - - -ax = plt.gca() -ax.set_aspect(1.) - -draw_text(ax) -draw_circle(ax) -draw_ellipse(ax) -draw_sizebar(ax) - -plt.show() diff --git a/_downloads/eaa5ec0e40c133067142ddb4dde99f91/connectionstyle_demo.py b/_downloads/eaa5ec0e40c133067142ddb4dde99f91/connectionstyle_demo.py deleted file mode 120000 index c4a1d923e23..00000000000 --- a/_downloads/eaa5ec0e40c133067142ddb4dde99f91/connectionstyle_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eaa5ec0e40c133067142ddb4dde99f91/connectionstyle_demo.py \ No newline at end of file diff --git a/_downloads/eab9333373ea4614694e885b23550fce/colormapnorms.ipynb b/_downloads/eab9333373ea4614694e885b23550fce/colormapnorms.ipynb deleted file mode 100644 index 55d8c42b0ce..00000000000 --- a/_downloads/eab9333373ea4614694e885b23550fce/colormapnorms.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nColormap Normalization\n======================\n\nObjects that use colormaps by default linearly map the colors in the\ncolormap from data values *vmin* to *vmax*. For example::\n\n pcm = ax.pcolormesh(x, y, Z, vmin=-1., vmax=1., cmap='RdBu_r')\n\nwill map the data in *Z* linearly from -1 to +1, so *Z=0* will\ngive a color at the center of the colormap *RdBu_r* (white in this\ncase).\n\nMatplotlib does this mapping in two steps, with a normalization from\n[0,1] occurring first, and then mapping onto the indices in the\ncolormap. Normalizations are classes defined in the\n:func:`matplotlib.colors` module. The default, linear normalization is\n:func:`matplotlib.colors.Normalize`.\n\nArtists that map data to color pass the arguments *vmin* and *vmax* to\nconstruct a :func:`matplotlib.colors.Normalize` instance, then call it:\n\n.. ipython::\n\n In [1]: import matplotlib as mpl\n\n In [2]: norm = mpl.colors.Normalize(vmin=-1.,vmax=1.)\n\n In [3]: norm(0.)\n Out[3]: 0.5\n\nHowever, there are sometimes cases where it is useful to map data to\ncolormaps in a non-linear fashion.\n\nLogarithmic\n-----------\n\nOne of the most common transformations is to plot data by taking\nits logarithm (to the base-10). This transformation is useful to\ndisplay changes across disparate scales. Using :func:`colors.LogNorm`\nnormalizes the data via $log_{10}$. In the example below,\nthere are two bumps, one much smaller than the other. Using\n:func:`colors.LogNorm`, the shape and location of each bump can clearly\nbe seen:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\nimport matplotlib.cbook as cbook\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\n\n# A low hump with a spike coming out of the top right. Needs to have\n# z/colour axis on a log scale so we see both hump and spike. linear\n# scale only shows the spike.\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nZ = Z1 + 50 * Z2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolor(X, Y, Z,\n norm=colors.LogNorm(vmin=Z.min(), vmax=Z.max()),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolor(X, Y, Z, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Symmetric logarithmic\n---------------------\n\nSimilarly, it sometimes happens that there is data that is positive\nand negative, but we would still like a logarithmic scaling applied to\nboth. In this case, the negative numbers are also scaled\nlogarithmically, and mapped to smaller numbers; e.g., if `vmin=-vmax`,\nthen they the negative numbers are mapped from 0 to 0.5 and the\npositive from 0.5 to 1.\n\nSince the logarithm of values close to zero tends toward infinity, a\nsmall range around zero needs to be mapped linearly. The parameter\n*linthresh* allows the user to specify the size of this range\n(-*linthresh*, *linthresh*). The size of this range in the colormap is\nset by *linscale*. When *linscale* == 1.0 (the default), the space used\nfor the positive and negative halves of the linear range will be equal\nto one decade in the logarithmic range.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03,\n vmin=-1.0, vmax=1.0),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Power-law\n---------\n\nSometimes it is useful to remap the colors onto a power-law\nrelationship (i.e. $y=x^{\\gamma}$, where $\\gamma$ is the\npower). For this we use the :func:`colors.PowerNorm`. It takes as an\nargument *gamma* (*gamma* == 1.0 will just yield the default linear\nnormalization):\n\n

Note

There should probably be a good reason for plotting the data using\n this type of transformation. Technical viewers are used to linear\n and logarithmic axes and data transformations. Power laws are less\n common, and viewers should explicitly be made aware that they have\n been used.

\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)]\nZ1 = (1 + np.sin(Y * 10.)) * X**(2.)\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=0.5),\n cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='max')\n\npcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='max')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Discrete bounds\n---------------\n\nAnother normaization that comes with Matplotlib is\n:func:`colors.BoundaryNorm`. In addition to *vmin* and *vmax*, this\ntakes as arguments boundaries between which data is to be mapped. The\ncolors are then linearly distributed between these \"bounds\". For\ninstance:\n\n.. ipython::\n\n In [2]: import matplotlib.colors as colors\n\n In [3]: bounds = np.array([-0.25, -0.125, 0, 0.5, 1])\n\n In [4]: norm = colors.BoundaryNorm(boundaries=bounds, ncolors=4)\n\n In [5]: print(norm([-0.2,-0.15,-0.02, 0.3, 0.8, 0.99]))\n [0 0 1 2 3 3]\n\nNote unlike the other norms, this norm returns values from 0 to *ncolors*-1.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(3, 1, figsize=(8, 8))\nax = ax.flatten()\n# even bounds gives a contour-like effect\nbounds = np.linspace(-1, 1, 10)\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=norm,\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both', orientation='vertical')\n\n# uneven bounds changes the colormapping:\nbounds = np.array([-0.25, -0.125, 0, 0.5, 1])\nnorm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)\npcm = ax[1].pcolormesh(X, Y, Z, norm=norm, cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[1], extend='both', orientation='vertical')\n\npcm = ax[2].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[2], extend='both', orientation='vertical')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "DivergingNorm: Different mapping on either side of a center\n-----------------------------------------------------------\n\nSometimes we want to have a different colormap on either side of a\nconceptual center point, and we want those two colormaps to have\ndifferent linear scales. An example is a topographic map where the land\nand ocean have a center at zero, but land typically has a greater\nelevation range than the water has depth range, and they are often\nrepresented by a different colormap.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "filename = cbook.get_sample_data('topobathy.npz', asfileobj=False)\nwith np.load(filename) as dem:\n topo = dem['topo']\n longitude = dem['longitude']\n latitude = dem['latitude']\n\nfig, ax = plt.subplots()\n# make a colormap that has land and ocean clearly delineated and of the\n# same length (256 + 256)\ncolors_undersea = plt.cm.terrain(np.linspace(0, 0.17, 256))\ncolors_land = plt.cm.terrain(np.linspace(0.25, 1, 256))\nall_colors = np.vstack((colors_undersea, colors_land))\nterrain_map = colors.LinearSegmentedColormap.from_list('terrain_map',\n all_colors)\n\n# make the norm: Note the center is offset so that the land has more\n# dynamic range:\ndivnorm = colors.DivergingNorm(vmin=-500., vcenter=0, vmax=4000)\n\npcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=divnorm,\n cmap=terrain_map,)\n# Simple geographic plot, set aspect ratio beecause distance between lines of\n# longitude depends on latitude.\nax.set_aspect(1 / np.cos(np.deg2rad(49)))\nfig.colorbar(pcm, shrink=0.6)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Custom normalization: Manually implement two linear ranges\n----------------------------------------------------------\n\nThe `.DivergingNorm` described above makes a useful example for\ndefining your own norm.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class MidpointNormalize(colors.Normalize):\n def __init__(self, vmin=None, vmax=None, vcenter=None, clip=False):\n self.vcenter = vcenter\n colors.Normalize.__init__(self, vmin, vmax, clip)\n\n def __call__(self, value, clip=None):\n # I'm ignoring masked values and all kinds of edge cases to make a\n # simple example...\n x, y = [self.vmin, self.vcenter, self.vmax], [0, 0.5, 1]\n return np.ma.masked_array(np.interp(value, x, y))\n\n\nfig, ax = plt.subplots()\nmidnorm = MidpointNormalize(vmin=-500., vcenter=0, vmax=4000)\n\npcm = ax.pcolormesh(longitude, latitude, topo, rasterized=True, norm=midnorm,\n cmap=terrain_map)\nax.set_aspect(1 / np.cos(np.deg2rad(49)))\nfig.colorbar(pcm, shrink=0.6, extend='both')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eabb8ee2364f179e73a92ce81339d468/mathtext_examples.py b/_downloads/eabb8ee2364f179e73a92ce81339d468/mathtext_examples.py deleted file mode 100644 index 280964e0c0e..00000000000 --- a/_downloads/eabb8ee2364f179e73a92ce81339d468/mathtext_examples.py +++ /dev/null @@ -1,126 +0,0 @@ -""" -================= -Mathtext Examples -================= - -Selected features of Matplotlib's math rendering engine. -""" -import matplotlib.pyplot as plt -import subprocess -import sys -import re - -# Selection of features following "Writing mathematical expressions" tutorial -mathtext_titles = { - 0: "Header demo", - 1: "Subscripts and superscripts", - 2: "Fractions, binomials and stacked numbers", - 3: "Radicals", - 4: "Fonts", - 5: "Accents", - 6: "Greek, Hebrew", - 7: "Delimiters, functions and Symbols"} -n_lines = len(mathtext_titles) - -# Randomly picked examples -mathext_demos = { - 0: r"$W^{3\beta}_{\delta_1 \rho_1 \sigma_2} = " - r"U^{3\beta}_{\delta_1 \rho_1} + \frac{1}{8 \pi 2} " - r"\int^{\alpha_2}_{\alpha_2} d \alpha^\prime_2 \left[\frac{ " - r"U^{2\beta}_{\delta_1 \rho_1} - \alpha^\prime_2U^{1\beta}_" - r"{\rho_1 \sigma_2} }{U^{0\beta}_{\rho_1 \sigma_2}}\right]$", - - 1: r"$\alpha_i > \beta_i,\ " - r"\alpha_{i+1}^j = {\rm sin}(2\pi f_j t_i) e^{-5 t_i/\tau},\ " - r"\ldots$", - - 2: r"$\frac{3}{4},\ \binom{3}{4},\ \genfrac{}{}{0}{}{3}{4},\ " - r"\left(\frac{5 - \frac{1}{x}}{4}\right),\ \ldots$", - - 3: r"$\sqrt{2},\ \sqrt[3]{x},\ \ldots$", - - 4: r"$\mathrm{Roman}\ , \ \mathit{Italic}\ , \ \mathtt{Typewriter} \ " - r"\mathrm{or}\ \mathcal{CALLIGRAPHY}$", - - 5: r"$\acute a,\ \bar a,\ \breve a,\ \dot a,\ \ddot a, \ \grave a, \ " - r"\hat a,\ \tilde a,\ \vec a,\ \widehat{xyz},\ \widetilde{xyz},\ " - r"\ldots$", - - 6: r"$\alpha,\ \beta,\ \chi,\ \delta,\ \lambda,\ \mu,\ " - r"\Delta,\ \Gamma,\ \Omega,\ \Phi,\ \Pi,\ \Upsilon,\ \nabla,\ " - r"\aleph,\ \beth,\ \daleth,\ \gimel,\ \ldots$", - - 7: r"$\coprod,\ \int,\ \oint,\ \prod,\ \sum,\ " - r"\log,\ \sin,\ \approx,\ \oplus,\ \star,\ \varpropto,\ " - r"\infty,\ \partial,\ \Re,\ \leftrightsquigarrow, \ \ldots$"} - - -def doall(): - # Colors used in mpl online documentation. - mpl_blue_rvb = (191. / 255., 209. / 256., 212. / 255.) - mpl_orange_rvb = (202. / 255., 121. / 256., 0. / 255.) - mpl_grey_rvb = (51. / 255., 51. / 255., 51. / 255.) - - # Creating figure and axis. - plt.figure(figsize=(6, 7)) - plt.axes([0.01, 0.01, 0.98, 0.90], facecolor="white", frameon=True) - plt.gca().set_xlim(0., 1.) - plt.gca().set_ylim(0., 1.) - plt.gca().set_title("Matplotlib's math rendering engine", - color=mpl_grey_rvb, fontsize=14, weight='bold') - plt.gca().set_xticklabels("", visible=False) - plt.gca().set_yticklabels("", visible=False) - - # Gap between lines in axes coords - line_axesfrac = (1. / (n_lines)) - - # Plotting header demonstration formula - full_demo = mathext_demos[0] - plt.annotate(full_demo, - xy=(0.5, 1. - 0.59 * line_axesfrac), - color=mpl_orange_rvb, ha='center', fontsize=20) - - # Plotting features demonstration formulae - for i_line in range(1, n_lines): - baseline = 1 - (i_line) * line_axesfrac - baseline_next = baseline - line_axesfrac - title = mathtext_titles[i_line] + ":" - fill_color = ['white', mpl_blue_rvb][i_line % 2] - plt.fill_between([0., 1.], [baseline, baseline], - [baseline_next, baseline_next], - color=fill_color, alpha=0.5) - plt.annotate(title, - xy=(0.07, baseline - 0.3 * line_axesfrac), - color=mpl_grey_rvb, weight='bold') - demo = mathext_demos[i_line] - plt.annotate(demo, - xy=(0.05, baseline - 0.75 * line_axesfrac), - color=mpl_grey_rvb, fontsize=16) - - for i in range(n_lines): - s = mathext_demos[i] - print(i, s) - plt.show() - - -if '--latex' in sys.argv: - # Run: python mathtext_examples.py --latex - # Need amsmath and amssymb packages. - fd = open("mathtext_examples.ltx", "w") - fd.write("\\documentclass{article}\n") - fd.write("\\usepackage{amsmath, amssymb}\n") - fd.write("\\begin{document}\n") - fd.write("\\begin{enumerate}\n") - - for i in range(n_lines): - s = mathext_demos[i] - s = re.sub(r"(?`.\nIf the interpolation is ``'none'``, then no interpolation is performed\nfor the Agg, ps and pdf backends. Other backends will default to ``'nearest'``.\n\nFor the Agg, ps and pdf backends, ``interpolation = 'none'`` works well when a\nbig image is scaled down, while ``interpolation = 'nearest'`` works well when\na small image is scaled up.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nmethods = [None, 'none', 'nearest', 'bilinear', 'bicubic', 'spline16',\n 'spline36', 'hanning', 'hamming', 'hermite', 'kaiser', 'quadric',\n 'catrom', 'gaussian', 'bessel', 'mitchell', 'sinc', 'lanczos']\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\ngrid = np.random.rand(4, 4)\n\nfig, axs = plt.subplots(nrows=3, ncols=6, figsize=(9, 6),\n subplot_kw={'xticks': [], 'yticks': []})\n\nfor ax, interp_method in zip(axs.flat, methods):\n ax.imshow(grid, interpolation=interp_method, cmap='viridis')\n ax.set_title(str(interp_method))\n\nplt.tight_layout()\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ead3c1165be6a3c8853027da1ce7cd0d/scalarformatter.ipynb b/_downloads/ead3c1165be6a3c8853027da1ce7cd0d/scalarformatter.ipynb deleted file mode 120000 index 6ce2d845f72..00000000000 --- a/_downloads/ead3c1165be6a3c8853027da1ce7cd0d/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ead3c1165be6a3c8853027da1ce7cd0d/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/ead6b9fe4086411a46cb9ce2dadc23ba/pcolor_demo.py b/_downloads/ead6b9fe4086411a46cb9ce2dadc23ba/pcolor_demo.py deleted file mode 120000 index 668bb908d46..00000000000 --- a/_downloads/ead6b9fe4086411a46cb9ce2dadc23ba/pcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ead6b9fe4086411a46cb9ce2dadc23ba/pcolor_demo.py \ No newline at end of file diff --git a/_downloads/ead9c446872f9c5f61a2173ec954ab1e/multipage_pdf.ipynb b/_downloads/ead9c446872f9c5f61a2173ec954ab1e/multipage_pdf.ipynb deleted file mode 120000 index 87afe47137d..00000000000 --- a/_downloads/ead9c446872f9c5f61a2173ec954ab1e/multipage_pdf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ead9c446872f9c5f61a2173ec954ab1e/multipage_pdf.ipynb \ No newline at end of file diff --git a/_downloads/eae42ff56c3794918f54bb8169748d5e/colormap_normalizations_custom.py b/_downloads/eae42ff56c3794918f54bb8169748d5e/colormap_normalizations_custom.py deleted file mode 120000 index ed21459a366..00000000000 --- a/_downloads/eae42ff56c3794918f54bb8169748d5e/colormap_normalizations_custom.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/eae42ff56c3794918f54bb8169748d5e/colormap_normalizations_custom.py \ No newline at end of file diff --git a/_downloads/eafb3d1127768f02eeaafc02138215c6/3d_bars.ipynb b/_downloads/eafb3d1127768f02eeaafc02138215c6/3d_bars.ipynb deleted file mode 100644 index 6a96d6a53db..00000000000 --- a/_downloads/eafb3d1127768f02eeaafc02138215c6/3d_bars.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo of 3D bar charts\n\n\nA basic demo of how to plot 3D bars with and without shading.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\n# setup the figure and axes\nfig = plt.figure(figsize=(8, 3))\nax1 = fig.add_subplot(121, projection='3d')\nax2 = fig.add_subplot(122, projection='3d')\n\n# fake data\n_x = np.arange(4)\n_y = np.arange(5)\n_xx, _yy = np.meshgrid(_x, _y)\nx, y = _xx.ravel(), _yy.ravel()\n\ntop = x + y\nbottom = np.zeros_like(top)\nwidth = depth = 1\n\nax1.bar3d(x, y, bottom, width, depth, top, shade=True)\nax1.set_title('Shaded')\n\nax2.bar3d(x, y, bottom, width, depth, top, shade=False)\nax2.set_title('Not Shaded')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eafb8ca17cdfbe7ebbd635e7599cb9ac/scatter_with_legend.py b/_downloads/eafb8ca17cdfbe7ebbd635e7599cb9ac/scatter_with_legend.py deleted file mode 120000 index 141b23996f0..00000000000 --- a/_downloads/eafb8ca17cdfbe7ebbd635e7599cb9ac/scatter_with_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/eafb8ca17cdfbe7ebbd635e7599cb9ac/scatter_with_legend.py \ No newline at end of file diff --git a/_downloads/eb0518abbc6716db4febce770251208f/demo_ribbon_box.py b/_downloads/eb0518abbc6716db4febce770251208f/demo_ribbon_box.py deleted file mode 120000 index 3d983778cd2..00000000000 --- a/_downloads/eb0518abbc6716db4febce770251208f/demo_ribbon_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb0518abbc6716db4febce770251208f/demo_ribbon_box.py \ No newline at end of file diff --git a/_downloads/eb06ca7d3bcb89ac87f77c57f00b672f/embedding_in_qt_sgskip.ipynb b/_downloads/eb06ca7d3bcb89ac87f77c57f00b672f/embedding_in_qt_sgskip.ipynb deleted file mode 120000 index 527bac32087..00000000000 --- a/_downloads/eb06ca7d3bcb89ac87f77c57f00b672f/embedding_in_qt_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/eb06ca7d3bcb89ac87f77c57f00b672f/embedding_in_qt_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/eb09b496b073828e9d736e0ec0b27360/polar_legend.ipynb b/_downloads/eb09b496b073828e9d736e0ec0b27360/polar_legend.ipynb deleted file mode 120000 index 352ca0df15d..00000000000 --- a/_downloads/eb09b496b073828e9d736e0ec0b27360/polar_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/eb09b496b073828e9d736e0ec0b27360/polar_legend.ipynb \ No newline at end of file diff --git a/_downloads/eb166d974dc2e3dbd4ea6c85dac960ad/joinstyle.py b/_downloads/eb166d974dc2e3dbd4ea6c85dac960ad/joinstyle.py deleted file mode 120000 index 937ef1a9f1f..00000000000 --- a/_downloads/eb166d974dc2e3dbd4ea6c85dac960ad/joinstyle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/eb166d974dc2e3dbd4ea6c85dac960ad/joinstyle.py \ No newline at end of file diff --git a/_downloads/eb184648775f3b5a621c603c71ce3f25/custom_projection.ipynb b/_downloads/eb184648775f3b5a621c603c71ce3f25/custom_projection.ipynb deleted file mode 120000 index 9a24f65a4c5..00000000000 --- a/_downloads/eb184648775f3b5a621c603c71ce3f25/custom_projection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/eb184648775f3b5a621c603c71ce3f25/custom_projection.ipynb \ No newline at end of file diff --git a/_downloads/eb2e3ad328735ed82da35ae6777c9f1e/contourf3d.ipynb b/_downloads/eb2e3ad328735ed82da35ae6777c9f1e/contourf3d.ipynb deleted file mode 120000 index d7eb295ece9..00000000000 --- a/_downloads/eb2e3ad328735ed82da35ae6777c9f1e/contourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/eb2e3ad328735ed82da35ae6777c9f1e/contourf3d.ipynb \ No newline at end of file diff --git a/_downloads/eb34f250201193ce99ae53d123123989/grayscale.ipynb b/_downloads/eb34f250201193ce99ae53d123123989/grayscale.ipynb deleted file mode 120000 index f0cad9a28d1..00000000000 --- a/_downloads/eb34f250201193ce99ae53d123123989/grayscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/eb34f250201193ce99ae53d123123989/grayscale.ipynb \ No newline at end of file diff --git a/_downloads/eb48dedc5ea488083a234ee0552f39ce/polar_legend.py b/_downloads/eb48dedc5ea488083a234ee0552f39ce/polar_legend.py deleted file mode 120000 index 8f6eab106f1..00000000000 --- a/_downloads/eb48dedc5ea488083a234ee0552f39ce/polar_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb48dedc5ea488083a234ee0552f39ce/polar_legend.py \ No newline at end of file diff --git a/_downloads/eb4cd32a0f7bd5e00a30ca9decc64f60/imshow_extent.py b/_downloads/eb4cd32a0f7bd5e00a30ca9decc64f60/imshow_extent.py deleted file mode 120000 index d5aa6315bc3..00000000000 --- a/_downloads/eb4cd32a0f7bd5e00a30ca9decc64f60/imshow_extent.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb4cd32a0f7bd5e00a30ca9decc64f60/imshow_extent.py \ No newline at end of file diff --git a/_downloads/eb4dfe316fc36243d285af63813b243b/demo_parasite_axes2.py b/_downloads/eb4dfe316fc36243d285af63813b243b/demo_parasite_axes2.py deleted file mode 120000 index 75823f3a6b4..00000000000 --- a/_downloads/eb4dfe316fc36243d285af63813b243b/demo_parasite_axes2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/eb4dfe316fc36243d285af63813b243b/demo_parasite_axes2.py \ No newline at end of file diff --git a/_downloads/eb4e54fee5c1e59ae69c6d5ec7d3b67e/polys3d.ipynb b/_downloads/eb4e54fee5c1e59ae69c6d5ec7d3b67e/polys3d.ipynb deleted file mode 100644 index 8fae14281a8..00000000000 --- a/_downloads/eb4e54fee5c1e59ae69c6d5ec7d3b67e/polys3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Generate polygons to fill under 3D line graph\n\n\nDemonstrate how to create polygons which fill the space under a line\ngraph. In this example polygons are semi-transparent, creating a sort\nof 'jagged stained glass' effect.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nfrom matplotlib.collections import PolyCollection\nimport matplotlib.pyplot as plt\nfrom matplotlib import colors as mcolors\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\ndef polygon_under_graph(xlist, ylist):\n \"\"\"\n Construct the vertex list which defines the polygon filling the space under\n the (xlist, ylist) line graph. Assumes the xs are in ascending order.\n \"\"\"\n return [(xlist[0], 0.), *zip(xlist, ylist), (xlist[-1], 0.)]\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make verts a list, verts[i] will be a list of (x,y) pairs defining polygon i\nverts = []\n\n# Set up the x sequence\nxs = np.linspace(0., 10., 26)\n\n# The ith polygon will appear on the plane y = zs[i]\nzs = range(4)\n\nfor i in zs:\n ys = np.random.rand(len(xs))\n verts.append(polygon_under_graph(xs, ys))\n\npoly = PolyCollection(verts, facecolors=['r', 'g', 'b', 'y'], alpha=.6)\nax.add_collection3d(poly, zs=zs, zdir='y')\n\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\nax.set_xlim(0, 10)\nax.set_ylim(-1, 4)\nax.set_zlim(0, 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eb5efb9703109555e5a0a31697856be9/hexbin_demo.ipynb b/_downloads/eb5efb9703109555e5a0a31697856be9/hexbin_demo.ipynb deleted file mode 100644 index 03aaf39b64e..00000000000 --- a/_downloads/eb5efb9703109555e5a0a31697856be9/hexbin_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hexbin Demo\n\n\nPlotting hexbins with Matplotlib.\n\nHexbin is an axes method or pyplot function that is essentially\na pcolor of a 2-D histogram with hexagonal cells. It can be\nmuch more informative than a scatter plot. In the first plot\nbelow, try substituting 'scatter' for 'hexbin'.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nn = 100000\nx = np.random.standard_normal(n)\ny = 2.0 + 3.0 * x + 4.0 * np.random.standard_normal(n)\nxmin = x.min()\nxmax = x.max()\nymin = y.min()\nymax = y.max()\n\nfig, axs = plt.subplots(ncols=2, sharey=True, figsize=(7, 4))\nfig.subplots_adjust(hspace=0.5, left=0.07, right=0.93)\nax = axs[0]\nhb = ax.hexbin(x, y, gridsize=50, cmap='inferno')\nax.set(xlim=(xmin, xmax), ylim=(ymin, ymax))\nax.set_title(\"Hexagon binning\")\ncb = fig.colorbar(hb, ax=ax)\ncb.set_label('counts')\n\nax = axs[1]\nhb = ax.hexbin(x, y, gridsize=50, bins='log', cmap='inferno')\nax.set(xlim=(xmin, xmax), ylim=(ymin, ymax))\nax.set_title(\"With a log color scale\")\ncb = fig.colorbar(hb, ax=ax)\ncb.set_label('log10(N)')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eb61af8a825171141a7a4f7d2f67ff35/multiple_figs_demo.ipynb b/_downloads/eb61af8a825171141a7a4f7d2f67ff35/multiple_figs_demo.ipynb deleted file mode 120000 index 20d4566c9ff..00000000000 --- a/_downloads/eb61af8a825171141a7a4f7d2f67ff35/multiple_figs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/eb61af8a825171141a7a4f7d2f67ff35/multiple_figs_demo.ipynb \ No newline at end of file diff --git a/_downloads/eb671732b1a0eba39ced0df40bb16a0e/hist3d.ipynb b/_downloads/eb671732b1a0eba39ced0df40bb16a0e/hist3d.ipynb deleted file mode 100644 index 67ea09c08ef..00000000000 --- a/_downloads/eb671732b1a0eba39ced0df40bb16a0e/hist3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Create 3D histogram of 2D data\n\n\nDemo of a histogram for 2 dimensional data as a bar graph in 3D.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\nx, y = np.random.rand(2, 100) * 4\nhist, xedges, yedges = np.histogram2d(x, y, bins=4, range=[[0, 4], [0, 4]])\n\n# Construct arrays for the anchor positions of the 16 bars.\nxpos, ypos = np.meshgrid(xedges[:-1] + 0.25, yedges[:-1] + 0.25, indexing=\"ij\")\nxpos = xpos.ravel()\nypos = ypos.ravel()\nzpos = 0\n\n# Construct arrays with the dimensions for the 16 bars.\ndx = dy = 0.5 * np.ones_like(zpos)\ndz = hist.ravel()\n\nax.bar3d(xpos, ypos, zpos, dx, dy, dz, zsort='average')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eb6fc3178f06c2656e3c3d82a5452986/findobj_demo.ipynb b/_downloads/eb6fc3178f06c2656e3c3d82a5452986/findobj_demo.ipynb deleted file mode 120000 index 3515dd3b23f..00000000000 --- a/_downloads/eb6fc3178f06c2656e3c3d82a5452986/findobj_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb6fc3178f06c2656e3c3d82a5452986/findobj_demo.ipynb \ No newline at end of file diff --git a/_downloads/eb72add6ed865798e054d654a741b0e8/text3d.ipynb b/_downloads/eb72add6ed865798e054d654a741b0e8/text3d.ipynb deleted file mode 100644 index 81d3fed8402..00000000000 --- a/_downloads/eb72add6ed865798e054d654a741b0e8/text3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Text annotations in 3D\n\n\nDemonstrates the placement of text annotations on a 3D plot.\n\nFunctionality shown:\n\n - Using the text function with three types of 'zdir' values: None, an axis\n name (ex. 'x'), or a direction tuple (ex. (1, 1, 0)).\n - Using the text function with the color keyword.\n\n - Using the text2D function to place text on a fixed position on the ax\n object.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Demo 1: zdir\nzdirs = (None, 'x', 'y', 'z', (1, 1, 0), (1, 1, 1))\nxs = (1, 4, 4, 9, 4, 1)\nys = (2, 5, 8, 10, 1, 2)\nzs = (10, 3, 8, 9, 1, 8)\n\nfor zdir, x, y, z in zip(zdirs, xs, ys, zs):\n label = '(%d, %d, %d), dir=%s' % (x, y, z, zdir)\n ax.text(x, y, z, label, zdir)\n\n# Demo 2: color\nax.text(9, 0, 0, \"red\", color='red')\n\n# Demo 3: text2D\n# Placement 0, 0 would be the bottom left, 1, 1 would be the top right.\nax.text2D(0.05, 0.95, \"2D Text\", transform=ax.transAxes)\n\n# Tweaking display region and labels\nax.set_xlim(0, 10)\nax.set_ylim(0, 10)\nax.set_zlim(0, 10)\nax.set_xlabel('X axis')\nax.set_ylabel('Y axis')\nax.set_zlabel('Z axis')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eb7605cff65a6c8375c743d0b47dc3ff/demo_axes_rgb.py b/_downloads/eb7605cff65a6c8375c743d0b47dc3ff/demo_axes_rgb.py deleted file mode 120000 index a9737cdaa32..00000000000 --- a/_downloads/eb7605cff65a6c8375c743d0b47dc3ff/demo_axes_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb7605cff65a6c8375c743d0b47dc3ff/demo_axes_rgb.py \ No newline at end of file diff --git a/_downloads/eb785a564ec74fb1e0a3a1548819ce87/demo_agg_filter.ipynb b/_downloads/eb785a564ec74fb1e0a3a1548819ce87/demo_agg_filter.ipynb deleted file mode 100644 index 2510f6b8035..00000000000 --- a/_downloads/eb785a564ec74fb1e0a3a1548819ce87/demo_agg_filter.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Agg Filter\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nimport numpy as np\nimport matplotlib.cm as cm\nimport matplotlib.transforms as mtransforms\nfrom matplotlib.colors import LightSource\nfrom matplotlib.artist import Artist\n\n\ndef smooth1d(x, window_len):\n # copied from http://www.scipy.org/Cookbook/SignalSmooth\n\n s = np.r_[2*x[0] - x[window_len:1:-1], x, 2*x[-1] - x[-1:-window_len:-1]]\n w = np.hanning(window_len)\n y = np.convolve(w/w.sum(), s, mode='same')\n return y[window_len-1:-window_len+1]\n\n\ndef smooth2d(A, sigma=3):\n\n window_len = max(int(sigma), 3)*2 + 1\n A1 = np.array([smooth1d(x, window_len) for x in np.asarray(A)])\n A2 = np.transpose(A1)\n A3 = np.array([smooth1d(x, window_len) for x in A2])\n A4 = np.transpose(A3)\n\n return A4\n\n\nclass BaseFilter(object):\n def prepare_image(self, src_image, dpi, pad):\n ny, nx, depth = src_image.shape\n # tgt_image = np.zeros([pad*2+ny, pad*2+nx, depth], dtype=\"d\")\n padded_src = np.zeros([pad*2 + ny, pad*2 + nx, depth], dtype=\"d\")\n padded_src[pad:-pad, pad:-pad, :] = src_image[:, :, :]\n\n return padded_src # , tgt_image\n\n def get_pad(self, dpi):\n return 0\n\n def __call__(self, im, dpi):\n pad = self.get_pad(dpi)\n padded_src = self.prepare_image(im, dpi, pad)\n tgt_image = self.process_image(padded_src, dpi)\n return tgt_image, -pad, -pad\n\n\nclass OffsetFilter(BaseFilter):\n def __init__(self, offsets=None):\n if offsets is None:\n self.offsets = (0, 0)\n else:\n self.offsets = offsets\n\n def get_pad(self, dpi):\n return int(max(*self.offsets)/72.*dpi)\n\n def process_image(self, padded_src, dpi):\n ox, oy = self.offsets\n a1 = np.roll(padded_src, int(ox/72.*dpi), axis=1)\n a2 = np.roll(a1, -int(oy/72.*dpi), axis=0)\n return a2\n\n\nclass GaussianFilter(BaseFilter):\n \"simple gauss filter\"\n\n def __init__(self, sigma, alpha=0.5, color=None):\n self.sigma = sigma\n self.alpha = alpha\n if color is None:\n self.color = (0, 0, 0)\n else:\n self.color = color\n\n def get_pad(self, dpi):\n return int(self.sigma*3/72.*dpi)\n\n def process_image(self, padded_src, dpi):\n # offsetx, offsety = int(self.offsets[0]), int(self.offsets[1])\n tgt_image = np.zeros_like(padded_src)\n aa = smooth2d(padded_src[:, :, -1]*self.alpha,\n self.sigma/72.*dpi)\n tgt_image[:, :, -1] = aa\n tgt_image[:, :, :-1] = self.color\n return tgt_image\n\n\nclass DropShadowFilter(BaseFilter):\n def __init__(self, sigma, alpha=0.3, color=None, offsets=None):\n self.gauss_filter = GaussianFilter(sigma, alpha, color)\n self.offset_filter = OffsetFilter(offsets)\n\n def get_pad(self, dpi):\n return max(self.gauss_filter.get_pad(dpi),\n self.offset_filter.get_pad(dpi))\n\n def process_image(self, padded_src, dpi):\n t1 = self.gauss_filter.process_image(padded_src, dpi)\n t2 = self.offset_filter.process_image(t1, dpi)\n return t2\n\n\nclass LightFilter(BaseFilter):\n \"simple gauss filter\"\n\n def __init__(self, sigma, fraction=0.5):\n self.gauss_filter = GaussianFilter(sigma, alpha=1)\n self.light_source = LightSource()\n self.fraction = fraction\n\n def get_pad(self, dpi):\n return self.gauss_filter.get_pad(dpi)\n\n def process_image(self, padded_src, dpi):\n t1 = self.gauss_filter.process_image(padded_src, dpi)\n elevation = t1[:, :, 3]\n rgb = padded_src[:, :, :3]\n\n rgb2 = self.light_source.shade_rgb(rgb, elevation,\n fraction=self.fraction)\n\n tgt = np.empty_like(padded_src)\n tgt[:, :, :3] = rgb2\n tgt[:, :, 3] = padded_src[:, :, 3]\n\n return tgt\n\n\nclass GrowFilter(BaseFilter):\n \"enlarge the area\"\n\n def __init__(self, pixels, color=None):\n self.pixels = pixels\n if color is None:\n self.color = (1, 1, 1)\n else:\n self.color = color\n\n def __call__(self, im, dpi):\n ny, nx, depth = im.shape\n alpha = np.pad(im[..., -1], self.pixels, \"constant\")\n alpha2 = np.clip(smooth2d(alpha, self.pixels/72.*dpi) * 5, 0, 1)\n new_im = np.empty((*alpha2.shape, 4))\n new_im[:, :, -1] = alpha2\n new_im[:, :, :-1] = self.color\n offsetx, offsety = -self.pixels, -self.pixels\n return new_im, offsetx, offsety\n\n\nclass FilteredArtistList(Artist):\n \"\"\"\n A simple container to draw filtered artist.\n \"\"\"\n\n def __init__(self, artist_list, filter):\n self._artist_list = artist_list\n self._filter = filter\n Artist.__init__(self)\n\n def draw(self, renderer):\n renderer.start_rasterizing()\n renderer.start_filter()\n for a in self._artist_list:\n a.draw(renderer)\n renderer.stop_filter(self._filter)\n renderer.stop_rasterizing()\n\n\ndef filtered_text(ax):\n # mostly copied from contour_demo.py\n\n # prepare image\n delta = 0.025\n x = np.arange(-3.0, 3.0, delta)\n y = np.arange(-2.0, 2.0, delta)\n X, Y = np.meshgrid(x, y)\n Z1 = np.exp(-X**2 - Y**2)\n Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\n Z = (Z1 - Z2) * 2\n\n # draw\n im = ax.imshow(Z, interpolation='bilinear', origin='lower',\n cmap=cm.gray, extent=(-3, 3, -2, 2))\n levels = np.arange(-1.2, 1.6, 0.2)\n CS = ax.contour(Z, levels,\n origin='lower',\n linewidths=2,\n extent=(-3, 3, -2, 2))\n\n ax.set_aspect(\"auto\")\n\n # contour label\n cl = ax.clabel(CS, levels[1::2], # label every second level\n inline=1,\n fmt='%1.1f',\n fontsize=11)\n\n # change clabel color to black\n from matplotlib.patheffects import Normal\n for t in cl:\n t.set_color(\"k\")\n # to force TextPath (i.e., same font in all backends)\n t.set_path_effects([Normal()])\n\n # Add white glows to improve visibility of labels.\n white_glows = FilteredArtistList(cl, GrowFilter(3))\n ax.add_artist(white_glows)\n white_glows.set_zorder(cl[0].get_zorder() - 0.1)\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\ndef drop_shadow_line(ax):\n # copied from examples/misc/svg_filter_line.py\n\n # draw lines\n l1, = ax.plot([0.1, 0.5, 0.9], [0.1, 0.9, 0.5], \"bo-\",\n mec=\"b\", mfc=\"w\", lw=5, mew=3, ms=10, label=\"Line 1\")\n l2, = ax.plot([0.1, 0.5, 0.9], [0.5, 0.2, 0.7], \"ro-\",\n mec=\"r\", mfc=\"w\", lw=5, mew=3, ms=10, label=\"Line 1\")\n\n gauss = DropShadowFilter(4)\n\n for l in [l1, l2]:\n\n # draw shadows with same lines with slight offset.\n\n xx = l.get_xdata()\n yy = l.get_ydata()\n shadow, = ax.plot(xx, yy)\n shadow.update_from(l)\n\n # offset transform\n ot = mtransforms.offset_copy(l.get_transform(), ax.figure,\n x=4.0, y=-6.0, units='points')\n\n shadow.set_transform(ot)\n\n # adjust zorder of the shadow lines so that it is drawn below the\n # original lines\n shadow.set_zorder(l.get_zorder() - 0.5)\n shadow.set_agg_filter(gauss)\n shadow.set_rasterized(True) # to support mixed-mode renderers\n\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\ndef drop_shadow_patches(ax):\n # Copied from barchart_demo.py\n N = 5\n men_means = [20, 35, 30, 35, 27]\n\n ind = np.arange(N) # the x locations for the groups\n width = 0.35 # the width of the bars\n\n rects1 = ax.bar(ind, men_means, width, color='r', ec=\"w\", lw=2)\n\n women_means = [25, 32, 34, 20, 25]\n rects2 = ax.bar(ind + width + 0.1, women_means, width,\n color='y', ec=\"w\", lw=2)\n\n # gauss = GaussianFilter(1.5, offsets=(1,1), )\n gauss = DropShadowFilter(5, offsets=(1, 1), )\n shadow = FilteredArtistList(rects1 + rects2, gauss)\n ax.add_artist(shadow)\n shadow.set_zorder(rects1[0].get_zorder() - 0.1)\n\n ax.set_ylim(0, 40)\n\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n\ndef light_filter_pie(ax):\n fracs = [15, 30, 45, 10]\n explode = (0, 0.05, 0, 0)\n pies = ax.pie(fracs, explode=explode)\n ax.patch.set_visible(True)\n\n light_filter = LightFilter(9)\n for p in pies[0]:\n p.set_agg_filter(light_filter)\n p.set_rasterized(True) # to support mixed-mode renderers\n p.set(ec=\"none\",\n lw=2)\n\n gauss = DropShadowFilter(9, offsets=(3, 4), alpha=0.7)\n shadow = FilteredArtistList(pies[0], gauss)\n ax.add_artist(shadow)\n shadow.set_zorder(pies[0][0].get_zorder() - 0.1)\n\n\nif __name__ == \"__main__\":\n\n plt.figure(figsize=(6, 6))\n plt.subplots_adjust(left=0.05, right=0.95)\n\n ax = plt.subplot(221)\n filtered_text(ax)\n\n ax = plt.subplot(222)\n drop_shadow_line(ax)\n\n ax = plt.subplot(223)\n drop_shadow_patches(ax)\n\n ax = plt.subplot(224)\n ax.set_aspect(1)\n light_filter_pie(ax)\n ax.set_frame_on(True)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eb7a91fca25f764694a7ac917afad95e/close_event.py b/_downloads/eb7a91fca25f764694a7ac917afad95e/close_event.py deleted file mode 120000 index 4cc59b08915..00000000000 --- a/_downloads/eb7a91fca25f764694a7ac917afad95e/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb7a91fca25f764694a7ac917afad95e/close_event.py \ No newline at end of file diff --git a/_downloads/eb8684b824b287a37b72656cd86ce502/canvasagg.py b/_downloads/eb8684b824b287a37b72656cd86ce502/canvasagg.py deleted file mode 100644 index d3082bc48f2..00000000000 --- a/_downloads/eb8684b824b287a37b72656cd86ce502/canvasagg.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -============== -CanvasAgg demo -============== - -This example shows how to use the agg backend directly to create images, which -may be of use to web application developers who want full control over their -code without using the pyplot interface to manage figures, figure closing etc. - -.. note:: - - It is not necessary to avoid using the pyplot interface in order to - create figures without a graphical front-end - simply setting - the backend to "Agg" would be sufficient. - -In this example, we show how to save the contents of the agg canvas to a file, -and how to extract them to a string, which can in turn be passed off to PIL or -put in a numpy array. The latter functionality allows e.g. to use Matplotlib -inside a cgi-script *without* needing to write a figure to disk. -""" - -from matplotlib.backends.backend_agg import FigureCanvasAgg -from matplotlib.figure import Figure -import numpy as np - -fig = Figure(figsize=(5, 4), dpi=100) -# A canvas must be manually attached to the figure (pyplot would automatically -# do it). This is done by instantiating the canvas with the figure as -# argument. -canvas = FigureCanvasAgg(fig) - -# Do some plotting. -ax = fig.add_subplot(111) -ax.plot([1, 2, 3]) - -# Option 1: Save the figure to a file; can also be a file-like object (BytesIO, -# etc.). -fig.savefig("test.png") - -# Option 2: Save the figure to a string. -canvas.draw() -s, (width, height) = canvas.print_to_buffer() - -# Option 2a: Convert to a NumPy array. -X = np.frombuffer(s, np.uint8).reshape((height, width, 4)) - -# Option 2b: Pass off to PIL. -from PIL import Image -im = Image.frombytes("RGBA", (width, height), s) - -# Uncomment this line to display the image using ImageMagick's `display` tool. -# im.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.backends.backend_agg.FigureCanvasAgg -matplotlib.figure.Figure -matplotlib.figure.Figure.add_subplot -matplotlib.figure.Figure.savefig -matplotlib.axes.Axes.plot diff --git a/_downloads/eb891bc35d02ac9c47e22c413d4a44c1/scatter3d.ipynb b/_downloads/eb891bc35d02ac9c47e22c413d4a44c1/scatter3d.ipynb deleted file mode 120000 index 980b318f519..00000000000 --- a/_downloads/eb891bc35d02ac9c47e22c413d4a44c1/scatter3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb891bc35d02ac9c47e22c413d4a44c1/scatter3d.ipynb \ No newline at end of file diff --git a/_downloads/eb89ff1d508f38419ceffd561af32d0b/font_indexing.py b/_downloads/eb89ff1d508f38419ceffd561af32d0b/font_indexing.py deleted file mode 120000 index de9cbd2c64b..00000000000 --- a/_downloads/eb89ff1d508f38419ceffd561af32d0b/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/eb89ff1d508f38419ceffd561af32d0b/font_indexing.py \ No newline at end of file diff --git a/_downloads/eb8a5b3f06e2e2fb80de0739d2d380ac/pyplot_formatstr.py b/_downloads/eb8a5b3f06e2e2fb80de0739d2d380ac/pyplot_formatstr.py deleted file mode 120000 index 19db3e9a939..00000000000 --- a/_downloads/eb8a5b3f06e2e2fb80de0739d2d380ac/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/eb8a5b3f06e2e2fb80de0739d2d380ac/pyplot_formatstr.py \ No newline at end of file diff --git a/_downloads/eb93f078074f9d7e6417e99a57639f76/step_demo.ipynb b/_downloads/eb93f078074f9d7e6417e99a57639f76/step_demo.ipynb deleted file mode 100644 index 1bf3d1c5c54..00000000000 --- a/_downloads/eb93f078074f9d7e6417e99a57639f76/step_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Step Demo\n\n\nThis example demonstrates the use of `.pyplot.step` for piece-wise constant\ncurves. In particular, it illustrates the effect of the parameter *where*\non the step position.\n\nThe circular markers created with `.pyplot.plot` show the actual data\npositions so that it's easier to see the effect of *where*.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nx = np.arange(14)\ny = np.sin(x / 2)\n\nplt.step(x, y + 2, label='pre (default)')\nplt.plot(x, y + 2, 'C0o', alpha=0.5)\n\nplt.step(x, y + 1, where='mid', label='mid')\nplt.plot(x, y + 1, 'C1o', alpha=0.5)\n\nplt.step(x, y, where='post', label='post')\nplt.plot(x, y, 'C2o', alpha=0.5)\n\nplt.legend(title='Parameter where:')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.step\nmatplotlib.pyplot.step" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/eb9d3ef76358db1547b3a33312e2ded9/rectangle_selector.py b/_downloads/eb9d3ef76358db1547b3a33312e2ded9/rectangle_selector.py deleted file mode 120000 index 3e775ec41ea..00000000000 --- a/_downloads/eb9d3ef76358db1547b3a33312e2ded9/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eb9d3ef76358db1547b3a33312e2ded9/rectangle_selector.py \ No newline at end of file diff --git a/_downloads/eba4386c1d3fd2a1c31877430ecc5329/watermark_image.ipynb b/_downloads/eba4386c1d3fd2a1c31877430ecc5329/watermark_image.ipynb deleted file mode 120000 index 64f742714ee..00000000000 --- a/_downloads/eba4386c1d3fd2a1c31877430ecc5329/watermark_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eba4386c1d3fd2a1c31877430ecc5329/watermark_image.ipynb \ No newline at end of file diff --git a/_downloads/eba750328e036037d32fabe860f61012/contourf3d_2.py b/_downloads/eba750328e036037d32fabe860f61012/contourf3d_2.py deleted file mode 120000 index e7dd54d8818..00000000000 --- a/_downloads/eba750328e036037d32fabe860f61012/contourf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/eba750328e036037d32fabe860f61012/contourf3d_2.py \ No newline at end of file diff --git a/_downloads/ebb5927d62c1a72f81901a98063e4926/agg_buffer.py b/_downloads/ebb5927d62c1a72f81901a98063e4926/agg_buffer.py deleted file mode 120000 index 6c7087c24e9..00000000000 --- a/_downloads/ebb5927d62c1a72f81901a98063e4926/agg_buffer.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ebb5927d62c1a72f81901a98063e4926/agg_buffer.py \ No newline at end of file diff --git a/_downloads/ebb6a354c667c2e79e156a7fa40b5044/line_demo_dash_control.ipynb b/_downloads/ebb6a354c667c2e79e156a7fa40b5044/line_demo_dash_control.ipynb deleted file mode 120000 index 546790fc165..00000000000 --- a/_downloads/ebb6a354c667c2e79e156a7fa40b5044/line_demo_dash_control.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ebb6a354c667c2e79e156a7fa40b5044/line_demo_dash_control.ipynb \ No newline at end of file diff --git a/_downloads/ebb7d9c5a68687804863a0aa97d5f552/dynamic_image.ipynb b/_downloads/ebb7d9c5a68687804863a0aa97d5f552/dynamic_image.ipynb deleted file mode 120000 index 3fcfdb36aad..00000000000 --- a/_downloads/ebb7d9c5a68687804863a0aa97d5f552/dynamic_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ebb7d9c5a68687804863a0aa97d5f552/dynamic_image.ipynb \ No newline at end of file diff --git a/_downloads/ebb94275525c1e36044f1cd189611738/timeline.py b/_downloads/ebb94275525c1e36044f1cd189611738/timeline.py deleted file mode 120000 index 22c9cb7b019..00000000000 --- a/_downloads/ebb94275525c1e36044f1cd189611738/timeline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ebb94275525c1e36044f1cd189611738/timeline.py \ No newline at end of file diff --git a/_downloads/ebbba32b5a611205f5ed830517792d49/basic_units.py b/_downloads/ebbba32b5a611205f5ed830517792d49/basic_units.py deleted file mode 120000 index 90b25df6166..00000000000 --- a/_downloads/ebbba32b5a611205f5ed830517792d49/basic_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ebbba32b5a611205f5ed830517792d49/basic_units.py \ No newline at end of file diff --git a/_downloads/ebbbd5068845ff987af08ec5c47964d7/arrow_guide.py b/_downloads/ebbbd5068845ff987af08ec5c47964d7/arrow_guide.py deleted file mode 120000 index 3aa10ce0cc1..00000000000 --- a/_downloads/ebbbd5068845ff987af08ec5c47964d7/arrow_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ebbbd5068845ff987af08ec5c47964d7/arrow_guide.py \ No newline at end of file diff --git a/_downloads/ebbfc7aec32c72faf6fb560f53fab144/demo_agg_filter.ipynb b/_downloads/ebbfc7aec32c72faf6fb560f53fab144/demo_agg_filter.ipynb deleted file mode 120000 index fc29f49c95d..00000000000 --- a/_downloads/ebbfc7aec32c72faf6fb560f53fab144/demo_agg_filter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ebbfc7aec32c72faf6fb560f53fab144/demo_agg_filter.ipynb \ No newline at end of file diff --git a/_downloads/ebcda73904648e67bf161ac9bd53551b/contour_demo.ipynb b/_downloads/ebcda73904648e67bf161ac9bd53551b/contour_demo.ipynb deleted file mode 120000 index 80d5492501b..00000000000 --- a/_downloads/ebcda73904648e67bf161ac9bd53551b/contour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ebcda73904648e67bf161ac9bd53551b/contour_demo.ipynb \ No newline at end of file diff --git a/_downloads/ebe45beb4079ec3e8b950e02e9783f80/mpl_with_glade3_sgskip.ipynb b/_downloads/ebe45beb4079ec3e8b950e02e9783f80/mpl_with_glade3_sgskip.ipynb deleted file mode 100644 index 6e08e726656..00000000000 --- a/_downloads/ebe45beb4079ec3e8b950e02e9783f80/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Matplotlib With Glade 3\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\n\nimport gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\nfrom matplotlib.figure import Figure\nfrom matplotlib.backends.backend_gtk3agg import (\n FigureCanvasGTK3Agg as FigureCanvas)\nimport numpy as np\n\n\nclass Window1Signals(object):\n def on_window1_destroy(self, widget):\n Gtk.main_quit()\n\n\ndef main():\n builder = Gtk.Builder()\n builder.add_objects_from_file(os.path.join(os.path.dirname(__file__),\n \"mpl_with_glade3.glade\"),\n (\"window1\", \"\"))\n builder.connect_signals(Window1Signals())\n window = builder.get_object(\"window1\")\n sw = builder.get_object(\"scrolledwindow1\")\n\n # Start of Matplotlib specific code\n figure = Figure(figsize=(8, 6), dpi=71)\n axis = figure.add_subplot(111)\n t = np.arange(0.0, 3.0, 0.01)\n s = np.sin(2*np.pi*t)\n axis.plot(t, s)\n\n axis.set_xlabel('time [s]')\n axis.set_ylabel('voltage [V]')\n\n canvas = FigureCanvas(figure) # a Gtk.DrawingArea\n canvas.set_size_request(800, 600)\n sw.add_with_viewport(canvas)\n # End of Matplotlib specific code\n\n window.show_all()\n Gtk.main()\n\nif __name__ == \"__main__\":\n main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ebe686565d37c82ce4be61ed77e181e8/svg_histogram_sgskip.ipynb b/_downloads/ebe686565d37c82ce4be61ed77e181e8/svg_histogram_sgskip.ipynb deleted file mode 120000 index f58a25aa75f..00000000000 --- a/_downloads/ebe686565d37c82ce4be61ed77e181e8/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ebe686565d37c82ce4be61ed77e181e8/svg_histogram_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ebed78ea33c0a9f39a8e84b2003fb0bd/axes_demo.ipynb b/_downloads/ebed78ea33c0a9f39a8e84b2003fb0bd/axes_demo.ipynb deleted file mode 120000 index 93c2e680597..00000000000 --- a/_downloads/ebed78ea33c0a9f39a8e84b2003fb0bd/axes_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ebed78ea33c0a9f39a8e84b2003fb0bd/axes_demo.ipynb \ No newline at end of file diff --git a/_downloads/ebed7c5d5886cc046e53352592744e4a/eventplot_demo.py b/_downloads/ebed7c5d5886cc046e53352592744e4a/eventplot_demo.py deleted file mode 120000 index 7cc38e0a8c3..00000000000 --- a/_downloads/ebed7c5d5886cc046e53352592744e4a/eventplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ebed7c5d5886cc046e53352592744e4a/eventplot_demo.py \ No newline at end of file diff --git a/_downloads/ebef03f3c94faf9e6460978f70aa4abe/print_stdout_sgskip.ipynb b/_downloads/ebef03f3c94faf9e6460978f70aa4abe/print_stdout_sgskip.ipynb deleted file mode 120000 index 49e6232a99b..00000000000 --- a/_downloads/ebef03f3c94faf9e6460978f70aa4abe/print_stdout_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ebef03f3c94faf9e6460978f70aa4abe/print_stdout_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ec0da85130b1a852ae5b9a98ea981033/simple_legend02.py b/_downloads/ec0da85130b1a852ae5b9a98ea981033/simple_legend02.py deleted file mode 120000 index b6cf1fa8716..00000000000 --- a/_downloads/ec0da85130b1a852ae5b9a98ea981033/simple_legend02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ec0da85130b1a852ae5b9a98ea981033/simple_legend02.py \ No newline at end of file diff --git a/_downloads/ec12e3fa09ee8c63e760c25f40162eb4/dashpointlabel.py b/_downloads/ec12e3fa09ee8c63e760c25f40162eb4/dashpointlabel.py deleted file mode 120000 index dd3b36bd17c..00000000000 --- a/_downloads/ec12e3fa09ee8c63e760c25f40162eb4/dashpointlabel.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ec12e3fa09ee8c63e760c25f40162eb4/dashpointlabel.py \ No newline at end of file diff --git a/_downloads/ec1582d342b6ac0a9ad4e0630ba036c2/log_demo.py b/_downloads/ec1582d342b6ac0a9ad4e0630ba036c2/log_demo.py deleted file mode 120000 index b85683385b2..00000000000 --- a/_downloads/ec1582d342b6ac0a9ad4e0630ba036c2/log_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ec1582d342b6ac0a9ad4e0630ba036c2/log_demo.py \ No newline at end of file diff --git a/_downloads/ec177c0ffe33a3b8c03401dda4e0cf8c/sankey_rankine.ipynb b/_downloads/ec177c0ffe33a3b8c03401dda4e0cf8c/sankey_rankine.ipynb deleted file mode 120000 index 49ee84977c9..00000000000 --- a/_downloads/ec177c0ffe33a3b8c03401dda4e0cf8c/sankey_rankine.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ec177c0ffe33a3b8c03401dda4e0cf8c/sankey_rankine.ipynb \ No newline at end of file diff --git a/_downloads/ec1998263db97d15fbd242fceb4771ee/demo_ticklabel_direction.py b/_downloads/ec1998263db97d15fbd242fceb4771ee/demo_ticklabel_direction.py deleted file mode 100644 index 1c777c1ec1f..00000000000 --- a/_downloads/ec1998263db97d15fbd242fceb4771ee/demo_ticklabel_direction.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -======================== -Demo Ticklabel Direction -======================== - -""" - -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.axislines as axislines - - -def setup_axes(fig, rect): - ax = axislines.Subplot(fig, rect) - fig.add_subplot(ax) - - ax.set_yticks([0.2, 0.8]) - ax.set_xticks([0.2, 0.8]) - - return ax - - -fig = plt.figure(figsize=(6, 3)) -fig.subplots_adjust(bottom=0.2) - -ax = setup_axes(fig, 131) -for axis in ax.axis.values(): - axis.major_ticks.set_tick_out(True) -# or you can simply do "ax.axis[:].major_ticks.set_tick_out(True)" - -ax = setup_axes(fig, 132) -ax.axis["left"].set_axis_direction("right") -ax.axis["bottom"].set_axis_direction("top") -ax.axis["right"].set_axis_direction("left") -ax.axis["top"].set_axis_direction("bottom") - -ax = setup_axes(fig, 133) -ax.axis["left"].set_axis_direction("right") -ax.axis[:].major_ticks.set_tick_out(True) - -ax.axis["left"].label.set_text("Long Label Left") -ax.axis["bottom"].label.set_text("Label Bottom") -ax.axis["right"].label.set_text("Long Label Right") -ax.axis["right"].label.set_visible(True) -ax.axis["left"].label.set_pad(0) -ax.axis["bottom"].label.set_pad(10) - -plt.show() diff --git a/_downloads/ec1d1b1845bdaf6c051fd89b1349ccae/color_cycle_default.ipynb b/_downloads/ec1d1b1845bdaf6c051fd89b1349ccae/color_cycle_default.ipynb deleted file mode 120000 index e1688484383..00000000000 --- a/_downloads/ec1d1b1845bdaf6c051fd89b1349ccae/color_cycle_default.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ec1d1b1845bdaf6c051fd89b1349ccae/color_cycle_default.ipynb \ No newline at end of file diff --git a/_downloads/ec2716e1888eee027c7e9752b6db8fff/plot_solarizedlight2.py b/_downloads/ec2716e1888eee027c7e9752b6db8fff/plot_solarizedlight2.py deleted file mode 120000 index bbfe78aa59e..00000000000 --- a/_downloads/ec2716e1888eee027c7e9752b6db8fff/plot_solarizedlight2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ec2716e1888eee027c7e9752b6db8fff/plot_solarizedlight2.py \ No newline at end of file diff --git a/_downloads/ec2d9e16a65f952eaa53bf914d989c99/pick_event_demo2.py b/_downloads/ec2d9e16a65f952eaa53bf914d989c99/pick_event_demo2.py deleted file mode 120000 index 4d59ffeb423..00000000000 --- a/_downloads/ec2d9e16a65f952eaa53bf914d989c99/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ec2d9e16a65f952eaa53bf914d989c99/pick_event_demo2.py \ No newline at end of file diff --git a/_downloads/ec31ac20688222c1ffcb638a1717da20/scatter3d.py b/_downloads/ec31ac20688222c1ffcb638a1717da20/scatter3d.py deleted file mode 120000 index 826099494bb..00000000000 --- a/_downloads/ec31ac20688222c1ffcb638a1717da20/scatter3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ec31ac20688222c1ffcb638a1717da20/scatter3d.py \ No newline at end of file diff --git a/_downloads/ec36ac6197abdb173b2ac7dff0fadbbd/whats_new_99_mplot3d.py b/_downloads/ec36ac6197abdb173b2ac7dff0fadbbd/whats_new_99_mplot3d.py deleted file mode 120000 index 769b5c1c08b..00000000000 --- a/_downloads/ec36ac6197abdb173b2ac7dff0fadbbd/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/ec36ac6197abdb173b2ac7dff0fadbbd/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/_downloads/ec409011878223c79874fcb0e09fbbce/collections.py b/_downloads/ec409011878223c79874fcb0e09fbbce/collections.py deleted file mode 120000 index bd217da33ee..00000000000 --- a/_downloads/ec409011878223c79874fcb0e09fbbce/collections.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ec409011878223c79874fcb0e09fbbce/collections.py \ No newline at end of file diff --git a/_downloads/ec5d332e3975b3a32baa72d02b3d7f12/tex_demo.py b/_downloads/ec5d332e3975b3a32baa72d02b3d7f12/tex_demo.py deleted file mode 120000 index 73b3ab20da4..00000000000 --- a/_downloads/ec5d332e3975b3a32baa72d02b3d7f12/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ec5d332e3975b3a32baa72d02b3d7f12/tex_demo.py \ No newline at end of file diff --git a/_downloads/ec6049a12b2a15decfaf4512876bb8ae/text_fontdict.ipynb b/_downloads/ec6049a12b2a15decfaf4512876bb8ae/text_fontdict.ipynb deleted file mode 120000 index 73d1d4f372c..00000000000 --- a/_downloads/ec6049a12b2a15decfaf4512876bb8ae/text_fontdict.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ec6049a12b2a15decfaf4512876bb8ae/text_fontdict.ipynb \ No newline at end of file diff --git a/_downloads/ec6bd2783b2027ddd99572f0bd0f983e/integral.ipynb b/_downloads/ec6bd2783b2027ddd99572f0bd0f983e/integral.ipynb deleted file mode 120000 index e3403239b84..00000000000 --- a/_downloads/ec6bd2783b2027ddd99572f0bd0f983e/integral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ec6bd2783b2027ddd99572f0bd0f983e/integral.ipynb \ No newline at end of file diff --git a/_downloads/ec84c25525f3d8695772209124166ef6/pathpatch3d.py b/_downloads/ec84c25525f3d8695772209124166ef6/pathpatch3d.py deleted file mode 100644 index 962e54d8dce..00000000000 --- a/_downloads/ec84c25525f3d8695772209124166ef6/pathpatch3d.py +++ /dev/null @@ -1,72 +0,0 @@ -""" -============================ -Draw flat objects in 3D plot -============================ - -Demonstrate using pathpatch_2d_to_3d to 'draw' shapes and text on a 3D plot. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Circle, PathPatch -from matplotlib.text import TextPath -from matplotlib.transforms import Affine2D -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import -import mpl_toolkits.mplot3d.art3d as art3d - - -def text3d(ax, xyz, s, zdir="z", size=None, angle=0, usetex=False, **kwargs): - ''' - Plots the string 's' on the axes 'ax', with position 'xyz', size 'size', - and rotation angle 'angle'. 'zdir' gives the axis which is to be treated - as the third dimension. usetex is a boolean indicating whether the string - should be interpreted as latex or not. Any additional keyword arguments - are passed on to transform_path. - - Note: zdir affects the interpretation of xyz. - ''' - x, y, z = xyz - if zdir == "y": - xy1, z1 = (x, z), y - elif zdir == "x": - xy1, z1 = (y, z), x - else: - xy1, z1 = (x, y), z - - text_path = TextPath((0, 0), s, size=size, usetex=usetex) - trans = Affine2D().rotate(angle).translate(xy1[0], xy1[1]) - - p1 = PathPatch(trans.transform_path(text_path), **kwargs) - ax.add_patch(p1) - art3d.pathpatch_2d_to_3d(p1, z=z1, zdir=zdir) - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Draw a circle on the x=0 'wall' -p = Circle((5, 5), 3) -ax.add_patch(p) -art3d.pathpatch_2d_to_3d(p, z=0, zdir="x") - -# Manually label the axes -text3d(ax, (4, -2, 0), "X-axis", zdir="z", size=.5, usetex=False, - ec="none", fc="k") -text3d(ax, (12, 4, 0), "Y-axis", zdir="z", size=.5, usetex=False, - angle=np.pi / 2, ec="none", fc="k") -text3d(ax, (12, 10, 4), "Z-axis", zdir="y", size=.5, usetex=False, - angle=np.pi / 2, ec="none", fc="k") - -# Write a Latex formula on the z=0 'floor' -text3d(ax, (1, 5, 0), - r"$\displaystyle G_{\mu\nu} + \Lambda g_{\mu\nu} = " - r"\frac{8\pi G}{c^4} T_{\mu\nu} $", - zdir="z", size=1, usetex=True, - ec="none", fc="k") - -ax.set_xlim(0, 10) -ax.set_ylim(0, 10) -ax.set_zlim(0, 10) - -plt.show() diff --git a/_downloads/ec867919f673ca79f8db02a32628a17e/timeline.ipynb b/_downloads/ec867919f673ca79f8db02a32628a17e/timeline.ipynb deleted file mode 120000 index 9b61ab270f8..00000000000 --- a/_downloads/ec867919f673ca79f8db02a32628a17e/timeline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ec867919f673ca79f8db02a32628a17e/timeline.ipynb \ No newline at end of file diff --git a/_downloads/ec8b6bc77c73f8ca0127e304662a537f/arrow_demo.ipynb b/_downloads/ec8b6bc77c73f8ca0127e304662a537f/arrow_demo.ipynb deleted file mode 120000 index b88e1361a04..00000000000 --- a/_downloads/ec8b6bc77c73f8ca0127e304662a537f/arrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ec8b6bc77c73f8ca0127e304662a537f/arrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/ec8d45ccc5387a8e56bc5e286ae92234/images.ipynb b/_downloads/ec8d45ccc5387a8e56bc5e286ae92234/images.ipynb deleted file mode 100644 index e2e2b592d7e..00000000000 --- a/_downloads/ec8d45ccc5387a8e56bc5e286ae92234/images.ipynb +++ /dev/null @@ -1,277 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image tutorial\n\n\nA short tutorial on plotting images with Matplotlib.\n\n\nStartup commands\n===================\n\nFirst, let's start IPython. It is a most excellent enhancement to the\nstandard Python prompt, and it ties in especially well with\nMatplotlib. Start IPython either at a shell, or the IPython Notebook now.\n\nWith IPython started, we now need to connect to a GUI event loop. This\ntells IPython where (and how) to display plots. To connect to a GUI\nloop, execute the **%matplotlib** magic at your IPython prompt. There's more\ndetail on exactly what this does at `IPython's documentation on GUI\nevent loops\n`_.\n\nIf you're using IPython Notebook, the same commands are available, but\npeople commonly use a specific argument to the %matplotlib magic:\n\n.. sourcecode:: ipython\n\n In [1]: %matplotlib inline\n\nThis turns on inline plotting, where plot graphics will appear in your\nnotebook. This has important implications for interactivity. For inline plotting, commands in\ncells below the cell that outputs a plot will not affect the plot. For example,\nchanging the color map is not possible from cells below the cell that creates a plot.\nHowever, for other backends, such as Qt5, that open a separate window,\ncells below those that create the plot will change the plot - it is a\nlive object in memory.\n\nThis tutorial will use matplotlib's imperative-style plotting\ninterface, pyplot. This interface maintains global state, and is very\nuseful for quickly and easily experimenting with various plot\nsettings. The alternative is the object-oriented interface, which is also\nvery powerful, and generally more suitable for large application\ndevelopment. If you'd like to learn about the object-oriented\ninterface, a great place to start is our :doc:`Usage guide\n`. For now, let's get on\nwith the imperative-style approach:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.image as mpimg" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nImporting image data into Numpy arrays\n===============================================\n\nLoading image data is supported by the `Pillow\n`_ library. Natively, Matplotlib\nonly supports PNG images. The commands shown below fall back on Pillow if\nthe native read fails.\n\nThe image used in this example is a PNG file, but keep that Pillow\nrequirement in mind for your own data.\n\nHere's the image we're going to play with:\n\n![](../../_static/stinkbug.png)\n\n\nIt's a 24-bit RGB PNG image (8 bits for each of R, G, B). Depending\non where you get your data, the other kinds of image that you'll most\nlikely encounter are RGBA images, which allow for transparency, or\nsingle-channel grayscale (luminosity) images. You can right click on\nit and choose \"Save image as\" to download it to your computer for the\nrest of this tutorial.\n\nAnd here we go...\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "img = mpimg.imread('../../doc/_static/stinkbug.png')\nprint(img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note the dtype there - float32. Matplotlib has rescaled the 8 bit\ndata from each channel to floating point data between 0.0 and 1.0. As\na side note, the only datatype that Pillow can work with is uint8.\nMatplotlib plotting can handle float32 and uint8, but image\nreading/writing for any format other than PNG is limited to uint8\ndata. Why 8 bits? Most displays can only render 8 bits per channel\nworth of color gradation. Why can they only render 8 bits/channel?\nBecause that's about all the human eye can see. More here (from a\nphotography standpoint): `Luminous Landscape bit depth tutorial\n`_.\n\nEach inner list represents a pixel. Here, with an RGB image, there\nare 3 values. Since it's a black and white image, R, G, and B are all\nsimilar. An RGBA (where A is alpha, or transparency), has 4 values\nper inner list, and a simple luminance image just has one value (and\nis thus only a 2-D array, not a 3-D array). For RGB and RGBA images,\nmatplotlib supports float32 and uint8 data types. For grayscale,\nmatplotlib supports only float32. If your array data does not meet\none of these descriptions, you need to rescale it.\n\n\nPlotting numpy arrays as images\n===================================\n\nSo, you have your data in a numpy array (either by importing it, or by\ngenerating it). Let's render it. In Matplotlib, this is performed\nusing the :func:`~matplotlib.pyplot.imshow` function. Here we'll grab\nthe plot object. This object gives you an easy way to manipulate the\nplot from the prompt.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also plot any numpy array.\n\n\nApplying pseudocolor schemes to image plots\n-------------------------------------------------\n\nPseudocolor can be a useful tool for enhancing contrast and\nvisualizing your data more easily. This is especially useful when\nmaking presentations of your data using projectors - their contrast is\ntypically quite poor.\n\nPseudocolor is only relevant to single-channel, grayscale, luminosity\nimages. We currently have an RGB image. Since R, G, and B are all\nsimilar (see for yourself above or in your data), we can just pick one\nchannel of our data:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "lum_img = img[:, :, 0]\n\n# This is array slicing. You can read more in the `Numpy tutorial\n# `_.\n\nplt.imshow(lum_img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now, with a luminosity (2D, no color) image, the default colormap (aka lookup table,\nLUT), is applied. The default is called viridis. There are plenty of\nothers to choose from.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.imshow(lum_img, cmap=\"hot\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that you can also change colormaps on existing plot objects using the\n:meth:`~matplotlib.image.Image.set_cmap` method:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(lum_img)\nimgplot.set_cmap('nipy_spectral')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "

Note

However, remember that in the IPython notebook with the inline backend,\n you can't make changes to plots that have already been rendered. If you\n create imgplot here in one cell, you cannot call set_cmap() on it in a later\n cell and expect the earlier plot to change. Make sure that you enter these\n commands together in one cell. plt commands will not change plots from earlier\n cells.

\n\nThere are many other colormap schemes available. See the `list and\nimages of the colormaps\n<../colors/colormaps.html>`_.\n\n\nColor scale reference\n------------------------\n\nIt's helpful to have an idea of what value a color represents. We can\ndo that by adding color bars.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(lum_img)\nplt.colorbar()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This adds a colorbar to your existing figure. This won't\nautomatically change if you change you switch to a different\ncolormap - you have to re-create your plot, and add in the colorbar\nagain.\n\n\nExamining a specific data range\n---------------------------------\n\nSometimes you want to enhance the contrast in your image, or expand\nthe contrast in a particular region while sacrificing the detail in\ncolors that don't vary much, or don't matter. A good tool to find\ninteresting regions is the histogram. To create a histogram of our\nimage data, we use the :func:`~matplotlib.pyplot.hist` function.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.hist(lum_img.ravel(), bins=256, range=(0.0, 1.0), fc='k', ec='k')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Most often, the \"interesting\" part of the image is around the peak,\nand you can get extra contrast by clipping the regions above and/or\nbelow the peak. In our histogram, it looks like there's not much\nuseful information in the high end (not many white things in the\nimage). Let's adjust the upper limit, so that we effectively \"zoom in\non\" part of the histogram. We do this by passing the clim argument to\nimshow. You could also do this by calling the\n:meth:`~matplotlib.image.Image.set_clim` method of the image plot\nobject, but make sure that you do so in the same cell as your plot\ncommand when working with the IPython Notebook - it will not change\nplots from earlier cells.\n\nYou can specify the clim in the call to ``plot``.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(lum_img, clim=(0.0, 0.7))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also specify the clim using the returned object\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure()\na = fig.add_subplot(1, 2, 1)\nimgplot = plt.imshow(lum_img)\na.set_title('Before')\nplt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal')\na = fig.add_subplot(1, 2, 2)\nimgplot = plt.imshow(lum_img)\nimgplot.set_clim(0.0, 0.7)\na.set_title('After')\nplt.colorbar(ticks=[0.1, 0.3, 0.5, 0.7], orientation='horizontal')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\nArray Interpolation schemes\n---------------------------\n\nInterpolation calculates what the color or value of a pixel \"should\"\nbe, according to different mathematical schemes. One common place\nthat this happens is when you resize an image. The number of pixels\nchange, but you want the same information. Since pixels are discrete,\nthere's missing space. Interpolation is how you fill that space.\nThis is why your images sometimes come out looking pixelated when you\nblow them up. The effect is more pronounced when the difference\nbetween the original image and the expanded image is greater. Let's\ntake our image and shrink it. We're effectively discarding pixels,\nonly keeping a select few. Now when we plot it, that data gets blown\nup to the size on your screen. The old pixels aren't there anymore,\nand the computer has to draw in pixels to fill that space.\n\nWe'll use the Pillow library that we used to load the image also to resize\nthe image.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from PIL import Image\n\nimg = Image.open('../../doc/_static/stinkbug.png')\nimg.thumbnail((64, 64), Image.ANTIALIAS) # resizes image in-place\nimgplot = plt.imshow(img)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we have the default interpolation, bilinear, since we did not\ngive :func:`~matplotlib.pyplot.imshow` any interpolation argument.\n\nLet's try some others. Here's \"nearest\", which does no interpolation.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(img, interpolation=\"nearest\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "and bicubic:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "imgplot = plt.imshow(img, interpolation=\"bicubic\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Bicubic interpolation is often used when blowing up photos - people\ntend to prefer blurry over pixelated.\n\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ec8ec478b6db9b9f1f54e117ec1d1e67/pyplot_text.ipynb b/_downloads/ec8ec478b6db9b9f1f54e117ec1d1e67/pyplot_text.ipynb deleted file mode 120000 index 2dbb5edc757..00000000000 --- a/_downloads/ec8ec478b6db9b9f1f54e117ec1d1e67/pyplot_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ec8ec478b6db9b9f1f54e117ec1d1e67/pyplot_text.ipynb \ No newline at end of file diff --git a/_downloads/ec90dd07bc241d860eb972db796c96bc/path_tutorial.py b/_downloads/ec90dd07bc241d860eb972db796c96bc/path_tutorial.py deleted file mode 100644 index e0444c5e1ca..00000000000 --- a/_downloads/ec90dd07bc241d860eb972db796c96bc/path_tutorial.py +++ /dev/null @@ -1,220 +0,0 @@ -""" -============= -Path Tutorial -============= - -Defining paths in your Matplotlib visualization. - -The object underlying all of the :mod:`matplotlib.patch` objects is -the :class:`~matplotlib.path.Path`, which supports the standard set of -moveto, lineto, curveto commands to draw simple and compound outlines -consisting of line segments and splines. The ``Path`` is instantiated -with a (N,2) array of (x,y) vertices, and a N-length array of path -codes. For example to draw the unit rectangle from (0,0) to (1,1), we -could use this code -""" - -import matplotlib.pyplot as plt -from matplotlib.path import Path -import matplotlib.patches as patches - -verts = [ - (0., 0.), # left, bottom - (0., 1.), # left, top - (1., 1.), # right, top - (1., 0.), # right, bottom - (0., 0.), # ignored -] - -codes = [ - Path.MOVETO, - Path.LINETO, - Path.LINETO, - Path.LINETO, - Path.CLOSEPOLY, -] - -path = Path(verts, codes) - -fig, ax = plt.subplots() -patch = patches.PathPatch(path, facecolor='orange', lw=2) -ax.add_patch(patch) -ax.set_xlim(-2, 2) -ax.set_ylim(-2, 2) -plt.show() - - -############################################################################### -# The following path codes are recognized -# -# ============== ================================= ==================================================================================================================== -# Code Vertices Description -# ============== ================================= ==================================================================================================================== -# ``STOP`` 1 (ignored) A marker for the end of the entire path (currently not required and ignored) -# ``MOVETO`` 1 Pick up the pen and move to the given vertex. -# ``LINETO`` 1 Draw a line from the current position to the given vertex. -# ``CURVE3`` 2 (1 control point, 1 endpoint) Draw a quadratic Bézier curve from the current position, with the given control point, to the given end point. -# ``CURVE4`` 3 (2 control points, 1 endpoint) Draw a cubic Bézier curve from the current position, with the given control points, to the given end point. -# ``CLOSEPOLY`` 1 (point itself is ignored) Draw a line segment to the start point of the current polyline. -# ============== ================================= ==================================================================================================================== -# -# -# .. path-curves: -# -# -# Bézier example -# ============== -# -# Some of the path components require multiple vertices to specify them: -# for example CURVE 3 is a `bézier -# `_ curve with one -# control point and one end point, and CURVE4 has three vertices for the -# two control points and the end point. The example below shows a -# CURVE4 Bézier spline -- the bézier curve will be contained in the -# convex hull of the start point, the two control points, and the end -# point - -verts = [ - (0., 0.), # P0 - (0.2, 1.), # P1 - (1., 0.8), # P2 - (0.8, 0.), # P3 -] - -codes = [ - Path.MOVETO, - Path.CURVE4, - Path.CURVE4, - Path.CURVE4, -] - -path = Path(verts, codes) - -fig, ax = plt.subplots() -patch = patches.PathPatch(path, facecolor='none', lw=2) -ax.add_patch(patch) - -xs, ys = zip(*verts) -ax.plot(xs, ys, 'x--', lw=2, color='black', ms=10) - -ax.text(-0.05, -0.05, 'P0') -ax.text(0.15, 1.05, 'P1') -ax.text(1.05, 0.85, 'P2') -ax.text(0.85, -0.05, 'P3') - -ax.set_xlim(-0.1, 1.1) -ax.set_ylim(-0.1, 1.1) -plt.show() - -############################################################################### -# .. compound_paths: -# -# Compound paths -# ============== -# -# All of the simple patch primitives in matplotlib, Rectangle, Circle, -# Polygon, etc, are implemented with simple path. Plotting functions -# like :meth:`~matplotlib.axes.Axes.hist` and -# :meth:`~matplotlib.axes.Axes.bar`, which create a number of -# primitives, e.g., a bunch of Rectangles, can usually be implemented more -# efficiently using a compound path. The reason ``bar`` creates a list -# of rectangles and not a compound path is largely historical: the -# :class:`~matplotlib.path.Path` code is comparatively new and ``bar`` -# predates it. While we could change it now, it would break old code, -# so here we will cover how to create compound paths, replacing the -# functionality in bar, in case you need to do so in your own code for -# efficiency reasons, e.g., you are creating an animated bar plot. -# -# We will make the histogram chart by creating a series of rectangles -# for each histogram bar: the rectangle width is the bin width and the -# rectangle height is the number of datapoints in that bin. First we'll -# create some random normally distributed data and compute the -# histogram. Because numpy returns the bin edges and not centers, the -# length of ``bins`` is 1 greater than the length of ``n`` in the -# example below:: -# -# # histogram our data with numpy -# data = np.random.randn(1000) -# n, bins = np.histogram(data, 100) -# -# We'll now extract the corners of the rectangles. Each of the -# ``left``, ``bottom``, etc, arrays below is ``len(n)``, where ``n`` is -# the array of counts for each histogram bar:: -# -# # get the corners of the rectangles for the histogram -# left = np.array(bins[:-1]) -# right = np.array(bins[1:]) -# bottom = np.zeros(len(left)) -# top = bottom + n -# -# Now we have to construct our compound path, which will consist of a -# series of ``MOVETO``, ``LINETO`` and ``CLOSEPOLY`` for each rectangle. -# For each rectangle, we need 5 vertices: 1 for the ``MOVETO``, 3 for -# the ``LINETO``, and 1 for the ``CLOSEPOLY``. As indicated in the -# table above, the vertex for the closepoly is ignored but we still need -# it to keep the codes aligned with the vertices:: -# -# nverts = nrects*(1+3+1) -# verts = np.zeros((nverts, 2)) -# codes = np.ones(nverts, int) * path.Path.LINETO -# codes[0::5] = path.Path.MOVETO -# codes[4::5] = path.Path.CLOSEPOLY -# verts[0::5,0] = left -# verts[0::5,1] = bottom -# verts[1::5,0] = left -# verts[1::5,1] = top -# verts[2::5,0] = right -# verts[2::5,1] = top -# verts[3::5,0] = right -# verts[3::5,1] = bottom -# -# All that remains is to create the path, attach it to a -# :class:`~matplotlib.patch.PathPatch`, and add it to our axes:: -# -# barpath = path.Path(verts, codes) -# patch = patches.PathPatch(barpath, facecolor='green', -# edgecolor='yellow', alpha=0.5) -# ax.add_patch(patch) - -import numpy as np -import matplotlib.patches as patches -import matplotlib.path as path - -fig, ax = plt.subplots() -# Fixing random state for reproducibility -np.random.seed(19680801) - -# histogram our data with numpy -data = np.random.randn(1000) -n, bins = np.histogram(data, 100) - -# get the corners of the rectangles for the histogram -left = np.array(bins[:-1]) -right = np.array(bins[1:]) -bottom = np.zeros(len(left)) -top = bottom + n -nrects = len(left) - -nverts = nrects*(1+3+1) -verts = np.zeros((nverts, 2)) -codes = np.ones(nverts, int) * path.Path.LINETO -codes[0::5] = path.Path.MOVETO -codes[4::5] = path.Path.CLOSEPOLY -verts[0::5, 0] = left -verts[0::5, 1] = bottom -verts[1::5, 0] = left -verts[1::5, 1] = top -verts[2::5, 0] = right -verts[2::5, 1] = top -verts[3::5, 0] = right -verts[3::5, 1] = bottom - -barpath = path.Path(verts, codes) -patch = patches.PathPatch(barpath, facecolor='green', - edgecolor='yellow', alpha=0.5) -ax.add_patch(patch) - -ax.set_xlim(left[0], right[-1]) -ax.set_ylim(bottom.min(), top.max()) - -plt.show() diff --git a/_downloads/ec9255bba75290a0c5df4d25219c3a60/align_ylabels.py b/_downloads/ec9255bba75290a0c5df4d25219c3a60/align_ylabels.py deleted file mode 120000 index 2629dda3934..00000000000 --- a/_downloads/ec9255bba75290a0c5df4d25219c3a60/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ec9255bba75290a0c5df4d25219c3a60/align_ylabels.py \ No newline at end of file diff --git a/_downloads/ec9373c2ddb27f908f3127e7805f9df0/lorenz_attractor.ipynb b/_downloads/ec9373c2ddb27f908f3127e7805f9df0/lorenz_attractor.ipynb deleted file mode 120000 index 552ae8dbc07..00000000000 --- a/_downloads/ec9373c2ddb27f908f3127e7805f9df0/lorenz_attractor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ec9373c2ddb27f908f3127e7805f9df0/lorenz_attractor.ipynb \ No newline at end of file diff --git a/_downloads/ec996a9459f51649901550b26ce32dd5/multiprocess_sgskip.py b/_downloads/ec996a9459f51649901550b26ce32dd5/multiprocess_sgskip.py deleted file mode 120000 index 99fa34d2111..00000000000 --- a/_downloads/ec996a9459f51649901550b26ce32dd5/multiprocess_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ec996a9459f51649901550b26ce32dd5/multiprocess_sgskip.py \ No newline at end of file diff --git a/_downloads/ec99cd15d729c2430d7546e536032a3b/simple_legend02.ipynb b/_downloads/ec99cd15d729c2430d7546e536032a3b/simple_legend02.ipynb deleted file mode 100644 index 4d79579e207..00000000000 --- a/_downloads/ec99cd15d729c2430d7546e536032a3b/simple_legend02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Legend02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\n\nline1, = ax.plot([1, 2, 3], label=\"Line 1\", linestyle='--')\nline2, = ax.plot([3, 2, 1], label=\"Line 2\", linewidth=4)\n\n# Create a legend for the first line.\nfirst_legend = ax.legend(handles=[line1], loc='upper right')\n\n# Add the legend manually to the current Axes.\nax.add_artist(first_legend)\n\n# Create another legend for the second line.\nax.legend(handles=[line2], loc='lower right')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ec9c389a2955d856a53dfde0f0dd766e/colormap_normalizations_symlognorm.ipynb b/_downloads/ec9c389a2955d856a53dfde0f0dd766e/colormap_normalizations_symlognorm.ipynb deleted file mode 100644 index 5fab67cd6a5..00000000000 --- a/_downloads/ec9c389a2955d856a53dfde0f0dd766e/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Symlognorm\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\n\"\"\"\nSymLogNorm: two humps, one negative and one positive, The positive\nwith 5-times the amplitude. Linearly, you cannot see detail in the\nnegative hump. Here we logarithmically scale the positive and\nnegative data separately.\n\nNote that colorbar labels do not come out looking very good.\n\"\"\"\n\nN = 100\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=colors.SymLogNorm(linthresh=0.03, linscale=0.03,\n vmin=-1.0, vmax=1.0),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ec9eb1ce0ee8bcdfe27b498882260916/tight_layout_guide.ipynb b/_downloads/ec9eb1ce0ee8bcdfe27b498882260916/tight_layout_guide.ipynb deleted file mode 120000 index 0b64638c56b..00000000000 --- a/_downloads/ec9eb1ce0ee8bcdfe27b498882260916/tight_layout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ec9eb1ce0ee8bcdfe27b498882260916/tight_layout_guide.ipynb \ No newline at end of file diff --git a/_downloads/eca4f95d49a191e4f512333fbfe59980/bbox_intersect.py b/_downloads/eca4f95d49a191e4f512333fbfe59980/bbox_intersect.py deleted file mode 120000 index a746de10730..00000000000 --- a/_downloads/eca4f95d49a191e4f512333fbfe59980/bbox_intersect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eca4f95d49a191e4f512333fbfe59980/bbox_intersect.py \ No newline at end of file diff --git a/_downloads/ecbc55a0dd75d808f5f8e0e0927c785b/simple_axesgrid.py b/_downloads/ecbc55a0dd75d808f5f8e0e0927c785b/simple_axesgrid.py deleted file mode 120000 index afbc73ad8a9..00000000000 --- a/_downloads/ecbc55a0dd75d808f5f8e0e0927c785b/simple_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ecbc55a0dd75d808f5f8e0e0927c785b/simple_axesgrid.py \ No newline at end of file diff --git a/_downloads/ecc0080c90941b4c22039f283ca4d838/lasso_demo.py b/_downloads/ecc0080c90941b4c22039f283ca4d838/lasso_demo.py deleted file mode 120000 index 73c8ca4517a..00000000000 --- a/_downloads/ecc0080c90941b4c22039f283ca4d838/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ecc0080c90941b4c22039f283ca4d838/lasso_demo.py \ No newline at end of file diff --git a/_downloads/ecc98c27fa17abf456118f54a282bff7/histogram_features.py b/_downloads/ecc98c27fa17abf456118f54a282bff7/histogram_features.py deleted file mode 120000 index d8517baf1f9..00000000000 --- a/_downloads/ecc98c27fa17abf456118f54a282bff7/histogram_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ecc98c27fa17abf456118f54a282bff7/histogram_features.py \ No newline at end of file diff --git a/_downloads/ecd09342b3f3f5e42646502f2cff2b0c/demo_edge_colorbar.ipynb b/_downloads/ecd09342b3f3f5e42646502f2cff2b0c/demo_edge_colorbar.ipynb deleted file mode 100644 index 185c2666bdf..00000000000 --- a/_downloads/ecd09342b3f3f5e42646502f2cff2b0c/demo_edge_colorbar.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Edge Colorbar\n\n\nThis example shows how to use one common colorbar for each row or column\nof an image grid.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import AxesGrid\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef demo_bottom_cbar(fig):\n \"\"\"\n A grid of 2x2 images with a colorbar for each column.\n \"\"\"\n grid = AxesGrid(fig, 121, # similar to subplot(121)\n nrows_ncols=(2, 2),\n axes_pad=0.10,\n share_all=True,\n label_mode=\"1\",\n cbar_location=\"bottom\",\n cbar_mode=\"edge\",\n cbar_pad=0.25,\n cbar_size=\"15%\",\n direction=\"column\"\n )\n\n Z, extent = get_demo_image()\n cmaps = [plt.get_cmap(\"autumn\"), plt.get_cmap(\"summer\")]\n for i in range(4):\n im = grid[i].imshow(Z, extent=extent, interpolation=\"nearest\",\n cmap=cmaps[i//2])\n if i % 2:\n cbar = grid.cbar_axes[i//2].colorbar(im)\n\n for cax in grid.cbar_axes:\n cax.toggle_label(True)\n cax.axis[cax.orientation].set_label(\"Bar\")\n\n # This affects all axes as share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\ndef demo_right_cbar(fig):\n \"\"\"\n A grid of 2x2 images. Each row has its own colorbar.\n \"\"\"\n grid = AxesGrid(fig, 122, # similar to subplot(122)\n nrows_ncols=(2, 2),\n axes_pad=0.10,\n label_mode=\"1\",\n share_all=True,\n cbar_location=\"right\",\n cbar_mode=\"edge\",\n cbar_size=\"7%\",\n cbar_pad=\"2%\",\n )\n Z, extent = get_demo_image()\n cmaps = [plt.get_cmap(\"spring\"), plt.get_cmap(\"winter\")]\n for i in range(4):\n im = grid[i].imshow(Z, extent=extent, interpolation=\"nearest\",\n cmap=cmaps[i//2])\n if i % 2:\n grid.cbar_axes[i//2].colorbar(im)\n\n for cax in grid.cbar_axes:\n cax.toggle_label(True)\n cax.axis[cax.orientation].set_label('Foo')\n\n # This affects all axes because we set share_all = True.\n grid.axes_llc.set_xticks([-2, 0, 2])\n grid.axes_llc.set_yticks([-2, 0, 2])\n\n\nfig = plt.figure(figsize=(5.5, 2.5))\nfig.subplots_adjust(left=0.05, right=0.93)\n\ndemo_bottom_cbar(fig)\ndemo_right_cbar(fig)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ecd3e1b703b115035d79f99db5be3a63/unchained.py b/_downloads/ecd3e1b703b115035d79f99db5be3a63/unchained.py deleted file mode 100644 index fbcce8337ee..00000000000 --- a/_downloads/ecd3e1b703b115035d79f99db5be3a63/unchained.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -======================== -MATPLOTLIB **UNCHAINED** -======================== - -Comparative path demonstration of frequency from a fake signal of a pulsar -(mostly known because of the cover for Joy Division's Unknown Pleasures). - -Author: Nicolas P. Rougier -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# Create new Figure with black background -fig = plt.figure(figsize=(8, 8), facecolor='black') - -# Add a subplot with no frame -ax = plt.subplot(111, frameon=False) - -# Generate random data -data = np.random.uniform(0, 1, (64, 75)) -X = np.linspace(-1, 1, data.shape[-1]) -G = 1.5 * np.exp(-4 * X ** 2) - -# Generate line plots -lines = [] -for i in range(len(data)): - # Small reduction of the X extents to get a cheap perspective effect - xscale = 1 - i / 200. - # Same for linewidth (thicker strokes on bottom) - lw = 1.5 - i / 100.0 - line, = ax.plot(xscale * X, i + G * data[i], color="w", lw=lw) - lines.append(line) - -# Set y limit (or first line is cropped because of thickness) -ax.set_ylim(-1, 70) - -# No ticks -ax.set_xticks([]) -ax.set_yticks([]) - -# 2 part titles to get different font weights -ax.text(0.5, 1.0, "MATPLOTLIB ", transform=ax.transAxes, - ha="right", va="bottom", color="w", - family="sans-serif", fontweight="light", fontsize=16) -ax.text(0.5, 1.0, "UNCHAINED", transform=ax.transAxes, - ha="left", va="bottom", color="w", - family="sans-serif", fontweight="bold", fontsize=16) - - -def update(*args): - # Shift all data to the right - data[:, 1:] = data[:, :-1] - - # Fill-in new values - data[:, 0] = np.random.uniform(0, 1, len(data)) - - # Update data - for i in range(len(data)): - lines[i].set_ydata(i + G * data[i]) - - # Return modified artists - return lines - -# Construct the animation, using the update function as the animation director. -anim = animation.FuncAnimation(fig, update, interval=10) -plt.show() diff --git a/_downloads/ecd5b73145c630c14d7c48fb3ea0e7d5/annotate_simple02.py b/_downloads/ecd5b73145c630c14d7c48fb3ea0e7d5/annotate_simple02.py deleted file mode 120000 index cfa67e1bed8..00000000000 --- a/_downloads/ecd5b73145c630c14d7c48fb3ea0e7d5/annotate_simple02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ecd5b73145c630c14d7c48fb3ea0e7d5/annotate_simple02.py \ No newline at end of file diff --git a/_downloads/ece1e926158be4200b271e1e6e5bd837/linestyles.py b/_downloads/ece1e926158be4200b271e1e6e5bd837/linestyles.py deleted file mode 120000 index 14bec967d49..00000000000 --- a/_downloads/ece1e926158be4200b271e1e6e5bd837/linestyles.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ece1e926158be4200b271e1e6e5bd837/linestyles.py \ No newline at end of file diff --git a/_downloads/ece846832efc4b98ced5131b3f7adcbd/dashpointlabel.ipynb b/_downloads/ece846832efc4b98ced5131b3f7adcbd/dashpointlabel.ipynb deleted file mode 120000 index 6cc2fb30424..00000000000 --- a/_downloads/ece846832efc4b98ced5131b3f7adcbd/dashpointlabel.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ece846832efc4b98ced5131b3f7adcbd/dashpointlabel.ipynb \ No newline at end of file diff --git a/_downloads/eceaf4545b944fe5ab14312e9d93c864/looking_glass.ipynb b/_downloads/eceaf4545b944fe5ab14312e9d93c864/looking_glass.ipynb deleted file mode 120000 index 1ec7b7a55b9..00000000000 --- a/_downloads/eceaf4545b944fe5ab14312e9d93c864/looking_glass.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/eceaf4545b944fe5ab14312e9d93c864/looking_glass.ipynb \ No newline at end of file diff --git a/_downloads/ecec051602d17cec48beee5c593260bc/figlegend_demo.ipynb b/_downloads/ecec051602d17cec48beee5c593260bc/figlegend_demo.ipynb deleted file mode 120000 index beadba9bf56..00000000000 --- a/_downloads/ecec051602d17cec48beee5c593260bc/figlegend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ecec051602d17cec48beee5c593260bc/figlegend_demo.ipynb \ No newline at end of file diff --git a/_downloads/ecfd8729a2fa20454e18aeb3673adc2e/hyperlinks_sgskip.py b/_downloads/ecfd8729a2fa20454e18aeb3673adc2e/hyperlinks_sgskip.py deleted file mode 120000 index 4ce8300d966..00000000000 --- a/_downloads/ecfd8729a2fa20454e18aeb3673adc2e/hyperlinks_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ecfd8729a2fa20454e18aeb3673adc2e/hyperlinks_sgskip.py \ No newline at end of file diff --git a/_downloads/ed02c715984dd38c76e1bef3983b1f65/custom_boxstyle02.ipynb b/_downloads/ed02c715984dd38c76e1bef3983b1f65/custom_boxstyle02.ipynb deleted file mode 100644 index cdf15d9aa8a..00000000000 --- a/_downloads/ed02c715984dd38c76e1bef3983b1f65/custom_boxstyle02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Boxstyle02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.path import Path\nfrom matplotlib.patches import BoxStyle\nimport matplotlib.pyplot as plt\n\n\n# we may derive from matplotlib.patches.BoxStyle._Base class.\n# You need to override transmute method in this case.\nclass MyStyle(BoxStyle._Base):\n \"\"\"\n A simple box.\n \"\"\"\n\n def __init__(self, pad=0.3):\n \"\"\"\n The arguments need to be floating numbers and need to have\n default values.\n\n *pad*\n amount of padding\n \"\"\"\n\n self.pad = pad\n super().__init__()\n\n def transmute(self, x0, y0, width, height, mutation_size):\n \"\"\"\n Given the location and size of the box, return the path of\n the box around it.\n\n - *x0*, *y0*, *width*, *height* : location and size of the box\n - *mutation_size* : a reference scale for the mutation.\n\n Often, the *mutation_size* is the font size of the text.\n You don't need to worry about the rotation as it is\n automatically taken care of.\n \"\"\"\n\n # padding\n pad = mutation_size * self.pad\n\n # width and height with padding added.\n width, height = width + 2.*pad, \\\n height + 2.*pad,\n\n # boundary of the padded box\n x0, y0 = x0-pad, y0-pad,\n x1, y1 = x0+width, y0 + height\n\n cp = [(x0, y0),\n (x1, y0), (x1, y1), (x0, y1),\n (x0-pad, (y0+y1)/2.), (x0, y0),\n (x0, y0)]\n\n com = [Path.MOVETO,\n Path.LINETO, Path.LINETO, Path.LINETO,\n Path.LINETO, Path.LINETO,\n Path.CLOSEPOLY]\n\n path = Path(cp, com)\n\n return path\n\n\n# register the custom style\nBoxStyle._style_list[\"angled\"] = MyStyle\n\nfig, ax = plt.subplots(figsize=(3, 3))\nax.text(0.5, 0.5, \"Test\", size=30, va=\"center\", ha=\"center\", rotation=30,\n bbox=dict(boxstyle=\"angled,pad=0.5\", alpha=0.2))\n\ndel BoxStyle._style_list[\"angled\"]\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ed062c4c07b8309593731fb1fea0a71a/annotation_demo.py b/_downloads/ed062c4c07b8309593731fb1fea0a71a/annotation_demo.py deleted file mode 100644 index 92958dde25f..00000000000 --- a/_downloads/ed062c4c07b8309593731fb1fea0a71a/annotation_demo.py +++ /dev/null @@ -1,395 +0,0 @@ -""" -================ -Annotating Plots -================ - -The following examples show how it is possible to annotate plots in matplotlib. -This includes highlighting specific points of interest and using various -visual tools to call attention to this point. For a more complete and in-depth -description of the annotation and text tools in :mod:`matplotlib`, see the -:doc:`tutorial on annotation `. -""" - -import matplotlib.pyplot as plt -from matplotlib.patches import Ellipse -import numpy as np -from matplotlib.text import OffsetFrom - - -############################################################################### -# Specifying text points and annotation points -# -------------------------------------------- -# -# You must specify an annotation point `xy=(x,y)` to annotate this point. -# additionally, you may specify a text point `xytext=(x,y)` for the -# location of the text for this annotation. Optionally, you can -# specify the coordinate system of `xy` and `xytext` with one of the -# following strings for `xycoords` and `textcoords` (default is 'data'):: -# -# 'figure points' : points from the lower left corner of the figure -# 'figure pixels' : pixels from the lower left corner of the figure -# 'figure fraction' : 0,0 is lower left of figure and 1,1 is upper, right -# 'axes points' : points from lower left corner of axes -# 'axes pixels' : pixels from lower left corner of axes -# 'axes fraction' : 0,0 is lower left of axes and 1,1 is upper right -# 'offset points' : Specify an offset (in points) from the xy value -# 'offset pixels' : Specify an offset (in pixels) from the xy value -# 'data' : use the axes data coordinate system -# -# Note: for physical coordinate systems (points or pixels) the origin is the -# (bottom, left) of the figure or axes. -# -# Optionally, you can specify arrow properties which draws and arrow -# from the text to the annotated point by giving a dictionary of arrow -# properties -# -# Valid keys are:: -# -# width : the width of the arrow in points -# frac : the fraction of the arrow length occupied by the head -# headwidth : the width of the base of the arrow head in points -# shrink : move the tip and base some percent away from the -# annotated point and text -# any key for matplotlib.patches.polygon (e.g., facecolor) - -# Create our figure and data we'll use for plotting -fig, ax = plt.subplots(figsize=(3, 3)) - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) - -# Plot a line and add some simple annotations -line, = ax.plot(t, s) -ax.annotate('figure pixels', - xy=(10, 10), xycoords='figure pixels') -ax.annotate('figure points', - xy=(80, 80), xycoords='figure points') -ax.annotate('figure fraction', - xy=(.025, .975), xycoords='figure fraction', - horizontalalignment='left', verticalalignment='top', - fontsize=20) - -# The following examples show off how these arrows are drawn. - -ax.annotate('point offset from data', - xy=(2, 1), xycoords='data', - xytext=(-15, 25), textcoords='offset points', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='bottom') - -ax.annotate('axes fraction', - xy=(3, 1), xycoords='data', - xytext=(0.8, 0.95), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top') - -# You may also use negative points or pixels to specify from (right, top). -# E.g., (-10, 10) is 10 points to the left of the right side of the axes and 10 -# points above the bottom - -ax.annotate('pixel offset from axes fraction', - xy=(1, 0), xycoords='axes fraction', - xytext=(-20, 20), textcoords='offset pixels', - horizontalalignment='right', - verticalalignment='bottom') - -ax.set(xlim=(-1, 5), ylim=(-3, 5)) - - -############################################################################### -# Using multiple coordinate systems and axis types -# ------------------------------------------------ -# -# You can specify the xypoint and the xytext in different positions and -# coordinate systems, and optionally turn on a connecting line and mark -# the point with a marker. Annotations work on polar axes too. -# -# In the example below, the xy point is in native coordinates (xycoords -# defaults to 'data'). For a polar axes, this is in (theta, radius) space. -# The text in the example is placed in the fractional figure coordinate system. -# Text keyword args like horizontal and vertical alignment are respected. - -fig, ax = plt.subplots(subplot_kw=dict(projection='polar'), figsize=(3, 3)) -r = np.arange(0, 1, 0.001) -theta = 2*2*np.pi*r -line, = ax.plot(theta, r) - -ind = 800 -thisr, thistheta = r[ind], theta[ind] -ax.plot([thistheta], [thisr], 'o') -ax.annotate('a polar annotation', - xy=(thistheta, thisr), # theta, radius - xytext=(0.05, 0.05), # fraction, fraction - textcoords='figure fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='left', - verticalalignment='bottom') - -# You can also use polar notation on a cartesian axes. Here the native -# coordinate system ('data') is cartesian, so you need to specify the -# xycoords and textcoords as 'polar' if you want to use (theta, radius). - -el = Ellipse((0, 0), 10, 20, facecolor='r', alpha=0.5) - -fig, ax = plt.subplots(subplot_kw=dict(aspect='equal')) -ax.add_artist(el) -el.set_clip_box(ax.bbox) -ax.annotate('the top', - xy=(np.pi/2., 10.), # theta, radius - xytext=(np.pi/3, 20.), # theta, radius - xycoords='polar', - textcoords='polar', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='left', - verticalalignment='bottom', - clip_on=True) # clip to the axes bounding box - -ax.set(xlim=[-20, 20], ylim=[-20, 20]) - - -############################################################################### -# Customizing arrow and bubble styles -# ----------------------------------- -# -# The arrow between xytext and the annotation point, as well as the bubble -# that covers the annotation text, are highly customizable. Below are a few -# parameter options as well as their resulting output. - -fig, ax = plt.subplots(figsize=(8, 5)) - -t = np.arange(0.0, 5.0, 0.01) -s = np.cos(2*np.pi*t) -line, = ax.plot(t, s, lw=3) - -ax.annotate('straight', - xy=(0, 1), xycoords='data', - xytext=(-50, 30), textcoords='offset points', - arrowprops=dict(arrowstyle="->")) - -ax.annotate('arc3,\nrad 0.2', - xy=(0.5, -1), xycoords='data', - xytext=(-80, -60), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc3,rad=.2")) - -ax.annotate('arc,\nangle 50', - xy=(1., 1), xycoords='data', - xytext=(-90, 50), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc,angleA=0,armA=50,rad=10")) - -ax.annotate('arc,\narms', - xy=(1.5, -1), xycoords='data', - xytext=(-80, -60), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="arc,angleA=0,armA=40,angleB=-90,armB=30,rad=7")) - -ax.annotate('angle,\nangle 90', - xy=(2., 1), xycoords='data', - xytext=(-70, 30), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=10")) - -ax.annotate('angle3,\nangle -90', - xy=(2.5, -1), xycoords='data', - xytext=(-80, -60), textcoords='offset points', - arrowprops=dict(arrowstyle="->", - connectionstyle="angle3,angleA=0,angleB=-90")) - -ax.annotate('angle,\nround', - xy=(3., 1), xycoords='data', - xytext=(-60, 30), textcoords='offset points', - bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=90,rad=10")) - -ax.annotate('angle,\nround4', - xy=(3.5, -1), xycoords='data', - xytext=(-70, -80), textcoords='offset points', - size=20, - bbox=dict(boxstyle="round4,pad=.5", fc="0.8"), - arrowprops=dict(arrowstyle="->", - connectionstyle="angle,angleA=0,angleB=-90,rad=10")) - -ax.annotate('angle,\nshrink', - xy=(4., 1), xycoords='data', - xytext=(-60, 30), textcoords='offset points', - bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="->", - shrinkA=0, shrinkB=10, - connectionstyle="angle,angleA=0,angleB=90,rad=10")) - -# You can pass an empty string to get only annotation arrows rendered -ann = ax.annotate('', xy=(4., 1.), xycoords='data', - xytext=(4.5, -1), textcoords='data', - arrowprops=dict(arrowstyle="<->", - connectionstyle="bar", - ec="k", - shrinkA=5, shrinkB=5)) - -ax.set(xlim=(-1, 5), ylim=(-4, 3)) - -# We'll create another figure so that it doesn't get too cluttered -fig, ax = plt.subplots() - -el = Ellipse((2, -1), 0.5, 0.5) -ax.add_patch(el) - -ax.annotate('$->$', - xy=(2., -1), xycoords='data', - xytext=(-150, -140), textcoords='offset points', - bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="->", - patchB=el, - connectionstyle="angle,angleA=90,angleB=0,rad=10")) - -ax.annotate('arrow\nfancy', - xy=(2., -1), xycoords='data', - xytext=(-100, 60), textcoords='offset points', - size=20, - # bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="fancy", - fc="0.6", ec="none", - patchB=el, - connectionstyle="angle3,angleA=0,angleB=-90")) - -ax.annotate('arrow\nsimple', - xy=(2., -1), xycoords='data', - xytext=(100, 60), textcoords='offset points', - size=20, - # bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="simple", - fc="0.6", ec="none", - patchB=el, - connectionstyle="arc3,rad=0.3")) - -ax.annotate('wedge', - xy=(2., -1), xycoords='data', - xytext=(-100, -100), textcoords='offset points', - size=20, - # bbox=dict(boxstyle="round", fc="0.8"), - arrowprops=dict(arrowstyle="wedge,tail_width=0.7", - fc="0.6", ec="none", - patchB=el, - connectionstyle="arc3,rad=-0.3")) - -ann = ax.annotate('bubble,\ncontours', - xy=(2., -1), xycoords='data', - xytext=(0, -70), textcoords='offset points', - size=20, - bbox=dict(boxstyle="round", - fc=(1.0, 0.7, 0.7), - ec=(1., .5, .5)), - arrowprops=dict(arrowstyle="wedge,tail_width=1.", - fc=(1.0, 0.7, 0.7), ec=(1., .5, .5), - patchA=None, - patchB=el, - relpos=(0.2, 0.8), - connectionstyle="arc3,rad=-0.1")) - -ann = ax.annotate('bubble', - xy=(2., -1), xycoords='data', - xytext=(55, 0), textcoords='offset points', - size=20, va="center", - bbox=dict(boxstyle="round", fc=(1.0, 0.7, 0.7), ec="none"), - arrowprops=dict(arrowstyle="wedge,tail_width=1.", - fc=(1.0, 0.7, 0.7), ec="none", - patchA=None, - patchB=el, - relpos=(0.2, 0.5))) - -ax.set(xlim=(-1, 5), ylim=(-5, 3)) - -############################################################################### -# More examples of coordinate systems -# ----------------------------------- -# -# Below we'll show a few more examples of coordinate systems and how the -# location of annotations may be specified. - -fig, (ax1, ax2) = plt.subplots(1, 2) - -bbox_args = dict(boxstyle="round", fc="0.8") -arrow_args = dict(arrowstyle="->") - -# Here we'll demonstrate the extents of the coordinate system and how -# we place annotating text. - -ax1.annotate('figure fraction : 0, 0', xy=(0, 0), xycoords='figure fraction', - xytext=(20, 20), textcoords='offset points', - ha="left", va="bottom", - bbox=bbox_args, - arrowprops=arrow_args) - -ax1.annotate('figure fraction : 1, 1', xy=(1, 1), xycoords='figure fraction', - xytext=(-20, -20), textcoords='offset points', - ha="right", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -ax1.annotate('axes fraction : 0, 0', xy=(0, 0), xycoords='axes fraction', - xytext=(20, 20), textcoords='offset points', - ha="left", va="bottom", - bbox=bbox_args, - arrowprops=arrow_args) - -ax1.annotate('axes fraction : 1, 1', xy=(1, 1), xycoords='axes fraction', - xytext=(-20, -20), textcoords='offset points', - ha="right", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -# It is also possible to generate draggable annotations - -an1 = ax1.annotate('Drag me 1', xy=(.5, .7), xycoords='data', - #xytext=(.5, .7), textcoords='data', - ha="center", va="center", - bbox=bbox_args, - #arrowprops=arrow_args - ) - -an2 = ax1.annotate('Drag me 2', xy=(.5, .5), xycoords=an1, - xytext=(.5, .3), textcoords='axes fraction', - ha="center", va="center", - bbox=bbox_args, - arrowprops=dict(patchB=an1.get_bbox_patch(), - connectionstyle="arc3,rad=0.2", - **arrow_args)) -an1.draggable() -an2.draggable() - -an3 = ax1.annotate('', xy=(.5, .5), xycoords=an2, - xytext=(.5, .5), textcoords=an1, - ha="center", va="center", - bbox=bbox_args, - arrowprops=dict(patchA=an1.get_bbox_patch(), - patchB=an2.get_bbox_patch(), - connectionstyle="arc3,rad=0.2", - **arrow_args)) - -# Finally we'll show off some more complex annotation and placement - -text = ax2.annotate('xy=(0, 1)\nxycoords=("data", "axes fraction")', - xy=(0, 1), xycoords=("data", 'axes fraction'), - xytext=(0, -20), textcoords='offset points', - ha="center", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -ax2.annotate('xy=(0.5, 0)\nxycoords=artist', - xy=(0.5, 0.), xycoords=text, - xytext=(0, -20), textcoords='offset points', - ha="center", va="top", - bbox=bbox_args, - arrowprops=arrow_args) - -ax2.annotate('xy=(0.8, 0.5)\nxycoords=ax1.transData', - xy=(0.8, 0.5), xycoords=ax1.transData, - xytext=(10, 10), - textcoords=OffsetFrom(ax2.bbox, (0, 0), "points"), - ha="left", va="bottom", - bbox=bbox_args, - arrowprops=arrow_args) - -ax2.set(xlim=[-2, 2], ylim=[-2, 2]) -plt.show() diff --git a/_downloads/ed151e95ff5c88d8dbbc58e140913655/load_converter.py b/_downloads/ed151e95ff5c88d8dbbc58e140913655/load_converter.py deleted file mode 120000 index 0be25334277..00000000000 --- a/_downloads/ed151e95ff5c88d8dbbc58e140913655/load_converter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.5.0/_downloads/ed151e95ff5c88d8dbbc58e140913655/load_converter.py \ No newline at end of file diff --git a/_downloads/ed352c10634e2cd8a7c1153d7d1d90dc/capstyle.py b/_downloads/ed352c10634e2cd8a7c1153d7d1d90dc/capstyle.py deleted file mode 120000 index f67a0b610d8..00000000000 --- a/_downloads/ed352c10634e2cd8a7c1153d7d1d90dc/capstyle.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ed352c10634e2cd8a7c1153d7d1d90dc/capstyle.py \ No newline at end of file diff --git a/_downloads/ed385151ce59576bd48755565146eb42/colormap_normalizations_bounds.ipynb b/_downloads/ed385151ce59576bd48755565146eb42/colormap_normalizations_bounds.ipynb deleted file mode 120000 index f6f1974f4f9..00000000000 --- a/_downloads/ed385151ce59576bd48755565146eb42/colormap_normalizations_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ed385151ce59576bd48755565146eb42/colormap_normalizations_bounds.ipynb \ No newline at end of file diff --git a/_downloads/ed45604b028a7a53c064e0025f53655e/ticklabels_rotation.py b/_downloads/ed45604b028a7a53c064e0025f53655e/ticklabels_rotation.py deleted file mode 120000 index 4f7112ff76c..00000000000 --- a/_downloads/ed45604b028a7a53c064e0025f53655e/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ed45604b028a7a53c064e0025f53655e/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/ed45aae4bca9bde30d23375f22ce8ec6/zoom_window.ipynb b/_downloads/ed45aae4bca9bde30d23375f22ce8ec6/zoom_window.ipynb deleted file mode 120000 index 45056120524..00000000000 --- a/_downloads/ed45aae4bca9bde30d23375f22ce8ec6/zoom_window.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ed45aae4bca9bde30d23375f22ce8ec6/zoom_window.ipynb \ No newline at end of file diff --git a/_downloads/ed544544e6ab51c72c53c6f4e07d3253/log_demo.py b/_downloads/ed544544e6ab51c72c53c6f4e07d3253/log_demo.py deleted file mode 100644 index 19bfb858983..00000000000 --- a/_downloads/ed544544e6ab51c72c53c6f4e07d3253/log_demo.py +++ /dev/null @@ -1,46 +0,0 @@ -""" -======== -Log Demo -======== - -Examples of plots with logarithmic axes. -""" - -import numpy as np -import matplotlib.pyplot as plt - -# Data for plotting -t = np.arange(0.01, 20.0, 0.01) - -# Create figure -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) - -# log y axis -ax1.semilogy(t, np.exp(-t / 5.0)) -ax1.set(title='semilogy') -ax1.grid() - -# log x axis -ax2.semilogx(t, np.sin(2 * np.pi * t)) -ax2.set(title='semilogx') -ax2.grid() - -# log x and y axis -ax3.loglog(t, 20 * np.exp(-t / 10.0), basex=2) -ax3.set(title='loglog base 2 on x') -ax3.grid() - -# With errorbars: clip non-positive values -# Use new data for plotting -x = 10.0**np.linspace(0.0, 2.0, 20) -y = x**2.0 - -ax4.set_xscale("log", nonposx='clip') -ax4.set_yscale("log", nonposy='clip') -ax4.set(title='Errorbars go negative') -ax4.errorbar(x, y, xerr=0.1 * x, yerr=5.0 + 0.75 * y) -# ylim must be set after errorbar to allow errorbar to autoscale limits -ax4.set_ylim(bottom=0.1) - -fig.tight_layout() -plt.show() diff --git a/_downloads/ed589aa390f08e2f384e0cc035a90436/svg_histogram_sgskip.ipynb b/_downloads/ed589aa390f08e2f384e0cc035a90436/svg_histogram_sgskip.ipynb deleted file mode 100644 index 2fb35512988..00000000000 --- a/_downloads/ed589aa390f08e2f384e0cc035a90436/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# SVG Histogram\n\n\nDemonstrate how to create an interactive histogram, in which bars\nare hidden or shown by clicking on legend markers.\n\nThe interactivity is encoded in ecmascript (javascript) and inserted in\nthe SVG code in a post-processing step. To render the image, open it in\na web browser. SVG is supported in most web browsers used by Linux and\nOSX users. Windows IE9 supports SVG, but earlier versions do not.\n\nNotes\n-----\nThe matplotlib backend lets us assign ids to each object. This is the\nmechanism used here to relate matplotlib objects created in python and\nthe corresponding SVG constructs that are parsed in the second step.\nWhile flexible, ids are cumbersome to use for large collection of\nobjects. Two mechanisms could be used to simplify things:\n\n* systematic grouping of objects into SVG tags,\n* assigning classes to each SVG object according to its origin.\n\nFor example, instead of modifying the properties of each individual bar,\nthe bars from the `hist` function could either be grouped in\na PatchCollection, or be assigned a class=\"hist_##\" attribute.\n\nCSS could also be used more extensively to replace repetitive markup\nthroughout the generated SVG.\n\nAuthor: david.huard@gmail.com\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport xml.etree.ElementTree as ET\nfrom io import BytesIO\nimport json\n\n\nplt.rcParams['svg.fonttype'] = 'none'\n\n# Apparently, this `register_namespace` method works only with\n# python 2.7 and up and is necessary to avoid garbling the XML name\n# space with ns0.\nET.register_namespace(\"\", \"http://www.w3.org/2000/svg\")\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# --- Create histogram, legend and title ---\nplt.figure()\nr = np.random.randn(100)\nr1 = r + 1\nlabels = ['Rabbits', 'Frogs']\nH = plt.hist([r, r1], label=labels)\ncontainers = H[-1]\nleg = plt.legend(frameon=False)\nplt.title(\"From a web browser, click on the legend\\n\"\n \"marker to toggle the corresponding histogram.\")\n\n\n# --- Add ids to the svg objects we'll modify\n\nhist_patches = {}\nfor ic, c in enumerate(containers):\n hist_patches['hist_%d' % ic] = []\n for il, element in enumerate(c):\n element.set_gid('hist_%d_patch_%d' % (ic, il))\n hist_patches['hist_%d' % ic].append('hist_%d_patch_%d' % (ic, il))\n\n# Set ids for the legend patches\nfor i, t in enumerate(leg.get_patches()):\n t.set_gid('leg_patch_%d' % i)\n\n# Set ids for the text patches\nfor i, t in enumerate(leg.get_texts()):\n t.set_gid('leg_text_%d' % i)\n\n# Save SVG in a fake file object.\nf = BytesIO()\nplt.savefig(f, format=\"svg\")\n\n# Create XML tree from the SVG file.\ntree, xmlid = ET.XMLID(f.getvalue())\n\n\n# --- Add interactivity ---\n\n# Add attributes to the patch objects.\nfor i, t in enumerate(leg.get_patches()):\n el = xmlid['leg_patch_%d' % i]\n el.set('cursor', 'pointer')\n el.set('onclick', \"toggle_hist(this)\")\n\n# Add attributes to the text objects.\nfor i, t in enumerate(leg.get_texts()):\n el = xmlid['leg_text_%d' % i]\n el.set('cursor', 'pointer')\n el.set('onclick', \"toggle_hist(this)\")\n\n# Create script defining the function `toggle_hist`.\n# We create a global variable `container` that stores the patches id\n# belonging to each histogram. Then a function \"toggle_element\" sets the\n# visibility attribute of all patches of each histogram and the opacity\n# of the marker itself.\n\nscript = \"\"\"\n\n\"\"\" % json.dumps(hist_patches)\n\n# Add a transition effect\ncss = tree.getchildren()[0][0]\ncss.text = css.text + \"g {-webkit-transition:opacity 0.4s ease-out;\" + \\\n \"-moz-transition:opacity 0.4s ease-out;}\"\n\n# Insert the script and save to file.\ntree.insert(0, ET.XML(script))\n\nET.ElementTree(tree).write(\"svg_histogram.svg\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ed5baa368af7675f18d820b95c4d10c6/boxplot.ipynb b/_downloads/ed5baa368af7675f18d820b95c4d10c6/boxplot.ipynb deleted file mode 120000 index 7c70444e229..00000000000 --- a/_downloads/ed5baa368af7675f18d820b95c4d10c6/boxplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ed5baa368af7675f18d820b95c4d10c6/boxplot.ipynb \ No newline at end of file diff --git a/_downloads/ed5d25a631793d53362250b089b83a7a/demo_agg_filter.ipynb b/_downloads/ed5d25a631793d53362250b089b83a7a/demo_agg_filter.ipynb deleted file mode 120000 index fddc7ed6e0c..00000000000 --- a/_downloads/ed5d25a631793d53362250b089b83a7a/demo_agg_filter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ed5d25a631793d53362250b089b83a7a/demo_agg_filter.ipynb \ No newline at end of file diff --git a/_downloads/ed5efaa53e82621125842cdaff6fd2c8/customize_rc.py b/_downloads/ed5efaa53e82621125842cdaff6fd2c8/customize_rc.py deleted file mode 120000 index 6dea0d79563..00000000000 --- a/_downloads/ed5efaa53e82621125842cdaff6fd2c8/customize_rc.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ed5efaa53e82621125842cdaff6fd2c8/customize_rc.py \ No newline at end of file diff --git a/_downloads/ed65c5f4e3ca6dc38636b94d2d035b8c/fig_axes_labels_simple.ipynb b/_downloads/ed65c5f4e3ca6dc38636b94d2d035b8c/fig_axes_labels_simple.ipynb deleted file mode 100644 index c117c910f13..00000000000 --- a/_downloads/ed65c5f4e3ca6dc38636b94d2d035b8c/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple axes labels\n\n\nLabel the axes of a plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nfig.subplots_adjust(top=0.8)\nax1 = fig.add_subplot(211)\nax1.set_ylabel('volts')\nax1.set_title('a sine wave')\n\nt = np.arange(0.0, 1.0, 0.01)\ns = np.sin(2 * np.pi * t)\nline, = ax1.plot(t, s, lw=2)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nax2 = fig.add_axes([0.15, 0.1, 0.7, 0.3])\nn, bins, patches = ax2.hist(np.random.randn(1000), 50)\nax2.set_xlabel('time (s)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.set_xlabel\nmatplotlib.axes.Axes.set_ylabel\nmatplotlib.axes.Axes.set_title\nmatplotlib.axes.Axes.plot\nmatplotlib.axes.Axes.hist\nmatplotlib.figure.Figure.add_axes" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ed8d855dd4f32206929faaacbaea70a1/broken_axis.py b/_downloads/ed8d855dd4f32206929faaacbaea70a1/broken_axis.py deleted file mode 120000 index 34cb845ffb5..00000000000 --- a/_downloads/ed8d855dd4f32206929faaacbaea70a1/broken_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ed8d855dd4f32206929faaacbaea70a1/broken_axis.py \ No newline at end of file diff --git a/_downloads/ed936b25273390c4c08ea9b52bc95351/basic_units.py b/_downloads/ed936b25273390c4c08ea9b52bc95351/basic_units.py deleted file mode 120000 index 5ba741fd280..00000000000 --- a/_downloads/ed936b25273390c4c08ea9b52bc95351/basic_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ed936b25273390c4c08ea9b52bc95351/basic_units.py \ No newline at end of file diff --git a/_downloads/ed9c5c3e81a7182d8bd47b5cff51431f/resample.ipynb b/_downloads/ed9c5c3e81a7182d8bd47b5cff51431f/resample.ipynb deleted file mode 120000 index 3382125e672..00000000000 --- a/_downloads/ed9c5c3e81a7182d8bd47b5cff51431f/resample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ed9c5c3e81a7182d8bd47b5cff51431f/resample.ipynb \ No newline at end of file diff --git a/_downloads/edaec0d074549ec0655a06353fde6c2c/demo_ribbon_box.py b/_downloads/edaec0d074549ec0655a06353fde6c2c/demo_ribbon_box.py deleted file mode 100644 index 9e350182e3d..00000000000 --- a/_downloads/edaec0d074549ec0655a06353fde6c2c/demo_ribbon_box.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -========== -Ribbon Box -========== - -""" - -import numpy as np - -from matplotlib import cbook, colors as mcolors -from matplotlib.image import AxesImage -import matplotlib.pyplot as plt -from matplotlib.transforms import Bbox, TransformedBbox, BboxTransformTo - - -class RibbonBox: - - original_image = plt.imread( - cbook.get_sample_data("Minduka_Present_Blue_Pack.png")) - cut_location = 70 - b_and_h = original_image[:, :, 2:3] - color = original_image[:, :, 2:3] - original_image[:, :, 0:1] - alpha = original_image[:, :, 3:4] - nx = original_image.shape[1] - - def __init__(self, color): - rgb = mcolors.to_rgba(color)[:3] - self.im = np.dstack( - [self.b_and_h - self.color * (1 - np.array(rgb)), self.alpha]) - - def get_stretched_image(self, stretch_factor): - stretch_factor = max(stretch_factor, 1) - ny, nx, nch = self.im.shape - ny2 = int(ny*stretch_factor) - return np.vstack( - [self.im[:self.cut_location], - np.broadcast_to( - self.im[self.cut_location], (ny2 - ny, nx, nch)), - self.im[self.cut_location:]]) - - -class RibbonBoxImage(AxesImage): - zorder = 1 - - def __init__(self, ax, bbox, color, *, extent=(0, 1, 0, 1), **kwargs): - super().__init__(ax, extent=extent, **kwargs) - self._bbox = bbox - self._ribbonbox = RibbonBox(color) - self.set_transform(BboxTransformTo(bbox)) - - def draw(self, renderer, *args, **kwargs): - stretch_factor = self._bbox.height / self._bbox.width - - ny = int(stretch_factor*self._ribbonbox.nx) - if self.get_array() is None or self.get_array().shape[0] != ny: - arr = self._ribbonbox.get_stretched_image(stretch_factor) - self.set_array(arr) - - super().draw(renderer, *args, **kwargs) - - -def main(): - fig, ax = plt.subplots() - - years = np.arange(2004, 2009) - heights = [7900, 8100, 7900, 6900, 2800] - box_colors = [ - (0.8, 0.2, 0.2), - (0.2, 0.8, 0.2), - (0.2, 0.2, 0.8), - (0.7, 0.5, 0.8), - (0.3, 0.8, 0.7), - ] - - for year, h, bc in zip(years, heights, box_colors): - bbox0 = Bbox.from_extents(year - 0.4, 0., year + 0.4, h) - bbox = TransformedBbox(bbox0, ax.transData) - ax.add_artist(RibbonBoxImage(ax, bbox, bc, interpolation="bicubic")) - ax.annotate(str(h), (year, h), va="bottom", ha="center") - - ax.set_xlim(years[0] - 0.5, years[-1] + 0.5) - ax.set_ylim(0, 10000) - - background_gradient = np.zeros((2, 2, 4)) - background_gradient[:, :, :3] = [1, 1, 0] - background_gradient[:, :, 3] = [[0.1, 0.3], [0.3, 0.5]] # alpha channel - ax.imshow(background_gradient, interpolation="bicubic", zorder=0.1, - extent=(0, 1, 0, 1), transform=ax.transAxes, aspect="auto") - - plt.show() - - -main() diff --git a/_downloads/edb58cc2444ac193f74c7309e1adb15c/whats_new_99_axes_grid.py b/_downloads/edb58cc2444ac193f74c7309e1adb15c/whats_new_99_axes_grid.py deleted file mode 120000 index eb126937580..00000000000 --- a/_downloads/edb58cc2444ac193f74c7309e1adb15c/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/edb58cc2444ac193f74c7309e1adb15c/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/_downloads/edb8f916a89ae2abb416d3b221872799/demo_gridspec03.ipynb b/_downloads/edb8f916a89ae2abb416d3b221872799/demo_gridspec03.ipynb deleted file mode 120000 index 9082d2a7c4d..00000000000 --- a/_downloads/edb8f916a89ae2abb416d3b221872799/demo_gridspec03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/edb8f916a89ae2abb416d3b221872799/demo_gridspec03.ipynb \ No newline at end of file diff --git a/_downloads/edc22d531f64d06fd44f5e58b94c396f/colormapnorms.py b/_downloads/edc22d531f64d06fd44f5e58b94c396f/colormapnorms.py deleted file mode 120000 index efd39753d29..00000000000 --- a/_downloads/edc22d531f64d06fd44f5e58b94c396f/colormapnorms.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/edc22d531f64d06fd44f5e58b94c396f/colormapnorms.py \ No newline at end of file diff --git a/_downloads/edc358c0278335ec2a98df6be43d4bdc/demo_axes_grid.py b/_downloads/edc358c0278335ec2a98df6be43d4bdc/demo_axes_grid.py deleted file mode 120000 index 0846abdd536..00000000000 --- a/_downloads/edc358c0278335ec2a98df6be43d4bdc/demo_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/edc358c0278335ec2a98df6be43d4bdc/demo_axes_grid.py \ No newline at end of file diff --git a/_downloads/edc8cdf0bcfae41617f73576a4c87564/scatter_custom_symbol.ipynb b/_downloads/edc8cdf0bcfae41617f73576a4c87564/scatter_custom_symbol.ipynb deleted file mode 100644 index 56b1080351e..00000000000 --- a/_downloads/edc8cdf0bcfae41617f73576a4c87564/scatter_custom_symbol.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Scatter Custom Symbol\n\n\nCreating a custom ellipse symbol in scatter plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# unit area ellipse\nrx, ry = 3., 1.\narea = rx * ry * np.pi\ntheta = np.arange(0, 2 * np.pi + 0.01, 0.1)\nverts = np.column_stack([rx / area * np.cos(theta), ry / area * np.sin(theta)])\n\nx, y, s, c = np.random.rand(4, 30)\ns *= 10**2.\n\nfig, ax = plt.subplots()\nax.scatter(x, y, s, c, marker=verts)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/edc9c7458691dc3f10456415a123c7d7/colormap_normalizations_power.py b/_downloads/edc9c7458691dc3f10456415a123c7d7/colormap_normalizations_power.py deleted file mode 120000 index 8e25438a394..00000000000 --- a/_downloads/edc9c7458691dc3f10456415a123c7d7/colormap_normalizations_power.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/edc9c7458691dc3f10456415a123c7d7/colormap_normalizations_power.py \ No newline at end of file diff --git a/_downloads/edc9e862d9e0d115b20877b32f705afc/pcolor_demo.py b/_downloads/edc9e862d9e0d115b20877b32f705afc/pcolor_demo.py deleted file mode 120000 index d10511a60b7..00000000000 --- a/_downloads/edc9e862d9e0d115b20877b32f705afc/pcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/edc9e862d9e0d115b20877b32f705afc/pcolor_demo.py \ No newline at end of file diff --git a/_downloads/edca6837456065895322746a02ca2095/looking_glass.ipynb b/_downloads/edca6837456065895322746a02ca2095/looking_glass.ipynb deleted file mode 120000 index e8cbc206637..00000000000 --- a/_downloads/edca6837456065895322746a02ca2095/looking_glass.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/edca6837456065895322746a02ca2095/looking_glass.ipynb \ No newline at end of file diff --git a/_downloads/ede1f5de6296a8e074c7883820cd8336/legend_demo.ipynb b/_downloads/ede1f5de6296a8e074c7883820cd8336/legend_demo.ipynb deleted file mode 100644 index 1fbfbca0cca..00000000000 --- a/_downloads/ede1f5de6296a8e074c7883820cd8336/legend_demo.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend Demo\n\n\nPlotting legends in Matplotlib.\n\nThere are many ways to create and customize legends in Matplotlib. Below\nwe'll show a few examples for how to do so.\n\nFirst we'll show off how to make a legend for specific lines.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.collections as mcol\nfrom matplotlib.legend_handler import HandlerLineCollection, HandlerTuple\nfrom matplotlib.lines import Line2D\nimport numpy as np\n\nt1 = np.arange(0.0, 2.0, 0.1)\nt2 = np.arange(0.0, 2.0, 0.01)\n\nfig, ax = plt.subplots()\n\n# note that plot returns a list of lines. The \"l1, = plot\" usage\n# extracts the first element of the list into l1 using tuple\n# unpacking. So l1 is a Line2D instance, not a sequence of lines\nl1, = ax.plot(t2, np.exp(-t2))\nl2, l3 = ax.plot(t2, np.sin(2 * np.pi * t2), '--o', t1, np.log(1 + t1), '.')\nl4, = ax.plot(t2, np.exp(-t2) * np.sin(2 * np.pi * t2), 's-.')\n\nax.legend((l2, l4), ('oscillatory', 'damped'), loc='upper right', shadow=True)\nax.set_xlabel('time')\nax.set_ylabel('volts')\nax.set_title('Damped oscillation')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next we'll demonstrate plotting more complex labels.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = np.linspace(0, 1)\n\nfig, (ax0, ax1) = plt.subplots(2, 1)\n\n# Plot the lines y=x**n for n=1..4.\nfor n in range(1, 5):\n ax0.plot(x, x**n, label=\"n={0}\".format(n))\nleg = ax0.legend(loc=\"upper left\", bbox_to_anchor=[0, 1],\n ncol=2, shadow=True, title=\"Legend\", fancybox=True)\nleg.get_title().set_color(\"red\")\n\n# Demonstrate some more complex labels.\nax1.plot(x, x**2, label=\"multi\\nline\")\nhalf_pi = np.linspace(0, np.pi / 2)\nax1.plot(np.sin(half_pi), np.cos(half_pi), label=r\"$\\frac{1}{2}\\pi$\")\nax1.plot(x, 2**(x**2), label=\"$2^{x^2}$\")\nax1.legend(shadow=True, fancybox=True)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here we attach legends to more complex plots.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(3, 1, constrained_layout=True)\ntop_ax, middle_ax, bottom_ax = axes\n\ntop_ax.bar([0, 1, 2], [0.2, 0.3, 0.1], width=0.4, label=\"Bar 1\",\n align=\"center\")\ntop_ax.bar([0.5, 1.5, 2.5], [0.3, 0.2, 0.2], color=\"red\", width=0.4,\n label=\"Bar 2\", align=\"center\")\ntop_ax.legend()\n\nmiddle_ax.errorbar([0, 1, 2], [2, 3, 1], xerr=0.4, fmt=\"s\", label=\"test 1\")\nmiddle_ax.errorbar([0, 1, 2], [3, 2, 4], yerr=0.3, fmt=\"o\", label=\"test 2\")\nmiddle_ax.errorbar([0, 1, 2], [1, 1, 3], xerr=0.4, yerr=0.3, fmt=\"^\",\n label=\"test 3\")\nmiddle_ax.legend()\n\nbottom_ax.stem([0.3, 1.5, 2.7], [1, 3.6, 2.7], label=\"stem test\")\nbottom_ax.legend()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we'll showcase legend entries with more than one legend key.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(2, 1, constrained_layout=True)\n\n# First plot: two legend keys for a single entry\np1 = ax1.scatter([1], [5], c='r', marker='s', s=100)\np2 = ax1.scatter([3], [2], c='b', marker='o', s=100)\n# `plot` returns a list, but we want the handle - thus the comma on the left\np3, = ax1.plot([1, 5], [4, 4], 'm-d')\n\n# Assign two of the handles to the same legend entry by putting them in a tuple\n# and using a generic handler map (which would be used for any additional\n# tuples of handles like (p1, p3)).\nl = ax1.legend([(p1, p3), p2], ['two keys', 'one key'], scatterpoints=1,\n numpoints=1, handler_map={tuple: HandlerTuple(ndivide=None)})\n\n# Second plot: plot two bar charts on top of each other and change the padding\n# between the legend keys\nx_left = [1, 2, 3]\ny_pos = [1, 3, 2]\ny_neg = [2, 1, 4]\n\nrneg = ax2.bar(x_left, y_neg, width=0.5, color='w', hatch='///', label='-1')\nrpos = ax2.bar(x_left, y_pos, width=0.5, color='k', label='+1')\n\n# Treat each legend entry differently by using specific `HandlerTuple`s\nl = ax2.legend([(rpos, rneg), (rneg, rpos)], ['pad!=0', 'pad=0'],\n handler_map={(rpos, rneg): HandlerTuple(ndivide=None),\n (rneg, rpos): HandlerTuple(ndivide=None, pad=0.)})\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, it is also possible to write custom objects that define\nhow to stylize legends.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class HandlerDashedLines(HandlerLineCollection):\n \"\"\"\n Custom Handler for LineCollection instances.\n \"\"\"\n def create_artists(self, legend, orig_handle,\n xdescent, ydescent, width, height, fontsize, trans):\n # figure out how many lines there are\n numlines = len(orig_handle.get_segments())\n xdata, xdata_marker = self.get_xdata(legend, xdescent, ydescent,\n width, height, fontsize)\n leglines = []\n # divide the vertical space where the lines will go\n # into equal parts based on the number of lines\n ydata = np.full_like(xdata, height / (numlines + 1))\n # for each line, create the line at the proper location\n # and set the dash pattern\n for i in range(numlines):\n legline = Line2D(xdata, ydata * (numlines - i) - ydescent)\n self.update_prop(legline, orig_handle, legend)\n # set color, dash pattern, and linewidth to that\n # of the lines in linecollection\n try:\n color = orig_handle.get_colors()[i]\n except IndexError:\n color = orig_handle.get_colors()[0]\n try:\n dashes = orig_handle.get_dashes()[i]\n except IndexError:\n dashes = orig_handle.get_dashes()[0]\n try:\n lw = orig_handle.get_linewidths()[i]\n except IndexError:\n lw = orig_handle.get_linewidths()[0]\n if dashes[0] is not None:\n legline.set_dashes(dashes[1])\n legline.set_color(color)\n legline.set_transform(trans)\n legline.set_linewidth(lw)\n leglines.append(legline)\n return leglines\n\nx = np.linspace(0, 5, 100)\n\nfig, ax = plt.subplots()\ncolors = plt.rcParams['axes.prop_cycle'].by_key()['color'][:5]\nstyles = ['solid', 'dashed', 'dashed', 'dashed', 'solid']\nlines = []\nfor i, color, style in zip(range(5), colors, styles):\n ax.plot(x, np.sin(x) - .1 * i, c=color, ls=style)\n\n# make proxy artists\n# make list of one line -- doesn't matter what the coordinates are\nline = [[(0, 0)]]\n# set up the proxy artist\nlc = mcol.LineCollection(5 * line, linestyles=styles, colors=colors)\n# create the legend\nax.legend([lc], ['multi-line'], handler_map={type(lc): HandlerDashedLines()},\n handlelength=2.5, handleheight=3)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ede7fdd49ca3e4e4422f85be25919f3f/gradient_bar.py b/_downloads/ede7fdd49ca3e4e4422f85be25919f3f/gradient_bar.py deleted file mode 120000 index 41757346a0d..00000000000 --- a/_downloads/ede7fdd49ca3e4e4422f85be25919f3f/gradient_bar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ede7fdd49ca3e4e4422f85be25919f3f/gradient_bar.py \ No newline at end of file diff --git a/_downloads/ede88f0c95c983e52d31c9e6db238f71/demo_anchored_direction_arrows.ipynb b/_downloads/ede88f0c95c983e52d31c9e6db238f71/demo_anchored_direction_arrows.ipynb deleted file mode 100644 index d36929cdf45..00000000000 --- a/_downloads/ede88f0c95c983e52d31c9e6db238f71/demo_anchored_direction_arrows.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Anchored Direction Arrow\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom mpl_toolkits.axes_grid1.anchored_artists import AnchoredDirectionArrows\nimport matplotlib.font_manager as fm\n\nfig, ax = plt.subplots()\nax.imshow(np.random.random((10, 10)))\n\n# Simple example\nsimple_arrow = AnchoredDirectionArrows(ax.transAxes, 'X', 'Y')\nax.add_artist(simple_arrow)\n\n# High contrast arrow\nhigh_contrast_part_1 = AnchoredDirectionArrows(\n ax.transAxes,\n '111', r'11$\\overline{2}$',\n loc='upper right',\n arrow_props={'ec': 'w', 'fc': 'none', 'alpha': 1,\n 'lw': 2}\n )\nax.add_artist(high_contrast_part_1)\n\nhigh_contrast_part_2 = AnchoredDirectionArrows(\n ax.transAxes,\n '111', r'11$\\overline{2}$',\n loc='upper right',\n arrow_props={'ec': 'none', 'fc': 'k'},\n text_props={'ec': 'w', 'fc': 'k', 'lw': 0.4}\n )\nax.add_artist(high_contrast_part_2)\n\n# Rotated arrow\nfontprops = fm.FontProperties(family='serif')\n\nroatated_arrow = AnchoredDirectionArrows(\n ax.transAxes,\n '30', '120',\n loc='center',\n color='w',\n angle=30,\n fontproperties=fontprops\n )\nax.add_artist(roatated_arrow)\n\n# Altering arrow directions\na1 = AnchoredDirectionArrows(\n ax.transAxes, 'A', 'B', loc='lower center',\n length=-0.15,\n sep_x=0.03, sep_y=0.03,\n color='r'\n )\nax.add_artist(a1)\n\na2 = AnchoredDirectionArrows(\n ax.transAxes, 'A', ' B', loc='lower left',\n aspect_ratio=-1,\n sep_x=0.01, sep_y=-0.02,\n color='orange'\n )\nax.add_artist(a2)\n\n\na3 = AnchoredDirectionArrows(\n ax.transAxes, ' A', 'B', loc='lower right',\n length=-0.15,\n aspect_ratio=-1,\n sep_y=-0.1, sep_x=0.04,\n color='cyan'\n )\nax.add_artist(a3)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/edeb5fd421fa3128b260e5df430f3b54/contour.py b/_downloads/edeb5fd421fa3128b260e5df430f3b54/contour.py deleted file mode 120000 index 1d300dd1e93..00000000000 --- a/_downloads/edeb5fd421fa3128b260e5df430f3b54/contour.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/edeb5fd421fa3128b260e5df430f3b54/contour.py \ No newline at end of file diff --git a/_downloads/eded58dec567d5dbbe994cda9976e066/dynamic_image.ipynb b/_downloads/eded58dec567d5dbbe994cda9976e066/dynamic_image.ipynb deleted file mode 120000 index c91952059ac..00000000000 --- a/_downloads/eded58dec567d5dbbe994cda9976e066/dynamic_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/eded58dec567d5dbbe994cda9976e066/dynamic_image.ipynb \ No newline at end of file diff --git a/_downloads/edf4f7664c434cac0213678187c43e86/trisurf3d.ipynb b/_downloads/edf4f7664c434cac0213678187c43e86/trisurf3d.ipynb deleted file mode 120000 index 84a10ce49f5..00000000000 --- a/_downloads/edf4f7664c434cac0213678187c43e86/trisurf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/edf4f7664c434cac0213678187c43e86/trisurf3d.ipynb \ No newline at end of file diff --git a/_downloads/edfe3d0498103257061fa8b566fb0748/pgf.py b/_downloads/edfe3d0498103257061fa8b566fb0748/pgf.py deleted file mode 120000 index 926842f8d88..00000000000 --- a/_downloads/edfe3d0498103257061fa8b566fb0748/pgf.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/edfe3d0498103257061fa8b566fb0748/pgf.py \ No newline at end of file diff --git a/_downloads/ee0199f17273cd0580f757d547f317e6/annotate_simple_coord02.ipynb b/_downloads/ee0199f17273cd0580f757d547f317e6/annotate_simple_coord02.ipynb deleted file mode 120000 index e260aabd92c..00000000000 --- a/_downloads/ee0199f17273cd0580f757d547f317e6/annotate_simple_coord02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ee0199f17273cd0580f757d547f317e6/annotate_simple_coord02.ipynb \ No newline at end of file diff --git a/_downloads/ee0b5b6b7992121f44734a35fd45a9b8/zoom_window.py b/_downloads/ee0b5b6b7992121f44734a35fd45a9b8/zoom_window.py deleted file mode 100644 index c2cc1cce556..00000000000 --- a/_downloads/ee0b5b6b7992121f44734a35fd45a9b8/zoom_window.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -=========== -Zoom Window -=========== - -This example shows how to connect events in one window, for example, a mouse -press, to another figure window. - -If you click on a point in the first window, the z and y limits of the second -will be adjusted so that the center of the zoom in the second window will be -the x,y coordinates of the clicked point. - -Note the diameter of the circles in the scatter are defined in points**2, so -their size is independent of the zoom. -""" - -import matplotlib.pyplot as plt -import numpy as np - -figsrc, axsrc = plt.subplots() -figzoom, axzoom = plt.subplots() -axsrc.set(xlim=(0, 1), ylim=(0, 1), autoscale_on=False, - title='Click to zoom') -axzoom.set(xlim=(0.45, 0.55), ylim=(0.4, 0.6), autoscale_on=False, - title='Zoom window') - -x, y, s, c = np.random.rand(4, 200) -s *= 200 - -axsrc.scatter(x, y, s, c) -axzoom.scatter(x, y, s, c) - - -def onpress(event): - if event.button != 1: - return - x, y = event.xdata, event.ydata - axzoom.set_xlim(x - 0.1, x + 0.1) - axzoom.set_ylim(y - 0.1, y + 0.1) - figzoom.canvas.draw() - -figsrc.canvas.mpl_connect('button_press_event', onpress) -plt.show() diff --git a/_downloads/ee1cbb890f9e69dbce9cce81e064a375/text_rotation_relative_to_line.py b/_downloads/ee1cbb890f9e69dbce9cce81e064a375/text_rotation_relative_to_line.py deleted file mode 120000 index c6dccd9ea2e..00000000000 --- a/_downloads/ee1cbb890f9e69dbce9cce81e064a375/text_rotation_relative_to_line.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ee1cbb890f9e69dbce9cce81e064a375/text_rotation_relative_to_line.py \ No newline at end of file diff --git a/_downloads/ee1e58614ceb7bc862c3065810238e59/gallery_python.zip b/_downloads/ee1e58614ceb7bc862c3065810238e59/gallery_python.zip deleted file mode 120000 index 6631aa0133d..00000000000 --- a/_downloads/ee1e58614ceb7bc862c3065810238e59/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ee1e58614ceb7bc862c3065810238e59/gallery_python.zip \ No newline at end of file diff --git a/_downloads/ee21dbb728ba3d80591957b012c7ff12/bayes_update.ipynb b/_downloads/ee21dbb728ba3d80591957b012c7ff12/bayes_update.ipynb deleted file mode 120000 index 74991f4bdd4..00000000000 --- a/_downloads/ee21dbb728ba3d80591957b012c7ff12/bayes_update.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ee21dbb728ba3d80591957b012c7ff12/bayes_update.ipynb \ No newline at end of file diff --git a/_downloads/ee238568c97acaa88c1fecf30916a9a7/tickedstroke_demo.py b/_downloads/ee238568c97acaa88c1fecf30916a9a7/tickedstroke_demo.py deleted file mode 120000 index cffdec210be..00000000000 --- a/_downloads/ee238568c97acaa88c1fecf30916a9a7/tickedstroke_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ee238568c97acaa88c1fecf30916a9a7/tickedstroke_demo.py \ No newline at end of file diff --git a/_downloads/ee25c5b756e0b0d63f250cb2a86afe8d/mri_demo.py b/_downloads/ee25c5b756e0b0d63f250cb2a86afe8d/mri_demo.py deleted file mode 100644 index 7834a3c9f58..00000000000 --- a/_downloads/ee25c5b756e0b0d63f250cb2a86afe8d/mri_demo.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -=== -MRI -=== - -This example illustrates how to read an image (of an MRI) into a NumPy -array, and display it in greyscale using `imshow`. -""" - -import matplotlib.pyplot as plt -import matplotlib.cbook as cbook -import numpy as np - - -# Data are 256x256 16 bit integers. -with cbook.get_sample_data('s1045.ima.gz') as dfile: - im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256)) - -fig, ax = plt.subplots(num="MRI_demo") -ax.imshow(im, cmap="gray") -ax.axis('off') - -plt.show() diff --git a/_downloads/ee266dc4f781adee6f25e7723fd7089c/demo_bboximage.py b/_downloads/ee266dc4f781adee6f25e7723fd7089c/demo_bboximage.py deleted file mode 120000 index 5616ec06aec..00000000000 --- a/_downloads/ee266dc4f781adee6f25e7723fd7089c/demo_bboximage.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ee266dc4f781adee6f25e7723fd7089c/demo_bboximage.py \ No newline at end of file diff --git a/_downloads/ee43cebf4250401962a409a6cf4a4c9b/subplots_demo.py b/_downloads/ee43cebf4250401962a409a6cf4a4c9b/subplots_demo.py deleted file mode 120000 index 100c432b5d7..00000000000 --- a/_downloads/ee43cebf4250401962a409a6cf4a4c9b/subplots_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ee43cebf4250401962a409a6cf4a4c9b/subplots_demo.py \ No newline at end of file diff --git a/_downloads/ee4b8bb2eb0c45b0fa38b2fc13377a69/axis_labels_demo.py b/_downloads/ee4b8bb2eb0c45b0fa38b2fc13377a69/axis_labels_demo.py deleted file mode 120000 index 7ae09a252e4..00000000000 --- a/_downloads/ee4b8bb2eb0c45b0fa38b2fc13377a69/axis_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ee4b8bb2eb0c45b0fa38b2fc13377a69/axis_labels_demo.py \ No newline at end of file diff --git a/_downloads/ee5a185acb7a01848c022e06f1de5814/tick-formatters.ipynb b/_downloads/ee5a185acb7a01848c022e06f1de5814/tick-formatters.ipynb deleted file mode 120000 index 18f1a43d1a9..00000000000 --- a/_downloads/ee5a185acb7a01848c022e06f1de5814/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ee5a185acb7a01848c022e06f1de5814/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/ee623b133e7985a2164bf99bfd86e11e/mosaic.ipynb b/_downloads/ee623b133e7985a2164bf99bfd86e11e/mosaic.ipynb deleted file mode 120000 index ffbe82e4640..00000000000 --- a/_downloads/ee623b133e7985a2164bf99bfd86e11e/mosaic.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ee623b133e7985a2164bf99bfd86e11e/mosaic.ipynb \ No newline at end of file diff --git a/_downloads/ee700af3ea0537df172da3d27db7507f/demo_curvelinear_grid.py b/_downloads/ee700af3ea0537df172da3d27db7507f/demo_curvelinear_grid.py deleted file mode 120000 index c2f8fcc0829..00000000000 --- a/_downloads/ee700af3ea0537df172da3d27db7507f/demo_curvelinear_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ee700af3ea0537df172da3d27db7507f/demo_curvelinear_grid.py \ No newline at end of file diff --git a/_downloads/ee78dad7cee7bbcceb0108a850f34e40/sankey_links.py b/_downloads/ee78dad7cee7bbcceb0108a850f34e40/sankey_links.py deleted file mode 120000 index 6506f37818b..00000000000 --- a/_downloads/ee78dad7cee7bbcceb0108a850f34e40/sankey_links.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ee78dad7cee7bbcceb0108a850f34e40/sankey_links.py \ No newline at end of file diff --git a/_downloads/ee7e96c30c2a692e5d6ffdb1de47f316/ftface_props.py b/_downloads/ee7e96c30c2a692e5d6ffdb1de47f316/ftface_props.py deleted file mode 120000 index 71e0ee95c79..00000000000 --- a/_downloads/ee7e96c30c2a692e5d6ffdb1de47f316/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ee7e96c30c2a692e5d6ffdb1de47f316/ftface_props.py \ No newline at end of file diff --git a/_downloads/ee87e6ea80be1db2d369f9f9f5e6969a/demo_colorbar_with_inset_locator.py b/_downloads/ee87e6ea80be1db2d369f9f9f5e6969a/demo_colorbar_with_inset_locator.py deleted file mode 120000 index dda95137b88..00000000000 --- a/_downloads/ee87e6ea80be1db2d369f9f9f5e6969a/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ee87e6ea80be1db2d369f9f9f5e6969a/demo_colorbar_with_inset_locator.py \ No newline at end of file diff --git a/_downloads/ee8a7df8ab03c3b45ffdac4c90a37e69/font_indexing.ipynb b/_downloads/ee8a7df8ab03c3b45ffdac4c90a37e69/font_indexing.ipynb deleted file mode 100644 index 153736b5dd7..00000000000 --- a/_downloads/ee8a7df8ab03c3b45ffdac4c90a37e69/font_indexing.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Font indexing\n\n\nThis example shows how the font tables relate to one another.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\n\nimport matplotlib\nfrom matplotlib.ft2font import (\n FT2Font, KERNING_DEFAULT, KERNING_UNFITTED, KERNING_UNSCALED)\n\n\nfont = FT2Font(\n os.path.join(matplotlib.get_data_path(), 'fonts/ttf/DejaVuSans.ttf'))\nfont.set_charmap(0)\n\ncodes = font.get_charmap().items()\n\n# make a charname to charcode and glyphind dictionary\ncoded = {}\nglyphd = {}\nfor ccode, glyphind in codes:\n name = font.get_glyph_name(glyphind)\n coded[name] = ccode\n glyphd[name] = glyphind\n # print(glyphind, ccode, hex(int(ccode)), name)\n\ncode = coded['A']\nglyph = font.load_char(code)\nprint(glyph.bbox)\nprint(glyphd['A'], glyphd['V'], coded['A'], coded['V'])\nprint('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_DEFAULT))\nprint('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNFITTED))\nprint('AV', font.get_kerning(glyphd['A'], glyphd['V'], KERNING_UNSCALED))\nprint('AV', font.get_kerning(glyphd['A'], glyphd['T'], KERNING_UNSCALED))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ee910f25ea174d6422e79db4a4c722e8/ggplot.py b/_downloads/ee910f25ea174d6422e79db4a4c722e8/ggplot.py deleted file mode 120000 index 57404352e35..00000000000 --- a/_downloads/ee910f25ea174d6422e79db4a4c722e8/ggplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ee910f25ea174d6422e79db4a4c722e8/ggplot.py \ No newline at end of file diff --git a/_downloads/ee9b2b9e813d5fb99f6909187884d9e5/stem_plot.py b/_downloads/ee9b2b9e813d5fb99f6909187884d9e5/stem_plot.py deleted file mode 100644 index 7f8c78a0adb..00000000000 --- a/_downloads/ee9b2b9e813d5fb99f6909187884d9e5/stem_plot.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -========= -Stem Plot -========= - -`~.pyplot.stem` plots vertical lines from a baseline to the y-coordinate and -places a marker at the tip. -""" -import matplotlib.pyplot as plt -import numpy as np - -x = np.linspace(0.1, 2 * np.pi, 41) -y = np.exp(np.sin(x)) - -plt.stem(x, y, use_line_collection=True) -plt.show() - -############################################################################# -# -# The position of the baseline can be adapted using *bottom*. -# The parameters *linefmt*, *markerfmt*, and *basefmt* control basic format -# properties of the plot. However, in contrast to `~.pyplot.plot` not all -# properties are configurable via keyword arguments. For more advanced -# control adapt the line objects returned by `~.pyplot`. - -markerline, stemlines, baseline = plt.stem( - x, y, linefmt='grey', markerfmt='D', bottom=1.1, use_line_collection=True) -markerline.set_markerfacecolor('none') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.pyplot.stem -matplotlib.axes.Axes.stem diff --git a/_downloads/eeaf73a8681875e831c115644cd50854/shared_axis_demo.py b/_downloads/eeaf73a8681875e831c115644cd50854/shared_axis_demo.py deleted file mode 100644 index 9f22872f645..00000000000 --- a/_downloads/eeaf73a8681875e831c115644cd50854/shared_axis_demo.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -================ -Shared Axis Demo -================ - -You can share the x or y axis limits for one axis with another by -passing an axes instance as a sharex or sharey kwarg. - -Changing the axis limits on one axes will be reflected automatically -in the other, and vice-versa, so when you navigate with the toolbar -the axes will follow each other on their shared axes. Ditto for -changes in the axis scaling (e.g., log vs linear). However, it is -possible to have differences in tick labeling, e.g., you can selectively -turn off the tick labels on one axes. - -The example below shows how to customize the tick labels on the -various axes. Shared axes share the tick locator, tick formatter, -view limits, and transformation (e.g., log, linear). But the ticklabels -themselves do not share properties. This is a feature and not a bug, -because you may want to make the tick labels smaller on the upper -axes, e.g., in the example below. - -If you want to turn off the ticklabels for a given axes (e.g., on -subplot(211) or subplot(212), you cannot do the standard trick:: - - setp(ax2, xticklabels=[]) - -because this changes the tick Formatter, which is shared among all -axes. But you can alter the visibility of the labels, which is a -property:: - - setp(ax2.get_xticklabels(), visible=False) - -""" -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.01, 5.0, 0.01) -s1 = np.sin(2 * np.pi * t) -s2 = np.exp(-t) -s3 = np.sin(4 * np.pi * t) - -ax1 = plt.subplot(311) -plt.plot(t, s1) -plt.setp(ax1.get_xticklabels(), fontsize=6) - -# share x only -ax2 = plt.subplot(312, sharex=ax1) -plt.plot(t, s2) -# make these tick labels invisible -plt.setp(ax2.get_xticklabels(), visible=False) - -# share x and y -ax3 = plt.subplot(313, sharex=ax1, sharey=ax1) -plt.plot(t, s3) -plt.xlim(0.01, 5.0) -plt.show() diff --git a/_downloads/eeb24fda3dea01b71d4a2d4534589972/axis_direction_demo_step01.py b/_downloads/eeb24fda3dea01b71d4a2d4534589972/axis_direction_demo_step01.py deleted file mode 100644 index df5d8e57017..00000000000 --- a/_downloads/eeb24fda3dea01b71d4a2d4534589972/axis_direction_demo_step01.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -========================== -Axis Direction Demo Step01 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - ax.axis[:].set_visible(False) - - ax.axis["x"] = ax.new_floating_axis(1, 0.5) - ax.axis["x"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(3, 2.5)) -fig.subplots_adjust(top=0.8) -ax1 = setup_axes(fig, "111") - -ax1.axis["x"].set_axis_direction("left") - -plt.show() diff --git a/_downloads/eeb6d3fe4852a8eb9600e18448b3e29c/legend.ipynb b/_downloads/eeb6d3fe4852a8eb9600e18448b3e29c/legend.ipynb deleted file mode 120000 index 7214bf93741..00000000000 --- a/_downloads/eeb6d3fe4852a8eb9600e18448b3e29c/legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/eeb6d3fe4852a8eb9600e18448b3e29c/legend.ipynb \ No newline at end of file diff --git a/_downloads/eebc5334a2ea915198c1316caaee16b3/hexbin_demo.py b/_downloads/eebc5334a2ea915198c1316caaee16b3/hexbin_demo.py deleted file mode 120000 index 8021a49fc2b..00000000000 --- a/_downloads/eebc5334a2ea915198c1316caaee16b3/hexbin_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/eebc5334a2ea915198c1316caaee16b3/hexbin_demo.py \ No newline at end of file diff --git a/_downloads/eecce69251db7f6fa0b2442cad0f9e9f/patch_collection.ipynb b/_downloads/eecce69251db7f6fa0b2442cad0f9e9f/patch_collection.ipynb deleted file mode 120000 index f1fb2302bbc..00000000000 --- a/_downloads/eecce69251db7f6fa0b2442cad0f9e9f/patch_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/eecce69251db7f6fa0b2442cad0f9e9f/patch_collection.ipynb \ No newline at end of file diff --git a/_downloads/eedc42eb5ee29a0b85573049ba3db393/markevery_prop_cycle.ipynb b/_downloads/eedc42eb5ee29a0b85573049ba3db393/markevery_prop_cycle.ipynb deleted file mode 120000 index ac1d90cb879..00000000000 --- a/_downloads/eedc42eb5ee29a0b85573049ba3db393/markevery_prop_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eedc42eb5ee29a0b85573049ba3db393/markevery_prop_cycle.ipynb \ No newline at end of file diff --git a/_downloads/eee8ade47a2721c184eec2780dd2808f/simple_axis_direction03.py b/_downloads/eee8ade47a2721c184eec2780dd2808f/simple_axis_direction03.py deleted file mode 120000 index ce0960622b2..00000000000 --- a/_downloads/eee8ade47a2721c184eec2780dd2808f/simple_axis_direction03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/eee8ade47a2721c184eec2780dd2808f/simple_axis_direction03.py \ No newline at end of file diff --git a/_downloads/eeeaeaf39050b562623dfff7c047f84e/customizing.py b/_downloads/eeeaeaf39050b562623dfff7c047f84e/customizing.py deleted file mode 120000 index 9ee594d232e..00000000000 --- a/_downloads/eeeaeaf39050b562623dfff7c047f84e/customizing.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eeeaeaf39050b562623dfff7c047f84e/customizing.py \ No newline at end of file diff --git a/_downloads/eefd5b76faffc1991cf9afe6ccc24f0f/resample.py b/_downloads/eefd5b76faffc1991cf9afe6ccc24f0f/resample.py deleted file mode 120000 index f4e0be1d7fa..00000000000 --- a/_downloads/eefd5b76faffc1991cf9afe6ccc24f0f/resample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/eefd5b76faffc1991cf9afe6ccc24f0f/resample.py \ No newline at end of file diff --git a/_downloads/ef045b708b57da4755892e0d7d40b54f/lifecycle.ipynb b/_downloads/ef045b708b57da4755892e0d7d40b54f/lifecycle.ipynb deleted file mode 120000 index 4d3b5a82906..00000000000 --- a/_downloads/ef045b708b57da4755892e0d7d40b54f/lifecycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ef045b708b57da4755892e0d7d40b54f/lifecycle.ipynb \ No newline at end of file diff --git a/_downloads/ef198ad459f946f873b48b24f4dc69e2/bayes_update.ipynb b/_downloads/ef198ad459f946f873b48b24f4dc69e2/bayes_update.ipynb deleted file mode 120000 index 842e7dfeec9..00000000000 --- a/_downloads/ef198ad459f946f873b48b24f4dc69e2/bayes_update.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ef198ad459f946f873b48b24f4dc69e2/bayes_update.ipynb \ No newline at end of file diff --git a/_downloads/ef20b16a5626e76698b3d89a377a38bc/demo_edge_colorbar.ipynb b/_downloads/ef20b16a5626e76698b3d89a377a38bc/demo_edge_colorbar.ipynb deleted file mode 120000 index 179d77f96e3..00000000000 --- a/_downloads/ef20b16a5626e76698b3d89a377a38bc/demo_edge_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ef20b16a5626e76698b3d89a377a38bc/demo_edge_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/ef20e1d9f883728d986e75d8438a8b02/simple_axesgrid2.py b/_downloads/ef20e1d9f883728d986e75d8438a8b02/simple_axesgrid2.py deleted file mode 120000 index a2b268e2419..00000000000 --- a/_downloads/ef20e1d9f883728d986e75d8438a8b02/simple_axesgrid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ef20e1d9f883728d986e75d8438a8b02/simple_axesgrid2.py \ No newline at end of file diff --git a/_downloads/ef240cbe7155cebabcf3604d49fdd147/demo_curvelinear_grid.py b/_downloads/ef240cbe7155cebabcf3604d49fdd147/demo_curvelinear_grid.py deleted file mode 120000 index c371cf0f2e8..00000000000 --- a/_downloads/ef240cbe7155cebabcf3604d49fdd147/demo_curvelinear_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ef240cbe7155cebabcf3604d49fdd147/demo_curvelinear_grid.py \ No newline at end of file diff --git a/_downloads/ef46ddf05176c7f565cc9b68e00e06b5/text_commands.py b/_downloads/ef46ddf05176c7f565cc9b68e00e06b5/text_commands.py deleted file mode 120000 index a27325fd592..00000000000 --- a/_downloads/ef46ddf05176c7f565cc9b68e00e06b5/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ef46ddf05176c7f565cc9b68e00e06b5/text_commands.py \ No newline at end of file diff --git a/_downloads/ef4a72bfe5bae0f72630a0e5efcbf830/markevery_prop_cycle.ipynb b/_downloads/ef4a72bfe5bae0f72630a0e5efcbf830/markevery_prop_cycle.ipynb deleted file mode 120000 index 62e70217c6c..00000000000 --- a/_downloads/ef4a72bfe5bae0f72630a0e5efcbf830/markevery_prop_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ef4a72bfe5bae0f72630a0e5efcbf830/markevery_prop_cycle.ipynb \ No newline at end of file diff --git a/_downloads/ef5be1ebe8312b6b614443a93c8306e7/whats_new_1_subplot3d.py b/_downloads/ef5be1ebe8312b6b614443a93c8306e7/whats_new_1_subplot3d.py deleted file mode 120000 index 8c8a4323710..00000000000 --- a/_downloads/ef5be1ebe8312b6b614443a93c8306e7/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ef5be1ebe8312b6b614443a93c8306e7/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/_downloads/ef610ac98ffd6d95d8ae68b985598645/anchored_artists.py b/_downloads/ef610ac98ffd6d95d8ae68b985598645/anchored_artists.py deleted file mode 120000 index 084b25fca12..00000000000 --- a/_downloads/ef610ac98ffd6d95d8ae68b985598645/anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ef610ac98ffd6d95d8ae68b985598645/anchored_artists.py \ No newline at end of file diff --git a/_downloads/ef67ccf64b5411e89615428cc90fa7be/errorbar_subsample.py b/_downloads/ef67ccf64b5411e89615428cc90fa7be/errorbar_subsample.py deleted file mode 120000 index eb7716e8a1b..00000000000 --- a/_downloads/ef67ccf64b5411e89615428cc90fa7be/errorbar_subsample.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ef67ccf64b5411e89615428cc90fa7be/errorbar_subsample.py \ No newline at end of file diff --git a/_downloads/ef6c08b47e7fa75a5a55e4d6880616d1/path_editor.ipynb b/_downloads/ef6c08b47e7fa75a5a55e4d6880616d1/path_editor.ipynb deleted file mode 120000 index 4b1b3134b7f..00000000000 --- a/_downloads/ef6c08b47e7fa75a5a55e4d6880616d1/path_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ef6c08b47e7fa75a5a55e4d6880616d1/path_editor.ipynb \ No newline at end of file diff --git a/_downloads/ef75eb47d8c32d44db54e00784b82410/xkcd.ipynb b/_downloads/ef75eb47d8c32d44db54e00784b82410/xkcd.ipynb deleted file mode 100644 index 4051973796c..00000000000 --- a/_downloads/ef75eb47d8c32d44db54e00784b82410/xkcd.ipynb +++ /dev/null @@ -1,76 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# XKCD\n\n\nShows how to create an xkcd-like plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.xkcd():\n # Based on \"Stove Ownership\" from XKCD by Randall Munroe\n # https://xkcd.com/418/\n\n fig = plt.figure()\n ax = fig.add_axes((0.1, 0.2, 0.8, 0.7))\n ax.spines['right'].set_color('none')\n ax.spines['top'].set_color('none')\n ax.set_xticks([])\n ax.set_yticks([])\n ax.set_ylim([-30, 10])\n\n data = np.ones(100)\n data[70:] -= np.arange(30)\n\n ax.annotate(\n 'THE DAY I REALIZED\\nI COULD COOK BACON\\nWHENEVER I WANTED',\n xy=(70, 1), arrowprops=dict(arrowstyle='->'), xytext=(15, -10))\n\n ax.plot(data)\n\n ax.set_xlabel('time')\n ax.set_ylabel('my overall health')\n fig.text(\n 0.5, 0.05,\n '\"Stove Ownership\" from xkcd by Randall Munroe',\n ha='center')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "with plt.xkcd():\n # Based on \"The Data So Far\" from XKCD by Randall Munroe\n # https://xkcd.com/373/\n\n fig = plt.figure()\n ax = fig.add_axes((0.1, 0.2, 0.8, 0.7))\n ax.bar([0, 1], [0, 100], 0.25)\n ax.spines['right'].set_color('none')\n ax.spines['top'].set_color('none')\n ax.xaxis.set_ticks_position('bottom')\n ax.set_xticks([0, 1])\n ax.set_xticklabels(['CONFIRMED BY\\nEXPERIMENT', 'REFUTED BY\\nEXPERIMENT'])\n ax.set_xlim([-0.5, 1.5])\n ax.set_yticks([])\n ax.set_ylim([0, 110])\n\n ax.set_title(\"CLAIMS OF SUPERNATURAL POWERS\")\n\n fig.text(\n 0.5, 0.05,\n '\"The Data So Far\" from xkcd by Randall Munroe',\n ha='center')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ef768136d19ed35fa2e3968573731c99/pick_event_demo2.py b/_downloads/ef768136d19ed35fa2e3968573731c99/pick_event_demo2.py deleted file mode 120000 index b9d98bc1f2c..00000000000 --- a/_downloads/ef768136d19ed35fa2e3968573731c99/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ef768136d19ed35fa2e3968573731c99/pick_event_demo2.py \ No newline at end of file diff --git a/_downloads/ef78b3347b172dc23366211186b18cde/timers.ipynb b/_downloads/ef78b3347b172dc23366211186b18cde/timers.ipynb deleted file mode 120000 index 46b68b5119a..00000000000 --- a/_downloads/ef78b3347b172dc23366211186b18cde/timers.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ef78b3347b172dc23366211186b18cde/timers.ipynb \ No newline at end of file diff --git a/_downloads/ef82c26421c3a06b638658fdbab6d040/inset_locator_demo2.ipynb b/_downloads/ef82c26421c3a06b638658fdbab6d040/inset_locator_demo2.ipynb deleted file mode 120000 index 3d345c5e6f8..00000000000 --- a/_downloads/ef82c26421c3a06b638658fdbab6d040/inset_locator_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ef82c26421c3a06b638658fdbab6d040/inset_locator_demo2.ipynb \ No newline at end of file diff --git a/_downloads/ef897f73e689230e2b8fb2391a446a51/legend_guide.ipynb b/_downloads/ef897f73e689230e2b8fb2391a446a51/legend_guide.ipynb deleted file mode 120000 index 30570e7427a..00000000000 --- a/_downloads/ef897f73e689230e2b8fb2391a446a51/legend_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ef897f73e689230e2b8fb2391a446a51/legend_guide.ipynb \ No newline at end of file diff --git a/_downloads/ef9e71f1cc3294e29c242c2c062c12fc/annotate_with_units.py b/_downloads/ef9e71f1cc3294e29c242c2c062c12fc/annotate_with_units.py deleted file mode 100644 index cd4e47ddaf1..00000000000 --- a/_downloads/ef9e71f1cc3294e29c242c2c062c12fc/annotate_with_units.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -===================== -Annotation with units -===================== - -The example illustrates how to create text and arrow -annotations using a centimeter-scale plot. - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" - -import matplotlib.pyplot as plt -from basic_units import cm - -fig, ax = plt.subplots() - -ax.annotate("Note 01", [0.5*cm, 0.5*cm]) - -# xy and text both unitized -ax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data', - xytext=(0.8*cm, 0.95*cm), textcoords='data', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top') - -# mixing units w/ nonunits -ax.annotate('local max', xy=(3*cm, 1*cm), xycoords='data', - xytext=(0.8, 0.95), textcoords='axes fraction', - arrowprops=dict(facecolor='black', shrink=0.05), - horizontalalignment='right', verticalalignment='top') - - -ax.set_xlim(0*cm, 4*cm) -ax.set_ylim(0*cm, 4*cm) -plt.show() diff --git a/_downloads/efa96503c022b17c67fe82ef235272ce/arrow_demo.ipynb b/_downloads/efa96503c022b17c67fe82ef235272ce/arrow_demo.ipynb deleted file mode 100644 index 40f5d1efd1c..00000000000 --- a/_downloads/efa96503c022b17c67fe82ef235272ce/arrow_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Arrow Demo\n\n\nArrow drawing example for the new fancy_arrow facilities.\n\nCode contributed by: Rob Knight \n\nusage:\n\n python arrow_demo.py realistic|full|sample|extreme\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nrates_to_bases = {'r1': 'AT', 'r2': 'TA', 'r3': 'GA', 'r4': 'AG', 'r5': 'CA',\n 'r6': 'AC', 'r7': 'GT', 'r8': 'TG', 'r9': 'CT', 'r10': 'TC',\n 'r11': 'GC', 'r12': 'CG'}\nnumbered_bases_to_rates = {v: k for k, v in rates_to_bases.items()}\nlettered_bases_to_rates = {v: 'r' + v for k, v in rates_to_bases.items()}\n\n\ndef make_arrow_plot(data, size=4, display='length', shape='right',\n max_arrow_width=0.03, arrow_sep=0.02, alpha=0.5,\n normalize_data=False, ec=None, labelcolor=None,\n head_starts_at_zero=True,\n rate_labels=lettered_bases_to_rates,\n **kwargs):\n \"\"\"Makes an arrow plot.\n\n Parameters:\n\n data: dict with probabilities for the bases and pair transitions.\n size: size of the graph in inches.\n display: 'length', 'width', or 'alpha' for arrow property to change.\n shape: 'full', 'left', or 'right' for full or half arrows.\n max_arrow_width: maximum width of an arrow, data coordinates.\n arrow_sep: separation between arrows in a pair, data coordinates.\n alpha: maximum opacity of arrows, default 0.8.\n\n **kwargs can be anything allowed by a Arrow object, e.g.\n linewidth and edgecolor.\n \"\"\"\n\n plt.xlim(-0.5, 1.5)\n plt.ylim(-0.5, 1.5)\n plt.gcf().set_size_inches(size, size)\n plt.xticks([])\n plt.yticks([])\n max_text_size = size * 12\n min_text_size = size\n label_text_size = size * 2.5\n text_params = {'ha': 'center', 'va': 'center', 'family': 'sans-serif',\n 'fontweight': 'bold'}\n r2 = np.sqrt(2)\n\n deltas = {\n 'AT': (1, 0),\n 'TA': (-1, 0),\n 'GA': (0, 1),\n 'AG': (0, -1),\n 'CA': (-1 / r2, 1 / r2),\n 'AC': (1 / r2, -1 / r2),\n 'GT': (1 / r2, 1 / r2),\n 'TG': (-1 / r2, -1 / r2),\n 'CT': (0, 1),\n 'TC': (0, -1),\n 'GC': (1, 0),\n 'CG': (-1, 0)}\n\n colors = {\n 'AT': 'r',\n 'TA': 'k',\n 'GA': 'g',\n 'AG': 'r',\n 'CA': 'b',\n 'AC': 'r',\n 'GT': 'g',\n 'TG': 'k',\n 'CT': 'b',\n 'TC': 'k',\n 'GC': 'g',\n 'CG': 'b'}\n\n label_positions = {\n 'AT': 'center',\n 'TA': 'center',\n 'GA': 'center',\n 'AG': 'center',\n 'CA': 'left',\n 'AC': 'left',\n 'GT': 'left',\n 'TG': 'left',\n 'CT': 'center',\n 'TC': 'center',\n 'GC': 'center',\n 'CG': 'center'}\n\n def do_fontsize(k):\n return float(np.clip(max_text_size * np.sqrt(data[k]),\n min_text_size, max_text_size))\n\n A = plt.text(0, 1, '$A_3$', color='r', size=do_fontsize('A'),\n **text_params)\n T = plt.text(1, 1, '$T_3$', color='k', size=do_fontsize('T'),\n **text_params)\n G = plt.text(0, 0, '$G_3$', color='g', size=do_fontsize('G'),\n **text_params)\n C = plt.text(1, 0, '$C_3$', color='b', size=do_fontsize('C'),\n **text_params)\n\n arrow_h_offset = 0.25 # data coordinates, empirically determined\n max_arrow_length = 1 - 2 * arrow_h_offset\n max_head_width = 2.5 * max_arrow_width\n max_head_length = 2 * max_arrow_width\n arrow_params = {'length_includes_head': True, 'shape': shape,\n 'head_starts_at_zero': head_starts_at_zero}\n sf = 0.6 # max arrow size represents this in data coords\n\n d = (r2 / 2 + arrow_h_offset - 0.5) / r2 # distance for diags\n r2v = arrow_sep / r2 # offset for diags\n\n # tuple of x, y for start position\n positions = {\n 'AT': (arrow_h_offset, 1 + arrow_sep),\n 'TA': (1 - arrow_h_offset, 1 - arrow_sep),\n 'GA': (-arrow_sep, arrow_h_offset),\n 'AG': (arrow_sep, 1 - arrow_h_offset),\n 'CA': (1 - d - r2v, d - r2v),\n 'AC': (d + r2v, 1 - d + r2v),\n 'GT': (d - r2v, d + r2v),\n 'TG': (1 - d + r2v, 1 - d - r2v),\n 'CT': (1 - arrow_sep, arrow_h_offset),\n 'TC': (1 + arrow_sep, 1 - arrow_h_offset),\n 'GC': (arrow_h_offset, arrow_sep),\n 'CG': (1 - arrow_h_offset, -arrow_sep)}\n\n if normalize_data:\n # find maximum value for rates, i.e. where keys are 2 chars long\n max_val = max((v for k, v in data.items() if len(k) == 2), default=0)\n # divide rates by max val, multiply by arrow scale factor\n for k, v in data.items():\n data[k] = v / max_val * sf\n\n def draw_arrow(pair, alpha=alpha, ec=ec, labelcolor=labelcolor):\n # set the length of the arrow\n if display == 'length':\n length = (max_head_length\n + data[pair] / sf * (max_arrow_length - max_head_length))\n else:\n length = max_arrow_length\n # set the transparency of the arrow\n if display == 'alpha':\n alpha = min(data[pair] / sf, alpha)\n\n # set the width of the arrow\n if display == 'width':\n scale = data[pair] / sf\n width = max_arrow_width * scale\n head_width = max_head_width * scale\n head_length = max_head_length * scale\n else:\n width = max_arrow_width\n head_width = max_head_width\n head_length = max_head_length\n\n fc = colors[pair]\n ec = ec or fc\n\n x_scale, y_scale = deltas[pair]\n x_pos, y_pos = positions[pair]\n plt.arrow(x_pos, y_pos, x_scale * length, y_scale * length,\n fc=fc, ec=ec, alpha=alpha, width=width,\n head_width=head_width, head_length=head_length,\n **arrow_params)\n\n # figure out coordinates for text\n # if drawing relative to base: x and y are same as for arrow\n # dx and dy are one arrow width left and up\n # need to rotate based on direction of arrow, use x_scale and y_scale\n # as sin x and cos x?\n sx, cx = y_scale, x_scale\n\n where = label_positions[pair]\n if where == 'left':\n orig_position = 3 * np.array([[max_arrow_width, max_arrow_width]])\n elif where == 'absolute':\n orig_position = np.array([[max_arrow_length / 2.0,\n 3 * max_arrow_width]])\n elif where == 'right':\n orig_position = np.array([[length - 3 * max_arrow_width,\n 3 * max_arrow_width]])\n elif where == 'center':\n orig_position = np.array([[length / 2.0, 3 * max_arrow_width]])\n else:\n raise ValueError(\"Got unknown position parameter %s\" % where)\n\n M = np.array([[cx, sx], [-sx, cx]])\n coords = np.dot(orig_position, M) + [[x_pos, y_pos]]\n x, y = np.ravel(coords)\n orig_label = rate_labels[pair]\n label = r'$%s_{_{\\mathrm{%s}}}$' % (orig_label[0], orig_label[1:])\n\n plt.text(x, y, label, size=label_text_size, ha='center', va='center',\n color=labelcolor or fc)\n\n for p in sorted(positions):\n draw_arrow(p)\n\n\n# test data\nall_on_max = dict([(i, 1) for i in 'TCAG'] +\n [(i + j, 0.6) for i in 'TCAG' for j in 'TCAG'])\n\nrealistic_data = {\n 'A': 0.4,\n 'T': 0.3,\n 'G': 0.5,\n 'C': 0.2,\n 'AT': 0.4,\n 'AC': 0.3,\n 'AG': 0.2,\n 'TA': 0.2,\n 'TC': 0.3,\n 'TG': 0.4,\n 'CT': 0.2,\n 'CG': 0.3,\n 'CA': 0.2,\n 'GA': 0.1,\n 'GT': 0.4,\n 'GC': 0.1}\n\nextreme_data = {\n 'A': 0.75,\n 'T': 0.10,\n 'G': 0.10,\n 'C': 0.05,\n 'AT': 0.6,\n 'AC': 0.3,\n 'AG': 0.1,\n 'TA': 0.02,\n 'TC': 0.3,\n 'TG': 0.01,\n 'CT': 0.2,\n 'CG': 0.5,\n 'CA': 0.2,\n 'GA': 0.1,\n 'GT': 0.4,\n 'GC': 0.2}\n\nsample_data = {\n 'A': 0.2137,\n 'T': 0.3541,\n 'G': 0.1946,\n 'C': 0.2376,\n 'AT': 0.0228,\n 'AC': 0.0684,\n 'AG': 0.2056,\n 'TA': 0.0315,\n 'TC': 0.0629,\n 'TG': 0.0315,\n 'CT': 0.1355,\n 'CG': 0.0401,\n 'CA': 0.0703,\n 'GA': 0.1824,\n 'GT': 0.0387,\n 'GC': 0.1106}\n\n\nif __name__ == '__main__':\n from sys import argv\n d = None\n if len(argv) > 1:\n if argv[1] == 'full':\n d = all_on_max\n scaled = False\n elif argv[1] == 'extreme':\n d = extreme_data\n scaled = False\n elif argv[1] == 'realistic':\n d = realistic_data\n scaled = False\n elif argv[1] == 'sample':\n d = sample_data\n scaled = True\n if d is None:\n d = all_on_max\n scaled = False\n if len(argv) > 2:\n display = argv[2]\n else:\n display = 'length'\n\n size = 4\n plt.figure(figsize=(size, size))\n\n make_arrow_plot(d, display=display, linewidth=0.001, edgecolor=None,\n normalize_data=scaled, head_starts_at_zero=True, size=size)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/efb249a75daf8cad0dfab5f9c43f57f0/rasterization_demo.py b/_downloads/efb249a75daf8cad0dfab5f9c43f57f0/rasterization_demo.py deleted file mode 120000 index 17a4c7683da..00000000000 --- a/_downloads/efb249a75daf8cad0dfab5f9c43f57f0/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/efb249a75daf8cad0dfab5f9c43f57f0/rasterization_demo.py \ No newline at end of file diff --git a/_downloads/efb82211a71d357792c1b7bc47c85974/embedding_in_tk_sgskip.ipynb b/_downloads/efb82211a71d357792c1b7bc47c85974/embedding_in_tk_sgskip.ipynb deleted file mode 120000 index 4224b67aab0..00000000000 --- a/_downloads/efb82211a71d357792c1b7bc47c85974/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/efb82211a71d357792c1b7bc47c85974/embedding_in_tk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/efb87ec6e2927d29399daf05fc107ba5/mathtext_examples.py b/_downloads/efb87ec6e2927d29399daf05fc107ba5/mathtext_examples.py deleted file mode 100644 index 280964e0c0e..00000000000 --- a/_downloads/efb87ec6e2927d29399daf05fc107ba5/mathtext_examples.py +++ /dev/null @@ -1,126 +0,0 @@ -""" -================= -Mathtext Examples -================= - -Selected features of Matplotlib's math rendering engine. -""" -import matplotlib.pyplot as plt -import subprocess -import sys -import re - -# Selection of features following "Writing mathematical expressions" tutorial -mathtext_titles = { - 0: "Header demo", - 1: "Subscripts and superscripts", - 2: "Fractions, binomials and stacked numbers", - 3: "Radicals", - 4: "Fonts", - 5: "Accents", - 6: "Greek, Hebrew", - 7: "Delimiters, functions and Symbols"} -n_lines = len(mathtext_titles) - -# Randomly picked examples -mathext_demos = { - 0: r"$W^{3\beta}_{\delta_1 \rho_1 \sigma_2} = " - r"U^{3\beta}_{\delta_1 \rho_1} + \frac{1}{8 \pi 2} " - r"\int^{\alpha_2}_{\alpha_2} d \alpha^\prime_2 \left[\frac{ " - r"U^{2\beta}_{\delta_1 \rho_1} - \alpha^\prime_2U^{1\beta}_" - r"{\rho_1 \sigma_2} }{U^{0\beta}_{\rho_1 \sigma_2}}\right]$", - - 1: r"$\alpha_i > \beta_i,\ " - r"\alpha_{i+1}^j = {\rm sin}(2\pi f_j t_i) e^{-5 t_i/\tau},\ " - r"\ldots$", - - 2: r"$\frac{3}{4},\ \binom{3}{4},\ \genfrac{}{}{0}{}{3}{4},\ " - r"\left(\frac{5 - \frac{1}{x}}{4}\right),\ \ldots$", - - 3: r"$\sqrt{2},\ \sqrt[3]{x},\ \ldots$", - - 4: r"$\mathrm{Roman}\ , \ \mathit{Italic}\ , \ \mathtt{Typewriter} \ " - r"\mathrm{or}\ \mathcal{CALLIGRAPHY}$", - - 5: r"$\acute a,\ \bar a,\ \breve a,\ \dot a,\ \ddot a, \ \grave a, \ " - r"\hat a,\ \tilde a,\ \vec a,\ \widehat{xyz},\ \widetilde{xyz},\ " - r"\ldots$", - - 6: r"$\alpha,\ \beta,\ \chi,\ \delta,\ \lambda,\ \mu,\ " - r"\Delta,\ \Gamma,\ \Omega,\ \Phi,\ \Pi,\ \Upsilon,\ \nabla,\ " - r"\aleph,\ \beth,\ \daleth,\ \gimel,\ \ldots$", - - 7: r"$\coprod,\ \int,\ \oint,\ \prod,\ \sum,\ " - r"\log,\ \sin,\ \approx,\ \oplus,\ \star,\ \varpropto,\ " - r"\infty,\ \partial,\ \Re,\ \leftrightsquigarrow, \ \ldots$"} - - -def doall(): - # Colors used in mpl online documentation. - mpl_blue_rvb = (191. / 255., 209. / 256., 212. / 255.) - mpl_orange_rvb = (202. / 255., 121. / 256., 0. / 255.) - mpl_grey_rvb = (51. / 255., 51. / 255., 51. / 255.) - - # Creating figure and axis. - plt.figure(figsize=(6, 7)) - plt.axes([0.01, 0.01, 0.98, 0.90], facecolor="white", frameon=True) - plt.gca().set_xlim(0., 1.) - plt.gca().set_ylim(0., 1.) - plt.gca().set_title("Matplotlib's math rendering engine", - color=mpl_grey_rvb, fontsize=14, weight='bold') - plt.gca().set_xticklabels("", visible=False) - plt.gca().set_yticklabels("", visible=False) - - # Gap between lines in axes coords - line_axesfrac = (1. / (n_lines)) - - # Plotting header demonstration formula - full_demo = mathext_demos[0] - plt.annotate(full_demo, - xy=(0.5, 1. - 0.59 * line_axesfrac), - color=mpl_orange_rvb, ha='center', fontsize=20) - - # Plotting features demonstration formulae - for i_line in range(1, n_lines): - baseline = 1 - (i_line) * line_axesfrac - baseline_next = baseline - line_axesfrac - title = mathtext_titles[i_line] + ":" - fill_color = ['white', mpl_blue_rvb][i_line % 2] - plt.fill_between([0., 1.], [baseline, baseline], - [baseline_next, baseline_next], - color=fill_color, alpha=0.5) - plt.annotate(title, - xy=(0.07, baseline - 0.3 * line_axesfrac), - color=mpl_grey_rvb, weight='bold') - demo = mathext_demos[i_line] - plt.annotate(demo, - xy=(0.05, baseline - 0.75 * line_axesfrac), - color=mpl_grey_rvb, fontsize=16) - - for i in range(n_lines): - s = mathext_demos[i] - print(i, s) - plt.show() - - -if '--latex' in sys.argv: - # Run: python mathtext_examples.py --latex - # Need amsmath and amssymb packages. - fd = open("mathtext_examples.ltx", "w") - fd.write("\\documentclass{article}\n") - fd.write("\\usepackage{amsmath, amssymb}\n") - fd.write("\\begin{document}\n") - fd.write("\\begin{enumerate}\n") - - for i in range(n_lines): - s = mathext_demos[i] - s = re.sub(r"(?`\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import random\nimport matplotlib.lines as lines\nimport matplotlib.patches as patches\nimport matplotlib.text as text\nimport matplotlib.collections as collections\n\nfrom basic_units import cm, inch\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\nax.xaxis.set_units(cm)\nax.yaxis.set_units(cm)\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nif 0:\n # test a line collection\n # Not supported at present.\n verts = []\n for i in range(10):\n # a random line segment in inches\n verts.append(zip(*inch*10*np.random.rand(2, random.randint(2, 15))))\n lc = collections.LineCollection(verts, axes=ax)\n ax.add_collection(lc)\n\n# test a plain-ol-line\nline = lines.Line2D([0*cm, 1.5*cm], [0*cm, 2.5*cm],\n lw=2, color='black', axes=ax)\nax.add_line(line)\n\nif 0:\n # test a patch\n # Not supported at present.\n rect = patches.Rectangle((1*cm, 1*cm), width=5*cm, height=2*cm,\n alpha=0.2, axes=ax)\n ax.add_patch(rect)\n\n\nt = text.Text(3*cm, 2.5*cm, 'text label', ha='left', va='bottom', axes=ax)\nax.add_artist(t)\n\nax.set_xlim(-1*cm, 10*cm)\nax.set_ylim(-1*cm, 10*cm)\n# ax.xaxis.set_units(inch)\nax.grid(True)\nax.set_title(\"Artists with units\")\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f00d0d0884f8ef9c7f698a09b939f5c2/tutorials_python.zip b/_downloads/f00d0d0884f8ef9c7f698a09b939f5c2/tutorials_python.zip deleted file mode 120000 index e79da69340e..00000000000 --- a/_downloads/f00d0d0884f8ef9c7f698a09b939f5c2/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.0/_downloads/f00d0d0884f8ef9c7f698a09b939f5c2/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/f0123c56224aff7c7976e60ae37e48a9/filled_step.ipynb b/_downloads/f0123c56224aff7c7976e60ae37e48a9/filled_step.ipynb deleted file mode 100644 index 1f82ecfd8b3..00000000000 --- a/_downloads/f0123c56224aff7c7976e60ae37e48a9/filled_step.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hatch-filled histograms\n\n\nHatching capabilities for plotting histograms.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import itertools\nfrom collections import OrderedDict\nfrom functools import partial\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as mticker\nfrom cycler import cycler\n\n\ndef filled_hist(ax, edges, values, bottoms=None, orientation='v',\n **kwargs):\n \"\"\"\n Draw a histogram as a stepped patch.\n\n Extra kwargs are passed through to `fill_between`\n\n Parameters\n ----------\n ax : Axes\n The axes to plot to\n\n edges : array\n A length n+1 array giving the left edges of each bin and the\n right edge of the last bin.\n\n values : array\n A length n array of bin counts or values\n\n bottoms : scalar or array, optional\n A length n array of the bottom of the bars. If None, zero is used.\n\n orientation : {'v', 'h'}\n Orientation of the histogram. 'v' (default) has\n the bars increasing in the positive y-direction.\n\n Returns\n -------\n ret : PolyCollection\n Artist added to the Axes\n \"\"\"\n print(orientation)\n if orientation not in 'hv':\n raise ValueError(\"orientation must be in {{'h', 'v'}} \"\n \"not {o}\".format(o=orientation))\n\n kwargs.setdefault('step', 'post')\n edges = np.asarray(edges)\n values = np.asarray(values)\n if len(edges) - 1 != len(values):\n raise ValueError('Must provide one more bin edge than value not: '\n 'len(edges): {lb} len(values): {lv}'.format(\n lb=len(edges), lv=len(values)))\n\n if bottoms is None:\n bottoms = 0\n bottoms = np.broadcast_to(bottoms, values.shape)\n\n values = np.r_[values, values[-1]]\n bottoms = np.r_[bottoms, bottoms[-1]]\n if orientation == 'h':\n return ax.fill_betweenx(edges, values, bottoms,\n **kwargs)\n elif orientation == 'v':\n return ax.fill_between(edges, values, bottoms,\n **kwargs)\n else:\n raise AssertionError(\"you should never be here\")\n\n\ndef stack_hist(ax, stacked_data, sty_cycle, bottoms=None,\n hist_func=None, labels=None,\n plot_func=None, plot_kwargs=None):\n \"\"\"\n ax : axes.Axes\n The axes to add artists too\n\n stacked_data : array or Mapping\n A (N, M) shaped array. The first dimension will be iterated over to\n compute histograms row-wise\n\n sty_cycle : Cycler or operable of dict\n Style to apply to each set\n\n bottoms : array, optional\n The initial positions of the bottoms, defaults to 0\n\n hist_func : callable, optional\n Must have signature `bin_vals, bin_edges = f(data)`.\n `bin_edges` expected to be one longer than `bin_vals`\n\n labels : list of str, optional\n The label for each set.\n\n If not given and stacked data is an array defaults to 'default set {n}'\n\n If stacked_data is a mapping, and labels is None, default to the keys\n (which may come out in a random order).\n\n If stacked_data is a mapping and labels is given then only\n the columns listed by be plotted.\n\n plot_func : callable, optional\n Function to call to draw the histogram must have signature:\n\n ret = plot_func(ax, edges, top, bottoms=bottoms,\n label=label, **kwargs)\n\n plot_kwargs : dict, optional\n Any extra kwargs to pass through to the plotting function. This\n will be the same for all calls to the plotting function and will\n over-ride the values in cycle.\n\n Returns\n -------\n arts : dict\n Dictionary of artists keyed on their labels\n \"\"\"\n # deal with default binning function\n if hist_func is None:\n hist_func = np.histogram\n\n # deal with default plotting function\n if plot_func is None:\n plot_func = filled_hist\n\n # deal with default\n if plot_kwargs is None:\n plot_kwargs = {}\n print(plot_kwargs)\n try:\n l_keys = stacked_data.keys()\n label_data = True\n if labels is None:\n labels = l_keys\n\n except AttributeError:\n label_data = False\n if labels is None:\n labels = itertools.repeat(None)\n\n if label_data:\n loop_iter = enumerate((stacked_data[lab], lab, s)\n for lab, s in zip(labels, sty_cycle))\n else:\n loop_iter = enumerate(zip(stacked_data, labels, sty_cycle))\n\n arts = {}\n for j, (data, label, sty) in loop_iter:\n if label is None:\n label = 'dflt set {n}'.format(n=j)\n label = sty.pop('label', label)\n vals, edges = hist_func(data)\n if bottoms is None:\n bottoms = np.zeros_like(vals)\n top = bottoms + vals\n print(sty)\n sty.update(plot_kwargs)\n print(sty)\n ret = plot_func(ax, edges, top, bottoms=bottoms,\n label=label, **sty)\n bottoms = top\n arts[label] = ret\n ax.legend(fontsize=10)\n return arts\n\n\n# set up histogram function to fixed bins\nedges = np.linspace(-3, 3, 20, endpoint=True)\nhist_func = partial(np.histogram, bins=edges)\n\n# set up style cycles\ncolor_cycle = cycler(facecolor=plt.rcParams['axes.prop_cycle'][:4])\nlabel_cycle = cycler(label=['set {n}'.format(n=n) for n in range(4)])\nhatch_cycle = cycler(hatch=['/', '*', '+', '|'])\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nstack_data = np.random.randn(4, 12250)\ndict_data = OrderedDict(zip((c['label'] for c in label_cycle), stack_data))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Work with plain arrays\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5), tight_layout=True)\narts = stack_hist(ax1, stack_data, color_cycle + label_cycle + hatch_cycle,\n hist_func=hist_func)\n\narts = stack_hist(ax2, stack_data, color_cycle,\n hist_func=hist_func,\n plot_kwargs=dict(edgecolor='w', orientation='h'))\nax1.set_ylabel('counts')\nax1.set_xlabel('x')\nax2.set_xlabel('counts')\nax2.set_ylabel('x')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Work with labeled data\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5),\n tight_layout=True, sharey=True)\n\narts = stack_hist(ax1, dict_data, color_cycle + hatch_cycle,\n hist_func=hist_func)\n\narts = stack_hist(ax2, dict_data, color_cycle + hatch_cycle,\n hist_func=hist_func, labels=['set 0', 'set 3'])\nax1.xaxis.set_major_locator(mticker.MaxNLocator(5))\nax1.set_xlabel('counts')\nax1.set_ylabel('x')\nax2.set_ylabel('x')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.fill_betweenx\nmatplotlib.axes.Axes.fill_between\nmatplotlib.axis.Axis.set_major_locator" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f013196562d8ed9e08ee897d0199db8d/arrow_guide.ipynb b/_downloads/f013196562d8ed9e08ee897d0199db8d/arrow_guide.ipynb deleted file mode 120000 index c2151ee2c89..00000000000 --- a/_downloads/f013196562d8ed9e08ee897d0199db8d/arrow_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f013196562d8ed9e08ee897d0199db8d/arrow_guide.ipynb \ No newline at end of file diff --git a/_downloads/f013ff3ebce4527073d2f33388d82c8a/tricontour3d.py b/_downloads/f013ff3ebce4527073d2f33388d82c8a/tricontour3d.py deleted file mode 120000 index a38552180fe..00000000000 --- a/_downloads/f013ff3ebce4527073d2f33388d82c8a/tricontour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f013ff3ebce4527073d2f33388d82c8a/tricontour3d.py \ No newline at end of file diff --git a/_downloads/f01d2f67104f48f1d3dc55f9a9b0cd4d/artist_reference.ipynb b/_downloads/f01d2f67104f48f1d3dc55f9a9b0cd4d/artist_reference.ipynb deleted file mode 100644 index 605f97ff4dc..00000000000 --- a/_downloads/f01d2f67104f48f1d3dc55f9a9b0cd4d/artist_reference.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Reference for Matplotlib artists\n\n\nThis example displays several of Matplotlib's graphics primitives (artists)\ndrawn using matplotlib API. A full list of artists and the documentation is\navailable at `the artist API `.\n\nCopyright (c) 2010, Bartosz Telenczuk\nBSD License\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.path as mpath\nimport matplotlib.lines as mlines\nimport matplotlib.patches as mpatches\nfrom matplotlib.collections import PatchCollection\n\n\ndef label(xy, text):\n y = xy[1] - 0.15 # shift y-value for label so that it's below the artist\n plt.text(xy[0], y, text, ha=\"center\", family='sans-serif', size=14)\n\n\nfig, ax = plt.subplots()\n# create 3x3 grid to plot the artists\ngrid = np.mgrid[0.2:0.8:3j, 0.2:0.8:3j].reshape(2, -1).T\n\npatches = []\n\n# add a circle\ncircle = mpatches.Circle(grid[0], 0.1, ec=\"none\")\npatches.append(circle)\nlabel(grid[0], \"Circle\")\n\n# add a rectangle\nrect = mpatches.Rectangle(grid[1] - [0.025, 0.05], 0.05, 0.1, ec=\"none\")\npatches.append(rect)\nlabel(grid[1], \"Rectangle\")\n\n# add a wedge\nwedge = mpatches.Wedge(grid[2], 0.1, 30, 270, ec=\"none\")\npatches.append(wedge)\nlabel(grid[2], \"Wedge\")\n\n# add a Polygon\npolygon = mpatches.RegularPolygon(grid[3], 5, 0.1)\npatches.append(polygon)\nlabel(grid[3], \"Polygon\")\n\n# add an ellipse\nellipse = mpatches.Ellipse(grid[4], 0.2, 0.1)\npatches.append(ellipse)\nlabel(grid[4], \"Ellipse\")\n\n# add an arrow\narrow = mpatches.Arrow(grid[5, 0] - 0.05, grid[5, 1] - 0.05, 0.1, 0.1,\n width=0.1)\npatches.append(arrow)\nlabel(grid[5], \"Arrow\")\n\n# add a path patch\nPath = mpath.Path\npath_data = [\n (Path.MOVETO, [0.018, -0.11]),\n (Path.CURVE4, [-0.031, -0.051]),\n (Path.CURVE4, [-0.115, 0.073]),\n (Path.CURVE4, [-0.03, 0.073]),\n (Path.LINETO, [-0.011, 0.039]),\n (Path.CURVE4, [0.043, 0.121]),\n (Path.CURVE4, [0.075, -0.005]),\n (Path.CURVE4, [0.035, -0.027]),\n (Path.CLOSEPOLY, [0.018, -0.11])]\ncodes, verts = zip(*path_data)\npath = mpath.Path(verts + grid[6], codes)\npatch = mpatches.PathPatch(path)\npatches.append(patch)\nlabel(grid[6], \"PathPatch\")\n\n# add a fancy box\nfancybox = mpatches.FancyBboxPatch(\n grid[7] - [0.025, 0.05], 0.05, 0.1,\n boxstyle=mpatches.BoxStyle(\"Round\", pad=0.02))\npatches.append(fancybox)\nlabel(grid[7], \"FancyBboxPatch\")\n\n# add a line\nx, y = np.array([[-0.06, 0.0, 0.1], [0.05, -0.05, 0.05]])\nline = mlines.Line2D(x + grid[8, 0], y + grid[8, 1], lw=5., alpha=0.3)\nlabel(grid[8], \"Line2D\")\n\ncolors = np.linspace(0, 1, len(patches))\ncollection = PatchCollection(patches, cmap=plt.cm.hsv, alpha=0.3)\ncollection.set_array(np.array(colors))\nax.add_collection(collection)\nax.add_line(line)\n\nplt.axis('equal')\nplt.axis('off')\nplt.tight_layout()\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.path\nmatplotlib.path.Path\nmatplotlib.lines\nmatplotlib.lines.Line2D\nmatplotlib.patches\nmatplotlib.patches.Circle\nmatplotlib.patches.Ellipse\nmatplotlib.patches.Wedge\nmatplotlib.patches.Rectangle\nmatplotlib.patches.Arrow\nmatplotlib.patches.PathPatch\nmatplotlib.patches.FancyBboxPatch\nmatplotlib.patches.RegularPolygon\nmatplotlib.collections\nmatplotlib.collections.PatchCollection\nmatplotlib.cm.ScalarMappable.set_array\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.add_line" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f0205d3c9ba3b36b3d8c7576386a4308/align_labels_demo.py b/_downloads/f0205d3c9ba3b36b3d8c7576386a4308/align_labels_demo.py deleted file mode 120000 index b6daa713398..00000000000 --- a/_downloads/f0205d3c9ba3b36b3d8c7576386a4308/align_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f0205d3c9ba3b36b3d8c7576386a4308/align_labels_demo.py \ No newline at end of file diff --git a/_downloads/f021dfe4744ae82ed6056f26b0203545/bachelors_degrees_by_gender.ipynb b/_downloads/f021dfe4744ae82ed6056f26b0203545/bachelors_degrees_by_gender.ipynb deleted file mode 120000 index 954c7dde2be..00000000000 --- a/_downloads/f021dfe4744ae82ed6056f26b0203545/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/f021dfe4744ae82ed6056f26b0203545/bachelors_degrees_by_gender.ipynb \ No newline at end of file diff --git a/_downloads/f02406e835291e2e3e48be92e1934830/path_patch.ipynb b/_downloads/f02406e835291e2e3e48be92e1934830/path_patch.ipynb deleted file mode 120000 index 7e0877e8145..00000000000 --- a/_downloads/f02406e835291e2e3e48be92e1934830/path_patch.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f02406e835291e2e3e48be92e1934830/path_patch.ipynb \ No newline at end of file diff --git a/_downloads/f02fc2b2afc88d4c8e9d0c3c9c0d9afc/svg_tooltip_sgskip.py b/_downloads/f02fc2b2afc88d4c8e9d0c3c9c0d9afc/svg_tooltip_sgskip.py deleted file mode 120000 index 4e3017e7741..00000000000 --- a/_downloads/f02fc2b2afc88d4c8e9d0c3c9c0d9afc/svg_tooltip_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f02fc2b2afc88d4c8e9d0c3c9c0d9afc/svg_tooltip_sgskip.py \ No newline at end of file diff --git a/_downloads/f03c118dcdae01c33c1d4aad1d7ab4a6/logos2.py b/_downloads/f03c118dcdae01c33c1d4aad1d7ab4a6/logos2.py deleted file mode 120000 index 03c0b0b6658..00000000000 --- a/_downloads/f03c118dcdae01c33c1d4aad1d7ab4a6/logos2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f03c118dcdae01c33c1d4aad1d7ab4a6/logos2.py \ No newline at end of file diff --git a/_downloads/f0464b60f3d0eca1718a7ab6747faa06/quiver_demo.py b/_downloads/f0464b60f3d0eca1718a7ab6747faa06/quiver_demo.py deleted file mode 120000 index 31ba0712ecc..00000000000 --- a/_downloads/f0464b60f3d0eca1718a7ab6747faa06/quiver_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f0464b60f3d0eca1718a7ab6747faa06/quiver_demo.py \ No newline at end of file diff --git a/_downloads/f0479f66eb3da4292082d3037038cf07/timers.py b/_downloads/f0479f66eb3da4292082d3037038cf07/timers.py deleted file mode 100644 index aba9393699d..00000000000 --- a/_downloads/f0479f66eb3da4292082d3037038cf07/timers.py +++ /dev/null @@ -1,35 +0,0 @@ -""" -====== -Timers -====== - -Simple example of using general timer objects. This is used to update -the time placed in the title of the figure. -""" -import matplotlib.pyplot as plt -import numpy as np -from datetime import datetime - - -def update_title(axes): - axes.set_title(datetime.now()) - axes.figure.canvas.draw() - -fig, ax = plt.subplots() - -x = np.linspace(-3, 3) -ax.plot(x, x ** 2) - -# Create a new timer object. Set the interval to 100 milliseconds -# (1000 is default) and tell the timer what function should be called. -timer = fig.canvas.new_timer(interval=100) -timer.add_callback(update_title, ax) -timer.start() - -# Or could start the timer on first figure draw -#def start_timer(evt): -# timer.start() -# fig.canvas.mpl_disconnect(drawid) -#drawid = fig.canvas.mpl_connect('draw_event', start_timer) - -plt.show() diff --git a/_downloads/f0496b7a474b2aba779f181f59e89654/voxels.ipynb b/_downloads/f0496b7a474b2aba779f181f59e89654/voxels.ipynb deleted file mode 120000 index 4f91921a2de..00000000000 --- a/_downloads/f0496b7a474b2aba779f181f59e89654/voxels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f0496b7a474b2aba779f181f59e89654/voxels.ipynb \ No newline at end of file diff --git a/_downloads/f04aad1bd8172bb26256958f5aa01f2a/demo_anchored_direction_arrows.py b/_downloads/f04aad1bd8172bb26256958f5aa01f2a/demo_anchored_direction_arrows.py deleted file mode 100644 index d9b1eb2cc58..00000000000 --- a/_downloads/f04aad1bd8172bb26256958f5aa01f2a/demo_anchored_direction_arrows.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -============================= -Demo Anchored Direction Arrow -============================= - -""" -import matplotlib.pyplot as plt -import numpy as np -from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDirectionArrows -import matplotlib.font_manager as fm - -fig, ax = plt.subplots() -ax.imshow(np.random.random((10, 10))) - -# Simple example -simple_arrow = AnchoredDirectionArrows(ax.transAxes, 'X', 'Y') -ax.add_artist(simple_arrow) - -# High contrast arrow -high_contrast_part_1 = AnchoredDirectionArrows( - ax.transAxes, - '111', r'11$\overline{2}$', - loc='upper right', - arrow_props={'ec': 'w', 'fc': 'none', 'alpha': 1, - 'lw': 2} - ) -ax.add_artist(high_contrast_part_1) - -high_contrast_part_2 = AnchoredDirectionArrows( - ax.transAxes, - '111', r'11$\overline{2}$', - loc='upper right', - arrow_props={'ec': 'none', 'fc': 'k'}, - text_props={'ec': 'w', 'fc': 'k', 'lw': 0.4} - ) -ax.add_artist(high_contrast_part_2) - -# Rotated arrow -fontprops = fm.FontProperties(family='serif') - -roatated_arrow = AnchoredDirectionArrows( - ax.transAxes, - '30', '120', - loc='center', - color='w', - angle=30, - fontproperties=fontprops - ) -ax.add_artist(roatated_arrow) - -# Altering arrow directions -a1 = AnchoredDirectionArrows( - ax.transAxes, 'A', 'B', loc='lower center', - length=-0.15, - sep_x=0.03, sep_y=0.03, - color='r' - ) -ax.add_artist(a1) - -a2 = AnchoredDirectionArrows( - ax.transAxes, 'A', ' B', loc='lower left', - aspect_ratio=-1, - sep_x=0.01, sep_y=-0.02, - color='orange' - ) -ax.add_artist(a2) - - -a3 = AnchoredDirectionArrows( - ax.transAxes, ' A', 'B', loc='lower right', - length=-0.15, - aspect_ratio=-1, - sep_y=-0.1, sep_x=0.04, - color='cyan' - ) -ax.add_artist(a3) - -plt.show() diff --git a/_downloads/f04b2985306151b7b61a8b27c455857e/demo_constrained_layout.ipynb b/_downloads/f04b2985306151b7b61a8b27c455857e/demo_constrained_layout.ipynb deleted file mode 100644 index 43b2ea95b9d..00000000000 --- a/_downloads/f04b2985306151b7b61a8b27c455857e/demo_constrained_layout.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Resizing axes with constrained layout\n\n\nConstrained layout attempts to resize subplots in\na figure so that there are no overlaps between axes objects and labels\non the axes.\n\nSee :doc:`/tutorials/intermediate/constrainedlayout_guide` for more details and\n:doc:`/tutorials/intermediate/tight_layout_guide` for an alternative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef example_plot(ax):\n ax.plot([1, 2])\n ax.set_xlabel('x-label', fontsize=12)\n ax.set_ylabel('y-label', fontsize=12)\n ax.set_title('Title', fontsize=14)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If we don't use constrained_layout, then labels overlap the axes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=False)\n\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "adding ``constrained_layout=True`` automatically adjusts.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True)\n\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Below is a more complicated example using nested gridspecs.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\n\nimport matplotlib.gridspec as gridspec\n\ngs0 = gridspec.GridSpec(1, 2, figure=fig)\n\ngs1 = gridspec.GridSpecFromSubplotSpec(3, 1, subplot_spec=gs0[0])\nfor n in range(3):\n ax = fig.add_subplot(gs1[n])\n example_plot(ax)\n\n\ngs2 = gridspec.GridSpecFromSubplotSpec(2, 1, subplot_spec=gs0[1])\nfor n in range(2):\n ax = fig.add_subplot(gs2[n])\n example_plot(ax)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.gridspec.GridSpec\nmatplotlib.gridspec.GridSpecFromSubplotSpec" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f059c02c94dea59a9e781054852c3ae3/load_converter.py b/_downloads/f059c02c94dea59a9e781054852c3ae3/load_converter.py deleted file mode 120000 index 008667e8167..00000000000 --- a/_downloads/f059c02c94dea59a9e781054852c3ae3/load_converter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f059c02c94dea59a9e781054852c3ae3/load_converter.py \ No newline at end of file diff --git a/_downloads/f061868cbb12c910b927cae337afd628/matshow.ipynb b/_downloads/f061868cbb12c910b927cae337afd628/matshow.ipynb deleted file mode 120000 index 2aa6c233e7f..00000000000 --- a/_downloads/f061868cbb12c910b927cae337afd628/matshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f061868cbb12c910b927cae337afd628/matshow.ipynb \ No newline at end of file diff --git a/_downloads/f084f9a59c644530b252c3cdf9dfe6b1/date_demo_rrule.py b/_downloads/f084f9a59c644530b252c3cdf9dfe6b1/date_demo_rrule.py deleted file mode 100644 index dec7e07b716..00000000000 --- a/_downloads/f084f9a59c644530b252c3cdf9dfe6b1/date_demo_rrule.py +++ /dev/null @@ -1,39 +0,0 @@ -""" -=============== -Date Demo Rrule -=============== - -Show how to use an rrule instance to make a custom date ticker - here -we put a tick mark on every 5th easter - -See https://dateutil.readthedocs.io/en/stable/ for help with rrules -""" -import matplotlib.pyplot as plt -from matplotlib.dates import (YEARLY, DateFormatter, - rrulewrapper, RRuleLocator, drange) -import numpy as np -import datetime - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# tick every 5th easter -rule = rrulewrapper(YEARLY, byeaster=1, interval=5) -loc = RRuleLocator(rule) -formatter = DateFormatter('%m/%d/%y') -date1 = datetime.date(1952, 1, 1) -date2 = datetime.date(2004, 4, 12) -delta = datetime.timedelta(days=100) - -dates = drange(date1, date2, delta) -s = np.random.rand(len(dates)) # make up some random y values - - -fig, ax = plt.subplots() -plt.plot_date(dates, s) -ax.xaxis.set_major_locator(loc) -ax.xaxis.set_major_formatter(formatter) -ax.xaxis.set_tick_params(rotation=30, labelsize=10) - -plt.show() diff --git a/_downloads/f0bd9e3aed72219253100467fcbb3953/barh.ipynb b/_downloads/f0bd9e3aed72219253100467fcbb3953/barh.ipynb deleted file mode 120000 index 98263cc4b0a..00000000000 --- a/_downloads/f0bd9e3aed72219253100467fcbb3953/barh.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f0bd9e3aed72219253100467fcbb3953/barh.ipynb \ No newline at end of file diff --git a/_downloads/f0beb7eea6dc3d387399ea0aca6c529b/gridspec_and_subplots.ipynb b/_downloads/f0beb7eea6dc3d387399ea0aca6c529b/gridspec_and_subplots.ipynb deleted file mode 120000 index 9b54b6bbf2f..00000000000 --- a/_downloads/f0beb7eea6dc3d387399ea0aca6c529b/gridspec_and_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f0beb7eea6dc3d387399ea0aca6c529b/gridspec_and_subplots.ipynb \ No newline at end of file diff --git a/_downloads/f0c3333ddcffe4bc9857f0e391b47778/text_alignment.py b/_downloads/f0c3333ddcffe4bc9857f0e391b47778/text_alignment.py deleted file mode 120000 index 162ddfe7a9e..00000000000 --- a/_downloads/f0c3333ddcffe4bc9857f0e391b47778/text_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f0c3333ddcffe4bc9857f0e391b47778/text_alignment.py \ No newline at end of file diff --git a/_downloads/f0ca669de42c685f1775067bfde19c9a/confidence_ellipse.py b/_downloads/f0ca669de42c685f1775067bfde19c9a/confidence_ellipse.py deleted file mode 120000 index 48594e4e36c..00000000000 --- a/_downloads/f0ca669de42c685f1775067bfde19c9a/confidence_ellipse.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f0ca669de42c685f1775067bfde19c9a/confidence_ellipse.py \ No newline at end of file diff --git a/_downloads/f0cbc9c8475210fb4278aff580746c3b/linestyles.ipynb b/_downloads/f0cbc9c8475210fb4278aff580746c3b/linestyles.ipynb deleted file mode 100644 index 0293129a88a..00000000000 --- a/_downloads/f0cbc9c8475210fb4278aff580746c3b/linestyles.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Linestyles\n\n\nSimple linestyles can be defined using the strings \"solid\", \"dotted\", \"dashed\"\nor \"dashdot\". More refined control can be achieved by providing a dash tuple\n``(offset, (on_off_seq))``. For example, ``(0, (3, 10, 1, 15))`` means\n(3pt line, 10pt space, 1pt line, 15pt space) with no offset. See also\n`.Line2D.set_linestyle`.\n\n*Note*: The dash style can also be configured via `.Line2D.set_dashes`\nas shown in :doc:`/gallery/lines_bars_and_markers/line_demo_dash_control`\nand passing a list of dash sequences using the keyword *dashes* to the\ncycler in :doc:`property_cycle `.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nlinestyle_str = [\n ('solid', 'solid'), # Same as (0, ()) or '-'\n ('dotted', 'dotted'), # Same as (0, (1, 1)) or '.'\n ('dashed', 'dashed'), # Same as '--'\n ('dashdot', 'dashdot')] # Same as '-.'\n\nlinestyle_tuple = [\n ('loosely dotted', (0, (1, 10))),\n ('dotted', (0, (1, 1))),\n ('densely dotted', (0, (1, 1))),\n\n ('loosely dashed', (0, (5, 10))),\n ('dashed', (0, (5, 5))),\n ('densely dashed', (0, (5, 1))),\n\n ('loosely dashdotted', (0, (3, 10, 1, 10))),\n ('dashdotted', (0, (3, 5, 1, 5))),\n ('densely dashdotted', (0, (3, 1, 1, 1))),\n\n ('dashdotdotted', (0, (3, 5, 1, 5, 1, 5))),\n ('loosely dashdotdotted', (0, (3, 10, 1, 10, 1, 10))),\n ('densely dashdotdotted', (0, (3, 1, 1, 1, 1, 1)))]\n\n\ndef plot_linestyles(ax, linestyles):\n X, Y = np.linspace(0, 100, 10), np.zeros(10)\n yticklabels = []\n\n for i, (name, linestyle) in enumerate(linestyles):\n ax.plot(X, Y+i, linestyle=linestyle, linewidth=1.5, color='black')\n yticklabels.append(name)\n\n ax.set(xticks=[], ylim=(-0.5, len(linestyles)-0.5),\n yticks=np.arange(len(linestyles)), yticklabels=yticklabels)\n\n # For each line style, add a text annotation with a small offset from\n # the reference point (0 in Axes coords, y tick value in Data coords).\n for i, (name, linestyle) in enumerate(linestyles):\n ax.annotate(repr(linestyle),\n xy=(0.0, i), xycoords=ax.get_yaxis_transform(),\n xytext=(-6, -12), textcoords='offset points',\n color=\"blue\", fontsize=8, ha=\"right\", family=\"monospace\")\n\n\nfig, (ax0, ax1) = plt.subplots(2, 1, gridspec_kw={'height_ratios': [1, 3]},\n figsize=(10, 8))\n\nplot_linestyles(ax0, linestyle_str[::-1])\nplot_linestyles(ax1, linestyle_tuple[::-1])\n\nplt.tight_layout()\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f0d336e8e8216e760629698bcc939b63/mathtext_asarray.py b/_downloads/f0d336e8e8216e760629698bcc939b63/mathtext_asarray.py deleted file mode 120000 index dbf03ebda58..00000000000 --- a/_downloads/f0d336e8e8216e760629698bcc939b63/mathtext_asarray.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f0d336e8e8216e760629698bcc939b63/mathtext_asarray.py \ No newline at end of file diff --git a/_downloads/f0db467b0fc391aff1488f2bcab4c7ab/annotation_polar.ipynb b/_downloads/f0db467b0fc391aff1488f2bcab4c7ab/annotation_polar.ipynb deleted file mode 100644 index c8ecdd4d578..00000000000 --- a/_downloads/f0db467b0fc391aff1488f2bcab4c7ab/annotation_polar.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotation Polar\n\n\nThis example shows how to create an annotation on a polar graph.\n\nFor a complete overview of the annotation capabilities, also see the\n:doc:`annotation tutorial`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nax = fig.add_subplot(111, polar=True)\nr = np.arange(0,1,0.001)\ntheta = 2 * 2*np.pi * r\nline, = ax.plot(theta, r, color='#ee8d18', lw=3)\n\nind = 800\nthisr, thistheta = r[ind], theta[ind]\nax.plot([thistheta], [thisr], 'o')\nax.annotate('a polar annotation',\n xy=(thistheta, thisr), # theta, radius\n xytext=(0.05, 0.05), # fraction, fraction\n textcoords='figure fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n horizontalalignment='left',\n verticalalignment='bottom',\n )\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.projections.polar\nmatplotlib.axes.Axes.annotate\nmatplotlib.pyplot.annotate" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f0dbf56bf0486bc6aef009b7caa8a7c3/xcorr_acorr_demo.py b/_downloads/f0dbf56bf0486bc6aef009b7caa8a7c3/xcorr_acorr_demo.py deleted file mode 120000 index 3e49c3ab8b0..00000000000 --- a/_downloads/f0dbf56bf0486bc6aef009b7caa8a7c3/xcorr_acorr_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f0dbf56bf0486bc6aef009b7caa8a7c3/xcorr_acorr_demo.py \ No newline at end of file diff --git a/_downloads/f0e24b2d6cd8de718d4b4b0dc7a65396/rectangle_selector.ipynb b/_downloads/f0e24b2d6cd8de718d4b4b0dc7a65396/rectangle_selector.ipynb deleted file mode 120000 index ce29b6e2a9c..00000000000 --- a/_downloads/f0e24b2d6cd8de718d4b4b0dc7a65396/rectangle_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f0e24b2d6cd8de718d4b4b0dc7a65396/rectangle_selector.ipynb \ No newline at end of file diff --git a/_downloads/f0e3a6970a6493ba162eaa059ae0a4da/tricontour_demo.ipynb b/_downloads/f0e3a6970a6493ba162eaa059ae0a4da/tricontour_demo.ipynb deleted file mode 100644 index 26459baa79b..00000000000 --- a/_downloads/f0e3a6970a6493ba162eaa059ae0a4da/tricontour_demo.ipynb +++ /dev/null @@ -1,144 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tricontour Demo\n\n\nContour plots of unstructured triangular grids.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating a Triangulation without specifying the triangles results in the\nDelaunay triangulation of the points.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# First create the x and y coordinates of the points.\nn_angles = 48\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi / n_angles\n\nx = (radii * np.cos(angles)).flatten()\ny = (radii * np.sin(angles)).flatten()\nz = (np.cos(radii) * np.cos(3 * angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = tri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\ntriang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),\n y[triang.triangles].mean(axis=1))\n < min_radius)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "pcolor plot.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig1, ax1 = plt.subplots()\nax1.set_aspect('equal')\ntcf = ax1.tricontourf(triang, z)\nfig1.colorbar(tcf)\nax1.tricontour(triang, z, colors='k')\nax1.set_title('Contour plot of Delaunay triangulation')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can specify your own triangulation rather than perform a Delaunay\ntriangulation of the points, where each triangle is given by the indices of\nthe three points that make up the triangle, ordered in either a clockwise or\nanticlockwise manner.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xy = np.asarray([\n [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890],\n [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898],\n [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919],\n [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949],\n [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959],\n [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965],\n [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980],\n [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996],\n [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021],\n [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005],\n [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987],\n [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968],\n [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926],\n [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905],\n [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886],\n [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879],\n [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872],\n [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933],\n [-0.077, 0.990], [-0.059, 0.993]])\nx = np.degrees(xy[:, 0])\ny = np.degrees(xy[:, 1])\nx0 = -5\ny0 = 52\nz = np.exp(-0.01 * ((x - x0) ** 2 + (y - y0) ** 2))\n\ntriangles = np.asarray([\n [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64],\n [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63],\n [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68],\n [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7],\n [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9],\n [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12],\n [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71],\n [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71],\n [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19],\n [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24],\n [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28],\n [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45],\n [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40],\n [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40],\n [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38],\n [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Rather than create a Triangulation object, can simply pass x, y and triangles\narrays to tripcolor directly. It would be better to use a Triangulation\nobject if the same triangulation was to be used more than once to save\nduplicated calculations.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig2, ax2 = plt.subplots()\nax2.set_aspect('equal')\ntcf = ax2.tricontourf(x, y, triangles, z)\nfig2.colorbar(tcf)\nax2.set_title('Contour plot of user-specified triangulation')\nax2.set_xlabel('Longitude (degrees)')\nax2.set_ylabel('Latitude (degrees)')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf\nmatplotlib.tri.Triangulation" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f0e3b90ed39cf4ce3d0a2ce8f9a5adad/embedding_in_wx4_sgskip.py b/_downloads/f0e3b90ed39cf4ce3d0a2ce8f9a5adad/embedding_in_wx4_sgskip.py deleted file mode 120000 index 1814c840ed6..00000000000 --- a/_downloads/f0e3b90ed39cf4ce3d0a2ce8f9a5adad/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f0e3b90ed39cf4ce3d0a2ce8f9a5adad/embedding_in_wx4_sgskip.py \ No newline at end of file diff --git a/_downloads/f0ef0deacb2935d84f0e2e3a0d647c71/pyplot_two_subplots.py b/_downloads/f0ef0deacb2935d84f0e2e3a0d647c71/pyplot_two_subplots.py deleted file mode 120000 index b0dedad86b9..00000000000 --- a/_downloads/f0ef0deacb2935d84f0e2e3a0d647c71/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f0ef0deacb2935d84f0e2e3a0d647c71/pyplot_two_subplots.py \ No newline at end of file diff --git a/_downloads/f0f33b6d1c061823e3e3f6ed559223ff/contour_manual.py b/_downloads/f0f33b6d1c061823e3e3f6ed559223ff/contour_manual.py deleted file mode 120000 index 8286564f0b5..00000000000 --- a/_downloads/f0f33b6d1c061823e3e3f6ed559223ff/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f0f33b6d1c061823e3e3f6ed559223ff/contour_manual.py \ No newline at end of file diff --git a/_downloads/f0fd90208d4d752320d1064f95e09ffd/surface3d.ipynb b/_downloads/f0fd90208d4d752320d1064f95e09ffd/surface3d.ipynb deleted file mode 120000 index 988b4000cab..00000000000 --- a/_downloads/f0fd90208d4d752320d1064f95e09ffd/surface3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f0fd90208d4d752320d1064f95e09ffd/surface3d.ipynb \ No newline at end of file diff --git a/_downloads/f10e9bd9a428d8527258106c962f6359/whats_new_99_axes_grid.ipynb b/_downloads/f10e9bd9a428d8527258106c962f6359/whats_new_99_axes_grid.ipynb deleted file mode 120000 index ea996fc1cbe..00000000000 --- a/_downloads/f10e9bd9a428d8527258106c962f6359/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f10e9bd9a428d8527258106c962f6359/whats_new_99_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/f11505373d477748b01aa4f6f23d905b/radian_demo.ipynb b/_downloads/f11505373d477748b01aa4f6f23d905b/radian_demo.ipynb deleted file mode 120000 index d266d647da9..00000000000 --- a/_downloads/f11505373d477748b01aa4f6f23d905b/radian_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f11505373d477748b01aa4f6f23d905b/radian_demo.ipynb \ No newline at end of file diff --git a/_downloads/f11eb6d5249a880d9214fbae8ae42aec/scatter.ipynb b/_downloads/f11eb6d5249a880d9214fbae8ae42aec/scatter.ipynb deleted file mode 120000 index bad42654622..00000000000 --- a/_downloads/f11eb6d5249a880d9214fbae8ae42aec/scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f11eb6d5249a880d9214fbae8ae42aec/scatter.ipynb \ No newline at end of file diff --git a/_downloads/f1258bd7aa03d9c2b5f6676cd1b7cd3a/whats_new_98_4_fill_between.ipynb b/_downloads/f1258bd7aa03d9c2b5f6676cd1b7cd3a/whats_new_98_4_fill_between.ipynb deleted file mode 120000 index 786c09b7116..00000000000 --- a/_downloads/f1258bd7aa03d9c2b5f6676cd1b7cd3a/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1258bd7aa03d9c2b5f6676cd1b7cd3a/whats_new_98_4_fill_between.ipynb \ No newline at end of file diff --git a/_downloads/f1259ad898133e17f1e2016304049449/whats_new_98_4_fill_between.ipynb b/_downloads/f1259ad898133e17f1e2016304049449/whats_new_98_4_fill_between.ipynb deleted file mode 120000 index c62f6dbc814..00000000000 --- a/_downloads/f1259ad898133e17f1e2016304049449/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f1259ad898133e17f1e2016304049449/whats_new_98_4_fill_between.ipynb \ No newline at end of file diff --git a/_downloads/f12d23d08e0782494f126de495af1c2d/slider_demo.py b/_downloads/f12d23d08e0782494f126de495af1c2d/slider_demo.py deleted file mode 120000 index bac10076b5d..00000000000 --- a/_downloads/f12d23d08e0782494f126de495af1c2d/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f12d23d08e0782494f126de495af1c2d/slider_demo.py \ No newline at end of file diff --git a/_downloads/f12f2a8602f82afffe394b50b191e56e/line_with_text.ipynb b/_downloads/f12f2a8602f82afffe394b50b191e56e/line_with_text.ipynb deleted file mode 120000 index 5b718f053cf..00000000000 --- a/_downloads/f12f2a8602f82afffe394b50b191e56e/line_with_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f12f2a8602f82afffe394b50b191e56e/line_with_text.ipynb \ No newline at end of file diff --git a/_downloads/f12ff1744cfa1a74de0b239fcac2d791/patch_collection.ipynb b/_downloads/f12ff1744cfa1a74de0b239fcac2d791/patch_collection.ipynb deleted file mode 100644 index 690f76f9f0e..00000000000 --- a/_downloads/f12ff1744cfa1a74de0b239fcac2d791/patch_collection.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n============================\nCircles, Wedges and Polygons\n============================\n\nThis example demonstrates how to use\n:class:`patch collections<~.collections.PatchCollection>`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.patches import Circle, Wedge, Polygon\nfrom matplotlib.collections import PatchCollection\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\n\nresolution = 50 # the number of vertices\nN = 3\nx = np.random.rand(N)\ny = np.random.rand(N)\nradii = 0.1*np.random.rand(N)\npatches = []\nfor x1, y1, r in zip(x, y, radii):\n circle = Circle((x1, y1), r)\n patches.append(circle)\n\nx = np.random.rand(N)\ny = np.random.rand(N)\nradii = 0.1*np.random.rand(N)\ntheta1 = 360.0*np.random.rand(N)\ntheta2 = 360.0*np.random.rand(N)\nfor x1, y1, r, t1, t2 in zip(x, y, radii, theta1, theta2):\n wedge = Wedge((x1, y1), r, t1, t2)\n patches.append(wedge)\n\n# Some limiting conditions on Wedge\npatches += [\n Wedge((.3, .7), .1, 0, 360), # Full circle\n Wedge((.7, .8), .2, 0, 360, width=0.05), # Full ring\n Wedge((.8, .3), .2, 0, 45), # Full sector\n Wedge((.8, .3), .2, 45, 90, width=0.10), # Ring sector\n]\n\nfor i in range(N):\n polygon = Polygon(np.random.rand(N, 2), True)\n patches.append(polygon)\n\ncolors = 100*np.random.rand(len(patches))\np = PatchCollection(patches, alpha=0.4)\np.set_array(np.array(colors))\nax.add_collection(p)\nfig.colorbar(p, ax=ax)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.Circle\nmatplotlib.patches.Wedge\nmatplotlib.patches.Polygon\nmatplotlib.collections.PatchCollection\nmatplotlib.collections.Collection.set_array\nmatplotlib.axes.Axes.add_collection\nmatplotlib.figure.Figure.colorbar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f1342dd37bed40ef960e8f2b5dadfcf5/masked_demo.ipynb b/_downloads/f1342dd37bed40ef960e8f2b5dadfcf5/masked_demo.ipynb deleted file mode 100644 index 8a02301d69c..00000000000 --- a/_downloads/f1342dd37bed40ef960e8f2b5dadfcf5/masked_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Masked Demo\n\n\nPlot lines with points masked out.\n\nThis would typically be used with gappy data, to\nbreak the line at the data gaps.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(0, 2*np.pi, 0.02)\ny = np.sin(x)\ny1 = np.sin(2*x)\ny2 = np.sin(3*x)\nym1 = np.ma.masked_where(y1 > 0.5, y1)\nym2 = np.ma.masked_where(y2 < -0.5, y2)\n\nlines = plt.plot(x, y, x, ym1, x, ym2, 'o')\nplt.setp(lines[0], linewidth=4)\nplt.setp(lines[1], linewidth=2)\nplt.setp(lines[2], markersize=10)\n\nplt.legend(('No mask', 'Masked if > 0.5', 'Masked if < -0.5'),\n loc='upper right')\nplt.title('Masked line demo')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f13d30421bdc7e66c1db30102322aa65/shared_axis_demo.ipynb b/_downloads/f13d30421bdc7e66c1db30102322aa65/shared_axis_demo.ipynb deleted file mode 100644 index 056f0b9af33..00000000000 --- a/_downloads/f13d30421bdc7e66c1db30102322aa65/shared_axis_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Shared Axis Demo\n\n\nYou can share the x or y axis limits for one axis with another by\npassing an axes instance as a sharex or sharey kwarg.\n\nChanging the axis limits on one axes will be reflected automatically\nin the other, and vice-versa, so when you navigate with the toolbar\nthe axes will follow each other on their shared axes. Ditto for\nchanges in the axis scaling (e.g., log vs linear). However, it is\npossible to have differences in tick labeling, e.g., you can selectively\nturn off the tick labels on one axes.\n\nThe example below shows how to customize the tick labels on the\nvarious axes. Shared axes share the tick locator, tick formatter,\nview limits, and transformation (e.g., log, linear). But the ticklabels\nthemselves do not share properties. This is a feature and not a bug,\nbecause you may want to make the tick labels smaller on the upper\naxes, e.g., in the example below.\n\nIf you want to turn off the ticklabels for a given axes (e.g., on\nsubplot(211) or subplot(212), you cannot do the standard trick::\n\n setp(ax2, xticklabels=[])\n\nbecause this changes the tick Formatter, which is shared among all\naxes. But you can alter the visibility of the labels, which is a\nproperty::\n\n setp(ax2.get_xticklabels(), visible=False)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.01, 5.0, 0.01)\ns1 = np.sin(2 * np.pi * t)\ns2 = np.exp(-t)\ns3 = np.sin(4 * np.pi * t)\n\nax1 = plt.subplot(311)\nplt.plot(t, s1)\nplt.setp(ax1.get_xticklabels(), fontsize=6)\n\n# share x only\nax2 = plt.subplot(312, sharex=ax1)\nplt.plot(t, s2)\n# make these tick labels invisible\nplt.setp(ax2.get_xticklabels(), visible=False)\n\n# share x and y\nax3 = plt.subplot(313, sharex=ax1, sharey=ax1)\nplt.plot(t, s3)\nplt.xlim(0.01, 5.0)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f14139317c207cd43ed3daed732bde18/set_and_get.py b/_downloads/f14139317c207cd43ed3daed732bde18/set_and_get.py deleted file mode 120000 index 9a1f6b56b3b..00000000000 --- a/_downloads/f14139317c207cd43ed3daed732bde18/set_and_get.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f14139317c207cd43ed3daed732bde18/set_and_get.py \ No newline at end of file diff --git a/_downloads/f1436c4e12b19479b0738d5aaf6e69a2/logos2.py b/_downloads/f1436c4e12b19479b0738d5aaf6e69a2/logos2.py deleted file mode 120000 index d033c5bee56..00000000000 --- a/_downloads/f1436c4e12b19479b0738d5aaf6e69a2/logos2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1436c4e12b19479b0738d5aaf6e69a2/logos2.py \ No newline at end of file diff --git a/_downloads/f1445d2474765f450209ae461b5db80b/rasterization_demo.ipynb b/_downloads/f1445d2474765f450209ae461b5db80b/rasterization_demo.ipynb deleted file mode 120000 index db0c9e79ed0..00000000000 --- a/_downloads/f1445d2474765f450209ae461b5db80b/rasterization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f1445d2474765f450209ae461b5db80b/rasterization_demo.ipynb \ No newline at end of file diff --git a/_downloads/f1450564c7ca8a80828f2ffc4c7a9919/connect_simple01.ipynb b/_downloads/f1450564c7ca8a80828f2ffc4c7a9919/connect_simple01.ipynb deleted file mode 100644 index 748e402091e..00000000000 --- a/_downloads/f1450564c7ca8a80828f2ffc4c7a9919/connect_simple01.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Connect Simple01\n\n\nA `ConnectionPatch` can be used to draw a line (possibly with arrow head)\nbetween points defined in different coordinate systems and/or axes.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import ConnectionPatch\nimport matplotlib.pyplot as plt\n\nfig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3))\n\n# Draw a simple arrow between two points in axes coordinates\n# within a single axes.\nxyA = (0.2, 0.2)\nxyB = (0.8, 0.8)\ncoordsA = \"data\"\ncoordsB = \"data\"\ncon = ConnectionPatch(xyA, xyB, coordsA, coordsB,\n arrowstyle=\"-|>\", shrinkA=5, shrinkB=5,\n mutation_scale=20, fc=\"w\")\nax1.plot([xyA[0], xyB[0]], [xyA[1], xyB[1]], \"o\")\nax1.add_artist(con)\n\n# Draw an arrow between the same point in data coordinates,\n# but in different axes.\nxy = (0.3, 0.2)\ncoordsA = \"data\"\ncoordsB = \"data\"\ncon = ConnectionPatch(xyA=xy, xyB=xy, coordsA=coordsA, coordsB=coordsB,\n axesA=ax2, axesB=ax1,\n arrowstyle=\"->\", shrinkB=5)\nax2.add_artist(con)\n\n# Draw a line between the different points, defined in different coordinate\n# systems.\nxyA = (0.6, 1.0) # in axes coordinates\nxyB = (0.0, 0.2) # x in axes coordinates, y in data coordinates\ncoordsA = \"axes fraction\"\ncoordsB = ax2.get_yaxis_transform()\ncon = ConnectionPatch(xyA=xyA, xyB=xyB, coordsA=coordsA, coordsB=coordsB,\n arrowstyle=\"-\")\nax2.add_artist(con)\n\nax1.set_xlim(0, 1)\nax1.set_ylim(0, 1)\nax2.set_xlim(0, .5)\nax2.set_ylim(0, .5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f15370f57eecab148564676cebb6ab96/xkcd.py b/_downloads/f15370f57eecab148564676cebb6ab96/xkcd.py deleted file mode 120000 index 505e599864e..00000000000 --- a/_downloads/f15370f57eecab148564676cebb6ab96/xkcd.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f15370f57eecab148564676cebb6ab96/xkcd.py \ No newline at end of file diff --git a/_downloads/f15671be332f6aa608e43d2ac01eb435/fig_x.py b/_downloads/f15671be332f6aa608e43d2ac01eb435/fig_x.py deleted file mode 120000 index 3d85b790f6d..00000000000 --- a/_downloads/f15671be332f6aa608e43d2ac01eb435/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f15671be332f6aa608e43d2ac01eb435/fig_x.py \ No newline at end of file diff --git a/_downloads/f1600b6f3debaa4bdeda74371ed0f362/embedding_in_tk_sgskip.ipynb b/_downloads/f1600b6f3debaa4bdeda74371ed0f362/embedding_in_tk_sgskip.ipynb deleted file mode 120000 index a73d9bf2644..00000000000 --- a/_downloads/f1600b6f3debaa4bdeda74371ed0f362/embedding_in_tk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f1600b6f3debaa4bdeda74371ed0f362/embedding_in_tk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/f1604025de358a438d71d7c524752d11/pyplot.ipynb b/_downloads/f1604025de358a438d71d7c524752d11/pyplot.ipynb deleted file mode 120000 index baefaff139e..00000000000 --- a/_downloads/f1604025de358a438d71d7c524752d11/pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f1604025de358a438d71d7c524752d11/pyplot.ipynb \ No newline at end of file diff --git a/_downloads/f16c8ebfc524344769986d84ddf6d3b2/hexbin_demo.py b/_downloads/f16c8ebfc524344769986d84ddf6d3b2/hexbin_demo.py deleted file mode 120000 index 36444d4b9fb..00000000000 --- a/_downloads/f16c8ebfc524344769986d84ddf6d3b2/hexbin_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f16c8ebfc524344769986d84ddf6d3b2/hexbin_demo.py \ No newline at end of file diff --git a/_downloads/f1799d8fee63eabcf649ac812012d3ce/dollar_ticks.ipynb b/_downloads/f1799d8fee63eabcf649ac812012d3ce/dollar_ticks.ipynb deleted file mode 120000 index 105f22060f8..00000000000 --- a/_downloads/f1799d8fee63eabcf649ac812012d3ce/dollar_ticks.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1799d8fee63eabcf649ac812012d3ce/dollar_ticks.ipynb \ No newline at end of file diff --git a/_downloads/f17b341231ae6f1711268aafa1dd46c5/voxels_torus.py b/_downloads/f17b341231ae6f1711268aafa1dd46c5/voxels_torus.py deleted file mode 120000 index 0959c655420..00000000000 --- a/_downloads/f17b341231ae6f1711268aafa1dd46c5/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f17b341231ae6f1711268aafa1dd46c5/voxels_torus.py \ No newline at end of file diff --git a/_downloads/f17ebdd5d97423e193cdf99d6ae5f7a0/demo_parasite_axes.py b/_downloads/f17ebdd5d97423e193cdf99d6ae5f7a0/demo_parasite_axes.py deleted file mode 120000 index d5bddfb2cf7..00000000000 --- a/_downloads/f17ebdd5d97423e193cdf99d6ae5f7a0/demo_parasite_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f17ebdd5d97423e193cdf99d6ae5f7a0/demo_parasite_axes.py \ No newline at end of file diff --git a/_downloads/f17ffd29081c0b1cd3b4f6a23a90b640/coords_demo.ipynb b/_downloads/f17ffd29081c0b1cd3b4f6a23a90b640/coords_demo.ipynb deleted file mode 120000 index 60da070b2bd..00000000000 --- a/_downloads/f17ffd29081c0b1cd3b4f6a23a90b640/coords_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f17ffd29081c0b1cd3b4f6a23a90b640/coords_demo.ipynb \ No newline at end of file diff --git a/_downloads/f1972d817521a237d5e0e72e1873ac01/ggplot.py b/_downloads/f1972d817521a237d5e0e72e1873ac01/ggplot.py deleted file mode 120000 index 8818809af2d..00000000000 --- a/_downloads/f1972d817521a237d5e0e72e1873ac01/ggplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1972d817521a237d5e0e72e1873ac01/ggplot.py \ No newline at end of file diff --git a/_downloads/f1975f30812dccddbb36d9cb036086f3/simple_axis_pad.py b/_downloads/f1975f30812dccddbb36d9cb036086f3/simple_axis_pad.py deleted file mode 100644 index cac9d84915b..00000000000 --- a/_downloads/f1975f30812dccddbb36d9cb036086f3/simple_axis_pad.py +++ /dev/null @@ -1,109 +0,0 @@ -""" -=============== -Simple Axis Pad -=============== - -""" - -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.angle_helper as angle_helper -import mpl_toolkits.axisartist.grid_finder as grid_finder -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D - -import mpl_toolkits.axisartist as axisartist - -from mpl_toolkits.axisartist.grid_helper_curvelinear import \ - GridHelperCurveLinear - - -def setup_axes(fig, rect): - """ - polar projection, but in a rectangular box. - """ - - # see demo_curvelinear_grid.py for details - tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform() - - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle=360, - lat_cycle=None, - lon_minmax=None, - lat_minmax=(0, np.inf), - ) - - grid_locator1 = angle_helper.LocatorDMS(12) - grid_locator2 = grid_finder.MaxNLocator(5) - - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1 - ) - - ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper) - ax1.axis[:].set_visible(False) - - fig.add_subplot(ax1) - - ax1.set_aspect(1.) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - return ax1 - - -def add_floating_axis1(ax1): - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 30) - axis.label.set_text(r"$\theta = 30^{\circ}$") - axis.label.set_visible(True) - - return axis - - -def add_floating_axis2(ax1): - ax1.axis["lon"] = axis = ax1.new_floating_axis(1, 6) - axis.label.set_text(r"$r = 6$") - axis.label.set_visible(True) - - return axis - - -fig = plt.figure(figsize=(9, 3.)) -fig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99, - wspace=0.01, hspace=0.01) - - -def ann(ax1, d): - if plt.rcParams["text.usetex"]: - d = d.replace("_", r"\_") - - ax1.annotate(d, (0.5, 1), (5, -5), - xycoords="axes fraction", textcoords="offset points", - va="top", ha="center") - - -ax1 = setup_axes(fig, rect=141) -axis = add_floating_axis1(ax1) -ann(ax1, r"default") - -ax1 = setup_axes(fig, rect=142) -axis = add_floating_axis1(ax1) -axis.major_ticklabels.set_pad(10) -ann(ax1, r"ticklabels.set_pad(10)") - -ax1 = setup_axes(fig, rect=143) -axis = add_floating_axis1(ax1) -axis.label.set_pad(20) -ann(ax1, r"label.set_pad(20)") - -ax1 = setup_axes(fig, rect=144) -axis = add_floating_axis1(ax1) -axis.major_ticks.set_tick_out(True) -ann(ax1, "ticks.set_tick_out(True)") - -plt.show() diff --git a/_downloads/f19a67431c10b7f3dd1ac5107acf7d5f/simple_axisline.py b/_downloads/f19a67431c10b7f3dd1ac5107acf7d5f/simple_axisline.py deleted file mode 120000 index 1855d4fdb5c..00000000000 --- a/_downloads/f19a67431c10b7f3dd1ac5107acf7d5f/simple_axisline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f19a67431c10b7f3dd1ac5107acf7d5f/simple_axisline.py \ No newline at end of file diff --git a/_downloads/f1aa7bd6c92c8d9454ba922d845d3d07/plot_streamplot.ipynb b/_downloads/f1aa7bd6c92c8d9454ba922d845d3d07/plot_streamplot.ipynb deleted file mode 120000 index fbe1be66bc6..00000000000 --- a/_downloads/f1aa7bd6c92c8d9454ba922d845d3d07/plot_streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f1aa7bd6c92c8d9454ba922d845d3d07/plot_streamplot.ipynb \ No newline at end of file diff --git a/_downloads/f1ab5985eab2608b9817359a0ceaa22c/major_minor_demo.ipynb b/_downloads/f1ab5985eab2608b9817359a0ceaa22c/major_minor_demo.ipynb deleted file mode 120000 index 292fef8eb26..00000000000 --- a/_downloads/f1ab5985eab2608b9817359a0ceaa22c/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1ab5985eab2608b9817359a0ceaa22c/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/f1accf9d2ce3aa3c438b02d2b3111dd4/colormap_normalizations_symlognorm.ipynb b/_downloads/f1accf9d2ce3aa3c438b02d2b3111dd4/colormap_normalizations_symlognorm.ipynb deleted file mode 120000 index ca24dfc3bfc..00000000000 --- a/_downloads/f1accf9d2ce3aa3c438b02d2b3111dd4/colormap_normalizations_symlognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1accf9d2ce3aa3c438b02d2b3111dd4/colormap_normalizations_symlognorm.ipynb \ No newline at end of file diff --git a/_downloads/f1ae4d59ecd3898684380f6391e3c42c/contour_demo.py b/_downloads/f1ae4d59ecd3898684380f6391e3c42c/contour_demo.py deleted file mode 120000 index 3485cb2fa75..00000000000 --- a/_downloads/f1ae4d59ecd3898684380f6391e3c42c/contour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f1ae4d59ecd3898684380f6391e3c42c/contour_demo.py \ No newline at end of file diff --git a/_downloads/f1b1499ed8a765a5e00f7f294d269903/contour_image.py b/_downloads/f1b1499ed8a765a5e00f7f294d269903/contour_image.py deleted file mode 120000 index 7f86584834d..00000000000 --- a/_downloads/f1b1499ed8a765a5e00f7f294d269903/contour_image.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f1b1499ed8a765a5e00f7f294d269903/contour_image.py \ No newline at end of file diff --git a/_downloads/f1b54eff8c5749b2c7c187251671d6d3/errorbar_limits_simple.py b/_downloads/f1b54eff8c5749b2c7c187251671d6d3/errorbar_limits_simple.py deleted file mode 120000 index 67254bb9702..00000000000 --- a/_downloads/f1b54eff8c5749b2c7c187251671d6d3/errorbar_limits_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1b54eff8c5749b2c7c187251671d6d3/errorbar_limits_simple.py \ No newline at end of file diff --git a/_downloads/f1ba212b12ace4d6884e56e2827de570/integral.ipynb b/_downloads/f1ba212b12ace4d6884e56e2827de570/integral.ipynb deleted file mode 120000 index d42902594f7..00000000000 --- a/_downloads/f1ba212b12ace4d6884e56e2827de570/integral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f1ba212b12ace4d6884e56e2827de570/integral.ipynb \ No newline at end of file diff --git a/_downloads/f1be709c942edf8b968efeac3d92e393/affine_image.py b/_downloads/f1be709c942edf8b968efeac3d92e393/affine_image.py deleted file mode 120000 index ff48646fb61..00000000000 --- a/_downloads/f1be709c942edf8b968efeac3d92e393/affine_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f1be709c942edf8b968efeac3d92e393/affine_image.py \ No newline at end of file diff --git a/_downloads/f1c5ef9e21f2abe98d42118fa31c99c4/histogram_histtypes.ipynb b/_downloads/f1c5ef9e21f2abe98d42118fa31c99c4/histogram_histtypes.ipynb deleted file mode 120000 index a00ec4f9855..00000000000 --- a/_downloads/f1c5ef9e21f2abe98d42118fa31c99c4/histogram_histtypes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f1c5ef9e21f2abe98d42118fa31c99c4/histogram_histtypes.ipynb \ No newline at end of file diff --git a/_downloads/f1c87472d50cca49516373b8b5a8617f/aspect_loglog.ipynb b/_downloads/f1c87472d50cca49516373b8b5a8617f/aspect_loglog.ipynb deleted file mode 120000 index 1c457830330..00000000000 --- a/_downloads/f1c87472d50cca49516373b8b5a8617f/aspect_loglog.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f1c87472d50cca49516373b8b5a8617f/aspect_loglog.ipynb \ No newline at end of file diff --git a/_downloads/f1c976036676798cf419a2793486f107/image_transparency_blend.py b/_downloads/f1c976036676798cf419a2793486f107/image_transparency_blend.py deleted file mode 120000 index 132a23260db..00000000000 --- a/_downloads/f1c976036676798cf419a2793486f107/image_transparency_blend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f1c976036676798cf419a2793486f107/image_transparency_blend.py \ No newline at end of file diff --git a/_downloads/f1cb87cd4cfff39bf3eabe889832aa14/firefox.ipynb b/_downloads/f1cb87cd4cfff39bf3eabe889832aa14/firefox.ipynb deleted file mode 120000 index e80e4a59636..00000000000 --- a/_downloads/f1cb87cd4cfff39bf3eabe889832aa14/firefox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f1cb87cd4cfff39bf3eabe889832aa14/firefox.ipynb \ No newline at end of file diff --git a/_downloads/f1d2078472a870e35f65ff7654bb0cb2/figlegend_demo.ipynb b/_downloads/f1d2078472a870e35f65ff7654bb0cb2/figlegend_demo.ipynb deleted file mode 120000 index 774eb9b7e3b..00000000000 --- a/_downloads/f1d2078472a870e35f65ff7654bb0cb2/figlegend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1d2078472a870e35f65ff7654bb0cb2/figlegend_demo.ipynb \ No newline at end of file diff --git a/_downloads/f1dc0583b704179f720a3839eff6d57c/bxp.ipynb b/_downloads/f1dc0583b704179f720a3839eff6d57c/bxp.ipynb deleted file mode 120000 index a42b16990b4..00000000000 --- a/_downloads/f1dc0583b704179f720a3839eff6d57c/bxp.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f1dc0583b704179f720a3839eff6d57c/bxp.ipynb \ No newline at end of file diff --git a/_downloads/f1dcf9bc7c05dba572cc162dc0d67ec5/stem_plot.py b/_downloads/f1dcf9bc7c05dba572cc162dc0d67ec5/stem_plot.py deleted file mode 120000 index b146398c16f..00000000000 --- a/_downloads/f1dcf9bc7c05dba572cc162dc0d67ec5/stem_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f1dcf9bc7c05dba572cc162dc0d67ec5/stem_plot.py \ No newline at end of file diff --git a/_downloads/f1ddc74848151ae28ed7cd81bda04036/text_alignment.ipynb b/_downloads/f1ddc74848151ae28ed7cd81bda04036/text_alignment.ipynb deleted file mode 120000 index e0f7685b28d..00000000000 --- a/_downloads/f1ddc74848151ae28ed7cd81bda04036/text_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f1ddc74848151ae28ed7cd81bda04036/text_alignment.ipynb \ No newline at end of file diff --git a/_downloads/f1df5c34809957c08b87ceb913f2d516/simple_anchored_artists.ipynb b/_downloads/f1df5c34809957c08b87ceb913f2d516/simple_anchored_artists.ipynb deleted file mode 100644 index a998d05caea..00000000000 --- a/_downloads/f1df5c34809957c08b87ceb913f2d516/simple_anchored_artists.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Anchored Artists\n\n\nThis example illustrates the use of the anchored helper classes found in\n:py:mod:`~matplotlib.offsetbox` and in the `toolkit_axesgrid1-index`.\nAn implementation of a similar figure, but without use of the toolkit,\ncan be found in :doc:`/gallery/misc/anchored_artists`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef draw_text(ax):\n \"\"\"\n Draw two text-boxes, anchored by different corners to the upper-left\n corner of the figure.\n \"\"\"\n from matplotlib.offsetbox import AnchoredText\n at = AnchoredText(\"Figure 1a\",\n loc='upper left', prop=dict(size=8), frameon=True,\n )\n at.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at)\n\n at2 = AnchoredText(\"Figure 1(b)\",\n loc='lower left', prop=dict(size=8), frameon=True,\n bbox_to_anchor=(0., 1.),\n bbox_transform=ax.transAxes\n )\n at2.patch.set_boxstyle(\"round,pad=0.,rounding_size=0.2\")\n ax.add_artist(at2)\n\n\ndef draw_circle(ax):\n \"\"\"\n Draw a circle in axis coordinates\n \"\"\"\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredDrawingArea\n from matplotlib.patches import Circle\n ada = AnchoredDrawingArea(20, 20, 0, 0,\n loc='upper right', pad=0., frameon=False)\n p = Circle((10, 10), 10)\n ada.da.add_artist(p)\n ax.add_artist(ada)\n\n\ndef draw_ellipse(ax):\n \"\"\"\n Draw an ellipse of width=0.1, height=0.15 in data coordinates\n \"\"\"\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredEllipse\n ae = AnchoredEllipse(ax.transData, width=0.1, height=0.15, angle=0.,\n loc='lower left', pad=0.5, borderpad=0.4,\n frameon=True)\n\n ax.add_artist(ae)\n\n\ndef draw_sizebar(ax):\n \"\"\"\n Draw a horizontal bar with length of 0.1 in data coordinates,\n with a fixed label underneath.\n \"\"\"\n from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar\n asb = AnchoredSizeBar(ax.transData,\n 0.1,\n r\"1$^{\\prime}$\",\n loc='lower center',\n pad=0.1, borderpad=0.5, sep=5,\n frameon=False)\n ax.add_artist(asb)\n\n\nax = plt.gca()\nax.set_aspect(1.)\n\ndraw_text(ax)\ndraw_circle(ax)\ndraw_ellipse(ax)\ndraw_sizebar(ax)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f1e85ab564c369487490205a791493b7/shared_axis_demo.py b/_downloads/f1e85ab564c369487490205a791493b7/shared_axis_demo.py deleted file mode 120000 index 35088769fff..00000000000 --- a/_downloads/f1e85ab564c369487490205a791493b7/shared_axis_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f1e85ab564c369487490205a791493b7/shared_axis_demo.py \ No newline at end of file diff --git a/_downloads/f1ed4ae594ac145e58c7d4edf7c3f3e9/colorbar_placement.ipynb b/_downloads/f1ed4ae594ac145e58c7d4edf7c3f3e9/colorbar_placement.ipynb deleted file mode 100644 index 5ab95756671..00000000000 --- a/_downloads/f1ed4ae594ac145e58c7d4edf7c3f3e9/colorbar_placement.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Placing Colorbars\n\n\nColorbars indicate the quantitative extent of image data. Placing in\na figure is non-trivial because room needs to be made for them.\n\nThe simplest case is just attaching a colorbar to each axes:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nfig, axs = plt.subplots(2, 2)\ncm = ['RdBu_r', 'viridis']\nfor col in range(2):\n for row in range(2):\n ax = axs[row, col]\n pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1),\n cmap=cm[col])\n fig.colorbar(pcm, ax=ax)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The first column has the same type of data in both rows, so it may\nbe desirable to combine the colorbar which we do by calling\n`.Figure.colorbar` with a list of axes instead of a single axes.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(2, 2)\ncm = ['RdBu_r', 'viridis']\nfor col in range(2):\n for row in range(2):\n ax = axs[row, col]\n pcm = ax.pcolormesh(np.random.random((20, 20)) * (col + 1),\n cmap=cm[col])\n fig.colorbar(pcm, ax=axs[:, col], shrink=0.6)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Relatively complicated colorbar layouts are possible using this\nparadigm. Note that this example works far better with\n``constrained_layout=True``\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(3, 3, constrained_layout=True)\nfor ax in axs.flat:\n pcm = ax.pcolormesh(np.random.random((20, 20)))\n\nfig.colorbar(pcm, ax=axs[0, :2], shrink=0.6, location='bottom')\nfig.colorbar(pcm, ax=[axs[0, 2]], location='bottom')\nfig.colorbar(pcm, ax=axs[1:, :], location='right', shrink=0.6)\nfig.colorbar(pcm, ax=[axs[2, 1]], location='left')\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f1f0a6797c1de177694e2f16f3a21950/spine_placement_demo.py b/_downloads/f1f0a6797c1de177694e2f16f3a21950/spine_placement_demo.py deleted file mode 120000 index 9821540be0d..00000000000 --- a/_downloads/f1f0a6797c1de177694e2f16f3a21950/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f1f0a6797c1de177694e2f16f3a21950/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/f1ff0c0dc44ce2eac464e90561af3eb4/demo_axes_grid2.py b/_downloads/f1ff0c0dc44ce2eac464e90561af3eb4/demo_axes_grid2.py deleted file mode 100644 index 320d19c9fe1..00000000000 --- a/_downloads/f1ff0c0dc44ce2eac464e90561af3eb4/demo_axes_grid2.py +++ /dev/null @@ -1,116 +0,0 @@ -""" -=============== -Demo Axes Grid2 -=============== - -Grid of images with shared xaxis and yaxis. -""" -import numpy as np - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import ImageGrid -import matplotlib.colors - - -def get_demo_image(): - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def add_inner_title(ax, title, loc, **kwargs): - from matplotlib.offsetbox import AnchoredText - from matplotlib.patheffects import withStroke - prop = dict(path_effects=[withStroke(foreground='w', linewidth=3)], - size=plt.rcParams['legend.fontsize']) - at = AnchoredText(title, loc=loc, prop=prop, - pad=0., borderpad=0.5, - frameon=False, **kwargs) - ax.add_artist(at) - return at - - -fig = plt.figure(figsize=(6, 6)) - -# Prepare images -Z, extent = get_demo_image() -ZS = [Z[i::3, :] for i in range(3)] -extent = extent[0], extent[1]/3., extent[2], extent[3] - -# *** Demo 1: colorbar at each axes *** -grid = ImageGrid(fig, 211, # similar to subplot(211) - nrows_ncols=(1, 3), - direction="row", - axes_pad=0.05, - add_all=True, - label_mode="1", - share_all=True, - cbar_location="top", - cbar_mode="each", - cbar_size="7%", - cbar_pad="1%", - ) - -for ax, z in zip(grid, ZS): - im = ax.imshow( - z, origin="lower", extent=extent, interpolation="nearest") - ax.cax.colorbar(im) - -for ax, im_title in zip(grid, ["Image 1", "Image 2", "Image 3"]): - t = add_inner_title(ax, im_title, loc='lower left') - t.patch.set_alpha(0.5) - -for ax, z in zip(grid, ZS): - ax.cax.toggle_label(True) - #axis = ax.cax.axis[ax.cax.orientation] - #axis.label.set_text("counts s$^{-1}$") - #axis.label.set_size(10) - #axis.major_ticklabels.set_size(6) - -# Changing the colorbar ticks -grid[1].cax.set_xticks([-1, 0, 1]) -grid[2].cax.set_xticks([-1, 0, 1]) - -grid[0].set_xticks([-2, 0]) -grid[0].set_yticks([-2, 0, 2]) - -# *** Demo 2: shared colorbar *** -grid2 = ImageGrid(fig, 212, - nrows_ncols=(1, 3), - direction="row", - axes_pad=0.05, - add_all=True, - label_mode="1", - share_all=True, - cbar_location="right", - cbar_mode="single", - cbar_size="10%", - cbar_pad=0.05, - ) - -grid2[0].set_xlabel("X") -grid2[0].set_ylabel("Y") - -vmax, vmin = np.max(ZS), np.min(ZS) -norm = matplotlib.colors.Normalize(vmax=vmax, vmin=vmin) - -for ax, z in zip(grid2, ZS): - im = ax.imshow(z, norm=norm, - origin="lower", extent=extent, - interpolation="nearest") - -# With cbar_mode="single", cax attribute of all axes are identical. -ax.cax.colorbar(im) -ax.cax.toggle_label(True) - -for ax, im_title in zip(grid2, ["(a)", "(b)", "(c)"]): - t = add_inner_title(ax, im_title, loc='upper left') - t.patch.set_ec("none") - t.patch.set_alpha(0.5) - -grid2[0].set_xticks([-2, 0]) -grid2[0].set_yticks([-2, 0, 2]) - -plt.show() diff --git a/_downloads/f200d9ed18f73fe8f7ddc8ec24ccb610/power_norm.py b/_downloads/f200d9ed18f73fe8f7ddc8ec24ccb610/power_norm.py deleted file mode 100644 index 25db8bd2834..00000000000 --- a/_downloads/f200d9ed18f73fe8f7ddc8ec24ccb610/power_norm.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -======================== -Exploring normalizations -======================== - -Various normalization on a multivariate normal distribution. - -""" - -import matplotlib.pyplot as plt -import matplotlib.colors as mcolors -import numpy as np -from numpy.random import multivariate_normal - -data = np.vstack([ - multivariate_normal([10, 10], [[3, 2], [2, 3]], size=100000), - multivariate_normal([30, 20], [[2, 3], [1, 3]], size=1000) -]) - -gammas = [0.8, 0.5, 0.3] - -fig, axes = plt.subplots(nrows=2, ncols=2) - -axes[0, 0].set_title('Linear normalization') -axes[0, 0].hist2d(data[:, 0], data[:, 1], bins=100) - -for ax, gamma in zip(axes.flat[1:], gammas): - ax.set_title(r'Power law $(\gamma=%1.1f)$' % gamma) - ax.hist2d(data[:, 0], data[:, 1], - bins=100, norm=mcolors.PowerNorm(gamma)) - -fig.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.colors -matplotlib.colors.PowerNorm -matplotlib.axes.Axes.hist2d -matplotlib.pyplot.hist2d diff --git a/_downloads/f20600323cd27710e156a1cbb6efb827/simple_axes_divider2.ipynb b/_downloads/f20600323cd27710e156a1cbb6efb827/simple_axes_divider2.ipynb deleted file mode 120000 index 2a2fdf56169..00000000000 --- a/_downloads/f20600323cd27710e156a1cbb6efb827/simple_axes_divider2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f20600323cd27710e156a1cbb6efb827/simple_axes_divider2.ipynb \ No newline at end of file diff --git a/_downloads/f2074e93be0c881f4e0a32abbade2c58/whats_new_98_4_legend.py b/_downloads/f2074e93be0c881f4e0a32abbade2c58/whats_new_98_4_legend.py deleted file mode 120000 index 1388c50dcdd..00000000000 --- a/_downloads/f2074e93be0c881f4e0a32abbade2c58/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/f2074e93be0c881f4e0a32abbade2c58/whats_new_98_4_legend.py \ No newline at end of file diff --git a/_downloads/f2076fba7844bb6d4247c05ff982d934/demo_gridspec03.py b/_downloads/f2076fba7844bb6d4247c05ff982d934/demo_gridspec03.py deleted file mode 120000 index 8bf81f5f892..00000000000 --- a/_downloads/f2076fba7844bb6d4247c05ff982d934/demo_gridspec03.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f2076fba7844bb6d4247c05ff982d934/demo_gridspec03.py \ No newline at end of file diff --git a/_downloads/f212bd4b40f5a2495052cbc8e29212cd/anchored_box01.py b/_downloads/f212bd4b40f5a2495052cbc8e29212cd/anchored_box01.py deleted file mode 100644 index 00f75c7f551..00000000000 --- a/_downloads/f212bd4b40f5a2495052cbc8e29212cd/anchored_box01.py +++ /dev/null @@ -1,18 +0,0 @@ -""" -============== -Anchored Box01 -============== - -""" -import matplotlib.pyplot as plt -from matplotlib.offsetbox import AnchoredText - - -fig, ax = plt.subplots(figsize=(3, 3)) - -at = AnchoredText("Figure 1a", - prop=dict(size=15), frameon=True, loc='upper left') -at.patch.set_boxstyle("round,pad=0.,rounding_size=0.2") -ax.add_artist(at) - -plt.show() diff --git a/_downloads/f21d55130105ff4c06547b1e1bceb2d7/rain.ipynb b/_downloads/f21d55130105ff4c06547b1e1bceb2d7/rain.ipynb deleted file mode 120000 index d7744cafbaa..00000000000 --- a/_downloads/f21d55130105ff4c06547b1e1bceb2d7/rain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f21d55130105ff4c06547b1e1bceb2d7/rain.ipynb \ No newline at end of file diff --git a/_downloads/f22591abfa74d9b1d34f86e2075c721a/fivethirtyeight.ipynb b/_downloads/f22591abfa74d9b1d34f86e2075c721a/fivethirtyeight.ipynb deleted file mode 120000 index ced5fd3ad5c..00000000000 --- a/_downloads/f22591abfa74d9b1d34f86e2075c721a/fivethirtyeight.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f22591abfa74d9b1d34f86e2075c721a/fivethirtyeight.ipynb \ No newline at end of file diff --git a/_downloads/f22647aa1bb89d195d12cafbffabc311/step_demo.py b/_downloads/f22647aa1bb89d195d12cafbffabc311/step_demo.py deleted file mode 120000 index 8f3598e3182..00000000000 --- a/_downloads/f22647aa1bb89d195d12cafbffabc311/step_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f22647aa1bb89d195d12cafbffabc311/step_demo.py \ No newline at end of file diff --git a/_downloads/f234cf750f631f402d032182c2c0695d/csd_demo.py b/_downloads/f234cf750f631f402d032182c2c0695d/csd_demo.py deleted file mode 120000 index 769000975dc..00000000000 --- a/_downloads/f234cf750f631f402d032182c2c0695d/csd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f234cf750f631f402d032182c2c0695d/csd_demo.py \ No newline at end of file diff --git a/_downloads/f2553b9f70eefa0b7f4c951e18f848b4/pick_event_demo.py b/_downloads/f2553b9f70eefa0b7f4c951e18f848b4/pick_event_demo.py deleted file mode 100644 index 5e8586aaa13..00000000000 --- a/_downloads/f2553b9f70eefa0b7f4c951e18f848b4/pick_event_demo.py +++ /dev/null @@ -1,189 +0,0 @@ -""" -=============== -Pick Event Demo -=============== - - -You can enable picking by setting the "picker" property of an artist -(for example, a matplotlib Line2D, Text, Patch, Polygon, AxesImage, -etc...) - -There are a variety of meanings of the picker property - - None - picking is disabled for this artist (default) - - boolean - if True then picking will be enabled and the - artist will fire a pick event if the mouse event is over - the artist - - float - if picker is a number it is interpreted as an - epsilon tolerance in points and the artist will fire - off an event if it's data is within epsilon of the mouse - event. For some artists like lines and patch collections, - the artist may provide additional data to the pick event - that is generated, for example, the indices of the data within - epsilon of the pick event - - function - if picker is callable, it is a user supplied - function which determines whether the artist is hit by the - mouse event. - - hit, props = picker(artist, mouseevent) - - to determine the hit test. If the mouse event is over the - artist, return hit=True and props is a dictionary of properties - you want added to the PickEvent attributes - - -After you have enabled an artist for picking by setting the "picker" -property, you need to connect to the figure canvas pick_event to get -pick callbacks on mouse press events. For example, - - def pick_handler(event): - mouseevent = event.mouseevent - artist = event.artist - # now do something with this... - - -The pick event (matplotlib.backend_bases.PickEvent) which is passed to -your callback is always fired with two attributes: - - mouseevent - the mouse event that generate the pick event. The - mouse event in turn has attributes like x and y (the coordinates in - display space, such as pixels from left, bottom) and xdata, ydata (the - coords in data space). Additionally, you can get information about - which buttons were pressed, which keys were pressed, which Axes - the mouse is over, etc. See matplotlib.backend_bases.MouseEvent - for details. - - artist - the matplotlib.artist that generated the pick event. - -Additionally, certain artists like Line2D and PatchCollection may -attach additional meta data like the indices into the data that meet -the picker criteria (for example, all the points in the line that are within -the specified epsilon tolerance) - -The examples below illustrate each of these methods. -""" - -import matplotlib.pyplot as plt -from matplotlib.lines import Line2D -from matplotlib.patches import Rectangle -from matplotlib.text import Text -from matplotlib.image import AxesImage -import numpy as np -from numpy.random import rand - - -def pick_simple(): - # simple picking, lines, rectangles and text - fig, (ax1, ax2) = plt.subplots(2, 1) - ax1.set_title('click on points, rectangles or text', picker=True) - ax1.set_ylabel('ylabel', picker=True, bbox=dict(facecolor='red')) - line, = ax1.plot(rand(100), 'o', picker=5) # 5 points tolerance - - # pick the rectangle - bars = ax2.bar(range(10), rand(10), picker=True) - for label in ax2.get_xticklabels(): # make the xtick labels pickable - label.set_picker(True) - - def onpick1(event): - if isinstance(event.artist, Line2D): - thisline = event.artist - xdata = thisline.get_xdata() - ydata = thisline.get_ydata() - ind = event.ind - print('onpick1 line:', np.column_stack([xdata[ind], ydata[ind]])) - elif isinstance(event.artist, Rectangle): - patch = event.artist - print('onpick1 patch:', patch.get_path()) - elif isinstance(event.artist, Text): - text = event.artist - print('onpick1 text:', text.get_text()) - - fig.canvas.mpl_connect('pick_event', onpick1) - - -def pick_custom_hit(): - # picking with a custom hit test function - # you can define custom pickers by setting picker to a callable - # function. The function has the signature - # - # hit, props = func(artist, mouseevent) - # - # to determine the hit test. if the mouse event is over the artist, - # return hit=True and props is a dictionary of - # properties you want added to the PickEvent attributes - - def line_picker(line, mouseevent): - """ - find the points within a certain distance from the mouseclick in - data coords and attach some extra attributes, pickx and picky - which are the data points that were picked - """ - if mouseevent.xdata is None: - return False, dict() - xdata = line.get_xdata() - ydata = line.get_ydata() - maxd = 0.05 - d = np.sqrt( - (xdata - mouseevent.xdata)**2 + (ydata - mouseevent.ydata)**2) - - ind, = np.nonzero(d <= maxd) - if len(ind): - pickx = xdata[ind] - picky = ydata[ind] - props = dict(ind=ind, pickx=pickx, picky=picky) - return True, props - else: - return False, dict() - - def onpick2(event): - print('onpick2 line:', event.pickx, event.picky) - - fig, ax = plt.subplots() - ax.set_title('custom picker for line data') - line, = ax.plot(rand(100), rand(100), 'o', picker=line_picker) - fig.canvas.mpl_connect('pick_event', onpick2) - - -def pick_scatter_plot(): - # picking on a scatter plot (matplotlib.collections.RegularPolyCollection) - - x, y, c, s = rand(4, 100) - - def onpick3(event): - ind = event.ind - print('onpick3 scatter:', ind, x[ind], y[ind]) - - fig, ax = plt.subplots() - col = ax.scatter(x, y, 100*s, c, picker=True) - #fig.savefig('pscoll.eps') - fig.canvas.mpl_connect('pick_event', onpick3) - - -def pick_image(): - # picking images (matplotlib.image.AxesImage) - fig, ax = plt.subplots() - ax.imshow(rand(10, 5), extent=(1, 2, 1, 2), picker=True) - ax.imshow(rand(5, 10), extent=(3, 4, 1, 2), picker=True) - ax.imshow(rand(20, 25), extent=(1, 2, 3, 4), picker=True) - ax.imshow(rand(30, 12), extent=(3, 4, 3, 4), picker=True) - ax.set(xlim=(0, 5), ylim=(0, 5)) - - def onpick4(event): - artist = event.artist - if isinstance(artist, AxesImage): - im = artist - A = im.get_array() - print('onpick4 image', A.shape) - - fig.canvas.mpl_connect('pick_event', onpick4) - - -if __name__ == '__main__': - pick_simple() - pick_custom_hit() - pick_scatter_plot() - pick_image() - plt.show() diff --git a/_downloads/f256ad1c5f1c41eadcdd71b58639c9c6/mri_with_eeg.py b/_downloads/f256ad1c5f1c41eadcdd71b58639c9c6/mri_with_eeg.py deleted file mode 120000 index 486f9337c8a..00000000000 --- a/_downloads/f256ad1c5f1c41eadcdd71b58639c9c6/mri_with_eeg.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f256ad1c5f1c41eadcdd71b58639c9c6/mri_with_eeg.py \ No newline at end of file diff --git a/_downloads/f25a0f23ba6b8c6c2648e8098318f861/tricontour3d.ipynb b/_downloads/f25a0f23ba6b8c6c2648e8098318f861/tricontour3d.ipynb deleted file mode 120000 index 0808ca97bf7..00000000000 --- a/_downloads/f25a0f23ba6b8c6c2648e8098318f861/tricontour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f25a0f23ba6b8c6c2648e8098318f861/tricontour3d.ipynb \ No newline at end of file diff --git a/_downloads/f2666f764f97d85d21165ff064bd938b/arrow_simple_demo.ipynb b/_downloads/f2666f764f97d85d21165ff064bd938b/arrow_simple_demo.ipynb deleted file mode 120000 index d7b356f0938..00000000000 --- a/_downloads/f2666f764f97d85d21165ff064bd938b/arrow_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/f2666f764f97d85d21165ff064bd938b/arrow_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/f273d1ccf36b84f5701a41a23b728f92/axis_equal_demo.py b/_downloads/f273d1ccf36b84f5701a41a23b728f92/axis_equal_demo.py deleted file mode 120000 index c3298c66124..00000000000 --- a/_downloads/f273d1ccf36b84f5701a41a23b728f92/axis_equal_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f273d1ccf36b84f5701a41a23b728f92/axis_equal_demo.py \ No newline at end of file diff --git a/_downloads/f28d419183c5e5d7dc0765d0d0ba5ab9/pie_features.ipynb b/_downloads/f28d419183c5e5d7dc0765d0d0ba5ab9/pie_features.ipynb deleted file mode 120000 index ab4f0ea02b0..00000000000 --- a/_downloads/f28d419183c5e5d7dc0765d0d0ba5ab9/pie_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f28d419183c5e5d7dc0765d0d0ba5ab9/pie_features.ipynb \ No newline at end of file diff --git a/_downloads/f292fe98280aa240c4ad59981664b4fb/anchored_artists.ipynb b/_downloads/f292fe98280aa240c4ad59981664b4fb/anchored_artists.ipynb deleted file mode 120000 index 681307b265d..00000000000 --- a/_downloads/f292fe98280aa240c4ad59981664b4fb/anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f292fe98280aa240c4ad59981664b4fb/anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/f29f319fc4f61757834bdd1ed1c80f4f/pie.py b/_downloads/f29f319fc4f61757834bdd1ed1c80f4f/pie.py deleted file mode 120000 index 30569cdea6c..00000000000 --- a/_downloads/f29f319fc4f61757834bdd1ed1c80f4f/pie.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f29f319fc4f61757834bdd1ed1c80f4f/pie.py \ No newline at end of file diff --git a/_downloads/f2ad019a43fb8aea8af360962a6f5720/demo_axis_direction.py b/_downloads/f2ad019a43fb8aea8af360962a6f5720/demo_axis_direction.py deleted file mode 120000 index 91e185ccd3c..00000000000 --- a/_downloads/f2ad019a43fb8aea8af360962a6f5720/demo_axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f2ad019a43fb8aea8af360962a6f5720/demo_axis_direction.py \ No newline at end of file diff --git a/_downloads/f2bd661d91c7ccd21a34e2238217c14d/anchored_box02.py b/_downloads/f2bd661d91c7ccd21a34e2238217c14d/anchored_box02.py deleted file mode 120000 index 993d5aafcd3..00000000000 --- a/_downloads/f2bd661d91c7ccd21a34e2238217c14d/anchored_box02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f2bd661d91c7ccd21a34e2238217c14d/anchored_box02.py \ No newline at end of file diff --git a/_downloads/f2bef93384585b0e07875e7874fa72b1/3D.ipynb b/_downloads/f2bef93384585b0e07875e7874fa72b1/3D.ipynb deleted file mode 120000 index 8af099fbf91..00000000000 --- a/_downloads/f2bef93384585b0e07875e7874fa72b1/3D.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/f2bef93384585b0e07875e7874fa72b1/3D.ipynb \ No newline at end of file diff --git a/_downloads/f2ca094113b0cf23dcef4654543b6f1c/scatter_with_legend.py b/_downloads/f2ca094113b0cf23dcef4654543b6f1c/scatter_with_legend.py deleted file mode 120000 index 2b6dfd987f0..00000000000 --- a/_downloads/f2ca094113b0cf23dcef4654543b6f1c/scatter_with_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f2ca094113b0cf23dcef4654543b6f1c/scatter_with_legend.py \ No newline at end of file diff --git a/_downloads/f2dafa28c683e1d2c2ef3c97282ba5ae/demo_parasite_axes.ipynb b/_downloads/f2dafa28c683e1d2c2ef3c97282ba5ae/demo_parasite_axes.ipynb deleted file mode 120000 index e381b78a563..00000000000 --- a/_downloads/f2dafa28c683e1d2c2ef3c97282ba5ae/demo_parasite_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f2dafa28c683e1d2c2ef3c97282ba5ae/demo_parasite_axes.ipynb \ No newline at end of file diff --git a/_downloads/f2db7880ee632b31cc70e4a7f93a72c7/tight_layout_guide.ipynb b/_downloads/f2db7880ee632b31cc70e4a7f93a72c7/tight_layout_guide.ipynb deleted file mode 120000 index 9814f9c60ee..00000000000 --- a/_downloads/f2db7880ee632b31cc70e4a7f93a72c7/tight_layout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f2db7880ee632b31cc70e4a7f93a72c7/tight_layout_guide.ipynb \ No newline at end of file diff --git a/_downloads/f2de524c6efe81421e1b1dad1cac27ba/firefox.ipynb b/_downloads/f2de524c6efe81421e1b1dad1cac27ba/firefox.ipynb deleted file mode 120000 index 0d359ad77d5..00000000000 --- a/_downloads/f2de524c6efe81421e1b1dad1cac27ba/firefox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f2de524c6efe81421e1b1dad1cac27ba/firefox.ipynb \ No newline at end of file diff --git a/_downloads/f2e088f40782338f4f4f592869997d01/tricontour_demo.py b/_downloads/f2e088f40782338f4f4f592869997d01/tricontour_demo.py deleted file mode 100644 index d657aef01af..00000000000 --- a/_downloads/f2e088f40782338f4f4f592869997d01/tricontour_demo.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -=============== -Tricontour Demo -=============== - -Contour plots of unstructured triangular grids. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -############################################################################### -# Creating a Triangulation without specifying the triangles results in the -# Delaunay triangulation of the points. - -# First create the x and y coordinates of the points. -n_angles = 48 -n_radii = 8 -min_radius = 0.25 -radii = np.linspace(min_radius, 0.95, n_radii) - -angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False) -angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1) -angles[:, 1::2] += np.pi / n_angles - -x = (radii * np.cos(angles)).flatten() -y = (radii * np.sin(angles)).flatten() -z = (np.cos(radii) * np.cos(3 * angles)).flatten() - -# Create the Triangulation; no triangles so Delaunay triangulation created. -triang = tri.Triangulation(x, y) - -# Mask off unwanted triangles. -triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1), - y[triang.triangles].mean(axis=1)) - < min_radius) - -############################################################################### -# pcolor plot. - -fig1, ax1 = plt.subplots() -ax1.set_aspect('equal') -tcf = ax1.tricontourf(triang, z) -fig1.colorbar(tcf) -ax1.tricontour(triang, z, colors='k') -ax1.set_title('Contour plot of Delaunay triangulation') - -############################################################################### -# You can specify your own triangulation rather than perform a Delaunay -# triangulation of the points, where each triangle is given by the indices of -# the three points that make up the triangle, ordered in either a clockwise or -# anticlockwise manner. - -xy = np.asarray([ - [-0.101, 0.872], [-0.080, 0.883], [-0.069, 0.888], [-0.054, 0.890], - [-0.045, 0.897], [-0.057, 0.895], [-0.073, 0.900], [-0.087, 0.898], - [-0.090, 0.904], [-0.069, 0.907], [-0.069, 0.921], [-0.080, 0.919], - [-0.073, 0.928], [-0.052, 0.930], [-0.048, 0.942], [-0.062, 0.949], - [-0.054, 0.958], [-0.069, 0.954], [-0.087, 0.952], [-0.087, 0.959], - [-0.080, 0.966], [-0.085, 0.973], [-0.087, 0.965], [-0.097, 0.965], - [-0.097, 0.975], [-0.092, 0.984], [-0.101, 0.980], [-0.108, 0.980], - [-0.104, 0.987], [-0.102, 0.993], [-0.115, 1.001], [-0.099, 0.996], - [-0.101, 1.007], [-0.090, 1.010], [-0.087, 1.021], [-0.069, 1.021], - [-0.052, 1.022], [-0.052, 1.017], [-0.069, 1.010], [-0.064, 1.005], - [-0.048, 1.005], [-0.031, 1.005], [-0.031, 0.996], [-0.040, 0.987], - [-0.045, 0.980], [-0.052, 0.975], [-0.040, 0.973], [-0.026, 0.968], - [-0.020, 0.954], [-0.006, 0.947], [ 0.003, 0.935], [ 0.006, 0.926], - [ 0.005, 0.921], [ 0.022, 0.923], [ 0.033, 0.912], [ 0.029, 0.905], - [ 0.017, 0.900], [ 0.012, 0.895], [ 0.027, 0.893], [ 0.019, 0.886], - [ 0.001, 0.883], [-0.012, 0.884], [-0.029, 0.883], [-0.038, 0.879], - [-0.057, 0.881], [-0.062, 0.876], [-0.078, 0.876], [-0.087, 0.872], - [-0.030, 0.907], [-0.007, 0.905], [-0.057, 0.916], [-0.025, 0.933], - [-0.077, 0.990], [-0.059, 0.993]]) -x = np.degrees(xy[:, 0]) -y = np.degrees(xy[:, 1]) -x0 = -5 -y0 = 52 -z = np.exp(-0.01 * ((x - x0) ** 2 + (y - y0) ** 2)) - -triangles = np.asarray([ - [67, 66, 1], [65, 2, 66], [ 1, 66, 2], [64, 2, 65], [63, 3, 64], - [60, 59, 57], [ 2, 64, 3], [ 3, 63, 4], [ 0, 67, 1], [62, 4, 63], - [57, 59, 56], [59, 58, 56], [61, 60, 69], [57, 69, 60], [ 4, 62, 68], - [ 6, 5, 9], [61, 68, 62], [69, 68, 61], [ 9, 5, 70], [ 6, 8, 7], - [ 4, 70, 5], [ 8, 6, 9], [56, 69, 57], [69, 56, 52], [70, 10, 9], - [54, 53, 55], [56, 55, 53], [68, 70, 4], [52, 56, 53], [11, 10, 12], - [69, 71, 68], [68, 13, 70], [10, 70, 13], [51, 50, 52], [13, 68, 71], - [52, 71, 69], [12, 10, 13], [71, 52, 50], [71, 14, 13], [50, 49, 71], - [49, 48, 71], [14, 16, 15], [14, 71, 48], [17, 19, 18], [17, 20, 19], - [48, 16, 14], [48, 47, 16], [47, 46, 16], [16, 46, 45], [23, 22, 24], - [21, 24, 22], [17, 16, 45], [20, 17, 45], [21, 25, 24], [27, 26, 28], - [20, 72, 21], [25, 21, 72], [45, 72, 20], [25, 28, 26], [44, 73, 45], - [72, 45, 73], [28, 25, 29], [29, 25, 31], [43, 73, 44], [73, 43, 40], - [72, 73, 39], [72, 31, 25], [42, 40, 43], [31, 30, 29], [39, 73, 40], - [42, 41, 40], [72, 33, 31], [32, 31, 33], [39, 38, 72], [33, 72, 38], - [33, 38, 34], [37, 35, 38], [34, 38, 35], [35, 37, 36]]) - -############################################################################### -# Rather than create a Triangulation object, can simply pass x, y and triangles -# arrays to tripcolor directly. It would be better to use a Triangulation -# object if the same triangulation was to be used more than once to save -# duplicated calculations. - -fig2, ax2 = plt.subplots() -ax2.set_aspect('equal') -tcf = ax2.tricontourf(x, y, triangles, z) -fig2.colorbar(tcf) -ax2.set_title('Contour plot of user-specified triangulation') -ax2.set_xlabel('Longitude (degrees)') -ax2.set_ylabel('Latitude (degrees)') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.tri.Triangulation diff --git a/_downloads/f2e5ee9579a1da0cc0196c5eb7b61d5c/custom_ticker1.py b/_downloads/f2e5ee9579a1da0cc0196c5eb7b61d5c/custom_ticker1.py deleted file mode 120000 index 5351f92c2d7..00000000000 --- a/_downloads/f2e5ee9579a1da0cc0196c5eb7b61d5c/custom_ticker1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f2e5ee9579a1da0cc0196c5eb7b61d5c/custom_ticker1.py \ No newline at end of file diff --git a/_downloads/f2eb5b8f9f8e2fd008a36704b7c8799f/boxplot_demo_pyplot.ipynb b/_downloads/f2eb5b8f9f8e2fd008a36704b7c8799f/boxplot_demo_pyplot.ipynb deleted file mode 120000 index 53b1ca000aa..00000000000 --- a/_downloads/f2eb5b8f9f8e2fd008a36704b7c8799f/boxplot_demo_pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f2eb5b8f9f8e2fd008a36704b7c8799f/boxplot_demo_pyplot.ipynb \ No newline at end of file diff --git a/_downloads/f2f4a92acdafda5ef0b98b521c729aa6/anchored_box03.py b/_downloads/f2f4a92acdafda5ef0b98b521c729aa6/anchored_box03.py deleted file mode 120000 index 765b1dfdfa8..00000000000 --- a/_downloads/f2f4a92acdafda5ef0b98b521c729aa6/anchored_box03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f2f4a92acdafda5ef0b98b521c729aa6/anchored_box03.py \ No newline at end of file diff --git a/_downloads/f2ff2f51afa4ee60ff91afe1cd7ef429/patch_collection.ipynb b/_downloads/f2ff2f51afa4ee60ff91afe1cd7ef429/patch_collection.ipynb deleted file mode 100644 index c5bdef874af..00000000000 --- a/_downloads/f2ff2f51afa4ee60ff91afe1cd7ef429/patch_collection.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n============================\nCircles, Wedges and Polygons\n============================\n\nThis example demonstrates how to use\n:class:`patch collections<~.collections.PatchCollection>`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nfrom matplotlib.patches import Circle, Wedge, Polygon\nfrom matplotlib.collections import PatchCollection\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfig, ax = plt.subplots()\n\nresolution = 50 # the number of vertices\nN = 3\nx = np.random.rand(N)\ny = np.random.rand(N)\nradii = 0.1*np.random.rand(N)\npatches = []\nfor x1, y1, r in zip(x, y, radii):\n circle = Circle((x1, y1), r)\n patches.append(circle)\n\nx = np.random.rand(N)\ny = np.random.rand(N)\nradii = 0.1*np.random.rand(N)\ntheta1 = 360.0*np.random.rand(N)\ntheta2 = 360.0*np.random.rand(N)\nfor x1, y1, r, t1, t2 in zip(x, y, radii, theta1, theta2):\n wedge = Wedge((x1, y1), r, t1, t2)\n patches.append(wedge)\n\n# Some limiting conditions on Wedge\npatches += [\n Wedge((.3, .7), .1, 0, 360), # Full circle\n Wedge((.7, .8), .2, 0, 360, width=0.05), # Full ring\n Wedge((.8, .3), .2, 0, 45), # Full sector\n Wedge((.8, .3), .2, 45, 90, width=0.10), # Ring sector\n]\n\nfor i in range(N):\n polygon = Polygon(np.random.rand(N, 2), True)\n patches.append(polygon)\n\ncolors = 100*np.random.rand(len(patches))\np = PatchCollection(patches, alpha=0.4)\np.set_array(np.array(colors))\nax.add_collection(p)\nfig.colorbar(p, ax=ax)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.Circle\nmatplotlib.patches.Wedge\nmatplotlib.patches.Polygon\nmatplotlib.collections.PatchCollection\nmatplotlib.collections.Collection.set_array\nmatplotlib.axes.Axes.add_collection\nmatplotlib.figure.Figure.colorbar" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f3070f936e426ba184c80dac358df5be/ftface_props.py b/_downloads/f3070f936e426ba184c80dac358df5be/ftface_props.py deleted file mode 100644 index 2458addcbca..00000000000 --- a/_downloads/f3070f936e426ba184c80dac358df5be/ftface_props.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -=============== -Font properties -=============== - -This example lists the attributes of an `FT2Font` object, which describe global -font properties. For individual character metrics, use the `Glyph` object, as -returned by `load_char`. -""" - -import os - -import matplotlib -import matplotlib.ft2font as ft - - -font = ft.FT2Font( - # Use a font shipped with Matplotlib. - os.path.join(matplotlib.get_data_path(), - 'fonts/ttf/DejaVuSans-Oblique.ttf')) - -print('Num faces :', font.num_faces) # number of faces in file -print('Num glyphs :', font.num_glyphs) # number of glyphs in the face -print('Family name :', font.family_name) # face family name -print('Style name :', font.style_name) # face style name -print('PS name :', font.postscript_name) # the postscript name -print('Num fixed :', font.num_fixed_sizes) # number of embedded bitmap in face - -# the following are only available if face.scalable -if font.scalable: - # the face global bounding box (xmin, ymin, xmax, ymax) - print('Bbox :', font.bbox) - # number of font units covered by the EM - print('EM :', font.units_per_EM) - # the ascender in 26.6 units - print('Ascender :', font.ascender) - # the descender in 26.6 units - print('Descender :', font.descender) - # the height in 26.6 units - print('Height :', font.height) - # maximum horizontal cursor advance - print('Max adv width :', font.max_advance_width) - # same for vertical layout - print('Max adv height :', font.max_advance_height) - # vertical position of the underline bar - print('Underline pos :', font.underline_position) - # vertical thickness of the underline - print('Underline thickness :', font.underline_thickness) - -for style in ('Italic', - 'Bold', - 'Scalable', - 'Fixed sizes', - 'Fixed width', - 'SFNT', - 'Horizontal', - 'Vertical', - 'Kerning', - 'Fast glyphs', - 'Multiple masters', - 'Glyph names', - 'External stream'): - bitpos = getattr(ft, style.replace(' ', '_').upper()) - 1 - print('%-17s:' % style, bool(font.style_flags & (1 << bitpos))) diff --git a/_downloads/f312fd24462bee4fdec42a468021186b/axis_direction_demo_step02.py b/_downloads/f312fd24462bee4fdec42a468021186b/axis_direction_demo_step02.py deleted file mode 100644 index de6a21df428..00000000000 --- a/_downloads/f312fd24462bee4fdec42a468021186b/axis_direction_demo_step02.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -========================== -Axis Direction Demo Step02 -========================== - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - - -def setup_axes(fig, rect): - ax = axisartist.Subplot(fig, rect) - fig.add_axes(ax) - - ax.set_ylim(-0.1, 1.5) - ax.set_yticks([0, 1]) - - #ax.axis[:].toggle(all=False) - #ax.axis[:].line.set_visible(False) - ax.axis[:].set_visible(False) - - ax.axis["x"] = ax.new_floating_axis(1, 0.5) - ax.axis["x"].set_axisline_style("->", size=1.5) - - return ax - - -fig = plt.figure(figsize=(6, 2.5)) -fig.subplots_adjust(bottom=0.2, top=0.8) - -ax1 = setup_axes(fig, "121") -ax1.axis["x"].set_ticklabel_direction("+") -ax1.annotate("ticklabel direction=$+$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -ax2 = setup_axes(fig, "122") -ax2.axis["x"].set_ticklabel_direction("-") -ax2.annotate("ticklabel direction=$-$", (0.5, 0), xycoords="axes fraction", - xytext=(0, -10), textcoords="offset points", - va="top", ha="center") - -plt.show() diff --git a/_downloads/f3140aed09f3052396d57ca3aa9df380/demo_text_path.py b/_downloads/f3140aed09f3052396d57ca3aa9df380/demo_text_path.py deleted file mode 120000 index be40a8babb0..00000000000 --- a/_downloads/f3140aed09f3052396d57ca3aa9df380/demo_text_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f3140aed09f3052396d57ca3aa9df380/demo_text_path.py \ No newline at end of file diff --git a/_downloads/f31d39cbb2c0185da30c5e0d67095b22/colormap_normalizations_power.ipynb b/_downloads/f31d39cbb2c0185da30c5e0d67095b22/colormap_normalizations_power.ipynb deleted file mode 120000 index be5474b3a13..00000000000 --- a/_downloads/f31d39cbb2c0185da30c5e0d67095b22/colormap_normalizations_power.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f31d39cbb2c0185da30c5e0d67095b22/colormap_normalizations_power.ipynb \ No newline at end of file diff --git a/_downloads/f3245cd895478e9e74a1af71c48b84dd/random_walk.py b/_downloads/f3245cd895478e9e74a1af71c48b84dd/random_walk.py deleted file mode 100644 index ae60ce7c09e..00000000000 --- a/_downloads/f3245cd895478e9e74a1af71c48b84dd/random_walk.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -======================= -Animated 3D random walk -======================= - -""" - -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.mplot3d.axes3d as p3 -import matplotlib.animation as animation - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -def Gen_RandLine(length, dims=2): - """ - Create a line using a random walk algorithm - - length is the number of points for the line. - dims is the number of dimensions the line has. - """ - lineData = np.empty((dims, length)) - lineData[:, 0] = np.random.rand(dims) - for index in range(1, length): - # scaling the random numbers by 0.1 so - # movement is small compared to position. - # subtraction by 0.5 is to change the range to [-0.5, 0.5] - # to allow a line to move backwards. - step = ((np.random.rand(dims) - 0.5) * 0.1) - lineData[:, index] = lineData[:, index - 1] + step - - return lineData - - -def update_lines(num, dataLines, lines): - for line, data in zip(lines, dataLines): - # NOTE: there is no .set_data() for 3 dim data... - line.set_data(data[0:2, :num]) - line.set_3d_properties(data[2, :num]) - return lines - -# Attaching 3D axis to the figure -fig = plt.figure() -ax = p3.Axes3D(fig) - -# Fifty lines of random 3-D lines -data = [Gen_RandLine(25, 3) for index in range(50)] - -# Creating fifty line objects. -# NOTE: Can't pass empty arrays into 3d version of plot() -lines = [ax.plot(dat[0, 0:1], dat[1, 0:1], dat[2, 0:1])[0] for dat in data] - -# Setting the axes properties -ax.set_xlim3d([0.0, 1.0]) -ax.set_xlabel('X') - -ax.set_ylim3d([0.0, 1.0]) -ax.set_ylabel('Y') - -ax.set_zlim3d([0.0, 1.0]) -ax.set_zlabel('Z') - -ax.set_title('3D Test') - -# Creating the Animation object -line_ani = animation.FuncAnimation(fig, update_lines, 25, fargs=(data, lines), - interval=50, blit=False) - -plt.show() diff --git a/_downloads/f326146dd1f9cd0555b5aca70708f45e/rectangle_selector.ipynb b/_downloads/f326146dd1f9cd0555b5aca70708f45e/rectangle_selector.ipynb deleted file mode 120000 index 166b680ac6d..00000000000 --- a/_downloads/f326146dd1f9cd0555b5aca70708f45e/rectangle_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f326146dd1f9cd0555b5aca70708f45e/rectangle_selector.ipynb \ No newline at end of file diff --git a/_downloads/f337e6d10c6029ace30cb83a5d8e61ea/simple_axesgrid2.ipynb b/_downloads/f337e6d10c6029ace30cb83a5d8e61ea/simple_axesgrid2.ipynb deleted file mode 100644 index d039f43ec7f..00000000000 --- a/_downloads/f337e6d10c6029ace30cb83a5d8e61ea/simple_axesgrid2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple ImageGrid 2\n\n\nAlign multiple images of different sizes using\n`~mpl_toolkits.axes_grid1.axes_grid.ImageGrid`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axes_grid1 import ImageGrid\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\nfig = plt.figure(figsize=(5.5, 3.5))\ngrid = ImageGrid(fig, 111, # similar to subplot(111)\n nrows_ncols=(1, 3),\n axes_pad=0.1,\n add_all=True,\n label_mode=\"L\",\n )\n\nZ, extent = get_demo_image() # demo image\n\nim1 = Z\nim2 = Z[:, :10]\nim3 = Z[:, 10:]\nvmin, vmax = Z.min(), Z.max()\nfor ax, im in zip(grid, [im1, im2, im3]):\n ax.imshow(im, origin=\"lower\", vmin=vmin, vmax=vmax,\n interpolation=\"nearest\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f33d8d88d9565cd101b81a8a2fe86bfa/timeline.py b/_downloads/f33d8d88d9565cd101b81a8a2fe86bfa/timeline.py deleted file mode 100644 index 3ef964defe4..00000000000 --- a/_downloads/f33d8d88d9565cd101b81a8a2fe86bfa/timeline.py +++ /dev/null @@ -1,119 +0,0 @@ -""" -=============================================== -Creating a timeline with lines, dates, and text -=============================================== - -How to create a simple timeline using Matplotlib release dates. - -Timelines can be created with a collection of dates and text. In this example, -we show how to create a simple timeline using the dates for recent releases -of Matplotlib. First, we'll pull the data from GitHub. -""" - -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.dates as mdates -from datetime import datetime - -try: - # Try to fetch a list of Matplotlib releases and their dates - # from https://api.github.com/repos/matplotlib/matplotlib/releases - import urllib.request - import json - - url = 'https://api.github.com/repos/matplotlib/matplotlib/releases' - url += '?per_page=100' - data = json.loads(urllib.request.urlopen(url, timeout=.4).read().decode()) - - dates = [] - names = [] - for item in data: - if 'rc' not in item['tag_name'] and 'b' not in item['tag_name']: - dates.append(item['published_at'].split("T")[0]) - names.append(item['tag_name']) - # Convert date strings (e.g. 2014-10-18) to datetime - dates = [datetime.strptime(d, "%Y-%m-%d") for d in dates] - -except Exception: - # In case the above fails, e.g. because of missing internet connection - # use the following lists as fallback. - names = ['v2.2.4', 'v3.0.3', 'v3.0.2', 'v3.0.1', 'v3.0.0', 'v2.2.3', - 'v2.2.2', 'v2.2.1', 'v2.2.0', 'v2.1.2', 'v2.1.1', 'v2.1.0', - 'v2.0.2', 'v2.0.1', 'v2.0.0', 'v1.5.3', 'v1.5.2', 'v1.5.1', - 'v1.5.0', 'v1.4.3', 'v1.4.2', 'v1.4.1', 'v1.4.0'] - - dates = ['2019-02-26', '2019-02-26', '2018-11-10', '2018-11-10', - '2018-09-18', '2018-08-10', '2018-03-17', '2018-03-16', - '2018-03-06', '2018-01-18', '2017-12-10', '2017-10-07', - '2017-05-10', '2017-05-02', '2017-01-17', '2016-09-09', - '2016-07-03', '2016-01-10', '2015-10-29', '2015-02-16', - '2014-10-26', '2014-10-18', '2014-08-26'] - - # Convert date strings (e.g. 2014-10-18) to datetime - dates = [datetime.strptime(d, "%Y-%m-%d") for d in dates] - -############################################################################## -# Next, we'll create a `~.Axes.stem` plot with some variation in levels as to -# distinguish even close-by events. In contrast to a usual stem plot, we will -# shift the markers to the baseline for visual emphasis on the one-dimensional -# nature of the time line. -# For each event, we add a text label via `~.Axes.annotate`, which is offset -# in units of points from the tip of the event line. -# -# Note that Matplotlib will automatically plot datetime inputs. - - -# Choose some nice levels -levels = np.tile([-5, 5, -3, 3, -1, 1], - int(np.ceil(len(dates)/6)))[:len(dates)] - -# Create figure and plot a stem plot with the date -fig, ax = plt.subplots(figsize=(8.8, 4), constrained_layout=True) -ax.set(title="Matplotlib release dates") - -markerline, stemline, baseline = ax.stem(dates, levels, - linefmt="C3-", basefmt="k-", - use_line_collection=True) - -plt.setp(markerline, mec="k", mfc="w", zorder=3) - -# Shift the markers to the baseline by replacing the y-data by zeros. -markerline.set_ydata(np.zeros(len(dates))) - -# annotate lines -vert = np.array(['top', 'bottom'])[(levels > 0).astype(int)] -for d, l, r, va in zip(dates, levels, names, vert): - ax.annotate(r, xy=(d, l), xytext=(-3, np.sign(l)*3), - textcoords="offset points", va=va, ha="right") - -# format xaxis with 4 month intervals -ax.get_xaxis().set_major_locator(mdates.MonthLocator(interval=4)) -ax.get_xaxis().set_major_formatter(mdates.DateFormatter("%b %Y")) -plt.setp(ax.get_xticklabels(), rotation=30, ha="right") - -# remove y axis and spines -ax.get_yaxis().set_visible(False) -for spine in ["left", "top", "right"]: - ax.spines[spine].set_visible(False) - -ax.margins(y=0.1) -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.stem -matplotlib.axes.Axes.annotate -matplotlib.axis.Axis.set_major_locator -matplotlib.axis.Axis.set_major_formatter -matplotlib.dates.MonthLocator -matplotlib.dates.DateFormatter diff --git a/_downloads/f33fd9fb36efaea28fe7355e3746bedc/image_clip_path.py b/_downloads/f33fd9fb36efaea28fe7355e3746bedc/image_clip_path.py deleted file mode 120000 index 46fb1debc77..00000000000 --- a/_downloads/f33fd9fb36efaea28fe7355e3746bedc/image_clip_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f33fd9fb36efaea28fe7355e3746bedc/image_clip_path.py \ No newline at end of file diff --git a/_downloads/f34169cb6c42aa1891da289587e9e89d/units_scatter.ipynb b/_downloads/f34169cb6c42aa1891da289587e9e89d/units_scatter.ipynb deleted file mode 120000 index 7cb23d073db..00000000000 --- a/_downloads/f34169cb6c42aa1891da289587e9e89d/units_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f34169cb6c42aa1891da289587e9e89d/units_scatter.ipynb \ No newline at end of file diff --git a/_downloads/f34aefc0c24a11877157ad4a4e86cd32/text_props.py b/_downloads/f34aefc0c24a11877157ad4a4e86cd32/text_props.py deleted file mode 120000 index 00205d00077..00000000000 --- a/_downloads/f34aefc0c24a11877157ad4a4e86cd32/text_props.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f34aefc0c24a11877157ad4a4e86cd32/text_props.py \ No newline at end of file diff --git a/_downloads/f3557f841304b23ab0a9c10ee72118ba/demo_edge_colorbar.py b/_downloads/f3557f841304b23ab0a9c10ee72118ba/demo_edge_colorbar.py deleted file mode 120000 index 30b4e6b6c99..00000000000 --- a/_downloads/f3557f841304b23ab0a9c10ee72118ba/demo_edge_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f3557f841304b23ab0a9c10ee72118ba/demo_edge_colorbar.py \ No newline at end of file diff --git a/_downloads/f367c4acc230a36eb267377c4f6b85e9/fourier_demo_wx_sgskip.py b/_downloads/f367c4acc230a36eb267377c4f6b85e9/fourier_demo_wx_sgskip.py deleted file mode 120000 index 54c829bc548..00000000000 --- a/_downloads/f367c4acc230a36eb267377c4f6b85e9/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f367c4acc230a36eb267377c4f6b85e9/fourier_demo_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/f36c913ae090a2aa8a10d64097680313/figimage_demo.ipynb b/_downloads/f36c913ae090a2aa8a10d64097680313/figimage_demo.ipynb deleted file mode 120000 index 4ef04a24d31..00000000000 --- a/_downloads/f36c913ae090a2aa8a10d64097680313/figimage_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f36c913ae090a2aa8a10d64097680313/figimage_demo.ipynb \ No newline at end of file diff --git a/_downloads/f3735e455e9d1ec8081cba675c056247/colormap_normalizations_custom.ipynb b/_downloads/f3735e455e9d1ec8081cba675c056247/colormap_normalizations_custom.ipynb deleted file mode 100644 index a19a4670c47..00000000000 --- a/_downloads/f3735e455e9d1ec8081cba675c056247/colormap_normalizations_custom.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Colormap Normalizations Custom\n\n\nDemonstration of using norm to map colormaps onto data in non-linear ways.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.colors as colors\n\nN = 100\n'''\nCustom Norm: An example with a customized normalization. This one\nuses the example above, and normalizes the negative data differently\nfrom the positive.\n'''\nX, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]\nZ1 = np.exp(-X**2 - Y**2)\nZ2 = np.exp(-(X - 1)**2 - (Y - 1)**2)\nZ = (Z1 - Z2) * 2\n\n\n# Example of making your own norm. Also see matplotlib.colors.\n# From Joe Kington: This one gives two different linear ramps:\nclass MidpointNormalize(colors.Normalize):\n def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False):\n self.midpoint = midpoint\n colors.Normalize.__init__(self, vmin, vmax, clip)\n\n def __call__(self, value, clip=None):\n # I'm ignoring masked values and all kinds of edge cases to make a\n # simple example...\n x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1]\n return np.ma.masked_array(np.interp(value, x, y))\n\n\n#####\nfig, ax = plt.subplots(2, 1)\n\npcm = ax[0].pcolormesh(X, Y, Z,\n norm=MidpointNormalize(midpoint=0.),\n cmap='RdBu_r')\nfig.colorbar(pcm, ax=ax[0], extend='both')\n\npcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z))\nfig.colorbar(pcm, ax=ax[1], extend='both')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f3850d06f6f769da991d6c9ade1c4b91/radio_buttons.ipynb b/_downloads/f3850d06f6f769da991d6c9ade1c4b91/radio_buttons.ipynb deleted file mode 120000 index 96a27158e83..00000000000 --- a/_downloads/f3850d06f6f769da991d6c9ade1c4b91/radio_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f3850d06f6f769da991d6c9ade1c4b91/radio_buttons.ipynb \ No newline at end of file diff --git a/_downloads/f38aad9c5b625ab06496637b8edd96aa/scatter_piecharts.py b/_downloads/f38aad9c5b625ab06496637b8edd96aa/scatter_piecharts.py deleted file mode 120000 index f3a293d0e3e..00000000000 --- a/_downloads/f38aad9c5b625ab06496637b8edd96aa/scatter_piecharts.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f38aad9c5b625ab06496637b8edd96aa/scatter_piecharts.py \ No newline at end of file diff --git a/_downloads/f39c596000535a3de77020e24434f899/demo_axes_grid2.py b/_downloads/f39c596000535a3de77020e24434f899/demo_axes_grid2.py deleted file mode 120000 index ef6b3ee847f..00000000000 --- a/_downloads/f39c596000535a3de77020e24434f899/demo_axes_grid2.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f39c596000535a3de77020e24434f899/demo_axes_grid2.py \ No newline at end of file diff --git a/_downloads/f39d6239220b5fffb3caf3e282c7079b/pylab_with_gtk_sgskip.ipynb b/_downloads/f39d6239220b5fffb3caf3e282c7079b/pylab_with_gtk_sgskip.ipynb deleted file mode 120000 index 9551283ae86..00000000000 --- a/_downloads/f39d6239220b5fffb3caf3e282c7079b/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f39d6239220b5fffb3caf3e282c7079b/pylab_with_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/f3a3aa2401efd39fc6fbc9ff89f86d5e/fig_x.py b/_downloads/f3a3aa2401efd39fc6fbc9ff89f86d5e/fig_x.py deleted file mode 120000 index d55a3af36b0..00000000000 --- a/_downloads/f3a3aa2401efd39fc6fbc9ff89f86d5e/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f3a3aa2401efd39fc6fbc9ff89f86d5e/fig_x.py \ No newline at end of file diff --git a/_downloads/f3a919a3943e35485a2133f539c97b4e/custom_scale.ipynb b/_downloads/f3a919a3943e35485a2133f539c97b4e/custom_scale.ipynb deleted file mode 120000 index 841c0a80a89..00000000000 --- a/_downloads/f3a919a3943e35485a2133f539c97b4e/custom_scale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f3a919a3943e35485a2133f539c97b4e/custom_scale.ipynb \ No newline at end of file diff --git a/_downloads/f3a96914183653c2c1d2abf0ad9224e5/surface3d_2.ipynb b/_downloads/f3a96914183653c2c1d2abf0ad9224e5/surface3d_2.ipynb deleted file mode 120000 index cb9dddf32ae..00000000000 --- a/_downloads/f3a96914183653c2c1d2abf0ad9224e5/surface3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f3a96914183653c2c1d2abf0ad9224e5/surface3d_2.ipynb \ No newline at end of file diff --git a/_downloads/f3b22032164011597852b90547a43403/masked_demo.py b/_downloads/f3b22032164011597852b90547a43403/masked_demo.py deleted file mode 120000 index 74f09abc2f4..00000000000 --- a/_downloads/f3b22032164011597852b90547a43403/masked_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f3b22032164011597852b90547a43403/masked_demo.py \ No newline at end of file diff --git a/_downloads/f3baeeec03b239aea1103e7b63ce01bc/voxels_rgb.py b/_downloads/f3baeeec03b239aea1103e7b63ce01bc/voxels_rgb.py deleted file mode 120000 index 7aa92be935e..00000000000 --- a/_downloads/f3baeeec03b239aea1103e7b63ce01bc/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f3baeeec03b239aea1103e7b63ce01bc/voxels_rgb.py \ No newline at end of file diff --git a/_downloads/f3c02844665fd1d7b5af528949753044/irregulardatagrid.py b/_downloads/f3c02844665fd1d7b5af528949753044/irregulardatagrid.py deleted file mode 100644 index 643e3a911c7..00000000000 --- a/_downloads/f3c02844665fd1d7b5af528949753044/irregulardatagrid.py +++ /dev/null @@ -1,104 +0,0 @@ -""" -======================================= -Contour plot of irregularly spaced data -======================================= - -Comparison of a contour plot of irregularly spaced data interpolated -on a regular grid versus a tricontour plot for an unstructured triangular grid. - -Since `~.axes.Axes.contour` and `~.axes.Axes.contourf` expect the data to live -on a regular grid, plotting a contour plot of irregularly spaced data requires -different methods. The two options are: - -* Interpolate the data to a regular grid first. This can be done with on-board - means, e.g. via `~.tri.LinearTriInterpolator` or using external functionality - e.g. via `scipy.interpolate.griddata`. Then plot the interpolated data with - the usual `~.axes.Axes.contour`. -* Directly use `~.axes.Axes.tricontour` or `~.axes.Axes.tricontourf` which will - perform a triangulation internally. - -This example shows both methods in action. -""" - -import matplotlib.pyplot as plt -import matplotlib.tri as tri -import numpy as np - -np.random.seed(19680801) -npts = 200 -ngridx = 100 -ngridy = 200 -x = np.random.uniform(-2, 2, npts) -y = np.random.uniform(-2, 2, npts) -z = x * np.exp(-x**2 - y**2) - -fig, (ax1, ax2) = plt.subplots(nrows=2) - -# ----------------------- -# Interpolation on a grid -# ----------------------- -# A contour plot of irregularly spaced data coordinates -# via interpolation on a grid. - -# Create grid values first. -xi = np.linspace(-2.1, 2.1, ngridx) -yi = np.linspace(-2.1, 2.1, ngridy) - -# Perform linear interpolation of the data (x,y) -# on a grid defined by (xi,yi) -triang = tri.Triangulation(x, y) -interpolator = tri.LinearTriInterpolator(triang, z) -Xi, Yi = np.meshgrid(xi, yi) -zi = interpolator(Xi, Yi) - -# Note that scipy.interpolate provides means to interpolate data on a grid -# as well. The following would be an alternative to the four lines above: -#from scipy.interpolate import griddata -#zi = griddata((x, y), z, (xi[None,:], yi[:,None]), method='linear') - - -ax1.contour(xi, yi, zi, levels=14, linewidths=0.5, colors='k') -cntr1 = ax1.contourf(xi, yi, zi, levels=14, cmap="RdBu_r") - -fig.colorbar(cntr1, ax=ax1) -ax1.plot(x, y, 'ko', ms=3) -ax1.set(xlim=(-2, 2), ylim=(-2, 2)) -ax1.set_title('grid and contour (%d points, %d grid points)' % - (npts, ngridx * ngridy)) - - -# ---------- -# Tricontour -# ---------- -# Directly supply the unordered, irregularly spaced coordinates -# to tricontour. - -ax2.tricontour(x, y, z, levels=14, linewidths=0.5, colors='k') -cntr2 = ax2.tricontourf(x, y, z, levels=14, cmap="RdBu_r") - -fig.colorbar(cntr2, ax=ax2) -ax2.plot(x, y, 'ko', ms=3) -ax2.set(xlim=(-2, 2), ylim=(-2, 2)) -ax2.set_title('tricontour (%d points)' % npts) - -plt.subplots_adjust(hspace=0.5) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -import matplotlib -matplotlib.axes.Axes.contour -matplotlib.pyplot.contour -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf diff --git a/_downloads/f3c2fa5ed174e815894e6fc396c92210/align_ylabels.py b/_downloads/f3c2fa5ed174e815894e6fc396c92210/align_ylabels.py deleted file mode 120000 index 306e360b331..00000000000 --- a/_downloads/f3c2fa5ed174e815894e6fc396c92210/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f3c2fa5ed174e815894e6fc396c92210/align_ylabels.py \ No newline at end of file diff --git a/_downloads/f3d3141dd1e13de407ff6753e7549816/skewt.py b/_downloads/f3d3141dd1e13de407ff6753e7549816/skewt.py deleted file mode 120000 index cd79b1d2d30..00000000000 --- a/_downloads/f3d3141dd1e13de407ff6753e7549816/skewt.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f3d3141dd1e13de407ff6753e7549816/skewt.py \ No newline at end of file diff --git a/_downloads/f3d5fb05d64d3343a23c8ab42eb8ceff/dashpointlabel.ipynb b/_downloads/f3d5fb05d64d3343a23c8ab42eb8ceff/dashpointlabel.ipynb deleted file mode 120000 index 799a6d9a37b..00000000000 --- a/_downloads/f3d5fb05d64d3343a23c8ab42eb8ceff/dashpointlabel.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_downloads/f3d5fb05d64d3343a23c8ab42eb8ceff/dashpointlabel.ipynb \ No newline at end of file diff --git a/_downloads/f3e27b62b0dd5831b48a2c7a657c2531/color_cycle_default.py b/_downloads/f3e27b62b0dd5831b48a2c7a657c2531/color_cycle_default.py deleted file mode 120000 index b1aa613fdf2..00000000000 --- a/_downloads/f3e27b62b0dd5831b48a2c7a657c2531/color_cycle_default.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f3e27b62b0dd5831b48a2c7a657c2531/color_cycle_default.py \ No newline at end of file diff --git a/_downloads/f3e3b082d0aa9173677fca5fb035caab/contourf_log.ipynb b/_downloads/f3e3b082d0aa9173677fca5fb035caab/contourf_log.ipynb deleted file mode 100644 index 8a1fdbfd378..00000000000 --- a/_downloads/f3e3b082d0aa9173677fca5fb035caab/contourf_log.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contourf and log color scale\n\n\nDemonstrate use of a log color scale in contourf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom numpy import ma\nfrom matplotlib import ticker, cm\n\nN = 100\nx = np.linspace(-3.0, 3.0, N)\ny = np.linspace(-2.0, 2.0, N)\n\nX, Y = np.meshgrid(x, y)\n\n# A low hump with a spike coming out.\n# Needs to have z/colour axis on a log scale so we see both hump and spike.\n# linear scale only shows the spike.\nZ1 = np.exp(-(X)**2 - (Y)**2)\nZ2 = np.exp(-(X * 10)**2 - (Y * 10)**2)\nz = Z1 + 50 * Z2\n\n# Put in some negative values (lower left corner) to cause trouble with logs:\nz[:5, :5] = -1\n\n# The following is not strictly essential, but it will eliminate\n# a warning. Comment it out to see the warning.\nz = ma.masked_where(z <= 0, z)\n\n\n# Automatic selection of levels works; setting the\n# log locator tells contourf to use a log scale:\nfig, ax = plt.subplots()\ncs = ax.contourf(X, Y, z, locator=ticker.LogLocator(), cmap=cm.PuBu_r)\n\n# Alternatively, you can manually set the levels\n# and the norm:\n# lev_exp = np.arange(np.floor(np.log10(z.min())-1),\n# np.ceil(np.log10(z.max())+1))\n# levs = np.power(10, lev_exp)\n# cs = ax.contourf(X, Y, z, levs, norm=colors.LogNorm())\n\ncbar = fig.colorbar(cs)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.figure.Figure.colorbar\nmatplotlib.pyplot.colorbar\nmatplotlib.axes.Axes.legend\nmatplotlib.pyplot.legend\nmatplotlib.ticker.LogLocator" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f3e7f3ccb5c5b297f90f0e81710d6f3d/spines.py b/_downloads/f3e7f3ccb5c5b297f90f0e81710d6f3d/spines.py deleted file mode 120000 index d205b044c6e..00000000000 --- a/_downloads/f3e7f3ccb5c5b297f90f0e81710d6f3d/spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f3e7f3ccb5c5b297f90f0e81710d6f3d/spines.py \ No newline at end of file diff --git a/_downloads/f3e9fa9fb57b454a921d57e97063de88/scatter_with_legend.ipynb b/_downloads/f3e9fa9fb57b454a921d57e97063de88/scatter_with_legend.ipynb deleted file mode 120000 index af71b8e3d41..00000000000 --- a/_downloads/f3e9fa9fb57b454a921d57e97063de88/scatter_with_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f3e9fa9fb57b454a921d57e97063de88/scatter_with_legend.ipynb \ No newline at end of file diff --git a/_downloads/f3ea7597669647f2e9710ad9ebe12994/pylab_with_gtk_sgskip.ipynb b/_downloads/f3ea7597669647f2e9710ad9ebe12994/pylab_with_gtk_sgskip.ipynb deleted file mode 100644 index 4c269389da0..00000000000 --- a/_downloads/f3ea7597669647f2e9710ad9ebe12994/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# pyplot with GTK\n\n\nAn example of how to use pyplot to manage your figure windows, but modify the\nGUI by accessing the underlying GTK widgets.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.use('GTK3Agg') # or 'GTK3Cairo'\nimport matplotlib.pyplot as plt\n\nimport gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\n\nfig, ax = plt.subplots()\nax.plot([1, 2, 3], 'ro-', label='easy as 1 2 3')\nax.plot([1, 4, 9], 'gs--', label='easy as 1 2 3 squared')\nax.legend()\n\nmanager = fig.canvas.manager\n# you can access the window or vbox attributes this way\ntoolbar = manager.toolbar\nvbox = manager.vbox\n\n# now let's add a button to the toolbar\nbutton = Gtk.Button(label='Click me')\nbutton.show()\nbutton.connect('clicked', lambda button: print('hi mom'))\n\ntoolitem = Gtk.ToolItem()\ntoolitem.show()\ntoolitem.set_tooltip_text('Click me for fun and profit')\ntoolitem.add(button)\n\npos = 8 # where to insert this in the mpl toolbar\ntoolbar.insert(toolitem, pos)\n\n# now let's add a widget to the vbox\nlabel = Gtk.Label()\nlabel.set_markup('Drag mouse over axes for position')\nlabel.show()\nvbox.pack_start(label, False, False, 0)\nvbox.reorder_child(toolbar, -1)\n\ndef update(event):\n if event.xdata is None:\n label.set_markup('Drag mouse over axes for position')\n else:\n label.set_markup(\n f'x,y=({event.xdata}, {event.ydata})')\n\nfig.canvas.mpl_connect('motion_notify_event', update)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f3eab81c1f29bec924d1fb4a0f5519d5/font_file.py b/_downloads/f3eab81c1f29bec924d1fb4a0f5519d5/font_file.py deleted file mode 120000 index 8c58be33ad5..00000000000 --- a/_downloads/f3eab81c1f29bec924d1fb4a0f5519d5/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f3eab81c1f29bec924d1fb4a0f5519d5/font_file.py \ No newline at end of file diff --git a/_downloads/f3ed17001dd957bf57e00cc5cae10f31/simple_axisline2.ipynb b/_downloads/f3ed17001dd957bf57e00cc5cae10f31/simple_axisline2.ipynb deleted file mode 100644 index e256f5e4f97..00000000000 --- a/_downloads/f3ed17001dd957bf57e00cc5cae10f31/simple_axisline2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline2\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom mpl_toolkits.axisartist.axislines import SubplotZero\nimport numpy as np\n\nfig = plt.figure(figsize=(4, 3))\n\n# a subplot with two additional axis, \"xzero\" and \"yzero\". \"xzero\" is\n# y=0 line, and \"yzero\" is x=0 line.\nax = SubplotZero(fig, 1, 1, 1)\nfig.add_subplot(ax)\n\n# make xzero axis (horizontal axis line through y=0) visible.\nax.axis[\"xzero\"].set_visible(True)\nax.axis[\"xzero\"].label.set_text(\"Axis Zero\")\n\n# make other axis (bottom, top, right) invisible.\nfor n in [\"bottom\", \"top\", \"right\"]:\n ax.axis[n].set_visible(False)\n\nxx = np.arange(0, 2*np.pi, 0.01)\nax.plot(xx, np.sin(xx))\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f3fe9e6beb4769177a4ad3bcabea54eb/lifecycle.ipynb b/_downloads/f3fe9e6beb4769177a4ad3bcabea54eb/lifecycle.ipynb deleted file mode 120000 index abb9ce4bc96..00000000000 --- a/_downloads/f3fe9e6beb4769177a4ad3bcabea54eb/lifecycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f3fe9e6beb4769177a4ad3bcabea54eb/lifecycle.ipynb \ No newline at end of file diff --git a/_downloads/f4119946a0ca48ffee96d98f294cde6c/multiple_yaxis_with_spines.ipynb b/_downloads/f4119946a0ca48ffee96d98f294cde6c/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index 88bd1a6cbec..00000000000 --- a/_downloads/f4119946a0ca48ffee96d98f294cde6c/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f4119946a0ca48ffee96d98f294cde6c/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/f418b10bb3096f8041f26adc011a1793/vline_hline_demo.py b/_downloads/f418b10bb3096f8041f26adc011a1793/vline_hline_demo.py deleted file mode 120000 index 011d806cdb6..00000000000 --- a/_downloads/f418b10bb3096f8041f26adc011a1793/vline_hline_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f418b10bb3096f8041f26adc011a1793/vline_hline_demo.py \ No newline at end of file diff --git a/_downloads/f41b4b5e40cac229b173604b2413fe61/rotate_axes3d_sgskip.py b/_downloads/f41b4b5e40cac229b173604b2413fe61/rotate_axes3d_sgskip.py deleted file mode 120000 index 32dabb866d4..00000000000 --- a/_downloads/f41b4b5e40cac229b173604b2413fe61/rotate_axes3d_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f41b4b5e40cac229b173604b2413fe61/rotate_axes3d_sgskip.py \ No newline at end of file diff --git a/_downloads/f41e31b4df2903611d3973f3650a009e/filled_step.py b/_downloads/f41e31b4df2903611d3973f3650a009e/filled_step.py deleted file mode 120000 index 3af997f16bb..00000000000 --- a/_downloads/f41e31b4df2903611d3973f3650a009e/filled_step.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f41e31b4df2903611d3973f3650a009e/filled_step.py \ No newline at end of file diff --git a/_downloads/f41e70fdae700e9b6b3371ecbfded5ec/CITATION.bib b/_downloads/f41e70fdae700e9b6b3371ecbfded5ec/CITATION.bib deleted file mode 120000 index ffe72f36c3a..00000000000 --- a/_downloads/f41e70fdae700e9b6b3371ecbfded5ec/CITATION.bib +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f41e70fdae700e9b6b3371ecbfded5ec/CITATION.bib \ No newline at end of file diff --git a/_downloads/f43440c17fa1293bd1fd7248bad332e5/style_sheets_reference.py b/_downloads/f43440c17fa1293bd1fd7248bad332e5/style_sheets_reference.py deleted file mode 120000 index e27ca1e9242..00000000000 --- a/_downloads/f43440c17fa1293bd1fd7248bad332e5/style_sheets_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f43440c17fa1293bd1fd7248bad332e5/style_sheets_reference.py \ No newline at end of file diff --git a/_downloads/f43c44bbde49ce91f60b2f9340cfdbe0/print_stdout_sgskip.ipynb b/_downloads/f43c44bbde49ce91f60b2f9340cfdbe0/print_stdout_sgskip.ipynb deleted file mode 100644 index 6509616a3c5..00000000000 --- a/_downloads/f43c44bbde49ce91f60b2f9340cfdbe0/print_stdout_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Print Stdout\n\n\nprint png to standard out\n\nusage: python print_stdout.py > somefile.png\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import sys\nimport matplotlib\nmatplotlib.use('Agg')\nimport matplotlib.pyplot as plt\n\nplt.plot([1, 2, 3])\nplt.savefig(sys.stdout.buffer)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f4554271a33819ebaa4c3281a1e7fc79/barcode_demo.ipynb b/_downloads/f4554271a33819ebaa4c3281a1e7fc79/barcode_demo.ipynb deleted file mode 100644 index 158e68d7329..00000000000 --- a/_downloads/f4554271a33819ebaa4c3281a1e7fc79/barcode_demo.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Barcode Demo\n\n\nThis demo shows how to produce a one-dimensional image, or \"bar code\".\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# the bar\nx = np.random.rand(500) > 0.7\n\nbarprops = dict(aspect='auto', cmap='binary', interpolation='nearest')\n\nfig = plt.figure()\n\n# a vertical barcode\nax1 = fig.add_axes([0.1, 0.1, 0.1, 0.8])\nax1.set_axis_off()\nax1.imshow(x.reshape((-1, 1)), **barprops)\n\n# a horizontal barcode\nax2 = fig.add_axes([0.3, 0.4, 0.6, 0.2])\nax2.set_axis_off()\nax2.imshow(x.reshape((1, -1)), **barprops)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.imshow\nmatplotlib.pyplot.imshow" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f45653f2fa706861b9812132fd89ce2b/topographic_hillshading.ipynb b/_downloads/f45653f2fa706861b9812132fd89ce2b/topographic_hillshading.ipynb deleted file mode 120000 index b29f700f2a9..00000000000 --- a/_downloads/f45653f2fa706861b9812132fd89ce2b/topographic_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f45653f2fa706861b9812132fd89ce2b/topographic_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/f4580c5f4464636e9330304c95ecadeb/simple_rgb.ipynb b/_downloads/f4580c5f4464636e9330304c95ecadeb/simple_rgb.ipynb deleted file mode 120000 index 3df93b7811a..00000000000 --- a/_downloads/f4580c5f4464636e9330304c95ecadeb/simple_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f4580c5f4464636e9330304c95ecadeb/simple_rgb.ipynb \ No newline at end of file diff --git a/_downloads/f45d6524c37b243868634eb08ad7f842/sample_plots.ipynb b/_downloads/f45d6524c37b243868634eb08ad7f842/sample_plots.ipynb deleted file mode 120000 index f41bc248486..00000000000 --- a/_downloads/f45d6524c37b243868634eb08ad7f842/sample_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f45d6524c37b243868634eb08ad7f842/sample_plots.ipynb \ No newline at end of file diff --git a/_downloads/f47e03efbd18f62a397c96eb6e04c3a8/units_sample.ipynb b/_downloads/f47e03efbd18f62a397c96eb6e04c3a8/units_sample.ipynb deleted file mode 120000 index bf904d5120f..00000000000 --- a/_downloads/f47e03efbd18f62a397c96eb6e04c3a8/units_sample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f47e03efbd18f62a397c96eb6e04c3a8/units_sample.ipynb \ No newline at end of file diff --git a/_downloads/f481834e0181527095ee8d42b8fccefe/marker_path.ipynb b/_downloads/f481834e0181527095ee8d42b8fccefe/marker_path.ipynb deleted file mode 120000 index 8dfac43d914..00000000000 --- a/_downloads/f481834e0181527095ee8d42b8fccefe/marker_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f481834e0181527095ee8d42b8fccefe/marker_path.ipynb \ No newline at end of file diff --git a/_downloads/f4836d1a0d1d13acedc8797b512a8ee0/fill_between_alpha.py b/_downloads/f4836d1a0d1d13acedc8797b512a8ee0/fill_between_alpha.py deleted file mode 100644 index dc0eaaf9326..00000000000 --- a/_downloads/f4836d1a0d1d13acedc8797b512a8ee0/fill_between_alpha.py +++ /dev/null @@ -1,138 +0,0 @@ -""" -Fill Between and Alpha -====================== - -The :meth:`~matplotlib.axes.Axes.fill_between` function generates a -shaded region between a min and max boundary that is useful for -illustrating ranges. It has a very handy ``where`` argument to -combine filling with logical ranges, e.g., to just fill in a curve over -some threshold value. - -At its most basic level, ``fill_between`` can be use to enhance a -graphs visual appearance. Let's compare two graphs of a financial -times with a simple line plot on the left and a filled line on the -right. -""" - -import matplotlib.pyplot as plt -import numpy as np -import matplotlib.cbook as cbook - -# load up some sample financial data -with cbook.get_sample_data('goog.npz') as datafile: - r = np.load(datafile)['price_data'].view(np.recarray) -# Matplotlib prefers datetime instead of np.datetime64. -date = r.date.astype('O') -# create two subplots with the shared x and y axes -fig, (ax1, ax2) = plt.subplots(1, 2, sharex=True, sharey=True) - -pricemin = r.close.min() - -ax1.plot(date, r.close, lw=2) -ax2.fill_between(date, pricemin, r.close, facecolor='blue', alpha=0.5) - -for ax in ax1, ax2: - ax.grid(True) - -ax1.set_ylabel('price') -for label in ax2.get_yticklabels(): - label.set_visible(False) - -fig.suptitle('Google (GOOG) daily closing price') -fig.autofmt_xdate() - -############################################################################### -# The alpha channel is not necessary here, but it can be used to soften -# colors for more visually appealing plots. In other examples, as we'll -# see below, the alpha channel is functionally useful as the shaded -# regions can overlap and alpha allows you to see both. Note that the -# postscript format does not support alpha (this is a postscript -# limitation, not a matplotlib limitation), so when using alpha save -# your figures in PNG, PDF or SVG. -# -# Our next example computes two populations of random walkers with a -# different mean and standard deviation of the normal distributions from -# which the steps are drawn. We use shared regions to plot +/- one -# standard deviation of the mean position of the population. Here the -# alpha channel is useful, not just aesthetic. - -Nsteps, Nwalkers = 100, 250 -t = np.arange(Nsteps) - -# an (Nsteps x Nwalkers) array of random walk steps -S1 = 0.002 + 0.01*np.random.randn(Nsteps, Nwalkers) -S2 = 0.004 + 0.02*np.random.randn(Nsteps, Nwalkers) - -# an (Nsteps x Nwalkers) array of random walker positions -X1 = S1.cumsum(axis=0) -X2 = S2.cumsum(axis=0) - - -# Nsteps length arrays empirical means and standard deviations of both -# populations over time -mu1 = X1.mean(axis=1) -sigma1 = X1.std(axis=1) -mu2 = X2.mean(axis=1) -sigma2 = X2.std(axis=1) - -# plot it! -fig, ax = plt.subplots(1) -ax.plot(t, mu1, lw=2, label='mean population 1', color='blue') -ax.plot(t, mu2, lw=2, label='mean population 2', color='yellow') -ax.fill_between(t, mu1+sigma1, mu1-sigma1, facecolor='blue', alpha=0.5) -ax.fill_between(t, mu2+sigma2, mu2-sigma2, facecolor='yellow', alpha=0.5) -ax.set_title(r'random walkers empirical $\mu$ and $\pm \sigma$ interval') -ax.legend(loc='upper left') -ax.set_xlabel('num steps') -ax.set_ylabel('position') -ax.grid() - -############################################################################### -# The ``where`` keyword argument is very handy for highlighting certain -# regions of the graph. ``where`` takes a boolean mask the same length -# as the x, ymin and ymax arguments, and only fills in the region where -# the boolean mask is True. In the example below, we simulate a single -# random walker and compute the analytic mean and standard deviation of -# the population positions. The population mean is shown as the black -# dashed line, and the plus/minus one sigma deviation from the mean is -# shown as the yellow filled region. We use the where mask -# ``X > upper_bound`` to find the region where the walker is above the one -# sigma boundary, and shade that region blue. - -Nsteps = 500 -t = np.arange(Nsteps) - -mu = 0.002 -sigma = 0.01 - -# the steps and position -S = mu + sigma*np.random.randn(Nsteps) -X = S.cumsum() - -# the 1 sigma upper and lower analytic population bounds -lower_bound = mu*t - sigma*np.sqrt(t) -upper_bound = mu*t + sigma*np.sqrt(t) - -fig, ax = plt.subplots(1) -ax.plot(t, X, lw=2, label='walker position', color='blue') -ax.plot(t, mu*t, lw=1, label='population mean', color='black', ls='--') -ax.fill_between(t, lower_bound, upper_bound, facecolor='yellow', alpha=0.5, - label='1 sigma range') -ax.legend(loc='upper left') - -# here we use the where argument to only fill the region where the -# walker is above the population 1 sigma boundary -ax.fill_between(t, upper_bound, X, where=X > upper_bound, facecolor='blue', - alpha=0.5) -ax.set_xlabel('num steps') -ax.set_ylabel('position') -ax.grid() - -############################################################################### -# Another handy use of filled regions is to highlight horizontal or -# vertical spans of an axes -- for that matplotlib has some helper -# functions :meth:`~matplotlib.axes.Axes.axhspan` and -# :meth:`~matplotlib.axes.Axes.axvspan` and example -# :doc:`/gallery/subplots_axes_and_figures/axhspan_demo`. - -plt.show() diff --git a/_downloads/f487e2c89c0a8048893245c9bd1e8ef4/slider_demo.py b/_downloads/f487e2c89c0a8048893245c9bd1e8ef4/slider_demo.py deleted file mode 120000 index eefde89f4df..00000000000 --- a/_downloads/f487e2c89c0a8048893245c9bd1e8ef4/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f487e2c89c0a8048893245c9bd1e8ef4/slider_demo.py \ No newline at end of file diff --git a/_downloads/f49678c1f70826962286cf40221c5f06/vline_hline_demo.py b/_downloads/f49678c1f70826962286cf40221c5f06/vline_hline_demo.py deleted file mode 120000 index a502cf83fb1..00000000000 --- a/_downloads/f49678c1f70826962286cf40221c5f06/vline_hline_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f49678c1f70826962286cf40221c5f06/vline_hline_demo.py \ No newline at end of file diff --git a/_downloads/f49689a5ddc5ed495e5c80287ccf5802/embedding_in_tk_sgskip.py b/_downloads/f49689a5ddc5ed495e5c80287ccf5802/embedding_in_tk_sgskip.py deleted file mode 100644 index 3b8516dbff3..00000000000 --- a/_downloads/f49689a5ddc5ed495e5c80287ccf5802/embedding_in_tk_sgskip.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -=============== -Embedding in Tk -=============== - -""" - -import tkinter - -from matplotlib.backends.backend_tkagg import ( - FigureCanvasTkAgg, NavigationToolbar2Tk) -# Implement the default Matplotlib key bindings. -from matplotlib.backend_bases import key_press_handler -from matplotlib.figure import Figure - -import numpy as np - - -root = tkinter.Tk() -root.wm_title("Embedding in Tk") - -fig = Figure(figsize=(5, 4), dpi=100) -t = np.arange(0, 3, .01) -fig.add_subplot(111).plot(t, 2 * np.sin(2 * np.pi * t)) - -canvas = FigureCanvasTkAgg(fig, master=root) # A tk.DrawingArea. -canvas.draw() -canvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1) - -toolbar = NavigationToolbar2Tk(canvas, root) -toolbar.update() -canvas.get_tk_widget().pack(side=tkinter.TOP, fill=tkinter.BOTH, expand=1) - - -def on_key_press(event): - print("you pressed {}".format(event.key)) - key_press_handler(event, canvas, toolbar) - - -canvas.mpl_connect("key_press_event", on_key_press) - - -def _quit(): - root.quit() # stops mainloop - root.destroy() # this is necessary on Windows to prevent - # Fatal Python Error: PyEval_RestoreThread: NULL tstate - - -button = tkinter.Button(master=root, text="Quit", command=_quit) -button.pack(side=tkinter.BOTTOM) - -tkinter.mainloop() -# If you put root.destroy() here, it will cause an error if the window is -# closed with the window manager. diff --git a/_downloads/f49b4f5848e0f07b613d58e3bbce0103/create_subplots.ipynb b/_downloads/f49b4f5848e0f07b613d58e3bbce0103/create_subplots.ipynb deleted file mode 120000 index 219a80ca01e..00000000000 --- a/_downloads/f49b4f5848e0f07b613d58e3bbce0103/create_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f49b4f5848e0f07b613d58e3bbce0103/create_subplots.ipynb \ No newline at end of file diff --git a/_downloads/f4ab94e9ac760d039271947caaee9888/demo_curvelinear_grid.ipynb b/_downloads/f4ab94e9ac760d039271947caaee9888/demo_curvelinear_grid.ipynb deleted file mode 120000 index 987fa912342..00000000000 --- a/_downloads/f4ab94e9ac760d039271947caaee9888/demo_curvelinear_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f4ab94e9ac760d039271947caaee9888/demo_curvelinear_grid.ipynb \ No newline at end of file diff --git a/_downloads/f4bc119a68bada8be82cb0427f10a014/contourf_demo.py b/_downloads/f4bc119a68bada8be82cb0427f10a014/contourf_demo.py deleted file mode 120000 index 9ab7d0ea0c3..00000000000 --- a/_downloads/f4bc119a68bada8be82cb0427f10a014/contourf_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f4bc119a68bada8be82cb0427f10a014/contourf_demo.py \ No newline at end of file diff --git a/_downloads/f4c83b2de5c2a1d374b71e9995c229a5/demo_agg_filter.ipynb b/_downloads/f4c83b2de5c2a1d374b71e9995c229a5/demo_agg_filter.ipynb deleted file mode 120000 index 958abfe13c7..00000000000 --- a/_downloads/f4c83b2de5c2a1d374b71e9995c229a5/demo_agg_filter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f4c83b2de5c2a1d374b71e9995c229a5/demo_agg_filter.ipynb \ No newline at end of file diff --git a/_downloads/f4e20d9bfc3857b25404515f8cd960d6/custom_projection.ipynb b/_downloads/f4e20d9bfc3857b25404515f8cd960d6/custom_projection.ipynb deleted file mode 120000 index da595ddda0d..00000000000 --- a/_downloads/f4e20d9bfc3857b25404515f8cd960d6/custom_projection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f4e20d9bfc3857b25404515f8cd960d6/custom_projection.ipynb \ No newline at end of file diff --git a/_downloads/f4e62b06c67c86316281678dd212259a/whats_new_1_subplot3d.ipynb b/_downloads/f4e62b06c67c86316281678dd212259a/whats_new_1_subplot3d.ipynb deleted file mode 120000 index 03e6f93ea7f..00000000000 --- a/_downloads/f4e62b06c67c86316281678dd212259a/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f4e62b06c67c86316281678dd212259a/whats_new_1_subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/f4ec53d3d4b52eb010b361726b7cdb43/mathtext_demo.py b/_downloads/f4ec53d3d4b52eb010b361726b7cdb43/mathtext_demo.py deleted file mode 100644 index ab7e1b2bde8..00000000000 --- a/_downloads/f4ec53d3d4b52eb010b361726b7cdb43/mathtext_demo.py +++ /dev/null @@ -1,26 +0,0 @@ -""" -============= -Mathtext Demo -============= - -Use Matplotlib's internal LaTeX parser and layout engine. For true LaTeX -rendering, see the text.usetex option. -""" - -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() - -ax.plot([1, 2, 3], label=r'$\sqrt{x^2}$') -ax.legend() - -ax.set_xlabel(r'$\Delta_i^j$', fontsize=20) -ax.set_ylabel(r'$\Delta_{i+1}^j$', fontsize=20) -ax.set_title(r'$\Delta_i^j \hspace{0.4} \mathrm{versus} \hspace{0.4} ' - r'\Delta_{i+1}^j$', fontsize=20) - -tex = r'$\mathcal{R}\prod_{i=\alpha_{i+1}}^\infty a_i\sin(2 \pi f x_i)$' -ax.text(1, 1.6, tex, fontsize=20, va='bottom') - -fig.tight_layout() -plt.show() diff --git a/_downloads/f4ee30b9599ebb31aa6816e080832be2/font_family_rc_sgskip.py b/_downloads/f4ee30b9599ebb31aa6816e080832be2/font_family_rc_sgskip.py deleted file mode 100644 index 8cb4b620cfa..00000000000 --- a/_downloads/f4ee30b9599ebb31aa6816e080832be2/font_family_rc_sgskip.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -=========================== -Configuring the font family -=========================== - -You can explicitly set which font family is picked up for a given font -style (e.g., 'serif', 'sans-serif', or 'monospace'). - -In the example below, we only allow one font family (Tahoma) for the -sans-serif font style. You the default family with the font.family rc -param, e.g.,:: - - rcParams['font.family'] = 'sans-serif' - -and for the font.family you set a list of font styles to try to find -in order:: - - rcParams['font.sans-serif'] = ['Tahoma', 'DejaVu Sans', - 'Lucida Grande', 'Verdana'] - -""" - - -from matplotlib import rcParams -rcParams['font.family'] = 'sans-serif' -rcParams['font.sans-serif'] = ['Tahoma'] -import matplotlib.pyplot as plt - -fig, ax = plt.subplots() -ax.plot([1, 2, 3], label='test') - -ax.legend() -plt.show() diff --git a/_downloads/f4f0355f4bb69cbf21591a512ed6215a/simple_axisline3.ipynb b/_downloads/f4f0355f4bb69cbf21591a512ed6215a/simple_axisline3.ipynb deleted file mode 120000 index 812d0763055..00000000000 --- a/_downloads/f4f0355f4bb69cbf21591a512ed6215a/simple_axisline3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f4f0355f4bb69cbf21591a512ed6215a/simple_axisline3.ipynb \ No newline at end of file diff --git a/_downloads/f4fbb547394deee3f1d0c216d065efa6/simple_axis_direction01.py b/_downloads/f4fbb547394deee3f1d0c216d065efa6/simple_axis_direction01.py deleted file mode 100644 index 79d074b2d86..00000000000 --- a/_downloads/f4fbb547394deee3f1d0c216d065efa6/simple_axis_direction01.py +++ /dev/null @@ -1,21 +0,0 @@ -""" -======================= -Simple Axis Direction01 -======================= - -""" -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist as axisartist - -fig = plt.figure(figsize=(4, 2.5)) -ax1 = fig.add_subplot(axisartist.Subplot(fig, "111")) -fig.subplots_adjust(right=0.8) - -ax1.axis["left"].major_ticklabels.set_axis_direction("top") -ax1.axis["left"].label.set_text("Label") - -ax1.axis["right"].label.set_visible(True) -ax1.axis["right"].label.set_text("Label") -ax1.axis["right"].label.set_axis_direction("left") - -plt.show() diff --git a/_downloads/f509df2af426a1d3ba964b730e7d12f8/whats_new_98_4_legend.ipynb b/_downloads/f509df2af426a1d3ba964b730e7d12f8/whats_new_98_4_legend.ipynb deleted file mode 120000 index dffe5407912..00000000000 --- a/_downloads/f509df2af426a1d3ba964b730e7d12f8/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/f509df2af426a1d3ba964b730e7d12f8/whats_new_98_4_legend.ipynb \ No newline at end of file diff --git a/_downloads/f50e7ecefddd1b55f585961f4b481ebb/contour.ipynb b/_downloads/f50e7ecefddd1b55f585961f4b481ebb/contour.ipynb deleted file mode 120000 index 5ba09af5d80..00000000000 --- a/_downloads/f50e7ecefddd1b55f585961f4b481ebb/contour.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/f50e7ecefddd1b55f585961f4b481ebb/contour.ipynb \ No newline at end of file diff --git a/_downloads/f51695e7ff53ba35119d5e445f807984/anatomy.py b/_downloads/f51695e7ff53ba35119d5e445f807984/anatomy.py deleted file mode 120000 index 5ea103e586a..00000000000 --- a/_downloads/f51695e7ff53ba35119d5e445f807984/anatomy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f51695e7ff53ba35119d5e445f807984/anatomy.py \ No newline at end of file diff --git a/_downloads/f51b3985fdcea56b57c80c810c3abb26/pylab_with_gtk_sgskip.ipynb b/_downloads/f51b3985fdcea56b57c80c810c3abb26/pylab_with_gtk_sgskip.ipynb deleted file mode 120000 index a17a3b1b50d..00000000000 --- a/_downloads/f51b3985fdcea56b57c80c810c3abb26/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f51b3985fdcea56b57c80c810c3abb26/pylab_with_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/f51b7741ce794aa13fbf84f3d4910917/histogram_multihist.py b/_downloads/f51b7741ce794aa13fbf84f3d4910917/histogram_multihist.py deleted file mode 120000 index 4126cc8c6ba..00000000000 --- a/_downloads/f51b7741ce794aa13fbf84f3d4910917/histogram_multihist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f51b7741ce794aa13fbf84f3d4910917/histogram_multihist.py \ No newline at end of file diff --git a/_downloads/f52446fc58c0be5bbbccf346bc63a70e/colorbar_basics.py b/_downloads/f52446fc58c0be5bbbccf346bc63a70e/colorbar_basics.py deleted file mode 120000 index 42bf02304ae..00000000000 --- a/_downloads/f52446fc58c0be5bbbccf346bc63a70e/colorbar_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f52446fc58c0be5bbbccf346bc63a70e/colorbar_basics.py \ No newline at end of file diff --git a/_downloads/f52ba016301bfd10127b2007f7fc8686/print_stdout_sgskip.ipynb b/_downloads/f52ba016301bfd10127b2007f7fc8686/print_stdout_sgskip.ipynb deleted file mode 120000 index 876af84b635..00000000000 --- a/_downloads/f52ba016301bfd10127b2007f7fc8686/print_stdout_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f52ba016301bfd10127b2007f7fc8686/print_stdout_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/f537986753dae40da267ade4ddc2a837/pick_event_demo2.ipynb b/_downloads/f537986753dae40da267ade4ddc2a837/pick_event_demo2.ipynb deleted file mode 120000 index 4854ae43e71..00000000000 --- a/_downloads/f537986753dae40da267ade4ddc2a837/pick_event_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f537986753dae40da267ade4ddc2a837/pick_event_demo2.ipynb \ No newline at end of file diff --git a/_downloads/f53b60f4072a21c6af4e1e1541581058/anatomy.py b/_downloads/f53b60f4072a21c6af4e1e1541581058/anatomy.py deleted file mode 100644 index b29f99f0dd9..00000000000 --- a/_downloads/f53b60f4072a21c6af4e1e1541581058/anatomy.py +++ /dev/null @@ -1,143 +0,0 @@ -""" -=================== -Anatomy of a figure -=================== - -This figure shows the name of several matplotlib elements composing a figure -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.ticker import AutoMinorLocator, MultipleLocator, FuncFormatter - -np.random.seed(19680801) - -X = np.linspace(0.5, 3.5, 100) -Y1 = 3+np.cos(X) -Y2 = 1+np.cos(1+X/0.75)/2 -Y3 = np.random.uniform(Y1, Y2, len(X)) - -fig = plt.figure(figsize=(8, 8)) -ax = fig.add_subplot(1, 1, 1, aspect=1) - - -def minor_tick(x, pos): - if not x % 1.0: - return "" - return "%.2f" % x - -ax.xaxis.set_major_locator(MultipleLocator(1.000)) -ax.xaxis.set_minor_locator(AutoMinorLocator(4)) -ax.yaxis.set_major_locator(MultipleLocator(1.000)) -ax.yaxis.set_minor_locator(AutoMinorLocator(4)) -ax.xaxis.set_minor_formatter(FuncFormatter(minor_tick)) - -ax.set_xlim(0, 4) -ax.set_ylim(0, 4) - -ax.tick_params(which='major', width=1.0) -ax.tick_params(which='major', length=10) -ax.tick_params(which='minor', width=1.0, labelsize=10) -ax.tick_params(which='minor', length=5, labelsize=10, labelcolor='0.25') - -ax.grid(linestyle="--", linewidth=0.5, color='.25', zorder=-10) - -ax.plot(X, Y1, c=(0.25, 0.25, 1.00), lw=2, label="Blue signal", zorder=10) -ax.plot(X, Y2, c=(1.00, 0.25, 0.25), lw=2, label="Red signal") -ax.plot(X, Y3, linewidth=0, - marker='o', markerfacecolor='w', markeredgecolor='k') - -ax.set_title("Anatomy of a figure", fontsize=20, verticalalignment='bottom') -ax.set_xlabel("X axis label") -ax.set_ylabel("Y axis label") - -ax.legend() - - -def circle(x, y, radius=0.15): - from matplotlib.patches import Circle - from matplotlib.patheffects import withStroke - circle = Circle((x, y), radius, clip_on=False, zorder=10, linewidth=1, - edgecolor='black', facecolor=(0, 0, 0, .0125), - path_effects=[withStroke(linewidth=5, foreground='w')]) - ax.add_artist(circle) - - -def text(x, y, text): - ax.text(x, y, text, backgroundcolor="white", - ha='center', va='top', weight='bold', color='blue') - - -# Minor tick -circle(0.50, -0.10) -text(0.50, -0.32, "Minor tick label") - -# Major tick -circle(-0.03, 4.00) -text(0.03, 3.80, "Major tick") - -# Minor tick -circle(0.00, 3.50) -text(0.00, 3.30, "Minor tick") - -# Major tick label -circle(-0.15, 3.00) -text(-0.15, 2.80, "Major tick label") - -# X Label -circle(1.80, -0.27) -text(1.80, -0.45, "X axis label") - -# Y Label -circle(-0.27, 1.80) -text(-0.27, 1.6, "Y axis label") - -# Title -circle(1.60, 4.13) -text(1.60, 3.93, "Title") - -# Blue plot -circle(1.75, 2.80) -text(1.75, 2.60, "Line\n(line plot)") - -# Red plot -circle(1.20, 0.60) -text(1.20, 0.40, "Line\n(line plot)") - -# Scatter plot -circle(3.20, 1.75) -text(3.20, 1.55, "Markers\n(scatter plot)") - -# Grid -circle(3.00, 3.00) -text(3.00, 2.80, "Grid") - -# Legend -circle(3.70, 3.80) -text(3.70, 3.60, "Legend") - -# Axes -circle(0.5, 0.5) -text(0.5, 0.3, "Axes") - -# Figure -circle(-0.3, 0.65) -text(-0.3, 0.45, "Figure") - -color = 'blue' -ax.annotate('Spines', xy=(4.0, 0.35), xytext=(3.3, 0.5), - weight='bold', color=color, - arrowprops=dict(arrowstyle='->', - connectionstyle="arc3", - color=color)) - -ax.annotate('', xy=(3.15, 0.0), xytext=(3.45, 0.45), - weight='bold', color=color, - arrowprops=dict(arrowstyle='->', - connectionstyle="arc3", - color=color)) - -ax.text(4.0, -0.4, "Made with http://matplotlib.org", - fontsize=10, ha="right", color='.5') - -plt.show() diff --git a/_downloads/f540a41fa8b5aab8fa0cbd9f061e71f4/span_selector.py b/_downloads/f540a41fa8b5aab8fa0cbd9f061e71f4/span_selector.py deleted file mode 100644 index 2e720f4c98a..00000000000 --- a/_downloads/f540a41fa8b5aab8fa0cbd9f061e71f4/span_selector.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -============= -Span Selector -============= - -The SpanSelector is a mouse widget to select a xmin/xmax range and plot the -detail view of the selected region in the lower axes -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.widgets import SpanSelector - -# Fixing random state for reproducibility -np.random.seed(19680801) - -fig, (ax1, ax2) = plt.subplots(2, figsize=(8, 6)) -ax1.set(facecolor='#FFFFCC') - -x = np.arange(0.0, 5.0, 0.01) -y = np.sin(2*np.pi*x) + 0.5*np.random.randn(len(x)) - -ax1.plot(x, y, '-') -ax1.set_ylim(-2, 2) -ax1.set_title('Press left mouse button and drag to test') - -ax2.set(facecolor='#FFFFCC') -line2, = ax2.plot(x, y, '-') - - -def onselect(xmin, xmax): - indmin, indmax = np.searchsorted(x, (xmin, xmax)) - indmax = min(len(x) - 1, indmax) - - thisx = x[indmin:indmax] - thisy = y[indmin:indmax] - line2.set_data(thisx, thisy) - ax2.set_xlim(thisx[0], thisx[-1]) - ax2.set_ylim(thisy.min(), thisy.max()) - fig.canvas.draw() - -############################################################################# -# .. note:: -# -# If the SpanSelector object is garbage collected you will lose the -# interactivity. You must keep a hard reference to it to prevent this. -# - - -span = SpanSelector(ax1, onselect, 'horizontal', useblit=True, - rectprops=dict(alpha=0.5, facecolor='red')) -# Set useblit=True on most backends for enhanced performance. - - -plt.show() diff --git a/_downloads/f547793c5042e3e3d61772e8cda139be/axis_direction_demo_step01.py b/_downloads/f547793c5042e3e3d61772e8cda139be/axis_direction_demo_step01.py deleted file mode 120000 index 04cec42f224..00000000000 --- a/_downloads/f547793c5042e3e3d61772e8cda139be/axis_direction_demo_step01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f547793c5042e3e3d61772e8cda139be/axis_direction_demo_step01.py \ No newline at end of file diff --git a/_downloads/f54d4d9d004cab52fb273b3bbad47169/parasite_simple2.py b/_downloads/f54d4d9d004cab52fb273b3bbad47169/parasite_simple2.py deleted file mode 100644 index cbf768e892c..00000000000 --- a/_downloads/f54d4d9d004cab52fb273b3bbad47169/parasite_simple2.py +++ /dev/null @@ -1,47 +0,0 @@ -""" -================ -Parasite Simple2 -================ - -""" -import matplotlib.transforms as mtransforms -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.parasite_axes import SubplotHost - -obs = [["01_S1", 3.88, 0.14, 1970, 63], - ["01_S4", 5.6, 0.82, 1622, 150], - ["02_S1", 2.4, 0.54, 1570, 40], - ["03_S1", 4.1, 0.62, 2380, 170]] - - -fig = plt.figure() - -ax_kms = SubplotHost(fig, 1, 1, 1, aspect=1.) - -# angular proper motion("/yr) to linear velocity(km/s) at distance=2.3kpc -pm_to_kms = 1./206265.*2300*3.085e18/3.15e7/1.e5 - -aux_trans = mtransforms.Affine2D().scale(pm_to_kms, 1.) -ax_pm = ax_kms.twin(aux_trans) -ax_pm.set_viewlim_mode("transform") - -fig.add_subplot(ax_kms) - -for n, ds, dse, w, we in obs: - time = ((2007 + (10. + 4/30.)/12) - 1988.5) - v = ds / time * pm_to_kms - ve = dse / time * pm_to_kms - ax_kms.errorbar([v], [w], xerr=[ve], yerr=[we], color="k") - - -ax_kms.axis["bottom"].set_label("Linear velocity at 2.3 kpc [km/s]") -ax_kms.axis["left"].set_label("FWHM [km/s]") -ax_pm.axis["top"].set_label(r"Proper Motion [$''$/yr]") -ax_pm.axis["top"].label.set_visible(True) -ax_pm.axis["right"].major_ticklabels.set_visible(False) - -ax_kms.set_xlim(950, 3700) -ax_kms.set_ylim(950, 3100) -# xlim and ylim of ax_pms will be automatically adjusted. - -plt.show() diff --git a/_downloads/f554d88dd9696d3679c937c19f170c28/radio_buttons.py b/_downloads/f554d88dd9696d3679c937c19f170c28/radio_buttons.py deleted file mode 120000 index ec00fd1fb3e..00000000000 --- a/_downloads/f554d88dd9696d3679c937c19f170c28/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f554d88dd9696d3679c937c19f170c28/radio_buttons.py \ No newline at end of file diff --git a/_downloads/f55cef25ac132b28c4f2b50f02911c4d/pylab_with_gtk_sgskip.ipynb b/_downloads/f55cef25ac132b28c4f2b50f02911c4d/pylab_with_gtk_sgskip.ipynb deleted file mode 100644 index 740ad82e23d..00000000000 --- a/_downloads/f55cef25ac132b28c4f2b50f02911c4d/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# pyplot with GTK\n\n\nAn example of how to use pyplot to manage your figure windows, but modify the\nGUI by accessing the underlying GTK widgets.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.use('GTK3Agg') # or 'GTK3Cairo'\nimport matplotlib.pyplot as plt\n\nimport gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\n\nfig, ax = plt.subplots()\nax.plot([1, 2, 3], 'ro-', label='easy as 1 2 3')\nax.plot([1, 4, 9], 'gs--', label='easy as 1 2 3 squared')\nax.legend()\n\nmanager = fig.canvas.manager\n# you can access the window or vbox attributes this way\ntoolbar = manager.toolbar\nvbox = manager.vbox\n\n# now let's add a button to the toolbar\nbutton = Gtk.Button(label='Click me')\nbutton.show()\nbutton.connect('clicked', lambda button: print('hi mom'))\n\ntoolitem = Gtk.ToolItem()\ntoolitem.show()\ntoolitem.set_tooltip_text('Click me for fun and profit')\ntoolitem.add(button)\n\npos = 8 # where to insert this in the mpl toolbar\ntoolbar.insert(toolitem, pos)\n\n# now let's add a widget to the vbox\nlabel = Gtk.Label()\nlabel.set_markup('Drag mouse over axes for position')\nlabel.show()\nvbox.pack_start(label, False, False, 0)\nvbox.reorder_child(toolbar, -1)\n\ndef update(event):\n if event.xdata is None:\n label.set_markup('Drag mouse over axes for position')\n else:\n label.set_markup(\n f'x,y=({event.xdata}, {event.ydata})')\n\nfig.canvas.mpl_connect('motion_notify_event', update)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f55e73a6ac8441fd68270d3c6f2a7c7c/colormap-manipulation.py b/_downloads/f55e73a6ac8441fd68270d3c6f2a7c7c/colormap-manipulation.py deleted file mode 100644 index 76a82e171b1..00000000000 --- a/_downloads/f55e73a6ac8441fd68270d3c6f2a7c7c/colormap-manipulation.py +++ /dev/null @@ -1,213 +0,0 @@ -""" -******************************** -Creating Colormaps in Matplotlib -******************************** - -Matplotlib has a number of built-in colormaps accessible via -`.matplotlib.cm.get_cmap`. There are also external libraries like -palettable_ that have many extra colormaps. - -.. _palettable: https://jiffyclub.github.io/palettable/ - -However, we often want to create or manipulate colormaps in Matplotlib. -This can be done using the class `.ListedColormap` and a Nx4 numpy array of -values between 0 and 1 to represent the RGBA values of the colormap. There -is also a `.LinearSegmentedColormap` class that allows colormaps to be -specified with a few anchor points defining segments, and linearly -interpolating between the anchor points. - -Getting colormaps and accessing their values -============================================ - -First, getting a named colormap, most of which are listed in -:doc:`/tutorials/colors/colormaps` requires the use of -`.matplotlib.cm.get_cmap`, which returns a -:class:`.matplotlib.colors.ListedColormap` object. The second argument gives -the size of the list of colors used to define the colormap, and below we -use a modest value of 12 so there are not a lot of values to look at. -""" - -import numpy as np -import matplotlib.pyplot as plt -from matplotlib import cm -from matplotlib.colors import ListedColormap, LinearSegmentedColormap - -viridis = cm.get_cmap('viridis', 12) -print(viridis) - -############################################################################## -# The object ``viridis`` is a callable, that when passed a float between -# 0 and 1 returns an RGBA value from the colormap: - -print(viridis(0.56)) - -############################################################################## -# The list of colors that comprise the colormap can be directly accessed using -# the ``colors`` property, -# or it can be accessed indirectly by calling ``viridis`` with an array -# of values matching the length of the colormap. Note that the returned list -# is in the form of an RGBA Nx4 array, where N is the length of the colormap. - -print('viridis.colors', viridis.colors) -print('viridis(range(12))', viridis(range(12))) -print('viridis(np.linspace(0, 1, 12))', viridis(np.linspace(0, 1, 12))) - -############################################################################## -# The colormap is a lookup table, so "oversampling" the colormap returns -# nearest-neighbor interpolation (note the repeated colors in the list below) - -print('viridis(np.linspace(0, 1, 15))', viridis(np.linspace(0, 1, 15))) - -############################################################################## -# Creating listed colormaps -# ========================= -# -# This is essential the inverse operation of the above where we supply a -# Nx4 numpy array with all values between 0 and 1, -# to `.ListedColormap` to make a new colormap. This means that -# any numpy operations that we can do on a Nx4 array make carpentry of -# new colormaps from existing colormaps quite straight forward. -# -# Suppose we want to make the first 25 entries of a 256-length "viridis" -# colormap pink for some reason: - -viridis = cm.get_cmap('viridis', 256) -newcolors = viridis(np.linspace(0, 1, 256)) -pink = np.array([248/256, 24/256, 148/256, 1]) -newcolors[:25, :] = pink -newcmp = ListedColormap(newcolors) - - -def plot_examples(cms): - """ - helper function to plot two colormaps - """ - np.random.seed(19680801) - data = np.random.randn(30, 30) - - fig, axs = plt.subplots(1, 2, figsize=(6, 3), constrained_layout=True) - for [ax, cmap] in zip(axs, cms): - psm = ax.pcolormesh(data, cmap=cmap, rasterized=True, vmin=-4, vmax=4) - fig.colorbar(psm, ax=ax) - plt.show() - -plot_examples([viridis, newcmp]) - -############################################################################## -# We can easily reduce the dynamic range of a colormap; here we choose the -# middle 0.5 of the colormap. However, we need to interpolate from a larger -# colormap, otherwise the new colormap will have repeated values. - -viridisBig = cm.get_cmap('viridis', 512) -newcmp = ListedColormap(viridisBig(np.linspace(0.25, 0.75, 256))) -plot_examples([viridis, newcmp]) - -############################################################################## -# and we can easily concatenate two colormaps: - -top = cm.get_cmap('Oranges_r', 128) -bottom = cm.get_cmap('Blues', 128) - -newcolors = np.vstack((top(np.linspace(0, 1, 128)), - bottom(np.linspace(0, 1, 128)))) -newcmp = ListedColormap(newcolors, name='OrangeBlue') -plot_examples([viridis, newcmp]) - -############################################################################## -# Of course we need not start from a named colormap, we just need to create -# the Nx4 array to pass to `.ListedColormap`. Here we create a -# brown colormap that goes to white.... - -N = 256 -vals = np.ones((N, 4)) -vals[:, 0] = np.linspace(90/256, 1, N) -vals[:, 1] = np.linspace(39/256, 1, N) -vals[:, 2] = np.linspace(41/256, 1, N) -newcmp = ListedColormap(vals) -plot_examples([viridis, newcmp]) - -############################################################################## -# Creating linear segmented colormaps -# =================================== -# -# `.LinearSegmentedColormap` class specifies colormaps using anchor points -# between which RGB(A) values are interpolated. -# -# The format to specify these colormaps allows discontinuities at the anchor -# points. Each anchor point is specified as a row in a matrix of the -# form ``[x[i] yleft[i] yright[i]]``, where ``x[i]`` is the anchor, and -# ``yleft[i]`` and ``yright[i]`` are the values of the color on either -# side of the anchor point. -# -# If there are no discontinuities, then ``yleft[i]=yright[i]``: - -cdict = {'red': [[0.0, 0.0, 0.0], - [0.5, 1.0, 1.0], - [1.0, 1.0, 1.0]], - 'green': [[0.0, 0.0, 0.0], - [0.25, 0.0, 0.0], - [0.75, 1.0, 1.0], - [1.0, 1.0, 1.0]], - 'blue': [[0.0, 0.0, 0.0], - [0.5, 0.0, 0.0], - [1.0, 1.0, 1.0]]} - - -def plot_linearmap(cdict): - newcmp = LinearSegmentedColormap('testCmap', segmentdata=cdict, N=256) - rgba = newcmp(np.linspace(0, 1, 256)) - fig, ax = plt.subplots(figsize=(4, 3), constrained_layout=True) - col = ['r', 'g', 'b'] - for xx in [0.25, 0.5, 0.75]: - ax.axvline(xx, color='0.7', linestyle='--') - for i in range(3): - ax.plot(np.arange(256)/256, rgba[:, i], color=col[i]) - ax.set_xlabel('index') - ax.set_ylabel('RGB') - plt.show() - -plot_linearmap(cdict) - -############################################################################# -# In order to make a discontinuity at an anchor point, the third column is -# different than the second. The matrix for each of "red", "green", "blue", -# and optionally "alpha" is set up as:: -# -# cdict['red'] = [... -# [x[i] yleft[i] yright[i]], -# [x[i+1] yleft[i+1] yright[i+1]], -# ...] -# -# and for values passed to the colormap between ``x[i]`` and ``x[i+1]``, -# the interpolation is between ``yright[i]`` and ``yleft[i+1]``. -# -# In the example below there is a discontinuity in red at 0.5. The -# interpolation between 0 and 0.5 goes from 0.3 to 1, and between 0.5 and 1 -# it goes from 0.9 to 1. Note that red[0, 1], and red[2, 2] are both -# superfluous to the interpolation because red[0, 1] is the value to the -# left of 0, and red[2, 2] is the value to the right of 1.0. - -cdict['red'] = [[0.0, 0.0, 0.3], - [0.5, 1.0, 0.9], - [1.0, 1.0, 1.0]] -plot_linearmap(cdict) - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pcolormesh -matplotlib.figure.Figure.colorbar -matplotlib.colors -matplotlib.colors.LinearSegmentedColormap -matplotlib.colors.ListedColormap -matplotlib.cm -matplotlib.cm.get_cmap diff --git a/_downloads/f562de6135e488c0c70321b1969972ad/patheffects_guide.ipynb b/_downloads/f562de6135e488c0c70321b1969972ad/patheffects_guide.ipynb deleted file mode 120000 index c57209cb631..00000000000 --- a/_downloads/f562de6135e488c0c70321b1969972ad/patheffects_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f562de6135e488c0c70321b1969972ad/patheffects_guide.ipynb \ No newline at end of file diff --git a/_downloads/f57207b8287517d4cc94de93c675c678/simple_axes_divider3.ipynb b/_downloads/f57207b8287517d4cc94de93c675c678/simple_axes_divider3.ipynb deleted file mode 120000 index 0d1ecfcadd1..00000000000 --- a/_downloads/f57207b8287517d4cc94de93c675c678/simple_axes_divider3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f57207b8287517d4cc94de93c675c678/simple_axes_divider3.ipynb \ No newline at end of file diff --git a/_downloads/f5774a9c413365758a135b1a3f469de7/cursor_demo_sgskip.py b/_downloads/f5774a9c413365758a135b1a3f469de7/cursor_demo_sgskip.py deleted file mode 100644 index c5cdedccbc9..00000000000 --- a/_downloads/f5774a9c413365758a135b1a3f469de7/cursor_demo_sgskip.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -=========== -Cursor Demo -=========== - -This example shows how to use Matplotlib to provide a data cursor. It uses -Matplotlib to draw the cursor and may be a slow since this requires redrawing -the figure with every mouse move. - -Faster cursoring is possible using native GUI drawing, as in -:doc:`/gallery/user_interfaces/wxcursor_demo_sgskip`. - -The mpldatacursor__ and mplcursors__ third-party packages can be used to -achieve a similar effect. - -__ https://github.com/joferkington/mpldatacursor -__ https://github.com/anntzer/mplcursors -""" - -import matplotlib.pyplot as plt -import numpy as np - - -class Cursor(object): - def __init__(self, ax): - self.ax = ax - self.lx = ax.axhline(color='k') # the horiz line - self.ly = ax.axvline(color='k') # the vert line - - # text location in axes coords - self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes) - - def mouse_move(self, event): - if not event.inaxes: - return - - x, y = event.xdata, event.ydata - # update the line positions - self.lx.set_ydata(y) - self.ly.set_xdata(x) - - self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y)) - self.ax.figure.canvas.draw() - - -class SnaptoCursor(object): - """ - Like Cursor but the crosshair snaps to the nearest x, y point. - For simplicity, this assumes that *x* is sorted. - """ - - def __init__(self, ax, x, y): - self.ax = ax - self.lx = ax.axhline(color='k') # the horiz line - self.ly = ax.axvline(color='k') # the vert line - self.x = x - self.y = y - # text location in axes coords - self.txt = ax.text(0.7, 0.9, '', transform=ax.transAxes) - - def mouse_move(self, event): - if not event.inaxes: - return - - x, y = event.xdata, event.ydata - indx = min(np.searchsorted(self.x, x), len(self.x) - 1) - x = self.x[indx] - y = self.y[indx] - # update the line positions - self.lx.set_ydata(y) - self.ly.set_xdata(x) - - self.txt.set_text('x=%1.2f, y=%1.2f' % (x, y)) - print('x=%1.2f, y=%1.2f' % (x, y)) - self.ax.figure.canvas.draw() - - -t = np.arange(0.0, 1.0, 0.01) -s = np.sin(2 * 2 * np.pi * t) - -fig, ax = plt.subplots() -ax.plot(t, s, 'o') -cursor = Cursor(ax) -fig.canvas.mpl_connect('motion_notify_event', cursor.mouse_move) - -fig, ax = plt.subplots() -ax.plot(t, s, 'o') -snap_cursor = SnaptoCursor(ax, t, s) -fig.canvas.mpl_connect('motion_notify_event', snap_cursor.mouse_move) - -plt.show() diff --git a/_downloads/f57b561a07d3b7ae5b29752ad188868f/fill_spiral.py b/_downloads/f57b561a07d3b7ae5b29752ad188868f/fill_spiral.py deleted file mode 100644 index e82f0203e39..00000000000 --- a/_downloads/f57b561a07d3b7ae5b29752ad188868f/fill_spiral.py +++ /dev/null @@ -1,29 +0,0 @@ -""" -=========== -Fill Spiral -=========== - -""" -import matplotlib.pyplot as plt -import numpy as np - -theta = np.arange(0, 8*np.pi, 0.1) -a = 1 -b = .2 - -for dt in np.arange(0, 2*np.pi, np.pi/2.0): - - x = a*np.cos(theta + dt)*np.exp(b*theta) - y = a*np.sin(theta + dt)*np.exp(b*theta) - - dt = dt + np.pi/4.0 - - x2 = a*np.cos(theta + dt)*np.exp(b*theta) - y2 = a*np.sin(theta + dt)*np.exp(b*theta) - - xf = np.concatenate((x, x2[::-1])) - yf = np.concatenate((y, y2[::-1])) - - p1 = plt.fill(xf, yf) - -plt.show() diff --git a/_downloads/f582e4a4355952b0dc97bfb0aa49513e/simple_axes_divider1.py b/_downloads/f582e4a4355952b0dc97bfb0aa49513e/simple_axes_divider1.py deleted file mode 120000 index 7e32d4a9b77..00000000000 --- a/_downloads/f582e4a4355952b0dc97bfb0aa49513e/simple_axes_divider1.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f582e4a4355952b0dc97bfb0aa49513e/simple_axes_divider1.py \ No newline at end of file diff --git a/_downloads/f58ffbe89b8bc61a26daa8b4bf244b51/eventplot_demo.py b/_downloads/f58ffbe89b8bc61a26daa8b4bf244b51/eventplot_demo.py deleted file mode 100644 index d1be2fbe91f..00000000000 --- a/_downloads/f58ffbe89b8bc61a26daa8b4bf244b51/eventplot_demo.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -============== -Eventplot Demo -============== - -An eventplot showing sequences of events with various line properties. -The plot is shown in both horizontal and vertical orientations. -""" - -import matplotlib.pyplot as plt -import numpy as np -import matplotlib -matplotlib.rcParams['font.size'] = 8.0 - -# Fixing random state for reproducibility -np.random.seed(19680801) - - -# create random data -data1 = np.random.random([6, 50]) - -# set different colors for each set of positions -colors1 = ['C{}'.format(i) for i in range(6)] - -# set different line properties for each set of positions -# note that some overlap -lineoffsets1 = np.array([-15, -3, 1, 1.5, 6, 10]) -linelengths1 = [5, 2, 1, 1, 3, 1.5] - -fig, axs = plt.subplots(2, 2) - -# create a horizontal plot -axs[0, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1, - linelengths=linelengths1) - -# create a vertical plot -axs[1, 0].eventplot(data1, colors=colors1, lineoffsets=lineoffsets1, - linelengths=linelengths1, orientation='vertical') - -# create another set of random data. -# the gamma distribution is only used fo aesthetic purposes -data2 = np.random.gamma(4, size=[60, 50]) - -# use individual values for the parameters this time -# these values will be used for all data sets (except lineoffsets2, which -# sets the increment between each data set in this usage) -colors2 = 'black' -lineoffsets2 = 1 -linelengths2 = 1 - -# create a horizontal plot -axs[0, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2, - linelengths=linelengths2) - - -# create a vertical plot -axs[1, 1].eventplot(data2, colors=colors2, lineoffsets=lineoffsets2, - linelengths=linelengths2, orientation='vertical') - -plt.show() diff --git a/_downloads/f5a8062c89ecaee83d5abe4948911653/errorbar_features.py b/_downloads/f5a8062c89ecaee83d5abe4948911653/errorbar_features.py deleted file mode 120000 index 3dd40abc07a..00000000000 --- a/_downloads/f5a8062c89ecaee83d5abe4948911653/errorbar_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f5a8062c89ecaee83d5abe4948911653/errorbar_features.py \ No newline at end of file diff --git a/_downloads/f5c0e73c8ffbc7f440ac1bbb56a1f514/bbox_intersect.py b/_downloads/f5c0e73c8ffbc7f440ac1bbb56a1f514/bbox_intersect.py deleted file mode 120000 index 1704ba78fe5..00000000000 --- a/_downloads/f5c0e73c8ffbc7f440ac1bbb56a1f514/bbox_intersect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f5c0e73c8ffbc7f440ac1bbb56a1f514/bbox_intersect.py \ No newline at end of file diff --git a/_downloads/f5c3d092eec330200f60ed9717f3ddc2/matshow.py b/_downloads/f5c3d092eec330200f60ed9717f3ddc2/matshow.py deleted file mode 120000 index 3df5e8715c2..00000000000 --- a/_downloads/f5c3d092eec330200f60ed9717f3ddc2/matshow.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f5c3d092eec330200f60ed9717f3ddc2/matshow.py \ No newline at end of file diff --git a/_downloads/f5c742e5b84017fe5e407db5df4b4fb6/simple_axisartist1.ipynb b/_downloads/f5c742e5b84017fe5e407db5df4b4fb6/simple_axisartist1.ipynb deleted file mode 120000 index 5bb2de01998..00000000000 --- a/_downloads/f5c742e5b84017fe5e407db5df4b4fb6/simple_axisartist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f5c742e5b84017fe5e407db5df4b4fb6/simple_axisartist1.ipynb \ No newline at end of file diff --git a/_downloads/f5d39625c01e6970a0d6995177a363ea/resample.ipynb b/_downloads/f5d39625c01e6970a0d6995177a363ea/resample.ipynb deleted file mode 120000 index eea09ff9522..00000000000 --- a/_downloads/f5d39625c01e6970a0d6995177a363ea/resample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f5d39625c01e6970a0d6995177a363ea/resample.ipynb \ No newline at end of file diff --git a/_downloads/f5d5ed53efc5ed3692fe0dab68a0a227/fill_spiral.py b/_downloads/f5d5ed53efc5ed3692fe0dab68a0a227/fill_spiral.py deleted file mode 120000 index 359c176198e..00000000000 --- a/_downloads/f5d5ed53efc5ed3692fe0dab68a0a227/fill_spiral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f5d5ed53efc5ed3692fe0dab68a0a227/fill_spiral.py \ No newline at end of file diff --git a/_downloads/f5d770dd203699e7b699f321f19a4d10/animated_histogram.py b/_downloads/f5d770dd203699e7b699f321f19a4d10/animated_histogram.py deleted file mode 120000 index d1d07fbf766..00000000000 --- a/_downloads/f5d770dd203699e7b699f321f19a4d10/animated_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f5d770dd203699e7b699f321f19a4d10/animated_histogram.py \ No newline at end of file diff --git a/_downloads/f5ddcbfa3e8a624dece952eded99733e/integral.py b/_downloads/f5ddcbfa3e8a624dece952eded99733e/integral.py deleted file mode 120000 index 032c154695f..00000000000 --- a/_downloads/f5ddcbfa3e8a624dece952eded99733e/integral.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f5ddcbfa3e8a624dece952eded99733e/integral.py \ No newline at end of file diff --git a/_downloads/f5df46c2887a97004ab2a5820d79dbd9/embedding_in_wx2_sgskip.py b/_downloads/f5df46c2887a97004ab2a5820d79dbd9/embedding_in_wx2_sgskip.py deleted file mode 120000 index 971fb19c9b0..00000000000 --- a/_downloads/f5df46c2887a97004ab2a5820d79dbd9/embedding_in_wx2_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f5df46c2887a97004ab2a5820d79dbd9/embedding_in_wx2_sgskip.py \ No newline at end of file diff --git a/_downloads/f5e7a628b5567339938d9d0e5c4f062f/path_editor.ipynb b/_downloads/f5e7a628b5567339938d9d0e5c4f062f/path_editor.ipynb deleted file mode 120000 index 30096b9393b..00000000000 --- a/_downloads/f5e7a628b5567339938d9d0e5c4f062f/path_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f5e7a628b5567339938d9d0e5c4f062f/path_editor.ipynb \ No newline at end of file diff --git a/_downloads/f5e9fe7b2296884af169530677f71093/simple_axisline4.py b/_downloads/f5e9fe7b2296884af169530677f71093/simple_axisline4.py deleted file mode 120000 index 9f5fdb93c95..00000000000 --- a/_downloads/f5e9fe7b2296884af169530677f71093/simple_axisline4.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f5e9fe7b2296884af169530677f71093/simple_axisline4.py \ No newline at end of file diff --git a/_downloads/f5f2d6c2488efda5bf6163775533f327/mathtext_asarray.ipynb b/_downloads/f5f2d6c2488efda5bf6163775533f327/mathtext_asarray.ipynb deleted file mode 120000 index 103f852be10..00000000000 --- a/_downloads/f5f2d6c2488efda5bf6163775533f327/mathtext_asarray.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f5f2d6c2488efda5bf6163775533f327/mathtext_asarray.ipynb \ No newline at end of file diff --git a/_downloads/f5f2e17832bd3707d4fec182adbbd347/voxels.ipynb b/_downloads/f5f2e17832bd3707d4fec182adbbd347/voxels.ipynb deleted file mode 100644 index 521cb5294ed..00000000000 --- a/_downloads/f5f2e17832bd3707d4fec182adbbd347/voxels.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==========================\n3D voxel / volumetric plot\n==========================\n\nDemonstrates plotting 3D volumetric objects with ``ax.voxels``\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\n# prepare some coordinates\nx, y, z = np.indices((8, 8, 8))\n\n# draw cuboids in the top left and bottom right corners, and a link between them\ncube1 = (x < 3) & (y < 3) & (z < 3)\ncube2 = (x >= 5) & (y >= 5) & (z >= 5)\nlink = abs(x - y) + abs(y - z) + abs(z - x) <= 2\n\n# combine the objects into a single boolean array\nvoxels = cube1 | cube2 | link\n\n# set the colors of each object\ncolors = np.empty(voxels.shape, dtype=object)\ncolors[link] = 'red'\ncolors[cube1] = 'blue'\ncolors[cube2] = 'green'\n\n# and plot everything\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(voxels, facecolors=colors, edgecolor='k')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f5faea09640921248c4805c1b4908450/color_by_yvalue.py b/_downloads/f5faea09640921248c4805c1b4908450/color_by_yvalue.py deleted file mode 100644 index 79d18ab0919..00000000000 --- a/_downloads/f5faea09640921248c4805c1b4908450/color_by_yvalue.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -================ -Color by y-value -================ - -Use masked arrays to plot a line with different colors by y-value. -""" -import numpy as np -import matplotlib.pyplot as plt - -t = np.arange(0.0, 2.0, 0.01) -s = np.sin(2 * np.pi * t) - -upper = 0.77 -lower = -0.77 - -supper = np.ma.masked_where(s < upper, s) -slower = np.ma.masked_where(s > lower, s) -smiddle = np.ma.masked_where((s < lower) | (s > upper), s) - -fig, ax = plt.subplots() -ax.plot(t, smiddle, t, slower, t, supper) -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot diff --git a/_downloads/f606e70c4a33ea095ee099369098ed32/demo_tight_layout.py b/_downloads/f606e70c4a33ea095ee099369098ed32/demo_tight_layout.py deleted file mode 120000 index 1ce97b38b4d..00000000000 --- a/_downloads/f606e70c4a33ea095ee099369098ed32/demo_tight_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f606e70c4a33ea095ee099369098ed32/demo_tight_layout.py \ No newline at end of file diff --git a/_downloads/f60888364d071a67cfd9fa30ce81f79a/fancytextbox_demo.py b/_downloads/f60888364d071a67cfd9fa30ce81f79a/fancytextbox_demo.py deleted file mode 120000 index 08717b89817..00000000000 --- a/_downloads/f60888364d071a67cfd9fa30ce81f79a/fancytextbox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f60888364d071a67cfd9fa30ce81f79a/fancytextbox_demo.py \ No newline at end of file diff --git a/_downloads/f616dd8974adaed18c6f21b3a4aab281/stackplot_demo.py b/_downloads/f616dd8974adaed18c6f21b3a4aab281/stackplot_demo.py deleted file mode 100644 index 27db8ebd5a8..00000000000 --- a/_downloads/f616dd8974adaed18c6f21b3a4aab281/stackplot_demo.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -============== -Stackplot Demo -============== - -How to create stackplots with Matplotlib. - -Stackplots are generated by plotting different datasets vertically on -top of one another rather than overlapping with one another. Below we -show some examples to accomplish this with Matplotlib. -""" -import numpy as np -import matplotlib.pyplot as plt - -x = [1, 2, 3, 4, 5] -y1 = [1, 1, 2, 3, 5] -y2 = [0, 4, 2, 6, 8] -y3 = [1, 3, 5, 7, 9] - -y = np.vstack([y1, y2, y3]) - -labels = ["Fibonacci ", "Evens", "Odds"] - -fig, ax = plt.subplots() -ax.stackplot(x, y1, y2, y3, labels=labels) -ax.legend(loc='upper left') -plt.show() - -fig, ax = plt.subplots() -ax.stackplot(x, y) -plt.show() - -############################################################################### -# Here we show an example of making a streamgraph using stackplot - - -def layers(n, m): - """ - Return *n* random Gaussian mixtures, each of length *m*. - """ - def bump(a): - x = 1 / (.1 + np.random.random()) - y = 2 * np.random.random() - .5 - z = 10 / (.1 + np.random.random()) - for i in range(m): - w = (i / m - y) * z - a[i] += x * np.exp(-w * w) - a = np.zeros((m, n)) - for i in range(n): - for j in range(5): - bump(a[:, i]) - return a - - -d = layers(3, 100) - -fig, ax = plt.subplots() -ax.stackplot(range(100), d.T, baseline='wiggle') -plt.show() diff --git a/_downloads/f6217d1285dc0cd1d3e47c79f8b35c02/simple_axisartist1.ipynb b/_downloads/f6217d1285dc0cd1d3e47c79f8b35c02/simple_axisartist1.ipynb deleted file mode 120000 index 559437a217c..00000000000 --- a/_downloads/f6217d1285dc0cd1d3e47c79f8b35c02/simple_axisartist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f6217d1285dc0cd1d3e47c79f8b35c02/simple_axisartist1.ipynb \ No newline at end of file diff --git a/_downloads/f625441558195fda19490622f3943b35/polar_demo.py b/_downloads/f625441558195fda19490622f3943b35/polar_demo.py deleted file mode 100644 index 1ba897a9fa4..00000000000 --- a/_downloads/f625441558195fda19490622f3943b35/polar_demo.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -========== -Polar Demo -========== - -Demo of a line plot on a polar axis. -""" -import numpy as np -import matplotlib.pyplot as plt - - -r = np.arange(0, 2, 0.01) -theta = 2 * np.pi * r - -ax = plt.subplot(111, projection='polar') -ax.plot(theta, r) -ax.set_rmax(2) -ax.set_rticks([0.5, 1, 1.5, 2]) # Less radial ticks -ax.set_rlabel_position(-22.5) # Move radial labels away from plotted line -ax.grid(True) - -ax.set_title("A line plot on a polar axis", va='bottom') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.projections.polar -matplotlib.projections.polar.PolarAxes -matplotlib.projections.polar.PolarAxes.set_rticks -matplotlib.projections.polar.PolarAxes.set_rmax -matplotlib.projections.polar.PolarAxes.set_rlabel_position diff --git a/_downloads/f6423b92de3ef5da6ca94dd19cf1766a/tricontourf3d.py b/_downloads/f6423b92de3ef5da6ca94dd19cf1766a/tricontourf3d.py deleted file mode 120000 index 0d3aa947a9f..00000000000 --- a/_downloads/f6423b92de3ef5da6ca94dd19cf1766a/tricontourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f6423b92de3ef5da6ca94dd19cf1766a/tricontourf3d.py \ No newline at end of file diff --git a/_downloads/f642865f269ec2bbd665ffaacc711a8b/sankey_basics.ipynb b/_downloads/f642865f269ec2bbd665ffaacc711a8b/sankey_basics.ipynb deleted file mode 120000 index b951aa5ce4c..00000000000 --- a/_downloads/f642865f269ec2bbd665ffaacc711a8b/sankey_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f642865f269ec2bbd665ffaacc711a8b/sankey_basics.ipynb \ No newline at end of file diff --git a/_downloads/f64ff474c53e61d6f10712b934c7f0bc/tricontour_smooth_delaunay.py b/_downloads/f64ff474c53e61d6f10712b934c7f0bc/tricontour_smooth_delaunay.py deleted file mode 100644 index 23c6b902398..00000000000 --- a/_downloads/f64ff474c53e61d6f10712b934c7f0bc/tricontour_smooth_delaunay.py +++ /dev/null @@ -1,161 +0,0 @@ -""" -========================== -Tricontour Smooth Delaunay -========================== - -Demonstrates high-resolution tricontouring of a random set of points; -a `matplotlib.tri.TriAnalyzer` is used to improve the plot quality. - -The initial data points and triangular grid for this demo are: - -- a set of random points is instantiated, inside [-1, 1] x [-1, 1] square -- A Delaunay triangulation of these points is then computed, of which a - random subset of triangles is masked out by the user (based on - *init_mask_frac* parameter). This simulates invalidated data. - -The proposed generic procedure to obtain a high resolution contouring of such -a data set is the following: - -1. Compute an extended mask with a `matplotlib.tri.TriAnalyzer`, which will - exclude badly shaped (flat) triangles from the border of the - triangulation. Apply the mask to the triangulation (using set_mask). -2. Refine and interpolate the data using a - `matplotlib.tri.UniformTriRefiner`. -3. Plot the refined data with `~.axes.Axes.tricontour`. - -""" -from matplotlib.tri import Triangulation, TriAnalyzer, UniformTriRefiner -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import numpy as np - - -#----------------------------------------------------------------------------- -# Analytical test function -#----------------------------------------------------------------------------- -def experiment_res(x, y): - """An analytic function representing experiment results.""" - x = 2 * x - r1 = np.sqrt((0.5 - x)**2 + (0.5 - y)**2) - theta1 = np.arctan2(0.5 - x, 0.5 - y) - r2 = np.sqrt((-x - 0.2)**2 + (-y - 0.2)**2) - theta2 = np.arctan2(-x - 0.2, -y - 0.2) - z = (4 * (np.exp((r1/10)**2) - 1) * 30 * np.cos(3 * theta1) + - (np.exp((r2/10)**2) - 1) * 30 * np.cos(5 * theta2) + - 2 * (x**2 + y**2)) - return (np.max(z) - z) / (np.max(z) - np.min(z)) - -#----------------------------------------------------------------------------- -# Generating the initial data test points and triangulation for the demo -#----------------------------------------------------------------------------- -# User parameters for data test points -n_test = 200 # Number of test data points, tested from 3 to 5000 for subdiv=3 - -subdiv = 3 # Number of recursive subdivisions of the initial mesh for smooth - # plots. Values >3 might result in a very high number of triangles - # for the refine mesh: new triangles numbering = (4**subdiv)*ntri - -init_mask_frac = 0.0 # Float > 0. adjusting the proportion of - # (invalid) initial triangles which will be masked - # out. Enter 0 for no mask. - -min_circle_ratio = .01 # Minimum circle ratio - border triangles with circle - # ratio below this will be masked if they touch a - # border. Suggested value 0.01; use -1 to keep - # all triangles. - -# Random points -random_gen = np.random.RandomState(seed=19680801) -x_test = random_gen.uniform(-1., 1., size=n_test) -y_test = random_gen.uniform(-1., 1., size=n_test) -z_test = experiment_res(x_test, y_test) - -# meshing with Delaunay triangulation -tri = Triangulation(x_test, y_test) -ntri = tri.triangles.shape[0] - -# Some invalid data are masked out -mask_init = np.zeros(ntri, dtype=bool) -masked_tri = random_gen.randint(0, ntri, int(ntri * init_mask_frac)) -mask_init[masked_tri] = True -tri.set_mask(mask_init) - - -#----------------------------------------------------------------------------- -# Improving the triangulation before high-res plots: removing flat triangles -#----------------------------------------------------------------------------- -# masking badly shaped triangles at the border of the triangular mesh. -mask = TriAnalyzer(tri).get_flat_tri_mask(min_circle_ratio) -tri.set_mask(mask) - -# refining the data -refiner = UniformTriRefiner(tri) -tri_refi, z_test_refi = refiner.refine_field(z_test, subdiv=subdiv) - -# analytical 'results' for comparison -z_expected = experiment_res(tri_refi.x, tri_refi.y) - -# for the demo: loading the 'flat' triangles for plot -flat_tri = Triangulation(x_test, y_test) -flat_tri.set_mask(~mask) - - -#----------------------------------------------------------------------------- -# Now the plots -#----------------------------------------------------------------------------- -# User options for plots -plot_tri = True # plot of base triangulation -plot_masked_tri = True # plot of excessively flat excluded triangles -plot_refi_tri = False # plot of refined triangulation -plot_expected = False # plot of analytical function values for comparison - - -# Graphical options for tricontouring -levels = np.arange(0., 1., 0.025) -cmap = cm.get_cmap(name='Blues', lut=None) - -fig, ax = plt.subplots() -ax.set_aspect('equal') -ax.set_title("Filtering a Delaunay mesh\n" + - "(application to high-resolution tricontouring)") - -# 1) plot of the refined (computed) data contours: -ax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap, - linewidths=[2.0, 0.5, 1.0, 0.5]) -# 2) plot of the expected (analytical) data contours (dashed): -if plot_expected: - ax.tricontour(tri_refi, z_expected, levels=levels, cmap=cmap, - linestyles='--') -# 3) plot of the fine mesh on which interpolation was done: -if plot_refi_tri: - ax.triplot(tri_refi, color='0.97') -# 4) plot of the initial 'coarse' mesh: -if plot_tri: - ax.triplot(tri, color='0.7') -# 4) plot of the unvalidated triangles from naive Delaunay Triangulation: -if plot_masked_tri: - ax.triplot(flat_tri, color='red') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontour -matplotlib.pyplot.tricontour -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.tri -matplotlib.tri.Triangulation -matplotlib.tri.TriAnalyzer -matplotlib.tri.UniformTriRefiner diff --git a/_downloads/f65bb2f5f8878911f9afd127d97bcf62/scatter3d.py b/_downloads/f65bb2f5f8878911f9afd127d97bcf62/scatter3d.py deleted file mode 120000 index 5a44cc17f1c..00000000000 --- a/_downloads/f65bb2f5f8878911f9afd127d97bcf62/scatter3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f65bb2f5f8878911f9afd127d97bcf62/scatter3d.py \ No newline at end of file diff --git a/_downloads/f6608c47679534d027e89e7edb6090f8/inset_locator_demo.py b/_downloads/f6608c47679534d027e89e7edb6090f8/inset_locator_demo.py deleted file mode 100644 index fa2b100d024..00000000000 --- a/_downloads/f6608c47679534d027e89e7edb6090f8/inset_locator_demo.py +++ /dev/null @@ -1,144 +0,0 @@ -""" -================== -Inset Locator Demo -================== - -""" - -############################################################################### -# The `.inset_locator`'s `~.inset_locator.inset_axes` allows -# easily placing insets in the corners of the axes by specifying a width and -# height and optionally a location (loc) that accepts locations as codes, -# similar to `~matplotlib.axes.Axes.legend`. -# By default, the inset is offset by some points from the axes, -# controlled via the `borderpad` parameter. - -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1.inset_locator import inset_axes - - -fig, (ax, ax2) = plt.subplots(1, 2, figsize=[5.5, 2.8]) - -# Create inset of width 1.3 inches and height 0.9 inches -# at the default upper right location -axins = inset_axes(ax, width=1.3, height=0.9) - -# Create inset of width 30% and height 40% of the parent axes' bounding box -# at the lower left corner (loc=3) -axins2 = inset_axes(ax, width="30%", height="40%", loc=3) - -# Create inset of mixed specifications in the second subplot; -# width is 30% of parent axes' bounding box and -# height is 1 inch at the upper left corner (loc=2) -axins3 = inset_axes(ax2, width="30%", height=1., loc=2) - -# Create an inset in the lower right corner (loc=4) with borderpad=1, i.e. -# 10 points padding (as 10pt is the default fontsize) to the parent axes -axins4 = inset_axes(ax2, width="20%", height="20%", loc=4, borderpad=1) - -# Turn ticklabels of insets off -for axi in [axins, axins2, axins3, axins4]: - axi.tick_params(labelleft=False, labelbottom=False) - -plt.show() - - -############################################################################### -# The arguments `bbox_to_anchor` and `bbox_transfrom` can be used for a more -# fine grained control over the inset position and size or even to position -# the inset at completely arbitrary positions. -# The `bbox_to_anchor` sets the bounding box in coordinates according to the -# `bbox_transform`. -# - -fig = plt.figure(figsize=[5.5, 2.8]) -ax = fig.add_subplot(121) - -# We use the axes transform as bbox_transform. Therefore the bounding box -# needs to be specified in axes coordinates ((0,0) is the lower left corner -# of the axes, (1,1) is the upper right corner). -# The bounding box (.2, .4, .6, .5) starts at (.2,.4) and ranges to (.8,.9) -# in those coordinates. -# Inside of this bounding box an inset of half the bounding box' width and -# three quarters of the bounding box' height is created. The lower left corner -# of the inset is aligned to the lower left corner of the bounding box (loc=3). -# The inset is then offset by the default 0.5 in units of the font size. - -axins = inset_axes(ax, width="50%", height="75%", - bbox_to_anchor=(.2, .4, .6, .5), - bbox_transform=ax.transAxes, loc=3) - -# For visualization purposes we mark the bounding box by a rectangle -ax.add_patch(plt.Rectangle((.2, .4), .6, .5, ls="--", ec="c", fc="None", - transform=ax.transAxes)) - -# We set the axis limits to something other than the default, in order to not -# distract from the fact that axes coordinates are used here. -ax.set(xlim=(0, 10), ylim=(0, 10)) - - -# Note how the two following insets are created at the same positions, one by -# use of the default parent axes' bbox and the other via a bbox in axes -# coordinates and the respective transform. -ax2 = fig.add_subplot(222) -axins2 = inset_axes(ax2, width="30%", height="50%") - -ax3 = fig.add_subplot(224) -axins3 = inset_axes(ax3, width="100%", height="100%", - bbox_to_anchor=(.7, .5, .3, .5), - bbox_transform=ax3.transAxes) - -# For visualization purposes we mark the bounding box by a rectangle -ax2.add_patch(plt.Rectangle((0, 0), 1, 1, ls="--", lw=2, ec="c", fc="None")) -ax3.add_patch(plt.Rectangle((.7, .5), .3, .5, ls="--", lw=2, - ec="c", fc="None")) - -# Turn ticklabels off -for axi in [axins2, axins3, ax2, ax3]: - axi.tick_params(labelleft=False, labelbottom=False) - -plt.show() - - -############################################################################### -# In the above the axes transform together with 4-tuple bounding boxes has been -# used as it mostly is useful to specify an inset relative to the axes it is -# an inset to. However other use cases are equally possible. The following -# example examines some of those. -# - -fig = plt.figure(figsize=[5.5, 2.8]) -ax = fig.add_subplot(131) - -# Create an inset outside the axes -axins = inset_axes(ax, width="100%", height="100%", - bbox_to_anchor=(1.05, .6, .5, .4), - bbox_transform=ax.transAxes, loc=2, borderpad=0) -axins.tick_params(left=False, right=True, labelleft=False, labelright=True) - -# Create an inset with a 2-tuple bounding box. Note that this creates a -# bbox without extent. This hence only makes sense when specifying -# width and height in absolute units (inches). -axins2 = inset_axes(ax, width=0.5, height=0.4, - bbox_to_anchor=(0.33, 0.25), - bbox_transform=ax.transAxes, loc=3, borderpad=0) - - -ax2 = fig.add_subplot(133) -ax2.set_xscale("log") -ax2.set(xlim=(1e-6, 1e6), ylim=(-2, 6)) - -# Create inset in data coordinates using ax.transData as transform -axins3 = inset_axes(ax2, width="100%", height="100%", - bbox_to_anchor=(1e-2, 2, 1e3, 3), - bbox_transform=ax2.transData, loc=2, borderpad=0) - -# Create an inset horizontally centered in figure coordinates and vertically -# bound to line up with the axes. -from matplotlib.transforms import blended_transform_factory -transform = blended_transform_factory(fig.transFigure, ax2.transAxes) -axins4 = inset_axes(ax2, width="16%", height="34%", - bbox_to_anchor=(0, 0, 1, 1), - bbox_transform=transform, loc=8, borderpad=0) - -plt.show() diff --git a/_downloads/f672de32dc0bcb7169968a736b082e66/autowrap.py b/_downloads/f672de32dc0bcb7169968a736b082e66/autowrap.py deleted file mode 120000 index 12ba88056f8..00000000000 --- a/_downloads/f672de32dc0bcb7169968a736b082e66/autowrap.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f672de32dc0bcb7169968a736b082e66/autowrap.py \ No newline at end of file diff --git a/_downloads/f68779964027fbe26666c8230048a96f/lorenz_attractor.py b/_downloads/f68779964027fbe26666c8230048a96f/lorenz_attractor.py deleted file mode 100644 index 46e13965e29..00000000000 --- a/_downloads/f68779964027fbe26666c8230048a96f/lorenz_attractor.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -================ -Lorenz Attractor -================ - -This is an example of plotting Edward Lorenz's 1963 `"Deterministic Nonperiodic -Flow"`_ in a 3-dimensional space using mplot3d. - -.. _"Deterministic Nonperiodic Flow": - http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2 - -.. note:: - Because this is a simple non-linear ODE, it would be more easily done using - SciPy's ODE solver, but this approach depends only upon NumPy. -""" - -import numpy as np -import matplotlib.pyplot as plt -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def lorenz(x, y, z, s=10, r=28, b=2.667): - ''' - Given: - x, y, z: a point of interest in three dimensional space - s, r, b: parameters defining the lorenz attractor - Returns: - x_dot, y_dot, z_dot: values of the lorenz attractor's partial - derivatives at the point x, y, z - ''' - x_dot = s*(y - x) - y_dot = r*x - y - x*z - z_dot = x*y - b*z - return x_dot, y_dot, z_dot - - -dt = 0.01 -num_steps = 10000 - -# Need one more for the initial values -xs = np.empty(num_steps + 1) -ys = np.empty(num_steps + 1) -zs = np.empty(num_steps + 1) - -# Set initial values -xs[0], ys[0], zs[0] = (0., 1., 1.05) - -# Step through "time", calculating the partial derivatives at the current point -# and using them to estimate the next point -for i in range(num_steps): - x_dot, y_dot, z_dot = lorenz(xs[i], ys[i], zs[i]) - xs[i + 1] = xs[i] + (x_dot * dt) - ys[i + 1] = ys[i] + (y_dot * dt) - zs[i + 1] = zs[i] + (z_dot * dt) - - -# Plot -fig = plt.figure() -ax = fig.gca(projection='3d') - -ax.plot(xs, ys, zs, lw=0.5) -ax.set_xlabel("X Axis") -ax.set_ylabel("Y Axis") -ax.set_zlabel("Z Axis") -ax.set_title("Lorenz Attractor") - -plt.show() diff --git a/_downloads/f68d5eabbb985aa381983df21df3c2fb/triinterp_demo.py b/_downloads/f68d5eabbb985aa381983df21df3c2fb/triinterp_demo.py deleted file mode 100644 index 087a2839ac1..00000000000 --- a/_downloads/f68d5eabbb985aa381983df21df3c2fb/triinterp_demo.py +++ /dev/null @@ -1,84 +0,0 @@ -""" -============== -Triinterp Demo -============== - -Interpolation from triangular grid to quad grid. -""" -import matplotlib.pyplot as plt -import matplotlib.tri as mtri -import numpy as np - -# Create triangulation. -x = np.asarray([0, 1, 2, 3, 0.5, 1.5, 2.5, 1, 2, 1.5]) -y = np.asarray([0, 0, 0, 0, 1.0, 1.0, 1.0, 2, 2, 3.0]) -triangles = [[0, 1, 4], [1, 2, 5], [2, 3, 6], [1, 5, 4], [2, 6, 5], [4, 5, 7], - [5, 6, 8], [5, 8, 7], [7, 8, 9]] -triang = mtri.Triangulation(x, y, triangles) - -# Interpolate to regularly-spaced quad grid. -z = np.cos(1.5 * x) * np.cos(1.5 * y) -xi, yi = np.meshgrid(np.linspace(0, 3, 20), np.linspace(0, 3, 20)) - -interp_lin = mtri.LinearTriInterpolator(triang, z) -zi_lin = interp_lin(xi, yi) - -interp_cubic_geom = mtri.CubicTriInterpolator(triang, z, kind='geom') -zi_cubic_geom = interp_cubic_geom(xi, yi) - -interp_cubic_min_E = mtri.CubicTriInterpolator(triang, z, kind='min_E') -zi_cubic_min_E = interp_cubic_min_E(xi, yi) - -# Set up the figure -fig, axs = plt.subplots(nrows=2, ncols=2) -axs = axs.flatten() - -# Plot the triangulation. -axs[0].tricontourf(triang, z) -axs[0].triplot(triang, 'ko-') -axs[0].set_title('Triangular grid') - -# Plot linear interpolation to quad grid. -axs[1].contourf(xi, yi, zi_lin) -axs[1].plot(xi, yi, 'k-', lw=0.5, alpha=0.5) -axs[1].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5) -axs[1].set_title("Linear interpolation") - -# Plot cubic interpolation to quad grid, kind=geom -axs[2].contourf(xi, yi, zi_cubic_geom) -axs[2].plot(xi, yi, 'k-', lw=0.5, alpha=0.5) -axs[2].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5) -axs[2].set_title("Cubic interpolation,\nkind='geom'") - -# Plot cubic interpolation to quad grid, kind=min_E -axs[3].contourf(xi, yi, zi_cubic_min_E) -axs[3].plot(xi, yi, 'k-', lw=0.5, alpha=0.5) -axs[3].plot(xi.T, yi.T, 'k-', lw=0.5, alpha=0.5) -axs[3].set_title("Cubic interpolation,\nkind='min_E'") - -fig.tight_layout() -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.tricontourf -matplotlib.pyplot.tricontourf -matplotlib.axes.Axes.triplot -matplotlib.pyplot.triplot -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.axes.Axes.plot -matplotlib.pyplot.plot -matplotlib.tri -matplotlib.tri.LinearTriInterpolator -matplotlib.tri.CubicTriInterpolator -matplotlib.tri.Triangulation diff --git a/_downloads/f68e06513e8cc27571c5535c0772f259/sample_plots.ipynb b/_downloads/f68e06513e8cc27571c5535c0772f259/sample_plots.ipynb deleted file mode 120000 index 0af71f1186d..00000000000 --- a/_downloads/f68e06513e8cc27571c5535c0772f259/sample_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f68e06513e8cc27571c5535c0772f259/sample_plots.ipynb \ No newline at end of file diff --git a/_downloads/f68f9b15a88b3c7424b1947fcd2505ae/broken_axis.py b/_downloads/f68f9b15a88b3c7424b1947fcd2505ae/broken_axis.py deleted file mode 120000 index 3a1ea0cf42a..00000000000 --- a/_downloads/f68f9b15a88b3c7424b1947fcd2505ae/broken_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f68f9b15a88b3c7424b1947fcd2505ae/broken_axis.py \ No newline at end of file diff --git a/_downloads/f6983a8df1c4a114fd8c55a00e236ce9/pipong.py b/_downloads/f6983a8df1c4a114fd8c55a00e236ce9/pipong.py deleted file mode 100644 index c7a925a7db9..00000000000 --- a/_downloads/f6983a8df1c4a114fd8c55a00e236ce9/pipong.py +++ /dev/null @@ -1,291 +0,0 @@ -""" -====== -Pipong -====== - -A Matplotlib based game of Pong illustrating one way to write interactive -animation which are easily ported to multiple backends -pipong.py was written by Paul Ivanov -""" - - -import numpy as np -import matplotlib.pyplot as plt -from numpy.random import randn, randint -from matplotlib.font_manager import FontProperties - -instructions = """ -Player A: Player B: - 'e' up 'i' - 'd' down 'k' - -press 't' -- close these instructions - (animation will be much faster) -press 'a' -- add a puck -press 'A' -- remove a puck -press '1' -- slow down all pucks -press '2' -- speed up all pucks -press '3' -- slow down distractors -press '4' -- speed up distractors -press ' ' -- reset the first puck -press 'n' -- toggle distractors on/off -press 'g' -- toggle the game on/off - - """ - - -class Pad(object): - def __init__(self, disp, x, y, type='l'): - self.disp = disp - self.x = x - self.y = y - self.w = .3 - self.score = 0 - self.xoffset = 0.3 - self.yoffset = 0.1 - if type == 'r': - self.xoffset *= -1.0 - - if type == 'l' or type == 'r': - self.signx = -1.0 - self.signy = 1.0 - else: - self.signx = 1.0 - self.signy = -1.0 - - def contains(self, loc): - return self.disp.get_bbox().contains(loc.x, loc.y) - - -class Puck(object): - def __init__(self, disp, pad, field): - self.vmax = .2 - self.disp = disp - self.field = field - self._reset(pad) - - def _reset(self, pad): - self.x = pad.x + pad.xoffset - if pad.y < 0: - self.y = pad.y + pad.yoffset - else: - self.y = pad.y - pad.yoffset - self.vx = pad.x - self.x - self.vy = pad.y + pad.w/2 - self.y - self._speedlimit() - self._slower() - self._slower() - - def update(self, pads): - self.x += self.vx - self.y += self.vy - for pad in pads: - if pad.contains(self): - self.vx *= 1.2 * pad.signx - self.vy *= 1.2 * pad.signy - fudge = .001 - # probably cleaner with something like... - if self.x < fudge: - pads[1].score += 1 - self._reset(pads[0]) - return True - if self.x > 7 - fudge: - pads[0].score += 1 - self._reset(pads[1]) - return True - if self.y < -1 + fudge or self.y > 1 - fudge: - self.vy *= -1.0 - # add some randomness, just to make it interesting - self.vy -= (randn()/300.0 + 1/300.0) * np.sign(self.vy) - self._speedlimit() - return False - - def _slower(self): - self.vx /= 5.0 - self.vy /= 5.0 - - def _faster(self): - self.vx *= 5.0 - self.vy *= 5.0 - - def _speedlimit(self): - if self.vx > self.vmax: - self.vx = self.vmax - if self.vx < -self.vmax: - self.vx = -self.vmax - - if self.vy > self.vmax: - self.vy = self.vmax - if self.vy < -self.vmax: - self.vy = -self.vmax - - -class Game(object): - def __init__(self, ax): - # create the initial line - self.ax = ax - ax.set_ylim([-1, 1]) - ax.set_xlim([0, 7]) - padAx = 0 - padBx = .50 - padAy = padBy = .30 - padBx += 6.3 - - # pads - pA, = self.ax.barh(padAy, .2, - height=.3, color='k', alpha=.5, edgecolor='b', - lw=2, label="Player B", - animated=True) - pB, = self.ax.barh(padBy, .2, - height=.3, left=padBx, color='k', alpha=.5, - edgecolor='r', lw=2, label="Player A", - animated=True) - - # distractors - self.x = np.arange(0, 2.22*np.pi, 0.01) - self.line, = self.ax.plot(self.x, np.sin(self.x), "r", - animated=True, lw=4) - self.line2, = self.ax.plot(self.x, np.cos(self.x), "g", - animated=True, lw=4) - self.line3, = self.ax.plot(self.x, np.cos(self.x), "g", - animated=True, lw=4) - self.line4, = self.ax.plot(self.x, np.cos(self.x), "r", - animated=True, lw=4) - - # center line - self.centerline, = self.ax.plot([3.5, 3.5], [1, -1], 'k', - alpha=.5, animated=True, lw=8) - - # puck (s) - self.puckdisp = self.ax.scatter([1], [1], label='_nolegend_', - s=200, c='g', - alpha=.9, animated=True) - - self.canvas = self.ax.figure.canvas - self.background = None - self.cnt = 0 - self.distract = True - self.res = 100.0 - self.on = False - self.inst = True # show instructions from the beginning - self.background = None - self.pads = [] - self.pads.append(Pad(pA, padAx, padAy)) - self.pads.append(Pad(pB, padBx, padBy, 'r')) - self.pucks = [] - self.i = self.ax.annotate(instructions, (.5, 0.5), - name='monospace', - verticalalignment='center', - horizontalalignment='center', - multialignment='left', - textcoords='axes fraction', - animated=False) - self.canvas.mpl_connect('key_press_event', self.key_press) - - def draw(self, evt): - draw_artist = self.ax.draw_artist - if self.background is None: - self.background = self.canvas.copy_from_bbox(self.ax.bbox) - - # restore the clean slate background - self.canvas.restore_region(self.background) - - # show the distractors - if self.distract: - self.line.set_ydata(np.sin(self.x + self.cnt/self.res)) - self.line2.set_ydata(np.cos(self.x - self.cnt/self.res)) - self.line3.set_ydata(np.tan(self.x + self.cnt/self.res)) - self.line4.set_ydata(np.tan(self.x - self.cnt/self.res)) - draw_artist(self.line) - draw_artist(self.line2) - draw_artist(self.line3) - draw_artist(self.line4) - - # pucks and pads - if self.on: - self.ax.draw_artist(self.centerline) - for pad in self.pads: - pad.disp.set_y(pad.y) - pad.disp.set_x(pad.x) - self.ax.draw_artist(pad.disp) - - for puck in self.pucks: - if puck.update(self.pads): - # we only get here if someone scored - self.pads[0].disp.set_label( - " " + str(self.pads[0].score)) - self.pads[1].disp.set_label( - " " + str(self.pads[1].score)) - self.ax.legend(loc='center', framealpha=.2, - facecolor='0.5', - prop=FontProperties(size='xx-large', - weight='bold')) - - self.background = None - self.ax.figure.canvas.draw_idle() - return True - puck.disp.set_offsets([[puck.x, puck.y]]) - self.ax.draw_artist(puck.disp) - - # just redraw the axes rectangle - self.canvas.blit(self.ax.bbox) - self.canvas.flush_events() - if self.cnt == 50000: - # just so we don't get carried away - print("...and you've been playing for too long!!!") - plt.close() - - self.cnt += 1 - return True - - def key_press(self, event): - if event.key == '3': - self.res *= 5.0 - if event.key == '4': - self.res /= 5.0 - - if event.key == 'e': - self.pads[0].y += .1 - if self.pads[0].y > 1 - .3: - self.pads[0].y = 1 - .3 - if event.key == 'd': - self.pads[0].y -= .1 - if self.pads[0].y < -1: - self.pads[0].y = -1 - - if event.key == 'i': - self.pads[1].y += .1 - if self.pads[1].y > 1 - .3: - self.pads[1].y = 1 - .3 - if event.key == 'k': - self.pads[1].y -= .1 - if self.pads[1].y < -1: - self.pads[1].y = -1 - - if event.key == 'a': - self.pucks.append(Puck(self.puckdisp, - self.pads[randint(2)], - self.ax.bbox)) - if event.key == 'A' and len(self.pucks): - self.pucks.pop() - if event.key == ' ' and len(self.pucks): - self.pucks[0]._reset(self.pads[randint(2)]) - if event.key == '1': - for p in self.pucks: - p._slower() - if event.key == '2': - for p in self.pucks: - p._faster() - - if event.key == 'n': - self.distract = not self.distract - - if event.key == 'g': - self.on = not self.on - if event.key == 't': - self.inst = not self.inst - self.i.set_visible(not self.i.get_visible()) - self.background = None - self.canvas.draw_idle() - if event.key == 'q': - plt.close() diff --git a/_downloads/f698fb11927d800eab25b40b2ea11af9/centered_ticklabels.py b/_downloads/f698fb11927d800eab25b40b2ea11af9/centered_ticklabels.py deleted file mode 120000 index b7e40c1096f..00000000000 --- a/_downloads/f698fb11927d800eab25b40b2ea11af9/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f698fb11927d800eab25b40b2ea11af9/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/f69f08b9b20c30acc909e87ad74fcf16/menu.ipynb b/_downloads/f69f08b9b20c30acc909e87ad74fcf16/menu.ipynb deleted file mode 120000 index 238391c81f8..00000000000 --- a/_downloads/f69f08b9b20c30acc909e87ad74fcf16/menu.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f69f08b9b20c30acc909e87ad74fcf16/menu.ipynb \ No newline at end of file diff --git a/_downloads/f6b7e904cc9135e11d58ea5f6da43805/plot_solarizedlight2.ipynb b/_downloads/f6b7e904cc9135e11d58ea5f6da43805/plot_solarizedlight2.ipynb deleted file mode 120000 index 6eb327cff4d..00000000000 --- a/_downloads/f6b7e904cc9135e11d58ea5f6da43805/plot_solarizedlight2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f6b7e904cc9135e11d58ea5f6da43805/plot_solarizedlight2.ipynb \ No newline at end of file diff --git a/_downloads/f6c08cc89488ea9a8b62ba2637f23dba/3D.ipynb b/_downloads/f6c08cc89488ea9a8b62ba2637f23dba/3D.ipynb deleted file mode 120000 index 9f321efc34e..00000000000 --- a/_downloads/f6c08cc89488ea9a8b62ba2637f23dba/3D.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f6c08cc89488ea9a8b62ba2637f23dba/3D.ipynb \ No newline at end of file diff --git a/_downloads/f6c0cf6bf0ea66534f158d4100535753/annotate_simple_coord01.ipynb b/_downloads/f6c0cf6bf0ea66534f158d4100535753/annotate_simple_coord01.ipynb deleted file mode 120000 index 17313d5f913..00000000000 --- a/_downloads/f6c0cf6bf0ea66534f158d4100535753/annotate_simple_coord01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f6c0cf6bf0ea66534f158d4100535753/annotate_simple_coord01.ipynb \ No newline at end of file diff --git a/_downloads/f6c2fb846be1dc49bae85c5e3f24426e/embedding_in_wx5_sgskip.py b/_downloads/f6c2fb846be1dc49bae85c5e3f24426e/embedding_in_wx5_sgskip.py deleted file mode 100644 index 1578ae8c0b6..00000000000 --- a/_downloads/f6c2fb846be1dc49bae85c5e3f24426e/embedding_in_wx5_sgskip.py +++ /dev/null @@ -1,61 +0,0 @@ -""" -================== -Embedding in wx #5 -================== - -""" - -import wx -import wx.lib.agw.aui as aui -import wx.lib.mixins.inspection as wit - -import matplotlib as mpl -from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar - - -class Plot(wx.Panel): - def __init__(self, parent, id=-1, dpi=None, **kwargs): - wx.Panel.__init__(self, parent, id=id, **kwargs) - self.figure = mpl.figure.Figure(dpi=dpi, figsize=(2, 2)) - self.canvas = FigureCanvas(self, -1, self.figure) - self.toolbar = NavigationToolbar(self.canvas) - self.toolbar.Realize() - - sizer = wx.BoxSizer(wx.VERTICAL) - sizer.Add(self.canvas, 1, wx.EXPAND) - sizer.Add(self.toolbar, 0, wx.LEFT | wx.EXPAND) - self.SetSizer(sizer) - - -class PlotNotebook(wx.Panel): - def __init__(self, parent, id=-1): - wx.Panel.__init__(self, parent, id=id) - self.nb = aui.AuiNotebook(self) - sizer = wx.BoxSizer() - sizer.Add(self.nb, 1, wx.EXPAND) - self.SetSizer(sizer) - - def add(self, name="plot"): - page = Plot(self.nb) - self.nb.AddPage(page, name) - return page.figure - - -def demo(): - # alternatively you could use - #app = wx.App() - # InspectableApp is a great debug tool, see: - # http://wiki.wxpython.org/Widget%20Inspection%20Tool - app = wit.InspectableApp() - frame = wx.Frame(None, -1, 'Plotter') - plotter = PlotNotebook(frame) - axes1 = plotter.add('figure 1').gca() - axes1.plot([1, 2, 3], [2, 1, 4]) - axes2 = plotter.add('figure 2').gca() - axes2.plot([1, 2, 3, 4, 5], [2, 1, 4, 2, 3]) - frame.Show() - app.MainLoop() - -if __name__ == "__main__": - demo() diff --git a/_downloads/f6c5061fdf1413dc1e9619d17f74325a/align_ylabels.ipynb b/_downloads/f6c5061fdf1413dc1e9619d17f74325a/align_ylabels.ipynb deleted file mode 120000 index b726e5f610b..00000000000 --- a/_downloads/f6c5061fdf1413dc1e9619d17f74325a/align_ylabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f6c5061fdf1413dc1e9619d17f74325a/align_ylabels.ipynb \ No newline at end of file diff --git a/_downloads/f6c5e42b48428d3790657a757dda91a5/scatter_plot.py b/_downloads/f6c5e42b48428d3790657a757dda91a5/scatter_plot.py deleted file mode 120000 index 986951b9e84..00000000000 --- a/_downloads/f6c5e42b48428d3790657a757dda91a5/scatter_plot.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f6c5e42b48428d3790657a757dda91a5/scatter_plot.py \ No newline at end of file diff --git a/_downloads/f6ca908ce9c71d1d0faf7d0b77281ce7/bar_label_demo.ipynb b/_downloads/f6ca908ce9c71d1d0faf7d0b77281ce7/bar_label_demo.ipynb deleted file mode 120000 index e31c5c5d7b5..00000000000 --- a/_downloads/f6ca908ce9c71d1d0faf7d0b77281ce7/bar_label_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f6ca908ce9c71d1d0faf7d0b77281ce7/bar_label_demo.ipynb \ No newline at end of file diff --git a/_downloads/f6e54ce195d6285377300084581f15d3/axes_zoom_effect.py b/_downloads/f6e54ce195d6285377300084581f15d3/axes_zoom_effect.py deleted file mode 120000 index 195c134db18..00000000000 --- a/_downloads/f6e54ce195d6285377300084581f15d3/axes_zoom_effect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f6e54ce195d6285377300084581f15d3/axes_zoom_effect.py \ No newline at end of file diff --git a/_downloads/f6e7f8c09f68dd8a85a69753b66138a5/whats_new_98_4_fill_between.py b/_downloads/f6e7f8c09f68dd8a85a69753b66138a5/whats_new_98_4_fill_between.py deleted file mode 120000 index 2c17c1d360c..00000000000 --- a/_downloads/f6e7f8c09f68dd8a85a69753b66138a5/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/f6e7f8c09f68dd8a85a69753b66138a5/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/_downloads/f6e94a3b6cf5882480497f52f4d3a4cf/multipage_pdf.ipynb b/_downloads/f6e94a3b6cf5882480497f52f4d3a4cf/multipage_pdf.ipynb deleted file mode 120000 index ecaff681795..00000000000 --- a/_downloads/f6e94a3b6cf5882480497f52f4d3a4cf/multipage_pdf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f6e94a3b6cf5882480497f52f4d3a4cf/multipage_pdf.ipynb \ No newline at end of file diff --git a/_downloads/f6ebec7b267848999b998a23ceaf3046/multi_image.py b/_downloads/f6ebec7b267848999b998a23ceaf3046/multi_image.py deleted file mode 120000 index 39b280559e0..00000000000 --- a/_downloads/f6ebec7b267848999b998a23ceaf3046/multi_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f6ebec7b267848999b998a23ceaf3046/multi_image.py \ No newline at end of file diff --git a/_downloads/f6f1eae76aadd07f94d828dff5838194/anchored_box02.py b/_downloads/f6f1eae76aadd07f94d828dff5838194/anchored_box02.py deleted file mode 120000 index 6f89c97b5d0..00000000000 --- a/_downloads/f6f1eae76aadd07f94d828dff5838194/anchored_box02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f6f1eae76aadd07f94d828dff5838194/anchored_box02.py \ No newline at end of file diff --git a/_downloads/f6f99e7bd0a70c3fbe37882866c3c7ff/named_colors.ipynb b/_downloads/f6f99e7bd0a70c3fbe37882866c3c7ff/named_colors.ipynb deleted file mode 120000 index 669e98d193c..00000000000 --- a/_downloads/f6f99e7bd0a70c3fbe37882866c3c7ff/named_colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f6f99e7bd0a70c3fbe37882866c3c7ff/named_colors.ipynb \ No newline at end of file diff --git a/_downloads/f6fa6d66e6da246c5a1bf1055d60dd9d/broken_barh.py b/_downloads/f6fa6d66e6da246c5a1bf1055d60dd9d/broken_barh.py deleted file mode 120000 index f42535350ef..00000000000 --- a/_downloads/f6fa6d66e6da246c5a1bf1055d60dd9d/broken_barh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f6fa6d66e6da246c5a1bf1055d60dd9d/broken_barh.py \ No newline at end of file diff --git a/_downloads/f704212a33a63bdb05e1e2d7f8326790/boxplot_color.py b/_downloads/f704212a33a63bdb05e1e2d7f8326790/boxplot_color.py deleted file mode 120000 index ba8b64ad3be..00000000000 --- a/_downloads/f704212a33a63bdb05e1e2d7f8326790/boxplot_color.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f704212a33a63bdb05e1e2d7f8326790/boxplot_color.py \ No newline at end of file diff --git a/_downloads/f704f15bb8c19973baf1db22024368ad/mri_demo.ipynb b/_downloads/f704f15bb8c19973baf1db22024368ad/mri_demo.ipynb deleted file mode 120000 index ff7c83fa0d1..00000000000 --- a/_downloads/f704f15bb8c19973baf1db22024368ad/mri_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f704f15bb8c19973baf1db22024368ad/mri_demo.ipynb \ No newline at end of file diff --git a/_downloads/f705d0277261ba91b5510dcefe96d04c/text_intro.py b/_downloads/f705d0277261ba91b5510dcefe96d04c/text_intro.py deleted file mode 120000 index 522ab38d6df..00000000000 --- a/_downloads/f705d0277261ba91b5510dcefe96d04c/text_intro.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f705d0277261ba91b5510dcefe96d04c/text_intro.py \ No newline at end of file diff --git a/_downloads/f7171577b84787f4b4d987b663486a94/anatomy.py b/_downloads/f7171577b84787f4b4d987b663486a94/anatomy.py deleted file mode 120000 index ea2babc6d36..00000000000 --- a/_downloads/f7171577b84787f4b4d987b663486a94/anatomy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f7171577b84787f4b4d987b663486a94/anatomy.py \ No newline at end of file diff --git a/_downloads/f7405321d08c06171756124b544410c0/pcolormesh_grids.ipynb b/_downloads/f7405321d08c06171756124b544410c0/pcolormesh_grids.ipynb deleted file mode 120000 index 9c35d86f268..00000000000 --- a/_downloads/f7405321d08c06171756124b544410c0/pcolormesh_grids.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f7405321d08c06171756124b544410c0/pcolormesh_grids.ipynb \ No newline at end of file diff --git a/_downloads/f7473146da331478160ed3d1f7355e2f/usetex_baseline_test.py b/_downloads/f7473146da331478160ed3d1f7355e2f/usetex_baseline_test.py deleted file mode 120000 index 98c6160868b..00000000000 --- a/_downloads/f7473146da331478160ed3d1f7355e2f/usetex_baseline_test.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f7473146da331478160ed3d1f7355e2f/usetex_baseline_test.py \ No newline at end of file diff --git a/_downloads/f74efc23c436d90af2a9c1037a067a1f/demo_text_rotation_mode.py b/_downloads/f74efc23c436d90af2a9c1037a067a1f/demo_text_rotation_mode.py deleted file mode 120000 index 86a02521121..00000000000 --- a/_downloads/f74efc23c436d90af2a9c1037a067a1f/demo_text_rotation_mode.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f74efc23c436d90af2a9c1037a067a1f/demo_text_rotation_mode.py \ No newline at end of file diff --git a/_downloads/f758fc3013f492eada2a636552e34c47/whats_new_99_mplot3d.ipynb b/_downloads/f758fc3013f492eada2a636552e34c47/whats_new_99_mplot3d.ipynb deleted file mode 120000 index 6e6ea539877..00000000000 --- a/_downloads/f758fc3013f492eada2a636552e34c47/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f758fc3013f492eada2a636552e34c47/whats_new_99_mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/f75cf20e590f8f298d2025ae86418996/artists.ipynb b/_downloads/f75cf20e590f8f298d2025ae86418996/artists.ipynb deleted file mode 120000 index 2534f53ff32..00000000000 --- a/_downloads/f75cf20e590f8f298d2025ae86418996/artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f75cf20e590f8f298d2025ae86418996/artists.ipynb \ No newline at end of file diff --git a/_downloads/f78423f4085a754f72243e466323eae4/scatter_custom_symbol.py b/_downloads/f78423f4085a754f72243e466323eae4/scatter_custom_symbol.py deleted file mode 120000 index 676fc3388fc..00000000000 --- a/_downloads/f78423f4085a754f72243e466323eae4/scatter_custom_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f78423f4085a754f72243e466323eae4/scatter_custom_symbol.py \ No newline at end of file diff --git a/_downloads/f78757a71e834ad66cde877b6e00d2ca/artist_reference.py b/_downloads/f78757a71e834ad66cde877b6e00d2ca/artist_reference.py deleted file mode 120000 index ca774d89e33..00000000000 --- a/_downloads/f78757a71e834ad66cde877b6e00d2ca/artist_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f78757a71e834ad66cde877b6e00d2ca/artist_reference.py \ No newline at end of file diff --git a/_downloads/f78899d5146140aae9ca479185bd728b/stem_plot.ipynb b/_downloads/f78899d5146140aae9ca479185bd728b/stem_plot.ipynb deleted file mode 120000 index ecd458e9440..00000000000 --- a/_downloads/f78899d5146140aae9ca479185bd728b/stem_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f78899d5146140aae9ca479185bd728b/stem_plot.ipynb \ No newline at end of file diff --git a/_downloads/f78d9422c38b6548205e056333fd3675/rotate_axes3d_sgskip.ipynb b/_downloads/f78d9422c38b6548205e056333fd3675/rotate_axes3d_sgskip.ipynb deleted file mode 100644 index d5df11bf318..00000000000 --- a/_downloads/f78d9422c38b6548205e056333fd3675/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Rotating a 3D plot\n\n\nA very simple animation of a rotating 3D plot.\n\nSee wire3d_animation_demo for another simple example of animating a 3D plot.\n\n(This example is skipped when building the documentation gallery because it\nintentionally takes a long time to run)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nax = fig.add_subplot(111, projection='3d')\n\n# load some test data for demonstration and plot a wireframe\nX, Y, Z = axes3d.get_test_data(0.1)\nax.plot_wireframe(X, Y, Z, rstride=5, cstride=5)\n\n# rotate the axes and update\nfor angle in range(0, 360):\n ax.view_init(30, angle)\n plt.draw()\n plt.pause(.001)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f78fdc7782fcb2c113eeaaa50186c2f9/bachelors_degrees_by_gender.ipynb b/_downloads/f78fdc7782fcb2c113eeaaa50186c2f9/bachelors_degrees_by_gender.ipynb deleted file mode 120000 index 90e95a0de2c..00000000000 --- a/_downloads/f78fdc7782fcb2c113eeaaa50186c2f9/bachelors_degrees_by_gender.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f78fdc7782fcb2c113eeaaa50186c2f9/bachelors_degrees_by_gender.ipynb \ No newline at end of file diff --git a/_downloads/f795c0a75fefdf79ce5a245a2000df37/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/f795c0a75fefdf79ce5a245a2000df37/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 100644 index ae7ff7e4f30..00000000000 --- a/_downloads/f795c0a75fefdf79ce5a245a2000df37/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Embedding in GTK3 with a navigation toolbar\n\n\nDemonstrate NavigationToolbar with GTK3 accessed via pygobject.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import gi\ngi.require_version('Gtk', '3.0')\nfrom gi.repository import Gtk\n\nfrom matplotlib.backends.backend_gtk3 import (\n NavigationToolbar2GTK3 as NavigationToolbar)\nfrom matplotlib.backends.backend_gtk3agg import (\n FigureCanvasGTK3Agg as FigureCanvas)\nfrom matplotlib.figure import Figure\nimport numpy as np\n\nwin = Gtk.Window()\nwin.connect(\"delete-event\", Gtk.main_quit)\nwin.set_default_size(400, 300)\nwin.set_title(\"Embedding in GTK\")\n\nf = Figure(figsize=(5, 4), dpi=100)\na = f.add_subplot(1, 1, 1)\nt = np.arange(0.0, 3.0, 0.01)\ns = np.sin(2*np.pi*t)\na.plot(t, s)\n\nvbox = Gtk.VBox()\nwin.add(vbox)\n\n# Add canvas to vbox\ncanvas = FigureCanvas(f) # a Gtk.DrawingArea\nvbox.pack_start(canvas, True, True, 0)\n\n# Create toolbar\ntoolbar = NavigationToolbar(canvas, win)\nvbox.pack_start(toolbar, False, False, 0)\n\nwin.show_all()\nGtk.main()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f79b23f41e26df68d563a2d4862c3c65/demo_axes_grid.ipynb b/_downloads/f79b23f41e26df68d563a2d4862c3c65/demo_axes_grid.ipynb deleted file mode 120000 index 31261cf827f..00000000000 --- a/_downloads/f79b23f41e26df68d563a2d4862c3c65/demo_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f79b23f41e26df68d563a2d4862c3c65/demo_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/f7a708d4eebecf4c2b7ead0e089ef55b/colormap_normalizations.ipynb b/_downloads/f7a708d4eebecf4c2b7ead0e089ef55b/colormap_normalizations.ipynb deleted file mode 120000 index 3f8827c94bd..00000000000 --- a/_downloads/f7a708d4eebecf4c2b7ead0e089ef55b/colormap_normalizations.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/f7a708d4eebecf4c2b7ead0e089ef55b/colormap_normalizations.ipynb \ No newline at end of file diff --git a/_downloads/f7abdd5b8ce848081344fc8a61ee0aec/pie_demo2.py b/_downloads/f7abdd5b8ce848081344fc8a61ee0aec/pie_demo2.py deleted file mode 120000 index f4164df0e0a..00000000000 --- a/_downloads/f7abdd5b8ce848081344fc8a61ee0aec/pie_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f7abdd5b8ce848081344fc8a61ee0aec/pie_demo2.py \ No newline at end of file diff --git a/_downloads/f7ba788bdda426fd6d03a412d656bfbf/mixed_subplots.ipynb b/_downloads/f7ba788bdda426fd6d03a412d656bfbf/mixed_subplots.ipynb deleted file mode 100644 index 288c5d74306..00000000000 --- a/_downloads/f7ba788bdda426fd6d03a412d656bfbf/mixed_subplots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=================================\n2D and 3D *Axes* in same *Figure*\n=================================\n\nThis example shows a how to plot a 2D and 3D plot on the same figure.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef f(t):\n return np.cos(2*np.pi*t) * np.exp(-t)\n\n\n# Set up a figure twice as tall as it is wide\nfig = plt.figure(figsize=plt.figaspect(2.))\nfig.suptitle('A tale of 2 subplots')\n\n# First subplot\nax = fig.add_subplot(2, 1, 1)\n\nt1 = np.arange(0.0, 5.0, 0.1)\nt2 = np.arange(0.0, 5.0, 0.02)\nt3 = np.arange(0.0, 2.0, 0.01)\n\nax.plot(t1, f(t1), 'bo',\n t2, f(t2), 'k--', markerfacecolor='green')\nax.grid(True)\nax.set_ylabel('Damped oscillation')\n\n# Second subplot\nax = fig.add_subplot(2, 1, 2, projection='3d')\n\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\nsurf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1,\n linewidth=0, antialiased=False)\nax.set_zlim(-1, 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f7bf6fda7cdb456936bb4ff3aaf17019/surface3d_2.py b/_downloads/f7bf6fda7cdb456936bb4ff3aaf17019/surface3d_2.py deleted file mode 120000 index 49676c347c4..00000000000 --- a/_downloads/f7bf6fda7cdb456936bb4ff3aaf17019/surface3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f7bf6fda7cdb456936bb4ff3aaf17019/surface3d_2.py \ No newline at end of file diff --git a/_downloads/f7c8d6219382407b10dad79a6f1e99c9/dynamic_image.ipynb b/_downloads/f7c8d6219382407b10dad79a6f1e99c9/dynamic_image.ipynb deleted file mode 100644 index 11c40fda7ac..00000000000 --- a/_downloads/f7c8d6219382407b10dad79a6f1e99c9/dynamic_image.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Animated image using a precomputed list of images\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.animation as animation\n\nfig = plt.figure()\n\n\ndef f(x, y):\n return np.sin(x) + np.cos(y)\n\nx = np.linspace(0, 2 * np.pi, 120)\ny = np.linspace(0, 2 * np.pi, 100).reshape(-1, 1)\n# ims is a list of lists, each row is a list of artists to draw in the\n# current frame; here we are just animating one artist, the image, in\n# each frame\nims = []\nfor i in range(60):\n x += np.pi / 15.\n y += np.pi / 20.\n im = plt.imshow(f(x, y), animated=True)\n ims.append([im])\n\nani = animation.ArtistAnimation(fig, ims, interval=50, blit=True,\n repeat_delay=1000)\n\n# To save the animation, use e.g.\n#\n# ani.save(\"movie.mp4\")\n#\n# or\n#\n# from matplotlib.animation import FFMpegWriter\n# writer = FFMpegWriter(fps=15, metadata=dict(artist='Me'), bitrate=1800)\n# ani.save(\"movie.mp4\", writer=writer)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f7cc5860dba04bdf467e07ded4a8bda7/subplot3d.py b/_downloads/f7cc5860dba04bdf467e07ded4a8bda7/subplot3d.py deleted file mode 120000 index 8a3efc5bb2b..00000000000 --- a/_downloads/f7cc5860dba04bdf467e07ded4a8bda7/subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f7cc5860dba04bdf467e07ded4a8bda7/subplot3d.py \ No newline at end of file diff --git a/_downloads/f7d5a54de5be4ec7b258ea17f11de9ab/matshow.py b/_downloads/f7d5a54de5be4ec7b258ea17f11de9ab/matshow.py deleted file mode 100644 index 4980e116a11..00000000000 --- a/_downloads/f7d5a54de5be4ec7b258ea17f11de9ab/matshow.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -======= -Matshow -======= - -Simple `~.axes.Axes.matshow` example. -""" -import matplotlib.pyplot as plt -import numpy as np - - -def samplemat(dims): - """Make a matrix with all zeros and increasing elements on the diagonal""" - aa = np.zeros(dims) - for i in range(min(dims)): - aa[i, i] = i - return aa - - -# Display matrix -plt.matshow(samplemat((15, 15))) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.matshow -matplotlib.pyplot.matshow diff --git a/_downloads/f7dacb1c7a5f653e385393838579e31c/svg_tooltip_sgskip.py b/_downloads/f7dacb1c7a5f653e385393838579e31c/svg_tooltip_sgskip.py deleted file mode 100644 index 815ce269a9f..00000000000 --- a/_downloads/f7dacb1c7a5f653e385393838579e31c/svg_tooltip_sgskip.py +++ /dev/null @@ -1,108 +0,0 @@ -""" -=========== -SVG Tooltip -=========== - -This example shows how to create a tooltip that will show up when -hovering over a matplotlib patch. - -Although it is possible to create the tooltip from CSS or javascript, -here we create it in matplotlib and simply toggle its visibility on -when hovering over the patch. This approach provides total control over -the tooltip placement and appearance, at the expense of more code up -front. - -The alternative approach would be to put the tooltip content in `title` -attributes of SVG objects. Then, using an existing js/CSS library, it -would be relatively straightforward to create the tooltip in the -browser. The content would be dictated by the `title` attribute, and -the appearance by the CSS. - - -:author: David Huard -""" - - -import matplotlib.pyplot as plt -import xml.etree.ElementTree as ET -from io import BytesIO - -ET.register_namespace("", "http://www.w3.org/2000/svg") - -fig, ax = plt.subplots() - -# Create patches to which tooltips will be assigned. -rect1 = plt.Rectangle((10, -20), 10, 5, fc='blue') -rect2 = plt.Rectangle((-20, 15), 10, 5, fc='green') - -shapes = [rect1, rect2] -labels = ['This is a blue rectangle.', 'This is a green rectangle'] - -for i, (item, label) in enumerate(zip(shapes, labels)): - patch = ax.add_patch(item) - annotate = ax.annotate(labels[i], xy=item.get_xy(), xytext=(0, 0), - textcoords='offset points', color='w', ha='center', - fontsize=8, bbox=dict(boxstyle='round, pad=.5', - fc=(.1, .1, .1, .92), - ec=(1., 1., 1.), lw=1, - zorder=1)) - - ax.add_patch(patch) - patch.set_gid('mypatch_{:03d}'.format(i)) - annotate.set_gid('mytooltip_{:03d}'.format(i)) - -# Save the figure in a fake file object -ax.set_xlim(-30, 30) -ax.set_ylim(-30, 30) -ax.set_aspect('equal') - -f = BytesIO() -plt.savefig(f, format="svg") - -# --- Add interactivity --- - -# Create XML tree from the SVG file. -tree, xmlid = ET.XMLID(f.getvalue()) -tree.set('onload', 'init(evt)') - -for i in shapes: - # Get the index of the shape - index = shapes.index(i) - # Hide the tooltips - tooltip = xmlid['mytooltip_{:03d}'.format(index)] - tooltip.set('visibility', 'hidden') - # Assign onmouseover and onmouseout callbacks to patches. - mypatch = xmlid['mypatch_{:03d}'.format(index)] - mypatch.set('onmouseover', "ShowTooltip(this)") - mypatch.set('onmouseout', "HideTooltip(this)") - -# This is the script defining the ShowTooltip and HideTooltip functions. -script = """ - - """ - -# Insert the script at the top of the file and save it. -tree.insert(0, ET.XML(script)) -ET.ElementTree(tree).write('svg_tooltip.svg') diff --git a/_downloads/f7de0844cb95108376fcb5c976abbcfb/text_intro.ipynb b/_downloads/f7de0844cb95108376fcb5c976abbcfb/text_intro.ipynb deleted file mode 120000 index a7f18e05f6d..00000000000 --- a/_downloads/f7de0844cb95108376fcb5c976abbcfb/text_intro.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f7de0844cb95108376fcb5c976abbcfb/text_intro.ipynb \ No newline at end of file diff --git a/_downloads/f7ded8a49e52833eb683ac2ab06f5633/matshow.ipynb b/_downloads/f7ded8a49e52833eb683ac2ab06f5633/matshow.ipynb deleted file mode 120000 index 0089ff0c8c5..00000000000 --- a/_downloads/f7ded8a49e52833eb683ac2ab06f5633/matshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f7ded8a49e52833eb683ac2ab06f5633/matshow.ipynb \ No newline at end of file diff --git a/_downloads/f7ea9bfa752a7f0827c5990212fab8d1/color_demo.ipynb b/_downloads/f7ea9bfa752a7f0827c5990212fab8d1/color_demo.ipynb deleted file mode 120000 index e749e78c01c..00000000000 --- a/_downloads/f7ea9bfa752a7f0827c5990212fab8d1/color_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f7ea9bfa752a7f0827c5990212fab8d1/color_demo.ipynb \ No newline at end of file diff --git a/_downloads/f7f2aa8cef89e3c4c2b8cc2c257f439b/demo_text_path.py b/_downloads/f7f2aa8cef89e3c4c2b8cc2c257f439b/demo_text_path.py deleted file mode 120000 index 4e7eaeef79c..00000000000 --- a/_downloads/f7f2aa8cef89e3c4c2b8cc2c257f439b/demo_text_path.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f7f2aa8cef89e3c4c2b8cc2c257f439b/demo_text_path.py \ No newline at end of file diff --git a/_downloads/f80ff52031b31d0be2c25fd66f70c03a/errorbar3d.ipynb b/_downloads/f80ff52031b31d0be2c25fd66f70c03a/errorbar3d.ipynb deleted file mode 120000 index a42b255f7f9..00000000000 --- a/_downloads/f80ff52031b31d0be2c25fd66f70c03a/errorbar3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f80ff52031b31d0be2c25fd66f70c03a/errorbar3d.ipynb \ No newline at end of file diff --git a/_downloads/f81e6c91f6af776b6113aba31ffcb759/whats_new_99_spines.py b/_downloads/f81e6c91f6af776b6113aba31ffcb759/whats_new_99_spines.py deleted file mode 120000 index 0bdd6315a12..00000000000 --- a/_downloads/f81e6c91f6af776b6113aba31ffcb759/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f81e6c91f6af776b6113aba31ffcb759/whats_new_99_spines.py \ No newline at end of file diff --git a/_downloads/f8206341bc17d60c69384b35565cc7fe/pgf_preamble_sgskip.ipynb b/_downloads/f8206341bc17d60c69384b35565cc7fe/pgf_preamble_sgskip.ipynb deleted file mode 100644 index 3c31d027937..00000000000 --- a/_downloads/f8206341bc17d60c69384b35565cc7fe/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pgf Preamble\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib as mpl\nmpl.use(\"pgf\")\nimport matplotlib.pyplot as plt\nplt.rcParams.update({\n \"font.family\": \"serif\", # use serif/main font for text elements\n \"text.usetex\": True, # use inline math for ticks\n \"pgf.rcfonts\": False, # don't setup fonts from rc parameters\n \"pgf.preamble\": [\n \"\\\\usepackage{units}\", # load additional packages\n \"\\\\usepackage{metalogo}\",\n \"\\\\usepackage{unicode-math}\", # unicode math setup\n r\"\\setmathfont{xits-math.otf}\",\n r\"\\setmainfont{DejaVu Serif}\", # serif font via preamble\n ]\n})\n\nplt.figure(figsize=(4.5, 2.5))\nplt.plot(range(5))\nplt.xlabel(\"unicode text: \u044f, \u03c8, \u20ac, \u00fc, \\\\unitfrac[10]{\u00b0}{\u00b5m}\")\nplt.ylabel(\"\\\\XeLaTeX\")\nplt.legend([\"unicode math: $\u03bb=\u2211_i^\u221e \u03bc_i^2$\"])\nplt.tight_layout(.5)\n\nplt.savefig(\"pgf_preamble.pdf\")\nplt.savefig(\"pgf_preamble.png\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f820d5833f8b659d722a8a643b78b941/demo_constrained_layout.ipynb b/_downloads/f820d5833f8b659d722a8a643b78b941/demo_constrained_layout.ipynb deleted file mode 100644 index 7c108f525ee..00000000000 --- a/_downloads/f820d5833f8b659d722a8a643b78b941/demo_constrained_layout.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Resizing axes with constrained layout\n\n\nConstrained layout attempts to resize subplots in\na figure so that there are no overlaps between axes objects and labels\non the axes.\n\nSee :doc:`/tutorials/intermediate/constrainedlayout_guide` for more details and\n:doc:`/tutorials/intermediate/tight_layout_guide` for an alternative.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\ndef example_plot(ax):\n ax.plot([1, 2])\n ax.set_xlabel('x-label', fontsize=12)\n ax.set_ylabel('y-label', fontsize=12)\n ax.set_title('Title', fontsize=14)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If we don't use constrained_layout, then labels overlap the axes\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=False)\n\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "adding ``constrained_layout=True`` automatically adjusts.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axs = plt.subplots(nrows=2, ncols=2, constrained_layout=True)\n\nfor ax in axs.flat:\n example_plot(ax)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Below is a more complicated example using nested gridspecs.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig = plt.figure(constrained_layout=True)\n\nimport matplotlib.gridspec as gridspec\n\ngs0 = gridspec.GridSpec(1, 2, figure=fig)\n\ngs1 = gridspec.GridSpecFromSubplotSpec(3, 1, subplot_spec=gs0[0])\nfor n in range(3):\n ax = fig.add_subplot(gs1[n])\n example_plot(ax)\n\n\ngs2 = gridspec.GridSpecFromSubplotSpec(2, 1, subplot_spec=gs0[1])\nfor n in range(2):\n ax = fig.add_subplot(gs2[n])\n example_plot(ax)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.gridspec.GridSpec\nmatplotlib.gridspec.GridSpecFromSubplotSpec" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f8248729044d7fef8f20a43731251e38/inset_locator_demo.py b/_downloads/f8248729044d7fef8f20a43731251e38/inset_locator_demo.py deleted file mode 120000 index be620681c30..00000000000 --- a/_downloads/f8248729044d7fef8f20a43731251e38/inset_locator_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f8248729044d7fef8f20a43731251e38/inset_locator_demo.py \ No newline at end of file diff --git a/_downloads/f82f2a4833f322b1a2ee4645113e36e9/custom_boxstyle02.ipynb b/_downloads/f82f2a4833f322b1a2ee4645113e36e9/custom_boxstyle02.ipynb deleted file mode 120000 index 04e493144ab..00000000000 --- a/_downloads/f82f2a4833f322b1a2ee4645113e36e9/custom_boxstyle02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f82f2a4833f322b1a2ee4645113e36e9/custom_boxstyle02.ipynb \ No newline at end of file diff --git a/_downloads/f835f003617de260858386330d86a7da/linestyles.py b/_downloads/f835f003617de260858386330d86a7da/linestyles.py deleted file mode 120000 index 058db68c2b9..00000000000 --- a/_downloads/f835f003617de260858386330d86a7da/linestyles.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f835f003617de260858386330d86a7da/linestyles.py \ No newline at end of file diff --git a/_downloads/f851bf7d97f2552610684dd1c8409100/2dcollections3d.ipynb b/_downloads/f851bf7d97f2552610684dd1c8409100/2dcollections3d.ipynb deleted file mode 100644 index 047e91ff411..00000000000 --- a/_downloads/f851bf7d97f2552610684dd1c8409100/2dcollections3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Plot 2D data on 3D plot\n\n\nDemonstrates using ax.plot's zdir keyword to plot 2D data on\nselective axes of a 3D plot.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Plot a sin curve using the x and y axes.\nx = np.linspace(0, 1, 100)\ny = np.sin(x * 2 * np.pi) / 2 + 0.5\nax.plot(x, y, zs=0, zdir='z', label='curve in (x,y)')\n\n# Plot scatterplot data (20 2D points per colour) on the x and z axes.\ncolors = ('r', 'g', 'b', 'k')\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx = np.random.sample(20 * len(colors))\ny = np.random.sample(20 * len(colors))\nc_list = []\nfor c in colors:\n c_list.extend([c] * 20)\n# By using zdir='y', the y value of these points is fixed to the zs value 0\n# and the (x,y) points are plotted on the x and z axes.\nax.scatter(x, y, zs=0, zdir='y', c=c_list, label='points in (x,z)')\n\n# Make legend, set axes limits and labels\nax.legend()\nax.set_xlim(0, 1)\nax.set_ylim(0, 1)\nax.set_zlim(0, 1)\nax.set_xlabel('X')\nax.set_ylabel('Y')\nax.set_zlabel('Z')\n\n# Customize the view angle so it's easier to see that the scatter points lie\n# on the plane y=0\nax.view_init(elev=20., azim=-35)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f8526c2842c6793363979fddb956910b/strip_chart.ipynb b/_downloads/f8526c2842c6793363979fddb956910b/strip_chart.ipynb deleted file mode 120000 index df8493c9843..00000000000 --- a/_downloads/f8526c2842c6793363979fddb956910b/strip_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f8526c2842c6793363979fddb956910b/strip_chart.ipynb \ No newline at end of file diff --git a/_downloads/f8594ce0b02f7315ee442283c47d8d7d/pick_event_demo2.ipynb b/_downloads/f8594ce0b02f7315ee442283c47d8d7d/pick_event_demo2.ipynb deleted file mode 120000 index d2617d53e9d..00000000000 --- a/_downloads/f8594ce0b02f7315ee442283c47d8d7d/pick_event_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f8594ce0b02f7315ee442283c47d8d7d/pick_event_demo2.ipynb \ No newline at end of file diff --git a/_downloads/f85a4826d5f863544b5245673efce070/surface3d_3.ipynb b/_downloads/f85a4826d5f863544b5245673efce070/surface3d_3.ipynb deleted file mode 120000 index d8fcf471df2..00000000000 --- a/_downloads/f85a4826d5f863544b5245673efce070/surface3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f85a4826d5f863544b5245673efce070/surface3d_3.ipynb \ No newline at end of file diff --git a/_downloads/f85bef88d9377e04abd52f4311335eb7/embedding_in_wx4_sgskip.py b/_downloads/f85bef88d9377e04abd52f4311335eb7/embedding_in_wx4_sgskip.py deleted file mode 120000 index 5a7636ecc9b..00000000000 --- a/_downloads/f85bef88d9377e04abd52f4311335eb7/embedding_in_wx4_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f85bef88d9377e04abd52f4311335eb7/embedding_in_wx4_sgskip.py \ No newline at end of file diff --git a/_downloads/f861e7edda4cda91251c3b596522a85b/trifinder_event_demo.ipynb b/_downloads/f861e7edda4cda91251c3b596522a85b/trifinder_event_demo.ipynb deleted file mode 120000 index f3390d896d9..00000000000 --- a/_downloads/f861e7edda4cda91251c3b596522a85b/trifinder_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f861e7edda4cda91251c3b596522a85b/trifinder_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/f86c26c0d2e8cf0747698f74843e3acb/histogram_features.py b/_downloads/f86c26c0d2e8cf0747698f74843e3acb/histogram_features.py deleted file mode 120000 index c58bf7eb4a0..00000000000 --- a/_downloads/f86c26c0d2e8cf0747698f74843e3acb/histogram_features.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f86c26c0d2e8cf0747698f74843e3acb/histogram_features.py \ No newline at end of file diff --git a/_downloads/f86ce44e2b1b6928e2d745b7158b346f/path_editor.py b/_downloads/f86ce44e2b1b6928e2d745b7158b346f/path_editor.py deleted file mode 120000 index de7167713bb..00000000000 --- a/_downloads/f86ce44e2b1b6928e2d745b7158b346f/path_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f86ce44e2b1b6928e2d745b7158b346f/path_editor.py \ No newline at end of file diff --git a/_downloads/f88332d933fe4127ac638ae1fe524207/ginput_manual_clabel_sgskip.ipynb b/_downloads/f88332d933fe4127ac638ae1fe524207/ginput_manual_clabel_sgskip.ipynb deleted file mode 120000 index f2e9af59b0c..00000000000 --- a/_downloads/f88332d933fe4127ac638ae1fe524207/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f88332d933fe4127ac638ae1fe524207/ginput_manual_clabel_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/f8837f0561f82c39f5fe63d830fac1d0/radian_demo.py b/_downloads/f8837f0561f82c39f5fe63d830fac1d0/radian_demo.py deleted file mode 120000 index c9b0abdd1a6..00000000000 --- a/_downloads/f8837f0561f82c39f5fe63d830fac1d0/radian_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f8837f0561f82c39f5fe63d830fac1d0/radian_demo.py \ No newline at end of file diff --git a/_downloads/f88cbce9934285e4cf95f39c03bb5e19/timeline.py b/_downloads/f88cbce9934285e4cf95f39c03bb5e19/timeline.py deleted file mode 120000 index e7b86c8b6af..00000000000 --- a/_downloads/f88cbce9934285e4cf95f39c03bb5e19/timeline.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f88cbce9934285e4cf95f39c03bb5e19/timeline.py \ No newline at end of file diff --git a/_downloads/f8903b12dd5db5ca7f3bed32c11df8dd/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/f8903b12dd5db5ca7f3bed32c11df8dd/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 120000 index 9e7db86e515..00000000000 --- a/_downloads/f8903b12dd5db5ca7f3bed32c11df8dd/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f8903b12dd5db5ca7f3bed32c11df8dd/make_room_for_ylabel_using_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/f893e715b1e81eaad7b41f5fd2077634/tick-locators.ipynb b/_downloads/f893e715b1e81eaad7b41f5fd2077634/tick-locators.ipynb deleted file mode 120000 index c61c1506e44..00000000000 --- a/_downloads/f893e715b1e81eaad7b41f5fd2077634/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f893e715b1e81eaad7b41f5fd2077634/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/f89c0bfb3d1b3aa84792324a05b0c50d/svg_histogram_sgskip.ipynb b/_downloads/f89c0bfb3d1b3aa84792324a05b0c50d/svg_histogram_sgskip.ipynb deleted file mode 120000 index 4951964c1b6..00000000000 --- a/_downloads/f89c0bfb3d1b3aa84792324a05b0c50d/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f89c0bfb3d1b3aa84792324a05b0c50d/svg_histogram_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/f89c9af60aeaa6687336235e9dd5f079/xkcd.ipynb b/_downloads/f89c9af60aeaa6687336235e9dd5f079/xkcd.ipynb deleted file mode 120000 index b4c7b7024dd..00000000000 --- a/_downloads/f89c9af60aeaa6687336235e9dd5f079/xkcd.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f89c9af60aeaa6687336235e9dd5f079/xkcd.ipynb \ No newline at end of file diff --git a/_downloads/f8a22a6a0b84b3af51277e5ab936a47c/annotate_with_units.py b/_downloads/f8a22a6a0b84b3af51277e5ab936a47c/annotate_with_units.py deleted file mode 120000 index 57a3b35271d..00000000000 --- a/_downloads/f8a22a6a0b84b3af51277e5ab936a47c/annotate_with_units.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f8a22a6a0b84b3af51277e5ab936a47c/annotate_with_units.py \ No newline at end of file diff --git a/_downloads/f8a3cdf84c7cfd22e6e9c84f57fae82b/text_intro.ipynb b/_downloads/f8a3cdf84c7cfd22e6e9c84f57fae82b/text_intro.ipynb deleted file mode 120000 index 9dde999f568..00000000000 --- a/_downloads/f8a3cdf84c7cfd22e6e9c84f57fae82b/text_intro.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f8a3cdf84c7cfd22e6e9c84f57fae82b/text_intro.ipynb \ No newline at end of file diff --git a/_downloads/f8a42a328abce5e8455725246cb68710/step_demo.py b/_downloads/f8a42a328abce5e8455725246cb68710/step_demo.py deleted file mode 120000 index 23de3dc90c7..00000000000 --- a/_downloads/f8a42a328abce5e8455725246cb68710/step_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f8a42a328abce5e8455725246cb68710/step_demo.py \ No newline at end of file diff --git a/_downloads/f8b0531806dd458e84025a2048941b12/tick_xlabel_top.ipynb b/_downloads/f8b0531806dd458e84025a2048941b12/tick_xlabel_top.ipynb deleted file mode 100644 index 079d67d2660..00000000000 --- a/_downloads/f8b0531806dd458e84025a2048941b12/tick_xlabel_top.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Set default x-axis tick labels on the top\n\n\nWe can use :rc:`xtick.labeltop` (default False) and :rc:`xtick.top`\n(default False) and :rc:`xtick.labelbottom` (default True) and\n:rc:`xtick.bottom` (default True) to control where on the axes ticks and\ntheir labels appear.\n\nThese properties can also be set in ``.matplotlib/matplotlibrc``.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\nplt.rcParams['xtick.bottom'] = plt.rcParams['xtick.labelbottom'] = False\nplt.rcParams['xtick.top'] = plt.rcParams['xtick.labeltop'] = True\n\nx = np.arange(10)\n\nfig, ax = plt.subplots()\n\nax.plot(x)\nax.set_title('xlabel top') # Note title moves to make room for ticks\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f8b730568a1145972d865e275a187ac8/demo_imagegrid_aspect.py b/_downloads/f8b730568a1145972d865e275a187ac8/demo_imagegrid_aspect.py deleted file mode 120000 index dcbc0cb036c..00000000000 --- a/_downloads/f8b730568a1145972d865e275a187ac8/demo_imagegrid_aspect.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f8b730568a1145972d865e275a187ac8/demo_imagegrid_aspect.py \ No newline at end of file diff --git a/_downloads/f8bc206437a58df4500e6f3fa93ee238/dfrac_demo.ipynb b/_downloads/f8bc206437a58df4500e6f3fa93ee238/dfrac_demo.ipynb deleted file mode 100644 index 8141a55b8f7..00000000000 --- a/_downloads/f8bc206437a58df4500e6f3fa93ee238/dfrac_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=========================================\nThe difference between \\\\dfrac and \\\\frac\n=========================================\n\nIn this example, the differences between the \\\\dfrac and \\\\frac TeX macros are\nillustrated; in particular, the difference between display style and text style\nfractions when using Mathtex.\n\n.. versionadded:: 2.1\n\n

Note

To use \\\\dfrac with the LaTeX engine (text.usetex : True), you need to\n import the amsmath package with the text.latex.preamble rc, which is\n an unsupported feature; therefore, it is probably a better idea to just\n use the \\\\displaystyle option before the \\\\frac macro to get this behavior\n with the LaTeX engine.

\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig = plt.figure(figsize=(5.25, 0.75))\nfig.text(0.5, 0.3, r'\\dfrac: $\\dfrac{a}{b}$',\n horizontalalignment='center', verticalalignment='center')\nfig.text(0.5, 0.7, r'\\frac: $\\frac{a}{b}$',\n horizontalalignment='center', verticalalignment='center')\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f8c0358a738de22bc3fd0b333e981c29/histogram_histtypes.py b/_downloads/f8c0358a738de22bc3fd0b333e981c29/histogram_histtypes.py deleted file mode 120000 index 1443140a6c1..00000000000 --- a/_downloads/f8c0358a738de22bc3fd0b333e981c29/histogram_histtypes.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f8c0358a738de22bc3fd0b333e981c29/histogram_histtypes.py \ No newline at end of file diff --git a/_downloads/f8c4a6f9ee19fb553ac3f6e7c8a6fff5/text_layout.py b/_downloads/f8c4a6f9ee19fb553ac3f6e7c8a6fff5/text_layout.py deleted file mode 120000 index 387103f451c..00000000000 --- a/_downloads/f8c4a6f9ee19fb553ac3f6e7c8a6fff5/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f8c4a6f9ee19fb553ac3f6e7c8a6fff5/text_layout.py \ No newline at end of file diff --git a/_downloads/f8c5e0a20bb0f9ffb50bbf945e3e0702/simple_anchored_artists.ipynb b/_downloads/f8c5e0a20bb0f9ffb50bbf945e3e0702/simple_anchored_artists.ipynb deleted file mode 120000 index d482461a9d5..00000000000 --- a/_downloads/f8c5e0a20bb0f9ffb50bbf945e3e0702/simple_anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f8c5e0a20bb0f9ffb50bbf945e3e0702/simple_anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/f8d33c4cdc383cabb70fc9dba7fb79db/color_cycler.py b/_downloads/f8d33c4cdc383cabb70fc9dba7fb79db/color_cycler.py deleted file mode 100644 index 44aa6754088..00000000000 --- a/_downloads/f8d33c4cdc383cabb70fc9dba7fb79db/color_cycler.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -=================== -Styling with cycler -=================== - -Demo of custom property-cycle settings to control colors and other style -properties for multi-line plots. - -This example demonstrates two different APIs: - -1. Setting the default :doc:`rc parameter` - specifying the property cycle. This affects all subsequent axes (but not - axes already created). -2. Setting the property cycle for a single pair of axes. -""" -from cycler import cycler -import numpy as np -import matplotlib.pyplot as plt - - -x = np.linspace(0, 2 * np.pi) -offsets = np.linspace(0, 2*np.pi, 4, endpoint=False) -# Create array with shifted-sine curve along each column -yy = np.transpose([np.sin(x + phi) for phi in offsets]) - -# 1. Setting prop cycle on default rc parameter -plt.rc('lines', linewidth=4) -plt.rc('axes', prop_cycle=(cycler(color=['r', 'g', 'b', 'y']) + - cycler(linestyle=['-', '--', ':', '-.']))) -fig, (ax0, ax1) = plt.subplots(nrows=2, constrained_layout=True) -ax0.plot(yy) -ax0.set_title('Set default color cycle to rgby') - -# 2. Define prop cycle for single set of axes -# For the most general use-case, you can provide a cycler to -# `.set_prop_cycle`. -# Here, we use the convenient shortcut that we can alternatively pass -# one or more properties as keyword arguments. This creates and sets -# a cycler iterating simultaneously over all properties. -ax1.set_prop_cycle(color=['c', 'm', 'y', 'k'], lw=[1, 2, 3, 4]) -ax1.plot(yy) -ax1.set_title('Set axes color cycle to cmyk') - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.plot -matplotlib.axes.Axes.set_prop_cycle diff --git a/_downloads/f8dbfa73c59b6c70f1986992e44e55ec/timeline.ipynb b/_downloads/f8dbfa73c59b6c70f1986992e44e55ec/timeline.ipynb deleted file mode 100644 index 69aa91e2248..00000000000 --- a/_downloads/f8dbfa73c59b6c70f1986992e44e55ec/timeline.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n===============================================\nCreating a timeline with lines, dates, and text\n===============================================\n\nHow to create a simple timeline using Matplotlib release dates.\n\nTimelines can be created with a collection of dates and text. In this example,\nwe show how to create a simple timeline using the dates for recent releases\nof Matplotlib. First, we'll pull the data from GitHub.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib.dates as mdates\nfrom datetime import datetime\n\ntry:\n # Try to fetch a list of Matplotlib releases and their dates\n # from https://api.github.com/repos/matplotlib/matplotlib/releases\n import urllib.request\n import json\n\n url = 'https://api.github.com/repos/matplotlib/matplotlib/releases'\n url += '?per_page=100'\n data = json.loads(urllib.request.urlopen(url, timeout=.4).read().decode())\n\n dates = []\n names = []\n for item in data:\n if 'rc' not in item['tag_name'] and 'b' not in item['tag_name']:\n dates.append(item['published_at'].split(\"T\")[0])\n names.append(item['tag_name'])\n # Convert date strings (e.g. 2014-10-18) to datetime\n dates = [datetime.strptime(d, \"%Y-%m-%d\") for d in dates]\n\nexcept Exception:\n # In case the above fails, e.g. because of missing internet connection\n # use the following lists as fallback.\n names = ['v2.2.4', 'v3.0.3', 'v3.0.2', 'v3.0.1', 'v3.0.0', 'v2.2.3',\n 'v2.2.2', 'v2.2.1', 'v2.2.0', 'v2.1.2', 'v2.1.1', 'v2.1.0',\n 'v2.0.2', 'v2.0.1', 'v2.0.0', 'v1.5.3', 'v1.5.2', 'v1.5.1',\n 'v1.5.0', 'v1.4.3', 'v1.4.2', 'v1.4.1', 'v1.4.0']\n\n dates = ['2019-02-26', '2019-02-26', '2018-11-10', '2018-11-10',\n '2018-09-18', '2018-08-10', '2018-03-17', '2018-03-16',\n '2018-03-06', '2018-01-18', '2017-12-10', '2017-10-07',\n '2017-05-10', '2017-05-02', '2017-01-17', '2016-09-09',\n '2016-07-03', '2016-01-10', '2015-10-29', '2015-02-16',\n '2014-10-26', '2014-10-18', '2014-08-26']\n\n # Convert date strings (e.g. 2014-10-18) to datetime\n dates = [datetime.strptime(d, \"%Y-%m-%d\") for d in dates]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next, we'll create a `~.Axes.stem` plot with some variation in levels as to\ndistinguish even close-by events. In contrast to a usual stem plot, we will\nshift the markers to the baseline for visual emphasis on the one-dimensional\nnature of the time line.\nFor each event, we add a text label via `~.Axes.annotate`, which is offset\nin units of points from the tip of the event line.\n\nNote that Matplotlib will automatically plot datetime inputs.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Choose some nice levels\nlevels = np.tile([-5, 5, -3, 3, -1, 1],\n int(np.ceil(len(dates)/6)))[:len(dates)]\n\n# Create figure and plot a stem plot with the date\nfig, ax = plt.subplots(figsize=(8.8, 4), constrained_layout=True)\nax.set(title=\"Matplotlib release dates\")\n\nmarkerline, stemline, baseline = ax.stem(dates, levels,\n linefmt=\"C3-\", basefmt=\"k-\",\n use_line_collection=True)\n\nplt.setp(markerline, mec=\"k\", mfc=\"w\", zorder=3)\n\n# Shift the markers to the baseline by replacing the y-data by zeros.\nmarkerline.set_ydata(np.zeros(len(dates)))\n\n# annotate lines\nvert = np.array(['top', 'bottom'])[(levels > 0).astype(int)]\nfor d, l, r, va in zip(dates, levels, names, vert):\n ax.annotate(r, xy=(d, l), xytext=(-3, np.sign(l)*3),\n textcoords=\"offset points\", va=va, ha=\"right\")\n\n# format xaxis with 4 month intervals\nax.get_xaxis().set_major_locator(mdates.MonthLocator(interval=4))\nax.get_xaxis().set_major_formatter(mdates.DateFormatter(\"%b %Y\"))\nplt.setp(ax.get_xticklabels(), rotation=30, ha=\"right\")\n\n# remove y axis and spines\nax.get_yaxis().set_visible(False)\nfor spine in [\"left\", \"top\", \"right\"]:\n ax.spines[spine].set_visible(False)\n\nax.margins(y=0.1)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods and classes is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.stem\nmatplotlib.axes.Axes.annotate\nmatplotlib.axis.Axis.set_major_locator\nmatplotlib.axis.Axis.set_major_formatter\nmatplotlib.dates.MonthLocator\nmatplotlib.dates.DateFormatter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f8decf7d1e2b2b3471db052eb47b932f/contour_image.py b/_downloads/f8decf7d1e2b2b3471db052eb47b932f/contour_image.py deleted file mode 120000 index 51fe3a347b5..00000000000 --- a/_downloads/f8decf7d1e2b2b3471db052eb47b932f/contour_image.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f8decf7d1e2b2b3471db052eb47b932f/contour_image.py \ No newline at end of file diff --git a/_downloads/f8def4b251d04cb83b015bc0b75b9494/text_rotation_relative_to_line.py b/_downloads/f8def4b251d04cb83b015bc0b75b9494/text_rotation_relative_to_line.py deleted file mode 100644 index 572797b82f0..00000000000 --- a/_downloads/f8def4b251d04cb83b015bc0b75b9494/text_rotation_relative_to_line.py +++ /dev/null @@ -1,41 +0,0 @@ -""" -============================== -Text Rotation Relative To Line -============================== - -Text objects in matplotlib are normally rotated with respect to the -screen coordinate system (i.e., 45 degrees rotation plots text along a -line that is in between horizontal and vertical no matter how the axes -are changed). However, at times one wants to rotate text with respect -to something on the plot. In this case, the correct angle won't be -the angle of that object in the plot coordinate system, but the angle -that that object APPEARS in the screen coordinate system. This angle -is found by transforming the angle from the plot to the screen -coordinate system, as shown in the example below. -""" - -import matplotlib.pyplot as plt -import numpy as np - -# Plot diagonal line (45 degrees) -h = plt.plot(np.arange(0, 10), np.arange(0, 10)) - -# set limits so that it no longer looks on screen to be 45 degrees -plt.xlim([-10, 20]) - -# Locations to plot text -l1 = np.array((1, 1)) -l2 = np.array((5, 5)) - -# Rotate angle -angle = 45 -trans_angle = plt.gca().transData.transform_angles(np.array((45,)), - l2.reshape((1, 2)))[0] - -# Plot text -th1 = plt.text(l1[0], l1[1], 'text not rotated correctly', fontsize=16, - rotation=angle, rotation_mode='anchor') -th2 = plt.text(l2[0], l2[1], 'text rotated correctly', fontsize=16, - rotation=trans_angle, rotation_mode='anchor') - -plt.show() diff --git a/_downloads/f8e0ebf4a1e25966da42d36592fa9a1d/quiver_demo.ipynb b/_downloads/f8e0ebf4a1e25966da42d36592fa9a1d/quiver_demo.ipynb deleted file mode 120000 index bb6a37c4dc6..00000000000 --- a/_downloads/f8e0ebf4a1e25966da42d36592fa9a1d/quiver_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f8e0ebf4a1e25966da42d36592fa9a1d/quiver_demo.ipynb \ No newline at end of file diff --git a/_downloads/f8ed0a07306714586b60a03b6a4d8fe8/two_scales.py b/_downloads/f8ed0a07306714586b60a03b6a4d8fe8/two_scales.py deleted file mode 120000 index b95ff02020f..00000000000 --- a/_downloads/f8ed0a07306714586b60a03b6a4d8fe8/two_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f8ed0a07306714586b60a03b6a4d8fe8/two_scales.py \ No newline at end of file diff --git a/_downloads/f8f087287b84163ff4d346e376845212/anchored_box01.ipynb b/_downloads/f8f087287b84163ff4d346e376845212/anchored_box01.ipynb deleted file mode 120000 index a721b75ae90..00000000000 --- a/_downloads/f8f087287b84163ff4d346e376845212/anchored_box01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f8f087287b84163ff4d346e376845212/anchored_box01.ipynb \ No newline at end of file diff --git a/_downloads/f8f878e39a3cbb875c5d9a467a181dff/simple_axisline3.py b/_downloads/f8f878e39a3cbb875c5d9a467a181dff/simple_axisline3.py deleted file mode 120000 index 4abbcb9165e..00000000000 --- a/_downloads/f8f878e39a3cbb875c5d9a467a181dff/simple_axisline3.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f8f878e39a3cbb875c5d9a467a181dff/simple_axisline3.py \ No newline at end of file diff --git a/_downloads/f8fed5739effc011566e2de8e0919150/xkcd.py b/_downloads/f8fed5739effc011566e2de8e0919150/xkcd.py deleted file mode 100644 index 22fec6cfdc8..00000000000 --- a/_downloads/f8fed5739effc011566e2de8e0919150/xkcd.py +++ /dev/null @@ -1,66 +0,0 @@ -""" -==== -XKCD -==== - -Shows how to create an xkcd-like plot. -""" -import matplotlib.pyplot as plt -import numpy as np - -############################################################################### - -with plt.xkcd(): - # Based on "Stove Ownership" from XKCD by Randall Munroe - # https://xkcd.com/418/ - - fig = plt.figure() - ax = fig.add_axes((0.1, 0.2, 0.8, 0.7)) - ax.spines['right'].set_color('none') - ax.spines['top'].set_color('none') - ax.set_xticks([]) - ax.set_yticks([]) - ax.set_ylim([-30, 10]) - - data = np.ones(100) - data[70:] -= np.arange(30) - - ax.annotate( - 'THE DAY I REALIZED\nI COULD COOK BACON\nWHENEVER I WANTED', - xy=(70, 1), arrowprops=dict(arrowstyle='->'), xytext=(15, -10)) - - ax.plot(data) - - ax.set_xlabel('time') - ax.set_ylabel('my overall health') - fig.text( - 0.5, 0.05, - '"Stove Ownership" from xkcd by Randall Munroe', - ha='center') - -############################################################################### - -with plt.xkcd(): - # Based on "The Data So Far" from XKCD by Randall Munroe - # https://xkcd.com/373/ - - fig = plt.figure() - ax = fig.add_axes((0.1, 0.2, 0.8, 0.7)) - ax.bar([0, 1], [0, 100], 0.25) - ax.spines['right'].set_color('none') - ax.spines['top'].set_color('none') - ax.xaxis.set_ticks_position('bottom') - ax.set_xticks([0, 1]) - ax.set_xticklabels(['CONFIRMED BY\nEXPERIMENT', 'REFUTED BY\nEXPERIMENT']) - ax.set_xlim([-0.5, 1.5]) - ax.set_yticks([]) - ax.set_ylim([0, 110]) - - ax.set_title("CLAIMS OF SUPERNATURAL POWERS") - - fig.text( - 0.5, 0.05, - '"The Data So Far" from xkcd by Randall Munroe', - ha='center') - -plt.show() diff --git a/_downloads/f904b0e725b340a57d29c6224377bb84/font_table.ipynb b/_downloads/f904b0e725b340a57d29c6224377bb84/font_table.ipynb deleted file mode 120000 index 79f82ab7d2e..00000000000 --- a/_downloads/f904b0e725b340a57d29c6224377bb84/font_table.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f904b0e725b340a57d29c6224377bb84/font_table.ipynb \ No newline at end of file diff --git a/_downloads/f90c4476c06624307d661044018c7fe5/axis_equal_demo.py b/_downloads/f90c4476c06624307d661044018c7fe5/axis_equal_demo.py deleted file mode 120000 index dd6db278a92..00000000000 --- a/_downloads/f90c4476c06624307d661044018c7fe5/axis_equal_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f90c4476c06624307d661044018c7fe5/axis_equal_demo.py \ No newline at end of file diff --git a/_downloads/f90d34504fcb373d85bf1cc79950c942/axis_direction_demo_step02.ipynb b/_downloads/f90d34504fcb373d85bf1cc79950c942/axis_direction_demo_step02.ipynb deleted file mode 120000 index f578e317c85..00000000000 --- a/_downloads/f90d34504fcb373d85bf1cc79950c942/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_downloads/f90d34504fcb373d85bf1cc79950c942/axis_direction_demo_step02.ipynb \ No newline at end of file diff --git a/_downloads/f916babc2a191fb56bf15aadecb3bae1/image_transparency_blend.py b/_downloads/f916babc2a191fb56bf15aadecb3bae1/image_transparency_blend.py deleted file mode 120000 index 5c49bc2d5cb..00000000000 --- a/_downloads/f916babc2a191fb56bf15aadecb3bae1/image_transparency_blend.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/f916babc2a191fb56bf15aadecb3bae1/image_transparency_blend.py \ No newline at end of file diff --git a/_downloads/f91f1d736eab616cdada514d7ff56b56/pyplot_formatstr.py b/_downloads/f91f1d736eab616cdada514d7ff56b56/pyplot_formatstr.py deleted file mode 120000 index 082d8f9911b..00000000000 --- a/_downloads/f91f1d736eab616cdada514d7ff56b56/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f91f1d736eab616cdada514d7ff56b56/pyplot_formatstr.py \ No newline at end of file diff --git a/_downloads/f93874502e895514001de9675c73ec01/scales.py b/_downloads/f93874502e895514001de9675c73ec01/scales.py deleted file mode 100644 index 89352c4351a..00000000000 --- a/_downloads/f93874502e895514001de9675c73ec01/scales.py +++ /dev/null @@ -1,122 +0,0 @@ -""" -====== -Scales -====== - -Illustrate the scale transformations applied to axes, e.g. log, symlog, logit. - -The last two examples are examples of using the ``'function'`` scale by -supplying forward and inverse functions for the scale transformation. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.ticker import NullFormatter, FixedLocator - -# Fixing random state for reproducibility -np.random.seed(19680801) - -# make up some data in the interval ]0, 1[ -y = np.random.normal(loc=0.5, scale=0.4, size=1000) -y = y[(y > 0) & (y < 1)] -y.sort() -x = np.arange(len(y)) - -# plot with various axes scales -fig, axs = plt.subplots(3, 2, figsize=(6, 8), - constrained_layout=True) - -# linear -ax = axs[0, 0] -ax.plot(x, y) -ax.set_yscale('linear') -ax.set_title('linear') -ax.grid(True) - - -# log -ax = axs[0, 1] -ax.plot(x, y) -ax.set_yscale('log') -ax.set_title('log') -ax.grid(True) - - -# symmetric log -ax = axs[1, 1] -ax.plot(x, y - y.mean()) -ax.set_yscale('symlog', linthreshy=0.02) -ax.set_title('symlog') -ax.grid(True) - -# logit -ax = axs[1, 0] -ax.plot(x, y) -ax.set_yscale('logit') -ax.set_title('logit') -ax.grid(True) -ax.yaxis.set_minor_formatter(NullFormatter()) - - -# Function x**(1/2) -def forward(x): - return x**(1/2) - - -def inverse(x): - return x**2 - - -ax = axs[2, 0] -ax.plot(x, y) -ax.set_yscale('function', functions=(forward, inverse)) -ax.set_title('function: $x^{1/2}$') -ax.grid(True) -ax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2)**2)) -ax.yaxis.set_major_locator(FixedLocator(np.arange(0, 1, 0.2))) - - -# Function Mercator transform -def forward(a): - a = np.deg2rad(a) - return np.rad2deg(np.log(np.abs(np.tan(a) + 1.0 / np.cos(a)))) - - -def inverse(a): - a = np.deg2rad(a) - return np.rad2deg(np.arctan(np.sinh(a))) - -ax = axs[2, 1] - -t = np.arange(-170.0, 170.0, 0.1) -s = t / 2. - -ax.plot(t, s, '-', lw=2) - -ax.set_yscale('function', functions=(forward, inverse)) -ax.set_title('function: Mercator') -ax.grid(True) -ax.set_xlim([-180, 180]) -ax.yaxis.set_minor_formatter(NullFormatter()) -ax.yaxis.set_major_locator(FixedLocator(np.arange(-90, 90, 30))) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.set_yscale -matplotlib.axes.Axes.set_xscale -matplotlib.axis.Axis.set_major_locator -matplotlib.scale.LogitScale -matplotlib.scale.LogScale -matplotlib.scale.LinearScale -matplotlib.scale.SymmetricalLogScale -matplotlib.scale.FuncScale diff --git a/_downloads/f94e5f93d5065176d87ddc1abfdde80b/pylab_with_gtk_sgskip.py b/_downloads/f94e5f93d5065176d87ddc1abfdde80b/pylab_with_gtk_sgskip.py deleted file mode 120000 index 0ec392d55ff..00000000000 --- a/_downloads/f94e5f93d5065176d87ddc1abfdde80b/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f94e5f93d5065176d87ddc1abfdde80b/pylab_with_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/f95abe8d18024efc9593bcd562e28f7a/histogram_path.ipynb b/_downloads/f95abe8d18024efc9593bcd562e28f7a/histogram_path.ipynb deleted file mode 120000 index a6dad174515..00000000000 --- a/_downloads/f95abe8d18024efc9593bcd562e28f7a/histogram_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f95abe8d18024efc9593bcd562e28f7a/histogram_path.ipynb \ No newline at end of file diff --git a/_downloads/f96d7f94daf2c970576de5e13610a96a/lasso_demo.ipynb b/_downloads/f96d7f94daf2c970576de5e13610a96a/lasso_demo.ipynb deleted file mode 100644 index 47318880397..00000000000 --- a/_downloads/f96d7f94daf2c970576de5e13610a96a/lasso_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Lasso Demo\n\n\nShow how to use a lasso to select a set of points and get the indices\nof the selected points. A callback is used to change the color of the\nselected points\n\nThis is currently a proof-of-concept implementation (though it is\nusable as is). There will be some refinement of the API.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib import colors as mcolors, path\nfrom matplotlib.collections import RegularPolyCollection\nimport matplotlib.pyplot as plt\nfrom matplotlib.widgets import Lasso\nimport numpy as np\n\n\nclass Datum(object):\n colorin = mcolors.to_rgba(\"red\")\n colorout = mcolors.to_rgba(\"blue\")\n\n def __init__(self, x, y, include=False):\n self.x = x\n self.y = y\n if include:\n self.color = self.colorin\n else:\n self.color = self.colorout\n\n\nclass LassoManager(object):\n def __init__(self, ax, data):\n self.axes = ax\n self.canvas = ax.figure.canvas\n self.data = data\n\n self.Nxy = len(data)\n\n facecolors = [d.color for d in data]\n self.xys = [(d.x, d.y) for d in data]\n self.collection = RegularPolyCollection(\n 6, sizes=(100,),\n facecolors=facecolors,\n offsets=self.xys,\n transOffset=ax.transData)\n\n ax.add_collection(self.collection)\n\n self.cid = self.canvas.mpl_connect('button_press_event', self.onpress)\n\n def callback(self, verts):\n facecolors = self.collection.get_facecolors()\n p = path.Path(verts)\n ind = p.contains_points(self.xys)\n for i in range(len(self.xys)):\n if ind[i]:\n facecolors[i] = Datum.colorin\n else:\n facecolors[i] = Datum.colorout\n\n self.canvas.draw_idle()\n self.canvas.widgetlock.release(self.lasso)\n del self.lasso\n\n def onpress(self, event):\n if self.canvas.widgetlock.locked():\n return\n if event.inaxes is None:\n return\n self.lasso = Lasso(event.inaxes,\n (event.xdata, event.ydata),\n self.callback)\n # acquire a lock on the widget drawing\n self.canvas.widgetlock(self.lasso)\n\n\nif __name__ == '__main__':\n\n np.random.seed(19680801)\n\n data = [Datum(*xy) for xy in np.random.rand(100, 2)]\n ax = plt.axes(xlim=(0, 1), ylim=(0, 1), autoscale_on=False)\n ax.set_title('Lasso points using left mouse button')\n\n lman = LassoManager(ax, data)\n\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f97196d6ecd4c7c58e64e88481ad3e88/constrainedlayout_guide.ipynb b/_downloads/f97196d6ecd4c7c58e64e88481ad3e88/constrainedlayout_guide.ipynb deleted file mode 120000 index 9d6c5abeef8..00000000000 --- a/_downloads/f97196d6ecd4c7c58e64e88481ad3e88/constrainedlayout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f97196d6ecd4c7c58e64e88481ad3e88/constrainedlayout_guide.ipynb \ No newline at end of file diff --git a/_downloads/f9875b793dbbda6286f11f5d81dca828/joinstyle.ipynb b/_downloads/f9875b793dbbda6286f11f5d81dca828/joinstyle.ipynb deleted file mode 120000 index b721d220c78..00000000000 --- a/_downloads/f9875b793dbbda6286f11f5d81dca828/joinstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f9875b793dbbda6286f11f5d81dca828/joinstyle.ipynb \ No newline at end of file diff --git a/_downloads/f998ee6965a99661d16d2adbbe99f645/logos2.py b/_downloads/f998ee6965a99661d16d2adbbe99f645/logos2.py deleted file mode 100644 index 4492923aee1..00000000000 --- a/_downloads/f998ee6965a99661d16d2adbbe99f645/logos2.py +++ /dev/null @@ -1,158 +0,0 @@ -""" -=============== -Matplotlib logo -=============== - -This example generates the current matplotlib logo. -""" - -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt -import matplotlib.cm as cm -import matplotlib.font_manager -from matplotlib.patches import Circle, Rectangle, PathPatch -from matplotlib.textpath import TextPath -import matplotlib.transforms as mtrans - -MPL_BLUE = '#11557c' - - -def get_font_properties(): - # The original font is Calibri, if that is not installed, we fall back - # to Carlito, which is metrically equivalent. - if 'Calibri' in matplotlib.font_manager.findfont('Calibri:bold'): - return matplotlib.font_manager.FontProperties(family='Calibri', - weight='bold') - if 'Carlito' in matplotlib.font_manager.findfont('Carlito:bold'): - print('Original font not found. Falling back to Carlito. ' - 'The logo text will not be in the correct font.') - return matplotlib.font_manager.FontProperties(family='Carlito', - weight='bold') - print('Original font not found. ' - 'The logo text will not be in the correct font.') - return None - - -def create_icon_axes(fig, ax_position, lw_bars, lw_grid, lw_border, rgrid): - """ - Create a polar axes containing the matplotlib radar plot. - - Parameters - ---------- - fig : matplotlib.figure.Figure - The figure to draw into. - ax_position : (float, float, float, float) - The position of the created Axes in figure coordinates as - (x, y, width, height). - lw_bars : float - The linewidth of the bars. - lw_grid : float - The linewidth of the grid. - lw_border : float - The linewidth of the Axes border. - rgrid : array-like - Positions of the radial grid. - - Returns - ------- - ax : matplotlib.axes.Axes - The created Axes. - """ - with plt.rc_context({'axes.edgecolor': MPL_BLUE, - 'axes.linewidth': lw_border}): - ax = fig.add_axes(ax_position, projection='polar') - ax.set_axisbelow(True) - - N = 7 - arc = 2. * np.pi - theta = np.arange(0.0, arc, arc / N) - radii = np.array([2, 6, 8, 7, 4, 5, 8]) - width = np.pi / 4 * np.array([0.4, 0.4, 0.6, 0.8, 0.2, 0.5, 0.3]) - bars = ax.bar(theta, radii, width=width, bottom=0.0, align='edge', - edgecolor='0.3', lw=lw_bars) - for r, bar in zip(radii, bars): - color = *cm.jet(r / 10.)[:3], 0.6 # color from jet with alpha=0.6 - bar.set_facecolor(color) - - ax.tick_params(labelbottom=False, labeltop=False, - labelleft=False, labelright=False) - - ax.grid(lw=lw_grid, color='0.9') - ax.set_rmax(9) - ax.set_yticks(rgrid) - - # the actual visible background - extends a bit beyond the axis - ax.add_patch(Rectangle((0, 0), arc, 9.58, - facecolor='white', zorder=0, - clip_on=False, in_layout=False)) - return ax - - -def create_text_axes(fig, height_px): - """Create an axes in *fig* that contains 'matplotlib' as Text.""" - ax = fig.add_axes((0, 0, 1, 1)) - ax.set_aspect("equal") - ax.set_axis_off() - - path = TextPath((0, 0), "matplotlib", size=height_px * 0.8, - prop=get_font_properties()) - - angle = 4.25 # degrees - trans = mtrans.Affine2D().skew_deg(angle, 0) - - patch = PathPatch(path, transform=trans + ax.transData, color=MPL_BLUE, - lw=0) - ax.add_patch(patch) - ax.autoscale() - - -def make_logo(height_px, lw_bars, lw_grid, lw_border, rgrid, with_text=False): - """ - Create a full figure with the Matplotlib logo. - - Parameters - ---------- - height_px : int - Height of the figure in pixel. - lw_bars : float - The linewidth of the bar border. - lw_grid : float - The linewidth of the grid. - lw_border : float - The linewidth of icon border. - rgrid : sequence of float - The radial grid positions. - with_text : bool - Whether to draw only the icon or to include 'matplotlib' as text. - """ - dpi = 100 - height = height_px / dpi - figsize = (5 * height, height) if with_text else (height, height) - fig = plt.figure(figsize=figsize, dpi=dpi) - fig.patch.set_alpha(0) - - if with_text: - create_text_axes(fig, height_px) - ax_pos = (0.535, 0.12, .17, 0.75) if with_text else (0.03, 0.03, .94, .94) - ax = create_icon_axes(fig, ax_pos, lw_bars, lw_grid, lw_border, rgrid) - - return fig, ax - -############################################################################## -# A large logo: - -make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1, - rgrid=[1, 3, 5, 7]) - -############################################################################## -# A small 32px logo: - -make_logo(height_px=32, lw_bars=0.3, lw_grid=0.3, lw_border=0.3, rgrid=[5]) - -############################################################################## -# A large logo including text, as used on the matplotlib website. - -make_logo(height_px=110, lw_bars=0.7, lw_grid=0.5, lw_border=1, - rgrid=[1, 3, 5, 7], with_text=True) -plt.show() diff --git a/_downloads/f9ad255c2bd89bfb98f08af66f4333a1/colormaps.py b/_downloads/f9ad255c2bd89bfb98f08af66f4333a1/colormaps.py deleted file mode 120000 index 91cf14a724d..00000000000 --- a/_downloads/f9ad255c2bd89bfb98f08af66f4333a1/colormaps.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f9ad255c2bd89bfb98f08af66f4333a1/colormaps.py \ No newline at end of file diff --git a/_downloads/f9b319bf692d5b7a9ac3af9a21d5714b/simple_axisline.ipynb b/_downloads/f9b319bf692d5b7a9ac3af9a21d5714b/simple_axisline.ipynb deleted file mode 100644 index 607527e9a76..00000000000 --- a/_downloads/f9b319bf692d5b7a9ac3af9a21d5714b/simple_axisline.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple Axisline\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axisartist.axislines import SubplotZero\n\n\nfig = plt.figure()\nfig.subplots_adjust(right=0.85)\nax = SubplotZero(fig, 1, 1, 1)\nfig.add_subplot(ax)\n\n# make right and top axis invisible\nax.axis[\"right\"].set_visible(False)\nax.axis[\"top\"].set_visible(False)\n\n# make xzero axis (horizontal axis line through y=0) visible.\nax.axis[\"xzero\"].set_visible(True)\nax.axis[\"xzero\"].label.set_text(\"Axis Zero\")\n\nax.set_ylim(-2, 4)\nax.set_xlabel(\"Label X\")\nax.set_ylabel(\"Label Y\")\n# or\n#ax.axis[\"bottom\"].label.set_text(\"Label X\")\n#ax.axis[\"left\"].label.set_text(\"Label Y\")\n\n# make new (right-side) yaxis, but with some offset\noffset = (20, 0)\nnew_axisline = ax.get_grid_helper().new_fixed_axis\n\nax.axis[\"right2\"] = new_axisline(loc=\"right\", offset=offset, axes=ax)\nax.axis[\"right2\"].label.set_text(\"Label Y2\")\n\nax.plot([-2, 3, 2])\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f9b5795e7fe3d52ec9f5f5680b16f027/gallery_jupyter.zip b/_downloads/f9b5795e7fe3d52ec9f5f5680b16f027/gallery_jupyter.zip deleted file mode 120000 index 8e1f5ea95df..00000000000 --- a/_downloads/f9b5795e7fe3d52ec9f5f5680b16f027/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f9b5795e7fe3d52ec9f5f5680b16f027/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/f9c0e75f162002aa96730bbd85256f16/colorbar_placement.ipynb b/_downloads/f9c0e75f162002aa96730bbd85256f16/colorbar_placement.ipynb deleted file mode 120000 index af1b8d4b87c..00000000000 --- a/_downloads/f9c0e75f162002aa96730bbd85256f16/colorbar_placement.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f9c0e75f162002aa96730bbd85256f16/colorbar_placement.ipynb \ No newline at end of file diff --git a/_downloads/f9c713d875bbfb98e2d0120c0bcda007/hist.py b/_downloads/f9c713d875bbfb98e2d0120c0bcda007/hist.py deleted file mode 120000 index b2eda5c44f4..00000000000 --- a/_downloads/f9c713d875bbfb98e2d0120c0bcda007/hist.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/f9c713d875bbfb98e2d0120c0bcda007/hist.py \ No newline at end of file diff --git a/_downloads/f9cce28729a74dc8ad0eb4b1a5a5e063/legend_guide.ipynb b/_downloads/f9cce28729a74dc8ad0eb4b1a5a5e063/legend_guide.ipynb deleted file mode 100644 index 7f58c8d7138..00000000000 --- a/_downloads/f9cce28729a74dc8ad0eb4b1a5a5e063/legend_guide.ipynb +++ /dev/null @@ -1,198 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Legend guide\n\n\nGenerating legends flexibly in Matplotlib.\n\n.. currentmodule:: matplotlib.pyplot\n\nThis legend guide is an extension of the documentation available at\n:func:`~matplotlib.pyplot.legend` - please ensure you are familiar with\ncontents of that documentation before proceeding with this guide.\n\n\nThis guide makes use of some common terms, which are documented here for clarity:\n\n.. glossary::\n\n legend entry\n A legend is made up of one or more legend entries. An entry is made up of\n exactly one key and one label.\n\n legend key\n The colored/patterned marker to the left of each legend label.\n\n legend label\n The text which describes the handle represented by the key.\n\n legend handle\n The original object which is used to generate an appropriate entry in\n the legend.\n\n\nControlling the legend entries\n==============================\n\nCalling :func:`legend` with no arguments automatically fetches the legend\nhandles and their associated labels. This functionality is equivalent to::\n\n handles, labels = ax.get_legend_handles_labels()\n ax.legend(handles, labels)\n\nThe :meth:`~matplotlib.axes.Axes.get_legend_handles_labels` function returns\na list of handles/artists which exist on the Axes which can be used to\ngenerate entries for the resulting legend - it is worth noting however that\nnot all artists can be added to a legend, at which point a \"proxy\" will have\nto be created (see `proxy_legend_handles` for further details).\n\nFor full control of what is being added to the legend, it is common to pass\nthe appropriate handles directly to :func:`legend`::\n\n line_up, = plt.plot([1,2,3], label='Line 2')\n line_down, = plt.plot([3,2,1], label='Line 1')\n plt.legend(handles=[line_up, line_down])\n\nIn some cases, it is not possible to set the label of the handle, so it is\npossible to pass through the list of labels to :func:`legend`::\n\n line_up, = plt.plot([1,2,3], label='Line 2')\n line_down, = plt.plot([3,2,1], label='Line 1')\n plt.legend([line_up, line_down], ['Line Up', 'Line Down'])\n\n\n\nCreating artists specifically for adding to the legend (aka. Proxy artists)\n===========================================================================\n\nNot all handles can be turned into legend entries automatically,\nso it is often necessary to create an artist which *can*. Legend handles\ndon't have to exists on the Figure or Axes in order to be used.\n\nSuppose we wanted to create a legend which has an entry for some data which\nis represented by a red color:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\nimport matplotlib.pyplot as plt\n\nred_patch = mpatches.Patch(color='red', label='The red data')\nplt.legend(handles=[red_patch])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are many supported legend handles, instead of creating a patch of color\nwe could have created a line with a marker:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.lines as mlines\n\nblue_line = mlines.Line2D([], [], color='blue', marker='*',\n markersize=15, label='Blue stars')\nplt.legend(handles=[blue_line])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legend location\n===============\n\nThe location of the legend can be specified by the keyword argument\n*loc*. Please see the documentation at :func:`legend` for more details.\n\nThe ``bbox_to_anchor`` keyword gives a great degree of control for manual\nlegend placement. For example, if you want your axes legend located at the\nfigure's top right-hand corner instead of the axes' corner, simply specify\nthe corner's location, and the coordinate system of that location::\n\n plt.legend(bbox_to_anchor=(1, 1),\n bbox_transform=plt.gcf().transFigure)\n\nMore examples of custom legend placement:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.subplot(211)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n\n# Place a legend above this subplot, expanding itself to\n# fully use the given bounding box.\nplt.legend(bbox_to_anchor=(0., 1.02, 1., .102), loc='lower left',\n ncol=2, mode=\"expand\", borderaxespad=0.)\n\nplt.subplot(223)\nplt.plot([1, 2, 3], label=\"test1\")\nplt.plot([3, 2, 1], label=\"test2\")\n# Place a legend to the right of this smaller subplot.\nplt.legend(bbox_to_anchor=(1.05, 1), loc='upper left', borderaxespad=0.)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Multiple legends on the same Axes\n=================================\n\nSometimes it is more clear to split legend entries across multiple\nlegends. Whilst the instinctive approach to doing this might be to call\nthe :func:`legend` function multiple times, you will find that only one\nlegend ever exists on the Axes. This has been done so that it is possible\nto call :func:`legend` repeatedly to update the legend to the latest\nhandles on the Axes, so to persist old legend instances, we must add them\nmanually to the Axes:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "line1, = plt.plot([1, 2, 3], label=\"Line 1\", linestyle='--')\nline2, = plt.plot([3, 2, 1], label=\"Line 2\", linewidth=4)\n\n# Create a legend for the first line.\nfirst_legend = plt.legend(handles=[line1], loc='upper right')\n\n# Add the legend manually to the current Axes.\nax = plt.gca().add_artist(first_legend)\n\n# Create another legend for the second line.\nplt.legend(handles=[line2], loc='lower right')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Legend Handlers\n===============\n\nIn order to create legend entries, handles are given as an argument to an\nappropriate :class:`~matplotlib.legend_handler.HandlerBase` subclass.\nThe choice of handler subclass is determined by the following rules:\n\n 1. Update :func:`~matplotlib.legend.Legend.get_legend_handler_map`\n with the value in the ``handler_map`` keyword.\n 2. Check if the ``handle`` is in the newly created ``handler_map``.\n 3. Check if the type of ``handle`` is in the newly created\n ``handler_map``.\n 4. Check if any of the types in the ``handle``'s mro is in the newly\n created ``handler_map``.\n\nFor completeness, this logic is mostly implemented in\n:func:`~matplotlib.legend.Legend.get_legend_handler`.\n\nAll of this flexibility means that we have the necessary hooks to implement\ncustom handlers for our own type of legend key.\n\nThe simplest example of using custom handlers is to instantiate one of the\nexisting :class:`~matplotlib.legend_handler.HandlerBase` subclasses. For the\nsake of simplicity, let's choose :class:`matplotlib.legend_handler.HandlerLine2D`\nwhich accepts a ``numpoints`` argument (note numpoints is a keyword\non the :func:`legend` function for convenience). We can then pass the mapping\nof instance to Handler as a keyword to legend.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.legend_handler import HandlerLine2D\n\nline1, = plt.plot([3, 2, 1], marker='o', label='Line 1')\nline2, = plt.plot([1, 2, 3], marker='o', label='Line 2')\n\nplt.legend(handler_map={line1: HandlerLine2D(numpoints=4)})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "As you can see, \"Line 1\" now has 4 marker points, where \"Line 2\" has 2 (the\ndefault). Try the above code, only change the map's key from ``line1`` to\n``type(line1)``. Notice how now both :class:`~matplotlib.lines.Line2D` instances\nget 4 markers.\n\nAlong with handlers for complex plot types such as errorbars, stem plots\nand histograms, the default ``handler_map`` has a special ``tuple`` handler\n(:class:`~matplotlib.legend_handler.HandlerTuple`) which simply plots\nthe handles on top of one another for each item in the given tuple. The\nfollowing example demonstrates combining two legend keys on top of one another:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from numpy.random import randn\n\nz = randn(10)\n\nred_dot, = plt.plot(z, \"ro\", markersize=15)\n# Put a white cross over some of the data.\nwhite_cross, = plt.plot(z[:5], \"w+\", markeredgewidth=3, markersize=15)\n\nplt.legend([red_dot, (red_dot, white_cross)], [\"Attr A\", \"Attr A+B\"])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The :class:`~matplotlib.legend_handler.HandlerTuple` class can also be used to\nassign several legend keys to the same entry:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.legend_handler import HandlerLine2D, HandlerTuple\n\np1, = plt.plot([1, 2.5, 3], 'r-d')\np2, = plt.plot([3, 2, 1], 'k-o')\n\nl = plt.legend([(p1, p2)], ['Two keys'], numpoints=1,\n handler_map={tuple: HandlerTuple(ndivide=None)})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Implementing a custom legend handler\n------------------------------------\n\nA custom handler can be implemented to turn any handle into a legend key (handles\ndon't necessarily need to be matplotlib artists).\nThe handler must implement a \"legend_artist\" method which returns a\nsingle artist for the legend to use. Signature details about the \"legend_artist\"\nare documented at :meth:`~matplotlib.legend_handler.HandlerBase.legend_artist`.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.patches as mpatches\n\n\nclass AnyObject(object):\n pass\n\n\nclass AnyObjectHandler(object):\n def legend_artist(self, legend, orig_handle, fontsize, handlebox):\n x0, y0 = handlebox.xdescent, handlebox.ydescent\n width, height = handlebox.width, handlebox.height\n patch = mpatches.Rectangle([x0, y0], width, height, facecolor='red',\n edgecolor='black', hatch='xx', lw=3,\n transform=handlebox.get_transform())\n handlebox.add_artist(patch)\n return patch\n\n\nplt.legend([AnyObject()], ['My first handler'],\n handler_map={AnyObject: AnyObjectHandler()})" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Alternatively, had we wanted to globally accept ``AnyObject`` instances without\nneeding to manually set the ``handler_map`` keyword all the time, we could have\nregistered the new handler with::\n\n from matplotlib.legend import Legend\n Legend.update_default_handler_map({AnyObject: AnyObjectHandler()})\n\nWhilst the power here is clear, remember that there are already many handlers\nimplemented and what you want to achieve may already be easily possible with\nexisting classes. For example, to produce elliptical legend keys, rather than\nrectangular ones:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.legend_handler import HandlerPatch\n\n\nclass HandlerEllipse(HandlerPatch):\n def create_artists(self, legend, orig_handle,\n xdescent, ydescent, width, height, fontsize, trans):\n center = 0.5 * width - 0.5 * xdescent, 0.5 * height - 0.5 * ydescent\n p = mpatches.Ellipse(xy=center, width=width + xdescent,\n height=height + ydescent)\n self.update_prop(p, orig_handle, legend)\n p.set_transform(trans)\n return [p]\n\n\nc = mpatches.Circle((0.5, 0.5), 0.25, facecolor=\"green\",\n edgecolor=\"red\", linewidth=3)\nplt.gca().add_patch(c)\n\nplt.legend([c], [\"An ellipse, not a rectangle\"],\n handler_map={mpatches.Circle: HandlerEllipse()})" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f9ce54590944086853ba6889ae92e7a5/rectangle_selector.py b/_downloads/f9ce54590944086853ba6889ae92e7a5/rectangle_selector.py deleted file mode 120000 index f8ad78202c5..00000000000 --- a/_downloads/f9ce54590944086853ba6889ae92e7a5/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f9ce54590944086853ba6889ae92e7a5/rectangle_selector.py \ No newline at end of file diff --git a/_downloads/f9d62df7ae564980ff0e91b68e3d838f/demo_axis_direction.py b/_downloads/f9d62df7ae564980ff0e91b68e3d838f/demo_axis_direction.py deleted file mode 120000 index 7cbca8c6358..00000000000 --- a/_downloads/f9d62df7ae564980ff0e91b68e3d838f/demo_axis_direction.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f9d62df7ae564980ff0e91b68e3d838f/demo_axis_direction.py \ No newline at end of file diff --git a/_downloads/f9e4fe8dd65707f82961c6b970c9e79a/axis_direction_demo_step02.ipynb b/_downloads/f9e4fe8dd65707f82961c6b970c9e79a/axis_direction_demo_step02.ipynb deleted file mode 120000 index d245cd1e293..00000000000 --- a/_downloads/f9e4fe8dd65707f82961c6b970c9e79a/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f9e4fe8dd65707f82961c6b970c9e79a/axis_direction_demo_step02.ipynb \ No newline at end of file diff --git a/_downloads/f9ee6bf26a5a0ffbb1faf9680e9abd88/usetex_baseline_test.ipynb b/_downloads/f9ee6bf26a5a0ffbb1faf9680e9abd88/usetex_baseline_test.ipynb deleted file mode 100644 index 17a81fa5651..00000000000 --- a/_downloads/f9ee6bf26a5a0ffbb1faf9680e9abd88/usetex_baseline_test.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Usetex Baseline Test\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.axes as maxes\n\nfrom matplotlib import rcParams\nrcParams['text.usetex'] = True\n\n\nclass Axes(maxes.Axes):\n \"\"\"\n A hackish way to simultaneously draw texts w/ usetex=True and\n usetex=False in the same figure. It does not work in the ps backend.\n \"\"\"\n\n def __init__(self, *args, usetex=False, preview=False, **kwargs):\n self.usetex = usetex\n self.preview = preview\n super().__init__(*args, **kwargs)\n\n def draw(self, renderer):\n with plt.rc_context({\"text.usetex\": self.usetex,\n \"text.latex.preview\": self.preview}):\n super().draw(renderer)\n\n\nsubplot = maxes.subplot_class_factory(Axes)\n\n\ndef test_window_extent(ax, usetex, preview):\n\n va = \"baseline\"\n ax.xaxis.set_visible(False)\n ax.yaxis.set_visible(False)\n\n text_kw = dict(va=va,\n size=50,\n bbox=dict(pad=0., ec=\"k\", fc=\"none\"))\n\n test_strings = [\"lg\", r\"$\\frac{1}{2}\\pi$\",\n r\"$p^{3^A}$\", r\"$p_{3_2}$\"]\n\n ax.axvline(0, color=\"r\")\n\n for i, s in enumerate(test_strings):\n\n ax.axhline(i, color=\"r\")\n ax.text(0., 3 - i, s, **text_kw)\n\n ax.set_xlim(-0.1, 1.1)\n ax.set_ylim(-.8, 3.9)\n\n ax.set_title(\"usetex=%s\\npreview=%s\" % (str(usetex), str(preview)))\n\n\nfig = plt.figure(figsize=(2 * 3, 6.5))\n\nfor i, usetex, preview in [[0, False, False],\n [1, True, False],\n [2, True, True]]:\n ax = subplot(fig, 1, 3, i + 1, usetex=usetex, preview=preview)\n fig.add_subplot(ax)\n fig.subplots_adjust(top=0.85)\n\n test_window_extent(ax, usetex=usetex, preview=preview)\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/f9f897999295250346bf5517a1c7dddb/tight_layout_guide.py b/_downloads/f9f897999295250346bf5517a1c7dddb/tight_layout_guide.py deleted file mode 120000 index 311d61567f4..00000000000 --- a/_downloads/f9f897999295250346bf5517a1c7dddb/tight_layout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/f9f897999295250346bf5517a1c7dddb/tight_layout_guide.py \ No newline at end of file diff --git a/_downloads/f9fb027f432e5d6b39b222ac6c2d929b/marker_reference.ipynb b/_downloads/f9fb027f432e5d6b39b222ac6c2d929b/marker_reference.ipynb deleted file mode 120000 index 8178e411ebc..00000000000 --- a/_downloads/f9fb027f432e5d6b39b222ac6c2d929b/marker_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/f9fb027f432e5d6b39b222ac6c2d929b/marker_reference.ipynb \ No newline at end of file diff --git a/_downloads/f9fc1ad519947e730bb5a9677a5fb61a/pgf_preamble_sgskip.ipynb b/_downloads/f9fc1ad519947e730bb5a9677a5fb61a/pgf_preamble_sgskip.ipynb deleted file mode 120000 index 8ba8578f11f..00000000000 --- a/_downloads/f9fc1ad519947e730bb5a9677a5fb61a/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/f9fc1ad519947e730bb5a9677a5fb61a/pgf_preamble_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fa000789f3b44b43a4d94753d44cf637/dfrac_demo.py b/_downloads/fa000789f3b44b43a4d94753d44cf637/dfrac_demo.py deleted file mode 100644 index 4ffd7767c5b..00000000000 --- a/_downloads/fa000789f3b44b43a4d94753d44cf637/dfrac_demo.py +++ /dev/null @@ -1,28 +0,0 @@ -r""" -========================================= -The difference between \\dfrac and \\frac -========================================= - -In this example, the differences between the \\dfrac and \\frac TeX macros are -illustrated; in particular, the difference between display style and text style -fractions when using Mathtex. - -.. versionadded:: 2.1 - -.. note:: - To use \\dfrac with the LaTeX engine (text.usetex : True), you need to - import the amsmath package with the text.latex.preamble rc, which is - an unsupported feature; therefore, it is probably a better idea to just - use the \\displaystyle option before the \\frac macro to get this behavior - with the LaTeX engine. - -""" - -import matplotlib.pyplot as plt - -fig = plt.figure(figsize=(5.25, 0.75)) -fig.text(0.5, 0.3, r'\dfrac: $\dfrac{a}{b}$', - horizontalalignment='center', verticalalignment='center') -fig.text(0.5, 0.7, r'\frac: $\frac{a}{b}$', - horizontalalignment='center', verticalalignment='center') -plt.show() diff --git a/_downloads/fa0e2ef4dbdee45b1a722df954316eb9/contourf3d.ipynb b/_downloads/fa0e2ef4dbdee45b1a722df954316eb9/contourf3d.ipynb deleted file mode 100644 index 0c5846a4f30..00000000000 --- a/_downloads/fa0e2ef4dbdee45b1a722df954316eb9/contourf3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Filled contours\n\n\ncontourf differs from contour in that it creates filled contours, ie.\na discrete number of colours are used to shade the domain.\n\nThis is like a contourf plot in 2D except that the shaded region corresponding\nto the level c is graphed on the plane z=c.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\ncset = ax.contourf(X, Y, Z, cmap=cm.coolwarm)\n\nax.clabel(cset, fontsize=9, inline=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fa1078d02c39714e47415f75ea082b26/boxplot.ipynb b/_downloads/fa1078d02c39714e47415f75ea082b26/boxplot.ipynb deleted file mode 100644 index 799d3c3be5b..00000000000 --- a/_downloads/fa1078d02c39714e47415f75ea082b26/boxplot.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Artist customization in box plots\n\n\nThis example demonstrates how to use the various kwargs\nto fully customize box plots. The first figure demonstrates\nhow to remove and add individual components (note that the\nmean is the only value not shown by default). The second\nfigure demonstrates how the styles of the artists can\nbe customized. It also demonstrates how to set the limit\nof the whiskers to specific percentiles (lower right axes)\n\nA good general reference on boxplots and their history can be found\nhere: http://vita.had.co.nz/papers/boxplots.pdf\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# fake data\nnp.random.seed(19680801)\ndata = np.random.lognormal(size=(37, 4), mean=1.5, sigma=1.75)\nlabels = list('ABCD')\nfs = 10 # fontsize" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to toggle the display of different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True)\naxes[0, 0].boxplot(data, labels=labels)\naxes[0, 0].set_title('Default', fontsize=fs)\n\naxes[0, 1].boxplot(data, labels=labels, showmeans=True)\naxes[0, 1].set_title('showmeans=True', fontsize=fs)\n\naxes[0, 2].boxplot(data, labels=labels, showmeans=True, meanline=True)\naxes[0, 2].set_title('showmeans=True,\\nmeanline=True', fontsize=fs)\n\naxes[1, 0].boxplot(data, labels=labels, showbox=False, showcaps=False)\ntufte_title = 'Tufte Style \\n(showbox=False,\\nshowcaps=False)'\naxes[1, 0].set_title(tufte_title, fontsize=fs)\n\naxes[1, 1].boxplot(data, labels=labels, notch=True, bootstrap=10000)\naxes[1, 1].set_title('notch=True,\\nbootstrap=10000', fontsize=fs)\n\naxes[1, 2].boxplot(data, labels=labels, showfliers=False)\naxes[1, 2].set_title('showfliers=False', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Demonstrate how to customize the display different elements:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod')\nflierprops = dict(marker='o', markerfacecolor='green', markersize=12,\n linestyle='none')\nmedianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick')\nmeanpointprops = dict(marker='D', markeredgecolor='black',\n markerfacecolor='firebrick')\nmeanlineprops = dict(linestyle='--', linewidth=2.5, color='purple')\n\nfig, axes = plt.subplots(nrows=2, ncols=3, figsize=(6, 6), sharey=True)\naxes[0, 0].boxplot(data, boxprops=boxprops)\naxes[0, 0].set_title('Custom boxprops', fontsize=fs)\n\naxes[0, 1].boxplot(data, flierprops=flierprops, medianprops=medianprops)\naxes[0, 1].set_title('Custom medianprops\\nand flierprops', fontsize=fs)\n\naxes[0, 2].boxplot(data, whis='range')\naxes[0, 2].set_title('whis=\"range\"', fontsize=fs)\n\naxes[1, 0].boxplot(data, meanprops=meanpointprops, meanline=False,\n showmeans=True)\naxes[1, 0].set_title('Custom mean\\nas point', fontsize=fs)\n\naxes[1, 1].boxplot(data, meanprops=meanlineprops, meanline=True,\n showmeans=True)\naxes[1, 1].set_title('Custom mean\\nas line', fontsize=fs)\n\naxes[1, 2].boxplot(data, whis=[15, 85])\naxes[1, 2].set_title('whis=[15, 85]\\n#percentiles', fontsize=fs)\n\nfor ax in axes.flat:\n ax.set_yscale('log')\n ax.set_yticklabels([])\n\nfig.suptitle(\"I never said they'd be pretty\")\nfig.subplots_adjust(hspace=0.4)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fa121d01decc3b9092fe9501c1be2aef/mri_demo.ipynb b/_downloads/fa121d01decc3b9092fe9501c1be2aef/mri_demo.ipynb deleted file mode 120000 index 5bb5ba9ee75..00000000000 --- a/_downloads/fa121d01decc3b9092fe9501c1be2aef/mri_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa121d01decc3b9092fe9501c1be2aef/mri_demo.ipynb \ No newline at end of file diff --git a/_downloads/fa2352939bda156497bc3c3350d1172d/embedding_in_wx4_sgskip.ipynb b/_downloads/fa2352939bda156497bc3c3350d1172d/embedding_in_wx4_sgskip.ipynb deleted file mode 120000 index 8cec4f5f87f..00000000000 --- a/_downloads/fa2352939bda156497bc3c3350d1172d/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa2352939bda156497bc3c3350d1172d/embedding_in_wx4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fa27a9428c6ad246a1a0b7a0a8c22e9d/whats_new_99_mplot3d.ipynb b/_downloads/fa27a9428c6ad246a1a0b7a0a8c22e9d/whats_new_99_mplot3d.ipynb deleted file mode 120000 index b7193a4f911..00000000000 --- a/_downloads/fa27a9428c6ad246a1a0b7a0a8c22e9d/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fa27a9428c6ad246a1a0b7a0a8c22e9d/whats_new_99_mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/fa29df917260d80c94602defdee634f0/simple_annotate01.py b/_downloads/fa29df917260d80c94602defdee634f0/simple_annotate01.py deleted file mode 120000 index cabfdf67719..00000000000 --- a/_downloads/fa29df917260d80c94602defdee634f0/simple_annotate01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa29df917260d80c94602defdee634f0/simple_annotate01.py \ No newline at end of file diff --git a/_downloads/fa2e2df1666c376511e25ba972f9b06c/custom_scale.py b/_downloads/fa2e2df1666c376511e25ba972f9b06c/custom_scale.py deleted file mode 120000 index 4c3ebf1a8e3..00000000000 --- a/_downloads/fa2e2df1666c376511e25ba972f9b06c/custom_scale.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fa2e2df1666c376511e25ba972f9b06c/custom_scale.py \ No newline at end of file diff --git a/_downloads/fa4365bfec8e63d6a0c6f831c78d2808/contour3d.py b/_downloads/fa4365bfec8e63d6a0c6f831c78d2808/contour3d.py deleted file mode 120000 index 5ab49f8f572..00000000000 --- a/_downloads/fa4365bfec8e63d6a0c6f831c78d2808/contour3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa4365bfec8e63d6a0c6f831c78d2808/contour3d.py \ No newline at end of file diff --git a/_downloads/fa56faa93a5747e5882e4d611b081ef4/viewlims.ipynb b/_downloads/fa56faa93a5747e5882e4d611b081ef4/viewlims.ipynb deleted file mode 120000 index 9f6e7328dd6..00000000000 --- a/_downloads/fa56faa93a5747e5882e4d611b081ef4/viewlims.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fa56faa93a5747e5882e4d611b081ef4/viewlims.ipynb \ No newline at end of file diff --git a/_downloads/fa57a6cf742ffd8c2656c92fef0afefe/anchored_box01.py b/_downloads/fa57a6cf742ffd8c2656c92fef0afefe/anchored_box01.py deleted file mode 120000 index 9726336f895..00000000000 --- a/_downloads/fa57a6cf742ffd8c2656c92fef0afefe/anchored_box01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa57a6cf742ffd8c2656c92fef0afefe/anchored_box01.py \ No newline at end of file diff --git a/_downloads/fa597203cd318545351f4d46f23ea1d0/pipong.ipynb b/_downloads/fa597203cd318545351f4d46f23ea1d0/pipong.ipynb deleted file mode 100644 index cb65256413e..00000000000 --- a/_downloads/fa597203cd318545351f4d46f23ea1d0/pipong.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pipong\n\n\nA Matplotlib based game of Pong illustrating one way to write interactive\nanimation which are easily ported to multiple backends\npipong.py was written by Paul Ivanov \n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom numpy.random import randn, randint\nfrom matplotlib.font_manager import FontProperties\n\ninstructions = \"\"\"\nPlayer A: Player B:\n 'e' up 'i'\n 'd' down 'k'\n\npress 't' -- close these instructions\n (animation will be much faster)\npress 'a' -- add a puck\npress 'A' -- remove a puck\npress '1' -- slow down all pucks\npress '2' -- speed up all pucks\npress '3' -- slow down distractors\npress '4' -- speed up distractors\npress ' ' -- reset the first puck\npress 'n' -- toggle distractors on/off\npress 'g' -- toggle the game on/off\n\n \"\"\"\n\n\nclass Pad(object):\n def __init__(self, disp, x, y, type='l'):\n self.disp = disp\n self.x = x\n self.y = y\n self.w = .3\n self.score = 0\n self.xoffset = 0.3\n self.yoffset = 0.1\n if type == 'r':\n self.xoffset *= -1.0\n\n if type == 'l' or type == 'r':\n self.signx = -1.0\n self.signy = 1.0\n else:\n self.signx = 1.0\n self.signy = -1.0\n\n def contains(self, loc):\n return self.disp.get_bbox().contains(loc.x, loc.y)\n\n\nclass Puck(object):\n def __init__(self, disp, pad, field):\n self.vmax = .2\n self.disp = disp\n self.field = field\n self._reset(pad)\n\n def _reset(self, pad):\n self.x = pad.x + pad.xoffset\n if pad.y < 0:\n self.y = pad.y + pad.yoffset\n else:\n self.y = pad.y - pad.yoffset\n self.vx = pad.x - self.x\n self.vy = pad.y + pad.w/2 - self.y\n self._speedlimit()\n self._slower()\n self._slower()\n\n def update(self, pads):\n self.x += self.vx\n self.y += self.vy\n for pad in pads:\n if pad.contains(self):\n self.vx *= 1.2 * pad.signx\n self.vy *= 1.2 * pad.signy\n fudge = .001\n # probably cleaner with something like...\n if self.x < fudge:\n pads[1].score += 1\n self._reset(pads[0])\n return True\n if self.x > 7 - fudge:\n pads[0].score += 1\n self._reset(pads[1])\n return True\n if self.y < -1 + fudge or self.y > 1 - fudge:\n self.vy *= -1.0\n # add some randomness, just to make it interesting\n self.vy -= (randn()/300.0 + 1/300.0) * np.sign(self.vy)\n self._speedlimit()\n return False\n\n def _slower(self):\n self.vx /= 5.0\n self.vy /= 5.0\n\n def _faster(self):\n self.vx *= 5.0\n self.vy *= 5.0\n\n def _speedlimit(self):\n if self.vx > self.vmax:\n self.vx = self.vmax\n if self.vx < -self.vmax:\n self.vx = -self.vmax\n\n if self.vy > self.vmax:\n self.vy = self.vmax\n if self.vy < -self.vmax:\n self.vy = -self.vmax\n\n\nclass Game(object):\n def __init__(self, ax):\n # create the initial line\n self.ax = ax\n ax.set_ylim([-1, 1])\n ax.set_xlim([0, 7])\n padAx = 0\n padBx = .50\n padAy = padBy = .30\n padBx += 6.3\n\n # pads\n pA, = self.ax.barh(padAy, .2,\n height=.3, color='k', alpha=.5, edgecolor='b',\n lw=2, label=\"Player B\",\n animated=True)\n pB, = self.ax.barh(padBy, .2,\n height=.3, left=padBx, color='k', alpha=.5,\n edgecolor='r', lw=2, label=\"Player A\",\n animated=True)\n\n # distractors\n self.x = np.arange(0, 2.22*np.pi, 0.01)\n self.line, = self.ax.plot(self.x, np.sin(self.x), \"r\",\n animated=True, lw=4)\n self.line2, = self.ax.plot(self.x, np.cos(self.x), \"g\",\n animated=True, lw=4)\n self.line3, = self.ax.plot(self.x, np.cos(self.x), \"g\",\n animated=True, lw=4)\n self.line4, = self.ax.plot(self.x, np.cos(self.x), \"r\",\n animated=True, lw=4)\n\n # center line\n self.centerline, = self.ax.plot([3.5, 3.5], [1, -1], 'k',\n alpha=.5, animated=True, lw=8)\n\n # puck (s)\n self.puckdisp = self.ax.scatter([1], [1], label='_nolegend_',\n s=200, c='g',\n alpha=.9, animated=True)\n\n self.canvas = self.ax.figure.canvas\n self.background = None\n self.cnt = 0\n self.distract = True\n self.res = 100.0\n self.on = False\n self.inst = True # show instructions from the beginning\n self.background = None\n self.pads = []\n self.pads.append(Pad(pA, padAx, padAy))\n self.pads.append(Pad(pB, padBx, padBy, 'r'))\n self.pucks = []\n self.i = self.ax.annotate(instructions, (.5, 0.5),\n name='monospace',\n verticalalignment='center',\n horizontalalignment='center',\n multialignment='left',\n textcoords='axes fraction',\n animated=False)\n self.canvas.mpl_connect('key_press_event', self.key_press)\n\n def draw(self, evt):\n draw_artist = self.ax.draw_artist\n if self.background is None:\n self.background = self.canvas.copy_from_bbox(self.ax.bbox)\n\n # restore the clean slate background\n self.canvas.restore_region(self.background)\n\n # show the distractors\n if self.distract:\n self.line.set_ydata(np.sin(self.x + self.cnt/self.res))\n self.line2.set_ydata(np.cos(self.x - self.cnt/self.res))\n self.line3.set_ydata(np.tan(self.x + self.cnt/self.res))\n self.line4.set_ydata(np.tan(self.x - self.cnt/self.res))\n draw_artist(self.line)\n draw_artist(self.line2)\n draw_artist(self.line3)\n draw_artist(self.line4)\n\n # pucks and pads\n if self.on:\n self.ax.draw_artist(self.centerline)\n for pad in self.pads:\n pad.disp.set_y(pad.y)\n pad.disp.set_x(pad.x)\n self.ax.draw_artist(pad.disp)\n\n for puck in self.pucks:\n if puck.update(self.pads):\n # we only get here if someone scored\n self.pads[0].disp.set_label(\n \" \" + str(self.pads[0].score))\n self.pads[1].disp.set_label(\n \" \" + str(self.pads[1].score))\n self.ax.legend(loc='center', framealpha=.2,\n facecolor='0.5',\n prop=FontProperties(size='xx-large',\n weight='bold'))\n\n self.background = None\n self.ax.figure.canvas.draw_idle()\n return True\n puck.disp.set_offsets([[puck.x, puck.y]])\n self.ax.draw_artist(puck.disp)\n\n # just redraw the axes rectangle\n self.canvas.blit(self.ax.bbox)\n self.canvas.flush_events()\n if self.cnt == 50000:\n # just so we don't get carried away\n print(\"...and you've been playing for too long!!!\")\n plt.close()\n\n self.cnt += 1\n return True\n\n def key_press(self, event):\n if event.key == '3':\n self.res *= 5.0\n if event.key == '4':\n self.res /= 5.0\n\n if event.key == 'e':\n self.pads[0].y += .1\n if self.pads[0].y > 1 - .3:\n self.pads[0].y = 1 - .3\n if event.key == 'd':\n self.pads[0].y -= .1\n if self.pads[0].y < -1:\n self.pads[0].y = -1\n\n if event.key == 'i':\n self.pads[1].y += .1\n if self.pads[1].y > 1 - .3:\n self.pads[1].y = 1 - .3\n if event.key == 'k':\n self.pads[1].y -= .1\n if self.pads[1].y < -1:\n self.pads[1].y = -1\n\n if event.key == 'a':\n self.pucks.append(Puck(self.puckdisp,\n self.pads[randint(2)],\n self.ax.bbox))\n if event.key == 'A' and len(self.pucks):\n self.pucks.pop()\n if event.key == ' ' and len(self.pucks):\n self.pucks[0]._reset(self.pads[randint(2)])\n if event.key == '1':\n for p in self.pucks:\n p._slower()\n if event.key == '2':\n for p in self.pucks:\n p._faster()\n\n if event.key == 'n':\n self.distract = not self.distract\n\n if event.key == 'g':\n self.on = not self.on\n if event.key == 't':\n self.inst = not self.inst\n self.i.set_visible(not self.i.get_visible())\n self.background = None\n self.canvas.draw_idle()\n if event.key == 'q':\n plt.close()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fa59c83cfba2a75b43179b15abf32f3f/step_demo.ipynb b/_downloads/fa59c83cfba2a75b43179b15abf32f3f/step_demo.ipynb deleted file mode 120000 index 421ef4a2cbc..00000000000 --- a/_downloads/fa59c83cfba2a75b43179b15abf32f3f/step_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa59c83cfba2a75b43179b15abf32f3f/step_demo.ipynb \ No newline at end of file diff --git a/_downloads/fa5d748d02bc06452bc77840b0816e99/invert_axes.py b/_downloads/fa5d748d02bc06452bc77840b0816e99/invert_axes.py deleted file mode 100644 index 15ec55d430b..00000000000 --- a/_downloads/fa5d748d02bc06452bc77840b0816e99/invert_axes.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -=========== -Invert Axes -=========== - -You can use decreasing axes by flipping the normal order of the axis -limits -""" - -import matplotlib.pyplot as plt -import numpy as np - -t = np.arange(0.01, 5.0, 0.01) -s = np.exp(-t) - -fig, ax = plt.subplots() - -ax.plot(t, s) -ax.set_xlim(5, 0) # decreasing time -ax.set_xlabel('decreasing time (s)') -ax.set_ylabel('voltage (mV)') -ax.set_title('Should be growing...') -ax.grid(True) - -plt.show() diff --git a/_downloads/fa65dee959900d0613f2295fbb955b30/simple_rgb.ipynb b/_downloads/fa65dee959900d0613f2295fbb955b30/simple_rgb.ipynb deleted file mode 120000 index 1ba487409a7..00000000000 --- a/_downloads/fa65dee959900d0613f2295fbb955b30/simple_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fa65dee959900d0613f2295fbb955b30/simple_rgb.ipynb \ No newline at end of file diff --git a/_downloads/fa68b07001256b9e00d670f64c98bddc/axhspan_demo.ipynb b/_downloads/fa68b07001256b9e00d670f64c98bddc/axhspan_demo.ipynb deleted file mode 120000 index 6c54d1ebd09..00000000000 --- a/_downloads/fa68b07001256b9e00d670f64c98bddc/axhspan_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fa68b07001256b9e00d670f64c98bddc/axhspan_demo.ipynb \ No newline at end of file diff --git a/_downloads/fa71f55e4487735b9a8a406692749527/trisurf3d_2.ipynb b/_downloads/fa71f55e4487735b9a8a406692749527/trisurf3d_2.ipynb deleted file mode 120000 index ad30d53bb07..00000000000 --- a/_downloads/fa71f55e4487735b9a8a406692749527/trisurf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fa71f55e4487735b9a8a406692749527/trisurf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/fa7a9bd47053c2e7c5929010d0a59ecb/centered_ticklabels.ipynb b/_downloads/fa7a9bd47053c2e7c5929010d0a59ecb/centered_ticklabels.ipynb deleted file mode 120000 index 269f32453ac..00000000000 --- a/_downloads/fa7a9bd47053c2e7c5929010d0a59ecb/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_downloads/fa7a9bd47053c2e7c5929010d0a59ecb/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/fa874d90a5a8d1dd1cc361af012303e4/ftface_props.ipynb b/_downloads/fa874d90a5a8d1dd1cc361af012303e4/ftface_props.ipynb deleted file mode 100644 index 22e4776e6ce..00000000000 --- a/_downloads/fa874d90a5a8d1dd1cc361af012303e4/ftface_props.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Font properties\n\n\nThis example lists the attributes of an `FT2Font` object, which describe global\nfont properties. For individual character metrics, use the `Glyph` object, as\nreturned by `load_char`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os\n\nimport matplotlib\nimport matplotlib.ft2font as ft\n\n\nfont = ft.FT2Font(\n # Use a font shipped with Matplotlib.\n os.path.join(matplotlib.get_data_path(),\n 'fonts/ttf/DejaVuSans-Oblique.ttf'))\n\nprint('Num faces :', font.num_faces) # number of faces in file\nprint('Num glyphs :', font.num_glyphs) # number of glyphs in the face\nprint('Family name :', font.family_name) # face family name\nprint('Style name :', font.style_name) # face style name\nprint('PS name :', font.postscript_name) # the postscript name\nprint('Num fixed :', font.num_fixed_sizes) # number of embedded bitmap in face\n\n# the following are only available if face.scalable\nif font.scalable:\n # the face global bounding box (xmin, ymin, xmax, ymax)\n print('Bbox :', font.bbox)\n # number of font units covered by the EM\n print('EM :', font.units_per_EM)\n # the ascender in 26.6 units\n print('Ascender :', font.ascender)\n # the descender in 26.6 units\n print('Descender :', font.descender)\n # the height in 26.6 units\n print('Height :', font.height)\n # maximum horizontal cursor advance\n print('Max adv width :', font.max_advance_width)\n # same for vertical layout\n print('Max adv height :', font.max_advance_height)\n # vertical position of the underline bar\n print('Underline pos :', font.underline_position)\n # vertical thickness of the underline\n print('Underline thickness :', font.underline_thickness)\n\nfor style in ('Italic',\n 'Bold',\n 'Scalable',\n 'Fixed sizes',\n 'Fixed width',\n 'SFNT',\n 'Horizontal',\n 'Vertical',\n 'Kerning',\n 'Fast glyphs',\n 'Multiple masters',\n 'Glyph names',\n 'External stream'):\n bitpos = getattr(ft, style.replace(' ', '_').upper()) - 1\n print('%-17s:' % style, bool(font.style_flags & (1 << bitpos)))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fa8adaa5d95dc3ad429333e4699e66bb/patheffects_guide.py b/_downloads/fa8adaa5d95dc3ad429333e4699e66bb/patheffects_guide.py deleted file mode 120000 index 96b91c5448c..00000000000 --- a/_downloads/fa8adaa5d95dc3ad429333e4699e66bb/patheffects_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa8adaa5d95dc3ad429333e4699e66bb/patheffects_guide.py \ No newline at end of file diff --git a/_downloads/fa951c63df072ff71a28dd0738de4b91/integral.py b/_downloads/fa951c63df072ff71a28dd0738de4b91/integral.py deleted file mode 100644 index f5ffbe05edf..00000000000 --- a/_downloads/fa951c63df072ff71a28dd0738de4b91/integral.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -================================== -Integral as the area under a curve -================================== - -Although this is a simple example, it demonstrates some important tweaks: - - * A simple line plot with custom color and line width. - * A shaded region created using a Polygon patch. - * A text label with mathtext rendering. - * figtext calls to label the x- and y-axes. - * Use of axis spines to hide the top and right spines. - * Custom tick placement and labels. -""" -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.patches import Polygon - - -def func(x): - return (x - 3) * (x - 5) * (x - 7) + 85 - - -a, b = 2, 9 # integral limits -x = np.linspace(0, 10) -y = func(x) - -fig, ax = plt.subplots() -ax.plot(x, y, 'r', linewidth=2) -ax.set_ylim(bottom=0) - -# Make the shaded region -ix = np.linspace(a, b) -iy = func(ix) -verts = [(a, 0), *zip(ix, iy), (b, 0)] -poly = Polygon(verts, facecolor='0.9', edgecolor='0.5') -ax.add_patch(poly) - -ax.text(0.5 * (a + b), 30, r"$\int_a^b f(x)\mathrm{d}x$", - horizontalalignment='center', fontsize=20) - -fig.text(0.9, 0.05, '$x$') -fig.text(0.1, 0.9, '$y$') - -ax.spines['right'].set_visible(False) -ax.spines['top'].set_visible(False) -ax.xaxis.set_ticks_position('bottom') - -ax.set_xticks((a, b)) -ax.set_xticklabels(('$a$', '$b$')) -ax.set_yticks([]) - -plt.show() diff --git a/_downloads/fa98e802319e88ee825b6325b97f7f6c/demo_constrained_layout.ipynb b/_downloads/fa98e802319e88ee825b6325b97f7f6c/demo_constrained_layout.ipynb deleted file mode 120000 index 665a157b8d0..00000000000 --- a/_downloads/fa98e802319e88ee825b6325b97f7f6c/demo_constrained_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fa98e802319e88ee825b6325b97f7f6c/demo_constrained_layout.ipynb \ No newline at end of file diff --git a/_downloads/fa9baf6fc793fa4e29e5d3e435f72bff/nan_test.py b/_downloads/fa9baf6fc793fa4e29e5d3e435f72bff/nan_test.py deleted file mode 120000 index 54c3b6c90fd..00000000000 --- a/_downloads/fa9baf6fc793fa4e29e5d3e435f72bff/nan_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fa9baf6fc793fa4e29e5d3e435f72bff/nan_test.py \ No newline at end of file diff --git a/_downloads/faa17c829b7058a4005d4857e4ed0b4f/image_zcoord.py b/_downloads/faa17c829b7058a4005d4857e4ed0b4f/image_zcoord.py deleted file mode 120000 index 2443970aa4d..00000000000 --- a/_downloads/faa17c829b7058a4005d4857e4ed0b4f/image_zcoord.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/faa17c829b7058a4005d4857e4ed0b4f/image_zcoord.py \ No newline at end of file diff --git a/_downloads/faa2d1285f1400acb79c9b14b649abc3/skewt.py b/_downloads/faa2d1285f1400acb79c9b14b649abc3/skewt.py deleted file mode 100644 index 1f601876df3..00000000000 --- a/_downloads/faa2d1285f1400acb79c9b14b649abc3/skewt.py +++ /dev/null @@ -1,279 +0,0 @@ -""" -=========================================================== -SkewT-logP diagram: using transforms and custom projections -=========================================================== - -This serves as an intensive exercise of Matplotlib's transforms and custom -projection API. This example produces a so-called SkewT-logP diagram, which is -a common plot in meteorology for displaying vertical profiles of temperature. -As far as Matplotlib is concerned, the complexity comes from having X and Y -axes that are not orthogonal. This is handled by including a skew component to -the basic Axes transforms. Additional complexity comes in handling the fact -that the upper and lower X-axes have different data ranges, which necessitates -a bunch of custom classes for ticks, spines, and axis to handle this. -""" - -from contextlib import ExitStack - -from matplotlib.axes import Axes -import matplotlib.transforms as transforms -import matplotlib.axis as maxis -import matplotlib.spines as mspines -from matplotlib.projections import register_projection - - -# The sole purpose of this class is to look at the upper, lower, or total -# interval as appropriate and see what parts of the tick to draw, if any. -class SkewXTick(maxis.XTick): - def draw(self, renderer): - # When adding the callbacks with `stack.callback`, we fetch the current - # visibility state of the artist with `get_visible`; the ExitStack will - # restore these states (`set_visible`) at the end of the block (after - # the draw). - with ExitStack() as stack: - for artist in [self.gridline, self.tick1line, self.tick2line, - self.label1, self.label2]: - stack.callback(artist.set_visible, artist.get_visible()) - needs_lower = transforms.interval_contains( - self.axes.lower_xlim, self.get_loc()) - needs_upper = transforms.interval_contains( - self.axes.upper_xlim, self.get_loc()) - self.tick1line.set_visible( - self.tick1line.get_visible() and needs_lower) - self.label1.set_visible( - self.label1.get_visible() and needs_lower) - self.tick2line.set_visible( - self.tick2line.get_visible() and needs_upper) - self.label2.set_visible( - self.label2.get_visible() and needs_upper) - super(SkewXTick, self).draw(renderer) - - def get_view_interval(self): - return self.axes.xaxis.get_view_interval() - - -# This class exists to provide two separate sets of intervals to the tick, -# as well as create instances of the custom tick -class SkewXAxis(maxis.XAxis): - def _get_tick(self, major): - return SkewXTick(self.axes, None, '', major=major) - - def get_view_interval(self): - return self.axes.upper_xlim[0], self.axes.lower_xlim[1] - - -# This class exists to calculate the separate data range of the -# upper X-axis and draw the spine there. It also provides this range -# to the X-axis artist for ticking and gridlines -class SkewSpine(mspines.Spine): - def _adjust_location(self): - pts = self._path.vertices - if self.spine_type == 'top': - pts[:, 0] = self.axes.upper_xlim - else: - pts[:, 0] = self.axes.lower_xlim - - -# This class handles registration of the skew-xaxes as a projection as well -# as setting up the appropriate transformations. It also overrides standard -# spines and axes instances as appropriate. -class SkewXAxes(Axes): - # The projection must specify a name. This will be used be the - # user to select the projection, i.e. ``subplot(111, - # projection='skewx')``. - name = 'skewx' - - def _init_axis(self): - # Taken from Axes and modified to use our modified X-axis - self.xaxis = SkewXAxis(self) - self.spines['top'].register_axis(self.xaxis) - self.spines['bottom'].register_axis(self.xaxis) - self.yaxis = maxis.YAxis(self) - self.spines['left'].register_axis(self.yaxis) - self.spines['right'].register_axis(self.yaxis) - - def _gen_axes_spines(self): - spines = {'top': SkewSpine.linear_spine(self, 'top'), - 'bottom': mspines.Spine.linear_spine(self, 'bottom'), - 'left': mspines.Spine.linear_spine(self, 'left'), - 'right': mspines.Spine.linear_spine(self, 'right')} - return spines - - def _set_lim_and_transforms(self): - """ - This is called once when the plot is created to set up all the - transforms for the data, text and grids. - """ - rot = 30 - - # Get the standard transform setup from the Axes base class - super()._set_lim_and_transforms() - - # Need to put the skew in the middle, after the scale and limits, - # but before the transAxes. This way, the skew is done in Axes - # coordinates thus performing the transform around the proper origin - # We keep the pre-transAxes transform around for other users, like the - # spines for finding bounds - self.transDataToAxes = ( - self.transScale - + self.transLimits - + transforms.Affine2D().skew_deg(rot, 0) - ) - # Create the full transform from Data to Pixels - self.transData = self.transDataToAxes + self.transAxes - - # Blended transforms like this need to have the skewing applied using - # both axes, in axes coords like before. - self._xaxis_transform = ( - transforms.blended_transform_factory( - self.transScale + self.transLimits, - transforms.IdentityTransform()) - + transforms.Affine2D().skew_deg(rot, 0) - + self.transAxes - ) - - @property - def lower_xlim(self): - return self.axes.viewLim.intervalx - - @property - def upper_xlim(self): - pts = [[0., 1.], [1., 1.]] - return self.transDataToAxes.inverted().transform(pts)[:, 0] - - -# Now register the projection with matplotlib so the user can select it. -register_projection(SkewXAxes) - -if __name__ == '__main__': - # Now make a simple example using the custom projection. - from io import StringIO - from matplotlib.ticker import (MultipleLocator, NullFormatter, - ScalarFormatter) - import matplotlib.pyplot as plt - import numpy as np - - # Some example data. - data_txt = ''' - 978.0 345 7.8 0.8 - 971.0 404 7.2 0.2 - 946.7 610 5.2 -1.8 - 944.0 634 5.0 -2.0 - 925.0 798 3.4 -2.6 - 911.8 914 2.4 -2.7 - 906.0 966 2.0 -2.7 - 877.9 1219 0.4 -3.2 - 850.0 1478 -1.3 -3.7 - 841.0 1563 -1.9 -3.8 - 823.0 1736 1.4 -0.7 - 813.6 1829 4.5 1.2 - 809.0 1875 6.0 2.2 - 798.0 1988 7.4 -0.6 - 791.0 2061 7.6 -1.4 - 783.9 2134 7.0 -1.7 - 755.1 2438 4.8 -3.1 - 727.3 2743 2.5 -4.4 - 700.5 3048 0.2 -5.8 - 700.0 3054 0.2 -5.8 - 698.0 3077 0.0 -6.0 - 687.0 3204 -0.1 -7.1 - 648.9 3658 -3.2 -10.9 - 631.0 3881 -4.7 -12.7 - 600.7 4267 -6.4 -16.7 - 592.0 4381 -6.9 -17.9 - 577.6 4572 -8.1 -19.6 - 555.3 4877 -10.0 -22.3 - 536.0 5151 -11.7 -24.7 - 533.8 5182 -11.9 -25.0 - 500.0 5680 -15.9 -29.9 - 472.3 6096 -19.7 -33.4 - 453.0 6401 -22.4 -36.0 - 400.0 7310 -30.7 -43.7 - 399.7 7315 -30.8 -43.8 - 387.0 7543 -33.1 -46.1 - 382.7 7620 -33.8 -46.8 - 342.0 8398 -40.5 -53.5 - 320.4 8839 -43.7 -56.7 - 318.0 8890 -44.1 -57.1 - 310.0 9060 -44.7 -58.7 - 306.1 9144 -43.9 -57.9 - 305.0 9169 -43.7 -57.7 - 300.0 9280 -43.5 -57.5 - 292.0 9462 -43.7 -58.7 - 276.0 9838 -47.1 -62.1 - 264.0 10132 -47.5 -62.5 - 251.0 10464 -49.7 -64.7 - 250.0 10490 -49.7 -64.7 - 247.0 10569 -48.7 -63.7 - 244.0 10649 -48.9 -63.9 - 243.3 10668 -48.9 -63.9 - 220.0 11327 -50.3 -65.3 - 212.0 11569 -50.5 -65.5 - 210.0 11631 -49.7 -64.7 - 200.0 11950 -49.9 -64.9 - 194.0 12149 -49.9 -64.9 - 183.0 12529 -51.3 -66.3 - 164.0 13233 -55.3 -68.3 - 152.0 13716 -56.5 -69.5 - 150.0 13800 -57.1 -70.1 - 136.0 14414 -60.5 -72.5 - 132.0 14600 -60.1 -72.1 - 131.4 14630 -60.2 -72.2 - 128.0 14792 -60.9 -72.9 - 125.0 14939 -60.1 -72.1 - 119.0 15240 -62.2 -73.8 - 112.0 15616 -64.9 -75.9 - 108.0 15838 -64.1 -75.1 - 107.8 15850 -64.1 -75.1 - 105.0 16010 -64.7 -75.7 - 103.0 16128 -62.9 -73.9 - 100.0 16310 -62.5 -73.5 - ''' - - # Parse the data - sound_data = StringIO(data_txt) - p, h, T, Td = np.loadtxt(sound_data, unpack=True) - - # Create a new figure. The dimensions here give a good aspect ratio - fig = plt.figure(figsize=(6.5875, 6.2125)) - ax = fig.add_subplot(111, projection='skewx') - - plt.grid(True) - - # Plot the data using normal plotting functions, in this case using - # log scaling in Y, as dictated by the typical meteorological plot - ax.semilogy(T, p, color='C3') - ax.semilogy(Td, p, color='C2') - - # An example of a slanted line at constant X - l = ax.axvline(0, color='C0') - - # Disables the log-formatting that comes with semilogy - ax.yaxis.set_major_formatter(ScalarFormatter()) - ax.yaxis.set_minor_formatter(NullFormatter()) - ax.set_yticks(np.linspace(100, 1000, 10)) - ax.set_ylim(1050, 100) - - ax.xaxis.set_major_locator(MultipleLocator(10)) - ax.set_xlim(-50, 50) - - plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.transforms -matplotlib.spines -matplotlib.spines.Spine -matplotlib.spines.Spine.register_axis -matplotlib.projections -matplotlib.projections.register_projection diff --git a/_downloads/faa507e7c87c72109d38e6eaffdc42e0/scatter3d.py b/_downloads/faa507e7c87c72109d38e6eaffdc42e0/scatter3d.py deleted file mode 120000 index 24c5055dd2b..00000000000 --- a/_downloads/faa507e7c87c72109d38e6eaffdc42e0/scatter3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/faa507e7c87c72109d38e6eaffdc42e0/scatter3d.py \ No newline at end of file diff --git a/_downloads/faa6ba08837e7e64b875eecd5c9c7323/masked_demo.ipynb b/_downloads/faa6ba08837e7e64b875eecd5c9c7323/masked_demo.ipynb deleted file mode 120000 index 7e5ea88207c..00000000000 --- a/_downloads/faa6ba08837e7e64b875eecd5c9c7323/masked_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/faa6ba08837e7e64b875eecd5c9c7323/masked_demo.ipynb \ No newline at end of file diff --git a/_downloads/faaad8255e80f6ea9d88479745223855/embedding_in_gtk3_panzoom_sgskip.ipynb b/_downloads/faaad8255e80f6ea9d88479745223855/embedding_in_gtk3_panzoom_sgskip.ipynb deleted file mode 120000 index f34cb6a1d70..00000000000 --- a/_downloads/faaad8255e80f6ea9d88479745223855/embedding_in_gtk3_panzoom_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/faaad8255e80f6ea9d88479745223855/embedding_in_gtk3_panzoom_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fad42193c38ea44cbbffeb9d4ff458ca/centered_ticklabels.py b/_downloads/fad42193c38ea44cbbffeb9d4ff458ca/centered_ticklabels.py deleted file mode 120000 index d8ffa6601b7..00000000000 --- a/_downloads/fad42193c38ea44cbbffeb9d4ff458ca/centered_ticklabels.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fad42193c38ea44cbbffeb9d4ff458ca/centered_ticklabels.py \ No newline at end of file diff --git a/_downloads/fad6b154bf9cffbaaac152da639e6889/xcorr_acorr_demo.py b/_downloads/fad6b154bf9cffbaaac152da639e6889/xcorr_acorr_demo.py deleted file mode 120000 index 63128f60ac3..00000000000 --- a/_downloads/fad6b154bf9cffbaaac152da639e6889/xcorr_acorr_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fad6b154bf9cffbaaac152da639e6889/xcorr_acorr_demo.py \ No newline at end of file diff --git a/_downloads/fadfe1b6ef5c163d14fa2067b0f2d5b6/boxplot_demo_pyplot.py b/_downloads/fadfe1b6ef5c163d14fa2067b0f2d5b6/boxplot_demo_pyplot.py deleted file mode 120000 index a1b1454894f..00000000000 --- a/_downloads/fadfe1b6ef5c163d14fa2067b0f2d5b6/boxplot_demo_pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fadfe1b6ef5c163d14fa2067b0f2d5b6/boxplot_demo_pyplot.py \ No newline at end of file diff --git a/_downloads/fae76b6fea17d7357a9094befa4ccda7/fig_axes_customize_simple.py b/_downloads/fae76b6fea17d7357a9094befa4ccda7/fig_axes_customize_simple.py deleted file mode 120000 index 8798454a419..00000000000 --- a/_downloads/fae76b6fea17d7357a9094befa4ccda7/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fae76b6fea17d7357a9094befa4ccda7/fig_axes_customize_simple.py \ No newline at end of file diff --git a/_downloads/faeeabcc610bc164777fbc1df2a6001c/pick_event_demo.ipynb b/_downloads/faeeabcc610bc164777fbc1df2a6001c/pick_event_demo.ipynb deleted file mode 100644 index 0690cee5fb2..00000000000 --- a/_downloads/faeeabcc610bc164777fbc1df2a6001c/pick_event_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pick Event Demo\n\n\n\nYou can enable picking by setting the \"picker\" property of an artist\n(for example, a matplotlib Line2D, Text, Patch, Polygon, AxesImage,\netc...)\n\nThere are a variety of meanings of the picker property\n\n None - picking is disabled for this artist (default)\n\n boolean - if True then picking will be enabled and the\n artist will fire a pick event if the mouse event is over\n the artist\n\n float - if picker is a number it is interpreted as an\n epsilon tolerance in points and the artist will fire\n off an event if it's data is within epsilon of the mouse\n event. For some artists like lines and patch collections,\n the artist may provide additional data to the pick event\n that is generated, for example, the indices of the data within\n epsilon of the pick event\n\n function - if picker is callable, it is a user supplied\n function which determines whether the artist is hit by the\n mouse event.\n\n hit, props = picker(artist, mouseevent)\n\n to determine the hit test. If the mouse event is over the\n artist, return hit=True and props is a dictionary of properties\n you want added to the PickEvent attributes\n\n\nAfter you have enabled an artist for picking by setting the \"picker\"\nproperty, you need to connect to the figure canvas pick_event to get\npick callbacks on mouse press events. For example,\n\n def pick_handler(event):\n mouseevent = event.mouseevent\n artist = event.artist\n # now do something with this...\n\n\nThe pick event (matplotlib.backend_bases.PickEvent) which is passed to\nyour callback is always fired with two attributes:\n\n mouseevent - the mouse event that generate the pick event. The\n mouse event in turn has attributes like x and y (the coordinates in\n display space, such as pixels from left, bottom) and xdata, ydata (the\n coords in data space). Additionally, you can get information about\n which buttons were pressed, which keys were pressed, which Axes\n the mouse is over, etc. See matplotlib.backend_bases.MouseEvent\n for details.\n\n artist - the matplotlib.artist that generated the pick event.\n\nAdditionally, certain artists like Line2D and PatchCollection may\nattach additional meta data like the indices into the data that meet\nthe picker criteria (for example, all the points in the line that are within\nthe specified epsilon tolerance)\n\nThe examples below illustrate each of these methods.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.lines import Line2D\nfrom matplotlib.patches import Rectangle\nfrom matplotlib.text import Text\nfrom matplotlib.image import AxesImage\nimport numpy as np\nfrom numpy.random import rand\n\n\ndef pick_simple():\n # simple picking, lines, rectangles and text\n fig, (ax1, ax2) = plt.subplots(2, 1)\n ax1.set_title('click on points, rectangles or text', picker=True)\n ax1.set_ylabel('ylabel', picker=True, bbox=dict(facecolor='red'))\n line, = ax1.plot(rand(100), 'o', picker=5) # 5 points tolerance\n\n # pick the rectangle\n bars = ax2.bar(range(10), rand(10), picker=True)\n for label in ax2.get_xticklabels(): # make the xtick labels pickable\n label.set_picker(True)\n\n def onpick1(event):\n if isinstance(event.artist, Line2D):\n thisline = event.artist\n xdata = thisline.get_xdata()\n ydata = thisline.get_ydata()\n ind = event.ind\n print('onpick1 line:', np.column_stack([xdata[ind], ydata[ind]]))\n elif isinstance(event.artist, Rectangle):\n patch = event.artist\n print('onpick1 patch:', patch.get_path())\n elif isinstance(event.artist, Text):\n text = event.artist\n print('onpick1 text:', text.get_text())\n\n fig.canvas.mpl_connect('pick_event', onpick1)\n\n\ndef pick_custom_hit():\n # picking with a custom hit test function\n # you can define custom pickers by setting picker to a callable\n # function. The function has the signature\n #\n # hit, props = func(artist, mouseevent)\n #\n # to determine the hit test. if the mouse event is over the artist,\n # return hit=True and props is a dictionary of\n # properties you want added to the PickEvent attributes\n\n def line_picker(line, mouseevent):\n \"\"\"\n find the points within a certain distance from the mouseclick in\n data coords and attach some extra attributes, pickx and picky\n which are the data points that were picked\n \"\"\"\n if mouseevent.xdata is None:\n return False, dict()\n xdata = line.get_xdata()\n ydata = line.get_ydata()\n maxd = 0.05\n d = np.sqrt(\n (xdata - mouseevent.xdata)**2 + (ydata - mouseevent.ydata)**2)\n\n ind, = np.nonzero(d <= maxd)\n if len(ind):\n pickx = xdata[ind]\n picky = ydata[ind]\n props = dict(ind=ind, pickx=pickx, picky=picky)\n return True, props\n else:\n return False, dict()\n\n def onpick2(event):\n print('onpick2 line:', event.pickx, event.picky)\n\n fig, ax = plt.subplots()\n ax.set_title('custom picker for line data')\n line, = ax.plot(rand(100), rand(100), 'o', picker=line_picker)\n fig.canvas.mpl_connect('pick_event', onpick2)\n\n\ndef pick_scatter_plot():\n # picking on a scatter plot (matplotlib.collections.RegularPolyCollection)\n\n x, y, c, s = rand(4, 100)\n\n def onpick3(event):\n ind = event.ind\n print('onpick3 scatter:', ind, x[ind], y[ind])\n\n fig, ax = plt.subplots()\n col = ax.scatter(x, y, 100*s, c, picker=True)\n #fig.savefig('pscoll.eps')\n fig.canvas.mpl_connect('pick_event', onpick3)\n\n\ndef pick_image():\n # picking images (matplotlib.image.AxesImage)\n fig, ax = plt.subplots()\n ax.imshow(rand(10, 5), extent=(1, 2, 1, 2), picker=True)\n ax.imshow(rand(5, 10), extent=(3, 4, 1, 2), picker=True)\n ax.imshow(rand(20, 25), extent=(1, 2, 3, 4), picker=True)\n ax.imshow(rand(30, 12), extent=(3, 4, 3, 4), picker=True)\n ax.set(xlim=(0, 5), ylim=(0, 5))\n\n def onpick4(event):\n artist = event.artist\n if isinstance(artist, AxesImage):\n im = artist\n A = im.get_array()\n print('onpick4 image', A.shape)\n\n fig.canvas.mpl_connect('pick_event', onpick4)\n\n\nif __name__ == '__main__':\n pick_simple()\n pick_custom_hit()\n pick_scatter_plot()\n pick_image()\n plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/faf2a2b50cf908caaa37f20d03f18cac/topographic_hillshading.ipynb b/_downloads/faf2a2b50cf908caaa37f20d03f18cac/topographic_hillshading.ipynb deleted file mode 100644 index 6bf4c6a0e0a..00000000000 --- a/_downloads/faf2a2b50cf908caaa37f20d03f18cac/topographic_hillshading.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Topographic hillshading\n\n\nDemonstrates the visual effect of varying blend mode and vertical exaggeration\non \"hillshaded\" plots.\n\nNote that the \"overlay\" and \"soft\" blend modes work well for complex surfaces\nsuch as this example, while the default \"hsv\" blend mode works best for smooth\nsurfaces such as many mathematical functions.\n\nIn most cases, hillshading is used purely for visual purposes, and *dx*/*dy*\ncan be safely ignored. In that case, you can tweak *vert_exag* (vertical\nexaggeration) by trial and error to give the desired visual effect. However,\nthis example demonstrates how to use the *dx* and *dy* kwargs to ensure that\nthe *vert_exag* parameter is the true vertical exaggeration.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.cbook import get_sample_data\nfrom matplotlib.colors import LightSource\n\n\nwith np.load(get_sample_data('jacksboro_fault_dem.npz')) as dem:\n z = dem['elevation']\n\n #-- Optional dx and dy for accurate vertical exaggeration ----------------\n # If you need topographically accurate vertical exaggeration, or you don't\n # want to guess at what *vert_exag* should be, you'll need to specify the\n # cellsize of the grid (i.e. the *dx* and *dy* parameters). Otherwise, any\n # *vert_exag* value you specify will be relative to the grid spacing of\n # your input data (in other words, *dx* and *dy* default to 1.0, and\n # *vert_exag* is calculated relative to those parameters). Similarly, *dx*\n # and *dy* are assumed to be in the same units as your input z-values.\n # Therefore, we'll need to convert the given dx and dy from decimal degrees\n # to meters.\n dx, dy = dem['dx'], dem['dy']\n dy = 111200 * dy\n dx = 111200 * dx * np.cos(np.radians(dem['ymin']))\n #-------------------------------------------------------------------------\n\n# Shade from the northwest, with the sun 45 degrees from horizontal\nls = LightSource(azdeg=315, altdeg=45)\ncmap = plt.cm.gist_earth\n\nfig, axes = plt.subplots(nrows=4, ncols=3, figsize=(8, 9))\nplt.setp(axes.flat, xticks=[], yticks=[])\n\n# Vary vertical exaggeration and blend mode and plot all combinations\nfor col, ve in zip(axes.T, [0.1, 1, 10]):\n # Show the hillshade intensity image in the first row\n col[0].imshow(ls.hillshade(z, vert_exag=ve, dx=dx, dy=dy), cmap='gray')\n\n # Place hillshaded plots with different blend modes in the rest of the rows\n for ax, mode in zip(col[1:], ['hsv', 'overlay', 'soft']):\n rgb = ls.shade(z, cmap=cmap, blend_mode=mode,\n vert_exag=ve, dx=dx, dy=dy)\n ax.imshow(rgb)\n\n# Label rows and columns\nfor ax, ve in zip(axes[0], [0.1, 1, 10]):\n ax.set_title('{0}'.format(ve), size=18)\nfor ax, mode in zip(axes[:, 0], ['Hillshade', 'hsv', 'overlay', 'soft']):\n ax.set_ylabel(mode, size=18)\n\n# Group labels...\naxes[0, 1].annotate('Vertical Exaggeration', (0.5, 1), xytext=(0, 30),\n textcoords='offset points', xycoords='axes fraction',\n ha='center', va='bottom', size=20)\naxes[2, 0].annotate('Blend Mode', (0, 0.5), xytext=(-30, 0),\n textcoords='offset points', xycoords='axes fraction',\n ha='right', va='center', size=20, rotation=90)\nfig.subplots_adjust(bottom=0.05, right=0.95)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/faf326e9f0e66ea4a16689a783882475/contour3d_2.ipynb b/_downloads/faf326e9f0e66ea4a16689a783882475/contour3d_2.ipynb deleted file mode 100644 index f5ec61ce40c..00000000000 --- a/_downloads/faf326e9f0e66ea4a16689a783882475/contour3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n============================================================================\nDemonstrates plotting contour (level) curves in 3D using the extend3d option\n============================================================================\n\nThis modification of the contour3d_demo example uses extend3d=True to\nextend the curves vertically into 'ribbons'.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import axes3d\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nX, Y, Z = axes3d.get_test_data(0.05)\n\ncset = ax.contour(X, Y, Z, extend3d=True, cmap=cm.coolwarm)\n\nax.clabel(cset, fontsize=9, inline=1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/faf51c77709eff9c7516f83ec477db8a/legend_demo.py b/_downloads/faf51c77709eff9c7516f83ec477db8a/legend_demo.py deleted file mode 120000 index 28920f3a2b8..00000000000 --- a/_downloads/faf51c77709eff9c7516f83ec477db8a/legend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/faf51c77709eff9c7516f83ec477db8a/legend_demo.py \ No newline at end of file diff --git a/_downloads/faf8e160f798244d825e7c9f3224c9c9/simple_axisline.ipynb b/_downloads/faf8e160f798244d825e7c9f3224c9c9/simple_axisline.ipynb deleted file mode 120000 index 6e03926abcc..00000000000 --- a/_downloads/faf8e160f798244d825e7c9f3224c9c9/simple_axisline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/faf8e160f798244d825e7c9f3224c9c9/simple_axisline.ipynb \ No newline at end of file diff --git a/_downloads/fafc156126618345cab29678893444c5/text_intro.ipynb b/_downloads/fafc156126618345cab29678893444c5/text_intro.ipynb deleted file mode 120000 index 3af572326b6..00000000000 --- a/_downloads/fafc156126618345cab29678893444c5/text_intro.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fafc156126618345cab29678893444c5/text_intro.ipynb \ No newline at end of file diff --git a/_downloads/fafc89275bfe8b6dbf64c46d2e302635/hinton_demo.ipynb b/_downloads/fafc89275bfe8b6dbf64c46d2e302635/hinton_demo.ipynb deleted file mode 120000 index 82f45d279fb..00000000000 --- a/_downloads/fafc89275bfe8b6dbf64c46d2e302635/hinton_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fafc89275bfe8b6dbf64c46d2e302635/hinton_demo.ipynb \ No newline at end of file diff --git a/_downloads/fahrenheit_celsius_scales.ipynb b/_downloads/fahrenheit_celsius_scales.ipynb deleted file mode 120000 index 0a5e64026c2..00000000000 --- a/_downloads/fahrenheit_celsius_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fahrenheit_celsius_scales.ipynb \ No newline at end of file diff --git a/_downloads/fahrenheit_celsius_scales.py b/_downloads/fahrenheit_celsius_scales.py deleted file mode 120000 index e9234035bc1..00000000000 --- a/_downloads/fahrenheit_celsius_scales.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fahrenheit_celsius_scales.py \ No newline at end of file diff --git a/_downloads/fancyarrow_demo.ipynb b/_downloads/fancyarrow_demo.ipynb deleted file mode 120000 index 46003cdc0e4..00000000000 --- a/_downloads/fancyarrow_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fancyarrow_demo.ipynb \ No newline at end of file diff --git a/_downloads/fancyarrow_demo.py b/_downloads/fancyarrow_demo.py deleted file mode 120000 index d1081780c6d..00000000000 --- a/_downloads/fancyarrow_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fancyarrow_demo.py \ No newline at end of file diff --git a/_downloads/fancybox_demo.ipynb b/_downloads/fancybox_demo.ipynb deleted file mode 120000 index aed2df28e9d..00000000000 --- a/_downloads/fancybox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fancybox_demo.ipynb \ No newline at end of file diff --git a/_downloads/fancybox_demo.py b/_downloads/fancybox_demo.py deleted file mode 120000 index d17ea273613..00000000000 --- a/_downloads/fancybox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fancybox_demo.py \ No newline at end of file diff --git a/_downloads/fancytextbox_demo.ipynb b/_downloads/fancytextbox_demo.ipynb deleted file mode 120000 index 0659dc0a872..00000000000 --- a/_downloads/fancytextbox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fancytextbox_demo.ipynb \ No newline at end of file diff --git a/_downloads/fancytextbox_demo.py b/_downloads/fancytextbox_demo.py deleted file mode 120000 index e021e3ade5c..00000000000 --- a/_downloads/fancytextbox_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fancytextbox_demo.py \ No newline at end of file diff --git a/_downloads/fb02b0436e1bfcf1edbd44266f53752f/arrow_guide.ipynb b/_downloads/fb02b0436e1bfcf1edbd44266f53752f/arrow_guide.ipynb deleted file mode 120000 index 64930e67472..00000000000 --- a/_downloads/fb02b0436e1bfcf1edbd44266f53752f/arrow_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fb02b0436e1bfcf1edbd44266f53752f/arrow_guide.ipynb \ No newline at end of file diff --git a/_downloads/fb0df531667683e544a33682f885adad/demo_edge_colorbar.py b/_downloads/fb0df531667683e544a33682f885adad/demo_edge_colorbar.py deleted file mode 100644 index 313790a9edf..00000000000 --- a/_downloads/fb0df531667683e544a33682f885adad/demo_edge_colorbar.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -================== -Demo Edge Colorbar -================== - -This example shows how to use one common colorbar for each row or column -of an image grid. -""" -import matplotlib.pyplot as plt -from mpl_toolkits.axes_grid1 import AxesGrid - - -def get_demo_image(): - import numpy as np - from matplotlib.cbook import get_sample_data - f = get_sample_data("axes_grid/bivariate_normal.npy", asfileobj=False) - z = np.load(f) - # z is a numpy array of 15x15 - return z, (-3, 4, -4, 3) - - -def demo_bottom_cbar(fig): - """ - A grid of 2x2 images with a colorbar for each column. - """ - grid = AxesGrid(fig, 121, # similar to subplot(121) - nrows_ncols=(2, 2), - axes_pad=0.10, - share_all=True, - label_mode="1", - cbar_location="bottom", - cbar_mode="edge", - cbar_pad=0.25, - cbar_size="15%", - direction="column" - ) - - Z, extent = get_demo_image() - cmaps = [plt.get_cmap("autumn"), plt.get_cmap("summer")] - for i in range(4): - im = grid[i].imshow(Z, extent=extent, interpolation="nearest", - cmap=cmaps[i//2]) - if i % 2: - cbar = grid.cbar_axes[i//2].colorbar(im) - - for cax in grid.cbar_axes: - cax.toggle_label(True) - cax.axis[cax.orientation].set_label("Bar") - - # This affects all axes as share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -def demo_right_cbar(fig): - """ - A grid of 2x2 images. Each row has its own colorbar. - """ - grid = AxesGrid(fig, 122, # similar to subplot(122) - nrows_ncols=(2, 2), - axes_pad=0.10, - label_mode="1", - share_all=True, - cbar_location="right", - cbar_mode="edge", - cbar_size="7%", - cbar_pad="2%", - ) - Z, extent = get_demo_image() - cmaps = [plt.get_cmap("spring"), plt.get_cmap("winter")] - for i in range(4): - im = grid[i].imshow(Z, extent=extent, interpolation="nearest", - cmap=cmaps[i//2]) - if i % 2: - grid.cbar_axes[i//2].colorbar(im) - - for cax in grid.cbar_axes: - cax.toggle_label(True) - cax.axis[cax.orientation].set_label('Foo') - - # This affects all axes because we set share_all = True. - grid.axes_llc.set_xticks([-2, 0, 2]) - grid.axes_llc.set_yticks([-2, 0, 2]) - - -fig = plt.figure(figsize=(5.5, 2.5)) -fig.subplots_adjust(left=0.05, right=0.93) - -demo_bottom_cbar(fig) -demo_right_cbar(fig) - -plt.show() diff --git a/_downloads/fb11685634ffbc8f9d6719149d4cbea7/axis_direction_demo_step03.ipynb b/_downloads/fb11685634ffbc8f9d6719149d4cbea7/axis_direction_demo_step03.ipynb deleted file mode 120000 index aa678aa294a..00000000000 --- a/_downloads/fb11685634ffbc8f9d6719149d4cbea7/axis_direction_demo_step03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fb11685634ffbc8f9d6719149d4cbea7/axis_direction_demo_step03.ipynb \ No newline at end of file diff --git a/_downloads/fb151d9a661676c8974a45cfce6d74f7/pylab_with_gtk3_sgskip.ipynb b/_downloads/fb151d9a661676c8974a45cfce6d74f7/pylab_with_gtk3_sgskip.ipynb deleted file mode 120000 index b07f0ff04f0..00000000000 --- a/_downloads/fb151d9a661676c8974a45cfce6d74f7/pylab_with_gtk3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fb151d9a661676c8974a45cfce6d74f7/pylab_with_gtk3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fb1c93e7e864312877b76a252f713a31/custom_legends.ipynb b/_downloads/fb1c93e7e864312877b76a252f713a31/custom_legends.ipynb deleted file mode 100644 index fcabe189958..00000000000 --- a/_downloads/fb1c93e7e864312877b76a252f713a31/custom_legends.ipynb +++ /dev/null @@ -1,90 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Composing Custom Legends\n\n\nComposing custom legends piece-by-piece.\n\n

Note

For more information on creating and customizing legends, see the following\n pages:\n\n * :doc:`/tutorials/intermediate/legend_guide`\n * :doc:`/gallery/text_labels_and_annotations/legend_demo`

\n\nSometimes you don't want a legend that is explicitly tied to data that\nyou have plotted. For example, say you have plotted 10 lines, but don't\nwant a legend item to show up for each one. If you simply plot the lines\nand call ``ax.legend()``, you will get the following:\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# sphinx_gallery_thumbnail_number = 2\nfrom matplotlib import rcParams, cycler\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nN = 10\ndata = [np.logspace(0, 1, 100) + np.random.randn(100) + ii for ii in range(N)]\ndata = np.array(data).T\ncmap = plt.cm.coolwarm\nrcParams['axes.prop_cycle'] = cycler(color=cmap(np.linspace(0, 1, N)))\n\nfig, ax = plt.subplots()\nlines = ax.plot(data)\nax.legend(lines)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that one legend item per line was created.\nIn this case, we can compose a legend using Matplotlib objects that aren't\nexplicitly tied to the data that was plotted. For example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.lines import Line2D\ncustom_lines = [Line2D([0], [0], color=cmap(0.), lw=4),\n Line2D([0], [0], color=cmap(.5), lw=4),\n Line2D([0], [0], color=cmap(1.), lw=4)]\n\nfig, ax = plt.subplots()\nlines = ax.plot(data)\nax.legend(custom_lines, ['Cold', 'Medium', 'Hot'])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are many other Matplotlib objects that can be used in this way. In the\ncode below we've listed a few common ones.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.patches import Patch\nfrom matplotlib.lines import Line2D\n\nlegend_elements = [Line2D([0], [0], color='b', lw=4, label='Line'),\n Line2D([0], [0], marker='o', color='w', label='Scatter',\n markerfacecolor='g', markersize=15),\n Patch(facecolor='orange', edgecolor='r',\n label='Color Patch')]\n\n# Create the figure\nfig, ax = plt.subplots()\nax.legend(handles=legend_elements, loc='center')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fb26c9898ce2d1ec5adcd36d0e32e5ef/voxels_torus.py b/_downloads/fb26c9898ce2d1ec5adcd36d0e32e5ef/voxels_torus.py deleted file mode 100644 index 3112f82792d..00000000000 --- a/_downloads/fb26c9898ce2d1ec5adcd36d0e32e5ef/voxels_torus.py +++ /dev/null @@ -1,49 +0,0 @@ -''' -======================================================= -3D voxel / volumetric plot with cylindrical coordinates -======================================================= - -Demonstrates using the ``x, y, z`` arguments of ``ax.voxels``. -''' - -import matplotlib.pyplot as plt -import matplotlib.colors -import numpy as np - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -def midpoints(x): - sl = () - for i in range(x.ndim): - x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0 - sl += np.index_exp[:] - return x - -# prepare some coordinates, and attach rgb values to each -r, theta, z = np.mgrid[0:1:11j, 0:np.pi*2:25j, -0.5:0.5:11j] -x = r*np.cos(theta) -y = r*np.sin(theta) - -rc, thetac, zc = midpoints(r), midpoints(theta), midpoints(z) - -# define a wobbly torus about [0.7, *, 0] -sphere = (rc - 0.7)**2 + (zc + 0.2*np.cos(thetac*2))**2 < 0.2**2 - -# combine the color components -hsv = np.zeros(sphere.shape + (3,)) -hsv[..., 0] = thetac / (np.pi*2) -hsv[..., 1] = rc -hsv[..., 2] = zc + 0.5 -colors = matplotlib.colors.hsv_to_rgb(hsv) - -# and plot everything -fig = plt.figure() -ax = fig.gca(projection='3d') -ax.voxels(x, y, z, sphere, - facecolors=colors, - edgecolors=np.clip(2*colors - 0.5, 0, 1), # brighter - linewidth=0.5) - -plt.show() diff --git a/_downloads/fb3fb938f48cc6624e7ea9a2e8568208/demo_axisline_style.py b/_downloads/fb3fb938f48cc6624e7ea9a2e8568208/demo_axisline_style.py deleted file mode 120000 index db888374291..00000000000 --- a/_downloads/fb3fb938f48cc6624e7ea9a2e8568208/demo_axisline_style.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fb3fb938f48cc6624e7ea9a2e8568208/demo_axisline_style.py \ No newline at end of file diff --git a/_downloads/fb498376a4f52d3e7e49f9367638b72d/mathtext_asarray.py b/_downloads/fb498376a4f52d3e7e49f9367638b72d/mathtext_asarray.py deleted file mode 120000 index 038d39f0812..00000000000 --- a/_downloads/fb498376a4f52d3e7e49f9367638b72d/mathtext_asarray.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fb498376a4f52d3e7e49f9367638b72d/mathtext_asarray.py \ No newline at end of file diff --git a/_downloads/fb629beb4a12c1901cbeb6388adbd81d/gridspec_and_subplots.ipynb b/_downloads/fb629beb4a12c1901cbeb6388adbd81d/gridspec_and_subplots.ipynb deleted file mode 120000 index e5044f29d56..00000000000 --- a/_downloads/fb629beb4a12c1901cbeb6388adbd81d/gridspec_and_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fb629beb4a12c1901cbeb6388adbd81d/gridspec_and_subplots.ipynb \ No newline at end of file diff --git a/_downloads/fb734dfe4e1f9a89983948bc32db933e/irregulardatagrid.ipynb b/_downloads/fb734dfe4e1f9a89983948bc32db933e/irregulardatagrid.ipynb deleted file mode 100644 index db3f6f59edd..00000000000 --- a/_downloads/fb734dfe4e1f9a89983948bc32db933e/irregulardatagrid.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Contour plot of irregularly spaced data\n\n\nComparison of a contour plot of irregularly spaced data interpolated\non a regular grid versus a tricontour plot for an unstructured triangular grid.\n\nSince `~.axes.Axes.contour` and `~.axes.Axes.contourf` expect the data to live\non a regular grid, plotting a contour plot of irregularly spaced data requires\ndifferent methods. The two options are:\n\n* Interpolate the data to a regular grid first. This can be done with on-board\n means, e.g. via `~.tri.LinearTriInterpolator` or using external functionality\n e.g. via `scipy.interpolate.griddata`. Then plot the interpolated data with\n the usual `~.axes.Axes.contour`.\n* Directly use `~.axes.Axes.tricontour` or `~.axes.Axes.tricontourf` which will\n perform a triangulation internally.\n\nThis example shows both methods in action.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.tri as tri\nimport numpy as np\n\nnp.random.seed(19680801)\nnpts = 200\nngridx = 100\nngridy = 200\nx = np.random.uniform(-2, 2, npts)\ny = np.random.uniform(-2, 2, npts)\nz = x * np.exp(-x**2 - y**2)\n\nfig, (ax1, ax2) = plt.subplots(nrows=2)\n\n# -----------------------\n# Interpolation on a grid\n# -----------------------\n# A contour plot of irregularly spaced data coordinates\n# via interpolation on a grid.\n\n# Create grid values first.\nxi = np.linspace(-2.1, 2.1, ngridx)\nyi = np.linspace(-2.1, 2.1, ngridy)\n\n# Perform linear interpolation of the data (x,y)\n# on a grid defined by (xi,yi)\ntriang = tri.Triangulation(x, y)\ninterpolator = tri.LinearTriInterpolator(triang, z)\nXi, Yi = np.meshgrid(xi, yi)\nzi = interpolator(Xi, Yi)\n\n# Note that scipy.interpolate provides means to interpolate data on a grid\n# as well. The following would be an alternative to the four lines above:\n#from scipy.interpolate import griddata\n#zi = griddata((x, y), z, (xi[None,:], yi[:,None]), method='linear')\n\n\nax1.contour(xi, yi, zi, levels=14, linewidths=0.5, colors='k')\ncntr1 = ax1.contourf(xi, yi, zi, levels=14, cmap=\"RdBu_r\")\n\nfig.colorbar(cntr1, ax=ax1)\nax1.plot(x, y, 'ko', ms=3)\nax1.set(xlim=(-2, 2), ylim=(-2, 2))\nax1.set_title('grid and contour (%d points, %d grid points)' %\n (npts, ngridx * ngridy))\n\n\n# ----------\n# Tricontour\n# ----------\n# Directly supply the unordered, irregularly spaced coordinates\n# to tricontour.\n\nax2.tricontour(x, y, z, levels=14, linewidths=0.5, colors='k')\ncntr2 = ax2.tricontourf(x, y, z, levels=14, cmap=\"RdBu_r\")\n\nfig.colorbar(cntr2, ax=ax2)\nax2.plot(x, y, 'ko', ms=3)\nax2.set(xlim=(-2, 2), ylim=(-2, 2))\nax2.set_title('tricontour (%d points)' % npts)\n\nplt.subplots_adjust(hspace=0.5)\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions and methods is shown in this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.contour\nmatplotlib.pyplot.contour\nmatplotlib.axes.Axes.contourf\nmatplotlib.pyplot.contourf\nmatplotlib.axes.Axes.tricontour\nmatplotlib.pyplot.tricontour\nmatplotlib.axes.Axes.tricontourf\nmatplotlib.pyplot.tricontourf" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fb74c75146177c4b4ad37e0cee639902/axhspan_demo.ipynb b/_downloads/fb74c75146177c4b4ad37e0cee639902/axhspan_demo.ipynb deleted file mode 120000 index 0bf6e0ada6d..00000000000 --- a/_downloads/fb74c75146177c4b4ad37e0cee639902/axhspan_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fb74c75146177c4b4ad37e0cee639902/axhspan_demo.ipynb \ No newline at end of file diff --git a/_downloads/fb7854f020c3c47549c6e1331492135c/pick_event_demo.ipynb b/_downloads/fb7854f020c3c47549c6e1331492135c/pick_event_demo.ipynb deleted file mode 120000 index 6b47572d66b..00000000000 --- a/_downloads/fb7854f020c3c47549c6e1331492135c/pick_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fb7854f020c3c47549c6e1331492135c/pick_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/fb89d1bf5de753b2d001e60271a8d493/spy_demos.ipynb b/_downloads/fb89d1bf5de753b2d001e60271a8d493/spy_demos.ipynb deleted file mode 120000 index 0f9588ba87e..00000000000 --- a/_downloads/fb89d1bf5de753b2d001e60271a8d493/spy_demos.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fb89d1bf5de753b2d001e60271a8d493/spy_demos.ipynb \ No newline at end of file diff --git a/_downloads/fb93506d02c6f02cf9e2b53e1c2e005f/spy_demos.ipynb b/_downloads/fb93506d02c6f02cf9e2b53e1c2e005f/spy_demos.ipynb deleted file mode 120000 index 8badecfd17d..00000000000 --- a/_downloads/fb93506d02c6f02cf9e2b53e1c2e005f/spy_demos.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fb93506d02c6f02cf9e2b53e1c2e005f/spy_demos.ipynb \ No newline at end of file diff --git a/_downloads/fb9a57c2195859e53f590b46203d7d3a/surface3d_radial.py b/_downloads/fb9a57c2195859e53f590b46203d7d3a/surface3d_radial.py deleted file mode 100644 index 521f6195330..00000000000 --- a/_downloads/fb9a57c2195859e53f590b46203d7d3a/surface3d_radial.py +++ /dev/null @@ -1,41 +0,0 @@ -''' -================================= -3D surface with polar coordinates -================================= - -Demonstrates plotting a surface defined in polar coordinates. -Uses the reversed version of the YlGnBu color map. -Also demonstrates writing axis labels with latex math mode. - -Example contributed by Armin Moser. -''' - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Create the mesh in polar coordinates and compute corresponding Z. -r = np.linspace(0, 1.25, 50) -p = np.linspace(0, 2*np.pi, 50) -R, P = np.meshgrid(r, p) -Z = ((R**2 - 1)**2) - -# Express the mesh in the cartesian system. -X, Y = R*np.cos(P), R*np.sin(P) - -# Plot the surface. -ax.plot_surface(X, Y, Z, cmap=plt.cm.YlGnBu_r) - -# Tweak the limits and add latex math labels. -ax.set_zlim(0, 1) -ax.set_xlabel(r'$\phi_\mathrm{real}$') -ax.set_ylabel(r'$\phi_\mathrm{im}$') -ax.set_zlabel(r'$V(\phi)$') - -plt.show() diff --git a/_downloads/fba15be770735fdb1b9272eaaf80104e/custom_cmap.py b/_downloads/fba15be770735fdb1b9272eaaf80104e/custom_cmap.py deleted file mode 120000 index b0f75d4d68c..00000000000 --- a/_downloads/fba15be770735fdb1b9272eaaf80104e/custom_cmap.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fba15be770735fdb1b9272eaaf80104e/custom_cmap.py \ No newline at end of file diff --git a/_downloads/fbb6555a46e3e358888ecb7c1490b0b0/demo_imagegrid_aspect.ipynb b/_downloads/fbb6555a46e3e358888ecb7c1490b0b0/demo_imagegrid_aspect.ipynb deleted file mode 120000 index 19b0b643c0c..00000000000 --- a/_downloads/fbb6555a46e3e358888ecb7c1490b0b0/demo_imagegrid_aspect.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fbb6555a46e3e358888ecb7c1490b0b0/demo_imagegrid_aspect.ipynb \ No newline at end of file diff --git a/_downloads/fbb6e9cece4e0795d669b7ba3bbb3495/contour_corner_mask.py b/_downloads/fbb6e9cece4e0795d669b7ba3bbb3495/contour_corner_mask.py deleted file mode 120000 index 8b7b54a6b0a..00000000000 --- a/_downloads/fbb6e9cece4e0795d669b7ba3bbb3495/contour_corner_mask.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fbb6e9cece4e0795d669b7ba3bbb3495/contour_corner_mask.py \ No newline at end of file diff --git a/_downloads/fbb6f1a5cc88b5f5234592131aca4a11/pgf_preamble_sgskip.ipynb b/_downloads/fbb6f1a5cc88b5f5234592131aca4a11/pgf_preamble_sgskip.ipynb deleted file mode 120000 index 285c04d3b03..00000000000 --- a/_downloads/fbb6f1a5cc88b5f5234592131aca4a11/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fbb6f1a5cc88b5f5234592131aca4a11/pgf_preamble_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fbb92c586d0bc57c228c63251c703050/demo_bboximage.ipynb b/_downloads/fbb92c586d0bc57c228c63251c703050/demo_bboximage.ipynb deleted file mode 120000 index 0290bc82c46..00000000000 --- a/_downloads/fbb92c586d0bc57c228c63251c703050/demo_bboximage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fbb92c586d0bc57c228c63251c703050/demo_bboximage.ipynb \ No newline at end of file diff --git a/_downloads/fbbd91192b2339a744d10774898f32f7/bmh.py b/_downloads/fbbd91192b2339a744d10774898f32f7/bmh.py deleted file mode 120000 index 8bf2deac4d3..00000000000 --- a/_downloads/fbbd91192b2339a744d10774898f32f7/bmh.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fbbd91192b2339a744d10774898f32f7/bmh.py \ No newline at end of file diff --git a/_downloads/fbbe23092771daa9d3883b1160121c3d/spectrum_demo.py b/_downloads/fbbe23092771daa9d3883b1160121c3d/spectrum_demo.py deleted file mode 120000 index b805a826cd9..00000000000 --- a/_downloads/fbbe23092771daa9d3883b1160121c3d/spectrum_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fbbe23092771daa9d3883b1160121c3d/spectrum_demo.py \ No newline at end of file diff --git a/_downloads/fbc9867e285b8ab4c9399fe4a3a15829/demo_ribbon_box.ipynb b/_downloads/fbc9867e285b8ab4c9399fe4a3a15829/demo_ribbon_box.ipynb deleted file mode 120000 index 96185318be7..00000000000 --- a/_downloads/fbc9867e285b8ab4c9399fe4a3a15829/demo_ribbon_box.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fbc9867e285b8ab4c9399fe4a3a15829/demo_ribbon_box.ipynb \ No newline at end of file diff --git a/_downloads/fbd1e28d7d1cbd1000379b49e7b6fd88/colormap_normalizations_lognorm.ipynb b/_downloads/fbd1e28d7d1cbd1000379b49e7b6fd88/colormap_normalizations_lognorm.ipynb deleted file mode 120000 index 8b599f0aefe..00000000000 --- a/_downloads/fbd1e28d7d1cbd1000379b49e7b6fd88/colormap_normalizations_lognorm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fbd1e28d7d1cbd1000379b49e7b6fd88/colormap_normalizations_lognorm.ipynb \ No newline at end of file diff --git a/_downloads/fbd250b5bea37379288321b3b03bcb3a/simple_axis_direction03.ipynb b/_downloads/fbd250b5bea37379288321b3b03bcb3a/simple_axis_direction03.ipynb deleted file mode 120000 index 5a3c9ae4826..00000000000 --- a/_downloads/fbd250b5bea37379288321b3b03bcb3a/simple_axis_direction03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fbd250b5bea37379288321b3b03bcb3a/simple_axis_direction03.ipynb \ No newline at end of file diff --git a/_downloads/fbd90bb57ad5b2726bf4be55a1830b02/scalarformatter.ipynb b/_downloads/fbd90bb57ad5b2726bf4be55a1830b02/scalarformatter.ipynb deleted file mode 120000 index 376be4675d1..00000000000 --- a/_downloads/fbd90bb57ad5b2726bf4be55a1830b02/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fbd90bb57ad5b2726bf4be55a1830b02/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/fbec90da3a9f58258ab121e0d2037693/axes_demo.py b/_downloads/fbec90da3a9f58258ab121e0d2037693/axes_demo.py deleted file mode 120000 index 7261819d09a..00000000000 --- a/_downloads/fbec90da3a9f58258ab121e0d2037693/axes_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fbec90da3a9f58258ab121e0d2037693/axes_demo.py \ No newline at end of file diff --git a/_downloads/fbf5a7ca699c122c274fa8a1bd5a3741/dollar_ticks.py b/_downloads/fbf5a7ca699c122c274fa8a1bd5a3741/dollar_ticks.py deleted file mode 120000 index f3a63babd04..00000000000 --- a/_downloads/fbf5a7ca699c122c274fa8a1bd5a3741/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fbf5a7ca699c122c274fa8a1bd5a3741/dollar_ticks.py \ No newline at end of file diff --git a/_downloads/fc0963918d196a2d139f28fede56f225/custom_ticker1.ipynb b/_downloads/fc0963918d196a2d139f28fede56f225/custom_ticker1.ipynb deleted file mode 100644 index cb91f992438..00000000000 --- a/_downloads/fc0963918d196a2d139f28fede56f225/custom_ticker1.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom Ticker1\n\n\nThe new ticker code was designed to explicitly support user customized\nticking. The documentation of :mod:`matplotlib.ticker` details this\nprocess. That code defines a lot of preset tickers but was primarily\ndesigned to be user extensible.\n\nIn this example a user defined function is used to format the ticks in\nmillions of dollars on the y axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from matplotlib.ticker import FuncFormatter\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nx = np.arange(4)\nmoney = [1.5e5, 2.5e6, 5.5e6, 2.0e7]\n\n\ndef millions(x, pos):\n 'The two args are the value and tick position'\n return '$%1.1fM' % (x * 1e-6)\n\n\nformatter = FuncFormatter(millions)\n\nfig, ax = plt.subplots()\nax.yaxis.set_major_formatter(formatter)\nplt.bar(x, money)\nplt.xticks(x, ('Bill', 'Fred', 'Mary', 'Sue'))\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fc1270c460d755dd965aee136c9bf0ec/demo_axes_hbox_divider.ipynb b/_downloads/fc1270c460d755dd965aee136c9bf0ec/demo_axes_hbox_divider.ipynb deleted file mode 120000 index ffc8952a03b..00000000000 --- a/_downloads/fc1270c460d755dd965aee136c9bf0ec/demo_axes_hbox_divider.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fc1270c460d755dd965aee136c9bf0ec/demo_axes_hbox_divider.ipynb \ No newline at end of file diff --git a/_downloads/fc1c2dbadf1337e3378884082f90b781/text_intro.py b/_downloads/fc1c2dbadf1337e3378884082f90b781/text_intro.py deleted file mode 120000 index 9472f2e0fc4..00000000000 --- a/_downloads/fc1c2dbadf1337e3378884082f90b781/text_intro.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc1c2dbadf1337e3378884082f90b781/text_intro.py \ No newline at end of file diff --git a/_downloads/fc2204836d92a8995f5d099484d3a5cc/pcolormesh_levels.py b/_downloads/fc2204836d92a8995f5d099484d3a5cc/pcolormesh_levels.py deleted file mode 100644 index f5554a3d464..00000000000 --- a/_downloads/fc2204836d92a8995f5d099484d3a5cc/pcolormesh_levels.py +++ /dev/null @@ -1,77 +0,0 @@ -""" -========== -pcolormesh -========== - -Shows how to combine Normalization and Colormap instances to draw -"levels" in :meth:`~.axes.Axes.pcolor`, :meth:`~.axes.Axes.pcolormesh` -and :meth:`~.axes.Axes.imshow` type plots in a similar -way to the levels keyword argument to contour/contourf. - -""" - -import matplotlib -import matplotlib.pyplot as plt -from matplotlib.colors import BoundaryNorm -from matplotlib.ticker import MaxNLocator -import numpy as np - - -# make these smaller to increase the resolution -dx, dy = 0.05, 0.05 - -# generate 2 2d grids for the x & y bounds -y, x = np.mgrid[slice(1, 5 + dy, dy), - slice(1, 5 + dx, dx)] - -z = np.sin(x)**10 + np.cos(10 + y*x) * np.cos(x) - -# x and y are bounds, so z should be the value *inside* those bounds. -# Therefore, remove the last value from the z array. -z = z[:-1, :-1] -levels = MaxNLocator(nbins=15).tick_values(z.min(), z.max()) - - -# pick the desired colormap, sensible levels, and define a normalization -# instance which takes data values and translates those into levels. -cmap = plt.get_cmap('PiYG') -norm = BoundaryNorm(levels, ncolors=cmap.N, clip=True) - -fig, (ax0, ax1) = plt.subplots(nrows=2) - -im = ax0.pcolormesh(x, y, z, cmap=cmap, norm=norm) -fig.colorbar(im, ax=ax0) -ax0.set_title('pcolormesh with levels') - - -# contours are *point* based plots, so convert our bound into point -# centers -cf = ax1.contourf(x[:-1, :-1] + dx/2., - y[:-1, :-1] + dy/2., z, levels=levels, - cmap=cmap) -fig.colorbar(cf, ax=ax1) -ax1.set_title('contourf with levels') - -# adjust spacing between subplots so `ax1` title and `ax0` tick labels -# don't overlap -fig.tight_layout() - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions and methods is shown in this example: - -matplotlib.axes.Axes.pcolormesh -matplotlib.pyplot.pcolormesh -matplotlib.axes.Axes.contourf -matplotlib.pyplot.contourf -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.BoundaryNorm -matplotlib.ticker.MaxNLocator diff --git a/_downloads/fc31dde9a3a8557169272396c6d7d0cf/embedding_in_gtk3_sgskip.py b/_downloads/fc31dde9a3a8557169272396c6d7d0cf/embedding_in_gtk3_sgskip.py deleted file mode 120000 index 484293cdbdb..00000000000 --- a/_downloads/fc31dde9a3a8557169272396c6d7d0cf/embedding_in_gtk3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fc31dde9a3a8557169272396c6d7d0cf/embedding_in_gtk3_sgskip.py \ No newline at end of file diff --git a/_downloads/fc33cc21451bdc27ecd16a16c5dd0f40/color_demo.ipynb b/_downloads/fc33cc21451bdc27ecd16a16c5dd0f40/color_demo.ipynb deleted file mode 120000 index 61d996f604c..00000000000 --- a/_downloads/fc33cc21451bdc27ecd16a16c5dd0f40/color_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc33cc21451bdc27ecd16a16c5dd0f40/color_demo.ipynb \ No newline at end of file diff --git a/_downloads/fc365a6fd57d6221728f200939a16a56/contour.py b/_downloads/fc365a6fd57d6221728f200939a16a56/contour.py deleted file mode 120000 index ef23c4b91c9..00000000000 --- a/_downloads/fc365a6fd57d6221728f200939a16a56/contour.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fc365a6fd57d6221728f200939a16a56/contour.py \ No newline at end of file diff --git a/_downloads/fc39f4e460a51c7c541be8bc673ecc60/data_browser.ipynb b/_downloads/fc39f4e460a51c7c541be8bc673ecc60/data_browser.ipynb deleted file mode 120000 index 2f904cacbc0..00000000000 --- a/_downloads/fc39f4e460a51c7c541be8bc673ecc60/data_browser.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc39f4e460a51c7c541be8bc673ecc60/data_browser.ipynb \ No newline at end of file diff --git a/_downloads/fc3c6aa591daaa4da4af02c4d70a03fa/pcolor_demo.py b/_downloads/fc3c6aa591daaa4da4af02c4d70a03fa/pcolor_demo.py deleted file mode 100644 index b66c5531657..00000000000 --- a/_downloads/fc3c6aa591daaa4da4af02c4d70a03fa/pcolor_demo.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -=========== -Pcolor Demo -=========== - -Generating images with :meth:`~.axes.Axes.pcolor`. - -Pcolor allows you to generate 2-D image-style plots. Below we will show how -to do so in Matplotlib. -""" -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.colors import LogNorm - -############################################################################### -# A simple pcolor demo -# -------------------- - -Z = np.random.rand(6, 10) - -fig, (ax0, ax1) = plt.subplots(2, 1) - -c = ax0.pcolor(Z) -ax0.set_title('default: no edges') - -c = ax1.pcolor(Z, edgecolors='k', linewidths=4) -ax1.set_title('thick edges') - -fig.tight_layout() -plt.show() - -############################################################################### -# Comparing pcolor with similar functions -# --------------------------------------- -# -# Demonstrates similarities between :meth:`~.axes.Axes.pcolor`, -# :meth:`~.axes.Axes.pcolormesh`, :meth:`~.axes.Axes.imshow` and -# :meth:`~.axes.Axes.pcolorfast` for drawing quadrilateral grids. - -# make these smaller to increase the resolution -dx, dy = 0.15, 0.05 - -# generate 2 2d grids for the x & y bounds -y, x = np.mgrid[slice(-3, 3 + dy, dy), - slice(-3, 3 + dx, dx)] -z = (1 - x / 2. + x ** 5 + y ** 3) * np.exp(-x ** 2 - y ** 2) -# x and y are bounds, so z should be the value *inside* those bounds. -# Therefore, remove the last value from the z array. -z = z[:-1, :-1] -z_min, z_max = -np.abs(z).max(), np.abs(z).max() - -fig, axs = plt.subplots(2, 2) - -ax = axs[0, 0] -c = ax.pcolor(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max) -ax.set_title('pcolor') -fig.colorbar(c, ax=ax) - -ax = axs[0, 1] -c = ax.pcolormesh(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max) -ax.set_title('pcolormesh') -fig.colorbar(c, ax=ax) - -ax = axs[1, 0] -c = ax.imshow(z, cmap='RdBu', vmin=z_min, vmax=z_max, - extent=[x.min(), x.max(), y.min(), y.max()], - interpolation='nearest', origin='lower') -ax.set_title('image (nearest)') -fig.colorbar(c, ax=ax) - -ax = axs[1, 1] -c = ax.pcolorfast(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max) -ax.set_title('pcolorfast') -fig.colorbar(c, ax=ax) - -fig.tight_layout() -plt.show() - - -############################################################################### -# Pcolor with a log scale -# ----------------------- -# -# The following shows pcolor plots with a log scale. - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -# A low hump with a spike coming out. -# Needs to have z/colour axis on a log scale so we see both hump and spike. -# linear scale only shows the spike. -Z1 = np.exp(-(X)**2 - (Y)**2) -Z2 = np.exp(-(X * 10)**2 - (Y * 10)**2) -Z = Z1 + 50 * Z2 - -fig, (ax0, ax1) = plt.subplots(2, 1) - -c = ax0.pcolor(X, Y, Z, - norm=LogNorm(vmin=Z.min(), vmax=Z.max()), cmap='PuBu_r') -fig.colorbar(c, ax=ax0) - -c = ax1.pcolor(X, Y, Z, cmap='PuBu_r') -fig.colorbar(c, ax=ax1) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.pcolor -matplotlib.pyplot.pcolor -matplotlib.axes.Axes.pcolormesh -matplotlib.pyplot.pcolormesh -matplotlib.axes.Axes.pcolorfast -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.figure.Figure.colorbar -matplotlib.pyplot.colorbar -matplotlib.colors.LogNorm diff --git a/_downloads/fc43c398e9e57a831a2f0273fd87c838/vline_hline_demo.ipynb b/_downloads/fc43c398e9e57a831a2f0273fd87c838/vline_hline_demo.ipynb deleted file mode 120000 index 2c6372502cb..00000000000 --- a/_downloads/fc43c398e9e57a831a2f0273fd87c838/vline_hline_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fc43c398e9e57a831a2f0273fd87c838/vline_hline_demo.ipynb \ No newline at end of file diff --git a/_downloads/fc442f79965c5256df734cf1acf70997/units_scatter.py b/_downloads/fc442f79965c5256df734cf1acf70997/units_scatter.py deleted file mode 120000 index effbfb62256..00000000000 --- a/_downloads/fc442f79965c5256df734cf1acf70997/units_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc442f79965c5256df734cf1acf70997/units_scatter.py \ No newline at end of file diff --git a/_downloads/fc46d8ca31d2d1733cdca1cbdfd2c7a3/trisurf3d_2.ipynb b/_downloads/fc46d8ca31d2d1733cdca1cbdfd2c7a3/trisurf3d_2.ipynb deleted file mode 100644 index d3985a2a177..00000000000 --- a/_downloads/fc46d8ca31d2d1733cdca1cbdfd2c7a3/trisurf3d_2.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# More triangular 3D surfaces\n\n\nTwo additional examples of plotting surfaces with triangular mesh.\n\nThe first demonstrates use of plot_trisurf's triangles argument, and the\nsecond sets a Triangulation object's mask and passes the object directly\nto plot_trisurf.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.tri as mtri\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\nfig = plt.figure(figsize=plt.figaspect(0.5))\n\n#============\n# First plot\n#============\n\n# Make a mesh in the space of parameterisation variables u and v\nu = np.linspace(0, 2.0 * np.pi, endpoint=True, num=50)\nv = np.linspace(-0.5, 0.5, endpoint=True, num=10)\nu, v = np.meshgrid(u, v)\nu, v = u.flatten(), v.flatten()\n\n# This is the Mobius mapping, taking a u, v pair and returning an x, y, z\n# triple\nx = (1 + 0.5 * v * np.cos(u / 2.0)) * np.cos(u)\ny = (1 + 0.5 * v * np.cos(u / 2.0)) * np.sin(u)\nz = 0.5 * v * np.sin(u / 2.0)\n\n# Triangulate parameter space to determine the triangles\ntri = mtri.Triangulation(u, v)\n\n# Plot the surface. The triangles in parameter space determine which x, y, z\n# points are connected by an edge.\nax = fig.add_subplot(1, 2, 1, projection='3d')\nax.plot_trisurf(x, y, z, triangles=tri.triangles, cmap=plt.cm.Spectral)\nax.set_zlim(-1, 1)\n\n\n#============\n# Second plot\n#============\n\n# Make parameter spaces radii and angles.\nn_angles = 36\nn_radii = 8\nmin_radius = 0.25\nradii = np.linspace(min_radius, 0.95, n_radii)\n\nangles = np.linspace(0, 2*np.pi, n_angles, endpoint=False)\nangles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)\nangles[:, 1::2] += np.pi/n_angles\n\n# Map radius, angle pairs to x, y, z points.\nx = (radii*np.cos(angles)).flatten()\ny = (radii*np.sin(angles)).flatten()\nz = (np.cos(radii)*np.cos(3*angles)).flatten()\n\n# Create the Triangulation; no triangles so Delaunay triangulation created.\ntriang = mtri.Triangulation(x, y)\n\n# Mask off unwanted triangles.\nxmid = x[triang.triangles].mean(axis=1)\nymid = y[triang.triangles].mean(axis=1)\nmask = xmid**2 + ymid**2 < min_radius**2\ntriang.set_mask(mask)\n\n# Plot the surface.\nax = fig.add_subplot(1, 2, 2, projection='3d')\nax.plot_trisurf(triang, z, cmap=plt.cm.CMRmap)\n\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fc4cb53fa768e03f37e5a3308e78c11d/subplot_demo.py b/_downloads/fc4cb53fa768e03f37e5a3308e78c11d/subplot_demo.py deleted file mode 120000 index 20c895dbb74..00000000000 --- a/_downloads/fc4cb53fa768e03f37e5a3308e78c11d/subplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fc4cb53fa768e03f37e5a3308e78c11d/subplot_demo.py \ No newline at end of file diff --git a/_downloads/fc4fa86274ed37386dab0daeccbc5b04/custom_ticker1.py b/_downloads/fc4fa86274ed37386dab0daeccbc5b04/custom_ticker1.py deleted file mode 100644 index ec943e3032f..00000000000 --- a/_downloads/fc4fa86274ed37386dab0daeccbc5b04/custom_ticker1.py +++ /dev/null @@ -1,33 +0,0 @@ -""" -============== -Custom Ticker1 -============== - -The new ticker code was designed to explicitly support user customized -ticking. The documentation of :mod:`matplotlib.ticker` details this -process. That code defines a lot of preset tickers but was primarily -designed to be user extensible. - -In this example a user defined function is used to format the ticks in -millions of dollars on the y axis. -""" -from matplotlib.ticker import FuncFormatter -import matplotlib.pyplot as plt -import numpy as np - -x = np.arange(4) -money = [1.5e5, 2.5e6, 5.5e6, 2.0e7] - - -def millions(x, pos): - 'The two args are the value and tick position' - return '$%1.1fM' % (x * 1e-6) - - -formatter = FuncFormatter(millions) - -fig, ax = plt.subplots() -ax.yaxis.set_major_formatter(formatter) -plt.bar(x, money) -plt.xticks(x, ('Bill', 'Fred', 'Mary', 'Sue')) -plt.show() diff --git a/_downloads/fc521fb16e99f9d5ba77930259023828/demo_fixed_size_axes.py b/_downloads/fc521fb16e99f9d5ba77930259023828/demo_fixed_size_axes.py deleted file mode 120000 index 82961bd1e03..00000000000 --- a/_downloads/fc521fb16e99f9d5ba77930259023828/demo_fixed_size_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fc521fb16e99f9d5ba77930259023828/demo_fixed_size_axes.py \ No newline at end of file diff --git a/_downloads/fc57e50506217c1dcb3401e650efa638/boxplot_vs_violin.ipynb b/_downloads/fc57e50506217c1dcb3401e650efa638/boxplot_vs_violin.ipynb deleted file mode 120000 index 0210814bdc3..00000000000 --- a/_downloads/fc57e50506217c1dcb3401e650efa638/boxplot_vs_violin.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc57e50506217c1dcb3401e650efa638/boxplot_vs_violin.ipynb \ No newline at end of file diff --git a/_downloads/fc5d5170533b03633ebc7c1d9a4afcfe/annotate_simple_coord02.ipynb b/_downloads/fc5d5170533b03633ebc7c1d9a4afcfe/annotate_simple_coord02.ipynb deleted file mode 120000 index cadf6ef7a89..00000000000 --- a/_downloads/fc5d5170533b03633ebc7c1d9a4afcfe/annotate_simple_coord02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fc5d5170533b03633ebc7c1d9a4afcfe/annotate_simple_coord02.ipynb \ No newline at end of file diff --git a/_downloads/fc6972be6b739f8b65592b0265f80535/fancybox_demo.ipynb b/_downloads/fc6972be6b739f8b65592b0265f80535/fancybox_demo.ipynb deleted file mode 100644 index beb24fac975..00000000000 --- a/_downloads/fc6972be6b739f8b65592b0265f80535/fancybox_demo.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Fancybox Demo\n\n\nPlotting fancy boxes with Matplotlib.\n\nThe following examples show how to plot boxes with different\nvisual properties.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.transforms as mtransforms\nimport matplotlib.patches as mpatch\nfrom matplotlib.patches import FancyBboxPatch" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First we'll show some sample boxes with fancybox.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "styles = mpatch.BoxStyle.get_styles()\nspacing = 1.2\n\nfigheight = (spacing * len(styles) + .5)\nfig = plt.figure(figsize=(4 / 1.5, figheight / 1.5))\nfontsize = 0.3 * 72\n\nfor i, stylename in enumerate(sorted(styles)):\n fig.text(0.5, (spacing * (len(styles) - i) - 0.5) / figheight, stylename,\n ha=\"center\",\n size=fontsize,\n transform=fig.transFigure,\n bbox=dict(boxstyle=stylename, fc=\"w\", ec=\"k\"))\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next we'll show off multiple fancy boxes at once.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Bbox object around which the fancy box will be drawn.\nbb = mtransforms.Bbox([[0.3, 0.4], [0.7, 0.6]])\n\n\ndef draw_bbox(ax, bb):\n # boxstyle=square with pad=0, i.e. bbox itself.\n p_bbox = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"square,pad=0.\",\n ec=\"k\", fc=\"none\", zorder=10.,\n )\n ax.add_patch(p_bbox)\n\n\ndef test1(ax):\n\n # a fancy box with round corners. pad=0.1\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.1\",\n fc=(1., .8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n ax.text(0.1, 0.8,\n r' boxstyle=\"round,pad=0.1\"',\n size=10, transform=ax.transAxes)\n\n # draws control points for the fancy box.\n # l = p_fancy.get_path().vertices\n # ax.plot(l[:,0], l[:,1], \".\")\n\n # draw the original bbox in black\n draw_bbox(ax, bb)\n\n\ndef test2(ax):\n\n # bbox=round has two optional argument. pad and rounding_size.\n # They can be set during the initialization.\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.1\",\n fc=(1., .8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n # boxstyle and its argument can be later modified with\n # set_boxstyle method. Note that the old attributes are simply\n # forgotten even if the boxstyle name is same.\n\n p_fancy.set_boxstyle(\"round,pad=0.1, rounding_size=0.2\")\n # or\n # p_fancy.set_boxstyle(\"round\", pad=0.1, rounding_size=0.2)\n\n ax.text(0.1, 0.8,\n ' boxstyle=\"round,pad=0.1\\n rounding_size=0.2\"',\n size=10, transform=ax.transAxes)\n\n # draws control points for the fancy box.\n # l = p_fancy.get_path().vertices\n # ax.plot(l[:,0], l[:,1], \".\")\n\n draw_bbox(ax, bb)\n\n\ndef test3(ax):\n\n # mutation_scale determine overall scale of the mutation,\n # i.e. both pad and rounding_size is scaled according to this\n # value.\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.1\",\n mutation_scale=2.,\n fc=(1., .8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n ax.text(0.1, 0.8,\n ' boxstyle=\"round,pad=0.1\"\\n mutation_scale=2',\n size=10, transform=ax.transAxes)\n\n # draws control points for the fancy box.\n # l = p_fancy.get_path().vertices\n # ax.plot(l[:,0], l[:,1], \".\")\n\n draw_bbox(ax, bb)\n\n\ndef test4(ax):\n\n # When the aspect ratio of the axes is not 1, the fancy box may\n # not be what you expected (green)\n\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.2\",\n fc=\"none\",\n ec=(0., .5, 0.), zorder=4)\n\n ax.add_patch(p_fancy)\n\n # You can compensate this by setting the mutation_aspect (pink).\n p_fancy = FancyBboxPatch((bb.xmin, bb.ymin),\n abs(bb.width), abs(bb.height),\n boxstyle=\"round,pad=0.3\",\n mutation_aspect=.5,\n fc=(1., 0.8, 1.),\n ec=(1., 0.5, 1.))\n\n ax.add_patch(p_fancy)\n\n ax.text(0.1, 0.8,\n ' boxstyle=\"round,pad=0.3\"\\n mutation_aspect=.5',\n size=10, transform=ax.transAxes)\n\n draw_bbox(ax, bb)\n\n\ndef test_all():\n plt.clf()\n\n ax = plt.subplot(2, 2, 1)\n test1(ax)\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n ax.set_title(\"test1\")\n ax.set_aspect(1.)\n\n ax = plt.subplot(2, 2, 2)\n ax.set_title(\"test2\")\n test2(ax)\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n ax.set_aspect(1.)\n\n ax = plt.subplot(2, 2, 3)\n ax.set_title(\"test3\")\n test3(ax)\n ax.set_xlim(0., 1.)\n ax.set_ylim(0., 1.)\n ax.set_aspect(1)\n\n ax = plt.subplot(2, 2, 4)\n ax.set_title(\"test4\")\n test4(ax)\n ax.set_xlim(-0.5, 1.5)\n ax.set_ylim(0., 1.)\n ax.set_aspect(2.)\n\n plt.show()\n\n\ntest_all()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.patches\nmatplotlib.patches.FancyBboxPatch\nmatplotlib.patches.BoxStyle\nmatplotlib.patches.BoxStyle.get_styles\nmatplotlib.transforms.Bbox" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fc6cf4e27384725f9410d0056e72f436/toolmanager_sgskip.py b/_downloads/fc6cf4e27384725f9410d0056e72f436/toolmanager_sgskip.py deleted file mode 120000 index 0789a12a41f..00000000000 --- a/_downloads/fc6cf4e27384725f9410d0056e72f436/toolmanager_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc6cf4e27384725f9410d0056e72f436/toolmanager_sgskip.py \ No newline at end of file diff --git a/_downloads/fc74f26b52c60731e2fb0a00b2956c10/scales.py b/_downloads/fc74f26b52c60731e2fb0a00b2956c10/scales.py deleted file mode 120000 index 62a00a00ee4..00000000000 --- a/_downloads/fc74f26b52c60731e2fb0a00b2956c10/scales.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fc74f26b52c60731e2fb0a00b2956c10/scales.py \ No newline at end of file diff --git a/_downloads/fc776249e6696fe81fcb1f66755963b5/usetex_demo.ipynb b/_downloads/fc776249e6696fe81fcb1f66755963b5/usetex_demo.ipynb deleted file mode 100644 index 98cf7332e8c..00000000000 --- a/_downloads/fc776249e6696fe81fcb1f66755963b5/usetex_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Usetex Demo\n\n\nShows how to use latex in a plot.\n\nAlso refer to the :doc:`/tutorials/text/usetex` guide.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nplt.rc('text', usetex=True)\n\n# interface tracking profiles\nN = 500\ndelta = 0.6\nX = np.linspace(-1, 1, N)\nplt.plot(X, (1 - np.tanh(4 * X / delta)) / 2, # phase field tanh profiles\n X, (1.4 + np.tanh(4 * X / delta)) / 4, \"C2\", # composition profile\n X, X < 0, 'k--') # sharp interface\n\n# legend\nplt.legend(('phase field', 'level set', 'sharp interface'),\n shadow=True, loc=(0.01, 0.48), handlelength=1.5, fontsize=16)\n\n# the arrow\nplt.annotate(\"\", xy=(-delta / 2., 0.1), xytext=(delta / 2., 0.1),\n arrowprops=dict(arrowstyle=\"<->\", connectionstyle=\"arc3\"))\nplt.text(0, 0.1, r'$\\delta$',\n {'color': 'black', 'fontsize': 24, 'ha': 'center', 'va': 'center',\n 'bbox': dict(boxstyle=\"round\", fc=\"white\", ec=\"black\", pad=0.2)})\n\n# Use tex in labels\nplt.xticks((-1, 0, 1), ('$-1$', r'$\\pm 0$', '$+1$'), color='k', size=20)\n\n# Left Y-axis labels, combine math mode and text mode\nplt.ylabel(r'\\bf{phase field} $\\phi$', {'color': 'C0', 'fontsize': 20})\nplt.yticks((0, 0.5, 1), (r'\\bf{0}', r'\\bf{.5}', r'\\bf{1}'), color='k', size=20)\n\n# Right Y-axis labels\nplt.text(1.02, 0.5, r\"\\bf{level set} $\\phi$\", {'color': 'C2', 'fontsize': 20},\n horizontalalignment='left',\n verticalalignment='center',\n rotation=90,\n clip_on=False,\n transform=plt.gca().transAxes)\n\n# Use multiline environment inside a `text`.\n# level set equations\neq1 = r\"\\begin{eqnarray*}\" + \\\n r\"|\\nabla\\phi| &=& 1,\\\\\" + \\\n r\"\\frac{\\partial \\phi}{\\partial t} + U|\\nabla \\phi| &=& 0 \" + \\\n r\"\\end{eqnarray*}\"\nplt.text(1, 0.9, eq1, {'color': 'C2', 'fontsize': 18}, va=\"top\", ha=\"right\")\n\n# phase field equations\neq2 = r'\\begin{eqnarray*}' + \\\n r'\\mathcal{F} &=& \\int f\\left( \\phi, c \\right) dV, \\\\ ' + \\\n r'\\frac{ \\partial \\phi } { \\partial t } &=& -M_{ \\phi } ' + \\\n r'\\frac{ \\delta \\mathcal{F} } { \\delta \\phi }' + \\\n r'\\end{eqnarray*}'\nplt.text(0.18, 0.18, eq2, {'color': 'C0', 'fontsize': 16})\n\nplt.text(-1, .30, r'gamma: $\\gamma$', {'color': 'r', 'fontsize': 20})\nplt.text(-1, .18, r'Omega: $\\Omega$', {'color': 'b', 'fontsize': 20})\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fc7ab3d54162f7241bd00d3b3028fd44/arrow_guide.py b/_downloads/fc7ab3d54162f7241bd00d3b3028fd44/arrow_guide.py deleted file mode 120000 index 129161eefc9..00000000000 --- a/_downloads/fc7ab3d54162f7241bd00d3b3028fd44/arrow_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fc7ab3d54162f7241bd00d3b3028fd44/arrow_guide.py \ No newline at end of file diff --git a/_downloads/fc82350b541619c948f006d0278609a2/svg_histogram_sgskip.ipynb b/_downloads/fc82350b541619c948f006d0278609a2/svg_histogram_sgskip.ipynb deleted file mode 120000 index f5a5fddf875..00000000000 --- a/_downloads/fc82350b541619c948f006d0278609a2/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc82350b541619c948f006d0278609a2/svg_histogram_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fc85ccddaeeeb107a5ce1c02a6580013/custom_boxstyle01.py b/_downloads/fc85ccddaeeeb107a5ce1c02a6580013/custom_boxstyle01.py deleted file mode 100644 index 1b645d94bf5..00000000000 --- a/_downloads/fc85ccddaeeeb107a5ce1c02a6580013/custom_boxstyle01.py +++ /dev/null @@ -1,55 +0,0 @@ -""" -================= -Custom Boxstyle01 -================= - -""" -from matplotlib.path import Path - - -def custom_box_style(x0, y0, width, height, mutation_size, mutation_aspect=1): - """ - Given the location and size of the box, return the path of - the box around it. - - - *x0*, *y0*, *width*, *height* : location and size of the box - - *mutation_size* : a reference scale for the mutation. - - *aspect_ratio* : aspect-ration for the mutation. - """ - - # note that we are ignoring mutation_aspect. This is okay in general. - - # padding - mypad = 0.3 - pad = mutation_size * mypad - - # width and height with padding added. - width = width + 2 * pad - height = height + 2 * pad - - # boundary of the padded box - x0, y0 = x0 - pad, y0 - pad - x1, y1 = x0 + width, y0 + height - - cp = [(x0, y0), - (x1, y0), (x1, y1), (x0, y1), - (x0-pad, (y0+y1)/2.), (x0, y0), - (x0, y0)] - - com = [Path.MOVETO, - Path.LINETO, Path.LINETO, Path.LINETO, - Path.LINETO, Path.LINETO, - Path.CLOSEPOLY] - - path = Path(cp, com) - - return path - - -import matplotlib.pyplot as plt - -fig, ax = plt.subplots(figsize=(3, 3)) -ax.text(0.5, 0.5, "Test", size=30, va="center", ha="center", - bbox=dict(boxstyle=custom_box_style, alpha=0.2)) - -plt.show() diff --git a/_downloads/fc897d0e7ec9dea503044d5862bafe60/image_demo.ipynb b/_downloads/fc897d0e7ec9dea503044d5862bafe60/image_demo.ipynb deleted file mode 120000 index 8f2ac2092d7..00000000000 --- a/_downloads/fc897d0e7ec9dea503044d5862bafe60/image_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fc897d0e7ec9dea503044d5862bafe60/image_demo.ipynb \ No newline at end of file diff --git a/_downloads/fc9684a0f44671e698a1736e825f2f5f/fourier_demo_wx_sgskip.ipynb b/_downloads/fc9684a0f44671e698a1736e825f2f5f/fourier_demo_wx_sgskip.ipynb deleted file mode 120000 index e20a2efd66d..00000000000 --- a/_downloads/fc9684a0f44671e698a1736e825f2f5f/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fc9684a0f44671e698a1736e825f2f5f/fourier_demo_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fc9c06775b1ec9798885b56bfc6107be/fancybox_demo.ipynb b/_downloads/fc9c06775b1ec9798885b56bfc6107be/fancybox_demo.ipynb deleted file mode 120000 index 1ab9fc080a1..00000000000 --- a/_downloads/fc9c06775b1ec9798885b56bfc6107be/fancybox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fc9c06775b1ec9798885b56bfc6107be/fancybox_demo.ipynb \ No newline at end of file diff --git a/_downloads/fc9fec0df252d979f0974ae6de34c3a0/demo_axes_divider.py b/_downloads/fc9fec0df252d979f0974ae6de34c3a0/demo_axes_divider.py deleted file mode 120000 index cb57885fd2e..00000000000 --- a/_downloads/fc9fec0df252d979f0974ae6de34c3a0/demo_axes_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fc9fec0df252d979f0974ae6de34c3a0/demo_axes_divider.py \ No newline at end of file diff --git a/_downloads/fca5f3c7d4b90bf5a730b04396b95d85/demo_axes_rgb.py b/_downloads/fca5f3c7d4b90bf5a730b04396b95d85/demo_axes_rgb.py deleted file mode 120000 index 30c866a84a9..00000000000 --- a/_downloads/fca5f3c7d4b90bf5a730b04396b95d85/demo_axes_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fca5f3c7d4b90bf5a730b04396b95d85/demo_axes_rgb.py \ No newline at end of file diff --git a/_downloads/fca8ac3a256371f4feff2d01d50489ff/filled_step.ipynb b/_downloads/fca8ac3a256371f4feff2d01d50489ff/filled_step.ipynb deleted file mode 100644 index 96fa7c8b8d0..00000000000 --- a/_downloads/fca8ac3a256371f4feff2d01d50489ff/filled_step.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Hatch-filled histograms\n\n\nHatching capabilities for plotting histograms.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import itertools\nfrom collections import OrderedDict\nfrom functools import partial\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as mticker\nfrom cycler import cycler\n\n\ndef filled_hist(ax, edges, values, bottoms=None, orientation='v',\n **kwargs):\n \"\"\"\n Draw a histogram as a stepped patch.\n\n Extra kwargs are passed through to `fill_between`\n\n Parameters\n ----------\n ax : Axes\n The axes to plot to\n\n edges : array\n A length n+1 array giving the left edges of each bin and the\n right edge of the last bin.\n\n values : array\n A length n array of bin counts or values\n\n bottoms : scalar or array, optional\n A length n array of the bottom of the bars. If None, zero is used.\n\n orientation : {'v', 'h'}\n Orientation of the histogram. 'v' (default) has\n the bars increasing in the positive y-direction.\n\n Returns\n -------\n ret : PolyCollection\n Artist added to the Axes\n \"\"\"\n print(orientation)\n if orientation not in 'hv':\n raise ValueError(\"orientation must be in {{'h', 'v'}} \"\n \"not {o}\".format(o=orientation))\n\n kwargs.setdefault('step', 'post')\n edges = np.asarray(edges)\n values = np.asarray(values)\n if len(edges) - 1 != len(values):\n raise ValueError('Must provide one more bin edge than value not: '\n 'len(edges): {lb} len(values): {lv}'.format(\n lb=len(edges), lv=len(values)))\n\n if bottoms is None:\n bottoms = 0\n bottoms = np.broadcast_to(bottoms, values.shape)\n\n values = np.r_[values, values[-1]]\n bottoms = np.r_[bottoms, bottoms[-1]]\n if orientation == 'h':\n return ax.fill_betweenx(edges, values, bottoms,\n **kwargs)\n elif orientation == 'v':\n return ax.fill_between(edges, values, bottoms,\n **kwargs)\n else:\n raise AssertionError(\"you should never be here\")\n\n\ndef stack_hist(ax, stacked_data, sty_cycle, bottoms=None,\n hist_func=None, labels=None,\n plot_func=None, plot_kwargs=None):\n \"\"\"\n ax : axes.Axes\n The axes to add artists too\n\n stacked_data : array or Mapping\n A (N, M) shaped array. The first dimension will be iterated over to\n compute histograms row-wise\n\n sty_cycle : Cycler or operable of dict\n Style to apply to each set\n\n bottoms : array, optional\n The initial positions of the bottoms, defaults to 0\n\n hist_func : callable, optional\n Must have signature `bin_vals, bin_edges = f(data)`.\n `bin_edges` expected to be one longer than `bin_vals`\n\n labels : list of str, optional\n The label for each set.\n\n If not given and stacked data is an array defaults to 'default set {n}'\n\n If stacked_data is a mapping, and labels is None, default to the keys\n (which may come out in a random order).\n\n If stacked_data is a mapping and labels is given then only\n the columns listed by be plotted.\n\n plot_func : callable, optional\n Function to call to draw the histogram must have signature:\n\n ret = plot_func(ax, edges, top, bottoms=bottoms,\n label=label, **kwargs)\n\n plot_kwargs : dict, optional\n Any extra kwargs to pass through to the plotting function. This\n will be the same for all calls to the plotting function and will\n over-ride the values in cycle.\n\n Returns\n -------\n arts : dict\n Dictionary of artists keyed on their labels\n \"\"\"\n # deal with default binning function\n if hist_func is None:\n hist_func = np.histogram\n\n # deal with default plotting function\n if plot_func is None:\n plot_func = filled_hist\n\n # deal with default\n if plot_kwargs is None:\n plot_kwargs = {}\n print(plot_kwargs)\n try:\n l_keys = stacked_data.keys()\n label_data = True\n if labels is None:\n labels = l_keys\n\n except AttributeError:\n label_data = False\n if labels is None:\n labels = itertools.repeat(None)\n\n if label_data:\n loop_iter = enumerate((stacked_data[lab], lab, s)\n for lab, s in zip(labels, sty_cycle))\n else:\n loop_iter = enumerate(zip(stacked_data, labels, sty_cycle))\n\n arts = {}\n for j, (data, label, sty) in loop_iter:\n if label is None:\n label = 'dflt set {n}'.format(n=j)\n label = sty.pop('label', label)\n vals, edges = hist_func(data)\n if bottoms is None:\n bottoms = np.zeros_like(vals)\n top = bottoms + vals\n print(sty)\n sty.update(plot_kwargs)\n print(sty)\n ret = plot_func(ax, edges, top, bottoms=bottoms,\n label=label, **sty)\n bottoms = top\n arts[label] = ret\n ax.legend(fontsize=10)\n return arts\n\n\n# set up histogram function to fixed bins\nedges = np.linspace(-3, 3, 20, endpoint=True)\nhist_func = partial(np.histogram, bins=edges)\n\n# set up style cycles\ncolor_cycle = cycler(facecolor=plt.rcParams['axes.prop_cycle'][:4])\nlabel_cycle = cycler(label=['set {n}'.format(n=n) for n in range(4)])\nhatch_cycle = cycler(hatch=['/', '*', '+', '|'])\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nstack_data = np.random.randn(4, 12250)\ndict_data = OrderedDict(zip((c['label'] for c in label_cycle), stack_data))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Work with plain arrays\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5), tight_layout=True)\narts = stack_hist(ax1, stack_data, color_cycle + label_cycle + hatch_cycle,\n hist_func=hist_func)\n\narts = stack_hist(ax2, stack_data, color_cycle,\n hist_func=hist_func,\n plot_kwargs=dict(edgecolor='w', orientation='h'))\nax1.set_ylabel('counts')\nax1.set_xlabel('x')\nax2.set_xlabel('counts')\nax2.set_ylabel('x')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Work with labeled data\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(9, 4.5),\n tight_layout=True, sharey=True)\n\narts = stack_hist(ax1, dict_data, color_cycle + hatch_cycle,\n hist_func=hist_func)\n\narts = stack_hist(ax2, dict_data, color_cycle + hatch_cycle,\n hist_func=hist_func, labels=['set 0', 'set 3'])\nax1.xaxis.set_major_locator(mticker.MaxNLocator(5))\nax1.set_xlabel('counts')\nax1.set_ylabel('x')\nax2.set_ylabel('x')\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.fill_betweenx\nmatplotlib.axes.Axes.fill_between\nmatplotlib.axis.Axis.set_major_locator" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fcac5bbb01b25706d521fd217f94d869/subplot_toolbar.py b/_downloads/fcac5bbb01b25706d521fd217f94d869/subplot_toolbar.py deleted file mode 120000 index 91e8c2b9591..00000000000 --- a/_downloads/fcac5bbb01b25706d521fd217f94d869/subplot_toolbar.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fcac5bbb01b25706d521fd217f94d869/subplot_toolbar.py \ No newline at end of file diff --git a/_downloads/fcaddee3a42ae2e2c41e00ae08d70347/gallery_jupyter.zip b/_downloads/fcaddee3a42ae2e2c41e00ae08d70347/gallery_jupyter.zip deleted file mode 120000 index 1d78d51a93e..00000000000 --- a/_downloads/fcaddee3a42ae2e2c41e00ae08d70347/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fcaddee3a42ae2e2c41e00ae08d70347/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/fcb215319d10282d15e192712119941c/multiple_histograms_side_by_side.ipynb b/_downloads/fcb215319d10282d15e192712119941c/multiple_histograms_side_by_side.ipynb deleted file mode 120000 index a0e0acb0577..00000000000 --- a/_downloads/fcb215319d10282d15e192712119941c/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fcb215319d10282d15e192712119941c/multiple_histograms_side_by_side.ipynb \ No newline at end of file diff --git a/_downloads/fcb37b04ee27e7da515e998a37a26442/demo_gridspec01.py b/_downloads/fcb37b04ee27e7da515e998a37a26442/demo_gridspec01.py deleted file mode 120000 index 11f82324e98..00000000000 --- a/_downloads/fcb37b04ee27e7da515e998a37a26442/demo_gridspec01.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fcb37b04ee27e7da515e998a37a26442/demo_gridspec01.py \ No newline at end of file diff --git a/_downloads/fcbc14b23962009bcf6e5a7d52e939c8/vline_hline_demo.py b/_downloads/fcbc14b23962009bcf6e5a7d52e939c8/vline_hline_demo.py deleted file mode 120000 index 85d6865f82b..00000000000 --- a/_downloads/fcbc14b23962009bcf6e5a7d52e939c8/vline_hline_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fcbc14b23962009bcf6e5a7d52e939c8/vline_hline_demo.py \ No newline at end of file diff --git a/_downloads/fcbf2e7c5f17b03b09f59e2301953e79/mplot3d.py b/_downloads/fcbf2e7c5f17b03b09f59e2301953e79/mplot3d.py deleted file mode 120000 index 8cd02508b39..00000000000 --- a/_downloads/fcbf2e7c5f17b03b09f59e2301953e79/mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fcbf2e7c5f17b03b09f59e2301953e79/mplot3d.py \ No newline at end of file diff --git a/_downloads/fcc213f2d4a60a39b896694b25aa4d06/close_event.py b/_downloads/fcc213f2d4a60a39b896694b25aa4d06/close_event.py deleted file mode 120000 index 414c5dc28ab..00000000000 --- a/_downloads/fcc213f2d4a60a39b896694b25aa4d06/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fcc213f2d4a60a39b896694b25aa4d06/close_event.py \ No newline at end of file diff --git a/_downloads/fce63ee719c2fcdbb2cbbfbb797310f5/custom_legends.py b/_downloads/fce63ee719c2fcdbb2cbbfbb797310f5/custom_legends.py deleted file mode 120000 index 05bddf28207..00000000000 --- a/_downloads/fce63ee719c2fcdbb2cbbfbb797310f5/custom_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fce63ee719c2fcdbb2cbbfbb797310f5/custom_legends.py \ No newline at end of file diff --git a/_downloads/fceffe3b40c4f4cec1396ce260d1f286/bayes_update.py b/_downloads/fceffe3b40c4f4cec1396ce260d1f286/bayes_update.py deleted file mode 120000 index fe760e45a07..00000000000 --- a/_downloads/fceffe3b40c4f4cec1396ce260d1f286/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fceffe3b40c4f4cec1396ce260d1f286/bayes_update.py \ No newline at end of file diff --git a/_downloads/fcf9ebf3f70b263aa6fb7a0fe37cde21/spines_bounds.ipynb b/_downloads/fcf9ebf3f70b263aa6fb7a0fe37cde21/spines_bounds.ipynb deleted file mode 100644 index 597933ec470..00000000000 --- a/_downloads/fcf9ebf3f70b263aa6fb7a0fe37cde21/spines_bounds.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Custom spine bounds\n\n\nDemo of spines using custom bounds to limit the extent of the spine.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\nx = np.linspace(0, 2*np.pi, 50)\ny = np.sin(x)\ny2 = y + 0.1 * np.random.normal(size=x.shape)\n\nfig, ax = plt.subplots()\nax.plot(x, y)\nax.plot(x, y2)\n\n# set ticks and tick labels\nax.set_xlim((0, 2*np.pi))\nax.set_xticks([0, np.pi, 2*np.pi])\nax.set_xticklabels(['0', r'$\\pi$', r'2$\\pi$'])\nax.set_ylim((-1.5, 1.5))\nax.set_yticks([-1, 0, 1])\n\n# Only draw spine between the y-ticks\nax.spines['left'].set_bounds(-1, 1)\n# Hide the right and top spines\nax.spines['right'].set_visible(False)\nax.spines['top'].set_visible(False)\n# Only show ticks on the left and bottom spines\nax.yaxis.set_ticks_position('left')\nax.xaxis.set_ticks_position('bottom')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fd0d2cfb4cbc18cd4687d7ebf5d6116d/marker_reference.ipynb b/_downloads/fd0d2cfb4cbc18cd4687d7ebf5d6116d/marker_reference.ipynb deleted file mode 120000 index 8e188a7f687..00000000000 --- a/_downloads/fd0d2cfb4cbc18cd4687d7ebf5d6116d/marker_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fd0d2cfb4cbc18cd4687d7ebf5d6116d/marker_reference.ipynb \ No newline at end of file diff --git a/_downloads/fd11a9cbe593cb25cf8303cf45b52aaa/fancybox_demo.ipynb b/_downloads/fd11a9cbe593cb25cf8303cf45b52aaa/fancybox_demo.ipynb deleted file mode 120000 index 4ed4c21e965..00000000000 --- a/_downloads/fd11a9cbe593cb25cf8303cf45b52aaa/fancybox_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fd11a9cbe593cb25cf8303cf45b52aaa/fancybox_demo.ipynb \ No newline at end of file diff --git a/_downloads/fd12552c282cbda4694edfa08ccc0372/axis_direction_demo_step02.py b/_downloads/fd12552c282cbda4694edfa08ccc0372/axis_direction_demo_step02.py deleted file mode 120000 index 3aae1234b16..00000000000 --- a/_downloads/fd12552c282cbda4694edfa08ccc0372/axis_direction_demo_step02.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fd12552c282cbda4694edfa08ccc0372/axis_direction_demo_step02.py \ No newline at end of file diff --git a/_downloads/fd25f23d52a7caeec16e1213b514ae67/legend_picking.ipynb b/_downloads/fd25f23d52a7caeec16e1213b514ae67/legend_picking.ipynb deleted file mode 120000 index 8c16ba53b21..00000000000 --- a/_downloads/fd25f23d52a7caeec16e1213b514ae67/legend_picking.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fd25f23d52a7caeec16e1213b514ae67/legend_picking.ipynb \ No newline at end of file diff --git a/_downloads/fd2f1b07ea394877ce993a24531c469f/surface3d_2.ipynb b/_downloads/fd2f1b07ea394877ce993a24531c469f/surface3d_2.ipynb deleted file mode 120000 index b61c2b3b9e9..00000000000 --- a/_downloads/fd2f1b07ea394877ce993a24531c469f/surface3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fd2f1b07ea394877ce993a24531c469f/surface3d_2.ipynb \ No newline at end of file diff --git a/_downloads/fd38b3fdbae5a1ce93b726bdb02a48eb/simple_axes_divider2.ipynb b/_downloads/fd38b3fdbae5a1ce93b726bdb02a48eb/simple_axes_divider2.ipynb deleted file mode 120000 index ad000946604..00000000000 --- a/_downloads/fd38b3fdbae5a1ce93b726bdb02a48eb/simple_axes_divider2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fd38b3fdbae5a1ce93b726bdb02a48eb/simple_axes_divider2.ipynb \ No newline at end of file diff --git a/_downloads/fd4791a9f3ff6c896a91801b95a1a8da/bar_demo2.py b/_downloads/fd4791a9f3ff6c896a91801b95a1a8da/bar_demo2.py deleted file mode 100644 index d18f81b7753..00000000000 --- a/_downloads/fd4791a9f3ff6c896a91801b95a1a8da/bar_demo2.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -=================== -Bar demo with units -=================== - -A plot using a variety of centimetre and inch conversions. This example shows -how default unit introspection works (ax1), how various keywords can be used to -set the x and y units to override the defaults (ax2, ax3, ax4) and how one can -set the xlimits using scalars (ax3, current units assumed) or units -(conversions applied to get the numbers to current units). - -.. only:: builder_html - - This example requires :download:`basic_units.py ` -""" -import numpy as np -from basic_units import cm, inch -import matplotlib.pyplot as plt - -cms = cm * np.arange(0, 10, 2) -bottom = 0 * cm -width = 0.8 * cm - -fig, axs = plt.subplots(2, 2) - -axs[0, 0].bar(cms, cms, bottom=bottom) - -axs[0, 1].bar(cms, cms, bottom=bottom, width=width, xunits=cm, yunits=inch) - -axs[1, 0].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=cm) -axs[1, 0].set_xlim(2, 6) # scalars are interpreted in current units - -axs[1, 1].bar(cms, cms, bottom=bottom, width=width, xunits=inch, yunits=inch) -axs[1, 1].set_xlim(2 * cm, 6 * cm) # cm are converted to inches - -fig.tight_layout() -plt.show() diff --git a/_downloads/fd4957c79faa6bf2000125d0c048ca05/surface3d.ipynb b/_downloads/fd4957c79faa6bf2000125d0c048ca05/surface3d.ipynb deleted file mode 100644 index c4927e84423..00000000000 --- a/_downloads/fd4957c79faa6bf2000125d0c048ca05/surface3d.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n======================\n3D surface (color map)\n======================\n\nDemonstrates plotting a 3D surface colored with the coolwarm color map.\nThe surface is made opaque by using antialiased=False.\n\nAlso demonstrates using the LinearLocator and custom formatting for the\nz axis tick labels.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom matplotlib.ticker import LinearLocator, FormatStrFormatter\nimport numpy as np\n\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\n\n# Make data.\nX = np.arange(-5, 5, 0.25)\nY = np.arange(-5, 5, 0.25)\nX, Y = np.meshgrid(X, Y)\nR = np.sqrt(X**2 + Y**2)\nZ = np.sin(R)\n\n# Plot the surface.\nsurf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm,\n linewidth=0, antialiased=False)\n\n# Customize the z axis.\nax.set_zlim(-1.01, 1.01)\nax.zaxis.set_major_locator(LinearLocator(10))\nax.zaxis.set_major_formatter(FormatStrFormatter('%.02f'))\n\n# Add a color bar which maps values to colors.\nfig.colorbar(surf, shrink=0.5, aspect=5)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fd4c3f9d4a7fa07ee031dcef4e947df5/text_fontdict.py b/_downloads/fd4c3f9d4a7fa07ee031dcef4e947df5/text_fontdict.py deleted file mode 100644 index ad6fa8cc972..00000000000 --- a/_downloads/fd4c3f9d4a7fa07ee031dcef4e947df5/text_fontdict.py +++ /dev/null @@ -1,31 +0,0 @@ -""" -======================================================= -Controlling style of text and labels using a dictionary -======================================================= - -This example shows how to share parameters across many text objects and labels -by creating a dictionary of options passed across several functions. -""" - -import numpy as np -import matplotlib.pyplot as plt - - -font = {'family': 'serif', - 'color': 'darkred', - 'weight': 'normal', - 'size': 16, - } - -x = np.linspace(0.0, 5.0, 100) -y = np.cos(2*np.pi*x) * np.exp(-x) - -plt.plot(x, y, 'k') -plt.title('Damped exponential decay', fontdict=font) -plt.text(2, 0.65, r'$\cos(2 \pi t) \exp(-t)$', fontdict=font) -plt.xlabel('time (s)', fontdict=font) -plt.ylabel('voltage (mV)', fontdict=font) - -# Tweak spacing to prevent clipping of ylabel -plt.subplots_adjust(left=0.15) -plt.show() diff --git a/_downloads/fd4e6635f046cce4ada985495da44ec9/zorder_demo.py b/_downloads/fd4e6635f046cce4ada985495da44ec9/zorder_demo.py deleted file mode 120000 index 0d68e4371eb..00000000000 --- a/_downloads/fd4e6635f046cce4ada985495da44ec9/zorder_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fd4e6635f046cce4ada985495da44ec9/zorder_demo.py \ No newline at end of file diff --git a/_downloads/fd5503237f4ab42839e801cb8c0978a0/annotate_simple04.py b/_downloads/fd5503237f4ab42839e801cb8c0978a0/annotate_simple04.py deleted file mode 100644 index 7b0bff038b4..00000000000 --- a/_downloads/fd5503237f4ab42839e801cb8c0978a0/annotate_simple04.py +++ /dev/null @@ -1,34 +0,0 @@ -""" -================= -Annotate Simple04 -================= - -""" -import matplotlib.pyplot as plt - - -fig, ax = plt.subplots(figsize=(3, 3)) - -ann = ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - bbox=dict(boxstyle="round4", fc="w"), - arrowprops=dict(arrowstyle="-|>", - connectionstyle="arc3,rad=0.2", - relpos=(0., 0.), - fc="w"), - ) - -ann = ax.annotate("Test", - xy=(0.2, 0.2), xycoords='data', - xytext=(0.8, 0.8), textcoords='data', - size=20, va="center", ha="center", - bbox=dict(boxstyle="round4", fc="w"), - arrowprops=dict(arrowstyle="-|>", - connectionstyle="arc3,rad=-0.2", - relpos=(1., 0.), - fc="w"), - ) - -plt.show() diff --git a/_downloads/fd58d5a228b50eca41170edadb2b2f95/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/fd58d5a228b50eca41170edadb2b2f95/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 120000 index 6b1750e7196..00000000000 --- a/_downloads/fd58d5a228b50eca41170edadb2b2f95/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fd58d5a228b50eca41170edadb2b2f95/make_room_for_ylabel_using_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/fd597b35f2dbad88adbec937de3ffbf9/gridspec_nested.py b/_downloads/fd597b35f2dbad88adbec937de3ffbf9/gridspec_nested.py deleted file mode 120000 index f1983b7850d..00000000000 --- a/_downloads/fd597b35f2dbad88adbec937de3ffbf9/gridspec_nested.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fd597b35f2dbad88adbec937de3ffbf9/gridspec_nested.py \ No newline at end of file diff --git a/_downloads/fd599abb7851519dab3d06f479048bef/scatter_with_legend.ipynb b/_downloads/fd599abb7851519dab3d06f479048bef/scatter_with_legend.ipynb deleted file mode 120000 index af3ef8fcc2b..00000000000 --- a/_downloads/fd599abb7851519dab3d06f479048bef/scatter_with_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fd599abb7851519dab3d06f479048bef/scatter_with_legend.ipynb \ No newline at end of file diff --git a/_downloads/fd63f0ba38eef162ec212121ea43587a/pgf_preamble_sgskip.py b/_downloads/fd63f0ba38eef162ec212121ea43587a/pgf_preamble_sgskip.py deleted file mode 100644 index eccdefa0d6e..00000000000 --- a/_downloads/fd63f0ba38eef162ec212121ea43587a/pgf_preamble_sgskip.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============ -Pgf Preamble -============ - -""" - -import matplotlib as mpl -mpl.use("pgf") -import matplotlib.pyplot as plt -plt.rcParams.update({ - "font.family": "serif", # use serif/main font for text elements - "text.usetex": True, # use inline math for ticks - "pgf.rcfonts": False, # don't setup fonts from rc parameters - "pgf.preamble": [ - "\\usepackage{units}", # load additional packages - "\\usepackage{metalogo}", - "\\usepackage{unicode-math}", # unicode math setup - r"\setmathfont{xits-math.otf}", - r"\setmainfont{DejaVu Serif}", # serif font via preamble - ] -}) - -plt.figure(figsize=(4.5, 2.5)) -plt.plot(range(5)) -plt.xlabel("unicode text: я, ψ, €, ü, \\unitfrac[10]{°}{µm}") -plt.ylabel("\\XeLaTeX") -plt.legend(["unicode math: $λ=∑_i^∞ μ_i^2$"]) -plt.tight_layout(.5) - -plt.savefig("pgf_preamble.pdf") -plt.savefig("pgf_preamble.png") diff --git a/_downloads/fd67d226fbaf03bb9e4e8ad72f1fba81/voxels.py b/_downloads/fd67d226fbaf03bb9e4e8ad72f1fba81/voxels.py deleted file mode 120000 index 9e6c42ea5d6..00000000000 --- a/_downloads/fd67d226fbaf03bb9e4e8ad72f1fba81/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fd67d226fbaf03bb9e4e8ad72f1fba81/voxels.py \ No newline at end of file diff --git a/_downloads/fd72333768a1030164220fe6f47fb338/ellipse_collection.ipynb b/_downloads/fd72333768a1030164220fe6f47fb338/ellipse_collection.ipynb deleted file mode 100644 index d9f566ba7a6..00000000000 --- a/_downloads/fd72333768a1030164220fe6f47fb338/ellipse_collection.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Ellipse Collection\n\n\nDrawing a collection of ellipses. While this would equally be possible using\na `~.collections.EllipseCollection` or `~.collections.PathCollection`, the use\nof an `~.collections.EllipseCollection` allows for much shorter code.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\nfrom matplotlib.collections import EllipseCollection\n\nx = np.arange(10)\ny = np.arange(15)\nX, Y = np.meshgrid(x, y)\n\nXY = np.column_stack((X.ravel(), Y.ravel()))\n\nww = X / 10.0\nhh = Y / 15.0\naa = X * 9\n\n\nfig, ax = plt.subplots()\n\nec = EllipseCollection(ww, hh, aa, units='x', offsets=XY,\n transOffset=ax.transData)\nec.set_array((X + Y).ravel())\nax.add_collection(ec)\nax.autoscale_view()\nax.set_xlabel('X')\nax.set_ylabel('y')\ncbar = plt.colorbar(ec)\ncbar.set_label('X+Y')\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.collections\nmatplotlib.collections.EllipseCollection\nmatplotlib.axes.Axes.add_collection\nmatplotlib.axes.Axes.autoscale_view\nmatplotlib.cm.ScalarMappable.set_array" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fd881b23f437800cddc8578ef3d34d96/viewlims.ipynb b/_downloads/fd881b23f437800cddc8578ef3d34d96/viewlims.ipynb deleted file mode 120000 index c85419182d9..00000000000 --- a/_downloads/fd881b23f437800cddc8578ef3d34d96/viewlims.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fd881b23f437800cddc8578ef3d34d96/viewlims.ipynb \ No newline at end of file diff --git a/_downloads/fd93b63d411ac8b55d1c92ec162d9db7/custom_projection.py b/_downloads/fd93b63d411ac8b55d1c92ec162d9db7/custom_projection.py deleted file mode 100644 index 50396e7692c..00000000000 --- a/_downloads/fd93b63d411ac8b55d1c92ec162d9db7/custom_projection.py +++ /dev/null @@ -1,458 +0,0 @@ -""" -================= -Custom projection -================= - -Showcase Hammer projection by alleviating many features of Matplotlib. -""" - -import matplotlib -from matplotlib.axes import Axes -from matplotlib.patches import Circle -from matplotlib.path import Path -from matplotlib.ticker import NullLocator, Formatter, FixedLocator -from matplotlib.transforms import Affine2D, BboxTransformTo, Transform -from matplotlib.projections import register_projection -import matplotlib.spines as mspines -import matplotlib.axis as maxis -import numpy as np - -rcParams = matplotlib.rcParams - -# This example projection class is rather long, but it is designed to -# illustrate many features, not all of which will be used every time. -# It is also common to factor out a lot of these methods into common -# code used by a number of projections with similar characteristics -# (see geo.py). - - -class GeoAxes(Axes): - """ - An abstract base class for geographic projections - """ - class ThetaFormatter(Formatter): - """ - Used to format the theta tick labels. Converts the native - unit of radians into degrees and adds a degree symbol. - """ - def __init__(self, round_to=1.0): - self._round_to = round_to - - def __call__(self, x, pos=None): - degrees = np.round(np.rad2deg(x) / self._round_to) * self._round_to - if rcParams['text.usetex'] and not rcParams['text.latex.unicode']: - return r"$%0.0f^\circ$" % degrees - else: - return "%0.0f\N{DEGREE SIGN}" % degrees - - RESOLUTION = 75 - - def _init_axis(self): - self.xaxis = maxis.XAxis(self) - self.yaxis = maxis.YAxis(self) - # Do not register xaxis or yaxis with spines -- as done in - # Axes._init_axis() -- until GeoAxes.xaxis.cla() works. - # self.spines['geo'].register_axis(self.yaxis) - self._update_transScale() - - def cla(self): - Axes.cla(self) - - self.set_longitude_grid(30) - self.set_latitude_grid(15) - self.set_longitude_grid_ends(75) - self.xaxis.set_minor_locator(NullLocator()) - self.yaxis.set_minor_locator(NullLocator()) - self.xaxis.set_ticks_position('none') - self.yaxis.set_ticks_position('none') - self.yaxis.set_tick_params(label1On=True) - # Why do we need to turn on yaxis tick labels, but - # xaxis tick labels are already on? - - self.grid(rcParams['axes.grid']) - - Axes.set_xlim(self, -np.pi, np.pi) - Axes.set_ylim(self, -np.pi / 2.0, np.pi / 2.0) - - def _set_lim_and_transforms(self): - # A (possibly non-linear) projection on the (already scaled) data - - # There are three important coordinate spaces going on here: - # - # 1. Data space: The space of the data itself - # - # 2. Axes space: The unit rectangle (0, 0) to (1, 1) - # covering the entire plot area. - # - # 3. Display space: The coordinates of the resulting image, - # often in pixels or dpi/inch. - - # This function makes heavy use of the Transform classes in - # ``lib/matplotlib/transforms.py.`` For more information, see - # the inline documentation there. - - # The goal of the first two transformations is to get from the - # data space (in this case longitude and latitude) to axes - # space. It is separated into a non-affine and affine part so - # that the non-affine part does not have to be recomputed when - # a simple affine change to the figure has been made (such as - # resizing the window or changing the dpi). - - # 1) The core transformation from data space into - # rectilinear space defined in the HammerTransform class. - self.transProjection = self._get_core_transform(self.RESOLUTION) - - # 2) The above has an output range that is not in the unit - # rectangle, so scale and translate it so it fits correctly - # within the axes. The peculiar calculations of xscale and - # yscale are specific to a Aitoff-Hammer projection, so don't - # worry about them too much. - self.transAffine = self._get_affine_transform() - - # 3) This is the transformation from axes space to display - # space. - self.transAxes = BboxTransformTo(self.bbox) - - # Now put these 3 transforms together -- from data all the way - # to display coordinates. Using the '+' operator, these - # transforms will be applied "in order". The transforms are - # automatically simplified, if possible, by the underlying - # transformation framework. - self.transData = \ - self.transProjection + \ - self.transAffine + \ - self.transAxes - - # The main data transformation is set up. Now deal with - # gridlines and tick labels. - - # Longitude gridlines and ticklabels. The input to these - # transforms are in display space in x and axes space in y. - # Therefore, the input values will be in range (-xmin, 0), - # (xmax, 1). The goal of these transforms is to go from that - # space to display space. The tick labels will be offset 4 - # pixels from the equator. - self._xaxis_pretransform = \ - Affine2D() \ - .scale(1.0, self._longitude_cap * 2.0) \ - .translate(0.0, -self._longitude_cap) - self._xaxis_transform = \ - self._xaxis_pretransform + \ - self.transData - self._xaxis_text1_transform = \ - Affine2D().scale(1.0, 0.0) + \ - self.transData + \ - Affine2D().translate(0.0, 4.0) - self._xaxis_text2_transform = \ - Affine2D().scale(1.0, 0.0) + \ - self.transData + \ - Affine2D().translate(0.0, -4.0) - - # Now set up the transforms for the latitude ticks. The input to - # these transforms are in axes space in x and display space in - # y. Therefore, the input values will be in range (0, -ymin), - # (1, ymax). The goal of these transforms is to go from that - # space to display space. The tick labels will be offset 4 - # pixels from the edge of the axes ellipse. - yaxis_stretch = Affine2D().scale(np.pi*2, 1).translate(-np.pi, 0) - yaxis_space = Affine2D().scale(1.0, 1.1) - self._yaxis_transform = \ - yaxis_stretch + \ - self.transData - yaxis_text_base = \ - yaxis_stretch + \ - self.transProjection + \ - (yaxis_space + - self.transAffine + - self.transAxes) - self._yaxis_text1_transform = \ - yaxis_text_base + \ - Affine2D().translate(-8.0, 0.0) - self._yaxis_text2_transform = \ - yaxis_text_base + \ - Affine2D().translate(8.0, 0.0) - - def _get_affine_transform(self): - transform = self._get_core_transform(1) - xscale, _ = transform.transform_point((np.pi, 0)) - _, yscale = transform.transform_point((0, np.pi / 2.0)) - return Affine2D() \ - .scale(0.5 / xscale, 0.5 / yscale) \ - .translate(0.5, 0.5) - - def get_xaxis_transform(self, which='grid'): - """ - Override this method to provide a transformation for the - x-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - if which not in ['tick1', 'tick2', 'grid']: - raise ValueError( - "'which' must be one of 'tick1', 'tick2', or 'grid'") - return self._xaxis_transform - - def get_xaxis_text1_transform(self, pad): - return self._xaxis_text1_transform, 'bottom', 'center' - - def get_xaxis_text2_transform(self, pad): - """ - Override this method to provide a transformation for the - secondary x-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - return self._xaxis_text2_transform, 'top', 'center' - - def get_yaxis_transform(self, which='grid'): - """ - Override this method to provide a transformation for the - y-axis grid and ticks. - """ - if which not in ['tick1', 'tick2', 'grid']: - raise ValueError( - "'which' must be one of 'tick1', 'tick2', or 'grid'") - return self._yaxis_transform - - def get_yaxis_text1_transform(self, pad): - """ - Override this method to provide a transformation for the - y-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - return self._yaxis_text1_transform, 'center', 'right' - - def get_yaxis_text2_transform(self, pad): - """ - Override this method to provide a transformation for the - secondary y-axis tick labels. - - Returns a tuple of the form (transform, valign, halign) - """ - return self._yaxis_text2_transform, 'center', 'left' - - def _gen_axes_patch(self): - """ - Override this method to define the shape that is used for the - background of the plot. It should be a subclass of Patch. - - In this case, it is a Circle (that may be warped by the axes - transform into an ellipse). Any data and gridlines will be - clipped to this shape. - """ - return Circle((0.5, 0.5), 0.5) - - def _gen_axes_spines(self): - return {'geo': mspines.Spine.circular_spine(self, (0.5, 0.5), 0.5)} - - def set_yscale(self, *args, **kwargs): - if args[0] != 'linear': - raise NotImplementedError - - # Prevent the user from applying scales to one or both of the - # axes. In this particular case, scaling the axes wouldn't make - # sense, so we don't allow it. - set_xscale = set_yscale - - # Prevent the user from changing the axes limits. In our case, we - # want to display the whole sphere all the time, so we override - # set_xlim and set_ylim to ignore any input. This also applies to - # interactive panning and zooming in the GUI interfaces. - def set_xlim(self, *args, **kwargs): - raise TypeError("It is not possible to change axes limits " - "for geographic projections. Please consider " - "using Basemap or Cartopy.") - - set_ylim = set_xlim - - def format_coord(self, lon, lat): - """ - Override this method to change how the values are displayed in - the status bar. - - In this case, we want them to be displayed in degrees N/S/E/W. - """ - lon, lat = np.rad2deg([lon, lat]) - if lat >= 0.0: - ns = 'N' - else: - ns = 'S' - if lon >= 0.0: - ew = 'E' - else: - ew = 'W' - return ('%f\N{DEGREE SIGN}%s, %f\N{DEGREE SIGN}%s' - % (abs(lat), ns, abs(lon), ew)) - - def set_longitude_grid(self, degrees): - """ - Set the number of degrees between each longitude grid. - - This is an example method that is specific to this projection - class -- it provides a more convenient interface to set the - ticking than set_xticks would. - """ - # Skip -180 and 180, which are the fixed limits. - grid = np.arange(-180 + degrees, 180, degrees) - self.xaxis.set_major_locator(FixedLocator(np.deg2rad(grid))) - self.xaxis.set_major_formatter(self.ThetaFormatter(degrees)) - - def set_latitude_grid(self, degrees): - """ - Set the number of degrees between each longitude grid. - - This is an example method that is specific to this projection - class -- it provides a more convenient interface than - set_yticks would. - """ - # Skip -90 and 90, which are the fixed limits. - grid = np.arange(-90 + degrees, 90, degrees) - self.yaxis.set_major_locator(FixedLocator(np.deg2rad(grid))) - self.yaxis.set_major_formatter(self.ThetaFormatter(degrees)) - - def set_longitude_grid_ends(self, degrees): - """ - Set the latitude(s) at which to stop drawing the longitude grids. - - Often, in geographic projections, you wouldn't want to draw - longitude gridlines near the poles. This allows the user to - specify the degree at which to stop drawing longitude grids. - - This is an example method that is specific to this projection - class -- it provides an interface to something that has no - analogy in the base Axes class. - """ - self._longitude_cap = np.deg2rad(degrees) - self._xaxis_pretransform \ - .clear() \ - .scale(1.0, self._longitude_cap * 2.0) \ - .translate(0.0, -self._longitude_cap) - - def get_data_ratio(self): - """ - Return the aspect ratio of the data itself. - - This method should be overridden by any Axes that have a - fixed data ratio. - """ - return 1.0 - - # Interactive panning and zooming is not supported with this projection, - # so we override all of the following methods to disable it. - def can_zoom(self): - """ - Return *True* if this axes supports the zoom box button functionality. - This axes object does not support interactive zoom box. - """ - return False - - def can_pan(self): - """ - Return *True* if this axes supports the pan/zoom button functionality. - This axes object does not support interactive pan/zoom. - """ - return False - - def start_pan(self, x, y, button): - pass - - def end_pan(self): - pass - - def drag_pan(self, button, key, x, y): - pass - - -class HammerAxes(GeoAxes): - """ - A custom class for the Aitoff-Hammer projection, an equal-area map - projection. - - https://en.wikipedia.org/wiki/Hammer_projection - """ - - # The projection must specify a name. This will be used by the - # user to select the projection, - # i.e. ``subplot(111, projection='custom_hammer')``. - name = 'custom_hammer' - - class HammerTransform(Transform): - """ - The base Hammer transform. - """ - input_dims = 2 - output_dims = 2 - is_separable = False - - def __init__(self, resolution): - """ - Create a new Hammer transform. Resolution is the number of steps - to interpolate between each input line segment to approximate its - path in curved Hammer space. - """ - Transform.__init__(self) - self._resolution = resolution - - def transform_non_affine(self, ll): - longitude, latitude = ll.T - - # Pre-compute some values - half_long = longitude / 2 - cos_latitude = np.cos(latitude) - sqrt2 = np.sqrt(2) - - alpha = np.sqrt(1 + cos_latitude * np.cos(half_long)) - x = (2 * sqrt2) * (cos_latitude * np.sin(half_long)) / alpha - y = (sqrt2 * np.sin(latitude)) / alpha - return np.column_stack([x, y]) - - def transform_path_non_affine(self, path): - # vertices = path.vertices - ipath = path.interpolated(self._resolution) - return Path(self.transform(ipath.vertices), ipath.codes) - - def inverted(self): - return HammerAxes.InvertedHammerTransform(self._resolution) - - class InvertedHammerTransform(Transform): - input_dims = 2 - output_dims = 2 - is_separable = False - - def __init__(self, resolution): - Transform.__init__(self) - self._resolution = resolution - - def transform_non_affine(self, xy): - x, y = xy.T - z = np.sqrt(1 - (x / 4) ** 2 - (y / 2) ** 2) - longitude = 2 * np.arctan((z * x) / (2 * (2 * z ** 2 - 1))) - latitude = np.arcsin(y*z) - return np.column_stack([longitude, latitude]) - - def inverted(self): - return HammerAxes.HammerTransform(self._resolution) - - def __init__(self, *args, **kwargs): - self._longitude_cap = np.pi / 2.0 - GeoAxes.__init__(self, *args, **kwargs) - self.set_aspect(0.5, adjustable='box', anchor='C') - self.cla() - - def _get_core_transform(self, resolution): - return self.HammerTransform(resolution) - - -# Now register the projection with Matplotlib so the user can select it. -register_projection(HammerAxes) - - -if __name__ == '__main__': - import matplotlib.pyplot as plt - # Now make a simple example using the custom projection. - plt.subplot(111, projection="custom_hammer") - p = plt.plot([-1, 1, 1], [-1, -1, 1], "o-") - plt.grid(True) - - plt.show() diff --git a/_downloads/fd94874758ed4d18b291291929a67181/polys3d.ipynb b/_downloads/fd94874758ed4d18b291291929a67181/polys3d.ipynb deleted file mode 120000 index 81fe0fe89a2..00000000000 --- a/_downloads/fd94874758ed4d18b291291929a67181/polys3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fd94874758ed4d18b291291929a67181/polys3d.ipynb \ No newline at end of file diff --git a/_downloads/fd9acfdbb45f341d3bb04199f0868a38/colormap-manipulation.ipynb b/_downloads/fd9acfdbb45f341d3bb04199f0868a38/colormap-manipulation.ipynb deleted file mode 100644 index 1d805df1328..00000000000 --- a/_downloads/fd9acfdbb45f341d3bb04199f0868a38/colormap-manipulation.ipynb +++ /dev/null @@ -1,234 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n********************************\nCreating Colormaps in Matplotlib\n********************************\n\nMatplotlib has a number of built-in colormaps accessible via\n`.matplotlib.cm.get_cmap`. There are also external libraries like\npalettable_ that have many extra colormaps.\n\n\nHowever, we often want to create or manipulate colormaps in Matplotlib.\nThis can be done using the class `.ListedColormap` and a Nx4 numpy array of\nvalues between 0 and 1 to represent the RGBA values of the colormap. There\nis also a `.LinearSegmentedColormap` class that allows colormaps to be\nspecified with a few anchor points defining segments, and linearly\ninterpolating between the anchor points.\n\nGetting colormaps and accessing their values\n============================================\n\nFirst, getting a named colormap, most of which are listed in\n:doc:`/tutorials/colors/colormaps` requires the use of\n`.matplotlib.cm.get_cmap`, which returns a\n:class:`.matplotlib.colors.ListedColormap` object. The second argument gives\nthe size of the list of colors used to define the colormap, and below we\nuse a modest value of 12 so there are not a lot of values to look at.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib import cm\nfrom matplotlib.colors import ListedColormap, LinearSegmentedColormap\n\nviridis = cm.get_cmap('viridis', 12)\nprint(viridis)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The object ``viridis`` is a callable, that when passed a float between\n0 and 1 returns an RGBA value from the colormap:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(viridis(0.56))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The list of colors that comprise the colormap can be directly accessed using\nthe ``colors`` property,\nor it can be accessed indirectly by calling ``viridis`` with an array\nof values matching the length of the colormap. Note that the returned list\nis in the form of an RGBA Nx4 array, where N is the length of the colormap.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print('viridis.colors', viridis.colors)\nprint('viridis(range(12))', viridis(range(12)))\nprint('viridis(np.linspace(0, 1, 12))', viridis(np.linspace(0, 1, 12)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The colormap is a lookup table, so \"oversampling\" the colormap returns\nnearest-neighbor interpolation (note the repeated colors in the list below)\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print('viridis(np.linspace(0, 1, 15))', viridis(np.linspace(0, 1, 15)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating listed colormaps\n=========================\n\nThis is essential the inverse operation of the above where we supply a\nNx4 numpy array with all values between 0 and 1,\nto `.ListedColormap` to make a new colormap. This means that\nany numpy operations that we can do on a Nx4 array make carpentry of\nnew colormaps from existing colormaps quite straight forward.\n\nSuppose we want to make the first 25 entries of a 256-length \"viridis\"\ncolormap pink for some reason:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "viridis = cm.get_cmap('viridis', 256)\nnewcolors = viridis(np.linspace(0, 1, 256))\npink = np.array([248/256, 24/256, 148/256, 1])\nnewcolors[:25, :] = pink\nnewcmp = ListedColormap(newcolors)\n\n\ndef plot_examples(cms):\n \"\"\"\n helper function to plot two colormaps\n \"\"\"\n np.random.seed(19680801)\n data = np.random.randn(30, 30)\n\n fig, axs = plt.subplots(1, 2, figsize=(6, 3), constrained_layout=True)\n for [ax, cmap] in zip(axs, cms):\n psm = ax.pcolormesh(data, cmap=cmap, rasterized=True, vmin=-4, vmax=4)\n fig.colorbar(psm, ax=ax)\n plt.show()\n\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can easily reduce the dynamic range of a colormap; here we choose the\nmiddle 0.5 of the colormap. However, we need to interpolate from a larger\ncolormap, otherwise the new colormap will have repeated values.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "viridisBig = cm.get_cmap('viridis', 512)\nnewcmp = ListedColormap(viridisBig(np.linspace(0.25, 0.75, 256)))\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "and we can easily concatenate two colormaps:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "top = cm.get_cmap('Oranges_r', 128)\nbottom = cm.get_cmap('Blues', 128)\n\nnewcolors = np.vstack((top(np.linspace(0, 1, 128)),\n bottom(np.linspace(0, 1, 128))))\nnewcmp = ListedColormap(newcolors, name='OrangeBlue')\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Of course we need not start from a named colormap, we just need to create\nthe Nx4 array to pass to `.ListedColormap`. Here we create a\nbrown colormap that goes to white....\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "N = 256\nvals = np.ones((N, 4))\nvals[:, 0] = np.linspace(90/256, 1, N)\nvals[:, 1] = np.linspace(39/256, 1, N)\nvals[:, 2] = np.linspace(41/256, 1, N)\nnewcmp = ListedColormap(vals)\nplot_examples([viridis, newcmp])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating linear segmented colormaps\n===================================\n\n`.LinearSegmentedColormap` class specifies colormaps using anchor points\nbetween which RGB(A) values are interpolated.\n\nThe format to specify these colormaps allows discontinuities at the anchor\npoints. Each anchor point is specified as a row in a matrix of the\nform ``[x[i] yleft[i] yright[i]]``, where ``x[i]`` is the anchor, and\n``yleft[i]`` and ``yright[i]`` are the values of the color on either\nside of the anchor point.\n\nIf there are no discontinuities, then ``yleft[i]=yright[i]``:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cdict = {'red': [[0.0, 0.0, 0.0],\n [0.5, 1.0, 1.0],\n [1.0, 1.0, 1.0]],\n 'green': [[0.0, 0.0, 0.0],\n [0.25, 0.0, 0.0],\n [0.75, 1.0, 1.0],\n [1.0, 1.0, 1.0]],\n 'blue': [[0.0, 0.0, 0.0],\n [0.5, 0.0, 0.0],\n [1.0, 1.0, 1.0]]}\n\n\ndef plot_linearmap(cdict):\n newcmp = LinearSegmentedColormap('testCmap', segmentdata=cdict, N=256)\n rgba = newcmp(np.linspace(0, 1, 256))\n fig, ax = plt.subplots(figsize=(4, 3), constrained_layout=True)\n col = ['r', 'g', 'b']\n for xx in [0.25, 0.5, 0.75]:\n ax.axvline(xx, color='0.7', linestyle='--')\n for i in range(3):\n ax.plot(np.arange(256)/256, rgba[:, i], color=col[i])\n ax.set_xlabel('index')\n ax.set_ylabel('RGB')\n plt.show()\n\nplot_linearmap(cdict)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In order to make a discontinuity at an anchor point, the third column is\ndifferent than the second. The matrix for each of \"red\", \"green\", \"blue\",\nand optionally \"alpha\" is set up as::\n\n cdict['red'] = [...\n [x[i] yleft[i] yright[i]],\n [x[i+1] yleft[i+1] yright[i+1]],\n ...]\n\nand for values passed to the colormap between ``x[i]`` and ``x[i+1]``,\nthe interpolation is between ``yright[i]`` and ``yleft[i+1]``.\n\nIn the example below there is a discontinuity in red at 0.5. The\ninterpolation between 0 and 0.5 goes from 0.3 to 1, and between 0.5 and 1\nit goes from 0.9 to 1. Note that red[0, 1], and red[2, 2] are both\nsuperfluous to the interpolation because red[0, 1] is the value to the\nleft of 0, and red[2, 2] is the value to the right of 1.0.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "cdict['red'] = [[0.0, 0.0, 0.3],\n [0.5, 1.0, 0.9],\n [1.0, 1.0, 1.0]]\nplot_linearmap(cdict)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axes.Axes.pcolormesh\nmatplotlib.figure.Figure.colorbar\nmatplotlib.colors\nmatplotlib.colors.LinearSegmentedColormap\nmatplotlib.colors.ListedColormap\nmatplotlib.cm\nmatplotlib.cm.get_cmap" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fd9dec00b04eea6a52184694cac6b0e3/anchored_box03.py b/_downloads/fd9dec00b04eea6a52184694cac6b0e3/anchored_box03.py deleted file mode 120000 index 37d8b9e19c7..00000000000 --- a/_downloads/fd9dec00b04eea6a52184694cac6b0e3/anchored_box03.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fd9dec00b04eea6a52184694cac6b0e3/anchored_box03.py \ No newline at end of file diff --git a/_downloads/fda9590d6d889480290ae5079e35f533/rasterization_demo.ipynb b/_downloads/fda9590d6d889480290ae5079e35f533/rasterization_demo.ipynb deleted file mode 120000 index b7bab533d25..00000000000 --- a/_downloads/fda9590d6d889480290ae5079e35f533/rasterization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fda9590d6d889480290ae5079e35f533/rasterization_demo.ipynb \ No newline at end of file diff --git a/_downloads/fdabec98cab7afda40efbdf374b5a1f4/surface3d.ipynb b/_downloads/fdabec98cab7afda40efbdf374b5a1f4/surface3d.ipynb deleted file mode 120000 index 3faae33e368..00000000000 --- a/_downloads/fdabec98cab7afda40efbdf374b5a1f4/surface3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fdabec98cab7afda40efbdf374b5a1f4/surface3d.ipynb \ No newline at end of file diff --git a/_downloads/fdada0861dadd53d324a56519411fe35/animate_decay.ipynb b/_downloads/fdada0861dadd53d324a56519411fe35/animate_decay.ipynb deleted file mode 120000 index fc2c7134ac3..00000000000 --- a/_downloads/fdada0861dadd53d324a56519411fe35/animate_decay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fdada0861dadd53d324a56519411fe35/animate_decay.ipynb \ No newline at end of file diff --git a/_downloads/fdb798306d10eca4319ae9e2198079ca/text_rotation_relative_to_line.py b/_downloads/fdb798306d10eca4319ae9e2198079ca/text_rotation_relative_to_line.py deleted file mode 120000 index b6fba8fa67d..00000000000 --- a/_downloads/fdb798306d10eca4319ae9e2198079ca/text_rotation_relative_to_line.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fdb798306d10eca4319ae9e2198079ca/text_rotation_relative_to_line.py \ No newline at end of file diff --git a/_downloads/fdb8f688c89626c24e20eae406d450d5/contourf_demo.py b/_downloads/fdb8f688c89626c24e20eae406d450d5/contourf_demo.py deleted file mode 120000 index 2cbe5b19b6e..00000000000 --- a/_downloads/fdb8f688c89626c24e20eae406d450d5/contourf_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fdb8f688c89626c24e20eae406d450d5/contourf_demo.py \ No newline at end of file diff --git a/_downloads/fdbbfe2cf3ac160cadfa738074aa5677/mri_demo.ipynb b/_downloads/fdbbfe2cf3ac160cadfa738074aa5677/mri_demo.ipynb deleted file mode 100644 index b83f4a5c3f7..00000000000 --- a/_downloads/fdbbfe2cf3ac160cadfa738074aa5677/mri_demo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# MRI\n\n\nThis example illustrates how to read an image (of an MRI) into a NumPy\narray, and display it in greyscale using `imshow`.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport matplotlib.cbook as cbook\nimport numpy as np\n\n\n# Data are 256x256 16 bit integers.\nwith cbook.get_sample_data('s1045.ima.gz') as dfile:\n im = np.frombuffer(dfile.read(), np.uint16).reshape((256, 256))\n\nfig, ax = plt.subplots(num=\"MRI_demo\")\nax.imshow(im, cmap=\"gray\")\nax.axis('off')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fdc4e2c9d927dd374dc2aeb528f01c23/gallery_jupyter.zip b/_downloads/fdc4e2c9d927dd374dc2aeb528f01c23/gallery_jupyter.zip deleted file mode 120000 index d50c965c21d..00000000000 --- a/_downloads/fdc4e2c9d927dd374dc2aeb528f01c23/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../../3.2.0/_downloads/fdc4e2c9d927dd374dc2aeb528f01c23/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/fddf088f45f8a3495faac209c70cb98d/broken_barh.ipynb b/_downloads/fddf088f45f8a3495faac209c70cb98d/broken_barh.ipynb deleted file mode 100644 index f9e6b2af073..00000000000 --- a/_downloads/fddf088f45f8a3495faac209c70cb98d/broken_barh.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Broken Barh\n\n\nMake a \"broken\" horizontal bar plot, i.e., one with gaps\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfig, ax = plt.subplots()\nax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue')\nax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9),\n facecolors=('tab:orange', 'tab:green', 'tab:red'))\nax.set_ylim(5, 35)\nax.set_xlim(0, 200)\nax.set_xlabel('seconds since start')\nax.set_yticks([15, 25])\nax.set_yticklabels(['Bill', 'Jim'])\nax.grid(True)\nax.annotate('race interrupted', (61, 25),\n xytext=(0.8, 0.9), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n fontsize=16,\n horizontalalignment='right', verticalalignment='top')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fde1835ff37c6ebc175b29489724b351/radian_demo.ipynb b/_downloads/fde1835ff37c6ebc175b29489724b351/radian_demo.ipynb deleted file mode 120000 index 13984d701b2..00000000000 --- a/_downloads/fde1835ff37c6ebc175b29489724b351/radian_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fde1835ff37c6ebc175b29489724b351/radian_demo.ipynb \ No newline at end of file diff --git a/_downloads/fde1b0cc7ccdb62e1e517958c3935a66/pcolor_demo.ipynb b/_downloads/fde1b0cc7ccdb62e1e517958c3935a66/pcolor_demo.ipynb deleted file mode 120000 index 7d6a1fc88b6..00000000000 --- a/_downloads/fde1b0cc7ccdb62e1e517958c3935a66/pcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fde1b0cc7ccdb62e1e517958c3935a66/pcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/fde29c78b08796b9b4556c1199f96026/anchored_artists.ipynb b/_downloads/fde29c78b08796b9b4556c1199f96026/anchored_artists.ipynb deleted file mode 120000 index 7ea11f3ad23..00000000000 --- a/_downloads/fde29c78b08796b9b4556c1199f96026/anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fde29c78b08796b9b4556c1199f96026/anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/fde850dea1abf6e75d5347e9add4f093/custom_scale.ipynb b/_downloads/fde850dea1abf6e75d5347e9add4f093/custom_scale.ipynb deleted file mode 120000 index 134e6088fff..00000000000 --- a/_downloads/fde850dea1abf6e75d5347e9add4f093/custom_scale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fde850dea1abf6e75d5347e9add4f093/custom_scale.ipynb \ No newline at end of file diff --git a/_downloads/fde9bd029a92af94ba890e34227a6c2d/wire3d_animation_sgskip.py b/_downloads/fde9bd029a92af94ba890e34227a6c2d/wire3d_animation_sgskip.py deleted file mode 100644 index 4e727817264..00000000000 --- a/_downloads/fde9bd029a92af94ba890e34227a6c2d/wire3d_animation_sgskip.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -========================== -Rotating 3D wireframe plot -========================== - -A very simple 'animation' of a 3D plot. See also rotate_axes3d_demo. - -(This example is skipped when building the documentation gallery because it -intentionally takes a long time to run) -""" - - -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - -import matplotlib.pyplot as plt -import numpy as np -import time - - -def generate(X, Y, phi): - ''' - Generates Z data for the points in the X, Y meshgrid and parameter phi. - ''' - R = 1 - np.sqrt(X**2 + Y**2) - return np.cos(2 * np.pi * X + phi) * R - - -fig = plt.figure() -ax = fig.add_subplot(111, projection='3d') - -# Make the X, Y meshgrid. -xs = np.linspace(-1, 1, 50) -ys = np.linspace(-1, 1, 50) -X, Y = np.meshgrid(xs, ys) - -# Set the z axis limits so they aren't recalculated each frame. -ax.set_zlim(-1, 1) - -# Begin plotting. -wframe = None -tstart = time.time() -for phi in np.linspace(0, 180. / np.pi, 100): - # If a line collection is already remove it before drawing. - if wframe: - ax.collections.remove(wframe) - - # Plot the new wireframe and pause briefly before continuing. - Z = generate(X, Y, phi) - wframe = ax.plot_wireframe(X, Y, Z, rstride=2, cstride=2) - plt.pause(.001) - -print('Average FPS: %f' % (100 / (time.time() - tstart))) diff --git a/_downloads/fdf3dd2d2ad3325942045abadb947640/contour_manual.ipynb b/_downloads/fdf3dd2d2ad3325942045abadb947640/contour_manual.ipynb deleted file mode 100644 index 5426c80bb9c..00000000000 --- a/_downloads/fdf3dd2d2ad3325942045abadb947640/contour_manual.ipynb +++ /dev/null @@ -1,119 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Manual Contour\n\n\nExample of displaying your own contour lines and polygons using ContourSet.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nfrom matplotlib.contour import ContourSet\nimport matplotlib.cm as cm" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Contour lines for each level are a list/tuple of polygons.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "lines0 = [[[0, 0], [0, 4]]]\nlines1 = [[[2, 0], [1, 2], [1, 3]]]\nlines2 = [[[3, 0], [3, 2]], [[3, 3], [3, 4]]] # Note two lines." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Filled contours between two levels are also a list/tuple of polygons.\nPoints can be ordered clockwise or anticlockwise.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "filled01 = [[[0, 0], [0, 4], [1, 3], [1, 2], [2, 0]]]\nfilled12 = [[[2, 0], [3, 0], [3, 2], [1, 3], [1, 2]], # Note two polygons.\n [[1, 4], [3, 4], [3, 3]]]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\n\n# Filled contours using filled=True.\ncs = ContourSet(ax, [0, 1, 2], [filled01, filled12], filled=True, cmap=cm.bone)\ncbar = fig.colorbar(cs)\n\n# Contour lines (non-filled).\nlines = ContourSet(\n ax, [0, 1, 2], [lines0, lines1, lines2], cmap=cm.cool, linewidths=3)\ncbar.add_lines(lines)\n\nax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 4.5),\n title='User-specified contours')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Multiple filled contour lines can be specified in a single list of polygon\nvertices along with a list of vertex kinds (code types) as described in the\nPath class. This is particularly useful for polygons with holes.\nHere a code type of 1 is a MOVETO, and 2 is a LINETO.\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "fig, ax = plt.subplots()\nfilled01 = [[[0, 0], [3, 0], [3, 3], [0, 3], [1, 1], [1, 2], [2, 2], [2, 1]]]\nkinds01 = [[1, 2, 2, 2, 1, 2, 2, 2]]\ncs = ContourSet(ax, [0, 1], [filled01], [kinds01], filled=True)\ncbar = fig.colorbar(cs)\n\nax.set(xlim=(-0.5, 3.5), ylim=(-0.5, 3.5),\n title='User specified filled contours with holes')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe091ee9bb000cd450c8be81a4ea0fb5/psd_demo.ipynb b/_downloads/fe091ee9bb000cd450c8be81a4ea0fb5/psd_demo.ipynb deleted file mode 120000 index b90922b2636..00000000000 --- a/_downloads/fe091ee9bb000cd450c8be81a4ea0fb5/psd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fe091ee9bb000cd450c8be81a4ea0fb5/psd_demo.ipynb \ No newline at end of file diff --git a/_downloads/fe0d2f6d6744422c5f8bc0c59f81e390/pyplot_scales.ipynb b/_downloads/fe0d2f6d6744422c5f8bc0c59f81e390/pyplot_scales.ipynb deleted file mode 100644 index 3955561cd52..00000000000 --- a/_downloads/fe0d2f6d6744422c5f8bc0c59f81e390/pyplot_scales.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Pyplot Scales\n\n\nCreate plots on different scales. Here a linear, a logarithmic, a symmetric\nlogarithmic and a logit scale are shown. For further examples also see the\n`scales_examples` section of the gallery.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom matplotlib.ticker import NullFormatter # useful for `logit` scale\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n# make up some data in the interval ]0, 1[\ny = np.random.normal(loc=0.5, scale=0.4, size=1000)\ny = y[(y > 0) & (y < 1)]\ny.sort()\nx = np.arange(len(y))\n\n# plot with various axes scales\nplt.figure()\n\n# linear\nplt.subplot(221)\nplt.plot(x, y)\nplt.yscale('linear')\nplt.title('linear')\nplt.grid(True)\n\n\n# log\nplt.subplot(222)\nplt.plot(x, y)\nplt.yscale('log')\nplt.title('log')\nplt.grid(True)\n\n\n# symmetric log\nplt.subplot(223)\nplt.plot(x, y - y.mean())\nplt.yscale('symlog', linthreshy=0.01)\nplt.title('symlog')\nplt.grid(True)\n\n# logit\nplt.subplot(224)\nplt.plot(x, y)\nplt.yscale('logit')\nplt.title('logit')\nplt.grid(True)\n# Format the minor tick labels of the y-axis into empty strings with\n# `NullFormatter`, to avoid cumbering the axis with too many labels.\nplt.gca().yaxis.set_minor_formatter(NullFormatter())\n# Adjust the subplot layout, because the logit one may take more space\n# than usual, due to y-tick labels like \"1 - 10^{-3}\"\nplt.subplots_adjust(top=0.92, bottom=0.08, left=0.10, right=0.95, hspace=0.25,\n wspace=0.35)\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.pyplot.subplot\nmatplotlib.pyplot.subplots_adjust\nmatplotlib.pyplot.gca\nmatplotlib.pyplot.yscale\nmatplotlib.ticker.NullFormatter\nmatplotlib.axis.Axis.set_minor_formatter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe10b9bbd5b756dcc2e43472f664e62f/plotfile_demo.ipynb b/_downloads/fe10b9bbd5b756dcc2e43472f664e62f/plotfile_demo.ipynb deleted file mode 120000 index 7f668339b80..00000000000 --- a/_downloads/fe10b9bbd5b756dcc2e43472f664e62f/plotfile_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fe10b9bbd5b756dcc2e43472f664e62f/plotfile_demo.ipynb \ No newline at end of file diff --git a/_downloads/fe1578d8f73a325585aeb3d2e2f5d56a/image_nonuniform.ipynb b/_downloads/fe1578d8f73a325585aeb3d2e2f5d56a/image_nonuniform.ipynb deleted file mode 120000 index b95a4d593d0..00000000000 --- a/_downloads/fe1578d8f73a325585aeb3d2e2f5d56a/image_nonuniform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fe1578d8f73a325585aeb3d2e2f5d56a/image_nonuniform.ipynb \ No newline at end of file diff --git a/_downloads/fe19a44ac72cec837f28200e33ff16e1/text_alignment.ipynb b/_downloads/fe19a44ac72cec837f28200e33ff16e1/text_alignment.ipynb deleted file mode 120000 index 71229c64ad5..00000000000 --- a/_downloads/fe19a44ac72cec837f28200e33ff16e1/text_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fe19a44ac72cec837f28200e33ff16e1/text_alignment.ipynb \ No newline at end of file diff --git a/_downloads/fe1ec0ec329cbc3eda3236f21d2d3926/affine_image.py b/_downloads/fe1ec0ec329cbc3eda3236f21d2d3926/affine_image.py deleted file mode 100644 index fadefa089e0..00000000000 --- a/_downloads/fe1ec0ec329cbc3eda3236f21d2d3926/affine_image.py +++ /dev/null @@ -1,82 +0,0 @@ -""" -============================ -Affine transform of an image -============================ - - -Prepending an affine transformation (:class:`~.transforms.Affine2D`) -to the :ref:`data transform ` -of an image allows to manipulate the image's shape and orientation. -This is an example of the concept of -:ref:`transform chaining `. - -For the backends that support draw_image with optional affine -transform (e.g., agg, ps backend), the image of the output should -have its boundary match the dashed yellow rectangle. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.transforms as mtransforms - - -def get_image(): - delta = 0.25 - x = y = np.arange(-3.0, 3.0, delta) - X, Y = np.meshgrid(x, y) - Z1 = np.exp(-X**2 - Y**2) - Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) - Z = (Z1 - Z2) - return Z - - -def do_plot(ax, Z, transform): - im = ax.imshow(Z, interpolation='none', - origin='lower', - extent=[-2, 4, -3, 2], clip_on=True) - - trans_data = transform + ax.transData - im.set_transform(trans_data) - - # display intended extent of the image - x1, x2, y1, y2 = im.get_extent() - ax.plot([x1, x2, x2, x1, x1], [y1, y1, y2, y2, y1], "y--", - transform=trans_data) - ax.set_xlim(-5, 5) - ax.set_ylim(-4, 4) - - -# prepare image and figure -fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2) -Z = get_image() - -# image rotation -do_plot(ax1, Z, mtransforms.Affine2D().rotate_deg(30)) - -# image skew -do_plot(ax2, Z, mtransforms.Affine2D().skew_deg(30, 15)) - -# scale and reflection -do_plot(ax3, Z, mtransforms.Affine2D().scale(-1, .5)) - -# everything and a translation -do_plot(ax4, Z, mtransforms.Affine2D(). - rotate_deg(30).skew_deg(30, 15).scale(-1, .5).translate(.5, -1)) - -plt.show() - - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods and classes is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.imshow -matplotlib.pyplot.imshow -matplotlib.transforms.Affine2D diff --git a/_downloads/fe22cf6c6544e1c4094edd25df71727d/simple_rgb.py b/_downloads/fe22cf6c6544e1c4094edd25df71727d/simple_rgb.py deleted file mode 120000 index ebd788c7277..00000000000 --- a/_downloads/fe22cf6c6544e1c4094edd25df71727d/simple_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fe22cf6c6544e1c4094edd25df71727d/simple_rgb.py \ No newline at end of file diff --git a/_downloads/fe269de4e7bd5cbd1faf60039a2ecd9e/demo_floating_axis.ipynb b/_downloads/fe269de4e7bd5cbd1faf60039a2ecd9e/demo_floating_axis.ipynb deleted file mode 100644 index 6b1e3a9cf91..00000000000 --- a/_downloads/fe269de4e7bd5cbd1faf60039a2ecd9e/demo_floating_axis.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Demo Floating Axis\n\n\nAxis within rectangular frame\n\nThe following code demonstrates how to put a floating polar curve within a\nrectangular box. In order to get a better sense of polar curves, please look at\ndemo_curvelinear_grid.py.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist.angle_helper as angle_helper\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.transforms import Affine2D\nfrom mpl_toolkits.axisartist import SubplotHost\nfrom mpl_toolkits.axisartist import GridHelperCurveLinear\n\n\ndef curvelinear_test2(fig):\n \"\"\"Polar projection, but in a rectangular box.\n \"\"\"\n # see demo_curvelinear_grid.py for details\n tr = Affine2D().scale(np.pi / 180., 1.) + PolarAxes.PolarTransform()\n\n extreme_finder = angle_helper.ExtremeFinderCycle(20,\n 20,\n lon_cycle=360,\n lat_cycle=None,\n lon_minmax=None,\n lat_minmax=(0,\n np.inf),\n )\n\n grid_locator1 = angle_helper.LocatorDMS(12)\n\n tick_formatter1 = angle_helper.FormatterDMS()\n\n grid_helper = GridHelperCurveLinear(tr,\n extreme_finder=extreme_finder,\n grid_locator1=grid_locator1,\n tick_formatter1=tick_formatter1\n )\n\n ax1 = SubplotHost(fig, 1, 1, 1, grid_helper=grid_helper)\n\n fig.add_subplot(ax1)\n\n # Now creates floating axis\n\n # floating axis whose first coordinate (theta) is fixed at 60\n ax1.axis[\"lat\"] = axis = ax1.new_floating_axis(0, 60)\n axis.label.set_text(r\"$\\theta = 60^{\\circ}$\")\n axis.label.set_visible(True)\n\n # floating axis whose second coordinate (r) is fixed at 6\n ax1.axis[\"lon\"] = axis = ax1.new_floating_axis(1, 6)\n axis.label.set_text(r\"$r = 6$\")\n\n ax1.set_aspect(1.)\n ax1.set_xlim(-5, 12)\n ax1.set_ylim(-5, 10)\n\n ax1.grid(True)\n\n\nfig = plt.figure(figsize=(5, 5))\ncurvelinear_test2(fig)\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe275893826cca6ca29255bbf0c38c99/step_demo.py b/_downloads/fe275893826cca6ca29255bbf0c38c99/step_demo.py deleted file mode 100644 index 12006b197e5..00000000000 --- a/_downloads/fe275893826cca6ca29255bbf0c38c99/step_demo.py +++ /dev/null @@ -1,44 +0,0 @@ -""" -========= -Step Demo -========= - -This example demonstrates the use of `.pyplot.step` for piece-wise constant -curves. In particular, it illustrates the effect of the parameter *where* -on the step position. - -The circular markers created with `.pyplot.plot` show the actual data -positions so that it's easier to see the effect of *where*. - -""" -import numpy as np -import matplotlib.pyplot as plt - -x = np.arange(14) -y = np.sin(x / 2) - -plt.step(x, y + 2, label='pre (default)') -plt.plot(x, y + 2, 'C0o', alpha=0.5) - -plt.step(x, y + 1, where='mid', label='mid') -plt.plot(x, y + 1, 'C1o', alpha=0.5) - -plt.step(x, y, where='post', label='post') -plt.plot(x, y, 'C2o', alpha=0.5) - -plt.legend(title='Parameter where:') -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.step -matplotlib.pyplot.step diff --git a/_downloads/fe293dd56b785b5ec8b070a6fb7a2871/plot_streamplot.ipynb b/_downloads/fe293dd56b785b5ec8b070a6fb7a2871/plot_streamplot.ipynb deleted file mode 120000 index fe6c03d20c9..00000000000 --- a/_downloads/fe293dd56b785b5ec8b070a6fb7a2871/plot_streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fe293dd56b785b5ec8b070a6fb7a2871/plot_streamplot.ipynb \ No newline at end of file diff --git a/_downloads/fe2e39108b3ce6b3bbf8ef498df15849/anatomy.py b/_downloads/fe2e39108b3ce6b3bbf8ef498df15849/anatomy.py deleted file mode 120000 index ceb39403186..00000000000 --- a/_downloads/fe2e39108b3ce6b3bbf8ef498df15849/anatomy.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fe2e39108b3ce6b3bbf8ef498df15849/anatomy.py \ No newline at end of file diff --git a/_downloads/fe377605662210071f69aab822430ffd/custom_scale.ipynb b/_downloads/fe377605662210071f69aab822430ffd/custom_scale.ipynb deleted file mode 120000 index 2d624eb3795..00000000000 --- a/_downloads/fe377605662210071f69aab822430ffd/custom_scale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fe377605662210071f69aab822430ffd/custom_scale.ipynb \ No newline at end of file diff --git a/_downloads/fe3aae01c56bfe2fca079e7fc09daddc/patheffects_guide.py b/_downloads/fe3aae01c56bfe2fca079e7fc09daddc/patheffects_guide.py deleted file mode 120000 index bbf87d2f3fc..00000000000 --- a/_downloads/fe3aae01c56bfe2fca079e7fc09daddc/patheffects_guide.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fe3aae01c56bfe2fca079e7fc09daddc/patheffects_guide.py \ No newline at end of file diff --git a/_downloads/fe40817905dc676eb0c6e47a80abe4a0/font_file.py b/_downloads/fe40817905dc676eb0c6e47a80abe4a0/font_file.py deleted file mode 120000 index 2bb2f2a4ea6..00000000000 --- a/_downloads/fe40817905dc676eb0c6e47a80abe4a0/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fe40817905dc676eb0c6e47a80abe4a0/font_file.py \ No newline at end of file diff --git a/_downloads/fe441dfa9c49b394aa76ad5981b9b38f/quiver_demo.py b/_downloads/fe441dfa9c49b394aa76ad5981b9b38f/quiver_demo.py deleted file mode 120000 index 793da60059f..00000000000 --- a/_downloads/fe441dfa9c49b394aa76ad5981b9b38f/quiver_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fe441dfa9c49b394aa76ad5981b9b38f/quiver_demo.py \ No newline at end of file diff --git a/_downloads/fe4577864e94b3a1e4dfc6b31449ea73/spy_demos.py b/_downloads/fe4577864e94b3a1e4dfc6b31449ea73/spy_demos.py deleted file mode 120000 index eca045cfd55..00000000000 --- a/_downloads/fe4577864e94b3a1e4dfc6b31449ea73/spy_demos.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/fe4577864e94b3a1e4dfc6b31449ea73/spy_demos.py \ No newline at end of file diff --git a/_downloads/fe4a770f4001fad3e0a11b592462c4ac/fill.py b/_downloads/fe4a770f4001fad3e0a11b592462c4ac/fill.py deleted file mode 100644 index f254949cd21..00000000000 --- a/_downloads/fe4a770f4001fad3e0a11b592462c4ac/fill.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -============== -Filled polygon -============== - -`~.Axes.fill()` draws a filled polygon based based on lists of point -coordinates *x*, *y*. - -This example uses the `Koch snowflake`_ as an example polygon. - -.. _Koch snowflake: https://en.wikipedia.org/wiki/Koch_snowflake - -""" - -import numpy as np -import matplotlib.pyplot as plt - - -def koch_snowflake(order, scale=10): - """ - Return two lists x, y of point coordinates of the Koch snowflake. - - Arguments - --------- - order : int - The recursion depth. - scale : float - The extent of the snowflake (edge length of the base triangle). - """ - def _koch_snowflake_complex(order): - if order == 0: - # initial triangle - angles = np.array([0, 120, 240]) + 90 - return scale / np.sqrt(3) * np.exp(np.deg2rad(angles) * 1j) - else: - ZR = 0.5 - 0.5j * np.sqrt(3) / 3 - - p1 = _koch_snowflake_complex(order - 1) # start points - p2 = np.roll(p1, shift=-1) # end points - dp = p2 - p1 # connection vectors - - new_points = np.empty(len(p1) * 4, dtype=np.complex128) - new_points[::4] = p1 - new_points[1::4] = p1 + dp / 3 - new_points[2::4] = p1 + dp * ZR - new_points[3::4] = p1 + dp / 3 * 2 - return new_points - - points = _koch_snowflake_complex(order) - x, y = points.real, points.imag - return x, y - - -############################################################################### -# Basic usage: - -x, y = koch_snowflake(order=5) - -plt.figure(figsize=(8, 8)) -plt.axis('equal') -plt.fill(x, y) -plt.show() - -############################################################################### -# Use keyword arguments *facecolor* and *edgecolor* to modify the the colors -# of the polygon. Since the *linewidth* of the edge is 0 in the default -# Matplotlib style, we have to set it as well for the edge to become visible. - -x, y = koch_snowflake(order=2) - -fig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(9, 3), - subplot_kw={'aspect': 'equal'}) -ax1.fill(x, y) -ax2.fill(x, y, facecolor='lightsalmon', edgecolor='orangered', linewidth=3) -ax3.fill(x, y, facecolor='none', edgecolor='purple', linewidth=3) - -plt.show() - -############################################################################# -# -# ------------ -# -# References -# """""""""" -# -# The use of the following functions, methods, classes and modules is shown -# in this example: - -import matplotlib -matplotlib.axes.Axes.fill -matplotlib.pyplot.fill -matplotlib.axes.Axes.axis -matplotlib.pyplot.axis diff --git a/_downloads/fe4c82fee10a40eae27e3d6b1a55d6a9/demo_annotation_box.py b/_downloads/fe4c82fee10a40eae27e3d6b1a55d6a9/demo_annotation_box.py deleted file mode 120000 index 30d87b02e78..00000000000 --- a/_downloads/fe4c82fee10a40eae27e3d6b1a55d6a9/demo_annotation_box.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fe4c82fee10a40eae27e3d6b1a55d6a9/demo_annotation_box.py \ No newline at end of file diff --git a/_downloads/fe54da6e8068bd6dfe2ec762f8611355/whats_new_99_spines.ipynb b/_downloads/fe54da6e8068bd6dfe2ec762f8611355/whats_new_99_spines.ipynb deleted file mode 100644 index d9fb1c79455..00000000000 --- a/_downloads/fe54da6e8068bd6dfe2ec762f8611355/whats_new_99_spines.ipynb +++ /dev/null @@ -1,72 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n=====================\nWhats New 0.99 Spines\n=====================\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n\ndef adjust_spines(ax,spines):\n for loc, spine in ax.spines.items():\n if loc in spines:\n spine.set_position(('outward', 10)) # outward by 10 points\n else:\n spine.set_color('none') # don't draw spine\n\n # turn off ticks where there is no spine\n if 'left' in spines:\n ax.yaxis.set_ticks_position('left')\n else:\n # no yaxis ticks\n ax.yaxis.set_ticks([])\n\n if 'bottom' in spines:\n ax.xaxis.set_ticks_position('bottom')\n else:\n # no xaxis ticks\n ax.xaxis.set_ticks([])\n\nfig = plt.figure()\n\nx = np.linspace(0,2*np.pi,100)\ny = 2*np.sin(x)\n\nax = fig.add_subplot(2,2,1)\nax.plot(x,y)\nadjust_spines(ax,['left'])\n\nax = fig.add_subplot(2,2,2)\nax.plot(x,y)\nadjust_spines(ax,[])\n\nax = fig.add_subplot(2,2,3)\nax.plot(x,y)\nadjust_spines(ax,['left','bottom'])\n\nax = fig.add_subplot(2,2,4)\nax.plot(x,y)\nadjust_spines(ax,['bottom'])\n\nplt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------\n\nReferences\n\"\"\"\"\"\"\"\"\"\"\n\nThe use of the following functions, methods, classes and modules is shown\nin this example:\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib\nmatplotlib.axis.Axis.set_ticks\nmatplotlib.axis.XAxis.set_ticks_position\nmatplotlib.axis.YAxis.set_ticks_position\nmatplotlib.spines\nmatplotlib.spines.Spine\nmatplotlib.spines.Spine.set_color\nmatplotlib.spines.Spine.set_position" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe6f86e8770f99622a4b55477fff55aa/axis_direction_demo_step02.ipynb b/_downloads/fe6f86e8770f99622a4b55477fff55aa/axis_direction_demo_step02.ipynb deleted file mode 100644 index 6d047779a04..00000000000 --- a/_downloads/fe6f86e8770f99622a4b55477fff55aa/axis_direction_demo_step02.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Axis Direction Demo Step02\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport mpl_toolkits.axisartist as axisartist\n\n\ndef setup_axes(fig, rect):\n ax = axisartist.Subplot(fig, rect)\n fig.add_axes(ax)\n\n ax.set_ylim(-0.1, 1.5)\n ax.set_yticks([0, 1])\n\n #ax.axis[:].toggle(all=False)\n #ax.axis[:].line.set_visible(False)\n ax.axis[:].set_visible(False)\n\n ax.axis[\"x\"] = ax.new_floating_axis(1, 0.5)\n ax.axis[\"x\"].set_axisline_style(\"->\", size=1.5)\n\n return ax\n\n\nfig = plt.figure(figsize=(6, 2.5))\nfig.subplots_adjust(bottom=0.2, top=0.8)\n\nax1 = setup_axes(fig, \"121\")\nax1.axis[\"x\"].set_ticklabel_direction(\"+\")\nax1.annotate(\"ticklabel direction=$+$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nax2 = setup_axes(fig, \"122\")\nax2.axis[\"x\"].set_ticklabel_direction(\"-\")\nax2.annotate(\"ticklabel direction=$-$\", (0.5, 0), xycoords=\"axes fraction\",\n xytext=(0, -10), textcoords=\"offset points\",\n va=\"top\", ha=\"center\")\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe6fa3b85912057848ae96cd2ae1836f/broken_axis.py b/_downloads/fe6fa3b85912057848ae96cd2ae1836f/broken_axis.py deleted file mode 120000 index aafdc4a6718..00000000000 --- a/_downloads/fe6fa3b85912057848ae96cd2ae1836f/broken_axis.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fe6fa3b85912057848ae96cd2ae1836f/broken_axis.py \ No newline at end of file diff --git a/_downloads/fe72e76aab7e7d32538bf2693b30368a/animate_decay.py b/_downloads/fe72e76aab7e7d32538bf2693b30368a/animate_decay.py deleted file mode 100644 index b4b2aa091a1..00000000000 --- a/_downloads/fe72e76aab7e7d32538bf2693b30368a/animate_decay.py +++ /dev/null @@ -1,54 +0,0 @@ -""" -===== -Decay -===== - -This example showcases: -- using a generator to drive an animation, -- changing axes limits during an animation. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.animation as animation - - -def data_gen(t=0): - cnt = 0 - while cnt < 1000: - cnt += 1 - t += 0.1 - yield t, np.sin(2*np.pi*t) * np.exp(-t/10.) - - -def init(): - ax.set_ylim(-1.1, 1.1) - ax.set_xlim(0, 10) - del xdata[:] - del ydata[:] - line.set_data(xdata, ydata) - return line, - -fig, ax = plt.subplots() -line, = ax.plot([], [], lw=2) -ax.grid() -xdata, ydata = [], [] - - -def run(data): - # update the data - t, y = data - xdata.append(t) - ydata.append(y) - xmin, xmax = ax.get_xlim() - - if t >= xmax: - ax.set_xlim(xmin, 2*xmax) - ax.figure.canvas.draw() - line.set_data(xdata, ydata) - - return line, - -ani = animation.FuncAnimation(fig, run, data_gen, blit=False, interval=10, - repeat=False, init_func=init) -plt.show() diff --git a/_downloads/fe7a2921b824928bea564ca7e36849bf/colormap_normalizations_custom.py b/_downloads/fe7a2921b824928bea564ca7e36849bf/colormap_normalizations_custom.py deleted file mode 100644 index 2eb042f1f4c..00000000000 --- a/_downloads/fe7a2921b824928bea564ca7e36849bf/colormap_normalizations_custom.py +++ /dev/null @@ -1,50 +0,0 @@ -""" -============================== -Colormap Normalizations Custom -============================== - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -N = 100 -''' -Custom Norm: An example with a customized normalization. This one -uses the example above, and normalizes the negative data differently -from the positive. -''' -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] -Z1 = np.exp(-X**2 - Y**2) -Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) -Z = (Z1 - Z2) * 2 - - -# Example of making your own norm. Also see matplotlib.colors. -# From Joe Kington: This one gives two different linear ramps: -class MidpointNormalize(colors.Normalize): - def __init__(self, vmin=None, vmax=None, midpoint=None, clip=False): - self.midpoint = midpoint - colors.Normalize.__init__(self, vmin, vmax, clip) - - def __call__(self, value, clip=None): - # I'm ignoring masked values and all kinds of edge cases to make a - # simple example... - x, y = [self.vmin, self.midpoint, self.vmax], [0, 0.5, 1] - return np.ma.masked_array(np.interp(value, x, y)) - - -##### -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z, - norm=MidpointNormalize(midpoint=0.), - cmap='RdBu_r') -fig.colorbar(pcm, ax=ax[0], extend='both') - -pcm = ax[1].pcolormesh(X, Y, Z, cmap='RdBu_r', vmin=-np.max(Z)) -fig.colorbar(pcm, ax=ax[1], extend='both') - -plt.show() diff --git a/_downloads/fe7dcd06b8c8174c5412253158bbb9f3/bbox_intersect.ipynb b/_downloads/fe7dcd06b8c8174c5412253158bbb9f3/bbox_intersect.ipynb deleted file mode 100644 index 59b7ee7aa18..00000000000 --- a/_downloads/fe7dcd06b8c8174c5412253158bbb9f3/bbox_intersect.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Changing colors of lines intersecting a box\n\n\nThe lines intersecting the rectangle are colored in red, while the others\nare left as blue lines. This example showcases the `intersect_bbox` function.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.transforms import Bbox\nfrom matplotlib.path import Path\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nleft, bottom, width, height = (-1, -1, 2, 2)\nrect = plt.Rectangle((left, bottom), width, height,\n facecolor=\"black\", alpha=0.1)\n\nfig, ax = plt.subplots()\nax.add_patch(rect)\n\nbbox = Bbox.from_bounds(left, bottom, width, height)\n\nfor i in range(12):\n vertices = (np.random.random((2, 2)) - 0.5) * 6.0\n path = Path(vertices)\n if path.intersects_bbox(bbox):\n color = 'r'\n else:\n color = 'b'\n ax.plot(vertices[:, 0], vertices[:, 1], color=color)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe81358fbf717b0077200a379ea99479/basic_units.ipynb b/_downloads/fe81358fbf717b0077200a379ea99479/basic_units.ipynb deleted file mode 100644 index a8b2ceeddea..00000000000 --- a/_downloads/fe81358fbf717b0077200a379ea99479/basic_units.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Basic Units\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import math\n\nimport numpy as np\n\nimport matplotlib.units as units\nimport matplotlib.ticker as ticker\n\n\nclass ProxyDelegate(object):\n def __init__(self, fn_name, proxy_type):\n self.proxy_type = proxy_type\n self.fn_name = fn_name\n\n def __get__(self, obj, objtype=None):\n return self.proxy_type(self.fn_name, obj)\n\n\nclass TaggedValueMeta(type):\n def __init__(self, name, bases, dict):\n for fn_name in self._proxies:\n try:\n dummy = getattr(self, fn_name)\n except AttributeError:\n setattr(self, fn_name,\n ProxyDelegate(fn_name, self._proxies[fn_name]))\n\n\nclass PassThroughProxy(object):\n def __init__(self, fn_name, obj):\n self.fn_name = fn_name\n self.target = obj.proxy_target\n\n def __call__(self, *args):\n fn = getattr(self.target, self.fn_name)\n ret = fn(*args)\n return ret\n\n\nclass ConvertArgsProxy(PassThroughProxy):\n def __init__(self, fn_name, obj):\n PassThroughProxy.__init__(self, fn_name, obj)\n self.unit = obj.unit\n\n def __call__(self, *args):\n converted_args = []\n for a in args:\n try:\n converted_args.append(a.convert_to(self.unit))\n except AttributeError:\n converted_args.append(TaggedValue(a, self.unit))\n converted_args = tuple([c.get_value() for c in converted_args])\n return PassThroughProxy.__call__(self, *converted_args)\n\n\nclass ConvertReturnProxy(PassThroughProxy):\n def __init__(self, fn_name, obj):\n PassThroughProxy.__init__(self, fn_name, obj)\n self.unit = obj.unit\n\n def __call__(self, *args):\n ret = PassThroughProxy.__call__(self, *args)\n return (NotImplemented if ret is NotImplemented\n else TaggedValue(ret, self.unit))\n\n\nclass ConvertAllProxy(PassThroughProxy):\n def __init__(self, fn_name, obj):\n PassThroughProxy.__init__(self, fn_name, obj)\n self.unit = obj.unit\n\n def __call__(self, *args):\n converted_args = []\n arg_units = [self.unit]\n for a in args:\n if hasattr(a, 'get_unit') and not hasattr(a, 'convert_to'):\n # if this arg has a unit type but no conversion ability,\n # this operation is prohibited\n return NotImplemented\n\n if hasattr(a, 'convert_to'):\n try:\n a = a.convert_to(self.unit)\n except Exception:\n pass\n arg_units.append(a.get_unit())\n converted_args.append(a.get_value())\n else:\n converted_args.append(a)\n if hasattr(a, 'get_unit'):\n arg_units.append(a.get_unit())\n else:\n arg_units.append(None)\n converted_args = tuple(converted_args)\n ret = PassThroughProxy.__call__(self, *converted_args)\n if ret is NotImplemented:\n return NotImplemented\n ret_unit = unit_resolver(self.fn_name, arg_units)\n if ret_unit is NotImplemented:\n return NotImplemented\n return TaggedValue(ret, ret_unit)\n\n\nclass TaggedValue(metaclass=TaggedValueMeta):\n\n _proxies = {'__add__': ConvertAllProxy,\n '__sub__': ConvertAllProxy,\n '__mul__': ConvertAllProxy,\n '__rmul__': ConvertAllProxy,\n '__cmp__': ConvertAllProxy,\n '__lt__': ConvertAllProxy,\n '__gt__': ConvertAllProxy,\n '__len__': PassThroughProxy}\n\n def __new__(cls, value, unit):\n # generate a new subclass for value\n value_class = type(value)\n try:\n subcls = type(f'TaggedValue_of_{value_class.__name__}',\n (cls, value_class), {})\n if subcls not in units.registry:\n units.registry[subcls] = basicConverter\n return object.__new__(subcls)\n except TypeError:\n if cls not in units.registry:\n units.registry[cls] = basicConverter\n return object.__new__(cls)\n\n def __init__(self, value, unit):\n self.value = value\n self.unit = unit\n self.proxy_target = self.value\n\n def __getattribute__(self, name):\n if name.startswith('__'):\n return object.__getattribute__(self, name)\n variable = object.__getattribute__(self, 'value')\n if hasattr(variable, name) and name not in self.__class__.__dict__:\n return getattr(variable, name)\n return object.__getattribute__(self, name)\n\n def __array__(self, dtype=object):\n return np.asarray(self.value).astype(dtype)\n\n def __array_wrap__(self, array, context):\n return TaggedValue(array, self.unit)\n\n def __repr__(self):\n return 'TaggedValue({!r}, {!r})'.format(self.value, self.unit)\n\n def __str__(self):\n return str(self.value) + ' in ' + str(self.unit)\n\n def __len__(self):\n return len(self.value)\n\n def __iter__(self):\n # Return a generator expression rather than use `yield`, so that\n # TypeError is raised by iter(self) if appropriate when checking for\n # iterability.\n return (TaggedValue(inner, self.unit) for inner in self.value)\n\n def get_compressed_copy(self, mask):\n new_value = np.ma.masked_array(self.value, mask=mask).compressed()\n return TaggedValue(new_value, self.unit)\n\n def convert_to(self, unit):\n if unit == self.unit or not unit:\n return self\n try:\n new_value = self.unit.convert_value_to(self.value, unit)\n except AttributeError:\n new_value = self\n return TaggedValue(new_value, unit)\n\n def get_value(self):\n return self.value\n\n def get_unit(self):\n return self.unit\n\n\nclass BasicUnit(object):\n def __init__(self, name, fullname=None):\n self.name = name\n if fullname is None:\n fullname = name\n self.fullname = fullname\n self.conversions = dict()\n\n def __repr__(self):\n return f'BasicUnit({self.name})'\n\n def __str__(self):\n return self.fullname\n\n def __call__(self, value):\n return TaggedValue(value, self)\n\n def __mul__(self, rhs):\n value = rhs\n unit = self\n if hasattr(rhs, 'get_unit'):\n value = rhs.get_value()\n unit = rhs.get_unit()\n unit = unit_resolver('__mul__', (self, unit))\n if unit is NotImplemented:\n return NotImplemented\n return TaggedValue(value, unit)\n\n def __rmul__(self, lhs):\n return self*lhs\n\n def __array_wrap__(self, array, context):\n return TaggedValue(array, self)\n\n def __array__(self, t=None, context=None):\n ret = np.array([1])\n if t is not None:\n return ret.astype(t)\n else:\n return ret\n\n def add_conversion_factor(self, unit, factor):\n def convert(x):\n return x*factor\n self.conversions[unit] = convert\n\n def add_conversion_fn(self, unit, fn):\n self.conversions[unit] = fn\n\n def get_conversion_fn(self, unit):\n return self.conversions[unit]\n\n def convert_value_to(self, value, unit):\n conversion_fn = self.conversions[unit]\n ret = conversion_fn(value)\n return ret\n\n def get_unit(self):\n return self\n\n\nclass UnitResolver(object):\n def addition_rule(self, units):\n for unit_1, unit_2 in zip(units[:-1], units[1:]):\n if unit_1 != unit_2:\n return NotImplemented\n return units[0]\n\n def multiplication_rule(self, units):\n non_null = [u for u in units if u]\n if len(non_null) > 1:\n return NotImplemented\n return non_null[0]\n\n op_dict = {\n '__mul__': multiplication_rule,\n '__rmul__': multiplication_rule,\n '__add__': addition_rule,\n '__radd__': addition_rule,\n '__sub__': addition_rule,\n '__rsub__': addition_rule}\n\n def __call__(self, operation, units):\n if operation not in self.op_dict:\n return NotImplemented\n\n return self.op_dict[operation](self, units)\n\n\nunit_resolver = UnitResolver()\n\ncm = BasicUnit('cm', 'centimeters')\ninch = BasicUnit('inch', 'inches')\ninch.add_conversion_factor(cm, 2.54)\ncm.add_conversion_factor(inch, 1/2.54)\n\nradians = BasicUnit('rad', 'radians')\ndegrees = BasicUnit('deg', 'degrees')\nradians.add_conversion_factor(degrees, 180.0/np.pi)\ndegrees.add_conversion_factor(radians, np.pi/180.0)\n\nsecs = BasicUnit('s', 'seconds')\nhertz = BasicUnit('Hz', 'Hertz')\nminutes = BasicUnit('min', 'minutes')\n\nsecs.add_conversion_fn(hertz, lambda x: 1./x)\nsecs.add_conversion_factor(minutes, 1/60.0)\n\n\n# radians formatting\ndef rad_fn(x, pos=None):\n if x >= 0:\n n = int((x / np.pi) * 2.0 + 0.25)\n else:\n n = int((x / np.pi) * 2.0 - 0.25)\n\n if n == 0:\n return '0'\n elif n == 1:\n return r'$\\pi/2$'\n elif n == 2:\n return r'$\\pi$'\n elif n == -1:\n return r'$-\\pi/2$'\n elif n == -2:\n return r'$-\\pi$'\n elif n % 2 == 0:\n return fr'${n//2}\\pi$'\n else:\n return fr'${n}\\pi/2$'\n\n\nclass BasicUnitConverter(units.ConversionInterface):\n @staticmethod\n def axisinfo(unit, axis):\n 'return AxisInfo instance for x and unit'\n\n if unit == radians:\n return units.AxisInfo(\n majloc=ticker.MultipleLocator(base=np.pi/2),\n majfmt=ticker.FuncFormatter(rad_fn),\n label=unit.fullname,\n )\n elif unit == degrees:\n return units.AxisInfo(\n majloc=ticker.AutoLocator(),\n majfmt=ticker.FormatStrFormatter(r'$%i^\\circ$'),\n label=unit.fullname,\n )\n elif unit is not None:\n if hasattr(unit, 'fullname'):\n return units.AxisInfo(label=unit.fullname)\n elif hasattr(unit, 'unit'):\n return units.AxisInfo(label=unit.unit.fullname)\n return None\n\n @staticmethod\n def convert(val, unit, axis):\n if units.ConversionInterface.is_numlike(val):\n return val\n if np.iterable(val):\n if isinstance(val, np.ma.MaskedArray):\n val = val.astype(float).filled(np.nan)\n out = np.empty(len(val))\n for i, thisval in enumerate(val):\n if np.ma.is_masked(thisval):\n out[i] = np.nan\n else:\n try:\n out[i] = thisval.convert_to(unit).get_value()\n except AttributeError:\n out[i] = thisval\n return out\n if np.ma.is_masked(val):\n return np.nan\n else:\n return val.convert_to(unit).get_value()\n\n @staticmethod\n def default_units(x, axis):\n 'return the default unit for x or None'\n if np.iterable(x):\n for thisx in x:\n return thisx.unit\n return x.unit\n\n\ndef cos(x):\n if np.iterable(x):\n return [math.cos(val.convert_to(radians).get_value()) for val in x]\n else:\n return math.cos(x.convert_to(radians).get_value())\n\n\nbasicConverter = BasicUnitConverter()\nunits.registry[BasicUnit] = basicConverter\nunits.registry[TaggedValue] = basicConverter" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe99addb94e437260b232a5a30289aab/annotate_simple03.ipynb b/_downloads/fe99addb94e437260b232a5a30289aab/annotate_simple03.ipynb deleted file mode 100644 index 1fda0f26691..00000000000 --- a/_downloads/fe99addb94e437260b232a5a30289aab/annotate_simple03.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Annotate Simple03\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\n\nfig, ax = plt.subplots(figsize=(3, 3))\n\nann = ax.annotate(\"Test\",\n xy=(0.2, 0.2), xycoords='data',\n xytext=(0.8, 0.8), textcoords='data',\n size=20, va=\"center\", ha=\"center\",\n bbox=dict(boxstyle=\"round4\", fc=\"w\"),\n arrowprops=dict(arrowstyle=\"-|>\",\n connectionstyle=\"arc3,rad=-0.2\",\n fc=\"w\"),\n )\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fe9ace9851c43de8f550d012770126b7/rain.ipynb b/_downloads/fe9ace9851c43de8f550d012770126b7/rain.ipynb deleted file mode 120000 index fb0da928d5c..00000000000 --- a/_downloads/fe9ace9851c43de8f550d012770126b7/rain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fe9ace9851c43de8f550d012770126b7/rain.ipynb \ No newline at end of file diff --git a/_downloads/fea48c9a210eba0dab78ad7d4edbe10c/simple_rgb.ipynb b/_downloads/fea48c9a210eba0dab78ad7d4edbe10c/simple_rgb.ipynb deleted file mode 100644 index 87b8c6b6bfc..00000000000 --- a/_downloads/fea48c9a210eba0dab78ad7d4edbe10c/simple_rgb.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Simple RGB\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n\nfrom mpl_toolkits.axes_grid1.axes_rgb import RGBAxes\n\n\ndef get_demo_image():\n import numpy as np\n from matplotlib.cbook import get_sample_data\n f = get_sample_data(\"axes_grid/bivariate_normal.npy\", asfileobj=False)\n z = np.load(f)\n # z is a numpy array of 15x15\n return z, (-3, 4, -4, 3)\n\n\ndef get_rgb():\n Z, extent = get_demo_image()\n\n Z[Z < 0] = 0.\n Z = Z / Z.max()\n\n R = Z[:13, :13]\n G = Z[2:, 2:]\n B = Z[:13, 2:]\n\n return R, G, B\n\n\nfig = plt.figure()\nax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8])\n\nr, g, b = get_rgb()\nkwargs = dict(origin=\"lower\", interpolation=\"nearest\")\nax.imshow_rgb(r, g, b, **kwargs)\n\nax.RGB.set_xlim(0., 9.5)\nax.RGB.set_ylim(0.9, 10.6)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fea69bc796335d4189d80477655ef6c8/pcolormesh_levels.ipynb b/_downloads/fea69bc796335d4189d80477655ef6c8/pcolormesh_levels.ipynb deleted file mode 120000 index 4c880db9c0b..00000000000 --- a/_downloads/fea69bc796335d4189d80477655ef6c8/pcolormesh_levels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fea69bc796335d4189d80477655ef6c8/pcolormesh_levels.ipynb \ No newline at end of file diff --git a/_downloads/feaad22655d495a4e8deb7c72271761a/color_cycle.py b/_downloads/feaad22655d495a4e8deb7c72271761a/color_cycle.py deleted file mode 120000 index b477a379e6e..00000000000 --- a/_downloads/feaad22655d495a4e8deb7c72271761a/color_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/feaad22655d495a4e8deb7c72271761a/color_cycle.py \ No newline at end of file diff --git a/_downloads/febb78055751736bfc855df6a6177f6d/hinton_demo.py b/_downloads/febb78055751736bfc855df6a6177f6d/hinton_demo.py deleted file mode 120000 index 6c3e3a201ea..00000000000 --- a/_downloads/febb78055751736bfc855df6a6177f6d/hinton_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/febb78055751736bfc855df6a6177f6d/hinton_demo.py \ No newline at end of file diff --git a/_downloads/fec8c50fc1b68317391d07791cf250b0/parasite_simple.ipynb b/_downloads/fec8c50fc1b68317391d07791cf250b0/parasite_simple.ipynb deleted file mode 100644 index 61a417762c2..00000000000 --- a/_downloads/fec8c50fc1b68317391d07791cf250b0/parasite_simple.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Parasite Simple\n\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from mpl_toolkits.axes_grid1 import host_subplot\nimport matplotlib.pyplot as plt\n\nhost = host_subplot(111)\n\npar = host.twinx()\n\nhost.set_xlabel(\"Distance\")\nhost.set_ylabel(\"Density\")\npar.set_ylabel(\"Temperature\")\n\np1, = host.plot([0, 1, 2], [0, 1, 2], label=\"Density\")\np2, = par.plot([0, 1, 2], [0, 3, 2], label=\"Temperature\")\n\nleg = plt.legend()\n\nhost.yaxis.get_label().set_color(p1.get_color())\nleg.texts[0].set_color(p1.get_color())\n\npar.yaxis.get_label().set_color(p2.get_color())\nleg.texts[1].set_color(p2.get_color())\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/fec9498a5f2cd7703d6b09daa80f76e0/color_cycle.py b/_downloads/fec9498a5f2cd7703d6b09daa80f76e0/color_cycle.py deleted file mode 120000 index a6890500153..00000000000 --- a/_downloads/fec9498a5f2cd7703d6b09daa80f76e0/color_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fec9498a5f2cd7703d6b09daa80f76e0/color_cycle.py \ No newline at end of file diff --git a/_downloads/fece41560f7789ff9761159b9040de13/dfrac_demo.ipynb b/_downloads/fece41560f7789ff9761159b9040de13/dfrac_demo.ipynb deleted file mode 120000 index 2c98e1faf36..00000000000 --- a/_downloads/fece41560f7789ff9761159b9040de13/dfrac_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fece41560f7789ff9761159b9040de13/dfrac_demo.ipynb \ No newline at end of file diff --git a/_downloads/fed8f0ea37847886dd0bf59074734c00/artist_reference.py b/_downloads/fed8f0ea37847886dd0bf59074734c00/artist_reference.py deleted file mode 120000 index 8fdc97340a9..00000000000 --- a/_downloads/fed8f0ea37847886dd0bf59074734c00/artist_reference.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fed8f0ea37847886dd0bf59074734c00/artist_reference.py \ No newline at end of file diff --git a/_downloads/fedeca2ba24de9703bf651eb1aac3944/pylab_with_gtk_sgskip.ipynb b/_downloads/fedeca2ba24de9703bf651eb1aac3944/pylab_with_gtk_sgskip.ipynb deleted file mode 120000 index 5e203d9924f..00000000000 --- a/_downloads/fedeca2ba24de9703bf651eb1aac3944/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fedeca2ba24de9703bf651eb1aac3944/pylab_with_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fee0def10fd7dfe6ec9a063eee0beb5d/barcode_demo.ipynb b/_downloads/fee0def10fd7dfe6ec9a063eee0beb5d/barcode_demo.ipynb deleted file mode 120000 index 7798c185562..00000000000 --- a/_downloads/fee0def10fd7dfe6ec9a063eee0beb5d/barcode_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/fee0def10fd7dfe6ec9a063eee0beb5d/barcode_demo.ipynb \ No newline at end of file diff --git a/_downloads/fef8ebea91f3e2d936a0356c1b573cd8/demo_colorbar_with_inset_locator.py b/_downloads/fef8ebea91f3e2d936a0356c1b573cd8/demo_colorbar_with_inset_locator.py deleted file mode 120000 index 0045ab13132..00000000000 --- a/_downloads/fef8ebea91f3e2d936a0356c1b573cd8/demo_colorbar_with_inset_locator.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/fef8ebea91f3e2d936a0356c1b573cd8/demo_colorbar_with_inset_locator.py \ No newline at end of file diff --git a/_downloads/fefa7a2cd0873436d3674f25aa412546/specgram_demo.py b/_downloads/fefa7a2cd0873436d3674f25aa412546/specgram_demo.py deleted file mode 120000 index ed9f258a4ab..00000000000 --- a/_downloads/fefa7a2cd0873436d3674f25aa412546/specgram_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/fefa7a2cd0873436d3674f25aa412546/specgram_demo.py \ No newline at end of file diff --git a/_downloads/ff03868a641477ccad647b5a0d8a0003/transparent_legends.py b/_downloads/ff03868a641477ccad647b5a0d8a0003/transparent_legends.py deleted file mode 120000 index c98b0f1f981..00000000000 --- a/_downloads/ff03868a641477ccad647b5a0d8a0003/transparent_legends.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.2/_downloads/ff03868a641477ccad647b5a0d8a0003/transparent_legends.py \ No newline at end of file diff --git a/_downloads/ff0aaeb75b8fec51b8be707db16475b2/color_demo.py b/_downloads/ff0aaeb75b8fec51b8be707db16475b2/color_demo.py deleted file mode 120000 index 4b7e7530166..00000000000 --- a/_downloads/ff0aaeb75b8fec51b8be707db16475b2/color_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ff0aaeb75b8fec51b8be707db16475b2/color_demo.py \ No newline at end of file diff --git a/_downloads/ff0c91e4ec7fc4dea32e3407e583f21b/spines.ipynb b/_downloads/ff0c91e4ec7fc4dea32e3407e583f21b/spines.ipynb deleted file mode 120000 index 480a30b8c9f..00000000000 --- a/_downloads/ff0c91e4ec7fc4dea32e3407e583f21b/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ff0c91e4ec7fc4dea32e3407e583f21b/spines.ipynb \ No newline at end of file diff --git a/_downloads/ff2458feb65bf6bd8f1934e071859abc/image_thumbnail_sgskip.ipynb b/_downloads/ff2458feb65bf6bd8f1934e071859abc/image_thumbnail_sgskip.ipynb deleted file mode 100644 index 637cdaf1392..00000000000 --- a/_downloads/ff2458feb65bf6bd8f1934e071859abc/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Image Thumbnail\n\n\nYou can use matplotlib to generate thumbnails from existing images.\nmatplotlib natively supports PNG files on the input side, and other\nimage types transparently if your have PIL installed\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# build thumbnails of all images in a directory\nimport sys\nimport os\nimport glob\nimport matplotlib.image as image\n\n\nif len(sys.argv) != 2:\n print('Usage: python %s IMAGEDIR' % __file__)\n raise SystemExit\nindir = sys.argv[1]\nif not os.path.isdir(indir):\n print('Could not find input directory \"%s\"' % indir)\n raise SystemExit\n\noutdir = 'thumbs'\nif not os.path.exists(outdir):\n os.makedirs(outdir)\n\nfor fname in glob.glob(os.path.join(indir, '*.png')):\n basedir, basename = os.path.split(fname)\n outfile = os.path.join(outdir, basename)\n fig = image.thumbnail(fname, outfile, scale=0.15)\n print('saved thumbnail of %s to %s' % (fname, outfile))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ff2469f4ea511aea0334af7e41c3355c/voxels.ipynb b/_downloads/ff2469f4ea511aea0334af7e41c3355c/voxels.ipynb deleted file mode 100644 index 7e61f2f9b1c..00000000000 --- a/_downloads/ff2469f4ea511aea0334af7e41c3355c/voxels.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n==========================\n3D voxel / volumetric plot\n==========================\n\nDemonstrates plotting 3D volumetric objects with ``ax.voxels``\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\n# prepare some coordinates\nx, y, z = np.indices((8, 8, 8))\n\n# draw cuboids in the top left and bottom right corners, and a link between them\ncube1 = (x < 3) & (y < 3) & (z < 3)\ncube2 = (x >= 5) & (y >= 5) & (z >= 5)\nlink = abs(x - y) + abs(y - z) + abs(z - x) <= 2\n\n# combine the objects into a single boolean array\nvoxels = cube1 | cube2 | link\n\n# set the colors of each object\ncolors = np.empty(voxels.shape, dtype=object)\ncolors[link] = 'red'\ncolors[cube1] = 'blue'\ncolors[cube2] = 'green'\n\n# and plot everything\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(voxels, facecolors=colors, edgecolor='k')\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ff2563e871c0a3a6b6d54051a8dee6ec/voxels_numpy_logo.ipynb b/_downloads/ff2563e871c0a3a6b6d54051a8dee6ec/voxels_numpy_logo.ipynb deleted file mode 100644 index 53dfd00d350..00000000000 --- a/_downloads/ff2563e871c0a3a6b6d54051a8dee6ec/voxels_numpy_logo.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# 3D voxel plot of the numpy logo\n\n\nDemonstrates using ``ax.voxels`` with uneven coordinates\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\n# This import registers the 3D projection, but is otherwise unused.\nfrom mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import\n\n\ndef explode(data):\n size = np.array(data.shape)*2\n data_e = np.zeros(size - 1, dtype=data.dtype)\n data_e[::2, ::2, ::2] = data\n return data_e\n\n# build up the numpy logo\nn_voxels = np.zeros((4, 3, 4), dtype=bool)\nn_voxels[0, 0, :] = True\nn_voxels[-1, 0, :] = True\nn_voxels[1, 0, 2] = True\nn_voxels[2, 0, 1] = True\nfacecolors = np.where(n_voxels, '#FFD65DC0', '#7A88CCC0')\nedgecolors = np.where(n_voxels, '#BFAB6E', '#7D84A6')\nfilled = np.ones(n_voxels.shape)\n\n# upscale the above voxel image, leaving gaps\nfilled_2 = explode(filled)\nfcolors_2 = explode(facecolors)\necolors_2 = explode(edgecolors)\n\n# Shrink the gaps\nx, y, z = np.indices(np.array(filled_2.shape) + 1).astype(float) // 2\nx[0::2, :, :] += 0.05\ny[:, 0::2, :] += 0.05\nz[:, :, 0::2] += 0.05\nx[1::2, :, :] += 0.95\ny[:, 1::2, :] += 0.95\nz[:, :, 1::2] += 0.95\n\nfig = plt.figure()\nax = fig.gca(projection='3d')\nax.voxels(x, y, z, filled_2, facecolors=fcolors_2, edgecolors=ecolors_2)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ff2a536804abebb569ea2b780876ab72/ganged_plots.ipynb b/_downloads/ff2a536804abebb569ea2b780876ab72/ganged_plots.ipynb deleted file mode 100644 index 8adb2198229..00000000000 --- a/_downloads/ff2a536804abebb569ea2b780876ab72/ganged_plots.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Creating adjacent subplots\n\n\nTo create plots that share a common axis (visually) you can set the hspace\nbetween the subplots to zero. Passing sharex=True when creating the subplots\nwill automatically turn off all x ticks and labels except those on the bottom\naxis.\n\nIn this example the plots share a common x axis but you can follow the same\nlogic to supply a common y axis.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\nimport numpy as np\n\nt = np.arange(0.0, 2.0, 0.01)\n\ns1 = np.sin(2 * np.pi * t)\ns2 = np.exp(-t)\ns3 = s1 * s2\n\nfig, axs = plt.subplots(3, 1, sharex=True)\n# Remove horizontal space between axes\nfig.subplots_adjust(hspace=0)\n\n# Plot each graph, and manually set the y tick values\naxs[0].plot(t, s1)\naxs[0].set_yticks(np.arange(-0.9, 1.0, 0.4))\naxs[0].set_ylim(-1, 1)\n\naxs[1].plot(t, s2)\naxs[1].set_yticks(np.arange(0.1, 1.0, 0.2))\naxs[1].set_ylim(0, 1)\n\naxs[2].plot(t, s3)\naxs[2].set_yticks(np.arange(-0.9, 1.0, 0.4))\naxs[2].set_ylim(-1, 1)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ff2cd39ac1db44d3aa016b14c2ad0600/text_commands.py b/_downloads/ff2cd39ac1db44d3aa016b14c2ad0600/text_commands.py deleted file mode 120000 index 35c81635a56..00000000000 --- a/_downloads/ff2cd39ac1db44d3aa016b14c2ad0600/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ff2cd39ac1db44d3aa016b14c2ad0600/text_commands.py \ No newline at end of file diff --git a/_downloads/ff32bd346733dcf2e8b79db6a1b2ad4d/embedding_in_wx4_sgskip.ipynb b/_downloads/ff32bd346733dcf2e8b79db6a1b2ad4d/embedding_in_wx4_sgskip.ipynb deleted file mode 120000 index e2984800fca..00000000000 --- a/_downloads/ff32bd346733dcf2e8b79db6a1b2ad4d/embedding_in_wx4_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ff32bd346733dcf2e8b79db6a1b2ad4d/embedding_in_wx4_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ff460bd402d6246f1a01549f112ac1c1/text_commands.py b/_downloads/ff460bd402d6246f1a01549f112ac1c1/text_commands.py deleted file mode 120000 index b16cb2a7a3d..00000000000 --- a/_downloads/ff460bd402d6246f1a01549f112ac1c1/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ff460bd402d6246f1a01549f112ac1c1/text_commands.py \ No newline at end of file diff --git a/_downloads/ff4784329806cb05f5a0957492042491/animation_demo.py b/_downloads/ff4784329806cb05f5a0957492042491/animation_demo.py deleted file mode 120000 index 9896a8af63b..00000000000 --- a/_downloads/ff4784329806cb05f5a0957492042491/animation_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ff4784329806cb05f5a0957492042491/animation_demo.py \ No newline at end of file diff --git a/_downloads/ff5464450cb1cbc111b992e54d4d3e1c/trisurf3d_2.ipynb b/_downloads/ff5464450cb1cbc111b992e54d4d3e1c/trisurf3d_2.ipynb deleted file mode 120000 index a6e83ea27a4..00000000000 --- a/_downloads/ff5464450cb1cbc111b992e54d4d3e1c/trisurf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ff5464450cb1cbc111b992e54d4d3e1c/trisurf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/ff5bf390dc47fd9a6f500491567ec7b8/zoom_window.ipynb b/_downloads/ff5bf390dc47fd9a6f500491567ec7b8/zoom_window.ipynb deleted file mode 120000 index 9cf0c5e8644..00000000000 --- a/_downloads/ff5bf390dc47fd9a6f500491567ec7b8/zoom_window.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ff5bf390dc47fd9a6f500491567ec7b8/zoom_window.ipynb \ No newline at end of file diff --git a/_downloads/ff5c578e9dd2f293fc9f5f30e73d7575/axis_direction_demo_step04.py b/_downloads/ff5c578e9dd2f293fc9f5f30e73d7575/axis_direction_demo_step04.py deleted file mode 120000 index abbd260ae31..00000000000 --- a/_downloads/ff5c578e9dd2f293fc9f5f30e73d7575/axis_direction_demo_step04.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ff5c578e9dd2f293fc9f5f30e73d7575/axis_direction_demo_step04.py \ No newline at end of file diff --git a/_downloads/ff64507ab516df31534a8eb4bc7eacc9/figure_title.ipynb b/_downloads/ff64507ab516df31534a8eb4bc7eacc9/figure_title.ipynb deleted file mode 120000 index 12536df9335..00000000000 --- a/_downloads/ff64507ab516df31534a8eb4bc7eacc9/figure_title.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ff64507ab516df31534a8eb4bc7eacc9/figure_title.ipynb \ No newline at end of file diff --git a/_downloads/ff6fdeea0462344c9effdc58b9371a43/subplot_demo.ipynb b/_downloads/ff6fdeea0462344c9effdc58b9371a43/subplot_demo.ipynb deleted file mode 120000 index 04c7efa1cd7..00000000000 --- a/_downloads/ff6fdeea0462344c9effdc58b9371a43/subplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ff6fdeea0462344c9effdc58b9371a43/subplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/ff82e62eeff4578285ad262ef4486461/align_labels_demo.py b/_downloads/ff82e62eeff4578285ad262ef4486461/align_labels_demo.py deleted file mode 120000 index 41ff8fb8788..00000000000 --- a/_downloads/ff82e62eeff4578285ad262ef4486461/align_labels_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ff82e62eeff4578285ad262ef4486461/align_labels_demo.py \ No newline at end of file diff --git a/_downloads/ff852c92c998aab0bf4f0dc87a28a58d/pie_features.ipynb b/_downloads/ff852c92c998aab0bf4f0dc87a28a58d/pie_features.ipynb deleted file mode 120000 index 9fe83519a8d..00000000000 --- a/_downloads/ff852c92c998aab0bf4f0dc87a28a58d/pie_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ff852c92c998aab0bf4f0dc87a28a58d/pie_features.ipynb \ No newline at end of file diff --git a/_downloads/ff895a50c80474ba67329ed80112f657/demo_axis_direction.py b/_downloads/ff895a50c80474ba67329ed80112f657/demo_axis_direction.py deleted file mode 100644 index d4c8f817b5c..00000000000 --- a/_downloads/ff895a50c80474ba67329ed80112f657/demo_axis_direction.py +++ /dev/null @@ -1,96 +0,0 @@ -""" -=================== -Demo Axis Direction -=================== - -""" - -import numpy as np -import matplotlib.pyplot as plt -import mpl_toolkits.axisartist.angle_helper as angle_helper -import mpl_toolkits.axisartist.grid_finder as grid_finder -from matplotlib.projections import PolarAxes -from matplotlib.transforms import Affine2D - -import mpl_toolkits.axisartist as axisartist - -from mpl_toolkits.axisartist.grid_helper_curvelinear import \ - GridHelperCurveLinear - - -def setup_axes(fig, rect): - """ - polar projection, but in a rectangular box. - """ - - # see demo_curvelinear_grid.py for details - tr = Affine2D().scale(np.pi/180., 1.) + PolarAxes.PolarTransform() - - extreme_finder = angle_helper.ExtremeFinderCycle(20, 20, - lon_cycle=360, - lat_cycle=None, - lon_minmax=None, - lat_minmax=(0, np.inf), - ) - - grid_locator1 = angle_helper.LocatorDMS(12) - grid_locator2 = grid_finder.MaxNLocator(5) - - tick_formatter1 = angle_helper.FormatterDMS() - - grid_helper = GridHelperCurveLinear(tr, - extreme_finder=extreme_finder, - grid_locator1=grid_locator1, - grid_locator2=grid_locator2, - tick_formatter1=tick_formatter1 - ) - - ax1 = axisartist.Subplot(fig, rect, grid_helper=grid_helper) - ax1.axis[:].toggle(ticklabels=False) - - fig.add_subplot(ax1) - - ax1.set_aspect(1.) - ax1.set_xlim(-5, 12) - ax1.set_ylim(-5, 10) - - return ax1 - - -def add_floating_axis1(ax1): - ax1.axis["lat"] = axis = ax1.new_floating_axis(0, 30) - axis.label.set_text(r"$\theta = 30^{\circ}$") - axis.label.set_visible(True) - - return axis - - -def add_floating_axis2(ax1): - ax1.axis["lon"] = axis = ax1.new_floating_axis(1, 6) - axis.label.set_text(r"$r = 6$") - axis.label.set_visible(True) - - return axis - - -fig = plt.figure(figsize=(8, 4)) -fig.subplots_adjust(left=0.01, right=0.99, bottom=0.01, top=0.99, - wspace=0.01, hspace=0.01) - -for i, d in enumerate(["bottom", "left", "top", "right"]): - ax1 = setup_axes(fig, rect=241++i) - axis = add_floating_axis1(ax1) - axis.set_axis_direction(d) - ax1.annotate(d, (0, 1), (5, -5), - xycoords="axes fraction", textcoords="offset points", - va="top", ha="left") - -for i, d in enumerate(["bottom", "left", "top", "right"]): - ax1 = setup_axes(fig, rect=245++i) - axis = add_floating_axis2(ax1) - axis.set_axis_direction(d) - ax1.annotate(d, (0, 1), (5, -5), - xycoords="axes fraction", textcoords="offset points", - va="top", ha="left") - -plt.show() diff --git a/_downloads/ff8f0e7f7ee849b2c0914a794e5199c0/rectangle_selector.ipynb b/_downloads/ff8f0e7f7ee849b2c0914a794e5199c0/rectangle_selector.ipynb deleted file mode 120000 index 688384566e0..00000000000 --- a/_downloads/ff8f0e7f7ee849b2c0914a794e5199c0/rectangle_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ff8f0e7f7ee849b2c0914a794e5199c0/rectangle_selector.ipynb \ No newline at end of file diff --git a/_downloads/ff9b887ec7665e75d3992d3af408be52/hat_graph.py b/_downloads/ff9b887ec7665e75d3992d3af408be52/hat_graph.py deleted file mode 120000 index 3f5a74fbcc1..00000000000 --- a/_downloads/ff9b887ec7665e75d3992d3af408be52/hat_graph.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ff9b887ec7665e75d3992d3af408be52/hat_graph.py \ No newline at end of file diff --git a/_downloads/ff9ecbf444c66c664920f831d5c0ce1b/3d_bars.py b/_downloads/ff9ecbf444c66c664920f831d5c0ce1b/3d_bars.py deleted file mode 100644 index 7a9508d1430..00000000000 --- a/_downloads/ff9ecbf444c66c664920f831d5c0ce1b/3d_bars.py +++ /dev/null @@ -1,36 +0,0 @@ -""" -===================== -Demo of 3D bar charts -===================== - -A basic demo of how to plot 3D bars with and without shading. -""" - -import numpy as np -import matplotlib.pyplot as plt -# This import registers the 3D projection, but is otherwise unused. -from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import - - -# setup the figure and axes -fig = plt.figure(figsize=(8, 3)) -ax1 = fig.add_subplot(121, projection='3d') -ax2 = fig.add_subplot(122, projection='3d') - -# fake data -_x = np.arange(4) -_y = np.arange(5) -_xx, _yy = np.meshgrid(_x, _y) -x, y = _xx.ravel(), _yy.ravel() - -top = x + y -bottom = np.zeros_like(top) -width = depth = 1 - -ax1.bar3d(x, y, bottom, width, depth, top, shade=True) -ax1.set_title('Shaded') - -ax2.bar3d(x, y, bottom, width, depth, top, shade=False) -ax2.set_title('Not Shaded') - -plt.show() diff --git a/_downloads/ffa942c0b929f345cc3c33899112a3ff/demo_floating_axes.py b/_downloads/ffa942c0b929f345cc3c33899112a3ff/demo_floating_axes.py deleted file mode 120000 index d29fb3e2ce1..00000000000 --- a/_downloads/ffa942c0b929f345cc3c33899112a3ff/demo_floating_axes.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ffa942c0b929f345cc3c33899112a3ff/demo_floating_axes.py \ No newline at end of file diff --git a/_downloads/ffadaff323d683257497293cb193cb3f/centered_ticklabels.ipynb b/_downloads/ffadaff323d683257497293cb193cb3f/centered_ticklabels.ipynb deleted file mode 120000 index c7a9de3cb16..00000000000 --- a/_downloads/ffadaff323d683257497293cb193cb3f/centered_ticklabels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ffadaff323d683257497293cb193cb3f/centered_ticklabels.ipynb \ No newline at end of file diff --git a/_downloads/ffaebe96f3905833ec6ed27385e45c21/linestyles.ipynb b/_downloads/ffaebe96f3905833ec6ed27385e45c21/linestyles.ipynb deleted file mode 120000 index 90ffee0c854..00000000000 --- a/_downloads/ffaebe96f3905833ec6ed27385e45c21/linestyles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ffaebe96f3905833ec6ed27385e45c21/linestyles.ipynb \ No newline at end of file diff --git a/_downloads/ffb2043ac143ca18fa441dacafd750a4/scatter_piecharts.ipynb b/_downloads/ffb2043ac143ca18fa441dacafd750a4/scatter_piecharts.ipynb deleted file mode 120000 index 982df462670..00000000000 --- a/_downloads/ffb2043ac143ca18fa441dacafd750a4/scatter_piecharts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/_downloads/ffb2043ac143ca18fa441dacafd750a4/scatter_piecharts.ipynb \ No newline at end of file diff --git a/_downloads/ffb8b2ef82f8363940be667dc5f8c2f9/bar_stacked.ipynb b/_downloads/ffb8b2ef82f8363940be667dc5f8c2f9/bar_stacked.ipynb deleted file mode 120000 index 448830d858b..00000000000 --- a/_downloads/ffb8b2ef82f8363940be667dc5f8c2f9/bar_stacked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ffb8b2ef82f8363940be667dc5f8c2f9/bar_stacked.ipynb \ No newline at end of file diff --git a/_downloads/ffbe2f7a32ac081ba2a5f5b8521aefe1/tight_bbox_test.py b/_downloads/ffbe2f7a32ac081ba2a5f5b8521aefe1/tight_bbox_test.py deleted file mode 120000 index 053d7462fcd..00000000000 --- a/_downloads/ffbe2f7a32ac081ba2a5f5b8521aefe1/tight_bbox_test.py +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_downloads/ffbe2f7a32ac081ba2a5f5b8521aefe1/tight_bbox_test.py \ No newline at end of file diff --git a/_downloads/ffc4824e2a5ee6132414a028558632aa/simple_axes_divider2.ipynb b/_downloads/ffc4824e2a5ee6132414a028558632aa/simple_axes_divider2.ipynb deleted file mode 120000 index 3a202edd91b..00000000000 --- a/_downloads/ffc4824e2a5ee6132414a028558632aa/simple_axes_divider2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ffc4824e2a5ee6132414a028558632aa/simple_axes_divider2.ipynb \ No newline at end of file diff --git a/_downloads/ffc5e7c119cb079a4331b86253b4f125/tick-formatters.ipynb b/_downloads/ffc5e7c119cb079a4331b86253b4f125/tick-formatters.ipynb deleted file mode 100644 index 3d865962893..00000000000 --- a/_downloads/ffc5e7c119cb079a4331b86253b4f125/tick-formatters.ipynb +++ /dev/null @@ -1,54 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n# Tick formatters\n\n\nShow the different tick formatters.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\n\n\n# Setup a plot such that only the bottom spine is shown\ndef setup(ax):\n ax.spines['right'].set_color('none')\n ax.spines['left'].set_color('none')\n ax.yaxis.set_major_locator(ticker.NullLocator())\n ax.spines['top'].set_color('none')\n ax.xaxis.set_ticks_position('bottom')\n ax.tick_params(which='major', width=1.00, length=5)\n ax.tick_params(which='minor', width=0.75, length=2.5, labelsize=10)\n ax.set_xlim(0, 5)\n ax.set_ylim(0, 1)\n ax.patch.set_alpha(0.0)\n\n\nfig = plt.figure(figsize=(8, 6))\nn = 7\n\n# Null formatter\nax = fig.add_subplot(n, 1, 1)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.NullFormatter())\nax.xaxis.set_minor_formatter(ticker.NullFormatter())\nax.text(0.0, 0.1, \"NullFormatter()\", fontsize=16, transform=ax.transAxes)\n\n# Fixed formatter\nax = fig.add_subplot(n, 1, 2)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.0))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nmajors = [\"\", \"0\", \"1\", \"2\", \"3\", \"4\", \"5\"]\nax.xaxis.set_major_formatter(ticker.FixedFormatter(majors))\nminors = [\"\"] + [\"%.2f\" % (x-int(x)) if (x-int(x))\n else \"\" for x in np.arange(0, 5, 0.25)]\nax.xaxis.set_minor_formatter(ticker.FixedFormatter(minors))\nax.text(0.0, 0.1, \"FixedFormatter(['', '0', '1', ...])\",\n fontsize=15, transform=ax.transAxes)\n\n\n# FuncFormatter can be used as a decorator\n@ticker.FuncFormatter\ndef major_formatter(x, pos):\n return \"[%.2f]\" % x\n\n\nax = fig.add_subplot(n, 1, 3)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(major_formatter)\nax.text(0.0, 0.1, 'FuncFormatter(lambda x, pos: \"[%.2f]\" % x)',\n fontsize=15, transform=ax.transAxes)\n\n\n# FormatStr formatter\nax = fig.add_subplot(n, 1, 4)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.FormatStrFormatter(\">%d<\"))\nax.text(0.0, 0.1, \"FormatStrFormatter('>%d<')\",\n fontsize=15, transform=ax.transAxes)\n\n# Scalar formatter\nax = fig.add_subplot(n, 1, 5)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.AutoLocator())\nax.xaxis.set_minor_locator(ticker.AutoMinorLocator())\nax.xaxis.set_major_formatter(ticker.ScalarFormatter(useMathText=True))\nax.text(0.0, 0.1, \"ScalarFormatter()\", fontsize=15, transform=ax.transAxes)\n\n# StrMethod formatter\nax = fig.add_subplot(n, 1, 6)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.StrMethodFormatter(\"{x}\"))\nax.text(0.0, 0.1, \"StrMethodFormatter('{x}')\",\n fontsize=15, transform=ax.transAxes)\n\n# Percent formatter\nax = fig.add_subplot(n, 1, 7)\nsetup(ax)\nax.xaxis.set_major_locator(ticker.MultipleLocator(1.00))\nax.xaxis.set_minor_locator(ticker.MultipleLocator(0.25))\nax.xaxis.set_major_formatter(ticker.PercentFormatter(xmax=5))\nax.text(0.0, 0.1, \"PercentFormatter(xmax=5)\",\n fontsize=15, transform=ax.transAxes)\n\n# Push the top of the top axes outside the figure because we only show the\n# bottom spine.\nfig.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=1.05)\n\nplt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} \ No newline at end of file diff --git a/_downloads/ffce266ab187d41ab9a3afd68f7826bf/svg_filter_pie.ipynb b/_downloads/ffce266ab187d41ab9a3afd68f7826bf/svg_filter_pie.ipynb deleted file mode 120000 index cfb17019e77..00000000000 --- a/_downloads/ffce266ab187d41ab9a3afd68f7826bf/svg_filter_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ffce266ab187d41ab9a3afd68f7826bf/svg_filter_pie.ipynb \ No newline at end of file diff --git a/_downloads/ffced02a69365d873f495b7cd6725498/inset_locator_demo2.py b/_downloads/ffced02a69365d873f495b7cd6725498/inset_locator_demo2.py deleted file mode 120000 index 0cbbfed5488..00000000000 --- a/_downloads/ffced02a69365d873f495b7cd6725498/inset_locator_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/_downloads/ffced02a69365d873f495b7cd6725498/inset_locator_demo2.py \ No newline at end of file diff --git a/_downloads/ffd1622b9010f84068b3815b5c676a18/mri_with_eeg.ipynb b/_downloads/ffd1622b9010f84068b3815b5c676a18/mri_with_eeg.ipynb deleted file mode 120000 index c2f278e4d88..00000000000 --- a/_downloads/ffd1622b9010f84068b3815b5c676a18/mri_with_eeg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_downloads/ffd1622b9010f84068b3815b5c676a18/mri_with_eeg.ipynb \ No newline at end of file diff --git a/_downloads/ffd1cd7ac9512c8769010acc9aeb5b94/bar_of_pie.ipynb b/_downloads/ffd1cd7ac9512c8769010acc9aeb5b94/bar_of_pie.ipynb deleted file mode 120000 index 7128341edd9..00000000000 --- a/_downloads/ffd1cd7ac9512c8769010acc9aeb5b94/bar_of_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ffd1cd7ac9512c8769010acc9aeb5b94/bar_of_pie.ipynb \ No newline at end of file diff --git a/_downloads/ffdc4dfa266d97ef7661dc49364ef694/ginput_manual_clabel_sgskip.ipynb b/_downloads/ffdc4dfa266d97ef7661dc49364ef694/ginput_manual_clabel_sgskip.ipynb deleted file mode 120000 index bade83e7a24..00000000000 --- a/_downloads/ffdc4dfa266d97ef7661dc49364ef694/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.1/_downloads/ffdc4dfa266d97ef7661dc49364ef694/ginput_manual_clabel_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ffdfd8f25860d395fb2918a021a4d93a/colormap_normalizations_power.py b/_downloads/ffdfd8f25860d395fb2918a021a4d93a/colormap_normalizations_power.py deleted file mode 100644 index 77f052b28ac..00000000000 --- a/_downloads/ffdfd8f25860d395fb2918a021a4d93a/colormap_normalizations_power.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -============================= -Colormap Normalizations Power -============================= - -Demonstration of using norm to map colormaps onto data in non-linear ways. -""" - -import numpy as np -import matplotlib.pyplot as plt -import matplotlib.colors as colors - -N = 100 -X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)] - -''' -PowerNorm: Here a power-law trend in X partially obscures a rectified -sine wave in Y. We can remove the power law using a PowerNorm. -''' -X, Y = np.mgrid[0:3:complex(0, N), 0:2:complex(0, N)] -Z1 = (1 + np.sin(Y * 10.)) * X**(2.) - -fig, ax = plt.subplots(2, 1) - -pcm = ax[0].pcolormesh(X, Y, Z1, norm=colors.PowerNorm(gamma=1./2.), - cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[0], extend='max') - -pcm = ax[1].pcolormesh(X, Y, Z1, cmap='PuBu_r') -fig.colorbar(pcm, ax=ax[1], extend='max') - -plt.show() diff --git a/_downloads/ffea37c06edb05489f21cecc0d879ca3/whats_new_99_spines.ipynb b/_downloads/ffea37c06edb05489f21cecc0d879ca3/whats_new_99_spines.ipynb deleted file mode 120000 index fe2fd958ca9..00000000000 --- a/_downloads/ffea37c06edb05489f21cecc0d879ca3/whats_new_99_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/ffea37c06edb05489f21cecc0d879ca3/whats_new_99_spines.ipynb \ No newline at end of file diff --git a/_downloads/ffec4a87ea51cd66a464b917ede00f84/fivethirtyeight.ipynb b/_downloads/ffec4a87ea51cd66a464b917ede00f84/fivethirtyeight.ipynb deleted file mode 120000 index 8f380579008..00000000000 --- a/_downloads/ffec4a87ea51cd66a464b917ede00f84/fivethirtyeight.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_downloads/ffec4a87ea51cd66a464b917ede00f84/fivethirtyeight.ipynb \ No newline at end of file diff --git a/_downloads/fff15bc5bcd56b44fd3e2a23d6dcfa3e/firefox.py b/_downloads/fff15bc5bcd56b44fd3e2a23d6dcfa3e/firefox.py deleted file mode 120000 index cc47e1632d1..00000000000 --- a/_downloads/fff15bc5bcd56b44fd3e2a23d6dcfa3e/firefox.py +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fff15bc5bcd56b44fd3e2a23d6dcfa3e/firefox.py \ No newline at end of file diff --git a/_downloads/fffdc6209c012565cd0627937cb855ac/contour3d.ipynb b/_downloads/fffdc6209c012565cd0627937cb855ac/contour3d.ipynb deleted file mode 120000 index b7f141834f7..00000000000 --- a/_downloads/fffdc6209c012565cd0627937cb855ac/contour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_downloads/fffdc6209c012565cd0627937cb855ac/contour3d.ipynb \ No newline at end of file diff --git a/_downloads/fig_axes_customize_simple.ipynb b/_downloads/fig_axes_customize_simple.ipynb deleted file mode 120000 index dd645e609a6..00000000000 --- a/_downloads/fig_axes_customize_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fig_axes_customize_simple.ipynb \ No newline at end of file diff --git a/_downloads/fig_axes_customize_simple.py b/_downloads/fig_axes_customize_simple.py deleted file mode 120000 index 29d0f1677b8..00000000000 --- a/_downloads/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fig_axes_customize_simple.py \ No newline at end of file diff --git a/_downloads/fig_axes_labels_simple.ipynb b/_downloads/fig_axes_labels_simple.ipynb deleted file mode 120000 index 4c89dadb30f..00000000000 --- a/_downloads/fig_axes_labels_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fig_axes_labels_simple.ipynb \ No newline at end of file diff --git a/_downloads/fig_axes_labels_simple.py b/_downloads/fig_axes_labels_simple.py deleted file mode 120000 index c8e2e6d2e90..00000000000 --- a/_downloads/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fig_axes_labels_simple.py \ No newline at end of file diff --git a/_downloads/fig_x.ipynb b/_downloads/fig_x.ipynb deleted file mode 120000 index 13aa3960fa9..00000000000 --- a/_downloads/fig_x.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fig_x.ipynb \ No newline at end of file diff --git a/_downloads/fig_x.py b/_downloads/fig_x.py deleted file mode 120000 index 4381d4716c2..00000000000 --- a/_downloads/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fig_x.py \ No newline at end of file diff --git a/_downloads/figimage_demo.ipynb b/_downloads/figimage_demo.ipynb deleted file mode 120000 index 48048ee59e7..00000000000 --- a/_downloads/figimage_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figimage_demo.ipynb \ No newline at end of file diff --git a/_downloads/figimage_demo.py b/_downloads/figimage_demo.py deleted file mode 120000 index 5cb9ee91358..00000000000 --- a/_downloads/figimage_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figimage_demo.py \ No newline at end of file diff --git a/_downloads/figlegend_demo.ipynb b/_downloads/figlegend_demo.ipynb deleted file mode 120000 index dd0b33cfe23..00000000000 --- a/_downloads/figlegend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figlegend_demo.ipynb \ No newline at end of file diff --git a/_downloads/figlegend_demo.py b/_downloads/figlegend_demo.py deleted file mode 120000 index bb2418bb935..00000000000 --- a/_downloads/figlegend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figlegend_demo.py \ No newline at end of file diff --git a/_downloads/figure_axes_enter_leave.ipynb b/_downloads/figure_axes_enter_leave.ipynb deleted file mode 120000 index 60539f09ab7..00000000000 --- a/_downloads/figure_axes_enter_leave.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figure_axes_enter_leave.ipynb \ No newline at end of file diff --git a/_downloads/figure_axes_enter_leave.py b/_downloads/figure_axes_enter_leave.py deleted file mode 120000 index 4dd28fe6e6c..00000000000 --- a/_downloads/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figure_axes_enter_leave.py \ No newline at end of file diff --git a/_downloads/figure_title.ipynb b/_downloads/figure_title.ipynb deleted file mode 120000 index eb9afd5ef61..00000000000 --- a/_downloads/figure_title.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figure_title.ipynb \ No newline at end of file diff --git a/_downloads/figure_title.py b/_downloads/figure_title.py deleted file mode 120000 index 05ef0dbfdd0..00000000000 --- a/_downloads/figure_title.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/figure_title.py \ No newline at end of file diff --git a/_downloads/fill.ipynb b/_downloads/fill.ipynb deleted file mode 120000 index 9d26cf80deb..00000000000 --- a/_downloads/fill.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill.ipynb \ No newline at end of file diff --git a/_downloads/fill.py b/_downloads/fill.py deleted file mode 120000 index 14dce62ddf8..00000000000 --- a/_downloads/fill.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill.py \ No newline at end of file diff --git a/_downloads/fill_between_alpha.ipynb b/_downloads/fill_between_alpha.ipynb deleted file mode 120000 index b47e14740f8..00000000000 --- a/_downloads/fill_between_alpha.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_between_alpha.ipynb \ No newline at end of file diff --git a/_downloads/fill_between_alpha.py b/_downloads/fill_between_alpha.py deleted file mode 120000 index c38bf4a6de7..00000000000 --- a/_downloads/fill_between_alpha.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_between_alpha.py \ No newline at end of file diff --git a/_downloads/fill_between_demo.ipynb b/_downloads/fill_between_demo.ipynb deleted file mode 120000 index 69988067f6b..00000000000 --- a/_downloads/fill_between_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_between_demo.ipynb \ No newline at end of file diff --git a/_downloads/fill_between_demo.py b/_downloads/fill_between_demo.py deleted file mode 120000 index 5accd2a3e79..00000000000 --- a/_downloads/fill_between_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_between_demo.py \ No newline at end of file diff --git a/_downloads/fill_betweenx_demo.ipynb b/_downloads/fill_betweenx_demo.ipynb deleted file mode 120000 index 57a4faa0d77..00000000000 --- a/_downloads/fill_betweenx_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_betweenx_demo.ipynb \ No newline at end of file diff --git a/_downloads/fill_betweenx_demo.py b/_downloads/fill_betweenx_demo.py deleted file mode 120000 index 43e09acc2f7..00000000000 --- a/_downloads/fill_betweenx_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_betweenx_demo.py \ No newline at end of file diff --git a/_downloads/fill_spiral.ipynb b/_downloads/fill_spiral.ipynb deleted file mode 120000 index 3620567d1c0..00000000000 --- a/_downloads/fill_spiral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_spiral.ipynb \ No newline at end of file diff --git a/_downloads/fill_spiral.py b/_downloads/fill_spiral.py deleted file mode 120000 index 9a786a30bdb..00000000000 --- a/_downloads/fill_spiral.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fill_spiral.py \ No newline at end of file diff --git a/_downloads/filled_step.ipynb b/_downloads/filled_step.ipynb deleted file mode 120000 index ee4d441a658..00000000000 --- a/_downloads/filled_step.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/filled_step.ipynb \ No newline at end of file diff --git a/_downloads/filled_step.py b/_downloads/filled_step.py deleted file mode 120000 index 6c79edd97f3..00000000000 --- a/_downloads/filled_step.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/filled_step.py \ No newline at end of file diff --git a/_downloads/findobj_demo.ipynb b/_downloads/findobj_demo.ipynb deleted file mode 120000 index 207804fc5b5..00000000000 --- a/_downloads/findobj_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/findobj_demo.ipynb \ No newline at end of file diff --git a/_downloads/findobj_demo.py b/_downloads/findobj_demo.py deleted file mode 120000 index 1c66505acbc..00000000000 --- a/_downloads/findobj_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/findobj_demo.py \ No newline at end of file diff --git a/_downloads/firefox.ipynb b/_downloads/firefox.ipynb deleted file mode 120000 index 051e6dc67b0..00000000000 --- a/_downloads/firefox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/firefox.ipynb \ No newline at end of file diff --git a/_downloads/firefox.py b/_downloads/firefox.py deleted file mode 120000 index 75dfcbd1cb3..00000000000 --- a/_downloads/firefox.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/firefox.py \ No newline at end of file diff --git a/_downloads/fivethirtyeight.ipynb b/_downloads/fivethirtyeight.ipynb deleted file mode 120000 index 63afef82095..00000000000 --- a/_downloads/fivethirtyeight.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fivethirtyeight.ipynb \ No newline at end of file diff --git a/_downloads/fivethirtyeight.py b/_downloads/fivethirtyeight.py deleted file mode 120000 index fb25a8dbb1d..00000000000 --- a/_downloads/fivethirtyeight.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fivethirtyeight.py \ No newline at end of file diff --git a/_downloads/font_family_rc_sgskip.ipynb b/_downloads/font_family_rc_sgskip.ipynb deleted file mode 120000 index 54d19dd8a75..00000000000 --- a/_downloads/font_family_rc_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_family_rc_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/font_family_rc_sgskip.py b/_downloads/font_family_rc_sgskip.py deleted file mode 120000 index 02b92a8f7a8..00000000000 --- a/_downloads/font_family_rc_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_family_rc_sgskip.py \ No newline at end of file diff --git a/_downloads/font_file.ipynb b/_downloads/font_file.ipynb deleted file mode 120000 index 40e928f9957..00000000000 --- a/_downloads/font_file.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_file.ipynb \ No newline at end of file diff --git a/_downloads/font_file.py b/_downloads/font_file.py deleted file mode 120000 index 03b162cb33a..00000000000 --- a/_downloads/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_file.py \ No newline at end of file diff --git a/_downloads/font_indexing.ipynb b/_downloads/font_indexing.ipynb deleted file mode 120000 index 96e7e5fc167..00000000000 --- a/_downloads/font_indexing.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_indexing.ipynb \ No newline at end of file diff --git a/_downloads/font_indexing.py b/_downloads/font_indexing.py deleted file mode 120000 index be60b98c88c..00000000000 --- a/_downloads/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_indexing.py \ No newline at end of file diff --git a/_downloads/font_table_ttf_sgskip.ipynb b/_downloads/font_table_ttf_sgskip.ipynb deleted file mode 120000 index d813dc7418e..00000000000 --- a/_downloads/font_table_ttf_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_table_ttf_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/font_table_ttf_sgskip.py b/_downloads/font_table_ttf_sgskip.py deleted file mode 120000 index e5552f1e398..00000000000 --- a/_downloads/font_table_ttf_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/font_table_ttf_sgskip.py \ No newline at end of file diff --git a/_downloads/fonts_demo.ipynb b/_downloads/fonts_demo.ipynb deleted file mode 120000 index fa6b2073adb..00000000000 --- a/_downloads/fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/fonts_demo.py b/_downloads/fonts_demo.py deleted file mode 120000 index 7f29537118d..00000000000 --- a/_downloads/fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fonts_demo.py \ No newline at end of file diff --git a/_downloads/fonts_demo_kw.ipynb b/_downloads/fonts_demo_kw.ipynb deleted file mode 120000 index d500a096865..00000000000 --- a/_downloads/fonts_demo_kw.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fonts_demo_kw.ipynb \ No newline at end of file diff --git a/_downloads/fonts_demo_kw.py b/_downloads/fonts_demo_kw.py deleted file mode 120000 index cf1cde035a1..00000000000 --- a/_downloads/fonts_demo_kw.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fonts_demo_kw.py \ No newline at end of file diff --git a/_downloads/fourier_demo_wx_sgskip.ipynb b/_downloads/fourier_demo_wx_sgskip.ipynb deleted file mode 120000 index e12097f434d..00000000000 --- a/_downloads/fourier_demo_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fourier_demo_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/fourier_demo_wx_sgskip.py b/_downloads/fourier_demo_wx_sgskip.py deleted file mode 120000 index 0179f5e9c4a..00000000000 --- a/_downloads/fourier_demo_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/fourier_demo_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/frame_grabbing_sgskip.ipynb b/_downloads/frame_grabbing_sgskip.ipynb deleted file mode 120000 index 2d42a1f8f57..00000000000 --- a/_downloads/frame_grabbing_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/frame_grabbing_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/frame_grabbing_sgskip.py b/_downloads/frame_grabbing_sgskip.py deleted file mode 120000 index 16be6edbf5c..00000000000 --- a/_downloads/frame_grabbing_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/frame_grabbing_sgskip.py \ No newline at end of file diff --git a/_downloads/ftface_props.ipynb b/_downloads/ftface_props.ipynb deleted file mode 120000 index 4057e870995..00000000000 --- a/_downloads/ftface_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ftface_props.ipynb \ No newline at end of file diff --git a/_downloads/ftface_props.py b/_downloads/ftface_props.py deleted file mode 120000 index 2fa8b14b7a8..00000000000 --- a/_downloads/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ftface_props.py \ No newline at end of file diff --git a/_downloads/gallery_jupyter.zip b/_downloads/gallery_jupyter.zip deleted file mode 120000 index 9fabf58f32f..00000000000 --- a/_downloads/gallery_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gallery_jupyter.zip \ No newline at end of file diff --git a/_downloads/gallery_python.zip b/_downloads/gallery_python.zip deleted file mode 120000 index aacc821d241..00000000000 --- a/_downloads/gallery_python.zip +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gallery_python.zip \ No newline at end of file diff --git a/_downloads/ganged_plots.ipynb b/_downloads/ganged_plots.ipynb deleted file mode 120000 index e51f563ba23..00000000000 --- a/_downloads/ganged_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ganged_plots.ipynb \ No newline at end of file diff --git a/_downloads/ganged_plots.py b/_downloads/ganged_plots.py deleted file mode 120000 index 04128d79070..00000000000 --- a/_downloads/ganged_plots.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ganged_plots.py \ No newline at end of file diff --git a/_downloads/geo_demo.ipynb b/_downloads/geo_demo.ipynb deleted file mode 120000 index 7a6b1606e2a..00000000000 --- a/_downloads/geo_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/geo_demo.ipynb \ No newline at end of file diff --git a/_downloads/geo_demo.py b/_downloads/geo_demo.py deleted file mode 120000 index 6461cd00ba9..00000000000 --- a/_downloads/geo_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/geo_demo.py \ No newline at end of file diff --git a/_downloads/ggplot.ipynb b/_downloads/ggplot.ipynb deleted file mode 120000 index d26dbd7b3ca..00000000000 --- a/_downloads/ggplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ggplot.ipynb \ No newline at end of file diff --git a/_downloads/ggplot.py b/_downloads/ggplot.py deleted file mode 120000 index 258fc6936bb..00000000000 --- a/_downloads/ggplot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ggplot.py \ No newline at end of file diff --git a/_downloads/ginput_demo_sgskip.ipynb b/_downloads/ginput_demo_sgskip.ipynb deleted file mode 120000 index 029eaf70ad1..00000000000 --- a/_downloads/ginput_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ginput_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ginput_demo_sgskip.py b/_downloads/ginput_demo_sgskip.py deleted file mode 120000 index e45872a9495..00000000000 --- a/_downloads/ginput_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ginput_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/ginput_manual_clabel_sgskip.ipynb b/_downloads/ginput_manual_clabel_sgskip.ipynb deleted file mode 120000 index 8a07bd07775..00000000000 --- a/_downloads/ginput_manual_clabel_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ginput_manual_clabel_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/ginput_manual_clabel_sgskip.py b/_downloads/ginput_manual_clabel_sgskip.py deleted file mode 120000 index 05d157be135..00000000000 --- a/_downloads/ginput_manual_clabel_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ginput_manual_clabel_sgskip.py \ No newline at end of file diff --git a/_downloads/gradient_bar.ipynb b/_downloads/gradient_bar.ipynb deleted file mode 120000 index ef2e3e6403f..00000000000 --- a/_downloads/gradient_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gradient_bar.ipynb \ No newline at end of file diff --git a/_downloads/gradient_bar.py b/_downloads/gradient_bar.py deleted file mode 120000 index 3979b4ed772..00000000000 --- a/_downloads/gradient_bar.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gradient_bar.py \ No newline at end of file diff --git a/_downloads/grayscale.ipynb b/_downloads/grayscale.ipynb deleted file mode 120000 index 212030c9e4a..00000000000 --- a/_downloads/grayscale.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/grayscale.ipynb \ No newline at end of file diff --git a/_downloads/grayscale.py b/_downloads/grayscale.py deleted file mode 120000 index c61ac54ebbf..00000000000 --- a/_downloads/grayscale.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/grayscale.py \ No newline at end of file diff --git a/_downloads/griddata_demo.ipynb b/_downloads/griddata_demo.ipynb deleted file mode 120000 index 2d49819a80e..00000000000 --- a/_downloads/griddata_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/griddata_demo.ipynb \ No newline at end of file diff --git a/_downloads/griddata_demo.py b/_downloads/griddata_demo.py deleted file mode 120000 index f58f1554ba3..00000000000 --- a/_downloads/griddata_demo.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/griddata_demo.py \ No newline at end of file diff --git a/_downloads/gridspec.ipynb b/_downloads/gridspec.ipynb deleted file mode 120000 index ecfa15d6bdd..00000000000 --- a/_downloads/gridspec.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec.ipynb \ No newline at end of file diff --git a/_downloads/gridspec.py b/_downloads/gridspec.py deleted file mode 120000 index d3ab011293d..00000000000 --- a/_downloads/gridspec.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec.py \ No newline at end of file diff --git a/_downloads/gridspec_and_subplots.ipynb b/_downloads/gridspec_and_subplots.ipynb deleted file mode 120000 index 4eeafd5ad91..00000000000 --- a/_downloads/gridspec_and_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec_and_subplots.ipynb \ No newline at end of file diff --git a/_downloads/gridspec_and_subplots.py b/_downloads/gridspec_and_subplots.py deleted file mode 120000 index 387a4dc31c4..00000000000 --- a/_downloads/gridspec_and_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec_and_subplots.py \ No newline at end of file diff --git a/_downloads/gridspec_multicolumn.ipynb b/_downloads/gridspec_multicolumn.ipynb deleted file mode 120000 index 758c4888fdd..00000000000 --- a/_downloads/gridspec_multicolumn.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec_multicolumn.ipynb \ No newline at end of file diff --git a/_downloads/gridspec_multicolumn.py b/_downloads/gridspec_multicolumn.py deleted file mode 120000 index d506af558d6..00000000000 --- a/_downloads/gridspec_multicolumn.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec_multicolumn.py \ No newline at end of file diff --git a/_downloads/gridspec_nested.ipynb b/_downloads/gridspec_nested.ipynb deleted file mode 120000 index 521b68fcaf8..00000000000 --- a/_downloads/gridspec_nested.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec_nested.ipynb \ No newline at end of file diff --git a/_downloads/gridspec_nested.py b/_downloads/gridspec_nested.py deleted file mode 120000 index 2d96f238210..00000000000 --- a/_downloads/gridspec_nested.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gridspec_nested.py \ No newline at end of file diff --git a/_downloads/gtk_spreadsheet_sgskip.ipynb b/_downloads/gtk_spreadsheet_sgskip.ipynb deleted file mode 120000 index 553eec9084c..00000000000 --- a/_downloads/gtk_spreadsheet_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gtk_spreadsheet_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/gtk_spreadsheet_sgskip.py b/_downloads/gtk_spreadsheet_sgskip.py deleted file mode 120000 index 23afa1fc75e..00000000000 --- a/_downloads/gtk_spreadsheet_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/gtk_spreadsheet_sgskip.py \ No newline at end of file diff --git a/_downloads/hatch_demo.ipynb b/_downloads/hatch_demo.ipynb deleted file mode 120000 index 2ecc0e27af5..00000000000 --- a/_downloads/hatch_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hatch_demo.ipynb \ No newline at end of file diff --git a/_downloads/hatch_demo.py b/_downloads/hatch_demo.py deleted file mode 120000 index 1d6ab7f76fa..00000000000 --- a/_downloads/hatch_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hatch_demo.py \ No newline at end of file diff --git a/_downloads/hexbin_demo.ipynb b/_downloads/hexbin_demo.ipynb deleted file mode 120000 index 08602749870..00000000000 --- a/_downloads/hexbin_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hexbin_demo.ipynb \ No newline at end of file diff --git a/_downloads/hexbin_demo.py b/_downloads/hexbin_demo.py deleted file mode 120000 index 0fdb70b6082..00000000000 --- a/_downloads/hexbin_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hexbin_demo.py \ No newline at end of file diff --git a/_downloads/hinton_demo.ipynb b/_downloads/hinton_demo.ipynb deleted file mode 120000 index fd68df107ab..00000000000 --- a/_downloads/hinton_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hinton_demo.ipynb \ No newline at end of file diff --git a/_downloads/hinton_demo.py b/_downloads/hinton_demo.py deleted file mode 120000 index b36e103da76..00000000000 --- a/_downloads/hinton_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hinton_demo.py \ No newline at end of file diff --git a/_downloads/hist.ipynb b/_downloads/hist.ipynb deleted file mode 120000 index 26f04ca589e..00000000000 --- a/_downloads/hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hist.ipynb \ No newline at end of file diff --git a/_downloads/hist.py b/_downloads/hist.py deleted file mode 120000 index a5939e60ca5..00000000000 --- a/_downloads/hist.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hist.py \ No newline at end of file diff --git a/_downloads/hist3d.ipynb b/_downloads/hist3d.ipynb deleted file mode 120000 index 93d48d8417a..00000000000 --- a/_downloads/hist3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hist3d.ipynb \ No newline at end of file diff --git a/_downloads/hist3d.py b/_downloads/hist3d.py deleted file mode 120000 index 5b9eaaa6975..00000000000 --- a/_downloads/hist3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hist3d.py \ No newline at end of file diff --git a/_downloads/histogram.ipynb b/_downloads/histogram.ipynb deleted file mode 120000 index 5604bf9b8a0..00000000000 --- a/_downloads/histogram.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram.ipynb \ No newline at end of file diff --git a/_downloads/histogram.py b/_downloads/histogram.py deleted file mode 120000 index b575a954c4c..00000000000 --- a/_downloads/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram.py \ No newline at end of file diff --git a/_downloads/histogram1.ipynb b/_downloads/histogram1.ipynb deleted file mode 120000 index 8c868e5ab8d..00000000000 --- a/_downloads/histogram1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/histogram1.ipynb \ No newline at end of file diff --git a/_downloads/histogram1.py b/_downloads/histogram1.py deleted file mode 120000 index aa1bfbeda5e..00000000000 --- a/_downloads/histogram1.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/histogram1.py \ No newline at end of file diff --git a/_downloads/histogram_cumulative.ipynb b/_downloads/histogram_cumulative.ipynb deleted file mode 120000 index 42a59c86dfc..00000000000 --- a/_downloads/histogram_cumulative.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_cumulative.ipynb \ No newline at end of file diff --git a/_downloads/histogram_cumulative.py b/_downloads/histogram_cumulative.py deleted file mode 120000 index 8d6f53525d1..00000000000 --- a/_downloads/histogram_cumulative.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_cumulative.py \ No newline at end of file diff --git a/_downloads/histogram_demo_canvasagg_sgskip.ipynb b/_downloads/histogram_demo_canvasagg_sgskip.ipynb deleted file mode 120000 index f83e60dc49f..00000000000 --- a/_downloads/histogram_demo_canvasagg_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/histogram_demo_canvasagg_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/histogram_demo_canvasagg_sgskip.py b/_downloads/histogram_demo_canvasagg_sgskip.py deleted file mode 120000 index 71bd559186e..00000000000 --- a/_downloads/histogram_demo_canvasagg_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/histogram_demo_canvasagg_sgskip.py \ No newline at end of file diff --git a/_downloads/histogram_features.ipynb b/_downloads/histogram_features.ipynb deleted file mode 120000 index 1bceb6000b3..00000000000 --- a/_downloads/histogram_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_features.ipynb \ No newline at end of file diff --git a/_downloads/histogram_features.py b/_downloads/histogram_features.py deleted file mode 120000 index 6c2e96cf742..00000000000 --- a/_downloads/histogram_features.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_features.py \ No newline at end of file diff --git a/_downloads/histogram_histtypes.ipynb b/_downloads/histogram_histtypes.ipynb deleted file mode 120000 index 2ff018d461d..00000000000 --- a/_downloads/histogram_histtypes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_histtypes.ipynb \ No newline at end of file diff --git a/_downloads/histogram_histtypes.py b/_downloads/histogram_histtypes.py deleted file mode 120000 index 9c7b8102c32..00000000000 --- a/_downloads/histogram_histtypes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_histtypes.py \ No newline at end of file diff --git a/_downloads/histogram_multihist.ipynb b/_downloads/histogram_multihist.ipynb deleted file mode 120000 index 2d923be7bcf..00000000000 --- a/_downloads/histogram_multihist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_multihist.ipynb \ No newline at end of file diff --git a/_downloads/histogram_multihist.py b/_downloads/histogram_multihist.py deleted file mode 120000 index 8f13310f3fc..00000000000 --- a/_downloads/histogram_multihist.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_multihist.py \ No newline at end of file diff --git a/_downloads/histogram_path.ipynb b/_downloads/histogram_path.ipynb deleted file mode 120000 index 6b0a2b39816..00000000000 --- a/_downloads/histogram_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_path.ipynb \ No newline at end of file diff --git a/_downloads/histogram_path.py b/_downloads/histogram_path.py deleted file mode 120000 index bd9e03b4172..00000000000 --- a/_downloads/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/histogram_path.py \ No newline at end of file diff --git a/_downloads/hyperlinks_sgskip.ipynb b/_downloads/hyperlinks_sgskip.ipynb deleted file mode 120000 index 409e5ea4477..00000000000 --- a/_downloads/hyperlinks_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hyperlinks_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/hyperlinks_sgskip.py b/_downloads/hyperlinks_sgskip.py deleted file mode 120000 index 4062570b287..00000000000 --- a/_downloads/hyperlinks_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/hyperlinks_sgskip.py \ No newline at end of file diff --git a/_downloads/image_annotated_heatmap.ipynb b/_downloads/image_annotated_heatmap.ipynb deleted file mode 120000 index b4ddb0afdfa..00000000000 --- a/_downloads/image_annotated_heatmap.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_annotated_heatmap.ipynb \ No newline at end of file diff --git a/_downloads/image_annotated_heatmap.py b/_downloads/image_annotated_heatmap.py deleted file mode 120000 index 80204509d5e..00000000000 --- a/_downloads/image_annotated_heatmap.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_annotated_heatmap.py \ No newline at end of file diff --git a/_downloads/image_clip_path.ipynb b/_downloads/image_clip_path.ipynb deleted file mode 120000 index bf6b8c2b4ce..00000000000 --- a/_downloads/image_clip_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_clip_path.ipynb \ No newline at end of file diff --git a/_downloads/image_clip_path.py b/_downloads/image_clip_path.py deleted file mode 120000 index 00a1bbb3b85..00000000000 --- a/_downloads/image_clip_path.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_clip_path.py \ No newline at end of file diff --git a/_downloads/image_demo.ipynb b/_downloads/image_demo.ipynb deleted file mode 120000 index dfd83c0901d..00000000000 --- a/_downloads/image_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_demo.ipynb \ No newline at end of file diff --git a/_downloads/image_demo.py b/_downloads/image_demo.py deleted file mode 120000 index ee1b3b43db7..00000000000 --- a/_downloads/image_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_demo.py \ No newline at end of file diff --git a/_downloads/image_masked.ipynb b/_downloads/image_masked.ipynb deleted file mode 120000 index 7d998d46608..00000000000 --- a/_downloads/image_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_masked.ipynb \ No newline at end of file diff --git a/_downloads/image_masked.py b/_downloads/image_masked.py deleted file mode 120000 index 83fbc7b069b..00000000000 --- a/_downloads/image_masked.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_masked.py \ No newline at end of file diff --git a/_downloads/image_nonuniform.ipynb b/_downloads/image_nonuniform.ipynb deleted file mode 120000 index 536f8ce32d0..00000000000 --- a/_downloads/image_nonuniform.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_nonuniform.ipynb \ No newline at end of file diff --git a/_downloads/image_nonuniform.py b/_downloads/image_nonuniform.py deleted file mode 120000 index 0e70067eb02..00000000000 --- a/_downloads/image_nonuniform.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_nonuniform.py \ No newline at end of file diff --git a/_downloads/image_slices_viewer.ipynb b/_downloads/image_slices_viewer.ipynb deleted file mode 120000 index eb0f68ee70e..00000000000 --- a/_downloads/image_slices_viewer.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_slices_viewer.ipynb \ No newline at end of file diff --git a/_downloads/image_slices_viewer.py b/_downloads/image_slices_viewer.py deleted file mode 120000 index e7e3778066e..00000000000 --- a/_downloads/image_slices_viewer.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_slices_viewer.py \ No newline at end of file diff --git a/_downloads/image_thumbnail_sgskip.ipynb b/_downloads/image_thumbnail_sgskip.ipynb deleted file mode 120000 index 2c2a0e8716a..00000000000 --- a/_downloads/image_thumbnail_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_thumbnail_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/image_thumbnail_sgskip.py b/_downloads/image_thumbnail_sgskip.py deleted file mode 120000 index ad28f9fc21f..00000000000 --- a/_downloads/image_thumbnail_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_thumbnail_sgskip.py \ No newline at end of file diff --git a/_downloads/image_transparency_blend.ipynb b/_downloads/image_transparency_blend.ipynb deleted file mode 120000 index 4dadd6caa94..00000000000 --- a/_downloads/image_transparency_blend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_transparency_blend.ipynb \ No newline at end of file diff --git a/_downloads/image_transparency_blend.py b/_downloads/image_transparency_blend.py deleted file mode 120000 index 8104c169b68..00000000000 --- a/_downloads/image_transparency_blend.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_transparency_blend.py \ No newline at end of file diff --git a/_downloads/image_zcoord.ipynb b/_downloads/image_zcoord.ipynb deleted file mode 120000 index 7bd42d2f42b..00000000000 --- a/_downloads/image_zcoord.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_zcoord.ipynb \ No newline at end of file diff --git a/_downloads/image_zcoord.py b/_downloads/image_zcoord.py deleted file mode 120000 index b18f9f590cf..00000000000 --- a/_downloads/image_zcoord.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/image_zcoord.py \ No newline at end of file diff --git a/_downloads/images.ipynb b/_downloads/images.ipynb deleted file mode 120000 index 3384e13c83a..00000000000 --- a/_downloads/images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/images.ipynb \ No newline at end of file diff --git a/_downloads/images.py b/_downloads/images.py deleted file mode 120000 index b1b39c7050e..00000000000 --- a/_downloads/images.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/images.py \ No newline at end of file diff --git a/_downloads/imshow_extent.ipynb b/_downloads/imshow_extent.ipynb deleted file mode 120000 index 41371c28c44..00000000000 --- a/_downloads/imshow_extent.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/imshow_extent.ipynb \ No newline at end of file diff --git a/_downloads/imshow_extent.py b/_downloads/imshow_extent.py deleted file mode 120000 index 701b35e4be4..00000000000 --- a/_downloads/imshow_extent.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/imshow_extent.py \ No newline at end of file diff --git a/_downloads/inset_locator_demo.ipynb b/_downloads/inset_locator_demo.ipynb deleted file mode 120000 index dbca5b8009b..00000000000 --- a/_downloads/inset_locator_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/inset_locator_demo.ipynb \ No newline at end of file diff --git a/_downloads/inset_locator_demo.py b/_downloads/inset_locator_demo.py deleted file mode 120000 index d0cc023c22b..00000000000 --- a/_downloads/inset_locator_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/inset_locator_demo.py \ No newline at end of file diff --git a/_downloads/inset_locator_demo2.ipynb b/_downloads/inset_locator_demo2.ipynb deleted file mode 120000 index c3c1c779a31..00000000000 --- a/_downloads/inset_locator_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/inset_locator_demo2.ipynb \ No newline at end of file diff --git a/_downloads/inset_locator_demo2.py b/_downloads/inset_locator_demo2.py deleted file mode 120000 index 41c9a8b45bc..00000000000 --- a/_downloads/inset_locator_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/inset_locator_demo2.py \ No newline at end of file diff --git a/_downloads/integral.ipynb b/_downloads/integral.ipynb deleted file mode 120000 index dfd22f0b93b..00000000000 --- a/_downloads/integral.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/integral.ipynb \ No newline at end of file diff --git a/_downloads/integral.py b/_downloads/integral.py deleted file mode 120000 index cbc05532890..00000000000 --- a/_downloads/integral.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/integral.py \ No newline at end of file diff --git a/_downloads/interp_demo.ipynb b/_downloads/interp_demo.ipynb deleted file mode 120000 index 3a467530001..00000000000 --- a/_downloads/interp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/interp_demo.ipynb \ No newline at end of file diff --git a/_downloads/interp_demo.py b/_downloads/interp_demo.py deleted file mode 120000 index d42823a388a..00000000000 --- a/_downloads/interp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/interp_demo.py \ No newline at end of file diff --git a/_downloads/interpolation_methods.ipynb b/_downloads/interpolation_methods.ipynb deleted file mode 120000 index 4d615bb137e..00000000000 --- a/_downloads/interpolation_methods.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/interpolation_methods.ipynb \ No newline at end of file diff --git a/_downloads/interpolation_methods.py b/_downloads/interpolation_methods.py deleted file mode 120000 index b1cce3f0f6b..00000000000 --- a/_downloads/interpolation_methods.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/interpolation_methods.py \ No newline at end of file diff --git a/_downloads/invert_axes.ipynb b/_downloads/invert_axes.ipynb deleted file mode 120000 index d5a29b8b4d9..00000000000 --- a/_downloads/invert_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/invert_axes.ipynb \ No newline at end of file diff --git a/_downloads/invert_axes.py b/_downloads/invert_axes.py deleted file mode 120000 index 017fbb391d4..00000000000 --- a/_downloads/invert_axes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/invert_axes.py \ No newline at end of file diff --git a/_downloads/irregulardatagrid.ipynb b/_downloads/irregulardatagrid.ipynb deleted file mode 120000 index 5851e8a7c1d..00000000000 --- a/_downloads/irregulardatagrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/irregulardatagrid.ipynb \ No newline at end of file diff --git a/_downloads/irregulardatagrid.py b/_downloads/irregulardatagrid.py deleted file mode 120000 index 5f45fe5107f..00000000000 --- a/_downloads/irregulardatagrid.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/irregulardatagrid.py \ No newline at end of file diff --git a/_downloads/joinstyle.ipynb b/_downloads/joinstyle.ipynb deleted file mode 120000 index a872fe444da..00000000000 --- a/_downloads/joinstyle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/joinstyle.ipynb \ No newline at end of file diff --git a/_downloads/joinstyle.py b/_downloads/joinstyle.py deleted file mode 120000 index 9c2e5bfd05f..00000000000 --- a/_downloads/joinstyle.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/joinstyle.py \ No newline at end of file diff --git a/_downloads/keypress_demo.ipynb b/_downloads/keypress_demo.ipynb deleted file mode 120000 index 33691703108..00000000000 --- a/_downloads/keypress_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/keypress_demo.ipynb \ No newline at end of file diff --git a/_downloads/keypress_demo.py b/_downloads/keypress_demo.py deleted file mode 120000 index 1779796c770..00000000000 --- a/_downloads/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/keypress_demo.py \ No newline at end of file diff --git a/_downloads/keyword_plotting.ipynb b/_downloads/keyword_plotting.ipynb deleted file mode 120000 index 85e19886e3a..00000000000 --- a/_downloads/keyword_plotting.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/keyword_plotting.ipynb \ No newline at end of file diff --git a/_downloads/keyword_plotting.py b/_downloads/keyword_plotting.py deleted file mode 120000 index 0ff8b408798..00000000000 --- a/_downloads/keyword_plotting.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/keyword_plotting.py \ No newline at end of file diff --git a/_downloads/lasso_demo.ipynb b/_downloads/lasso_demo.ipynb deleted file mode 120000 index 4ebfc1fa1b6..00000000000 --- a/_downloads/lasso_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lasso_demo.ipynb \ No newline at end of file diff --git a/_downloads/lasso_demo.py b/_downloads/lasso_demo.py deleted file mode 120000 index d598e7d46cb..00000000000 --- a/_downloads/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lasso_demo.py \ No newline at end of file diff --git a/_downloads/lasso_selector_demo_sgskip.ipynb b/_downloads/lasso_selector_demo_sgskip.ipynb deleted file mode 120000 index 7a1e8a26d65..00000000000 --- a/_downloads/lasso_selector_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lasso_selector_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/lasso_selector_demo_sgskip.py b/_downloads/lasso_selector_demo_sgskip.py deleted file mode 120000 index d15b1bf28cc..00000000000 --- a/_downloads/lasso_selector_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lasso_selector_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/layer_images.ipynb b/_downloads/layer_images.ipynb deleted file mode 120000 index d28ed95f3da..00000000000 --- a/_downloads/layer_images.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/layer_images.ipynb \ No newline at end of file diff --git a/_downloads/layer_images.py b/_downloads/layer_images.py deleted file mode 120000 index fdfaec31b67..00000000000 --- a/_downloads/layer_images.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/layer_images.py \ No newline at end of file diff --git a/_downloads/leftventricle_bulleye.ipynb b/_downloads/leftventricle_bulleye.ipynb deleted file mode 120000 index d20006987f6..00000000000 --- a/_downloads/leftventricle_bulleye.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/leftventricle_bulleye.ipynb \ No newline at end of file diff --git a/_downloads/leftventricle_bulleye.py b/_downloads/leftventricle_bulleye.py deleted file mode 120000 index 65be40cce8d..00000000000 --- a/_downloads/leftventricle_bulleye.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/leftventricle_bulleye.py \ No newline at end of file diff --git a/_downloads/legend.ipynb b/_downloads/legend.ipynb deleted file mode 120000 index 433a49bfa55..00000000000 --- a/_downloads/legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend.ipynb \ No newline at end of file diff --git a/_downloads/legend.py b/_downloads/legend.py deleted file mode 120000 index 2b9aaaf52c0..00000000000 --- a/_downloads/legend.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend.py \ No newline at end of file diff --git a/_downloads/legend_demo.ipynb b/_downloads/legend_demo.ipynb deleted file mode 120000 index a98baccf78a..00000000000 --- a/_downloads/legend_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend_demo.ipynb \ No newline at end of file diff --git a/_downloads/legend_demo.py b/_downloads/legend_demo.py deleted file mode 120000 index 94b1a36bf1d..00000000000 --- a/_downloads/legend_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend_demo.py \ No newline at end of file diff --git a/_downloads/legend_guide.ipynb b/_downloads/legend_guide.ipynb deleted file mode 120000 index 6247e09c443..00000000000 --- a/_downloads/legend_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend_guide.ipynb \ No newline at end of file diff --git a/_downloads/legend_guide.py b/_downloads/legend_guide.py deleted file mode 120000 index 56e61d94da7..00000000000 --- a/_downloads/legend_guide.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend_guide.py \ No newline at end of file diff --git a/_downloads/legend_picking.ipynb b/_downloads/legend_picking.ipynb deleted file mode 120000 index 2cc9fd6a92b..00000000000 --- a/_downloads/legend_picking.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend_picking.ipynb \ No newline at end of file diff --git a/_downloads/legend_picking.py b/_downloads/legend_picking.py deleted file mode 120000 index db3bbc2f3dd..00000000000 --- a/_downloads/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/legend_picking.py \ No newline at end of file diff --git a/_downloads/lifecycle.ipynb b/_downloads/lifecycle.ipynb deleted file mode 120000 index 5773562e582..00000000000 --- a/_downloads/lifecycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lifecycle.ipynb \ No newline at end of file diff --git a/_downloads/lifecycle.py b/_downloads/lifecycle.py deleted file mode 120000 index 4bdfb4aeeca..00000000000 --- a/_downloads/lifecycle.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lifecycle.py \ No newline at end of file diff --git a/_downloads/line_collection.ipynb b/_downloads/line_collection.ipynb deleted file mode 120000 index 738da97ba81..00000000000 --- a/_downloads/line_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_collection.ipynb \ No newline at end of file diff --git a/_downloads/line_collection.py b/_downloads/line_collection.py deleted file mode 120000 index a364168cb79..00000000000 --- a/_downloads/line_collection.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_collection.py \ No newline at end of file diff --git a/_downloads/line_demo_dash_control.ipynb b/_downloads/line_demo_dash_control.ipynb deleted file mode 120000 index 9932a10ac1e..00000000000 --- a/_downloads/line_demo_dash_control.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_demo_dash_control.ipynb \ No newline at end of file diff --git a/_downloads/line_demo_dash_control.py b/_downloads/line_demo_dash_control.py deleted file mode 120000 index e1a03e50119..00000000000 --- a/_downloads/line_demo_dash_control.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_demo_dash_control.py \ No newline at end of file diff --git a/_downloads/line_styles_reference.ipynb b/_downloads/line_styles_reference.ipynb deleted file mode 120000 index c086994dca8..00000000000 --- a/_downloads/line_styles_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_styles_reference.ipynb \ No newline at end of file diff --git a/_downloads/line_styles_reference.py b/_downloads/line_styles_reference.py deleted file mode 120000 index c2f7fc67542..00000000000 --- a/_downloads/line_styles_reference.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_styles_reference.py \ No newline at end of file diff --git a/_downloads/line_with_text.ipynb b/_downloads/line_with_text.ipynb deleted file mode 120000 index 956a7298905..00000000000 --- a/_downloads/line_with_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_with_text.ipynb \ No newline at end of file diff --git a/_downloads/line_with_text.py b/_downloads/line_with_text.py deleted file mode 120000 index a8759cf0770..00000000000 --- a/_downloads/line_with_text.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/line_with_text.py \ No newline at end of file diff --git a/_downloads/lineprops_dialog_gtk_sgskip.ipynb b/_downloads/lineprops_dialog_gtk_sgskip.ipynb deleted file mode 120000 index abf3f994d61..00000000000 --- a/_downloads/lineprops_dialog_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/lineprops_dialog_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/lineprops_dialog_gtk_sgskip.py b/_downloads/lineprops_dialog_gtk_sgskip.py deleted file mode 120000 index 432f78a7306..00000000000 --- a/_downloads/lineprops_dialog_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/lineprops_dialog_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/lines3d.ipynb b/_downloads/lines3d.ipynb deleted file mode 120000 index b399807e38f..00000000000 --- a/_downloads/lines3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lines3d.ipynb \ No newline at end of file diff --git a/_downloads/lines3d.py b/_downloads/lines3d.py deleted file mode 120000 index 8ae6009944e..00000000000 --- a/_downloads/lines3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lines3d.py \ No newline at end of file diff --git a/_downloads/linestyles.ipynb b/_downloads/linestyles.ipynb deleted file mode 120000 index b59afd67641..00000000000 --- a/_downloads/linestyles.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/linestyles.ipynb \ No newline at end of file diff --git a/_downloads/linestyles.py b/_downloads/linestyles.py deleted file mode 120000 index b4337d880a4..00000000000 --- a/_downloads/linestyles.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/linestyles.py \ No newline at end of file diff --git a/_downloads/load_converter.ipynb b/_downloads/load_converter.ipynb deleted file mode 120000 index 4487539915a..00000000000 --- a/_downloads/load_converter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/load_converter.ipynb \ No newline at end of file diff --git a/_downloads/load_converter.py b/_downloads/load_converter.py deleted file mode 120000 index 9905383cd12..00000000000 --- a/_downloads/load_converter.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/load_converter.py \ No newline at end of file diff --git a/_downloads/log_bar.ipynb b/_downloads/log_bar.ipynb deleted file mode 120000 index 7c924d40e65..00000000000 --- a/_downloads/log_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/log_bar.ipynb \ No newline at end of file diff --git a/_downloads/log_bar.py b/_downloads/log_bar.py deleted file mode 120000 index a16a49f4029..00000000000 --- a/_downloads/log_bar.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/log_bar.py \ No newline at end of file diff --git a/_downloads/log_demo.ipynb b/_downloads/log_demo.ipynb deleted file mode 120000 index 9157c32285d..00000000000 --- a/_downloads/log_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/log_demo.ipynb \ No newline at end of file diff --git a/_downloads/log_demo.py b/_downloads/log_demo.py deleted file mode 120000 index 4065aa5d255..00000000000 --- a/_downloads/log_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/log_demo.py \ No newline at end of file diff --git a/_downloads/log_test.ipynb b/_downloads/log_test.ipynb deleted file mode 120000 index 6959eb79abe..00000000000 --- a/_downloads/log_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/log_test.ipynb \ No newline at end of file diff --git a/_downloads/log_test.py b/_downloads/log_test.py deleted file mode 120000 index 8a714508a6f..00000000000 --- a/_downloads/log_test.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/log_test.py \ No newline at end of file diff --git a/_downloads/logos2.ipynb b/_downloads/logos2.ipynb deleted file mode 120000 index a65a2f23346..00000000000 --- a/_downloads/logos2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/logos2.ipynb \ No newline at end of file diff --git a/_downloads/logos2.py b/_downloads/logos2.py deleted file mode 120000 index ba8acf1f6c0..00000000000 --- a/_downloads/logos2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/logos2.py \ No newline at end of file diff --git a/_downloads/looking_glass.ipynb b/_downloads/looking_glass.ipynb deleted file mode 120000 index 2e1bee5d373..00000000000 --- a/_downloads/looking_glass.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/looking_glass.ipynb \ No newline at end of file diff --git a/_downloads/looking_glass.py b/_downloads/looking_glass.py deleted file mode 120000 index caf8edc344b..00000000000 --- a/_downloads/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/looking_glass.py \ No newline at end of file diff --git a/_downloads/lorenz_attractor.ipynb b/_downloads/lorenz_attractor.ipynb deleted file mode 120000 index 41aa181ab03..00000000000 --- a/_downloads/lorenz_attractor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lorenz_attractor.ipynb \ No newline at end of file diff --git a/_downloads/lorenz_attractor.py b/_downloads/lorenz_attractor.py deleted file mode 120000 index 452d0d391e5..00000000000 --- a/_downloads/lorenz_attractor.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/lorenz_attractor.py \ No newline at end of file diff --git a/_downloads/major_minor_demo.ipynb b/_downloads/major_minor_demo.ipynb deleted file mode 120000 index dc24bba5a7a..00000000000 --- a/_downloads/major_minor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/major_minor_demo.ipynb \ No newline at end of file diff --git a/_downloads/major_minor_demo.py b/_downloads/major_minor_demo.py deleted file mode 120000 index 3c7e23aa9cf..00000000000 --- a/_downloads/major_minor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/major_minor_demo.py \ No newline at end of file diff --git a/_downloads/make_room_for_ylabel_using_axesgrid.ipynb b/_downloads/make_room_for_ylabel_using_axesgrid.ipynb deleted file mode 120000 index 7620d4b0811..00000000000 --- a/_downloads/make_room_for_ylabel_using_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/make_room_for_ylabel_using_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/make_room_for_ylabel_using_axesgrid.py b/_downloads/make_room_for_ylabel_using_axesgrid.py deleted file mode 120000 index aea8a994f08..00000000000 --- a/_downloads/make_room_for_ylabel_using_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/make_room_for_ylabel_using_axesgrid.py \ No newline at end of file diff --git a/_downloads/mandelbrot.ipynb b/_downloads/mandelbrot.ipynb deleted file mode 120000 index be66c410848..00000000000 --- a/_downloads/mandelbrot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mandelbrot.ipynb \ No newline at end of file diff --git a/_downloads/mandelbrot.py b/_downloads/mandelbrot.py deleted file mode 120000 index 4f978397d3d..00000000000 --- a/_downloads/mandelbrot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mandelbrot.py \ No newline at end of file diff --git a/_downloads/marker_fillstyle_reference.ipynb b/_downloads/marker_fillstyle_reference.ipynb deleted file mode 120000 index 61ec7fca94d..00000000000 --- a/_downloads/marker_fillstyle_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/marker_fillstyle_reference.ipynb \ No newline at end of file diff --git a/_downloads/marker_fillstyle_reference.py b/_downloads/marker_fillstyle_reference.py deleted file mode 120000 index 7761922cd6b..00000000000 --- a/_downloads/marker_fillstyle_reference.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/marker_fillstyle_reference.py \ No newline at end of file diff --git a/_downloads/marker_path.ipynb b/_downloads/marker_path.ipynb deleted file mode 120000 index 78d63b415d4..00000000000 --- a/_downloads/marker_path.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/marker_path.ipynb \ No newline at end of file diff --git a/_downloads/marker_path.py b/_downloads/marker_path.py deleted file mode 120000 index 197f006aae3..00000000000 --- a/_downloads/marker_path.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/marker_path.py \ No newline at end of file diff --git a/_downloads/marker_reference.ipynb b/_downloads/marker_reference.ipynb deleted file mode 120000 index 1a9a3f91e06..00000000000 --- a/_downloads/marker_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/marker_reference.ipynb \ No newline at end of file diff --git a/_downloads/marker_reference.py b/_downloads/marker_reference.py deleted file mode 120000 index bc83c53b946..00000000000 --- a/_downloads/marker_reference.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/marker_reference.py \ No newline at end of file diff --git a/_downloads/markevery_demo.ipynb b/_downloads/markevery_demo.ipynb deleted file mode 120000 index a524cfa258c..00000000000 --- a/_downloads/markevery_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/markevery_demo.ipynb \ No newline at end of file diff --git a/_downloads/markevery_demo.py b/_downloads/markevery_demo.py deleted file mode 120000 index f0f5f40050c..00000000000 --- a/_downloads/markevery_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/markevery_demo.py \ No newline at end of file diff --git a/_downloads/markevery_prop_cycle.ipynb b/_downloads/markevery_prop_cycle.ipynb deleted file mode 120000 index b565e1bc118..00000000000 --- a/_downloads/markevery_prop_cycle.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/markevery_prop_cycle.ipynb \ No newline at end of file diff --git a/_downloads/markevery_prop_cycle.py b/_downloads/markevery_prop_cycle.py deleted file mode 120000 index e70918328ec..00000000000 --- a/_downloads/markevery_prop_cycle.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/markevery_prop_cycle.py \ No newline at end of file diff --git a/_downloads/masked_demo.ipynb b/_downloads/masked_demo.ipynb deleted file mode 120000 index f87245a58ef..00000000000 --- a/_downloads/masked_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/masked_demo.ipynb \ No newline at end of file diff --git a/_downloads/masked_demo.py b/_downloads/masked_demo.py deleted file mode 120000 index 3999031643d..00000000000 --- a/_downloads/masked_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/masked_demo.py \ No newline at end of file diff --git a/_downloads/mathtext.ipynb b/_downloads/mathtext.ipynb deleted file mode 120000 index 7139192e3c2..00000000000 --- a/_downloads/mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext.ipynb \ No newline at end of file diff --git a/_downloads/mathtext.py b/_downloads/mathtext.py deleted file mode 120000 index b8950486e36..00000000000 --- a/_downloads/mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext.py \ No newline at end of file diff --git a/_downloads/mathtext_asarray.ipynb b/_downloads/mathtext_asarray.ipynb deleted file mode 120000 index 1764d9acb59..00000000000 --- a/_downloads/mathtext_asarray.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_asarray.ipynb \ No newline at end of file diff --git a/_downloads/mathtext_asarray.py b/_downloads/mathtext_asarray.py deleted file mode 120000 index 51604b41d22..00000000000 --- a/_downloads/mathtext_asarray.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_asarray.py \ No newline at end of file diff --git a/_downloads/mathtext_demo.ipynb b/_downloads/mathtext_demo.ipynb deleted file mode 120000 index 1132a15669b..00000000000 --- a/_downloads/mathtext_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_demo.ipynb \ No newline at end of file diff --git a/_downloads/mathtext_demo.py b/_downloads/mathtext_demo.py deleted file mode 120000 index 37c640ba640..00000000000 --- a/_downloads/mathtext_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_demo.py \ No newline at end of file diff --git a/_downloads/mathtext_examples.ipynb b/_downloads/mathtext_examples.ipynb deleted file mode 120000 index 9718bb44d0f..00000000000 --- a/_downloads/mathtext_examples.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_examples.ipynb \ No newline at end of file diff --git a/_downloads/mathtext_examples.py b/_downloads/mathtext_examples.py deleted file mode 120000 index fd1a9851d60..00000000000 --- a/_downloads/mathtext_examples.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_examples.py \ No newline at end of file diff --git a/_downloads/mathtext_wx_sgskip.ipynb b/_downloads/mathtext_wx_sgskip.ipynb deleted file mode 120000 index 643a3993bd3..00000000000 --- a/_downloads/mathtext_wx_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_wx_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/mathtext_wx_sgskip.py b/_downloads/mathtext_wx_sgskip.py deleted file mode 120000 index 79b499c272e..00000000000 --- a/_downloads/mathtext_wx_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mathtext_wx_sgskip.py \ No newline at end of file diff --git a/_downloads/matshow.ipynb b/_downloads/matshow.ipynb deleted file mode 120000 index bb5b14b1692..00000000000 --- a/_downloads/matshow.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/matshow.ipynb \ No newline at end of file diff --git a/_downloads/matshow.py b/_downloads/matshow.py deleted file mode 120000 index 6062d2e3b7f..00000000000 --- a/_downloads/matshow.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/matshow.py \ No newline at end of file diff --git a/_downloads/membrane.ipynb b/_downloads/membrane.ipynb deleted file mode 120000 index 0d057dd1292..00000000000 --- a/_downloads/membrane.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/membrane.ipynb \ No newline at end of file diff --git a/_downloads/membrane.py b/_downloads/membrane.py deleted file mode 120000 index c7810635446..00000000000 --- a/_downloads/membrane.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/membrane.py \ No newline at end of file diff --git a/_downloads/menu.ipynb b/_downloads/menu.ipynb deleted file mode 120000 index 15b05c43160..00000000000 --- a/_downloads/menu.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/menu.ipynb \ No newline at end of file diff --git a/_downloads/menu.py b/_downloads/menu.py deleted file mode 120000 index e214732334c..00000000000 --- a/_downloads/menu.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/menu.py \ No newline at end of file diff --git a/_downloads/mixed_subplots.ipynb b/_downloads/mixed_subplots.ipynb deleted file mode 120000 index cc1654be8c9..00000000000 --- a/_downloads/mixed_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mixed_subplots.ipynb \ No newline at end of file diff --git a/_downloads/mixed_subplots.py b/_downloads/mixed_subplots.py deleted file mode 120000 index a4182dcefdc..00000000000 --- a/_downloads/mixed_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mixed_subplots.py \ No newline at end of file diff --git a/_downloads/movie_demo_sgskip.ipynb b/_downloads/movie_demo_sgskip.ipynb deleted file mode 120000 index 583eaa8c911..00000000000 --- a/_downloads/movie_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/movie_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/movie_demo_sgskip.py b/_downloads/movie_demo_sgskip.py deleted file mode 120000 index 541542cfb88..00000000000 --- a/_downloads/movie_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/movie_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/moviewriter_sgskip.ipynb b/_downloads/moviewriter_sgskip.ipynb deleted file mode 120000 index 9e678a9dd78..00000000000 --- a/_downloads/moviewriter_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/moviewriter_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/moviewriter_sgskip.py b/_downloads/moviewriter_sgskip.py deleted file mode 120000 index 6324cb98bfc..00000000000 --- a/_downloads/moviewriter_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/moviewriter_sgskip.py \ No newline at end of file diff --git a/_downloads/mpl_with_glade3_sgskip.ipynb b/_downloads/mpl_with_glade3_sgskip.ipynb deleted file mode 120000 index d13bee95759..00000000000 --- a/_downloads/mpl_with_glade3_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mpl_with_glade3_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/mpl_with_glade3_sgskip.py b/_downloads/mpl_with_glade3_sgskip.py deleted file mode 120000 index 3caf9be7198..00000000000 --- a/_downloads/mpl_with_glade3_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mpl_with_glade3_sgskip.py \ No newline at end of file diff --git a/_downloads/mpl_with_glade_316_sgskip.ipynb b/_downloads/mpl_with_glade_316_sgskip.ipynb deleted file mode 120000 index 3aa1de8bae3..00000000000 --- a/_downloads/mpl_with_glade_316_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/mpl_with_glade_316_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/mpl_with_glade_316_sgskip.py b/_downloads/mpl_with_glade_316_sgskip.py deleted file mode 120000 index 2c182c7409d..00000000000 --- a/_downloads/mpl_with_glade_316_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/mpl_with_glade_316_sgskip.py \ No newline at end of file diff --git a/_downloads/mpl_with_glade_sgskip.ipynb b/_downloads/mpl_with_glade_sgskip.ipynb deleted file mode 120000 index 810e101e558..00000000000 --- a/_downloads/mpl_with_glade_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/mpl_with_glade_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/mpl_with_glade_sgskip.py b/_downloads/mpl_with_glade_sgskip.py deleted file mode 120000 index eb6a135841d..00000000000 --- a/_downloads/mpl_with_glade_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/mpl_with_glade_sgskip.py \ No newline at end of file diff --git a/_downloads/mplot3d.ipynb b/_downloads/mplot3d.ipynb deleted file mode 120000 index 629c737772d..00000000000 --- a/_downloads/mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/mplot3d.py b/_downloads/mplot3d.py deleted file mode 120000 index ca19af5f807..00000000000 --- a/_downloads/mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mplot3d.py \ No newline at end of file diff --git a/_downloads/mri_demo.ipynb b/_downloads/mri_demo.ipynb deleted file mode 120000 index 8552f8efd8b..00000000000 --- a/_downloads/mri_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mri_demo.ipynb \ No newline at end of file diff --git a/_downloads/mri_demo.py b/_downloads/mri_demo.py deleted file mode 120000 index bcfa931bd6f..00000000000 --- a/_downloads/mri_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mri_demo.py \ No newline at end of file diff --git a/_downloads/mri_with_eeg.ipynb b/_downloads/mri_with_eeg.ipynb deleted file mode 120000 index 6cf97ebe8b4..00000000000 --- a/_downloads/mri_with_eeg.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mri_with_eeg.ipynb \ No newline at end of file diff --git a/_downloads/mri_with_eeg.py b/_downloads/mri_with_eeg.py deleted file mode 120000 index bcb42ceb8c7..00000000000 --- a/_downloads/mri_with_eeg.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/mri_with_eeg.py \ No newline at end of file diff --git a/_downloads/multi_image.ipynb b/_downloads/multi_image.ipynb deleted file mode 120000 index b43b8344cc9..00000000000 --- a/_downloads/multi_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multi_image.ipynb \ No newline at end of file diff --git a/_downloads/multi_image.py b/_downloads/multi_image.py deleted file mode 120000 index 5ecbae9f841..00000000000 --- a/_downloads/multi_image.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multi_image.py \ No newline at end of file diff --git a/_downloads/multicolored_line.ipynb b/_downloads/multicolored_line.ipynb deleted file mode 120000 index 0843f9bd60d..00000000000 --- a/_downloads/multicolored_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multicolored_line.ipynb \ No newline at end of file diff --git a/_downloads/multicolored_line.py b/_downloads/multicolored_line.py deleted file mode 120000 index 6ec832bc1bb..00000000000 --- a/_downloads/multicolored_line.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multicolored_line.py \ No newline at end of file diff --git a/_downloads/multicursor.ipynb b/_downloads/multicursor.ipynb deleted file mode 120000 index 97818755749..00000000000 --- a/_downloads/multicursor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multicursor.ipynb \ No newline at end of file diff --git a/_downloads/multicursor.py b/_downloads/multicursor.py deleted file mode 120000 index cc800a0ef89..00000000000 --- a/_downloads/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multicursor.py \ No newline at end of file diff --git a/_downloads/multiline.ipynb b/_downloads/multiline.ipynb deleted file mode 120000 index b5f92f13818..00000000000 --- a/_downloads/multiline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiline.ipynb \ No newline at end of file diff --git a/_downloads/multiline.py b/_downloads/multiline.py deleted file mode 120000 index af5756a3682..00000000000 --- a/_downloads/multiline.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiline.py \ No newline at end of file diff --git a/_downloads/multipage_pdf.ipynb b/_downloads/multipage_pdf.ipynb deleted file mode 120000 index 9c25eec1dc9..00000000000 --- a/_downloads/multipage_pdf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multipage_pdf.ipynb \ No newline at end of file diff --git a/_downloads/multipage_pdf.py b/_downloads/multipage_pdf.py deleted file mode 120000 index 6d63aba26d0..00000000000 --- a/_downloads/multipage_pdf.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multipage_pdf.py \ No newline at end of file diff --git a/_downloads/multiple_figs_demo.ipynb b/_downloads/multiple_figs_demo.ipynb deleted file mode 120000 index 71115a00ff8..00000000000 --- a/_downloads/multiple_figs_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiple_figs_demo.ipynb \ No newline at end of file diff --git a/_downloads/multiple_figs_demo.py b/_downloads/multiple_figs_demo.py deleted file mode 120000 index df045ed9c15..00000000000 --- a/_downloads/multiple_figs_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiple_figs_demo.py \ No newline at end of file diff --git a/_downloads/multiple_histograms_side_by_side.ipynb b/_downloads/multiple_histograms_side_by_side.ipynb deleted file mode 120000 index f0b8617160f..00000000000 --- a/_downloads/multiple_histograms_side_by_side.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiple_histograms_side_by_side.ipynb \ No newline at end of file diff --git a/_downloads/multiple_histograms_side_by_side.py b/_downloads/multiple_histograms_side_by_side.py deleted file mode 120000 index dfa73dff8d0..00000000000 --- a/_downloads/multiple_histograms_side_by_side.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiple_histograms_side_by_side.py \ No newline at end of file diff --git a/_downloads/multiple_yaxis_with_spines.ipynb b/_downloads/multiple_yaxis_with_spines.ipynb deleted file mode 120000 index 10ae7134736..00000000000 --- a/_downloads/multiple_yaxis_with_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiple_yaxis_with_spines.ipynb \ No newline at end of file diff --git a/_downloads/multiple_yaxis_with_spines.py b/_downloads/multiple_yaxis_with_spines.py deleted file mode 120000 index e5d4f1b2164..00000000000 --- a/_downloads/multiple_yaxis_with_spines.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiple_yaxis_with_spines.py \ No newline at end of file diff --git a/_downloads/multiprocess_sgskip.ipynb b/_downloads/multiprocess_sgskip.ipynb deleted file mode 120000 index 31f69bcbbc2..00000000000 --- a/_downloads/multiprocess_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiprocess_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/multiprocess_sgskip.py b/_downloads/multiprocess_sgskip.py deleted file mode 120000 index d7a8b53b77e..00000000000 --- a/_downloads/multiprocess_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/multiprocess_sgskip.py \ No newline at end of file diff --git a/_downloads/named_colors.ipynb b/_downloads/named_colors.ipynb deleted file mode 120000 index a73dcd7de54..00000000000 --- a/_downloads/named_colors.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/named_colors.ipynb \ No newline at end of file diff --git a/_downloads/named_colors.py b/_downloads/named_colors.py deleted file mode 120000 index 19774fbcbde..00000000000 --- a/_downloads/named_colors.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/named_colors.py \ No newline at end of file diff --git a/_downloads/nan_test.ipynb b/_downloads/nan_test.ipynb deleted file mode 120000 index 87995da9976..00000000000 --- a/_downloads/nan_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/nan_test.ipynb \ No newline at end of file diff --git a/_downloads/nan_test.py b/_downloads/nan_test.py deleted file mode 120000 index 6fcf9b85672..00000000000 --- a/_downloads/nan_test.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/nan_test.py \ No newline at end of file diff --git a/_downloads/nested_pie.ipynb b/_downloads/nested_pie.ipynb deleted file mode 120000 index d8261d49d44..00000000000 --- a/_downloads/nested_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/nested_pie.ipynb \ No newline at end of file diff --git a/_downloads/nested_pie.py b/_downloads/nested_pie.py deleted file mode 120000 index d36557153c2..00000000000 --- a/_downloads/nested_pie.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/nested_pie.py \ No newline at end of file diff --git a/_downloads/offset.ipynb b/_downloads/offset.ipynb deleted file mode 120000 index 896c7baa5ea..00000000000 --- a/_downloads/offset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/offset.ipynb \ No newline at end of file diff --git a/_downloads/offset.py b/_downloads/offset.py deleted file mode 120000 index df1e9de9c03..00000000000 --- a/_downloads/offset.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/offset.py \ No newline at end of file diff --git a/_downloads/parasite_simple.ipynb b/_downloads/parasite_simple.ipynb deleted file mode 120000 index f7918b47562..00000000000 --- a/_downloads/parasite_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/parasite_simple.ipynb \ No newline at end of file diff --git a/_downloads/parasite_simple.py b/_downloads/parasite_simple.py deleted file mode 120000 index 9cc9ec44828..00000000000 --- a/_downloads/parasite_simple.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/parasite_simple.py \ No newline at end of file diff --git a/_downloads/parasite_simple2.ipynb b/_downloads/parasite_simple2.ipynb deleted file mode 120000 index bd366049340..00000000000 --- a/_downloads/parasite_simple2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/parasite_simple2.ipynb \ No newline at end of file diff --git a/_downloads/parasite_simple2.py b/_downloads/parasite_simple2.py deleted file mode 120000 index 1060ee77401..00000000000 --- a/_downloads/parasite_simple2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/parasite_simple2.py \ No newline at end of file diff --git a/_downloads/patch_collection.ipynb b/_downloads/patch_collection.ipynb deleted file mode 120000 index 6848ee657a6..00000000000 --- a/_downloads/patch_collection.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/patch_collection.ipynb \ No newline at end of file diff --git a/_downloads/patch_collection.py b/_downloads/patch_collection.py deleted file mode 120000 index a6801cdd144..00000000000 --- a/_downloads/patch_collection.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/patch_collection.py \ No newline at end of file diff --git a/_downloads/path_editor.ipynb b/_downloads/path_editor.ipynb deleted file mode 120000 index 0d4936eecce..00000000000 --- a/_downloads/path_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/path_editor.ipynb \ No newline at end of file diff --git a/_downloads/path_editor.py b/_downloads/path_editor.py deleted file mode 120000 index d2a0e7fa475..00000000000 --- a/_downloads/path_editor.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/path_editor.py \ No newline at end of file diff --git a/_downloads/path_patch.ipynb b/_downloads/path_patch.ipynb deleted file mode 120000 index 49a95c20b0a..00000000000 --- a/_downloads/path_patch.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/path_patch.ipynb \ No newline at end of file diff --git a/_downloads/path_patch.py b/_downloads/path_patch.py deleted file mode 120000 index 8449f11b173..00000000000 --- a/_downloads/path_patch.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/path_patch.py \ No newline at end of file diff --git a/_downloads/path_tutorial.ipynb b/_downloads/path_tutorial.ipynb deleted file mode 120000 index a72fccae553..00000000000 --- a/_downloads/path_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/path_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/path_tutorial.py b/_downloads/path_tutorial.py deleted file mode 120000 index cab1cb9144c..00000000000 --- a/_downloads/path_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/path_tutorial.py \ No newline at end of file diff --git a/_downloads/patheffect_demo.ipynb b/_downloads/patheffect_demo.ipynb deleted file mode 120000 index 1ff696bbc01..00000000000 --- a/_downloads/patheffect_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/patheffect_demo.ipynb \ No newline at end of file diff --git a/_downloads/patheffect_demo.py b/_downloads/patheffect_demo.py deleted file mode 120000 index 4ae94624864..00000000000 --- a/_downloads/patheffect_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/patheffect_demo.py \ No newline at end of file diff --git a/_downloads/patheffects_guide.ipynb b/_downloads/patheffects_guide.ipynb deleted file mode 120000 index 267b240b618..00000000000 --- a/_downloads/patheffects_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/patheffects_guide.ipynb \ No newline at end of file diff --git a/_downloads/patheffects_guide.py b/_downloads/patheffects_guide.py deleted file mode 120000 index 156b0db99bf..00000000000 --- a/_downloads/patheffects_guide.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/patheffects_guide.py \ No newline at end of file diff --git a/_downloads/pathpatch3d.ipynb b/_downloads/pathpatch3d.ipynb deleted file mode 120000 index ac613074f94..00000000000 --- a/_downloads/pathpatch3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pathpatch3d.ipynb \ No newline at end of file diff --git a/_downloads/pathpatch3d.py b/_downloads/pathpatch3d.py deleted file mode 120000 index 83c6d115379..00000000000 --- a/_downloads/pathpatch3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pathpatch3d.py \ No newline at end of file diff --git a/_downloads/pcolor_demo.ipynb b/_downloads/pcolor_demo.ipynb deleted file mode 120000 index c249c633a62..00000000000 --- a/_downloads/pcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/pcolor_demo.py b/_downloads/pcolor_demo.py deleted file mode 120000 index 9bcb0124229..00000000000 --- a/_downloads/pcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pcolor_demo.py \ No newline at end of file diff --git a/_downloads/pcolormesh_levels.ipynb b/_downloads/pcolormesh_levels.ipynb deleted file mode 120000 index 50348bd9ca2..00000000000 --- a/_downloads/pcolormesh_levels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pcolormesh_levels.ipynb \ No newline at end of file diff --git a/_downloads/pcolormesh_levels.py b/_downloads/pcolormesh_levels.py deleted file mode 120000 index 532092d607c..00000000000 --- a/_downloads/pcolormesh_levels.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pcolormesh_levels.py \ No newline at end of file diff --git a/_downloads/pgf.ipynb b/_downloads/pgf.ipynb deleted file mode 120000 index 95b1e9fd277..00000000000 --- a/_downloads/pgf.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf.ipynb \ No newline at end of file diff --git a/_downloads/pgf.py b/_downloads/pgf.py deleted file mode 120000 index 5b694242b63..00000000000 --- a/_downloads/pgf.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf.py \ No newline at end of file diff --git a/_downloads/pgf_fonts.ipynb b/_downloads/pgf_fonts.ipynb deleted file mode 120000 index 3ce5bd4b8d8..00000000000 --- a/_downloads/pgf_fonts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf_fonts.ipynb \ No newline at end of file diff --git a/_downloads/pgf_fonts.py b/_downloads/pgf_fonts.py deleted file mode 120000 index 915cec3e3bb..00000000000 --- a/_downloads/pgf_fonts.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf_fonts.py \ No newline at end of file diff --git a/_downloads/pgf_fonts_sgskip.ipynb b/_downloads/pgf_fonts_sgskip.ipynb deleted file mode 120000 index f01c5c5410e..00000000000 --- a/_downloads/pgf_fonts_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/pgf_fonts_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/pgf_fonts_sgskip.py b/_downloads/pgf_fonts_sgskip.py deleted file mode 120000 index 7862cd2d73b..00000000000 --- a/_downloads/pgf_fonts_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/pgf_fonts_sgskip.py \ No newline at end of file diff --git a/_downloads/pgf_preamble_sgskip.ipynb b/_downloads/pgf_preamble_sgskip.ipynb deleted file mode 120000 index c0517336601..00000000000 --- a/_downloads/pgf_preamble_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf_preamble_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/pgf_preamble_sgskip.py b/_downloads/pgf_preamble_sgskip.py deleted file mode 120000 index de7febac955..00000000000 --- a/_downloads/pgf_preamble_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf_preamble_sgskip.py \ No newline at end of file diff --git a/_downloads/pgf_texsystem.ipynb b/_downloads/pgf_texsystem.ipynb deleted file mode 120000 index 1fa762e4d27..00000000000 --- a/_downloads/pgf_texsystem.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf_texsystem.ipynb \ No newline at end of file diff --git a/_downloads/pgf_texsystem.py b/_downloads/pgf_texsystem.py deleted file mode 120000 index 98a981e07ea..00000000000 --- a/_downloads/pgf_texsystem.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pgf_texsystem.py \ No newline at end of file diff --git a/_downloads/pgf_texsystem_sgskip.ipynb b/_downloads/pgf_texsystem_sgskip.ipynb deleted file mode 120000 index 0d24b0080dc..00000000000 --- a/_downloads/pgf_texsystem_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/pgf_texsystem_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/pgf_texsystem_sgskip.py b/_downloads/pgf_texsystem_sgskip.py deleted file mode 120000 index 82e40882cd1..00000000000 --- a/_downloads/pgf_texsystem_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/pgf_texsystem_sgskip.py \ No newline at end of file diff --git a/_downloads/pick_event_demo.ipynb b/_downloads/pick_event_demo.ipynb deleted file mode 120000 index 925dbfff2dd..00000000000 --- a/_downloads/pick_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pick_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/pick_event_demo.py b/_downloads/pick_event_demo.py deleted file mode 120000 index 12a86d5f0c5..00000000000 --- a/_downloads/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pick_event_demo.py \ No newline at end of file diff --git a/_downloads/pick_event_demo2.ipynb b/_downloads/pick_event_demo2.ipynb deleted file mode 120000 index 448dbe00bb4..00000000000 --- a/_downloads/pick_event_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pick_event_demo2.ipynb \ No newline at end of file diff --git a/_downloads/pick_event_demo2.py b/_downloads/pick_event_demo2.py deleted file mode 120000 index 82e861fe526..00000000000 --- a/_downloads/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pick_event_demo2.py \ No newline at end of file diff --git a/_downloads/pie_and_donut_labels.ipynb b/_downloads/pie_and_donut_labels.ipynb deleted file mode 120000 index 18e8b36795b..00000000000 --- a/_downloads/pie_and_donut_labels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pie_and_donut_labels.ipynb \ No newline at end of file diff --git a/_downloads/pie_and_donut_labels.py b/_downloads/pie_and_donut_labels.py deleted file mode 120000 index 412eeb5a034..00000000000 --- a/_downloads/pie_and_donut_labels.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pie_and_donut_labels.py \ No newline at end of file diff --git a/_downloads/pie_demo2.ipynb b/_downloads/pie_demo2.ipynb deleted file mode 120000 index ef5c96f41ce..00000000000 --- a/_downloads/pie_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pie_demo2.ipynb \ No newline at end of file diff --git a/_downloads/pie_demo2.py b/_downloads/pie_demo2.py deleted file mode 120000 index 0d95684c682..00000000000 --- a/_downloads/pie_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pie_demo2.py \ No newline at end of file diff --git a/_downloads/pie_features.ipynb b/_downloads/pie_features.ipynb deleted file mode 120000 index b1444a439c4..00000000000 --- a/_downloads/pie_features.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pie_features.ipynb \ No newline at end of file diff --git a/_downloads/pie_features.py b/_downloads/pie_features.py deleted file mode 120000 index 4cf9045b6cb..00000000000 --- a/_downloads/pie_features.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pie_features.py \ No newline at end of file diff --git a/_downloads/pipong.ipynb b/_downloads/pipong.ipynb deleted file mode 120000 index 58ead706d83..00000000000 --- a/_downloads/pipong.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pipong.ipynb \ No newline at end of file diff --git a/_downloads/pipong.py b/_downloads/pipong.py deleted file mode 120000 index c0a1ebd3d4a..00000000000 --- a/_downloads/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pipong.py \ No newline at end of file diff --git a/_downloads/placing_text_boxes.ipynb b/_downloads/placing_text_boxes.ipynb deleted file mode 120000 index 1e41cb05f0c..00000000000 --- a/_downloads/placing_text_boxes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/placing_text_boxes.ipynb \ No newline at end of file diff --git a/_downloads/placing_text_boxes.py b/_downloads/placing_text_boxes.py deleted file mode 120000 index 0fb59322514..00000000000 --- a/_downloads/placing_text_boxes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/placing_text_boxes.py \ No newline at end of file diff --git a/_downloads/plot_solarizedlight2.ipynb b/_downloads/plot_solarizedlight2.ipynb deleted file mode 120000 index e60a4af9072..00000000000 --- a/_downloads/plot_solarizedlight2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/plot_solarizedlight2.ipynb \ No newline at end of file diff --git a/_downloads/plot_solarizedlight2.py b/_downloads/plot_solarizedlight2.py deleted file mode 120000 index cb729112547..00000000000 --- a/_downloads/plot_solarizedlight2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/plot_solarizedlight2.py \ No newline at end of file diff --git a/_downloads/plot_streamplot.ipynb b/_downloads/plot_streamplot.ipynb deleted file mode 120000 index 0daa31850ce..00000000000 --- a/_downloads/plot_streamplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/plot_streamplot.ipynb \ No newline at end of file diff --git a/_downloads/plot_streamplot.py b/_downloads/plot_streamplot.py deleted file mode 120000 index bad683478d2..00000000000 --- a/_downloads/plot_streamplot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/plot_streamplot.py \ No newline at end of file diff --git a/_downloads/plotfile_demo.ipynb b/_downloads/plotfile_demo.ipynb deleted file mode 120000 index 54b88f36ee0..00000000000 --- a/_downloads/plotfile_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/plotfile_demo.ipynb \ No newline at end of file diff --git a/_downloads/plotfile_demo.py b/_downloads/plotfile_demo.py deleted file mode 120000 index e3d0ab21213..00000000000 --- a/_downloads/plotfile_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/plotfile_demo.py \ No newline at end of file diff --git a/_downloads/polar_bar.ipynb b/_downloads/polar_bar.ipynb deleted file mode 120000 index 1054638913f..00000000000 --- a/_downloads/polar_bar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_bar.ipynb \ No newline at end of file diff --git a/_downloads/polar_bar.py b/_downloads/polar_bar.py deleted file mode 120000 index baf9a5e189e..00000000000 --- a/_downloads/polar_bar.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_bar.py \ No newline at end of file diff --git a/_downloads/polar_demo.ipynb b/_downloads/polar_demo.ipynb deleted file mode 120000 index 298a2110af3..00000000000 --- a/_downloads/polar_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_demo.ipynb \ No newline at end of file diff --git a/_downloads/polar_demo.py b/_downloads/polar_demo.py deleted file mode 120000 index ce655b7d0b9..00000000000 --- a/_downloads/polar_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_demo.py \ No newline at end of file diff --git a/_downloads/polar_legend.ipynb b/_downloads/polar_legend.ipynb deleted file mode 120000 index 18b29bb80f4..00000000000 --- a/_downloads/polar_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_legend.ipynb \ No newline at end of file diff --git a/_downloads/polar_legend.py b/_downloads/polar_legend.py deleted file mode 120000 index bc6d3fd8a54..00000000000 --- a/_downloads/polar_legend.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_legend.py \ No newline at end of file diff --git a/_downloads/polar_scatter.ipynb b/_downloads/polar_scatter.ipynb deleted file mode 120000 index 23573134d68..00000000000 --- a/_downloads/polar_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_scatter.ipynb \ No newline at end of file diff --git a/_downloads/polar_scatter.py b/_downloads/polar_scatter.py deleted file mode 120000 index 3575f176dbc..00000000000 --- a/_downloads/polar_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polar_scatter.py \ No newline at end of file diff --git a/_downloads/poly_editor.ipynb b/_downloads/poly_editor.ipynb deleted file mode 120000 index 608cedcbe71..00000000000 --- a/_downloads/poly_editor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/poly_editor.ipynb \ No newline at end of file diff --git a/_downloads/poly_editor.py b/_downloads/poly_editor.py deleted file mode 120000 index af4df4da6f6..00000000000 --- a/_downloads/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/poly_editor.py \ No newline at end of file diff --git a/_downloads/polygon_selector_demo.ipynb b/_downloads/polygon_selector_demo.ipynb deleted file mode 120000 index 7b31e1f7e9a..00000000000 --- a/_downloads/polygon_selector_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polygon_selector_demo.ipynb \ No newline at end of file diff --git a/_downloads/polygon_selector_demo.py b/_downloads/polygon_selector_demo.py deleted file mode 120000 index b1d410e96ec..00000000000 --- a/_downloads/polygon_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polygon_selector_demo.py \ No newline at end of file diff --git a/_downloads/polys3d.ipynb b/_downloads/polys3d.ipynb deleted file mode 120000 index d8f5699d230..00000000000 --- a/_downloads/polys3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polys3d.ipynb \ No newline at end of file diff --git a/_downloads/polys3d.py b/_downloads/polys3d.py deleted file mode 120000 index af49c1b1ea6..00000000000 --- a/_downloads/polys3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/polys3d.py \ No newline at end of file diff --git a/_downloads/pong_sgskip.ipynb b/_downloads/pong_sgskip.ipynb deleted file mode 120000 index 48f1693db82..00000000000 --- a/_downloads/pong_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pong_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/pong_sgskip.py b/_downloads/pong_sgskip.py deleted file mode 120000 index 611a4a5ecbb..00000000000 --- a/_downloads/pong_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pong_sgskip.py \ No newline at end of file diff --git a/_downloads/power_norm.ipynb b/_downloads/power_norm.ipynb deleted file mode 120000 index ddd21f9b587..00000000000 --- a/_downloads/power_norm.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/power_norm.ipynb \ No newline at end of file diff --git a/_downloads/power_norm.py b/_downloads/power_norm.py deleted file mode 120000 index a472eb83278..00000000000 --- a/_downloads/power_norm.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/power_norm.py \ No newline at end of file diff --git a/_downloads/print_stdout_sgskip.ipynb b/_downloads/print_stdout_sgskip.ipynb deleted file mode 120000 index 63b5e98048e..00000000000 --- a/_downloads/print_stdout_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/print_stdout_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/print_stdout_sgskip.py b/_downloads/print_stdout_sgskip.py deleted file mode 120000 index 4d21ee01957..00000000000 --- a/_downloads/print_stdout_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/print_stdout_sgskip.py \ No newline at end of file diff --git a/_downloads/psd_demo.ipynb b/_downloads/psd_demo.ipynb deleted file mode 120000 index 9392dbdb4a9..00000000000 --- a/_downloads/psd_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/psd_demo.ipynb \ No newline at end of file diff --git a/_downloads/psd_demo.py b/_downloads/psd_demo.py deleted file mode 120000 index 94b0fef64ea..00000000000 --- a/_downloads/psd_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/psd_demo.py \ No newline at end of file diff --git a/_downloads/pylab_with_gtk_sgskip.ipynb b/_downloads/pylab_with_gtk_sgskip.ipynb deleted file mode 120000 index 4a5f748e721..00000000000 --- a/_downloads/pylab_with_gtk_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pylab_with_gtk_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/pylab_with_gtk_sgskip.py b/_downloads/pylab_with_gtk_sgskip.py deleted file mode 120000 index b8d5419230a..00000000000 --- a/_downloads/pylab_with_gtk_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pylab_with_gtk_sgskip.py \ No newline at end of file diff --git a/_downloads/pyplot.ipynb b/_downloads/pyplot.ipynb deleted file mode 120000 index cd04d734a28..00000000000 --- a/_downloads/pyplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot.ipynb \ No newline at end of file diff --git a/_downloads/pyplot.py b/_downloads/pyplot.py deleted file mode 120000 index 13d7a58ae26..00000000000 --- a/_downloads/pyplot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot.py \ No newline at end of file diff --git a/_downloads/pyplot_annotate.ipynb b/_downloads/pyplot_annotate.ipynb deleted file mode 120000 index e1a13740d92..00000000000 --- a/_downloads/pyplot_annotate.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/pyplot_annotate.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_annotate.py b/_downloads/pyplot_annotate.py deleted file mode 120000 index 650d3c01949..00000000000 --- a/_downloads/pyplot_annotate.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/pyplot_annotate.py \ No newline at end of file diff --git a/_downloads/pyplot_formatstr.ipynb b/_downloads/pyplot_formatstr.ipynb deleted file mode 120000 index d1b75c01fb9..00000000000 --- a/_downloads/pyplot_formatstr.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_formatstr.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_formatstr.py b/_downloads/pyplot_formatstr.py deleted file mode 120000 index dbca51fae4d..00000000000 --- a/_downloads/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_formatstr.py \ No newline at end of file diff --git a/_downloads/pyplot_mathtext.ipynb b/_downloads/pyplot_mathtext.ipynb deleted file mode 120000 index 35158f938d9..00000000000 --- a/_downloads/pyplot_mathtext.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_mathtext.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_mathtext.py b/_downloads/pyplot_mathtext.py deleted file mode 120000 index 901d4ca2d9b..00000000000 --- a/_downloads/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_mathtext.py \ No newline at end of file diff --git a/_downloads/pyplot_scales.ipynb b/_downloads/pyplot_scales.ipynb deleted file mode 120000 index e15c0760ca7..00000000000 --- a/_downloads/pyplot_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_scales.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_scales.py b/_downloads/pyplot_scales.py deleted file mode 120000 index 72b1f8f4875..00000000000 --- a/_downloads/pyplot_scales.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_scales.py \ No newline at end of file diff --git a/_downloads/pyplot_simple.ipynb b/_downloads/pyplot_simple.ipynb deleted file mode 120000 index 73208ecc985..00000000000 --- a/_downloads/pyplot_simple.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_simple.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_simple.py b/_downloads/pyplot_simple.py deleted file mode 120000 index 0ced6ac5a3c..00000000000 --- a/_downloads/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_simple.py \ No newline at end of file diff --git a/_downloads/pyplot_text.ipynb b/_downloads/pyplot_text.ipynb deleted file mode 120000 index 14a6676b3a6..00000000000 --- a/_downloads/pyplot_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_text.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_text.py b/_downloads/pyplot_text.py deleted file mode 120000 index 715a4b5e148..00000000000 --- a/_downloads/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_text.py \ No newline at end of file diff --git a/_downloads/pyplot_three.ipynb b/_downloads/pyplot_three.ipynb deleted file mode 120000 index 6f98e180398..00000000000 --- a/_downloads/pyplot_three.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_three.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_three.py b/_downloads/pyplot_three.py deleted file mode 120000 index 2110098e7f4..00000000000 --- a/_downloads/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_three.py \ No newline at end of file diff --git a/_downloads/pyplot_two_subplots.ipynb b/_downloads/pyplot_two_subplots.ipynb deleted file mode 120000 index 40d7e3c6c7c..00000000000 --- a/_downloads/pyplot_two_subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_two_subplots.ipynb \ No newline at end of file diff --git a/_downloads/pyplot_two_subplots.py b/_downloads/pyplot_two_subplots.py deleted file mode 120000 index 1c2c8dd8ab2..00000000000 --- a/_downloads/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pyplot_two_subplots.py \ No newline at end of file diff --git a/_downloads/pythonic_matplotlib.ipynb b/_downloads/pythonic_matplotlib.ipynb deleted file mode 120000 index 3177ed5e562..00000000000 --- a/_downloads/pythonic_matplotlib.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pythonic_matplotlib.ipynb \ No newline at end of file diff --git a/_downloads/pythonic_matplotlib.py b/_downloads/pythonic_matplotlib.py deleted file mode 120000 index b6eb0ebb64b..00000000000 --- a/_downloads/pythonic_matplotlib.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/pythonic_matplotlib.py \ No newline at end of file diff --git a/_downloads/quad_bezier.ipynb b/_downloads/quad_bezier.ipynb deleted file mode 120000 index fcbbe2feb6f..00000000000 --- a/_downloads/quad_bezier.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quad_bezier.ipynb \ No newline at end of file diff --git a/_downloads/quad_bezier.py b/_downloads/quad_bezier.py deleted file mode 120000 index f0471efeb8e..00000000000 --- a/_downloads/quad_bezier.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quad_bezier.py \ No newline at end of file diff --git a/_downloads/quadmesh_demo.ipynb b/_downloads/quadmesh_demo.ipynb deleted file mode 120000 index 208e8e7d0e2..00000000000 --- a/_downloads/quadmesh_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quadmesh_demo.ipynb \ No newline at end of file diff --git a/_downloads/quadmesh_demo.py b/_downloads/quadmesh_demo.py deleted file mode 120000 index 9d27ee2b35e..00000000000 --- a/_downloads/quadmesh_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quadmesh_demo.py \ No newline at end of file diff --git a/_downloads/quiver3d.ipynb b/_downloads/quiver3d.ipynb deleted file mode 120000 index d9a89a8c5e9..00000000000 --- a/_downloads/quiver3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quiver3d.ipynb \ No newline at end of file diff --git a/_downloads/quiver3d.py b/_downloads/quiver3d.py deleted file mode 120000 index 8b3883929ac..00000000000 --- a/_downloads/quiver3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quiver3d.py \ No newline at end of file diff --git a/_downloads/quiver_demo.ipynb b/_downloads/quiver_demo.ipynb deleted file mode 120000 index 5338eba08f2..00000000000 --- a/_downloads/quiver_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quiver_demo.ipynb \ No newline at end of file diff --git a/_downloads/quiver_demo.py b/_downloads/quiver_demo.py deleted file mode 120000 index bc40b7fac14..00000000000 --- a/_downloads/quiver_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quiver_demo.py \ No newline at end of file diff --git a/_downloads/quiver_simple_demo.ipynb b/_downloads/quiver_simple_demo.ipynb deleted file mode 120000 index 71368f001d5..00000000000 --- a/_downloads/quiver_simple_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quiver_simple_demo.ipynb \ No newline at end of file diff --git a/_downloads/quiver_simple_demo.py b/_downloads/quiver_simple_demo.py deleted file mode 120000 index ecc3ac6420e..00000000000 --- a/_downloads/quiver_simple_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/quiver_simple_demo.py \ No newline at end of file diff --git a/_downloads/radar_chart.ipynb b/_downloads/radar_chart.ipynb deleted file mode 120000 index 17b6eaa469a..00000000000 --- a/_downloads/radar_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/radar_chart.ipynb \ No newline at end of file diff --git a/_downloads/radar_chart.py b/_downloads/radar_chart.py deleted file mode 120000 index 3ab76016dcd..00000000000 --- a/_downloads/radar_chart.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/radar_chart.py \ No newline at end of file diff --git a/_downloads/radian_demo.ipynb b/_downloads/radian_demo.ipynb deleted file mode 120000 index c5c366ca651..00000000000 --- a/_downloads/radian_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/radian_demo.ipynb \ No newline at end of file diff --git a/_downloads/radian_demo.py b/_downloads/radian_demo.py deleted file mode 120000 index 374b05d276b..00000000000 --- a/_downloads/radian_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/radian_demo.py \ No newline at end of file diff --git a/_downloads/radio_buttons.ipynb b/_downloads/radio_buttons.ipynb deleted file mode 120000 index 70df7005f32..00000000000 --- a/_downloads/radio_buttons.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/radio_buttons.ipynb \ No newline at end of file diff --git a/_downloads/radio_buttons.py b/_downloads/radio_buttons.py deleted file mode 120000 index 1b1500e0d1d..00000000000 --- a/_downloads/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/radio_buttons.py \ No newline at end of file diff --git a/_downloads/rain.ipynb b/_downloads/rain.ipynb deleted file mode 120000 index 9d38f8ea5bc..00000000000 --- a/_downloads/rain.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rain.ipynb \ No newline at end of file diff --git a/_downloads/rain.py b/_downloads/rain.py deleted file mode 120000 index 8484458725f..00000000000 --- a/_downloads/rain.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rain.py \ No newline at end of file diff --git a/_downloads/rainbow_text.ipynb b/_downloads/rainbow_text.ipynb deleted file mode 120000 index 0893ae38ab3..00000000000 --- a/_downloads/rainbow_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rainbow_text.ipynb \ No newline at end of file diff --git a/_downloads/rainbow_text.py b/_downloads/rainbow_text.py deleted file mode 120000 index c52c79938a8..00000000000 --- a/_downloads/rainbow_text.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rainbow_text.py \ No newline at end of file diff --git a/_downloads/random_data.ipynb b/_downloads/random_data.ipynb deleted file mode 120000 index be4d7a966af..00000000000 --- a/_downloads/random_data.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/random_data.ipynb \ No newline at end of file diff --git a/_downloads/random_data.py b/_downloads/random_data.py deleted file mode 120000 index 0f3bfa0b59c..00000000000 --- a/_downloads/random_data.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/random_data.py \ No newline at end of file diff --git a/_downloads/random_walk.ipynb b/_downloads/random_walk.ipynb deleted file mode 120000 index 8f2d46b96e8..00000000000 --- a/_downloads/random_walk.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/random_walk.ipynb \ No newline at end of file diff --git a/_downloads/random_walk.py b/_downloads/random_walk.py deleted file mode 120000 index dc81eb07e30..00000000000 --- a/_downloads/random_walk.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/random_walk.py \ No newline at end of file diff --git a/_downloads/rasterization_demo.ipynb b/_downloads/rasterization_demo.ipynb deleted file mode 120000 index a63ad13dd8e..00000000000 --- a/_downloads/rasterization_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rasterization_demo.ipynb \ No newline at end of file diff --git a/_downloads/rasterization_demo.py b/_downloads/rasterization_demo.py deleted file mode 120000 index 187a202e54d..00000000000 --- a/_downloads/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rasterization_demo.py \ No newline at end of file diff --git a/_downloads/rc_traits_sgskip.ipynb b/_downloads/rc_traits_sgskip.ipynb deleted file mode 120000 index e269bbcf5c1..00000000000 --- a/_downloads/rc_traits_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/rc_traits_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/rc_traits_sgskip.py b/_downloads/rc_traits_sgskip.py deleted file mode 120000 index 79e7a1a1b90..00000000000 --- a/_downloads/rc_traits_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/rc_traits_sgskip.py \ No newline at end of file diff --git a/_downloads/rec_groupby_demo.ipynb b/_downloads/rec_groupby_demo.ipynb deleted file mode 120000 index a548d0e1b26..00000000000 --- a/_downloads/rec_groupby_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/rec_groupby_demo.ipynb \ No newline at end of file diff --git a/_downloads/rec_groupby_demo.py b/_downloads/rec_groupby_demo.py deleted file mode 120000 index 22defc55fb7..00000000000 --- a/_downloads/rec_groupby_demo.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/rec_groupby_demo.py \ No newline at end of file diff --git a/_downloads/rectangle_selector.ipynb b/_downloads/rectangle_selector.ipynb deleted file mode 120000 index f15f4176a74..00000000000 --- a/_downloads/rectangle_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rectangle_selector.ipynb \ No newline at end of file diff --git a/_downloads/rectangle_selector.py b/_downloads/rectangle_selector.py deleted file mode 120000 index 8182a67e28d..00000000000 --- a/_downloads/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rectangle_selector.py \ No newline at end of file diff --git a/_downloads/resample.ipynb b/_downloads/resample.ipynb deleted file mode 120000 index 4094aa2cc9f..00000000000 --- a/_downloads/resample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/resample.ipynb \ No newline at end of file diff --git a/_downloads/resample.py b/_downloads/resample.py deleted file mode 120000 index e18b280ea6c..00000000000 --- a/_downloads/resample.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/resample.py \ No newline at end of file diff --git a/_downloads/rotate_axes3d.ipynb b/_downloads/rotate_axes3d.ipynb deleted file mode 120000 index 85b18603308..00000000000 --- a/_downloads/rotate_axes3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/rotate_axes3d.ipynb \ No newline at end of file diff --git a/_downloads/rotate_axes3d.py b/_downloads/rotate_axes3d.py deleted file mode 120000 index a19e04f7639..00000000000 --- a/_downloads/rotate_axes3d.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/rotate_axes3d.py \ No newline at end of file diff --git a/_downloads/rotate_axes3d_sgskip.ipynb b/_downloads/rotate_axes3d_sgskip.ipynb deleted file mode 120000 index 10466b9fe4a..00000000000 --- a/_downloads/rotate_axes3d_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rotate_axes3d_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/rotate_axes3d_sgskip.py b/_downloads/rotate_axes3d_sgskip.py deleted file mode 120000 index 4c86150a5d2..00000000000 --- a/_downloads/rotate_axes3d_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/rotate_axes3d_sgskip.py \ No newline at end of file diff --git a/_downloads/sample_plots.ipynb b/_downloads/sample_plots.ipynb deleted file mode 120000 index 20cb469ecdd..00000000000 --- a/_downloads/sample_plots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sample_plots.ipynb \ No newline at end of file diff --git a/_downloads/sample_plots.py b/_downloads/sample_plots.py deleted file mode 120000 index 14bbd60e73f..00000000000 --- a/_downloads/sample_plots.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sample_plots.py \ No newline at end of file diff --git a/_downloads/sankey_basics.ipynb b/_downloads/sankey_basics.ipynb deleted file mode 120000 index 312ab47d9e0..00000000000 --- a/_downloads/sankey_basics.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sankey_basics.ipynb \ No newline at end of file diff --git a/_downloads/sankey_basics.py b/_downloads/sankey_basics.py deleted file mode 120000 index 99399c1779f..00000000000 --- a/_downloads/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sankey_basics.py \ No newline at end of file diff --git a/_downloads/sankey_links.ipynb b/_downloads/sankey_links.ipynb deleted file mode 120000 index 27a0b66e781..00000000000 --- a/_downloads/sankey_links.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sankey_links.ipynb \ No newline at end of file diff --git a/_downloads/sankey_links.py b/_downloads/sankey_links.py deleted file mode 120000 index c2551cb6073..00000000000 --- a/_downloads/sankey_links.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sankey_links.py \ No newline at end of file diff --git a/_downloads/sankey_rankine.ipynb b/_downloads/sankey_rankine.ipynb deleted file mode 120000 index 5d370a2698a..00000000000 --- a/_downloads/sankey_rankine.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sankey_rankine.ipynb \ No newline at end of file diff --git a/_downloads/sankey_rankine.py b/_downloads/sankey_rankine.py deleted file mode 120000 index 33056870115..00000000000 --- a/_downloads/sankey_rankine.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/sankey_rankine.py \ No newline at end of file diff --git a/_downloads/scalarformatter.ipynb b/_downloads/scalarformatter.ipynb deleted file mode 120000 index e8fc6337eb5..00000000000 --- a/_downloads/scalarformatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scalarformatter.ipynb \ No newline at end of file diff --git a/_downloads/scalarformatter.py b/_downloads/scalarformatter.py deleted file mode 120000 index dd83e33f7cc..00000000000 --- a/_downloads/scalarformatter.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scalarformatter.py \ No newline at end of file diff --git a/_downloads/scales.ipynb b/_downloads/scales.ipynb deleted file mode 120000 index 4929549ba9b..00000000000 --- a/_downloads/scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scales.ipynb \ No newline at end of file diff --git a/_downloads/scales.py b/_downloads/scales.py deleted file mode 120000 index 9cbab73bc73..00000000000 --- a/_downloads/scales.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scales.py \ No newline at end of file diff --git a/_downloads/scatter.ipynb b/_downloads/scatter.ipynb deleted file mode 120000 index 202b1e83b5a..00000000000 --- a/_downloads/scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter.ipynb \ No newline at end of file diff --git a/_downloads/scatter.py b/_downloads/scatter.py deleted file mode 120000 index 864f9b27248..00000000000 --- a/_downloads/scatter.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter.py \ No newline at end of file diff --git a/_downloads/scatter3d.ipynb b/_downloads/scatter3d.ipynb deleted file mode 120000 index 01c46b0c1ad..00000000000 --- a/_downloads/scatter3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter3d.ipynb \ No newline at end of file diff --git a/_downloads/scatter3d.py b/_downloads/scatter3d.py deleted file mode 120000 index e7b3d774ada..00000000000 --- a/_downloads/scatter3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter3d.py \ No newline at end of file diff --git a/_downloads/scatter_custom_symbol.ipynb b/_downloads/scatter_custom_symbol.ipynb deleted file mode 120000 index a12ca21a13f..00000000000 --- a/_downloads/scatter_custom_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_custom_symbol.ipynb \ No newline at end of file diff --git a/_downloads/scatter_custom_symbol.py b/_downloads/scatter_custom_symbol.py deleted file mode 120000 index 2c66af612ee..00000000000 --- a/_downloads/scatter_custom_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_custom_symbol.py \ No newline at end of file diff --git a/_downloads/scatter_demo2.ipynb b/_downloads/scatter_demo2.ipynb deleted file mode 120000 index fec1fc811aa..00000000000 --- a/_downloads/scatter_demo2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_demo2.ipynb \ No newline at end of file diff --git a/_downloads/scatter_demo2.py b/_downloads/scatter_demo2.py deleted file mode 120000 index 2d533b43668..00000000000 --- a/_downloads/scatter_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_demo2.py \ No newline at end of file diff --git a/_downloads/scatter_hist.ipynb b/_downloads/scatter_hist.ipynb deleted file mode 120000 index fd51f993788..00000000000 --- a/_downloads/scatter_hist.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_hist.ipynb \ No newline at end of file diff --git a/_downloads/scatter_hist.py b/_downloads/scatter_hist.py deleted file mode 120000 index 5bc05f867ef..00000000000 --- a/_downloads/scatter_hist.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_hist.py \ No newline at end of file diff --git a/_downloads/scatter_hist1.ipynb b/_downloads/scatter_hist1.ipynb deleted file mode 120000 index 35733e4e7de..00000000000 --- a/_downloads/scatter_hist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/scatter_hist1.ipynb \ No newline at end of file diff --git a/_downloads/scatter_hist1.py b/_downloads/scatter_hist1.py deleted file mode 120000 index 7ad3b75074f..00000000000 --- a/_downloads/scatter_hist1.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/scatter_hist1.py \ No newline at end of file diff --git a/_downloads/scatter_hist_locatable_axes.ipynb b/_downloads/scatter_hist_locatable_axes.ipynb deleted file mode 120000 index 5755fc57fd5..00000000000 --- a/_downloads/scatter_hist_locatable_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_hist_locatable_axes.ipynb \ No newline at end of file diff --git a/_downloads/scatter_hist_locatable_axes.py b/_downloads/scatter_hist_locatable_axes.py deleted file mode 120000 index bd49e85eedd..00000000000 --- a/_downloads/scatter_hist_locatable_axes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_hist_locatable_axes.py \ No newline at end of file diff --git a/_downloads/scatter_masked.ipynb b/_downloads/scatter_masked.ipynb deleted file mode 120000 index 01d521804d9..00000000000 --- a/_downloads/scatter_masked.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_masked.ipynb \ No newline at end of file diff --git a/_downloads/scatter_masked.py b/_downloads/scatter_masked.py deleted file mode 120000 index 89831db6937..00000000000 --- a/_downloads/scatter_masked.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_masked.py \ No newline at end of file diff --git a/_downloads/scatter_piecharts.ipynb b/_downloads/scatter_piecharts.ipynb deleted file mode 120000 index bdfc572455a..00000000000 --- a/_downloads/scatter_piecharts.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_piecharts.ipynb \ No newline at end of file diff --git a/_downloads/scatter_piecharts.py b/_downloads/scatter_piecharts.py deleted file mode 120000 index f2301378f12..00000000000 --- a/_downloads/scatter_piecharts.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_piecharts.py \ No newline at end of file diff --git a/_downloads/scatter_star_poly.ipynb b/_downloads/scatter_star_poly.ipynb deleted file mode 120000 index cb1a35ae93d..00000000000 --- a/_downloads/scatter_star_poly.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_star_poly.ipynb \ No newline at end of file diff --git a/_downloads/scatter_star_poly.py b/_downloads/scatter_star_poly.py deleted file mode 120000 index f3c6bfbcd8e..00000000000 --- a/_downloads/scatter_star_poly.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_star_poly.py \ No newline at end of file diff --git a/_downloads/scatter_symbol.ipynb b/_downloads/scatter_symbol.ipynb deleted file mode 120000 index 6524027b1a8..00000000000 --- a/_downloads/scatter_symbol.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_symbol.ipynb \ No newline at end of file diff --git a/_downloads/scatter_symbol.py b/_downloads/scatter_symbol.py deleted file mode 120000 index 73fafe35c50..00000000000 --- a/_downloads/scatter_symbol.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_symbol.py \ No newline at end of file diff --git a/_downloads/scatter_with_legend.ipynb b/_downloads/scatter_with_legend.ipynb deleted file mode 120000 index 678ddf4c527..00000000000 --- a/_downloads/scatter_with_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_with_legend.ipynb \ No newline at end of file diff --git a/_downloads/scatter_with_legend.py b/_downloads/scatter_with_legend.py deleted file mode 120000 index 29366824d6a..00000000000 --- a/_downloads/scatter_with_legend.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/scatter_with_legend.py \ No newline at end of file diff --git a/_downloads/set_and_get.ipynb b/_downloads/set_and_get.ipynb deleted file mode 120000 index 4508526a69b..00000000000 --- a/_downloads/set_and_get.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/set_and_get.ipynb \ No newline at end of file diff --git a/_downloads/set_and_get.py b/_downloads/set_and_get.py deleted file mode 120000 index 899b18c2d44..00000000000 --- a/_downloads/set_and_get.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/set_and_get.py \ No newline at end of file diff --git a/_downloads/shading_example.ipynb b/_downloads/shading_example.ipynb deleted file mode 120000 index cb3a84dfe05..00000000000 --- a/_downloads/shading_example.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/shading_example.ipynb \ No newline at end of file diff --git a/_downloads/shading_example.py b/_downloads/shading_example.py deleted file mode 120000 index eb26493f432..00000000000 --- a/_downloads/shading_example.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/shading_example.py \ No newline at end of file diff --git a/_downloads/share_axis_lims_views.ipynb b/_downloads/share_axis_lims_views.ipynb deleted file mode 120000 index 2812032253e..00000000000 --- a/_downloads/share_axis_lims_views.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/share_axis_lims_views.ipynb \ No newline at end of file diff --git a/_downloads/share_axis_lims_views.py b/_downloads/share_axis_lims_views.py deleted file mode 120000 index 9a4e59a2fb1..00000000000 --- a/_downloads/share_axis_lims_views.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/share_axis_lims_views.py \ No newline at end of file diff --git a/_downloads/shared_axis_demo.ipynb b/_downloads/shared_axis_demo.ipynb deleted file mode 120000 index 2a9bd9f1666..00000000000 --- a/_downloads/shared_axis_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/shared_axis_demo.ipynb \ No newline at end of file diff --git a/_downloads/shared_axis_demo.py b/_downloads/shared_axis_demo.py deleted file mode 120000 index eeaf77fffd6..00000000000 --- a/_downloads/shared_axis_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/shared_axis_demo.py \ No newline at end of file diff --git a/_downloads/simple_3danim.ipynb b/_downloads/simple_3danim.ipynb deleted file mode 120000 index 93d4108aea6..00000000000 --- a/_downloads/simple_3danim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/simple_3danim.ipynb \ No newline at end of file diff --git a/_downloads/simple_3danim.py b/_downloads/simple_3danim.py deleted file mode 120000 index 2c29bce1cf6..00000000000 --- a/_downloads/simple_3danim.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/simple_3danim.py \ No newline at end of file diff --git a/_downloads/simple_anchored_artists.ipynb b/_downloads/simple_anchored_artists.ipynb deleted file mode 120000 index 87e0ebcd4e4..00000000000 --- a/_downloads/simple_anchored_artists.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_anchored_artists.ipynb \ No newline at end of file diff --git a/_downloads/simple_anchored_artists.py b/_downloads/simple_anchored_artists.py deleted file mode 120000 index 1aa5132d349..00000000000 --- a/_downloads/simple_anchored_artists.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_anchored_artists.py \ No newline at end of file diff --git a/_downloads/simple_anim.ipynb b/_downloads/simple_anim.ipynb deleted file mode 120000 index 4c3a3769c85..00000000000 --- a/_downloads/simple_anim.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_anim.ipynb \ No newline at end of file diff --git a/_downloads/simple_anim.py b/_downloads/simple_anim.py deleted file mode 120000 index ac4a891e9c8..00000000000 --- a/_downloads/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_anim.py \ No newline at end of file diff --git a/_downloads/simple_annotate01.ipynb b/_downloads/simple_annotate01.ipynb deleted file mode 120000 index 7845e4c5468..00000000000 --- a/_downloads/simple_annotate01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_annotate01.ipynb \ No newline at end of file diff --git a/_downloads/simple_annotate01.py b/_downloads/simple_annotate01.py deleted file mode 120000 index ce5a1e05814..00000000000 --- a/_downloads/simple_annotate01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_annotate01.py \ No newline at end of file diff --git a/_downloads/simple_axes_divider1.ipynb b/_downloads/simple_axes_divider1.ipynb deleted file mode 120000 index 1fcfd04f1cf..00000000000 --- a/_downloads/simple_axes_divider1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axes_divider1.ipynb \ No newline at end of file diff --git a/_downloads/simple_axes_divider1.py b/_downloads/simple_axes_divider1.py deleted file mode 120000 index bb1ad9fe46b..00000000000 --- a/_downloads/simple_axes_divider1.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axes_divider1.py \ No newline at end of file diff --git a/_downloads/simple_axes_divider2.ipynb b/_downloads/simple_axes_divider2.ipynb deleted file mode 120000 index b71f2758bbc..00000000000 --- a/_downloads/simple_axes_divider2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axes_divider2.ipynb \ No newline at end of file diff --git a/_downloads/simple_axes_divider2.py b/_downloads/simple_axes_divider2.py deleted file mode 120000 index 908e91ed11a..00000000000 --- a/_downloads/simple_axes_divider2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axes_divider2.py \ No newline at end of file diff --git a/_downloads/simple_axes_divider3.ipynb b/_downloads/simple_axes_divider3.ipynb deleted file mode 120000 index 92acb8a296a..00000000000 --- a/_downloads/simple_axes_divider3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axes_divider3.ipynb \ No newline at end of file diff --git a/_downloads/simple_axes_divider3.py b/_downloads/simple_axes_divider3.py deleted file mode 120000 index 36a93abae80..00000000000 --- a/_downloads/simple_axes_divider3.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axes_divider3.py \ No newline at end of file diff --git a/_downloads/simple_axesgrid.ipynb b/_downloads/simple_axesgrid.ipynb deleted file mode 120000 index 9c451b22377..00000000000 --- a/_downloads/simple_axesgrid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axesgrid.ipynb \ No newline at end of file diff --git a/_downloads/simple_axesgrid.py b/_downloads/simple_axesgrid.py deleted file mode 120000 index e1d2a9ea7db..00000000000 --- a/_downloads/simple_axesgrid.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axesgrid.py \ No newline at end of file diff --git a/_downloads/simple_axesgrid2.ipynb b/_downloads/simple_axesgrid2.ipynb deleted file mode 120000 index c72c5bc8bd9..00000000000 --- a/_downloads/simple_axesgrid2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axesgrid2.ipynb \ No newline at end of file diff --git a/_downloads/simple_axesgrid2.py b/_downloads/simple_axesgrid2.py deleted file mode 120000 index 7079b17efa8..00000000000 --- a/_downloads/simple_axesgrid2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axesgrid2.py \ No newline at end of file diff --git a/_downloads/simple_axis_direction01.ipynb b/_downloads/simple_axis_direction01.ipynb deleted file mode 120000 index 60c0161bb53..00000000000 --- a/_downloads/simple_axis_direction01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axis_direction01.ipynb \ No newline at end of file diff --git a/_downloads/simple_axis_direction01.py b/_downloads/simple_axis_direction01.py deleted file mode 120000 index 4fa03bb7516..00000000000 --- a/_downloads/simple_axis_direction01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axis_direction01.py \ No newline at end of file diff --git a/_downloads/simple_axis_direction03.ipynb b/_downloads/simple_axis_direction03.ipynb deleted file mode 120000 index 19daf8d7637..00000000000 --- a/_downloads/simple_axis_direction03.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axis_direction03.ipynb \ No newline at end of file diff --git a/_downloads/simple_axis_direction03.py b/_downloads/simple_axis_direction03.py deleted file mode 120000 index 5adc4aff435..00000000000 --- a/_downloads/simple_axis_direction03.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axis_direction03.py \ No newline at end of file diff --git a/_downloads/simple_axis_pad.ipynb b/_downloads/simple_axis_pad.ipynb deleted file mode 120000 index cdc308e1475..00000000000 --- a/_downloads/simple_axis_pad.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axis_pad.ipynb \ No newline at end of file diff --git a/_downloads/simple_axis_pad.py b/_downloads/simple_axis_pad.py deleted file mode 120000 index cc0acfe49b8..00000000000 --- a/_downloads/simple_axis_pad.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axis_pad.py \ No newline at end of file diff --git a/_downloads/simple_axisartist1.ipynb b/_downloads/simple_axisartist1.ipynb deleted file mode 120000 index fc0ccd25c3a..00000000000 --- a/_downloads/simple_axisartist1.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisartist1.ipynb \ No newline at end of file diff --git a/_downloads/simple_axisartist1.py b/_downloads/simple_axisartist1.py deleted file mode 120000 index 3be745c1daf..00000000000 --- a/_downloads/simple_axisartist1.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisartist1.py \ No newline at end of file diff --git a/_downloads/simple_axisline.ipynb b/_downloads/simple_axisline.ipynb deleted file mode 120000 index e5484ef5ff6..00000000000 --- a/_downloads/simple_axisline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline.ipynb \ No newline at end of file diff --git a/_downloads/simple_axisline.py b/_downloads/simple_axisline.py deleted file mode 120000 index 0f4690669e9..00000000000 --- a/_downloads/simple_axisline.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline.py \ No newline at end of file diff --git a/_downloads/simple_axisline2.ipynb b/_downloads/simple_axisline2.ipynb deleted file mode 120000 index d2dacaf1196..00000000000 --- a/_downloads/simple_axisline2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline2.ipynb \ No newline at end of file diff --git a/_downloads/simple_axisline2.py b/_downloads/simple_axisline2.py deleted file mode 120000 index 3035e67538a..00000000000 --- a/_downloads/simple_axisline2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline2.py \ No newline at end of file diff --git a/_downloads/simple_axisline3.ipynb b/_downloads/simple_axisline3.ipynb deleted file mode 120000 index 94ae6050ac5..00000000000 --- a/_downloads/simple_axisline3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline3.ipynb \ No newline at end of file diff --git a/_downloads/simple_axisline3.py b/_downloads/simple_axisline3.py deleted file mode 120000 index 0b41cd1d21b..00000000000 --- a/_downloads/simple_axisline3.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline3.py \ No newline at end of file diff --git a/_downloads/simple_axisline4.ipynb b/_downloads/simple_axisline4.ipynb deleted file mode 120000 index 71c52b14feb..00000000000 --- a/_downloads/simple_axisline4.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline4.ipynb \ No newline at end of file diff --git a/_downloads/simple_axisline4.py b/_downloads/simple_axisline4.py deleted file mode 120000 index 7ebf858453d..00000000000 --- a/_downloads/simple_axisline4.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_axisline4.py \ No newline at end of file diff --git a/_downloads/simple_colorbar.ipynb b/_downloads/simple_colorbar.ipynb deleted file mode 120000 index 0e093828745..00000000000 --- a/_downloads/simple_colorbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_colorbar.ipynb \ No newline at end of file diff --git a/_downloads/simple_colorbar.py b/_downloads/simple_colorbar.py deleted file mode 120000 index fa6e45fa2cf..00000000000 --- a/_downloads/simple_colorbar.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_colorbar.py \ No newline at end of file diff --git a/_downloads/simple_legend01.ipynb b/_downloads/simple_legend01.ipynb deleted file mode 120000 index e0d62e72b82..00000000000 --- a/_downloads/simple_legend01.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_legend01.ipynb \ No newline at end of file diff --git a/_downloads/simple_legend01.py b/_downloads/simple_legend01.py deleted file mode 120000 index 54eaea149ad..00000000000 --- a/_downloads/simple_legend01.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_legend01.py \ No newline at end of file diff --git a/_downloads/simple_legend02.ipynb b/_downloads/simple_legend02.ipynb deleted file mode 120000 index 03d3357bc05..00000000000 --- a/_downloads/simple_legend02.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_legend02.ipynb \ No newline at end of file diff --git a/_downloads/simple_legend02.py b/_downloads/simple_legend02.py deleted file mode 120000 index 196e3f10c42..00000000000 --- a/_downloads/simple_legend02.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_legend02.py \ No newline at end of file diff --git a/_downloads/simple_plot.ipynb b/_downloads/simple_plot.ipynb deleted file mode 120000 index 5ee5f459cc1..00000000000 --- a/_downloads/simple_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_plot.ipynb \ No newline at end of file diff --git a/_downloads/simple_plot.py b/_downloads/simple_plot.py deleted file mode 120000 index 359cecadd73..00000000000 --- a/_downloads/simple_plot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_plot.py \ No newline at end of file diff --git a/_downloads/simple_rgb.ipynb b/_downloads/simple_rgb.ipynb deleted file mode 120000 index 1a3e8f010e7..00000000000 --- a/_downloads/simple_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_rgb.ipynb \ No newline at end of file diff --git a/_downloads/simple_rgb.py b/_downloads/simple_rgb.py deleted file mode 120000 index eb647845512..00000000000 --- a/_downloads/simple_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/simple_rgb.py \ No newline at end of file diff --git a/_downloads/skewt.ipynb b/_downloads/skewt.ipynb deleted file mode 120000 index 0f9179e928b..00000000000 --- a/_downloads/skewt.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/skewt.ipynb \ No newline at end of file diff --git a/_downloads/skewt.py b/_downloads/skewt.py deleted file mode 120000 index 36e40f9c0ff..00000000000 --- a/_downloads/skewt.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/skewt.py \ No newline at end of file diff --git a/_downloads/slider_demo.ipynb b/_downloads/slider_demo.ipynb deleted file mode 120000 index 32bcaa2b65a..00000000000 --- a/_downloads/slider_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/slider_demo.ipynb \ No newline at end of file diff --git a/_downloads/slider_demo.py b/_downloads/slider_demo.py deleted file mode 120000 index 78a760cf0d6..00000000000 --- a/_downloads/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/slider_demo.py \ No newline at end of file diff --git a/_downloads/span_regions.ipynb b/_downloads/span_regions.ipynb deleted file mode 120000 index 5f371ed9f92..00000000000 --- a/_downloads/span_regions.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/span_regions.ipynb \ No newline at end of file diff --git a/_downloads/span_regions.py b/_downloads/span_regions.py deleted file mode 120000 index 4b2c5bb7d2e..00000000000 --- a/_downloads/span_regions.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/span_regions.py \ No newline at end of file diff --git a/_downloads/span_selector.ipynb b/_downloads/span_selector.ipynb deleted file mode 120000 index fc8f1dc3e91..00000000000 --- a/_downloads/span_selector.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/span_selector.ipynb \ No newline at end of file diff --git a/_downloads/span_selector.py b/_downloads/span_selector.py deleted file mode 120000 index 1a72d500729..00000000000 --- a/_downloads/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/span_selector.py \ No newline at end of file diff --git a/_downloads/specgram_demo.ipynb b/_downloads/specgram_demo.ipynb deleted file mode 120000 index 44e68e43973..00000000000 --- a/_downloads/specgram_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/specgram_demo.ipynb \ No newline at end of file diff --git a/_downloads/specgram_demo.py b/_downloads/specgram_demo.py deleted file mode 120000 index bc136d492d2..00000000000 --- a/_downloads/specgram_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/specgram_demo.py \ No newline at end of file diff --git a/_downloads/spectrum_demo.ipynb b/_downloads/spectrum_demo.ipynb deleted file mode 120000 index 6ec29a72734..00000000000 --- a/_downloads/spectrum_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spectrum_demo.ipynb \ No newline at end of file diff --git a/_downloads/spectrum_demo.py b/_downloads/spectrum_demo.py deleted file mode 120000 index 905cf035e0a..00000000000 --- a/_downloads/spectrum_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spectrum_demo.py \ No newline at end of file diff --git a/_downloads/spine_placement_demo.ipynb b/_downloads/spine_placement_demo.ipynb deleted file mode 120000 index 9445ebd7585..00000000000 --- a/_downloads/spine_placement_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spine_placement_demo.ipynb \ No newline at end of file diff --git a/_downloads/spine_placement_demo.py b/_downloads/spine_placement_demo.py deleted file mode 120000 index 559ea6bc052..00000000000 --- a/_downloads/spine_placement_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spine_placement_demo.py \ No newline at end of file diff --git a/_downloads/spines.ipynb b/_downloads/spines.ipynb deleted file mode 120000 index 128187b074f..00000000000 --- a/_downloads/spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spines.ipynb \ No newline at end of file diff --git a/_downloads/spines.py b/_downloads/spines.py deleted file mode 120000 index 165007b918f..00000000000 --- a/_downloads/spines.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spines.py \ No newline at end of file diff --git a/_downloads/spines_bounds.ipynb b/_downloads/spines_bounds.ipynb deleted file mode 120000 index d57a7038d4e..00000000000 --- a/_downloads/spines_bounds.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spines_bounds.ipynb \ No newline at end of file diff --git a/_downloads/spines_bounds.py b/_downloads/spines_bounds.py deleted file mode 120000 index 4f86d042023..00000000000 --- a/_downloads/spines_bounds.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spines_bounds.py \ No newline at end of file diff --git a/_downloads/spines_dropped.ipynb b/_downloads/spines_dropped.ipynb deleted file mode 120000 index 0b6bef226e3..00000000000 --- a/_downloads/spines_dropped.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spines_dropped.ipynb \ No newline at end of file diff --git a/_downloads/spines_dropped.py b/_downloads/spines_dropped.py deleted file mode 120000 index df4f7012d64..00000000000 --- a/_downloads/spines_dropped.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spines_dropped.py \ No newline at end of file diff --git a/_downloads/spy_demos.ipynb b/_downloads/spy_demos.ipynb deleted file mode 120000 index 2ab240e81bf..00000000000 --- a/_downloads/spy_demos.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spy_demos.ipynb \ No newline at end of file diff --git a/_downloads/spy_demos.py b/_downloads/spy_demos.py deleted file mode 120000 index 41fd3fa8c34..00000000000 --- a/_downloads/spy_demos.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/spy_demos.py \ No newline at end of file diff --git a/_downloads/stackplot_demo.ipynb b/_downloads/stackplot_demo.ipynb deleted file mode 120000 index 4cfc1e803d4..00000000000 --- a/_downloads/stackplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/stackplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/stackplot_demo.py b/_downloads/stackplot_demo.py deleted file mode 120000 index ffedf1655b3..00000000000 --- a/_downloads/stackplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/stackplot_demo.py \ No newline at end of file diff --git a/_downloads/stem_plot.ipynb b/_downloads/stem_plot.ipynb deleted file mode 120000 index 4ffeec078bc..00000000000 --- a/_downloads/stem_plot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/stem_plot.ipynb \ No newline at end of file diff --git a/_downloads/stem_plot.py b/_downloads/stem_plot.py deleted file mode 120000 index aa1b7fcae76..00000000000 --- a/_downloads/stem_plot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/stem_plot.py \ No newline at end of file diff --git a/_downloads/step_demo.ipynb b/_downloads/step_demo.ipynb deleted file mode 120000 index 84a7c7bbe9c..00000000000 --- a/_downloads/step_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/step_demo.ipynb \ No newline at end of file diff --git a/_downloads/step_demo.py b/_downloads/step_demo.py deleted file mode 120000 index f306dbbf037..00000000000 --- a/_downloads/step_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/step_demo.py \ No newline at end of file diff --git a/_downloads/stix_fonts_demo.ipynb b/_downloads/stix_fonts_demo.ipynb deleted file mode 120000 index ead0e2b66aa..00000000000 --- a/_downloads/stix_fonts_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/stix_fonts_demo.ipynb \ No newline at end of file diff --git a/_downloads/stix_fonts_demo.py b/_downloads/stix_fonts_demo.py deleted file mode 120000 index 8d9f46f6386..00000000000 --- a/_downloads/stix_fonts_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/stix_fonts_demo.py \ No newline at end of file diff --git a/_downloads/strip_chart.ipynb b/_downloads/strip_chart.ipynb deleted file mode 120000 index 34002380144..00000000000 --- a/_downloads/strip_chart.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/strip_chart.ipynb \ No newline at end of file diff --git a/_downloads/strip_chart.py b/_downloads/strip_chart.py deleted file mode 120000 index cb814f60588..00000000000 --- a/_downloads/strip_chart.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/strip_chart.py \ No newline at end of file diff --git a/_downloads/strip_chart_demo.ipynb b/_downloads/strip_chart_demo.ipynb deleted file mode 120000 index 792cc300f08..00000000000 --- a/_downloads/strip_chart_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/strip_chart_demo.ipynb \ No newline at end of file diff --git a/_downloads/strip_chart_demo.py b/_downloads/strip_chart_demo.py deleted file mode 120000 index ecf5ef455c0..00000000000 --- a/_downloads/strip_chart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/strip_chart_demo.py \ No newline at end of file diff --git a/_downloads/style_sheets_reference.ipynb b/_downloads/style_sheets_reference.ipynb deleted file mode 120000 index a1e3f023596..00000000000 --- a/_downloads/style_sheets_reference.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/style_sheets_reference.ipynb \ No newline at end of file diff --git a/_downloads/style_sheets_reference.py b/_downloads/style_sheets_reference.py deleted file mode 120000 index f0410c39069..00000000000 --- a/_downloads/style_sheets_reference.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/style_sheets_reference.py \ No newline at end of file diff --git a/_downloads/subplot.ipynb b/_downloads/subplot.ipynb deleted file mode 120000 index d32c1e4121b..00000000000 --- a/_downloads/subplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot.ipynb \ No newline at end of file diff --git a/_downloads/subplot.py b/_downloads/subplot.py deleted file mode 120000 index 544e0b7df23..00000000000 --- a/_downloads/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot.py \ No newline at end of file diff --git a/_downloads/subplot3d.ipynb b/_downloads/subplot3d.ipynb deleted file mode 120000 index c263903845e..00000000000 --- a/_downloads/subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/subplot3d.py b/_downloads/subplot3d.py deleted file mode 120000 index 41a613e10f9..00000000000 --- a/_downloads/subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot3d.py \ No newline at end of file diff --git a/_downloads/subplot_demo.ipynb b/_downloads/subplot_demo.ipynb deleted file mode 120000 index 141596f9e0a..00000000000 --- a/_downloads/subplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/subplot_demo.py b/_downloads/subplot_demo.py deleted file mode 120000 index a7e4460a4b4..00000000000 --- a/_downloads/subplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot_demo.py \ No newline at end of file diff --git a/_downloads/subplot_toolbar.ipynb b/_downloads/subplot_toolbar.ipynb deleted file mode 120000 index 0975de1f284..00000000000 --- a/_downloads/subplot_toolbar.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot_toolbar.ipynb \ No newline at end of file diff --git a/_downloads/subplot_toolbar.py b/_downloads/subplot_toolbar.py deleted file mode 120000 index 3a6089930a2..00000000000 --- a/_downloads/subplot_toolbar.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplot_toolbar.py \ No newline at end of file diff --git a/_downloads/subplots.ipynb b/_downloads/subplots.ipynb deleted file mode 120000 index d532fb3a811..00000000000 --- a/_downloads/subplots.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/subplots.ipynb \ No newline at end of file diff --git a/_downloads/subplots.py b/_downloads/subplots.py deleted file mode 120000 index 89fb57e98df..00000000000 --- a/_downloads/subplots.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/subplots.py \ No newline at end of file diff --git a/_downloads/subplots_adjust.ipynb b/_downloads/subplots_adjust.ipynb deleted file mode 120000 index 06a4a25e3ab..00000000000 --- a/_downloads/subplots_adjust.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplots_adjust.ipynb \ No newline at end of file diff --git a/_downloads/subplots_adjust.py b/_downloads/subplots_adjust.py deleted file mode 120000 index 1f3b0dfdb05..00000000000 --- a/_downloads/subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplots_adjust.py \ No newline at end of file diff --git a/_downloads/subplots_demo.ipynb b/_downloads/subplots_demo.ipynb deleted file mode 120000 index 8aba8038059..00000000000 --- a/_downloads/subplots_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplots_demo.ipynb \ No newline at end of file diff --git a/_downloads/subplots_demo.py b/_downloads/subplots_demo.py deleted file mode 120000 index 695db2a6124..00000000000 --- a/_downloads/subplots_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/subplots_demo.py \ No newline at end of file diff --git a/_downloads/surface3d.ipynb b/_downloads/surface3d.ipynb deleted file mode 120000 index 5dc20f97edb..00000000000 --- a/_downloads/surface3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d.ipynb \ No newline at end of file diff --git a/_downloads/surface3d.py b/_downloads/surface3d.py deleted file mode 120000 index 4867fc404fa..00000000000 --- a/_downloads/surface3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d.py \ No newline at end of file diff --git a/_downloads/surface3d_2.ipynb b/_downloads/surface3d_2.ipynb deleted file mode 120000 index a38fa2543d1..00000000000 --- a/_downloads/surface3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d_2.ipynb \ No newline at end of file diff --git a/_downloads/surface3d_2.py b/_downloads/surface3d_2.py deleted file mode 120000 index 067aae9457a..00000000000 --- a/_downloads/surface3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d_2.py \ No newline at end of file diff --git a/_downloads/surface3d_3.ipynb b/_downloads/surface3d_3.ipynb deleted file mode 120000 index 069c3542421..00000000000 --- a/_downloads/surface3d_3.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d_3.ipynb \ No newline at end of file diff --git a/_downloads/surface3d_3.py b/_downloads/surface3d_3.py deleted file mode 120000 index 6482764b4ae..00000000000 --- a/_downloads/surface3d_3.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d_3.py \ No newline at end of file diff --git a/_downloads/surface3d_radial.ipynb b/_downloads/surface3d_radial.ipynb deleted file mode 120000 index cb7a668d212..00000000000 --- a/_downloads/surface3d_radial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d_radial.ipynb \ No newline at end of file diff --git a/_downloads/surface3d_radial.py b/_downloads/surface3d_radial.py deleted file mode 120000 index dbb59cdf5aa..00000000000 --- a/_downloads/surface3d_radial.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/surface3d_radial.py \ No newline at end of file diff --git a/_downloads/svg_filter_line.ipynb b/_downloads/svg_filter_line.ipynb deleted file mode 120000 index 49b88ee5540..00000000000 --- a/_downloads/svg_filter_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_filter_line.ipynb \ No newline at end of file diff --git a/_downloads/svg_filter_line.py b/_downloads/svg_filter_line.py deleted file mode 120000 index d1afa804eef..00000000000 --- a/_downloads/svg_filter_line.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_filter_line.py \ No newline at end of file diff --git a/_downloads/svg_filter_pie.ipynb b/_downloads/svg_filter_pie.ipynb deleted file mode 120000 index 67764b99ad5..00000000000 --- a/_downloads/svg_filter_pie.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_filter_pie.ipynb \ No newline at end of file diff --git a/_downloads/svg_filter_pie.py b/_downloads/svg_filter_pie.py deleted file mode 120000 index 7cb2a1d748d..00000000000 --- a/_downloads/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_filter_pie.py \ No newline at end of file diff --git a/_downloads/svg_histogram_sgskip.ipynb b/_downloads/svg_histogram_sgskip.ipynb deleted file mode 120000 index 642ebdb3a91..00000000000 --- a/_downloads/svg_histogram_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_histogram_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/svg_histogram_sgskip.py b/_downloads/svg_histogram_sgskip.py deleted file mode 120000 index 128c647d8b6..00000000000 --- a/_downloads/svg_histogram_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_histogram_sgskip.py \ No newline at end of file diff --git a/_downloads/svg_tooltip_sgskip.ipynb b/_downloads/svg_tooltip_sgskip.ipynb deleted file mode 120000 index ac5d9e8de80..00000000000 --- a/_downloads/svg_tooltip_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_tooltip_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/svg_tooltip_sgskip.py b/_downloads/svg_tooltip_sgskip.py deleted file mode 120000 index decc3f2d2f0..00000000000 --- a/_downloads/svg_tooltip_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/svg_tooltip_sgskip.py \ No newline at end of file diff --git a/_downloads/symlog_demo.ipynb b/_downloads/symlog_demo.ipynb deleted file mode 120000 index e538d897ed9..00000000000 --- a/_downloads/symlog_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/symlog_demo.ipynb \ No newline at end of file diff --git a/_downloads/symlog_demo.py b/_downloads/symlog_demo.py deleted file mode 120000 index f893cef7b2c..00000000000 --- a/_downloads/symlog_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/symlog_demo.py \ No newline at end of file diff --git a/_downloads/system_monitor.ipynb b/_downloads/system_monitor.ipynb deleted file mode 120000 index 0e7cd69f0a7..00000000000 --- a/_downloads/system_monitor.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/system_monitor.ipynb \ No newline at end of file diff --git a/_downloads/system_monitor.py b/_downloads/system_monitor.py deleted file mode 120000 index 31c6941be7d..00000000000 --- a/_downloads/system_monitor.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/system_monitor.py \ No newline at end of file diff --git a/_downloads/table_demo.ipynb b/_downloads/table_demo.ipynb deleted file mode 120000 index 90af1b9e379..00000000000 --- a/_downloads/table_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/table_demo.ipynb \ No newline at end of file diff --git a/_downloads/table_demo.py b/_downloads/table_demo.py deleted file mode 120000 index a01cced8bb4..00000000000 --- a/_downloads/table_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/table_demo.py \ No newline at end of file diff --git a/_downloads/tex_demo.ipynb b/_downloads/tex_demo.ipynb deleted file mode 120000 index 0b7f279f54e..00000000000 --- a/_downloads/tex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tex_demo.ipynb \ No newline at end of file diff --git a/_downloads/tex_demo.py b/_downloads/tex_demo.py deleted file mode 120000 index fb276d94647..00000000000 --- a/_downloads/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tex_demo.py \ No newline at end of file diff --git a/_downloads/text3d.ipynb b/_downloads/text3d.ipynb deleted file mode 120000 index fd88fd61afa..00000000000 --- a/_downloads/text3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text3d.ipynb \ No newline at end of file diff --git a/_downloads/text3d.py b/_downloads/text3d.py deleted file mode 120000 index 31692dba95c..00000000000 --- a/_downloads/text3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text3d.py \ No newline at end of file diff --git a/_downloads/text_alignment.ipynb b/_downloads/text_alignment.ipynb deleted file mode 120000 index 286b5ddf009..00000000000 --- a/_downloads/text_alignment.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_alignment.ipynb \ No newline at end of file diff --git a/_downloads/text_alignment.py b/_downloads/text_alignment.py deleted file mode 120000 index b56294e4fec..00000000000 --- a/_downloads/text_alignment.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_alignment.py \ No newline at end of file diff --git a/_downloads/text_commands.ipynb b/_downloads/text_commands.ipynb deleted file mode 120000 index 46559f60f97..00000000000 --- a/_downloads/text_commands.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_commands.ipynb \ No newline at end of file diff --git a/_downloads/text_commands.py b/_downloads/text_commands.py deleted file mode 120000 index d37d5e4d10d..00000000000 --- a/_downloads/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_commands.py \ No newline at end of file diff --git a/_downloads/text_fontdict.ipynb b/_downloads/text_fontdict.ipynb deleted file mode 120000 index 71798b99b99..00000000000 --- a/_downloads/text_fontdict.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_fontdict.ipynb \ No newline at end of file diff --git a/_downloads/text_fontdict.py b/_downloads/text_fontdict.py deleted file mode 120000 index c178b160d7c..00000000000 --- a/_downloads/text_fontdict.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_fontdict.py \ No newline at end of file diff --git a/_downloads/text_intro.ipynb b/_downloads/text_intro.ipynb deleted file mode 120000 index 878cf688733..00000000000 --- a/_downloads/text_intro.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_intro.ipynb \ No newline at end of file diff --git a/_downloads/text_intro.py b/_downloads/text_intro.py deleted file mode 120000 index 540d46f909e..00000000000 --- a/_downloads/text_intro.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_intro.py \ No newline at end of file diff --git a/_downloads/text_layout.ipynb b/_downloads/text_layout.ipynb deleted file mode 120000 index d26511bf613..00000000000 --- a/_downloads/text_layout.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_layout.ipynb \ No newline at end of file diff --git a/_downloads/text_layout.py b/_downloads/text_layout.py deleted file mode 120000 index d62e34de5c8..00000000000 --- a/_downloads/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_layout.py \ No newline at end of file diff --git a/_downloads/text_props.ipynb b/_downloads/text_props.ipynb deleted file mode 120000 index 32a55632718..00000000000 --- a/_downloads/text_props.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_props.ipynb \ No newline at end of file diff --git a/_downloads/text_props.py b/_downloads/text_props.py deleted file mode 120000 index 15b869db7fa..00000000000 --- a/_downloads/text_props.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_props.py \ No newline at end of file diff --git a/_downloads/text_rotation.ipynb b/_downloads/text_rotation.ipynb deleted file mode 120000 index 1d838f88012..00000000000 --- a/_downloads/text_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_rotation.ipynb \ No newline at end of file diff --git a/_downloads/text_rotation.py b/_downloads/text_rotation.py deleted file mode 120000 index 56e2923cffb..00000000000 --- a/_downloads/text_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_rotation.py \ No newline at end of file diff --git a/_downloads/text_rotation_relative_to_line.ipynb b/_downloads/text_rotation_relative_to_line.ipynb deleted file mode 120000 index e588895a81e..00000000000 --- a/_downloads/text_rotation_relative_to_line.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_rotation_relative_to_line.ipynb \ No newline at end of file diff --git a/_downloads/text_rotation_relative_to_line.py b/_downloads/text_rotation_relative_to_line.py deleted file mode 120000 index eb56f5b8351..00000000000 --- a/_downloads/text_rotation_relative_to_line.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/text_rotation_relative_to_line.py \ No newline at end of file diff --git a/_downloads/textbox.ipynb b/_downloads/textbox.ipynb deleted file mode 120000 index 292aca8271f..00000000000 --- a/_downloads/textbox.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/textbox.ipynb \ No newline at end of file diff --git a/_downloads/textbox.py b/_downloads/textbox.py deleted file mode 120000 index 000709c4227..00000000000 --- a/_downloads/textbox.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/textbox.py \ No newline at end of file diff --git a/_downloads/tick-formatters.ipynb b/_downloads/tick-formatters.ipynb deleted file mode 120000 index 2a89959fd0b..00000000000 --- a/_downloads/tick-formatters.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick-formatters.ipynb \ No newline at end of file diff --git a/_downloads/tick-formatters.py b/_downloads/tick-formatters.py deleted file mode 120000 index 622355b16b5..00000000000 --- a/_downloads/tick-formatters.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick-formatters.py \ No newline at end of file diff --git a/_downloads/tick-locators.ipynb b/_downloads/tick-locators.ipynb deleted file mode 120000 index d9ca31803ae..00000000000 --- a/_downloads/tick-locators.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick-locators.ipynb \ No newline at end of file diff --git a/_downloads/tick-locators.py b/_downloads/tick-locators.py deleted file mode 120000 index 0e89cdf3f6c..00000000000 --- a/_downloads/tick-locators.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick-locators.py \ No newline at end of file diff --git a/_downloads/tick_label_right.ipynb b/_downloads/tick_label_right.ipynb deleted file mode 120000 index 602e3521feb..00000000000 --- a/_downloads/tick_label_right.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick_label_right.ipynb \ No newline at end of file diff --git a/_downloads/tick_label_right.py b/_downloads/tick_label_right.py deleted file mode 120000 index c47aab17d85..00000000000 --- a/_downloads/tick_label_right.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick_label_right.py \ No newline at end of file diff --git a/_downloads/tick_labels_from_values.ipynb b/_downloads/tick_labels_from_values.ipynb deleted file mode 120000 index fad405dfceb..00000000000 --- a/_downloads/tick_labels_from_values.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick_labels_from_values.ipynb \ No newline at end of file diff --git a/_downloads/tick_labels_from_values.py b/_downloads/tick_labels_from_values.py deleted file mode 120000 index 4c467486871..00000000000 --- a/_downloads/tick_labels_from_values.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick_labels_from_values.py \ No newline at end of file diff --git a/_downloads/tick_xlabel_top.ipynb b/_downloads/tick_xlabel_top.ipynb deleted file mode 120000 index a8bc5a0df71..00000000000 --- a/_downloads/tick_xlabel_top.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick_xlabel_top.ipynb \ No newline at end of file diff --git a/_downloads/tick_xlabel_top.py b/_downloads/tick_xlabel_top.py deleted file mode 120000 index 1a6a6a224cb..00000000000 --- a/_downloads/tick_xlabel_top.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tick_xlabel_top.py \ No newline at end of file diff --git a/_downloads/ticklabels_rotation.ipynb b/_downloads/ticklabels_rotation.ipynb deleted file mode 120000 index f52c1e4723a..00000000000 --- a/_downloads/ticklabels_rotation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ticklabels_rotation.ipynb \ No newline at end of file diff --git a/_downloads/ticklabels_rotation.py b/_downloads/ticklabels_rotation.py deleted file mode 120000 index c92d83c79a2..00000000000 --- a/_downloads/ticklabels_rotation.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/ticklabels_rotation.py \ No newline at end of file diff --git a/_downloads/tight_bbox_test.ipynb b/_downloads/tight_bbox_test.ipynb deleted file mode 120000 index 2840977af22..00000000000 --- a/_downloads/tight_bbox_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tight_bbox_test.ipynb \ No newline at end of file diff --git a/_downloads/tight_bbox_test.py b/_downloads/tight_bbox_test.py deleted file mode 120000 index c1ae28e99c6..00000000000 --- a/_downloads/tight_bbox_test.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tight_bbox_test.py \ No newline at end of file diff --git a/_downloads/tight_layout_guide.ipynb b/_downloads/tight_layout_guide.ipynb deleted file mode 120000 index 8447a19fb93..00000000000 --- a/_downloads/tight_layout_guide.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tight_layout_guide.ipynb \ No newline at end of file diff --git a/_downloads/tight_layout_guide.py b/_downloads/tight_layout_guide.py deleted file mode 120000 index 8f937042220..00000000000 --- a/_downloads/tight_layout_guide.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tight_layout_guide.py \ No newline at end of file diff --git a/_downloads/timeline.ipynb b/_downloads/timeline.ipynb deleted file mode 120000 index 6298ad469d4..00000000000 --- a/_downloads/timeline.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/timeline.ipynb \ No newline at end of file diff --git a/_downloads/timeline.py b/_downloads/timeline.py deleted file mode 120000 index d3d36dc87a0..00000000000 --- a/_downloads/timeline.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/timeline.py \ No newline at end of file diff --git a/_downloads/timers.ipynb b/_downloads/timers.ipynb deleted file mode 120000 index 5c78533a235..00000000000 --- a/_downloads/timers.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/timers.ipynb \ No newline at end of file diff --git a/_downloads/timers.py b/_downloads/timers.py deleted file mode 120000 index 6ad3d019f21..00000000000 --- a/_downloads/timers.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/timers.py \ No newline at end of file diff --git a/_downloads/titles_demo.ipynb b/_downloads/titles_demo.ipynb deleted file mode 120000 index 668e9a865f6..00000000000 --- a/_downloads/titles_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/titles_demo.ipynb \ No newline at end of file diff --git a/_downloads/titles_demo.py b/_downloads/titles_demo.py deleted file mode 120000 index 0bd54630a3a..00000000000 --- a/_downloads/titles_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/titles_demo.py \ No newline at end of file diff --git a/_downloads/toolmanager_sgskip.ipynb b/_downloads/toolmanager_sgskip.ipynb deleted file mode 120000 index 6b2e920d4ef..00000000000 --- a/_downloads/toolmanager_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/toolmanager_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/toolmanager_sgskip.py b/_downloads/toolmanager_sgskip.py deleted file mode 120000 index 30a8f51c2b9..00000000000 --- a/_downloads/toolmanager_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/toolmanager_sgskip.py \ No newline at end of file diff --git a/_downloads/topographic_hillshading.ipynb b/_downloads/topographic_hillshading.ipynb deleted file mode 120000 index 56f7383fb24..00000000000 --- a/_downloads/topographic_hillshading.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/topographic_hillshading.ipynb \ No newline at end of file diff --git a/_downloads/topographic_hillshading.py b/_downloads/topographic_hillshading.py deleted file mode 120000 index 49f54fafbfd..00000000000 --- a/_downloads/topographic_hillshading.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/topographic_hillshading.py \ No newline at end of file diff --git a/_downloads/transforms_tutorial.ipynb b/_downloads/transforms_tutorial.ipynb deleted file mode 120000 index 785d5efb643..00000000000 --- a/_downloads/transforms_tutorial.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/transforms_tutorial.ipynb \ No newline at end of file diff --git a/_downloads/transforms_tutorial.py b/_downloads/transforms_tutorial.py deleted file mode 120000 index 710a5c0e590..00000000000 --- a/_downloads/transforms_tutorial.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/transforms_tutorial.py \ No newline at end of file diff --git a/_downloads/transoffset.ipynb b/_downloads/transoffset.ipynb deleted file mode 120000 index 6b674291926..00000000000 --- a/_downloads/transoffset.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/transoffset.ipynb \ No newline at end of file diff --git a/_downloads/transoffset.py b/_downloads/transoffset.py deleted file mode 120000 index 0fc53452dda..00000000000 --- a/_downloads/transoffset.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/transoffset.py \ No newline at end of file diff --git a/_downloads/transparent_legends.ipynb b/_downloads/transparent_legends.ipynb deleted file mode 120000 index 407819aa47c..00000000000 --- a/_downloads/transparent_legends.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/transparent_legends.ipynb \ No newline at end of file diff --git a/_downloads/transparent_legends.py b/_downloads/transparent_legends.py deleted file mode 120000 index 63c0f46cf8e..00000000000 --- a/_downloads/transparent_legends.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/transparent_legends.py \ No newline at end of file diff --git a/_downloads/tricontour3d.ipynb b/_downloads/tricontour3d.ipynb deleted file mode 120000 index e87b5a79ea7..00000000000 --- a/_downloads/tricontour3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour3d.ipynb \ No newline at end of file diff --git a/_downloads/tricontour3d.py b/_downloads/tricontour3d.py deleted file mode 120000 index 5040ffde1bd..00000000000 --- a/_downloads/tricontour3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour3d.py \ No newline at end of file diff --git a/_downloads/tricontour_demo.ipynb b/_downloads/tricontour_demo.ipynb deleted file mode 120000 index 5440fbce6ac..00000000000 --- a/_downloads/tricontour_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour_demo.ipynb \ No newline at end of file diff --git a/_downloads/tricontour_demo.py b/_downloads/tricontour_demo.py deleted file mode 120000 index 9c1d50aba7a..00000000000 --- a/_downloads/tricontour_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour_demo.py \ No newline at end of file diff --git a/_downloads/tricontour_smooth_delaunay.ipynb b/_downloads/tricontour_smooth_delaunay.ipynb deleted file mode 120000 index cd3b6503f94..00000000000 --- a/_downloads/tricontour_smooth_delaunay.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour_smooth_delaunay.ipynb \ No newline at end of file diff --git a/_downloads/tricontour_smooth_delaunay.py b/_downloads/tricontour_smooth_delaunay.py deleted file mode 120000 index eb251ec8cc7..00000000000 --- a/_downloads/tricontour_smooth_delaunay.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour_smooth_delaunay.py \ No newline at end of file diff --git a/_downloads/tricontour_smooth_user.ipynb b/_downloads/tricontour_smooth_user.ipynb deleted file mode 120000 index 6c4452d92fc..00000000000 --- a/_downloads/tricontour_smooth_user.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour_smooth_user.ipynb \ No newline at end of file diff --git a/_downloads/tricontour_smooth_user.py b/_downloads/tricontour_smooth_user.py deleted file mode 120000 index 61de2dbbfed..00000000000 --- a/_downloads/tricontour_smooth_user.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontour_smooth_user.py \ No newline at end of file diff --git a/_downloads/tricontour_vs_griddata.ipynb b/_downloads/tricontour_vs_griddata.ipynb deleted file mode 120000 index 76afa4bfa7c..00000000000 --- a/_downloads/tricontour_vs_griddata.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/tricontour_vs_griddata.ipynb \ No newline at end of file diff --git a/_downloads/tricontour_vs_griddata.py b/_downloads/tricontour_vs_griddata.py deleted file mode 120000 index 546701ce7d4..00000000000 --- a/_downloads/tricontour_vs_griddata.py +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_downloads/tricontour_vs_griddata.py \ No newline at end of file diff --git a/_downloads/tricontourf3d.ipynb b/_downloads/tricontourf3d.ipynb deleted file mode 120000 index 80685a28c3f..00000000000 --- a/_downloads/tricontourf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontourf3d.ipynb \ No newline at end of file diff --git a/_downloads/tricontourf3d.py b/_downloads/tricontourf3d.py deleted file mode 120000 index 5728ffc98a2..00000000000 --- a/_downloads/tricontourf3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tricontourf3d.py \ No newline at end of file diff --git a/_downloads/trifinder_event_demo.ipynb b/_downloads/trifinder_event_demo.ipynb deleted file mode 120000 index 216ff0fb1b0..00000000000 --- a/_downloads/trifinder_event_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trifinder_event_demo.ipynb \ No newline at end of file diff --git a/_downloads/trifinder_event_demo.py b/_downloads/trifinder_event_demo.py deleted file mode 120000 index c9dfb88dc8b..00000000000 --- a/_downloads/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trifinder_event_demo.py \ No newline at end of file diff --git a/_downloads/trigradient_demo.ipynb b/_downloads/trigradient_demo.ipynb deleted file mode 120000 index 25cb1525ea4..00000000000 --- a/_downloads/trigradient_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trigradient_demo.ipynb \ No newline at end of file diff --git a/_downloads/trigradient_demo.py b/_downloads/trigradient_demo.py deleted file mode 120000 index 5e7f122c452..00000000000 --- a/_downloads/trigradient_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trigradient_demo.py \ No newline at end of file diff --git a/_downloads/triinterp_demo.ipynb b/_downloads/triinterp_demo.ipynb deleted file mode 120000 index bf78eb48b4c..00000000000 --- a/_downloads/triinterp_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/triinterp_demo.ipynb \ No newline at end of file diff --git a/_downloads/triinterp_demo.py b/_downloads/triinterp_demo.py deleted file mode 120000 index 6e54e9b7887..00000000000 --- a/_downloads/triinterp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/triinterp_demo.py \ No newline at end of file diff --git a/_downloads/tripcolor_demo.ipynb b/_downloads/tripcolor_demo.ipynb deleted file mode 120000 index d3ecfceb001..00000000000 --- a/_downloads/tripcolor_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tripcolor_demo.ipynb \ No newline at end of file diff --git a/_downloads/tripcolor_demo.py b/_downloads/tripcolor_demo.py deleted file mode 120000 index 9173ecab7cd..00000000000 --- a/_downloads/tripcolor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tripcolor_demo.py \ No newline at end of file diff --git a/_downloads/triplot_demo.ipynb b/_downloads/triplot_demo.ipynb deleted file mode 120000 index 7294fe640f3..00000000000 --- a/_downloads/triplot_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/triplot_demo.ipynb \ No newline at end of file diff --git a/_downloads/triplot_demo.py b/_downloads/triplot_demo.py deleted file mode 120000 index 565d8e699fe..00000000000 --- a/_downloads/triplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/triplot_demo.py \ No newline at end of file diff --git a/_downloads/trisurf3d.ipynb b/_downloads/trisurf3d.ipynb deleted file mode 120000 index ffe29753272..00000000000 --- a/_downloads/trisurf3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trisurf3d.ipynb \ No newline at end of file diff --git a/_downloads/trisurf3d.py b/_downloads/trisurf3d.py deleted file mode 120000 index df8cc1ef259..00000000000 --- a/_downloads/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trisurf3d.py \ No newline at end of file diff --git a/_downloads/trisurf3d_2.ipynb b/_downloads/trisurf3d_2.ipynb deleted file mode 120000 index 91683ebd489..00000000000 --- a/_downloads/trisurf3d_2.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trisurf3d_2.ipynb \ No newline at end of file diff --git a/_downloads/trisurf3d_2.py b/_downloads/trisurf3d_2.py deleted file mode 120000 index 3b2bfaf161b..00000000000 --- a/_downloads/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/trisurf3d_2.py \ No newline at end of file diff --git a/_downloads/tutorials_jupyter.zip b/_downloads/tutorials_jupyter.zip deleted file mode 120000 index 3a9507c0070..00000000000 --- a/_downloads/tutorials_jupyter.zip +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tutorials_jupyter.zip \ No newline at end of file diff --git a/_downloads/tutorials_python.zip b/_downloads/tutorials_python.zip deleted file mode 120000 index ea236b60264..00000000000 --- a/_downloads/tutorials_python.zip +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/tutorials_python.zip \ No newline at end of file diff --git a/_downloads/two_scales.ipynb b/_downloads/two_scales.ipynb deleted file mode 120000 index 553f65f75b3..00000000000 --- a/_downloads/two_scales.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/two_scales.ipynb \ No newline at end of file diff --git a/_downloads/two_scales.py b/_downloads/two_scales.py deleted file mode 120000 index ea03c347c46..00000000000 --- a/_downloads/two_scales.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/two_scales.py \ No newline at end of file diff --git a/_downloads/unchained.ipynb b/_downloads/unchained.ipynb deleted file mode 120000 index 786fef53b28..00000000000 --- a/_downloads/unchained.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/unchained.ipynb \ No newline at end of file diff --git a/_downloads/unchained.py b/_downloads/unchained.py deleted file mode 120000 index ad9b8bcc1a8..00000000000 --- a/_downloads/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/unchained.py \ No newline at end of file diff --git a/_downloads/unicode_minus.ipynb b/_downloads/unicode_minus.ipynb deleted file mode 120000 index b39ddb3ff51..00000000000 --- a/_downloads/unicode_minus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/unicode_minus.ipynb \ No newline at end of file diff --git a/_downloads/unicode_minus.py b/_downloads/unicode_minus.py deleted file mode 120000 index 53e539c5d8f..00000000000 --- a/_downloads/unicode_minus.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/unicode_minus.py \ No newline at end of file diff --git a/_downloads/units_sample.ipynb b/_downloads/units_sample.ipynb deleted file mode 120000 index 3deda61461d..00000000000 --- a/_downloads/units_sample.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/units_sample.ipynb \ No newline at end of file diff --git a/_downloads/units_sample.py b/_downloads/units_sample.py deleted file mode 120000 index 2e1fa6f2807..00000000000 --- a/_downloads/units_sample.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/units_sample.py \ No newline at end of file diff --git a/_downloads/units_scatter.ipynb b/_downloads/units_scatter.ipynb deleted file mode 120000 index 84028212921..00000000000 --- a/_downloads/units_scatter.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/units_scatter.ipynb \ No newline at end of file diff --git a/_downloads/units_scatter.py b/_downloads/units_scatter.py deleted file mode 120000 index b27927d7b5b..00000000000 --- a/_downloads/units_scatter.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/units_scatter.py \ No newline at end of file diff --git a/_downloads/usage.ipynb b/_downloads/usage.ipynb deleted file mode 120000 index 31c41a91071..00000000000 --- a/_downloads/usage.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usage.ipynb \ No newline at end of file diff --git a/_downloads/usage.py b/_downloads/usage.py deleted file mode 120000 index 0909331a67b..00000000000 --- a/_downloads/usage.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usage.py \ No newline at end of file diff --git a/_downloads/usetex.ipynb b/_downloads/usetex.ipynb deleted file mode 120000 index 097961a94d2..00000000000 --- a/_downloads/usetex.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex.ipynb \ No newline at end of file diff --git a/_downloads/usetex.py b/_downloads/usetex.py deleted file mode 120000 index d131ac598c0..00000000000 --- a/_downloads/usetex.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex.py \ No newline at end of file diff --git a/_downloads/usetex_baseline_test.ipynb b/_downloads/usetex_baseline_test.ipynb deleted file mode 120000 index 72816372241..00000000000 --- a/_downloads/usetex_baseline_test.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex_baseline_test.ipynb \ No newline at end of file diff --git a/_downloads/usetex_baseline_test.py b/_downloads/usetex_baseline_test.py deleted file mode 120000 index 9554b3d476f..00000000000 --- a/_downloads/usetex_baseline_test.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex_baseline_test.py \ No newline at end of file diff --git a/_downloads/usetex_demo.ipynb b/_downloads/usetex_demo.ipynb deleted file mode 120000 index cddbd2face2..00000000000 --- a/_downloads/usetex_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex_demo.ipynb \ No newline at end of file diff --git a/_downloads/usetex_demo.py b/_downloads/usetex_demo.py deleted file mode 120000 index 53089c6c5bc..00000000000 --- a/_downloads/usetex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex_demo.py \ No newline at end of file diff --git a/_downloads/usetex_fonteffects.ipynb b/_downloads/usetex_fonteffects.ipynb deleted file mode 120000 index 6bac9c59de3..00000000000 --- a/_downloads/usetex_fonteffects.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex_fonteffects.ipynb \ No newline at end of file diff --git a/_downloads/usetex_fonteffects.py b/_downloads/usetex_fonteffects.py deleted file mode 120000 index d99bd8d8043..00000000000 --- a/_downloads/usetex_fonteffects.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/usetex_fonteffects.py \ No newline at end of file diff --git a/_downloads/viewlims.ipynb b/_downloads/viewlims.ipynb deleted file mode 120000 index ab67ef7ffa1..00000000000 --- a/_downloads/viewlims.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/viewlims.ipynb \ No newline at end of file diff --git a/_downloads/viewlims.py b/_downloads/viewlims.py deleted file mode 120000 index e2157df4e3b..00000000000 --- a/_downloads/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/viewlims.py \ No newline at end of file diff --git a/_downloads/violinplot.ipynb b/_downloads/violinplot.ipynb deleted file mode 120000 index 8438902ad3e..00000000000 --- a/_downloads/violinplot.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/violinplot.ipynb \ No newline at end of file diff --git a/_downloads/violinplot.py b/_downloads/violinplot.py deleted file mode 120000 index b6d7b825794..00000000000 --- a/_downloads/violinplot.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/violinplot.py \ No newline at end of file diff --git a/_downloads/vline_hline_demo.ipynb b/_downloads/vline_hline_demo.ipynb deleted file mode 120000 index 0851d52c13e..00000000000 --- a/_downloads/vline_hline_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/vline_hline_demo.ipynb \ No newline at end of file diff --git a/_downloads/vline_hline_demo.py b/_downloads/vline_hline_demo.py deleted file mode 120000 index d92c4865da8..00000000000 --- a/_downloads/vline_hline_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/vline_hline_demo.py \ No newline at end of file diff --git a/_downloads/voxels.ipynb b/_downloads/voxels.ipynb deleted file mode 120000 index 28224cbbb87..00000000000 --- a/_downloads/voxels.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels.ipynb \ No newline at end of file diff --git a/_downloads/voxels.py b/_downloads/voxels.py deleted file mode 120000 index 409ee95244f..00000000000 --- a/_downloads/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels.py \ No newline at end of file diff --git a/_downloads/voxels_numpy_logo.ipynb b/_downloads/voxels_numpy_logo.ipynb deleted file mode 120000 index a9a3f67112e..00000000000 --- a/_downloads/voxels_numpy_logo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels_numpy_logo.ipynb \ No newline at end of file diff --git a/_downloads/voxels_numpy_logo.py b/_downloads/voxels_numpy_logo.py deleted file mode 120000 index 0397d11b8b3..00000000000 --- a/_downloads/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels_numpy_logo.py \ No newline at end of file diff --git a/_downloads/voxels_rgb.ipynb b/_downloads/voxels_rgb.ipynb deleted file mode 120000 index 6bba773c796..00000000000 --- a/_downloads/voxels_rgb.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels_rgb.ipynb \ No newline at end of file diff --git a/_downloads/voxels_rgb.py b/_downloads/voxels_rgb.py deleted file mode 120000 index c6b62d47939..00000000000 --- a/_downloads/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels_rgb.py \ No newline at end of file diff --git a/_downloads/voxels_torus.ipynb b/_downloads/voxels_torus.ipynb deleted file mode 120000 index 4f814beb675..00000000000 --- a/_downloads/voxels_torus.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels_torus.ipynb \ No newline at end of file diff --git a/_downloads/voxels_torus.py b/_downloads/voxels_torus.py deleted file mode 120000 index e0b89c92d14..00000000000 --- a/_downloads/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/voxels_torus.py \ No newline at end of file diff --git a/_downloads/watermark_image.ipynb b/_downloads/watermark_image.ipynb deleted file mode 120000 index ce528b9d270..00000000000 --- a/_downloads/watermark_image.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/watermark_image.ipynb \ No newline at end of file diff --git a/_downloads/watermark_image.py b/_downloads/watermark_image.py deleted file mode 120000 index 3ee8fb8cbb5..00000000000 --- a/_downloads/watermark_image.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/watermark_image.py \ No newline at end of file diff --git a/_downloads/watermark_text.ipynb b/_downloads/watermark_text.ipynb deleted file mode 120000 index 36cd1f0e654..00000000000 --- a/_downloads/watermark_text.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/watermark_text.ipynb \ No newline at end of file diff --git a/_downloads/watermark_text.py b/_downloads/watermark_text.py deleted file mode 120000 index b227dc8dc78..00000000000 --- a/_downloads/watermark_text.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/watermark_text.py \ No newline at end of file diff --git a/_downloads/webapp_demo_sgskip.ipynb b/_downloads/webapp_demo_sgskip.ipynb deleted file mode 120000 index b203de1c68b..00000000000 --- a/_downloads/webapp_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/webapp_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/webapp_demo_sgskip.py b/_downloads/webapp_demo_sgskip.py deleted file mode 120000 index 1cbad85e612..00000000000 --- a/_downloads/webapp_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/webapp_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/whats_new_1_subplot3d.ipynb b/_downloads/whats_new_1_subplot3d.ipynb deleted file mode 120000 index d3b8d5422a0..00000000000 --- a/_downloads/whats_new_1_subplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_1_subplot3d.ipynb \ No newline at end of file diff --git a/_downloads/whats_new_1_subplot3d.py b/_downloads/whats_new_1_subplot3d.py deleted file mode 120000 index 8c42e5d54ac..00000000000 --- a/_downloads/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/_downloads/whats_new_98_4_fancy.ipynb b/_downloads/whats_new_98_4_fancy.ipynb deleted file mode 120000 index c7fdc7e70e1..00000000000 --- a/_downloads/whats_new_98_4_fancy.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_98_4_fancy.ipynb \ No newline at end of file diff --git a/_downloads/whats_new_98_4_fancy.py b/_downloads/whats_new_98_4_fancy.py deleted file mode 120000 index 3b6cd0145ad..00000000000 --- a/_downloads/whats_new_98_4_fancy.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_98_4_fancy.py \ No newline at end of file diff --git a/_downloads/whats_new_98_4_fill_between.ipynb b/_downloads/whats_new_98_4_fill_between.ipynb deleted file mode 120000 index c5a97d359d8..00000000000 --- a/_downloads/whats_new_98_4_fill_between.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_98_4_fill_between.ipynb \ No newline at end of file diff --git a/_downloads/whats_new_98_4_fill_between.py b/_downloads/whats_new_98_4_fill_between.py deleted file mode 120000 index 54870595283..00000000000 --- a/_downloads/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/_downloads/whats_new_98_4_legend.ipynb b/_downloads/whats_new_98_4_legend.ipynb deleted file mode 120000 index fd0203ff75e..00000000000 --- a/_downloads/whats_new_98_4_legend.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_98_4_legend.ipynb \ No newline at end of file diff --git a/_downloads/whats_new_98_4_legend.py b/_downloads/whats_new_98_4_legend.py deleted file mode 120000 index 5f8a3a2df20..00000000000 --- a/_downloads/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_98_4_legend.py \ No newline at end of file diff --git a/_downloads/whats_new_99_axes_grid.ipynb b/_downloads/whats_new_99_axes_grid.ipynb deleted file mode 120000 index 2b616f7e08a..00000000000 --- a/_downloads/whats_new_99_axes_grid.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_99_axes_grid.ipynb \ No newline at end of file diff --git a/_downloads/whats_new_99_axes_grid.py b/_downloads/whats_new_99_axes_grid.py deleted file mode 120000 index 75a96232ce2..00000000000 --- a/_downloads/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/_downloads/whats_new_99_mplot3d.ipynb b/_downloads/whats_new_99_mplot3d.ipynb deleted file mode 120000 index 50e701b66f0..00000000000 --- a/_downloads/whats_new_99_mplot3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_99_mplot3d.ipynb \ No newline at end of file diff --git a/_downloads/whats_new_99_mplot3d.py b/_downloads/whats_new_99_mplot3d.py deleted file mode 120000 index 48604929288..00000000000 --- a/_downloads/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/_downloads/whats_new_99_spines.ipynb b/_downloads/whats_new_99_spines.ipynb deleted file mode 120000 index df8b6f1ec3b..00000000000 --- a/_downloads/whats_new_99_spines.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_99_spines.ipynb \ No newline at end of file diff --git a/_downloads/whats_new_99_spines.py b/_downloads/whats_new_99_spines.py deleted file mode 120000 index aed94332b12..00000000000 --- a/_downloads/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/whats_new_99_spines.py \ No newline at end of file diff --git a/_downloads/wire3d.ipynb b/_downloads/wire3d.ipynb deleted file mode 120000 index 1dfac613e68..00000000000 --- a/_downloads/wire3d.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wire3d.ipynb \ No newline at end of file diff --git a/_downloads/wire3d.py b/_downloads/wire3d.py deleted file mode 120000 index 5e355870e3a..00000000000 --- a/_downloads/wire3d.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wire3d.py \ No newline at end of file diff --git a/_downloads/wire3d_animation.ipynb b/_downloads/wire3d_animation.ipynb deleted file mode 120000 index f7a520da3d1..00000000000 --- a/_downloads/wire3d_animation.ipynb +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/wire3d_animation.ipynb \ No newline at end of file diff --git a/_downloads/wire3d_animation.py b/_downloads/wire3d_animation.py deleted file mode 120000 index 09baa649305..00000000000 --- a/_downloads/wire3d_animation.py +++ /dev/null @@ -1 +0,0 @@ -../2.2.3/_downloads/wire3d_animation.py \ No newline at end of file diff --git a/_downloads/wire3d_animation_sgskip.ipynb b/_downloads/wire3d_animation_sgskip.ipynb deleted file mode 120000 index 528bfb7cf8f..00000000000 --- a/_downloads/wire3d_animation_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wire3d_animation_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/wire3d_animation_sgskip.py b/_downloads/wire3d_animation_sgskip.py deleted file mode 120000 index 146ebcb3e58..00000000000 --- a/_downloads/wire3d_animation_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wire3d_animation_sgskip.py \ No newline at end of file diff --git a/_downloads/wire3d_zero_stride.ipynb b/_downloads/wire3d_zero_stride.ipynb deleted file mode 120000 index 2ea20eb7240..00000000000 --- a/_downloads/wire3d_zero_stride.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wire3d_zero_stride.ipynb \ No newline at end of file diff --git a/_downloads/wire3d_zero_stride.py b/_downloads/wire3d_zero_stride.py deleted file mode 120000 index 9f158e13402..00000000000 --- a/_downloads/wire3d_zero_stride.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wire3d_zero_stride.py \ No newline at end of file diff --git a/_downloads/wxcursor_demo_sgskip.ipynb b/_downloads/wxcursor_demo_sgskip.ipynb deleted file mode 120000 index e6371802557..00000000000 --- a/_downloads/wxcursor_demo_sgskip.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wxcursor_demo_sgskip.ipynb \ No newline at end of file diff --git a/_downloads/wxcursor_demo_sgskip.py b/_downloads/wxcursor_demo_sgskip.py deleted file mode 120000 index 0b04d890194..00000000000 --- a/_downloads/wxcursor_demo_sgskip.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/wxcursor_demo_sgskip.py \ No newline at end of file diff --git a/_downloads/xcorr_acorr_demo.ipynb b/_downloads/xcorr_acorr_demo.ipynb deleted file mode 120000 index 39642144209..00000000000 --- a/_downloads/xcorr_acorr_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/xcorr_acorr_demo.ipynb \ No newline at end of file diff --git a/_downloads/xcorr_acorr_demo.py b/_downloads/xcorr_acorr_demo.py deleted file mode 120000 index e601b68a07e..00000000000 --- a/_downloads/xcorr_acorr_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/xcorr_acorr_demo.py \ No newline at end of file diff --git a/_downloads/xkcd.ipynb b/_downloads/xkcd.ipynb deleted file mode 120000 index 51a5200817d..00000000000 --- a/_downloads/xkcd.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/xkcd.ipynb \ No newline at end of file diff --git a/_downloads/xkcd.py b/_downloads/xkcd.py deleted file mode 120000 index 962113b6139..00000000000 --- a/_downloads/xkcd.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/xkcd.py \ No newline at end of file diff --git a/_downloads/zoom_inset_axes.ipynb b/_downloads/zoom_inset_axes.ipynb deleted file mode 120000 index 168190ad26d..00000000000 --- a/_downloads/zoom_inset_axes.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/zoom_inset_axes.ipynb \ No newline at end of file diff --git a/_downloads/zoom_inset_axes.py b/_downloads/zoom_inset_axes.py deleted file mode 120000 index e5e7537671e..00000000000 --- a/_downloads/zoom_inset_axes.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/zoom_inset_axes.py \ No newline at end of file diff --git a/_downloads/zoom_window.ipynb b/_downloads/zoom_window.ipynb deleted file mode 120000 index 49c574dcecd..00000000000 --- a/_downloads/zoom_window.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/zoom_window.ipynb \ No newline at end of file diff --git a/_downloads/zoom_window.py b/_downloads/zoom_window.py deleted file mode 120000 index 15f97a2d77d..00000000000 --- a/_downloads/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/zoom_window.py \ No newline at end of file diff --git a/_downloads/zorder_demo.ipynb b/_downloads/zorder_demo.ipynb deleted file mode 120000 index d8419aa590a..00000000000 --- a/_downloads/zorder_demo.ipynb +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/zorder_demo.ipynb \ No newline at end of file diff --git a/_downloads/zorder_demo.py b/_downloads/zorder_demo.py deleted file mode 120000 index 3bcffe1f83f..00000000000 --- a/_downloads/zorder_demo.py +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_downloads/zorder_demo.py \ No newline at end of file diff --git a/_images/1004650.svg b/_images/1004650.svg deleted file mode 120000 index 9ada1fab76c..00000000000 --- a/_images/1004650.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1004650.svg \ No newline at end of file diff --git a/_images/1098480.svg b/_images/1098480.svg deleted file mode 120000 index 727ffcb7fcd..00000000000 --- a/_images/1098480.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1098480.svg \ No newline at end of file diff --git a/_images/11451.svg b/_images/11451.svg deleted file mode 120000 index 8c59b77603d..00000000000 --- a/_images/11451.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/11451.svg \ No newline at end of file diff --git a/_images/1154287.svg b/_images/1154287.svg deleted file mode 120000 index 7cb08eaa182..00000000000 --- a/_images/1154287.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1154287.svg \ No newline at end of file diff --git a/_images/1189358.svg b/_images/1189358.svg deleted file mode 120000 index dafb7cfbb3f..00000000000 --- a/_images/1189358.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1189358.svg \ No newline at end of file diff --git a/_images/1202050.svg b/_images/1202050.svg deleted file mode 120000 index 2904fcd5f05..00000000000 --- a/_images/1202050.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1202050.svg \ No newline at end of file diff --git a/_images/1202077.svg b/_images/1202077.svg deleted file mode 120000 index 2a11778b8d3..00000000000 --- a/_images/1202077.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1202077.svg \ No newline at end of file diff --git a/_images/12287.svg b/_images/12287.svg deleted file mode 120000 index 05de5c543f1..00000000000 --- a/_images/12287.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/12287.svg \ No newline at end of file diff --git a/_images/12400.svg b/_images/12400.svg deleted file mode 120000 index 012b4d3a6de..00000000000 --- a/_images/12400.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/12400.svg \ No newline at end of file diff --git a/_images/1343133.svg b/_images/1343133.svg deleted file mode 120000 index e8255e2b7ea..00000000000 --- a/_images/1343133.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1343133.svg \ No newline at end of file diff --git a/_images/1420605.svg b/_images/1420605.svg deleted file mode 120000 index 65c75690430..00000000000 --- a/_images/1420605.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1420605.svg \ No newline at end of file diff --git a/_images/1482098.svg b/_images/1482098.svg deleted file mode 120000 index 2e606c4eefb..00000000000 --- a/_images/1482098.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1482098.svg \ No newline at end of file diff --git a/_images/1482099.svg b/_images/1482099.svg deleted file mode 120000 index dce7bd2ae51..00000000000 --- a/_images/1482099.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/1482099.svg \ No newline at end of file diff --git a/_images/15423.svg b/_images/15423.svg deleted file mode 120000 index 40c1eca822d..00000000000 --- a/_images/15423.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/15423.svg \ No newline at end of file diff --git a/_images/248351.svg b/_images/248351.svg deleted file mode 120000 index 4290d103215..00000000000 --- a/_images/248351.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/248351.svg \ No newline at end of file diff --git a/_images/2577644.svg b/_images/2577644.svg deleted file mode 120000 index d9a82df8714..00000000000 --- a/_images/2577644.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/2577644.svg \ No newline at end of file diff --git a/_images/2669103.svg b/_images/2669103.svg deleted file mode 120000 index 703fd997517..00000000000 --- a/_images/2669103.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/2669103.svg \ No newline at end of file diff --git a/_images/2893252.svg b/_images/2893252.svg deleted file mode 120000 index 83e3f43916e..00000000000 --- a/_images/2893252.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/2893252.svg \ No newline at end of file diff --git a/_images/2dcollections3d_demo.png b/_images/2dcollections3d_demo.png deleted file mode 120000 index 66a7192e8ff..00000000000 --- a/_images/2dcollections3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/2dcollections3d_demo.png \ No newline at end of file diff --git a/_images/2dcollections3d_demo1.png b/_images/2dcollections3d_demo1.png deleted file mode 120000 index 4a1a628ef4c..00000000000 --- a/_images/2dcollections3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/2dcollections3d_demo1.png \ No newline at end of file diff --git a/_images/3264781.svg b/_images/3264781.svg deleted file mode 120000 index f79452850a9..00000000000 --- a/_images/3264781.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3264781.svg \ No newline at end of file diff --git a/_images/32914.svg b/_images/32914.svg deleted file mode 120000 index 0d9ca1c799e..00000000000 --- a/_images/32914.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/32914.svg \ No newline at end of file diff --git a/_images/3563226.svg b/_images/3563226.svg deleted file mode 120000 index f14e40ef9f4..00000000000 --- a/_images/3563226.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3563226.svg \ No newline at end of file diff --git a/_images/3633833.svg b/_images/3633833.svg deleted file mode 120000 index 2d948950ec8..00000000000 --- a/_images/3633833.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3633833.svg \ No newline at end of file diff --git a/_images/3633844.svg b/_images/3633844.svg deleted file mode 120000 index fd5a15e1a78..00000000000 --- a/_images/3633844.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3633844.svg \ No newline at end of file diff --git a/_images/3695547.svg b/_images/3695547.svg deleted file mode 120000 index 5fdf02ae1a3..00000000000 --- a/_images/3695547.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3695547.svg \ No newline at end of file diff --git a/_images/3714460.svg b/_images/3714460.svg deleted file mode 120000 index afaee1b17a6..00000000000 --- a/_images/3714460.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3714460.svg \ No newline at end of file diff --git a/_images/3898017.svg b/_images/3898017.svg deleted file mode 120000 index 5de736107f1..00000000000 --- a/_images/3898017.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3898017.svg \ No newline at end of file diff --git a/_images/3948793.svg b/_images/3948793.svg deleted file mode 120000 index 25e921f03fc..00000000000 --- a/_images/3948793.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3948793.svg \ No newline at end of file diff --git a/_images/3984190.svg b/_images/3984190.svg deleted file mode 120000 index 55bc742f925..00000000000 --- a/_images/3984190.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/3984190.svg \ No newline at end of file diff --git a/_images/4030140.svg b/_images/4030140.svg deleted file mode 120000 index 80bf66428b8..00000000000 --- a/_images/4030140.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/4030140.svg \ No newline at end of file diff --git a/_images/4268928.svg b/_images/4268928.svg deleted file mode 120000 index 938f33f3260..00000000000 --- a/_images/4268928.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/4268928.svg \ No newline at end of file diff --git a/_images/44579.svg b/_images/44579.svg deleted file mode 120000 index 35fa8b83337..00000000000 --- a/_images/44579.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/44579.svg \ No newline at end of file diff --git a/_images/4475376.svg b/_images/4475376.svg deleted file mode 120000 index dd6ae663524..00000000000 --- a/_images/4475376.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/4475376.svg \ No newline at end of file diff --git a/_images/4638398.svg b/_images/4638398.svg deleted file mode 120000 index 420cc9bac11..00000000000 --- a/_images/4638398.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/4638398.svg \ No newline at end of file diff --git a/_images/4649959.svg b/_images/4649959.svg deleted file mode 120000 index 827e07f427a..00000000000 --- a/_images/4649959.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/4649959.svg \ No newline at end of file diff --git a/_images/4743323.svg b/_images/4743323.svg deleted file mode 120000 index 75e450c61fe..00000000000 --- a/_images/4743323.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/4743323.svg \ No newline at end of file diff --git a/_images/5194481.svg b/_images/5194481.svg deleted file mode 120000 index f9676ff32d6..00000000000 --- a/_images/5194481.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/5194481.svg \ No newline at end of file diff --git a/_images/56926.svg b/_images/56926.svg deleted file mode 120000 index 4150396601a..00000000000 --- a/_images/56926.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/56926.svg \ No newline at end of file diff --git a/_images/570311.svg b/_images/570311.svg deleted file mode 120000 index 01f3c531b4a..00000000000 --- a/_images/570311.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/570311.svg \ No newline at end of file diff --git a/_images/5706396.svg b/_images/5706396.svg deleted file mode 120000 index 06901793e97..00000000000 --- a/_images/5706396.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/5706396.svg \ No newline at end of file diff --git a/_images/573577.svg b/_images/573577.svg deleted file mode 120000 index 35d4b2b164a..00000000000 --- a/_images/573577.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/573577.svg \ No newline at end of file diff --git a/_images/61948.svg b/_images/61948.svg deleted file mode 120000 index 6850f19db40..00000000000 --- a/_images/61948.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/61948.svg \ No newline at end of file diff --git a/_images/CL01.png b/_images/CL01.png deleted file mode 120000 index a2d2b822449..00000000000 --- a/_images/CL01.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/CL01.png \ No newline at end of file diff --git a/_images/CL02.png b/_images/CL02.png deleted file mode 120000 index 3026c6a0610..00000000000 --- a/_images/CL02.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/CL02.png \ No newline at end of file diff --git a/_images/MEP28-1.png b/_images/MEP28-1.png deleted file mode 120000 index db6218efd9d..00000000000 --- a/_images/MEP28-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/MEP28-1.png \ No newline at end of file diff --git a/_images/_enums_api-1.png b/_images/_enums_api-1.png deleted file mode 120000 index 169d3815492..00000000000 --- a/_images/_enums_api-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/_enums_api-1.png \ No newline at end of file diff --git a/_images/_enums_api-2.png b/_images/_enums_api-2.png deleted file mode 120000 index 4746b36a14d..00000000000 --- a/_images/_enums_api-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/_enums_api-2.png \ No newline at end of file diff --git a/_images/accented_text.png b/_images/accented_text.png deleted file mode 120000 index 5c7f8e9d9e0..00000000000 --- a/_images/accented_text.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/accented_text.png \ No newline at end of file diff --git a/_images/adjustText.png b/_images/adjustText.png deleted file mode 120000 index 22ebf1948c0..00000000000 --- a/_images/adjustText.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/adjustText.png \ No newline at end of file diff --git a/_images/advanced_hillshading_00.png b/_images/advanced_hillshading_00.png deleted file mode 120000 index 3c77605806a..00000000000 --- a/_images/advanced_hillshading_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/advanced_hillshading_00.png \ No newline at end of file diff --git a/_images/advanced_hillshading_01.png b/_images/advanced_hillshading_01.png deleted file mode 120000 index 7ebf0ca1f37..00000000000 --- a/_images/advanced_hillshading_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/advanced_hillshading_01.png \ No newline at end of file diff --git a/_images/advanced_hillshading_02.png b/_images/advanced_hillshading_02.png deleted file mode 120000 index fe6e46c1d75..00000000000 --- a/_images/advanced_hillshading_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/advanced_hillshading_02.png \ No newline at end of file diff --git a/_images/agg_buffer.png b/_images/agg_buffer.png deleted file mode 120000 index 22bfe876841..00000000000 --- a/_images/agg_buffer.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/agg_buffer.png \ No newline at end of file diff --git a/_images/agg_buffer_to_array_00.png b/_images/agg_buffer_to_array_00.png deleted file mode 120000 index 2c0cd19e4fa..00000000000 --- a/_images/agg_buffer_to_array_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/agg_buffer_to_array_00.png \ No newline at end of file diff --git a/_images/agg_buffer_to_array_01.png b/_images/agg_buffer_to_array_01.png deleted file mode 120000 index 137a9013539..00000000000 --- a/_images/agg_buffer_to_array_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/agg_buffer_to_array_01.png \ No newline at end of file diff --git a/_images/align_ylabels.png b/_images/align_ylabels.png deleted file mode 120000 index 62cd3bb7517..00000000000 --- a/_images/align_ylabels.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/align_ylabels.png \ No newline at end of file diff --git a/_images/alignment_test.png b/_images/alignment_test.png deleted file mode 120000 index 809d713e4cb..00000000000 --- a/_images/alignment_test.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/alignment_test.png \ No newline at end of file diff --git a/_images/anatomy.png b/_images/anatomy.png deleted file mode 120000 index bd443facdfa..00000000000 --- a/_images/anatomy.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/anatomy.png \ No newline at end of file diff --git a/_images/anatomy1.png b/_images/anatomy1.png deleted file mode 120000 index cabd41e1965..00000000000 --- a/_images/anatomy1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/anatomy1.png \ No newline at end of file diff --git a/_images/anchored_artists.png b/_images/anchored_artists.png deleted file mode 120000 index 1b725b39854..00000000000 --- a/_images/anchored_artists.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/anchored_artists.png \ No newline at end of file diff --git a/_images/anchored_box01.png b/_images/anchored_box01.png deleted file mode 120000 index 9d752b6d467..00000000000 --- a/_images/anchored_box01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/anchored_box01.png \ No newline at end of file diff --git a/_images/anchored_box02.png b/_images/anchored_box02.png deleted file mode 120000 index e7c4211cf22..00000000000 --- a/_images/anchored_box02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/anchored_box02.png \ No newline at end of file diff --git a/_images/anchored_box03.png b/_images/anchored_box03.png deleted file mode 120000 index e7c8c2eb4a4..00000000000 --- a/_images/anchored_box03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/anchored_box03.png \ No newline at end of file diff --git a/_images/anchored_box04.png b/_images/anchored_box04.png deleted file mode 120000 index f2447dffed6..00000000000 --- a/_images/anchored_box04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/anchored_box04.png \ No newline at end of file diff --git a/_images/animation_demo.png b/_images/animation_demo.png deleted file mode 120000 index 51c2d66aa1b..00000000000 --- a/_images/animation_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/animation_demo.png \ No newline at end of file diff --git a/_images/animatplot.png b/_images/animatplot.png deleted file mode 120000 index 4d8fc0e5131..00000000000 --- a/_images/animatplot.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/animatplot.png \ No newline at end of file diff --git a/_images/annotate_explain.png b/_images/annotate_explain.png deleted file mode 120000 index 57cfa613a36..00000000000 --- a/_images/annotate_explain.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_explain.png \ No newline at end of file diff --git a/_images/annotate_simple01.png b/_images/annotate_simple01.png deleted file mode 120000 index 5fe6a93612f..00000000000 --- a/_images/annotate_simple01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_simple01.png \ No newline at end of file diff --git a/_images/annotate_simple02.png b/_images/annotate_simple02.png deleted file mode 120000 index 3fb9b6e8c64..00000000000 --- a/_images/annotate_simple02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_simple02.png \ No newline at end of file diff --git a/_images/annotate_simple03.png b/_images/annotate_simple03.png deleted file mode 120000 index 7cec67ad495..00000000000 --- a/_images/annotate_simple03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_simple03.png \ No newline at end of file diff --git a/_images/annotate_simple04.png b/_images/annotate_simple04.png deleted file mode 120000 index 012e32e4df2..00000000000 --- a/_images/annotate_simple04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_simple04.png \ No newline at end of file diff --git a/_images/annotate_simple_coord01.png b/_images/annotate_simple_coord01.png deleted file mode 120000 index 7028db606b1..00000000000 --- a/_images/annotate_simple_coord01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_simple_coord01.png \ No newline at end of file diff --git a/_images/annotate_simple_coord02.png b/_images/annotate_simple_coord02.png deleted file mode 120000 index 41115e4091c..00000000000 --- a/_images/annotate_simple_coord02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_simple_coord02.png \ No newline at end of file diff --git a/_images/annotate_simple_coord03.png b/_images/annotate_simple_coord03.png deleted file mode 120000 index 07f50a450bb..00000000000 --- a/_images/annotate_simple_coord03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_simple_coord03.png \ No newline at end of file diff --git a/_images/annotate_text_arrow.png b/_images/annotate_text_arrow.png deleted file mode 120000 index 3850af8374b..00000000000 --- a/_images/annotate_text_arrow.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_text_arrow.png \ No newline at end of file diff --git a/_images/annotate_transform.png b/_images/annotate_transform.png deleted file mode 120000 index 5e939a5ccb1..00000000000 --- a/_images/annotate_transform.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_transform.png \ No newline at end of file diff --git a/_images/annotate_with_units.png b/_images/annotate_with_units.png deleted file mode 120000 index 313621d2009..00000000000 --- a/_images/annotate_with_units.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotate_with_units.png \ No newline at end of file diff --git a/_images/annotation_basic.png b/_images/annotation_basic.png deleted file mode 120000 index e26c90f5ca3..00000000000 --- a/_images/annotation_basic.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_basic.png \ No newline at end of file diff --git a/_images/annotation_demo2_00.png b/_images/annotation_demo2_00.png deleted file mode 120000 index 19b99ea7216..00000000000 --- a/_images/annotation_demo2_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_demo2_00.png \ No newline at end of file diff --git a/_images/annotation_demo2_001.png b/_images/annotation_demo2_001.png deleted file mode 120000 index dd9fe952208..00000000000 --- a/_images/annotation_demo2_001.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.1/_images/annotation_demo2_001.png \ No newline at end of file diff --git a/_images/annotation_demo2_01.png b/_images/annotation_demo2_01.png deleted file mode 120000 index 7b1f9dd5810..00000000000 --- a/_images/annotation_demo2_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_demo2_01.png \ No newline at end of file diff --git a/_images/annotation_demo2_011.png b/_images/annotation_demo2_011.png deleted file mode 120000 index ea53e09bbca..00000000000 --- a/_images/annotation_demo2_011.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.1/_images/annotation_demo2_011.png \ No newline at end of file diff --git a/_images/annotation_demo3.png b/_images/annotation_demo3.png deleted file mode 120000 index 68682096c69..00000000000 --- a/_images/annotation_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_demo3.png \ No newline at end of file diff --git a/_images/annotation_demo_00.png b/_images/annotation_demo_00.png deleted file mode 120000 index 08cb787f308..00000000000 --- a/_images/annotation_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_demo_00.png \ No newline at end of file diff --git a/_images/annotation_demo_01.png b/_images/annotation_demo_01.png deleted file mode 120000 index 746a9577761..00000000000 --- a/_images/annotation_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_demo_01.png \ No newline at end of file diff --git a/_images/annotation_demo_02.png b/_images/annotation_demo_02.png deleted file mode 120000 index 0c5615219a1..00000000000 --- a/_images/annotation_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_demo_02.png \ No newline at end of file diff --git a/_images/annotation_polar.png b/_images/annotation_polar.png deleted file mode 120000 index 062d99f9175..00000000000 --- a/_images/annotation_polar.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/annotation_polar.png \ No newline at end of file diff --git a/_images/anscombe.png b/_images/anscombe.png deleted file mode 120000 index 86bdf61e2ba..00000000000 --- a/_images/anscombe.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/anscombe.png \ No newline at end of file diff --git a/_images/api_changes-1.png b/_images/api_changes-1.png deleted file mode 120000 index a72a62e25de..00000000000 --- a/_images/api_changes-1.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/api_changes-1.png \ No newline at end of file diff --git a/_images/api_changes_3-0-0-1.png b/_images/api_changes_3-0-0-1.png deleted file mode 120000 index 10b3d3806d7..00000000000 --- a/_images/api_changes_3-0-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/api_changes_3-0-0-1.png \ No newline at end of file diff --git a/_images/api_changes_3-2-0-1.png b/_images/api_changes_3-2-0-1.png deleted file mode 120000 index aa739395e0e..00000000000 --- a/_images/api_changes_3-2-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/api_changes_3-2-0-1.png \ No newline at end of file diff --git a/_images/arctest.png b/_images/arctest.png deleted file mode 120000 index 0ff37b96a8d..00000000000 --- a/_images/arctest.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/arctest.png \ No newline at end of file diff --git a/_images/arrow_demo.png b/_images/arrow_demo.png deleted file mode 120000 index d782dbf7d1f..00000000000 --- a/_images/arrow_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/arrow_demo.png \ No newline at end of file diff --git a/_images/arrow_demo1.png b/_images/arrow_demo1.png deleted file mode 120000 index 28c84f3c508..00000000000 --- a/_images/arrow_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/arrow_demo1.png \ No newline at end of file diff --git a/_images/arrow_demo2.png b/_images/arrow_demo2.png deleted file mode 120000 index 6b63ecb55fa..00000000000 --- a/_images/arrow_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/arrow_demo2.png \ No newline at end of file diff --git a/_images/arrow_simple_demo.png b/_images/arrow_simple_demo.png deleted file mode 120000 index c27e30f85a2..00000000000 --- a/_images/arrow_simple_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/arrow_simple_demo.png \ No newline at end of file diff --git a/_images/artist_reference.png b/_images/artist_reference.png deleted file mode 120000 index a2ee8b83fbe..00000000000 --- a/_images/artist_reference.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/artist_reference.png \ No newline at end of file diff --git a/_images/artist_tests.png b/_images/artist_tests.png deleted file mode 120000 index 5e354f9c3ab..00000000000 --- a/_images/artist_tests.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/artist_tests.png \ No newline at end of file diff --git a/_images/aspect_loglog.png b/_images/aspect_loglog.png deleted file mode 120000 index 890e92c1017..00000000000 --- a/_images/aspect_loglog.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/aspect_loglog.png \ No newline at end of file diff --git a/_images/auto_subplots_adjust.png b/_images/auto_subplots_adjust.png deleted file mode 120000 index 1cf6334f01e..00000000000 --- a/_images/auto_subplots_adjust.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/auto_subplots_adjust.png \ No newline at end of file diff --git a/_images/autowrap_demo.png b/_images/autowrap_demo.png deleted file mode 120000 index 14c6a6fb745..00000000000 --- a/_images/autowrap_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/autowrap_demo.png \ No newline at end of file diff --git a/_images/axes_demo.png b/_images/axes_demo.png deleted file mode 120000 index 8eeeabd4419..00000000000 --- a/_images/axes_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axes_demo.png \ No newline at end of file diff --git a/_images/axes_props.png b/_images/axes_props.png deleted file mode 120000 index 374455dc650..00000000000 --- a/_images/axes_props.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axes_props.png \ No newline at end of file diff --git a/_images/axes_zoom_effect.png b/_images/axes_zoom_effect.png deleted file mode 120000 index 98fc57dfcd8..00000000000 --- a/_images/axes_zoom_effect.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axes_zoom_effect.png \ No newline at end of file diff --git a/_images/axes_zoom_effect1.png b/_images/axes_zoom_effect1.png deleted file mode 120000 index 4713acda994..00000000000 --- a/_images/axes_zoom_effect1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axes_zoom_effect1.png \ No newline at end of file diff --git a/_images/axhspan_demo.png b/_images/axhspan_demo.png deleted file mode 120000 index 308e1d16e91..00000000000 --- a/_images/axhspan_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axhspan_demo.png \ No newline at end of file diff --git a/_images/axhspan_demo1.png b/_images/axhspan_demo1.png deleted file mode 120000 index 553a753a468..00000000000 --- a/_images/axhspan_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axhspan_demo1.png \ No newline at end of file diff --git a/_images/axhspan_demo2.png b/_images/axhspan_demo2.png deleted file mode 120000 index 62824a3aadc..00000000000 --- a/_images/axhspan_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axhspan_demo2.png \ No newline at end of file diff --git a/_images/axis_direction_demo_step01.png b/_images/axis_direction_demo_step01.png deleted file mode 120000 index dbc4651f0c5..00000000000 --- a/_images/axis_direction_demo_step01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axis_direction_demo_step01.png \ No newline at end of file diff --git a/_images/axis_direction_demo_step02.png b/_images/axis_direction_demo_step02.png deleted file mode 120000 index 552acb936d1..00000000000 --- a/_images/axis_direction_demo_step02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axis_direction_demo_step02.png \ No newline at end of file diff --git a/_images/axis_direction_demo_step03.png b/_images/axis_direction_demo_step03.png deleted file mode 120000 index 35d4823d667..00000000000 --- a/_images/axis_direction_demo_step03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axis_direction_demo_step03.png \ No newline at end of file diff --git a/_images/axis_direction_demo_step04.png b/_images/axis_direction_demo_step04.png deleted file mode 120000 index eeefb38b33e..00000000000 --- a/_images/axis_direction_demo_step04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axis_direction_demo_step04.png \ No newline at end of file diff --git a/_images/axis_equal_demo.png b/_images/axis_equal_demo.png deleted file mode 120000 index a569484b18f..00000000000 --- a/_images/axis_equal_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/axis_equal_demo.png \ No newline at end of file diff --git a/_images/bachelors_degrees_by_gender.png b/_images/bachelors_degrees_by_gender.png deleted file mode 120000 index 55f2e7c8c46..00000000000 --- a/_images/bachelors_degrees_by_gender.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bachelors_degrees_by_gender.png \ No newline at end of file diff --git a/_images/back.png b/_images/back.png deleted file mode 120000 index b3692883c6f..00000000000 --- a/_images/back.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/back.png \ No newline at end of file diff --git a/_images/back_large.png b/_images/back_large.png deleted file mode 120000 index 2f23fe017d0..00000000000 --- a/_images/back_large.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/back_large.png \ No newline at end of file diff --git a/_images/bar_demo2.png b/_images/bar_demo2.png deleted file mode 120000 index 82504dcce64..00000000000 --- a/_images/bar_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bar_demo2.png \ No newline at end of file diff --git a/_images/bar_stacked.png b/_images/bar_stacked.png deleted file mode 120000 index b6eab2799f1..00000000000 --- a/_images/bar_stacked.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bar_stacked.png \ No newline at end of file diff --git a/_images/bar_stacked1.png b/_images/bar_stacked1.png deleted file mode 120000 index 76386d61d51..00000000000 --- a/_images/bar_stacked1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bar_stacked1.png \ No newline at end of file diff --git a/_images/bar_stacked2.png b/_images/bar_stacked2.png deleted file mode 120000 index 580c14471f5..00000000000 --- a/_images/bar_stacked2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bar_stacked2.png \ No newline at end of file diff --git a/_images/bar_unit_demo.png b/_images/bar_unit_demo.png deleted file mode 120000 index aeeb08274b5..00000000000 --- a/_images/bar_unit_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bar_unit_demo.png \ No newline at end of file diff --git a/_images/barb_demo_00.png b/_images/barb_demo_00.png deleted file mode 120000 index 30ffc5dfc28..00000000000 --- a/_images/barb_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barb_demo_00.png \ No newline at end of file diff --git a/_images/barb_demo_001.png b/_images/barb_demo_001.png deleted file mode 120000 index cc25209d605..00000000000 --- a/_images/barb_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barb_demo_001.png \ No newline at end of file diff --git a/_images/barb_demo_002.png b/_images/barb_demo_002.png deleted file mode 120000 index 07b358a0ae0..00000000000 --- a/_images/barb_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barb_demo_002.png \ No newline at end of file diff --git a/_images/barb_demo_01.png b/_images/barb_demo_01.png deleted file mode 120000 index c4d25498d68..00000000000 --- a/_images/barb_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barb_demo_01.png \ No newline at end of file diff --git a/_images/barb_demo_011.png b/_images/barb_demo_011.png deleted file mode 120000 index 61fee11c7c9..00000000000 --- a/_images/barb_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barb_demo_011.png \ No newline at end of file diff --git a/_images/barb_demo_012.png b/_images/barb_demo_012.png deleted file mode 120000 index 6952794885a..00000000000 --- a/_images/barb_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barb_demo_012.png \ No newline at end of file diff --git a/_images/barchart_demo.png b/_images/barchart_demo.png deleted file mode 120000 index 30c87ca532b..00000000000 --- a/_images/barchart_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barchart_demo.png \ No newline at end of file diff --git a/_images/barchart_demo1.png b/_images/barchart_demo1.png deleted file mode 120000 index baeeef30c13..00000000000 --- a/_images/barchart_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barchart_demo1.png \ No newline at end of file diff --git a/_images/barchart_demo2.png b/_images/barchart_demo2.png deleted file mode 120000 index 438f5dfa1c3..00000000000 --- a/_images/barchart_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barchart_demo2.png \ No newline at end of file diff --git a/_images/barchart_demo3.png b/_images/barchart_demo3.png deleted file mode 120000 index 696feb5db65..00000000000 --- a/_images/barchart_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barchart_demo3.png \ No newline at end of file diff --git a/_images/barcode_demo.png b/_images/barcode_demo.png deleted file mode 120000 index 699b4caaba9..00000000000 --- a/_images/barcode_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barcode_demo.png \ No newline at end of file diff --git a/_images/barh_demo.png b/_images/barh_demo.png deleted file mode 120000 index d9eeaba0ac6..00000000000 --- a/_images/barh_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/barh_demo.png \ No newline at end of file diff --git a/_images/bars3d_demo.png b/_images/bars3d_demo.png deleted file mode 120000 index 0b8006a0500..00000000000 --- a/_images/bars3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bars3d_demo.png \ No newline at end of file diff --git a/_images/bars3d_demo1.png b/_images/bars3d_demo1.png deleted file mode 120000 index 9e4e8c1d8c2..00000000000 --- a/_images/bars3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bars3d_demo1.png \ No newline at end of file diff --git a/_images/basemap_contour1.png b/_images/basemap_contour1.png deleted file mode 120000 index 5d0745d0761..00000000000 --- a/_images/basemap_contour1.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/basemap_contour1.png \ No newline at end of file diff --git a/_images/bbox_intersect.png b/_images/bbox_intersect.png deleted file mode 120000 index 3beed37c141..00000000000 --- a/_images/bbox_intersect.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bbox_intersect.png \ No newline at end of file diff --git a/_images/behavior-1.png b/_images/behavior-1.png deleted file mode 120000 index c828ecfadd4..00000000000 --- a/_images/behavior-1.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/behavior-1.png \ No newline at end of file diff --git a/_images/blume_table_example.png b/_images/blume_table_example.png deleted file mode 120000 index 4f5ae54bb25..00000000000 --- a/_images/blume_table_example.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/blume_table_example.png \ No newline at end of file diff --git a/_images/boxplot_color_demo.png b/_images/boxplot_color_demo.png deleted file mode 120000 index 3cdf0c067c6..00000000000 --- a/_images/boxplot_color_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_color_demo.png \ No newline at end of file diff --git a/_images/boxplot_demo2.png b/_images/boxplot_demo2.png deleted file mode 120000 index 79117e9f1da..00000000000 --- a/_images/boxplot_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo2.png \ No newline at end of file diff --git a/_images/boxplot_demo3.png b/_images/boxplot_demo3.png deleted file mode 120000 index cf94560796b..00000000000 --- a/_images/boxplot_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo3.png \ No newline at end of file diff --git a/_images/boxplot_demo31.png b/_images/boxplot_demo31.png deleted file mode 120000 index 4e7bfdcac03..00000000000 --- a/_images/boxplot_demo31.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo31.png \ No newline at end of file diff --git a/_images/boxplot_demo_00.png b/_images/boxplot_demo_00.png deleted file mode 120000 index 6da201b6fe8..00000000000 --- a/_images/boxplot_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_00.png \ No newline at end of file diff --git a/_images/boxplot_demo_00_00.png b/_images/boxplot_demo_00_00.png deleted file mode 120000 index 307ca69ad30..00000000000 --- a/_images/boxplot_demo_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_00_00.png \ No newline at end of file diff --git a/_images/boxplot_demo_00_001.png b/_images/boxplot_demo_00_001.png deleted file mode 120000 index 65e05393a63..00000000000 --- a/_images/boxplot_demo_00_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_00_001.png \ No newline at end of file diff --git a/_images/boxplot_demo_00_002.png b/_images/boxplot_demo_00_002.png deleted file mode 120000 index 6d919540145..00000000000 --- a/_images/boxplot_demo_00_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_00_002.png \ No newline at end of file diff --git a/_images/boxplot_demo_01.png b/_images/boxplot_demo_01.png deleted file mode 120000 index cd07c1348e1..00000000000 --- a/_images/boxplot_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_01.png \ No newline at end of file diff --git a/_images/boxplot_demo_01_00.png b/_images/boxplot_demo_01_00.png deleted file mode 120000 index 373d9695646..00000000000 --- a/_images/boxplot_demo_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_01_00.png \ No newline at end of file diff --git a/_images/boxplot_demo_01_001.png b/_images/boxplot_demo_01_001.png deleted file mode 120000 index 0fe72263c6c..00000000000 --- a/_images/boxplot_demo_01_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_01_001.png \ No newline at end of file diff --git a/_images/boxplot_demo_01_002.png b/_images/boxplot_demo_01_002.png deleted file mode 120000 index cfd72791ae0..00000000000 --- a/_images/boxplot_demo_01_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_01_002.png \ No newline at end of file diff --git a/_images/boxplot_demo_02.png b/_images/boxplot_demo_02.png deleted file mode 120000 index 39f1d13a504..00000000000 --- a/_images/boxplot_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_02.png \ No newline at end of file diff --git a/_images/boxplot_demo_03.png b/_images/boxplot_demo_03.png deleted file mode 120000 index 8b76f3cab6c..00000000000 --- a/_images/boxplot_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_03.png \ No newline at end of file diff --git a/_images/boxplot_demo_04.png b/_images/boxplot_demo_04.png deleted file mode 120000 index bce807b69e9..00000000000 --- a/_images/boxplot_demo_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_04.png \ No newline at end of file diff --git a/_images/boxplot_demo_05.png b/_images/boxplot_demo_05.png deleted file mode 120000 index 667a73c2a04..00000000000 --- a/_images/boxplot_demo_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_05.png \ No newline at end of file diff --git a/_images/boxplot_demo_06.png b/_images/boxplot_demo_06.png deleted file mode 120000 index 432ff9f36e8..00000000000 --- a/_images/boxplot_demo_06.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_demo_06.png \ No newline at end of file diff --git a/_images/boxplot_explanation.png b/_images/boxplot_explanation.png deleted file mode 120000 index d498b01432c..00000000000 --- a/_images/boxplot_explanation.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/boxplot_explanation.png \ No newline at end of file diff --git a/_images/boxplot_vs_violin_demo.png b/_images/boxplot_vs_violin_demo.png deleted file mode 120000 index 3ba2ce3aab7..00000000000 --- a/_images/boxplot_vs_violin_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/boxplot_vs_violin_demo.png \ No newline at end of file diff --git a/_images/branch_dropdown.png b/_images/branch_dropdown.png deleted file mode 120000 index f4a9ce12c10..00000000000 --- a/_images/branch_dropdown.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/branch_dropdown.png \ No newline at end of file diff --git a/_images/break.png b/_images/break.png deleted file mode 120000 index 8315f05d7a4..00000000000 --- a/_images/break.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/break.png \ No newline at end of file diff --git a/_images/broken_axis.png b/_images/broken_axis.png deleted file mode 120000 index 8b1454e9a16..00000000000 --- a/_images/broken_axis.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/broken_axis.png \ No newline at end of file diff --git a/_images/broken_barh.png b/_images/broken_barh.png deleted file mode 120000 index ae4587d371b..00000000000 --- a/_images/broken_barh.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/broken_barh.png \ No newline at end of file diff --git a/_images/broken_barh1.png b/_images/broken_barh1.png deleted file mode 120000 index 7d6cab62e41..00000000000 --- a/_images/broken_barh1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/broken_barh1.png \ No newline at end of file diff --git a/_images/broken_barh2.png b/_images/broken_barh2.png deleted file mode 120000 index 9d6aafb3a4f..00000000000 --- a/_images/broken_barh2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/broken_barh2.png \ No newline at end of file diff --git a/_images/brokenaxes.png b/_images/brokenaxes.png deleted file mode 120000 index 6336a8932e5..00000000000 --- a/_images/brokenaxes.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/brokenaxes.png \ No newline at end of file diff --git a/_images/bxp_00_00.png b/_images/bxp_00_00.png deleted file mode 120000 index c91a07a19ff..00000000000 --- a/_images/bxp_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/bxp_00_00.png \ No newline at end of file diff --git a/_images/bxp_01_00.png b/_images/bxp_01_00.png deleted file mode 120000 index 1516bf4de87..00000000000 --- a/_images/bxp_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/bxp_01_00.png \ No newline at end of file diff --git a/_images/bxp_demo_00_00.png b/_images/bxp_demo_00_00.png deleted file mode 120000 index 62ca2dfa65e..00000000000 --- a/_images/bxp_demo_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bxp_demo_00_00.png \ No newline at end of file diff --git a/_images/bxp_demo_00_001.png b/_images/bxp_demo_00_001.png deleted file mode 120000 index bbd94c87083..00000000000 --- a/_images/bxp_demo_00_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bxp_demo_00_001.png \ No newline at end of file diff --git a/_images/bxp_demo_01_00.png b/_images/bxp_demo_01_00.png deleted file mode 120000 index 60ba0665ff4..00000000000 --- a/_images/bxp_demo_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bxp_demo_01_00.png \ No newline at end of file diff --git a/_images/bxp_demo_01_001.png b/_images/bxp_demo_01_001.png deleted file mode 120000 index 8c8776020db..00000000000 --- a/_images/bxp_demo_01_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/bxp_demo_01_001.png \ No newline at end of file diff --git a/_images/cartopy_hurricane_katrina_01_00.png b/_images/cartopy_hurricane_katrina_01_00.png deleted file mode 120000 index a9f7148d740..00000000000 --- a/_images/cartopy_hurricane_katrina_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/cartopy_hurricane_katrina_01_00.png \ No newline at end of file diff --git a/_images/centered_ticklabels.png b/_images/centered_ticklabels.png deleted file mode 120000 index 711177ad242..00000000000 --- a/_images/centered_ticklabels.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/centered_ticklabels.png \ No newline at end of file diff --git a/_images/cm_fontset.png b/_images/cm_fontset.png deleted file mode 120000 index f6e0f018976..00000000000 --- a/_images/cm_fontset.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/cm_fontset.png \ No newline at end of file diff --git a/_images/cohere_demo.png b/_images/cohere_demo.png deleted file mode 120000 index 5b33b4e8575..00000000000 --- a/_images/cohere_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/cohere_demo.png \ No newline at end of file diff --git a/_images/cohere_demo1.png b/_images/cohere_demo1.png deleted file mode 120000 index 9b9536288c9..00000000000 --- a/_images/cohere_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/cohere_demo1.png \ No newline at end of file diff --git a/_images/cohere_demo2.png b/_images/cohere_demo2.png deleted file mode 120000 index c3edc89889c..00000000000 --- a/_images/cohere_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/cohere_demo2.png \ No newline at end of file diff --git a/_images/collections_demo.png b/_images/collections_demo.png deleted file mode 120000 index 26848ce74d5..00000000000 --- a/_images/collections_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/collections_demo.png \ No newline at end of file diff --git a/_images/color_by_yvalue.png b/_images/color_by_yvalue.png deleted file mode 120000 index a6ec3ba4796..00000000000 --- a/_images/color_by_yvalue.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/color_by_yvalue.png \ No newline at end of file diff --git a/_images/color_cycle_default.png b/_images/color_cycle_default.png deleted file mode 120000 index 1166d6f0137..00000000000 --- a/_images/color_cycle_default.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/color_cycle_default.png \ No newline at end of file diff --git a/_images/color_cycle_demo.png b/_images/color_cycle_demo.png deleted file mode 120000 index b51bac84fda..00000000000 --- a/_images/color_cycle_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/color_cycle_demo.png \ No newline at end of file diff --git a/_images/color_cycle_demo1.png b/_images/color_cycle_demo1.png deleted file mode 120000 index bd812d0101b..00000000000 --- a/_images/color_cycle_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/color_cycle_demo1.png \ No newline at end of file diff --git a/_images/color_demo.png b/_images/color_demo.png deleted file mode 120000 index 4b45c70f19b..00000000000 --- a/_images/color_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/color_demo.png \ No newline at end of file diff --git a/_images/color_zorder_A.png b/_images/color_zorder_A.png deleted file mode 120000 index 3fc36cf5554..00000000000 --- a/_images/color_zorder_A.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/color_zorder_A.png \ No newline at end of file diff --git a/_images/color_zorder_B.png b/_images/color_zorder_B.png deleted file mode 120000 index 02205b554ba..00000000000 --- a/_images/color_zorder_B.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/color_zorder_B.png \ No newline at end of file diff --git a/_images/colorbar_basics.png b/_images/colorbar_basics.png deleted file mode 120000 index 99dc665f6fa..00000000000 --- a/_images/colorbar_basics.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colorbar_basics.png \ No newline at end of file diff --git a/_images/colorbar_only.png b/_images/colorbar_only.png deleted file mode 120000 index 40ebe84ff2b..00000000000 --- a/_images/colorbar_only.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colorbar_only.png \ No newline at end of file diff --git a/_images/colorbar_tick_labelling_demo_00.png b/_images/colorbar_tick_labelling_demo_00.png deleted file mode 120000 index 8338cbf3436..00000000000 --- a/_images/colorbar_tick_labelling_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colorbar_tick_labelling_demo_00.png \ No newline at end of file diff --git a/_images/colorbar_tick_labelling_demo_01.png b/_images/colorbar_tick_labelling_demo_01.png deleted file mode 120000 index 7eb02eb3e11..00000000000 --- a/_images/colorbar_tick_labelling_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colorbar_tick_labelling_demo_01.png \ No newline at end of file diff --git a/_images/colormap_normalizations_bounds.png b/_images/colormap_normalizations_bounds.png deleted file mode 120000 index 4e55b10057c..00000000000 --- a/_images/colormap_normalizations_bounds.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormap_normalizations_bounds.png \ No newline at end of file diff --git a/_images/colormap_normalizations_custom.png b/_images/colormap_normalizations_custom.png deleted file mode 120000 index 7cf2df7b066..00000000000 --- a/_images/colormap_normalizations_custom.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormap_normalizations_custom.png \ No newline at end of file diff --git a/_images/colormap_normalizations_lognorm.png b/_images/colormap_normalizations_lognorm.png deleted file mode 120000 index 9c83c3c19fd..00000000000 --- a/_images/colormap_normalizations_lognorm.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormap_normalizations_lognorm.png \ No newline at end of file diff --git a/_images/colormap_normalizations_power.png b/_images/colormap_normalizations_power.png deleted file mode 120000 index a3dec913339..00000000000 --- a/_images/colormap_normalizations_power.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormap_normalizations_power.png \ No newline at end of file diff --git a/_images/colormap_normalizations_symlognorm.png b/_images/colormap_normalizations_symlognorm.png deleted file mode 120000 index d304f436519..00000000000 --- a/_images/colormap_normalizations_symlognorm.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormap_normalizations_symlognorm.png \ No newline at end of file diff --git a/_images/colormaps_reference_00.png b/_images/colormaps_reference_00.png deleted file mode 120000 index 0446e6495f7..00000000000 --- a/_images/colormaps_reference_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormaps_reference_00.png \ No newline at end of file diff --git a/_images/colormaps_reference_01.png b/_images/colormaps_reference_01.png deleted file mode 120000 index fb3d2c190a5..00000000000 --- a/_images/colormaps_reference_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormaps_reference_01.png \ No newline at end of file diff --git a/_images/colormaps_reference_02.png b/_images/colormaps_reference_02.png deleted file mode 120000 index 48f10c812a1..00000000000 --- a/_images/colormaps_reference_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormaps_reference_02.png \ No newline at end of file diff --git a/_images/colormaps_reference_03.png b/_images/colormaps_reference_03.png deleted file mode 120000 index 3e901b570d0..00000000000 --- a/_images/colormaps_reference_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormaps_reference_03.png \ No newline at end of file diff --git a/_images/colormaps_reference_04.png b/_images/colormaps_reference_04.png deleted file mode 120000 index 736a25dc94e..00000000000 --- a/_images/colormaps_reference_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormaps_reference_04.png \ No newline at end of file diff --git a/_images/colormaps_reference_05.png b/_images/colormaps_reference_05.png deleted file mode 120000 index 2e87844512b..00000000000 --- a/_images/colormaps_reference_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colormaps_reference_05.png \ No newline at end of file diff --git a/_images/colors-1_00.png b/_images/colors-1_00.png deleted file mode 120000 index 16415612b4b..00000000000 --- a/_images/colors-1_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colors-1_00.png \ No newline at end of file diff --git a/_images/colors-1_01.png b/_images/colors-1_01.png deleted file mode 120000 index 1e65d6b0ccb..00000000000 --- a/_images/colors-1_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colors-1_01.png \ No newline at end of file diff --git a/_images/colors-2.png b/_images/colors-2.png deleted file mode 120000 index 2a4b0e9a096..00000000000 --- a/_images/colors-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/colors-2.png \ No newline at end of file diff --git a/_images/compound_path.png b/_images/compound_path.png deleted file mode 120000 index 728eda9553b..00000000000 --- a/_images/compound_path.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/compound_path.png \ No newline at end of file diff --git a/_images/compound_path_demo.png b/_images/compound_path_demo.png deleted file mode 120000 index 8bae8312c81..00000000000 --- a/_images/compound_path_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/compound_path_demo.png \ No newline at end of file diff --git a/_images/connect_simple01.png b/_images/connect_simple01.png deleted file mode 120000 index 67a3d342c83..00000000000 --- a/_images/connect_simple01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/connect_simple01.png \ No newline at end of file diff --git a/_images/connectionstyle_demo.png b/_images/connectionstyle_demo.png deleted file mode 120000 index 30533e846c7..00000000000 --- a/_images/connectionstyle_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/connectionstyle_demo.png \ No newline at end of file diff --git a/_images/constrained_layout_1b.png b/_images/constrained_layout_1b.png deleted file mode 120000 index 1c9044d11b1..00000000000 --- a/_images/constrained_layout_1b.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/constrained_layout_1b.png \ No newline at end of file diff --git a/_images/constrained_layout_2b.png b/_images/constrained_layout_2b.png deleted file mode 120000 index 9212bccdbd1..00000000000 --- a/_images/constrained_layout_2b.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/constrained_layout_2b.png \ No newline at end of file diff --git a/_images/contour3d_demo.png b/_images/contour3d_demo.png deleted file mode 120000 index 510fcd91a2b..00000000000 --- a/_images/contour3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour3d_demo.png \ No newline at end of file diff --git a/_images/contour3d_demo1.png b/_images/contour3d_demo1.png deleted file mode 120000 index 2a73376648c..00000000000 --- a/_images/contour3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour3d_demo1.png \ No newline at end of file diff --git a/_images/contour3d_demo2.png b/_images/contour3d_demo2.png deleted file mode 120000 index bfe4e992fca..00000000000 --- a/_images/contour3d_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour3d_demo2.png \ No newline at end of file diff --git a/_images/contour3d_demo21.png b/_images/contour3d_demo21.png deleted file mode 120000 index 380b6cfb94a..00000000000 --- a/_images/contour3d_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour3d_demo21.png \ No newline at end of file diff --git a/_images/contour3d_demo3.png b/_images/contour3d_demo3.png deleted file mode 120000 index 9a3781a4119..00000000000 --- a/_images/contour3d_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour3d_demo3.png \ No newline at end of file diff --git a/_images/contour3d_demo31.png b/_images/contour3d_demo31.png deleted file mode 120000 index f77d1012a15..00000000000 --- a/_images/contour3d_demo31.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour3d_demo31.png \ No newline at end of file diff --git a/_images/contour_corner_mask.png b/_images/contour_corner_mask.png deleted file mode 120000 index f263d3579a0..00000000000 --- a/_images/contour_corner_mask.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_corner_mask.png \ No newline at end of file diff --git a/_images/contour_corner_mask1.png b/_images/contour_corner_mask1.png deleted file mode 120000 index 08eca86edda..00000000000 --- a/_images/contour_corner_mask1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_corner_mask1.png \ No newline at end of file diff --git a/_images/contour_corner_mask2.png b/_images/contour_corner_mask2.png deleted file mode 120000 index 093290c3553..00000000000 --- a/_images/contour_corner_mask2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_corner_mask2.png \ No newline at end of file diff --git a/_images/contour_corner_mask3.png b/_images/contour_corner_mask3.png deleted file mode 120000 index 39e16457be4..00000000000 --- a/_images/contour_corner_mask3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_corner_mask3.png \ No newline at end of file diff --git a/_images/contour_demo_00.png b/_images/contour_demo_00.png deleted file mode 120000 index 644ad165689..00000000000 --- a/_images/contour_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_00.png \ No newline at end of file diff --git a/_images/contour_demo_001.png b/_images/contour_demo_001.png deleted file mode 120000 index 2e0a779b67f..00000000000 --- a/_images/contour_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_001.png \ No newline at end of file diff --git a/_images/contour_demo_002.png b/_images/contour_demo_002.png deleted file mode 120000 index 8cc074df313..00000000000 --- a/_images/contour_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_002.png \ No newline at end of file diff --git a/_images/contour_demo_01.png b/_images/contour_demo_01.png deleted file mode 120000 index 7ce09a6b11b..00000000000 --- a/_images/contour_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_01.png \ No newline at end of file diff --git a/_images/contour_demo_011.png b/_images/contour_demo_011.png deleted file mode 120000 index 8ec5a1be9e3..00000000000 --- a/_images/contour_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_011.png \ No newline at end of file diff --git a/_images/contour_demo_012.png b/_images/contour_demo_012.png deleted file mode 120000 index 68dcac187de..00000000000 --- a/_images/contour_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_012.png \ No newline at end of file diff --git a/_images/contour_demo_02.png b/_images/contour_demo_02.png deleted file mode 120000 index d6b7d21ff34..00000000000 --- a/_images/contour_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_02.png \ No newline at end of file diff --git a/_images/contour_demo_021.png b/_images/contour_demo_021.png deleted file mode 120000 index ba6b919b202..00000000000 --- a/_images/contour_demo_021.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_021.png \ No newline at end of file diff --git a/_images/contour_demo_022.png b/_images/contour_demo_022.png deleted file mode 120000 index 9104638e290..00000000000 --- a/_images/contour_demo_022.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_022.png \ No newline at end of file diff --git a/_images/contour_demo_03.png b/_images/contour_demo_03.png deleted file mode 120000 index 124d8a1f034..00000000000 --- a/_images/contour_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_03.png \ No newline at end of file diff --git a/_images/contour_demo_031.png b/_images/contour_demo_031.png deleted file mode 120000 index 26613334551..00000000000 --- a/_images/contour_demo_031.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_031.png \ No newline at end of file diff --git a/_images/contour_demo_032.png b/_images/contour_demo_032.png deleted file mode 120000 index 701e07091e8..00000000000 --- a/_images/contour_demo_032.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_032.png \ No newline at end of file diff --git a/_images/contour_demo_04.png b/_images/contour_demo_04.png deleted file mode 120000 index 5636a8035b3..00000000000 --- a/_images/contour_demo_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_04.png \ No newline at end of file diff --git a/_images/contour_demo_041.png b/_images/contour_demo_041.png deleted file mode 120000 index fb028d331ef..00000000000 --- a/_images/contour_demo_041.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_041.png \ No newline at end of file diff --git a/_images/contour_demo_042.png b/_images/contour_demo_042.png deleted file mode 120000 index b69d538cb7c..00000000000 --- a/_images/contour_demo_042.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_042.png \ No newline at end of file diff --git a/_images/contour_demo_05.png b/_images/contour_demo_05.png deleted file mode 120000 index 146476c5869..00000000000 --- a/_images/contour_demo_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_05.png \ No newline at end of file diff --git a/_images/contour_demo_051.png b/_images/contour_demo_051.png deleted file mode 120000 index 32f1ee12199..00000000000 --- a/_images/contour_demo_051.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_051.png \ No newline at end of file diff --git a/_images/contour_demo_052.png b/_images/contour_demo_052.png deleted file mode 120000 index 3332fae13fd..00000000000 --- a/_images/contour_demo_052.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_demo_052.png \ No newline at end of file diff --git a/_images/contour_image.png b/_images/contour_image.png deleted file mode 120000 index 05323d346ba..00000000000 --- a/_images/contour_image.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_image.png \ No newline at end of file diff --git a/_images/contour_label_demo_00.png b/_images/contour_label_demo_00.png deleted file mode 120000 index 16654e94da3..00000000000 --- a/_images/contour_label_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_label_demo_00.png \ No newline at end of file diff --git a/_images/contour_label_demo_01.png b/_images/contour_label_demo_01.png deleted file mode 120000 index 823a36ca1f2..00000000000 --- a/_images/contour_label_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_label_demo_01.png \ No newline at end of file diff --git a/_images/contour_label_demo_02.png b/_images/contour_label_demo_02.png deleted file mode 120000 index 1704eb871dd..00000000000 --- a/_images/contour_label_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_label_demo_02.png \ No newline at end of file diff --git a/_images/contour_manual_00.png b/_images/contour_manual_00.png deleted file mode 120000 index c37a90a26b5..00000000000 --- a/_images/contour_manual_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_manual_00.png \ No newline at end of file diff --git a/_images/contour_manual_01.png b/_images/contour_manual_01.png deleted file mode 120000 index 0bffcce4ae9..00000000000 --- a/_images/contour_manual_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contour_manual_01.png \ No newline at end of file diff --git a/_images/contourf3d_demo.png b/_images/contourf3d_demo.png deleted file mode 120000 index d7e14e40986..00000000000 --- a/_images/contourf3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf3d_demo.png \ No newline at end of file diff --git a/_images/contourf3d_demo1.png b/_images/contourf3d_demo1.png deleted file mode 120000 index f46f5afee52..00000000000 --- a/_images/contourf3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf3d_demo1.png \ No newline at end of file diff --git a/_images/contourf3d_demo2.png b/_images/contourf3d_demo2.png deleted file mode 120000 index 3163d53dc66..00000000000 --- a/_images/contourf3d_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf3d_demo2.png \ No newline at end of file diff --git a/_images/contourf3d_demo21.png b/_images/contourf3d_demo21.png deleted file mode 120000 index 9fbdb13be27..00000000000 --- a/_images/contourf3d_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf3d_demo21.png \ No newline at end of file diff --git a/_images/contourf3d_demo22.png b/_images/contourf3d_demo22.png deleted file mode 120000 index 1032fbc88f6..00000000000 --- a/_images/contourf3d_demo22.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf3d_demo22.png \ No newline at end of file diff --git a/_images/contourf3d_demo23.png b/_images/contourf3d_demo23.png deleted file mode 120000 index ccc4bc83cd5..00000000000 --- a/_images/contourf3d_demo23.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf3d_demo23.png \ No newline at end of file diff --git a/_images/contourf_demo_00.png b/_images/contourf_demo_00.png deleted file mode 120000 index 77a8ca39ed0..00000000000 --- a/_images/contourf_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_00.png \ No newline at end of file diff --git a/_images/contourf_demo_001.png b/_images/contourf_demo_001.png deleted file mode 120000 index bf9080f2ce0..00000000000 --- a/_images/contourf_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_001.png \ No newline at end of file diff --git a/_images/contourf_demo_002.png b/_images/contourf_demo_002.png deleted file mode 120000 index 9d6bbd96465..00000000000 --- a/_images/contourf_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_002.png \ No newline at end of file diff --git a/_images/contourf_demo_01.png b/_images/contourf_demo_01.png deleted file mode 120000 index 3064a78a71d..00000000000 --- a/_images/contourf_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_01.png \ No newline at end of file diff --git a/_images/contourf_demo_011.png b/_images/contourf_demo_011.png deleted file mode 120000 index 65a47c9f552..00000000000 --- a/_images/contourf_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_011.png \ No newline at end of file diff --git a/_images/contourf_demo_012.png b/_images/contourf_demo_012.png deleted file mode 120000 index fa50d37d713..00000000000 --- a/_images/contourf_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_012.png \ No newline at end of file diff --git a/_images/contourf_demo_02.png b/_images/contourf_demo_02.png deleted file mode 120000 index 07d73171451..00000000000 --- a/_images/contourf_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_02.png \ No newline at end of file diff --git a/_images/contourf_demo_021.png b/_images/contourf_demo_021.png deleted file mode 120000 index 0d3f5be26b6..00000000000 --- a/_images/contourf_demo_021.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_021.png \ No newline at end of file diff --git a/_images/contourf_demo_022.png b/_images/contourf_demo_022.png deleted file mode 120000 index 8b372df793b..00000000000 --- a/_images/contourf_demo_022.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_demo_022.png \ No newline at end of file diff --git a/_images/contourf_hatching_00.png b/_images/contourf_hatching_00.png deleted file mode 120000 index ad0f072115a..00000000000 --- a/_images/contourf_hatching_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_hatching_00.png \ No newline at end of file diff --git a/_images/contourf_hatching_001.png b/_images/contourf_hatching_001.png deleted file mode 120000 index 62732b9a8d0..00000000000 --- a/_images/contourf_hatching_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_hatching_001.png \ No newline at end of file diff --git a/_images/contourf_hatching_01.png b/_images/contourf_hatching_01.png deleted file mode 120000 index dfbd8bcd1f9..00000000000 --- a/_images/contourf_hatching_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_hatching_01.png \ No newline at end of file diff --git a/_images/contourf_hatching_011.png b/_images/contourf_hatching_011.png deleted file mode 120000 index ed68e2c1569..00000000000 --- a/_images/contourf_hatching_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_hatching_011.png \ No newline at end of file diff --git a/_images/contourf_log.png b/_images/contourf_log.png deleted file mode 120000 index c960787dce8..00000000000 --- a/_images/contourf_log.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/contourf_log.png \ No newline at end of file diff --git a/_images/coords_demo.png b/_images/coords_demo.png deleted file mode 120000 index 18855afe1b5..00000000000 --- a/_images/coords_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/coords_demo.png \ No newline at end of file diff --git a/_images/coords_report.png b/_images/coords_report.png deleted file mode 120000 index 9a5707c562c..00000000000 --- a/_images/coords_report.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/coords_report.png \ No newline at end of file diff --git a/_images/csd_demo.png b/_images/csd_demo.png deleted file mode 120000 index dc620234781..00000000000 --- a/_images/csd_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/csd_demo.png \ No newline at end of file diff --git a/_images/csd_demo1.png b/_images/csd_demo1.png deleted file mode 120000 index 37e2b554bdc..00000000000 --- a/_images/csd_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/csd_demo1.png \ No newline at end of file diff --git a/_images/csd_demo2.png b/_images/csd_demo2.png deleted file mode 120000 index e05ab131c3d..00000000000 --- a/_images/csd_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/csd_demo2.png \ No newline at end of file diff --git a/_images/cursor.png b/_images/cursor.png deleted file mode 120000 index 68f75f9ea88..00000000000 --- a/_images/cursor.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/cursor.png \ No newline at end of file diff --git a/_images/custom_boxstyle01.png b/_images/custom_boxstyle01.png deleted file mode 120000 index 0ffe179a099..00000000000 --- a/_images/custom_boxstyle01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_boxstyle01.png \ No newline at end of file diff --git a/_images/custom_boxstyle02.png b/_images/custom_boxstyle02.png deleted file mode 120000 index b163807af5f..00000000000 --- a/_images/custom_boxstyle02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_boxstyle02.png \ No newline at end of file diff --git a/_images/custom_cmap.png b/_images/custom_cmap.png deleted file mode 120000 index 45a16246a15..00000000000 --- a/_images/custom_cmap.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.1/_images/custom_cmap.png \ No newline at end of file diff --git a/_images/custom_cmap_00.png b/_images/custom_cmap_00.png deleted file mode 120000 index d449ebc61d9..00000000000 --- a/_images/custom_cmap_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_cmap_00.png \ No newline at end of file diff --git a/_images/custom_cmap_01.png b/_images/custom_cmap_01.png deleted file mode 120000 index 3d126277a4a..00000000000 --- a/_images/custom_cmap_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_cmap_01.png \ No newline at end of file diff --git a/_images/custom_figure_class.png b/_images/custom_figure_class.png deleted file mode 120000 index 464fd738c5d..00000000000 --- a/_images/custom_figure_class.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_figure_class.png \ No newline at end of file diff --git a/_images/custom_projection_example.png b/_images/custom_projection_example.png deleted file mode 120000 index c539b0e54c2..00000000000 --- a/_images/custom_projection_example.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_projection_example.png \ No newline at end of file diff --git a/_images/custom_scale_example.png b/_images/custom_scale_example.png deleted file mode 120000 index 8f20b7cdcaa..00000000000 --- a/_images/custom_scale_example.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_scale_example.png \ No newline at end of file diff --git a/_images/custom_shaded_3d_surface.png b/_images/custom_shaded_3d_surface.png deleted file mode 120000 index 4da3a4feaf6..00000000000 --- a/_images/custom_shaded_3d_surface.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_shaded_3d_surface.png \ No newline at end of file diff --git a/_images/custom_ticker1.png b/_images/custom_ticker1.png deleted file mode 120000 index 51909425a12..00000000000 --- a/_images/custom_ticker1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/custom_ticker1.png \ No newline at end of file diff --git a/_images/customize_rc.png b/_images/customize_rc.png deleted file mode 120000 index 88ce0552668..00000000000 --- a/_images/customize_rc.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/customize_rc.png \ No newline at end of file diff --git a/_images/customized_violin_demo.png b/_images/customized_violin_demo.png deleted file mode 120000 index 5564b749cc6..00000000000 --- a/_images/customized_violin_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/customized_violin_demo.png \ No newline at end of file diff --git a/_images/dashpointlabel.png b/_images/dashpointlabel.png deleted file mode 120000 index 6309dbbe8b0..00000000000 --- a/_images/dashpointlabel.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/dashpointlabel.png \ No newline at end of file diff --git a/_images/date_demo.png b/_images/date_demo.png deleted file mode 120000 index 0b8ee42c350..00000000000 --- a/_images/date_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/date_demo.png \ No newline at end of file diff --git a/_images/date_demo1.png b/_images/date_demo1.png deleted file mode 120000 index f9162946607..00000000000 --- a/_images/date_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/date_demo1.png \ No newline at end of file diff --git a/_images/date_demo2.png b/_images/date_demo2.png deleted file mode 120000 index e53b5236dbc..00000000000 --- a/_images/date_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/date_demo2.png \ No newline at end of file diff --git a/_images/date_demo3.png b/_images/date_demo3.png deleted file mode 120000 index 61c8532a30b..00000000000 --- a/_images/date_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/date_demo3.png \ No newline at end of file diff --git a/_images/date_demo_convert.png b/_images/date_demo_convert.png deleted file mode 120000 index 4bf0d859c7c..00000000000 --- a/_images/date_demo_convert.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/date_demo_convert.png \ No newline at end of file diff --git a/_images/date_demo_rrule.png b/_images/date_demo_rrule.png deleted file mode 120000 index d3dc56416ad..00000000000 --- a/_images/date_demo_rrule.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/date_demo_rrule.png \ No newline at end of file diff --git a/_images/date_index_formatter.png b/_images/date_index_formatter.png deleted file mode 120000 index 39f26b02fcb..00000000000 --- a/_images/date_index_formatter.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/date_index_formatter.png \ No newline at end of file diff --git a/_images/date_index_formatter1.png b/_images/date_index_formatter1.png deleted file mode 120000 index 72c70280bd9..00000000000 --- a/_images/date_index_formatter1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/date_index_formatter1.png \ No newline at end of file diff --git a/_images/date_index_formatter_00.png b/_images/date_index_formatter_00.png deleted file mode 120000 index 1ac679b7d9a..00000000000 --- a/_images/date_index_formatter_00.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/date_index_formatter_00.png \ No newline at end of file diff --git a/_images/date_index_formatter_01.png b/_images/date_index_formatter_01.png deleted file mode 120000 index 5d17e5b9d60..00000000000 --- a/_images/date_index_formatter_01.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/date_index_formatter_01.png \ No newline at end of file diff --git a/_images/dates_api-1.png b/_images/dates_api-1.png deleted file mode 120000 index 3e43de4e841..00000000000 --- a/_images/dates_api-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dates_api-1.png \ No newline at end of file diff --git a/_images/demo_affine_image.png b/_images/demo_affine_image.png deleted file mode 120000 index 6f4e6685c6d..00000000000 --- a/_images/demo_affine_image.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_affine_image.png \ No newline at end of file diff --git a/_images/demo_affine_image_00_00.png b/_images/demo_affine_image_00_00.png deleted file mode 120000 index ee0771123b6..00000000000 --- a/_images/demo_affine_image_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/demo_affine_image_00_00.png \ No newline at end of file diff --git a/_images/demo_agg_filter.png b/_images/demo_agg_filter.png deleted file mode 120000 index 6a31f6c6286..00000000000 --- a/_images/demo_agg_filter.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_agg_filter.png \ No newline at end of file diff --git a/_images/demo_annotation_box.png b/_images/demo_annotation_box.png deleted file mode 120000 index 37cd7757bd9..00000000000 --- a/_images/demo_annotation_box.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_annotation_box.png \ No newline at end of file diff --git a/_images/demo_axes_divider_01_00.png b/_images/demo_axes_divider_01_00.png deleted file mode 120000 index 2733a48d112..00000000000 --- a/_images/demo_axes_divider_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axes_divider_01_00.png \ No newline at end of file diff --git a/_images/demo_axes_grid.png b/_images/demo_axes_grid.png deleted file mode 120000 index bc90d345188..00000000000 --- a/_images/demo_axes_grid.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/demo_axes_grid.png \ No newline at end of file diff --git a/_images/demo_axes_grid1.png b/_images/demo_axes_grid1.png deleted file mode 120000 index 6da4897cda0..00000000000 --- a/_images/demo_axes_grid1.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/demo_axes_grid1.png \ No newline at end of file diff --git a/_images/demo_axes_grid2.png b/_images/demo_axes_grid2.png deleted file mode 120000 index 020d40bae87..00000000000 --- a/_images/demo_axes_grid2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axes_grid2.png \ No newline at end of file diff --git a/_images/demo_axes_grid21.png b/_images/demo_axes_grid21.png deleted file mode 120000 index 9346f0ea832..00000000000 --- a/_images/demo_axes_grid21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axes_grid21.png \ No newline at end of file diff --git a/_images/demo_axes_grid3.png b/_images/demo_axes_grid3.png deleted file mode 120000 index 3d01104c7e2..00000000000 --- a/_images/demo_axes_grid3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axes_grid3.png \ No newline at end of file diff --git a/_images/demo_axes_grid4.png b/_images/demo_axes_grid4.png deleted file mode 120000 index 5ed38c35838..00000000000 --- a/_images/demo_axes_grid4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axes_grid4.png \ No newline at end of file diff --git a/_images/demo_axes_hbox_divider.png b/_images/demo_axes_hbox_divider.png deleted file mode 120000 index 32753dafcb3..00000000000 --- a/_images/demo_axes_hbox_divider.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/demo_axes_hbox_divider.png \ No newline at end of file diff --git a/_images/demo_axes_rgb_00.png b/_images/demo_axes_rgb_00.png deleted file mode 120000 index 0661d441697..00000000000 --- a/_images/demo_axes_rgb_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axes_rgb_00.png \ No newline at end of file diff --git a/_images/demo_axes_rgb_01.png b/_images/demo_axes_rgb_01.png deleted file mode 120000 index 41147a09108..00000000000 --- a/_images/demo_axes_rgb_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axes_rgb_01.png \ No newline at end of file diff --git a/_images/demo_axis_direction.png b/_images/demo_axis_direction.png deleted file mode 120000 index 01e4edbb644..00000000000 --- a/_images/demo_axis_direction.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axis_direction.png \ No newline at end of file diff --git a/_images/demo_axisline_style.png b/_images/demo_axisline_style.png deleted file mode 120000 index e465639a767..00000000000 --- a/_images/demo_axisline_style.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_axisline_style.png \ No newline at end of file diff --git a/_images/demo_bboximage.png b/_images/demo_bboximage.png deleted file mode 120000 index cee757397b6..00000000000 --- a/_images/demo_bboximage.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_bboximage.png \ No newline at end of file diff --git a/_images/demo_colorbar_with_inset_locator.png b/_images/demo_colorbar_with_inset_locator.png deleted file mode 120000 index 0a3f2e2781b..00000000000 --- a/_images/demo_colorbar_with_inset_locator.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_colorbar_with_inset_locator.png \ No newline at end of file diff --git a/_images/demo_curvelinear_grid.png b/_images/demo_curvelinear_grid.png deleted file mode 120000 index fe01801334c..00000000000 --- a/_images/demo_curvelinear_grid.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_curvelinear_grid.png \ No newline at end of file diff --git a/_images/demo_curvelinear_grid1.png b/_images/demo_curvelinear_grid1.png deleted file mode 120000 index 0e671a1ae6e..00000000000 --- a/_images/demo_curvelinear_grid1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_curvelinear_grid1.png \ No newline at end of file diff --git a/_images/demo_curvelinear_grid2.png b/_images/demo_curvelinear_grid2.png deleted file mode 120000 index 44e4e7f4b6c..00000000000 --- a/_images/demo_curvelinear_grid2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_curvelinear_grid2.png \ No newline at end of file diff --git a/_images/demo_edge_colorbar.png b/_images/demo_edge_colorbar.png deleted file mode 120000 index 85cc8576593..00000000000 --- a/_images/demo_edge_colorbar.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_edge_colorbar.png \ No newline at end of file diff --git a/_images/demo_floating_axes.png b/_images/demo_floating_axes.png deleted file mode 120000 index 7d6529ef276..00000000000 --- a/_images/demo_floating_axes.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_floating_axes.png \ No newline at end of file diff --git a/_images/demo_floating_axes1.png b/_images/demo_floating_axes1.png deleted file mode 120000 index 609273d7bf7..00000000000 --- a/_images/demo_floating_axes1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_floating_axes1.png \ No newline at end of file diff --git a/_images/demo_floating_axis.png b/_images/demo_floating_axis.png deleted file mode 120000 index 0cbf536606a..00000000000 --- a/_images/demo_floating_axis.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_floating_axis.png \ No newline at end of file diff --git a/_images/demo_floating_axis1.png b/_images/demo_floating_axis1.png deleted file mode 120000 index 16bfec3e731..00000000000 --- a/_images/demo_floating_axis1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_floating_axis1.png \ No newline at end of file diff --git a/_images/demo_gridspec01.png b/_images/demo_gridspec01.png deleted file mode 120000 index cd89d76feb3..00000000000 --- a/_images/demo_gridspec01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_gridspec01.png \ No newline at end of file diff --git a/_images/demo_gridspec011.png b/_images/demo_gridspec011.png deleted file mode 120000 index 9756a4941a9..00000000000 --- a/_images/demo_gridspec011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_gridspec011.png \ No newline at end of file diff --git a/_images/demo_gridspec02.png b/_images/demo_gridspec02.png deleted file mode 120000 index f142d267c59..00000000000 --- a/_images/demo_gridspec02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_gridspec02.png \ No newline at end of file diff --git a/_images/demo_gridspec03.png b/_images/demo_gridspec03.png deleted file mode 120000 index adf4476486b..00000000000 --- a/_images/demo_gridspec03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_gridspec03.png \ No newline at end of file diff --git a/_images/demo_gridspec04.png b/_images/demo_gridspec04.png deleted file mode 120000 index 5ea71ece260..00000000000 --- a/_images/demo_gridspec04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_gridspec04.png \ No newline at end of file diff --git a/_images/demo_gridspec05.png b/_images/demo_gridspec05.png deleted file mode 120000 index 3bc50749b28..00000000000 --- a/_images/demo_gridspec05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_gridspec05.png \ No newline at end of file diff --git a/_images/demo_gridspec06.png b/_images/demo_gridspec06.png deleted file mode 120000 index bffa0dd6c4c..00000000000 --- a/_images/demo_gridspec06.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_gridspec06.png \ No newline at end of file diff --git a/_images/demo_imagegrid_aspect.png b/_images/demo_imagegrid_aspect.png deleted file mode 120000 index d1d36e7a7e5..00000000000 --- a/_images/demo_imagegrid_aspect.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_imagegrid_aspect.png \ No newline at end of file diff --git a/_images/demo_mplot3d.png b/_images/demo_mplot3d.png deleted file mode 120000 index 495876b9269..00000000000 --- a/_images/demo_mplot3d.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/demo_mplot3d.png \ No newline at end of file diff --git a/_images/demo_parasite_axes2.png b/_images/demo_parasite_axes2.png deleted file mode 120000 index 1987d13afb4..00000000000 --- a/_images/demo_parasite_axes2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_parasite_axes2.png \ No newline at end of file diff --git a/_images/demo_parasite_axes21.png b/_images/demo_parasite_axes21.png deleted file mode 120000 index 24206dbf38f..00000000000 --- a/_images/demo_parasite_axes21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_parasite_axes21.png \ No newline at end of file diff --git a/_images/demo_parasite_axes2_00_00.png b/_images/demo_parasite_axes2_00_00.png deleted file mode 120000 index f11d373fafa..00000000000 --- a/_images/demo_parasite_axes2_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/demo_parasite_axes2_00_00.png \ No newline at end of file diff --git a/_images/demo_parasite_axes2_00_001.png b/_images/demo_parasite_axes2_00_001.png deleted file mode 120000 index c56e93f2f9f..00000000000 --- a/_images/demo_parasite_axes2_00_001.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/demo_parasite_axes2_00_001.png \ No newline at end of file diff --git a/_images/demo_ribbon_box.png b/_images/demo_ribbon_box.png deleted file mode 120000 index 93a5bda2c1e..00000000000 --- a/_images/demo_ribbon_box.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_ribbon_box.png \ No newline at end of file diff --git a/_images/demo_text_path.png b/_images/demo_text_path.png deleted file mode 120000 index 8f361f11067..00000000000 --- a/_images/demo_text_path.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_text_path.png \ No newline at end of file diff --git a/_images/demo_text_rotation_mode.png b/_images/demo_text_rotation_mode.png deleted file mode 120000 index 1b3c66c3c49..00000000000 --- a/_images/demo_text_rotation_mode.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_text_rotation_mode.png \ No newline at end of file diff --git a/_images/demo_ticklabel_alignment.png b/_images/demo_ticklabel_alignment.png deleted file mode 120000 index 47c55e54490..00000000000 --- a/_images/demo_ticklabel_alignment.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_ticklabel_alignment.png \ No newline at end of file diff --git a/_images/demo_tight_layout_00_00.png b/_images/demo_tight_layout_00_00.png deleted file mode 120000 index 7cf3aaa7d11..00000000000 --- a/_images/demo_tight_layout_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_00_00.png \ No newline at end of file diff --git a/_images/demo_tight_layout_00_01.png b/_images/demo_tight_layout_00_01.png deleted file mode 120000 index beb0dc071fc..00000000000 --- a/_images/demo_tight_layout_00_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_00_01.png \ No newline at end of file diff --git a/_images/demo_tight_layout_00_02.png b/_images/demo_tight_layout_00_02.png deleted file mode 120000 index 12dbc26fcad..00000000000 --- a/_images/demo_tight_layout_00_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_00_02.png \ No newline at end of file diff --git a/_images/demo_tight_layout_00_03.png b/_images/demo_tight_layout_00_03.png deleted file mode 120000 index 34ac8b49232..00000000000 --- a/_images/demo_tight_layout_00_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_00_03.png \ No newline at end of file diff --git a/_images/demo_tight_layout_00_04.png b/_images/demo_tight_layout_00_04.png deleted file mode 120000 index 2c5a788add3..00000000000 --- a/_images/demo_tight_layout_00_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_00_04.png \ No newline at end of file diff --git a/_images/demo_tight_layout_00_05.png b/_images/demo_tight_layout_00_05.png deleted file mode 120000 index 5826d57ac86..00000000000 --- a/_images/demo_tight_layout_00_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_00_05.png \ No newline at end of file diff --git a/_images/demo_tight_layout_00_06.png b/_images/demo_tight_layout_00_06.png deleted file mode 120000 index 437e7137762..00000000000 --- a/_images/demo_tight_layout_00_06.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_00_06.png \ No newline at end of file diff --git a/_images/demo_tight_layout_01_00.png b/_images/demo_tight_layout_01_00.png deleted file mode 120000 index a116c05c9d2..00000000000 --- a/_images/demo_tight_layout_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/demo_tight_layout_01_00.png \ No newline at end of file diff --git a/_images/dflt_style_changes-1.png b/_images/dflt_style_changes-1.png deleted file mode 120000 index 4680a1b04ca..00000000000 --- a/_images/dflt_style_changes-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-1.png \ No newline at end of file diff --git a/_images/dflt_style_changes-10.png b/_images/dflt_style_changes-10.png deleted file mode 120000 index 39df45c34dd..00000000000 --- a/_images/dflt_style_changes-10.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-10.png \ No newline at end of file diff --git a/_images/dflt_style_changes-11.png b/_images/dflt_style_changes-11.png deleted file mode 120000 index 7db857b4e98..00000000000 --- a/_images/dflt_style_changes-11.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-11.png \ No newline at end of file diff --git a/_images/dflt_style_changes-111.png b/_images/dflt_style_changes-111.png deleted file mode 120000 index 73acbf250ab..00000000000 --- a/_images/dflt_style_changes-111.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/dflt_style_changes-111.png \ No newline at end of file diff --git a/_images/dflt_style_changes-12.png b/_images/dflt_style_changes-12.png deleted file mode 120000 index 6a7fd847d23..00000000000 --- a/_images/dflt_style_changes-12.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-12.png \ No newline at end of file diff --git a/_images/dflt_style_changes-13.png b/_images/dflt_style_changes-13.png deleted file mode 120000 index ba9e1474946..00000000000 --- a/_images/dflt_style_changes-13.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-13.png \ No newline at end of file diff --git a/_images/dflt_style_changes-14.png b/_images/dflt_style_changes-14.png deleted file mode 120000 index 38f4bb5d8b7..00000000000 --- a/_images/dflt_style_changes-14.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-14.png \ No newline at end of file diff --git a/_images/dflt_style_changes-15.png b/_images/dflt_style_changes-15.png deleted file mode 120000 index 94e0f697688..00000000000 --- a/_images/dflt_style_changes-15.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-15.png \ No newline at end of file diff --git a/_images/dflt_style_changes-16.png b/_images/dflt_style_changes-16.png deleted file mode 120000 index 3617485a2d5..00000000000 --- a/_images/dflt_style_changes-16.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-16.png \ No newline at end of file diff --git a/_images/dflt_style_changes-17.png b/_images/dflt_style_changes-17.png deleted file mode 120000 index a94815e6958..00000000000 --- a/_images/dflt_style_changes-17.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-17.png \ No newline at end of file diff --git a/_images/dflt_style_changes-18.png b/_images/dflt_style_changes-18.png deleted file mode 120000 index 4b10d009bea..00000000000 --- a/_images/dflt_style_changes-18.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-18.png \ No newline at end of file diff --git a/_images/dflt_style_changes-19.png b/_images/dflt_style_changes-19.png deleted file mode 120000 index 878cc9c887f..00000000000 --- a/_images/dflt_style_changes-19.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-19.png \ No newline at end of file diff --git a/_images/dflt_style_changes-2.png b/_images/dflt_style_changes-2.png deleted file mode 120000 index 651083cbed9..00000000000 --- a/_images/dflt_style_changes-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-2.png \ No newline at end of file diff --git a/_images/dflt_style_changes-20.png b/_images/dflt_style_changes-20.png deleted file mode 120000 index 9f46fd581f6..00000000000 --- a/_images/dflt_style_changes-20.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-20.png \ No newline at end of file diff --git a/_images/dflt_style_changes-3.png b/_images/dflt_style_changes-3.png deleted file mode 120000 index 4854b7e030c..00000000000 --- a/_images/dflt_style_changes-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-3.png \ No newline at end of file diff --git a/_images/dflt_style_changes-4.png b/_images/dflt_style_changes-4.png deleted file mode 120000 index 8f5eadc961e..00000000000 --- a/_images/dflt_style_changes-4.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-4.png \ No newline at end of file diff --git a/_images/dflt_style_changes-5.png b/_images/dflt_style_changes-5.png deleted file mode 120000 index 540d5a32e5b..00000000000 --- a/_images/dflt_style_changes-5.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-5.png \ No newline at end of file diff --git a/_images/dflt_style_changes-6.png b/_images/dflt_style_changes-6.png deleted file mode 120000 index 6fcbdf05e7c..00000000000 --- a/_images/dflt_style_changes-6.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-6.png \ No newline at end of file diff --git a/_images/dflt_style_changes-7.png b/_images/dflt_style_changes-7.png deleted file mode 120000 index 6c7ac0b5108..00000000000 --- a/_images/dflt_style_changes-7.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-7.png \ No newline at end of file diff --git a/_images/dflt_style_changes-8.png b/_images/dflt_style_changes-8.png deleted file mode 120000 index 40c3574b1a3..00000000000 --- a/_images/dflt_style_changes-8.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-8.png \ No newline at end of file diff --git a/_images/dflt_style_changes-9.png b/_images/dflt_style_changes-9.png deleted file mode 120000 index 65af49fc74f..00000000000 --- a/_images/dflt_style_changes-9.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/dflt_style_changes-9.png \ No newline at end of file diff --git a/_images/dna_features_viewer_screenshot.png b/_images/dna_features_viewer_screenshot.png deleted file mode 120000 index c88fdb7c5ec..00000000000 --- a/_images/dna_features_viewer_screenshot.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/dna_features_viewer_screenshot.png \ No newline at end of file diff --git a/_images/dollar_ticks.png b/_images/dollar_ticks.png deleted file mode 120000 index 83fa5815d10..00000000000 --- a/_images/dollar_ticks.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/dollar_ticks.png \ No newline at end of file diff --git a/_images/dolphin.png b/_images/dolphin.png deleted file mode 120000 index 746dc3439ee..00000000000 --- a/_images/dolphin.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/dolphin.png \ No newline at end of file diff --git a/_images/donut_demo.png b/_images/donut_demo.png deleted file mode 120000 index 0848379a95e..00000000000 --- a/_images/donut_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/donut_demo.png \ No newline at end of file diff --git a/_images/eeg_small.png b/_images/eeg_small.png deleted file mode 120000 index c0e4d0cda2d..00000000000 --- a/_images/eeg_small.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/eeg_small.png \ No newline at end of file diff --git a/_images/ellipse_collection.png b/_images/ellipse_collection.png deleted file mode 120000 index 8d7cb1912f6..00000000000 --- a/_images/ellipse_collection.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ellipse_collection.png \ No newline at end of file diff --git a/_images/ellipse_demo.png b/_images/ellipse_demo.png deleted file mode 120000 index 12f72c80a7f..00000000000 --- a/_images/ellipse_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ellipse_demo.png \ No newline at end of file diff --git a/_images/ellipse_demo1.png b/_images/ellipse_demo1.png deleted file mode 120000 index 875ee4bcfcc..00000000000 --- a/_images/ellipse_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ellipse_demo1.png \ No newline at end of file diff --git a/_images/ellipse_rotated.png b/_images/ellipse_rotated.png deleted file mode 120000 index 669ef074c2a..00000000000 --- a/_images/ellipse_rotated.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ellipse_rotated.png \ No newline at end of file diff --git a/_images/ellipse_with_units_00.png b/_images/ellipse_with_units_00.png deleted file mode 120000 index e4ca0ab4a3b..00000000000 --- a/_images/ellipse_with_units_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ellipse_with_units_00.png \ No newline at end of file diff --git a/_images/ellipse_with_units_01.png b/_images/ellipse_with_units_01.png deleted file mode 120000 index 3b19eb61790..00000000000 --- a/_images/ellipse_with_units_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ellipse_with_units_01.png \ No newline at end of file diff --git a/_images/engineering_formatter.png b/_images/engineering_formatter.png deleted file mode 120000 index 5f8bb29101a..00000000000 --- a/_images/engineering_formatter.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/engineering_formatter.png \ No newline at end of file diff --git a/_images/equal_aspect_ratio.png b/_images/equal_aspect_ratio.png deleted file mode 120000 index 26478d8be79..00000000000 --- a/_images/equal_aspect_ratio.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/equal_aspect_ratio.png \ No newline at end of file diff --git a/_images/errorbar3d.png b/_images/errorbar3d.png deleted file mode 120000 index 5ad9b9817f0..00000000000 --- a/_images/errorbar3d.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/errorbar3d.png \ No newline at end of file diff --git a/_images/errorbar_demo.png b/_images/errorbar_demo.png deleted file mode 120000 index c9fa991f0bf..00000000000 --- a/_images/errorbar_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_demo.png \ No newline at end of file diff --git a/_images/errorbar_demo1.png b/_images/errorbar_demo1.png deleted file mode 120000 index 726011d74f1..00000000000 --- a/_images/errorbar_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_demo1.png \ No newline at end of file diff --git a/_images/errorbar_demo2.png b/_images/errorbar_demo2.png deleted file mode 120000 index 7cd5bf209af..00000000000 --- a/_images/errorbar_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_demo2.png \ No newline at end of file diff --git a/_images/errorbar_demo_features.png b/_images/errorbar_demo_features.png deleted file mode 120000 index 377af7dc231..00000000000 --- a/_images/errorbar_demo_features.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_demo_features.png \ No newline at end of file diff --git a/_images/errorbar_limits.png b/_images/errorbar_limits.png deleted file mode 120000 index 8f890e1849e..00000000000 --- a/_images/errorbar_limits.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_limits.png \ No newline at end of file diff --git a/_images/errorbar_limits_00.png b/_images/errorbar_limits_00.png deleted file mode 120000 index 4b755de739a..00000000000 --- a/_images/errorbar_limits_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_limits_00.png \ No newline at end of file diff --git a/_images/errorbar_limits_01.png b/_images/errorbar_limits_01.png deleted file mode 120000 index 09df31edd1b..00000000000 --- a/_images/errorbar_limits_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_limits_01.png \ No newline at end of file diff --git a/_images/errorbar_subsample.png b/_images/errorbar_subsample.png deleted file mode 120000 index 067041d1da6..00000000000 --- a/_images/errorbar_subsample.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbar_subsample.png \ No newline at end of file diff --git a/_images/errorbars_and_boxes.png b/_images/errorbars_and_boxes.png deleted file mode 120000 index 2dca68311be..00000000000 --- a/_images/errorbars_and_boxes.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/errorbars_and_boxes.png \ No newline at end of file diff --git a/_images/evans_test.png b/_images/evans_test.png deleted file mode 120000 index 0ca3c22f4da..00000000000 --- a/_images/evans_test.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/evans_test.png \ No newline at end of file diff --git a/_images/eventcollection_demo.png b/_images/eventcollection_demo.png deleted file mode 120000 index 0cad24db16d..00000000000 --- a/_images/eventcollection_demo.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/eventcollection_demo.png \ No newline at end of file diff --git a/_images/eventcollection_demo1.png b/_images/eventcollection_demo1.png deleted file mode 120000 index e97db2d91f4..00000000000 --- a/_images/eventcollection_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/eventcollection_demo1.png \ No newline at end of file diff --git a/_images/eventplot_demo.png b/_images/eventplot_demo.png deleted file mode 120000 index 743c8aaac56..00000000000 --- a/_images/eventplot_demo.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/eventplot_demo.png \ No newline at end of file diff --git a/_images/eventplot_demo1.png b/_images/eventplot_demo1.png deleted file mode 120000 index a2e2ab38ea3..00000000000 --- a/_images/eventplot_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/eventplot_demo1.png \ No newline at end of file diff --git a/_images/eventplot_demo2.png b/_images/eventplot_demo2.png deleted file mode 120000 index fe0e388482a..00000000000 --- a/_images/eventplot_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/eventplot_demo2.png \ No newline at end of file diff --git a/_images/eventplot_demo3.png b/_images/eventplot_demo3.png deleted file mode 120000 index a1ce82e3e23..00000000000 --- a/_images/eventplot_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/eventplot_demo3.png \ No newline at end of file diff --git a/_images/fahrenheit_celsius_scales.png b/_images/fahrenheit_celsius_scales.png deleted file mode 120000 index 69ffc1f6fce..00000000000 --- a/_images/fahrenheit_celsius_scales.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fahrenheit_celsius_scales.png \ No newline at end of file diff --git a/_images/fancyarrow_demo.png b/_images/fancyarrow_demo.png deleted file mode 120000 index 9b1e2eae2f3..00000000000 --- a/_images/fancyarrow_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancyarrow_demo.png \ No newline at end of file diff --git a/_images/fancyarrow_demo1.png b/_images/fancyarrow_demo1.png deleted file mode 120000 index 1725be5e2b0..00000000000 --- a/_images/fancyarrow_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancyarrow_demo1.png \ No newline at end of file diff --git a/_images/fancyarrow_demo2.png b/_images/fancyarrow_demo2.png deleted file mode 120000 index 94e48cabafe..00000000000 --- a/_images/fancyarrow_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancyarrow_demo2.png \ No newline at end of file diff --git a/_images/fancybox_demo2.png b/_images/fancybox_demo2.png deleted file mode 120000 index 71b38547a01..00000000000 --- a/_images/fancybox_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancybox_demo2.png \ No newline at end of file diff --git a/_images/fancybox_demo21.png b/_images/fancybox_demo21.png deleted file mode 120000 index e50d004c045..00000000000 --- a/_images/fancybox_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancybox_demo21.png \ No newline at end of file diff --git a/_images/fancybox_demo22.png b/_images/fancybox_demo22.png deleted file mode 120000 index c4dd3685f7c..00000000000 --- a/_images/fancybox_demo22.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancybox_demo22.png \ No newline at end of file diff --git a/_images/fancybox_demo_01_00.png b/_images/fancybox_demo_01_00.png deleted file mode 120000 index 0f9247bc09a..00000000000 --- a/_images/fancybox_demo_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancybox_demo_01_00.png \ No newline at end of file diff --git a/_images/fancytextbox_demo.png b/_images/fancytextbox_demo.png deleted file mode 120000 index 74fd4dc3787..00000000000 --- a/_images/fancytextbox_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fancytextbox_demo.png \ No newline at end of file diff --git a/_images/fig_axes_customize_simple.png b/_images/fig_axes_customize_simple.png deleted file mode 120000 index 474dc67a1f9..00000000000 --- a/_images/fig_axes_customize_simple.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fig_axes_customize_simple.png \ No newline at end of file diff --git a/_images/fig_axes_labels_simple.png b/_images/fig_axes_labels_simple.png deleted file mode 120000 index 324bccc3c57..00000000000 --- a/_images/fig_axes_labels_simple.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fig_axes_labels_simple.png \ No newline at end of file diff --git a/_images/fig_map.png b/_images/fig_map.png deleted file mode 120000 index 57318a723f0..00000000000 --- a/_images/fig_map.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/fig_map.png \ No newline at end of file diff --git a/_images/fig_x.png b/_images/fig_x.png deleted file mode 120000 index 77c4bf38999..00000000000 --- a/_images/fig_x.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fig_x.png \ No newline at end of file diff --git a/_images/figimage_demo.png b/_images/figimage_demo.png deleted file mode 120000 index 5157863fce3..00000000000 --- a/_images/figimage_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/figimage_demo.png \ No newline at end of file diff --git a/_images/figimage_demo1.png b/_images/figimage_demo1.png deleted file mode 120000 index 2a12f936a87..00000000000 --- a/_images/figimage_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/figimage_demo1.png \ No newline at end of file diff --git a/_images/figlegend_demo.png b/_images/figlegend_demo.png deleted file mode 120000 index b180b6d7936..00000000000 --- a/_images/figlegend_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/figlegend_demo.png \ No newline at end of file diff --git a/_images/figlegend_demo1.png b/_images/figlegend_demo1.png deleted file mode 120000 index 0bf04ec0c10..00000000000 --- a/_images/figlegend_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/figlegend_demo1.png \ No newline at end of file diff --git a/_images/figpager.png b/_images/figpager.png deleted file mode 120000 index 54401441fa8..00000000000 --- a/_images/figpager.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/figpager.png \ No newline at end of file diff --git a/_images/figure_title.png b/_images/figure_title.png deleted file mode 120000 index 3ef4ce1d12f..00000000000 --- a/_images/figure_title.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/figure_title.png \ No newline at end of file diff --git a/_images/filesave.png b/_images/filesave.png deleted file mode 120000 index 7e5b2b99e04..00000000000 --- a/_images/filesave.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/filesave.png \ No newline at end of file diff --git a/_images/filesave_large.png b/_images/filesave_large.png deleted file mode 120000 index f9601681472..00000000000 --- a/_images/filesave_large.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/filesave_large.png \ No newline at end of file diff --git a/_images/fill_between_demo_00.png b/_images/fill_between_demo_00.png deleted file mode 120000 index 5d94827ca85..00000000000 --- a/_images/fill_between_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_00.png \ No newline at end of file diff --git a/_images/fill_between_demo_001.png b/_images/fill_between_demo_001.png deleted file mode 120000 index c8445fa3778..00000000000 --- a/_images/fill_between_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_001.png \ No newline at end of file diff --git a/_images/fill_between_demo_002.png b/_images/fill_between_demo_002.png deleted file mode 120000 index e275f03b2c3..00000000000 --- a/_images/fill_between_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_002.png \ No newline at end of file diff --git a/_images/fill_between_demo_01.png b/_images/fill_between_demo_01.png deleted file mode 120000 index 11d4520d82f..00000000000 --- a/_images/fill_between_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_01.png \ No newline at end of file diff --git a/_images/fill_between_demo_011.png b/_images/fill_between_demo_011.png deleted file mode 120000 index 901f9e3d0cb..00000000000 --- a/_images/fill_between_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_011.png \ No newline at end of file diff --git a/_images/fill_between_demo_012.png b/_images/fill_between_demo_012.png deleted file mode 120000 index a60a8578d7e..00000000000 --- a/_images/fill_between_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_012.png \ No newline at end of file diff --git a/_images/fill_between_demo_02.png b/_images/fill_between_demo_02.png deleted file mode 120000 index fa48086f4c5..00000000000 --- a/_images/fill_between_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_02.png \ No newline at end of file diff --git a/_images/fill_between_demo_021.png b/_images/fill_between_demo_021.png deleted file mode 120000 index 6418351f66f..00000000000 --- a/_images/fill_between_demo_021.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_021.png \ No newline at end of file diff --git a/_images/fill_between_demo_022.png b/_images/fill_between_demo_022.png deleted file mode 120000 index a0cd9e91e4a..00000000000 --- a/_images/fill_between_demo_022.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_between_demo_022.png \ No newline at end of file diff --git a/_images/fill_betweenx_demo_00.png b/_images/fill_betweenx_demo_00.png deleted file mode 120000 index bd2f186cf30..00000000000 --- a/_images/fill_betweenx_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_betweenx_demo_00.png \ No newline at end of file diff --git a/_images/fill_betweenx_demo_001.png b/_images/fill_betweenx_demo_001.png deleted file mode 120000 index dbb31c1bacb..00000000000 --- a/_images/fill_betweenx_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_betweenx_demo_001.png \ No newline at end of file diff --git a/_images/fill_betweenx_demo_002.png b/_images/fill_betweenx_demo_002.png deleted file mode 120000 index 18d3fe86e0c..00000000000 --- a/_images/fill_betweenx_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_betweenx_demo_002.png \ No newline at end of file diff --git a/_images/fill_betweenx_demo_01.png b/_images/fill_betweenx_demo_01.png deleted file mode 120000 index 6585b27e9be..00000000000 --- a/_images/fill_betweenx_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_betweenx_demo_01.png \ No newline at end of file diff --git a/_images/fill_betweenx_demo_011.png b/_images/fill_betweenx_demo_011.png deleted file mode 120000 index 925adeeebb8..00000000000 --- a/_images/fill_betweenx_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_betweenx_demo_011.png \ No newline at end of file diff --git a/_images/fill_betweenx_demo_012.png b/_images/fill_betweenx_demo_012.png deleted file mode 120000 index c3bc00de980..00000000000 --- a/_images/fill_betweenx_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_betweenx_demo_012.png \ No newline at end of file diff --git a/_images/fill_demo.png b/_images/fill_demo.png deleted file mode 120000 index bfe8e2581b8..00000000000 --- a/_images/fill_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_demo.png \ No newline at end of file diff --git a/_images/fill_demo1.png b/_images/fill_demo1.png deleted file mode 120000 index 51897d09613..00000000000 --- a/_images/fill_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_demo1.png \ No newline at end of file diff --git a/_images/fill_demo2.png b/_images/fill_demo2.png deleted file mode 120000 index 6f118db8cfd..00000000000 --- a/_images/fill_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_demo2.png \ No newline at end of file diff --git a/_images/fill_demo3.png b/_images/fill_demo3.png deleted file mode 120000 index 2edc4749d05..00000000000 --- a/_images/fill_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_demo3.png \ No newline at end of file diff --git a/_images/fill_demo_features.png b/_images/fill_demo_features.png deleted file mode 120000 index 6b31acebc32..00000000000 --- a/_images/fill_demo_features.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_demo_features.png \ No newline at end of file diff --git a/_images/fill_spiral.png b/_images/fill_spiral.png deleted file mode 120000 index 88872de6c2c..00000000000 --- a/_images/fill_spiral.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fill_spiral.png \ No newline at end of file diff --git a/_images/filled_step_00.png b/_images/filled_step_00.png deleted file mode 120000 index cf11d00ea35..00000000000 --- a/_images/filled_step_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/filled_step_00.png \ No newline at end of file diff --git a/_images/filled_step_001.png b/_images/filled_step_001.png deleted file mode 120000 index 39a7bd52d6e..00000000000 --- a/_images/filled_step_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/filled_step_001.png \ No newline at end of file diff --git a/_images/filled_step_01.png b/_images/filled_step_01.png deleted file mode 120000 index a541e907207..00000000000 --- a/_images/filled_step_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/filled_step_01.png \ No newline at end of file diff --git a/_images/filled_step_011.png b/_images/filled_step_011.png deleted file mode 120000 index 129d2978d49..00000000000 --- a/_images/filled_step_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/filled_step_011.png \ No newline at end of file diff --git a/_images/finance_demo.png b/_images/finance_demo.png deleted file mode 120000 index 19a7c9c1591..00000000000 --- a/_images/finance_demo.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/finance_demo.png \ No newline at end of file diff --git a/_images/finance_work2.png b/_images/finance_work2.png deleted file mode 120000 index 7321aeb3242..00000000000 --- a/_images/finance_work2.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/finance_work2.png \ No newline at end of file diff --git a/_images/finance_work21.png b/_images/finance_work21.png deleted file mode 120000 index 9f49efd4ea9..00000000000 --- a/_images/finance_work21.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/finance_work21.png \ No newline at end of file diff --git a/_images/findobj_demo.png b/_images/findobj_demo.png deleted file mode 120000 index 24312e80c74..00000000000 --- a/_images/findobj_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/findobj_demo.png \ No newline at end of file diff --git a/_images/firefox.png b/_images/firefox.png deleted file mode 120000 index 8101a32b488..00000000000 --- a/_images/firefox.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/firefox.png \ No newline at end of file diff --git a/_images/fonts_demo.png b/_images/fonts_demo.png deleted file mode 120000 index 9e4f817e5c4..00000000000 --- a/_images/fonts_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fonts_demo.png \ No newline at end of file diff --git a/_images/fonts_demo_kw.png b/_images/fonts_demo_kw.png deleted file mode 120000 index e3fb771dc25..00000000000 --- a/_images/fonts_demo_kw.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/fonts_demo_kw.png \ No newline at end of file diff --git a/_images/forking_button.png b/_images/forking_button.png deleted file mode 120000 index d873c40f455..00000000000 --- a/_images/forking_button.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/forking_button.png \ No newline at end of file diff --git a/_images/forward.png b/_images/forward.png deleted file mode 120000 index 802b0b0441f..00000000000 --- a/_images/forward.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/forward.png \ No newline at end of file diff --git a/_images/forward_large.png b/_images/forward_large.png deleted file mode 120000 index d88c32a8512..00000000000 --- a/_images/forward_large.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/forward_large.png \ No newline at end of file diff --git a/_images/ganged_plots.png b/_images/ganged_plots.png deleted file mode 120000 index 95b51af52ca..00000000000 --- a/_images/ganged_plots.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ganged_plots.png \ No newline at end of file diff --git a/_images/geo_demo.png b/_images/geo_demo.png deleted file mode 120000 index 9b8f518cfdd..00000000000 --- a/_images/geo_demo.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/geo_demo.png \ No newline at end of file diff --git a/_images/geo_demo_00.png b/_images/geo_demo_00.png deleted file mode 120000 index 1916eaa6808..00000000000 --- a/_images/geo_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/geo_demo_00.png \ No newline at end of file diff --git a/_images/geo_demo_01.png b/_images/geo_demo_01.png deleted file mode 120000 index c1b92b73900..00000000000 --- a/_images/geo_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/geo_demo_01.png \ No newline at end of file diff --git a/_images/geo_demo_02.png b/_images/geo_demo_02.png deleted file mode 120000 index 9dfaf23ebcb..00000000000 --- a/_images/geo_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/geo_demo_02.png \ No newline at end of file diff --git a/_images/geo_demo_03.png b/_images/geo_demo_03.png deleted file mode 120000 index b4999177629..00000000000 --- a/_images/geo_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/geo_demo_03.png \ No newline at end of file diff --git a/_images/geoplot_nyc_traffic_tickets.png b/_images/geoplot_nyc_traffic_tickets.png deleted file mode 120000 index 8cc91cb4a28..00000000000 --- a/_images/geoplot_nyc_traffic_tickets.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/geoplot_nyc_traffic_tickets.png \ No newline at end of file diff --git a/_images/ggplot.png b/_images/ggplot.png deleted file mode 120000 index 07637d08b4b..00000000000 --- a/_images/ggplot.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/ggplot.png \ No newline at end of file diff --git a/_images/gif_attachment_example.png b/_images/gif_attachment_example.png deleted file mode 120000 index 193e7a11cbf..00000000000 --- a/_images/gif_attachment_example.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/gif_attachment_example.png \ No newline at end of file diff --git a/_images/gold_on_carbon.jpg b/_images/gold_on_carbon.jpg deleted file mode 120000 index e90b4d14e6b..00000000000 --- a/_images/gold_on_carbon.jpg +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/gold_on_carbon.jpg \ No newline at end of file diff --git a/_images/gradient_bar.png b/_images/gradient_bar.png deleted file mode 120000 index fbb48b23db1..00000000000 --- a/_images/gradient_bar.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/gradient_bar.png \ No newline at end of file diff --git a/_images/grayscale_01_00.png b/_images/grayscale_01_00.png deleted file mode 120000 index 39434f55447..00000000000 --- a/_images/grayscale_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/grayscale_01_00.png \ No newline at end of file diff --git a/_images/grayscale_01_01.png b/_images/grayscale_01_01.png deleted file mode 120000 index eb0ec70eb6e..00000000000 --- a/_images/grayscale_01_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/grayscale_01_01.png \ No newline at end of file diff --git a/_images/grayscale_01_02.png b/_images/grayscale_01_02.png deleted file mode 120000 index 9a13a7b3702..00000000000 --- a/_images/grayscale_01_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/grayscale_01_02.png \ No newline at end of file diff --git a/_images/grayscale_01_03.png b/_images/grayscale_01_03.png deleted file mode 120000 index a8d9b9cc0c9..00000000000 --- a/_images/grayscale_01_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/grayscale_01_03.png \ No newline at end of file diff --git a/_images/grayscale_01_04.png b/_images/grayscale_01_04.png deleted file mode 120000 index 585a4fbbc7e..00000000000 --- a/_images/grayscale_01_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/grayscale_01_04.png \ No newline at end of file diff --git a/_images/grayscale_01_05.png b/_images/grayscale_01_05.png deleted file mode 120000 index 01381556434..00000000000 --- a/_images/grayscale_01_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/grayscale_01_05.png \ No newline at end of file diff --git a/_images/griddata_demo.png b/_images/griddata_demo.png deleted file mode 120000 index 8d5089b352d..00000000000 --- a/_images/griddata_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/griddata_demo.png \ No newline at end of file diff --git a/_images/hatch_demo.png b/_images/hatch_demo.png deleted file mode 120000 index 0a42a703f77..00000000000 --- a/_images/hatch_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hatch_demo.png \ No newline at end of file diff --git a/_images/hexbin_demo.png b/_images/hexbin_demo.png deleted file mode 120000 index 26bfd7a2033..00000000000 --- a/_images/hexbin_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hexbin_demo.png \ No newline at end of file diff --git a/_images/hexbin_demo1.png b/_images/hexbin_demo1.png deleted file mode 120000 index 39cc6ba71db..00000000000 --- a/_images/hexbin_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hexbin_demo1.png \ No newline at end of file diff --git a/_images/hexbin_demo2.png b/_images/hexbin_demo2.png deleted file mode 120000 index 383f43a09a7..00000000000 --- a/_images/hexbin_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hexbin_demo2.png \ No newline at end of file diff --git a/_images/hexbin_demo3.png b/_images/hexbin_demo3.png deleted file mode 120000 index 38acb4fc2ae..00000000000 --- a/_images/hexbin_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hexbin_demo3.png \ No newline at end of file diff --git a/_images/highlight_text_examples.png b/_images/highlight_text_examples.png deleted file mode 120000 index b2d7f6a735b..00000000000 --- a/_images/highlight_text_examples.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/highlight_text_examples.png \ No newline at end of file diff --git a/_images/hinton_demo.png b/_images/hinton_demo.png deleted file mode 120000 index 69b57a2d747..00000000000 --- a/_images/hinton_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hinton_demo.png \ No newline at end of file diff --git a/_images/hist2d_demo.png b/_images/hist2d_demo.png deleted file mode 120000 index ba49ff9047b..00000000000 --- a/_images/hist2d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hist2d_demo.png \ No newline at end of file diff --git a/_images/hist2d_demo1.png b/_images/hist2d_demo1.png deleted file mode 120000 index 61829f0d823..00000000000 --- a/_images/hist2d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hist2d_demo1.png \ No newline at end of file diff --git a/_images/hist2d_demo2.png b/_images/hist2d_demo2.png deleted file mode 120000 index c6085cfb52b..00000000000 --- a/_images/hist2d_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hist2d_demo2.png \ No newline at end of file diff --git a/_images/hist2d_log_demo.png b/_images/hist2d_log_demo.png deleted file mode 120000 index c2c43ea791d..00000000000 --- a/_images/hist2d_log_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hist2d_log_demo.png \ No newline at end of file diff --git a/_images/hist3d_demo.png b/_images/hist3d_demo.png deleted file mode 120000 index 620b26d6516..00000000000 --- a/_images/hist3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hist3d_demo.png \ No newline at end of file diff --git a/_images/hist_colormapped.png b/_images/hist_colormapped.png deleted file mode 120000 index ec7fbe58204..00000000000 --- a/_images/hist_colormapped.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/hist_colormapped.png \ No newline at end of file diff --git a/_images/histogram_demo_cumulative.png b/_images/histogram_demo_cumulative.png deleted file mode 120000 index 4ad2e38087d..00000000000 --- a/_images/histogram_demo_cumulative.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_demo_cumulative.png \ No newline at end of file diff --git a/_images/histogram_demo_features.png b/_images/histogram_demo_features.png deleted file mode 120000 index 959415b368d..00000000000 --- a/_images/histogram_demo_features.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_demo_features.png \ No newline at end of file diff --git a/_images/histogram_demo_features1.png b/_images/histogram_demo_features1.png deleted file mode 120000 index 70a817b4ef4..00000000000 --- a/_images/histogram_demo_features1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_demo_features1.png \ No newline at end of file diff --git a/_images/histogram_demo_features2.png b/_images/histogram_demo_features2.png deleted file mode 120000 index d67bf485053..00000000000 --- a/_images/histogram_demo_features2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_demo_features2.png \ No newline at end of file diff --git a/_images/histogram_demo_features3.png b/_images/histogram_demo_features3.png deleted file mode 120000 index a9e3024a313..00000000000 --- a/_images/histogram_demo_features3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_demo_features3.png \ No newline at end of file diff --git a/_images/histogram_demo_histtypes.png b/_images/histogram_demo_histtypes.png deleted file mode 120000 index c7304df1037..00000000000 --- a/_images/histogram_demo_histtypes.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_demo_histtypes.png \ No newline at end of file diff --git a/_images/histogram_demo_multihist.png b/_images/histogram_demo_multihist.png deleted file mode 120000 index 0af6cb14ee0..00000000000 --- a/_images/histogram_demo_multihist.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_demo_multihist.png \ No newline at end of file diff --git a/_images/histogram_path.png b/_images/histogram_path.png deleted file mode 120000 index 3fbe681b51e..00000000000 --- a/_images/histogram_path.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/histogram_path.png \ No newline at end of file diff --git a/_images/histogram_path_00_00.png b/_images/histogram_path_00_00.png deleted file mode 120000 index 5aaa60537e2..00000000000 --- a/_images/histogram_path_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/histogram_path_00_00.png \ No newline at end of file diff --git a/_images/histogram_path_demo.png b/_images/histogram_path_demo.png deleted file mode 120000 index 58954112e04..00000000000 --- a/_images/histogram_path_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_path_demo.png \ No newline at end of file diff --git a/_images/histogram_path_demo1.png b/_images/histogram_path_demo1.png deleted file mode 120000 index cde6cee21be..00000000000 --- a/_images/histogram_path_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_path_demo1.png \ No newline at end of file diff --git a/_images/histogram_percent_demo.png b/_images/histogram_percent_demo.png deleted file mode 120000 index efdfef69098..00000000000 --- a/_images/histogram_percent_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/histogram_percent_demo.png \ No newline at end of file diff --git a/_images/history-1.png b/_images/history-1.png deleted file mode 120000 index 66f563c2f55..00000000000 --- a/_images/history-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/history-1.png \ No newline at end of file diff --git a/_images/history-2.png b/_images/history-2.png deleted file mode 120000 index b4e27513c4c..00000000000 --- a/_images/history-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/history-2.png \ No newline at end of file diff --git a/_images/holoviews.png b/_images/holoviews.png deleted file mode 120000 index 133610b5487..00000000000 --- a/_images/holoviews.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/holoviews.png \ No newline at end of file diff --git a/_images/home.png b/_images/home.png deleted file mode 120000 index 66aff8ebcf7..00000000000 --- a/_images/home.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/home.png \ No newline at end of file diff --git a/_images/home_large.png b/_images/home_large.png deleted file mode 120000 index ea4651cc6c9..00000000000 --- a/_images/home_large.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/home_large.png \ No newline at end of file diff --git a/_images/howto_faq-1.png b/_images/howto_faq-1.png deleted file mode 120000 index e0f44fe2b87..00000000000 --- a/_images/howto_faq-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/howto_faq-1.png \ No newline at end of file diff --git a/_images/image_clip_path.png b/_images/image_clip_path.png deleted file mode 120000 index 880255cabbf..00000000000 --- a/_images/image_clip_path.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_clip_path.png \ No newline at end of file diff --git a/_images/image_demo.png b/_images/image_demo.png deleted file mode 120000 index b74a6ad293e..00000000000 --- a/_images/image_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_demo.png \ No newline at end of file diff --git a/_images/image_demo1.png b/_images/image_demo1.png deleted file mode 120000 index 7f831c152c0..00000000000 --- a/_images/image_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_demo1.png \ No newline at end of file diff --git a/_images/image_demo2.png b/_images/image_demo2.png deleted file mode 120000 index c9b9ab64366..00000000000 --- a/_images/image_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_demo2.png \ No newline at end of file diff --git a/_images/image_demo21.png b/_images/image_demo21.png deleted file mode 120000 index 7ff14f5e41b..00000000000 --- a/_images/image_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/image_demo21.png \ No newline at end of file diff --git a/_images/image_demo3.png b/_images/image_demo3.png deleted file mode 120000 index fc5671455bd..00000000000 --- a/_images/image_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_demo3.png \ No newline at end of file diff --git a/_images/image_demo4.png b/_images/image_demo4.png deleted file mode 120000 index 8a4b7d59222..00000000000 --- a/_images/image_demo4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_demo4.png \ No newline at end of file diff --git a/_images/image_demo_clip_path.png b/_images/image_demo_clip_path.png deleted file mode 120000 index 1356c18bf88..00000000000 --- a/_images/image_demo_clip_path.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_demo_clip_path.png \ No newline at end of file diff --git a/_images/image_interp_00.png b/_images/image_interp_00.png deleted file mode 120000 index 0e4e212d4a3..00000000000 --- a/_images/image_interp_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_interp_00.png \ No newline at end of file diff --git a/_images/image_interp_01.png b/_images/image_interp_01.png deleted file mode 120000 index fdabbb540e8..00000000000 --- a/_images/image_interp_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_interp_01.png \ No newline at end of file diff --git a/_images/image_interp_02.png b/_images/image_interp_02.png deleted file mode 120000 index 7d4c71012c4..00000000000 --- a/_images/image_interp_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_interp_02.png \ No newline at end of file diff --git a/_images/image_masked.png b/_images/image_masked.png deleted file mode 120000 index 6f755429bee..00000000000 --- a/_images/image_masked.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_masked.png \ No newline at end of file diff --git a/_images/image_nonuniform.png b/_images/image_nonuniform.png deleted file mode 120000 index c311ae1c9c9..00000000000 --- a/_images/image_nonuniform.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_nonuniform.png \ No newline at end of file diff --git a/_images/image_origin.png b/_images/image_origin.png deleted file mode 120000 index faead6eaa50..00000000000 --- a/_images/image_origin.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_origin.png \ No newline at end of file diff --git a/_images/image_slices_viewer.png b/_images/image_slices_viewer.png deleted file mode 120000 index 150658c141a..00000000000 --- a/_images/image_slices_viewer.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_slices_viewer.png \ No newline at end of file diff --git a/_images/image_tutorial-1.png b/_images/image_tutorial-1.png deleted file mode 120000 index 93b83585b50..00000000000 --- a/_images/image_tutorial-1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-1.png \ No newline at end of file diff --git a/_images/image_tutorial-10.png b/_images/image_tutorial-10.png deleted file mode 120000 index 8989b308572..00000000000 --- a/_images/image_tutorial-10.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-10.png \ No newline at end of file diff --git a/_images/image_tutorial-2.png b/_images/image_tutorial-2.png deleted file mode 120000 index e15f48cffc4..00000000000 --- a/_images/image_tutorial-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-2.png \ No newline at end of file diff --git a/_images/image_tutorial-3.png b/_images/image_tutorial-3.png deleted file mode 120000 index b604494fd07..00000000000 --- a/_images/image_tutorial-3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-3.png \ No newline at end of file diff --git a/_images/image_tutorial-4.png b/_images/image_tutorial-4.png deleted file mode 120000 index 9eeb08929b6..00000000000 --- a/_images/image_tutorial-4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-4.png \ No newline at end of file diff --git a/_images/image_tutorial-5.png b/_images/image_tutorial-5.png deleted file mode 120000 index 907ca9e80b3..00000000000 --- a/_images/image_tutorial-5.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-5.png \ No newline at end of file diff --git a/_images/image_tutorial-6.png b/_images/image_tutorial-6.png deleted file mode 120000 index 34088a86c53..00000000000 --- a/_images/image_tutorial-6.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-6.png \ No newline at end of file diff --git a/_images/image_tutorial-7.png b/_images/image_tutorial-7.png deleted file mode 120000 index 7dcf92bb1c8..00000000000 --- a/_images/image_tutorial-7.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-7.png \ No newline at end of file diff --git a/_images/image_tutorial-8.png b/_images/image_tutorial-8.png deleted file mode 120000 index 1b971235c4c..00000000000 --- a/_images/image_tutorial-8.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-8.png \ No newline at end of file diff --git a/_images/image_tutorial-9.png b/_images/image_tutorial-9.png deleted file mode 120000 index f950e139f7a..00000000000 --- a/_images/image_tutorial-9.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_tutorial-9.png \ No newline at end of file diff --git a/_images/image_zcoord.png b/_images/image_zcoord.png deleted file mode 120000 index 650b5a72e8f..00000000000 --- a/_images/image_zcoord.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/image_zcoord.png \ No newline at end of file diff --git a/_images/index-1.png b/_images/index-1.png deleted file mode 120000 index 2c00aea9512..00000000000 --- a/_images/index-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/index-1.png \ No newline at end of file diff --git a/_images/index-11.png b/_images/index-11.png deleted file mode 120000 index 025183656cf..00000000000 --- a/_images/index-11.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/index-11.png \ No newline at end of file diff --git a/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png b/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png deleted file mode 120000 index c2cb0b2682e..00000000000 --- a/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png \ No newline at end of file diff --git a/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png.map b/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png.map deleted file mode 120000 index 451356594e6..00000000000 --- a/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-0ce4ad2f4c1eea8ff83d19deed7285b2d37b5373.png.map \ No newline at end of file diff --git a/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png b/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png deleted file mode 120000 index 48b60c6ca1d..00000000000 --- a/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png \ No newline at end of file diff --git a/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png.map b/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png.map deleted file mode 120000 index 831a83bfadd..00000000000 --- a/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/inheritance-0fca408d7101746c7ae3e48f0b136bceb93f282b.png.map \ No newline at end of file diff --git a/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png b/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png deleted file mode 120000 index 642f398d0ca..00000000000 --- a/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png \ No newline at end of file diff --git a/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png.map b/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png.map deleted file mode 120000 index 58e0397cc3a..00000000000 --- a/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-103f5d41a007a1e522f618e424e0b0b2cd7bb202.png.map \ No newline at end of file diff --git a/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png b/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png deleted file mode 120000 index 5a578fa5936..00000000000 --- a/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png \ No newline at end of file diff --git a/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png.map b/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png.map deleted file mode 120000 index 3532b1bfb2a..00000000000 --- a/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-13a3c62950f76a33377cd3837bba6b85b56cbd75.png.map \ No newline at end of file diff --git a/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png b/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png deleted file mode 120000 index e8a70d9a382..00000000000 --- a/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png \ No newline at end of file diff --git a/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png.map b/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png.map deleted file mode 120000 index aff7c90055c..00000000000 --- a/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-1650236cab2272f730fe25283388bd0e030ca9e7.png.map \ No newline at end of file diff --git a/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png b/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png deleted file mode 120000 index 60c84f8f6ee..00000000000 --- a/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png \ No newline at end of file diff --git a/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png.map b/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png.map deleted file mode 120000 index 3a21e8048c8..00000000000 --- a/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-17f6bb8a86dccb6f6064b90758fa11f4fb9d1f45.png.map \ No newline at end of file diff --git a/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png b/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png deleted file mode 120000 index 56aa3ae3d22..00000000000 --- a/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png \ No newline at end of file diff --git a/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png.map b/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png.map deleted file mode 120000 index 15b0037d5b8..00000000000 --- a/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png.map +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-1ab6292a2d3e81c4b9fc9a3a9fb212e06390d7c0.png.map \ No newline at end of file diff --git a/_images/inheritance-1d04fc4dfed2e71a53c9f153f1f95504ad08feba.svg b/_images/inheritance-1d04fc4dfed2e71a53c9f153f1f95504ad08feba.svg deleted file mode 120000 index 00e9fde02b0..00000000000 --- a/_images/inheritance-1d04fc4dfed2e71a53c9f153f1f95504ad08feba.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-1d04fc4dfed2e71a53c9f153f1f95504ad08feba.svg \ No newline at end of file diff --git a/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png b/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png deleted file mode 120000 index acb70889946..00000000000 --- a/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png \ No newline at end of file diff --git a/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png.map b/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png.map deleted file mode 120000 index 26c41b09bf8..00000000000 --- a/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-1d05647d989bf64e3e438a24b19fee19432184da.png.map \ No newline at end of file diff --git a/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png b/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png deleted file mode 120000 index df3becbe8f5..00000000000 --- a/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png \ No newline at end of file diff --git a/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png.map b/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png.map deleted file mode 120000 index ff8057df66f..00000000000 --- a/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-1ef34ddf3974adc41e36bd2a6c462e0d423f853b.png.map \ No newline at end of file diff --git a/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png b/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png deleted file mode 120000 index 7ebe078e82b..00000000000 --- a/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png \ No newline at end of file diff --git a/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png.map b/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png.map deleted file mode 120000 index 0afe2ae761c..00000000000 --- a/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/inheritance-1fb405f1505d452ccbd0c59837c02978ee635575.png.map \ No newline at end of file diff --git a/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png b/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png deleted file mode 120000 index a3eef5b5011..00000000000 --- a/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png \ No newline at end of file diff --git a/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png.map b/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png.map deleted file mode 120000 index c6364ec20dc..00000000000 --- a/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-2711bf780ff93de2f8615de66fd77b08924a05a4.png.map \ No newline at end of file diff --git a/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png b/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png deleted file mode 120000 index 425ecf0f831..00000000000 --- a/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png \ No newline at end of file diff --git a/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png.map b/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png.map deleted file mode 120000 index 211680fcc3b..00000000000 --- a/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-31c6483a1a8a734299322ca6ff6418b869fc4b18.png.map \ No newline at end of file diff --git a/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png b/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png deleted file mode 120000 index 958aac0b876..00000000000 --- a/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png \ No newline at end of file diff --git a/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png.map b/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png.map deleted file mode 120000 index a72052707d3..00000000000 --- a/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_images/inheritance-3273db71c14d687a9eb16fd50c9388adcfd95170.png.map \ No newline at end of file diff --git a/_images/inheritance-33a38599783c90d81cd37faf4aee72822ea95043.svg b/_images/inheritance-33a38599783c90d81cd37faf4aee72822ea95043.svg deleted file mode 120000 index 124a4d637d9..00000000000 --- a/_images/inheritance-33a38599783c90d81cd37faf4aee72822ea95043.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-33a38599783c90d81cd37faf4aee72822ea95043.svg \ No newline at end of file diff --git a/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png b/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png deleted file mode 120000 index 4f8b9c8bbd7..00000000000 --- a/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png \ No newline at end of file diff --git a/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png.map b/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png.map deleted file mode 120000 index 3a2f2cf5c65..00000000000 --- a/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/inheritance-36ae735e98a0b6edf8f91ba8d8c0103247c5195c.png.map \ No newline at end of file diff --git a/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png b/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png deleted file mode 120000 index df031fa4753..00000000000 --- a/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png \ No newline at end of file diff --git a/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png.map b/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png.map deleted file mode 120000 index d5a1259e930..00000000000 --- a/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-36e5e0a74a56f39725340df3247c8da57f5ddeff.png.map \ No newline at end of file diff --git a/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png b/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png deleted file mode 120000 index ef86d43af92..00000000000 --- a/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png \ No newline at end of file diff --git a/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png.map b/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png.map deleted file mode 120000 index 23900a3ee8d..00000000000 --- a/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-3bf40f082f0e9a6ed7f1dda6a95ffb4415e7d80a.png.map \ No newline at end of file diff --git a/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png b/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png deleted file mode 120000 index 99eb6313061..00000000000 --- a/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png \ No newline at end of file diff --git a/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png.map b/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png.map deleted file mode 120000 index 57250cb556f..00000000000 --- a/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-3d3782cdd2b1de4db70e97701ced4ca1e7396315.png.map \ No newline at end of file diff --git a/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png b/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png deleted file mode 120000 index b5a2bd61910..00000000000 --- a/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png \ No newline at end of file diff --git a/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png.map b/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png.map deleted file mode 120000 index 7a476e98014..00000000000 --- a/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/inheritance-3d770d91db12b7ba71313f03e0382aa6506036be.png.map \ No newline at end of file diff --git a/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png b/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png deleted file mode 120000 index 593d6b64a83..00000000000 --- a/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png \ No newline at end of file diff --git a/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png.map b/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png.map deleted file mode 120000 index 38265ab0be5..00000000000 --- a/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-3f7a0a10c2c9828d0c84862c0bbec10da6b63837.png.map \ No newline at end of file diff --git a/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png b/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png deleted file mode 120000 index 370cad08ce9..00000000000 --- a/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png \ No newline at end of file diff --git a/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png.map b/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png.map deleted file mode 120000 index 807b26acc18..00000000000 --- a/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-3fbe1b6a22b3e88fa6432be7fede6893b203a2e2.png.map \ No newline at end of file diff --git a/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png b/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png deleted file mode 120000 index 172342fe5b8..00000000000 --- a/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png \ No newline at end of file diff --git a/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png.map b/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png.map deleted file mode 120000 index 9411c353a4d..00000000000 --- a/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-409f11d57e50fb0b8311c9d56470053c8aaa2fd2.png.map \ No newline at end of file diff --git a/_images/inheritance-44b2506e54126e27a28b5c0544e5036f5e6c0bf7.svg b/_images/inheritance-44b2506e54126e27a28b5c0544e5036f5e6c0bf7.svg deleted file mode 120000 index 5dfd8930cbd..00000000000 --- a/_images/inheritance-44b2506e54126e27a28b5c0544e5036f5e6c0bf7.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-44b2506e54126e27a28b5c0544e5036f5e6c0bf7.svg \ No newline at end of file diff --git a/_images/inheritance-49c26890a0b530714c1e4bb891c029cfde8bdeeb.svg b/_images/inheritance-49c26890a0b530714c1e4bb891c029cfde8bdeeb.svg deleted file mode 120000 index 26d57d06b3a..00000000000 --- a/_images/inheritance-49c26890a0b530714c1e4bb891c029cfde8bdeeb.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-49c26890a0b530714c1e4bb891c029cfde8bdeeb.svg \ No newline at end of file diff --git a/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png b/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png deleted file mode 120000 index 84d7adf8b08..00000000000 --- a/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.1/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png \ No newline at end of file diff --git a/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png.map b/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png.map deleted file mode 120000 index 8ceabe66c65..00000000000 --- a/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.5.1/_images/inheritance-4a48ad6385b6e10a16d1817e683c267b120be15a.png.map \ No newline at end of file diff --git a/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png b/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png deleted file mode 120000 index 21e97c16eb9..00000000000 --- a/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png \ No newline at end of file diff --git a/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png.map b/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png.map deleted file mode 120000 index 1951cb20da2..00000000000 --- a/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-4aaa0ab9afa4395835eeb0b604debd878b2839b1.png.map \ No newline at end of file diff --git a/_images/inheritance-50eb5cc14d469250cc4886d2c31d665de5a0f46f.svg b/_images/inheritance-50eb5cc14d469250cc4886d2c31d665de5a0f46f.svg deleted file mode 120000 index 8fb1af4d198..00000000000 --- a/_images/inheritance-50eb5cc14d469250cc4886d2c31d665de5a0f46f.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-50eb5cc14d469250cc4886d2c31d665de5a0f46f.svg \ No newline at end of file diff --git a/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png b/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png deleted file mode 120000 index cfa1ee84802..00000000000 --- a/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png \ No newline at end of file diff --git a/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png.map b/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png.map deleted file mode 120000 index 8919092cd9c..00000000000 --- a/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-50f63fede88c32059ff6460c4a9c89a5f3850a4a.png.map \ No newline at end of file diff --git a/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png b/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png deleted file mode 120000 index 6eff1ffb0ee..00000000000 --- a/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png \ No newline at end of file diff --git a/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png.map b/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png.map deleted file mode 120000 index 4bcc4ed06b6..00000000000 --- a/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-51fdcb8e9ba3bafa403698672d46c33e55d8eb3b.png.map \ No newline at end of file diff --git a/_images/inheritance-5288ca60e6bf3fe3b2e60396757635b9da380f1f.svg b/_images/inheritance-5288ca60e6bf3fe3b2e60396757635b9da380f1f.svg deleted file mode 120000 index bcc01930ad0..00000000000 --- a/_images/inheritance-5288ca60e6bf3fe3b2e60396757635b9da380f1f.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-5288ca60e6bf3fe3b2e60396757635b9da380f1f.svg \ No newline at end of file diff --git a/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png b/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png deleted file mode 120000 index 5f1d8d34067..00000000000 --- a/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png \ No newline at end of file diff --git a/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png.map b/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png.map deleted file mode 120000 index b03778e7aff..00000000000 --- a/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-5401b7fae0b81f8b4b71961b2444a91b857670a2.png.map \ No newline at end of file diff --git a/_images/inheritance-57983688a02088df07e32f9878643218b4e676bb.svg b/_images/inheritance-57983688a02088df07e32f9878643218b4e676bb.svg deleted file mode 120000 index e6ca0caab15..00000000000 --- a/_images/inheritance-57983688a02088df07e32f9878643218b4e676bb.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-57983688a02088df07e32f9878643218b4e676bb.svg \ No newline at end of file diff --git a/_images/inheritance-5b08e53512d88f1aabde6b327a4658d4f7c7d6a6.svg b/_images/inheritance-5b08e53512d88f1aabde6b327a4658d4f7c7d6a6.svg deleted file mode 120000 index 647c9a1e17f..00000000000 --- a/_images/inheritance-5b08e53512d88f1aabde6b327a4658d4f7c7d6a6.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-5b08e53512d88f1aabde6b327a4658d4f7c7d6a6.svg \ No newline at end of file diff --git a/_images/inheritance-6320ac7045f2f182aae66347f4dcc5bd700b96e3.svg b/_images/inheritance-6320ac7045f2f182aae66347f4dcc5bd700b96e3.svg deleted file mode 120000 index 2c7ab766ae1..00000000000 --- a/_images/inheritance-6320ac7045f2f182aae66347f4dcc5bd700b96e3.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-6320ac7045f2f182aae66347f4dcc5bd700b96e3.svg \ No newline at end of file diff --git a/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png b/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png deleted file mode 120000 index e108f293b10..00000000000 --- a/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png \ No newline at end of file diff --git a/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png.map b/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png.map deleted file mode 120000 index e8999839837..00000000000 --- a/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-65ce2e47a854f0550975f5a2d9a9335356c2af71.png.map \ No newline at end of file diff --git a/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png b/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png deleted file mode 120000 index 0a397c74bcd..00000000000 --- a/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png \ No newline at end of file diff --git a/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png.map b/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png.map deleted file mode 120000 index 0e32172f074..00000000000 --- a/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-6754a4749e8fcb4c370eb0cc2ce674eed0f50813.png.map \ No newline at end of file diff --git a/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png b/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png deleted file mode 120000 index 80f90809492..00000000000 --- a/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png \ No newline at end of file diff --git a/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png.map b/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png.map deleted file mode 120000 index c14a946cd57..00000000000 --- a/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-69f9a1abf2712bec7e88ed37af360f8ba073f01f.png.map \ No newline at end of file diff --git a/_images/inheritance-6a4e608e70935e864a017157af5a6c8ee77ffe9b.svg b/_images/inheritance-6a4e608e70935e864a017157af5a6c8ee77ffe9b.svg deleted file mode 120000 index 2751acbf9d6..00000000000 --- a/_images/inheritance-6a4e608e70935e864a017157af5a6c8ee77ffe9b.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-6a4e608e70935e864a017157af5a6c8ee77ffe9b.svg \ No newline at end of file diff --git a/_images/inheritance-6ccaf85c9ec66665298701479032ae1db0890bf9.svg b/_images/inheritance-6ccaf85c9ec66665298701479032ae1db0890bf9.svg deleted file mode 120000 index 3f8011eef39..00000000000 --- a/_images/inheritance-6ccaf85c9ec66665298701479032ae1db0890bf9.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-6ccaf85c9ec66665298701479032ae1db0890bf9.svg \ No newline at end of file diff --git a/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png b/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png deleted file mode 120000 index 0af40558d9c..00000000000 --- a/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png \ No newline at end of file diff --git a/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png.map b/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png.map deleted file mode 120000 index c158c04e7c0..00000000000 --- a/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-71e1cc018326a86b5d68f01aa5156f2e8fc7e029.png.map \ No newline at end of file diff --git a/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png b/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png deleted file mode 120000 index e133f21957b..00000000000 --- a/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png \ No newline at end of file diff --git a/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png.map b/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png.map deleted file mode 120000 index 990b67a525a..00000000000 --- a/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-72049f0220fab84940e5f11e8367549363b94d2e.png.map \ No newline at end of file diff --git a/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png b/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png deleted file mode 120000 index f5545871921..00000000000 --- a/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png \ No newline at end of file diff --git a/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png.map b/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png.map deleted file mode 120000 index 854a4c6b28f..00000000000 --- a/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-73282f726487bb3937346648db33b3d392d515f6.png.map \ No newline at end of file diff --git a/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png b/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png deleted file mode 120000 index 6057061a22d..00000000000 --- a/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png \ No newline at end of file diff --git a/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png.map b/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png.map deleted file mode 120000 index 1cd1bab36f7..00000000000 --- a/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-746d7ad5b4a3ecbadc51ab040f5d995f5c6ecc71.png.map \ No newline at end of file diff --git a/_images/inheritance-748bb210e73164f4c76b699ed9e12b12ea75670d.svg b/_images/inheritance-748bb210e73164f4c76b699ed9e12b12ea75670d.svg deleted file mode 120000 index 4b320d151e3..00000000000 --- a/_images/inheritance-748bb210e73164f4c76b699ed9e12b12ea75670d.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-748bb210e73164f4c76b699ed9e12b12ea75670d.svg \ No newline at end of file diff --git a/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png b/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png deleted file mode 120000 index 66ab27ded85..00000000000 --- a/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png \ No newline at end of file diff --git a/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png.map b/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png.map deleted file mode 120000 index 6253156f777..00000000000 --- a/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-74e59709dd0a3339a6ca9fb56bf68a8653af3a07.png.map \ No newline at end of file diff --git a/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png b/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png deleted file mode 120000 index 040d7688fa7..00000000000 --- a/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png \ No newline at end of file diff --git a/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png.map b/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png.map deleted file mode 120000 index 4097d629763..00000000000 --- a/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-75a20bb8fc6537f7a657c05e74d6803bf610225a.png.map \ No newline at end of file diff --git a/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png b/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png deleted file mode 120000 index 1bce7a3e491..00000000000 --- a/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png \ No newline at end of file diff --git a/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png.map b/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png.map deleted file mode 120000 index 7075b88ab3f..00000000000 --- a/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-77c10406816042b7e0d230dde6ddbcba9364e068.png.map \ No newline at end of file diff --git a/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png b/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png deleted file mode 120000 index e7373b1f50a..00000000000 --- a/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png \ No newline at end of file diff --git a/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png.map b/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png.map deleted file mode 120000 index 4c508208744..00000000000 --- a/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-78c46b99ccb4b1b92060aec14054863a6b1c26a6.png.map \ No newline at end of file diff --git a/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png b/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png deleted file mode 120000 index f6a231db217..00000000000 --- a/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png \ No newline at end of file diff --git a/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png.map b/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png.map deleted file mode 120000 index 62e3da532a1..00000000000 --- a/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-7bec7b046171a9da34c9835681fde3248f30f7ac.png.map \ No newline at end of file diff --git a/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png b/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png deleted file mode 120000 index e8e9519ba33..00000000000 --- a/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png \ No newline at end of file diff --git a/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png.map b/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png.map deleted file mode 120000 index 4e1f76a3cb3..00000000000 --- a/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-7cb5b23aab984ea1bec93197eb094f726f9f3799.png.map \ No newline at end of file diff --git a/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png b/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png deleted file mode 120000 index db420b5eb53..00000000000 --- a/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png \ No newline at end of file diff --git a/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png.map b/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png.map deleted file mode 120000 index 5c1dccfe361..00000000000 --- a/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-7cc2d93abd838fa5538aa1c5926958d029f9ee5c.png.map \ No newline at end of file diff --git a/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png b/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png deleted file mode 120000 index 4f395801317..00000000000 --- a/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png \ No newline at end of file diff --git a/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png.map b/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png.map deleted file mode 120000 index da2c9059bac..00000000000 --- a/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-7e1acb68fe02206895f0a96165a2cb10ea670753.png.map \ No newline at end of file diff --git a/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png b/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png deleted file mode 120000 index e45be062539..00000000000 --- a/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png \ No newline at end of file diff --git a/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png.map b/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png.map deleted file mode 120000 index 8f6bb64cf34..00000000000 --- a/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-7ef878fcd968b6d11d825d5a2dc0de6489577760.png.map \ No newline at end of file diff --git a/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png b/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png deleted file mode 120000 index 5eb13b39101..00000000000 --- a/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png \ No newline at end of file diff --git a/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png.map b/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png.map deleted file mode 120000 index eadbf986dd5..00000000000 --- a/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png.map +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-8652aebd15e00f50cded86c197d02a338ec8cb3b.png.map \ No newline at end of file diff --git a/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png b/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png deleted file mode 120000 index 7670e6fc84f..00000000000 --- a/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png \ No newline at end of file diff --git a/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png.map b/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png.map deleted file mode 120000 index b4f4f1614a3..00000000000 --- a/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-8bd33f6e1e1382a4c968f525e6534e0fa0cbe14e.png.map \ No newline at end of file diff --git a/_images/inheritance-8d1e47eeb0addfe57263800c49ed9230baca0960.svg b/_images/inheritance-8d1e47eeb0addfe57263800c49ed9230baca0960.svg deleted file mode 120000 index 5662d925c1b..00000000000 --- a/_images/inheritance-8d1e47eeb0addfe57263800c49ed9230baca0960.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-8d1e47eeb0addfe57263800c49ed9230baca0960.svg \ No newline at end of file diff --git a/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png b/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png deleted file mode 120000 index 8fede2bb079..00000000000 --- a/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png \ No newline at end of file diff --git a/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png.map b/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png.map deleted file mode 120000 index 7a6b8e6f3d3..00000000000 --- a/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-8d519fc9857d1b777f793d1708b942a4403cfde8.png.map \ No newline at end of file diff --git a/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png b/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png deleted file mode 120000 index 1af515407ec..00000000000 --- a/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png \ No newline at end of file diff --git a/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png.map b/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png.map deleted file mode 120000 index ddd422d79f3..00000000000 --- a/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/inheritance-956db63b3af69f917cad442d65334052d9c59fed.png.map \ No newline at end of file diff --git a/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png b/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png deleted file mode 120000 index 870aaa7840a..00000000000 --- a/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png \ No newline at end of file diff --git a/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png.map b/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png.map deleted file mode 120000 index b78b61cae20..00000000000 --- a/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/inheritance-96cf6055c86fad640da1309d2143273d036f2e54.png.map \ No newline at end of file diff --git a/_images/inheritance-9cf3b04035010a600653b1b41148c9a4774715d8.svg b/_images/inheritance-9cf3b04035010a600653b1b41148c9a4774715d8.svg deleted file mode 120000 index e547137bcf5..00000000000 --- a/_images/inheritance-9cf3b04035010a600653b1b41148c9a4774715d8.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-9cf3b04035010a600653b1b41148c9a4774715d8.svg \ No newline at end of file diff --git a/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png b/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png deleted file mode 120000 index ef72ce3f45a..00000000000 --- a/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png \ No newline at end of file diff --git a/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png.map b/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png.map deleted file mode 120000 index 8b61b853f20..00000000000 --- a/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-9d71a95f6d3ec40d1246549117ad7959f7b88c66.png.map \ No newline at end of file diff --git a/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png b/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png deleted file mode 120000 index 278304a54d7..00000000000 --- a/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png \ No newline at end of file diff --git a/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png.map b/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png.map deleted file mode 120000 index 8d5b88420bd..00000000000 --- a/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-aad0c77a9e67c7c9943c4126a199bb8c29a5194d.png.map \ No newline at end of file diff --git a/_images/inheritance-ab8daaad6645a94307d5ceb2099c89025682da55.svg b/_images/inheritance-ab8daaad6645a94307d5ceb2099c89025682da55.svg deleted file mode 120000 index 157642d7e4b..00000000000 --- a/_images/inheritance-ab8daaad6645a94307d5ceb2099c89025682da55.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-ab8daaad6645a94307d5ceb2099c89025682da55.svg \ No newline at end of file diff --git a/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png b/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png deleted file mode 120000 index ecc52ae2351..00000000000 --- a/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png \ No newline at end of file diff --git a/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png.map b/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png.map deleted file mode 120000 index 39f3c510d61..00000000000 --- a/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-ad605e356ce7ba073658bf7a805a892ab02923de.png.map \ No newline at end of file diff --git a/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png b/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png deleted file mode 120000 index 400f4c0f65c..00000000000 --- a/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png \ No newline at end of file diff --git a/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png.map b/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png.map deleted file mode 120000 index 85293b48727..00000000000 --- a/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-affbd99b9440798c97774c4210e98ac086de4791.png.map \ No newline at end of file diff --git a/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png b/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png deleted file mode 120000 index bf081971253..00000000000 --- a/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.1/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png \ No newline at end of file diff --git a/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png.map b/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png.map deleted file mode 120000 index 2fb1a56944c..00000000000 --- a/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.1/_images/inheritance-b12a398b08039fbb54e0dbb3eb616f39e9d9c069.png.map \ No newline at end of file diff --git a/_images/inheritance-b240119cee16ee4aacb6197ec6fd82813a77a75f.svg b/_images/inheritance-b240119cee16ee4aacb6197ec6fd82813a77a75f.svg deleted file mode 120000 index 508eee09e97..00000000000 --- a/_images/inheritance-b240119cee16ee4aacb6197ec6fd82813a77a75f.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-b240119cee16ee4aacb6197ec6fd82813a77a75f.svg \ No newline at end of file diff --git a/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png b/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png deleted file mode 120000 index 5f8f861d324..00000000000 --- a/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png \ No newline at end of file diff --git a/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png.map b/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png.map deleted file mode 120000 index 7b254552048..00000000000 --- a/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-b2cb8e8ced1d404ee5daf377751a27c3ca543724.png.map \ No newline at end of file diff --git a/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png b/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png deleted file mode 120000 index d1ed23bb1de..00000000000 --- a/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png \ No newline at end of file diff --git a/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png.map b/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png.map deleted file mode 120000 index f71aeceeff1..00000000000 --- a/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-b32eae515696c44df5b59286fab8aa11ea18e9f3.png.map \ No newline at end of file diff --git a/_images/inheritance-b814d92f3d60369e031ba1d5d1cb257eb559f405.svg b/_images/inheritance-b814d92f3d60369e031ba1d5d1cb257eb559f405.svg deleted file mode 120000 index 656f26ab5e8..00000000000 --- a/_images/inheritance-b814d92f3d60369e031ba1d5d1cb257eb559f405.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-b814d92f3d60369e031ba1d5d1cb257eb559f405.svg \ No newline at end of file diff --git a/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png b/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png deleted file mode 120000 index 05d6b9dab0b..00000000000 --- a/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png \ No newline at end of file diff --git a/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png.map b/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png.map deleted file mode 120000 index e5e2f6a5aad..00000000000 --- a/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-b991114b069bca278be73d5c772c9623048fb028.png.map \ No newline at end of file diff --git a/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png b/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png deleted file mode 120000 index a245a992b12..00000000000 --- a/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.1/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png \ No newline at end of file diff --git a/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png.map b/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png.map deleted file mode 120000 index 0ef1139cacf..00000000000 --- a/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.1/_images/inheritance-babd1a975143fb4b163471a4db63a196843e9cf0.png.map \ No newline at end of file diff --git a/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png b/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png deleted file mode 120000 index 304c7707a80..00000000000 --- a/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png \ No newline at end of file diff --git a/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png.map b/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png.map deleted file mode 120000 index 7009e83e13d..00000000000 --- a/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-bc3b85d7b4e6f17188dcb3276538ad7632f1bfb9.png.map \ No newline at end of file diff --git a/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png b/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png deleted file mode 120000 index 2af6815af80..00000000000 --- a/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png \ No newline at end of file diff --git a/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png.map b/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png.map deleted file mode 120000 index 6586ebf66c0..00000000000 --- a/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-c03a82dfe5b38fd62a24c85d1490cbd2d6756b56.png.map \ No newline at end of file diff --git a/_images/inheritance-c2bd92011b6309b2cde17dff07e6022de7974dc0.svg b/_images/inheritance-c2bd92011b6309b2cde17dff07e6022de7974dc0.svg deleted file mode 120000 index bcac4b5bbe4..00000000000 --- a/_images/inheritance-c2bd92011b6309b2cde17dff07e6022de7974dc0.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-c2bd92011b6309b2cde17dff07e6022de7974dc0.svg \ No newline at end of file diff --git a/_images/inheritance-c6eb1010e0e574d5ea90e39d11b7fb0f4e6d5675.svg b/_images/inheritance-c6eb1010e0e574d5ea90e39d11b7fb0f4e6d5675.svg deleted file mode 120000 index 518f7a840ed..00000000000 --- a/_images/inheritance-c6eb1010e0e574d5ea90e39d11b7fb0f4e6d5675.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-c6eb1010e0e574d5ea90e39d11b7fb0f4e6d5675.svg \ No newline at end of file diff --git a/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png b/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png deleted file mode 120000 index ec751427e9c..00000000000 --- a/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png \ No newline at end of file diff --git a/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png.map b/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png.map deleted file mode 120000 index 2f493847f3c..00000000000 --- a/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-c6ec7ccea3e000910bab0a162b0b843abb75fd05.png.map \ No newline at end of file diff --git a/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png b/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png deleted file mode 120000 index f6705717fa7..00000000000 --- a/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png \ No newline at end of file diff --git a/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png.map b/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png.map deleted file mode 120000 index 49041dbc62a..00000000000 --- a/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png.map +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-c7a47bee510ef001f749f54b0d1fe4cf77ae4553.png.map \ No newline at end of file diff --git a/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png b/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png deleted file mode 120000 index 4224ce4ba15..00000000000 --- a/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png \ No newline at end of file diff --git a/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png.map b/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png.map deleted file mode 120000 index 6484614e3c6..00000000000 --- a/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-ce300fc5cf44a7c2e9346f46622fe4dbe319e9b3.png.map \ No newline at end of file diff --git a/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png b/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png deleted file mode 120000 index 783c7c36cbc..00000000000 --- a/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png \ No newline at end of file diff --git a/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png.map b/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png.map deleted file mode 120000 index 1a05e6c8e73..00000000000 --- a/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-d00a2c53c24b19d03d6390c8f65b04968e230aa6.png.map \ No newline at end of file diff --git a/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png b/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png deleted file mode 120000 index 99e12b0a077..00000000000 --- a/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png \ No newline at end of file diff --git a/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png.map b/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png.map deleted file mode 120000 index 4d7dd95b76e..00000000000 --- a/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png.map +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/inheritance-d0f599d153dffd23c560cf3490c99d61a3bfa4b1.png.map \ No newline at end of file diff --git a/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png b/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png deleted file mode 120000 index 97749518b8d..00000000000 --- a/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png \ No newline at end of file diff --git a/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png.map b/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png.map deleted file mode 120000 index afdc821f1d8..00000000000 --- a/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-d2d4004311b41ca985cc56b00adff14efcf92f07.png.map \ No newline at end of file diff --git a/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png b/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png deleted file mode 120000 index 89a8a0bbe46..00000000000 --- a/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png \ No newline at end of file diff --git a/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png.map b/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png.map deleted file mode 120000 index ce484456651..00000000000 --- a/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-d4f075ad14d938daeb82d81d975c5544a4027949.png.map \ No newline at end of file diff --git a/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png b/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png deleted file mode 120000 index 46d6635bfa1..00000000000 --- a/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png \ No newline at end of file diff --git a/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png.map b/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png.map deleted file mode 120000 index 7e6c96adcfa..00000000000 --- a/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-d77fed2f606dd3ef2d455455d9d08a84da240064.png.map \ No newline at end of file diff --git a/_images/inheritance-d7d5d76b396718820a056a40a98688fb571f7159.svg b/_images/inheritance-d7d5d76b396718820a056a40a98688fb571f7159.svg deleted file mode 120000 index cb64ab08644..00000000000 --- a/_images/inheritance-d7d5d76b396718820a056a40a98688fb571f7159.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-d7d5d76b396718820a056a40a98688fb571f7159.svg \ No newline at end of file diff --git a/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png b/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png deleted file mode 120000 index ef62c12a856..00000000000 --- a/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.0/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png \ No newline at end of file diff --git a/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png.map b/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png.map deleted file mode 120000 index 85a8faae485..00000000000 --- a/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.0/_images/inheritance-d9d4b2873ad1e532a45204b23da0ff3afb1d0ea7.png.map \ No newline at end of file diff --git a/_images/inheritance-dc803bc79ee75437b71170bac380f88c176ca8d7.svg b/_images/inheritance-dc803bc79ee75437b71170bac380f88c176ca8d7.svg deleted file mode 120000 index 0a151b08d2a..00000000000 --- a/_images/inheritance-dc803bc79ee75437b71170bac380f88c176ca8d7.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-dc803bc79ee75437b71170bac380f88c176ca8d7.svg \ No newline at end of file diff --git a/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png b/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png deleted file mode 120000 index 0603ab2020a..00000000000 --- a/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png \ No newline at end of file diff --git a/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png.map b/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png.map deleted file mode 120000 index 1aed1a88058..00000000000 --- a/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/inheritance-dd8c4371a56b81aafe10a263eb5d9fe2261ef76c.png.map \ No newline at end of file diff --git a/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png b/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png deleted file mode 120000 index 15002988674..00000000000 --- a/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png \ No newline at end of file diff --git a/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png.map b/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png.map deleted file mode 120000 index af49e5a9096..00000000000 --- a/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/inheritance-dda841dcb224d60006db5f49ee5b49b96964e76a.png.map \ No newline at end of file diff --git a/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png b/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png deleted file mode 120000 index d7702ce3c50..00000000000 --- a/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png \ No newline at end of file diff --git a/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png.map b/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png.map deleted file mode 120000 index 6db4c8f5dd4..00000000000 --- a/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/inheritance-dedcc1c71ae54be773d8e45d7e30897709db8581.png.map \ No newline at end of file diff --git a/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png b/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png deleted file mode 120000 index a77bd366384..00000000000 --- a/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png \ No newline at end of file diff --git a/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png.map b/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png.map deleted file mode 120000 index 6e2d9e79703..00000000000 --- a/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_images/inheritance-e764697211373957da0fb90535d668ec0ec72a99.png.map \ No newline at end of file diff --git a/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png b/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png deleted file mode 120000 index 89b390892ef..00000000000 --- a/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png \ No newline at end of file diff --git a/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png.map b/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png.map deleted file mode 120000 index d081078a14e..00000000000 --- a/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-e7a6ae7dc7542a4f89b0c4a4ed5323bd626442ae.png.map \ No newline at end of file diff --git a/_images/inheritance-e9961522e050134773775ac9d337a33ad390dcd3.svg b/_images/inheritance-e9961522e050134773775ac9d337a33ad390dcd3.svg deleted file mode 120000 index b2b7d06522a..00000000000 --- a/_images/inheritance-e9961522e050134773775ac9d337a33ad390dcd3.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/inheritance-e9961522e050134773775ac9d337a33ad390dcd3.svg \ No newline at end of file diff --git a/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png b/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png deleted file mode 120000 index 0c473ae0f83..00000000000 --- a/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png \ No newline at end of file diff --git a/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png.map b/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png.map deleted file mode 120000 index 68f793d6398..00000000000 --- a/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-e9e9a2911dd75c91cb1fedae2b159073a400e264.png.map \ No newline at end of file diff --git a/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png b/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png deleted file mode 120000 index 984888289a6..00000000000 --- a/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png \ No newline at end of file diff --git a/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png.map b/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png.map deleted file mode 120000 index bf943e2fb6a..00000000000 --- a/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/inheritance-eafd5ed19d2f8badee138776b0306812a48917f9.png.map \ No newline at end of file diff --git a/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png b/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png deleted file mode 120000 index 6a68c20c454..00000000000 --- a/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png \ No newline at end of file diff --git a/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png.map b/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png.map deleted file mode 120000 index 85be57aee87..00000000000 --- a/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-ecef1d6fc5ffec0460463869049eb0c708a450cc.png.map \ No newline at end of file diff --git a/_images/inheritance-ed626f3f1dc7fea21126dd0af7338cc4676e4eee.svg b/_images/inheritance-ed626f3f1dc7fea21126dd0af7338cc4676e4eee.svg deleted file mode 120000 index a67b0ede456..00000000000 --- a/_images/inheritance-ed626f3f1dc7fea21126dd0af7338cc4676e4eee.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-ed626f3f1dc7fea21126dd0af7338cc4676e4eee.svg \ No newline at end of file diff --git a/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png b/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png deleted file mode 120000 index 4584bd1da80..00000000000 --- a/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png \ No newline at end of file diff --git a/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png.map b/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png.map deleted file mode 120000 index 2a7dbac84d7..00000000000 --- a/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-f1047e0f3fa46d3d53d3ec4bf74046b4123e5597.png.map \ No newline at end of file diff --git a/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png b/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png deleted file mode 120000 index ea57c83a7ad..00000000000 --- a/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png \ No newline at end of file diff --git a/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png.map b/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png.map deleted file mode 120000 index e83322b604c..00000000000 --- a/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png.map +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/inheritance-f46efd31fd64e19881829039084b3eec2472bdbe.png.map \ No newline at end of file diff --git a/_images/inheritance-f4fc1c8a8eca458d5a7ce5f86786069b8b58851c.svg b/_images/inheritance-f4fc1c8a8eca458d5a7ce5f86786069b8b58851c.svg deleted file mode 120000 index b83578c6fa1..00000000000 --- a/_images/inheritance-f4fc1c8a8eca458d5a7ce5f86786069b8b58851c.svg +++ /dev/null @@ -1 +0,0 @@ -../3.2.1/_images/inheritance-f4fc1c8a8eca458d5a7ce5f86786069b8b58851c.svg \ No newline at end of file diff --git a/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png b/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png deleted file mode 120000 index a8a5fb5ce89..00000000000 --- a/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png \ No newline at end of file diff --git a/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png.map b/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png.map deleted file mode 120000 index f6a764ee339..00000000000 --- a/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_images/inheritance-f6855d727bcbb7919dc51752a8eadf062a274630.png.map \ No newline at end of file diff --git a/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png b/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png deleted file mode 120000 index b97b7706f7c..00000000000 --- a/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png \ No newline at end of file diff --git a/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png.map b/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png.map deleted file mode 120000 index d7f193f3633..00000000000 --- a/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png.map +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inheritance-f965f673138e3d2c62a727b9afd9500b385009eb.png.map \ No newline at end of file diff --git a/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png b/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png deleted file mode 120000 index 58c400d5d5d..00000000000 --- a/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png \ No newline at end of file diff --git a/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png.map b/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png.map deleted file mode 120000 index dfbc46df2bc..00000000000 --- a/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/inheritance-fb87ba1a1fa5e5935067baa4439a19e529faffde.png.map \ No newline at end of file diff --git a/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png b/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png deleted file mode 120000 index b45b7610916..00000000000 --- a/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png \ No newline at end of file diff --git a/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png.map b/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png.map deleted file mode 120000 index 6578173613b..00000000000 --- a/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.0.0/_images/inheritance-fe1d151e0b2ec851de6aa7330e30a0f6ae549b3f.png.map \ No newline at end of file diff --git a/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png b/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png deleted file mode 120000 index 698eb2a5260..00000000000 --- a/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png \ No newline at end of file diff --git a/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png.map b/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png.map deleted file mode 120000 index 1cc2ada3045..00000000000 --- a/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png.map +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/inheritance-fe268b2b28058de28cbba7efd15bc7f895a75441.png.map \ No newline at end of file diff --git a/_images/inset_locator_demo.png b/_images/inset_locator_demo.png deleted file mode 120000 index 76ae5834f3d..00000000000 --- a/_images/inset_locator_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inset_locator_demo.png \ No newline at end of file diff --git a/_images/inset_locator_demo1.png b/_images/inset_locator_demo1.png deleted file mode 120000 index 54fc3eb61c1..00000000000 --- a/_images/inset_locator_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inset_locator_demo1.png \ No newline at end of file diff --git a/_images/inset_locator_demo2.png b/_images/inset_locator_demo2.png deleted file mode 120000 index dcf35a1ce08..00000000000 --- a/_images/inset_locator_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inset_locator_demo2.png \ No newline at end of file diff --git a/_images/inset_locator_demo21.png b/_images/inset_locator_demo21.png deleted file mode 120000 index 4133350a62c..00000000000 --- a/_images/inset_locator_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/inset_locator_demo21.png \ No newline at end of file diff --git a/_images/integral_demo.png b/_images/integral_demo.png deleted file mode 120000 index f95a9ed9049..00000000000 --- a/_images/integral_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/integral_demo.png \ No newline at end of file diff --git a/_images/interp_demo.png b/_images/interp_demo.png deleted file mode 120000 index dfe0fd7d363..00000000000 --- a/_images/interp_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/interp_demo.png \ No newline at end of file diff --git a/_images/interpolation_methods.png b/_images/interpolation_methods.png deleted file mode 120000 index 2831daeefff..00000000000 --- a/_images/interpolation_methods.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/interpolation_methods.png \ No newline at end of file diff --git a/_images/interpolation_none_vs_nearest_00.png b/_images/interpolation_none_vs_nearest_00.png deleted file mode 120000 index d4899257f04..00000000000 --- a/_images/interpolation_none_vs_nearest_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/interpolation_none_vs_nearest_00.png \ No newline at end of file diff --git a/_images/interpolation_none_vs_nearest_01.png b/_images/interpolation_none_vs_nearest_01.png deleted file mode 120000 index d5ca80a8425..00000000000 --- a/_images/interpolation_none_vs_nearest_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/interpolation_none_vs_nearest_01.png \ No newline at end of file diff --git a/_images/invert_axes.png b/_images/invert_axes.png deleted file mode 120000 index 9399ead7535..00000000000 --- a/_images/invert_axes.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/invert_axes.png \ No newline at end of file diff --git a/_images/joinstyle.png b/_images/joinstyle.png deleted file mode 120000 index 863e3885b59..00000000000 --- a/_images/joinstyle.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/joinstyle.png \ No newline at end of file diff --git a/_images/layer_images.png b/_images/layer_images.png deleted file mode 120000 index 4787981a5cc..00000000000 --- a/_images/layer_images.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/layer_images.png \ No newline at end of file diff --git a/_images/leftventricle_bulleye.png b/_images/leftventricle_bulleye.png deleted file mode 120000 index c6ad45799f3..00000000000 --- a/_images/leftventricle_bulleye.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/leftventricle_bulleye.png \ No newline at end of file diff --git a/_images/legend.png b/_images/legend.png deleted file mode 120000 index 603a5615136..00000000000 --- a/_images/legend.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/legend.png \ No newline at end of file diff --git a/_images/legend_00_00.png b/_images/legend_00_00.png deleted file mode 120000 index 6ba3bfe637c..00000000000 --- a/_images/legend_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/legend_00_00.png \ No newline at end of file diff --git a/_images/legend_demo.png b/_images/legend_demo.png deleted file mode 120000 index d142a5787f0..00000000000 --- a/_images/legend_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo.png \ No newline at end of file diff --git a/_images/legend_demo1.png b/_images/legend_demo1.png deleted file mode 120000 index 54dd5df7473..00000000000 --- a/_images/legend_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo1.png \ No newline at end of file diff --git a/_images/legend_demo2.png b/_images/legend_demo2.png deleted file mode 120000 index f32fc596e06..00000000000 --- a/_images/legend_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo2.png \ No newline at end of file diff --git a/_images/legend_demo3.png b/_images/legend_demo3.png deleted file mode 120000 index b6bc41febb0..00000000000 --- a/_images/legend_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo3.png \ No newline at end of file diff --git a/_images/legend_demo4.png b/_images/legend_demo4.png deleted file mode 120000 index 83002605df2..00000000000 --- a/_images/legend_demo4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo4.png \ No newline at end of file diff --git a/_images/legend_demo41.png b/_images/legend_demo41.png deleted file mode 120000 index a29b0b56ba1..00000000000 --- a/_images/legend_demo41.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo41.png \ No newline at end of file diff --git a/_images/legend_demo5.png b/_images/legend_demo5.png deleted file mode 120000 index acaa2a5ebb0..00000000000 --- a/_images/legend_demo5.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo5.png \ No newline at end of file diff --git a/_images/legend_demo6.png b/_images/legend_demo6.png deleted file mode 120000 index d280dd5f229..00000000000 --- a/_images/legend_demo6.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo6.png \ No newline at end of file diff --git a/_images/legend_demo7.png b/_images/legend_demo7.png deleted file mode 120000 index 97e49913cea..00000000000 --- a/_images/legend_demo7.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_demo7.png \ No newline at end of file diff --git a/_images/legend_guide-1.png b/_images/legend_guide-1.png deleted file mode 120000 index 48bf33fa3e5..00000000000 --- a/_images/legend_guide-1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_guide-1.png \ No newline at end of file diff --git a/_images/legend_guide-2.png b/_images/legend_guide-2.png deleted file mode 120000 index f4df2aec763..00000000000 --- a/_images/legend_guide-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_guide-2.png \ No newline at end of file diff --git a/_images/legend_guide-3.png b/_images/legend_guide-3.png deleted file mode 120000 index dcaee4c3807..00000000000 --- a/_images/legend_guide-3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_guide-3.png \ No newline at end of file diff --git a/_images/legend_guide-4.png b/_images/legend_guide-4.png deleted file mode 120000 index 0c82873e64a..00000000000 --- a/_images/legend_guide-4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_guide-4.png \ No newline at end of file diff --git a/_images/legend_guide-5.png b/_images/legend_guide-5.png deleted file mode 120000 index 43c06c95952..00000000000 --- a/_images/legend_guide-5.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_guide-5.png \ No newline at end of file diff --git a/_images/legend_guide-6.png b/_images/legend_guide-6.png deleted file mode 120000 index 928276cc3db..00000000000 --- a/_images/legend_guide-6.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/legend_guide-6.png \ No newline at end of file diff --git a/_images/lightness_00.png b/_images/lightness_00.png deleted file mode 120000 index b96c32e48e0..00000000000 --- a/_images/lightness_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lightness_00.png \ No newline at end of file diff --git a/_images/lightness_01.png b/_images/lightness_01.png deleted file mode 120000 index 9c56554a19c..00000000000 --- a/_images/lightness_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lightness_01.png \ No newline at end of file diff --git a/_images/lightness_02.png b/_images/lightness_02.png deleted file mode 120000 index f258d6bd479..00000000000 --- a/_images/lightness_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lightness_02.png \ No newline at end of file diff --git a/_images/lightness_03.png b/_images/lightness_03.png deleted file mode 120000 index 76299811143..00000000000 --- a/_images/lightness_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lightness_03.png \ No newline at end of file diff --git a/_images/lightness_04.png b/_images/lightness_04.png deleted file mode 120000 index e21caff353a..00000000000 --- a/_images/lightness_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lightness_04.png \ No newline at end of file diff --git a/_images/lightness_05.png b/_images/lightness_05.png deleted file mode 120000 index b0fc0266253..00000000000 --- a/_images/lightness_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lightness_05.png \ No newline at end of file diff --git a/_images/line_collection.png b/_images/line_collection.png deleted file mode 120000 index 5b633213462..00000000000 --- a/_images/line_collection.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/line_collection.png \ No newline at end of file diff --git a/_images/line_collection2.png b/_images/line_collection2.png deleted file mode 120000 index 4689953844d..00000000000 --- a/_images/line_collection2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/line_collection2.png \ No newline at end of file diff --git a/_images/line_demo_dash_control.png b/_images/line_demo_dash_control.png deleted file mode 120000 index 197d6e70ce2..00000000000 --- a/_images/line_demo_dash_control.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/line_demo_dash_control.png \ No newline at end of file diff --git a/_images/line_styles_reference.png b/_images/line_styles_reference.png deleted file mode 120000 index 995bef61700..00000000000 --- a/_images/line_styles_reference.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/line_styles_reference.png \ No newline at end of file diff --git a/_images/line_with_text.png b/_images/line_with_text.png deleted file mode 120000 index af655d709fb..00000000000 --- a/_images/line_with_text.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/line_with_text.png \ No newline at end of file diff --git a/_images/lines3d_demo.png b/_images/lines3d_demo.png deleted file mode 120000 index b64f61c207b..00000000000 --- a/_images/lines3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lines3d_demo.png \ No newline at end of file diff --git a/_images/lines3d_demo1.png b/_images/lines3d_demo1.png deleted file mode 120000 index 14900c95c93..00000000000 --- a/_images/lines3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lines3d_demo1.png \ No newline at end of file diff --git a/_images/linestyles.png b/_images/linestyles.png deleted file mode 120000 index 1ebcac72dd6..00000000000 --- a/_images/linestyles.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/linestyles.png \ No newline at end of file diff --git a/_images/load_converter.png b/_images/load_converter.png deleted file mode 120000 index b39abdf0df2..00000000000 --- a/_images/load_converter.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/load_converter.png \ No newline at end of file diff --git a/_images/loadrec.png b/_images/loadrec.png deleted file mode 120000 index 1380c54aac5..00000000000 --- a/_images/loadrec.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/loadrec.png \ No newline at end of file diff --git a/_images/log_bar.png b/_images/log_bar.png deleted file mode 120000 index 1261135bcd2..00000000000 --- a/_images/log_bar.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/log_bar.png \ No newline at end of file diff --git a/_images/log_demo.png b/_images/log_demo.png deleted file mode 120000 index c0dc278b944..00000000000 --- a/_images/log_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/log_demo.png \ No newline at end of file diff --git a/_images/log_demo1.png b/_images/log_demo1.png deleted file mode 120000 index b841dc50c73..00000000000 --- a/_images/log_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/log_demo1.png \ No newline at end of file diff --git a/_images/log_demo2.png b/_images/log_demo2.png deleted file mode 120000 index 68565ca1c49..00000000000 --- a/_images/log_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/log_demo2.png \ No newline at end of file diff --git a/_images/log_demo3.png b/_images/log_demo3.png deleted file mode 120000 index 0d3f2369c58..00000000000 --- a/_images/log_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/log_demo3.png \ No newline at end of file diff --git a/_images/log_test.png b/_images/log_test.png deleted file mode 120000 index 8de8eb8abf6..00000000000 --- a/_images/log_test.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/log_test.png \ No newline at end of file diff --git a/_images/logo.png b/_images/logo.png deleted file mode 120000 index cd27eb06ac0..00000000000 --- a/_images/logo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/logo.png \ No newline at end of file diff --git a/_images/logo2.png b/_images/logo2.png deleted file mode 120000 index bbcd8b398d6..00000000000 --- a/_images/logo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/logo2.png \ No newline at end of file diff --git a/_images/lorenz_attractor.png b/_images/lorenz_attractor.png deleted file mode 120000 index f1fff0f6580..00000000000 --- a/_images/lorenz_attractor.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/lorenz_attractor.png \ No newline at end of file diff --git a/_images/m00.png b/_images/m00.png deleted file mode 120000 index c88749536e6..00000000000 --- a/_images/m00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m00.png \ No newline at end of file diff --git a/_images/m01.png b/_images/m01.png deleted file mode 120000 index ac5844baee1..00000000000 --- a/_images/m01.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m01.png \ No newline at end of file diff --git a/_images/m02.png b/_images/m02.png deleted file mode 120000 index a19c962a649..00000000000 --- a/_images/m02.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m02.png \ No newline at end of file diff --git a/_images/m03.png b/_images/m03.png deleted file mode 120000 index 1cd0ee92ac0..00000000000 --- a/_images/m03.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m03.png \ No newline at end of file diff --git a/_images/m04.png b/_images/m04.png deleted file mode 120000 index 3199caa696d..00000000000 --- a/_images/m04.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m04.png \ No newline at end of file diff --git a/_images/m05.png b/_images/m05.png deleted file mode 120000 index b5bfc4f689b..00000000000 --- a/_images/m05.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m05.png \ No newline at end of file diff --git a/_images/m06.png b/_images/m06.png deleted file mode 120000 index a4723f4c021..00000000000 --- a/_images/m06.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m06.png \ No newline at end of file diff --git a/_images/m07.png b/_images/m07.png deleted file mode 120000 index 117a285844e..00000000000 --- a/_images/m07.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m07.png \ No newline at end of file diff --git a/_images/m08.png b/_images/m08.png deleted file mode 120000 index 57678968788..00000000000 --- a/_images/m08.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m08.png \ No newline at end of file diff --git a/_images/m09.png b/_images/m09.png deleted file mode 120000 index cc9c9aefb93..00000000000 --- a/_images/m09.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m09.png \ No newline at end of file diff --git a/_images/m10.png b/_images/m10.png deleted file mode 120000 index a4439e8aad1..00000000000 --- a/_images/m10.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m10.png \ No newline at end of file diff --git a/_images/m11.png b/_images/m11.png deleted file mode 120000 index 0d411b4f6d1..00000000000 --- a/_images/m11.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m11.png \ No newline at end of file diff --git a/_images/m12.png b/_images/m12.png deleted file mode 120000 index 9d56de5d674..00000000000 --- a/_images/m12.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m12.png \ No newline at end of file diff --git a/_images/m13.png b/_images/m13.png deleted file mode 120000 index d3e78dbd500..00000000000 --- a/_images/m13.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m13.png \ No newline at end of file diff --git a/_images/m14.png b/_images/m14.png deleted file mode 120000 index de51e18a9e1..00000000000 --- a/_images/m14.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m14.png \ No newline at end of file diff --git a/_images/m15.png b/_images/m15.png deleted file mode 120000 index 12f30b63b4e..00000000000 --- a/_images/m15.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m15.png \ No newline at end of file diff --git a/_images/m16.png b/_images/m16.png deleted file mode 120000 index f96fe64427c..00000000000 --- a/_images/m16.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m16.png \ No newline at end of file diff --git a/_images/m17.png b/_images/m17.png deleted file mode 120000 index ed5f6070d3a..00000000000 --- a/_images/m17.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m17.png \ No newline at end of file diff --git a/_images/m18.png b/_images/m18.png deleted file mode 120000 index cc60e68b967..00000000000 --- a/_images/m18.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m18.png \ No newline at end of file diff --git a/_images/m19.png b/_images/m19.png deleted file mode 120000 index 55090dd73a5..00000000000 --- a/_images/m19.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m19.png \ No newline at end of file diff --git a/_images/m20.png b/_images/m20.png deleted file mode 120000 index 0a7c06d1727..00000000000 --- a/_images/m20.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m20.png \ No newline at end of file diff --git a/_images/m21.png b/_images/m21.png deleted file mode 120000 index 27050d794e8..00000000000 --- a/_images/m21.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m21.png \ No newline at end of file diff --git a/_images/m22.png b/_images/m22.png deleted file mode 120000 index fe9c0304625..00000000000 --- a/_images/m22.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m22.png \ No newline at end of file diff --git a/_images/m23.png b/_images/m23.png deleted file mode 120000 index 3ffe2600444..00000000000 --- a/_images/m23.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m23.png \ No newline at end of file diff --git a/_images/m24.png b/_images/m24.png deleted file mode 120000 index 456a16c185c..00000000000 --- a/_images/m24.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m24.png \ No newline at end of file diff --git a/_images/m25.png b/_images/m25.png deleted file mode 120000 index 16d83d9d7fd..00000000000 --- a/_images/m25.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m25.png \ No newline at end of file diff --git a/_images/m26.png b/_images/m26.png deleted file mode 120000 index 052a20afae5..00000000000 --- a/_images/m26.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m26.png \ No newline at end of file diff --git a/_images/m27.png b/_images/m27.png deleted file mode 120000 index 4afe88fa481..00000000000 --- a/_images/m27.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m27.png \ No newline at end of file diff --git a/_images/m28.png b/_images/m28.png deleted file mode 120000 index 4fe28c0696c..00000000000 --- a/_images/m28.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m28.png \ No newline at end of file diff --git a/_images/m29.png b/_images/m29.png deleted file mode 120000 index 98149999b7f..00000000000 --- a/_images/m29.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m29.png \ No newline at end of file diff --git a/_images/m30.png b/_images/m30.png deleted file mode 120000 index ad3fd5fbeb1..00000000000 --- a/_images/m30.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m30.png \ No newline at end of file diff --git a/_images/m31.png b/_images/m31.png deleted file mode 120000 index 548c4ed057c..00000000000 --- a/_images/m31.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m31.png \ No newline at end of file diff --git a/_images/m32.png b/_images/m32.png deleted file mode 120000 index bd2c2ed1583..00000000000 --- a/_images/m32.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m32.png \ No newline at end of file diff --git a/_images/m33.png b/_images/m33.png deleted file mode 120000 index 0c43b0e5e7c..00000000000 --- a/_images/m33.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m33.png \ No newline at end of file diff --git a/_images/m34.png b/_images/m34.png deleted file mode 120000 index 6a97ba3af4f..00000000000 --- a/_images/m34.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m34.png \ No newline at end of file diff --git a/_images/m35.png b/_images/m35.png deleted file mode 120000 index 19ac414ee7c..00000000000 --- a/_images/m35.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m35.png \ No newline at end of file diff --git a/_images/m36.png b/_images/m36.png deleted file mode 120000 index 1355420ab7f..00000000000 --- a/_images/m36.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m36.png \ No newline at end of file diff --git a/_images/m37.png b/_images/m37.png deleted file mode 120000 index 7e7ff4aee5a..00000000000 --- a/_images/m37.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/m37.png \ No newline at end of file diff --git a/_images/major_minor_demo1.png b/_images/major_minor_demo1.png deleted file mode 120000 index e215b0feab7..00000000000 --- a/_images/major_minor_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/major_minor_demo1.png \ No newline at end of file diff --git a/_images/major_minor_demo2.png b/_images/major_minor_demo2.png deleted file mode 120000 index 0b9dbfc1fa5..00000000000 --- a/_images/major_minor_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/major_minor_demo2.png \ No newline at end of file diff --git a/_images/make_room_for_ylabel_using_axesgrid_00.png b/_images/make_room_for_ylabel_using_axesgrid_00.png deleted file mode 120000 index f39e1247b0d..00000000000 --- a/_images/make_room_for_ylabel_using_axesgrid_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/make_room_for_ylabel_using_axesgrid_00.png \ No newline at end of file diff --git a/_images/make_room_for_ylabel_using_axesgrid_01.png b/_images/make_room_for_ylabel_using_axesgrid_01.png deleted file mode 120000 index 81320898d49..00000000000 --- a/_images/make_room_for_ylabel_using_axesgrid_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/make_room_for_ylabel_using_axesgrid_01.png \ No newline at end of file diff --git a/_images/make_room_for_ylabel_using_axesgrid_02.png b/_images/make_room_for_ylabel_using_axesgrid_02.png deleted file mode 120000 index 79354102f1e..00000000000 --- a/_images/make_room_for_ylabel_using_axesgrid_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/make_room_for_ylabel_using_axesgrid_02.png \ No newline at end of file diff --git a/_images/mandelbrot.png b/_images/mandelbrot.png deleted file mode 120000 index c0c9eec1878..00000000000 --- a/_images/mandelbrot.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mandelbrot.png \ No newline at end of file diff --git a/_images/manual_axis.png b/_images/manual_axis.png deleted file mode 120000 index 87bf9061649..00000000000 --- a/_images/manual_axis.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/manual_axis.png \ No newline at end of file diff --git a/_images/marker_fillstyle_reference.png b/_images/marker_fillstyle_reference.png deleted file mode 120000 index 84742447b9e..00000000000 --- a/_images/marker_fillstyle_reference.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/marker_fillstyle_reference.png \ No newline at end of file diff --git a/_images/marker_path.png b/_images/marker_path.png deleted file mode 120000 index e197ded6d2f..00000000000 --- a/_images/marker_path.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/marker_path.png \ No newline at end of file diff --git a/_images/marker_reference_00.png b/_images/marker_reference_00.png deleted file mode 120000 index 2db886f6211..00000000000 --- a/_images/marker_reference_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/marker_reference_00.png \ No newline at end of file diff --git a/_images/marker_reference_01.png b/_images/marker_reference_01.png deleted file mode 120000 index e8100cda492..00000000000 --- a/_images/marker_reference_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/marker_reference_01.png \ No newline at end of file diff --git a/_images/markevery_demo_00.png b/_images/markevery_demo_00.png deleted file mode 120000 index f284fe9d884..00000000000 --- a/_images/markevery_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/markevery_demo_00.png \ No newline at end of file diff --git a/_images/markevery_demo_01.png b/_images/markevery_demo_01.png deleted file mode 120000 index 30f87729b59..00000000000 --- a/_images/markevery_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/markevery_demo_01.png \ No newline at end of file diff --git a/_images/markevery_demo_02.png b/_images/markevery_demo_02.png deleted file mode 120000 index 05d2e3da779..00000000000 --- a/_images/markevery_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/markevery_demo_02.png \ No newline at end of file diff --git a/_images/markevery_demo_03.png b/_images/markevery_demo_03.png deleted file mode 120000 index db611274526..00000000000 --- a/_images/markevery_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/markevery_demo_03.png \ No newline at end of file diff --git a/_images/masked_demo.png b/_images/masked_demo.png deleted file mode 120000 index 209c1d1bc06..00000000000 --- a/_images/masked_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/masked_demo.png \ No newline at end of file diff --git a/_images/mathmpl/math-00022ae738.png b/_images/mathmpl/math-00022ae738.png deleted file mode 120000 index 49b8061210e..00000000000 --- a/_images/mathmpl/math-00022ae738.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-00022ae738.png \ No newline at end of file diff --git a/_images/mathmpl/math-0005c3a5e5.png b/_images/mathmpl/math-0005c3a5e5.png deleted file mode 120000 index 5073cb62d71..00000000000 --- a/_images/mathmpl/math-0005c3a5e5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0005c3a5e5.png \ No newline at end of file diff --git a/_images/mathmpl/math-0101db15ef.png b/_images/mathmpl/math-0101db15ef.png deleted file mode 120000 index 21f3d9c5a50..00000000000 --- a/_images/mathmpl/math-0101db15ef.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-0101db15ef.png \ No newline at end of file diff --git a/_images/mathmpl/math-011efae7a0.png b/_images/mathmpl/math-011efae7a0.png deleted file mode 120000 index 418c5828027..00000000000 --- a/_images/mathmpl/math-011efae7a0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-011efae7a0.png \ No newline at end of file diff --git a/_images/mathmpl/math-014e74dc81.png b/_images/mathmpl/math-014e74dc81.png deleted file mode 120000 index 4d4af9a5e34..00000000000 --- a/_images/mathmpl/math-014e74dc81.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-014e74dc81.png \ No newline at end of file diff --git a/_images/mathmpl/math-02ce986a2e.png b/_images/mathmpl/math-02ce986a2e.png deleted file mode 120000 index 00ba0ff39ef..00000000000 --- a/_images/mathmpl/math-02ce986a2e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-02ce986a2e.png \ No newline at end of file diff --git a/_images/mathmpl/math-03cbb97a54.png b/_images/mathmpl/math-03cbb97a54.png deleted file mode 120000 index f841f6f9941..00000000000 --- a/_images/mathmpl/math-03cbb97a54.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-03cbb97a54.png \ No newline at end of file diff --git a/_images/mathmpl/math-04c47dcb6e.png b/_images/mathmpl/math-04c47dcb6e.png deleted file mode 120000 index 512cb9ffcf9..00000000000 --- a/_images/mathmpl/math-04c47dcb6e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-04c47dcb6e.png \ No newline at end of file diff --git a/_images/mathmpl/math-050e387807.png b/_images/mathmpl/math-050e387807.png deleted file mode 120000 index 35a0c846b42..00000000000 --- a/_images/mathmpl/math-050e387807.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-050e387807.png \ No newline at end of file diff --git a/_images/mathmpl/math-0525bc07de.png b/_images/mathmpl/math-0525bc07de.png deleted file mode 120000 index 1775c9f71ba..00000000000 --- a/_images/mathmpl/math-0525bc07de.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0525bc07de.png \ No newline at end of file diff --git a/_images/mathmpl/math-057e1a984d.png b/_images/mathmpl/math-057e1a984d.png deleted file mode 120000 index 9fe4a964e8e..00000000000 --- a/_images/mathmpl/math-057e1a984d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-057e1a984d.png \ No newline at end of file diff --git a/_images/mathmpl/math-06c793e494.png b/_images/mathmpl/math-06c793e494.png deleted file mode 120000 index d3af09f6dc7..00000000000 --- a/_images/mathmpl/math-06c793e494.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-06c793e494.png \ No newline at end of file diff --git a/_images/mathmpl/math-0716fbd542.png b/_images/mathmpl/math-0716fbd542.png deleted file mode 120000 index 21d0c9141f6..00000000000 --- a/_images/mathmpl/math-0716fbd542.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0716fbd542.png \ No newline at end of file diff --git a/_images/mathmpl/math-076bf05243.png b/_images/mathmpl/math-076bf05243.png deleted file mode 120000 index d6bc72beb39..00000000000 --- a/_images/mathmpl/math-076bf05243.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-076bf05243.png \ No newline at end of file diff --git a/_images/mathmpl/math-07933b21e0.png b/_images/mathmpl/math-07933b21e0.png deleted file mode 120000 index bf7becdc1a6..00000000000 --- a/_images/mathmpl/math-07933b21e0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-07933b21e0.png \ No newline at end of file diff --git a/_images/mathmpl/math-07b17ba8f6.png b/_images/mathmpl/math-07b17ba8f6.png deleted file mode 120000 index 76043d159a5..00000000000 --- a/_images/mathmpl/math-07b17ba8f6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-07b17ba8f6.png \ No newline at end of file diff --git a/_images/mathmpl/math-07c03ece9c.png b/_images/mathmpl/math-07c03ece9c.png deleted file mode 120000 index a07350266c6..00000000000 --- a/_images/mathmpl/math-07c03ece9c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-07c03ece9c.png \ No newline at end of file diff --git a/_images/mathmpl/math-0938c51d1a.png b/_images/mathmpl/math-0938c51d1a.png deleted file mode 120000 index 6ba1e2d3a1d..00000000000 --- a/_images/mathmpl/math-0938c51d1a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0938c51d1a.png \ No newline at end of file diff --git a/_images/mathmpl/math-097464d1cd.png b/_images/mathmpl/math-097464d1cd.png deleted file mode 120000 index d221194ae52..00000000000 --- a/_images/mathmpl/math-097464d1cd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-097464d1cd.png \ No newline at end of file diff --git a/_images/mathmpl/math-09e354a93e.png b/_images/mathmpl/math-09e354a93e.png deleted file mode 120000 index a33267efa37..00000000000 --- a/_images/mathmpl/math-09e354a93e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-09e354a93e.png \ No newline at end of file diff --git a/_images/mathmpl/math-0a36be904f.png b/_images/mathmpl/math-0a36be904f.png deleted file mode 120000 index 456a3048cad..00000000000 --- a/_images/mathmpl/math-0a36be904f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0a36be904f.png \ No newline at end of file diff --git a/_images/mathmpl/math-0a450e1663-2x.png b/_images/mathmpl/math-0a450e1663-2x.png deleted file mode 120000 index 00a39f0b910..00000000000 --- a/_images/mathmpl/math-0a450e1663-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-0a450e1663-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-0a450e1663.png b/_images/mathmpl/math-0a450e1663.png deleted file mode 120000 index 3249345d334..00000000000 --- a/_images/mathmpl/math-0a450e1663.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-0a450e1663.png \ No newline at end of file diff --git a/_images/mathmpl/math-0bf42a25bb.png b/_images/mathmpl/math-0bf42a25bb.png deleted file mode 120000 index 69e0bcb9cae..00000000000 --- a/_images/mathmpl/math-0bf42a25bb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0bf42a25bb.png \ No newline at end of file diff --git a/_images/mathmpl/math-0c0d015405.png b/_images/mathmpl/math-0c0d015405.png deleted file mode 120000 index d49c8973cdd..00000000000 --- a/_images/mathmpl/math-0c0d015405.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0c0d015405.png \ No newline at end of file diff --git a/_images/mathmpl/math-0c8ba18b43.png b/_images/mathmpl/math-0c8ba18b43.png deleted file mode 120000 index 16497c2deb9..00000000000 --- a/_images/mathmpl/math-0c8ba18b43.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0c8ba18b43.png \ No newline at end of file diff --git a/_images/mathmpl/math-0ca72c02e5.png b/_images/mathmpl/math-0ca72c02e5.png deleted file mode 120000 index d794d0089b9..00000000000 --- a/_images/mathmpl/math-0ca72c02e5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0ca72c02e5.png \ No newline at end of file diff --git a/_images/mathmpl/math-0cc3cb6c41.png b/_images/mathmpl/math-0cc3cb6c41.png deleted file mode 120000 index d543709f129..00000000000 --- a/_images/mathmpl/math-0cc3cb6c41.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0cc3cb6c41.png \ No newline at end of file diff --git a/_images/mathmpl/math-0d1363d575.png b/_images/mathmpl/math-0d1363d575.png deleted file mode 120000 index 300c34c0370..00000000000 --- a/_images/mathmpl/math-0d1363d575.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0d1363d575.png \ No newline at end of file diff --git a/_images/mathmpl/math-0dc1c96f16.png b/_images/mathmpl/math-0dc1c96f16.png deleted file mode 120000 index cdb98592223..00000000000 --- a/_images/mathmpl/math-0dc1c96f16.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0dc1c96f16.png \ No newline at end of file diff --git a/_images/mathmpl/math-0e049fe80b.png b/_images/mathmpl/math-0e049fe80b.png deleted file mode 120000 index a91a59bed83..00000000000 --- a/_images/mathmpl/math-0e049fe80b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0e049fe80b.png \ No newline at end of file diff --git a/_images/mathmpl/math-0ebac5d490.png b/_images/mathmpl/math-0ebac5d490.png deleted file mode 120000 index 31737bc6763..00000000000 --- a/_images/mathmpl/math-0ebac5d490.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0ebac5d490.png \ No newline at end of file diff --git a/_images/mathmpl/math-0f08e28a07.png b/_images/mathmpl/math-0f08e28a07.png deleted file mode 120000 index bb29e58150e..00000000000 --- a/_images/mathmpl/math-0f08e28a07.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0f08e28a07.png \ No newline at end of file diff --git a/_images/mathmpl/math-0fa258552e.png b/_images/mathmpl/math-0fa258552e.png deleted file mode 120000 index c867148152e..00000000000 --- a/_images/mathmpl/math-0fa258552e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0fa258552e.png \ No newline at end of file diff --git a/_images/mathmpl/math-0fbbe481d0.png b/_images/mathmpl/math-0fbbe481d0.png deleted file mode 120000 index fde1a8b1ac0..00000000000 --- a/_images/mathmpl/math-0fbbe481d0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-0fbbe481d0.png \ No newline at end of file diff --git a/_images/mathmpl/math-102fd18c41.png b/_images/mathmpl/math-102fd18c41.png deleted file mode 120000 index 2c4447e868f..00000000000 --- a/_images/mathmpl/math-102fd18c41.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-102fd18c41.png \ No newline at end of file diff --git a/_images/mathmpl/math-10ab63f88f.png b/_images/mathmpl/math-10ab63f88f.png deleted file mode 120000 index 72e9f8a8d05..00000000000 --- a/_images/mathmpl/math-10ab63f88f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-10ab63f88f.png \ No newline at end of file diff --git a/_images/mathmpl/math-11c6bdf228.png b/_images/mathmpl/math-11c6bdf228.png deleted file mode 120000 index ec7306218ad..00000000000 --- a/_images/mathmpl/math-11c6bdf228.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-11c6bdf228.png \ No newline at end of file diff --git a/_images/mathmpl/math-12713adf78.png b/_images/mathmpl/math-12713adf78.png deleted file mode 120000 index 905f94499da..00000000000 --- a/_images/mathmpl/math-12713adf78.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-12713adf78.png \ No newline at end of file diff --git a/_images/mathmpl/math-1278a024c8.png b/_images/mathmpl/math-1278a024c8.png deleted file mode 120000 index 9d791e2c610..00000000000 --- a/_images/mathmpl/math-1278a024c8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1278a024c8.png \ No newline at end of file diff --git a/_images/mathmpl/math-12e9272240.png b/_images/mathmpl/math-12e9272240.png deleted file mode 120000 index 4f89acb9498..00000000000 --- a/_images/mathmpl/math-12e9272240.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-12e9272240.png \ No newline at end of file diff --git a/_images/mathmpl/math-145ca7a5e7.png b/_images/mathmpl/math-145ca7a5e7.png deleted file mode 120000 index ecbf9f34051..00000000000 --- a/_images/mathmpl/math-145ca7a5e7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-145ca7a5e7.png \ No newline at end of file diff --git a/_images/mathmpl/math-14a5baf1f1.png b/_images/mathmpl/math-14a5baf1f1.png deleted file mode 120000 index 06bec2eabbe..00000000000 --- a/_images/mathmpl/math-14a5baf1f1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-14a5baf1f1.png \ No newline at end of file diff --git a/_images/mathmpl/math-15b4f113ce.png b/_images/mathmpl/math-15b4f113ce.png deleted file mode 120000 index ec58aed7aeb..00000000000 --- a/_images/mathmpl/math-15b4f113ce.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-15b4f113ce.png \ No newline at end of file diff --git a/_images/mathmpl/math-1610e87ea8.png b/_images/mathmpl/math-1610e87ea8.png deleted file mode 120000 index ce9a7f8f4a3..00000000000 --- a/_images/mathmpl/math-1610e87ea8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1610e87ea8.png \ No newline at end of file diff --git a/_images/mathmpl/math-1632a38331.png b/_images/mathmpl/math-1632a38331.png deleted file mode 120000 index 604cc673f0b..00000000000 --- a/_images/mathmpl/math-1632a38331.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1632a38331.png \ No newline at end of file diff --git a/_images/mathmpl/math-16b15cdedd.png b/_images/mathmpl/math-16b15cdedd.png deleted file mode 120000 index e51565b5465..00000000000 --- a/_images/mathmpl/math-16b15cdedd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-16b15cdedd.png \ No newline at end of file diff --git a/_images/mathmpl/math-16da2c10a1.png b/_images/mathmpl/math-16da2c10a1.png deleted file mode 120000 index 5e4fb6991d6..00000000000 --- a/_images/mathmpl/math-16da2c10a1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-16da2c10a1.png \ No newline at end of file diff --git a/_images/mathmpl/math-1742f7b9ed.png b/_images/mathmpl/math-1742f7b9ed.png deleted file mode 120000 index 8c31461169f..00000000000 --- a/_images/mathmpl/math-1742f7b9ed.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1742f7b9ed.png \ No newline at end of file diff --git a/_images/mathmpl/math-17826fcd24.png b/_images/mathmpl/math-17826fcd24.png deleted file mode 120000 index 91ec6af1a9a..00000000000 --- a/_images/mathmpl/math-17826fcd24.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-17826fcd24.png \ No newline at end of file diff --git a/_images/mathmpl/math-1859062b14.png b/_images/mathmpl/math-1859062b14.png deleted file mode 120000 index 990a0f0c9b4..00000000000 --- a/_images/mathmpl/math-1859062b14.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1859062b14.png \ No newline at end of file diff --git a/_images/mathmpl/math-18a0084a2d.png b/_images/mathmpl/math-18a0084a2d.png deleted file mode 120000 index 94f02ccceb0..00000000000 --- a/_images/mathmpl/math-18a0084a2d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-18a0084a2d.png \ No newline at end of file diff --git a/_images/mathmpl/math-19097cff83.png b/_images/mathmpl/math-19097cff83.png deleted file mode 120000 index 1249f10161f..00000000000 --- a/_images/mathmpl/math-19097cff83.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-19097cff83.png \ No newline at end of file diff --git a/_images/mathmpl/math-19194d54c3.png b/_images/mathmpl/math-19194d54c3.png deleted file mode 120000 index ca299c0f347..00000000000 --- a/_images/mathmpl/math-19194d54c3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-19194d54c3.png \ No newline at end of file diff --git a/_images/mathmpl/math-191c6ba7fa.png b/_images/mathmpl/math-191c6ba7fa.png deleted file mode 120000 index f6372338657..00000000000 --- a/_images/mathmpl/math-191c6ba7fa.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-191c6ba7fa.png \ No newline at end of file diff --git a/_images/mathmpl/math-1922d1ceaa.png b/_images/mathmpl/math-1922d1ceaa.png deleted file mode 120000 index 34aae2f8d07..00000000000 --- a/_images/mathmpl/math-1922d1ceaa.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.2/_images/mathmpl/math-1922d1ceaa.png \ No newline at end of file diff --git a/_images/mathmpl/math-19f957fc71.png b/_images/mathmpl/math-19f957fc71.png deleted file mode 120000 index 980ac923ca5..00000000000 --- a/_images/mathmpl/math-19f957fc71.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-19f957fc71.png \ No newline at end of file diff --git a/_images/mathmpl/math-1a15e7d622-2x.png b/_images/mathmpl/math-1a15e7d622-2x.png deleted file mode 120000 index 1f3055fc050..00000000000 --- a/_images/mathmpl/math-1a15e7d622-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1a15e7d622-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-1a15e7d622.png b/_images/mathmpl/math-1a15e7d622.png deleted file mode 120000 index bb37a6c558d..00000000000 --- a/_images/mathmpl/math-1a15e7d622.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1a15e7d622.png \ No newline at end of file diff --git a/_images/mathmpl/math-1a503a50f2.png b/_images/mathmpl/math-1a503a50f2.png deleted file mode 120000 index df6fde2252f..00000000000 --- a/_images/mathmpl/math-1a503a50f2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1a503a50f2.png \ No newline at end of file diff --git a/_images/mathmpl/math-1a6ec6d88f.png b/_images/mathmpl/math-1a6ec6d88f.png deleted file mode 120000 index 9d0bd7dab3c..00000000000 --- a/_images/mathmpl/math-1a6ec6d88f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1a6ec6d88f.png \ No newline at end of file diff --git a/_images/mathmpl/math-1afd9d2af0.png b/_images/mathmpl/math-1afd9d2af0.png deleted file mode 120000 index def74774329..00000000000 --- a/_images/mathmpl/math-1afd9d2af0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1afd9d2af0.png \ No newline at end of file diff --git a/_images/mathmpl/math-1afe874c8a-2x.png b/_images/mathmpl/math-1afe874c8a-2x.png deleted file mode 120000 index f4a979dfa09..00000000000 --- a/_images/mathmpl/math-1afe874c8a-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1afe874c8a-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-1afe874c8a.png b/_images/mathmpl/math-1afe874c8a.png deleted file mode 120000 index 87c5e22a91f..00000000000 --- a/_images/mathmpl/math-1afe874c8a.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1afe874c8a.png \ No newline at end of file diff --git a/_images/mathmpl/math-1bb3130224.png b/_images/mathmpl/math-1bb3130224.png deleted file mode 120000 index 5d289097e18..00000000000 --- a/_images/mathmpl/math-1bb3130224.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1bb3130224.png \ No newline at end of file diff --git a/_images/mathmpl/math-1c2ed5670a.png b/_images/mathmpl/math-1c2ed5670a.png deleted file mode 120000 index e1dc5e9602a..00000000000 --- a/_images/mathmpl/math-1c2ed5670a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1c2ed5670a.png \ No newline at end of file diff --git a/_images/mathmpl/math-1d11ce50b2.png b/_images/mathmpl/math-1d11ce50b2.png deleted file mode 120000 index 23cdd43cf99..00000000000 --- a/_images/mathmpl/math-1d11ce50b2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1d11ce50b2.png \ No newline at end of file diff --git a/_images/mathmpl/math-1d5f304dee-2x.png b/_images/mathmpl/math-1d5f304dee-2x.png deleted file mode 120000 index 75bf1e4a545..00000000000 --- a/_images/mathmpl/math-1d5f304dee-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1d5f304dee-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-1d5f304dee.png b/_images/mathmpl/math-1d5f304dee.png deleted file mode 120000 index daa2699c9ff..00000000000 --- a/_images/mathmpl/math-1d5f304dee.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1d5f304dee.png \ No newline at end of file diff --git a/_images/mathmpl/math-1de8afe642.png b/_images/mathmpl/math-1de8afe642.png deleted file mode 120000 index 0063f2976fb..00000000000 --- a/_images/mathmpl/math-1de8afe642.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1de8afe642.png \ No newline at end of file diff --git a/_images/mathmpl/math-1f62587cf2.png b/_images/mathmpl/math-1f62587cf2.png deleted file mode 120000 index 3d73b584264..00000000000 --- a/_images/mathmpl/math-1f62587cf2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-1f62587cf2.png \ No newline at end of file diff --git a/_images/mathmpl/math-1f9db75fdb.png b/_images/mathmpl/math-1f9db75fdb.png deleted file mode 120000 index 67cbcc0a1fe..00000000000 --- a/_images/mathmpl/math-1f9db75fdb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1f9db75fdb.png \ No newline at end of file diff --git a/_images/mathmpl/math-1fc73aa085-2x.png b/_images/mathmpl/math-1fc73aa085-2x.png deleted file mode 120000 index 466a9558eea..00000000000 --- a/_images/mathmpl/math-1fc73aa085-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1fc73aa085-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-1fc73aa085.png b/_images/mathmpl/math-1fc73aa085.png deleted file mode 120000 index 775c80b5daa..00000000000 --- a/_images/mathmpl/math-1fc73aa085.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-1fc73aa085.png \ No newline at end of file diff --git a/_images/mathmpl/math-1fca7a951f.png b/_images/mathmpl/math-1fca7a951f.png deleted file mode 120000 index 87dbc85eb5e..00000000000 --- a/_images/mathmpl/math-1fca7a951f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-1fca7a951f.png \ No newline at end of file diff --git a/_images/mathmpl/math-201b65e42c.png b/_images/mathmpl/math-201b65e42c.png deleted file mode 120000 index 2976cc82fc4..00000000000 --- a/_images/mathmpl/math-201b65e42c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-201b65e42c.png \ No newline at end of file diff --git a/_images/mathmpl/math-207852189a.png b/_images/mathmpl/math-207852189a.png deleted file mode 120000 index 0f528f268c6..00000000000 --- a/_images/mathmpl/math-207852189a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-207852189a.png \ No newline at end of file diff --git a/_images/mathmpl/math-20b287ac85.png b/_images/mathmpl/math-20b287ac85.png deleted file mode 120000 index b97459ffc2e..00000000000 --- a/_images/mathmpl/math-20b287ac85.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-20b287ac85.png \ No newline at end of file diff --git a/_images/mathmpl/math-219444d8f5.png b/_images/mathmpl/math-219444d8f5.png deleted file mode 120000 index 909227ca4a3..00000000000 --- a/_images/mathmpl/math-219444d8f5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-219444d8f5.png \ No newline at end of file diff --git a/_images/mathmpl/math-21b6ff3aa7.png b/_images/mathmpl/math-21b6ff3aa7.png deleted file mode 120000 index 86ebe37f88b..00000000000 --- a/_images/mathmpl/math-21b6ff3aa7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-21b6ff3aa7.png \ No newline at end of file diff --git a/_images/mathmpl/math-21d4b9ec5e.png b/_images/mathmpl/math-21d4b9ec5e.png deleted file mode 120000 index 3ec87d6b198..00000000000 --- a/_images/mathmpl/math-21d4b9ec5e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-21d4b9ec5e.png \ No newline at end of file diff --git a/_images/mathmpl/math-21e977e4ec.png b/_images/mathmpl/math-21e977e4ec.png deleted file mode 120000 index 147feef415f..00000000000 --- a/_images/mathmpl/math-21e977e4ec.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-21e977e4ec.png \ No newline at end of file diff --git a/_images/mathmpl/math-22904f345d.png b/_images/mathmpl/math-22904f345d.png deleted file mode 120000 index 718b8e22948..00000000000 --- a/_images/mathmpl/math-22904f345d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-22904f345d.png \ No newline at end of file diff --git a/_images/mathmpl/math-229058201e.png b/_images/mathmpl/math-229058201e.png deleted file mode 120000 index 4a145ff2bba..00000000000 --- a/_images/mathmpl/math-229058201e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-229058201e.png \ No newline at end of file diff --git a/_images/mathmpl/math-22a812f02e.png b/_images/mathmpl/math-22a812f02e.png deleted file mode 120000 index e7e41288b30..00000000000 --- a/_images/mathmpl/math-22a812f02e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-22a812f02e.png \ No newline at end of file diff --git a/_images/mathmpl/math-2303518311.png b/_images/mathmpl/math-2303518311.png deleted file mode 120000 index d89a19d8866..00000000000 --- a/_images/mathmpl/math-2303518311.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2303518311.png \ No newline at end of file diff --git a/_images/mathmpl/math-2303577dee.png b/_images/mathmpl/math-2303577dee.png deleted file mode 120000 index 4b2354c960c..00000000000 --- a/_images/mathmpl/math-2303577dee.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2303577dee.png \ No newline at end of file diff --git a/_images/mathmpl/math-23aadf15cc-2x.png b/_images/mathmpl/math-23aadf15cc-2x.png deleted file mode 120000 index 1d43ce66502..00000000000 --- a/_images/mathmpl/math-23aadf15cc-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-23aadf15cc-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-23aadf15cc.png b/_images/mathmpl/math-23aadf15cc.png deleted file mode 120000 index 6c25b20515e..00000000000 --- a/_images/mathmpl/math-23aadf15cc.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-23aadf15cc.png \ No newline at end of file diff --git a/_images/mathmpl/math-23c4970a1a.png b/_images/mathmpl/math-23c4970a1a.png deleted file mode 120000 index 33fc852dd8a..00000000000 --- a/_images/mathmpl/math-23c4970a1a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-23c4970a1a.png \ No newline at end of file diff --git a/_images/mathmpl/math-2480720752.png b/_images/mathmpl/math-2480720752.png deleted file mode 120000 index d1c0ad02147..00000000000 --- a/_images/mathmpl/math-2480720752.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2480720752.png \ No newline at end of file diff --git a/_images/mathmpl/math-2525d5d71d.png b/_images/mathmpl/math-2525d5d71d.png deleted file mode 120000 index 5d782bf02bd..00000000000 --- a/_images/mathmpl/math-2525d5d71d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2525d5d71d.png \ No newline at end of file diff --git a/_images/mathmpl/math-2617106b1e.png b/_images/mathmpl/math-2617106b1e.png deleted file mode 120000 index 7d7c72595c5..00000000000 --- a/_images/mathmpl/math-2617106b1e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2617106b1e.png \ No newline at end of file diff --git a/_images/mathmpl/math-268c486057.png b/_images/mathmpl/math-268c486057.png deleted file mode 120000 index 81560001fbe..00000000000 --- a/_images/mathmpl/math-268c486057.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-268c486057.png \ No newline at end of file diff --git a/_images/mathmpl/math-26f9e5316b.png b/_images/mathmpl/math-26f9e5316b.png deleted file mode 120000 index 05535dfe794..00000000000 --- a/_images/mathmpl/math-26f9e5316b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-26f9e5316b.png \ No newline at end of file diff --git a/_images/mathmpl/math-26fab8f44f.png b/_images/mathmpl/math-26fab8f44f.png deleted file mode 120000 index f0d436934f1..00000000000 --- a/_images/mathmpl/math-26fab8f44f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-26fab8f44f.png \ No newline at end of file diff --git a/_images/mathmpl/math-28d3e90e31.png b/_images/mathmpl/math-28d3e90e31.png deleted file mode 120000 index 4136fce0803..00000000000 --- a/_images/mathmpl/math-28d3e90e31.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-28d3e90e31.png \ No newline at end of file diff --git a/_images/mathmpl/math-293c147d21.png b/_images/mathmpl/math-293c147d21.png deleted file mode 120000 index 706ff6bad33..00000000000 --- a/_images/mathmpl/math-293c147d21.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-293c147d21.png \ No newline at end of file diff --git a/_images/mathmpl/math-29a7c6603c.png b/_images/mathmpl/math-29a7c6603c.png deleted file mode 120000 index 0988b28b7e9..00000000000 --- a/_images/mathmpl/math-29a7c6603c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-29a7c6603c.png \ No newline at end of file diff --git a/_images/mathmpl/math-2a327a85e8.png b/_images/mathmpl/math-2a327a85e8.png deleted file mode 120000 index 4e3d0938c4a..00000000000 --- a/_images/mathmpl/math-2a327a85e8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2a327a85e8.png \ No newline at end of file diff --git a/_images/mathmpl/math-2a54002803.png b/_images/mathmpl/math-2a54002803.png deleted file mode 120000 index 268b6f3421c..00000000000 --- a/_images/mathmpl/math-2a54002803.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2a54002803.png \ No newline at end of file diff --git a/_images/mathmpl/math-2aff52a07e.png b/_images/mathmpl/math-2aff52a07e.png deleted file mode 120000 index 03a59a17273..00000000000 --- a/_images/mathmpl/math-2aff52a07e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2aff52a07e.png \ No newline at end of file diff --git a/_images/mathmpl/math-2b42f15859.png b/_images/mathmpl/math-2b42f15859.png deleted file mode 120000 index 4707c2ce137..00000000000 --- a/_images/mathmpl/math-2b42f15859.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2b42f15859.png \ No newline at end of file diff --git a/_images/mathmpl/math-2c7a9dac6d.png b/_images/mathmpl/math-2c7a9dac6d.png deleted file mode 120000 index 3c5d446d8ab..00000000000 --- a/_images/mathmpl/math-2c7a9dac6d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2c7a9dac6d.png \ No newline at end of file diff --git a/_images/mathmpl/math-2cdbf2db88.png b/_images/mathmpl/math-2cdbf2db88.png deleted file mode 120000 index a18a46cae45..00000000000 --- a/_images/mathmpl/math-2cdbf2db88.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2cdbf2db88.png \ No newline at end of file diff --git a/_images/mathmpl/math-2e03b9e387.png b/_images/mathmpl/math-2e03b9e387.png deleted file mode 120000 index 670cbdb3c40..00000000000 --- a/_images/mathmpl/math-2e03b9e387.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2e03b9e387.png \ No newline at end of file diff --git a/_images/mathmpl/math-2e885fe67f.png b/_images/mathmpl/math-2e885fe67f.png deleted file mode 120000 index 15de5ce53c1..00000000000 --- a/_images/mathmpl/math-2e885fe67f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2e885fe67f.png \ No newline at end of file diff --git a/_images/mathmpl/math-2eaa265b46.png b/_images/mathmpl/math-2eaa265b46.png deleted file mode 120000 index 186cd35cde7..00000000000 --- a/_images/mathmpl/math-2eaa265b46.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2eaa265b46.png \ No newline at end of file diff --git a/_images/mathmpl/math-2f010c89dd.png b/_images/mathmpl/math-2f010c89dd.png deleted file mode 120000 index 15ec3a3281b..00000000000 --- a/_images/mathmpl/math-2f010c89dd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2f010c89dd.png \ No newline at end of file diff --git a/_images/mathmpl/math-2f2cc73cd8.png b/_images/mathmpl/math-2f2cc73cd8.png deleted file mode 120000 index cdbfe0643a9..00000000000 --- a/_images/mathmpl/math-2f2cc73cd8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2f2cc73cd8.png \ No newline at end of file diff --git a/_images/mathmpl/math-2fc0f7c957.png b/_images/mathmpl/math-2fc0f7c957.png deleted file mode 120000 index 4a5994d507b..00000000000 --- a/_images/mathmpl/math-2fc0f7c957.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2fc0f7c957.png \ No newline at end of file diff --git a/_images/mathmpl/math-2fcd70072d.png b/_images/mathmpl/math-2fcd70072d.png deleted file mode 120000 index 38cfb4bf857..00000000000 --- a/_images/mathmpl/math-2fcd70072d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2fcd70072d.png \ No newline at end of file diff --git a/_images/mathmpl/math-2ff97d8581.png b/_images/mathmpl/math-2ff97d8581.png deleted file mode 120000 index fecc4ad9cf6..00000000000 --- a/_images/mathmpl/math-2ff97d8581.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-2ff97d8581.png \ No newline at end of file diff --git a/_images/mathmpl/math-301349a96f.png b/_images/mathmpl/math-301349a96f.png deleted file mode 120000 index f9dbc6a0627..00000000000 --- a/_images/mathmpl/math-301349a96f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-301349a96f.png \ No newline at end of file diff --git a/_images/mathmpl/math-3025afbc71.png b/_images/mathmpl/math-3025afbc71.png deleted file mode 120000 index 05075c2bf99..00000000000 --- a/_images/mathmpl/math-3025afbc71.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3025afbc71.png \ No newline at end of file diff --git a/_images/mathmpl/math-305e05a6ab.png b/_images/mathmpl/math-305e05a6ab.png deleted file mode 120000 index 2e9a001d201..00000000000 --- a/_images/mathmpl/math-305e05a6ab.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-305e05a6ab.png \ No newline at end of file diff --git a/_images/mathmpl/math-306ea70acd.png b/_images/mathmpl/math-306ea70acd.png deleted file mode 120000 index 87af882ab34..00000000000 --- a/_images/mathmpl/math-306ea70acd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-306ea70acd.png \ No newline at end of file diff --git a/_images/mathmpl/math-311d2647c5.png b/_images/mathmpl/math-311d2647c5.png deleted file mode 120000 index 019c763c5a9..00000000000 --- a/_images/mathmpl/math-311d2647c5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-311d2647c5.png \ No newline at end of file diff --git a/_images/mathmpl/math-317920b703.png b/_images/mathmpl/math-317920b703.png deleted file mode 120000 index c313434e279..00000000000 --- a/_images/mathmpl/math-317920b703.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-317920b703.png \ No newline at end of file diff --git a/_images/mathmpl/math-3199ca3512.png b/_images/mathmpl/math-3199ca3512.png deleted file mode 120000 index 74796eba970..00000000000 --- a/_images/mathmpl/math-3199ca3512.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3199ca3512.png \ No newline at end of file diff --git a/_images/mathmpl/math-3207fff524.png b/_images/mathmpl/math-3207fff524.png deleted file mode 120000 index 1651a676e4c..00000000000 --- a/_images/mathmpl/math-3207fff524.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3207fff524.png \ No newline at end of file diff --git a/_images/mathmpl/math-3223454152.png b/_images/mathmpl/math-3223454152.png deleted file mode 120000 index c54b464273f..00000000000 --- a/_images/mathmpl/math-3223454152.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3223454152.png \ No newline at end of file diff --git a/_images/mathmpl/math-3234da3142.png b/_images/mathmpl/math-3234da3142.png deleted file mode 120000 index c63c79e7982..00000000000 --- a/_images/mathmpl/math-3234da3142.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3234da3142.png \ No newline at end of file diff --git a/_images/mathmpl/math-32710445c4.png b/_images/mathmpl/math-32710445c4.png deleted file mode 120000 index b509fba4718..00000000000 --- a/_images/mathmpl/math-32710445c4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-32710445c4.png \ No newline at end of file diff --git a/_images/mathmpl/math-329584d288.png b/_images/mathmpl/math-329584d288.png deleted file mode 120000 index af10ff07efc..00000000000 --- a/_images/mathmpl/math-329584d288.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-329584d288.png \ No newline at end of file diff --git a/_images/mathmpl/math-334509d2b3.png b/_images/mathmpl/math-334509d2b3.png deleted file mode 120000 index add434e7bcb..00000000000 --- a/_images/mathmpl/math-334509d2b3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-334509d2b3.png \ No newline at end of file diff --git a/_images/mathmpl/math-340c66cf40.png b/_images/mathmpl/math-340c66cf40.png deleted file mode 120000 index f14bbf92823..00000000000 --- a/_images/mathmpl/math-340c66cf40.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-340c66cf40.png \ No newline at end of file diff --git a/_images/mathmpl/math-343170b287.png b/_images/mathmpl/math-343170b287.png deleted file mode 120000 index 3bcdd56649b..00000000000 --- a/_images/mathmpl/math-343170b287.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-343170b287.png \ No newline at end of file diff --git a/_images/mathmpl/math-3488de1d0a.png b/_images/mathmpl/math-3488de1d0a.png deleted file mode 120000 index c1e776d96d4..00000000000 --- a/_images/mathmpl/math-3488de1d0a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3488de1d0a.png \ No newline at end of file diff --git a/_images/mathmpl/math-358f2a2131.png b/_images/mathmpl/math-358f2a2131.png deleted file mode 120000 index ab7c7beaccb..00000000000 --- a/_images/mathmpl/math-358f2a2131.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-358f2a2131.png \ No newline at end of file diff --git a/_images/mathmpl/math-3642ca147d.png b/_images/mathmpl/math-3642ca147d.png deleted file mode 120000 index 61218cb585a..00000000000 --- a/_images/mathmpl/math-3642ca147d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3642ca147d.png \ No newline at end of file diff --git a/_images/mathmpl/math-37454f1e25.png b/_images/mathmpl/math-37454f1e25.png deleted file mode 120000 index 4bed384d980..00000000000 --- a/_images/mathmpl/math-37454f1e25.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-37454f1e25.png \ No newline at end of file diff --git a/_images/mathmpl/math-374b544f7d.png b/_images/mathmpl/math-374b544f7d.png deleted file mode 120000 index cefd87f2cc5..00000000000 --- a/_images/mathmpl/math-374b544f7d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-374b544f7d.png \ No newline at end of file diff --git a/_images/mathmpl/math-376450e92a.png b/_images/mathmpl/math-376450e92a.png deleted file mode 120000 index 04a78178719..00000000000 --- a/_images/mathmpl/math-376450e92a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-376450e92a.png \ No newline at end of file diff --git a/_images/mathmpl/math-3842b45874.png b/_images/mathmpl/math-3842b45874.png deleted file mode 120000 index a82043d2623..00000000000 --- a/_images/mathmpl/math-3842b45874.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-3842b45874.png \ No newline at end of file diff --git a/_images/mathmpl/math-38501d21c9.png b/_images/mathmpl/math-38501d21c9.png deleted file mode 120000 index 50b589c4fe0..00000000000 --- a/_images/mathmpl/math-38501d21c9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-38501d21c9.png \ No newline at end of file diff --git a/_images/mathmpl/math-387c1a8741.png b/_images/mathmpl/math-387c1a8741.png deleted file mode 120000 index 7eaa4161afd..00000000000 --- a/_images/mathmpl/math-387c1a8741.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-387c1a8741.png \ No newline at end of file diff --git a/_images/mathmpl/math-38bf4cf10d.png b/_images/mathmpl/math-38bf4cf10d.png deleted file mode 120000 index 038000349d7..00000000000 --- a/_images/mathmpl/math-38bf4cf10d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-38bf4cf10d.png \ No newline at end of file diff --git a/_images/mathmpl/math-390d3dc75c.png b/_images/mathmpl/math-390d3dc75c.png deleted file mode 120000 index 84a097cb8cf..00000000000 --- a/_images/mathmpl/math-390d3dc75c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-390d3dc75c.png \ No newline at end of file diff --git a/_images/mathmpl/math-397b5fc155.png b/_images/mathmpl/math-397b5fc155.png deleted file mode 120000 index c862dafb35e..00000000000 --- a/_images/mathmpl/math-397b5fc155.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-397b5fc155.png \ No newline at end of file diff --git a/_images/mathmpl/math-3a2e7f36d3-2x.png b/_images/mathmpl/math-3a2e7f36d3-2x.png deleted file mode 120000 index 5fade553c94..00000000000 --- a/_images/mathmpl/math-3a2e7f36d3-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-3a2e7f36d3-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-3a2e7f36d3.png b/_images/mathmpl/math-3a2e7f36d3.png deleted file mode 120000 index fd096e1cb89..00000000000 --- a/_images/mathmpl/math-3a2e7f36d3.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-3a2e7f36d3.png \ No newline at end of file diff --git a/_images/mathmpl/math-3a8b2e99d6.png b/_images/mathmpl/math-3a8b2e99d6.png deleted file mode 120000 index 7f988615348..00000000000 --- a/_images/mathmpl/math-3a8b2e99d6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-3a8b2e99d6.png \ No newline at end of file diff --git a/_images/mathmpl/math-3b2a80cd56-2x.png b/_images/mathmpl/math-3b2a80cd56-2x.png deleted file mode 120000 index 97eeffabb9b..00000000000 --- a/_images/mathmpl/math-3b2a80cd56-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-3b2a80cd56-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-3b2a80cd56.png b/_images/mathmpl/math-3b2a80cd56.png deleted file mode 120000 index 61bd1f3c30e..00000000000 --- a/_images/mathmpl/math-3b2a80cd56.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-3b2a80cd56.png \ No newline at end of file diff --git a/_images/mathmpl/math-3b5db3b36b.png b/_images/mathmpl/math-3b5db3b36b.png deleted file mode 120000 index 103c9c7ee8c..00000000000 --- a/_images/mathmpl/math-3b5db3b36b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3b5db3b36b.png \ No newline at end of file diff --git a/_images/mathmpl/math-3b72c12de0.png b/_images/mathmpl/math-3b72c12de0.png deleted file mode 120000 index 7d759b31dce..00000000000 --- a/_images/mathmpl/math-3b72c12de0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3b72c12de0.png \ No newline at end of file diff --git a/_images/mathmpl/math-3b938a5601.png b/_images/mathmpl/math-3b938a5601.png deleted file mode 120000 index 6136ce87a58..00000000000 --- a/_images/mathmpl/math-3b938a5601.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3b938a5601.png \ No newline at end of file diff --git a/_images/mathmpl/math-3ba37e0517.png b/_images/mathmpl/math-3ba37e0517.png deleted file mode 120000 index a3524f0f05b..00000000000 --- a/_images/mathmpl/math-3ba37e0517.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-3ba37e0517.png \ No newline at end of file diff --git a/_images/mathmpl/math-3bfe8e8950.png b/_images/mathmpl/math-3bfe8e8950.png deleted file mode 120000 index f55a8e8ae17..00000000000 --- a/_images/mathmpl/math-3bfe8e8950.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3bfe8e8950.png \ No newline at end of file diff --git a/_images/mathmpl/math-3c072a15c0.png b/_images/mathmpl/math-3c072a15c0.png deleted file mode 120000 index 86cb4bff6fd..00000000000 --- a/_images/mathmpl/math-3c072a15c0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3c072a15c0.png \ No newline at end of file diff --git a/_images/mathmpl/math-3ce6141dea.png b/_images/mathmpl/math-3ce6141dea.png deleted file mode 120000 index 20bb77b1f17..00000000000 --- a/_images/mathmpl/math-3ce6141dea.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3ce6141dea.png \ No newline at end of file diff --git a/_images/mathmpl/math-3d7ac4bb5c.png b/_images/mathmpl/math-3d7ac4bb5c.png deleted file mode 120000 index dc90c21c1a4..00000000000 --- a/_images/mathmpl/math-3d7ac4bb5c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3d7ac4bb5c.png \ No newline at end of file diff --git a/_images/mathmpl/math-3d85215bfa.png b/_images/mathmpl/math-3d85215bfa.png deleted file mode 120000 index b7e2e0556c1..00000000000 --- a/_images/mathmpl/math-3d85215bfa.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3d85215bfa.png \ No newline at end of file diff --git a/_images/mathmpl/math-3db5c70042.png b/_images/mathmpl/math-3db5c70042.png deleted file mode 120000 index 8e44e987a9f..00000000000 --- a/_images/mathmpl/math-3db5c70042.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3db5c70042.png \ No newline at end of file diff --git a/_images/mathmpl/math-3df678db55.png b/_images/mathmpl/math-3df678db55.png deleted file mode 120000 index 260dd5110f6..00000000000 --- a/_images/mathmpl/math-3df678db55.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3df678db55.png \ No newline at end of file diff --git a/_images/mathmpl/math-3e25be9041.png b/_images/mathmpl/math-3e25be9041.png deleted file mode 120000 index e77295b9f34..00000000000 --- a/_images/mathmpl/math-3e25be9041.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3e25be9041.png \ No newline at end of file diff --git a/_images/mathmpl/math-3e45c5a9b2.png b/_images/mathmpl/math-3e45c5a9b2.png deleted file mode 120000 index 8e1acc825a1..00000000000 --- a/_images/mathmpl/math-3e45c5a9b2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-3e45c5a9b2.png \ No newline at end of file diff --git a/_images/mathmpl/math-3ea081f1d9.png b/_images/mathmpl/math-3ea081f1d9.png deleted file mode 120000 index 70fc72f6a0f..00000000000 --- a/_images/mathmpl/math-3ea081f1d9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3ea081f1d9.png \ No newline at end of file diff --git a/_images/mathmpl/math-3fc9142b1d.png b/_images/mathmpl/math-3fc9142b1d.png deleted file mode 120000 index 3531fbf9736..00000000000 --- a/_images/mathmpl/math-3fc9142b1d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-3fc9142b1d.png \ No newline at end of file diff --git a/_images/mathmpl/math-41188a0c1b.png b/_images/mathmpl/math-41188a0c1b.png deleted file mode 120000 index 5e9637ccdb8..00000000000 --- a/_images/mathmpl/math-41188a0c1b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-41188a0c1b.png \ No newline at end of file diff --git a/_images/mathmpl/math-41f636a823.png b/_images/mathmpl/math-41f636a823.png deleted file mode 120000 index 20b853c80e6..00000000000 --- a/_images/mathmpl/math-41f636a823.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-41f636a823.png \ No newline at end of file diff --git a/_images/mathmpl/math-4225d47da8.png b/_images/mathmpl/math-4225d47da8.png deleted file mode 120000 index 6ecb134c909..00000000000 --- a/_images/mathmpl/math-4225d47da8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4225d47da8.png \ No newline at end of file diff --git a/_images/mathmpl/math-433174617c.png b/_images/mathmpl/math-433174617c.png deleted file mode 120000 index 43ba4d9f100..00000000000 --- a/_images/mathmpl/math-433174617c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-433174617c.png \ No newline at end of file diff --git a/_images/mathmpl/math-43575c473c.png b/_images/mathmpl/math-43575c473c.png deleted file mode 120000 index 3877a08fa47..00000000000 --- a/_images/mathmpl/math-43575c473c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-43575c473c.png \ No newline at end of file diff --git a/_images/mathmpl/math-436efe52d1.png b/_images/mathmpl/math-436efe52d1.png deleted file mode 120000 index 914ca5a5185..00000000000 --- a/_images/mathmpl/math-436efe52d1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-436efe52d1.png \ No newline at end of file diff --git a/_images/mathmpl/math-43a44ec8e4.png b/_images/mathmpl/math-43a44ec8e4.png deleted file mode 120000 index 94abf9fd384..00000000000 --- a/_images/mathmpl/math-43a44ec8e4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-43a44ec8e4.png \ No newline at end of file diff --git a/_images/mathmpl/math-441aa359eb.png b/_images/mathmpl/math-441aa359eb.png deleted file mode 120000 index ffa9cdbabab..00000000000 --- a/_images/mathmpl/math-441aa359eb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-441aa359eb.png \ No newline at end of file diff --git a/_images/mathmpl/math-449680794f.png b/_images/mathmpl/math-449680794f.png deleted file mode 120000 index a143d3483eb..00000000000 --- a/_images/mathmpl/math-449680794f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-449680794f.png \ No newline at end of file diff --git a/_images/mathmpl/math-44f45b7160.png b/_images/mathmpl/math-44f45b7160.png deleted file mode 120000 index ecb3bd5d538..00000000000 --- a/_images/mathmpl/math-44f45b7160.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-44f45b7160.png \ No newline at end of file diff --git a/_images/mathmpl/math-4533229649.png b/_images/mathmpl/math-4533229649.png deleted file mode 120000 index 0cd1833a7ed..00000000000 --- a/_images/mathmpl/math-4533229649.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-4533229649.png \ No newline at end of file diff --git a/_images/mathmpl/math-459d7c5693.png b/_images/mathmpl/math-459d7c5693.png deleted file mode 120000 index fa817a60948..00000000000 --- a/_images/mathmpl/math-459d7c5693.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-459d7c5693.png \ No newline at end of file diff --git a/_images/mathmpl/math-45eaae26d2.png b/_images/mathmpl/math-45eaae26d2.png deleted file mode 120000 index 2a63dd00390..00000000000 --- a/_images/mathmpl/math-45eaae26d2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-45eaae26d2.png \ No newline at end of file diff --git a/_images/mathmpl/math-462e2c02f1.png b/_images/mathmpl/math-462e2c02f1.png deleted file mode 120000 index e482a387f4e..00000000000 --- a/_images/mathmpl/math-462e2c02f1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-462e2c02f1.png \ No newline at end of file diff --git a/_images/mathmpl/math-46c392f788.png b/_images/mathmpl/math-46c392f788.png deleted file mode 120000 index 46988dd726a..00000000000 --- a/_images/mathmpl/math-46c392f788.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-46c392f788.png \ No newline at end of file diff --git a/_images/mathmpl/math-46d99aa165.png b/_images/mathmpl/math-46d99aa165.png deleted file mode 120000 index 8bedf03a600..00000000000 --- a/_images/mathmpl/math-46d99aa165.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-46d99aa165.png \ No newline at end of file diff --git a/_images/mathmpl/math-482297a060.png b/_images/mathmpl/math-482297a060.png deleted file mode 120000 index 2d4639affd1..00000000000 --- a/_images/mathmpl/math-482297a060.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-482297a060.png \ No newline at end of file diff --git a/_images/mathmpl/math-497b831b05.png b/_images/mathmpl/math-497b831b05.png deleted file mode 120000 index fb2bfbffa6f..00000000000 --- a/_images/mathmpl/math-497b831b05.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-497b831b05.png \ No newline at end of file diff --git a/_images/mathmpl/math-49f3f2784e.png b/_images/mathmpl/math-49f3f2784e.png deleted file mode 120000 index b0bf7adb2e4..00000000000 --- a/_images/mathmpl/math-49f3f2784e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-49f3f2784e.png \ No newline at end of file diff --git a/_images/mathmpl/math-4a68c72624.png b/_images/mathmpl/math-4a68c72624.png deleted file mode 120000 index 74787a2a717..00000000000 --- a/_images/mathmpl/math-4a68c72624.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4a68c72624.png \ No newline at end of file diff --git a/_images/mathmpl/math-4a858610d4.png b/_images/mathmpl/math-4a858610d4.png deleted file mode 120000 index 22e1344590b..00000000000 --- a/_images/mathmpl/math-4a858610d4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-4a858610d4.png \ No newline at end of file diff --git a/_images/mathmpl/math-4b07b72122.png b/_images/mathmpl/math-4b07b72122.png deleted file mode 120000 index 322e4c6f45d..00000000000 --- a/_images/mathmpl/math-4b07b72122.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4b07b72122.png \ No newline at end of file diff --git a/_images/mathmpl/math-4c229f580d.png b/_images/mathmpl/math-4c229f580d.png deleted file mode 120000 index 4bc871491be..00000000000 --- a/_images/mathmpl/math-4c229f580d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4c229f580d.png \ No newline at end of file diff --git a/_images/mathmpl/math-4c5d76f523.png b/_images/mathmpl/math-4c5d76f523.png deleted file mode 120000 index d937e0e219f..00000000000 --- a/_images/mathmpl/math-4c5d76f523.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4c5d76f523.png \ No newline at end of file diff --git a/_images/mathmpl/math-4c882716a1.png b/_images/mathmpl/math-4c882716a1.png deleted file mode 120000 index 4456c0dcd4a..00000000000 --- a/_images/mathmpl/math-4c882716a1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-4c882716a1.png \ No newline at end of file diff --git a/_images/mathmpl/math-4cd21f8ba6.png b/_images/mathmpl/math-4cd21f8ba6.png deleted file mode 120000 index b49848bb97c..00000000000 --- a/_images/mathmpl/math-4cd21f8ba6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4cd21f8ba6.png \ No newline at end of file diff --git a/_images/mathmpl/math-4cd9a23707.png b/_images/mathmpl/math-4cd9a23707.png deleted file mode 120000 index 874246923eb..00000000000 --- a/_images/mathmpl/math-4cd9a23707.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4cd9a23707.png \ No newline at end of file diff --git a/_images/mathmpl/math-4ceaca4089.png b/_images/mathmpl/math-4ceaca4089.png deleted file mode 120000 index 6f83c0577d5..00000000000 --- a/_images/mathmpl/math-4ceaca4089.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4ceaca4089.png \ No newline at end of file diff --git a/_images/mathmpl/math-4d24dff6f8.png b/_images/mathmpl/math-4d24dff6f8.png deleted file mode 120000 index e48c20e076f..00000000000 --- a/_images/mathmpl/math-4d24dff6f8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4d24dff6f8.png \ No newline at end of file diff --git a/_images/mathmpl/math-4d5d5f4ffb.png b/_images/mathmpl/math-4d5d5f4ffb.png deleted file mode 120000 index a24e89f4c25..00000000000 --- a/_images/mathmpl/math-4d5d5f4ffb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4d5d5f4ffb.png \ No newline at end of file diff --git a/_images/mathmpl/math-4d96f7ca18.png b/_images/mathmpl/math-4d96f7ca18.png deleted file mode 120000 index af82961fdab..00000000000 --- a/_images/mathmpl/math-4d96f7ca18.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.3/_images/mathmpl/math-4d96f7ca18.png \ No newline at end of file diff --git a/_images/mathmpl/math-4ea8b1e13e.png b/_images/mathmpl/math-4ea8b1e13e.png deleted file mode 120000 index ea5b366a8c1..00000000000 --- a/_images/mathmpl/math-4ea8b1e13e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4ea8b1e13e.png \ No newline at end of file diff --git a/_images/mathmpl/math-4eacc6ba71.png b/_images/mathmpl/math-4eacc6ba71.png deleted file mode 120000 index 6cc4fe1e9c6..00000000000 --- a/_images/mathmpl/math-4eacc6ba71.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4eacc6ba71.png \ No newline at end of file diff --git a/_images/mathmpl/math-4f1ee0d2b3.png b/_images/mathmpl/math-4f1ee0d2b3.png deleted file mode 120000 index 7de3c126cec..00000000000 --- a/_images/mathmpl/math-4f1ee0d2b3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4f1ee0d2b3.png \ No newline at end of file diff --git a/_images/mathmpl/math-4f55ade322.png b/_images/mathmpl/math-4f55ade322.png deleted file mode 120000 index 7c2c5ce3470..00000000000 --- a/_images/mathmpl/math-4f55ade322.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-4f55ade322.png \ No newline at end of file diff --git a/_images/mathmpl/math-4f8107394b.png b/_images/mathmpl/math-4f8107394b.png deleted file mode 120000 index da7b493cc6b..00000000000 --- a/_images/mathmpl/math-4f8107394b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-4f8107394b.png \ No newline at end of file diff --git a/_images/mathmpl/math-510e2aecba.png b/_images/mathmpl/math-510e2aecba.png deleted file mode 120000 index 95cdb9136d3..00000000000 --- a/_images/mathmpl/math-510e2aecba.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-510e2aecba.png \ No newline at end of file diff --git a/_images/mathmpl/math-5149852f08.png b/_images/mathmpl/math-5149852f08.png deleted file mode 120000 index 791266f24da..00000000000 --- a/_images/mathmpl/math-5149852f08.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5149852f08.png \ No newline at end of file diff --git a/_images/mathmpl/math-518af824c6.png b/_images/mathmpl/math-518af824c6.png deleted file mode 120000 index ea96297d0fd..00000000000 --- a/_images/mathmpl/math-518af824c6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-518af824c6.png \ No newline at end of file diff --git a/_images/mathmpl/math-51ae43b24b.png b/_images/mathmpl/math-51ae43b24b.png deleted file mode 120000 index 046472424d1..00000000000 --- a/_images/mathmpl/math-51ae43b24b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-51ae43b24b.png \ No newline at end of file diff --git a/_images/mathmpl/math-51cd44e108.png b/_images/mathmpl/math-51cd44e108.png deleted file mode 120000 index 9931276e535..00000000000 --- a/_images/mathmpl/math-51cd44e108.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-51cd44e108.png \ No newline at end of file diff --git a/_images/mathmpl/math-52ddd6655e.png b/_images/mathmpl/math-52ddd6655e.png deleted file mode 120000 index 400c7ed39a6..00000000000 --- a/_images/mathmpl/math-52ddd6655e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-52ddd6655e.png \ No newline at end of file diff --git a/_images/mathmpl/math-52eae78384.png b/_images/mathmpl/math-52eae78384.png deleted file mode 120000 index 360d3130de1..00000000000 --- a/_images/mathmpl/math-52eae78384.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-52eae78384.png \ No newline at end of file diff --git a/_images/mathmpl/math-52ee117ecd.png b/_images/mathmpl/math-52ee117ecd.png deleted file mode 120000 index bd11ecd3e5a..00000000000 --- a/_images/mathmpl/math-52ee117ecd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-52ee117ecd.png \ No newline at end of file diff --git a/_images/mathmpl/math-52fada04e6-2x.png b/_images/mathmpl/math-52fada04e6-2x.png deleted file mode 120000 index 7163c928099..00000000000 --- a/_images/mathmpl/math-52fada04e6-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-52fada04e6-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-52fada04e6.png b/_images/mathmpl/math-52fada04e6.png deleted file mode 120000 index 905d454760a..00000000000 --- a/_images/mathmpl/math-52fada04e6.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-52fada04e6.png \ No newline at end of file diff --git a/_images/mathmpl/math-5325d825f0.png b/_images/mathmpl/math-5325d825f0.png deleted file mode 120000 index a7734f02ff8..00000000000 --- a/_images/mathmpl/math-5325d825f0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5325d825f0.png \ No newline at end of file diff --git a/_images/mathmpl/math-53e4edd44d.png b/_images/mathmpl/math-53e4edd44d.png deleted file mode 120000 index fd576a6245f..00000000000 --- a/_images/mathmpl/math-53e4edd44d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-53e4edd44d.png \ No newline at end of file diff --git a/_images/mathmpl/math-54cbc28bce.png b/_images/mathmpl/math-54cbc28bce.png deleted file mode 120000 index a24a5c1e39a..00000000000 --- a/_images/mathmpl/math-54cbc28bce.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-54cbc28bce.png \ No newline at end of file diff --git a/_images/mathmpl/math-554199c05b.png b/_images/mathmpl/math-554199c05b.png deleted file mode 120000 index d297805b908..00000000000 --- a/_images/mathmpl/math-554199c05b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-554199c05b.png \ No newline at end of file diff --git a/_images/mathmpl/math-5686c5a93f.png b/_images/mathmpl/math-5686c5a93f.png deleted file mode 120000 index a20f4007234..00000000000 --- a/_images/mathmpl/math-5686c5a93f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5686c5a93f.png \ No newline at end of file diff --git a/_images/mathmpl/math-56b7078922.png b/_images/mathmpl/math-56b7078922.png deleted file mode 120000 index f80025231a1..00000000000 --- a/_images/mathmpl/math-56b7078922.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-56b7078922.png \ No newline at end of file diff --git a/_images/mathmpl/math-56f328ad77.png b/_images/mathmpl/math-56f328ad77.png deleted file mode 120000 index acab1c28aa4..00000000000 --- a/_images/mathmpl/math-56f328ad77.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-56f328ad77.png \ No newline at end of file diff --git a/_images/mathmpl/math-580fac9571.png b/_images/mathmpl/math-580fac9571.png deleted file mode 120000 index 20dad296417..00000000000 --- a/_images/mathmpl/math-580fac9571.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-580fac9571.png \ No newline at end of file diff --git a/_images/mathmpl/math-58162c32f0.png b/_images/mathmpl/math-58162c32f0.png deleted file mode 120000 index 90257a9222f..00000000000 --- a/_images/mathmpl/math-58162c32f0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-58162c32f0.png \ No newline at end of file diff --git a/_images/mathmpl/math-58775d54bf.png b/_images/mathmpl/math-58775d54bf.png deleted file mode 120000 index 320c4f72f78..00000000000 --- a/_images/mathmpl/math-58775d54bf.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-58775d54bf.png \ No newline at end of file diff --git a/_images/mathmpl/math-58e3fcf6fd.png b/_images/mathmpl/math-58e3fcf6fd.png deleted file mode 120000 index dc772017c26..00000000000 --- a/_images/mathmpl/math-58e3fcf6fd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-58e3fcf6fd.png \ No newline at end of file diff --git a/_images/mathmpl/math-58f182e47e.png b/_images/mathmpl/math-58f182e47e.png deleted file mode 120000 index 6f71be00cf1..00000000000 --- a/_images/mathmpl/math-58f182e47e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-58f182e47e.png \ No newline at end of file diff --git a/_images/mathmpl/math-58f2478293.png b/_images/mathmpl/math-58f2478293.png deleted file mode 120000 index 6bdf505add4..00000000000 --- a/_images/mathmpl/math-58f2478293.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-58f2478293.png \ No newline at end of file diff --git a/_images/mathmpl/math-59ed813421.png b/_images/mathmpl/math-59ed813421.png deleted file mode 120000 index 9149e87d86c..00000000000 --- a/_images/mathmpl/math-59ed813421.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-59ed813421.png \ No newline at end of file diff --git a/_images/mathmpl/math-5a90bc5099.png b/_images/mathmpl/math-5a90bc5099.png deleted file mode 120000 index 2b1d67ccb8a..00000000000 --- a/_images/mathmpl/math-5a90bc5099.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5a90bc5099.png \ No newline at end of file diff --git a/_images/mathmpl/math-5ad2665eea.png b/_images/mathmpl/math-5ad2665eea.png deleted file mode 120000 index 03554fd7386..00000000000 --- a/_images/mathmpl/math-5ad2665eea.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5ad2665eea.png \ No newline at end of file diff --git a/_images/mathmpl/math-5af1fa6042.png b/_images/mathmpl/math-5af1fa6042.png deleted file mode 120000 index 224dc93cee7..00000000000 --- a/_images/mathmpl/math-5af1fa6042.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5af1fa6042.png \ No newline at end of file diff --git a/_images/mathmpl/math-5af298e692.png b/_images/mathmpl/math-5af298e692.png deleted file mode 120000 index b5e48047f07..00000000000 --- a/_images/mathmpl/math-5af298e692.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5af298e692.png \ No newline at end of file diff --git a/_images/mathmpl/math-5b4e20db62.png b/_images/mathmpl/math-5b4e20db62.png deleted file mode 120000 index 442c94db48a..00000000000 --- a/_images/mathmpl/math-5b4e20db62.png +++ /dev/null @@ -1 +0,0 @@ -../../2.1.0/_images/mathmpl/math-5b4e20db62.png \ No newline at end of file diff --git a/_images/mathmpl/math-5bc6d49653.png b/_images/mathmpl/math-5bc6d49653.png deleted file mode 120000 index 16b224eebc4..00000000000 --- a/_images/mathmpl/math-5bc6d49653.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-5bc6d49653.png \ No newline at end of file diff --git a/_images/mathmpl/math-5dc8912759.png b/_images/mathmpl/math-5dc8912759.png deleted file mode 120000 index 0d55ea75604..00000000000 --- a/_images/mathmpl/math-5dc8912759.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5dc8912759.png \ No newline at end of file diff --git a/_images/mathmpl/math-5e42a40994.png b/_images/mathmpl/math-5e42a40994.png deleted file mode 120000 index af3f2f1fa05..00000000000 --- a/_images/mathmpl/math-5e42a40994.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5e42a40994.png \ No newline at end of file diff --git a/_images/mathmpl/math-5e94f6d1ef.png b/_images/mathmpl/math-5e94f6d1ef.png deleted file mode 120000 index e9eb517c327..00000000000 --- a/_images/mathmpl/math-5e94f6d1ef.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5e94f6d1ef.png \ No newline at end of file diff --git a/_images/mathmpl/math-5ef49195c3.png b/_images/mathmpl/math-5ef49195c3.png deleted file mode 120000 index 0299cc07eab..00000000000 --- a/_images/mathmpl/math-5ef49195c3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-5ef49195c3.png \ No newline at end of file diff --git a/_images/mathmpl/math-5fe06607a9.png b/_images/mathmpl/math-5fe06607a9.png deleted file mode 120000 index e5b3f92d691..00000000000 --- a/_images/mathmpl/math-5fe06607a9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-5fe06607a9.png \ No newline at end of file diff --git a/_images/mathmpl/math-5fea7c5657.png b/_images/mathmpl/math-5fea7c5657.png deleted file mode 120000 index 2abcbc24789..00000000000 --- a/_images/mathmpl/math-5fea7c5657.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-5fea7c5657.png \ No newline at end of file diff --git a/_images/mathmpl/math-608c4a02ea.png b/_images/mathmpl/math-608c4a02ea.png deleted file mode 120000 index e2607a66883..00000000000 --- a/_images/mathmpl/math-608c4a02ea.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-608c4a02ea.png \ No newline at end of file diff --git a/_images/mathmpl/math-61187783ee.png b/_images/mathmpl/math-61187783ee.png deleted file mode 120000 index 5ece977ba97..00000000000 --- a/_images/mathmpl/math-61187783ee.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-61187783ee.png \ No newline at end of file diff --git a/_images/mathmpl/math-615de138a6.png b/_images/mathmpl/math-615de138a6.png deleted file mode 120000 index d0438e17ad5..00000000000 --- a/_images/mathmpl/math-615de138a6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-615de138a6.png \ No newline at end of file diff --git a/_images/mathmpl/math-61a5f3fde0.png b/_images/mathmpl/math-61a5f3fde0.png deleted file mode 120000 index 7ebe6bf21f5..00000000000 --- a/_images/mathmpl/math-61a5f3fde0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-61a5f3fde0.png \ No newline at end of file diff --git a/_images/mathmpl/math-62d5e1ef75.png b/_images/mathmpl/math-62d5e1ef75.png deleted file mode 120000 index 09a34f58c7a..00000000000 --- a/_images/mathmpl/math-62d5e1ef75.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-62d5e1ef75.png \ No newline at end of file diff --git a/_images/mathmpl/math-62e1ea5660.png b/_images/mathmpl/math-62e1ea5660.png deleted file mode 120000 index 7fbe56fc250..00000000000 --- a/_images/mathmpl/math-62e1ea5660.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-62e1ea5660.png \ No newline at end of file diff --git a/_images/mathmpl/math-640fa94ebe.png b/_images/mathmpl/math-640fa94ebe.png deleted file mode 120000 index 77b835457bc..00000000000 --- a/_images/mathmpl/math-640fa94ebe.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-640fa94ebe.png \ No newline at end of file diff --git a/_images/mathmpl/math-6462f633f1.png b/_images/mathmpl/math-6462f633f1.png deleted file mode 120000 index e018d36096a..00000000000 --- a/_images/mathmpl/math-6462f633f1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6462f633f1.png \ No newline at end of file diff --git a/_images/mathmpl/math-64aa42214e.png b/_images/mathmpl/math-64aa42214e.png deleted file mode 120000 index 1d6a797dfc4..00000000000 --- a/_images/mathmpl/math-64aa42214e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-64aa42214e.png \ No newline at end of file diff --git a/_images/mathmpl/math-6700e99fd3.png b/_images/mathmpl/math-6700e99fd3.png deleted file mode 120000 index 1dae1742cbb..00000000000 --- a/_images/mathmpl/math-6700e99fd3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6700e99fd3.png \ No newline at end of file diff --git a/_images/mathmpl/math-6722d13e60.png b/_images/mathmpl/math-6722d13e60.png deleted file mode 120000 index bfa25d5d91d..00000000000 --- a/_images/mathmpl/math-6722d13e60.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6722d13e60.png \ No newline at end of file diff --git a/_images/mathmpl/math-679967c920.png b/_images/mathmpl/math-679967c920.png deleted file mode 120000 index f002717a4ad..00000000000 --- a/_images/mathmpl/math-679967c920.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-679967c920.png \ No newline at end of file diff --git a/_images/mathmpl/math-67a8f5ca79.png b/_images/mathmpl/math-67a8f5ca79.png deleted file mode 120000 index 9946d1864b3..00000000000 --- a/_images/mathmpl/math-67a8f5ca79.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-67a8f5ca79.png \ No newline at end of file diff --git a/_images/mathmpl/math-682a5688ef.png b/_images/mathmpl/math-682a5688ef.png deleted file mode 120000 index 59eeab66887..00000000000 --- a/_images/mathmpl/math-682a5688ef.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-682a5688ef.png \ No newline at end of file diff --git a/_images/mathmpl/math-68b96a49a5.png b/_images/mathmpl/math-68b96a49a5.png deleted file mode 120000 index 837b1d3203a..00000000000 --- a/_images/mathmpl/math-68b96a49a5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-68b96a49a5.png \ No newline at end of file diff --git a/_images/mathmpl/math-695b1850b0-2x.png b/_images/mathmpl/math-695b1850b0-2x.png deleted file mode 120000 index 29705f9dc8c..00000000000 --- a/_images/mathmpl/math-695b1850b0-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-695b1850b0-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-695b1850b0.png b/_images/mathmpl/math-695b1850b0.png deleted file mode 120000 index 6348f46dc97..00000000000 --- a/_images/mathmpl/math-695b1850b0.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-695b1850b0.png \ No newline at end of file diff --git a/_images/mathmpl/math-6a5f1c0ebd.png b/_images/mathmpl/math-6a5f1c0ebd.png deleted file mode 120000 index 7b872215a78..00000000000 --- a/_images/mathmpl/math-6a5f1c0ebd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6a5f1c0ebd.png \ No newline at end of file diff --git a/_images/mathmpl/math-6b66544034.png b/_images/mathmpl/math-6b66544034.png deleted file mode 120000 index 26cd76d0327..00000000000 --- a/_images/mathmpl/math-6b66544034.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-6b66544034.png \ No newline at end of file diff --git a/_images/mathmpl/math-6b6cc30aef.png b/_images/mathmpl/math-6b6cc30aef.png deleted file mode 120000 index d9590a80fb7..00000000000 --- a/_images/mathmpl/math-6b6cc30aef.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6b6cc30aef.png \ No newline at end of file diff --git a/_images/mathmpl/math-6c04e9a88a.png b/_images/mathmpl/math-6c04e9a88a.png deleted file mode 120000 index bd5d32c4e85..00000000000 --- a/_images/mathmpl/math-6c04e9a88a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6c04e9a88a.png \ No newline at end of file diff --git a/_images/mathmpl/math-6c35839641.png b/_images/mathmpl/math-6c35839641.png deleted file mode 120000 index 1714b072128..00000000000 --- a/_images/mathmpl/math-6c35839641.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6c35839641.png \ No newline at end of file diff --git a/_images/mathmpl/math-6ca9e95465.png b/_images/mathmpl/math-6ca9e95465.png deleted file mode 120000 index 485f54de2d3..00000000000 --- a/_images/mathmpl/math-6ca9e95465.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6ca9e95465.png \ No newline at end of file diff --git a/_images/mathmpl/math-6cb5c3c310.png b/_images/mathmpl/math-6cb5c3c310.png deleted file mode 120000 index 7d3ec2ebe2c..00000000000 --- a/_images/mathmpl/math-6cb5c3c310.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6cb5c3c310.png \ No newline at end of file diff --git a/_images/mathmpl/math-6d51d83360-2x.png b/_images/mathmpl/math-6d51d83360-2x.png deleted file mode 120000 index b4f0a195eb4..00000000000 --- a/_images/mathmpl/math-6d51d83360-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-6d51d83360-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-6d51d83360.png b/_images/mathmpl/math-6d51d83360.png deleted file mode 120000 index b2c43a5441d..00000000000 --- a/_images/mathmpl/math-6d51d83360.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-6d51d83360.png \ No newline at end of file diff --git a/_images/mathmpl/math-6e6c5971ad.png b/_images/mathmpl/math-6e6c5971ad.png deleted file mode 120000 index fa7b097b4b0..00000000000 --- a/_images/mathmpl/math-6e6c5971ad.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6e6c5971ad.png \ No newline at end of file diff --git a/_images/mathmpl/math-6ea3150bfd.png b/_images/mathmpl/math-6ea3150bfd.png deleted file mode 120000 index 05acb1309d0..00000000000 --- a/_images/mathmpl/math-6ea3150bfd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6ea3150bfd.png \ No newline at end of file diff --git a/_images/mathmpl/math-6eca465169.png b/_images/mathmpl/math-6eca465169.png deleted file mode 120000 index 91c0e2a1655..00000000000 --- a/_images/mathmpl/math-6eca465169.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6eca465169.png \ No newline at end of file diff --git a/_images/mathmpl/math-6f127405a3.png b/_images/mathmpl/math-6f127405a3.png deleted file mode 120000 index 79630daa25b..00000000000 --- a/_images/mathmpl/math-6f127405a3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6f127405a3.png \ No newline at end of file diff --git a/_images/mathmpl/math-6f2c9a48e5.png b/_images/mathmpl/math-6f2c9a48e5.png deleted file mode 120000 index 556adb6d899..00000000000 --- a/_images/mathmpl/math-6f2c9a48e5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-6f2c9a48e5.png \ No newline at end of file diff --git a/_images/mathmpl/math-6fd5eead33.png b/_images/mathmpl/math-6fd5eead33.png deleted file mode 120000 index 928e08d41bd..00000000000 --- a/_images/mathmpl/math-6fd5eead33.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-6fd5eead33.png \ No newline at end of file diff --git a/_images/mathmpl/math-705a921d5a.png b/_images/mathmpl/math-705a921d5a.png deleted file mode 120000 index 552e1fa6aa4..00000000000 --- a/_images/mathmpl/math-705a921d5a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-705a921d5a.png \ No newline at end of file diff --git a/_images/mathmpl/math-70e89758da.png b/_images/mathmpl/math-70e89758da.png deleted file mode 120000 index 6677fa6ed4a..00000000000 --- a/_images/mathmpl/math-70e89758da.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-70e89758da.png \ No newline at end of file diff --git a/_images/mathmpl/math-71771b9385.png b/_images/mathmpl/math-71771b9385.png deleted file mode 120000 index 515074bf3c0..00000000000 --- a/_images/mathmpl/math-71771b9385.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-71771b9385.png \ No newline at end of file diff --git a/_images/mathmpl/math-738451ac7c-2x.png b/_images/mathmpl/math-738451ac7c-2x.png deleted file mode 120000 index edf99c3a5cd..00000000000 --- a/_images/mathmpl/math-738451ac7c-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-738451ac7c-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-738451ac7c.png b/_images/mathmpl/math-738451ac7c.png deleted file mode 120000 index 9046eba4869..00000000000 --- a/_images/mathmpl/math-738451ac7c.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-738451ac7c.png \ No newline at end of file diff --git a/_images/mathmpl/math-7450111856.png b/_images/mathmpl/math-7450111856.png deleted file mode 120000 index a62aa96ab14..00000000000 --- a/_images/mathmpl/math-7450111856.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7450111856.png \ No newline at end of file diff --git a/_images/mathmpl/math-74b9b263f9.png b/_images/mathmpl/math-74b9b263f9.png deleted file mode 120000 index 8340caa1eb8..00000000000 --- a/_images/mathmpl/math-74b9b263f9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-74b9b263f9.png \ No newline at end of file diff --git a/_images/mathmpl/math-75e95f3f2b.png b/_images/mathmpl/math-75e95f3f2b.png deleted file mode 120000 index 478327a5c8e..00000000000 --- a/_images/mathmpl/math-75e95f3f2b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-75e95f3f2b.png \ No newline at end of file diff --git a/_images/mathmpl/math-762c3b5e9e.png b/_images/mathmpl/math-762c3b5e9e.png deleted file mode 120000 index 75271b61fc8..00000000000 --- a/_images/mathmpl/math-762c3b5e9e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-762c3b5e9e.png \ No newline at end of file diff --git a/_images/mathmpl/math-764751dad5.png b/_images/mathmpl/math-764751dad5.png deleted file mode 120000 index ed19bb1a079..00000000000 --- a/_images/mathmpl/math-764751dad5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-764751dad5.png \ No newline at end of file diff --git a/_images/mathmpl/math-764af5d0f7.png b/_images/mathmpl/math-764af5d0f7.png deleted file mode 120000 index 3fdc63fd772..00000000000 --- a/_images/mathmpl/math-764af5d0f7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-764af5d0f7.png \ No newline at end of file diff --git a/_images/mathmpl/math-765d4eae57.png b/_images/mathmpl/math-765d4eae57.png deleted file mode 120000 index fceda4b92f1..00000000000 --- a/_images/mathmpl/math-765d4eae57.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-765d4eae57.png \ No newline at end of file diff --git a/_images/mathmpl/math-76affdfab5.png b/_images/mathmpl/math-76affdfab5.png deleted file mode 120000 index 8974379eade..00000000000 --- a/_images/mathmpl/math-76affdfab5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-76affdfab5.png \ No newline at end of file diff --git a/_images/mathmpl/math-770780107f.png b/_images/mathmpl/math-770780107f.png deleted file mode 120000 index 32ed3d6e226..00000000000 --- a/_images/mathmpl/math-770780107f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-770780107f.png \ No newline at end of file diff --git a/_images/mathmpl/math-77926a09ec.png b/_images/mathmpl/math-77926a09ec.png deleted file mode 120000 index 1e55da9c8a1..00000000000 --- a/_images/mathmpl/math-77926a09ec.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-77926a09ec.png \ No newline at end of file diff --git a/_images/mathmpl/math-792b216977.png b/_images/mathmpl/math-792b216977.png deleted file mode 120000 index e85e850a371..00000000000 --- a/_images/mathmpl/math-792b216977.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-792b216977.png \ No newline at end of file diff --git a/_images/mathmpl/math-793d9cedd0.png b/_images/mathmpl/math-793d9cedd0.png deleted file mode 120000 index 511755576df..00000000000 --- a/_images/mathmpl/math-793d9cedd0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-793d9cedd0.png \ No newline at end of file diff --git a/_images/mathmpl/math-7965c0c1af.png b/_images/mathmpl/math-7965c0c1af.png deleted file mode 120000 index 29cf5b81931..00000000000 --- a/_images/mathmpl/math-7965c0c1af.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7965c0c1af.png \ No newline at end of file diff --git a/_images/mathmpl/math-796c28f3de-2x.png b/_images/mathmpl/math-796c28f3de-2x.png deleted file mode 120000 index 0ca89e2118b..00000000000 --- a/_images/mathmpl/math-796c28f3de-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-796c28f3de-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-796c28f3de.png b/_images/mathmpl/math-796c28f3de.png deleted file mode 120000 index 392d9fc90ef..00000000000 --- a/_images/mathmpl/math-796c28f3de.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-796c28f3de.png \ No newline at end of file diff --git a/_images/mathmpl/math-799e766e98.png b/_images/mathmpl/math-799e766e98.png deleted file mode 120000 index b563f119476..00000000000 --- a/_images/mathmpl/math-799e766e98.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-799e766e98.png \ No newline at end of file diff --git a/_images/mathmpl/math-79a0df421c.png b/_images/mathmpl/math-79a0df421c.png deleted file mode 120000 index f4da1f4f6ce..00000000000 --- a/_images/mathmpl/math-79a0df421c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-79a0df421c.png \ No newline at end of file diff --git a/_images/mathmpl/math-7a5bdaf004.png b/_images/mathmpl/math-7a5bdaf004.png deleted file mode 120000 index facbedb7382..00000000000 --- a/_images/mathmpl/math-7a5bdaf004.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7a5bdaf004.png \ No newline at end of file diff --git a/_images/mathmpl/math-7a88315c05.png b/_images/mathmpl/math-7a88315c05.png deleted file mode 120000 index 691747d90a9..00000000000 --- a/_images/mathmpl/math-7a88315c05.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7a88315c05.png \ No newline at end of file diff --git a/_images/mathmpl/math-7cafbba6d3.png b/_images/mathmpl/math-7cafbba6d3.png deleted file mode 120000 index f8d85d023c4..00000000000 --- a/_images/mathmpl/math-7cafbba6d3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7cafbba6d3.png \ No newline at end of file diff --git a/_images/mathmpl/math-7d54d13fc9.png b/_images/mathmpl/math-7d54d13fc9.png deleted file mode 120000 index 1ff99ca518f..00000000000 --- a/_images/mathmpl/math-7d54d13fc9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7d54d13fc9.png \ No newline at end of file diff --git a/_images/mathmpl/math-7d9222c03b.png b/_images/mathmpl/math-7d9222c03b.png deleted file mode 120000 index 01584505e1c..00000000000 --- a/_images/mathmpl/math-7d9222c03b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7d9222c03b.png \ No newline at end of file diff --git a/_images/mathmpl/math-7da885dcbf.png b/_images/mathmpl/math-7da885dcbf.png deleted file mode 120000 index 8871d80ba05..00000000000 --- a/_images/mathmpl/math-7da885dcbf.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7da885dcbf.png \ No newline at end of file diff --git a/_images/mathmpl/math-7db176731c.png b/_images/mathmpl/math-7db176731c.png deleted file mode 120000 index 0b4efb8ff3a..00000000000 --- a/_images/mathmpl/math-7db176731c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7db176731c.png \ No newline at end of file diff --git a/_images/mathmpl/math-7e90b124a8.png b/_images/mathmpl/math-7e90b124a8.png deleted file mode 120000 index 3b07fbd3dab..00000000000 --- a/_images/mathmpl/math-7e90b124a8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7e90b124a8.png \ No newline at end of file diff --git a/_images/mathmpl/math-7ffb7d798c.png b/_images/mathmpl/math-7ffb7d798c.png deleted file mode 120000 index 7acfcbd16f2..00000000000 --- a/_images/mathmpl/math-7ffb7d798c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-7ffb7d798c.png \ No newline at end of file diff --git a/_images/mathmpl/math-800bb70468.png b/_images/mathmpl/math-800bb70468.png deleted file mode 120000 index e95e5bbcb7b..00000000000 --- a/_images/mathmpl/math-800bb70468.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-800bb70468.png \ No newline at end of file diff --git a/_images/mathmpl/math-80117b16d3.png b/_images/mathmpl/math-80117b16d3.png deleted file mode 120000 index 0cd3daa6e66..00000000000 --- a/_images/mathmpl/math-80117b16d3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-80117b16d3.png \ No newline at end of file diff --git a/_images/mathmpl/math-8082fb34e8.png b/_images/mathmpl/math-8082fb34e8.png deleted file mode 120000 index 0a711c2a31c..00000000000 --- a/_images/mathmpl/math-8082fb34e8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8082fb34e8.png \ No newline at end of file diff --git a/_images/mathmpl/math-80a13771b7.png b/_images/mathmpl/math-80a13771b7.png deleted file mode 120000 index 3cbe40c7304..00000000000 --- a/_images/mathmpl/math-80a13771b7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-80a13771b7.png \ No newline at end of file diff --git a/_images/mathmpl/math-813255d42d.png b/_images/mathmpl/math-813255d42d.png deleted file mode 120000 index 21d1b5448a7..00000000000 --- a/_images/mathmpl/math-813255d42d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-813255d42d.png \ No newline at end of file diff --git a/_images/mathmpl/math-813dcf0a93.png b/_images/mathmpl/math-813dcf0a93.png deleted file mode 120000 index 1acc275bed4..00000000000 --- a/_images/mathmpl/math-813dcf0a93.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-813dcf0a93.png \ No newline at end of file diff --git a/_images/mathmpl/math-83ff203e39.png b/_images/mathmpl/math-83ff203e39.png deleted file mode 120000 index 96c7d645b3d..00000000000 --- a/_images/mathmpl/math-83ff203e39.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.2/_images/mathmpl/math-83ff203e39.png \ No newline at end of file diff --git a/_images/mathmpl/math-84e18ecce7.png b/_images/mathmpl/math-84e18ecce7.png deleted file mode 120000 index 5706793382f..00000000000 --- a/_images/mathmpl/math-84e18ecce7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-84e18ecce7.png \ No newline at end of file diff --git a/_images/mathmpl/math-86ea2beb93.png b/_images/mathmpl/math-86ea2beb93.png deleted file mode 120000 index b1fe37b125c..00000000000 --- a/_images/mathmpl/math-86ea2beb93.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-86ea2beb93.png \ No newline at end of file diff --git a/_images/mathmpl/math-88814f8d66.png b/_images/mathmpl/math-88814f8d66.png deleted file mode 120000 index 63714f07e86..00000000000 --- a/_images/mathmpl/math-88814f8d66.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-88814f8d66.png \ No newline at end of file diff --git a/_images/mathmpl/math-888740ee66.png b/_images/mathmpl/math-888740ee66.png deleted file mode 120000 index bef14826fe7..00000000000 --- a/_images/mathmpl/math-888740ee66.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-888740ee66.png \ No newline at end of file diff --git a/_images/mathmpl/math-88c0703f35.png b/_images/mathmpl/math-88c0703f35.png deleted file mode 120000 index 99ca7bb3924..00000000000 --- a/_images/mathmpl/math-88c0703f35.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-88c0703f35.png \ No newline at end of file diff --git a/_images/mathmpl/math-8963eae853.png b/_images/mathmpl/math-8963eae853.png deleted file mode 120000 index d40834edc98..00000000000 --- a/_images/mathmpl/math-8963eae853.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8963eae853.png \ No newline at end of file diff --git a/_images/mathmpl/math-89f87a2f0c.png b/_images/mathmpl/math-89f87a2f0c.png deleted file mode 120000 index d4a2a7b498f..00000000000 --- a/_images/mathmpl/math-89f87a2f0c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-89f87a2f0c.png \ No newline at end of file diff --git a/_images/mathmpl/math-8aa32761da.png b/_images/mathmpl/math-8aa32761da.png deleted file mode 120000 index 8e5c4d42d3f..00000000000 --- a/_images/mathmpl/math-8aa32761da.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8aa32761da.png \ No newline at end of file diff --git a/_images/mathmpl/math-8b9d36e54f-2x.png b/_images/mathmpl/math-8b9d36e54f-2x.png deleted file mode 120000 index 9db47c824a3..00000000000 --- a/_images/mathmpl/math-8b9d36e54f-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-8b9d36e54f-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-8b9d36e54f.png b/_images/mathmpl/math-8b9d36e54f.png deleted file mode 120000 index 6481031263a..00000000000 --- a/_images/mathmpl/math-8b9d36e54f.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-8b9d36e54f.png \ No newline at end of file diff --git a/_images/mathmpl/math-8bc070eada.png b/_images/mathmpl/math-8bc070eada.png deleted file mode 120000 index 722c391d739..00000000000 --- a/_images/mathmpl/math-8bc070eada.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8bc070eada.png \ No newline at end of file diff --git a/_images/mathmpl/math-8c68333295.png b/_images/mathmpl/math-8c68333295.png deleted file mode 120000 index 12f4882d9ed..00000000000 --- a/_images/mathmpl/math-8c68333295.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8c68333295.png \ No newline at end of file diff --git a/_images/mathmpl/math-8c6a0f04b9.png b/_images/mathmpl/math-8c6a0f04b9.png deleted file mode 120000 index a445d166b4d..00000000000 --- a/_images/mathmpl/math-8c6a0f04b9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8c6a0f04b9.png \ No newline at end of file diff --git a/_images/mathmpl/math-8d37bd9196.png b/_images/mathmpl/math-8d37bd9196.png deleted file mode 120000 index 6a69206419a..00000000000 --- a/_images/mathmpl/math-8d37bd9196.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8d37bd9196.png \ No newline at end of file diff --git a/_images/mathmpl/math-8da9245788.png b/_images/mathmpl/math-8da9245788.png deleted file mode 120000 index 19335690b19..00000000000 --- a/_images/mathmpl/math-8da9245788.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8da9245788.png \ No newline at end of file diff --git a/_images/mathmpl/math-8e388594ad.png b/_images/mathmpl/math-8e388594ad.png deleted file mode 120000 index 37b1172e23a..00000000000 --- a/_images/mathmpl/math-8e388594ad.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8e388594ad.png \ No newline at end of file diff --git a/_images/mathmpl/math-8e4b9eb82b.png b/_images/mathmpl/math-8e4b9eb82b.png deleted file mode 120000 index 9e9b2d7d1ef..00000000000 --- a/_images/mathmpl/math-8e4b9eb82b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-8e4b9eb82b.png \ No newline at end of file diff --git a/_images/mathmpl/math-8e6cdc7038.png b/_images/mathmpl/math-8e6cdc7038.png deleted file mode 120000 index bdce336d508..00000000000 --- a/_images/mathmpl/math-8e6cdc7038.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8e6cdc7038.png \ No newline at end of file diff --git a/_images/mathmpl/math-8e6df07c24.png b/_images/mathmpl/math-8e6df07c24.png deleted file mode 120000 index 425d30c9fa5..00000000000 --- a/_images/mathmpl/math-8e6df07c24.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8e6df07c24.png \ No newline at end of file diff --git a/_images/mathmpl/math-8f1ece89ec-2x.png b/_images/mathmpl/math-8f1ece89ec-2x.png deleted file mode 120000 index 33027dbfdc7..00000000000 --- a/_images/mathmpl/math-8f1ece89ec-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-8f1ece89ec-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-8f1ece89ec.png b/_images/mathmpl/math-8f1ece89ec.png deleted file mode 120000 index d63079538dd..00000000000 --- a/_images/mathmpl/math-8f1ece89ec.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-8f1ece89ec.png \ No newline at end of file diff --git a/_images/mathmpl/math-8f454df900.png b/_images/mathmpl/math-8f454df900.png deleted file mode 120000 index 607ed6ff037..00000000000 --- a/_images/mathmpl/math-8f454df900.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8f454df900.png \ No newline at end of file diff --git a/_images/mathmpl/math-8f609835cb.png b/_images/mathmpl/math-8f609835cb.png deleted file mode 120000 index f7e10241d35..00000000000 --- a/_images/mathmpl/math-8f609835cb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8f609835cb.png \ No newline at end of file diff --git a/_images/mathmpl/math-8f896d9410.png b/_images/mathmpl/math-8f896d9410.png deleted file mode 120000 index 8deab27d507..00000000000 --- a/_images/mathmpl/math-8f896d9410.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8f896d9410.png \ No newline at end of file diff --git a/_images/mathmpl/math-8f8c0c020c.png b/_images/mathmpl/math-8f8c0c020c.png deleted file mode 120000 index e84059b641d..00000000000 --- a/_images/mathmpl/math-8f8c0c020c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-8f8c0c020c.png \ No newline at end of file diff --git a/_images/mathmpl/math-9119a30630.png b/_images/mathmpl/math-9119a30630.png deleted file mode 120000 index 1295c7928d5..00000000000 --- a/_images/mathmpl/math-9119a30630.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9119a30630.png \ No newline at end of file diff --git a/_images/mathmpl/math-918327c3a6-2x.png b/_images/mathmpl/math-918327c3a6-2x.png deleted file mode 120000 index 2571aef1d8b..00000000000 --- a/_images/mathmpl/math-918327c3a6-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-918327c3a6-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-918327c3a6.png b/_images/mathmpl/math-918327c3a6.png deleted file mode 120000 index 5f262cba03e..00000000000 --- a/_images/mathmpl/math-918327c3a6.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-918327c3a6.png \ No newline at end of file diff --git a/_images/mathmpl/math-91a36bab96.png b/_images/mathmpl/math-91a36bab96.png deleted file mode 120000 index c79d0662e94..00000000000 --- a/_images/mathmpl/math-91a36bab96.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-91a36bab96.png \ No newline at end of file diff --git a/_images/mathmpl/math-91b94c6be9.png b/_images/mathmpl/math-91b94c6be9.png deleted file mode 120000 index 8b4b2db6281..00000000000 --- a/_images/mathmpl/math-91b94c6be9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-91b94c6be9.png \ No newline at end of file diff --git a/_images/mathmpl/math-92306485fb.png b/_images/mathmpl/math-92306485fb.png deleted file mode 120000 index b28b94d283d..00000000000 --- a/_images/mathmpl/math-92306485fb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-92306485fb.png \ No newline at end of file diff --git a/_images/mathmpl/math-923c665edb.png b/_images/mathmpl/math-923c665edb.png deleted file mode 120000 index 2228a731472..00000000000 --- a/_images/mathmpl/math-923c665edb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-923c665edb.png \ No newline at end of file diff --git a/_images/mathmpl/math-92a896986d.png b/_images/mathmpl/math-92a896986d.png deleted file mode 120000 index 2828ca9a738..00000000000 --- a/_images/mathmpl/math-92a896986d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-92a896986d.png \ No newline at end of file diff --git a/_images/mathmpl/math-92fc1ff85f.png b/_images/mathmpl/math-92fc1ff85f.png deleted file mode 120000 index f4c89ac7b7f..00000000000 --- a/_images/mathmpl/math-92fc1ff85f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-92fc1ff85f.png \ No newline at end of file diff --git a/_images/mathmpl/math-9336896bb3.png b/_images/mathmpl/math-9336896bb3.png deleted file mode 120000 index a9b04d16763..00000000000 --- a/_images/mathmpl/math-9336896bb3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9336896bb3.png \ No newline at end of file diff --git a/_images/mathmpl/math-937e2c148d.png b/_images/mathmpl/math-937e2c148d.png deleted file mode 120000 index f6078ea9c28..00000000000 --- a/_images/mathmpl/math-937e2c148d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-937e2c148d.png \ No newline at end of file diff --git a/_images/mathmpl/math-93a935b705.png b/_images/mathmpl/math-93a935b705.png deleted file mode 120000 index 3b2477eed0c..00000000000 --- a/_images/mathmpl/math-93a935b705.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-93a935b705.png \ No newline at end of file diff --git a/_images/mathmpl/math-93b9261171.png b/_images/mathmpl/math-93b9261171.png deleted file mode 120000 index b1787467657..00000000000 --- a/_images/mathmpl/math-93b9261171.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-93b9261171.png \ No newline at end of file diff --git a/_images/mathmpl/math-941e19553c-2x.png b/_images/mathmpl/math-941e19553c-2x.png deleted file mode 120000 index 06590c19e90..00000000000 --- a/_images/mathmpl/math-941e19553c-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-941e19553c-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-941e19553c.png b/_images/mathmpl/math-941e19553c.png deleted file mode 120000 index eb57c52773b..00000000000 --- a/_images/mathmpl/math-941e19553c.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-941e19553c.png \ No newline at end of file diff --git a/_images/mathmpl/math-94ff64057f.png b/_images/mathmpl/math-94ff64057f.png deleted file mode 120000 index 5a3486f7dcf..00000000000 --- a/_images/mathmpl/math-94ff64057f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-94ff64057f.png \ No newline at end of file diff --git a/_images/mathmpl/math-953993beed.png b/_images/mathmpl/math-953993beed.png deleted file mode 120000 index e2c354a8081..00000000000 --- a/_images/mathmpl/math-953993beed.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-953993beed.png \ No newline at end of file diff --git a/_images/mathmpl/math-9544659959.png b/_images/mathmpl/math-9544659959.png deleted file mode 120000 index a4715f80c22..00000000000 --- a/_images/mathmpl/math-9544659959.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9544659959.png \ No newline at end of file diff --git a/_images/mathmpl/math-968de0e26b.png b/_images/mathmpl/math-968de0e26b.png deleted file mode 120000 index fdecf6b97bd..00000000000 --- a/_images/mathmpl/math-968de0e26b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-968de0e26b.png \ No newline at end of file diff --git a/_images/mathmpl/math-96aad37e82.png b/_images/mathmpl/math-96aad37e82.png deleted file mode 120000 index ae7eac6b4e3..00000000000 --- a/_images/mathmpl/math-96aad37e82.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-96aad37e82.png \ No newline at end of file diff --git a/_images/mathmpl/math-96c9a8ca95.png b/_images/mathmpl/math-96c9a8ca95.png deleted file mode 120000 index a2ea9ba2c15..00000000000 --- a/_images/mathmpl/math-96c9a8ca95.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-96c9a8ca95.png \ No newline at end of file diff --git a/_images/mathmpl/math-9876f47506.png b/_images/mathmpl/math-9876f47506.png deleted file mode 120000 index f0c697b195c..00000000000 --- a/_images/mathmpl/math-9876f47506.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-9876f47506.png \ No newline at end of file diff --git a/_images/mathmpl/math-989088989a.png b/_images/mathmpl/math-989088989a.png deleted file mode 120000 index cbe32fcae9f..00000000000 --- a/_images/mathmpl/math-989088989a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-989088989a.png \ No newline at end of file diff --git a/_images/mathmpl/math-98bb610df5.png b/_images/mathmpl/math-98bb610df5.png deleted file mode 120000 index b7b23bbbedf..00000000000 --- a/_images/mathmpl/math-98bb610df5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-98bb610df5.png \ No newline at end of file diff --git a/_images/mathmpl/math-98c28d2d1b.png b/_images/mathmpl/math-98c28d2d1b.png deleted file mode 120000 index 4df098eb60e..00000000000 --- a/_images/mathmpl/math-98c28d2d1b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-98c28d2d1b.png \ No newline at end of file diff --git a/_images/mathmpl/math-98c8089378.png b/_images/mathmpl/math-98c8089378.png deleted file mode 120000 index dc14d6536f3..00000000000 --- a/_images/mathmpl/math-98c8089378.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.2/_images/mathmpl/math-98c8089378.png \ No newline at end of file diff --git a/_images/mathmpl/math-993151c5de.png b/_images/mathmpl/math-993151c5de.png deleted file mode 120000 index 9a705b8b9df..00000000000 --- a/_images/mathmpl/math-993151c5de.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-993151c5de.png \ No newline at end of file diff --git a/_images/mathmpl/math-995f666935.png b/_images/mathmpl/math-995f666935.png deleted file mode 120000 index d9c9c1ef546..00000000000 --- a/_images/mathmpl/math-995f666935.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-995f666935.png \ No newline at end of file diff --git a/_images/mathmpl/math-99abe4d704.png b/_images/mathmpl/math-99abe4d704.png deleted file mode 120000 index 794a1d4fd35..00000000000 --- a/_images/mathmpl/math-99abe4d704.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-99abe4d704.png \ No newline at end of file diff --git a/_images/mathmpl/math-9a483a288a.png b/_images/mathmpl/math-9a483a288a.png deleted file mode 120000 index 1ea2c6337b2..00000000000 --- a/_images/mathmpl/math-9a483a288a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9a483a288a.png \ No newline at end of file diff --git a/_images/mathmpl/math-9afe2d20f8.png b/_images/mathmpl/math-9afe2d20f8.png deleted file mode 120000 index dc7199a3cc4..00000000000 --- a/_images/mathmpl/math-9afe2d20f8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9afe2d20f8.png \ No newline at end of file diff --git a/_images/mathmpl/math-9b12241d0c.png b/_images/mathmpl/math-9b12241d0c.png deleted file mode 120000 index c752341aef5..00000000000 --- a/_images/mathmpl/math-9b12241d0c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9b12241d0c.png \ No newline at end of file diff --git a/_images/mathmpl/math-9b14251f65.png b/_images/mathmpl/math-9b14251f65.png deleted file mode 120000 index 2cac73548be..00000000000 --- a/_images/mathmpl/math-9b14251f65.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9b14251f65.png \ No newline at end of file diff --git a/_images/mathmpl/math-9b8a721035.png b/_images/mathmpl/math-9b8a721035.png deleted file mode 120000 index 449e5f638bd..00000000000 --- a/_images/mathmpl/math-9b8a721035.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9b8a721035.png \ No newline at end of file diff --git a/_images/mathmpl/math-9b9b342af8-2x.png b/_images/mathmpl/math-9b9b342af8-2x.png deleted file mode 120000 index 29ad1a95051..00000000000 --- a/_images/mathmpl/math-9b9b342af8-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-9b9b342af8-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-9b9b342af8.png b/_images/mathmpl/math-9b9b342af8.png deleted file mode 120000 index a3250c26e6e..00000000000 --- a/_images/mathmpl/math-9b9b342af8.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-9b9b342af8.png \ No newline at end of file diff --git a/_images/mathmpl/math-9c3c23a23d.png b/_images/mathmpl/math-9c3c23a23d.png deleted file mode 120000 index 38dab001c2b..00000000000 --- a/_images/mathmpl/math-9c3c23a23d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9c3c23a23d.png \ No newline at end of file diff --git a/_images/mathmpl/math-9d267a8c3c.png b/_images/mathmpl/math-9d267a8c3c.png deleted file mode 120000 index 1415aa8b88a..00000000000 --- a/_images/mathmpl/math-9d267a8c3c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9d267a8c3c.png \ No newline at end of file diff --git a/_images/mathmpl/math-9d5e427aeb.png b/_images/mathmpl/math-9d5e427aeb.png deleted file mode 120000 index 8164fc2003f..00000000000 --- a/_images/mathmpl/math-9d5e427aeb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9d5e427aeb.png \ No newline at end of file diff --git a/_images/mathmpl/math-9d750cc7d9.png b/_images/mathmpl/math-9d750cc7d9.png deleted file mode 120000 index ff4b48616f1..00000000000 --- a/_images/mathmpl/math-9d750cc7d9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9d750cc7d9.png \ No newline at end of file diff --git a/_images/mathmpl/math-9db5c962c8.png b/_images/mathmpl/math-9db5c962c8.png deleted file mode 120000 index a1c32726119..00000000000 --- a/_images/mathmpl/math-9db5c962c8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9db5c962c8.png \ No newline at end of file diff --git a/_images/mathmpl/math-9e1beabce9.png b/_images/mathmpl/math-9e1beabce9.png deleted file mode 120000 index 9784c1932ee..00000000000 --- a/_images/mathmpl/math-9e1beabce9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-9e1beabce9.png \ No newline at end of file diff --git a/_images/mathmpl/math-9e5a913e0a.png b/_images/mathmpl/math-9e5a913e0a.png deleted file mode 120000 index fc53be7481a..00000000000 --- a/_images/mathmpl/math-9e5a913e0a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-9e5a913e0a.png \ No newline at end of file diff --git a/_images/mathmpl/math-a01094061c.png b/_images/mathmpl/math-a01094061c.png deleted file mode 120000 index 771a91cf736..00000000000 --- a/_images/mathmpl/math-a01094061c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a01094061c.png \ No newline at end of file diff --git a/_images/mathmpl/math-a019dc17a7.png b/_images/mathmpl/math-a019dc17a7.png deleted file mode 120000 index cdfeeab6dbe..00000000000 --- a/_images/mathmpl/math-a019dc17a7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a019dc17a7.png \ No newline at end of file diff --git a/_images/mathmpl/math-a049f342a0.png b/_images/mathmpl/math-a049f342a0.png deleted file mode 120000 index 31390fe038c..00000000000 --- a/_images/mathmpl/math-a049f342a0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-a049f342a0.png \ No newline at end of file diff --git a/_images/mathmpl/math-a0b5414d31.png b/_images/mathmpl/math-a0b5414d31.png deleted file mode 120000 index d65f38fc87d..00000000000 --- a/_images/mathmpl/math-a0b5414d31.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a0b5414d31.png \ No newline at end of file diff --git a/_images/mathmpl/math-a12676f03f.png b/_images/mathmpl/math-a12676f03f.png deleted file mode 120000 index e3664e1b683..00000000000 --- a/_images/mathmpl/math-a12676f03f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-a12676f03f.png \ No newline at end of file diff --git a/_images/mathmpl/math-a174a79fa7.png b/_images/mathmpl/math-a174a79fa7.png deleted file mode 120000 index 52835743f49..00000000000 --- a/_images/mathmpl/math-a174a79fa7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a174a79fa7.png \ No newline at end of file diff --git a/_images/mathmpl/math-a1903b29fd.png b/_images/mathmpl/math-a1903b29fd.png deleted file mode 120000 index cd328088c97..00000000000 --- a/_images/mathmpl/math-a1903b29fd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a1903b29fd.png \ No newline at end of file diff --git a/_images/mathmpl/math-a2e07eb2ff.png b/_images/mathmpl/math-a2e07eb2ff.png deleted file mode 120000 index 7817894ca76..00000000000 --- a/_images/mathmpl/math-a2e07eb2ff.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a2e07eb2ff.png \ No newline at end of file diff --git a/_images/mathmpl/math-a2eb9bae76.png b/_images/mathmpl/math-a2eb9bae76.png deleted file mode 120000 index 992eac5ddf5..00000000000 --- a/_images/mathmpl/math-a2eb9bae76.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a2eb9bae76.png \ No newline at end of file diff --git a/_images/mathmpl/math-a31bc74ee2.png b/_images/mathmpl/math-a31bc74ee2.png deleted file mode 120000 index 61cc8997cca..00000000000 --- a/_images/mathmpl/math-a31bc74ee2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a31bc74ee2.png \ No newline at end of file diff --git a/_images/mathmpl/math-a3ca6be911.png b/_images/mathmpl/math-a3ca6be911.png deleted file mode 120000 index 4f107cf2d4d..00000000000 --- a/_images/mathmpl/math-a3ca6be911.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a3ca6be911.png \ No newline at end of file diff --git a/_images/mathmpl/math-a3de1e5b51.png b/_images/mathmpl/math-a3de1e5b51.png deleted file mode 120000 index bbc3882bd7d..00000000000 --- a/_images/mathmpl/math-a3de1e5b51.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a3de1e5b51.png \ No newline at end of file diff --git a/_images/mathmpl/math-a3f9f1f014.png b/_images/mathmpl/math-a3f9f1f014.png deleted file mode 120000 index 704de1489ad..00000000000 --- a/_images/mathmpl/math-a3f9f1f014.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a3f9f1f014.png \ No newline at end of file diff --git a/_images/mathmpl/math-a41c184ca6.png b/_images/mathmpl/math-a41c184ca6.png deleted file mode 120000 index 35850d5b42c..00000000000 --- a/_images/mathmpl/math-a41c184ca6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a41c184ca6.png \ No newline at end of file diff --git a/_images/mathmpl/math-a4998ce3f7-2x.png b/_images/mathmpl/math-a4998ce3f7-2x.png deleted file mode 120000 index 72c2d817fee..00000000000 --- a/_images/mathmpl/math-a4998ce3f7-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-a4998ce3f7-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-a4998ce3f7.png b/_images/mathmpl/math-a4998ce3f7.png deleted file mode 120000 index ef2e85d1d85..00000000000 --- a/_images/mathmpl/math-a4998ce3f7.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-a4998ce3f7.png \ No newline at end of file diff --git a/_images/mathmpl/math-a4f1a69c76.png b/_images/mathmpl/math-a4f1a69c76.png deleted file mode 120000 index eb955716d3d..00000000000 --- a/_images/mathmpl/math-a4f1a69c76.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a4f1a69c76.png \ No newline at end of file diff --git a/_images/mathmpl/math-a4f974e6ac.png b/_images/mathmpl/math-a4f974e6ac.png deleted file mode 120000 index 988240a929a..00000000000 --- a/_images/mathmpl/math-a4f974e6ac.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a4f974e6ac.png \ No newline at end of file diff --git a/_images/mathmpl/math-a539c63e58.png b/_images/mathmpl/math-a539c63e58.png deleted file mode 120000 index 992ca152916..00000000000 --- a/_images/mathmpl/math-a539c63e58.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a539c63e58.png \ No newline at end of file diff --git a/_images/mathmpl/math-a55f718abe.png b/_images/mathmpl/math-a55f718abe.png deleted file mode 120000 index dd3b2b0112a..00000000000 --- a/_images/mathmpl/math-a55f718abe.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a55f718abe.png \ No newline at end of file diff --git a/_images/mathmpl/math-a57791e0e2.png b/_images/mathmpl/math-a57791e0e2.png deleted file mode 120000 index 11211303a38..00000000000 --- a/_images/mathmpl/math-a57791e0e2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a57791e0e2.png \ No newline at end of file diff --git a/_images/mathmpl/math-a59e0fa5ee.png b/_images/mathmpl/math-a59e0fa5ee.png deleted file mode 120000 index dd5a1cd000c..00000000000 --- a/_images/mathmpl/math-a59e0fa5ee.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a59e0fa5ee.png \ No newline at end of file diff --git a/_images/mathmpl/math-a5b22dbdac.png b/_images/mathmpl/math-a5b22dbdac.png deleted file mode 120000 index 9fba05a89bf..00000000000 --- a/_images/mathmpl/math-a5b22dbdac.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a5b22dbdac.png \ No newline at end of file diff --git a/_images/mathmpl/math-a5edc7016a.png b/_images/mathmpl/math-a5edc7016a.png deleted file mode 120000 index 24ec03bd15e..00000000000 --- a/_images/mathmpl/math-a5edc7016a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a5edc7016a.png \ No newline at end of file diff --git a/_images/mathmpl/math-a608a7ae83.png b/_images/mathmpl/math-a608a7ae83.png deleted file mode 120000 index 3a46a4485d2..00000000000 --- a/_images/mathmpl/math-a608a7ae83.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a608a7ae83.png \ No newline at end of file diff --git a/_images/mathmpl/math-a6f7befa14-2x.png b/_images/mathmpl/math-a6f7befa14-2x.png deleted file mode 120000 index 19b4512e5a3..00000000000 --- a/_images/mathmpl/math-a6f7befa14-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-a6f7befa14-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-a6f7befa14.png b/_images/mathmpl/math-a6f7befa14.png deleted file mode 120000 index fba05c38553..00000000000 --- a/_images/mathmpl/math-a6f7befa14.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-a6f7befa14.png \ No newline at end of file diff --git a/_images/mathmpl/math-a761b7733e.png b/_images/mathmpl/math-a761b7733e.png deleted file mode 120000 index 7872461d500..00000000000 --- a/_images/mathmpl/math-a761b7733e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-a761b7733e.png \ No newline at end of file diff --git a/_images/mathmpl/math-a79325da6f.png b/_images/mathmpl/math-a79325da6f.png deleted file mode 120000 index 0e12949aa14..00000000000 --- a/_images/mathmpl/math-a79325da6f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a79325da6f.png \ No newline at end of file diff --git a/_images/mathmpl/math-a88976d8dd.png b/_images/mathmpl/math-a88976d8dd.png deleted file mode 120000 index 6ae02a580c1..00000000000 --- a/_images/mathmpl/math-a88976d8dd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a88976d8dd.png \ No newline at end of file diff --git a/_images/mathmpl/math-a99c89f6e1.png b/_images/mathmpl/math-a99c89f6e1.png deleted file mode 120000 index 735608f7822..00000000000 --- a/_images/mathmpl/math-a99c89f6e1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a99c89f6e1.png \ No newline at end of file diff --git a/_images/mathmpl/math-a9a0109ea9.png b/_images/mathmpl/math-a9a0109ea9.png deleted file mode 120000 index b8bf709cc42..00000000000 --- a/_images/mathmpl/math-a9a0109ea9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-a9a0109ea9.png \ No newline at end of file diff --git a/_images/mathmpl/math-ab04245089.png b/_images/mathmpl/math-ab04245089.png deleted file mode 120000 index 2dbba374049..00000000000 --- a/_images/mathmpl/math-ab04245089.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ab04245089.png \ No newline at end of file diff --git a/_images/mathmpl/math-ab35a80a37.png b/_images/mathmpl/math-ab35a80a37.png deleted file mode 120000 index 6ad33e0e2a2..00000000000 --- a/_images/mathmpl/math-ab35a80a37.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ab35a80a37.png \ No newline at end of file diff --git a/_images/mathmpl/math-abd39b8d44-2x.png b/_images/mathmpl/math-abd39b8d44-2x.png deleted file mode 120000 index 3e9b6b84b3f..00000000000 --- a/_images/mathmpl/math-abd39b8d44-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-abd39b8d44-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-abd39b8d44.png b/_images/mathmpl/math-abd39b8d44.png deleted file mode 120000 index 83d109d12d8..00000000000 --- a/_images/mathmpl/math-abd39b8d44.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-abd39b8d44.png \ No newline at end of file diff --git a/_images/mathmpl/math-ac7cfff3a1.png b/_images/mathmpl/math-ac7cfff3a1.png deleted file mode 120000 index 43f1f432570..00000000000 --- a/_images/mathmpl/math-ac7cfff3a1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ac7cfff3a1.png \ No newline at end of file diff --git a/_images/mathmpl/math-aca311c641.png b/_images/mathmpl/math-aca311c641.png deleted file mode 120000 index 3b0d71fc65a..00000000000 --- a/_images/mathmpl/math-aca311c641.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-aca311c641.png \ No newline at end of file diff --git a/_images/mathmpl/math-acb0485b8f-2x.png b/_images/mathmpl/math-acb0485b8f-2x.png deleted file mode 120000 index eb6f8fa25e8..00000000000 --- a/_images/mathmpl/math-acb0485b8f-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-acb0485b8f-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-acb0485b8f.png b/_images/mathmpl/math-acb0485b8f.png deleted file mode 120000 index 86e676ac715..00000000000 --- a/_images/mathmpl/math-acb0485b8f.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-acb0485b8f.png \ No newline at end of file diff --git a/_images/mathmpl/math-acccdc805f-2x.png b/_images/mathmpl/math-acccdc805f-2x.png deleted file mode 120000 index 420e6488c8c..00000000000 --- a/_images/mathmpl/math-acccdc805f-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-acccdc805f-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-acccdc805f.png b/_images/mathmpl/math-acccdc805f.png deleted file mode 120000 index 8596b6f746d..00000000000 --- a/_images/mathmpl/math-acccdc805f.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-acccdc805f.png \ No newline at end of file diff --git a/_images/mathmpl/math-ad0c7d5fd3.png b/_images/mathmpl/math-ad0c7d5fd3.png deleted file mode 120000 index 98bf62cebf8..00000000000 --- a/_images/mathmpl/math-ad0c7d5fd3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ad0c7d5fd3.png \ No newline at end of file diff --git a/_images/mathmpl/math-ad67ff4a6f.png b/_images/mathmpl/math-ad67ff4a6f.png deleted file mode 120000 index 43fdefbc770..00000000000 --- a/_images/mathmpl/math-ad67ff4a6f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ad67ff4a6f.png \ No newline at end of file diff --git a/_images/mathmpl/math-adb99bedc4.png b/_images/mathmpl/math-adb99bedc4.png deleted file mode 120000 index 47dd2b6070b..00000000000 --- a/_images/mathmpl/math-adb99bedc4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-adb99bedc4.png \ No newline at end of file diff --git a/_images/mathmpl/math-ae2fa40b25.png b/_images/mathmpl/math-ae2fa40b25.png deleted file mode 120000 index 09d3697a08e..00000000000 --- a/_images/mathmpl/math-ae2fa40b25.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ae2fa40b25.png \ No newline at end of file diff --git a/_images/mathmpl/math-ae65c1de79.png b/_images/mathmpl/math-ae65c1de79.png deleted file mode 120000 index 49ea7d70d64..00000000000 --- a/_images/mathmpl/math-ae65c1de79.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ae65c1de79.png \ No newline at end of file diff --git a/_images/mathmpl/math-ae6baaeef6-2x.png b/_images/mathmpl/math-ae6baaeef6-2x.png deleted file mode 120000 index a3266a70529..00000000000 --- a/_images/mathmpl/math-ae6baaeef6-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-ae6baaeef6-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-ae6baaeef6.png b/_images/mathmpl/math-ae6baaeef6.png deleted file mode 120000 index fc4ad4925aa..00000000000 --- a/_images/mathmpl/math-ae6baaeef6.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-ae6baaeef6.png \ No newline at end of file diff --git a/_images/mathmpl/math-ae7023d9db.png b/_images/mathmpl/math-ae7023d9db.png deleted file mode 120000 index 4b3ea60944a..00000000000 --- a/_images/mathmpl/math-ae7023d9db.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ae7023d9db.png \ No newline at end of file diff --git a/_images/mathmpl/math-af2530623c.png b/_images/mathmpl/math-af2530623c.png deleted file mode 120000 index ca07585892b..00000000000 --- a/_images/mathmpl/math-af2530623c.png +++ /dev/null @@ -1 +0,0 @@ -../../2.1.2/_images/mathmpl/math-af2530623c.png \ No newline at end of file diff --git a/_images/mathmpl/math-af3bc8ac21.png b/_images/mathmpl/math-af3bc8ac21.png deleted file mode 120000 index 9ce3aa5b156..00000000000 --- a/_images/mathmpl/math-af3bc8ac21.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-af3bc8ac21.png \ No newline at end of file diff --git a/_images/mathmpl/math-b045970090.png b/_images/mathmpl/math-b045970090.png deleted file mode 120000 index cee2cafa4f2..00000000000 --- a/_images/mathmpl/math-b045970090.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b045970090.png \ No newline at end of file diff --git a/_images/mathmpl/math-b15f9f29ec.png b/_images/mathmpl/math-b15f9f29ec.png deleted file mode 120000 index e24ea750561..00000000000 --- a/_images/mathmpl/math-b15f9f29ec.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b15f9f29ec.png \ No newline at end of file diff --git a/_images/mathmpl/math-b1d46891d0.png b/_images/mathmpl/math-b1d46891d0.png deleted file mode 120000 index 74cbaee3a15..00000000000 --- a/_images/mathmpl/math-b1d46891d0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b1d46891d0.png \ No newline at end of file diff --git a/_images/mathmpl/math-b1d77626bb.png b/_images/mathmpl/math-b1d77626bb.png deleted file mode 120000 index 5df342cede6..00000000000 --- a/_images/mathmpl/math-b1d77626bb.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b1d77626bb.png \ No newline at end of file diff --git a/_images/mathmpl/math-b225b29af4.png b/_images/mathmpl/math-b225b29af4.png deleted file mode 120000 index 39264512f5a..00000000000 --- a/_images/mathmpl/math-b225b29af4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b225b29af4.png \ No newline at end of file diff --git a/_images/mathmpl/math-b373234f3b.png b/_images/mathmpl/math-b373234f3b.png deleted file mode 120000 index 69367ad356b..00000000000 --- a/_images/mathmpl/math-b373234f3b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b373234f3b.png \ No newline at end of file diff --git a/_images/mathmpl/math-b43c061111.png b/_images/mathmpl/math-b43c061111.png deleted file mode 120000 index 01b2fc7ecb5..00000000000 --- a/_images/mathmpl/math-b43c061111.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b43c061111.png \ No newline at end of file diff --git a/_images/mathmpl/math-b481f19ce3-2x.png b/_images/mathmpl/math-b481f19ce3-2x.png deleted file mode 120000 index 50f4928d734..00000000000 --- a/_images/mathmpl/math-b481f19ce3-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-b481f19ce3-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-b481f19ce3.png b/_images/mathmpl/math-b481f19ce3.png deleted file mode 120000 index f53980781e0..00000000000 --- a/_images/mathmpl/math-b481f19ce3.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-b481f19ce3.png \ No newline at end of file diff --git a/_images/mathmpl/math-b53ab799d1.png b/_images/mathmpl/math-b53ab799d1.png deleted file mode 120000 index fdd363ce702..00000000000 --- a/_images/mathmpl/math-b53ab799d1.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b53ab799d1.png \ No newline at end of file diff --git a/_images/mathmpl/math-b5496f6786.png b/_images/mathmpl/math-b5496f6786.png deleted file mode 120000 index 0f04b08adb6..00000000000 --- a/_images/mathmpl/math-b5496f6786.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-b5496f6786.png \ No newline at end of file diff --git a/_images/mathmpl/math-b555ccd28d.png b/_images/mathmpl/math-b555ccd28d.png deleted file mode 120000 index ad042c11acf..00000000000 --- a/_images/mathmpl/math-b555ccd28d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b555ccd28d.png \ No newline at end of file diff --git a/_images/mathmpl/math-b5a379f4e8.png b/_images/mathmpl/math-b5a379f4e8.png deleted file mode 120000 index 819899372d8..00000000000 --- a/_images/mathmpl/math-b5a379f4e8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b5a379f4e8.png \ No newline at end of file diff --git a/_images/mathmpl/math-b5ae8c62a3.png b/_images/mathmpl/math-b5ae8c62a3.png deleted file mode 120000 index 1aefe895683..00000000000 --- a/_images/mathmpl/math-b5ae8c62a3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b5ae8c62a3.png \ No newline at end of file diff --git a/_images/mathmpl/math-b69eb39e09-2x.png b/_images/mathmpl/math-b69eb39e09-2x.png deleted file mode 120000 index c8263ca30f2..00000000000 --- a/_images/mathmpl/math-b69eb39e09-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-b69eb39e09-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-b69eb39e09.png b/_images/mathmpl/math-b69eb39e09.png deleted file mode 120000 index 91312e09155..00000000000 --- a/_images/mathmpl/math-b69eb39e09.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-b69eb39e09.png \ No newline at end of file diff --git a/_images/mathmpl/math-b6a35dc0d4.png b/_images/mathmpl/math-b6a35dc0d4.png deleted file mode 120000 index 26d298b9eb3..00000000000 --- a/_images/mathmpl/math-b6a35dc0d4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b6a35dc0d4.png \ No newline at end of file diff --git a/_images/mathmpl/math-b7c281dd54.png b/_images/mathmpl/math-b7c281dd54.png deleted file mode 120000 index e3dc89334cd..00000000000 --- a/_images/mathmpl/math-b7c281dd54.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b7c281dd54.png \ No newline at end of file diff --git a/_images/mathmpl/math-b7c546c13f.png b/_images/mathmpl/math-b7c546c13f.png deleted file mode 120000 index 36f96fdb658..00000000000 --- a/_images/mathmpl/math-b7c546c13f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-b7c546c13f.png \ No newline at end of file diff --git a/_images/mathmpl/math-b8348856ea.png b/_images/mathmpl/math-b8348856ea.png deleted file mode 120000 index 155f8d3b047..00000000000 --- a/_images/mathmpl/math-b8348856ea.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b8348856ea.png \ No newline at end of file diff --git a/_images/mathmpl/math-b8571a3cc2.png b/_images/mathmpl/math-b8571a3cc2.png deleted file mode 120000 index e1c7631eb3e..00000000000 --- a/_images/mathmpl/math-b8571a3cc2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-b8571a3cc2.png \ No newline at end of file diff --git a/_images/mathmpl/math-ba64c5e997.png b/_images/mathmpl/math-ba64c5e997.png deleted file mode 120000 index 5c539df97fc..00000000000 --- a/_images/mathmpl/math-ba64c5e997.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ba64c5e997.png \ No newline at end of file diff --git a/_images/mathmpl/math-bab33d6e68.png b/_images/mathmpl/math-bab33d6e68.png deleted file mode 120000 index 4a89fa9c45a..00000000000 --- a/_images/mathmpl/math-bab33d6e68.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-bab33d6e68.png \ No newline at end of file diff --git a/_images/mathmpl/math-bbdf3d8983.png b/_images/mathmpl/math-bbdf3d8983.png deleted file mode 120000 index 23eb2c4a9bf..00000000000 --- a/_images/mathmpl/math-bbdf3d8983.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-bbdf3d8983.png \ No newline at end of file diff --git a/_images/mathmpl/math-bc54d541fc.png b/_images/mathmpl/math-bc54d541fc.png deleted file mode 120000 index f9cc2dc5b85..00000000000 --- a/_images/mathmpl/math-bc54d541fc.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-bc54d541fc.png \ No newline at end of file diff --git a/_images/mathmpl/math-bce42da457.png b/_images/mathmpl/math-bce42da457.png deleted file mode 120000 index 957e819cf79..00000000000 --- a/_images/mathmpl/math-bce42da457.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-bce42da457.png \ No newline at end of file diff --git a/_images/mathmpl/math-be2ea18bef.png b/_images/mathmpl/math-be2ea18bef.png deleted file mode 120000 index fc4849b7b59..00000000000 --- a/_images/mathmpl/math-be2ea18bef.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-be2ea18bef.png \ No newline at end of file diff --git a/_images/mathmpl/math-be84d4168e.png b/_images/mathmpl/math-be84d4168e.png deleted file mode 120000 index f704c82cd0e..00000000000 --- a/_images/mathmpl/math-be84d4168e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-be84d4168e.png \ No newline at end of file diff --git a/_images/mathmpl/math-bf67fbdaae.png b/_images/mathmpl/math-bf67fbdaae.png deleted file mode 120000 index b6574fbfdc6..00000000000 --- a/_images/mathmpl/math-bf67fbdaae.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-bf67fbdaae.png \ No newline at end of file diff --git a/_images/mathmpl/math-bf7d25e347.png b/_images/mathmpl/math-bf7d25e347.png deleted file mode 120000 index e2148b651bf..00000000000 --- a/_images/mathmpl/math-bf7d25e347.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-bf7d25e347.png \ No newline at end of file diff --git a/_images/mathmpl/math-c05929fd30.png b/_images/mathmpl/math-c05929fd30.png deleted file mode 120000 index b9fff71311a..00000000000 --- a/_images/mathmpl/math-c05929fd30.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c05929fd30.png \ No newline at end of file diff --git a/_images/mathmpl/math-c0df1e9b19.png b/_images/mathmpl/math-c0df1e9b19.png deleted file mode 120000 index f9eeeea57a3..00000000000 --- a/_images/mathmpl/math-c0df1e9b19.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c0df1e9b19.png \ No newline at end of file diff --git a/_images/mathmpl/math-c104febab3.png b/_images/mathmpl/math-c104febab3.png deleted file mode 120000 index e74bd530135..00000000000 --- a/_images/mathmpl/math-c104febab3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c104febab3.png \ No newline at end of file diff --git a/_images/mathmpl/math-c2c43a5762.png b/_images/mathmpl/math-c2c43a5762.png deleted file mode 120000 index d3390e8f89e..00000000000 --- a/_images/mathmpl/math-c2c43a5762.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c2c43a5762.png \ No newline at end of file diff --git a/_images/mathmpl/math-c3a13bbc63.png b/_images/mathmpl/math-c3a13bbc63.png deleted file mode 120000 index ce072d1a9af..00000000000 --- a/_images/mathmpl/math-c3a13bbc63.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-c3a13bbc63.png \ No newline at end of file diff --git a/_images/mathmpl/math-c3fea548da.png b/_images/mathmpl/math-c3fea548da.png deleted file mode 120000 index 4d998395d8f..00000000000 --- a/_images/mathmpl/math-c3fea548da.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c3fea548da.png \ No newline at end of file diff --git a/_images/mathmpl/math-c408639f33.png b/_images/mathmpl/math-c408639f33.png deleted file mode 120000 index 4e6a05cfd51..00000000000 --- a/_images/mathmpl/math-c408639f33.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c408639f33.png \ No newline at end of file diff --git a/_images/mathmpl/math-c40f3bc7dc.png b/_images/mathmpl/math-c40f3bc7dc.png deleted file mode 120000 index eca16607607..00000000000 --- a/_images/mathmpl/math-c40f3bc7dc.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c40f3bc7dc.png \ No newline at end of file diff --git a/_images/mathmpl/math-c53255ce25.png b/_images/mathmpl/math-c53255ce25.png deleted file mode 120000 index 58417388946..00000000000 --- a/_images/mathmpl/math-c53255ce25.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c53255ce25.png \ No newline at end of file diff --git a/_images/mathmpl/math-c5baac4e57.png b/_images/mathmpl/math-c5baac4e57.png deleted file mode 120000 index 26c3aecc997..00000000000 --- a/_images/mathmpl/math-c5baac4e57.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c5baac4e57.png \ No newline at end of file diff --git a/_images/mathmpl/math-c6975aea0e.png b/_images/mathmpl/math-c6975aea0e.png deleted file mode 120000 index 36425555495..00000000000 --- a/_images/mathmpl/math-c6975aea0e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c6975aea0e.png \ No newline at end of file diff --git a/_images/mathmpl/math-c72f36312c.png b/_images/mathmpl/math-c72f36312c.png deleted file mode 120000 index b07fbe16fcc..00000000000 --- a/_images/mathmpl/math-c72f36312c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c72f36312c.png \ No newline at end of file diff --git a/_images/mathmpl/math-c7d2b9a8fd.png b/_images/mathmpl/math-c7d2b9a8fd.png deleted file mode 120000 index f0fbbef5888..00000000000 --- a/_images/mathmpl/math-c7d2b9a8fd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c7d2b9a8fd.png \ No newline at end of file diff --git a/_images/mathmpl/math-c8056d47b3.png b/_images/mathmpl/math-c8056d47b3.png deleted file mode 120000 index 397ffcfed0d..00000000000 --- a/_images/mathmpl/math-c8056d47b3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c8056d47b3.png \ No newline at end of file diff --git a/_images/mathmpl/math-c899412e92.png b/_images/mathmpl/math-c899412e92.png deleted file mode 120000 index aff4f496ca9..00000000000 --- a/_images/mathmpl/math-c899412e92.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-c899412e92.png \ No newline at end of file diff --git a/_images/mathmpl/math-c8d83de344.png b/_images/mathmpl/math-c8d83de344.png deleted file mode 120000 index b4e6c327f55..00000000000 --- a/_images/mathmpl/math-c8d83de344.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c8d83de344.png \ No newline at end of file diff --git a/_images/mathmpl/math-c8fe9fb96c.png b/_images/mathmpl/math-c8fe9fb96c.png deleted file mode 120000 index cfe7cee2bc9..00000000000 --- a/_images/mathmpl/math-c8fe9fb96c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c8fe9fb96c.png \ No newline at end of file diff --git a/_images/mathmpl/math-c9136df47e.png b/_images/mathmpl/math-c9136df47e.png deleted file mode 120000 index b897bfa4eb0..00000000000 --- a/_images/mathmpl/math-c9136df47e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c9136df47e.png \ No newline at end of file diff --git a/_images/mathmpl/math-c957a5ae9f.png b/_images/mathmpl/math-c957a5ae9f.png deleted file mode 120000 index 01a74befdc0..00000000000 --- a/_images/mathmpl/math-c957a5ae9f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c957a5ae9f.png \ No newline at end of file diff --git a/_images/mathmpl/math-c985be990e.png b/_images/mathmpl/math-c985be990e.png deleted file mode 120000 index d235175585f..00000000000 --- a/_images/mathmpl/math-c985be990e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-c985be990e.png \ No newline at end of file diff --git a/_images/mathmpl/math-ca3f612baa.png b/_images/mathmpl/math-ca3f612baa.png deleted file mode 120000 index 3a698038f41..00000000000 --- a/_images/mathmpl/math-ca3f612baa.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-ca3f612baa.png \ No newline at end of file diff --git a/_images/mathmpl/math-ca525d8410-2x.png b/_images/mathmpl/math-ca525d8410-2x.png deleted file mode 120000 index 23970b1ad43..00000000000 --- a/_images/mathmpl/math-ca525d8410-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-ca525d8410-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-ca525d8410.png b/_images/mathmpl/math-ca525d8410.png deleted file mode 120000 index 766533a224f..00000000000 --- a/_images/mathmpl/math-ca525d8410.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-ca525d8410.png \ No newline at end of file diff --git a/_images/mathmpl/math-cac5abe8bf.png b/_images/mathmpl/math-cac5abe8bf.png deleted file mode 120000 index c5489035807..00000000000 --- a/_images/mathmpl/math-cac5abe8bf.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cac5abe8bf.png \ No newline at end of file diff --git a/_images/mathmpl/math-cbd4824a55.png b/_images/mathmpl/math-cbd4824a55.png deleted file mode 120000 index 73c64c1c3f7..00000000000 --- a/_images/mathmpl/math-cbd4824a55.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cbd4824a55.png \ No newline at end of file diff --git a/_images/mathmpl/math-cc1340c453.png b/_images/mathmpl/math-cc1340c453.png deleted file mode 120000 index b9e368bb0af..00000000000 --- a/_images/mathmpl/math-cc1340c453.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cc1340c453.png \ No newline at end of file diff --git a/_images/mathmpl/math-cca8605565.png b/_images/mathmpl/math-cca8605565.png deleted file mode 120000 index 2e82b0853f1..00000000000 --- a/_images/mathmpl/math-cca8605565.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cca8605565.png \ No newline at end of file diff --git a/_images/mathmpl/math-ccea9f4e30.png b/_images/mathmpl/math-ccea9f4e30.png deleted file mode 120000 index cbc14cf2fe8..00000000000 --- a/_images/mathmpl/math-ccea9f4e30.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-ccea9f4e30.png \ No newline at end of file diff --git a/_images/mathmpl/math-cd5adea2d9.png b/_images/mathmpl/math-cd5adea2d9.png deleted file mode 120000 index a8423db0167..00000000000 --- a/_images/mathmpl/math-cd5adea2d9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cd5adea2d9.png \ No newline at end of file diff --git a/_images/mathmpl/math-ce75170225.png b/_images/mathmpl/math-ce75170225.png deleted file mode 120000 index a0401705d1c..00000000000 --- a/_images/mathmpl/math-ce75170225.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ce75170225.png \ No newline at end of file diff --git a/_images/mathmpl/math-cebac76f85-2x.png b/_images/mathmpl/math-cebac76f85-2x.png deleted file mode 120000 index 4740b227165..00000000000 --- a/_images/mathmpl/math-cebac76f85-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-cebac76f85-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-cebac76f85.png b/_images/mathmpl/math-cebac76f85.png deleted file mode 120000 index 960200e5132..00000000000 --- a/_images/mathmpl/math-cebac76f85.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-cebac76f85.png \ No newline at end of file diff --git a/_images/mathmpl/math-cebfe4186d.png b/_images/mathmpl/math-cebfe4186d.png deleted file mode 120000 index 330d9a0b0af..00000000000 --- a/_images/mathmpl/math-cebfe4186d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cebfe4186d.png \ No newline at end of file diff --git a/_images/mathmpl/math-cf8f5e2275.png b/_images/mathmpl/math-cf8f5e2275.png deleted file mode 120000 index cb4f14fcaa1..00000000000 --- a/_images/mathmpl/math-cf8f5e2275.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cf8f5e2275.png \ No newline at end of file diff --git a/_images/mathmpl/math-cfcebc2ef8.png b/_images/mathmpl/math-cfcebc2ef8.png deleted file mode 120000 index a4ef7b9f3be..00000000000 --- a/_images/mathmpl/math-cfcebc2ef8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-cfcebc2ef8.png \ No newline at end of file diff --git a/_images/mathmpl/math-d00ab41d80.png b/_images/mathmpl/math-d00ab41d80.png deleted file mode 120000 index b6771fd7eb3..00000000000 --- a/_images/mathmpl/math-d00ab41d80.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d00ab41d80.png \ No newline at end of file diff --git a/_images/mathmpl/math-d115134b0c.png b/_images/mathmpl/math-d115134b0c.png deleted file mode 120000 index 8ad2edb8456..00000000000 --- a/_images/mathmpl/math-d115134b0c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d115134b0c.png \ No newline at end of file diff --git a/_images/mathmpl/math-d11bf19a50.png b/_images/mathmpl/math-d11bf19a50.png deleted file mode 120000 index 172780301af..00000000000 --- a/_images/mathmpl/math-d11bf19a50.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d11bf19a50.png \ No newline at end of file diff --git a/_images/mathmpl/math-d2bc160257.png b/_images/mathmpl/math-d2bc160257.png deleted file mode 120000 index ab91641d2aa..00000000000 --- a/_images/mathmpl/math-d2bc160257.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d2bc160257.png \ No newline at end of file diff --git a/_images/mathmpl/math-d3219d7443.png b/_images/mathmpl/math-d3219d7443.png deleted file mode 120000 index 6c9b51e229b..00000000000 --- a/_images/mathmpl/math-d3219d7443.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d3219d7443.png \ No newline at end of file diff --git a/_images/mathmpl/math-d35c7fd4db.png b/_images/mathmpl/math-d35c7fd4db.png deleted file mode 120000 index 2cd48c1c933..00000000000 --- a/_images/mathmpl/math-d35c7fd4db.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d35c7fd4db.png \ No newline at end of file diff --git a/_images/mathmpl/math-d367d088c6.png b/_images/mathmpl/math-d367d088c6.png deleted file mode 120000 index 93fea5e9ac8..00000000000 --- a/_images/mathmpl/math-d367d088c6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d367d088c6.png \ No newline at end of file diff --git a/_images/mathmpl/math-d44376b8c3.png b/_images/mathmpl/math-d44376b8c3.png deleted file mode 120000 index 384e07645f6..00000000000 --- a/_images/mathmpl/math-d44376b8c3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d44376b8c3.png \ No newline at end of file diff --git a/_images/mathmpl/math-d4d8611cbc.png b/_images/mathmpl/math-d4d8611cbc.png deleted file mode 120000 index a3bc413d3b8..00000000000 --- a/_images/mathmpl/math-d4d8611cbc.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d4d8611cbc.png \ No newline at end of file diff --git a/_images/mathmpl/math-d51bb4d6d4.png b/_images/mathmpl/math-d51bb4d6d4.png deleted file mode 120000 index e41faa18c9a..00000000000 --- a/_images/mathmpl/math-d51bb4d6d4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d51bb4d6d4.png \ No newline at end of file diff --git a/_images/mathmpl/math-d5242ce585.png b/_images/mathmpl/math-d5242ce585.png deleted file mode 120000 index 0ba0f459d83..00000000000 --- a/_images/mathmpl/math-d5242ce585.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d5242ce585.png \ No newline at end of file diff --git a/_images/mathmpl/math-d6c1d2bb14.png b/_images/mathmpl/math-d6c1d2bb14.png deleted file mode 120000 index 04b381aa6fe..00000000000 --- a/_images/mathmpl/math-d6c1d2bb14.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d6c1d2bb14.png \ No newline at end of file diff --git a/_images/mathmpl/math-d6c1dc73f3.png b/_images/mathmpl/math-d6c1dc73f3.png deleted file mode 120000 index 6e876f2550c..00000000000 --- a/_images/mathmpl/math-d6c1dc73f3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d6c1dc73f3.png \ No newline at end of file diff --git a/_images/mathmpl/math-d78cd804a4.png b/_images/mathmpl/math-d78cd804a4.png deleted file mode 120000 index fda07698532..00000000000 --- a/_images/mathmpl/math-d78cd804a4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d78cd804a4.png \ No newline at end of file diff --git a/_images/mathmpl/math-d78d7b5c1b.png b/_images/mathmpl/math-d78d7b5c1b.png deleted file mode 120000 index 3f5494906af..00000000000 --- a/_images/mathmpl/math-d78d7b5c1b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d78d7b5c1b.png \ No newline at end of file diff --git a/_images/mathmpl/math-d7ee7c1348.png b/_images/mathmpl/math-d7ee7c1348.png deleted file mode 120000 index 9396eac629c..00000000000 --- a/_images/mathmpl/math-d7ee7c1348.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d7ee7c1348.png \ No newline at end of file diff --git a/_images/mathmpl/math-d831d8aa62.png b/_images/mathmpl/math-d831d8aa62.png deleted file mode 120000 index 0a3858aeea6..00000000000 --- a/_images/mathmpl/math-d831d8aa62.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d831d8aa62.png \ No newline at end of file diff --git a/_images/mathmpl/math-d85c40ef59.png b/_images/mathmpl/math-d85c40ef59.png deleted file mode 120000 index 9d8a754ab6c..00000000000 --- a/_images/mathmpl/math-d85c40ef59.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d85c40ef59.png \ No newline at end of file diff --git a/_images/mathmpl/math-d87b34b699.png b/_images/mathmpl/math-d87b34b699.png deleted file mode 120000 index de2d4d6b9c4..00000000000 --- a/_images/mathmpl/math-d87b34b699.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d87b34b699.png \ No newline at end of file diff --git a/_images/mathmpl/math-d8ad6ecbe6.png b/_images/mathmpl/math-d8ad6ecbe6.png deleted file mode 120000 index 00b4ca428c5..00000000000 --- a/_images/mathmpl/math-d8ad6ecbe6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d8ad6ecbe6.png \ No newline at end of file diff --git a/_images/mathmpl/math-d8d19f17ef.png b/_images/mathmpl/math-d8d19f17ef.png deleted file mode 120000 index ee9f791e47b..00000000000 --- a/_images/mathmpl/math-d8d19f17ef.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d8d19f17ef.png \ No newline at end of file diff --git a/_images/mathmpl/math-d9089cbf8f.png b/_images/mathmpl/math-d9089cbf8f.png deleted file mode 120000 index 66d0d6d95c3..00000000000 --- a/_images/mathmpl/math-d9089cbf8f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-d9089cbf8f.png \ No newline at end of file diff --git a/_images/mathmpl/math-da1122f776.png b/_images/mathmpl/math-da1122f776.png deleted file mode 120000 index 46f0cc6a218..00000000000 --- a/_images/mathmpl/math-da1122f776.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-da1122f776.png \ No newline at end of file diff --git a/_images/mathmpl/math-dae1e783ea-2x.png b/_images/mathmpl/math-dae1e783ea-2x.png deleted file mode 120000 index 7b9fb513093..00000000000 --- a/_images/mathmpl/math-dae1e783ea-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-dae1e783ea-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-dae1e783ea.png b/_images/mathmpl/math-dae1e783ea.png deleted file mode 120000 index 88e3db61f2e..00000000000 --- a/_images/mathmpl/math-dae1e783ea.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-dae1e783ea.png \ No newline at end of file diff --git a/_images/mathmpl/math-db9b9e0126.png b/_images/mathmpl/math-db9b9e0126.png deleted file mode 120000 index 76361b2c26d..00000000000 --- a/_images/mathmpl/math-db9b9e0126.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-db9b9e0126.png \ No newline at end of file diff --git a/_images/mathmpl/math-dbcc77f1d2.png b/_images/mathmpl/math-dbcc77f1d2.png deleted file mode 120000 index 8da58a0b66b..00000000000 --- a/_images/mathmpl/math-dbcc77f1d2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-dbcc77f1d2.png \ No newline at end of file diff --git a/_images/mathmpl/math-dc0a66342e.png b/_images/mathmpl/math-dc0a66342e.png deleted file mode 120000 index aababb69f01..00000000000 --- a/_images/mathmpl/math-dc0a66342e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-dc0a66342e.png \ No newline at end of file diff --git a/_images/mathmpl/math-dcb2243778.png b/_images/mathmpl/math-dcb2243778.png deleted file mode 120000 index 706cfb26ce1..00000000000 --- a/_images/mathmpl/math-dcb2243778.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-dcb2243778.png \ No newline at end of file diff --git a/_images/mathmpl/math-de64de5819.png b/_images/mathmpl/math-de64de5819.png deleted file mode 120000 index d3caad2180e..00000000000 --- a/_images/mathmpl/math-de64de5819.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-de64de5819.png \ No newline at end of file diff --git a/_images/mathmpl/math-dea1b42a91.png b/_images/mathmpl/math-dea1b42a91.png deleted file mode 120000 index e9c56731cad..00000000000 --- a/_images/mathmpl/math-dea1b42a91.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-dea1b42a91.png \ No newline at end of file diff --git a/_images/mathmpl/math-deaef88f76-2x.png b/_images/mathmpl/math-deaef88f76-2x.png deleted file mode 120000 index 2506482ff5e..00000000000 --- a/_images/mathmpl/math-deaef88f76-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-deaef88f76-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-deaef88f76.png b/_images/mathmpl/math-deaef88f76.png deleted file mode 120000 index cb8fe3a89b2..00000000000 --- a/_images/mathmpl/math-deaef88f76.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-deaef88f76.png \ No newline at end of file diff --git a/_images/mathmpl/math-dec391be07.png b/_images/mathmpl/math-dec391be07.png deleted file mode 120000 index 1ab50a496a7..00000000000 --- a/_images/mathmpl/math-dec391be07.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-dec391be07.png \ No newline at end of file diff --git a/_images/mathmpl/math-df6899ad3e.png b/_images/mathmpl/math-df6899ad3e.png deleted file mode 120000 index 2df401bee5f..00000000000 --- a/_images/mathmpl/math-df6899ad3e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-df6899ad3e.png \ No newline at end of file diff --git a/_images/mathmpl/math-dfa04fb947.png b/_images/mathmpl/math-dfa04fb947.png deleted file mode 120000 index 925514c91f9..00000000000 --- a/_images/mathmpl/math-dfa04fb947.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-dfa04fb947.png \ No newline at end of file diff --git a/_images/mathmpl/math-e0ca686f62.png b/_images/mathmpl/math-e0ca686f62.png deleted file mode 120000 index 75a7f8032f8..00000000000 --- a/_images/mathmpl/math-e0ca686f62.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e0ca686f62.png \ No newline at end of file diff --git a/_images/mathmpl/math-e128b2eaa3-2x.png b/_images/mathmpl/math-e128b2eaa3-2x.png deleted file mode 120000 index c9cba9b5183..00000000000 --- a/_images/mathmpl/math-e128b2eaa3-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-e128b2eaa3-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-e128b2eaa3.png b/_images/mathmpl/math-e128b2eaa3.png deleted file mode 120000 index 5c80b712d12..00000000000 --- a/_images/mathmpl/math-e128b2eaa3.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-e128b2eaa3.png \ No newline at end of file diff --git a/_images/mathmpl/math-e12e277d39.png b/_images/mathmpl/math-e12e277d39.png deleted file mode 120000 index 2055b30d54f..00000000000 --- a/_images/mathmpl/math-e12e277d39.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e12e277d39.png \ No newline at end of file diff --git a/_images/mathmpl/math-e15357ad29.png b/_images/mathmpl/math-e15357ad29.png deleted file mode 120000 index fb20a6f39ca..00000000000 --- a/_images/mathmpl/math-e15357ad29.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e15357ad29.png \ No newline at end of file diff --git a/_images/mathmpl/math-e22cc525ec.png b/_images/mathmpl/math-e22cc525ec.png deleted file mode 120000 index a9d7b996a74..00000000000 --- a/_images/mathmpl/math-e22cc525ec.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e22cc525ec.png \ No newline at end of file diff --git a/_images/mathmpl/math-e29eb6062a.png b/_images/mathmpl/math-e29eb6062a.png deleted file mode 120000 index 752662a3a6b..00000000000 --- a/_images/mathmpl/math-e29eb6062a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e29eb6062a.png \ No newline at end of file diff --git a/_images/mathmpl/math-e2db32b4d0.png b/_images/mathmpl/math-e2db32b4d0.png deleted file mode 120000 index 59252250235..00000000000 --- a/_images/mathmpl/math-e2db32b4d0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e2db32b4d0.png \ No newline at end of file diff --git a/_images/mathmpl/math-e2dcef116c.png b/_images/mathmpl/math-e2dcef116c.png deleted file mode 120000 index 1197b5232dd..00000000000 --- a/_images/mathmpl/math-e2dcef116c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e2dcef116c.png \ No newline at end of file diff --git a/_images/mathmpl/math-e3168b0fff.png b/_images/mathmpl/math-e3168b0fff.png deleted file mode 120000 index ef587676d25..00000000000 --- a/_images/mathmpl/math-e3168b0fff.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e3168b0fff.png \ No newline at end of file diff --git a/_images/mathmpl/math-e3d8965f58.png b/_images/mathmpl/math-e3d8965f58.png deleted file mode 120000 index b6d659b7e04..00000000000 --- a/_images/mathmpl/math-e3d8965f58.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e3d8965f58.png \ No newline at end of file diff --git a/_images/mathmpl/math-e4d9d4c64b.png b/_images/mathmpl/math-e4d9d4c64b.png deleted file mode 120000 index 0ccdcf73617..00000000000 --- a/_images/mathmpl/math-e4d9d4c64b.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e4d9d4c64b.png \ No newline at end of file diff --git a/_images/mathmpl/math-e51ac520e2.png b/_images/mathmpl/math-e51ac520e2.png deleted file mode 120000 index fe325a37cf1..00000000000 --- a/_images/mathmpl/math-e51ac520e2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e51ac520e2.png \ No newline at end of file diff --git a/_images/mathmpl/math-e5cadf28b9.png b/_images/mathmpl/math-e5cadf28b9.png deleted file mode 120000 index 5908dcf238a..00000000000 --- a/_images/mathmpl/math-e5cadf28b9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-e5cadf28b9.png \ No newline at end of file diff --git a/_images/mathmpl/math-e5cdb1d314.png b/_images/mathmpl/math-e5cdb1d314.png deleted file mode 120000 index 3b864f64c5e..00000000000 --- a/_images/mathmpl/math-e5cdb1d314.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e5cdb1d314.png \ No newline at end of file diff --git a/_images/mathmpl/math-e63a2108d5.png b/_images/mathmpl/math-e63a2108d5.png deleted file mode 120000 index ce83eb2daf3..00000000000 --- a/_images/mathmpl/math-e63a2108d5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e63a2108d5.png \ No newline at end of file diff --git a/_images/mathmpl/math-e661b1289d.png b/_images/mathmpl/math-e661b1289d.png deleted file mode 120000 index 6cdb69208d6..00000000000 --- a/_images/mathmpl/math-e661b1289d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e661b1289d.png \ No newline at end of file diff --git a/_images/mathmpl/math-e82daa3fb7.png b/_images/mathmpl/math-e82daa3fb7.png deleted file mode 120000 index 59d894ae9bb..00000000000 --- a/_images/mathmpl/math-e82daa3fb7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_images/mathmpl/math-e82daa3fb7.png \ No newline at end of file diff --git a/_images/mathmpl/math-e8cf7f5844.png b/_images/mathmpl/math-e8cf7f5844.png deleted file mode 120000 index 7daabdfd83c..00000000000 --- a/_images/mathmpl/math-e8cf7f5844.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e8cf7f5844.png \ No newline at end of file diff --git a/_images/mathmpl/math-e90d63d41d.png b/_images/mathmpl/math-e90d63d41d.png deleted file mode 120000 index d32be523389..00000000000 --- a/_images/mathmpl/math-e90d63d41d.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e90d63d41d.png \ No newline at end of file diff --git a/_images/mathmpl/math-e9444fe0c8.png b/_images/mathmpl/math-e9444fe0c8.png deleted file mode 120000 index c8d78345344..00000000000 --- a/_images/mathmpl/math-e9444fe0c8.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-e9444fe0c8.png \ No newline at end of file diff --git a/_images/mathmpl/math-e98739824f.png b/_images/mathmpl/math-e98739824f.png deleted file mode 120000 index 7421f7b4379..00000000000 --- a/_images/mathmpl/math-e98739824f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-e98739824f.png \ No newline at end of file diff --git a/_images/mathmpl/math-ea0303ad72.png b/_images/mathmpl/math-ea0303ad72.png deleted file mode 120000 index 20e98fd7879..00000000000 --- a/_images/mathmpl/math-ea0303ad72.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ea0303ad72.png \ No newline at end of file diff --git a/_images/mathmpl/math-ea5241d5f2.png b/_images/mathmpl/math-ea5241d5f2.png deleted file mode 120000 index 54f51a53641..00000000000 --- a/_images/mathmpl/math-ea5241d5f2.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ea5241d5f2.png \ No newline at end of file diff --git a/_images/mathmpl/math-ea5765e8b3.png b/_images/mathmpl/math-ea5765e8b3.png deleted file mode 120000 index b020932ff29..00000000000 --- a/_images/mathmpl/math-ea5765e8b3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ea5765e8b3.png \ No newline at end of file diff --git a/_images/mathmpl/math-eab5c7cdff.png b/_images/mathmpl/math-eab5c7cdff.png deleted file mode 120000 index ebbfd500a43..00000000000 --- a/_images/mathmpl/math-eab5c7cdff.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-eab5c7cdff.png \ No newline at end of file diff --git a/_images/mathmpl/math-eb3a880058.png b/_images/mathmpl/math-eb3a880058.png deleted file mode 120000 index b6807c82613..00000000000 --- a/_images/mathmpl/math-eb3a880058.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-eb3a880058.png \ No newline at end of file diff --git a/_images/mathmpl/math-eb3b3a6d5c.png b/_images/mathmpl/math-eb3b3a6d5c.png deleted file mode 120000 index 5271f4958fe..00000000000 --- a/_images/mathmpl/math-eb3b3a6d5c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-eb3b3a6d5c.png \ No newline at end of file diff --git a/_images/mathmpl/math-eb8d6ee4ad.png b/_images/mathmpl/math-eb8d6ee4ad.png deleted file mode 120000 index 1599e48ee6e..00000000000 --- a/_images/mathmpl/math-eb8d6ee4ad.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-eb8d6ee4ad.png \ No newline at end of file diff --git a/_images/mathmpl/math-ec200f4f3a.png b/_images/mathmpl/math-ec200f4f3a.png deleted file mode 120000 index 09f270020f9..00000000000 --- a/_images/mathmpl/math-ec200f4f3a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ec200f4f3a.png \ No newline at end of file diff --git a/_images/mathmpl/math-ee226905c4.png b/_images/mathmpl/math-ee226905c4.png deleted file mode 120000 index 0ff8ac789ae..00000000000 --- a/_images/mathmpl/math-ee226905c4.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ee226905c4.png \ No newline at end of file diff --git a/_images/mathmpl/math-ee61bb7cf9.png b/_images/mathmpl/math-ee61bb7cf9.png deleted file mode 120000 index 2977ba2d8ff..00000000000 --- a/_images/mathmpl/math-ee61bb7cf9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ee61bb7cf9.png \ No newline at end of file diff --git a/_images/mathmpl/math-eeabc86e5f.png b/_images/mathmpl/math-eeabc86e5f.png deleted file mode 120000 index 8300e10fd3b..00000000000 --- a/_images/mathmpl/math-eeabc86e5f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-eeabc86e5f.png \ No newline at end of file diff --git a/_images/mathmpl/math-ef7a046183.png b/_images/mathmpl/math-ef7a046183.png deleted file mode 120000 index daf47849f5c..00000000000 --- a/_images/mathmpl/math-ef7a046183.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ef7a046183.png \ No newline at end of file diff --git a/_images/mathmpl/math-ef94320557.png b/_images/mathmpl/math-ef94320557.png deleted file mode 120000 index 72340e556e7..00000000000 --- a/_images/mathmpl/math-ef94320557.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ef94320557.png \ No newline at end of file diff --git a/_images/mathmpl/math-efdcd0e7c3.png b/_images/mathmpl/math-efdcd0e7c3.png deleted file mode 120000 index b482df01a28..00000000000 --- a/_images/mathmpl/math-efdcd0e7c3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-efdcd0e7c3.png \ No newline at end of file diff --git a/_images/mathmpl/math-f083286645.png b/_images/mathmpl/math-f083286645.png deleted file mode 120000 index e5d7c315d71..00000000000 --- a/_images/mathmpl/math-f083286645.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f083286645.png \ No newline at end of file diff --git a/_images/mathmpl/math-f0c7f8f01c.png b/_images/mathmpl/math-f0c7f8f01c.png deleted file mode 120000 index 0a22a451342..00000000000 --- a/_images/mathmpl/math-f0c7f8f01c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f0c7f8f01c.png \ No newline at end of file diff --git a/_images/mathmpl/math-f0fa40854a.png b/_images/mathmpl/math-f0fa40854a.png deleted file mode 120000 index cb87b28f91e..00000000000 --- a/_images/mathmpl/math-f0fa40854a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f0fa40854a.png \ No newline at end of file diff --git a/_images/mathmpl/math-f0fe2a4a9f.png b/_images/mathmpl/math-f0fe2a4a9f.png deleted file mode 120000 index eb9dae7e93b..00000000000 --- a/_images/mathmpl/math-f0fe2a4a9f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f0fe2a4a9f.png \ No newline at end of file diff --git a/_images/mathmpl/math-f11a3eab57.png b/_images/mathmpl/math-f11a3eab57.png deleted file mode 120000 index 0e224a0a0b5..00000000000 --- a/_images/mathmpl/math-f11a3eab57.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f11a3eab57.png \ No newline at end of file diff --git a/_images/mathmpl/math-f151e9b6c6.png b/_images/mathmpl/math-f151e9b6c6.png deleted file mode 120000 index 52f140c8f7c..00000000000 --- a/_images/mathmpl/math-f151e9b6c6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f151e9b6c6.png \ No newline at end of file diff --git a/_images/mathmpl/math-f1bfb0bbf7.png b/_images/mathmpl/math-f1bfb0bbf7.png deleted file mode 120000 index ee23a8eb3c2..00000000000 --- a/_images/mathmpl/math-f1bfb0bbf7.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f1bfb0bbf7.png \ No newline at end of file diff --git a/_images/mathmpl/math-f2e3547a85.png b/_images/mathmpl/math-f2e3547a85.png deleted file mode 120000 index b416d48c5a1..00000000000 --- a/_images/mathmpl/math-f2e3547a85.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f2e3547a85.png \ No newline at end of file diff --git a/_images/mathmpl/math-f313a5f9af.png b/_images/mathmpl/math-f313a5f9af.png deleted file mode 120000 index 07b520ff7de..00000000000 --- a/_images/mathmpl/math-f313a5f9af.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f313a5f9af.png \ No newline at end of file diff --git a/_images/mathmpl/math-f3a504c488.png b/_images/mathmpl/math-f3a504c488.png deleted file mode 120000 index 74ab8e6e6ba..00000000000 --- a/_images/mathmpl/math-f3a504c488.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f3a504c488.png \ No newline at end of file diff --git a/_images/mathmpl/math-f3f9a5c2b6.png b/_images/mathmpl/math-f3f9a5c2b6.png deleted file mode 120000 index dbac8a2ea41..00000000000 --- a/_images/mathmpl/math-f3f9a5c2b6.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f3f9a5c2b6.png \ No newline at end of file diff --git a/_images/mathmpl/math-f557917efd.png b/_images/mathmpl/math-f557917efd.png deleted file mode 120000 index 4312e0f178c..00000000000 --- a/_images/mathmpl/math-f557917efd.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f557917efd.png \ No newline at end of file diff --git a/_images/mathmpl/math-f5af631a03.png b/_images/mathmpl/math-f5af631a03.png deleted file mode 120000 index 08d6b4a4e06..00000000000 --- a/_images/mathmpl/math-f5af631a03.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f5af631a03.png \ No newline at end of file diff --git a/_images/mathmpl/math-f5e02865f3.png b/_images/mathmpl/math-f5e02865f3.png deleted file mode 120000 index 95e3aad27e3..00000000000 --- a/_images/mathmpl/math-f5e02865f3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f5e02865f3.png \ No newline at end of file diff --git a/_images/mathmpl/math-f5e3901a47.png b/_images/mathmpl/math-f5e3901a47.png deleted file mode 120000 index 9de168d12a0..00000000000 --- a/_images/mathmpl/math-f5e3901a47.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f5e3901a47.png \ No newline at end of file diff --git a/_images/mathmpl/math-f5fb404176.png b/_images/mathmpl/math-f5fb404176.png deleted file mode 120000 index a97a7f9740a..00000000000 --- a/_images/mathmpl/math-f5fb404176.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-f5fb404176.png \ No newline at end of file diff --git a/_images/mathmpl/math-f610b8e469.png b/_images/mathmpl/math-f610b8e469.png deleted file mode 120000 index b37b8530a98..00000000000 --- a/_images/mathmpl/math-f610b8e469.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f610b8e469.png \ No newline at end of file diff --git a/_images/mathmpl/math-f614988806.png b/_images/mathmpl/math-f614988806.png deleted file mode 120000 index c9b94922a15..00000000000 --- a/_images/mathmpl/math-f614988806.png +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_images/mathmpl/math-f614988806.png \ No newline at end of file diff --git a/_images/mathmpl/math-f6d65b7f49.png b/_images/mathmpl/math-f6d65b7f49.png deleted file mode 120000 index c13801413f4..00000000000 --- a/_images/mathmpl/math-f6d65b7f49.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f6d65b7f49.png \ No newline at end of file diff --git a/_images/mathmpl/math-f6fb720d82.png b/_images/mathmpl/math-f6fb720d82.png deleted file mode 120000 index 3420f099110..00000000000 --- a/_images/mathmpl/math-f6fb720d82.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f6fb720d82.png \ No newline at end of file diff --git a/_images/mathmpl/math-f81f19a962.png b/_images/mathmpl/math-f81f19a962.png deleted file mode 120000 index 2c3c2261be0..00000000000 --- a/_images/mathmpl/math-f81f19a962.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f81f19a962.png \ No newline at end of file diff --git a/_images/mathmpl/math-f8daa97519.png b/_images/mathmpl/math-f8daa97519.png deleted file mode 120000 index 813a751de50..00000000000 --- a/_images/mathmpl/math-f8daa97519.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f8daa97519.png \ No newline at end of file diff --git a/_images/mathmpl/math-f8ee41a28a.png b/_images/mathmpl/math-f8ee41a28a.png deleted file mode 120000 index d34e85b3c02..00000000000 --- a/_images/mathmpl/math-f8ee41a28a.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f8ee41a28a.png \ No newline at end of file diff --git a/_images/mathmpl/math-f970af607c.png b/_images/mathmpl/math-f970af607c.png deleted file mode 120000 index 3bd5c34a196..00000000000 --- a/_images/mathmpl/math-f970af607c.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f970af607c.png \ No newline at end of file diff --git a/_images/mathmpl/math-f9990bc9cf.png b/_images/mathmpl/math-f9990bc9cf.png deleted file mode 120000 index a0a1a6befdf..00000000000 --- a/_images/mathmpl/math-f9990bc9cf.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f9990bc9cf.png \ No newline at end of file diff --git a/_images/mathmpl/math-f9b0df773f.png b/_images/mathmpl/math-f9b0df773f.png deleted file mode 120000 index 54343932d2d..00000000000 --- a/_images/mathmpl/math-f9b0df773f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f9b0df773f.png \ No newline at end of file diff --git a/_images/mathmpl/math-f9cc3f8904.png b/_images/mathmpl/math-f9cc3f8904.png deleted file mode 120000 index 5b12d5506d5..00000000000 --- a/_images/mathmpl/math-f9cc3f8904.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-f9cc3f8904.png \ No newline at end of file diff --git a/_images/mathmpl/math-f9f98764da.png b/_images/mathmpl/math-f9f98764da.png deleted file mode 120000 index 9ff66323a4c..00000000000 --- a/_images/mathmpl/math-f9f98764da.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-f9f98764da.png \ No newline at end of file diff --git a/_images/mathmpl/math-fa85ea0416.png b/_images/mathmpl/math-fa85ea0416.png deleted file mode 120000 index 1c8dc5da766..00000000000 --- a/_images/mathmpl/math-fa85ea0416.png +++ /dev/null @@ -1 +0,0 @@ -../../2.1.0/_images/mathmpl/math-fa85ea0416.png \ No newline at end of file diff --git a/_images/mathmpl/math-fac074d098.png b/_images/mathmpl/math-fac074d098.png deleted file mode 120000 index 6ef3fdd3f1f..00000000000 --- a/_images/mathmpl/math-fac074d098.png +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_images/mathmpl/math-fac074d098.png \ No newline at end of file diff --git a/_images/mathmpl/math-fb1cbbd43f.png b/_images/mathmpl/math-fb1cbbd43f.png deleted file mode 120000 index 7361930d993..00000000000 --- a/_images/mathmpl/math-fb1cbbd43f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-fb1cbbd43f.png \ No newline at end of file diff --git a/_images/mathmpl/math-fb3512b848.png b/_images/mathmpl/math-fb3512b848.png deleted file mode 120000 index a152486e90a..00000000000 --- a/_images/mathmpl/math-fb3512b848.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-fb3512b848.png \ No newline at end of file diff --git a/_images/mathmpl/math-fb64cdd50f.png b/_images/mathmpl/math-fb64cdd50f.png deleted file mode 120000 index 9a976d3ddf5..00000000000 --- a/_images/mathmpl/math-fb64cdd50f.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-fb64cdd50f.png \ No newline at end of file diff --git a/_images/mathmpl/math-fce1799ac3.png b/_images/mathmpl/math-fce1799ac3.png deleted file mode 120000 index 911956bc061..00000000000 --- a/_images/mathmpl/math-fce1799ac3.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-fce1799ac3.png \ No newline at end of file diff --git a/_images/mathmpl/math-fce9663ad9.png b/_images/mathmpl/math-fce9663ad9.png deleted file mode 120000 index 21a21857c6a..00000000000 --- a/_images/mathmpl/math-fce9663ad9.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-fce9663ad9.png \ No newline at end of file diff --git a/_images/mathmpl/math-fd65cdeddd-2x.png b/_images/mathmpl/math-fd65cdeddd-2x.png deleted file mode 120000 index b68b3f0a778..00000000000 --- a/_images/mathmpl/math-fd65cdeddd-2x.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-fd65cdeddd-2x.png \ No newline at end of file diff --git a/_images/mathmpl/math-fd65cdeddd.png b/_images/mathmpl/math-fd65cdeddd.png deleted file mode 120000 index 90adb57ab95..00000000000 --- a/_images/mathmpl/math-fd65cdeddd.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/_images/mathmpl/math-fd65cdeddd.png \ No newline at end of file diff --git a/_images/mathmpl/math-fea35fa8ec.png b/_images/mathmpl/math-fea35fa8ec.png deleted file mode 120000 index 6f53e950dd5..00000000000 --- a/_images/mathmpl/math-fea35fa8ec.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-fea35fa8ec.png \ No newline at end of file diff --git a/_images/mathmpl/math-fefbb15af0.png b/_images/mathmpl/math-fefbb15af0.png deleted file mode 120000 index a0cd2250d9c..00000000000 --- a/_images/mathmpl/math-fefbb15af0.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-fefbb15af0.png \ No newline at end of file diff --git a/_images/mathmpl/math-ff23293ae5.png b/_images/mathmpl/math-ff23293ae5.png deleted file mode 120000 index c71f85b2b05..00000000000 --- a/_images/mathmpl/math-ff23293ae5.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ff23293ae5.png \ No newline at end of file diff --git a/_images/mathmpl/math-ff49c05034.png b/_images/mathmpl/math-ff49c05034.png deleted file mode 120000 index 35f3031e844..00000000000 --- a/_images/mathmpl/math-ff49c05034.png +++ /dev/null @@ -1 +0,0 @@ -../../2.1.2/_images/mathmpl/math-ff49c05034.png \ No newline at end of file diff --git a/_images/mathmpl/math-ff6a67483e.png b/_images/mathmpl/math-ff6a67483e.png deleted file mode 120000 index 4531b34a297..00000000000 --- a/_images/mathmpl/math-ff6a67483e.png +++ /dev/null @@ -1 +0,0 @@ -../../3.0.0/_images/mathmpl/math-ff6a67483e.png \ No newline at end of file diff --git a/_images/mathtext_asarray.png b/_images/mathtext_asarray.png deleted file mode 120000 index 4a72a6212f4..00000000000 --- a/_images/mathtext_asarray.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mathtext_asarray.png \ No newline at end of file diff --git a/_images/mathtext_demo.png b/_images/mathtext_demo.png deleted file mode 120000 index 85fe5d77661..00000000000 --- a/_images/mathtext_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mathtext_demo.png \ No newline at end of file diff --git a/_images/mathtext_examples_01_00.png b/_images/mathtext_examples_01_00.png deleted file mode 120000 index 1513304918a..00000000000 --- a/_images/mathtext_examples_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mathtext_examples_01_00.png \ No newline at end of file diff --git a/_images/mathtext_examples_01_001.png b/_images/mathtext_examples_01_001.png deleted file mode 120000 index 70ab46ac0e7..00000000000 --- a/_images/mathtext_examples_01_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mathtext_examples_01_001.png \ No newline at end of file diff --git a/_images/matplotlib-axes-Axes-secondary_xaxis-1.png b/_images/matplotlib-axes-Axes-secondary_xaxis-1.png deleted file mode 120000 index 1a3799f945c..00000000000 --- a/_images/matplotlib-axes-Axes-secondary_xaxis-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/matplotlib-axes-Axes-secondary_xaxis-1.png \ No newline at end of file diff --git a/_images/matplotlib-axes-Axes-secondary_yaxis-1.png b/_images/matplotlib-axes-Axes-secondary_yaxis-1.png deleted file mode 120000 index 514ced531a2..00000000000 --- a/_images/matplotlib-axes-Axes-secondary_yaxis-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/matplotlib-axes-Axes-secondary_yaxis-1.png \ No newline at end of file diff --git a/_images/matplotlib_icon.png b/_images/matplotlib_icon.png deleted file mode 120000 index c947a5b98de..00000000000 --- a/_images/matplotlib_icon.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/matplotlib_icon.png \ No newline at end of file diff --git a/_images/matplotlib_iterm2_demo.png b/_images/matplotlib_iterm2_demo.png deleted file mode 120000 index edb9cb8214a..00000000000 --- a/_images/matplotlib_iterm2_demo.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/matplotlib_iterm2_demo.png \ No newline at end of file diff --git a/_images/matshow.png b/_images/matshow.png deleted file mode 120000 index 5bf216e4ecc..00000000000 --- a/_images/matshow.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/matshow.png \ No newline at end of file diff --git a/_images/matshow1.png b/_images/matshow1.png deleted file mode 120000 index 92b72103238..00000000000 --- a/_images/matshow1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/matshow1.png \ No newline at end of file diff --git a/_images/matshow_00.png b/_images/matshow_00.png deleted file mode 120000 index b6c922aba54..00000000000 --- a/_images/matshow_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/matshow_00.png \ No newline at end of file diff --git a/_images/matshow_001.png b/_images/matshow_001.png deleted file mode 120000 index f70af74b314..00000000000 --- a/_images/matshow_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/matshow_001.png \ No newline at end of file diff --git a/_images/matshow_01.png b/_images/matshow_01.png deleted file mode 120000 index 7ecfc1a9fce..00000000000 --- a/_images/matshow_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/matshow_01.png \ No newline at end of file diff --git a/_images/matshow_011.png b/_images/matshow_011.png deleted file mode 120000 index 4e94dfb908b..00000000000 --- a/_images/matshow_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/matshow_011.png \ No newline at end of file diff --git a/_images/matshow_02.png b/_images/matshow_02.png deleted file mode 120000 index c4ccbc05591..00000000000 --- a/_images/matshow_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/matshow_02.png \ No newline at end of file diff --git a/_images/matshow_021.png b/_images/matshow_021.png deleted file mode 120000 index 79de1b2d2cc..00000000000 --- a/_images/matshow_021.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/matshow_021.png \ No newline at end of file diff --git a/_images/mixed_subplots_demo.png b/_images/mixed_subplots_demo.png deleted file mode 120000 index 81642e8fe97..00000000000 --- a/_images/mixed_subplots_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mixed_subplots_demo.png \ No newline at end of file diff --git a/_images/mixed_subplots_demo1.png b/_images/mixed_subplots_demo1.png deleted file mode 120000 index dc1e4426391..00000000000 --- a/_images/mixed_subplots_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mixed_subplots_demo1.png \ No newline at end of file diff --git a/_images/move.png b/_images/move.png deleted file mode 120000 index b3c28e38eb7..00000000000 --- a/_images/move.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/move.png \ No newline at end of file diff --git a/_images/move_large.png b/_images/move_large.png deleted file mode 120000 index d076a9d6acc..00000000000 --- a/_images/move_large.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/move_large.png \ No newline at end of file diff --git a/_images/mpl-interactions-slider-animated.png b/_images/mpl-interactions-slider-animated.png deleted file mode 120000 index c455f5ccf5a..00000000000 --- a/_images/mpl-interactions-slider-animated.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/mpl-interactions-slider-animated.png \ No newline at end of file diff --git a/_images/mpl-scatter-density.png b/_images/mpl-scatter-density.png deleted file mode 120000 index 513aeac438a..00000000000 --- a/_images/mpl-scatter-density.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/mpl-scatter-density.png \ No newline at end of file diff --git a/_images/mpl_template_example.png b/_images/mpl_template_example.png deleted file mode 120000 index 8d340027ca4..00000000000 --- a/_images/mpl_template_example.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/mpl_template_example.png \ No newline at end of file diff --git a/_images/mri_demo.png b/_images/mri_demo.png deleted file mode 120000 index 0e6583050e0..00000000000 --- a/_images/mri_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mri_demo.png \ No newline at end of file diff --git a/_images/mri_with_eeg.png b/_images/mri_with_eeg.png deleted file mode 120000 index 5584080eab2..00000000000 --- a/_images/mri_with_eeg.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/mri_with_eeg.png \ No newline at end of file diff --git a/_images/multi_image.png b/_images/multi_image.png deleted file mode 120000 index 85de8afe233..00000000000 --- a/_images/multi_image.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multi_image.png \ No newline at end of file diff --git a/_images/multicolored_line_00.png b/_images/multicolored_line_00.png deleted file mode 120000 index 49ca58a6d4c..00000000000 --- a/_images/multicolored_line_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multicolored_line_00.png \ No newline at end of file diff --git a/_images/multicolored_line_01.png b/_images/multicolored_line_01.png deleted file mode 120000 index b9d84a731f8..00000000000 --- a/_images/multicolored_line_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multicolored_line_01.png \ No newline at end of file diff --git a/_images/multiline.png b/_images/multiline.png deleted file mode 120000 index 363607aa431..00000000000 --- a/_images/multiline.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multiline.png \ No newline at end of file diff --git a/_images/multiple_figs_demo_00.png b/_images/multiple_figs_demo_00.png deleted file mode 120000 index 50473ab1ded..00000000000 --- a/_images/multiple_figs_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multiple_figs_demo_00.png \ No newline at end of file diff --git a/_images/multiple_figs_demo_01.png b/_images/multiple_figs_demo_01.png deleted file mode 120000 index 90c43e9e5c5..00000000000 --- a/_images/multiple_figs_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multiple_figs_demo_01.png \ No newline at end of file diff --git a/_images/multiple_histograms_side_by_side.png b/_images/multiple_histograms_side_by_side.png deleted file mode 120000 index 4fa8aa23836..00000000000 --- a/_images/multiple_histograms_side_by_side.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multiple_histograms_side_by_side.png \ No newline at end of file diff --git a/_images/multiple_yaxis_with_spines.png b/_images/multiple_yaxis_with_spines.png deleted file mode 120000 index 9435d531177..00000000000 --- a/_images/multiple_yaxis_with_spines.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/multiple_yaxis_with_spines.png \ No newline at end of file diff --git a/_images/named_colors.png b/_images/named_colors.png deleted file mode 120000 index 1322dac23a6..00000000000 --- a/_images/named_colors.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/named_colors.png \ No newline at end of file diff --git a/_images/nan_test.png b/_images/nan_test.png deleted file mode 120000 index 1a0e343ff62..00000000000 --- a/_images/nan_test.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/nan_test.png \ No newline at end of file diff --git a/_images/newscalarformatter_demo_00.png b/_images/newscalarformatter_demo_00.png deleted file mode 120000 index 29e9cd9c95d..00000000000 --- a/_images/newscalarformatter_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/newscalarformatter_demo_00.png \ No newline at end of file diff --git a/_images/newscalarformatter_demo_01.png b/_images/newscalarformatter_demo_01.png deleted file mode 120000 index f9351fbf570..00000000000 --- a/_images/newscalarformatter_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/newscalarformatter_demo_01.png \ No newline at end of file diff --git a/_images/newscalarformatter_demo_02.png b/_images/newscalarformatter_demo_02.png deleted file mode 120000 index bea138b300d..00000000000 --- a/_images/newscalarformatter_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/newscalarformatter_demo_02.png \ No newline at end of file diff --git a/_images/newscalarformatter_demo_03.png b/_images/newscalarformatter_demo_03.png deleted file mode 120000 index 35fb91de56d..00000000000 --- a/_images/newscalarformatter_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/newscalarformatter_demo_03.png \ No newline at end of file diff --git a/_images/numpngw_animated_example.png b/_images/numpngw_animated_example.png deleted file mode 120000 index 09acb262963..00000000000 --- a/_images/numpngw_animated_example.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/numpngw_animated_example.png \ No newline at end of file diff --git a/_images/offset_demo.png b/_images/offset_demo.png deleted file mode 120000 index a27b1f963da..00000000000 --- a/_images/offset_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/offset_demo.png \ No newline at end of file diff --git a/_images/offset_demo1.png b/_images/offset_demo1.png deleted file mode 120000 index 09f5139d772..00000000000 --- a/_images/offset_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/offset_demo1.png \ No newline at end of file diff --git a/_images/parasite_simple.png b/_images/parasite_simple.png deleted file mode 120000 index a4ab911d951..00000000000 --- a/_images/parasite_simple.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/parasite_simple.png \ No newline at end of file diff --git a/_images/parasite_simple2.png b/_images/parasite_simple2.png deleted file mode 120000 index bca9491f588..00000000000 --- a/_images/parasite_simple2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/parasite_simple2.png \ No newline at end of file diff --git a/_images/parasite_simple21.png b/_images/parasite_simple21.png deleted file mode 120000 index b5186763c12..00000000000 --- a/_images/parasite_simple21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/parasite_simple21.png \ No newline at end of file diff --git a/_images/patch_collection.png b/_images/patch_collection.png deleted file mode 120000 index b7ea0591129..00000000000 --- a/_images/patch_collection.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/patch_collection.png \ No newline at end of file diff --git a/_images/path_patch_demo.png b/_images/path_patch_demo.png deleted file mode 120000 index 8e24dda32ae..00000000000 --- a/_images/path_patch_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/path_patch_demo.png \ No newline at end of file diff --git a/_images/path_patch_demo1.png b/_images/path_patch_demo1.png deleted file mode 120000 index 08d2a564120..00000000000 --- a/_images/path_patch_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/path_patch_demo1.png \ No newline at end of file diff --git a/_images/path_tutorial-1.png b/_images/path_tutorial-1.png deleted file mode 120000 index 7c7168d6705..00000000000 --- a/_images/path_tutorial-1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/path_tutorial-1.png \ No newline at end of file diff --git a/_images/path_tutorial-2.png b/_images/path_tutorial-2.png deleted file mode 120000 index c2648a30093..00000000000 --- a/_images/path_tutorial-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/path_tutorial-2.png \ No newline at end of file diff --git a/_images/patheffect_demo.png b/_images/patheffect_demo.png deleted file mode 120000 index 66828f5b5b2..00000000000 --- a/_images/patheffect_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/patheffect_demo.png \ No newline at end of file diff --git a/_images/patheffect_demo1.png b/_images/patheffect_demo1.png deleted file mode 120000 index 726ccc771c0..00000000000 --- a/_images/patheffect_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/patheffect_demo1.png \ No newline at end of file diff --git a/_images/patheffects_guide-1.png b/_images/patheffects_guide-1.png deleted file mode 120000 index 127d56c52ff..00000000000 --- a/_images/patheffects_guide-1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/patheffects_guide-1.png \ No newline at end of file diff --git a/_images/patheffects_guide-2.png b/_images/patheffects_guide-2.png deleted file mode 120000 index d48fe2e965b..00000000000 --- a/_images/patheffects_guide-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/patheffects_guide-2.png \ No newline at end of file diff --git a/_images/patheffects_guide-3.png b/_images/patheffects_guide-3.png deleted file mode 120000 index df01160b020..00000000000 --- a/_images/patheffects_guide-3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/patheffects_guide-3.png \ No newline at end of file diff --git a/_images/patheffects_guide-4.png b/_images/patheffects_guide-4.png deleted file mode 120000 index 4d3d51df98f..00000000000 --- a/_images/patheffects_guide-4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/patheffects_guide-4.png \ No newline at end of file diff --git a/_images/pathpatch3d_demo.png b/_images/pathpatch3d_demo.png deleted file mode 120000 index ea0145e533b..00000000000 --- a/_images/pathpatch3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pathpatch3d_demo.png \ No newline at end of file diff --git a/_images/pcolor_demo.png b/_images/pcolor_demo.png deleted file mode 120000 index 43105ce3532..00000000000 --- a/_images/pcolor_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pcolor_demo.png \ No newline at end of file diff --git a/_images/pcolor_log.png b/_images/pcolor_log.png deleted file mode 120000 index 1e66c7a11fe..00000000000 --- a/_images/pcolor_log.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pcolor_log.png \ No newline at end of file diff --git a/_images/pcolor_small.png b/_images/pcolor_small.png deleted file mode 120000 index c3a531106ec..00000000000 --- a/_images/pcolor_small.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pcolor_small.png \ No newline at end of file diff --git a/_images/pcolormesh_levels.png b/_images/pcolormesh_levels.png deleted file mode 120000 index 608ef763bf3..00000000000 --- a/_images/pcolormesh_levels.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pcolormesh_levels.png \ No newline at end of file diff --git a/_images/pgf_fonts.png b/_images/pgf_fonts.png deleted file mode 120000 index 348a68549ff..00000000000 --- a/_images/pgf_fonts.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pgf_fonts.png \ No newline at end of file diff --git a/_images/pgf_preamble.png b/_images/pgf_preamble.png deleted file mode 120000 index 98e0bc03847..00000000000 --- a/_images/pgf_preamble.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/pgf_preamble.png \ No newline at end of file diff --git a/_images/pgf_texsystem.png b/_images/pgf_texsystem.png deleted file mode 120000 index 466ad0f40bd..00000000000 --- a/_images/pgf_texsystem.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pgf_texsystem.png \ No newline at end of file diff --git a/_images/pie_demo2.png b/_images/pie_demo2.png deleted file mode 120000 index cf054d88c6a..00000000000 --- a/_images/pie_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pie_demo2.png \ No newline at end of file diff --git a/_images/pie_demo_features.png b/_images/pie_demo_features.png deleted file mode 120000 index 24570012577..00000000000 --- a/_images/pie_demo_features.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pie_demo_features.png \ No newline at end of file diff --git a/_images/pie_demo_features1.png b/_images/pie_demo_features1.png deleted file mode 120000 index 5158fcc3b90..00000000000 --- a/_images/pie_demo_features1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pie_demo_features1.png \ No newline at end of file diff --git a/_images/pie_demo_features2.png b/_images/pie_demo_features2.png deleted file mode 120000 index 9fd5de2fe1a..00000000000 --- a/_images/pie_demo_features2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pie_demo_features2.png \ No newline at end of file diff --git a/_images/pie_demo_features3.png b/_images/pie_demo_features3.png deleted file mode 120000 index 2be4f152d4c..00000000000 --- a/_images/pie_demo_features3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pie_demo_features3.png \ No newline at end of file diff --git a/_images/pie_demo_features_00.png b/_images/pie_demo_features_00.png deleted file mode 120000 index c30c75ca4d0..00000000000 --- a/_images/pie_demo_features_00.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/pie_demo_features_00.png \ No newline at end of file diff --git a/_images/pie_demo_features_001.png b/_images/pie_demo_features_001.png deleted file mode 120000 index 57262087669..00000000000 --- a/_images/pie_demo_features_001.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/pie_demo_features_001.png \ No newline at end of file diff --git a/_images/pie_demo_features_01.png b/_images/pie_demo_features_01.png deleted file mode 120000 index c0aab29d2ef..00000000000 --- a/_images/pie_demo_features_01.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/pie_demo_features_01.png \ No newline at end of file diff --git a/_images/pie_demo_features_011.png b/_images/pie_demo_features_011.png deleted file mode 120000 index a0435b5e3f8..00000000000 --- a/_images/pie_demo_features_011.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/pie_demo_features_011.png \ No newline at end of file diff --git a/_images/plot_bmh.png b/_images/plot_bmh.png deleted file mode 120000 index c4fccba476e..00000000000 --- a/_images/plot_bmh.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plot_bmh.png \ No newline at end of file diff --git a/_images/plot_dark_background.png b/_images/plot_dark_background.png deleted file mode 120000 index 56f3675beab..00000000000 --- a/_images/plot_dark_background.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plot_dark_background.png \ No newline at end of file diff --git a/_images/plot_fivethirtyeight.png b/_images/plot_fivethirtyeight.png deleted file mode 120000 index 21503528682..00000000000 --- a/_images/plot_fivethirtyeight.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plot_fivethirtyeight.png \ No newline at end of file diff --git a/_images/plot_ggplot.png b/_images/plot_ggplot.png deleted file mode 120000 index fcf4d9600c6..00000000000 --- a/_images/plot_ggplot.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plot_ggplot.png \ No newline at end of file diff --git a/_images/plot_grayscale.png b/_images/plot_grayscale.png deleted file mode 120000 index 7d70097bff2..00000000000 --- a/_images/plot_grayscale.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plot_grayscale.png \ No newline at end of file diff --git a/_images/plotfile_demo_00.png b/_images/plotfile_demo_00.png deleted file mode 120000 index 0feca35cfe4..00000000000 --- a/_images/plotfile_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_00.png \ No newline at end of file diff --git a/_images/plotfile_demo_01.png b/_images/plotfile_demo_01.png deleted file mode 120000 index 3f87bd2f0fe..00000000000 --- a/_images/plotfile_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_01.png \ No newline at end of file diff --git a/_images/plotfile_demo_02.png b/_images/plotfile_demo_02.png deleted file mode 120000 index d03b654fb25..00000000000 --- a/_images/plotfile_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_02.png \ No newline at end of file diff --git a/_images/plotfile_demo_03.png b/_images/plotfile_demo_03.png deleted file mode 120000 index 3237f3035a9..00000000000 --- a/_images/plotfile_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_03.png \ No newline at end of file diff --git a/_images/plotfile_demo_04.png b/_images/plotfile_demo_04.png deleted file mode 120000 index b17ca8d4eea..00000000000 --- a/_images/plotfile_demo_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_04.png \ No newline at end of file diff --git a/_images/plotfile_demo_05.png b/_images/plotfile_demo_05.png deleted file mode 120000 index 53287551a6c..00000000000 --- a/_images/plotfile_demo_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_05.png \ No newline at end of file diff --git a/_images/plotfile_demo_06.png b/_images/plotfile_demo_06.png deleted file mode 120000 index 45f2f4c844f..00000000000 --- a/_images/plotfile_demo_06.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_06.png \ No newline at end of file diff --git a/_images/plotfile_demo_07.png b/_images/plotfile_demo_07.png deleted file mode 120000 index 4934c5f5fb6..00000000000 --- a/_images/plotfile_demo_07.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/plotfile_demo_07.png \ No newline at end of file diff --git a/_images/plotmap.png b/_images/plotmap.png deleted file mode 120000 index d9c297404f2..00000000000 --- a/_images/plotmap.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/plotmap.png \ No newline at end of file diff --git a/_images/plotnine.png b/_images/plotnine.png deleted file mode 120000 index 9230b8b3035..00000000000 --- a/_images/plotnine.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/plotnine.png \ No newline at end of file diff --git a/_images/polar_bar_demo.png b/_images/polar_bar_demo.png deleted file mode 120000 index c3e88f1c2ff..00000000000 --- a/_images/polar_bar_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/polar_bar_demo.png \ No newline at end of file diff --git a/_images/polar_demo.png b/_images/polar_demo.png deleted file mode 120000 index 99c30b9fb2c..00000000000 --- a/_images/polar_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/polar_demo.png \ No newline at end of file diff --git a/_images/polar_demo1.png b/_images/polar_demo1.png deleted file mode 120000 index fb6307e7182..00000000000 --- a/_images/polar_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/polar_demo1.png \ No newline at end of file diff --git a/_images/polar_legend.png b/_images/polar_legend.png deleted file mode 120000 index f69d32b667e..00000000000 --- a/_images/polar_legend.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/polar_legend.png \ No newline at end of file diff --git a/_images/polar_scatter_demo.png b/_images/polar_scatter_demo.png deleted file mode 120000 index a8488ec5b3d..00000000000 --- a/_images/polar_scatter_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/polar_scatter_demo.png \ No newline at end of file diff --git a/_images/polys3d_demo.png b/_images/polys3d_demo.png deleted file mode 120000 index 1dd36dc7228..00000000000 --- a/_images/polys3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/polys3d_demo.png \ No newline at end of file diff --git a/_images/polys3d_demo1.png b/_images/polys3d_demo1.png deleted file mode 120000 index 6e9ba366391..00000000000 --- a/_images/polys3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/polys3d_demo1.png \ No newline at end of file diff --git a/_images/power_norm_demo.png b/_images/power_norm_demo.png deleted file mode 120000 index e12f7770551..00000000000 --- a/_images/power_norm_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/power_norm_demo.png \ No newline at end of file diff --git a/_images/probscale_demo.png b/_images/probscale_demo.png deleted file mode 120000 index 799df73e6e2..00000000000 --- a/_images/probscale_demo.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/probscale_demo.png \ No newline at end of file diff --git a/_images/psd_demo2.png b/_images/psd_demo2.png deleted file mode 120000 index a61f57d4bd6..00000000000 --- a/_images/psd_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/psd_demo2.png \ No newline at end of file diff --git a/_images/psd_demo3.png b/_images/psd_demo3.png deleted file mode 120000 index a46c338c33b..00000000000 --- a/_images/psd_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/psd_demo3.png \ No newline at end of file diff --git a/_images/psd_demo_00_00.png b/_images/psd_demo_00_00.png deleted file mode 120000 index 8f9697e6781..00000000000 --- a/_images/psd_demo_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/psd_demo_00_00.png \ No newline at end of file diff --git a/_images/psd_demo_00_001.png b/_images/psd_demo_00_001.png deleted file mode 120000 index 82d59ed829e..00000000000 --- a/_images/psd_demo_00_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/psd_demo_00_001.png \ No newline at end of file diff --git a/_images/psd_demo_00_002.png b/_images/psd_demo_00_002.png deleted file mode 120000 index 53a359338ba..00000000000 --- a/_images/psd_demo_00_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/psd_demo_00_002.png \ No newline at end of file diff --git a/_images/psd_demo_complex.png b/_images/psd_demo_complex.png deleted file mode 120000 index b53c8c27faa..00000000000 --- a/_images/psd_demo_complex.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/psd_demo_complex.png \ No newline at end of file diff --git a/_images/pull_button.png b/_images/pull_button.png deleted file mode 120000 index 82f52659b8c..00000000000 --- a/_images/pull_button.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/pull_button.png \ No newline at end of file diff --git a/_images/pyplot_annotate.png b/_images/pyplot_annotate.png deleted file mode 120000 index ebe63be55f4..00000000000 --- a/_images/pyplot_annotate.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_annotate.png \ No newline at end of file diff --git a/_images/pyplot_formatstr.png b/_images/pyplot_formatstr.png deleted file mode 120000 index 05df64e02ca..00000000000 --- a/_images/pyplot_formatstr.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_formatstr.png \ No newline at end of file diff --git a/_images/pyplot_mathtext.png b/_images/pyplot_mathtext.png deleted file mode 120000 index f4a9b2a5f3f..00000000000 --- a/_images/pyplot_mathtext.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_mathtext.png \ No newline at end of file diff --git a/_images/pyplot_scales.png b/_images/pyplot_scales.png deleted file mode 120000 index 0745c79779c..00000000000 --- a/_images/pyplot_scales.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_scales.png \ No newline at end of file diff --git a/_images/pyplot_simple.png b/_images/pyplot_simple.png deleted file mode 120000 index 555eb95e8de..00000000000 --- a/_images/pyplot_simple.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_simple.png \ No newline at end of file diff --git a/_images/pyplot_text.png b/_images/pyplot_text.png deleted file mode 120000 index 694f05b3a9b..00000000000 --- a/_images/pyplot_text.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_text.png \ No newline at end of file diff --git a/_images/pyplot_three.png b/_images/pyplot_three.png deleted file mode 120000 index cba63c73110..00000000000 --- a/_images/pyplot_three.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_three.png \ No newline at end of file diff --git a/_images/pyplot_two_subplots.png b/_images/pyplot_two_subplots.png deleted file mode 120000 index 9599be5cc56..00000000000 --- a/_images/pyplot_two_subplots.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pyplot_two_subplots.png \ No newline at end of file diff --git a/_images/pythonic_matplotlib.png b/_images/pythonic_matplotlib.png deleted file mode 120000 index 54faabd612b..00000000000 --- a/_images/pythonic_matplotlib.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/pythonic_matplotlib.png \ No newline at end of file diff --git a/_images/quad_bezier.png b/_images/quad_bezier.png deleted file mode 120000 index d7cb0f7d2bd..00000000000 --- a/_images/quad_bezier.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quad_bezier.png \ No newline at end of file diff --git a/_images/quadmesh_demo.png b/_images/quadmesh_demo.png deleted file mode 120000 index f5c5fbce150..00000000000 --- a/_images/quadmesh_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quadmesh_demo.png \ No newline at end of file diff --git a/_images/quiver3d_demo.png b/_images/quiver3d_demo.png deleted file mode 120000 index 1961970ee26..00000000000 --- a/_images/quiver3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver3d_demo.png \ No newline at end of file diff --git a/_images/quiver3d_demo1.png b/_images/quiver3d_demo1.png deleted file mode 120000 index 8269101f3fd..00000000000 --- a/_images/quiver3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver3d_demo1.png \ No newline at end of file diff --git a/_images/quiver3d_demo2.png b/_images/quiver3d_demo2.png deleted file mode 120000 index 1e418aa0b2c..00000000000 --- a/_images/quiver3d_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver3d_demo2.png \ No newline at end of file diff --git a/_images/quiver_demo_00.png b/_images/quiver_demo_00.png deleted file mode 120000 index af63ecdbb55..00000000000 --- a/_images/quiver_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver_demo_00.png \ No newline at end of file diff --git a/_images/quiver_demo_01.png b/_images/quiver_demo_01.png deleted file mode 120000 index afe80aab21d..00000000000 --- a/_images/quiver_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver_demo_01.png \ No newline at end of file diff --git a/_images/quiver_demo_02.png b/_images/quiver_demo_02.png deleted file mode 120000 index ed4378f4e0b..00000000000 --- a/_images/quiver_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver_demo_02.png \ No newline at end of file diff --git a/_images/quiver_demo_03.png b/_images/quiver_demo_03.png deleted file mode 120000 index c76ede2b6b2..00000000000 --- a/_images/quiver_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/quiver_demo_03.png \ No newline at end of file diff --git a/_images/quiver_demo_04.png b/_images/quiver_demo_04.png deleted file mode 120000 index 5dce358365b..00000000000 --- a/_images/quiver_demo_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/quiver_demo_04.png \ No newline at end of file diff --git a/_images/quiver_demo_05.png b/_images/quiver_demo_05.png deleted file mode 120000 index 55118766759..00000000000 --- a/_images/quiver_demo_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.0/_images/quiver_demo_05.png \ No newline at end of file diff --git a/_images/quiver_simple_demo.png b/_images/quiver_simple_demo.png deleted file mode 120000 index ce1dca6bf03..00000000000 --- a/_images/quiver_simple_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver_simple_demo.png \ No newline at end of file diff --git a/_images/quiver_simple_demo1.png b/_images/quiver_simple_demo1.png deleted file mode 120000 index c7658bf4ad7..00000000000 --- a/_images/quiver_simple_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver_simple_demo1.png \ No newline at end of file diff --git a/_images/quiver_simple_demo2.png b/_images/quiver_simple_demo2.png deleted file mode 120000 index 01973fffd9a..00000000000 --- a/_images/quiver_simple_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/quiver_simple_demo2.png \ No newline at end of file diff --git a/_images/radar_chart.png b/_images/radar_chart.png deleted file mode 120000 index 88e2347abd1..00000000000 --- a/_images/radar_chart.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/radar_chart.png \ No newline at end of file diff --git a/_images/radian_demo.png b/_images/radian_demo.png deleted file mode 120000 index ef22e2d974a..00000000000 --- a/_images/radian_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/radian_demo.png \ No newline at end of file diff --git a/_images/rainbow_text.png b/_images/rainbow_text.png deleted file mode 120000 index 052d8d01e5a..00000000000 --- a/_images/rainbow_text.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/rainbow_text.png \ No newline at end of file diff --git a/_images/rasterization_demo.png b/_images/rasterization_demo.png deleted file mode 120000 index 43bac307348..00000000000 --- a/_images/rasterization_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/rasterization_demo.png \ No newline at end of file diff --git a/_images/recipes-2.png b/_images/recipes-2.png deleted file mode 120000 index 6f5127971a5..00000000000 --- a/_images/recipes-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/recipes-2.png \ No newline at end of file diff --git a/_images/recipes-3.png b/_images/recipes-3.png deleted file mode 120000 index 690701e5729..00000000000 --- a/_images/recipes-3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/recipes-3.png \ No newline at end of file diff --git a/_images/recipes-4.png b/_images/recipes-4.png deleted file mode 120000 index 8ac22ff7f43..00000000000 --- a/_images/recipes-4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/recipes-4.png \ No newline at end of file diff --git a/_images/recipes-5.png b/_images/recipes-5.png deleted file mode 120000 index fb7b3c46bba..00000000000 --- a/_images/recipes-5.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/recipes-5.png \ No newline at end of file diff --git a/_images/recipes-6.png b/_images/recipes-6.png deleted file mode 120000 index 076e1e25b54..00000000000 --- a/_images/recipes-6.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/recipes-6.png \ No newline at end of file diff --git a/_images/recipes-7.png b/_images/recipes-7.png deleted file mode 120000 index d72f72937c0..00000000000 --- a/_images/recipes-7.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/recipes-7.png \ No newline at end of file diff --git a/_images/recipes-8.png b/_images/recipes-8.png deleted file mode 120000 index b99eea6b229..00000000000 --- a/_images/recipes-8.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/recipes-8.png \ No newline at end of file diff --git a/_images/ridge_map_white_mountains.png b/_images/ridge_map_white_mountains.png deleted file mode 120000 index 8e7115336cd..00000000000 --- a/_images/ridge_map_white_mountains.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/ridge_map_white_mountains.png \ No newline at end of file diff --git a/_images/rotate_axes3d_demo.png b/_images/rotate_axes3d_demo.png deleted file mode 120000 index 02f4503abd0..00000000000 --- a/_images/rotate_axes3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/rotate_axes3d_demo.png \ No newline at end of file diff --git a/_images/sample_data_demo.png b/_images/sample_data_demo.png deleted file mode 120000 index ba2da55654e..00000000000 --- a/_images/sample_data_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sample_data_demo.png \ No newline at end of file diff --git a/_images/sankey_basics_00.png b/_images/sankey_basics_00.png deleted file mode 120000 index 78c78fbc7b3..00000000000 --- a/_images/sankey_basics_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sankey_basics_00.png \ No newline at end of file diff --git a/_images/sankey_basics_00_00.png b/_images/sankey_basics_00_00.png deleted file mode 120000 index 4fa8391e41d..00000000000 --- a/_images/sankey_basics_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sankey_basics_00_00.png \ No newline at end of file diff --git a/_images/sankey_basics_00_01.png b/_images/sankey_basics_00_01.png deleted file mode 120000 index 6288fa62acb..00000000000 --- a/_images/sankey_basics_00_01.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sankey_basics_00_01.png \ No newline at end of file diff --git a/_images/sankey_basics_00_02.png b/_images/sankey_basics_00_02.png deleted file mode 120000 index 436ddab40e2..00000000000 --- a/_images/sankey_basics_00_02.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sankey_basics_00_02.png \ No newline at end of file diff --git a/_images/sankey_basics_01.png b/_images/sankey_basics_01.png deleted file mode 120000 index a623baacf62..00000000000 --- a/_images/sankey_basics_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sankey_basics_01.png \ No newline at end of file diff --git a/_images/sankey_basics_02.png b/_images/sankey_basics_02.png deleted file mode 120000 index 3e613728867..00000000000 --- a/_images/sankey_basics_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sankey_basics_02.png \ No newline at end of file diff --git a/_images/sankey_demo_basics_00.png b/_images/sankey_demo_basics_00.png deleted file mode 120000 index e1d9420a8f7..00000000000 --- a/_images/sankey_demo_basics_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_basics_00.png \ No newline at end of file diff --git a/_images/sankey_demo_basics_001.png b/_images/sankey_demo_basics_001.png deleted file mode 120000 index 68772b1058d..00000000000 --- a/_images/sankey_demo_basics_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_basics_001.png \ No newline at end of file diff --git a/_images/sankey_demo_basics_01.png b/_images/sankey_demo_basics_01.png deleted file mode 120000 index e1c2c32c8a0..00000000000 --- a/_images/sankey_demo_basics_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_basics_01.png \ No newline at end of file diff --git a/_images/sankey_demo_basics_011.png b/_images/sankey_demo_basics_011.png deleted file mode 120000 index c4cff691b9f..00000000000 --- a/_images/sankey_demo_basics_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_basics_011.png \ No newline at end of file diff --git a/_images/sankey_demo_basics_02.png b/_images/sankey_demo_basics_02.png deleted file mode 120000 index 45c82a90e8a..00000000000 --- a/_images/sankey_demo_basics_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_basics_02.png \ No newline at end of file diff --git a/_images/sankey_demo_basics_021.png b/_images/sankey_demo_basics_021.png deleted file mode 120000 index 60168086525..00000000000 --- a/_images/sankey_demo_basics_021.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_basics_021.png \ No newline at end of file diff --git a/_images/sankey_demo_links.png b/_images/sankey_demo_links.png deleted file mode 120000 index 07cc18558a9..00000000000 --- a/_images/sankey_demo_links.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_links.png \ No newline at end of file diff --git a/_images/sankey_demo_old.png b/_images/sankey_demo_old.png deleted file mode 120000 index 1f3b8ee687d..00000000000 --- a/_images/sankey_demo_old.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_old.png \ No newline at end of file diff --git a/_images/sankey_demo_rankine.png b/_images/sankey_demo_rankine.png deleted file mode 120000 index c85004b1def..00000000000 --- a/_images/sankey_demo_rankine.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_rankine.png \ No newline at end of file diff --git a/_images/sankey_demo_rankine1.png b/_images/sankey_demo_rankine1.png deleted file mode 120000 index aa2349ed3d5..00000000000 --- a/_images/sankey_demo_rankine1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/sankey_demo_rankine1.png \ No newline at end of file diff --git a/_images/scales.png b/_images/scales.png deleted file mode 120000 index 7bda41beaa5..00000000000 --- a/_images/scales.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scales.png \ No newline at end of file diff --git a/_images/scatter3d_demo.png b/_images/scatter3d_demo.png deleted file mode 120000 index 5f2ac776d83..00000000000 --- a/_images/scatter3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter3d_demo.png \ No newline at end of file diff --git a/_images/scatter3d_demo1.png b/_images/scatter3d_demo1.png deleted file mode 120000 index 52f328a7403..00000000000 --- a/_images/scatter3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter3d_demo1.png \ No newline at end of file diff --git a/_images/scatter_custom_symbol.png b/_images/scatter_custom_symbol.png deleted file mode 120000 index 9f5c8fa4927..00000000000 --- a/_images/scatter_custom_symbol.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_custom_symbol.png \ No newline at end of file diff --git a/_images/scatter_demo.png b/_images/scatter_demo.png deleted file mode 120000 index b93cdf4cc0e..00000000000 --- a/_images/scatter_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_demo.png \ No newline at end of file diff --git a/_images/scatter_demo1.png b/_images/scatter_demo1.png deleted file mode 120000 index fe663ccd714..00000000000 --- a/_images/scatter_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_demo1.png \ No newline at end of file diff --git a/_images/scatter_demo2.png b/_images/scatter_demo2.png deleted file mode 120000 index ad6925975ba..00000000000 --- a/_images/scatter_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_demo2.png \ No newline at end of file diff --git a/_images/scatter_demo21.png b/_images/scatter_demo21.png deleted file mode 120000 index 72f371b787d..00000000000 --- a/_images/scatter_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_demo21.png \ No newline at end of file diff --git a/_images/scatter_demo3.png b/_images/scatter_demo3.png deleted file mode 120000 index a09e35037bb..00000000000 --- a/_images/scatter_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_demo3.png \ No newline at end of file diff --git a/_images/scatter_hist.png b/_images/scatter_hist.png deleted file mode 120000 index 0ac4aaf6154..00000000000 --- a/_images/scatter_hist.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_hist.png \ No newline at end of file diff --git a/_images/scatter_hist1.png b/_images/scatter_hist1.png deleted file mode 120000 index dd5c41813d4..00000000000 --- a/_images/scatter_hist1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_hist1.png \ No newline at end of file diff --git a/_images/scatter_hist2.png b/_images/scatter_hist2.png deleted file mode 120000 index b647e01daa1..00000000000 --- a/_images/scatter_hist2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_hist2.png \ No newline at end of file diff --git a/_images/scatter_masked.png b/_images/scatter_masked.png deleted file mode 120000 index d7621d392ab..00000000000 --- a/_images/scatter_masked.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_masked.png \ No newline at end of file diff --git a/_images/scatter_piecharts.png b/_images/scatter_piecharts.png deleted file mode 120000 index ab879425916..00000000000 --- a/_images/scatter_piecharts.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_piecharts.png \ No newline at end of file diff --git a/_images/scatter_profile.png b/_images/scatter_profile.png deleted file mode 120000 index b62f60c89b2..00000000000 --- a/_images/scatter_profile.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_profile.png \ No newline at end of file diff --git a/_images/scatter_star_poly.png b/_images/scatter_star_poly.png deleted file mode 120000 index a8d87300cc7..00000000000 --- a/_images/scatter_star_poly.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_star_poly.png \ No newline at end of file diff --git a/_images/scatter_symbol.png b/_images/scatter_symbol.png deleted file mode 120000 index 728d8cf7509..00000000000 --- a/_images/scatter_symbol.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_symbol.png \ No newline at end of file diff --git a/_images/scatter_with_legend.png b/_images/scatter_with_legend.png deleted file mode 120000 index 522282c8fd9..00000000000 --- a/_images/scatter_with_legend.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/scatter_with_legend.png \ No newline at end of file diff --git a/_images/seaborn.png b/_images/seaborn.png deleted file mode 120000 index 30ac3ebd6e6..00000000000 --- a/_images/seaborn.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/seaborn.png \ No newline at end of file diff --git a/_images/set_and_get.png b/_images/set_and_get.png deleted file mode 120000 index 68c17905959..00000000000 --- a/_images/set_and_get.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/set_and_get.png \ No newline at end of file diff --git a/_images/shading_example_01_00.png b/_images/shading_example_01_00.png deleted file mode 120000 index 9994e6c5875..00000000000 --- a/_images/shading_example_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/shading_example_01_00.png \ No newline at end of file diff --git a/_images/shading_example_01_01.png b/_images/shading_example_01_01.png deleted file mode 120000 index a29ed067011..00000000000 --- a/_images/shading_example_01_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/shading_example_01_01.png \ No newline at end of file diff --git a/_images/shared_axis_across_figures_00.png b/_images/shared_axis_across_figures_00.png deleted file mode 120000 index e32a66e4059..00000000000 --- a/_images/shared_axis_across_figures_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/shared_axis_across_figures_00.png \ No newline at end of file diff --git a/_images/shared_axis_across_figures_01.png b/_images/shared_axis_across_figures_01.png deleted file mode 120000 index 0b87f1b8e8a..00000000000 --- a/_images/shared_axis_across_figures_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/shared_axis_across_figures_01.png \ No newline at end of file diff --git a/_images/shared_axis_demo.png b/_images/shared_axis_demo.png deleted file mode 120000 index f88cbdaf22a..00000000000 --- a/_images/shared_axis_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/shared_axis_demo.png \ No newline at end of file diff --git a/_images/simple_anchored_artists.png b/_images/simple_anchored_artists.png deleted file mode 120000 index 819ae3d3505..00000000000 --- a/_images/simple_anchored_artists.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_anchored_artists.png \ No newline at end of file diff --git a/_images/simple_anchored_artists1.png b/_images/simple_anchored_artists1.png deleted file mode 120000 index 722c243f51f..00000000000 --- a/_images/simple_anchored_artists1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_anchored_artists1.png \ No newline at end of file diff --git a/_images/simple_axes_divider2.png b/_images/simple_axes_divider2.png deleted file mode 120000 index 2de9e4b434d..00000000000 --- a/_images/simple_axes_divider2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axes_divider2.png \ No newline at end of file diff --git a/_images/simple_axes_divider3.png b/_images/simple_axes_divider3.png deleted file mode 120000 index 8c7c12e5165..00000000000 --- a/_images/simple_axes_divider3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axes_divider3.png \ No newline at end of file diff --git a/_images/simple_axesgrid.png b/_images/simple_axesgrid.png deleted file mode 120000 index 81ea101e774..00000000000 --- a/_images/simple_axesgrid.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axesgrid.png \ No newline at end of file diff --git a/_images/simple_axesgrid1.png b/_images/simple_axesgrid1.png deleted file mode 120000 index eeff2081266..00000000000 --- a/_images/simple_axesgrid1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axesgrid1.png \ No newline at end of file diff --git a/_images/simple_axesgrid2.png b/_images/simple_axesgrid2.png deleted file mode 120000 index 192dbd89278..00000000000 --- a/_images/simple_axesgrid2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axesgrid2.png \ No newline at end of file diff --git a/_images/simple_axesgrid21.png b/_images/simple_axesgrid21.png deleted file mode 120000 index 56004cf715f..00000000000 --- a/_images/simple_axesgrid21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axesgrid21.png \ No newline at end of file diff --git a/_images/simple_axis_direction01.png b/_images/simple_axis_direction01.png deleted file mode 120000 index 08bbb053325..00000000000 --- a/_images/simple_axis_direction01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axis_direction01.png \ No newline at end of file diff --git a/_images/simple_axis_direction03.png b/_images/simple_axis_direction03.png deleted file mode 120000 index c91527fea54..00000000000 --- a/_images/simple_axis_direction03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axis_direction03.png \ No newline at end of file diff --git a/_images/simple_axis_pad.png b/_images/simple_axis_pad.png deleted file mode 120000 index 598fd5a3e8c..00000000000 --- a/_images/simple_axis_pad.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axis_pad.png \ No newline at end of file diff --git a/_images/simple_axisartist1.png b/_images/simple_axisartist1.png deleted file mode 120000 index f8a912378e6..00000000000 --- a/_images/simple_axisartist1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axisartist1.png \ No newline at end of file diff --git a/_images/simple_axisline3.png b/_images/simple_axisline3.png deleted file mode 120000 index 1674d9a1a34..00000000000 --- a/_images/simple_axisline3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axisline3.png \ No newline at end of file diff --git a/_images/simple_axisline4.png b/_images/simple_axisline4.png deleted file mode 120000 index 2c2f0842ecf..00000000000 --- a/_images/simple_axisline4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axisline4.png \ No newline at end of file diff --git a/_images/simple_axisline41.png b/_images/simple_axisline41.png deleted file mode 120000 index bd89e82aa73..00000000000 --- a/_images/simple_axisline41.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_axisline41.png \ No newline at end of file diff --git a/_images/simple_colorbar.png b/_images/simple_colorbar.png deleted file mode 120000 index 1c2b24719eb..00000000000 --- a/_images/simple_colorbar.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_colorbar.png \ No newline at end of file diff --git a/_images/simple_legend01.png b/_images/simple_legend01.png deleted file mode 120000 index 0eeab1460a2..00000000000 --- a/_images/simple_legend01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_legend01.png \ No newline at end of file diff --git a/_images/simple_legend02.png b/_images/simple_legend02.png deleted file mode 120000 index 7b111dbb852..00000000000 --- a/_images/simple_legend02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_legend02.png \ No newline at end of file diff --git a/_images/simple_plot.png b/_images/simple_plot.png deleted file mode 120000 index 4d893c89067..00000000000 --- a/_images/simple_plot.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_plot.png \ No newline at end of file diff --git a/_images/simple_plot1.png b/_images/simple_plot1.png deleted file mode 120000 index b583df56f4f..00000000000 --- a/_images/simple_plot1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_plot1.png \ No newline at end of file diff --git a/_images/simple_rgb.png b/_images/simple_rgb.png deleted file mode 120000 index 5d20e447f54..00000000000 --- a/_images/simple_rgb.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/simple_rgb.png \ No newline at end of file diff --git a/_images/skewt.png b/_images/skewt.png deleted file mode 120000 index a1bea94039e..00000000000 --- a/_images/skewt.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/skewt.png \ No newline at end of file diff --git a/_images/skewt1.png b/_images/skewt1.png deleted file mode 120000 index fb0d788d135..00000000000 --- a/_images/skewt1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/skewt1.png \ No newline at end of file diff --git a/_images/slider_demo.png b/_images/slider_demo.png deleted file mode 120000 index 632744e491c..00000000000 --- a/_images/slider_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/slider_demo.png \ No newline at end of file diff --git a/_images/span_regions.png b/_images/span_regions.png deleted file mode 120000 index 97167a5bccb..00000000000 --- a/_images/span_regions.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/span_regions.png \ No newline at end of file diff --git a/_images/specgram_demo.png b/_images/specgram_demo.png deleted file mode 120000 index 287e4eeac60..00000000000 --- a/_images/specgram_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/specgram_demo.png \ No newline at end of file diff --git a/_images/specgram_demo1.png b/_images/specgram_demo1.png deleted file mode 120000 index 42e5dae5dc8..00000000000 --- a/_images/specgram_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/specgram_demo1.png \ No newline at end of file diff --git a/_images/specgram_demo2.png b/_images/specgram_demo2.png deleted file mode 120000 index 024425641a1..00000000000 --- a/_images/specgram_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/specgram_demo2.png \ No newline at end of file diff --git a/_images/spectrum_demo.png b/_images/spectrum_demo.png deleted file mode 120000 index d5a4785d3ba..00000000000 --- a/_images/spectrum_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spectrum_demo.png \ No newline at end of file diff --git a/_images/spectrum_demo1.png b/_images/spectrum_demo1.png deleted file mode 120000 index 2884a850d05..00000000000 --- a/_images/spectrum_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spectrum_demo1.png \ No newline at end of file diff --git a/_images/spectrum_demo2.png b/_images/spectrum_demo2.png deleted file mode 120000 index 6cb3927d6be..00000000000 --- a/_images/spectrum_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spectrum_demo2.png \ No newline at end of file diff --git a/_images/sphx_glr_2dcollections3d_001.png b/_images/sphx_glr_2dcollections3d_001.png deleted file mode 120000 index a96efd1ef01..00000000000 --- a/_images/sphx_glr_2dcollections3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_2dcollections3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_2dcollections3d_0011.png b/_images/sphx_glr_2dcollections3d_0011.png deleted file mode 120000 index b89a3476d97..00000000000 --- a/_images/sphx_glr_2dcollections3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_2dcollections3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_2dcollections3d_001_2_0x.png b/_images/sphx_glr_2dcollections3d_001_2_0x.png deleted file mode 120000 index 8cea970d185..00000000000 --- a/_images/sphx_glr_2dcollections3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_2dcollections3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_2dcollections3d_thumb.png b/_images/sphx_glr_2dcollections3d_thumb.png deleted file mode 120000 index 22c6bb2ed04..00000000000 --- a/_images/sphx_glr_2dcollections3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_2dcollections3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_3D_001.png b/_images/sphx_glr_3D_001.png deleted file mode 120000 index f8367ceda8d..00000000000 --- a/_images/sphx_glr_3D_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_3D_001.png \ No newline at end of file diff --git a/_images/sphx_glr_3D_001_2_0x.png b/_images/sphx_glr_3D_001_2_0x.png deleted file mode 120000 index c481f557af9..00000000000 --- a/_images/sphx_glr_3D_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_3D_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_3D_thumb.png b/_images/sphx_glr_3D_thumb.png deleted file mode 120000 index ff0f7934f62..00000000000 --- a/_images/sphx_glr_3D_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_3D_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_3d_bars_001.png b/_images/sphx_glr_3d_bars_001.png deleted file mode 120000 index 82c48b090fc..00000000000 --- a/_images/sphx_glr_3d_bars_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_3d_bars_001.png \ No newline at end of file diff --git a/_images/sphx_glr_3d_bars_001_2_0x.png b/_images/sphx_glr_3d_bars_001_2_0x.png deleted file mode 120000 index 9e2ba8bce0a..00000000000 --- a/_images/sphx_glr_3d_bars_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_3d_bars_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_3d_bars_thumb.png b/_images/sphx_glr_3d_bars_thumb.png deleted file mode 120000 index ae6ab0ccd94..00000000000 --- a/_images/sphx_glr_3d_bars_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_3d_bars_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_accented_text_001.png b/_images/sphx_glr_accented_text_001.png deleted file mode 120000 index d2675e950ed..00000000000 --- a/_images/sphx_glr_accented_text_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_accented_text_001.png \ No newline at end of file diff --git a/_images/sphx_glr_accented_text_001_2_0x.png b/_images/sphx_glr_accented_text_001_2_0x.png deleted file mode 120000 index 4d82b5cebc9..00000000000 --- a/_images/sphx_glr_accented_text_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_accented_text_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_accented_text_002.png b/_images/sphx_glr_accented_text_002.png deleted file mode 120000 index 2606f0bb201..00000000000 --- a/_images/sphx_glr_accented_text_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_accented_text_002.png \ No newline at end of file diff --git a/_images/sphx_glr_accented_text_002_2_0x.png b/_images/sphx_glr_accented_text_002_2_0x.png deleted file mode 120000 index 2a349302086..00000000000 --- a/_images/sphx_glr_accented_text_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_accented_text_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_accented_text_thumb.png b/_images/sphx_glr_accented_text_thumb.png deleted file mode 120000 index 065d9e944e8..00000000000 --- a/_images/sphx_glr_accented_text_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_accented_text_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_advanced_hillshading_001.png b/_images/sphx_glr_advanced_hillshading_001.png deleted file mode 120000 index d77ca375e74..00000000000 --- a/_images/sphx_glr_advanced_hillshading_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_advanced_hillshading_001.png \ No newline at end of file diff --git a/_images/sphx_glr_advanced_hillshading_001_2_0x.png b/_images/sphx_glr_advanced_hillshading_001_2_0x.png deleted file mode 120000 index c4816cd22d6..00000000000 --- a/_images/sphx_glr_advanced_hillshading_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_advanced_hillshading_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_advanced_hillshading_002.png b/_images/sphx_glr_advanced_hillshading_002.png deleted file mode 120000 index 78a6949be19..00000000000 --- a/_images/sphx_glr_advanced_hillshading_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_advanced_hillshading_002.png \ No newline at end of file diff --git a/_images/sphx_glr_advanced_hillshading_002_2_0x.png b/_images/sphx_glr_advanced_hillshading_002_2_0x.png deleted file mode 120000 index f756930c512..00000000000 --- a/_images/sphx_glr_advanced_hillshading_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_advanced_hillshading_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_advanced_hillshading_003.png b/_images/sphx_glr_advanced_hillshading_003.png deleted file mode 120000 index 1dfcc1ed8f9..00000000000 --- a/_images/sphx_glr_advanced_hillshading_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_advanced_hillshading_003.png \ No newline at end of file diff --git a/_images/sphx_glr_advanced_hillshading_003_2_0x.png b/_images/sphx_glr_advanced_hillshading_003_2_0x.png deleted file mode 120000 index 882b8cd25b7..00000000000 --- a/_images/sphx_glr_advanced_hillshading_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_advanced_hillshading_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_advanced_hillshading_thumb.png b/_images/sphx_glr_advanced_hillshading_thumb.png deleted file mode 120000 index 23f565ba958..00000000000 --- a/_images/sphx_glr_advanced_hillshading_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_advanced_hillshading_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_affine_image_001.png b/_images/sphx_glr_affine_image_001.png deleted file mode 120000 index 40797295f34..00000000000 --- a/_images/sphx_glr_affine_image_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_affine_image_001.png \ No newline at end of file diff --git a/_images/sphx_glr_affine_image_001_2_0x.png b/_images/sphx_glr_affine_image_001_2_0x.png deleted file mode 120000 index 1dce5cd67b4..00000000000 --- a/_images/sphx_glr_affine_image_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_affine_image_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_affine_image_thumb.png b/_images/sphx_glr_affine_image_thumb.png deleted file mode 120000 index dfedd752568..00000000000 --- a/_images/sphx_glr_affine_image_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_affine_image_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_agg_buffer_001.png b/_images/sphx_glr_agg_buffer_001.png deleted file mode 120000 index dfe3126463e..00000000000 --- a/_images/sphx_glr_agg_buffer_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_agg_buffer_001.png \ No newline at end of file diff --git a/_images/sphx_glr_agg_buffer_thumb.png b/_images/sphx_glr_agg_buffer_thumb.png deleted file mode 120000 index 17db7e19a73..00000000000 --- a/_images/sphx_glr_agg_buffer_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_agg_buffer_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_agg_buffer_to_array_001.png b/_images/sphx_glr_agg_buffer_to_array_001.png deleted file mode 120000 index 80bc66fac4a..00000000000 --- a/_images/sphx_glr_agg_buffer_to_array_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_agg_buffer_to_array_001.png \ No newline at end of file diff --git a/_images/sphx_glr_agg_buffer_to_array_002.png b/_images/sphx_glr_agg_buffer_to_array_002.png deleted file mode 120000 index 70de7dbd92f..00000000000 --- a/_images/sphx_glr_agg_buffer_to_array_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_agg_buffer_to_array_002.png \ No newline at end of file diff --git a/_images/sphx_glr_agg_buffer_to_array_thumb.png b/_images/sphx_glr_agg_buffer_to_array_thumb.png deleted file mode 120000 index c8ac2b7bde5..00000000000 --- a/_images/sphx_glr_agg_buffer_to_array_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_agg_buffer_to_array_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_agg_oo_sgskip_thumb.png b/_images/sphx_glr_agg_oo_sgskip_thumb.png deleted file mode 120000 index e256d08c6ae..00000000000 --- a/_images/sphx_glr_agg_oo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_agg_oo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_align_labels_demo_001.png b/_images/sphx_glr_align_labels_demo_001.png deleted file mode 120000 index 8a7d6673ffa..00000000000 --- a/_images/sphx_glr_align_labels_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_labels_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_align_labels_demo_001_2_0x.png b/_images/sphx_glr_align_labels_demo_001_2_0x.png deleted file mode 120000 index e66056576e9..00000000000 --- a/_images/sphx_glr_align_labels_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_labels_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_align_labels_demo_thumb.png b/_images/sphx_glr_align_labels_demo_thumb.png deleted file mode 120000 index 2dd1b5abe9e..00000000000 --- a/_images/sphx_glr_align_labels_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_labels_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_align_ylabels_001.png b/_images/sphx_glr_align_ylabels_001.png deleted file mode 120000 index beaad6c82a0..00000000000 --- a/_images/sphx_glr_align_ylabels_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_ylabels_001.png \ No newline at end of file diff --git a/_images/sphx_glr_align_ylabels_0011.png b/_images/sphx_glr_align_ylabels_0011.png deleted file mode 120000 index 70fe495742d..00000000000 --- a/_images/sphx_glr_align_ylabels_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_align_ylabels_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_align_ylabels_001_2_0x.png b/_images/sphx_glr_align_ylabels_001_2_0x.png deleted file mode 120000 index 3b6ea89520b..00000000000 --- a/_images/sphx_glr_align_ylabels_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_ylabels_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_align_ylabels_002.png b/_images/sphx_glr_align_ylabels_002.png deleted file mode 120000 index 81ddddac4fb..00000000000 --- a/_images/sphx_glr_align_ylabels_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_ylabels_002.png \ No newline at end of file diff --git a/_images/sphx_glr_align_ylabels_002_2_0x.png b/_images/sphx_glr_align_ylabels_002_2_0x.png deleted file mode 120000 index 0cb70a0334d..00000000000 --- a/_images/sphx_glr_align_ylabels_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_ylabels_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_align_ylabels_thumb.png b/_images/sphx_glr_align_ylabels_thumb.png deleted file mode 120000 index 11c96925f3a..00000000000 --- a/_images/sphx_glr_align_ylabels_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_align_ylabels_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_anatomy_001.png b/_images/sphx_glr_anatomy_001.png deleted file mode 120000 index 805fb0e1165..00000000000 --- a/_images/sphx_glr_anatomy_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anatomy_001.png \ No newline at end of file diff --git a/_images/sphx_glr_anatomy_001_2_0x.png b/_images/sphx_glr_anatomy_001_2_0x.png deleted file mode 120000 index 0f9750ab02f..00000000000 --- a/_images/sphx_glr_anatomy_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anatomy_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_anatomy_thumb.png b/_images/sphx_glr_anatomy_thumb.png deleted file mode 120000 index f95ad854f1d..00000000000 --- a/_images/sphx_glr_anatomy_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anatomy_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_artists_001.png b/_images/sphx_glr_anchored_artists_001.png deleted file mode 120000 index c4cba444833..00000000000 --- a/_images/sphx_glr_anchored_artists_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anchored_artists_001.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_artists_001_2_0x.png b/_images/sphx_glr_anchored_artists_001_2_0x.png deleted file mode 120000 index c70288e919a..00000000000 --- a/_images/sphx_glr_anchored_artists_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anchored_artists_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_artists_thumb.png b/_images/sphx_glr_anchored_artists_thumb.png deleted file mode 120000 index 4b05bb5d1e2..00000000000 --- a/_images/sphx_glr_anchored_artists_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anchored_artists_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box01_001.png b/_images/sphx_glr_anchored_box01_001.png deleted file mode 120000 index 1e55aee8396..00000000000 --- a/_images/sphx_glr_anchored_box01_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box01_0011.png b/_images/sphx_glr_anchored_box01_0011.png deleted file mode 120000 index 08c9348975c..00000000000 --- a/_images/sphx_glr_anchored_box01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box01_thumb.png b/_images/sphx_glr_anchored_box01_thumb.png deleted file mode 120000 index 07e66d3519f..00000000000 --- a/_images/sphx_glr_anchored_box01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box02_001.png b/_images/sphx_glr_anchored_box02_001.png deleted file mode 120000 index ac8e359e431..00000000000 --- a/_images/sphx_glr_anchored_box02_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box02_001.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box02_0011.png b/_images/sphx_glr_anchored_box02_0011.png deleted file mode 120000 index 543669a1f12..00000000000 --- a/_images/sphx_glr_anchored_box02_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box02_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box02_thumb.png b/_images/sphx_glr_anchored_box02_thumb.png deleted file mode 120000 index bb54a0f80e8..00000000000 --- a/_images/sphx_glr_anchored_box02_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box02_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box03_001.png b/_images/sphx_glr_anchored_box03_001.png deleted file mode 120000 index 6b6ab0567d5..00000000000 --- a/_images/sphx_glr_anchored_box03_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box03_001.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box03_0011.png b/_images/sphx_glr_anchored_box03_0011.png deleted file mode 120000 index 3b49e18656f..00000000000 --- a/_images/sphx_glr_anchored_box03_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box03_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box03_thumb.png b/_images/sphx_glr_anchored_box03_thumb.png deleted file mode 120000 index c0d644b3e1d..00000000000 --- a/_images/sphx_glr_anchored_box03_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box03_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box04_001.png b/_images/sphx_glr_anchored_box04_001.png deleted file mode 120000 index 27ae8bb5089..00000000000 --- a/_images/sphx_glr_anchored_box04_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anchored_box04_001.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box04_0011.png b/_images/sphx_glr_anchored_box04_0011.png deleted file mode 120000 index 34b25594168..00000000000 --- a/_images/sphx_glr_anchored_box04_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_anchored_box04_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box04_001_2_0x.png b/_images/sphx_glr_anchored_box04_001_2_0x.png deleted file mode 120000 index 1ba4f43779f..00000000000 --- a/_images/sphx_glr_anchored_box04_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anchored_box04_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_anchored_box04_thumb.png b/_images/sphx_glr_anchored_box04_thumb.png deleted file mode 120000 index 31265185efa..00000000000 --- a/_images/sphx_glr_anchored_box04_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anchored_box04_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_angle_annotation_001.png b/_images/sphx_glr_angle_annotation_001.png deleted file mode 120000 index c78c1b29096..00000000000 --- a/_images/sphx_glr_angle_annotation_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_angle_annotation_001.png \ No newline at end of file diff --git a/_images/sphx_glr_angle_annotation_001_2_0x.png b/_images/sphx_glr_angle_annotation_001_2_0x.png deleted file mode 120000 index e74ca239477..00000000000 --- a/_images/sphx_glr_angle_annotation_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_angle_annotation_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_angle_annotation_002.png b/_images/sphx_glr_angle_annotation_002.png deleted file mode 120000 index 6721f77142e..00000000000 --- a/_images/sphx_glr_angle_annotation_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_angle_annotation_002.png \ No newline at end of file diff --git a/_images/sphx_glr_angle_annotation_002_2_0x.png b/_images/sphx_glr_angle_annotation_002_2_0x.png deleted file mode 120000 index 4fcff7350d5..00000000000 --- a/_images/sphx_glr_angle_annotation_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_angle_annotation_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_angle_annotation_thumb.png b/_images/sphx_glr_angle_annotation_thumb.png deleted file mode 120000 index f05ea922ee2..00000000000 --- a/_images/sphx_glr_angle_annotation_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_angle_annotation_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_animate_decay_001.png b/_images/sphx_glr_animate_decay_001.png deleted file mode 120000 index b4b3cc3f491..00000000000 --- a/_images/sphx_glr_animate_decay_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_animate_decay_001.png \ No newline at end of file diff --git a/_images/sphx_glr_animate_decay_thumb.gif b/_images/sphx_glr_animate_decay_thumb.gif deleted file mode 120000 index a657791fa68..00000000000 --- a/_images/sphx_glr_animate_decay_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_animate_decay_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_animate_decay_thumb.png b/_images/sphx_glr_animate_decay_thumb.png deleted file mode 120000 index 993d954ada3..00000000000 --- a/_images/sphx_glr_animate_decay_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_animate_decay_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_animated_histogram_001.png b/_images/sphx_glr_animated_histogram_001.png deleted file mode 120000 index 1175075417e..00000000000 --- a/_images/sphx_glr_animated_histogram_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_animated_histogram_001.png \ No newline at end of file diff --git a/_images/sphx_glr_animated_histogram_thumb.gif b/_images/sphx_glr_animated_histogram_thumb.gif deleted file mode 120000 index cc3f2480c79..00000000000 --- a/_images/sphx_glr_animated_histogram_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_animated_histogram_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_animated_histogram_thumb.png b/_images/sphx_glr_animated_histogram_thumb.png deleted file mode 120000 index cf67e572520..00000000000 --- a/_images/sphx_glr_animated_histogram_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_animated_histogram_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_animation_demo_001.png b/_images/sphx_glr_animation_demo_001.png deleted file mode 120000 index 7005520617a..00000000000 --- a/_images/sphx_glr_animation_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_animation_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_animation_demo_001_2_0x.png b/_images/sphx_glr_animation_demo_001_2_0x.png deleted file mode 120000 index 1b70b03854a..00000000000 --- a/_images/sphx_glr_animation_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_animation_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_animation_demo_thumb.png b/_images/sphx_glr_animation_demo_thumb.png deleted file mode 120000 index 36b7e18d884..00000000000 --- a/_images/sphx_glr_animation_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_animation_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_explain_001.png b/_images/sphx_glr_annotate_explain_001.png deleted file mode 120000 index 58f75ad478a..00000000000 --- a/_images/sphx_glr_annotate_explain_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_explain_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_explain_0011.png b/_images/sphx_glr_annotate_explain_0011.png deleted file mode 120000 index 886dc4fdabe..00000000000 --- a/_images/sphx_glr_annotate_explain_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_explain_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_explain_001_2_0x.png b/_images/sphx_glr_annotate_explain_001_2_0x.png deleted file mode 120000 index 51f084ed7f0..00000000000 --- a/_images/sphx_glr_annotate_explain_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_explain_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_explain_thumb.png b/_images/sphx_glr_annotate_explain_thumb.png deleted file mode 120000 index d216ab5ebd3..00000000000 --- a/_images/sphx_glr_annotate_explain_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_explain_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple01_001.png b/_images/sphx_glr_annotate_simple01_001.png deleted file mode 120000 index fd116ac6ae8..00000000000 --- a/_images/sphx_glr_annotate_simple01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple01_0011.png b/_images/sphx_glr_annotate_simple01_0011.png deleted file mode 120000 index 163d8d0312f..00000000000 --- a/_images/sphx_glr_annotate_simple01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_simple01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple01_001_2_0x.png b/_images/sphx_glr_annotate_simple01_001_2_0x.png deleted file mode 120000 index 2b73718058e..00000000000 --- a/_images/sphx_glr_annotate_simple01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple01_thumb.png b/_images/sphx_glr_annotate_simple01_thumb.png deleted file mode 120000 index a31a2f251c4..00000000000 --- a/_images/sphx_glr_annotate_simple01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple02_001.png b/_images/sphx_glr_annotate_simple02_001.png deleted file mode 120000 index 088935311d1..00000000000 --- a/_images/sphx_glr_annotate_simple02_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple02_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple02_0011.png b/_images/sphx_glr_annotate_simple02_0011.png deleted file mode 120000 index 2c41ffe8ed7..00000000000 --- a/_images/sphx_glr_annotate_simple02_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_simple02_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple02_001_2_0x.png b/_images/sphx_glr_annotate_simple02_001_2_0x.png deleted file mode 120000 index 7f6ada2bdd1..00000000000 --- a/_images/sphx_glr_annotate_simple02_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple02_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple02_thumb.png b/_images/sphx_glr_annotate_simple02_thumb.png deleted file mode 120000 index 98af156ced4..00000000000 --- a/_images/sphx_glr_annotate_simple02_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple02_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple03_001.png b/_images/sphx_glr_annotate_simple03_001.png deleted file mode 120000 index e49008fcba3..00000000000 --- a/_images/sphx_glr_annotate_simple03_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple03_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple03_0011.png b/_images/sphx_glr_annotate_simple03_0011.png deleted file mode 120000 index a277f8c115c..00000000000 --- a/_images/sphx_glr_annotate_simple03_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_simple03_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple03_001_2_0x.png b/_images/sphx_glr_annotate_simple03_001_2_0x.png deleted file mode 120000 index a852e4c7802..00000000000 --- a/_images/sphx_glr_annotate_simple03_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple03_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple03_thumb.png b/_images/sphx_glr_annotate_simple03_thumb.png deleted file mode 120000 index 861dcd8a8a1..00000000000 --- a/_images/sphx_glr_annotate_simple03_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple03_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple04_001.png b/_images/sphx_glr_annotate_simple04_001.png deleted file mode 120000 index 9272f03b926..00000000000 --- a/_images/sphx_glr_annotate_simple04_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple04_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple04_0011.png b/_images/sphx_glr_annotate_simple04_0011.png deleted file mode 120000 index 76e99143c51..00000000000 --- a/_images/sphx_glr_annotate_simple04_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_simple04_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple04_001_2_0x.png b/_images/sphx_glr_annotate_simple04_001_2_0x.png deleted file mode 120000 index 178a5859843..00000000000 --- a/_images/sphx_glr_annotate_simple04_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple04_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple04_thumb.png b/_images/sphx_glr_annotate_simple04_thumb.png deleted file mode 120000 index 1262af3ada2..00000000000 --- a/_images/sphx_glr_annotate_simple04_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple04_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord01_001.png b/_images/sphx_glr_annotate_simple_coord01_001.png deleted file mode 120000 index 7d08849e67c..00000000000 --- a/_images/sphx_glr_annotate_simple_coord01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord01_0011.png b/_images/sphx_glr_annotate_simple_coord01_0011.png deleted file mode 120000 index 19c18414a8e..00000000000 --- a/_images/sphx_glr_annotate_simple_coord01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_simple_coord01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord01_001_2_0x.png b/_images/sphx_glr_annotate_simple_coord01_001_2_0x.png deleted file mode 120000 index ce08af77239..00000000000 --- a/_images/sphx_glr_annotate_simple_coord01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord01_thumb.png b/_images/sphx_glr_annotate_simple_coord01_thumb.png deleted file mode 120000 index b3952989e32..00000000000 --- a/_images/sphx_glr_annotate_simple_coord01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord02_001.png b/_images/sphx_glr_annotate_simple_coord02_001.png deleted file mode 120000 index 8065176516c..00000000000 --- a/_images/sphx_glr_annotate_simple_coord02_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord02_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord02_0011.png b/_images/sphx_glr_annotate_simple_coord02_0011.png deleted file mode 120000 index 98ba37ce68d..00000000000 --- a/_images/sphx_glr_annotate_simple_coord02_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_simple_coord02_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord02_001_2_0x.png b/_images/sphx_glr_annotate_simple_coord02_001_2_0x.png deleted file mode 120000 index 06ebef438cd..00000000000 --- a/_images/sphx_glr_annotate_simple_coord02_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord02_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord02_thumb.png b/_images/sphx_glr_annotate_simple_coord02_thumb.png deleted file mode 120000 index cc9a18cddfc..00000000000 --- a/_images/sphx_glr_annotate_simple_coord02_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord02_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord03_001.png b/_images/sphx_glr_annotate_simple_coord03_001.png deleted file mode 120000 index 46feefb80b4..00000000000 --- a/_images/sphx_glr_annotate_simple_coord03_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord03_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord03_0011.png b/_images/sphx_glr_annotate_simple_coord03_0011.png deleted file mode 120000 index 9b7d5ea9c91..00000000000 --- a/_images/sphx_glr_annotate_simple_coord03_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_simple_coord03_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord03_001_2_0x.png b/_images/sphx_glr_annotate_simple_coord03_001_2_0x.png deleted file mode 120000 index fde1ea77258..00000000000 --- a/_images/sphx_glr_annotate_simple_coord03_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord03_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_simple_coord03_thumb.png b/_images/sphx_glr_annotate_simple_coord03_thumb.png deleted file mode 120000 index fa85ff174d5..00000000000 --- a/_images/sphx_glr_annotate_simple_coord03_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_simple_coord03_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_text_arrow_001.png b/_images/sphx_glr_annotate_text_arrow_001.png deleted file mode 120000 index 4aeff8ff77a..00000000000 --- a/_images/sphx_glr_annotate_text_arrow_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_text_arrow_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_text_arrow_0011.png b/_images/sphx_glr_annotate_text_arrow_0011.png deleted file mode 120000 index 0ccccfbf270..00000000000 --- a/_images/sphx_glr_annotate_text_arrow_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotate_text_arrow_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_text_arrow_001_2_0x.png b/_images/sphx_glr_annotate_text_arrow_001_2_0x.png deleted file mode 120000 index c7f759f408b..00000000000 --- a/_images/sphx_glr_annotate_text_arrow_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_text_arrow_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_text_arrow_thumb.png b/_images/sphx_glr_annotate_text_arrow_thumb.png deleted file mode 120000 index 058e6745dde..00000000000 --- a/_images/sphx_glr_annotate_text_arrow_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_text_arrow_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_transform_001.png b/_images/sphx_glr_annotate_transform_001.png deleted file mode 120000 index d8c499efbcd..00000000000 --- a/_images/sphx_glr_annotate_transform_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_transform_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_transform_001_2_0x.png b/_images/sphx_glr_annotate_transform_001_2_0x.png deleted file mode 120000 index bb0be04ec9a..00000000000 --- a/_images/sphx_glr_annotate_transform_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_transform_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_transform_thumb.png b/_images/sphx_glr_annotate_transform_thumb.png deleted file mode 120000 index 715f4827321..00000000000 --- a/_images/sphx_glr_annotate_transform_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_transform_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_with_units_001.png b/_images/sphx_glr_annotate_with_units_001.png deleted file mode 120000 index 672bd58f2e9..00000000000 --- a/_images/sphx_glr_annotate_with_units_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_with_units_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_with_units_001_2_0x.png b/_images/sphx_glr_annotate_with_units_001_2_0x.png deleted file mode 120000 index 94284584ccc..00000000000 --- a/_images/sphx_glr_annotate_with_units_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_with_units_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotate_with_units_thumb.png b/_images/sphx_glr_annotate_with_units_thumb.png deleted file mode 120000 index c7107771a3b..00000000000 --- a/_images/sphx_glr_annotate_with_units_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotate_with_units_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotated_cursor_001.png b/_images/sphx_glr_annotated_cursor_001.png deleted file mode 120000 index 8b598c8df48..00000000000 --- a/_images/sphx_glr_annotated_cursor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotated_cursor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotated_cursor_001_2_0x.png b/_images/sphx_glr_annotated_cursor_001_2_0x.png deleted file mode 120000 index f996e627aaf..00000000000 --- a/_images/sphx_glr_annotated_cursor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotated_cursor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotated_cursor_002.png b/_images/sphx_glr_annotated_cursor_002.png deleted file mode 120000 index 86db6b73181..00000000000 --- a/_images/sphx_glr_annotated_cursor_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotated_cursor_002.png \ No newline at end of file diff --git a/_images/sphx_glr_annotated_cursor_002_2_0x.png b/_images/sphx_glr_annotated_cursor_002_2_0x.png deleted file mode 120000 index 315aa202fc5..00000000000 --- a/_images/sphx_glr_annotated_cursor_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotated_cursor_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotated_cursor_thumb.png b/_images/sphx_glr_annotated_cursor_thumb.png deleted file mode 120000 index 5b6debf8bdb..00000000000 --- a/_images/sphx_glr_annotated_cursor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotated_cursor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_basic_001.png b/_images/sphx_glr_annotation_basic_001.png deleted file mode 120000 index 27538d72bc9..00000000000 --- a/_images/sphx_glr_annotation_basic_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_basic_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_basic_0011.png b/_images/sphx_glr_annotation_basic_0011.png deleted file mode 120000 index e190535d893..00000000000 --- a/_images/sphx_glr_annotation_basic_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotation_basic_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_basic_001_2_0x.png b/_images/sphx_glr_annotation_basic_001_2_0x.png deleted file mode 120000 index d8bbe6bcdee..00000000000 --- a/_images/sphx_glr_annotation_basic_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_basic_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_basic_thumb.png b/_images/sphx_glr_annotation_basic_thumb.png deleted file mode 120000 index a8647023e10..00000000000 --- a/_images/sphx_glr_annotation_basic_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_basic_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_001.png b/_images/sphx_glr_annotation_demo_001.png deleted file mode 120000 index 763e5ad7480..00000000000 --- a/_images/sphx_glr_annotation_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_001_2_0x.png b/_images/sphx_glr_annotation_demo_001_2_0x.png deleted file mode 120000 index e96fb57c799..00000000000 --- a/_images/sphx_glr_annotation_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_002.png b/_images/sphx_glr_annotation_demo_002.png deleted file mode 120000 index 9d52ba788f5..00000000000 --- a/_images/sphx_glr_annotation_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_002_2_0x.png b/_images/sphx_glr_annotation_demo_002_2_0x.png deleted file mode 120000 index 362b2ba495f..00000000000 --- a/_images/sphx_glr_annotation_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_003.png b/_images/sphx_glr_annotation_demo_003.png deleted file mode 120000 index d4ca0f9e416..00000000000 --- a/_images/sphx_glr_annotation_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_003_2_0x.png b/_images/sphx_glr_annotation_demo_003_2_0x.png deleted file mode 120000 index 233ec55530b..00000000000 --- a/_images/sphx_glr_annotation_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_004.png b/_images/sphx_glr_annotation_demo_004.png deleted file mode 120000 index e111d691842..00000000000 --- a/_images/sphx_glr_annotation_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_004_2_0x.png b/_images/sphx_glr_annotation_demo_004_2_0x.png deleted file mode 120000 index f3d1246fa34..00000000000 --- a/_images/sphx_glr_annotation_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_005.png b/_images/sphx_glr_annotation_demo_005.png deleted file mode 120000 index 588a89bd69a..00000000000 --- a/_images/sphx_glr_annotation_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_005_2_0x.png b/_images/sphx_glr_annotation_demo_005_2_0x.png deleted file mode 120000 index e5f47f82cbc..00000000000 --- a/_images/sphx_glr_annotation_demo_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_006.png b/_images/sphx_glr_annotation_demo_006.png deleted file mode 120000 index 49c768764c3..00000000000 --- a/_images/sphx_glr_annotation_demo_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_006.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_006_2_0x.png b/_images/sphx_glr_annotation_demo_006_2_0x.png deleted file mode 120000 index b2bf8e39a86..00000000000 --- a/_images/sphx_glr_annotation_demo_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_demo_thumb.png b/_images/sphx_glr_annotation_demo_thumb.png deleted file mode 120000 index 6ebcbb438b7..00000000000 --- a/_images/sphx_glr_annotation_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_polar_001.png b/_images/sphx_glr_annotation_polar_001.png deleted file mode 120000 index 426ffcb619f..00000000000 --- a/_images/sphx_glr_annotation_polar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_polar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_polar_0011.png b/_images/sphx_glr_annotation_polar_0011.png deleted file mode 120000 index aba7d92c11b..00000000000 --- a/_images/sphx_glr_annotation_polar_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_annotation_polar_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_polar_001_2_0x.png b/_images/sphx_glr_annotation_polar_001_2_0x.png deleted file mode 120000 index 6d1c9aab42d..00000000000 --- a/_images/sphx_glr_annotation_polar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_polar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotation_polar_thumb.png b/_images/sphx_glr_annotation_polar_thumb.png deleted file mode 120000 index 277449709a8..00000000000 --- a/_images/sphx_glr_annotation_polar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotation_polar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_annotations_001.png b/_images/sphx_glr_annotations_001.png deleted file mode 120000 index cca9b0a2340..00000000000 --- a/_images/sphx_glr_annotations_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotations_001.png \ No newline at end of file diff --git a/_images/sphx_glr_annotations_001_2_0x.png b/_images/sphx_glr_annotations_001_2_0x.png deleted file mode 120000 index 8391c1ca90d..00000000000 --- a/_images/sphx_glr_annotations_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotations_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotations_002.png b/_images/sphx_glr_annotations_002.png deleted file mode 120000 index 3671e35c00c..00000000000 --- a/_images/sphx_glr_annotations_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotations_002.png \ No newline at end of file diff --git a/_images/sphx_glr_annotations_002_2_0x.png b/_images/sphx_glr_annotations_002_2_0x.png deleted file mode 120000 index 7f3de40d999..00000000000 --- a/_images/sphx_glr_annotations_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotations_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotations_003.png b/_images/sphx_glr_annotations_003.png deleted file mode 120000 index 1b176fb5327..00000000000 --- a/_images/sphx_glr_annotations_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotations_003.png \ No newline at end of file diff --git a/_images/sphx_glr_annotations_003_2_0x.png b/_images/sphx_glr_annotations_003_2_0x.png deleted file mode 120000 index 572546bce0c..00000000000 --- a/_images/sphx_glr_annotations_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotations_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_annotations_thumb.png b/_images/sphx_glr_annotations_thumb.png deleted file mode 120000 index 3f86e590a8a..00000000000 --- a/_images/sphx_glr_annotations_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_annotations_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_anscombe_001.png b/_images/sphx_glr_anscombe_001.png deleted file mode 120000 index d1970051618..00000000000 --- a/_images/sphx_glr_anscombe_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anscombe_001.png \ No newline at end of file diff --git a/_images/sphx_glr_anscombe_001_2_0x.png b/_images/sphx_glr_anscombe_001_2_0x.png deleted file mode 120000 index e662c7e7f96..00000000000 --- a/_images/sphx_glr_anscombe_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anscombe_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_anscombe_thumb.png b/_images/sphx_glr_anscombe_thumb.png deleted file mode 120000 index d41e570af6a..00000000000 --- a/_images/sphx_glr_anscombe_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_anscombe_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_arctest_001.png b/_images/sphx_glr_arctest_001.png deleted file mode 120000 index 24b8d621d1e..00000000000 --- a/_images/sphx_glr_arctest_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_arctest_001.png \ No newline at end of file diff --git a/_images/sphx_glr_arctest_thumb.png b/_images/sphx_glr_arctest_thumb.png deleted file mode 120000 index 0939038b9a7..00000000000 --- a/_images/sphx_glr_arctest_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_arctest_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_demo_001.png b/_images/sphx_glr_arrow_demo_001.png deleted file mode 120000 index bcd4938d153..00000000000 --- a/_images/sphx_glr_arrow_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_demo_001_2_0x.png b/_images/sphx_glr_arrow_demo_001_2_0x.png deleted file mode 120000 index 79b88a7c651..00000000000 --- a/_images/sphx_glr_arrow_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_demo_thumb.png b/_images/sphx_glr_arrow_demo_thumb.png deleted file mode 120000 index 8386367eb1d..00000000000 --- a/_images/sphx_glr_arrow_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_guide_001.png b/_images/sphx_glr_arrow_guide_001.png deleted file mode 120000 index 731b3e4cb9f..00000000000 --- a/_images/sphx_glr_arrow_guide_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_guide_001.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_guide_001_2_0x.png b/_images/sphx_glr_arrow_guide_001_2_0x.png deleted file mode 120000 index bdbdcd8d91c..00000000000 --- a/_images/sphx_glr_arrow_guide_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_guide_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_guide_002.png b/_images/sphx_glr_arrow_guide_002.png deleted file mode 120000 index 6da68a931db..00000000000 --- a/_images/sphx_glr_arrow_guide_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_guide_002.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_guide_002_2_0x.png b/_images/sphx_glr_arrow_guide_002_2_0x.png deleted file mode 120000 index 688bbb1e75f..00000000000 --- a/_images/sphx_glr_arrow_guide_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_guide_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_guide_003.png b/_images/sphx_glr_arrow_guide_003.png deleted file mode 120000 index 144be7ff5c4..00000000000 --- a/_images/sphx_glr_arrow_guide_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_guide_003.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_guide_003_2_0x.png b/_images/sphx_glr_arrow_guide_003_2_0x.png deleted file mode 120000 index 490e1a699cc..00000000000 --- a/_images/sphx_glr_arrow_guide_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_guide_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_guide_thumb.png b/_images/sphx_glr_arrow_guide_thumb.png deleted file mode 120000 index bd9d7781065..00000000000 --- a/_images/sphx_glr_arrow_guide_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_arrow_guide_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_simple_demo_001.png b/_images/sphx_glr_arrow_simple_demo_001.png deleted file mode 120000 index 257f02b1bf4..00000000000 --- a/_images/sphx_glr_arrow_simple_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_arrow_simple_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_arrow_simple_demo_thumb.png b/_images/sphx_glr_arrow_simple_demo_thumb.png deleted file mode 120000 index 6836247b4dd..00000000000 --- a/_images/sphx_glr_arrow_simple_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_arrow_simple_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_artist_reference_001.png b/_images/sphx_glr_artist_reference_001.png deleted file mode 120000 index b4fa1ecd989..00000000000 --- a/_images/sphx_glr_artist_reference_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artist_reference_001.png \ No newline at end of file diff --git a/_images/sphx_glr_artist_reference_001_2_0x.png b/_images/sphx_glr_artist_reference_001_2_0x.png deleted file mode 120000 index e5c88bb0994..00000000000 --- a/_images/sphx_glr_artist_reference_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artist_reference_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_artist_reference_thumb.png b/_images/sphx_glr_artist_reference_thumb.png deleted file mode 120000 index ed520f96017..00000000000 --- a/_images/sphx_glr_artist_reference_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artist_reference_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_artist_tests_001.png b/_images/sphx_glr_artist_tests_001.png deleted file mode 120000 index a06713143fc..00000000000 --- a/_images/sphx_glr_artist_tests_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artist_tests_001.png \ No newline at end of file diff --git a/_images/sphx_glr_artist_tests_001_2_0x.png b/_images/sphx_glr_artist_tests_001_2_0x.png deleted file mode 120000 index 1d45cc419d7..00000000000 --- a/_images/sphx_glr_artist_tests_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artist_tests_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_artist_tests_thumb.png b/_images/sphx_glr_artist_tests_thumb.png deleted file mode 120000 index 4ca2ba605ba..00000000000 --- a/_images/sphx_glr_artist_tests_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artist_tests_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_001.png b/_images/sphx_glr_artists_001.png deleted file mode 120000 index 0282b3c78e2..00000000000 --- a/_images/sphx_glr_artists_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_001.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_001_2_0x.png b/_images/sphx_glr_artists_001_2_0x.png deleted file mode 120000 index 4fd796b6b73..00000000000 --- a/_images/sphx_glr_artists_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_002.png b/_images/sphx_glr_artists_002.png deleted file mode 120000 index 1a4d8ca5c9b..00000000000 --- a/_images/sphx_glr_artists_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_002.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_002_2_0x.png b/_images/sphx_glr_artists_002_2_0x.png deleted file mode 120000 index fb88ddbcda3..00000000000 --- a/_images/sphx_glr_artists_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_003.png b/_images/sphx_glr_artists_003.png deleted file mode 120000 index c00f9008419..00000000000 --- a/_images/sphx_glr_artists_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_003.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_003_2_0x.png b/_images/sphx_glr_artists_003_2_0x.png deleted file mode 120000 index 2198c66b1fe..00000000000 --- a/_images/sphx_glr_artists_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_004.png b/_images/sphx_glr_artists_004.png deleted file mode 120000 index d1f6b3b1f53..00000000000 --- a/_images/sphx_glr_artists_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_004.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_004_2_0x.png b/_images/sphx_glr_artists_004_2_0x.png deleted file mode 120000 index c601610c335..00000000000 --- a/_images/sphx_glr_artists_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_005.png b/_images/sphx_glr_artists_005.png deleted file mode 120000 index 413cfa453c7..00000000000 --- a/_images/sphx_glr_artists_005.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_artists_005.png \ No newline at end of file diff --git a/_images/sphx_glr_artists_thumb.png b/_images/sphx_glr_artists_thumb.png deleted file mode 120000 index 5ba01a50845..00000000000 --- a/_images/sphx_glr_artists_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_artists_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_aspect_loglog_001.png b/_images/sphx_glr_aspect_loglog_001.png deleted file mode 120000 index 15a7fad0146..00000000000 --- a/_images/sphx_glr_aspect_loglog_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_aspect_loglog_001.png \ No newline at end of file diff --git a/_images/sphx_glr_aspect_loglog_001_2_0x.png b/_images/sphx_glr_aspect_loglog_001_2_0x.png deleted file mode 120000 index 73a40e30c0e..00000000000 --- a/_images/sphx_glr_aspect_loglog_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_aspect_loglog_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_aspect_loglog_thumb.png b/_images/sphx_glr_aspect_loglog_thumb.png deleted file mode 120000 index 4e5319e2b8f..00000000000 --- a/_images/sphx_glr_aspect_loglog_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_aspect_loglog_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_subplots_adjust_001.png b/_images/sphx_glr_auto_subplots_adjust_001.png deleted file mode 120000 index 3429d23322e..00000000000 --- a/_images/sphx_glr_auto_subplots_adjust_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_subplots_adjust_001.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_subplots_adjust_0011.png b/_images/sphx_glr_auto_subplots_adjust_0011.png deleted file mode 120000 index 9f7dc1e2fb4..00000000000 --- a/_images/sphx_glr_auto_subplots_adjust_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_auto_subplots_adjust_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_subplots_adjust_001_2_0x.png b/_images/sphx_glr_auto_subplots_adjust_001_2_0x.png deleted file mode 120000 index a033829891f..00000000000 --- a/_images/sphx_glr_auto_subplots_adjust_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_subplots_adjust_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_subplots_adjust_thumb.png b/_images/sphx_glr_auto_subplots_adjust_thumb.png deleted file mode 120000 index f71e9bf75a5..00000000000 --- a/_images/sphx_glr_auto_subplots_adjust_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_subplots_adjust_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_ticks_001.png b/_images/sphx_glr_auto_ticks_001.png deleted file mode 120000 index 078189fc915..00000000000 --- a/_images/sphx_glr_auto_ticks_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_ticks_001.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_ticks_001_2_0x.png b/_images/sphx_glr_auto_ticks_001_2_0x.png deleted file mode 120000 index 255f42932a3..00000000000 --- a/_images/sphx_glr_auto_ticks_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_ticks_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_ticks_002.png b/_images/sphx_glr_auto_ticks_002.png deleted file mode 120000 index 9fd13d720e4..00000000000 --- a/_images/sphx_glr_auto_ticks_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_ticks_002.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_ticks_002_2_0x.png b/_images/sphx_glr_auto_ticks_002_2_0x.png deleted file mode 120000 index 42be35d2813..00000000000 --- a/_images/sphx_glr_auto_ticks_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_ticks_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_ticks_003.png b/_images/sphx_glr_auto_ticks_003.png deleted file mode 120000 index 1a81ca69dce..00000000000 --- a/_images/sphx_glr_auto_ticks_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_ticks_003.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_ticks_003_2_0x.png b/_images/sphx_glr_auto_ticks_003_2_0x.png deleted file mode 120000 index 291d167ef88..00000000000 --- a/_images/sphx_glr_auto_ticks_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_ticks_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_auto_ticks_thumb.png b/_images/sphx_glr_auto_ticks_thumb.png deleted file mode 120000 index 5945f29de18..00000000000 --- a/_images/sphx_glr_auto_ticks_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_auto_ticks_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_001.png b/_images/sphx_glr_autoscale_001.png deleted file mode 120000 index 0e00bb17a96..00000000000 --- a/_images/sphx_glr_autoscale_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_001.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_001_2_0x.png b/_images/sphx_glr_autoscale_001_2_0x.png deleted file mode 120000 index 72f586e0ba3..00000000000 --- a/_images/sphx_glr_autoscale_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_002.png b/_images/sphx_glr_autoscale_002.png deleted file mode 120000 index 3ece9f6654d..00000000000 --- a/_images/sphx_glr_autoscale_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_002.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_002_2_0x.png b/_images/sphx_glr_autoscale_002_2_0x.png deleted file mode 120000 index ebef59fa557..00000000000 --- a/_images/sphx_glr_autoscale_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_003.png b/_images/sphx_glr_autoscale_003.png deleted file mode 120000 index 41f785c3afd..00000000000 --- a/_images/sphx_glr_autoscale_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_003.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_003_2_0x.png b/_images/sphx_glr_autoscale_003_2_0x.png deleted file mode 120000 index 78306dffe9d..00000000000 --- a/_images/sphx_glr_autoscale_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_004.png b/_images/sphx_glr_autoscale_004.png deleted file mode 120000 index 0a2f4a64e63..00000000000 --- a/_images/sphx_glr_autoscale_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_004.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_004_2_0x.png b/_images/sphx_glr_autoscale_004_2_0x.png deleted file mode 120000 index 03e33151a1a..00000000000 --- a/_images/sphx_glr_autoscale_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_005.png b/_images/sphx_glr_autoscale_005.png deleted file mode 120000 index 82f982d765c..00000000000 --- a/_images/sphx_glr_autoscale_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_005.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_005_2_0x.png b/_images/sphx_glr_autoscale_005_2_0x.png deleted file mode 120000 index 415cd377775..00000000000 --- a/_images/sphx_glr_autoscale_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_006.png b/_images/sphx_glr_autoscale_006.png deleted file mode 120000 index 05e7a896fbb..00000000000 --- a/_images/sphx_glr_autoscale_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_006.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_006_2_0x.png b/_images/sphx_glr_autoscale_006_2_0x.png deleted file mode 120000 index f4e381a1383..00000000000 --- a/_images/sphx_glr_autoscale_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_007.png b/_images/sphx_glr_autoscale_007.png deleted file mode 120000 index 4757c040a83..00000000000 --- a/_images/sphx_glr_autoscale_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_007.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_007_2_0x.png b/_images/sphx_glr_autoscale_007_2_0x.png deleted file mode 120000 index fceda75ce9b..00000000000 --- a/_images/sphx_glr_autoscale_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_008.png b/_images/sphx_glr_autoscale_008.png deleted file mode 120000 index 7b926520cba..00000000000 --- a/_images/sphx_glr_autoscale_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_008.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_008_2_0x.png b/_images/sphx_glr_autoscale_008_2_0x.png deleted file mode 120000 index 921099b167d..00000000000 --- a/_images/sphx_glr_autoscale_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_009.png b/_images/sphx_glr_autoscale_009.png deleted file mode 120000 index 41c4b9d3834..00000000000 --- a/_images/sphx_glr_autoscale_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_009.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_009_2_0x.png b/_images/sphx_glr_autoscale_009_2_0x.png deleted file mode 120000 index 51fd0f7da66..00000000000 --- a/_images/sphx_glr_autoscale_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autoscale_thumb.png b/_images/sphx_glr_autoscale_thumb.png deleted file mode 120000 index ed0aaab4075..00000000000 --- a/_images/sphx_glr_autoscale_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autoscale_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_autowrap_001.png b/_images/sphx_glr_autowrap_001.png deleted file mode 120000 index f9b06cc1c90..00000000000 --- a/_images/sphx_glr_autowrap_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autowrap_001.png \ No newline at end of file diff --git a/_images/sphx_glr_autowrap_001_2_0x.png b/_images/sphx_glr_autowrap_001_2_0x.png deleted file mode 120000 index 80a91f55b26..00000000000 --- a/_images/sphx_glr_autowrap_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autowrap_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_autowrap_thumb.png b/_images/sphx_glr_autowrap_thumb.png deleted file mode 120000 index a54f9c149dc..00000000000 --- a/_images/sphx_glr_autowrap_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_autowrap_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_001.png b/_images/sphx_glr_axes_box_aspect_001.png deleted file mode 120000 index ba15538b09e..00000000000 --- a/_images/sphx_glr_axes_box_aspect_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_001_2_0x.png b/_images/sphx_glr_axes_box_aspect_001_2_0x.png deleted file mode 120000 index 3202d6e5a98..00000000000 --- a/_images/sphx_glr_axes_box_aspect_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_002.png b/_images/sphx_glr_axes_box_aspect_002.png deleted file mode 120000 index e3371a4170a..00000000000 --- a/_images/sphx_glr_axes_box_aspect_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_002.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_002_2_0x.png b/_images/sphx_glr_axes_box_aspect_002_2_0x.png deleted file mode 120000 index 45d18cd3b45..00000000000 --- a/_images/sphx_glr_axes_box_aspect_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_003.png b/_images/sphx_glr_axes_box_aspect_003.png deleted file mode 120000 index 304e6212e47..00000000000 --- a/_images/sphx_glr_axes_box_aspect_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_003.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_003_2_0x.png b/_images/sphx_glr_axes_box_aspect_003_2_0x.png deleted file mode 120000 index fbdafd416ca..00000000000 --- a/_images/sphx_glr_axes_box_aspect_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_004.png b/_images/sphx_glr_axes_box_aspect_004.png deleted file mode 120000 index 6dc207541fd..00000000000 --- a/_images/sphx_glr_axes_box_aspect_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_004.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_004_2_0x.png b/_images/sphx_glr_axes_box_aspect_004_2_0x.png deleted file mode 120000 index ea186037322..00000000000 --- a/_images/sphx_glr_axes_box_aspect_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_005.png b/_images/sphx_glr_axes_box_aspect_005.png deleted file mode 120000 index 22b09c490de..00000000000 --- a/_images/sphx_glr_axes_box_aspect_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_005.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_005_2_0x.png b/_images/sphx_glr_axes_box_aspect_005_2_0x.png deleted file mode 120000 index 743ce2585e5..00000000000 --- a/_images/sphx_glr_axes_box_aspect_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_006.png b/_images/sphx_glr_axes_box_aspect_006.png deleted file mode 120000 index f73d7435c65..00000000000 --- a/_images/sphx_glr_axes_box_aspect_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_006.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_006_2_0x.png b/_images/sphx_glr_axes_box_aspect_006_2_0x.png deleted file mode 120000 index 3b0a5a44975..00000000000 --- a/_images/sphx_glr_axes_box_aspect_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_007.png b/_images/sphx_glr_axes_box_aspect_007.png deleted file mode 120000 index c5643632e63..00000000000 --- a/_images/sphx_glr_axes_box_aspect_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_007.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_007_2_0x.png b/_images/sphx_glr_axes_box_aspect_007_2_0x.png deleted file mode 120000 index 781b12f01b0..00000000000 --- a/_images/sphx_glr_axes_box_aspect_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_box_aspect_thumb.png b/_images/sphx_glr_axes_box_aspect_thumb.png deleted file mode 120000 index 77f0a191162..00000000000 --- a/_images/sphx_glr_axes_box_aspect_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_box_aspect_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_demo_001.png b/_images/sphx_glr_axes_demo_001.png deleted file mode 120000 index 7e9edfd272f..00000000000 --- a/_images/sphx_glr_axes_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_demo_001_2_0x.png b/_images/sphx_glr_axes_demo_001_2_0x.png deleted file mode 120000 index f37cd94a824..00000000000 --- a/_images/sphx_glr_axes_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_demo_thumb.png b/_images/sphx_glr_axes_demo_thumb.png deleted file mode 120000 index 6c1b1a87696..00000000000 --- a/_images/sphx_glr_axes_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_grid_thumb.png b/_images/sphx_glr_axes_grid_thumb.png deleted file mode 120000 index 62e87dd395a..00000000000 --- a/_images/sphx_glr_axes_grid_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_grid_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_margins_001.png b/_images/sphx_glr_axes_margins_001.png deleted file mode 120000 index 556b63bf0d7..00000000000 --- a/_images/sphx_glr_axes_margins_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_margins_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_margins_001_2_0x.png b/_images/sphx_glr_axes_margins_001_2_0x.png deleted file mode 120000 index 4279611daf9..00000000000 --- a/_images/sphx_glr_axes_margins_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_margins_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_margins_002.png b/_images/sphx_glr_axes_margins_002.png deleted file mode 120000 index 10e69ca783c..00000000000 --- a/_images/sphx_glr_axes_margins_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_margins_002.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_margins_002_2_0x.png b/_images/sphx_glr_axes_margins_002_2_0x.png deleted file mode 120000 index 3db75276bba..00000000000 --- a/_images/sphx_glr_axes_margins_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_margins_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_margins_thumb.png b/_images/sphx_glr_axes_margins_thumb.png deleted file mode 120000 index d98e659d702..00000000000 --- a/_images/sphx_glr_axes_margins_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_margins_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_props_001.png b/_images/sphx_glr_axes_props_001.png deleted file mode 120000 index f79713ee49b..00000000000 --- a/_images/sphx_glr_axes_props_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_props_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_props_001_2_0x.png b/_images/sphx_glr_axes_props_001_2_0x.png deleted file mode 120000 index dff76ea4709..00000000000 --- a/_images/sphx_glr_axes_props_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_props_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_props_thumb.png b/_images/sphx_glr_axes_props_thumb.png deleted file mode 120000 index 40358f85a61..00000000000 --- a/_images/sphx_glr_axes_props_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_props_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_zoom_effect_001.png b/_images/sphx_glr_axes_zoom_effect_001.png deleted file mode 120000 index 37d2489c7af..00000000000 --- a/_images/sphx_glr_axes_zoom_effect_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_zoom_effect_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_zoom_effect_0011.png b/_images/sphx_glr_axes_zoom_effect_0011.png deleted file mode 120000 index 3a67d0b4dcc..00000000000 --- a/_images/sphx_glr_axes_zoom_effect_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_axes_zoom_effect_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_zoom_effect_001_2_0x.png b/_images/sphx_glr_axes_zoom_effect_001_2_0x.png deleted file mode 120000 index 6206f215845..00000000000 --- a/_images/sphx_glr_axes_zoom_effect_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_zoom_effect_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axes_zoom_effect_thumb.png b/_images/sphx_glr_axes_zoom_effect_thumb.png deleted file mode 120000 index 1404fa22104..00000000000 --- a/_images/sphx_glr_axes_zoom_effect_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axes_zoom_effect_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axhspan_demo_001.png b/_images/sphx_glr_axhspan_demo_001.png deleted file mode 120000 index 55905516cf7..00000000000 --- a/_images/sphx_glr_axhspan_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axhspan_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axhspan_demo_001_2_0x.png b/_images/sphx_glr_axhspan_demo_001_2_0x.png deleted file mode 120000 index ff44e9ea792..00000000000 --- a/_images/sphx_glr_axhspan_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axhspan_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axhspan_demo_thumb.png b/_images/sphx_glr_axhspan_demo_thumb.png deleted file mode 120000 index b16af914adf..00000000000 --- a/_images/sphx_glr_axhspan_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axhspan_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_001.png b/_images/sphx_glr_axis_direction_001.png deleted file mode 120000 index d620d075cad..00000000000 --- a/_images/sphx_glr_axis_direction_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_direction_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_0011.png b/_images/sphx_glr_axis_direction_0011.png deleted file mode 120000 index 85a57b28b3b..00000000000 --- a/_images/sphx_glr_axis_direction_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_axis_direction_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_001_2_0x.png b/_images/sphx_glr_axis_direction_001_2_0x.png deleted file mode 120000 index 40c8760bd5d..00000000000 --- a/_images/sphx_glr_axis_direction_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_direction_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step01_001.png b/_images/sphx_glr_axis_direction_demo_step01_001.png deleted file mode 120000 index 640ec16fc30..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step01_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step01_0011.png b/_images/sphx_glr_axis_direction_demo_step01_0011.png deleted file mode 120000 index 4d2ab5daf43..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step01_thumb.png b/_images/sphx_glr_axis_direction_demo_step01_thumb.png deleted file mode 120000 index e72d77c86d7..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step02_001.png b/_images/sphx_glr_axis_direction_demo_step02_001.png deleted file mode 120000 index e387474621a..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step02_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step02_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step02_0011.png b/_images/sphx_glr_axis_direction_demo_step02_0011.png deleted file mode 120000 index 346caeca1b1..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step02_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step02_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step02_thumb.png b/_images/sphx_glr_axis_direction_demo_step02_thumb.png deleted file mode 120000 index f7b314e6fc0..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step02_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step02_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step03_001.png b/_images/sphx_glr_axis_direction_demo_step03_001.png deleted file mode 120000 index ebba2bbc2dc..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step03_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step03_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step03_0011.png b/_images/sphx_glr_axis_direction_demo_step03_0011.png deleted file mode 120000 index d93cb637be6..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step03_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step03_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step03_thumb.png b/_images/sphx_glr_axis_direction_demo_step03_thumb.png deleted file mode 120000 index d4b17739860..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step03_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step03_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step04_001.png b/_images/sphx_glr_axis_direction_demo_step04_001.png deleted file mode 120000 index 6a29cbd6a89..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step04_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step04_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step04_0011.png b/_images/sphx_glr_axis_direction_demo_step04_0011.png deleted file mode 120000 index af46ece2aff..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step04_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step04_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_demo_step04_thumb.png b/_images/sphx_glr_axis_direction_demo_step04_thumb.png deleted file mode 120000 index abefa7a81a2..00000000000 --- a/_images/sphx_glr_axis_direction_demo_step04_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_axis_direction_demo_step04_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_direction_thumb.png b/_images/sphx_glr_axis_direction_thumb.png deleted file mode 120000 index 9577e1a4928..00000000000 --- a/_images/sphx_glr_axis_direction_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_direction_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_equal_demo_001.png b/_images/sphx_glr_axis_equal_demo_001.png deleted file mode 120000 index 65f8bff6c44..00000000000 --- a/_images/sphx_glr_axis_equal_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_equal_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_equal_demo_001_2_0x.png b/_images/sphx_glr_axis_equal_demo_001_2_0x.png deleted file mode 120000 index 97f43f258b5..00000000000 --- a/_images/sphx_glr_axis_equal_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_equal_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_equal_demo_thumb.png b/_images/sphx_glr_axis_equal_demo_thumb.png deleted file mode 120000 index 6880e4524f5..00000000000 --- a/_images/sphx_glr_axis_equal_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_equal_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_labels_demo_001.png b/_images/sphx_glr_axis_labels_demo_001.png deleted file mode 120000 index aed8f1d91c6..00000000000 --- a/_images/sphx_glr_axis_labels_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_labels_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_labels_demo_001_2_0x.png b/_images/sphx_glr_axis_labels_demo_001_2_0x.png deleted file mode 120000 index 4304350b1b3..00000000000 --- a/_images/sphx_glr_axis_labels_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_labels_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axis_labels_demo_thumb.png b/_images/sphx_glr_axis_labels_demo_thumb.png deleted file mode 120000 index 23580a83404..00000000000 --- a/_images/sphx_glr_axis_labels_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axis_labels_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axisartist_thumb.png b/_images/sphx_glr_axisartist_thumb.png deleted file mode 120000 index f3fb296bd3e..00000000000 --- a/_images/sphx_glr_axisartist_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axisartist_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_axline_001.png b/_images/sphx_glr_axline_001.png deleted file mode 120000 index 6918a78c903..00000000000 --- a/_images/sphx_glr_axline_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axline_001.png \ No newline at end of file diff --git a/_images/sphx_glr_axline_001_2_0x.png b/_images/sphx_glr_axline_001_2_0x.png deleted file mode 120000 index bed807f9382..00000000000 --- a/_images/sphx_glr_axline_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axline_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axline_002.png b/_images/sphx_glr_axline_002.png deleted file mode 120000 index 3d2d7531518..00000000000 --- a/_images/sphx_glr_axline_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axline_002.png \ No newline at end of file diff --git a/_images/sphx_glr_axline_002_2_0x.png b/_images/sphx_glr_axline_002_2_0x.png deleted file mode 120000 index 03d43daf371..00000000000 --- a/_images/sphx_glr_axline_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axline_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_axline_thumb.png b/_images/sphx_glr_axline_thumb.png deleted file mode 120000 index fb0a305ff59..00000000000 --- a/_images/sphx_glr_axline_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_axline_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bachelors_degrees_by_gender_001.png b/_images/sphx_glr_bachelors_degrees_by_gender_001.png deleted file mode 120000 index 1e72e9ac80c..00000000000 --- a/_images/sphx_glr_bachelors_degrees_by_gender_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_bachelors_degrees_by_gender_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bachelors_degrees_by_gender_001_2_0x.png b/_images/sphx_glr_bachelors_degrees_by_gender_001_2_0x.png deleted file mode 120000 index 650e22b2296..00000000000 --- a/_images/sphx_glr_bachelors_degrees_by_gender_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_bachelors_degrees_by_gender_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bachelors_degrees_by_gender_thumb.png b/_images/sphx_glr_bachelors_degrees_by_gender_thumb.png deleted file mode 120000 index 1d8b798ade5..00000000000 --- a/_images/sphx_glr_bachelors_degrees_by_gender_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_bachelors_degrees_by_gender_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_001.png b/_images/sphx_glr_bar_001.png deleted file mode 120000 index c4680f83f5a..00000000000 --- a/_images/sphx_glr_bar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_001_2_0x.png b/_images/sphx_glr_bar_001_2_0x.png deleted file mode 120000 index 21b0e841bef..00000000000 --- a/_images/sphx_glr_bar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_demo2_001.png b/_images/sphx_glr_bar_demo2_001.png deleted file mode 120000 index 129edcd8cde..00000000000 --- a/_images/sphx_glr_bar_demo2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_demo2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_demo2_001_2_0x.png b/_images/sphx_glr_bar_demo2_001_2_0x.png deleted file mode 120000 index 8ded6a9ce2f..00000000000 --- a/_images/sphx_glr_bar_demo2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_demo2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_demo2_thumb.png b/_images/sphx_glr_bar_demo2_thumb.png deleted file mode 120000 index 900c47b8854..00000000000 --- a/_images/sphx_glr_bar_demo2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_demo2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_label_demo_001.png b/_images/sphx_glr_bar_label_demo_001.png deleted file mode 120000 index 639cf4b5b3a..00000000000 --- a/_images/sphx_glr_bar_label_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_label_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_label_demo_001_2_0x.png b/_images/sphx_glr_bar_label_demo_001_2_0x.png deleted file mode 120000 index bff9baba3b0..00000000000 --- a/_images/sphx_glr_bar_label_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_label_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_label_demo_002.png b/_images/sphx_glr_bar_label_demo_002.png deleted file mode 120000 index 9198a87bf44..00000000000 --- a/_images/sphx_glr_bar_label_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_label_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_label_demo_002_2_0x.png b/_images/sphx_glr_bar_label_demo_002_2_0x.png deleted file mode 120000 index d7511adfc4f..00000000000 --- a/_images/sphx_glr_bar_label_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_label_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_label_demo_003.png b/_images/sphx_glr_bar_label_demo_003.png deleted file mode 120000 index 5ab0d806b0d..00000000000 --- a/_images/sphx_glr_bar_label_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_label_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_label_demo_003_2_0x.png b/_images/sphx_glr_bar_label_demo_003_2_0x.png deleted file mode 120000 index a9458011199..00000000000 --- a/_images/sphx_glr_bar_label_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_label_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_label_demo_thumb.png b/_images/sphx_glr_bar_label_demo_thumb.png deleted file mode 120000 index c71cc3ccf2a..00000000000 --- a/_images/sphx_glr_bar_label_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_label_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_of_pie_001.png b/_images/sphx_glr_bar_of_pie_001.png deleted file mode 120000 index c211f126e9c..00000000000 --- a/_images/sphx_glr_bar_of_pie_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_of_pie_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_of_pie_001_2_0x.png b/_images/sphx_glr_bar_of_pie_001_2_0x.png deleted file mode 120000 index d46a24498ff..00000000000 --- a/_images/sphx_glr_bar_of_pie_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_of_pie_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_of_pie_thumb.png b/_images/sphx_glr_bar_of_pie_thumb.png deleted file mode 120000 index 911731eea80..00000000000 --- a/_images/sphx_glr_bar_of_pie_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_of_pie_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_stacked_001.png b/_images/sphx_glr_bar_stacked_001.png deleted file mode 120000 index 9c6ec5d1979..00000000000 --- a/_images/sphx_glr_bar_stacked_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_stacked_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_stacked_001_2_0x.png b/_images/sphx_glr_bar_stacked_001_2_0x.png deleted file mode 120000 index aa030d9d8b6..00000000000 --- a/_images/sphx_glr_bar_stacked_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_stacked_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_stacked_thumb.png b/_images/sphx_glr_bar_stacked_thumb.png deleted file mode 120000 index 42a9619d0c1..00000000000 --- a/_images/sphx_glr_bar_stacked_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_stacked_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_thumb.png b/_images/sphx_glr_bar_thumb.png deleted file mode 120000 index 2d6b8a96296..00000000000 --- a/_images/sphx_glr_bar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_unit_demo_001.png b/_images/sphx_glr_bar_unit_demo_001.png deleted file mode 120000 index 6256c1fedf8..00000000000 --- a/_images/sphx_glr_bar_unit_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_unit_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_unit_demo_001_2_0x.png b/_images/sphx_glr_bar_unit_demo_001_2_0x.png deleted file mode 120000 index a8d58254338..00000000000 --- a/_images/sphx_glr_bar_unit_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_unit_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bar_unit_demo_thumb.png b/_images/sphx_glr_bar_unit_demo_thumb.png deleted file mode 120000 index 3c764bfe46d..00000000000 --- a/_images/sphx_glr_bar_unit_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bar_unit_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_barb_demo_001.png b/_images/sphx_glr_barb_demo_001.png deleted file mode 120000 index 3a199e0454d..00000000000 --- a/_images/sphx_glr_barb_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barb_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_barb_demo_001_2_0x.png b/_images/sphx_glr_barb_demo_001_2_0x.png deleted file mode 120000 index 40f77d9b5af..00000000000 --- a/_images/sphx_glr_barb_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barb_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_barb_demo_002.png b/_images/sphx_glr_barb_demo_002.png deleted file mode 120000 index fded2395437..00000000000 --- a/_images/sphx_glr_barb_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barb_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_barb_demo_002_2_0x.png b/_images/sphx_glr_barb_demo_002_2_0x.png deleted file mode 120000 index 7f09a074f50..00000000000 --- a/_images/sphx_glr_barb_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barb_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_barb_demo_thumb.png b/_images/sphx_glr_barb_demo_thumb.png deleted file mode 120000 index d7a7066950f..00000000000 --- a/_images/sphx_glr_barb_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barb_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_barbs_001.png b/_images/sphx_glr_barbs_001.png deleted file mode 120000 index 4d279d6d3bb..00000000000 --- a/_images/sphx_glr_barbs_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barbs_001.png \ No newline at end of file diff --git a/_images/sphx_glr_barbs_001_2_0x.png b/_images/sphx_glr_barbs_001_2_0x.png deleted file mode 120000 index 07bde17b4eb..00000000000 --- a/_images/sphx_glr_barbs_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barbs_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_barbs_thumb.png b/_images/sphx_glr_barbs_thumb.png deleted file mode 120000 index 09efd460eee..00000000000 --- a/_images/sphx_glr_barbs_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barbs_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_001.png b/_images/sphx_glr_barchart_001.png deleted file mode 120000 index ee603f6a84c..00000000000 --- a/_images/sphx_glr_barchart_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barchart_001.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_001_2_0x.png b/_images/sphx_glr_barchart_001_2_0x.png deleted file mode 120000 index 7a502b1a726..00000000000 --- a/_images/sphx_glr_barchart_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barchart_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_demo_001.png b/_images/sphx_glr_barchart_demo_001.png deleted file mode 120000 index 63a8ae14967..00000000000 --- a/_images/sphx_glr_barchart_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barchart_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_demo_0011.png b/_images/sphx_glr_barchart_demo_0011.png deleted file mode 120000 index e86dc332bde..00000000000 --- a/_images/sphx_glr_barchart_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_barchart_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_demo_001_2_0x.png b/_images/sphx_glr_barchart_demo_001_2_0x.png deleted file mode 120000 index 41ebf5b7d37..00000000000 --- a/_images/sphx_glr_barchart_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barchart_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_demo_002.png b/_images/sphx_glr_barchart_demo_002.png deleted file mode 120000 index 4c22d9db990..00000000000 --- a/_images/sphx_glr_barchart_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_barchart_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_demo_thumb.png b/_images/sphx_glr_barchart_demo_thumb.png deleted file mode 120000 index 52dc99bb31a..00000000000 --- a/_images/sphx_glr_barchart_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barchart_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_barchart_thumb.png b/_images/sphx_glr_barchart_thumb.png deleted file mode 120000 index c5ea90f0896..00000000000 --- a/_images/sphx_glr_barchart_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barchart_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_barcode_demo_001.png b/_images/sphx_glr_barcode_demo_001.png deleted file mode 120000 index 09429b2ac0d..00000000000 --- a/_images/sphx_glr_barcode_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barcode_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_barcode_demo_001_2_0x.png b/_images/sphx_glr_barcode_demo_001_2_0x.png deleted file mode 120000 index 985db964fea..00000000000 --- a/_images/sphx_glr_barcode_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barcode_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_barcode_demo_thumb.png b/_images/sphx_glr_barcode_demo_thumb.png deleted file mode 120000 index 8a39ee4be30..00000000000 --- a/_images/sphx_glr_barcode_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barcode_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_barh_001.png b/_images/sphx_glr_barh_001.png deleted file mode 120000 index c7d9bb3ed9b..00000000000 --- a/_images/sphx_glr_barh_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barh_001.png \ No newline at end of file diff --git a/_images/sphx_glr_barh_001_2_0x.png b/_images/sphx_glr_barh_001_2_0x.png deleted file mode 120000 index c926db9aa61..00000000000 --- a/_images/sphx_glr_barh_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barh_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_barh_thumb.png b/_images/sphx_glr_barh_thumb.png deleted file mode 120000 index b78227f2824..00000000000 --- a/_images/sphx_glr_barh_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_barh_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bars3d_001.png b/_images/sphx_glr_bars3d_001.png deleted file mode 120000 index 2b2f24aa14e..00000000000 --- a/_images/sphx_glr_bars3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bars3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bars3d_0011.png b/_images/sphx_glr_bars3d_0011.png deleted file mode 120000 index f010a82c387..00000000000 --- a/_images/sphx_glr_bars3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_bars3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_bars3d_001_2_0x.png b/_images/sphx_glr_bars3d_001_2_0x.png deleted file mode 120000 index 91e6b8e4426..00000000000 --- a/_images/sphx_glr_bars3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bars3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bars3d_thumb.png b/_images/sphx_glr_bars3d_thumb.png deleted file mode 120000 index f51744691b0..00000000000 --- a/_images/sphx_glr_bars3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bars3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_basic_example_001.png b/_images/sphx_glr_basic_example_001.png deleted file mode 120000 index 14c2fa8ee9f..00000000000 --- a/_images/sphx_glr_basic_example_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_basic_example_001.png \ No newline at end of file diff --git a/_images/sphx_glr_basic_example_002.png b/_images/sphx_glr_basic_example_002.png deleted file mode 120000 index 838edd11d33..00000000000 --- a/_images/sphx_glr_basic_example_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_basic_example_002.png \ No newline at end of file diff --git a/_images/sphx_glr_basic_example_thumb.png b/_images/sphx_glr_basic_example_thumb.png deleted file mode 120000 index 0984ae9dcf5..00000000000 --- a/_images/sphx_glr_basic_example_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_basic_example_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_basic_example_writer_sgskip_thumb.png b/_images/sphx_glr_basic_example_writer_sgskip_thumb.png deleted file mode 120000 index 0557f135c2e..00000000000 --- a/_images/sphx_glr_basic_example_writer_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_basic_example_writer_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_basic_units_thumb.png b/_images/sphx_glr_basic_units_thumb.png deleted file mode 120000 index 405dbee1e36..00000000000 --- a/_images/sphx_glr_basic_units_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_basic_units_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bayes_update_001.png b/_images/sphx_glr_bayes_update_001.png deleted file mode 120000 index 32ee1d76017..00000000000 --- a/_images/sphx_glr_bayes_update_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_bayes_update_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bayes_update_sgskip_thumb.png b/_images/sphx_glr_bayes_update_sgskip_thumb.png deleted file mode 120000 index 2032159b2df..00000000000 --- a/_images/sphx_glr_bayes_update_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_bayes_update_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bayes_update_thumb.gif b/_images/sphx_glr_bayes_update_thumb.gif deleted file mode 120000 index 8a9b8cb85a6..00000000000 --- a/_images/sphx_glr_bayes_update_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bayes_update_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_bayes_update_thumb.png b/_images/sphx_glr_bayes_update_thumb.png deleted file mode 120000 index 489cb2e456f..00000000000 --- a/_images/sphx_glr_bayes_update_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_bayes_update_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bbox_intersect_001.png b/_images/sphx_glr_bbox_intersect_001.png deleted file mode 120000 index 3c1977e1f32..00000000000 --- a/_images/sphx_glr_bbox_intersect_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bbox_intersect_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bbox_intersect_001_2_0x.png b/_images/sphx_glr_bbox_intersect_001_2_0x.png deleted file mode 120000 index caf4d15c94f..00000000000 --- a/_images/sphx_glr_bbox_intersect_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bbox_intersect_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bbox_intersect_thumb.png b/_images/sphx_glr_bbox_intersect_thumb.png deleted file mode 120000 index b246a765680..00000000000 --- a/_images/sphx_glr_bbox_intersect_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bbox_intersect_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_blitting_001.png b/_images/sphx_glr_blitting_001.png deleted file mode 120000 index 7060025748e..00000000000 --- a/_images/sphx_glr_blitting_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_blitting_001.png \ No newline at end of file diff --git a/_images/sphx_glr_blitting_001_2_0x.png b/_images/sphx_glr_blitting_001_2_0x.png deleted file mode 120000 index aaee5538ba9..00000000000 --- a/_images/sphx_glr_blitting_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_blitting_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_blitting_002.png b/_images/sphx_glr_blitting_002.png deleted file mode 120000 index 16dc0b7590d..00000000000 --- a/_images/sphx_glr_blitting_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_blitting_002.png \ No newline at end of file diff --git a/_images/sphx_glr_blitting_002_2_0x.png b/_images/sphx_glr_blitting_002_2_0x.png deleted file mode 120000 index 856544970f3..00000000000 --- a/_images/sphx_glr_blitting_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_blitting_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_blitting_thumb.png b/_images/sphx_glr_blitting_thumb.png deleted file mode 120000 index 453553c775c..00000000000 --- a/_images/sphx_glr_blitting_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_blitting_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bmh_001.png b/_images/sphx_glr_bmh_001.png deleted file mode 120000 index cd1fbf7c580..00000000000 --- a/_images/sphx_glr_bmh_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bmh_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bmh_001_2_0x.png b/_images/sphx_glr_bmh_001_2_0x.png deleted file mode 120000 index 0924f7e13eb..00000000000 --- a/_images/sphx_glr_bmh_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bmh_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bmh_thumb.png b/_images/sphx_glr_bmh_thumb.png deleted file mode 120000 index ba4de900061..00000000000 --- a/_images/sphx_glr_bmh_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bmh_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_box3d_001.png b/_images/sphx_glr_box3d_001.png deleted file mode 120000 index 3e3896ddfb8..00000000000 --- a/_images/sphx_glr_box3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_box3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_box3d_001_2_0x.png b/_images/sphx_glr_box3d_001_2_0x.png deleted file mode 120000 index 9aabba28def..00000000000 --- a/_images/sphx_glr_box3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_box3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_box3d_thumb.png b/_images/sphx_glr_box3d_thumb.png deleted file mode 120000 index 3a8fe8f26ec..00000000000 --- a/_images/sphx_glr_box3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_box3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_001.png b/_images/sphx_glr_boxplot_001.png deleted file mode 120000 index b378a2d12ba..00000000000 --- a/_images/sphx_glr_boxplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_001_2_0x.png b/_images/sphx_glr_boxplot_001_2_0x.png deleted file mode 120000 index 5249461b309..00000000000 --- a/_images/sphx_glr_boxplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_002.png b/_images/sphx_glr_boxplot_002.png deleted file mode 120000 index 53d78a4b654..00000000000 --- a/_images/sphx_glr_boxplot_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_002.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_002_2_0x.png b/_images/sphx_glr_boxplot_002_2_0x.png deleted file mode 120000 index a519248a546..00000000000 --- a/_images/sphx_glr_boxplot_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_color_001.png b/_images/sphx_glr_boxplot_color_001.png deleted file mode 120000 index cafda3bac97..00000000000 --- a/_images/sphx_glr_boxplot_color_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_color_001.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_color_001_2_0x.png b/_images/sphx_glr_boxplot_color_001_2_0x.png deleted file mode 120000 index 4eeea1ade2f..00000000000 --- a/_images/sphx_glr_boxplot_color_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_color_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_color_thumb.png b/_images/sphx_glr_boxplot_color_thumb.png deleted file mode 120000 index de452d7d246..00000000000 --- a/_images/sphx_glr_boxplot_color_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_color_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_001.png b/_images/sphx_glr_boxplot_demo_001.png deleted file mode 120000 index a95176d9cc7..00000000000 --- a/_images/sphx_glr_boxplot_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_0011.png b/_images/sphx_glr_boxplot_demo_0011.png deleted file mode 120000 index f1f06aaf78f..00000000000 --- a/_images/sphx_glr_boxplot_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_boxplot_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_001_2_0x.png b/_images/sphx_glr_boxplot_demo_001_2_0x.png deleted file mode 120000 index bf2ba3a79a4..00000000000 --- a/_images/sphx_glr_boxplot_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_002.png b/_images/sphx_glr_boxplot_demo_002.png deleted file mode 120000 index a19f80d1e17..00000000000 --- a/_images/sphx_glr_boxplot_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_0021.png b/_images/sphx_glr_boxplot_demo_0021.png deleted file mode 120000 index b2d7889a47c..00000000000 --- a/_images/sphx_glr_boxplot_demo_0021.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_boxplot_demo_0021.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_002_2_0x.png b/_images/sphx_glr_boxplot_demo_002_2_0x.png deleted file mode 120000 index 852e936065f..00000000000 --- a/_images/sphx_glr_boxplot_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_003.png b/_images/sphx_glr_boxplot_demo_003.png deleted file mode 120000 index e0db11933c0..00000000000 --- a/_images/sphx_glr_boxplot_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_0031.png b/_images/sphx_glr_boxplot_demo_0031.png deleted file mode 120000 index c7a0410163f..00000000000 --- a/_images/sphx_glr_boxplot_demo_0031.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_boxplot_demo_0031.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_0032.png b/_images/sphx_glr_boxplot_demo_0032.png deleted file mode 120000 index 2af0f762599..00000000000 --- a/_images/sphx_glr_boxplot_demo_0032.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_boxplot_demo_0032.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_003_2_0x.png b/_images/sphx_glr_boxplot_demo_003_2_0x.png deleted file mode 120000 index 9c5c323c2dd..00000000000 --- a/_images/sphx_glr_boxplot_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_004.png b/_images/sphx_glr_boxplot_demo_004.png deleted file mode 120000 index aa0e1b27ffa..00000000000 --- a/_images/sphx_glr_boxplot_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_0041.png b/_images/sphx_glr_boxplot_demo_0041.png deleted file mode 120000 index 1764e5bcd44..00000000000 --- a/_images/sphx_glr_boxplot_demo_0041.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_boxplot_demo_0041.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_004_2_0x.png b/_images/sphx_glr_boxplot_demo_004_2_0x.png deleted file mode 120000 index e2e2c57b804..00000000000 --- a/_images/sphx_glr_boxplot_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_005.png b/_images/sphx_glr_boxplot_demo_005.png deleted file mode 120000 index 61c9e00caac..00000000000 --- a/_images/sphx_glr_boxplot_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_006.png b/_images/sphx_glr_boxplot_demo_006.png deleted file mode 120000 index b98fa8d6ebc..00000000000 --- a/_images/sphx_glr_boxplot_demo_006.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_boxplot_demo_006.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_007.png b/_images/sphx_glr_boxplot_demo_007.png deleted file mode 120000 index be50686b858..00000000000 --- a/_images/sphx_glr_boxplot_demo_007.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_boxplot_demo_007.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_001.png b/_images/sphx_glr_boxplot_demo_pyplot_001.png deleted file mode 120000 index 682e8c0f00f..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_001_2_0x.png b/_images/sphx_glr_boxplot_demo_pyplot_001_2_0x.png deleted file mode 120000 index 9d6f1277389..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_002.png b/_images/sphx_glr_boxplot_demo_pyplot_002.png deleted file mode 120000 index bb268dbd64b..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_002.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_002_2_0x.png b/_images/sphx_glr_boxplot_demo_pyplot_002_2_0x.png deleted file mode 120000 index b03c1dc3074..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_003.png b/_images/sphx_glr_boxplot_demo_pyplot_003.png deleted file mode 120000 index 4184c7674a9..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_003.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_003_2_0x.png b/_images/sphx_glr_boxplot_demo_pyplot_003_2_0x.png deleted file mode 120000 index c370021bf9b..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_004.png b/_images/sphx_glr_boxplot_demo_pyplot_004.png deleted file mode 120000 index b28b45dc7c0..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_004.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_004_2_0x.png b/_images/sphx_glr_boxplot_demo_pyplot_004_2_0x.png deleted file mode 120000 index 8a45331f5cc..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_005.png b/_images/sphx_glr_boxplot_demo_pyplot_005.png deleted file mode 120000 index d37eaba3cae..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_005.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_005_2_0x.png b/_images/sphx_glr_boxplot_demo_pyplot_005_2_0x.png deleted file mode 120000 index b04c4a82800..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_006.png b/_images/sphx_glr_boxplot_demo_pyplot_006.png deleted file mode 120000 index 99e2daa5239..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_006.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_006_2_0x.png b/_images/sphx_glr_boxplot_demo_pyplot_006_2_0x.png deleted file mode 120000 index 9f67df3118e..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_007.png b/_images/sphx_glr_boxplot_demo_pyplot_007.png deleted file mode 120000 index 062314e0727..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_007.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_007_2_0x.png b/_images/sphx_glr_boxplot_demo_pyplot_007_2_0x.png deleted file mode 120000 index b1589140f98..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_pyplot_thumb.png b/_images/sphx_glr_boxplot_demo_pyplot_thumb.png deleted file mode 120000 index 39fa17926db..00000000000 --- a/_images/sphx_glr_boxplot_demo_pyplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_pyplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_thumb.png b/_images/sphx_glr_boxplot_demo_thumb.png deleted file mode 120000 index 425a490a1cb..00000000000 --- a/_images/sphx_glr_boxplot_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_demo_thumb1.png b/_images/sphx_glr_boxplot_demo_thumb1.png deleted file mode 120000 index 23e6a28d944..00000000000 --- a/_images/sphx_glr_boxplot_demo_thumb1.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_boxplot_demo_thumb1.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_plot_001.png b/_images/sphx_glr_boxplot_plot_001.png deleted file mode 120000 index 41d0268c330..00000000000 --- a/_images/sphx_glr_boxplot_plot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_plot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_plot_001_2_0x.png b/_images/sphx_glr_boxplot_plot_001_2_0x.png deleted file mode 120000 index edbf2679e43..00000000000 --- a/_images/sphx_glr_boxplot_plot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_plot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_plot_thumb.png b/_images/sphx_glr_boxplot_plot_thumb.png deleted file mode 120000 index 0eceb231373..00000000000 --- a/_images/sphx_glr_boxplot_plot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_plot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_thumb.png b/_images/sphx_glr_boxplot_thumb.png deleted file mode 120000 index 75bbbf3fcfd..00000000000 --- a/_images/sphx_glr_boxplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_vs_violin_001.png b/_images/sphx_glr_boxplot_vs_violin_001.png deleted file mode 120000 index 96c437f0a01..00000000000 --- a/_images/sphx_glr_boxplot_vs_violin_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_vs_violin_001.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_vs_violin_001_2_0x.png b/_images/sphx_glr_boxplot_vs_violin_001_2_0x.png deleted file mode 120000 index 231c1675afd..00000000000 --- a/_images/sphx_glr_boxplot_vs_violin_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_vs_violin_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_boxplot_vs_violin_thumb.png b/_images/sphx_glr_boxplot_vs_violin_thumb.png deleted file mode 120000 index dcf0de88129..00000000000 --- a/_images/sphx_glr_boxplot_vs_violin_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_boxplot_vs_violin_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_broken_axis_001.png b/_images/sphx_glr_broken_axis_001.png deleted file mode 120000 index e8222f4853e..00000000000 --- a/_images/sphx_glr_broken_axis_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_broken_axis_001.png \ No newline at end of file diff --git a/_images/sphx_glr_broken_axis_001_2_0x.png b/_images/sphx_glr_broken_axis_001_2_0x.png deleted file mode 120000 index 8f9fb787760..00000000000 --- a/_images/sphx_glr_broken_axis_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_broken_axis_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_broken_axis_thumb.png b/_images/sphx_glr_broken_axis_thumb.png deleted file mode 120000 index 752c1c50f7a..00000000000 --- a/_images/sphx_glr_broken_axis_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_broken_axis_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_broken_barh_001.png b/_images/sphx_glr_broken_barh_001.png deleted file mode 120000 index 24610b9170d..00000000000 --- a/_images/sphx_glr_broken_barh_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_broken_barh_001.png \ No newline at end of file diff --git a/_images/sphx_glr_broken_barh_001_2_0x.png b/_images/sphx_glr_broken_barh_001_2_0x.png deleted file mode 120000 index 5c1fd96cf7e..00000000000 --- a/_images/sphx_glr_broken_barh_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_broken_barh_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_broken_barh_thumb.png b/_images/sphx_glr_broken_barh_thumb.png deleted file mode 120000 index d95ac3202d2..00000000000 --- a/_images/sphx_glr_broken_barh_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_broken_barh_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_buttons_001.png b/_images/sphx_glr_buttons_001.png deleted file mode 120000 index 569a8101fb6..00000000000 --- a/_images/sphx_glr_buttons_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_buttons_001.png \ No newline at end of file diff --git a/_images/sphx_glr_buttons_001_2_0x.png b/_images/sphx_glr_buttons_001_2_0x.png deleted file mode 120000 index 6119eba49c9..00000000000 --- a/_images/sphx_glr_buttons_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_buttons_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_buttons_thumb.png b/_images/sphx_glr_buttons_thumb.png deleted file mode 120000 index 0657a71f2fb..00000000000 --- a/_images/sphx_glr_buttons_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_buttons_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_bxp_001.png b/_images/sphx_glr_bxp_001.png deleted file mode 120000 index d34a0f5e090..00000000000 --- a/_images/sphx_glr_bxp_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bxp_001.png \ No newline at end of file diff --git a/_images/sphx_glr_bxp_001_2_0x.png b/_images/sphx_glr_bxp_001_2_0x.png deleted file mode 120000 index bc6cde1cf94..00000000000 --- a/_images/sphx_glr_bxp_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bxp_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bxp_002.png b/_images/sphx_glr_bxp_002.png deleted file mode 120000 index 088b3c7c85f..00000000000 --- a/_images/sphx_glr_bxp_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bxp_002.png \ No newline at end of file diff --git a/_images/sphx_glr_bxp_002_2_0x.png b/_images/sphx_glr_bxp_002_2_0x.png deleted file mode 120000 index b7577f0b60b..00000000000 --- a/_images/sphx_glr_bxp_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bxp_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_bxp_thumb.png b/_images/sphx_glr_bxp_thumb.png deleted file mode 120000 index 8ac451f7cce..00000000000 --- a/_images/sphx_glr_bxp_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_bxp_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_canvasagg_thumb.png b/_images/sphx_glr_canvasagg_thumb.png deleted file mode 120000 index b897f02b606..00000000000 --- a/_images/sphx_glr_canvasagg_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_canvasagg_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_capstyle_001.png b/_images/sphx_glr_capstyle_001.png deleted file mode 120000 index 3b06218ec3f..00000000000 --- a/_images/sphx_glr_capstyle_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_capstyle_001.png \ No newline at end of file diff --git a/_images/sphx_glr_capstyle_001_2_0x.png b/_images/sphx_glr_capstyle_001_2_0x.png deleted file mode 120000 index 0b16bad1911..00000000000 --- a/_images/sphx_glr_capstyle_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_capstyle_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_capstyle_thumb.png b/_images/sphx_glr_capstyle_thumb.png deleted file mode 120000 index d57a20403c1..00000000000 --- a/_images/sphx_glr_capstyle_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_capstyle_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_categorical_variables_001.png b/_images/sphx_glr_categorical_variables_001.png deleted file mode 120000 index de497a0a1f9..00000000000 --- a/_images/sphx_glr_categorical_variables_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_categorical_variables_001.png \ No newline at end of file diff --git a/_images/sphx_glr_categorical_variables_001_2_0x.png b/_images/sphx_glr_categorical_variables_001_2_0x.png deleted file mode 120000 index b606a53b3f6..00000000000 --- a/_images/sphx_glr_categorical_variables_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_categorical_variables_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_categorical_variables_002.png b/_images/sphx_glr_categorical_variables_002.png deleted file mode 120000 index f985abf7529..00000000000 --- a/_images/sphx_glr_categorical_variables_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_categorical_variables_002.png \ No newline at end of file diff --git a/_images/sphx_glr_categorical_variables_002_2_0x.png b/_images/sphx_glr_categorical_variables_002_2_0x.png deleted file mode 120000 index 320b06ffbb2..00000000000 --- a/_images/sphx_glr_categorical_variables_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_categorical_variables_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_categorical_variables_thumb.png b/_images/sphx_glr_categorical_variables_thumb.png deleted file mode 120000 index 4bf322ecc32..00000000000 --- a/_images/sphx_glr_categorical_variables_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_categorical_variables_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_centered_spines_with_arrows_001.png b/_images/sphx_glr_centered_spines_with_arrows_001.png deleted file mode 120000 index eb76767bfa1..00000000000 --- a/_images/sphx_glr_centered_spines_with_arrows_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_centered_spines_with_arrows_001.png \ No newline at end of file diff --git a/_images/sphx_glr_centered_spines_with_arrows_001_2_0x.png b/_images/sphx_glr_centered_spines_with_arrows_001_2_0x.png deleted file mode 120000 index fa052a1a82b..00000000000 --- a/_images/sphx_glr_centered_spines_with_arrows_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_centered_spines_with_arrows_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_centered_spines_with_arrows_thumb.png b/_images/sphx_glr_centered_spines_with_arrows_thumb.png deleted file mode 120000 index f43f6dc644b..00000000000 --- a/_images/sphx_glr_centered_spines_with_arrows_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_centered_spines_with_arrows_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_centered_ticklabels_001.png b/_images/sphx_glr_centered_ticklabels_001.png deleted file mode 120000 index 9673ea62ffe..00000000000 --- a/_images/sphx_glr_centered_ticklabels_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_centered_ticklabels_001.png \ No newline at end of file diff --git a/_images/sphx_glr_centered_ticklabels_001_2_0x.png b/_images/sphx_glr_centered_ticklabels_001_2_0x.png deleted file mode 120000 index 6ea309146e9..00000000000 --- a/_images/sphx_glr_centered_ticklabels_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_centered_ticklabels_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_centered_ticklabels_thumb.png b/_images/sphx_glr_centered_ticklabels_thumb.png deleted file mode 120000 index 26607de9356..00000000000 --- a/_images/sphx_glr_centered_ticklabels_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_centered_ticklabels_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_check_buttons_001.png b/_images/sphx_glr_check_buttons_001.png deleted file mode 120000 index b78265e96ff..00000000000 --- a/_images/sphx_glr_check_buttons_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_check_buttons_001.png \ No newline at end of file diff --git a/_images/sphx_glr_check_buttons_001_2_0x.png b/_images/sphx_glr_check_buttons_001_2_0x.png deleted file mode 120000 index d111f1c5979..00000000000 --- a/_images/sphx_glr_check_buttons_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_check_buttons_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_check_buttons_thumb.png b/_images/sphx_glr_check_buttons_thumb.png deleted file mode 120000 index 4273ba0d6b9..00000000000 --- a/_images/sphx_glr_check_buttons_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_check_buttons_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_close_event_001.png b/_images/sphx_glr_close_event_001.png deleted file mode 120000 index fef2746a01b..00000000000 --- a/_images/sphx_glr_close_event_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_close_event_001.png \ No newline at end of file diff --git a/_images/sphx_glr_close_event_001_2_0x.png b/_images/sphx_glr_close_event_001_2_0x.png deleted file mode 120000 index b90aada3855..00000000000 --- a/_images/sphx_glr_close_event_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_close_event_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_close_event_thumb.png b/_images/sphx_glr_close_event_thumb.png deleted file mode 120000 index f58090a25b7..00000000000 --- a/_images/sphx_glr_close_event_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_close_event_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_cohere_001.png b/_images/sphx_glr_cohere_001.png deleted file mode 120000 index a735b768347..00000000000 --- a/_images/sphx_glr_cohere_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cohere_001.png \ No newline at end of file diff --git a/_images/sphx_glr_cohere_001_2_0x.png b/_images/sphx_glr_cohere_001_2_0x.png deleted file mode 120000 index d713023dab1..00000000000 --- a/_images/sphx_glr_cohere_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cohere_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_cohere_thumb.png b/_images/sphx_glr_cohere_thumb.png deleted file mode 120000 index 974434feb8d..00000000000 --- a/_images/sphx_glr_cohere_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cohere_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_collections_001.png b/_images/sphx_glr_collections_001.png deleted file mode 120000 index fc533086f04..00000000000 --- a/_images/sphx_glr_collections_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_collections_001.png \ No newline at end of file diff --git a/_images/sphx_glr_collections_001_2_0x.png b/_images/sphx_glr_collections_001_2_0x.png deleted file mode 120000 index 12ecf8d7ef5..00000000000 --- a/_images/sphx_glr_collections_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_collections_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_collections_thumb.png b/_images/sphx_glr_collections_thumb.png deleted file mode 120000 index 04205fbf65b..00000000000 --- a/_images/sphx_glr_collections_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_collections_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_color_by_yvalue_001.png b/_images/sphx_glr_color_by_yvalue_001.png deleted file mode 120000 index 599b26b43bf..00000000000 --- a/_images/sphx_glr_color_by_yvalue_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_by_yvalue_001.png \ No newline at end of file diff --git a/_images/sphx_glr_color_by_yvalue_001_2_0x.png b/_images/sphx_glr_color_by_yvalue_001_2_0x.png deleted file mode 120000 index bfd2cf533a2..00000000000 --- a/_images/sphx_glr_color_by_yvalue_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_by_yvalue_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_color_by_yvalue_thumb.png b/_images/sphx_glr_color_by_yvalue_thumb.png deleted file mode 120000 index d80f782f819..00000000000 --- a/_images/sphx_glr_color_by_yvalue_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_by_yvalue_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_001.png b/_images/sphx_glr_color_cycle_001.png deleted file mode 120000 index d7dc8f9d6ee..00000000000 --- a/_images/sphx_glr_color_cycle_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_cycle_001.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_0011.png b/_images/sphx_glr_color_cycle_0011.png deleted file mode 120000 index 8d7eefa1907..00000000000 --- a/_images/sphx_glr_color_cycle_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_color_cycle_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_0012.png b/_images/sphx_glr_color_cycle_0012.png deleted file mode 120000 index ca8e2978c4a..00000000000 --- a/_images/sphx_glr_color_cycle_0012.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_color_cycle_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_001_2_0x.png b/_images/sphx_glr_color_cycle_001_2_0x.png deleted file mode 120000 index be933e5f37e..00000000000 --- a/_images/sphx_glr_color_cycle_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_cycle_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_default_001.png b/_images/sphx_glr_color_cycle_default_001.png deleted file mode 120000 index 1d58117f526..00000000000 --- a/_images/sphx_glr_color_cycle_default_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_cycle_default_001.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_default_001_2_0x.png b/_images/sphx_glr_color_cycle_default_001_2_0x.png deleted file mode 120000 index b20ab775a7c..00000000000 --- a/_images/sphx_glr_color_cycle_default_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_cycle_default_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_default_thumb.png b/_images/sphx_glr_color_cycle_default_thumb.png deleted file mode 120000 index e027294c7ea..00000000000 --- a/_images/sphx_glr_color_cycle_default_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_cycle_default_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_thumb.png b/_images/sphx_glr_color_cycle_thumb.png deleted file mode 120000 index 4eccf55b241..00000000000 --- a/_images/sphx_glr_color_cycle_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_cycle_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycle_thumb1.png b/_images/sphx_glr_color_cycle_thumb1.png deleted file mode 120000 index 027d84535d4..00000000000 --- a/_images/sphx_glr_color_cycle_thumb1.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_color_cycle_thumb1.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycler_001.png b/_images/sphx_glr_color_cycler_001.png deleted file mode 120000 index c193cc99c28..00000000000 --- a/_images/sphx_glr_color_cycler_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_color_cycler_001.png \ No newline at end of file diff --git a/_images/sphx_glr_color_cycler_thumb.png b/_images/sphx_glr_color_cycler_thumb.png deleted file mode 120000 index dcdd044cb85..00000000000 --- a/_images/sphx_glr_color_cycler_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_color_cycler_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_color_demo_001.png b/_images/sphx_glr_color_demo_001.png deleted file mode 120000 index 739c1d023ca..00000000000 --- a/_images/sphx_glr_color_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_color_demo_001_2_0x.png b/_images/sphx_glr_color_demo_001_2_0x.png deleted file mode 120000 index 2066a5801d7..00000000000 --- a/_images/sphx_glr_color_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_color_demo_thumb.png b/_images/sphx_glr_color_demo_thumb.png deleted file mode 120000 index 1915e5602f1..00000000000 --- a/_images/sphx_glr_color_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_color_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_basics_001.png b/_images/sphx_glr_colorbar_basics_001.png deleted file mode 120000 index 03f10d15aba..00000000000 --- a/_images/sphx_glr_colorbar_basics_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_basics_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_basics_001_2_0x.png b/_images/sphx_glr_colorbar_basics_001_2_0x.png deleted file mode 120000 index d990d353d97..00000000000 --- a/_images/sphx_glr_colorbar_basics_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_basics_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_basics_thumb.png b/_images/sphx_glr_colorbar_basics_thumb.png deleted file mode 120000 index d4d97650c1d..00000000000 --- a/_images/sphx_glr_colorbar_basics_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_basics_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_001.png b/_images/sphx_glr_colorbar_only_001.png deleted file mode 120000 index ca9bb97ee18..00000000000 --- a/_images/sphx_glr_colorbar_only_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_001_2_0x.png b/_images/sphx_glr_colorbar_only_001_2_0x.png deleted file mode 120000 index ed20f4e20ea..00000000000 --- a/_images/sphx_glr_colorbar_only_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_002.png b/_images/sphx_glr_colorbar_only_002.png deleted file mode 120000 index 50c1e5e04ba..00000000000 --- a/_images/sphx_glr_colorbar_only_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_002_2_0x.png b/_images/sphx_glr_colorbar_only_002_2_0x.png deleted file mode 120000 index 10d804a050c..00000000000 --- a/_images/sphx_glr_colorbar_only_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_003.png b/_images/sphx_glr_colorbar_only_003.png deleted file mode 120000 index 6fbe6401a49..00000000000 --- a/_images/sphx_glr_colorbar_only_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_003_2_0x.png b/_images/sphx_glr_colorbar_only_003_2_0x.png deleted file mode 120000 index e48deb58a19..00000000000 --- a/_images/sphx_glr_colorbar_only_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_004.png b/_images/sphx_glr_colorbar_only_004.png deleted file mode 120000 index e9486e1c16c..00000000000 --- a/_images/sphx_glr_colorbar_only_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_004.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_004_2_0x.png b/_images/sphx_glr_colorbar_only_004_2_0x.png deleted file mode 120000 index 5a7e42cd200..00000000000 --- a/_images/sphx_glr_colorbar_only_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_only_thumb.png b/_images/sphx_glr_colorbar_only_thumb.png deleted file mode 120000 index 1845f8ab86a..00000000000 --- a/_images/sphx_glr_colorbar_only_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_only_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_001.png b/_images/sphx_glr_colorbar_placement_001.png deleted file mode 120000 index 3ae5b773108..00000000000 --- a/_images/sphx_glr_colorbar_placement_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_001_2_0x.png b/_images/sphx_glr_colorbar_placement_001_2_0x.png deleted file mode 120000 index 96a478038db..00000000000 --- a/_images/sphx_glr_colorbar_placement_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_002.png b/_images/sphx_glr_colorbar_placement_002.png deleted file mode 120000 index f0914021697..00000000000 --- a/_images/sphx_glr_colorbar_placement_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_002_2_0x.png b/_images/sphx_glr_colorbar_placement_002_2_0x.png deleted file mode 120000 index 76306c3dd51..00000000000 --- a/_images/sphx_glr_colorbar_placement_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_003.png b/_images/sphx_glr_colorbar_placement_003.png deleted file mode 120000 index 884329f80f3..00000000000 --- a/_images/sphx_glr_colorbar_placement_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_003_2_0x.png b/_images/sphx_glr_colorbar_placement_003_2_0x.png deleted file mode 120000 index 9ec131ca46c..00000000000 --- a/_images/sphx_glr_colorbar_placement_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_004.png b/_images/sphx_glr_colorbar_placement_004.png deleted file mode 120000 index 84918014271..00000000000 --- a/_images/sphx_glr_colorbar_placement_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_004.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_004_2_0x.png b/_images/sphx_glr_colorbar_placement_004_2_0x.png deleted file mode 120000 index 03b53c51d9a..00000000000 --- a/_images/sphx_glr_colorbar_placement_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_005.png b/_images/sphx_glr_colorbar_placement_005.png deleted file mode 120000 index afcbec41a28..00000000000 --- a/_images/sphx_glr_colorbar_placement_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_005.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_005_2_0x.png b/_images/sphx_glr_colorbar_placement_005_2_0x.png deleted file mode 120000 index 5b591ce5ccf..00000000000 --- a/_images/sphx_glr_colorbar_placement_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_placement_thumb.png b/_images/sphx_glr_colorbar_placement_thumb.png deleted file mode 120000 index 960773bfa0d..00000000000 --- a/_images/sphx_glr_colorbar_placement_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_placement_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_tick_labelling_demo_001.png b/_images/sphx_glr_colorbar_tick_labelling_demo_001.png deleted file mode 120000 index 89aac4d8adc..00000000000 --- a/_images/sphx_glr_colorbar_tick_labelling_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_tick_labelling_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_tick_labelling_demo_001_2_0x.png b/_images/sphx_glr_colorbar_tick_labelling_demo_001_2_0x.png deleted file mode 120000 index b41f5a33a69..00000000000 --- a/_images/sphx_glr_colorbar_tick_labelling_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_tick_labelling_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_tick_labelling_demo_002.png b/_images/sphx_glr_colorbar_tick_labelling_demo_002.png deleted file mode 120000 index 364bfab4f6d..00000000000 --- a/_images/sphx_glr_colorbar_tick_labelling_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_tick_labelling_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_tick_labelling_demo_002_2_0x.png b/_images/sphx_glr_colorbar_tick_labelling_demo_002_2_0x.png deleted file mode 120000 index 6a8f390e942..00000000000 --- a/_images/sphx_glr_colorbar_tick_labelling_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_tick_labelling_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colorbar_tick_labelling_demo_thumb.png b/_images/sphx_glr_colorbar_tick_labelling_demo_thumb.png deleted file mode 120000 index 174f614c2a9..00000000000 --- a/_images/sphx_glr_colorbar_tick_labelling_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colorbar_tick_labelling_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_001.png b/_images/sphx_glr_colormap-manipulation_001.png deleted file mode 120000 index 8e6179f4ce3..00000000000 --- a/_images/sphx_glr_colormap-manipulation_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_001_2_0x.png b/_images/sphx_glr_colormap-manipulation_001_2_0x.png deleted file mode 120000 index 2e7f2c12650..00000000000 --- a/_images/sphx_glr_colormap-manipulation_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_002.png b/_images/sphx_glr_colormap-manipulation_002.png deleted file mode 120000 index e0ea2f07e18..00000000000 --- a/_images/sphx_glr_colormap-manipulation_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_002_2_0x.png b/_images/sphx_glr_colormap-manipulation_002_2_0x.png deleted file mode 120000 index b792434c086..00000000000 --- a/_images/sphx_glr_colormap-manipulation_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_003.png b/_images/sphx_glr_colormap-manipulation_003.png deleted file mode 120000 index 163978c0aef..00000000000 --- a/_images/sphx_glr_colormap-manipulation_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_003_2_0x.png b/_images/sphx_glr_colormap-manipulation_003_2_0x.png deleted file mode 120000 index 7d8a952f5cb..00000000000 --- a/_images/sphx_glr_colormap-manipulation_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_004.png b/_images/sphx_glr_colormap-manipulation_004.png deleted file mode 120000 index 7c79017dbaa..00000000000 --- a/_images/sphx_glr_colormap-manipulation_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_004.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_004_2_0x.png b/_images/sphx_glr_colormap-manipulation_004_2_0x.png deleted file mode 120000 index 6a6652a30e8..00000000000 --- a/_images/sphx_glr_colormap-manipulation_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_005.png b/_images/sphx_glr_colormap-manipulation_005.png deleted file mode 120000 index eae5f616d07..00000000000 --- a/_images/sphx_glr_colormap-manipulation_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_005.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_005_2_0x.png b/_images/sphx_glr_colormap-manipulation_005_2_0x.png deleted file mode 120000 index 7a10b6c363b..00000000000 --- a/_images/sphx_glr_colormap-manipulation_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_006.png b/_images/sphx_glr_colormap-manipulation_006.png deleted file mode 120000 index a43a7bc619c..00000000000 --- a/_images/sphx_glr_colormap-manipulation_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_006.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_006_2_0x.png b/_images/sphx_glr_colormap-manipulation_006_2_0x.png deleted file mode 120000 index 202189cd836..00000000000 --- a/_images/sphx_glr_colormap-manipulation_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_007.png b/_images/sphx_glr_colormap-manipulation_007.png deleted file mode 120000 index feef35ff1be..00000000000 --- a/_images/sphx_glr_colormap-manipulation_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_007.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_007_2_0x.png b/_images/sphx_glr_colormap-manipulation_007_2_0x.png deleted file mode 120000 index 5513efbf949..00000000000 --- a/_images/sphx_glr_colormap-manipulation_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_008.png b/_images/sphx_glr_colormap-manipulation_008.png deleted file mode 120000 index 7a7a8c27f3a..00000000000 --- a/_images/sphx_glr_colormap-manipulation_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_008.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_008_2_0x.png b/_images/sphx_glr_colormap-manipulation_008_2_0x.png deleted file mode 120000 index 68ade1e797e..00000000000 --- a/_images/sphx_glr_colormap-manipulation_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap-manipulation_thumb.png b/_images/sphx_glr_colormap-manipulation_thumb.png deleted file mode 120000 index 0f9ced1c639..00000000000 --- a/_images/sphx_glr_colormap-manipulation_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap-manipulation_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_interactive_adjustment_001.png b/_images/sphx_glr_colormap_interactive_adjustment_001.png deleted file mode 120000 index bbf2ecb0d1a..00000000000 --- a/_images/sphx_glr_colormap_interactive_adjustment_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_interactive_adjustment_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_interactive_adjustment_001_2_0x.png b/_images/sphx_glr_colormap_interactive_adjustment_001_2_0x.png deleted file mode 120000 index b5e99a725a5..00000000000 --- a/_images/sphx_glr_colormap_interactive_adjustment_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_interactive_adjustment_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_interactive_adjustment_thumb.png b/_images/sphx_glr_colormap_interactive_adjustment_thumb.png deleted file mode 120000 index eba32266ae7..00000000000 --- a/_images/sphx_glr_colormap_interactive_adjustment_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_interactive_adjustment_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_001.png b/_images/sphx_glr_colormap_normalizations_001.png deleted file mode 120000 index 062a3e9e1b9..00000000000 --- a/_images/sphx_glr_colormap_normalizations_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_001_2_0x.png b/_images/sphx_glr_colormap_normalizations_001_2_0x.png deleted file mode 120000 index 693cbe84d30..00000000000 --- a/_images/sphx_glr_colormap_normalizations_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_002.png b/_images/sphx_glr_colormap_normalizations_002.png deleted file mode 120000 index 4d5d4190d95..00000000000 --- a/_images/sphx_glr_colormap_normalizations_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_002_2_0x.png b/_images/sphx_glr_colormap_normalizations_002_2_0x.png deleted file mode 120000 index 2b7806d16c3..00000000000 --- a/_images/sphx_glr_colormap_normalizations_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_003.png b/_images/sphx_glr_colormap_normalizations_003.png deleted file mode 120000 index 65cbcdb0b54..00000000000 --- a/_images/sphx_glr_colormap_normalizations_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_003_2_0x.png b/_images/sphx_glr_colormap_normalizations_003_2_0x.png deleted file mode 120000 index 233e1226f3e..00000000000 --- a/_images/sphx_glr_colormap_normalizations_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_004.png b/_images/sphx_glr_colormap_normalizations_004.png deleted file mode 120000 index 487f083c284..00000000000 --- a/_images/sphx_glr_colormap_normalizations_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_004.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_004_2_0x.png b/_images/sphx_glr_colormap_normalizations_004_2_0x.png deleted file mode 120000 index a2a03bba053..00000000000 --- a/_images/sphx_glr_colormap_normalizations_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_005.png b/_images/sphx_glr_colormap_normalizations_005.png deleted file mode 120000 index c9f6a7880e6..00000000000 --- a/_images/sphx_glr_colormap_normalizations_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_005.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_005_2_0x.png b/_images/sphx_glr_colormap_normalizations_005_2_0x.png deleted file mode 120000 index ef75ff5fba2..00000000000 --- a/_images/sphx_glr_colormap_normalizations_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_bounds_001.png b/_images/sphx_glr_colormap_normalizations_bounds_001.png deleted file mode 120000 index 65560b8ea9f..00000000000 --- a/_images/sphx_glr_colormap_normalizations_bounds_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_bounds_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_bounds_thumb.png b/_images/sphx_glr_colormap_normalizations_bounds_thumb.png deleted file mode 120000 index c36d502a8a0..00000000000 --- a/_images/sphx_glr_colormap_normalizations_bounds_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_bounds_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_custom_001.png b/_images/sphx_glr_colormap_normalizations_custom_001.png deleted file mode 120000 index c7972e9c0aa..00000000000 --- a/_images/sphx_glr_colormap_normalizations_custom_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_custom_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_custom_thumb.png b/_images/sphx_glr_colormap_normalizations_custom_thumb.png deleted file mode 120000 index e477ea72b7a..00000000000 --- a/_images/sphx_glr_colormap_normalizations_custom_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_custom_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_diverging_001.png b/_images/sphx_glr_colormap_normalizations_diverging_001.png deleted file mode 120000 index 91aa6bc318b..00000000000 --- a/_images/sphx_glr_colormap_normalizations_diverging_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_diverging_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_diverging_thumb.png b/_images/sphx_glr_colormap_normalizations_diverging_thumb.png deleted file mode 120000 index c7bfbad1877..00000000000 --- a/_images/sphx_glr_colormap_normalizations_diverging_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_diverging_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_lognorm_001.png b/_images/sphx_glr_colormap_normalizations_lognorm_001.png deleted file mode 120000 index 4c9283d471d..00000000000 --- a/_images/sphx_glr_colormap_normalizations_lognorm_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_lognorm_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_lognorm_thumb.png b/_images/sphx_glr_colormap_normalizations_lognorm_thumb.png deleted file mode 120000 index 05c3f88951c..00000000000 --- a/_images/sphx_glr_colormap_normalizations_lognorm_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_lognorm_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_power_001.png b/_images/sphx_glr_colormap_normalizations_power_001.png deleted file mode 120000 index 4822af640ac..00000000000 --- a/_images/sphx_glr_colormap_normalizations_power_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_power_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_power_thumb.png b/_images/sphx_glr_colormap_normalizations_power_thumb.png deleted file mode 120000 index a9722112ece..00000000000 --- a/_images/sphx_glr_colormap_normalizations_power_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_colormap_normalizations_power_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_symlognorm_001.png b/_images/sphx_glr_colormap_normalizations_symlognorm_001.png deleted file mode 120000 index d7f37a12e96..00000000000 --- a/_images/sphx_glr_colormap_normalizations_symlognorm_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_symlognorm_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_symlognorm_001_2_0x.png b/_images/sphx_glr_colormap_normalizations_symlognorm_001_2_0x.png deleted file mode 120000 index b0125301e21..00000000000 --- a/_images/sphx_glr_colormap_normalizations_symlognorm_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_symlognorm_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_symlognorm_thumb.png b/_images/sphx_glr_colormap_normalizations_symlognorm_thumb.png deleted file mode 120000 index 38ee45137e3..00000000000 --- a/_images/sphx_glr_colormap_normalizations_symlognorm_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_symlognorm_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_normalizations_thumb.png b/_images/sphx_glr_colormap_normalizations_thumb.png deleted file mode 120000 index 128296ce6fb..00000000000 --- a/_images/sphx_glr_colormap_normalizations_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_normalizations_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_001.png b/_images/sphx_glr_colormap_reference_001.png deleted file mode 120000 index 7be6840753c..00000000000 --- a/_images/sphx_glr_colormap_reference_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_001_2_0x.png b/_images/sphx_glr_colormap_reference_001_2_0x.png deleted file mode 120000 index bb9481baa72..00000000000 --- a/_images/sphx_glr_colormap_reference_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_002.png b/_images/sphx_glr_colormap_reference_002.png deleted file mode 120000 index 5d8eaf81d19..00000000000 --- a/_images/sphx_glr_colormap_reference_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_002_2_0x.png b/_images/sphx_glr_colormap_reference_002_2_0x.png deleted file mode 120000 index dc647708dd4..00000000000 --- a/_images/sphx_glr_colormap_reference_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_003.png b/_images/sphx_glr_colormap_reference_003.png deleted file mode 120000 index a4597e8bcff..00000000000 --- a/_images/sphx_glr_colormap_reference_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_003_2_0x.png b/_images/sphx_glr_colormap_reference_003_2_0x.png deleted file mode 120000 index d06866b3609..00000000000 --- a/_images/sphx_glr_colormap_reference_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_004.png b/_images/sphx_glr_colormap_reference_004.png deleted file mode 120000 index 69c4c04eb4f..00000000000 --- a/_images/sphx_glr_colormap_reference_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_004.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_004_2_0x.png b/_images/sphx_glr_colormap_reference_004_2_0x.png deleted file mode 120000 index 05e0268e613..00000000000 --- a/_images/sphx_glr_colormap_reference_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_005.png b/_images/sphx_glr_colormap_reference_005.png deleted file mode 120000 index 9a324394aaa..00000000000 --- a/_images/sphx_glr_colormap_reference_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_005.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_005_2_0x.png b/_images/sphx_glr_colormap_reference_005_2_0x.png deleted file mode 120000 index 32887571dab..00000000000 --- a/_images/sphx_glr_colormap_reference_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_006.png b/_images/sphx_glr_colormap_reference_006.png deleted file mode 120000 index 7126f1cea29..00000000000 --- a/_images/sphx_glr_colormap_reference_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_006.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_006_2_0x.png b/_images/sphx_glr_colormap_reference_006_2_0x.png deleted file mode 120000 index 71b5846298f..00000000000 --- a/_images/sphx_glr_colormap_reference_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_007.png b/_images/sphx_glr_colormap_reference_007.png deleted file mode 120000 index 762466a5c42..00000000000 --- a/_images/sphx_glr_colormap_reference_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_007.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_007_2_0x.png b/_images/sphx_glr_colormap_reference_007_2_0x.png deleted file mode 120000 index 8c7bbefc76c..00000000000 --- a/_images/sphx_glr_colormap_reference_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormap_reference_thumb.png b/_images/sphx_glr_colormap_reference_thumb.png deleted file mode 120000 index 624b9828e44..00000000000 --- a/_images/sphx_glr_colormap_reference_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormap_reference_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_001.png b/_images/sphx_glr_colormapnorms_001.png deleted file mode 120000 index a16e90fb720..00000000000 --- a/_images/sphx_glr_colormapnorms_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_001_2_0x.png b/_images/sphx_glr_colormapnorms_001_2_0x.png deleted file mode 120000 index 4bfa1cfda6a..00000000000 --- a/_images/sphx_glr_colormapnorms_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_002.png b/_images/sphx_glr_colormapnorms_002.png deleted file mode 120000 index bc1f367d539..00000000000 --- a/_images/sphx_glr_colormapnorms_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_002_2_0x.png b/_images/sphx_glr_colormapnorms_002_2_0x.png deleted file mode 120000 index a236e36b8b2..00000000000 --- a/_images/sphx_glr_colormapnorms_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_003.png b/_images/sphx_glr_colormapnorms_003.png deleted file mode 120000 index ac3bda3c1c4..00000000000 --- a/_images/sphx_glr_colormapnorms_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_003_2_0x.png b/_images/sphx_glr_colormapnorms_003_2_0x.png deleted file mode 120000 index d631e7ce919..00000000000 --- a/_images/sphx_glr_colormapnorms_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_004.png b/_images/sphx_glr_colormapnorms_004.png deleted file mode 120000 index e5f7c282297..00000000000 --- a/_images/sphx_glr_colormapnorms_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_004.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_004_2_0x.png b/_images/sphx_glr_colormapnorms_004_2_0x.png deleted file mode 120000 index 93fc22d8d4a..00000000000 --- a/_images/sphx_glr_colormapnorms_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_005.png b/_images/sphx_glr_colormapnorms_005.png deleted file mode 120000 index 7eaef61aca0..00000000000 --- a/_images/sphx_glr_colormapnorms_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_005.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_005_2_0x.png b/_images/sphx_glr_colormapnorms_005_2_0x.png deleted file mode 120000 index 621bafe0eae..00000000000 --- a/_images/sphx_glr_colormapnorms_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_006.png b/_images/sphx_glr_colormapnorms_006.png deleted file mode 120000 index 96898a009a4..00000000000 --- a/_images/sphx_glr_colormapnorms_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_006.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_006_2_0x.png b/_images/sphx_glr_colormapnorms_006_2_0x.png deleted file mode 120000 index fb10bc35fcb..00000000000 --- a/_images/sphx_glr_colormapnorms_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_007.png b/_images/sphx_glr_colormapnorms_007.png deleted file mode 120000 index 35b256bdf88..00000000000 --- a/_images/sphx_glr_colormapnorms_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_007.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_007_2_0x.png b/_images/sphx_glr_colormapnorms_007_2_0x.png deleted file mode 120000 index 9c60ad52feb..00000000000 --- a/_images/sphx_glr_colormapnorms_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_008.png b/_images/sphx_glr_colormapnorms_008.png deleted file mode 120000 index b40480c8497..00000000000 --- a/_images/sphx_glr_colormapnorms_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_008.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_008_2_0x.png b/_images/sphx_glr_colormapnorms_008_2_0x.png deleted file mode 120000 index 86101a49dc1..00000000000 --- a/_images/sphx_glr_colormapnorms_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormapnorms_thumb.png b/_images/sphx_glr_colormapnorms_thumb.png deleted file mode 120000 index 9a0147da579..00000000000 --- a/_images/sphx_glr_colormapnorms_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormapnorms_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_001.png b/_images/sphx_glr_colormaps_001.png deleted file mode 120000 index 610884098d3..00000000000 --- a/_images/sphx_glr_colormaps_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_001_2_0x.png b/_images/sphx_glr_colormaps_001_2_0x.png deleted file mode 120000 index 6734d58fc7a..00000000000 --- a/_images/sphx_glr_colormaps_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_002.png b/_images/sphx_glr_colormaps_002.png deleted file mode 120000 index 476240fc695..00000000000 --- a/_images/sphx_glr_colormaps_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_002_2_0x.png b/_images/sphx_glr_colormaps_002_2_0x.png deleted file mode 120000 index 423e2b1b16e..00000000000 --- a/_images/sphx_glr_colormaps_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_003.png b/_images/sphx_glr_colormaps_003.png deleted file mode 120000 index 8c6203fad14..00000000000 --- a/_images/sphx_glr_colormaps_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_003_2_0x.png b/_images/sphx_glr_colormaps_003_2_0x.png deleted file mode 120000 index f03af8d7d2c..00000000000 --- a/_images/sphx_glr_colormaps_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_004.png b/_images/sphx_glr_colormaps_004.png deleted file mode 120000 index e5e5ce1bf61..00000000000 --- a/_images/sphx_glr_colormaps_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_004.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_004_2_0x.png b/_images/sphx_glr_colormaps_004_2_0x.png deleted file mode 120000 index 3599a6d90ce..00000000000 --- a/_images/sphx_glr_colormaps_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_005.png b/_images/sphx_glr_colormaps_005.png deleted file mode 120000 index be05cca2422..00000000000 --- a/_images/sphx_glr_colormaps_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_005.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_005_2_0x.png b/_images/sphx_glr_colormaps_005_2_0x.png deleted file mode 120000 index f397cf45e39..00000000000 --- a/_images/sphx_glr_colormaps_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_006.png b/_images/sphx_glr_colormaps_006.png deleted file mode 120000 index 9a9c519a514..00000000000 --- a/_images/sphx_glr_colormaps_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_006.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_006_2_0x.png b/_images/sphx_glr_colormaps_006_2_0x.png deleted file mode 120000 index 42615363d2b..00000000000 --- a/_images/sphx_glr_colormaps_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_007.png b/_images/sphx_glr_colormaps_007.png deleted file mode 120000 index 55e2f8aa6c6..00000000000 --- a/_images/sphx_glr_colormaps_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_007.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_007_2_0x.png b/_images/sphx_glr_colormaps_007_2_0x.png deleted file mode 120000 index 9c6afd5aca7..00000000000 --- a/_images/sphx_glr_colormaps_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_008.png b/_images/sphx_glr_colormaps_008.png deleted file mode 120000 index 5df7cafc184..00000000000 --- a/_images/sphx_glr_colormaps_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_008.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_008_2_0x.png b/_images/sphx_glr_colormaps_008_2_0x.png deleted file mode 120000 index 90e7607918b..00000000000 --- a/_images/sphx_glr_colormaps_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_009.png b/_images/sphx_glr_colormaps_009.png deleted file mode 120000 index b2d90bceea9..00000000000 --- a/_images/sphx_glr_colormaps_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_009.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_009_2_0x.png b/_images/sphx_glr_colormaps_009_2_0x.png deleted file mode 120000 index 090427f640d..00000000000 --- a/_images/sphx_glr_colormaps_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_010.png b/_images/sphx_glr_colormaps_010.png deleted file mode 120000 index 270399b8fe1..00000000000 --- a/_images/sphx_glr_colormaps_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_010.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_010_2_0x.png b/_images/sphx_glr_colormaps_010_2_0x.png deleted file mode 120000 index 41af8d02af5..00000000000 --- a/_images/sphx_glr_colormaps_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_011.png b/_images/sphx_glr_colormaps_011.png deleted file mode 120000 index 1fdc0d117d4..00000000000 --- a/_images/sphx_glr_colormaps_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_011.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_011_2_0x.png b/_images/sphx_glr_colormaps_011_2_0x.png deleted file mode 120000 index 39f40417c97..00000000000 --- a/_images/sphx_glr_colormaps_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_012.png b/_images/sphx_glr_colormaps_012.png deleted file mode 120000 index a6ecd5f0979..00000000000 --- a/_images/sphx_glr_colormaps_012.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_012.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_012_2_0x.png b/_images/sphx_glr_colormaps_012_2_0x.png deleted file mode 120000 index c13ba2f0c54..00000000000 --- a/_images/sphx_glr_colormaps_012_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_012_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_013.png b/_images/sphx_glr_colormaps_013.png deleted file mode 120000 index 2f19ddcc1d8..00000000000 --- a/_images/sphx_glr_colormaps_013.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_013.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_013_2_0x.png b/_images/sphx_glr_colormaps_013_2_0x.png deleted file mode 120000 index 8001cac0ef4..00000000000 --- a/_images/sphx_glr_colormaps_013_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_013_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_014.png b/_images/sphx_glr_colormaps_014.png deleted file mode 120000 index fdfff3f572d..00000000000 --- a/_images/sphx_glr_colormaps_014.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_014.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_014_2_0x.png b/_images/sphx_glr_colormaps_014_2_0x.png deleted file mode 120000 index a3887fdd650..00000000000 --- a/_images/sphx_glr_colormaps_014_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_014_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_015.png b/_images/sphx_glr_colormaps_015.png deleted file mode 120000 index a11fc3d86a8..00000000000 --- a/_images/sphx_glr_colormaps_015.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_015.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_015_2_0x.png b/_images/sphx_glr_colormaps_015_2_0x.png deleted file mode 120000 index 29dd3999b93..00000000000 --- a/_images/sphx_glr_colormaps_015_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_015_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_016.png b/_images/sphx_glr_colormaps_016.png deleted file mode 120000 index 79955732f22..00000000000 --- a/_images/sphx_glr_colormaps_016.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_016.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_016_2_0x.png b/_images/sphx_glr_colormaps_016_2_0x.png deleted file mode 120000 index d51307a96b9..00000000000 --- a/_images/sphx_glr_colormaps_016_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_016_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_017.png b/_images/sphx_glr_colormaps_017.png deleted file mode 120000 index 510c91107f4..00000000000 --- a/_images/sphx_glr_colormaps_017.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_017.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_017_2_0x.png b/_images/sphx_glr_colormaps_017_2_0x.png deleted file mode 120000 index eb5a0cf267b..00000000000 --- a/_images/sphx_glr_colormaps_017_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_017_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_018.png b/_images/sphx_glr_colormaps_018.png deleted file mode 120000 index 2df65d35a31..00000000000 --- a/_images/sphx_glr_colormaps_018.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_018.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_018_2_0x.png b/_images/sphx_glr_colormaps_018_2_0x.png deleted file mode 120000 index dd435474178..00000000000 --- a/_images/sphx_glr_colormaps_018_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_018_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_019.png b/_images/sphx_glr_colormaps_019.png deleted file mode 120000 index 3a78f348ec1..00000000000 --- a/_images/sphx_glr_colormaps_019.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_019.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_019_2_0x.png b/_images/sphx_glr_colormaps_019_2_0x.png deleted file mode 120000 index 378544789db..00000000000 --- a/_images/sphx_glr_colormaps_019_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_019_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_020.png b/_images/sphx_glr_colormaps_020.png deleted file mode 120000 index 49bdc7924f3..00000000000 --- a/_images/sphx_glr_colormaps_020.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_020.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_020_2_0x.png b/_images/sphx_glr_colormaps_020_2_0x.png deleted file mode 120000 index c2867c6404b..00000000000 --- a/_images/sphx_glr_colormaps_020_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_020_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_021.png b/_images/sphx_glr_colormaps_021.png deleted file mode 120000 index 1b7a17efcba..00000000000 --- a/_images/sphx_glr_colormaps_021.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_021.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_021_2_0x.png b/_images/sphx_glr_colormaps_021_2_0x.png deleted file mode 120000 index f749bffaf13..00000000000 --- a/_images/sphx_glr_colormaps_021_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_021_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colormaps_thumb.png b/_images/sphx_glr_colormaps_thumb.png deleted file mode 120000 index 67b05fd81d1..00000000000 --- a/_images/sphx_glr_colormaps_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colormaps_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_001.png b/_images/sphx_glr_colors_001.png deleted file mode 120000 index 8ed7f3444cb..00000000000 --- a/_images/sphx_glr_colors_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colors_001.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_001_2_0x.png b/_images/sphx_glr_colors_001_2_0x.png deleted file mode 120000 index 329adbcd032..00000000000 --- a/_images/sphx_glr_colors_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colors_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_002.png b/_images/sphx_glr_colors_002.png deleted file mode 120000 index ffee69d6d02..00000000000 --- a/_images/sphx_glr_colors_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colors_002.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_002_2_0x.png b/_images/sphx_glr_colors_002_2_0x.png deleted file mode 120000 index 047a52c8e9b..00000000000 --- a/_images/sphx_glr_colors_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colors_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_003.png b/_images/sphx_glr_colors_003.png deleted file mode 120000 index ca7114e03b2..00000000000 --- a/_images/sphx_glr_colors_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colors_003.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_003_2_0x.png b/_images/sphx_glr_colors_003_2_0x.png deleted file mode 120000 index fd962b0d12f..00000000000 --- a/_images/sphx_glr_colors_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colors_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_sgskip_thumb.png b/_images/sphx_glr_colors_sgskip_thumb.png deleted file mode 120000 index aec5ebc8e17..00000000000 --- a/_images/sphx_glr_colors_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_colors_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_colors_thumb.png b/_images/sphx_glr_colors_thumb.png deleted file mode 120000 index 522d7878d0f..00000000000 --- a/_images/sphx_glr_colors_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_colors_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_common_date_problems_001.png b/_images/sphx_glr_common_date_problems_001.png deleted file mode 120000 index b3e1c55f490..00000000000 --- a/_images/sphx_glr_common_date_problems_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_common_date_problems_001.png \ No newline at end of file diff --git a/_images/sphx_glr_common_date_problems_002.png b/_images/sphx_glr_common_date_problems_002.png deleted file mode 120000 index b5f9cf7925e..00000000000 --- a/_images/sphx_glr_common_date_problems_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_common_date_problems_002.png \ No newline at end of file diff --git a/_images/sphx_glr_common_date_problems_thumb.png b/_images/sphx_glr_common_date_problems_thumb.png deleted file mode 120000 index 3dfbe4f44cc..00000000000 --- a/_images/sphx_glr_common_date_problems_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_common_date_problems_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_compound_path_001.png b/_images/sphx_glr_compound_path_001.png deleted file mode 120000 index dfbe8ca2f60..00000000000 --- a/_images/sphx_glr_compound_path_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_compound_path_001.png \ No newline at end of file diff --git a/_images/sphx_glr_compound_path_001_2_0x.png b/_images/sphx_glr_compound_path_001_2_0x.png deleted file mode 120000 index b43bdc25722..00000000000 --- a/_images/sphx_glr_compound_path_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_compound_path_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_compound_path_demo_001.png b/_images/sphx_glr_compound_path_demo_001.png deleted file mode 120000 index 6e7b198fdec..00000000000 --- a/_images/sphx_glr_compound_path_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_compound_path_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_compound_path_demo_thumb.png b/_images/sphx_glr_compound_path_demo_thumb.png deleted file mode 120000 index 1d7c5a6fe10..00000000000 --- a/_images/sphx_glr_compound_path_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_compound_path_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_compound_path_thumb.png b/_images/sphx_glr_compound_path_thumb.png deleted file mode 120000 index c1328c530db..00000000000 --- a/_images/sphx_glr_compound_path_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_compound_path_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_confidence_ellipse_001.png b/_images/sphx_glr_confidence_ellipse_001.png deleted file mode 120000 index 1effe9a2c38..00000000000 --- a/_images/sphx_glr_confidence_ellipse_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_confidence_ellipse_001.png \ No newline at end of file diff --git a/_images/sphx_glr_confidence_ellipse_001_2_0x.png b/_images/sphx_glr_confidence_ellipse_001_2_0x.png deleted file mode 120000 index c95ffdc1057..00000000000 --- a/_images/sphx_glr_confidence_ellipse_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_confidence_ellipse_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_confidence_ellipse_002.png b/_images/sphx_glr_confidence_ellipse_002.png deleted file mode 120000 index 227596a7986..00000000000 --- a/_images/sphx_glr_confidence_ellipse_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_confidence_ellipse_002.png \ No newline at end of file diff --git a/_images/sphx_glr_confidence_ellipse_002_2_0x.png b/_images/sphx_glr_confidence_ellipse_002_2_0x.png deleted file mode 120000 index b0277717f65..00000000000 --- a/_images/sphx_glr_confidence_ellipse_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_confidence_ellipse_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_confidence_ellipse_003.png b/_images/sphx_glr_confidence_ellipse_003.png deleted file mode 120000 index bdaf0a69160..00000000000 --- a/_images/sphx_glr_confidence_ellipse_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_confidence_ellipse_003.png \ No newline at end of file diff --git a/_images/sphx_glr_confidence_ellipse_003_2_0x.png b/_images/sphx_glr_confidence_ellipse_003_2_0x.png deleted file mode 120000 index 458949961e4..00000000000 --- a/_images/sphx_glr_confidence_ellipse_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_confidence_ellipse_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_confidence_ellipse_thumb.png b/_images/sphx_glr_confidence_ellipse_thumb.png deleted file mode 120000 index 1dc0db0c87c..00000000000 --- a/_images/sphx_glr_confidence_ellipse_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_confidence_ellipse_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_connect_simple01_001.png b/_images/sphx_glr_connect_simple01_001.png deleted file mode 120000 index 4e0c4133cbb..00000000000 --- a/_images/sphx_glr_connect_simple01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_connect_simple01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_connect_simple01_0011.png b/_images/sphx_glr_connect_simple01_0011.png deleted file mode 120000 index c0d32dca1ec..00000000000 --- a/_images/sphx_glr_connect_simple01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_connect_simple01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_connect_simple01_001_2_0x.png b/_images/sphx_glr_connect_simple01_001_2_0x.png deleted file mode 120000 index b0d9d67ffcf..00000000000 --- a/_images/sphx_glr_connect_simple01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_connect_simple01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_connect_simple01_thumb.png b/_images/sphx_glr_connect_simple01_thumb.png deleted file mode 120000 index 26fd81a4ea8..00000000000 --- a/_images/sphx_glr_connect_simple01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_connect_simple01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_connectionstyle_demo_001.png b/_images/sphx_glr_connectionstyle_demo_001.png deleted file mode 120000 index b67e080768c..00000000000 --- a/_images/sphx_glr_connectionstyle_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_connectionstyle_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_connectionstyle_demo_0011.png b/_images/sphx_glr_connectionstyle_demo_0011.png deleted file mode 120000 index b9111aa6eb7..00000000000 --- a/_images/sphx_glr_connectionstyle_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_connectionstyle_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_connectionstyle_demo_001_2_0x.png b/_images/sphx_glr_connectionstyle_demo_001_2_0x.png deleted file mode 120000 index ba5654cbf5a..00000000000 --- a/_images/sphx_glr_connectionstyle_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_connectionstyle_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_connectionstyle_demo_thumb.png b/_images/sphx_glr_connectionstyle_demo_thumb.png deleted file mode 120000 index 0956c2ff415..00000000000 --- a/_images/sphx_glr_connectionstyle_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_connectionstyle_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_001.png b/_images/sphx_glr_constrainedlayout_guide_001.png deleted file mode 120000 index 2fd05e70170..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_001.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_001_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_001_2_0x.png deleted file mode 120000 index e00dc1e12a1..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_002.png b/_images/sphx_glr_constrainedlayout_guide_002.png deleted file mode 120000 index 2e6f942bd0d..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_002.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_002_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_002_2_0x.png deleted file mode 120000 index 10c9d8eb589..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_003.png b/_images/sphx_glr_constrainedlayout_guide_003.png deleted file mode 120000 index 352e30bbf93..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_003.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_003_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_003_2_0x.png deleted file mode 120000 index 164ac6ea3e8..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_004.png b/_images/sphx_glr_constrainedlayout_guide_004.png deleted file mode 120000 index 6b9488b9ab7..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_004.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_004_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_004_2_0x.png deleted file mode 120000 index eba9b5a264b..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_005.png b/_images/sphx_glr_constrainedlayout_guide_005.png deleted file mode 120000 index 2572daf73d7..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_005.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_005_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_005_2_0x.png deleted file mode 120000 index 7663eb8746f..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_006.png b/_images/sphx_glr_constrainedlayout_guide_006.png deleted file mode 120000 index 3c67b1e49d6..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_006.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_006_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_006_2_0x.png deleted file mode 120000 index 8b8ce53ff66..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_007.png b/_images/sphx_glr_constrainedlayout_guide_007.png deleted file mode 120000 index 11dccfd9a95..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_007.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_007_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_007_2_0x.png deleted file mode 120000 index 729f870128a..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_008.png b/_images/sphx_glr_constrainedlayout_guide_008.png deleted file mode 120000 index d15414ad8cf..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_008.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_008_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_008_2_0x.png deleted file mode 120000 index e45b2149f27..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_009.png b/_images/sphx_glr_constrainedlayout_guide_009.png deleted file mode 120000 index 0d613bb9690..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_009.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_009_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_009_2_0x.png deleted file mode 120000 index 3f0bd49093d..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_010.png b/_images/sphx_glr_constrainedlayout_guide_010.png deleted file mode 120000 index 611036e6660..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_010.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_010_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_010_2_0x.png deleted file mode 120000 index 7610ea0dc36..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_011.png b/_images/sphx_glr_constrainedlayout_guide_011.png deleted file mode 120000 index 4644cc5600c..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_011.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_011_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_011_2_0x.png deleted file mode 120000 index 80b96413df9..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_012.png b/_images/sphx_glr_constrainedlayout_guide_012.png deleted file mode 120000 index 2e1d4ad53b3..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_012.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_012.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_012_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_012_2_0x.png deleted file mode 120000 index 5a3fecc6a89..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_012_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_012_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_013.png b/_images/sphx_glr_constrainedlayout_guide_013.png deleted file mode 120000 index a0ecf4b39e2..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_013.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_013.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_013_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_013_2_0x.png deleted file mode 120000 index 6fe82f70f42..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_013_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_013_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_014.png b/_images/sphx_glr_constrainedlayout_guide_014.png deleted file mode 120000 index ca81361e6a8..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_014.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_014.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_014_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_014_2_0x.png deleted file mode 120000 index 49469052639..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_014_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_014_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_015.png b/_images/sphx_glr_constrainedlayout_guide_015.png deleted file mode 120000 index 1ad3c207813..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_015.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_015.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_015_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_015_2_0x.png deleted file mode 120000 index dfa15dfbece..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_015_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_015_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_016.png b/_images/sphx_glr_constrainedlayout_guide_016.png deleted file mode 120000 index 8beff29bd76..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_016.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_016.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_016_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_016_2_0x.png deleted file mode 120000 index 11680c72c5e..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_016_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_016_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_017.png b/_images/sphx_glr_constrainedlayout_guide_017.png deleted file mode 120000 index fe81b0b5714..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_017.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_017.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_017_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_017_2_0x.png deleted file mode 120000 index 8c9a3b20430..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_017_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_017_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_018.png b/_images/sphx_glr_constrainedlayout_guide_018.png deleted file mode 120000 index 408a1a8e438..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_018.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_018.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_018_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_018_2_0x.png deleted file mode 120000 index 6a608731886..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_018_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_018_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_019.png b/_images/sphx_glr_constrainedlayout_guide_019.png deleted file mode 120000 index 7e906326bd7..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_019.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_019.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_019_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_019_2_0x.png deleted file mode 120000 index 3ba563db324..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_019_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_019_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_020.png b/_images/sphx_glr_constrainedlayout_guide_020.png deleted file mode 120000 index ac650c4aca8..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_020.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_020.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_020_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_020_2_0x.png deleted file mode 120000 index 3a8e391ff49..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_020_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_020_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_021.png b/_images/sphx_glr_constrainedlayout_guide_021.png deleted file mode 120000 index 2a4a31f9b27..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_021.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_021.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_021_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_021_2_0x.png deleted file mode 120000 index 79ccb8dc755..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_021_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_021_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_022.png b/_images/sphx_glr_constrainedlayout_guide_022.png deleted file mode 120000 index f7ab54a0cd9..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_022.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_022.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_022_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_022_2_0x.png deleted file mode 120000 index a20eff5ab51..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_022_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_022_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_023.png b/_images/sphx_glr_constrainedlayout_guide_023.png deleted file mode 120000 index 6498a4204ae..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_023.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_023.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_023_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_023_2_0x.png deleted file mode 120000 index 1b659b508e2..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_023_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_023_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_024.png b/_images/sphx_glr_constrainedlayout_guide_024.png deleted file mode 120000 index 9960cf98610..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_024.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_024.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_024_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_024_2_0x.png deleted file mode 120000 index 6ead0e162f8..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_024_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_024_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_025.png b/_images/sphx_glr_constrainedlayout_guide_025.png deleted file mode 120000 index c92fd0c0148..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_025.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_025.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_025_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_025_2_0x.png deleted file mode 120000 index 6b034514437..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_025_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_025_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_026.png b/_images/sphx_glr_constrainedlayout_guide_026.png deleted file mode 120000 index 21e220a7c6f..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_026.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_026.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_026_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_026_2_0x.png deleted file mode 120000 index 6a3d0d5a751..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_026_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_026_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_027.png b/_images/sphx_glr_constrainedlayout_guide_027.png deleted file mode 120000 index 5edd12de847..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_027.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_027.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_027_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_027_2_0x.png deleted file mode 120000 index c67606d6fee..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_027_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_027_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_028.png b/_images/sphx_glr_constrainedlayout_guide_028.png deleted file mode 120000 index dafaa6eeb15..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_028.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_028.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_028_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_028_2_0x.png deleted file mode 120000 index cbbe2e0ded0..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_028_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_028_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_029.png b/_images/sphx_glr_constrainedlayout_guide_029.png deleted file mode 120000 index fb6b075ef5a..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_029.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_029.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_029_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_029_2_0x.png deleted file mode 120000 index eba450d3565..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_029_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_029_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_030.png b/_images/sphx_glr_constrainedlayout_guide_030.png deleted file mode 120000 index ecfd3b0a732..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_030.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_030.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_030_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_030_2_0x.png deleted file mode 120000 index 7f68acf4a00..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_030_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_030_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_031.png b/_images/sphx_glr_constrainedlayout_guide_031.png deleted file mode 120000 index 5af8a206f0d..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_031.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_031.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_031_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_031_2_0x.png deleted file mode 120000 index 769f70150fa..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_031_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_031_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_032.png b/_images/sphx_glr_constrainedlayout_guide_032.png deleted file mode 120000 index cb888aada64..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_032.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_032.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_032_2_0x.png b/_images/sphx_glr_constrainedlayout_guide_032_2_0x.png deleted file mode 120000 index b9b9238eb14..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_032_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_032_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_033.png b/_images/sphx_glr_constrainedlayout_guide_033.png deleted file mode 120000 index 0f6331bfbd5..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_033.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_033.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_034.png b/_images/sphx_glr_constrainedlayout_guide_034.png deleted file mode 120000 index 5e3f874eb4d..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_034.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_034.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_035.png b/_images/sphx_glr_constrainedlayout_guide_035.png deleted file mode 120000 index 87857747640..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_035.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_035.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_036.png b/_images/sphx_glr_constrainedlayout_guide_036.png deleted file mode 120000 index 52fbca122b6..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_036.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_constrainedlayout_guide_036.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_037.png b/_images/sphx_glr_constrainedlayout_guide_037.png deleted file mode 120000 index 5495cee78a4..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_037.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_constrainedlayout_guide_037.png \ No newline at end of file diff --git a/_images/sphx_glr_constrainedlayout_guide_thumb.png b/_images/sphx_glr_constrainedlayout_guide_thumb.png deleted file mode 120000 index 7b1b4c62fe3..00000000000 --- a/_images/sphx_glr_constrainedlayout_guide_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_constrainedlayout_guide_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_001.png b/_images/sphx_glr_contour3d_001.png deleted file mode 120000 index e0618b2c293..00000000000 --- a/_images/sphx_glr_contour3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_0011.png b/_images/sphx_glr_contour3d_0011.png deleted file mode 120000 index ef25014de0a..00000000000 --- a/_images/sphx_glr_contour3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_contour3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_001_2_0x.png b/_images/sphx_glr_contour3d_001_2_0x.png deleted file mode 120000 index 79067e7438c..00000000000 --- a/_images/sphx_glr_contour3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_2_001.png b/_images/sphx_glr_contour3d_2_001.png deleted file mode 120000 index 0c22580d7c2..00000000000 --- a/_images/sphx_glr_contour3d_2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_2_001_2_0x.png b/_images/sphx_glr_contour3d_2_001_2_0x.png deleted file mode 120000 index ba3f6825509..00000000000 --- a/_images/sphx_glr_contour3d_2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_2_thumb.png b/_images/sphx_glr_contour3d_2_thumb.png deleted file mode 120000 index 237ffa0076f..00000000000 --- a/_images/sphx_glr_contour3d_2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_3_001.png b/_images/sphx_glr_contour3d_3_001.png deleted file mode 120000 index e9bfe8e62a4..00000000000 --- a/_images/sphx_glr_contour3d_3_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_3_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_3_001_2_0x.png b/_images/sphx_glr_contour3d_3_001_2_0x.png deleted file mode 120000 index 2937884042b..00000000000 --- a/_images/sphx_glr_contour3d_3_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_3_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_3_thumb.png b/_images/sphx_glr_contour3d_3_thumb.png deleted file mode 120000 index 3af89633210..00000000000 --- a/_images/sphx_glr_contour3d_3_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_3_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour3d_thumb.png b/_images/sphx_glr_contour3d_thumb.png deleted file mode 120000 index ef210185d23..00000000000 --- a/_images/sphx_glr_contour3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_001.png b/_images/sphx_glr_contour_001.png deleted file mode 120000 index d70f8b7beaa..00000000000 --- a/_images/sphx_glr_contour_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_001_2_0x.png b/_images/sphx_glr_contour_001_2_0x.png deleted file mode 120000 index 4be4977b155..00000000000 --- a/_images/sphx_glr_contour_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_corner_mask_001.png b/_images/sphx_glr_contour_corner_mask_001.png deleted file mode 120000 index e9eb4a4611c..00000000000 --- a/_images/sphx_glr_contour_corner_mask_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_corner_mask_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_corner_mask_0011.png b/_images/sphx_glr_contour_corner_mask_0011.png deleted file mode 120000 index 4e9cefe4332..00000000000 --- a/_images/sphx_glr_contour_corner_mask_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_contour_corner_mask_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_corner_mask_001_2_0x.png b/_images/sphx_glr_contour_corner_mask_001_2_0x.png deleted file mode 120000 index f20f12fdff2..00000000000 --- a/_images/sphx_glr_contour_corner_mask_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_corner_mask_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_corner_mask_thumb.png b/_images/sphx_glr_contour_corner_mask_thumb.png deleted file mode 120000 index 2651b1ebe36..00000000000 --- a/_images/sphx_glr_contour_corner_mask_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_corner_mask_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_001.png b/_images/sphx_glr_contour_demo_001.png deleted file mode 120000 index 4162e248f35..00000000000 --- a/_images/sphx_glr_contour_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_001_2_0x.png b/_images/sphx_glr_contour_demo_001_2_0x.png deleted file mode 120000 index 30e3966b2b1..00000000000 --- a/_images/sphx_glr_contour_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_002.png b/_images/sphx_glr_contour_demo_002.png deleted file mode 120000 index e26c9314f1b..00000000000 --- a/_images/sphx_glr_contour_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_002_2_0x.png b/_images/sphx_glr_contour_demo_002_2_0x.png deleted file mode 120000 index 45dc929a7e0..00000000000 --- a/_images/sphx_glr_contour_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_003.png b/_images/sphx_glr_contour_demo_003.png deleted file mode 120000 index a5932ac7400..00000000000 --- a/_images/sphx_glr_contour_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_003_2_0x.png b/_images/sphx_glr_contour_demo_003_2_0x.png deleted file mode 120000 index 0c983c0ac6f..00000000000 --- a/_images/sphx_glr_contour_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_004.png b/_images/sphx_glr_contour_demo_004.png deleted file mode 120000 index 19a7d47c01b..00000000000 --- a/_images/sphx_glr_contour_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_004_2_0x.png b/_images/sphx_glr_contour_demo_004_2_0x.png deleted file mode 120000 index 62d819f8fca..00000000000 --- a/_images/sphx_glr_contour_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_005.png b/_images/sphx_glr_contour_demo_005.png deleted file mode 120000 index f5866bf6c37..00000000000 --- a/_images/sphx_glr_contour_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_005_2_0x.png b/_images/sphx_glr_contour_demo_005_2_0x.png deleted file mode 120000 index 7655c56440a..00000000000 --- a/_images/sphx_glr_contour_demo_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_006.png b/_images/sphx_glr_contour_demo_006.png deleted file mode 120000 index 0f6c3f8e4fc..00000000000 --- a/_images/sphx_glr_contour_demo_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_006.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_006_2_0x.png b/_images/sphx_glr_contour_demo_006_2_0x.png deleted file mode 120000 index a8540c38c6a..00000000000 --- a/_images/sphx_glr_contour_demo_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_demo_thumb.png b/_images/sphx_glr_contour_demo_thumb.png deleted file mode 120000 index e2bdfafac08..00000000000 --- a/_images/sphx_glr_contour_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_frontpage_001.png b/_images/sphx_glr_contour_frontpage_001.png deleted file mode 120000 index d5b06cbdc3e..00000000000 --- a/_images/sphx_glr_contour_frontpage_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_contour_frontpage_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_frontpage_001_2_0x.png b/_images/sphx_glr_contour_frontpage_001_2_0x.png deleted file mode 120000 index 4ed724ec9c8..00000000000 --- a/_images/sphx_glr_contour_frontpage_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_contour_frontpage_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_frontpage_thumb.png b/_images/sphx_glr_contour_frontpage_thumb.png deleted file mode 120000 index f7eed7955ba..00000000000 --- a/_images/sphx_glr_contour_frontpage_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_contour_frontpage_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_image_001.png b/_images/sphx_glr_contour_image_001.png deleted file mode 120000 index 700e2a8bd11..00000000000 --- a/_images/sphx_glr_contour_image_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_image_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_image_001_2_0x.png b/_images/sphx_glr_contour_image_001_2_0x.png deleted file mode 120000 index 45cf3c4510e..00000000000 --- a/_images/sphx_glr_contour_image_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_image_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_image_thumb.png b/_images/sphx_glr_contour_image_thumb.png deleted file mode 120000 index e1f3616e796..00000000000 --- a/_images/sphx_glr_contour_image_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_image_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_label_demo_001.png b/_images/sphx_glr_contour_label_demo_001.png deleted file mode 120000 index 1dbe32076d0..00000000000 --- a/_images/sphx_glr_contour_label_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_label_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_label_demo_001_2_0x.png b/_images/sphx_glr_contour_label_demo_001_2_0x.png deleted file mode 120000 index 7cef881a348..00000000000 --- a/_images/sphx_glr_contour_label_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_label_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_label_demo_002.png b/_images/sphx_glr_contour_label_demo_002.png deleted file mode 120000 index 234f3ae15e6..00000000000 --- a/_images/sphx_glr_contour_label_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_label_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_label_demo_002_2_0x.png b/_images/sphx_glr_contour_label_demo_002_2_0x.png deleted file mode 120000 index 002380bbc9d..00000000000 --- a/_images/sphx_glr_contour_label_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_label_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_label_demo_003.png b/_images/sphx_glr_contour_label_demo_003.png deleted file mode 120000 index 5d655ba1694..00000000000 --- a/_images/sphx_glr_contour_label_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_label_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_label_demo_003_2_0x.png b/_images/sphx_glr_contour_label_demo_003_2_0x.png deleted file mode 120000 index 4a3e07f288c..00000000000 --- a/_images/sphx_glr_contour_label_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_label_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_label_demo_thumb.png b/_images/sphx_glr_contour_label_demo_thumb.png deleted file mode 120000 index 4f5f6336bf0..00000000000 --- a/_images/sphx_glr_contour_label_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_label_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_manual_001.png b/_images/sphx_glr_contour_manual_001.png deleted file mode 120000 index b84d5a818c7..00000000000 --- a/_images/sphx_glr_contour_manual_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_manual_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_manual_001_2_0x.png b/_images/sphx_glr_contour_manual_001_2_0x.png deleted file mode 120000 index 15e755e1c5d..00000000000 --- a/_images/sphx_glr_contour_manual_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_manual_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_manual_002.png b/_images/sphx_glr_contour_manual_002.png deleted file mode 120000 index 5ddd8c4d513..00000000000 --- a/_images/sphx_glr_contour_manual_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_manual_002.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_manual_002_2_0x.png b/_images/sphx_glr_contour_manual_002_2_0x.png deleted file mode 120000 index 511303ab68f..00000000000 --- a/_images/sphx_glr_contour_manual_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_manual_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_manual_thumb.png b/_images/sphx_glr_contour_manual_thumb.png deleted file mode 120000 index 11b5fd51f15..00000000000 --- a/_images/sphx_glr_contour_manual_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_manual_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contour_thumb.png b/_images/sphx_glr_contour_thumb.png deleted file mode 120000 index 9aaa53ae93d..00000000000 --- a/_images/sphx_glr_contour_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contour_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_001.png b/_images/sphx_glr_contourf3d_001.png deleted file mode 120000 index 8cca136160f..00000000000 --- a/_images/sphx_glr_contourf3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_0011.png b/_images/sphx_glr_contourf3d_0011.png deleted file mode 120000 index e436c92a005..00000000000 --- a/_images/sphx_glr_contourf3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_contourf3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_001_2_0x.png b/_images/sphx_glr_contourf3d_001_2_0x.png deleted file mode 120000 index 3b6f9231981..00000000000 --- a/_images/sphx_glr_contourf3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_2_001.png b/_images/sphx_glr_contourf3d_2_001.png deleted file mode 120000 index dbfafe36307..00000000000 --- a/_images/sphx_glr_contourf3d_2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf3d_2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_2_0011.png b/_images/sphx_glr_contourf3d_2_0011.png deleted file mode 120000 index fae8ac11a74..00000000000 --- a/_images/sphx_glr_contourf3d_2_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_contourf3d_2_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_2_0012.png b/_images/sphx_glr_contourf3d_2_0012.png deleted file mode 120000 index 575e3e12c8b..00000000000 --- a/_images/sphx_glr_contourf3d_2_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_contourf3d_2_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_2_001_2_0x.png b/_images/sphx_glr_contourf3d_2_001_2_0x.png deleted file mode 120000 index 09bc8b70dc1..00000000000 --- a/_images/sphx_glr_contourf3d_2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf3d_2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_2_thumb.png b/_images/sphx_glr_contourf3d_2_thumb.png deleted file mode 120000 index 0104f906d3f..00000000000 --- a/_images/sphx_glr_contourf3d_2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf3d_2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf3d_thumb.png b/_images/sphx_glr_contourf3d_thumb.png deleted file mode 120000 index 39f4a3b541b..00000000000 --- a/_images/sphx_glr_contourf3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_001.png b/_images/sphx_glr_contourf_001.png deleted file mode 120000 index 3edb29a9f55..00000000000 --- a/_images/sphx_glr_contourf_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_001_2_0x.png b/_images/sphx_glr_contourf_001_2_0x.png deleted file mode 120000 index 3b522a33dbf..00000000000 --- a/_images/sphx_glr_contourf_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_demo_001.png b/_images/sphx_glr_contourf_demo_001.png deleted file mode 120000 index 462cab4217b..00000000000 --- a/_images/sphx_glr_contourf_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_demo_001_2_0x.png b/_images/sphx_glr_contourf_demo_001_2_0x.png deleted file mode 120000 index 748447d4579..00000000000 --- a/_images/sphx_glr_contourf_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_demo_002.png b/_images/sphx_glr_contourf_demo_002.png deleted file mode 120000 index aaf8c9eecff..00000000000 --- a/_images/sphx_glr_contourf_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_demo_002_2_0x.png b/_images/sphx_glr_contourf_demo_002_2_0x.png deleted file mode 120000 index e88aeabcf90..00000000000 --- a/_images/sphx_glr_contourf_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_demo_003.png b/_images/sphx_glr_contourf_demo_003.png deleted file mode 120000 index 68463313d56..00000000000 --- a/_images/sphx_glr_contourf_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_demo_003_2_0x.png b/_images/sphx_glr_contourf_demo_003_2_0x.png deleted file mode 120000 index 65d8389cdfd..00000000000 --- a/_images/sphx_glr_contourf_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_demo_thumb.png b/_images/sphx_glr_contourf_demo_thumb.png deleted file mode 120000 index 882516f98f9..00000000000 --- a/_images/sphx_glr_contourf_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_hatching_001.png b/_images/sphx_glr_contourf_hatching_001.png deleted file mode 120000 index 6dec50dce26..00000000000 --- a/_images/sphx_glr_contourf_hatching_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_hatching_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_hatching_0011.png b/_images/sphx_glr_contourf_hatching_0011.png deleted file mode 120000 index a97fa94fda3..00000000000 --- a/_images/sphx_glr_contourf_hatching_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_contourf_hatching_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_hatching_001_2_0x.png b/_images/sphx_glr_contourf_hatching_001_2_0x.png deleted file mode 120000 index 6be61735c17..00000000000 --- a/_images/sphx_glr_contourf_hatching_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_hatching_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_hatching_002.png b/_images/sphx_glr_contourf_hatching_002.png deleted file mode 120000 index 17569d88fee..00000000000 --- a/_images/sphx_glr_contourf_hatching_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_hatching_002.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_hatching_002_2_0x.png b/_images/sphx_glr_contourf_hatching_002_2_0x.png deleted file mode 120000 index 91f7725fa2b..00000000000 --- a/_images/sphx_glr_contourf_hatching_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_hatching_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_hatching_thumb.png b/_images/sphx_glr_contourf_hatching_thumb.png deleted file mode 120000 index 91cdfdb1596..00000000000 --- a/_images/sphx_glr_contourf_hatching_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_hatching_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_log_001.png b/_images/sphx_glr_contourf_log_001.png deleted file mode 120000 index 193794ce2e8..00000000000 --- a/_images/sphx_glr_contourf_log_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_log_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_log_001_2_0x.png b/_images/sphx_glr_contourf_log_001_2_0x.png deleted file mode 120000 index 4e321bc2886..00000000000 --- a/_images/sphx_glr_contourf_log_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_log_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_log_thumb.png b/_images/sphx_glr_contourf_log_thumb.png deleted file mode 120000 index f0fbf15aeb7..00000000000 --- a/_images/sphx_glr_contourf_log_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_log_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contourf_thumb.png b/_images/sphx_glr_contourf_thumb.png deleted file mode 120000 index 72561c5e923..00000000000 --- a/_images/sphx_glr_contourf_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contourf_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_contours_in_optimization_demo_001.png b/_images/sphx_glr_contours_in_optimization_demo_001.png deleted file mode 120000 index 0f5efb4401c..00000000000 --- a/_images/sphx_glr_contours_in_optimization_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contours_in_optimization_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_contours_in_optimization_demo_001_2_0x.png b/_images/sphx_glr_contours_in_optimization_demo_001_2_0x.png deleted file mode 120000 index 0ee8ec59b0c..00000000000 --- a/_images/sphx_glr_contours_in_optimization_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contours_in_optimization_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_contours_in_optimization_demo_thumb.png b/_images/sphx_glr_contours_in_optimization_demo_thumb.png deleted file mode 120000 index 81ea3155887..00000000000 --- a/_images/sphx_glr_contours_in_optimization_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_contours_in_optimization_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_coords_demo_001.png b/_images/sphx_glr_coords_demo_001.png deleted file mode 120000 index e51e47c5b8a..00000000000 --- a/_images/sphx_glr_coords_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_coords_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_coords_demo_001_2_0x.png b/_images/sphx_glr_coords_demo_001_2_0x.png deleted file mode 120000 index 0413cd579b2..00000000000 --- a/_images/sphx_glr_coords_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_coords_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_coords_demo_thumb.png b/_images/sphx_glr_coords_demo_thumb.png deleted file mode 120000 index c28b291d2c9..00000000000 --- a/_images/sphx_glr_coords_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_coords_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_coords_report_001.png b/_images/sphx_glr_coords_report_001.png deleted file mode 120000 index 515191d2c0f..00000000000 --- a/_images/sphx_glr_coords_report_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_coords_report_001.png \ No newline at end of file diff --git a/_images/sphx_glr_coords_report_001_2_0x.png b/_images/sphx_glr_coords_report_001_2_0x.png deleted file mode 120000 index 0c2ab7b27d3..00000000000 --- a/_images/sphx_glr_coords_report_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_coords_report_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_coords_report_thumb.png b/_images/sphx_glr_coords_report_thumb.png deleted file mode 120000 index 12ec6d9cc8a..00000000000 --- a/_images/sphx_glr_coords_report_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_coords_report_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_create_subplots_001.png b/_images/sphx_glr_create_subplots_001.png deleted file mode 120000 index c2c57809457..00000000000 --- a/_images/sphx_glr_create_subplots_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_create_subplots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_create_subplots_002.png b/_images/sphx_glr_create_subplots_002.png deleted file mode 120000 index c3e0d177356..00000000000 --- a/_images/sphx_glr_create_subplots_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_create_subplots_002.png \ No newline at end of file diff --git a/_images/sphx_glr_create_subplots_003.png b/_images/sphx_glr_create_subplots_003.png deleted file mode 120000 index 365097e3152..00000000000 --- a/_images/sphx_glr_create_subplots_003.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_create_subplots_003.png \ No newline at end of file diff --git a/_images/sphx_glr_create_subplots_thumb.png b/_images/sphx_glr_create_subplots_thumb.png deleted file mode 120000 index 589ab8a8bfc..00000000000 --- a/_images/sphx_glr_create_subplots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_create_subplots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_csd_demo_001.png b/_images/sphx_glr_csd_demo_001.png deleted file mode 120000 index b98c773403b..00000000000 --- a/_images/sphx_glr_csd_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_csd_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_csd_demo_001_2_0x.png b/_images/sphx_glr_csd_demo_001_2_0x.png deleted file mode 120000 index 2916033f82a..00000000000 --- a/_images/sphx_glr_csd_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_csd_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_csd_demo_thumb.png b/_images/sphx_glr_csd_demo_thumb.png deleted file mode 120000 index ecec76d654d..00000000000 --- a/_images/sphx_glr_csd_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_csd_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_001.png b/_images/sphx_glr_cursor_001.png deleted file mode 120000 index 92b48b84239..00000000000 --- a/_images/sphx_glr_cursor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_001_2_0x.png b/_images/sphx_glr_cursor_001_2_0x.png deleted file mode 120000 index 41b61612372..00000000000 --- a/_images/sphx_glr_cursor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_001.png b/_images/sphx_glr_cursor_demo_001.png deleted file mode 120000 index 3130d6007bc..00000000000 --- a/_images/sphx_glr_cursor_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_001_2_0x.png b/_images/sphx_glr_cursor_demo_001_2_0x.png deleted file mode 120000 index 414cf7d1220..00000000000 --- a/_images/sphx_glr_cursor_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_002.png b/_images/sphx_glr_cursor_demo_002.png deleted file mode 120000 index 0f9ae9f73e9..00000000000 --- a/_images/sphx_glr_cursor_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_002_2_0x.png b/_images/sphx_glr_cursor_demo_002_2_0x.png deleted file mode 120000 index e1c0c01925f..00000000000 --- a/_images/sphx_glr_cursor_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_003.png b/_images/sphx_glr_cursor_demo_003.png deleted file mode 120000 index de20d10b134..00000000000 --- a/_images/sphx_glr_cursor_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_003_2_0x.png b/_images/sphx_glr_cursor_demo_003_2_0x.png deleted file mode 120000 index 5ba70ae8f08..00000000000 --- a/_images/sphx_glr_cursor_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_sgskip_thumb.png b/_images/sphx_glr_cursor_demo_sgskip_thumb.png deleted file mode 120000 index a1b28d77ab0..00000000000 --- a/_images/sphx_glr_cursor_demo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_cursor_demo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_demo_thumb.png b/_images/sphx_glr_cursor_demo_thumb.png deleted file mode 120000 index 9d7d05b38f6..00000000000 --- a/_images/sphx_glr_cursor_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_cursor_thumb.png b/_images/sphx_glr_cursor_thumb.png deleted file mode 120000 index 0df0342d07b..00000000000 --- a/_images/sphx_glr_cursor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_cursor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_curve_error_band_001.png b/_images/sphx_glr_curve_error_band_001.png deleted file mode 120000 index 5ef6063a67f..00000000000 --- a/_images/sphx_glr_curve_error_band_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_curve_error_band_001.png \ No newline at end of file diff --git a/_images/sphx_glr_curve_error_band_001_2_0x.png b/_images/sphx_glr_curve_error_band_001_2_0x.png deleted file mode 120000 index eb50924bfd6..00000000000 --- a/_images/sphx_glr_curve_error_band_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_curve_error_band_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_curve_error_band_002.png b/_images/sphx_glr_curve_error_band_002.png deleted file mode 120000 index f49d1dde69c..00000000000 --- a/_images/sphx_glr_curve_error_band_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_curve_error_band_002.png \ No newline at end of file diff --git a/_images/sphx_glr_curve_error_band_002_2_0x.png b/_images/sphx_glr_curve_error_band_002_2_0x.png deleted file mode 120000 index 2e4e80961fe..00000000000 --- a/_images/sphx_glr_curve_error_band_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_curve_error_band_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_curve_error_band_thumb.png b/_images/sphx_glr_curve_error_band_thumb.png deleted file mode 120000 index 0bee9ac7f47..00000000000 --- a/_images/sphx_glr_curve_error_band_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_curve_error_band_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle01_001.png b/_images/sphx_glr_custom_boxstyle01_001.png deleted file mode 120000 index 22ca79cd3cf..00000000000 --- a/_images/sphx_glr_custom_boxstyle01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_boxstyle01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle01_0011.png b/_images/sphx_glr_custom_boxstyle01_0011.png deleted file mode 120000 index d675e036ee0..00000000000 --- a/_images/sphx_glr_custom_boxstyle01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_custom_boxstyle01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle01_001_2_0x.png b/_images/sphx_glr_custom_boxstyle01_001_2_0x.png deleted file mode 120000 index 47d2621821f..00000000000 --- a/_images/sphx_glr_custom_boxstyle01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_boxstyle01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle01_002.png b/_images/sphx_glr_custom_boxstyle01_002.png deleted file mode 120000 index 346c42f2556..00000000000 --- a/_images/sphx_glr_custom_boxstyle01_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_boxstyle01_002.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle01_002_2_0x.png b/_images/sphx_glr_custom_boxstyle01_002_2_0x.png deleted file mode 120000 index 8bcb1d2ec71..00000000000 --- a/_images/sphx_glr_custom_boxstyle01_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_boxstyle01_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle01_thumb.png b/_images/sphx_glr_custom_boxstyle01_thumb.png deleted file mode 120000 index 1ec563b0fb1..00000000000 --- a/_images/sphx_glr_custom_boxstyle01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_boxstyle01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle02_001.png b/_images/sphx_glr_custom_boxstyle02_001.png deleted file mode 120000 index dcba7d68149..00000000000 --- a/_images/sphx_glr_custom_boxstyle02_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_custom_boxstyle02_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle02_0011.png b/_images/sphx_glr_custom_boxstyle02_0011.png deleted file mode 120000 index 316bb436d44..00000000000 --- a/_images/sphx_glr_custom_boxstyle02_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_custom_boxstyle02_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_boxstyle02_thumb.png b/_images/sphx_glr_custom_boxstyle02_thumb.png deleted file mode 120000 index 139b3af85d2..00000000000 --- a/_images/sphx_glr_custom_boxstyle02_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_custom_boxstyle02_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_cmap_001.png b/_images/sphx_glr_custom_cmap_001.png deleted file mode 120000 index 196f0acb006..00000000000 --- a/_images/sphx_glr_custom_cmap_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_cmap_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_cmap_001_2_0x.png b/_images/sphx_glr_custom_cmap_001_2_0x.png deleted file mode 120000 index 176b01e79d3..00000000000 --- a/_images/sphx_glr_custom_cmap_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_cmap_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_cmap_002.png b/_images/sphx_glr_custom_cmap_002.png deleted file mode 120000 index 89a641d629d..00000000000 --- a/_images/sphx_glr_custom_cmap_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_cmap_002.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_cmap_002_2_0x.png b/_images/sphx_glr_custom_cmap_002_2_0x.png deleted file mode 120000 index 68a2af239f8..00000000000 --- a/_images/sphx_glr_custom_cmap_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_cmap_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_cmap_thumb.png b/_images/sphx_glr_custom_cmap_thumb.png deleted file mode 120000 index ce9391a7373..00000000000 --- a/_images/sphx_glr_custom_cmap_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_cmap_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_date_formatter_001.png b/_images/sphx_glr_custom_date_formatter_001.png deleted file mode 120000 index 9bea91a1a3a..00000000000 --- a/_images/sphx_glr_custom_date_formatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_custom_date_formatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_date_formatter_thumb.png b/_images/sphx_glr_custom_date_formatter_thumb.png deleted file mode 120000 index 643560c72a4..00000000000 --- a/_images/sphx_glr_custom_date_formatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_custom_date_formatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_figure_class_001.png b/_images/sphx_glr_custom_figure_class_001.png deleted file mode 120000 index f32d6959ad5..00000000000 --- a/_images/sphx_glr_custom_figure_class_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_figure_class_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_figure_class_001_2_0x.png b/_images/sphx_glr_custom_figure_class_001_2_0x.png deleted file mode 120000 index abd8508a782..00000000000 --- a/_images/sphx_glr_custom_figure_class_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_figure_class_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_figure_class_thumb.png b/_images/sphx_glr_custom_figure_class_thumb.png deleted file mode 120000 index c4cd5629f56..00000000000 --- a/_images/sphx_glr_custom_figure_class_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_figure_class_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_legends_001.png b/_images/sphx_glr_custom_legends_001.png deleted file mode 120000 index c62566f3046..00000000000 --- a/_images/sphx_glr_custom_legends_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_legends_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_legends_001_2_0x.png b/_images/sphx_glr_custom_legends_001_2_0x.png deleted file mode 120000 index cb0ecb64d24..00000000000 --- a/_images/sphx_glr_custom_legends_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_legends_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_legends_002.png b/_images/sphx_glr_custom_legends_002.png deleted file mode 120000 index 5022be17a03..00000000000 --- a/_images/sphx_glr_custom_legends_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_legends_002.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_legends_002_2_0x.png b/_images/sphx_glr_custom_legends_002_2_0x.png deleted file mode 120000 index a96957ebbab..00000000000 --- a/_images/sphx_glr_custom_legends_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_legends_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_legends_003.png b/_images/sphx_glr_custom_legends_003.png deleted file mode 120000 index 6172e57cf3f..00000000000 --- a/_images/sphx_glr_custom_legends_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_legends_003.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_legends_003_2_0x.png b/_images/sphx_glr_custom_legends_003_2_0x.png deleted file mode 120000 index 2bbfc6308bb..00000000000 --- a/_images/sphx_glr_custom_legends_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_legends_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_legends_thumb.png b/_images/sphx_glr_custom_legends_thumb.png deleted file mode 120000 index 46d4e40c72f..00000000000 --- a/_images/sphx_glr_custom_legends_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_legends_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_projection_001.png b/_images/sphx_glr_custom_projection_001.png deleted file mode 120000 index 1536c2faadb..00000000000 --- a/_images/sphx_glr_custom_projection_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_projection_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_projection_001_2_0x.png b/_images/sphx_glr_custom_projection_001_2_0x.png deleted file mode 120000 index 0e3c3781ae7..00000000000 --- a/_images/sphx_glr_custom_projection_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_projection_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_projection_example_001.png b/_images/sphx_glr_custom_projection_example_001.png deleted file mode 120000 index 7436264737d..00000000000 --- a/_images/sphx_glr_custom_projection_example_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_custom_projection_example_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_projection_example_thumb.png b/_images/sphx_glr_custom_projection_example_thumb.png deleted file mode 120000 index e357cfd9172..00000000000 --- a/_images/sphx_glr_custom_projection_example_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_custom_projection_example_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_projection_thumb.png b/_images/sphx_glr_custom_projection_thumb.png deleted file mode 120000 index 15f4a763ec1..00000000000 --- a/_images/sphx_glr_custom_projection_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_projection_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_scale_001.png b/_images/sphx_glr_custom_scale_001.png deleted file mode 120000 index 69628dd72dd..00000000000 --- a/_images/sphx_glr_custom_scale_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_scale_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_scale_001_2_0x.png b/_images/sphx_glr_custom_scale_001_2_0x.png deleted file mode 120000 index b2959120282..00000000000 --- a/_images/sphx_glr_custom_scale_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_scale_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_scale_example_001.png b/_images/sphx_glr_custom_scale_example_001.png deleted file mode 120000 index 697902f3e3c..00000000000 --- a/_images/sphx_glr_custom_scale_example_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_custom_scale_example_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_scale_example_thumb.png b/_images/sphx_glr_custom_scale_example_thumb.png deleted file mode 120000 index d178302b501..00000000000 --- a/_images/sphx_glr_custom_scale_example_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_custom_scale_example_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_scale_thumb.png b/_images/sphx_glr_custom_scale_thumb.png deleted file mode 120000 index 43c8c3a4511..00000000000 --- a/_images/sphx_glr_custom_scale_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_scale_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_shaded_3d_surface_001.png b/_images/sphx_glr_custom_shaded_3d_surface_001.png deleted file mode 120000 index 18195f9fa79..00000000000 --- a/_images/sphx_glr_custom_shaded_3d_surface_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_shaded_3d_surface_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_shaded_3d_surface_001_2_0x.png b/_images/sphx_glr_custom_shaded_3d_surface_001_2_0x.png deleted file mode 120000 index 813741dfa64..00000000000 --- a/_images/sphx_glr_custom_shaded_3d_surface_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_shaded_3d_surface_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_shaded_3d_surface_thumb.png b/_images/sphx_glr_custom_shaded_3d_surface_thumb.png deleted file mode 120000 index 3f947d0d47a..00000000000 --- a/_images/sphx_glr_custom_shaded_3d_surface_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_shaded_3d_surface_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_ticker1_001.png b/_images/sphx_glr_custom_ticker1_001.png deleted file mode 120000 index 2b59ba60ac4..00000000000 --- a/_images/sphx_glr_custom_ticker1_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_ticker1_001.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_ticker1_001_2_0x.png b/_images/sphx_glr_custom_ticker1_001_2_0x.png deleted file mode 120000 index c43814a5982..00000000000 --- a/_images/sphx_glr_custom_ticker1_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_ticker1_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_custom_ticker1_thumb.png b/_images/sphx_glr_custom_ticker1_thumb.png deleted file mode 120000 index 11ba9a4f788..00000000000 --- a/_images/sphx_glr_custom_ticker1_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_custom_ticker1_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_customize_rc_001.png b/_images/sphx_glr_customize_rc_001.png deleted file mode 120000 index ec7cb2f744d..00000000000 --- a/_images/sphx_glr_customize_rc_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customize_rc_001.png \ No newline at end of file diff --git a/_images/sphx_glr_customize_rc_001_2_0x.png b/_images/sphx_glr_customize_rc_001_2_0x.png deleted file mode 120000 index a56f50cb4c2..00000000000 --- a/_images/sphx_glr_customize_rc_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customize_rc_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customize_rc_thumb.png b/_images/sphx_glr_customize_rc_thumb.png deleted file mode 120000 index 7f58db6f0ec..00000000000 --- a/_images/sphx_glr_customize_rc_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customize_rc_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_customized_violin_001.png b/_images/sphx_glr_customized_violin_001.png deleted file mode 120000 index 3f2154ba8f1..00000000000 --- a/_images/sphx_glr_customized_violin_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customized_violin_001.png \ No newline at end of file diff --git a/_images/sphx_glr_customized_violin_001_2_0x.png b/_images/sphx_glr_customized_violin_001_2_0x.png deleted file mode 120000 index 80569e1ab77..00000000000 --- a/_images/sphx_glr_customized_violin_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customized_violin_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customized_violin_thumb.png b/_images/sphx_glr_customized_violin_thumb.png deleted file mode 120000 index 9b55c2524da..00000000000 --- a/_images/sphx_glr_customized_violin_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customized_violin_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_001.png b/_images/sphx_glr_customizing_001.png deleted file mode 120000 index 1b693a51bce..00000000000 --- a/_images/sphx_glr_customizing_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_001.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_001_2_0x.png b/_images/sphx_glr_customizing_001_2_0x.png deleted file mode 120000 index de0b4e1f739..00000000000 --- a/_images/sphx_glr_customizing_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_002.png b/_images/sphx_glr_customizing_002.png deleted file mode 120000 index 8422a08dc42..00000000000 --- a/_images/sphx_glr_customizing_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_002.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_002_2_0x.png b/_images/sphx_glr_customizing_002_2_0x.png deleted file mode 120000 index c4d2c4f8977..00000000000 --- a/_images/sphx_glr_customizing_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_003.png b/_images/sphx_glr_customizing_003.png deleted file mode 120000 index 1f1dd8bcc27..00000000000 --- a/_images/sphx_glr_customizing_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_003.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_003_2_0x.png b/_images/sphx_glr_customizing_003_2_0x.png deleted file mode 120000 index 32d5b602eb3..00000000000 --- a/_images/sphx_glr_customizing_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_004.png b/_images/sphx_glr_customizing_004.png deleted file mode 120000 index 2dc1769a30c..00000000000 --- a/_images/sphx_glr_customizing_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_004.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_004_2_0x.png b/_images/sphx_glr_customizing_004_2_0x.png deleted file mode 120000 index d18bc644a96..00000000000 --- a/_images/sphx_glr_customizing_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_005.png b/_images/sphx_glr_customizing_005.png deleted file mode 120000 index 918d562f69c..00000000000 --- a/_images/sphx_glr_customizing_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_005.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_005_2_0x.png b/_images/sphx_glr_customizing_005_2_0x.png deleted file mode 120000 index 1f3771aeea2..00000000000 --- a/_images/sphx_glr_customizing_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_006.png b/_images/sphx_glr_customizing_006.png deleted file mode 120000 index 1494ebf63a2..00000000000 --- a/_images/sphx_glr_customizing_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_006.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_006_2_0x.png b/_images/sphx_glr_customizing_006_2_0x.png deleted file mode 120000 index 4a6b57bb68b..00000000000 --- a/_images/sphx_glr_customizing_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_customizing_thumb.png b/_images/sphx_glr_customizing_thumb.png deleted file mode 120000 index a0b5aad50b8..00000000000 --- a/_images/sphx_glr_customizing_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_customizing_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_dark_background_001.png b/_images/sphx_glr_dark_background_001.png deleted file mode 120000 index aa268e6de1d..00000000000 --- a/_images/sphx_glr_dark_background_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dark_background_001.png \ No newline at end of file diff --git a/_images/sphx_glr_dark_background_001_2_0x.png b/_images/sphx_glr_dark_background_001_2_0x.png deleted file mode 120000 index ac605fdf10f..00000000000 --- a/_images/sphx_glr_dark_background_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dark_background_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_dark_background_thumb.png b/_images/sphx_glr_dark_background_thumb.png deleted file mode 120000 index d7bea605c71..00000000000 --- a/_images/sphx_glr_dark_background_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dark_background_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_dashpointlabel_001.png b/_images/sphx_glr_dashpointlabel_001.png deleted file mode 120000 index 04e55a3db3a..00000000000 --- a/_images/sphx_glr_dashpointlabel_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_dashpointlabel_001.png \ No newline at end of file diff --git a/_images/sphx_glr_dashpointlabel_thumb.png b/_images/sphx_glr_dashpointlabel_thumb.png deleted file mode 120000 index 25e46d4b655..00000000000 --- a/_images/sphx_glr_dashpointlabel_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_dashpointlabel_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_data_browser_001.png b/_images/sphx_glr_data_browser_001.png deleted file mode 120000 index 88d07b06e3c..00000000000 --- a/_images/sphx_glr_data_browser_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_data_browser_001.png \ No newline at end of file diff --git a/_images/sphx_glr_data_browser_001_2_0x.png b/_images/sphx_glr_data_browser_001_2_0x.png deleted file mode 120000 index 6dd1882d350..00000000000 --- a/_images/sphx_glr_data_browser_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_data_browser_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_data_browser_thumb.png b/_images/sphx_glr_data_browser_thumb.png deleted file mode 120000 index 9efe1db1fbe..00000000000 --- a/_images/sphx_glr_data_browser_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_data_browser_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_date_001.png b/_images/sphx_glr_date_001.png deleted file mode 120000 index 747137f7b20..00000000000 --- a/_images/sphx_glr_date_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_001.png \ No newline at end of file diff --git a/_images/sphx_glr_date_0011.png b/_images/sphx_glr_date_0011.png deleted file mode 120000 index 2740bc5cd5a..00000000000 --- a/_images/sphx_glr_date_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_date_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_date_001_2_0x.png b/_images/sphx_glr_date_001_2_0x.png deleted file mode 120000 index 4a77f0b838f..00000000000 --- a/_images/sphx_glr_date_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_001.png b/_images/sphx_glr_date_concise_formatter_001.png deleted file mode 120000 index d48a05c6574..00000000000 --- a/_images/sphx_glr_date_concise_formatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_001_2_0x.png b/_images/sphx_glr_date_concise_formatter_001_2_0x.png deleted file mode 120000 index ea8bb1e1c6f..00000000000 --- a/_images/sphx_glr_date_concise_formatter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_002.png b/_images/sphx_glr_date_concise_formatter_002.png deleted file mode 120000 index 3fbb9133750..00000000000 --- a/_images/sphx_glr_date_concise_formatter_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_002.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_002_2_0x.png b/_images/sphx_glr_date_concise_formatter_002_2_0x.png deleted file mode 120000 index e0de533ec4d..00000000000 --- a/_images/sphx_glr_date_concise_formatter_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_003.png b/_images/sphx_glr_date_concise_formatter_003.png deleted file mode 120000 index 10da9fdac6a..00000000000 --- a/_images/sphx_glr_date_concise_formatter_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_003.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_003_2_0x.png b/_images/sphx_glr_date_concise_formatter_003_2_0x.png deleted file mode 120000 index 70fb04b06ef..00000000000 --- a/_images/sphx_glr_date_concise_formatter_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_004.png b/_images/sphx_glr_date_concise_formatter_004.png deleted file mode 120000 index b3390d1b33b..00000000000 --- a/_images/sphx_glr_date_concise_formatter_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_004.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_004_2_0x.png b/_images/sphx_glr_date_concise_formatter_004_2_0x.png deleted file mode 120000 index eba789f2097..00000000000 --- a/_images/sphx_glr_date_concise_formatter_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_005.png b/_images/sphx_glr_date_concise_formatter_005.png deleted file mode 120000 index e5ca448e52b..00000000000 --- a/_images/sphx_glr_date_concise_formatter_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_005.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_005_2_0x.png b/_images/sphx_glr_date_concise_formatter_005_2_0x.png deleted file mode 120000 index 6b408c57afe..00000000000 --- a/_images/sphx_glr_date_concise_formatter_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_concise_formatter_thumb.png b/_images/sphx_glr_date_concise_formatter_thumb.png deleted file mode 120000 index 4a2fafdaf19..00000000000 --- a/_images/sphx_glr_date_concise_formatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_concise_formatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_date_demo_convert_001.png b/_images/sphx_glr_date_demo_convert_001.png deleted file mode 120000 index 80fd4392e10..00000000000 --- a/_images/sphx_glr_date_demo_convert_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_demo_convert_001.png \ No newline at end of file diff --git a/_images/sphx_glr_date_demo_convert_001_2_0x.png b/_images/sphx_glr_date_demo_convert_001_2_0x.png deleted file mode 120000 index 84695bd1952..00000000000 --- a/_images/sphx_glr_date_demo_convert_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_demo_convert_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_demo_convert_thumb.png b/_images/sphx_glr_date_demo_convert_thumb.png deleted file mode 120000 index 839c2972408..00000000000 --- a/_images/sphx_glr_date_demo_convert_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_demo_convert_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_date_demo_rrule_001.png b/_images/sphx_glr_date_demo_rrule_001.png deleted file mode 120000 index fe82d705c93..00000000000 --- a/_images/sphx_glr_date_demo_rrule_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_demo_rrule_001.png \ No newline at end of file diff --git a/_images/sphx_glr_date_demo_rrule_001_2_0x.png b/_images/sphx_glr_date_demo_rrule_001_2_0x.png deleted file mode 120000 index 679e967a4ee..00000000000 --- a/_images/sphx_glr_date_demo_rrule_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_demo_rrule_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_demo_rrule_thumb.png b/_images/sphx_glr_date_demo_rrule_thumb.png deleted file mode 120000 index 753471b6ab0..00000000000 --- a/_images/sphx_glr_date_demo_rrule_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_demo_rrule_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter2_001.png b/_images/sphx_glr_date_index_formatter2_001.png deleted file mode 120000 index 45581df1ca5..00000000000 --- a/_images/sphx_glr_date_index_formatter2_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_date_index_formatter2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter2_001_2_0x.png b/_images/sphx_glr_date_index_formatter2_001_2_0x.png deleted file mode 120000 index dbc8ea1016b..00000000000 --- a/_images/sphx_glr_date_index_formatter2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_date_index_formatter2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter2_thumb.png b/_images/sphx_glr_date_index_formatter2_thumb.png deleted file mode 120000 index 914ba31969d..00000000000 --- a/_images/sphx_glr_date_index_formatter2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_date_index_formatter2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter_001.png b/_images/sphx_glr_date_index_formatter_001.png deleted file mode 120000 index a57230ba196..00000000000 --- a/_images/sphx_glr_date_index_formatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_index_formatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter_0011.png b/_images/sphx_glr_date_index_formatter_0011.png deleted file mode 120000 index ae3602f053c..00000000000 --- a/_images/sphx_glr_date_index_formatter_0011.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_date_index_formatter_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter_001_2_0x.png b/_images/sphx_glr_date_index_formatter_001_2_0x.png deleted file mode 120000 index 73ae9883b1e..00000000000 --- a/_images/sphx_glr_date_index_formatter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_index_formatter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter_thumb.png b/_images/sphx_glr_date_index_formatter_thumb.png deleted file mode 120000 index 25f8a7241c1..00000000000 --- a/_images/sphx_glr_date_index_formatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_index_formatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_date_index_formatter_thumb1.png b/_images/sphx_glr_date_index_formatter_thumb1.png deleted file mode 120000 index 24654f0f2a3..00000000000 --- a/_images/sphx_glr_date_index_formatter_thumb1.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_date_index_formatter_thumb1.png \ No newline at end of file diff --git a/_images/sphx_glr_date_precision_and_epochs_001.png b/_images/sphx_glr_date_precision_and_epochs_001.png deleted file mode 120000 index 9053c114113..00000000000 --- a/_images/sphx_glr_date_precision_and_epochs_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_precision_and_epochs_001.png \ No newline at end of file diff --git a/_images/sphx_glr_date_precision_and_epochs_001_2_0x.png b/_images/sphx_glr_date_precision_and_epochs_001_2_0x.png deleted file mode 120000 index eae4ef82cbc..00000000000 --- a/_images/sphx_glr_date_precision_and_epochs_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_precision_and_epochs_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_precision_and_epochs_002.png b/_images/sphx_glr_date_precision_and_epochs_002.png deleted file mode 120000 index 73b1825a7be..00000000000 --- a/_images/sphx_glr_date_precision_and_epochs_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_precision_and_epochs_002.png \ No newline at end of file diff --git a/_images/sphx_glr_date_precision_and_epochs_002_2_0x.png b/_images/sphx_glr_date_precision_and_epochs_002_2_0x.png deleted file mode 120000 index d4b9c33da7b..00000000000 --- a/_images/sphx_glr_date_precision_and_epochs_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_precision_and_epochs_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_date_precision_and_epochs_thumb.png b/_images/sphx_glr_date_precision_and_epochs_thumb.png deleted file mode 120000 index 8edb2c59b41..00000000000 --- a/_images/sphx_glr_date_precision_and_epochs_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_precision_and_epochs_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_date_thumb.png b/_images/sphx_glr_date_thumb.png deleted file mode 120000 index bd34d99dbce..00000000000 --- a/_images/sphx_glr_date_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_date_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_agg_filter_001.png b/_images/sphx_glr_demo_agg_filter_001.png deleted file mode 120000 index 0807b1a10e4..00000000000 --- a/_images/sphx_glr_demo_agg_filter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_agg_filter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_agg_filter_001_2_0x.png b/_images/sphx_glr_demo_agg_filter_001_2_0x.png deleted file mode 120000 index 9bc22c3662e..00000000000 --- a/_images/sphx_glr_demo_agg_filter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_agg_filter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_agg_filter_thumb.png b/_images/sphx_glr_demo_agg_filter_thumb.png deleted file mode 120000 index a1b34ab2bb8..00000000000 --- a/_images/sphx_glr_demo_agg_filter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_agg_filter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_anchored_direction_arrows_001.png b/_images/sphx_glr_demo_anchored_direction_arrows_001.png deleted file mode 120000 index dc1491e0624..00000000000 --- a/_images/sphx_glr_demo_anchored_direction_arrows_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_anchored_direction_arrows_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_anchored_direction_arrows_001_2_0x.png b/_images/sphx_glr_demo_anchored_direction_arrows_001_2_0x.png deleted file mode 120000 index 1493609224e..00000000000 --- a/_images/sphx_glr_demo_anchored_direction_arrows_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_anchored_direction_arrows_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_anchored_direction_arrows_thumb.png b/_images/sphx_glr_demo_anchored_direction_arrows_thumb.png deleted file mode 120000 index 753eede567f..00000000000 --- a/_images/sphx_glr_demo_anchored_direction_arrows_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_anchored_direction_arrows_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_annotation_box_001.png b/_images/sphx_glr_demo_annotation_box_001.png deleted file mode 120000 index a4fc3b90f99..00000000000 --- a/_images/sphx_glr_demo_annotation_box_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_annotation_box_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_annotation_box_001_2_0x.png b/_images/sphx_glr_demo_annotation_box_001_2_0x.png deleted file mode 120000 index 5cfc14ff3cf..00000000000 --- a/_images/sphx_glr_demo_annotation_box_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_annotation_box_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_annotation_box_thumb.png b/_images/sphx_glr_demo_annotation_box_thumb.png deleted file mode 120000 index 5067ace5e2b..00000000000 --- a/_images/sphx_glr_demo_annotation_box_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_annotation_box_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_divider_001.png b/_images/sphx_glr_demo_axes_divider_001.png deleted file mode 120000 index 582bfa1a9a0..00000000000 --- a/_images/sphx_glr_demo_axes_divider_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_divider_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_divider_001_2_0x.png b/_images/sphx_glr_demo_axes_divider_001_2_0x.png deleted file mode 120000 index 45bc80ce6c8..00000000000 --- a/_images/sphx_glr_demo_axes_divider_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_divider_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_divider_thumb.png b/_images/sphx_glr_demo_axes_divider_thumb.png deleted file mode 120000 index 5e87fcf829d..00000000000 --- a/_images/sphx_glr_demo_axes_divider_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_divider_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid2_001.png b/_images/sphx_glr_demo_axes_grid2_001.png deleted file mode 120000 index b6b135b1eda..00000000000 --- a/_images/sphx_glr_demo_axes_grid2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_grid2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid2_001_2_0x.png b/_images/sphx_glr_demo_axes_grid2_001_2_0x.png deleted file mode 120000 index fe1a7945082..00000000000 --- a/_images/sphx_glr_demo_axes_grid2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_grid2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid2_thumb.png b/_images/sphx_glr_demo_axes_grid2_thumb.png deleted file mode 120000 index 3d77a61c0b1..00000000000 --- a/_images/sphx_glr_demo_axes_grid2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_grid2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid_001.png b/_images/sphx_glr_demo_axes_grid_001.png deleted file mode 120000 index 3e2d69e0e0b..00000000000 --- a/_images/sphx_glr_demo_axes_grid_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_grid_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid_0011.png b/_images/sphx_glr_demo_axes_grid_0011.png deleted file mode 120000 index 42a70ea1654..00000000000 --- a/_images/sphx_glr_demo_axes_grid_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_axes_grid_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid_0012.png b/_images/sphx_glr_demo_axes_grid_0012.png deleted file mode 120000 index 63f52f049e5..00000000000 --- a/_images/sphx_glr_demo_axes_grid_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_axes_grid_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid_001_2_0x.png b/_images/sphx_glr_demo_axes_grid_001_2_0x.png deleted file mode 120000 index 0c7440dc6f3..00000000000 --- a/_images/sphx_glr_demo_axes_grid_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_grid_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_grid_thumb.png b/_images/sphx_glr_demo_axes_grid_thumb.png deleted file mode 120000 index 9a9887d414b..00000000000 --- a/_images/sphx_glr_demo_axes_grid_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_grid_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_hbox_divider_001.png b/_images/sphx_glr_demo_axes_hbox_divider_001.png deleted file mode 120000 index fb3b9c1d87a..00000000000 --- a/_images/sphx_glr_demo_axes_hbox_divider_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_hbox_divider_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_hbox_divider_001_2_0x.png b/_images/sphx_glr_demo_axes_hbox_divider_001_2_0x.png deleted file mode 120000 index bdf32599bce..00000000000 --- a/_images/sphx_glr_demo_axes_hbox_divider_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_hbox_divider_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_hbox_divider_thumb.png b/_images/sphx_glr_demo_axes_hbox_divider_thumb.png deleted file mode 120000 index 211b72d7966..00000000000 --- a/_images/sphx_glr_demo_axes_hbox_divider_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_hbox_divider_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_rgb_001.png b/_images/sphx_glr_demo_axes_rgb_001.png deleted file mode 120000 index 4b7dee52f72..00000000000 --- a/_images/sphx_glr_demo_axes_rgb_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_rgb_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_rgb_0011.png b/_images/sphx_glr_demo_axes_rgb_0011.png deleted file mode 120000 index c59b5990458..00000000000 --- a/_images/sphx_glr_demo_axes_rgb_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_axes_rgb_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_rgb_001_2_0x.png b/_images/sphx_glr_demo_axes_rgb_001_2_0x.png deleted file mode 120000 index fd7b63b8956..00000000000 --- a/_images/sphx_glr_demo_axes_rgb_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_rgb_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_rgb_002.png b/_images/sphx_glr_demo_axes_rgb_002.png deleted file mode 120000 index cadd6426d22..00000000000 --- a/_images/sphx_glr_demo_axes_rgb_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_rgb_002.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_rgb_002_2_0x.png b/_images/sphx_glr_demo_axes_rgb_002_2_0x.png deleted file mode 120000 index 98256307048..00000000000 --- a/_images/sphx_glr_demo_axes_rgb_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_rgb_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axes_rgb_thumb.png b/_images/sphx_glr_demo_axes_rgb_thumb.png deleted file mode 120000 index 873b99ec64a..00000000000 --- a/_images/sphx_glr_demo_axes_rgb_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axes_rgb_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axis_direction_001.png b/_images/sphx_glr_demo_axis_direction_001.png deleted file mode 120000 index 25d9d8429cc..00000000000 --- a/_images/sphx_glr_demo_axis_direction_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axis_direction_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axis_direction_0011.png b/_images/sphx_glr_demo_axis_direction_0011.png deleted file mode 120000 index e3f36d0d771..00000000000 --- a/_images/sphx_glr_demo_axis_direction_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_axis_direction_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axis_direction_001_2_0x.png b/_images/sphx_glr_demo_axis_direction_001_2_0x.png deleted file mode 120000 index aff0af8dd3f..00000000000 --- a/_images/sphx_glr_demo_axis_direction_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axis_direction_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axis_direction_thumb.png b/_images/sphx_glr_demo_axis_direction_thumb.png deleted file mode 120000 index f647b6633d0..00000000000 --- a/_images/sphx_glr_demo_axis_direction_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axis_direction_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axisline_style_001.png b/_images/sphx_glr_demo_axisline_style_001.png deleted file mode 120000 index cc2913b67a1..00000000000 --- a/_images/sphx_glr_demo_axisline_style_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axisline_style_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axisline_style_001_2_0x.png b/_images/sphx_glr_demo_axisline_style_001_2_0x.png deleted file mode 120000 index 5878601f85d..00000000000 --- a/_images/sphx_glr_demo_axisline_style_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axisline_style_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_axisline_style_thumb.png b/_images/sphx_glr_demo_axisline_style_thumb.png deleted file mode 120000 index b26baa70aeb..00000000000 --- a/_images/sphx_glr_demo_axisline_style_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_axisline_style_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_bboximage_001.png b/_images/sphx_glr_demo_bboximage_001.png deleted file mode 120000 index e216e5278d6..00000000000 --- a/_images/sphx_glr_demo_bboximage_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_bboximage_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_bboximage_001_2_0x.png b/_images/sphx_glr_demo_bboximage_001_2_0x.png deleted file mode 120000 index 3682cf406e1..00000000000 --- a/_images/sphx_glr_demo_bboximage_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_bboximage_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_bboximage_thumb.png b/_images/sphx_glr_demo_bboximage_thumb.png deleted file mode 120000 index 8055afe3ba0..00000000000 --- a/_images/sphx_glr_demo_bboximage_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_bboximage_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_of_inset_axes_001.png b/_images/sphx_glr_demo_colorbar_of_inset_axes_001.png deleted file mode 120000 index dab942958cc..00000000000 --- a/_images/sphx_glr_demo_colorbar_of_inset_axes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_of_inset_axes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_of_inset_axes_001_2_0x.png b/_images/sphx_glr_demo_colorbar_of_inset_axes_001_2_0x.png deleted file mode 120000 index 33bc6b1f721..00000000000 --- a/_images/sphx_glr_demo_colorbar_of_inset_axes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_of_inset_axes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_of_inset_axes_thumb.png b/_images/sphx_glr_demo_colorbar_of_inset_axes_thumb.png deleted file mode 120000 index d27661ad4d5..00000000000 --- a/_images/sphx_glr_demo_colorbar_of_inset_axes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_of_inset_axes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_with_axes_divider_001.png b/_images/sphx_glr_demo_colorbar_with_axes_divider_001.png deleted file mode 120000 index 591a60bfca6..00000000000 --- a/_images/sphx_glr_demo_colorbar_with_axes_divider_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_with_axes_divider_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_with_axes_divider_001_2_0x.png b/_images/sphx_glr_demo_colorbar_with_axes_divider_001_2_0x.png deleted file mode 120000 index 804912330c7..00000000000 --- a/_images/sphx_glr_demo_colorbar_with_axes_divider_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_with_axes_divider_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_with_axes_divider_thumb.png b/_images/sphx_glr_demo_colorbar_with_axes_divider_thumb.png deleted file mode 120000 index 43351b3142d..00000000000 --- a/_images/sphx_glr_demo_colorbar_with_axes_divider_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_with_axes_divider_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_with_inset_locator_001.png b/_images/sphx_glr_demo_colorbar_with_inset_locator_001.png deleted file mode 120000 index 5cda6300f1d..00000000000 --- a/_images/sphx_glr_demo_colorbar_with_inset_locator_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_with_inset_locator_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_with_inset_locator_001_2_0x.png b/_images/sphx_glr_demo_colorbar_with_inset_locator_001_2_0x.png deleted file mode 120000 index cbc68ea8d80..00000000000 --- a/_images/sphx_glr_demo_colorbar_with_inset_locator_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_with_inset_locator_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_colorbar_with_inset_locator_thumb.png b/_images/sphx_glr_demo_colorbar_with_inset_locator_thumb.png deleted file mode 120000 index bd44ab0947d..00000000000 --- a/_images/sphx_glr_demo_colorbar_with_inset_locator_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_colorbar_with_inset_locator_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_constrained_layout_001.png b/_images/sphx_glr_demo_constrained_layout_001.png deleted file mode 120000 index 9d8922798c8..00000000000 --- a/_images/sphx_glr_demo_constrained_layout_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_constrained_layout_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_constrained_layout_001_2_0x.png b/_images/sphx_glr_demo_constrained_layout_001_2_0x.png deleted file mode 120000 index ae53fb627a2..00000000000 --- a/_images/sphx_glr_demo_constrained_layout_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_constrained_layout_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_constrained_layout_002.png b/_images/sphx_glr_demo_constrained_layout_002.png deleted file mode 120000 index b91eaa4c5e4..00000000000 --- a/_images/sphx_glr_demo_constrained_layout_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_constrained_layout_002.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_constrained_layout_002_2_0x.png b/_images/sphx_glr_demo_constrained_layout_002_2_0x.png deleted file mode 120000 index b87c67cc8e6..00000000000 --- a/_images/sphx_glr_demo_constrained_layout_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_constrained_layout_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_constrained_layout_003.png b/_images/sphx_glr_demo_constrained_layout_003.png deleted file mode 120000 index fa653013391..00000000000 --- a/_images/sphx_glr_demo_constrained_layout_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_constrained_layout_003.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_constrained_layout_003_2_0x.png b/_images/sphx_glr_demo_constrained_layout_003_2_0x.png deleted file mode 120000 index 8383a4a1ede..00000000000 --- a/_images/sphx_glr_demo_constrained_layout_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_constrained_layout_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_constrained_layout_thumb.png b/_images/sphx_glr_demo_constrained_layout_thumb.png deleted file mode 120000 index 3c07fd9d774..00000000000 --- a/_images/sphx_glr_demo_constrained_layout_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_constrained_layout_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid2_001.png b/_images/sphx_glr_demo_curvelinear_grid2_001.png deleted file mode 120000 index 03a602b2922..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_curvelinear_grid2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid2_001_2_0x.png b/_images/sphx_glr_demo_curvelinear_grid2_001_2_0x.png deleted file mode 120000 index 80018ba90a1..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_curvelinear_grid2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid2_thumb.png b/_images/sphx_glr_demo_curvelinear_grid2_thumb.png deleted file mode 120000 index 2737aa029cf..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_curvelinear_grid2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid_001.png b/_images/sphx_glr_demo_curvelinear_grid_001.png deleted file mode 120000 index 25ff51b7a98..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_curvelinear_grid_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid_0011.png b/_images/sphx_glr_demo_curvelinear_grid_0011.png deleted file mode 120000 index 653b537f333..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_curvelinear_grid_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid_0012.png b/_images/sphx_glr_demo_curvelinear_grid_0012.png deleted file mode 120000 index 553db14b44a..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_curvelinear_grid_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid_001_2_0x.png b/_images/sphx_glr_demo_curvelinear_grid_001_2_0x.png deleted file mode 120000 index d9b47d665bf..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_curvelinear_grid_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_curvelinear_grid_thumb.png b/_images/sphx_glr_demo_curvelinear_grid_thumb.png deleted file mode 120000 index 1116a7b3b46..00000000000 --- a/_images/sphx_glr_demo_curvelinear_grid_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_curvelinear_grid_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_edge_colorbar_001.png b/_images/sphx_glr_demo_edge_colorbar_001.png deleted file mode 120000 index aa6aac97608..00000000000 --- a/_images/sphx_glr_demo_edge_colorbar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_edge_colorbar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_edge_colorbar_001_2_0x.png b/_images/sphx_glr_demo_edge_colorbar_001_2_0x.png deleted file mode 120000 index 682f9924e91..00000000000 --- a/_images/sphx_glr_demo_edge_colorbar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_edge_colorbar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_edge_colorbar_thumb.png b/_images/sphx_glr_demo_edge_colorbar_thumb.png deleted file mode 120000 index 48d78151637..00000000000 --- a/_images/sphx_glr_demo_edge_colorbar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_edge_colorbar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_fixed_size_axes_001.png b/_images/sphx_glr_demo_fixed_size_axes_001.png deleted file mode 120000 index 7b4bcfa1f14..00000000000 --- a/_images/sphx_glr_demo_fixed_size_axes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_fixed_size_axes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_fixed_size_axes_001_2_0x.png b/_images/sphx_glr_demo_fixed_size_axes_001_2_0x.png deleted file mode 120000 index b2c8079acaf..00000000000 --- a/_images/sphx_glr_demo_fixed_size_axes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_fixed_size_axes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_fixed_size_axes_002.png b/_images/sphx_glr_demo_fixed_size_axes_002.png deleted file mode 120000 index 4bf4915fecc..00000000000 --- a/_images/sphx_glr_demo_fixed_size_axes_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_fixed_size_axes_002.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_fixed_size_axes_002_2_0x.png b/_images/sphx_glr_demo_fixed_size_axes_002_2_0x.png deleted file mode 120000 index 7f31d3275a8..00000000000 --- a/_images/sphx_glr_demo_fixed_size_axes_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_fixed_size_axes_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_fixed_size_axes_thumb.png b/_images/sphx_glr_demo_fixed_size_axes_thumb.png deleted file mode 120000 index efdb1188049..00000000000 --- a/_images/sphx_glr_demo_fixed_size_axes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_fixed_size_axes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axes_001.png b/_images/sphx_glr_demo_floating_axes_001.png deleted file mode 120000 index 2a02ecba1a1..00000000000 --- a/_images/sphx_glr_demo_floating_axes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_floating_axes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axes_0011.png b/_images/sphx_glr_demo_floating_axes_0011.png deleted file mode 120000 index f7738a4e751..00000000000 --- a/_images/sphx_glr_demo_floating_axes_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_floating_axes_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axes_001_2_0x.png b/_images/sphx_glr_demo_floating_axes_001_2_0x.png deleted file mode 120000 index d3d44afd58a..00000000000 --- a/_images/sphx_glr_demo_floating_axes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_floating_axes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axes_thumb.png b/_images/sphx_glr_demo_floating_axes_thumb.png deleted file mode 120000 index 09ff41b76a4..00000000000 --- a/_images/sphx_glr_demo_floating_axes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_floating_axes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axis_001.png b/_images/sphx_glr_demo_floating_axis_001.png deleted file mode 120000 index 60c2e42dda9..00000000000 --- a/_images/sphx_glr_demo_floating_axis_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_floating_axis_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axis_0011.png b/_images/sphx_glr_demo_floating_axis_0011.png deleted file mode 120000 index 913aabf7690..00000000000 --- a/_images/sphx_glr_demo_floating_axis_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_floating_axis_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axis_001_2_0x.png b/_images/sphx_glr_demo_floating_axis_001_2_0x.png deleted file mode 120000 index a6016493483..00000000000 --- a/_images/sphx_glr_demo_floating_axis_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_floating_axis_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_floating_axis_thumb.png b/_images/sphx_glr_demo_floating_axis_thumb.png deleted file mode 120000 index 9416b97b770..00000000000 --- a/_images/sphx_glr_demo_floating_axis_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_floating_axis_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec01_000.png b/_images/sphx_glr_demo_gridspec01_000.png deleted file mode 120000 index 737dce4f7e1..00000000000 --- a/_images/sphx_glr_demo_gridspec01_000.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_demo_gridspec01_000.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec01_0001.png b/_images/sphx_glr_demo_gridspec01_0001.png deleted file mode 120000 index 94a1f2a3005..00000000000 --- a/_images/sphx_glr_demo_gridspec01_0001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_demo_gridspec01_0001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec01_001.png b/_images/sphx_glr_demo_gridspec01_001.png deleted file mode 120000 index e286814fe01..00000000000 --- a/_images/sphx_glr_demo_gridspec01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec01_0011.png b/_images/sphx_glr_demo_gridspec01_0011.png deleted file mode 120000 index d5d317485ca..00000000000 --- a/_images/sphx_glr_demo_gridspec01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_gridspec01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec01_001_2_0x.png b/_images/sphx_glr_demo_gridspec01_001_2_0x.png deleted file mode 120000 index 5044d5a040e..00000000000 --- a/_images/sphx_glr_demo_gridspec01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec01_thumb.png b/_images/sphx_glr_demo_gridspec01_thumb.png deleted file mode 120000 index 9d00bf86a0c..00000000000 --- a/_images/sphx_glr_demo_gridspec01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec02_001.png b/_images/sphx_glr_demo_gridspec02_001.png deleted file mode 120000 index 1d76522bdc5..00000000000 --- a/_images/sphx_glr_demo_gridspec02_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_demo_gridspec02_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec02_thumb.png b/_images/sphx_glr_demo_gridspec02_thumb.png deleted file mode 120000 index bac8bc75f17..00000000000 --- a/_images/sphx_glr_demo_gridspec02_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_demo_gridspec02_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec03_001.png b/_images/sphx_glr_demo_gridspec03_001.png deleted file mode 120000 index b73c4a8fba4..00000000000 --- a/_images/sphx_glr_demo_gridspec03_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec03_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec03_001_2_0x.png b/_images/sphx_glr_demo_gridspec03_001_2_0x.png deleted file mode 120000 index 198efb3ef13..00000000000 --- a/_images/sphx_glr_demo_gridspec03_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec03_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec03_002.png b/_images/sphx_glr_demo_gridspec03_002.png deleted file mode 120000 index 60a48133a47..00000000000 --- a/_images/sphx_glr_demo_gridspec03_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec03_002.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec03_002_2_0x.png b/_images/sphx_glr_demo_gridspec03_002_2_0x.png deleted file mode 120000 index e23209fad61..00000000000 --- a/_images/sphx_glr_demo_gridspec03_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec03_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec03_thumb.png b/_images/sphx_glr_demo_gridspec03_thumb.png deleted file mode 120000 index f65ae37e449..00000000000 --- a/_images/sphx_glr_demo_gridspec03_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec03_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec04_001.png b/_images/sphx_glr_demo_gridspec04_001.png deleted file mode 120000 index 1f5c997bd8e..00000000000 --- a/_images/sphx_glr_demo_gridspec04_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_demo_gridspec04_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec04_thumb.png b/_images/sphx_glr_demo_gridspec04_thumb.png deleted file mode 120000 index 9c6f65c3fa4..00000000000 --- a/_images/sphx_glr_demo_gridspec04_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_demo_gridspec04_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec05_001.png b/_images/sphx_glr_demo_gridspec05_001.png deleted file mode 120000 index 4dda709444b..00000000000 --- a/_images/sphx_glr_demo_gridspec05_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_demo_gridspec05_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec05_thumb.png b/_images/sphx_glr_demo_gridspec05_thumb.png deleted file mode 120000 index b214486f2b2..00000000000 --- a/_images/sphx_glr_demo_gridspec05_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_demo_gridspec05_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec06_001.png b/_images/sphx_glr_demo_gridspec06_001.png deleted file mode 120000 index 850f914f02e..00000000000 --- a/_images/sphx_glr_demo_gridspec06_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec06_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec06_001_2_0x.png b/_images/sphx_glr_demo_gridspec06_001_2_0x.png deleted file mode 120000 index 2b4c8da6e8e..00000000000 --- a/_images/sphx_glr_demo_gridspec06_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec06_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_gridspec06_thumb.png b/_images/sphx_glr_demo_gridspec06_thumb.png deleted file mode 120000 index 2f373e248c0..00000000000 --- a/_images/sphx_glr_demo_gridspec06_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_gridspec06_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_imagegrid_aspect_001.png b/_images/sphx_glr_demo_imagegrid_aspect_001.png deleted file mode 120000 index f8fca03b9c1..00000000000 --- a/_images/sphx_glr_demo_imagegrid_aspect_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_imagegrid_aspect_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_imagegrid_aspect_001_2_0x.png b/_images/sphx_glr_demo_imagegrid_aspect_001_2_0x.png deleted file mode 120000 index 2fa20530331..00000000000 --- a/_images/sphx_glr_demo_imagegrid_aspect_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_imagegrid_aspect_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_imagegrid_aspect_thumb.png b/_images/sphx_glr_demo_imagegrid_aspect_thumb.png deleted file mode 120000 index cbf398f1147..00000000000 --- a/_images/sphx_glr_demo_imagegrid_aspect_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_imagegrid_aspect_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_new_colorbar_001.png b/_images/sphx_glr_demo_new_colorbar_001.png deleted file mode 120000 index 51d2946b0e4..00000000000 --- a/_images/sphx_glr_demo_new_colorbar_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_demo_new_colorbar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_new_colorbar_thumb.png b/_images/sphx_glr_demo_new_colorbar_thumb.png deleted file mode 120000 index 70afd7af582..00000000000 --- a/_images/sphx_glr_demo_new_colorbar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_demo_new_colorbar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes2_001.png b/_images/sphx_glr_demo_parasite_axes2_001.png deleted file mode 120000 index 77c707442d5..00000000000 --- a/_images/sphx_glr_demo_parasite_axes2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_parasite_axes2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes2_0011.png b/_images/sphx_glr_demo_parasite_axes2_0011.png deleted file mode 120000 index 847b28231f0..00000000000 --- a/_images/sphx_glr_demo_parasite_axes2_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_parasite_axes2_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes2_001_2_0x.png b/_images/sphx_glr_demo_parasite_axes2_001_2_0x.png deleted file mode 120000 index 9fbd19ef5de..00000000000 --- a/_images/sphx_glr_demo_parasite_axes2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_parasite_axes2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes2_thumb.png b/_images/sphx_glr_demo_parasite_axes2_thumb.png deleted file mode 120000 index d6517a094cf..00000000000 --- a/_images/sphx_glr_demo_parasite_axes2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_parasite_axes2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes_001.png b/_images/sphx_glr_demo_parasite_axes_001.png deleted file mode 120000 index 26262a8f11c..00000000000 --- a/_images/sphx_glr_demo_parasite_axes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_parasite_axes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes_001_2_0x.png b/_images/sphx_glr_demo_parasite_axes_001_2_0x.png deleted file mode 120000 index e33fe0afd4e..00000000000 --- a/_images/sphx_glr_demo_parasite_axes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_parasite_axes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes_sgskip_thumb.png b/_images/sphx_glr_demo_parasite_axes_sgskip_thumb.png deleted file mode 120000 index aab7ef05264..00000000000 --- a/_images/sphx_glr_demo_parasite_axes_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_demo_parasite_axes_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_parasite_axes_thumb.png b/_images/sphx_glr_demo_parasite_axes_thumb.png deleted file mode 120000 index 657bc220c72..00000000000 --- a/_images/sphx_glr_demo_parasite_axes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_parasite_axes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ribbon_box_001.png b/_images/sphx_glr_demo_ribbon_box_001.png deleted file mode 120000 index e63ea27767d..00000000000 --- a/_images/sphx_glr_demo_ribbon_box_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ribbon_box_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ribbon_box_001_2_0x.png b/_images/sphx_glr_demo_ribbon_box_001_2_0x.png deleted file mode 120000 index 93040aaf357..00000000000 --- a/_images/sphx_glr_demo_ribbon_box_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ribbon_box_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ribbon_box_thumb.png b/_images/sphx_glr_demo_ribbon_box_thumb.png deleted file mode 120000 index 768cdbe012e..00000000000 --- a/_images/sphx_glr_demo_ribbon_box_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ribbon_box_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_text_path_001.png b/_images/sphx_glr_demo_text_path_001.png deleted file mode 120000 index be7e74d6336..00000000000 --- a/_images/sphx_glr_demo_text_path_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_text_path_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_text_path_001_2_0x.png b/_images/sphx_glr_demo_text_path_001_2_0x.png deleted file mode 120000 index 2e59bb24173..00000000000 --- a/_images/sphx_glr_demo_text_path_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_text_path_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_text_path_thumb.png b/_images/sphx_glr_demo_text_path_thumb.png deleted file mode 120000 index d312b737603..00000000000 --- a/_images/sphx_glr_demo_text_path_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_text_path_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_text_rotation_mode_001.png b/_images/sphx_glr_demo_text_rotation_mode_001.png deleted file mode 120000 index 63abb0f9b89..00000000000 --- a/_images/sphx_glr_demo_text_rotation_mode_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_text_rotation_mode_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_text_rotation_mode_001_2_0x.png b/_images/sphx_glr_demo_text_rotation_mode_001_2_0x.png deleted file mode 120000 index e59d439051f..00000000000 --- a/_images/sphx_glr_demo_text_rotation_mode_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_text_rotation_mode_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_text_rotation_mode_thumb.png b/_images/sphx_glr_demo_text_rotation_mode_thumb.png deleted file mode 120000 index ce429969f8c..00000000000 --- a/_images/sphx_glr_demo_text_rotation_mode_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_text_rotation_mode_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ticklabel_alignment_001.png b/_images/sphx_glr_demo_ticklabel_alignment_001.png deleted file mode 120000 index 7240eb09880..00000000000 --- a/_images/sphx_glr_demo_ticklabel_alignment_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ticklabel_alignment_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ticklabel_alignment_0011.png b/_images/sphx_glr_demo_ticklabel_alignment_0011.png deleted file mode 120000 index 55a7baef775..00000000000 --- a/_images/sphx_glr_demo_ticklabel_alignment_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_demo_ticklabel_alignment_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ticklabel_alignment_001_2_0x.png b/_images/sphx_glr_demo_ticklabel_alignment_001_2_0x.png deleted file mode 120000 index 7f7b519bcc1..00000000000 --- a/_images/sphx_glr_demo_ticklabel_alignment_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ticklabel_alignment_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ticklabel_alignment_thumb.png b/_images/sphx_glr_demo_ticklabel_alignment_thumb.png deleted file mode 120000 index d8e5e27aac6..00000000000 --- a/_images/sphx_glr_demo_ticklabel_alignment_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ticklabel_alignment_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ticklabel_direction_001.png b/_images/sphx_glr_demo_ticklabel_direction_001.png deleted file mode 120000 index 3fd17424d5e..00000000000 --- a/_images/sphx_glr_demo_ticklabel_direction_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ticklabel_direction_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ticklabel_direction_001_2_0x.png b/_images/sphx_glr_demo_ticklabel_direction_001_2_0x.png deleted file mode 120000 index bc0a32dbdd4..00000000000 --- a/_images/sphx_glr_demo_ticklabel_direction_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ticklabel_direction_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_ticklabel_direction_thumb.png b/_images/sphx_glr_demo_ticklabel_direction_thumb.png deleted file mode 120000 index 81d03325d54..00000000000 --- a/_images/sphx_glr_demo_ticklabel_direction_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_ticklabel_direction_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_001.png b/_images/sphx_glr_demo_tight_layout_001.png deleted file mode 120000 index f6d6bbbee6b..00000000000 --- a/_images/sphx_glr_demo_tight_layout_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_001.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_001_2_0x.png b/_images/sphx_glr_demo_tight_layout_001_2_0x.png deleted file mode 120000 index e1b22207898..00000000000 --- a/_images/sphx_glr_demo_tight_layout_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_002.png b/_images/sphx_glr_demo_tight_layout_002.png deleted file mode 120000 index 153066622ff..00000000000 --- a/_images/sphx_glr_demo_tight_layout_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_002.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_002_2_0x.png b/_images/sphx_glr_demo_tight_layout_002_2_0x.png deleted file mode 120000 index 8af911fa3ed..00000000000 --- a/_images/sphx_glr_demo_tight_layout_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_003.png b/_images/sphx_glr_demo_tight_layout_003.png deleted file mode 120000 index 8df8b20f084..00000000000 --- a/_images/sphx_glr_demo_tight_layout_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_003.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_003_2_0x.png b/_images/sphx_glr_demo_tight_layout_003_2_0x.png deleted file mode 120000 index 477a6cf5f7b..00000000000 --- a/_images/sphx_glr_demo_tight_layout_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_004.png b/_images/sphx_glr_demo_tight_layout_004.png deleted file mode 120000 index 408f065c279..00000000000 --- a/_images/sphx_glr_demo_tight_layout_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_004.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_004_2_0x.png b/_images/sphx_glr_demo_tight_layout_004_2_0x.png deleted file mode 120000 index f39a0c56d6b..00000000000 --- a/_images/sphx_glr_demo_tight_layout_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_005.png b/_images/sphx_glr_demo_tight_layout_005.png deleted file mode 120000 index fe7cbddb770..00000000000 --- a/_images/sphx_glr_demo_tight_layout_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_005.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_005_2_0x.png b/_images/sphx_glr_demo_tight_layout_005_2_0x.png deleted file mode 120000 index 4847921be01..00000000000 --- a/_images/sphx_glr_demo_tight_layout_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_006.png b/_images/sphx_glr_demo_tight_layout_006.png deleted file mode 120000 index 2c25e3b0e0a..00000000000 --- a/_images/sphx_glr_demo_tight_layout_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_006.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_006_2_0x.png b/_images/sphx_glr_demo_tight_layout_006_2_0x.png deleted file mode 120000 index 7e98f2dc3ef..00000000000 --- a/_images/sphx_glr_demo_tight_layout_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_007.png b/_images/sphx_glr_demo_tight_layout_007.png deleted file mode 120000 index 410f3d821f2..00000000000 --- a/_images/sphx_glr_demo_tight_layout_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_007.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_007_2_0x.png b/_images/sphx_glr_demo_tight_layout_007_2_0x.png deleted file mode 120000 index 2efc59eef46..00000000000 --- a/_images/sphx_glr_demo_tight_layout_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_008.png b/_images/sphx_glr_demo_tight_layout_008.png deleted file mode 120000 index 92432803582..00000000000 --- a/_images/sphx_glr_demo_tight_layout_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_008.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_008_2_0x.png b/_images/sphx_glr_demo_tight_layout_008_2_0x.png deleted file mode 120000 index 4d843fa5330..00000000000 --- a/_images/sphx_glr_demo_tight_layout_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_demo_tight_layout_thumb.png b/_images/sphx_glr_demo_tight_layout_thumb.png deleted file mode 120000 index 183aadcc15c..00000000000 --- a/_images/sphx_glr_demo_tight_layout_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_demo_tight_layout_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_dfrac_demo_001.png b/_images/sphx_glr_dfrac_demo_001.png deleted file mode 120000 index 1172522639b..00000000000 --- a/_images/sphx_glr_dfrac_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dfrac_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_dfrac_demo_001_2_0x.png b/_images/sphx_glr_dfrac_demo_001_2_0x.png deleted file mode 120000 index 276ec268a4e..00000000000 --- a/_images/sphx_glr_dfrac_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dfrac_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_dfrac_demo_thumb.png b/_images/sphx_glr_dfrac_demo_thumb.png deleted file mode 120000 index f3f05b18260..00000000000 --- a/_images/sphx_glr_dfrac_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dfrac_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_dollar_ticks_001.png b/_images/sphx_glr_dollar_ticks_001.png deleted file mode 120000 index 48dc45a55d9..00000000000 --- a/_images/sphx_glr_dollar_ticks_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dollar_ticks_001.png \ No newline at end of file diff --git a/_images/sphx_glr_dollar_ticks_001_2_0x.png b/_images/sphx_glr_dollar_ticks_001_2_0x.png deleted file mode 120000 index e85b4810ab0..00000000000 --- a/_images/sphx_glr_dollar_ticks_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dollar_ticks_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_dollar_ticks_thumb.png b/_images/sphx_glr_dollar_ticks_thumb.png deleted file mode 120000 index e1be9738019..00000000000 --- a/_images/sphx_glr_dollar_ticks_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dollar_ticks_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_dolphin_001.png b/_images/sphx_glr_dolphin_001.png deleted file mode 120000 index 3b22f2f068f..00000000000 --- a/_images/sphx_glr_dolphin_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dolphin_001.png \ No newline at end of file diff --git a/_images/sphx_glr_dolphin_001_2_0x.png b/_images/sphx_glr_dolphin_001_2_0x.png deleted file mode 120000 index 55751670a08..00000000000 --- a/_images/sphx_glr_dolphin_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dolphin_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_dolphin_thumb.png b/_images/sphx_glr_dolphin_thumb.png deleted file mode 120000 index f499d7b452a..00000000000 --- a/_images/sphx_glr_dolphin_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dolphin_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_donut_001.png b/_images/sphx_glr_donut_001.png deleted file mode 120000 index 24be5ca3cda..00000000000 --- a/_images/sphx_glr_donut_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_donut_001.png \ No newline at end of file diff --git a/_images/sphx_glr_donut_001_2_0x.png b/_images/sphx_glr_donut_001_2_0x.png deleted file mode 120000 index 450fcad8053..00000000000 --- a/_images/sphx_glr_donut_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_donut_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_donut_thumb.png b/_images/sphx_glr_donut_thumb.png deleted file mode 120000 index d77e17c17ce..00000000000 --- a/_images/sphx_glr_donut_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_donut_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_double_pendulum_animated_sgskip_thumb.png b/_images/sphx_glr_double_pendulum_animated_sgskip_thumb.png deleted file mode 120000 index 07a9abd7ac0..00000000000 --- a/_images/sphx_glr_double_pendulum_animated_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_double_pendulum_animated_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_double_pendulum_sgskip_thumb.png b/_images/sphx_glr_double_pendulum_sgskip_thumb.png deleted file mode 120000 index bbce2de4de8..00000000000 --- a/_images/sphx_glr_double_pendulum_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_double_pendulum_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_double_pendulum_thumb.gif b/_images/sphx_glr_double_pendulum_thumb.gif deleted file mode 120000 index 211f98e138c..00000000000 --- a/_images/sphx_glr_double_pendulum_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_double_pendulum_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_dynamic_image2_001.png b/_images/sphx_glr_dynamic_image2_001.png deleted file mode 120000 index 6b9ec48f001..00000000000 --- a/_images/sphx_glr_dynamic_image2_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_dynamic_image2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_dynamic_image2_thumb.png b/_images/sphx_glr_dynamic_image2_thumb.png deleted file mode 120000 index 7fe96c326ca..00000000000 --- a/_images/sphx_glr_dynamic_image2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_dynamic_image2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_dynamic_image_001.png b/_images/sphx_glr_dynamic_image_001.png deleted file mode 120000 index 08db00f8009..00000000000 --- a/_images/sphx_glr_dynamic_image_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.2/_images/sphx_glr_dynamic_image_001.png \ No newline at end of file diff --git a/_images/sphx_glr_dynamic_image_thumb.gif b/_images/sphx_glr_dynamic_image_thumb.gif deleted file mode 120000 index 3a1fa6bb0fe..00000000000 --- a/_images/sphx_glr_dynamic_image_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_dynamic_image_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_dynamic_image_thumb.png b/_images/sphx_glr_dynamic_image_thumb.png deleted file mode 120000 index cd5c9a9bb12..00000000000 --- a/_images/sphx_glr_dynamic_image_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.2/_images/sphx_glr_dynamic_image_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_collection_001.png b/_images/sphx_glr_ellipse_collection_001.png deleted file mode 120000 index 6d138e5a89c..00000000000 --- a/_images/sphx_glr_ellipse_collection_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_collection_001.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_collection_001_2_0x.png b/_images/sphx_glr_ellipse_collection_001_2_0x.png deleted file mode 120000 index 3d8711e3b3a..00000000000 --- a/_images/sphx_glr_ellipse_collection_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_collection_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_collection_thumb.png b/_images/sphx_glr_ellipse_collection_thumb.png deleted file mode 120000 index c735501e791..00000000000 --- a/_images/sphx_glr_ellipse_collection_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_collection_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_demo_001.png b/_images/sphx_glr_ellipse_demo_001.png deleted file mode 120000 index 2c58ba91fd1..00000000000 --- a/_images/sphx_glr_ellipse_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_demo_0011.png b/_images/sphx_glr_ellipse_demo_0011.png deleted file mode 120000 index 32ea099fe94..00000000000 --- a/_images/sphx_glr_ellipse_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_ellipse_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_demo_001_2_0x.png b/_images/sphx_glr_ellipse_demo_001_2_0x.png deleted file mode 120000 index 1855fbb0e09..00000000000 --- a/_images/sphx_glr_ellipse_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_demo_002.png b/_images/sphx_glr_ellipse_demo_002.png deleted file mode 120000 index d223d16c8b2..00000000000 --- a/_images/sphx_glr_ellipse_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_demo_002_2_0x.png b/_images/sphx_glr_ellipse_demo_002_2_0x.png deleted file mode 120000 index 9ad6c8005ce..00000000000 --- a/_images/sphx_glr_ellipse_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_demo_thumb.png b/_images/sphx_glr_ellipse_demo_thumb.png deleted file mode 120000 index 87d7552b164..00000000000 --- a/_images/sphx_glr_ellipse_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_rotated_001.png b/_images/sphx_glr_ellipse_rotated_001.png deleted file mode 120000 index 052755b4ce8..00000000000 --- a/_images/sphx_glr_ellipse_rotated_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_ellipse_rotated_001.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_rotated_thumb.png b/_images/sphx_glr_ellipse_rotated_thumb.png deleted file mode 120000 index 6dccfcc9480..00000000000 --- a/_images/sphx_glr_ellipse_rotated_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.2/_images/sphx_glr_ellipse_rotated_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_with_units_001.png b/_images/sphx_glr_ellipse_with_units_001.png deleted file mode 120000 index 25d9e45daf2..00000000000 --- a/_images/sphx_glr_ellipse_with_units_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_with_units_001.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_with_units_001_2_0x.png b/_images/sphx_glr_ellipse_with_units_001_2_0x.png deleted file mode 120000 index 23a0e4af643..00000000000 --- a/_images/sphx_glr_ellipse_with_units_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_with_units_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_with_units_002.png b/_images/sphx_glr_ellipse_with_units_002.png deleted file mode 120000 index 10b0e5843e4..00000000000 --- a/_images/sphx_glr_ellipse_with_units_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_with_units_002.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_with_units_002_2_0x.png b/_images/sphx_glr_ellipse_with_units_002_2_0x.png deleted file mode 120000 index 4baae710096..00000000000 --- a/_images/sphx_glr_ellipse_with_units_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_with_units_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ellipse_with_units_thumb.png b/_images/sphx_glr_ellipse_with_units_thumb.png deleted file mode 120000 index 1039cefedbe..00000000000 --- a/_images/sphx_glr_ellipse_with_units_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ellipse_with_units_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_gtk2_sgskip_thumb.png b/_images/sphx_glr_embedding_in_gtk2_sgskip_thumb.png deleted file mode 120000 index b8edf9050a2..00000000000 --- a/_images/sphx_glr_embedding_in_gtk2_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_embedding_in_gtk2_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_gtk3_panzoom_sgskip_thumb.png b/_images/sphx_glr_embedding_in_gtk3_panzoom_sgskip_thumb.png deleted file mode 120000 index e9343f8464a..00000000000 --- a/_images/sphx_glr_embedding_in_gtk3_panzoom_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_gtk3_panzoom_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_gtk3_sgskip_thumb.png b/_images/sphx_glr_embedding_in_gtk3_sgskip_thumb.png deleted file mode 120000 index 2146e14d07c..00000000000 --- a/_images/sphx_glr_embedding_in_gtk3_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_gtk3_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_gtk4_panzoom_sgskip_thumb.png b/_images/sphx_glr_embedding_in_gtk4_panzoom_sgskip_thumb.png deleted file mode 120000 index 9a3df8a7a9b..00000000000 --- a/_images/sphx_glr_embedding_in_gtk4_panzoom_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_gtk4_panzoom_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_gtk4_sgskip_thumb.png b/_images/sphx_glr_embedding_in_gtk4_sgskip_thumb.png deleted file mode 120000 index c6412c99c89..00000000000 --- a/_images/sphx_glr_embedding_in_gtk4_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_gtk4_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_gtk_sgskip_thumb.png b/_images/sphx_glr_embedding_in_gtk_sgskip_thumb.png deleted file mode 120000 index fdcb6f8adc6..00000000000 --- a/_images/sphx_glr_embedding_in_gtk_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_embedding_in_gtk_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_qt_sgskip_thumb.png b/_images/sphx_glr_embedding_in_qt_sgskip_thumb.png deleted file mode 120000 index af22baf9e16..00000000000 --- a/_images/sphx_glr_embedding_in_qt_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_qt_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_tk2_sgskip_thumb.png b/_images/sphx_glr_embedding_in_tk2_sgskip_thumb.png deleted file mode 120000 index 003aa0c01ce..00000000000 --- a/_images/sphx_glr_embedding_in_tk2_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_embedding_in_tk2_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_tk_canvas_sgskip_thumb.png b/_images/sphx_glr_embedding_in_tk_canvas_sgskip_thumb.png deleted file mode 120000 index 6c93c88c054..00000000000 --- a/_images/sphx_glr_embedding_in_tk_canvas_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_embedding_in_tk_canvas_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_tk_sgskip_thumb.png b/_images/sphx_glr_embedding_in_tk_sgskip_thumb.png deleted file mode 120000 index 400aa65d55f..00000000000 --- a/_images/sphx_glr_embedding_in_tk_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_tk_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_wx2_sgskip_thumb.png b/_images/sphx_glr_embedding_in_wx2_sgskip_thumb.png deleted file mode 120000 index b726d66d84d..00000000000 --- a/_images/sphx_glr_embedding_in_wx2_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_wx2_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_wx3_sgskip_thumb.png b/_images/sphx_glr_embedding_in_wx3_sgskip_thumb.png deleted file mode 120000 index 713c66e1923..00000000000 --- a/_images/sphx_glr_embedding_in_wx3_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_wx3_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_wx4_sgskip_thumb.png b/_images/sphx_glr_embedding_in_wx4_sgskip_thumb.png deleted file mode 120000 index a11b03c1f89..00000000000 --- a/_images/sphx_glr_embedding_in_wx4_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_wx4_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_in_wx5_sgskip_thumb.png b/_images/sphx_glr_embedding_in_wx5_sgskip_thumb.png deleted file mode 120000 index 53fe44a20af..00000000000 --- a/_images/sphx_glr_embedding_in_wx5_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_in_wx5_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_embedding_webagg_sgskip_thumb.png b/_images/sphx_glr_embedding_webagg_sgskip_thumb.png deleted file mode 120000 index d109463256b..00000000000 --- a/_images/sphx_glr_embedding_webagg_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_embedding_webagg_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_engineering_formatter_001.png b/_images/sphx_glr_engineering_formatter_001.png deleted file mode 120000 index 90a730fa607..00000000000 --- a/_images/sphx_glr_engineering_formatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_engineering_formatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_engineering_formatter_001_2_0x.png b/_images/sphx_glr_engineering_formatter_001_2_0x.png deleted file mode 120000 index e5ad78d09c7..00000000000 --- a/_images/sphx_glr_engineering_formatter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_engineering_formatter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_engineering_formatter_thumb.png b/_images/sphx_glr_engineering_formatter_thumb.png deleted file mode 120000 index bd59ded6670..00000000000 --- a/_images/sphx_glr_engineering_formatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_engineering_formatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar3d_001.png b/_images/sphx_glr_errorbar3d_001.png deleted file mode 120000 index 9ead5578e0a..00000000000 --- a/_images/sphx_glr_errorbar3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar3d_001_2_0x.png b/_images/sphx_glr_errorbar3d_001_2_0x.png deleted file mode 120000 index 7222cf18859..00000000000 --- a/_images/sphx_glr_errorbar3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar3d_thumb.png b/_images/sphx_glr_errorbar3d_thumb.png deleted file mode 120000 index 0f434f59c5e..00000000000 --- a/_images/sphx_glr_errorbar3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_001.png b/_images/sphx_glr_errorbar_001.png deleted file mode 120000 index 27cc2010530..00000000000 --- a/_images/sphx_glr_errorbar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_001_2_0x.png b/_images/sphx_glr_errorbar_001_2_0x.png deleted file mode 120000 index f4d40c2b726..00000000000 --- a/_images/sphx_glr_errorbar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_features_001.png b/_images/sphx_glr_errorbar_features_001.png deleted file mode 120000 index 6b5fabd0e64..00000000000 --- a/_images/sphx_glr_errorbar_features_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_features_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_features_001_2_0x.png b/_images/sphx_glr_errorbar_features_001_2_0x.png deleted file mode 120000 index 6a6baafb2df..00000000000 --- a/_images/sphx_glr_errorbar_features_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_features_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_features_thumb.png b/_images/sphx_glr_errorbar_features_thumb.png deleted file mode 120000 index 98f9d70a5f7..00000000000 --- a/_images/sphx_glr_errorbar_features_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_features_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_000.png b/_images/sphx_glr_errorbar_limits_000.png deleted file mode 120000 index 9aeba974caf..00000000000 --- a/_images/sphx_glr_errorbar_limits_000.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_errorbar_limits_000.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_001.png b/_images/sphx_glr_errorbar_limits_001.png deleted file mode 120000 index a3f8dc7f206..00000000000 --- a/_images/sphx_glr_errorbar_limits_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_001_2_0x.png b/_images/sphx_glr_errorbar_limits_001_2_0x.png deleted file mode 120000 index 146ff724597..00000000000 --- a/_images/sphx_glr_errorbar_limits_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_002.png b/_images/sphx_glr_errorbar_limits_002.png deleted file mode 120000 index 4af212736c2..00000000000 --- a/_images/sphx_glr_errorbar_limits_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_errorbar_limits_002.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_simple_000.png b/_images/sphx_glr_errorbar_limits_simple_000.png deleted file mode 120000 index 6032a89b600..00000000000 --- a/_images/sphx_glr_errorbar_limits_simple_000.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_errorbar_limits_simple_000.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_simple_001.png b/_images/sphx_glr_errorbar_limits_simple_001.png deleted file mode 120000 index d973aa6e05b..00000000000 --- a/_images/sphx_glr_errorbar_limits_simple_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_simple_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_simple_001_2_0x.png b/_images/sphx_glr_errorbar_limits_simple_001_2_0x.png deleted file mode 120000 index 55adc8897fb..00000000000 --- a/_images/sphx_glr_errorbar_limits_simple_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_simple_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_simple_002.png b/_images/sphx_glr_errorbar_limits_simple_002.png deleted file mode 120000 index 784ecb57b72..00000000000 --- a/_images/sphx_glr_errorbar_limits_simple_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_simple_002.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_simple_002_2_0x.png b/_images/sphx_glr_errorbar_limits_simple_002_2_0x.png deleted file mode 120000 index 9da3165c320..00000000000 --- a/_images/sphx_glr_errorbar_limits_simple_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_simple_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_simple_thumb.png b/_images/sphx_glr_errorbar_limits_simple_thumb.png deleted file mode 120000 index f30e1af3119..00000000000 --- a/_images/sphx_glr_errorbar_limits_simple_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_simple_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_thumb.png b/_images/sphx_glr_errorbar_limits_thumb.png deleted file mode 120000 index f511aec24b0..00000000000 --- a/_images/sphx_glr_errorbar_limits_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_limits_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_limits_thumb1.png b/_images/sphx_glr_errorbar_limits_thumb1.png deleted file mode 120000 index 9c598bd20ef..00000000000 --- a/_images/sphx_glr_errorbar_limits_thumb1.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_errorbar_limits_thumb1.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_plot_001.png b/_images/sphx_glr_errorbar_plot_001.png deleted file mode 120000 index d06d8493851..00000000000 --- a/_images/sphx_glr_errorbar_plot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_plot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_plot_001_2_0x.png b/_images/sphx_glr_errorbar_plot_001_2_0x.png deleted file mode 120000 index 758fa94bcd7..00000000000 --- a/_images/sphx_glr_errorbar_plot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_plot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_plot_thumb.png b/_images/sphx_glr_errorbar_plot_thumb.png deleted file mode 120000 index 4734d71e59d..00000000000 --- a/_images/sphx_glr_errorbar_plot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_plot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_subsample_001.png b/_images/sphx_glr_errorbar_subsample_001.png deleted file mode 120000 index 82f5ba1fe93..00000000000 --- a/_images/sphx_glr_errorbar_subsample_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_subsample_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_subsample_001_2_0x.png b/_images/sphx_glr_errorbar_subsample_001_2_0x.png deleted file mode 120000 index c28d2ef1e78..00000000000 --- a/_images/sphx_glr_errorbar_subsample_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_subsample_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_subsample_thumb.png b/_images/sphx_glr_errorbar_subsample_thumb.png deleted file mode 120000 index 22d4002cc2c..00000000000 --- a/_images/sphx_glr_errorbar_subsample_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_subsample_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbar_thumb.png b/_images/sphx_glr_errorbar_thumb.png deleted file mode 120000 index 3e4d7546bd2..00000000000 --- a/_images/sphx_glr_errorbar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbars_and_boxes_001.png b/_images/sphx_glr_errorbars_and_boxes_001.png deleted file mode 120000 index 96975dbf14e..00000000000 --- a/_images/sphx_glr_errorbars_and_boxes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbars_and_boxes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbars_and_boxes_001_2_0x.png b/_images/sphx_glr_errorbars_and_boxes_001_2_0x.png deleted file mode 120000 index d593568d3fb..00000000000 --- a/_images/sphx_glr_errorbars_and_boxes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbars_and_boxes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_errorbars_and_boxes_thumb.png b/_images/sphx_glr_errorbars_and_boxes_thumb.png deleted file mode 120000 index cb05d5aa585..00000000000 --- a/_images/sphx_glr_errorbars_and_boxes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_errorbars_and_boxes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_evans_test_001.png b/_images/sphx_glr_evans_test_001.png deleted file mode 120000 index 988480313db..00000000000 --- a/_images/sphx_glr_evans_test_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_evans_test_001.png \ No newline at end of file diff --git a/_images/sphx_glr_evans_test_001_2_0x.png b/_images/sphx_glr_evans_test_001_2_0x.png deleted file mode 120000 index bac807d6efb..00000000000 --- a/_images/sphx_glr_evans_test_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_evans_test_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_evans_test_thumb.png b/_images/sphx_glr_evans_test_thumb.png deleted file mode 120000 index 59c88feca4e..00000000000 --- a/_images/sphx_glr_evans_test_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_evans_test_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_eventcollection_demo_001.png b/_images/sphx_glr_eventcollection_demo_001.png deleted file mode 120000 index c6f012a1c7a..00000000000 --- a/_images/sphx_glr_eventcollection_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventcollection_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_eventcollection_demo_001_2_0x.png b/_images/sphx_glr_eventcollection_demo_001_2_0x.png deleted file mode 120000 index 15522edbe87..00000000000 --- a/_images/sphx_glr_eventcollection_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventcollection_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_eventcollection_demo_thumb.png b/_images/sphx_glr_eventcollection_demo_thumb.png deleted file mode 120000 index 8603493a87f..00000000000 --- a/_images/sphx_glr_eventcollection_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventcollection_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_eventplot_001.png b/_images/sphx_glr_eventplot_001.png deleted file mode 120000 index 6901e0200e0..00000000000 --- a/_images/sphx_glr_eventplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_eventplot_001_2_0x.png b/_images/sphx_glr_eventplot_001_2_0x.png deleted file mode 120000 index 3f92708383c..00000000000 --- a/_images/sphx_glr_eventplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_eventplot_demo_001.png b/_images/sphx_glr_eventplot_demo_001.png deleted file mode 120000 index 61b96e4997f..00000000000 --- a/_images/sphx_glr_eventplot_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventplot_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_eventplot_demo_0011.png b/_images/sphx_glr_eventplot_demo_0011.png deleted file mode 120000 index 71fb6437cee..00000000000 --- a/_images/sphx_glr_eventplot_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_eventplot_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_eventplot_demo_001_2_0x.png b/_images/sphx_glr_eventplot_demo_001_2_0x.png deleted file mode 120000 index 1e57d2689ca..00000000000 --- a/_images/sphx_glr_eventplot_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventplot_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_eventplot_demo_thumb.png b/_images/sphx_glr_eventplot_demo_thumb.png deleted file mode 120000 index 7763a816382..00000000000 --- a/_images/sphx_glr_eventplot_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventplot_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_eventplot_thumb.png b/_images/sphx_glr_eventplot_thumb.png deleted file mode 120000 index 105accd0b02..00000000000 --- a/_images/sphx_glr_eventplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_eventplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fahrenheit_celsius_scales_001.png b/_images/sphx_glr_fahrenheit_celsius_scales_001.png deleted file mode 120000 index cd204539ad9..00000000000 --- a/_images/sphx_glr_fahrenheit_celsius_scales_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fahrenheit_celsius_scales_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fahrenheit_celsius_scales_001_2_0x.png b/_images/sphx_glr_fahrenheit_celsius_scales_001_2_0x.png deleted file mode 120000 index 6af4ec352e3..00000000000 --- a/_images/sphx_glr_fahrenheit_celsius_scales_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fahrenheit_celsius_scales_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fahrenheit_celsius_scales_thumb.png b/_images/sphx_glr_fahrenheit_celsius_scales_thumb.png deleted file mode 120000 index 992206153a4..00000000000 --- a/_images/sphx_glr_fahrenheit_celsius_scales_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fahrenheit_celsius_scales_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fancyarrow_demo_001.png b/_images/sphx_glr_fancyarrow_demo_001.png deleted file mode 120000 index 2bb4f83d3f1..00000000000 --- a/_images/sphx_glr_fancyarrow_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancyarrow_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fancyarrow_demo_0011.png b/_images/sphx_glr_fancyarrow_demo_0011.png deleted file mode 120000 index 8c19b116304..00000000000 --- a/_images/sphx_glr_fancyarrow_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_fancyarrow_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_fancyarrow_demo_001_2_0x.png b/_images/sphx_glr_fancyarrow_demo_001_2_0x.png deleted file mode 120000 index ee2886108f9..00000000000 --- a/_images/sphx_glr_fancyarrow_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancyarrow_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fancyarrow_demo_thumb.png b/_images/sphx_glr_fancyarrow_demo_thumb.png deleted file mode 120000 index dce6aa7f01f..00000000000 --- a/_images/sphx_glr_fancyarrow_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancyarrow_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fancybox_demo_001.png b/_images/sphx_glr_fancybox_demo_001.png deleted file mode 120000 index bdd494fe73b..00000000000 --- a/_images/sphx_glr_fancybox_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancybox_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fancybox_demo_0011.png b/_images/sphx_glr_fancybox_demo_0011.png deleted file mode 120000 index 8650a90bc65..00000000000 --- a/_images/sphx_glr_fancybox_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_fancybox_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_fancybox_demo_001_2_0x.png b/_images/sphx_glr_fancybox_demo_001_2_0x.png deleted file mode 120000 index 06d9c96d5cd..00000000000 --- a/_images/sphx_glr_fancybox_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancybox_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fancybox_demo_002.png b/_images/sphx_glr_fancybox_demo_002.png deleted file mode 120000 index 336efa651f9..00000000000 --- a/_images/sphx_glr_fancybox_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancybox_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_fancybox_demo_002_2_0x.png b/_images/sphx_glr_fancybox_demo_002_2_0x.png deleted file mode 120000 index 2da666ec3e2..00000000000 --- a/_images/sphx_glr_fancybox_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancybox_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fancybox_demo_thumb.png b/_images/sphx_glr_fancybox_demo_thumb.png deleted file mode 120000 index 9474f97b939..00000000000 --- a/_images/sphx_glr_fancybox_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancybox_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fancytextbox_demo_001.png b/_images/sphx_glr_fancytextbox_demo_001.png deleted file mode 120000 index 70efd48a8d0..00000000000 --- a/_images/sphx_glr_fancytextbox_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancytextbox_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fancytextbox_demo_001_2_0x.png b/_images/sphx_glr_fancytextbox_demo_001_2_0x.png deleted file mode 120000 index e871c0f0cc5..00000000000 --- a/_images/sphx_glr_fancytextbox_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancytextbox_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fancytextbox_demo_thumb.png b/_images/sphx_glr_fancytextbox_demo_thumb.png deleted file mode 120000 index 7058654f8af..00000000000 --- a/_images/sphx_glr_fancytextbox_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fancytextbox_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_axes_customize_simple_001.png b/_images/sphx_glr_fig_axes_customize_simple_001.png deleted file mode 120000 index 2b86c317ee7..00000000000 --- a/_images/sphx_glr_fig_axes_customize_simple_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_axes_customize_simple_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_axes_customize_simple_001_2_0x.png b/_images/sphx_glr_fig_axes_customize_simple_001_2_0x.png deleted file mode 120000 index 0c5b965709e..00000000000 --- a/_images/sphx_glr_fig_axes_customize_simple_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_axes_customize_simple_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_axes_customize_simple_thumb.png b/_images/sphx_glr_fig_axes_customize_simple_thumb.png deleted file mode 120000 index dcca20bea94..00000000000 --- a/_images/sphx_glr_fig_axes_customize_simple_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_axes_customize_simple_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_axes_labels_simple_001.png b/_images/sphx_glr_fig_axes_labels_simple_001.png deleted file mode 120000 index e5c677a4472..00000000000 --- a/_images/sphx_glr_fig_axes_labels_simple_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_axes_labels_simple_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_axes_labels_simple_001_2_0x.png b/_images/sphx_glr_fig_axes_labels_simple_001_2_0x.png deleted file mode 120000 index 202a04fb2ff..00000000000 --- a/_images/sphx_glr_fig_axes_labels_simple_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_axes_labels_simple_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_axes_labels_simple_thumb.png b/_images/sphx_glr_fig_axes_labels_simple_thumb.png deleted file mode 120000 index b60487b91dc..00000000000 --- a/_images/sphx_glr_fig_axes_labels_simple_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_axes_labels_simple_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_x_001.png b/_images/sphx_glr_fig_x_001.png deleted file mode 120000 index 7d3de66c5fb..00000000000 --- a/_images/sphx_glr_fig_x_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_x_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_x_001_2_0x.png b/_images/sphx_glr_fig_x_001_2_0x.png deleted file mode 120000 index 83ecc3b76d8..00000000000 --- a/_images/sphx_glr_fig_x_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_x_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fig_x_thumb.png b/_images/sphx_glr_fig_x_thumb.png deleted file mode 120000 index cbedc9a93e4..00000000000 --- a/_images/sphx_glr_fig_x_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fig_x_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_figimage_demo_001.png b/_images/sphx_glr_figimage_demo_001.png deleted file mode 120000 index 39d9f7f35e9..00000000000 --- a/_images/sphx_glr_figimage_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figimage_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_figimage_demo_001_2_0x.png b/_images/sphx_glr_figimage_demo_001_2_0x.png deleted file mode 120000 index eee931741cb..00000000000 --- a/_images/sphx_glr_figimage_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figimage_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figimage_demo_thumb.png b/_images/sphx_glr_figimage_demo_thumb.png deleted file mode 120000 index c18285a734e..00000000000 --- a/_images/sphx_glr_figimage_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figimage_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_figlegend_demo_001.png b/_images/sphx_glr_figlegend_demo_001.png deleted file mode 120000 index 2d7c7e8eee6..00000000000 --- a/_images/sphx_glr_figlegend_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figlegend_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_figlegend_demo_001_2_0x.png b/_images/sphx_glr_figlegend_demo_001_2_0x.png deleted file mode 120000 index 09d387c3469..00000000000 --- a/_images/sphx_glr_figlegend_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figlegend_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figlegend_demo_thumb.png b/_images/sphx_glr_figlegend_demo_thumb.png deleted file mode 120000 index 9e8a4ed5941..00000000000 --- a/_images/sphx_glr_figlegend_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figlegend_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_axes_enter_leave_001.png b/_images/sphx_glr_figure_axes_enter_leave_001.png deleted file mode 120000 index 0c4e1ca4dee..00000000000 --- a/_images/sphx_glr_figure_axes_enter_leave_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_axes_enter_leave_001.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_axes_enter_leave_001_2_0x.png b/_images/sphx_glr_figure_axes_enter_leave_001_2_0x.png deleted file mode 120000 index 06c0a0d794b..00000000000 --- a/_images/sphx_glr_figure_axes_enter_leave_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_axes_enter_leave_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_axes_enter_leave_002.png b/_images/sphx_glr_figure_axes_enter_leave_002.png deleted file mode 120000 index 69e77e6c524..00000000000 --- a/_images/sphx_glr_figure_axes_enter_leave_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_figure_axes_enter_leave_002.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_axes_enter_leave_thumb.png b/_images/sphx_glr_figure_axes_enter_leave_thumb.png deleted file mode 120000 index b49250e4e1c..00000000000 --- a/_images/sphx_glr_figure_axes_enter_leave_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_axes_enter_leave_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_001.png b/_images/sphx_glr_figure_size_units_001.png deleted file mode 120000 index 7cc5ef22bcc..00000000000 --- a/_images/sphx_glr_figure_size_units_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_001.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_001_2_0x.png b/_images/sphx_glr_figure_size_units_001_2_0x.png deleted file mode 120000 index 9af3d77d470..00000000000 --- a/_images/sphx_glr_figure_size_units_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_002.png b/_images/sphx_glr_figure_size_units_002.png deleted file mode 120000 index c580896c26b..00000000000 --- a/_images/sphx_glr_figure_size_units_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_002.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_002_2_0x.png b/_images/sphx_glr_figure_size_units_002_2_0x.png deleted file mode 120000 index 4803166b56d..00000000000 --- a/_images/sphx_glr_figure_size_units_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_003.png b/_images/sphx_glr_figure_size_units_003.png deleted file mode 120000 index 03e2a6c83a1..00000000000 --- a/_images/sphx_glr_figure_size_units_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_003.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_003_2_0x.png b/_images/sphx_glr_figure_size_units_003_2_0x.png deleted file mode 120000 index de33de17544..00000000000 --- a/_images/sphx_glr_figure_size_units_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_004.png b/_images/sphx_glr_figure_size_units_004.png deleted file mode 120000 index 9ffd431832f..00000000000 --- a/_images/sphx_glr_figure_size_units_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_004.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_004_2_0x.png b/_images/sphx_glr_figure_size_units_004_2_0x.png deleted file mode 120000 index b94d7e4c28d..00000000000 --- a/_images/sphx_glr_figure_size_units_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_size_units_thumb.png b/_images/sphx_glr_figure_size_units_thumb.png deleted file mode 120000 index 91177778c3f..00000000000 --- a/_images/sphx_glr_figure_size_units_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_size_units_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_title_001.png b/_images/sphx_glr_figure_title_001.png deleted file mode 120000 index 056428ac435..00000000000 --- a/_images/sphx_glr_figure_title_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_title_001.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_title_001_2_0x.png b/_images/sphx_glr_figure_title_001_2_0x.png deleted file mode 120000 index b1963e9b074..00000000000 --- a/_images/sphx_glr_figure_title_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_title_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_title_002.png b/_images/sphx_glr_figure_title_002.png deleted file mode 120000 index d186f858315..00000000000 --- a/_images/sphx_glr_figure_title_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_title_002.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_title_002_2_0x.png b/_images/sphx_glr_figure_title_002_2_0x.png deleted file mode 120000 index 3b70afb1652..00000000000 --- a/_images/sphx_glr_figure_title_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_title_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_figure_title_thumb.png b/_images/sphx_glr_figure_title_thumb.png deleted file mode 120000 index 19301be924d..00000000000 --- a/_images/sphx_glr_figure_title_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_figure_title_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_001.png b/_images/sphx_glr_fill_001.png deleted file mode 120000 index 60eee9bb25b..00000000000 --- a/_images/sphx_glr_fill_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_0011.png b/_images/sphx_glr_fill_0011.png deleted file mode 120000 index 5914e5e04f0..00000000000 --- a/_images/sphx_glr_fill_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_fill_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_001_2_0x.png b/_images/sphx_glr_fill_001_2_0x.png deleted file mode 120000 index 61a43be9547..00000000000 --- a/_images/sphx_glr_fill_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_002.png b/_images/sphx_glr_fill_002.png deleted file mode 120000 index bac392d2200..00000000000 --- a/_images/sphx_glr_fill_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_002.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_002_2_0x.png b/_images/sphx_glr_fill_002_2_0x.png deleted file mode 120000 index 6ca4f97af94..00000000000 --- a/_images/sphx_glr_fill_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_001.png b/_images/sphx_glr_fill_between_001.png deleted file mode 120000 index bb861898116..00000000000 --- a/_images/sphx_glr_fill_between_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_001_2_0x.png b/_images/sphx_glr_fill_between_001_2_0x.png deleted file mode 120000 index d3f4b1346f1..00000000000 --- a/_images/sphx_glr_fill_between_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_alpha_001.png b/_images/sphx_glr_fill_between_alpha_001.png deleted file mode 120000 index c2074e5c790..00000000000 --- a/_images/sphx_glr_fill_between_alpha_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_alpha_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_alpha_001_2_0x.png b/_images/sphx_glr_fill_between_alpha_001_2_0x.png deleted file mode 120000 index 447a6779621..00000000000 --- a/_images/sphx_glr_fill_between_alpha_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_alpha_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_alpha_002.png b/_images/sphx_glr_fill_between_alpha_002.png deleted file mode 120000 index 45829d7b1db..00000000000 --- a/_images/sphx_glr_fill_between_alpha_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_alpha_002.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_alpha_002_2_0x.png b/_images/sphx_glr_fill_between_alpha_002_2_0x.png deleted file mode 120000 index b26ebf2959c..00000000000 --- a/_images/sphx_glr_fill_between_alpha_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_alpha_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_alpha_003.png b/_images/sphx_glr_fill_between_alpha_003.png deleted file mode 120000 index 397d1d0d13d..00000000000 --- a/_images/sphx_glr_fill_between_alpha_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_alpha_003.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_alpha_003_2_0x.png b/_images/sphx_glr_fill_between_alpha_003_2_0x.png deleted file mode 120000 index fb46da83cc9..00000000000 --- a/_images/sphx_glr_fill_between_alpha_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_alpha_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_alpha_thumb.png b/_images/sphx_glr_fill_between_alpha_thumb.png deleted file mode 120000 index 929337354e7..00000000000 --- a/_images/sphx_glr_fill_between_alpha_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_alpha_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_001.png b/_images/sphx_glr_fill_between_demo_001.png deleted file mode 120000 index 7cbdaabfd70..00000000000 --- a/_images/sphx_glr_fill_between_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_001_2_0x.png b/_images/sphx_glr_fill_between_demo_001_2_0x.png deleted file mode 120000 index 6d75e0f40e4..00000000000 --- a/_images/sphx_glr_fill_between_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_002.png b/_images/sphx_glr_fill_between_demo_002.png deleted file mode 120000 index b1f72e6aeed..00000000000 --- a/_images/sphx_glr_fill_between_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_002_2_0x.png b/_images/sphx_glr_fill_between_demo_002_2_0x.png deleted file mode 120000 index bb1b7f93875..00000000000 --- a/_images/sphx_glr_fill_between_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_003.png b/_images/sphx_glr_fill_between_demo_003.png deleted file mode 120000 index 5eb1de2b7b0..00000000000 --- a/_images/sphx_glr_fill_between_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_003_2_0x.png b/_images/sphx_glr_fill_between_demo_003_2_0x.png deleted file mode 120000 index 691da859d73..00000000000 --- a/_images/sphx_glr_fill_between_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_004.png b/_images/sphx_glr_fill_between_demo_004.png deleted file mode 120000 index 231d3f41945..00000000000 --- a/_images/sphx_glr_fill_between_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_004_2_0x.png b/_images/sphx_glr_fill_between_demo_004_2_0x.png deleted file mode 120000 index c4a1413d11b..00000000000 --- a/_images/sphx_glr_fill_between_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_demo_thumb.png b/_images/sphx_glr_fill_between_demo_thumb.png deleted file mode 120000 index d0b4f6c7c2f..00000000000 --- a/_images/sphx_glr_fill_between_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_between_thumb.png b/_images/sphx_glr_fill_between_thumb.png deleted file mode 120000 index c94ad72ab4a..00000000000 --- a/_images/sphx_glr_fill_between_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_between_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_betweenx_demo_001.png b/_images/sphx_glr_fill_betweenx_demo_001.png deleted file mode 120000 index d82b2466c2d..00000000000 --- a/_images/sphx_glr_fill_betweenx_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_betweenx_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_betweenx_demo_001_2_0x.png b/_images/sphx_glr_fill_betweenx_demo_001_2_0x.png deleted file mode 120000 index da22ac908f4..00000000000 --- a/_images/sphx_glr_fill_betweenx_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_betweenx_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_betweenx_demo_002.png b/_images/sphx_glr_fill_betweenx_demo_002.png deleted file mode 120000 index fffea9ca12b..00000000000 --- a/_images/sphx_glr_fill_betweenx_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_betweenx_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_betweenx_demo_002_2_0x.png b/_images/sphx_glr_fill_betweenx_demo_002_2_0x.png deleted file mode 120000 index e99b56f1fc0..00000000000 --- a/_images/sphx_glr_fill_betweenx_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_betweenx_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_betweenx_demo_thumb.png b/_images/sphx_glr_fill_betweenx_demo_thumb.png deleted file mode 120000 index 96d2e7df226..00000000000 --- a/_images/sphx_glr_fill_betweenx_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_betweenx_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_spiral_001.png b/_images/sphx_glr_fill_spiral_001.png deleted file mode 120000 index 844a37e41a8..00000000000 --- a/_images/sphx_glr_fill_spiral_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_spiral_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_spiral_001_2_0x.png b/_images/sphx_glr_fill_spiral_001_2_0x.png deleted file mode 120000 index bd99b14ab22..00000000000 --- a/_images/sphx_glr_fill_spiral_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_spiral_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_spiral_thumb.png b/_images/sphx_glr_fill_spiral_thumb.png deleted file mode 120000 index 507fc3ae4bf..00000000000 --- a/_images/sphx_glr_fill_spiral_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_spiral_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fill_thumb.png b/_images/sphx_glr_fill_thumb.png deleted file mode 120000 index cd3cd21f4ce..00000000000 --- a/_images/sphx_glr_fill_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fill_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_filled_step_001.png b/_images/sphx_glr_filled_step_001.png deleted file mode 120000 index 0d887a4d30a..00000000000 --- a/_images/sphx_glr_filled_step_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_filled_step_001.png \ No newline at end of file diff --git a/_images/sphx_glr_filled_step_0011.png b/_images/sphx_glr_filled_step_0011.png deleted file mode 120000 index 3b8e29b7a77..00000000000 --- a/_images/sphx_glr_filled_step_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_filled_step_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_filled_step_001_2_0x.png b/_images/sphx_glr_filled_step_001_2_0x.png deleted file mode 120000 index 3cb5d0ada0a..00000000000 --- a/_images/sphx_glr_filled_step_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_filled_step_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_filled_step_002.png b/_images/sphx_glr_filled_step_002.png deleted file mode 120000 index a7c7a64db6e..00000000000 --- a/_images/sphx_glr_filled_step_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_filled_step_002.png \ No newline at end of file diff --git a/_images/sphx_glr_filled_step_002_2_0x.png b/_images/sphx_glr_filled_step_002_2_0x.png deleted file mode 120000 index 8475a821cec..00000000000 --- a/_images/sphx_glr_filled_step_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_filled_step_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_filled_step_thumb.png b/_images/sphx_glr_filled_step_thumb.png deleted file mode 120000 index 17a21f2e144..00000000000 --- a/_images/sphx_glr_filled_step_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_filled_step_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_findobj_demo_001.png b/_images/sphx_glr_findobj_demo_001.png deleted file mode 120000 index 797cb3580b9..00000000000 --- a/_images/sphx_glr_findobj_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_findobj_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_findobj_demo_001_2_0x.png b/_images/sphx_glr_findobj_demo_001_2_0x.png deleted file mode 120000 index f861d04f7a3..00000000000 --- a/_images/sphx_glr_findobj_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_findobj_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_findobj_demo_thumb.png b/_images/sphx_glr_findobj_demo_thumb.png deleted file mode 120000 index 6160552f1fa..00000000000 --- a/_images/sphx_glr_findobj_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_findobj_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_firefox_001.png b/_images/sphx_glr_firefox_001.png deleted file mode 120000 index 462792b3a7e..00000000000 --- a/_images/sphx_glr_firefox_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_firefox_001.png \ No newline at end of file diff --git a/_images/sphx_glr_firefox_001_2_0x.png b/_images/sphx_glr_firefox_001_2_0x.png deleted file mode 120000 index 99443dcdd2e..00000000000 --- a/_images/sphx_glr_firefox_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_firefox_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_firefox_thumb.png b/_images/sphx_glr_firefox_thumb.png deleted file mode 120000 index dae33a2a199..00000000000 --- a/_images/sphx_glr_firefox_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_firefox_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fivethirtyeight_001.png b/_images/sphx_glr_fivethirtyeight_001.png deleted file mode 120000 index a2ae2192cfe..00000000000 --- a/_images/sphx_glr_fivethirtyeight_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fivethirtyeight_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fivethirtyeight_001_2_0x.png b/_images/sphx_glr_fivethirtyeight_001_2_0x.png deleted file mode 120000 index eee73b3e717..00000000000 --- a/_images/sphx_glr_fivethirtyeight_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fivethirtyeight_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fivethirtyeight_thumb.png b/_images/sphx_glr_fivethirtyeight_thumb.png deleted file mode 120000 index 04281373b8b..00000000000 --- a/_images/sphx_glr_fivethirtyeight_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fivethirtyeight_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_font_family_rc_sgskip_thumb.png b/_images/sphx_glr_font_family_rc_sgskip_thumb.png deleted file mode 120000 index 9fdb7b69071..00000000000 --- a/_images/sphx_glr_font_family_rc_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_font_family_rc_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_font_file_001.png b/_images/sphx_glr_font_file_001.png deleted file mode 120000 index 58f9a7f87f8..00000000000 --- a/_images/sphx_glr_font_file_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_font_file_001.png \ No newline at end of file diff --git a/_images/sphx_glr_font_file_001_2_0x.png b/_images/sphx_glr_font_file_001_2_0x.png deleted file mode 120000 index fab24a7c889..00000000000 --- a/_images/sphx_glr_font_file_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_font_file_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_font_file_thumb.png b/_images/sphx_glr_font_file_thumb.png deleted file mode 120000 index 5f1e2dd4ffc..00000000000 --- a/_images/sphx_glr_font_file_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_font_file_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_font_indexing_thumb.png b/_images/sphx_glr_font_indexing_thumb.png deleted file mode 120000 index 91a4d3213be..00000000000 --- a/_images/sphx_glr_font_indexing_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_font_indexing_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_font_table_001.png b/_images/sphx_glr_font_table_001.png deleted file mode 120000 index e3209577bc3..00000000000 --- a/_images/sphx_glr_font_table_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_font_table_001.png \ No newline at end of file diff --git a/_images/sphx_glr_font_table_001_2_0x.png b/_images/sphx_glr_font_table_001_2_0x.png deleted file mode 120000 index efe1c040854..00000000000 --- a/_images/sphx_glr_font_table_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_font_table_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_font_table_thumb.png b/_images/sphx_glr_font_table_thumb.png deleted file mode 120000 index f2e37c17627..00000000000 --- a/_images/sphx_glr_font_table_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_font_table_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_font_table_ttf_sgskip_thumb.png b/_images/sphx_glr_font_table_ttf_sgskip_thumb.png deleted file mode 120000 index b17641fc23d..00000000000 --- a/_images/sphx_glr_font_table_ttf_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_font_table_ttf_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fonts_demo_001.png b/_images/sphx_glr_fonts_demo_001.png deleted file mode 120000 index 0b1fdf932a1..00000000000 --- a/_images/sphx_glr_fonts_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fonts_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fonts_demo_001_2_0x.png b/_images/sphx_glr_fonts_demo_001_2_0x.png deleted file mode 120000 index 83e1f489c33..00000000000 --- a/_images/sphx_glr_fonts_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fonts_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fonts_demo_kw_001.png b/_images/sphx_glr_fonts_demo_kw_001.png deleted file mode 120000 index 4f623dc4637..00000000000 --- a/_images/sphx_glr_fonts_demo_kw_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fonts_demo_kw_001.png \ No newline at end of file diff --git a/_images/sphx_glr_fonts_demo_kw_001_2_0x.png b/_images/sphx_glr_fonts_demo_kw_001_2_0x.png deleted file mode 120000 index cf659a4e5f0..00000000000 --- a/_images/sphx_glr_fonts_demo_kw_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fonts_demo_kw_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_fonts_demo_kw_thumb.png b/_images/sphx_glr_fonts_demo_kw_thumb.png deleted file mode 120000 index c84d2e5a026..00000000000 --- a/_images/sphx_glr_fonts_demo_kw_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fonts_demo_kw_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fonts_demo_thumb.png b/_images/sphx_glr_fonts_demo_thumb.png deleted file mode 120000 index 75425fe9f02..00000000000 --- a/_images/sphx_glr_fonts_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fonts_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_fourier_demo_wx_sgskip_thumb.png b/_images/sphx_glr_fourier_demo_wx_sgskip_thumb.png deleted file mode 120000 index 80ed40d5c35..00000000000 --- a/_images/sphx_glr_fourier_demo_wx_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_fourier_demo_wx_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_frame_grabbing_sgskip_thumb.png b/_images/sphx_glr_frame_grabbing_sgskip_thumb.png deleted file mode 120000 index 3fa6908cfa9..00000000000 --- a/_images/sphx_glr_frame_grabbing_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_frame_grabbing_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ftface_props_thumb.png b/_images/sphx_glr_ftface_props_thumb.png deleted file mode 120000 index 1ef7da2be70..00000000000 --- a/_images/sphx_glr_ftface_props_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ftface_props_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ganged_plots_001.png b/_images/sphx_glr_ganged_plots_001.png deleted file mode 120000 index 58e9f685cea..00000000000 --- a/_images/sphx_glr_ganged_plots_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ganged_plots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_ganged_plots_001_2_0x.png b/_images/sphx_glr_ganged_plots_001_2_0x.png deleted file mode 120000 index 03bd3b0928c..00000000000 --- a/_images/sphx_glr_ganged_plots_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ganged_plots_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ganged_plots_thumb.png b/_images/sphx_glr_ganged_plots_thumb.png deleted file mode 120000 index bf78545deba..00000000000 --- a/_images/sphx_glr_ganged_plots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ganged_plots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_001.png b/_images/sphx_glr_geo_demo_001.png deleted file mode 120000 index e9435f11784..00000000000 --- a/_images/sphx_glr_geo_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_001_2_0x.png b/_images/sphx_glr_geo_demo_001_2_0x.png deleted file mode 120000 index e7b8ca7f3f2..00000000000 --- a/_images/sphx_glr_geo_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_002.png b/_images/sphx_glr_geo_demo_002.png deleted file mode 120000 index c540b858c41..00000000000 --- a/_images/sphx_glr_geo_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_002_2_0x.png b/_images/sphx_glr_geo_demo_002_2_0x.png deleted file mode 120000 index 4543fc09ff5..00000000000 --- a/_images/sphx_glr_geo_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_003.png b/_images/sphx_glr_geo_demo_003.png deleted file mode 120000 index c0c84c96e8a..00000000000 --- a/_images/sphx_glr_geo_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_003_2_0x.png b/_images/sphx_glr_geo_demo_003_2_0x.png deleted file mode 120000 index fd875c131d4..00000000000 --- a/_images/sphx_glr_geo_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_004.png b/_images/sphx_glr_geo_demo_004.png deleted file mode 120000 index 1cf9490fd05..00000000000 --- a/_images/sphx_glr_geo_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_004_2_0x.png b/_images/sphx_glr_geo_demo_004_2_0x.png deleted file mode 120000 index ba99e8c4691..00000000000 --- a/_images/sphx_glr_geo_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_geo_demo_thumb.png b/_images/sphx_glr_geo_demo_thumb.png deleted file mode 120000 index f2bd6ba4ecb..00000000000 --- a/_images/sphx_glr_geo_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_geo_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ggplot_001.png b/_images/sphx_glr_ggplot_001.png deleted file mode 120000 index 7a47b368345..00000000000 --- a/_images/sphx_glr_ggplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ggplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_ggplot_001_2_0x.png b/_images/sphx_glr_ggplot_001_2_0x.png deleted file mode 120000 index 30387c00545..00000000000 --- a/_images/sphx_glr_ggplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ggplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ggplot_thumb.png b/_images/sphx_glr_ggplot_thumb.png deleted file mode 120000 index eeccd22ca30..00000000000 --- a/_images/sphx_glr_ggplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ggplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ginput_demo_sgskip_thumb.png b/_images/sphx_glr_ginput_demo_sgskip_thumb.png deleted file mode 120000 index dd946ecd7f6..00000000000 --- a/_images/sphx_glr_ginput_demo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_ginput_demo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ginput_manual_clabel_sgskip_thumb.png b/_images/sphx_glr_ginput_manual_clabel_sgskip_thumb.png deleted file mode 120000 index c374a01047a..00000000000 --- a/_images/sphx_glr_ginput_manual_clabel_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ginput_manual_clabel_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gradient_bar_001.png b/_images/sphx_glr_gradient_bar_001.png deleted file mode 120000 index ef10cb0b7cb..00000000000 --- a/_images/sphx_glr_gradient_bar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gradient_bar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_gradient_bar_001_2_0x.png b/_images/sphx_glr_gradient_bar_001_2_0x.png deleted file mode 120000 index cc482367703..00000000000 --- a/_images/sphx_glr_gradient_bar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gradient_bar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gradient_bar_thumb.png b/_images/sphx_glr_gradient_bar_thumb.png deleted file mode 120000 index a67ce0124a2..00000000000 --- a/_images/sphx_glr_gradient_bar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gradient_bar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_grayscale_001.png b/_images/sphx_glr_grayscale_001.png deleted file mode 120000 index 3c81d39de45..00000000000 --- a/_images/sphx_glr_grayscale_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_grayscale_001.png \ No newline at end of file diff --git a/_images/sphx_glr_grayscale_001_2_0x.png b/_images/sphx_glr_grayscale_001_2_0x.png deleted file mode 120000 index 5b4c4b3d2ba..00000000000 --- a/_images/sphx_glr_grayscale_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_grayscale_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_grayscale_thumb.png b/_images/sphx_glr_grayscale_thumb.png deleted file mode 120000 index b62de7ac1ca..00000000000 --- a/_images/sphx_glr_grayscale_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_grayscale_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_griddata_demo_001.png b/_images/sphx_glr_griddata_demo_001.png deleted file mode 120000 index 77148ecb765..00000000000 --- a/_images/sphx_glr_griddata_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_griddata_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_griddata_demo_thumb.png b/_images/sphx_glr_griddata_demo_thumb.png deleted file mode 120000 index 75042c5c6f1..00000000000 --- a/_images/sphx_glr_griddata_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_griddata_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_001.png b/_images/sphx_glr_gridspec_001.png deleted file mode 120000 index 9279a3684dc..00000000000 --- a/_images/sphx_glr_gridspec_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_001.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_001_2_0x.png b/_images/sphx_glr_gridspec_001_2_0x.png deleted file mode 120000 index 81ce3c9d9a3..00000000000 --- a/_images/sphx_glr_gridspec_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_002.png b/_images/sphx_glr_gridspec_002.png deleted file mode 120000 index 3f4731df902..00000000000 --- a/_images/sphx_glr_gridspec_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_002.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_002_2_0x.png b/_images/sphx_glr_gridspec_002_2_0x.png deleted file mode 120000 index 94537766568..00000000000 --- a/_images/sphx_glr_gridspec_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_003.png b/_images/sphx_glr_gridspec_003.png deleted file mode 120000 index aff6ce61eb8..00000000000 --- a/_images/sphx_glr_gridspec_003.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_003.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_003_2_0x.png b/_images/sphx_glr_gridspec_003_2_0x.png deleted file mode 120000 index e4bc50cecf1..00000000000 --- a/_images/sphx_glr_gridspec_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_004.png b/_images/sphx_glr_gridspec_004.png deleted file mode 120000 index 6931a45ee64..00000000000 --- a/_images/sphx_glr_gridspec_004.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_004.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_004_2_0x.png b/_images/sphx_glr_gridspec_004_2_0x.png deleted file mode 120000 index e7a2b8155fa..00000000000 --- a/_images/sphx_glr_gridspec_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_005.png b/_images/sphx_glr_gridspec_005.png deleted file mode 120000 index a73f5d720dd..00000000000 --- a/_images/sphx_glr_gridspec_005.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_005.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_005_2_0x.png b/_images/sphx_glr_gridspec_005_2_0x.png deleted file mode 120000 index 35f08a15256..00000000000 --- a/_images/sphx_glr_gridspec_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_006.png b/_images/sphx_glr_gridspec_006.png deleted file mode 120000 index 5d29f03c7e9..00000000000 --- a/_images/sphx_glr_gridspec_006.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_006.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_006_2_0x.png b/_images/sphx_glr_gridspec_006_2_0x.png deleted file mode 120000 index f47e3035980..00000000000 --- a/_images/sphx_glr_gridspec_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_007.png b/_images/sphx_glr_gridspec_007.png deleted file mode 120000 index aa4adaf9359..00000000000 --- a/_images/sphx_glr_gridspec_007.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_007.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_007_2_0x.png b/_images/sphx_glr_gridspec_007_2_0x.png deleted file mode 120000 index 3d110b0ee20..00000000000 --- a/_images/sphx_glr_gridspec_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_008.png b/_images/sphx_glr_gridspec_008.png deleted file mode 120000 index e3bfe99ad33..00000000000 --- a/_images/sphx_glr_gridspec_008.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_008.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_008_2_0x.png b/_images/sphx_glr_gridspec_008_2_0x.png deleted file mode 120000 index a7949c07e05..00000000000 --- a/_images/sphx_glr_gridspec_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_009.png b/_images/sphx_glr_gridspec_009.png deleted file mode 120000 index a456ba26825..00000000000 --- a/_images/sphx_glr_gridspec_009.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_009.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_009_2_0x.png b/_images/sphx_glr_gridspec_009_2_0x.png deleted file mode 120000 index 87139f19e85..00000000000 --- a/_images/sphx_glr_gridspec_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_010.png b/_images/sphx_glr_gridspec_010.png deleted file mode 120000 index 5881f983982..00000000000 --- a/_images/sphx_glr_gridspec_010.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_010.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_010_2_0x.png b/_images/sphx_glr_gridspec_010_2_0x.png deleted file mode 120000 index be0d5b6c905..00000000000 --- a/_images/sphx_glr_gridspec_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_011.png b/_images/sphx_glr_gridspec_011.png deleted file mode 120000 index 74c74f81770..00000000000 --- a/_images/sphx_glr_gridspec_011.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_011.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_011_2_0x.png b/_images/sphx_glr_gridspec_011_2_0x.png deleted file mode 120000 index 606676e2912..00000000000 --- a/_images/sphx_glr_gridspec_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_012.png b/_images/sphx_glr_gridspec_012.png deleted file mode 120000 index 0ce61881ca5..00000000000 --- a/_images/sphx_glr_gridspec_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_gridspec_012.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_013.png b/_images/sphx_glr_gridspec_013.png deleted file mode 120000 index c18f2498892..00000000000 --- a/_images/sphx_glr_gridspec_013.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_gridspec_013.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_and_subplots_001.png b/_images/sphx_glr_gridspec_and_subplots_001.png deleted file mode 120000 index 5cda5e151b8..00000000000 --- a/_images/sphx_glr_gridspec_and_subplots_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_and_subplots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_and_subplots_001_2_0x.png b/_images/sphx_glr_gridspec_and_subplots_001_2_0x.png deleted file mode 120000 index 0becdd83ec3..00000000000 --- a/_images/sphx_glr_gridspec_and_subplots_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_and_subplots_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_and_subplots_thumb.png b/_images/sphx_glr_gridspec_and_subplots_thumb.png deleted file mode 120000 index d93b5562286..00000000000 --- a/_images/sphx_glr_gridspec_and_subplots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_and_subplots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_multicolumn_001.png b/_images/sphx_glr_gridspec_multicolumn_001.png deleted file mode 120000 index e9c41f099f6..00000000000 --- a/_images/sphx_glr_gridspec_multicolumn_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_multicolumn_001.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_multicolumn_001_2_0x.png b/_images/sphx_glr_gridspec_multicolumn_001_2_0x.png deleted file mode 120000 index ea82193a65b..00000000000 --- a/_images/sphx_glr_gridspec_multicolumn_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_multicolumn_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_multicolumn_thumb.png b/_images/sphx_glr_gridspec_multicolumn_thumb.png deleted file mode 120000 index d981a5920bb..00000000000 --- a/_images/sphx_glr_gridspec_multicolumn_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_multicolumn_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_nested_001.png b/_images/sphx_glr_gridspec_nested_001.png deleted file mode 120000 index 6693f2f97ef..00000000000 --- a/_images/sphx_glr_gridspec_nested_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_nested_001.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_nested_001_2_0x.png b/_images/sphx_glr_gridspec_nested_001_2_0x.png deleted file mode 120000 index 59309ae42d5..00000000000 --- a/_images/sphx_glr_gridspec_nested_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_nested_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_nested_thumb.png b/_images/sphx_glr_gridspec_nested_thumb.png deleted file mode 120000 index 929da9c90d3..00000000000 --- a/_images/sphx_glr_gridspec_nested_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gridspec_nested_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gridspec_thumb.png b/_images/sphx_glr_gridspec_thumb.png deleted file mode 120000 index c4d109f6030..00000000000 --- a/_images/sphx_glr_gridspec_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_gridspec_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gtk3_spreadsheet_sgskip_thumb.png b/_images/sphx_glr_gtk3_spreadsheet_sgskip_thumb.png deleted file mode 120000 index 0fe3893144b..00000000000 --- a/_images/sphx_glr_gtk3_spreadsheet_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gtk3_spreadsheet_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gtk4_spreadsheet_sgskip_thumb.png b/_images/sphx_glr_gtk4_spreadsheet_sgskip_thumb.png deleted file mode 120000 index d96b84b4b79..00000000000 --- a/_images/sphx_glr_gtk4_spreadsheet_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_gtk4_spreadsheet_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_gtk_spreadsheet_sgskip_thumb.png b/_images/sphx_glr_gtk_spreadsheet_sgskip_thumb.png deleted file mode 120000 index 04759ce5437..00000000000 --- a/_images/sphx_glr_gtk_spreadsheet_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_gtk_spreadsheet_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hat_graph_001.png b/_images/sphx_glr_hat_graph_001.png deleted file mode 120000 index 60129e5d945..00000000000 --- a/_images/sphx_glr_hat_graph_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hat_graph_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hat_graph_001_2_0x.png b/_images/sphx_glr_hat_graph_001_2_0x.png deleted file mode 120000 index aa22a9cf9b8..00000000000 --- a/_images/sphx_glr_hat_graph_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hat_graph_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hat_graph_thumb.png b/_images/sphx_glr_hat_graph_thumb.png deleted file mode 120000 index ffcc57b73ad..00000000000 --- a/_images/sphx_glr_hat_graph_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hat_graph_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_demo_001.png b/_images/sphx_glr_hatch_demo_001.png deleted file mode 120000 index f71f2e2af8b..00000000000 --- a/_images/sphx_glr_hatch_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_demo_001_2_0x.png b/_images/sphx_glr_hatch_demo_001_2_0x.png deleted file mode 120000 index f4fb4527a73..00000000000 --- a/_images/sphx_glr_hatch_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_demo_thumb.png b/_images/sphx_glr_hatch_demo_thumb.png deleted file mode 120000 index 9de637bce78..00000000000 --- a/_images/sphx_glr_hatch_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_style_reference_001.png b/_images/sphx_glr_hatch_style_reference_001.png deleted file mode 120000 index 331e97b49e8..00000000000 --- a/_images/sphx_glr_hatch_style_reference_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_style_reference_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_style_reference_001_2_0x.png b/_images/sphx_glr_hatch_style_reference_001_2_0x.png deleted file mode 120000 index 980d80288d0..00000000000 --- a/_images/sphx_glr_hatch_style_reference_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_style_reference_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_style_reference_002.png b/_images/sphx_glr_hatch_style_reference_002.png deleted file mode 120000 index 5c0e565062c..00000000000 --- a/_images/sphx_glr_hatch_style_reference_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_style_reference_002.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_style_reference_002_2_0x.png b/_images/sphx_glr_hatch_style_reference_002_2_0x.png deleted file mode 120000 index 3fa92c351c9..00000000000 --- a/_images/sphx_glr_hatch_style_reference_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_style_reference_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_style_reference_003.png b/_images/sphx_glr_hatch_style_reference_003.png deleted file mode 120000 index a251212128a..00000000000 --- a/_images/sphx_glr_hatch_style_reference_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_style_reference_003.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_style_reference_003_2_0x.png b/_images/sphx_glr_hatch_style_reference_003_2_0x.png deleted file mode 120000 index c5d9e63921b..00000000000 --- a/_images/sphx_glr_hatch_style_reference_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_style_reference_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hatch_style_reference_thumb.png b/_images/sphx_glr_hatch_style_reference_thumb.png deleted file mode 120000 index 0d0ad46d4b0..00000000000 --- a/_images/sphx_glr_hatch_style_reference_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hatch_style_reference_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hexbin_001.png b/_images/sphx_glr_hexbin_001.png deleted file mode 120000 index 84a48fbd404..00000000000 --- a/_images/sphx_glr_hexbin_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hexbin_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hexbin_001_2_0x.png b/_images/sphx_glr_hexbin_001_2_0x.png deleted file mode 120000 index a6e04d5f97e..00000000000 --- a/_images/sphx_glr_hexbin_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hexbin_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hexbin_demo_001.png b/_images/sphx_glr_hexbin_demo_001.png deleted file mode 120000 index d5a4fb672ad..00000000000 --- a/_images/sphx_glr_hexbin_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hexbin_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hexbin_demo_001_2_0x.png b/_images/sphx_glr_hexbin_demo_001_2_0x.png deleted file mode 120000 index 3461f334afd..00000000000 --- a/_images/sphx_glr_hexbin_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hexbin_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hexbin_demo_002.png b/_images/sphx_glr_hexbin_demo_002.png deleted file mode 120000 index 464d13f0b0e..00000000000 --- a/_images/sphx_glr_hexbin_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_hexbin_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_hexbin_demo_thumb.png b/_images/sphx_glr_hexbin_demo_thumb.png deleted file mode 120000 index da4df096bd3..00000000000 --- a/_images/sphx_glr_hexbin_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hexbin_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hexbin_thumb.png b/_images/sphx_glr_hexbin_thumb.png deleted file mode 120000 index 6bef1f7f730..00000000000 --- a/_images/sphx_glr_hexbin_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hexbin_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hinton_demo_001.png b/_images/sphx_glr_hinton_demo_001.png deleted file mode 120000 index 00ebed71e60..00000000000 --- a/_images/sphx_glr_hinton_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hinton_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hinton_demo_001_2_0x.png b/_images/sphx_glr_hinton_demo_001_2_0x.png deleted file mode 120000 index dfbead87341..00000000000 --- a/_images/sphx_glr_hinton_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hinton_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hinton_demo_thumb.png b/_images/sphx_glr_hinton_demo_thumb.png deleted file mode 120000 index 5e7db5b2ab6..00000000000 --- a/_images/sphx_glr_hinton_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hinton_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hist2d_001.png b/_images/sphx_glr_hist2d_001.png deleted file mode 120000 index d81abd38035..00000000000 --- a/_images/sphx_glr_hist2d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist2d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hist2d_001_2_0x.png b/_images/sphx_glr_hist2d_001_2_0x.png deleted file mode 120000 index a088df25378..00000000000 --- a/_images/sphx_glr_hist2d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist2d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hist2d_thumb.png b/_images/sphx_glr_hist2d_thumb.png deleted file mode 120000 index 7aae98df267..00000000000 --- a/_images/sphx_glr_hist2d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist2d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hist3d_001.png b/_images/sphx_glr_hist3d_001.png deleted file mode 120000 index 75a81bd26a3..00000000000 --- a/_images/sphx_glr_hist3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hist3d_001_2_0x.png b/_images/sphx_glr_hist3d_001_2_0x.png deleted file mode 120000 index 640e4765332..00000000000 --- a/_images/sphx_glr_hist3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hist3d_thumb.png b/_images/sphx_glr_hist3d_thumb.png deleted file mode 120000 index e8968fbbf75..00000000000 --- a/_images/sphx_glr_hist3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_001.png b/_images/sphx_glr_hist_001.png deleted file mode 120000 index 3f78999cfb4..00000000000 --- a/_images/sphx_glr_hist_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_001_2_0x.png b/_images/sphx_glr_hist_001_2_0x.png deleted file mode 120000 index cd44d6a397c..00000000000 --- a/_images/sphx_glr_hist_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_002.png b/_images/sphx_glr_hist_002.png deleted file mode 120000 index 81331c48fcf..00000000000 --- a/_images/sphx_glr_hist_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_002.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_002_2_0x.png b/_images/sphx_glr_hist_002_2_0x.png deleted file mode 120000 index c3922523279..00000000000 --- a/_images/sphx_glr_hist_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_003.png b/_images/sphx_glr_hist_003.png deleted file mode 120000 index a31b4558064..00000000000 --- a/_images/sphx_glr_hist_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_003.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_003_2_0x.png b/_images/sphx_glr_hist_003_2_0x.png deleted file mode 120000 index bf0f455f0b9..00000000000 --- a/_images/sphx_glr_hist_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_004.png b/_images/sphx_glr_hist_004.png deleted file mode 120000 index 44678f21972..00000000000 --- a/_images/sphx_glr_hist_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_004.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_004_2_0x.png b/_images/sphx_glr_hist_004_2_0x.png deleted file mode 120000 index fd34430a064..00000000000 --- a/_images/sphx_glr_hist_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_plot_001.png b/_images/sphx_glr_hist_plot_001.png deleted file mode 120000 index 53425786b53..00000000000 --- a/_images/sphx_glr_hist_plot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_plot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_plot_001_2_0x.png b/_images/sphx_glr_hist_plot_001_2_0x.png deleted file mode 120000 index b8896e00e63..00000000000 --- a/_images/sphx_glr_hist_plot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_plot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_plot_thumb.png b/_images/sphx_glr_hist_plot_thumb.png deleted file mode 120000 index 7ac2f5b1bd5..00000000000 --- a/_images/sphx_glr_hist_plot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_plot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hist_thumb.png b/_images/sphx_glr_hist_thumb.png deleted file mode 120000 index ce1ea79bc54..00000000000 --- a/_images/sphx_glr_hist_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hist_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_001.png b/_images/sphx_glr_histogram_001.png deleted file mode 120000 index 4b43e6637cc..00000000000 --- a/_images/sphx_glr_histogram_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_histogram_001.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_0011.png b/_images/sphx_glr_histogram_0011.png deleted file mode 120000 index 5381003ab66..00000000000 --- a/_images/sphx_glr_histogram_0011.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_histogram_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_001_2_0x.png b/_images/sphx_glr_histogram_001_2_0x.png deleted file mode 120000 index 1f141663f2b..00000000000 --- a/_images/sphx_glr_histogram_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_histogram_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_cumulative_001.png b/_images/sphx_glr_histogram_cumulative_001.png deleted file mode 120000 index a19e49a98c5..00000000000 --- a/_images/sphx_glr_histogram_cumulative_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_cumulative_001.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_cumulative_001_2_0x.png b/_images/sphx_glr_histogram_cumulative_001_2_0x.png deleted file mode 120000 index 34130fc8832..00000000000 --- a/_images/sphx_glr_histogram_cumulative_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_cumulative_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_cumulative_thumb.png b/_images/sphx_glr_histogram_cumulative_thumb.png deleted file mode 120000 index cf499ff3750..00000000000 --- a/_images/sphx_glr_histogram_cumulative_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_cumulative_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_demo_canvasagg_sgskip_thumb.png b/_images/sphx_glr_histogram_demo_canvasagg_sgskip_thumb.png deleted file mode 120000 index 65bcd5f1329..00000000000 --- a/_images/sphx_glr_histogram_demo_canvasagg_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_histogram_demo_canvasagg_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_features_001.png b/_images/sphx_glr_histogram_features_001.png deleted file mode 120000 index c9c80dc5950..00000000000 --- a/_images/sphx_glr_histogram_features_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_features_001.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_features_0011.png b/_images/sphx_glr_histogram_features_0011.png deleted file mode 120000 index 3c2a82ba6e6..00000000000 --- a/_images/sphx_glr_histogram_features_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_histogram_features_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_features_001_2_0x.png b/_images/sphx_glr_histogram_features_001_2_0x.png deleted file mode 120000 index f9e052a4d3f..00000000000 --- a/_images/sphx_glr_histogram_features_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_features_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_features_thumb.png b/_images/sphx_glr_histogram_features_thumb.png deleted file mode 120000 index 01813009b9a..00000000000 --- a/_images/sphx_glr_histogram_features_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_features_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_histtypes_001.png b/_images/sphx_glr_histogram_histtypes_001.png deleted file mode 120000 index 7b1392c32a4..00000000000 --- a/_images/sphx_glr_histogram_histtypes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_histtypes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_histtypes_001_2_0x.png b/_images/sphx_glr_histogram_histtypes_001_2_0x.png deleted file mode 120000 index 6dd3eb51b0b..00000000000 --- a/_images/sphx_glr_histogram_histtypes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_histtypes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_histtypes_thumb.png b/_images/sphx_glr_histogram_histtypes_thumb.png deleted file mode 120000 index acfffb71e33..00000000000 --- a/_images/sphx_glr_histogram_histtypes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_histtypes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_multihist_001.png b/_images/sphx_glr_histogram_multihist_001.png deleted file mode 120000 index 78c2a5d6c8d..00000000000 --- a/_images/sphx_glr_histogram_multihist_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_multihist_001.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_multihist_001_2_0x.png b/_images/sphx_glr_histogram_multihist_001_2_0x.png deleted file mode 120000 index 8ff5096dc76..00000000000 --- a/_images/sphx_glr_histogram_multihist_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_multihist_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_multihist_thumb.png b/_images/sphx_glr_histogram_multihist_thumb.png deleted file mode 120000 index efc62d2100a..00000000000 --- a/_images/sphx_glr_histogram_multihist_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_multihist_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_path_001.png b/_images/sphx_glr_histogram_path_001.png deleted file mode 120000 index b005ca5500a..00000000000 --- a/_images/sphx_glr_histogram_path_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_path_001.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_path_001_2_0x.png b/_images/sphx_glr_histogram_path_001_2_0x.png deleted file mode 120000 index b126b60bdc2..00000000000 --- a/_images/sphx_glr_histogram_path_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_path_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_path_thumb.png b/_images/sphx_glr_histogram_path_thumb.png deleted file mode 120000 index 4cbc8d76ab9..00000000000 --- a/_images/sphx_glr_histogram_path_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_histogram_path_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_thumb.png b/_images/sphx_glr_histogram_thumb.png deleted file mode 120000 index bdb2b8bd630..00000000000 --- a/_images/sphx_glr_histogram_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_histogram_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_histogram_thumb1.png b/_images/sphx_glr_histogram_thumb1.png deleted file mode 120000 index bf4e2246ec9..00000000000 --- a/_images/sphx_glr_histogram_thumb1.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_histogram_thumb1.png \ No newline at end of file diff --git a/_images/sphx_glr_horizontal_barchart_distribution_001.png b/_images/sphx_glr_horizontal_barchart_distribution_001.png deleted file mode 120000 index 77732c8c02f..00000000000 --- a/_images/sphx_glr_horizontal_barchart_distribution_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_horizontal_barchart_distribution_001.png \ No newline at end of file diff --git a/_images/sphx_glr_horizontal_barchart_distribution_001_2_0x.png b/_images/sphx_glr_horizontal_barchart_distribution_001_2_0x.png deleted file mode 120000 index b8ecea70ca6..00000000000 --- a/_images/sphx_glr_horizontal_barchart_distribution_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_horizontal_barchart_distribution_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_horizontal_barchart_distribution_thumb.png b/_images/sphx_glr_horizontal_barchart_distribution_thumb.png deleted file mode 120000 index 3d24a689d63..00000000000 --- a/_images/sphx_glr_horizontal_barchart_distribution_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_horizontal_barchart_distribution_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_hyperlinks_sgskip_thumb.png b/_images/sphx_glr_hyperlinks_sgskip_thumb.png deleted file mode 120000 index e82c94b6474..00000000000 --- a/_images/sphx_glr_hyperlinks_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_hyperlinks_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_annotated_heatmap_001.png b/_images/sphx_glr_image_annotated_heatmap_001.png deleted file mode 120000 index 57b1e418e1a..00000000000 --- a/_images/sphx_glr_image_annotated_heatmap_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_annotated_heatmap_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_annotated_heatmap_001_2_0x.png b/_images/sphx_glr_image_annotated_heatmap_001_2_0x.png deleted file mode 120000 index 96840619a91..00000000000 --- a/_images/sphx_glr_image_annotated_heatmap_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_annotated_heatmap_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_annotated_heatmap_002.png b/_images/sphx_glr_image_annotated_heatmap_002.png deleted file mode 120000 index f5b69b149f2..00000000000 --- a/_images/sphx_glr_image_annotated_heatmap_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_annotated_heatmap_002.png \ No newline at end of file diff --git a/_images/sphx_glr_image_annotated_heatmap_002_2_0x.png b/_images/sphx_glr_image_annotated_heatmap_002_2_0x.png deleted file mode 120000 index 392a6a7ef48..00000000000 --- a/_images/sphx_glr_image_annotated_heatmap_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_annotated_heatmap_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_annotated_heatmap_003.png b/_images/sphx_glr_image_annotated_heatmap_003.png deleted file mode 120000 index 24189468fdf..00000000000 --- a/_images/sphx_glr_image_annotated_heatmap_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_annotated_heatmap_003.png \ No newline at end of file diff --git a/_images/sphx_glr_image_annotated_heatmap_003_2_0x.png b/_images/sphx_glr_image_annotated_heatmap_003_2_0x.png deleted file mode 120000 index a321c308e26..00000000000 --- a/_images/sphx_glr_image_annotated_heatmap_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_annotated_heatmap_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_annotated_heatmap_thumb.png b/_images/sphx_glr_image_annotated_heatmap_thumb.png deleted file mode 120000 index 7403afca6b8..00000000000 --- a/_images/sphx_glr_image_annotated_heatmap_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_annotated_heatmap_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_001.png b/_images/sphx_glr_image_antialiasing_001.png deleted file mode 120000 index bff50fd3544..00000000000 --- a/_images/sphx_glr_image_antialiasing_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_001_2_0x.png b/_images/sphx_glr_image_antialiasing_001_2_0x.png deleted file mode 120000 index 9d2671bb0ce..00000000000 --- a/_images/sphx_glr_image_antialiasing_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_002.png b/_images/sphx_glr_image_antialiasing_002.png deleted file mode 120000 index d25f5ad0c3a..00000000000 --- a/_images/sphx_glr_image_antialiasing_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_002.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_002_2_0x.png b/_images/sphx_glr_image_antialiasing_002_2_0x.png deleted file mode 120000 index ef6072b14f9..00000000000 --- a/_images/sphx_glr_image_antialiasing_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_003.png b/_images/sphx_glr_image_antialiasing_003.png deleted file mode 120000 index bd7802fb1b9..00000000000 --- a/_images/sphx_glr_image_antialiasing_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_003.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_003_2_0x.png b/_images/sphx_glr_image_antialiasing_003_2_0x.png deleted file mode 120000 index af3f0312ccd..00000000000 --- a/_images/sphx_glr_image_antialiasing_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_004.png b/_images/sphx_glr_image_antialiasing_004.png deleted file mode 120000 index 9718fa998ad..00000000000 --- a/_images/sphx_glr_image_antialiasing_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_004.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_004_2_0x.png b/_images/sphx_glr_image_antialiasing_004_2_0x.png deleted file mode 120000 index 7871ce163ec..00000000000 --- a/_images/sphx_glr_image_antialiasing_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_antialiasing_thumb.png b/_images/sphx_glr_image_antialiasing_thumb.png deleted file mode 120000 index ac1fe52a9fb..00000000000 --- a/_images/sphx_glr_image_antialiasing_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_antialiasing_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_clip_path_001.png b/_images/sphx_glr_image_clip_path_001.png deleted file mode 120000 index c3972f45ba1..00000000000 --- a/_images/sphx_glr_image_clip_path_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_clip_path_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_clip_path_001_2_0x.png b/_images/sphx_glr_image_clip_path_001_2_0x.png deleted file mode 120000 index 179d420fab8..00000000000 --- a/_images/sphx_glr_image_clip_path_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_clip_path_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_clip_path_thumb.png b/_images/sphx_glr_image_clip_path_thumb.png deleted file mode 120000 index 20afe57e219..00000000000 --- a/_images/sphx_glr_image_clip_path_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_clip_path_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_001.png b/_images/sphx_glr_image_demo_001.png deleted file mode 120000 index 34752397da4..00000000000 --- a/_images/sphx_glr_image_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_001_2_0x.png b/_images/sphx_glr_image_demo_001_2_0x.png deleted file mode 120000 index b9104ac9f22..00000000000 --- a/_images/sphx_glr_image_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_002.png b/_images/sphx_glr_image_demo_002.png deleted file mode 120000 index 0fff9cacff9..00000000000 --- a/_images/sphx_glr_image_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_002_2_0x.png b/_images/sphx_glr_image_demo_002_2_0x.png deleted file mode 120000 index 46d18a5df00..00000000000 --- a/_images/sphx_glr_image_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_003.png b/_images/sphx_glr_image_demo_003.png deleted file mode 120000 index ea79381b771..00000000000 --- a/_images/sphx_glr_image_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_0031.png b/_images/sphx_glr_image_demo_0031.png deleted file mode 120000 index 0c1c94ea937..00000000000 --- a/_images/sphx_glr_image_demo_0031.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_image_demo_0031.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_003_2_0x.png b/_images/sphx_glr_image_demo_003_2_0x.png deleted file mode 120000 index 08a5dcc474b..00000000000 --- a/_images/sphx_glr_image_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_004.png b/_images/sphx_glr_image_demo_004.png deleted file mode 120000 index a19d2b80a55..00000000000 --- a/_images/sphx_glr_image_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_004_2_0x.png b/_images/sphx_glr_image_demo_004_2_0x.png deleted file mode 120000 index a2caf0b936d..00000000000 --- a/_images/sphx_glr_image_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_005.png b/_images/sphx_glr_image_demo_005.png deleted file mode 120000 index e5b075b7eba..00000000000 --- a/_images/sphx_glr_image_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_005_2_0x.png b/_images/sphx_glr_image_demo_005_2_0x.png deleted file mode 120000 index f1ee9e7df9b..00000000000 --- a/_images/sphx_glr_image_demo_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_006.png b/_images/sphx_glr_image_demo_006.png deleted file mode 120000 index 84083967a1b..00000000000 --- a/_images/sphx_glr_image_demo_006.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_image_demo_006.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_006_2_0x.png b/_images/sphx_glr_image_demo_006_2_0x.png deleted file mode 120000 index 10dd6000c18..00000000000 --- a/_images/sphx_glr_image_demo_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_image_demo_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_demo_thumb.png b/_images/sphx_glr_image_demo_thumb.png deleted file mode 120000 index a5a6e057418..00000000000 --- a/_images/sphx_glr_image_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_masked_001.png b/_images/sphx_glr_image_masked_001.png deleted file mode 120000 index 19d36053123..00000000000 --- a/_images/sphx_glr_image_masked_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_masked_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_masked_001_2_0x.png b/_images/sphx_glr_image_masked_001_2_0x.png deleted file mode 120000 index ba7e9d82fc8..00000000000 --- a/_images/sphx_glr_image_masked_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_masked_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_masked_thumb.png b/_images/sphx_glr_image_masked_thumb.png deleted file mode 120000 index 7fdca8dbd4d..00000000000 --- a/_images/sphx_glr_image_masked_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_masked_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_nonuniform_001.png b/_images/sphx_glr_image_nonuniform_001.png deleted file mode 120000 index 0bf48975218..00000000000 --- a/_images/sphx_glr_image_nonuniform_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_nonuniform_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_nonuniform_001_2_0x.png b/_images/sphx_glr_image_nonuniform_001_2_0x.png deleted file mode 120000 index 22b15cb1a79..00000000000 --- a/_images/sphx_glr_image_nonuniform_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_nonuniform_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_nonuniform_thumb.png b/_images/sphx_glr_image_nonuniform_thumb.png deleted file mode 120000 index 6dcb8ed1a50..00000000000 --- a/_images/sphx_glr_image_nonuniform_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_nonuniform_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_slices_viewer_001.png b/_images/sphx_glr_image_slices_viewer_001.png deleted file mode 120000 index b86d7e4fbc5..00000000000 --- a/_images/sphx_glr_image_slices_viewer_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_slices_viewer_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_slices_viewer_001_2_0x.png b/_images/sphx_glr_image_slices_viewer_001_2_0x.png deleted file mode 120000 index 0cde11fb765..00000000000 --- a/_images/sphx_glr_image_slices_viewer_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_slices_viewer_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_slices_viewer_thumb.png b/_images/sphx_glr_image_slices_viewer_thumb.png deleted file mode 120000 index 9815bb485d0..00000000000 --- a/_images/sphx_glr_image_slices_viewer_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_slices_viewer_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_thumbnail_sgskip_thumb.png b/_images/sphx_glr_image_thumbnail_sgskip_thumb.png deleted file mode 120000 index 68776b9a38c..00000000000 --- a/_images/sphx_glr_image_thumbnail_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_thumbnail_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_transparency_blend_001.png b/_images/sphx_glr_image_transparency_blend_001.png deleted file mode 120000 index 92f922d34d9..00000000000 --- a/_images/sphx_glr_image_transparency_blend_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_transparency_blend_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_transparency_blend_001_2_0x.png b/_images/sphx_glr_image_transparency_blend_001_2_0x.png deleted file mode 120000 index 43c9aba032d..00000000000 --- a/_images/sphx_glr_image_transparency_blend_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_transparency_blend_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_transparency_blend_002.png b/_images/sphx_glr_image_transparency_blend_002.png deleted file mode 120000 index 2b445ceded5..00000000000 --- a/_images/sphx_glr_image_transparency_blend_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_transparency_blend_002.png \ No newline at end of file diff --git a/_images/sphx_glr_image_transparency_blend_002_2_0x.png b/_images/sphx_glr_image_transparency_blend_002_2_0x.png deleted file mode 120000 index 7ce76fb9f6d..00000000000 --- a/_images/sphx_glr_image_transparency_blend_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_transparency_blend_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_transparency_blend_003.png b/_images/sphx_glr_image_transparency_blend_003.png deleted file mode 120000 index 539622779a4..00000000000 --- a/_images/sphx_glr_image_transparency_blend_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_transparency_blend_003.png \ No newline at end of file diff --git a/_images/sphx_glr_image_transparency_blend_003_2_0x.png b/_images/sphx_glr_image_transparency_blend_003_2_0x.png deleted file mode 120000 index 14a2d78fe3c..00000000000 --- a/_images/sphx_glr_image_transparency_blend_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_transparency_blend_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_transparency_blend_thumb.png b/_images/sphx_glr_image_transparency_blend_thumb.png deleted file mode 120000 index 4bb3386bfa9..00000000000 --- a/_images/sphx_glr_image_transparency_blend_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_transparency_blend_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_image_zcoord_001.png b/_images/sphx_glr_image_zcoord_001.png deleted file mode 120000 index 55048e0d649..00000000000 --- a/_images/sphx_glr_image_zcoord_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_zcoord_001.png \ No newline at end of file diff --git a/_images/sphx_glr_image_zcoord_001_2_0x.png b/_images/sphx_glr_image_zcoord_001_2_0x.png deleted file mode 120000 index 3c896286a24..00000000000 --- a/_images/sphx_glr_image_zcoord_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_zcoord_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_image_zcoord_thumb.png b/_images/sphx_glr_image_zcoord_thumb.png deleted file mode 120000 index b77fad224de..00000000000 --- a/_images/sphx_glr_image_zcoord_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_image_zcoord_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_images_001.png b/_images/sphx_glr_images_001.png deleted file mode 120000 index 23b14b29d23..00000000000 --- a/_images/sphx_glr_images_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_001.png \ No newline at end of file diff --git a/_images/sphx_glr_images_001_2_0x.png b/_images/sphx_glr_images_001_2_0x.png deleted file mode 120000 index c60418f2fed..00000000000 --- a/_images/sphx_glr_images_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_002.png b/_images/sphx_glr_images_002.png deleted file mode 120000 index 997922423ab..00000000000 --- a/_images/sphx_glr_images_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_002.png \ No newline at end of file diff --git a/_images/sphx_glr_images_002_2_0x.png b/_images/sphx_glr_images_002_2_0x.png deleted file mode 120000 index 32bef2271ac..00000000000 --- a/_images/sphx_glr_images_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_003.png b/_images/sphx_glr_images_003.png deleted file mode 120000 index bab4d91a83b..00000000000 --- a/_images/sphx_glr_images_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_003.png \ No newline at end of file diff --git a/_images/sphx_glr_images_003_2_0x.png b/_images/sphx_glr_images_003_2_0x.png deleted file mode 120000 index 0eff595763b..00000000000 --- a/_images/sphx_glr_images_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_004.png b/_images/sphx_glr_images_004.png deleted file mode 120000 index b0e2650dc84..00000000000 --- a/_images/sphx_glr_images_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_004.png \ No newline at end of file diff --git a/_images/sphx_glr_images_004_2_0x.png b/_images/sphx_glr_images_004_2_0x.png deleted file mode 120000 index cc38d1ae172..00000000000 --- a/_images/sphx_glr_images_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_005.png b/_images/sphx_glr_images_005.png deleted file mode 120000 index bad9b1f0117..00000000000 --- a/_images/sphx_glr_images_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_005.png \ No newline at end of file diff --git a/_images/sphx_glr_images_005_2_0x.png b/_images/sphx_glr_images_005_2_0x.png deleted file mode 120000 index df98a9aad0b..00000000000 --- a/_images/sphx_glr_images_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_006.png b/_images/sphx_glr_images_006.png deleted file mode 120000 index 5719bca24a1..00000000000 --- a/_images/sphx_glr_images_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_006.png \ No newline at end of file diff --git a/_images/sphx_glr_images_006_2_0x.png b/_images/sphx_glr_images_006_2_0x.png deleted file mode 120000 index 66a33133f7b..00000000000 --- a/_images/sphx_glr_images_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_007.png b/_images/sphx_glr_images_007.png deleted file mode 120000 index 855663a0d3d..00000000000 --- a/_images/sphx_glr_images_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_007.png \ No newline at end of file diff --git a/_images/sphx_glr_images_007_2_0x.png b/_images/sphx_glr_images_007_2_0x.png deleted file mode 120000 index f67800aa5bd..00000000000 --- a/_images/sphx_glr_images_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_008.png b/_images/sphx_glr_images_008.png deleted file mode 120000 index a519f4375cc..00000000000 --- a/_images/sphx_glr_images_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_008.png \ No newline at end of file diff --git a/_images/sphx_glr_images_008_2_0x.png b/_images/sphx_glr_images_008_2_0x.png deleted file mode 120000 index ca98555a3cd..00000000000 --- a/_images/sphx_glr_images_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_009.png b/_images/sphx_glr_images_009.png deleted file mode 120000 index 748df496393..00000000000 --- a/_images/sphx_glr_images_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_009.png \ No newline at end of file diff --git a/_images/sphx_glr_images_009_2_0x.png b/_images/sphx_glr_images_009_2_0x.png deleted file mode 120000 index 3b035914999..00000000000 --- a/_images/sphx_glr_images_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_010.png b/_images/sphx_glr_images_010.png deleted file mode 120000 index bc4df2ae929..00000000000 --- a/_images/sphx_glr_images_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_010.png \ No newline at end of file diff --git a/_images/sphx_glr_images_010_2_0x.png b/_images/sphx_glr_images_010_2_0x.png deleted file mode 120000 index 16279ec789d..00000000000 --- a/_images/sphx_glr_images_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_011.png b/_images/sphx_glr_images_011.png deleted file mode 120000 index 181a001a14d..00000000000 --- a/_images/sphx_glr_images_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_011.png \ No newline at end of file diff --git a/_images/sphx_glr_images_011_2_0x.png b/_images/sphx_glr_images_011_2_0x.png deleted file mode 120000 index 4d2b7e1a56c..00000000000 --- a/_images/sphx_glr_images_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_images_thumb.png b/_images/sphx_glr_images_thumb.png deleted file mode 120000 index 464966388ca..00000000000 --- a/_images/sphx_glr_images_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_images_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_001.png b/_images/sphx_glr_imshow_001.png deleted file mode 120000 index 01cf5ac7427..00000000000 --- a/_images/sphx_glr_imshow_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_001.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_001_2_0x.png b/_images/sphx_glr_imshow_001_2_0x.png deleted file mode 120000 index 60e616ea92f..00000000000 --- a/_images/sphx_glr_imshow_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_extent_001.png b/_images/sphx_glr_imshow_extent_001.png deleted file mode 120000 index 59b25905803..00000000000 --- a/_images/sphx_glr_imshow_extent_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_extent_001.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_extent_001_2_0x.png b/_images/sphx_glr_imshow_extent_001_2_0x.png deleted file mode 120000 index f73e5a04494..00000000000 --- a/_images/sphx_glr_imshow_extent_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_extent_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_extent_002.png b/_images/sphx_glr_imshow_extent_002.png deleted file mode 120000 index 20c75e4e032..00000000000 --- a/_images/sphx_glr_imshow_extent_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_extent_002.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_extent_002_2_0x.png b/_images/sphx_glr_imshow_extent_002_2_0x.png deleted file mode 120000 index 93b33e81b54..00000000000 --- a/_images/sphx_glr_imshow_extent_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_extent_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_extent_003.png b/_images/sphx_glr_imshow_extent_003.png deleted file mode 120000 index b2d40f36e8a..00000000000 --- a/_images/sphx_glr_imshow_extent_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_extent_003.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_extent_003_2_0x.png b/_images/sphx_glr_imshow_extent_003_2_0x.png deleted file mode 120000 index e6c8b103f17..00000000000 --- a/_images/sphx_glr_imshow_extent_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_extent_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_extent_thumb.png b/_images/sphx_glr_imshow_extent_thumb.png deleted file mode 120000 index c8a029a31dc..00000000000 --- a/_images/sphx_glr_imshow_extent_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_extent_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_imshow_thumb.png b/_images/sphx_glr_imshow_thumb.png deleted file mode 120000 index fa50661134a..00000000000 --- a/_images/sphx_glr_imshow_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_imshow_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo2_001.png b/_images/sphx_glr_inset_locator_demo2_001.png deleted file mode 120000 index e921a99da2a..00000000000 --- a/_images/sphx_glr_inset_locator_demo2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo2_0011.png b/_images/sphx_glr_inset_locator_demo2_0011.png deleted file mode 120000 index 927221c55cc..00000000000 --- a/_images/sphx_glr_inset_locator_demo2_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_inset_locator_demo2_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo2_001_2_0x.png b/_images/sphx_glr_inset_locator_demo2_001_2_0x.png deleted file mode 120000 index ffd05adec23..00000000000 --- a/_images/sphx_glr_inset_locator_demo2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo2_thumb.png b/_images/sphx_glr_inset_locator_demo2_thumb.png deleted file mode 120000 index 550d8ce9629..00000000000 --- a/_images/sphx_glr_inset_locator_demo2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_001.png b/_images/sphx_glr_inset_locator_demo_001.png deleted file mode 120000 index aa61c1fae88..00000000000 --- a/_images/sphx_glr_inset_locator_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_0011.png b/_images/sphx_glr_inset_locator_demo_0011.png deleted file mode 120000 index 1ce372282b7..00000000000 --- a/_images/sphx_glr_inset_locator_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_inset_locator_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_001_2_0x.png b/_images/sphx_glr_inset_locator_demo_001_2_0x.png deleted file mode 120000 index 926863c67e0..00000000000 --- a/_images/sphx_glr_inset_locator_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_002.png b/_images/sphx_glr_inset_locator_demo_002.png deleted file mode 120000 index 19311f85d36..00000000000 --- a/_images/sphx_glr_inset_locator_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_002_2_0x.png b/_images/sphx_glr_inset_locator_demo_002_2_0x.png deleted file mode 120000 index a35881518e0..00000000000 --- a/_images/sphx_glr_inset_locator_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_003.png b/_images/sphx_glr_inset_locator_demo_003.png deleted file mode 120000 index 6b2c593612f..00000000000 --- a/_images/sphx_glr_inset_locator_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_003_2_0x.png b/_images/sphx_glr_inset_locator_demo_003_2_0x.png deleted file mode 120000 index 5663870163f..00000000000 --- a/_images/sphx_glr_inset_locator_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_inset_locator_demo_thumb.png b/_images/sphx_glr_inset_locator_demo_thumb.png deleted file mode 120000 index f6f0e2a74ce..00000000000 --- a/_images/sphx_glr_inset_locator_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_inset_locator_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_integral_001.png b/_images/sphx_glr_integral_001.png deleted file mode 120000 index 56e49a873c2..00000000000 --- a/_images/sphx_glr_integral_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_integral_001.png \ No newline at end of file diff --git a/_images/sphx_glr_integral_001_2_0x.png b/_images/sphx_glr_integral_001_2_0x.png deleted file mode 120000 index aa05ce6fecc..00000000000 --- a/_images/sphx_glr_integral_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_integral_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_integral_thumb.png b/_images/sphx_glr_integral_thumb.png deleted file mode 120000 index 06463bcd52f..00000000000 --- a/_images/sphx_glr_integral_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_integral_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_interp_demo_001.png b/_images/sphx_glr_interp_demo_001.png deleted file mode 120000 index 98d8d9db195..00000000000 --- a/_images/sphx_glr_interp_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_interp_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_interp_demo_thumb.png b/_images/sphx_glr_interp_demo_thumb.png deleted file mode 120000 index 4ef2393ad7e..00000000000 --- a/_images/sphx_glr_interp_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_interp_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_interpolation_methods_001.png b/_images/sphx_glr_interpolation_methods_001.png deleted file mode 120000 index b2fcd99deaf..00000000000 --- a/_images/sphx_glr_interpolation_methods_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_interpolation_methods_001.png \ No newline at end of file diff --git a/_images/sphx_glr_interpolation_methods_001_2_0x.png b/_images/sphx_glr_interpolation_methods_001_2_0x.png deleted file mode 120000 index 85cc18a844a..00000000000 --- a/_images/sphx_glr_interpolation_methods_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_interpolation_methods_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_interpolation_methods_thumb.png b/_images/sphx_glr_interpolation_methods_thumb.png deleted file mode 120000 index 787adf27f34..00000000000 --- a/_images/sphx_glr_interpolation_methods_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_interpolation_methods_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_invert_axes_001.png b/_images/sphx_glr_invert_axes_001.png deleted file mode 120000 index 42bc177b46c..00000000000 --- a/_images/sphx_glr_invert_axes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_invert_axes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_invert_axes_001_2_0x.png b/_images/sphx_glr_invert_axes_001_2_0x.png deleted file mode 120000 index 6d4bd16c8ce..00000000000 --- a/_images/sphx_glr_invert_axes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_invert_axes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_invert_axes_thumb.png b/_images/sphx_glr_invert_axes_thumb.png deleted file mode 120000 index 18e94edd9c1..00000000000 --- a/_images/sphx_glr_invert_axes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_invert_axes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_irregulardatagrid_001.png b/_images/sphx_glr_irregulardatagrid_001.png deleted file mode 120000 index 4627097c4fc..00000000000 --- a/_images/sphx_glr_irregulardatagrid_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_irregulardatagrid_001.png \ No newline at end of file diff --git a/_images/sphx_glr_irregulardatagrid_001_2_0x.png b/_images/sphx_glr_irregulardatagrid_001_2_0x.png deleted file mode 120000 index b006d863bc4..00000000000 --- a/_images/sphx_glr_irregulardatagrid_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_irregulardatagrid_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_irregulardatagrid_thumb.png b/_images/sphx_glr_irregulardatagrid_thumb.png deleted file mode 120000 index bb7292436b8..00000000000 --- a/_images/sphx_glr_irregulardatagrid_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_irregulardatagrid_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_joinstyle_001.png b/_images/sphx_glr_joinstyle_001.png deleted file mode 120000 index d94fd15c025..00000000000 --- a/_images/sphx_glr_joinstyle_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_joinstyle_001.png \ No newline at end of file diff --git a/_images/sphx_glr_joinstyle_001_2_0x.png b/_images/sphx_glr_joinstyle_001_2_0x.png deleted file mode 120000 index e6345005384..00000000000 --- a/_images/sphx_glr_joinstyle_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_joinstyle_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_joinstyle_002.png b/_images/sphx_glr_joinstyle_002.png deleted file mode 120000 index 25733bb196a..00000000000 --- a/_images/sphx_glr_joinstyle_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_joinstyle_002.png \ No newline at end of file diff --git a/_images/sphx_glr_joinstyle_thumb.png b/_images/sphx_glr_joinstyle_thumb.png deleted file mode 120000 index 06dadc49bb5..00000000000 --- a/_images/sphx_glr_joinstyle_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_joinstyle_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_keypress_demo_001.png b/_images/sphx_glr_keypress_demo_001.png deleted file mode 120000 index 6ca7ee00bb2..00000000000 --- a/_images/sphx_glr_keypress_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_keypress_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_keypress_demo_001_2_0x.png b/_images/sphx_glr_keypress_demo_001_2_0x.png deleted file mode 120000 index f6b2e29a109..00000000000 --- a/_images/sphx_glr_keypress_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_keypress_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_keypress_demo_thumb.png b/_images/sphx_glr_keypress_demo_thumb.png deleted file mode 120000 index 4711e76b541..00000000000 --- a/_images/sphx_glr_keypress_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_keypress_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_keyword_plotting_001.png b/_images/sphx_glr_keyword_plotting_001.png deleted file mode 120000 index a4631ada56e..00000000000 --- a/_images/sphx_glr_keyword_plotting_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_keyword_plotting_001.png \ No newline at end of file diff --git a/_images/sphx_glr_keyword_plotting_001_2_0x.png b/_images/sphx_glr_keyword_plotting_001_2_0x.png deleted file mode 120000 index 4b87f21707b..00000000000 --- a/_images/sphx_glr_keyword_plotting_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_keyword_plotting_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_keyword_plotting_thumb.png b/_images/sphx_glr_keyword_plotting_thumb.png deleted file mode 120000 index 1916a6ccaad..00000000000 --- a/_images/sphx_glr_keyword_plotting_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_keyword_plotting_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_label_subplots_001.png b/_images/sphx_glr_label_subplots_001.png deleted file mode 120000 index 964412a66f0..00000000000 --- a/_images/sphx_glr_label_subplots_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_label_subplots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_label_subplots_001_2_0x.png b/_images/sphx_glr_label_subplots_001_2_0x.png deleted file mode 120000 index a1a1b0f99ff..00000000000 --- a/_images/sphx_glr_label_subplots_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_label_subplots_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_label_subplots_002.png b/_images/sphx_glr_label_subplots_002.png deleted file mode 120000 index e8a6047d713..00000000000 --- a/_images/sphx_glr_label_subplots_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_label_subplots_002.png \ No newline at end of file diff --git a/_images/sphx_glr_label_subplots_002_2_0x.png b/_images/sphx_glr_label_subplots_002_2_0x.png deleted file mode 120000 index 2b29c1aca09..00000000000 --- a/_images/sphx_glr_label_subplots_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_label_subplots_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_label_subplots_003.png b/_images/sphx_glr_label_subplots_003.png deleted file mode 120000 index 63ccf7e4e7d..00000000000 --- a/_images/sphx_glr_label_subplots_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_label_subplots_003.png \ No newline at end of file diff --git a/_images/sphx_glr_label_subplots_003_2_0x.png b/_images/sphx_glr_label_subplots_003_2_0x.png deleted file mode 120000 index 8cd3624356b..00000000000 --- a/_images/sphx_glr_label_subplots_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_label_subplots_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_label_subplots_thumb.png b/_images/sphx_glr_label_subplots_thumb.png deleted file mode 120000 index 1d69e8426be..00000000000 --- a/_images/sphx_glr_label_subplots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_label_subplots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_lasso_demo_001.png b/_images/sphx_glr_lasso_demo_001.png deleted file mode 120000 index 58431c3ee1b..00000000000 --- a/_images/sphx_glr_lasso_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lasso_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_lasso_demo_001_2_0x.png b/_images/sphx_glr_lasso_demo_001_2_0x.png deleted file mode 120000 index c52765c69ab..00000000000 --- a/_images/sphx_glr_lasso_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lasso_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lasso_demo_thumb.png b/_images/sphx_glr_lasso_demo_thumb.png deleted file mode 120000 index e603b234319..00000000000 --- a/_images/sphx_glr_lasso_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lasso_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_lasso_selector_demo_sgskip_thumb.png b/_images/sphx_glr_lasso_selector_demo_sgskip_thumb.png deleted file mode 120000 index b0a227453e1..00000000000 --- a/_images/sphx_glr_lasso_selector_demo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lasso_selector_demo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_layer_images_001.png b/_images/sphx_glr_layer_images_001.png deleted file mode 120000 index bfff9100feb..00000000000 --- a/_images/sphx_glr_layer_images_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_layer_images_001.png \ No newline at end of file diff --git a/_images/sphx_glr_layer_images_001_2_0x.png b/_images/sphx_glr_layer_images_001_2_0x.png deleted file mode 120000 index f8b6a28d9d3..00000000000 --- a/_images/sphx_glr_layer_images_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_layer_images_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_layer_images_thumb.png b/_images/sphx_glr_layer_images_thumb.png deleted file mode 120000 index 11165f51386..00000000000 --- a/_images/sphx_glr_layer_images_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_layer_images_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_leftventricle_bulleye_001.png b/_images/sphx_glr_leftventricle_bulleye_001.png deleted file mode 120000 index 9eb7d0b9c93..00000000000 --- a/_images/sphx_glr_leftventricle_bulleye_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_leftventricle_bulleye_001.png \ No newline at end of file diff --git a/_images/sphx_glr_leftventricle_bulleye_001_2_0x.png b/_images/sphx_glr_leftventricle_bulleye_001_2_0x.png deleted file mode 120000 index 3c3f572919b..00000000000 --- a/_images/sphx_glr_leftventricle_bulleye_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_leftventricle_bulleye_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_leftventricle_bulleye_thumb.png b/_images/sphx_glr_leftventricle_bulleye_thumb.png deleted file mode 120000 index 01e43b0ffd9..00000000000 --- a/_images/sphx_glr_leftventricle_bulleye_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_leftventricle_bulleye_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_001.png b/_images/sphx_glr_legend_001.png deleted file mode 120000 index e09517e3b01..00000000000 --- a/_images/sphx_glr_legend_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_001.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_0011.png b/_images/sphx_glr_legend_0011.png deleted file mode 120000 index e2f40582da0..00000000000 --- a/_images/sphx_glr_legend_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_legend_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_001_2_0x.png b/_images/sphx_glr_legend_001_2_0x.png deleted file mode 120000 index 5f687c71971..00000000000 --- a/_images/sphx_glr_legend_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_001.png b/_images/sphx_glr_legend_demo_001.png deleted file mode 120000 index 2f98f5e59c2..00000000000 --- a/_images/sphx_glr_legend_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_001_2_0x.png b/_images/sphx_glr_legend_demo_001_2_0x.png deleted file mode 120000 index 593746abf4a..00000000000 --- a/_images/sphx_glr_legend_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_002.png b/_images/sphx_glr_legend_demo_002.png deleted file mode 120000 index 6a6828084cd..00000000000 --- a/_images/sphx_glr_legend_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_002_2_0x.png b/_images/sphx_glr_legend_demo_002_2_0x.png deleted file mode 120000 index ae2f4f47f4d..00000000000 --- a/_images/sphx_glr_legend_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_003.png b/_images/sphx_glr_legend_demo_003.png deleted file mode 120000 index 6d3015e1aa9..00000000000 --- a/_images/sphx_glr_legend_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_003_2_0x.png b/_images/sphx_glr_legend_demo_003_2_0x.png deleted file mode 120000 index 7dae4066144..00000000000 --- a/_images/sphx_glr_legend_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_004.png b/_images/sphx_glr_legend_demo_004.png deleted file mode 120000 index 53ccdc50691..00000000000 --- a/_images/sphx_glr_legend_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_0041.png b/_images/sphx_glr_legend_demo_0041.png deleted file mode 120000 index 0689c266d0b..00000000000 --- a/_images/sphx_glr_legend_demo_0041.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_legend_demo_0041.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_004_2_0x.png b/_images/sphx_glr_legend_demo_004_2_0x.png deleted file mode 120000 index 6009439297e..00000000000 --- a/_images/sphx_glr_legend_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_005.png b/_images/sphx_glr_legend_demo_005.png deleted file mode 120000 index ba8d2569d39..00000000000 --- a/_images/sphx_glr_legend_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_005_2_0x.png b/_images/sphx_glr_legend_demo_005_2_0x.png deleted file mode 120000 index 59e9767cce5..00000000000 --- a/_images/sphx_glr_legend_demo_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_demo_thumb.png b/_images/sphx_glr_legend_demo_thumb.png deleted file mode 120000 index 6a969957fcc..00000000000 --- a/_images/sphx_glr_legend_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_001.png b/_images/sphx_glr_legend_guide_001.png deleted file mode 120000 index bd59b49d90a..00000000000 --- a/_images/sphx_glr_legend_guide_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_001.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_001_2_0x.png b/_images/sphx_glr_legend_guide_001_2_0x.png deleted file mode 120000 index f079a1175ac..00000000000 --- a/_images/sphx_glr_legend_guide_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_002.png b/_images/sphx_glr_legend_guide_002.png deleted file mode 120000 index 6b0ba8a751b..00000000000 --- a/_images/sphx_glr_legend_guide_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_002.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_002_2_0x.png b/_images/sphx_glr_legend_guide_002_2_0x.png deleted file mode 120000 index b43a84f070e..00000000000 --- a/_images/sphx_glr_legend_guide_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_003.png b/_images/sphx_glr_legend_guide_003.png deleted file mode 120000 index 370939c5e6e..00000000000 --- a/_images/sphx_glr_legend_guide_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_003.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_003_2_0x.png b/_images/sphx_glr_legend_guide_003_2_0x.png deleted file mode 120000 index 6edb1946ff5..00000000000 --- a/_images/sphx_glr_legend_guide_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_004.png b/_images/sphx_glr_legend_guide_004.png deleted file mode 120000 index 00e5cf04fd0..00000000000 --- a/_images/sphx_glr_legend_guide_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_004.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_004_2_0x.png b/_images/sphx_glr_legend_guide_004_2_0x.png deleted file mode 120000 index 89f3f5b6bf7..00000000000 --- a/_images/sphx_glr_legend_guide_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_005.png b/_images/sphx_glr_legend_guide_005.png deleted file mode 120000 index 82afead87e2..00000000000 --- a/_images/sphx_glr_legend_guide_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_005.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_005_2_0x.png b/_images/sphx_glr_legend_guide_005_2_0x.png deleted file mode 120000 index eebf915ace1..00000000000 --- a/_images/sphx_glr_legend_guide_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_006.png b/_images/sphx_glr_legend_guide_006.png deleted file mode 120000 index 379fc5c0011..00000000000 --- a/_images/sphx_glr_legend_guide_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_006.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_006_2_0x.png b/_images/sphx_glr_legend_guide_006_2_0x.png deleted file mode 120000 index 86b2001f440..00000000000 --- a/_images/sphx_glr_legend_guide_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_007.png b/_images/sphx_glr_legend_guide_007.png deleted file mode 120000 index 2cf75bdfde7..00000000000 --- a/_images/sphx_glr_legend_guide_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_007.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_007_2_0x.png b/_images/sphx_glr_legend_guide_007_2_0x.png deleted file mode 120000 index dc7bb4111e1..00000000000 --- a/_images/sphx_glr_legend_guide_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_008.png b/_images/sphx_glr_legend_guide_008.png deleted file mode 120000 index 53a9d09a97f..00000000000 --- a/_images/sphx_glr_legend_guide_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_008.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_008_2_0x.png b/_images/sphx_glr_legend_guide_008_2_0x.png deleted file mode 120000 index ef465e96c9a..00000000000 --- a/_images/sphx_glr_legend_guide_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_009.png b/_images/sphx_glr_legend_guide_009.png deleted file mode 120000 index 23c6813c49a..00000000000 --- a/_images/sphx_glr_legend_guide_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_009.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_009_2_0x.png b/_images/sphx_glr_legend_guide_009_2_0x.png deleted file mode 120000 index 957cd6a5caf..00000000000 --- a/_images/sphx_glr_legend_guide_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_guide_thumb.png b/_images/sphx_glr_legend_guide_thumb.png deleted file mode 120000 index 513f59eca3a..00000000000 --- a/_images/sphx_glr_legend_guide_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_guide_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_picking_001.png b/_images/sphx_glr_legend_picking_001.png deleted file mode 120000 index db92bf96ac2..00000000000 --- a/_images/sphx_glr_legend_picking_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_picking_001.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_picking_001_2_0x.png b/_images/sphx_glr_legend_picking_001_2_0x.png deleted file mode 120000 index 3fce687442b..00000000000 --- a/_images/sphx_glr_legend_picking_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_picking_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_picking_thumb.png b/_images/sphx_glr_legend_picking_thumb.png deleted file mode 120000 index 14c6e81fdfd..00000000000 --- a/_images/sphx_glr_legend_picking_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_picking_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_legend_thumb.png b/_images/sphx_glr_legend_thumb.png deleted file mode 120000 index 1f0814d0715..00000000000 --- a/_images/sphx_glr_legend_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_legend_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_001.png b/_images/sphx_glr_lifecycle_001.png deleted file mode 120000 index 62ca99b3e11..00000000000 --- a/_images/sphx_glr_lifecycle_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_001.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_001_2_0x.png b/_images/sphx_glr_lifecycle_001_2_0x.png deleted file mode 120000 index c2af0c5ffa8..00000000000 --- a/_images/sphx_glr_lifecycle_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_002.png b/_images/sphx_glr_lifecycle_002.png deleted file mode 120000 index d26c8468af3..00000000000 --- a/_images/sphx_glr_lifecycle_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_002.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_002_2_0x.png b/_images/sphx_glr_lifecycle_002_2_0x.png deleted file mode 120000 index e125dd398af..00000000000 --- a/_images/sphx_glr_lifecycle_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_003.png b/_images/sphx_glr_lifecycle_003.png deleted file mode 120000 index 7f7e29825ae..00000000000 --- a/_images/sphx_glr_lifecycle_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_003.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_003_2_0x.png b/_images/sphx_glr_lifecycle_003_2_0x.png deleted file mode 120000 index 0d5ea05817d..00000000000 --- a/_images/sphx_glr_lifecycle_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_004.png b/_images/sphx_glr_lifecycle_004.png deleted file mode 120000 index b28b336f112..00000000000 --- a/_images/sphx_glr_lifecycle_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_004.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_004_2_0x.png b/_images/sphx_glr_lifecycle_004_2_0x.png deleted file mode 120000 index be77a2133dc..00000000000 --- a/_images/sphx_glr_lifecycle_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_005.png b/_images/sphx_glr_lifecycle_005.png deleted file mode 120000 index 9c4a9022946..00000000000 --- a/_images/sphx_glr_lifecycle_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_005.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_005_2_0x.png b/_images/sphx_glr_lifecycle_005_2_0x.png deleted file mode 120000 index 2a359392837..00000000000 --- a/_images/sphx_glr_lifecycle_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_006.png b/_images/sphx_glr_lifecycle_006.png deleted file mode 120000 index cbc3f26b589..00000000000 --- a/_images/sphx_glr_lifecycle_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_006.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_006_2_0x.png b/_images/sphx_glr_lifecycle_006_2_0x.png deleted file mode 120000 index aac73f7c0fe..00000000000 --- a/_images/sphx_glr_lifecycle_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_007.png b/_images/sphx_glr_lifecycle_007.png deleted file mode 120000 index 28c49249700..00000000000 --- a/_images/sphx_glr_lifecycle_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_007.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_007_2_0x.png b/_images/sphx_glr_lifecycle_007_2_0x.png deleted file mode 120000 index ce2f7b39c83..00000000000 --- a/_images/sphx_glr_lifecycle_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_008.png b/_images/sphx_glr_lifecycle_008.png deleted file mode 120000 index ab404379e9f..00000000000 --- a/_images/sphx_glr_lifecycle_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_008.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_008_2_0x.png b/_images/sphx_glr_lifecycle_008_2_0x.png deleted file mode 120000 index 794bd7aeb78..00000000000 --- a/_images/sphx_glr_lifecycle_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_009.png b/_images/sphx_glr_lifecycle_009.png deleted file mode 120000 index 982bbfd8adb..00000000000 --- a/_images/sphx_glr_lifecycle_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_009.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_009_2_0x.png b/_images/sphx_glr_lifecycle_009_2_0x.png deleted file mode 120000 index 617d4feb0d8..00000000000 --- a/_images/sphx_glr_lifecycle_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_010.png b/_images/sphx_glr_lifecycle_010.png deleted file mode 120000 index 1081bfbaf35..00000000000 --- a/_images/sphx_glr_lifecycle_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_010.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_010_2_0x.png b/_images/sphx_glr_lifecycle_010_2_0x.png deleted file mode 120000 index 74832a17196..00000000000 --- a/_images/sphx_glr_lifecycle_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lifecycle_thumb.png b/_images/sphx_glr_lifecycle_thumb.png deleted file mode 120000 index 231c5ff07b2..00000000000 --- a/_images/sphx_glr_lifecycle_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lifecycle_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_line_collection_001.png b/_images/sphx_glr_line_collection_001.png deleted file mode 120000 index e0c69a2be22..00000000000 --- a/_images/sphx_glr_line_collection_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_collection_001.png \ No newline at end of file diff --git a/_images/sphx_glr_line_collection_001_2_0x.png b/_images/sphx_glr_line_collection_001_2_0x.png deleted file mode 120000 index 9df6a100b68..00000000000 --- a/_images/sphx_glr_line_collection_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_collection_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_line_collection_002.png b/_images/sphx_glr_line_collection_002.png deleted file mode 120000 index 410aae62814..00000000000 --- a/_images/sphx_glr_line_collection_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_collection_002.png \ No newline at end of file diff --git a/_images/sphx_glr_line_collection_002_2_0x.png b/_images/sphx_glr_line_collection_002_2_0x.png deleted file mode 120000 index 132668101b2..00000000000 --- a/_images/sphx_glr_line_collection_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_collection_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_line_collection_thumb.png b/_images/sphx_glr_line_collection_thumb.png deleted file mode 120000 index 13c1b4ec02d..00000000000 --- a/_images/sphx_glr_line_collection_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_collection_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_line_demo_dash_control_001.png b/_images/sphx_glr_line_demo_dash_control_001.png deleted file mode 120000 index 982b3435509..00000000000 --- a/_images/sphx_glr_line_demo_dash_control_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_demo_dash_control_001.png \ No newline at end of file diff --git a/_images/sphx_glr_line_demo_dash_control_001_2_0x.png b/_images/sphx_glr_line_demo_dash_control_001_2_0x.png deleted file mode 120000 index 39a207964ab..00000000000 --- a/_images/sphx_glr_line_demo_dash_control_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_demo_dash_control_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_line_demo_dash_control_thumb.png b/_images/sphx_glr_line_demo_dash_control_thumb.png deleted file mode 120000 index 5fefe381345..00000000000 --- a/_images/sphx_glr_line_demo_dash_control_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_demo_dash_control_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_line_styles_reference_001.png b/_images/sphx_glr_line_styles_reference_001.png deleted file mode 120000 index d941dba66f8..00000000000 --- a/_images/sphx_glr_line_styles_reference_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_line_styles_reference_001.png \ No newline at end of file diff --git a/_images/sphx_glr_line_styles_reference_thumb.png b/_images/sphx_glr_line_styles_reference_thumb.png deleted file mode 120000 index 7c4c4cb2db2..00000000000 --- a/_images/sphx_glr_line_styles_reference_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_line_styles_reference_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_line_with_text_001.png b/_images/sphx_glr_line_with_text_001.png deleted file mode 120000 index 462e893f056..00000000000 --- a/_images/sphx_glr_line_with_text_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_with_text_001.png \ No newline at end of file diff --git a/_images/sphx_glr_line_with_text_001_2_0x.png b/_images/sphx_glr_line_with_text_001_2_0x.png deleted file mode 120000 index 712a8ed6014..00000000000 --- a/_images/sphx_glr_line_with_text_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_with_text_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_line_with_text_thumb.png b/_images/sphx_glr_line_with_text_thumb.png deleted file mode 120000 index 3fbe95e4aa4..00000000000 --- a/_images/sphx_glr_line_with_text_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_line_with_text_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_lineprops_dialog_gtk_sgskip_thumb.png b/_images/sphx_glr_lineprops_dialog_gtk_sgskip_thumb.png deleted file mode 120000 index a0737926de9..00000000000 --- a/_images/sphx_glr_lineprops_dialog_gtk_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_lineprops_dialog_gtk_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_lines3d_001.png b/_images/sphx_glr_lines3d_001.png deleted file mode 120000 index 47517f288f0..00000000000 --- a/_images/sphx_glr_lines3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lines3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_lines3d_0011.png b/_images/sphx_glr_lines3d_0011.png deleted file mode 120000 index 33f303cdf70..00000000000 --- a/_images/sphx_glr_lines3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_lines3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_lines3d_001_2_0x.png b/_images/sphx_glr_lines3d_001_2_0x.png deleted file mode 120000 index 959a3ad8387..00000000000 --- a/_images/sphx_glr_lines3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lines3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lines3d_thumb.png b/_images/sphx_glr_lines3d_thumb.png deleted file mode 120000 index 228770f5d65..00000000000 --- a/_images/sphx_glr_lines3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lines3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_lines_with_ticks_demo_001.png b/_images/sphx_glr_lines_with_ticks_demo_001.png deleted file mode 120000 index 7167a1ad1b4..00000000000 --- a/_images/sphx_glr_lines_with_ticks_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lines_with_ticks_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_lines_with_ticks_demo_001_2_0x.png b/_images/sphx_glr_lines_with_ticks_demo_001_2_0x.png deleted file mode 120000 index 19f968b5496..00000000000 --- a/_images/sphx_glr_lines_with_ticks_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lines_with_ticks_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lines_with_ticks_demo_thumb.png b/_images/sphx_glr_lines_with_ticks_demo_thumb.png deleted file mode 120000 index 34b13b9716c..00000000000 --- a/_images/sphx_glr_lines_with_ticks_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lines_with_ticks_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_linestyles_001.png b/_images/sphx_glr_linestyles_001.png deleted file mode 120000 index 42f2e9e0593..00000000000 --- a/_images/sphx_glr_linestyles_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_linestyles_001.png \ No newline at end of file diff --git a/_images/sphx_glr_linestyles_001_2_0x.png b/_images/sphx_glr_linestyles_001_2_0x.png deleted file mode 120000 index 0a140d4aa68..00000000000 --- a/_images/sphx_glr_linestyles_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_linestyles_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_linestyles_thumb.png b/_images/sphx_glr_linestyles_thumb.png deleted file mode 120000 index 2bb8fe1fe1b..00000000000 --- a/_images/sphx_glr_linestyles_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_linestyles_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_load_converter_001.png b/_images/sphx_glr_load_converter_001.png deleted file mode 120000 index 69deea19d90..00000000000 --- a/_images/sphx_glr_load_converter_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_load_converter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_load_converter_001_2_0x.png b/_images/sphx_glr_load_converter_001_2_0x.png deleted file mode 120000 index 41bb08b0f6e..00000000000 --- a/_images/sphx_glr_load_converter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_load_converter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_load_converter_thumb.png b/_images/sphx_glr_load_converter_thumb.png deleted file mode 120000 index bc41a2f3005..00000000000 --- a/_images/sphx_glr_load_converter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_load_converter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_log_bar_001.png b/_images/sphx_glr_log_bar_001.png deleted file mode 120000 index 0c58d3e0538..00000000000 --- a/_images/sphx_glr_log_bar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_log_bar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_log_bar_001_2_0x.png b/_images/sphx_glr_log_bar_001_2_0x.png deleted file mode 120000 index 3958ea7fa00..00000000000 --- a/_images/sphx_glr_log_bar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_log_bar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_log_bar_thumb.png b/_images/sphx_glr_log_bar_thumb.png deleted file mode 120000 index 5d42df2db40..00000000000 --- a/_images/sphx_glr_log_bar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_log_bar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_log_demo_001.png b/_images/sphx_glr_log_demo_001.png deleted file mode 120000 index e07085b87d9..00000000000 --- a/_images/sphx_glr_log_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_log_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_log_demo_0011.png b/_images/sphx_glr_log_demo_0011.png deleted file mode 120000 index d8e1bd96b44..00000000000 --- a/_images/sphx_glr_log_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_log_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_log_demo_001_2_0x.png b/_images/sphx_glr_log_demo_001_2_0x.png deleted file mode 120000 index 64e3a9511ca..00000000000 --- a/_images/sphx_glr_log_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_log_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_log_demo_thumb.png b/_images/sphx_glr_log_demo_thumb.png deleted file mode 120000 index 22a3d9ef5c4..00000000000 --- a/_images/sphx_glr_log_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_log_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_log_test_001.png b/_images/sphx_glr_log_test_001.png deleted file mode 120000 index 2af4b65e804..00000000000 --- a/_images/sphx_glr_log_test_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_log_test_001.png \ No newline at end of file diff --git a/_images/sphx_glr_log_test_001_2_0x.png b/_images/sphx_glr_log_test_001_2_0x.png deleted file mode 120000 index 287c1930710..00000000000 --- a/_images/sphx_glr_log_test_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_log_test_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_log_test_thumb.png b/_images/sphx_glr_log_test_thumb.png deleted file mode 120000 index aee7c918a0b..00000000000 --- a/_images/sphx_glr_log_test_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_log_test_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_logit_demo_001.png b/_images/sphx_glr_logit_demo_001.png deleted file mode 120000 index fa4ef8d8750..00000000000 --- a/_images/sphx_glr_logit_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logit_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_logit_demo_001_2_0x.png b/_images/sphx_glr_logit_demo_001_2_0x.png deleted file mode 120000 index bbb3b50bd3c..00000000000 --- a/_images/sphx_glr_logit_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logit_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_logit_demo_thumb.png b/_images/sphx_glr_logit_demo_thumb.png deleted file mode 120000 index cc89f240323..00000000000 --- a/_images/sphx_glr_logit_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logit_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_logos2_001.png b/_images/sphx_glr_logos2_001.png deleted file mode 120000 index 166479578f7..00000000000 --- a/_images/sphx_glr_logos2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logos2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_logos2_001_2_0x.png b/_images/sphx_glr_logos2_001_2_0x.png deleted file mode 120000 index 7d6aa2592bd..00000000000 --- a/_images/sphx_glr_logos2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logos2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_logos2_002.png b/_images/sphx_glr_logos2_002.png deleted file mode 120000 index db97b925f63..00000000000 --- a/_images/sphx_glr_logos2_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logos2_002.png \ No newline at end of file diff --git a/_images/sphx_glr_logos2_002_2_0x.png b/_images/sphx_glr_logos2_002_2_0x.png deleted file mode 120000 index d3cdee3af47..00000000000 --- a/_images/sphx_glr_logos2_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logos2_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_logos2_003.png b/_images/sphx_glr_logos2_003.png deleted file mode 120000 index 837759b5d63..00000000000 --- a/_images/sphx_glr_logos2_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logos2_003.png \ No newline at end of file diff --git a/_images/sphx_glr_logos2_003_2_0x.png b/_images/sphx_glr_logos2_003_2_0x.png deleted file mode 120000 index ddc6e5c52c1..00000000000 --- a/_images/sphx_glr_logos2_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logos2_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_logos2_thumb.png b/_images/sphx_glr_logos2_thumb.png deleted file mode 120000 index 2bae0ceade1..00000000000 --- a/_images/sphx_glr_logos2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_logos2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_looking_glass_001.png b/_images/sphx_glr_looking_glass_001.png deleted file mode 120000 index b1c6bd6f3b0..00000000000 --- a/_images/sphx_glr_looking_glass_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_looking_glass_001.png \ No newline at end of file diff --git a/_images/sphx_glr_looking_glass_001_2_0x.png b/_images/sphx_glr_looking_glass_001_2_0x.png deleted file mode 120000 index f67fa1374ab..00000000000 --- a/_images/sphx_glr_looking_glass_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_looking_glass_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_looking_glass_thumb.png b/_images/sphx_glr_looking_glass_thumb.png deleted file mode 120000 index f1d0af608b9..00000000000 --- a/_images/sphx_glr_looking_glass_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_looking_glass_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_lorenz_attractor_001.png b/_images/sphx_glr_lorenz_attractor_001.png deleted file mode 120000 index 67f6d625dbd..00000000000 --- a/_images/sphx_glr_lorenz_attractor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lorenz_attractor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_lorenz_attractor_001_2_0x.png b/_images/sphx_glr_lorenz_attractor_001_2_0x.png deleted file mode 120000 index 3d6ba67251a..00000000000 --- a/_images/sphx_glr_lorenz_attractor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lorenz_attractor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_lorenz_attractor_thumb.png b/_images/sphx_glr_lorenz_attractor_thumb.png deleted file mode 120000 index ec3f3f67622..00000000000 --- a/_images/sphx_glr_lorenz_attractor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_lorenz_attractor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_major_minor_demo_001.png b/_images/sphx_glr_major_minor_demo_001.png deleted file mode 120000 index b5796ef0d55..00000000000 --- a/_images/sphx_glr_major_minor_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_major_minor_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_major_minor_demo_001_2_0x.png b/_images/sphx_glr_major_minor_demo_001_2_0x.png deleted file mode 120000 index ef6e55f7426..00000000000 --- a/_images/sphx_glr_major_minor_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_major_minor_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_major_minor_demo_002.png b/_images/sphx_glr_major_minor_demo_002.png deleted file mode 120000 index 38be7502dd2..00000000000 --- a/_images/sphx_glr_major_minor_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_major_minor_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_major_minor_demo_002_2_0x.png b/_images/sphx_glr_major_minor_demo_002_2_0x.png deleted file mode 120000 index 439aede04d6..00000000000 --- a/_images/sphx_glr_major_minor_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_major_minor_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_major_minor_demo_thumb.png b/_images/sphx_glr_major_minor_demo_thumb.png deleted file mode 120000 index a55045819b0..00000000000 --- a/_images/sphx_glr_major_minor_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_major_minor_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001.png b/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001.png deleted file mode 120000 index 5d7dc123138..00000000000 --- a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001.png \ No newline at end of file diff --git a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001_2_0x.png b/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001_2_0x.png deleted file mode 120000 index 749ef9fce91..00000000000 --- a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002.png b/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002.png deleted file mode 120000 index d77cce0adcb..00000000000 --- a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002.png \ No newline at end of file diff --git a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002_2_0x.png b/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002_2_0x.png deleted file mode 120000 index cccd2b652b3..00000000000 --- a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003.png b/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003.png deleted file mode 120000 index fb69b6d8939..00000000000 --- a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003.png \ No newline at end of file diff --git a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003_2_0x.png b/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003_2_0x.png deleted file mode 120000 index 77e6ec3a833..00000000000 --- a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_thumb.png b/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_thumb.png deleted file mode 120000 index 0da6f21b28b..00000000000 --- a/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_make_room_for_ylabel_using_axesgrid_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mandelbrot_001.png b/_images/sphx_glr_mandelbrot_001.png deleted file mode 120000 index 120aab461d7..00000000000 --- a/_images/sphx_glr_mandelbrot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mandelbrot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mandelbrot_001_2_0x.png b/_images/sphx_glr_mandelbrot_001_2_0x.png deleted file mode 120000 index 8892caa6474..00000000000 --- a/_images/sphx_glr_mandelbrot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mandelbrot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mandelbrot_thumb.png b/_images/sphx_glr_mandelbrot_thumb.png deleted file mode 120000 index 8f0d7caccbd..00000000000 --- a/_images/sphx_glr_mandelbrot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mandelbrot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_fillstyle_reference_001.png b/_images/sphx_glr_marker_fillstyle_reference_001.png deleted file mode 120000 index ff24406cf3b..00000000000 --- a/_images/sphx_glr_marker_fillstyle_reference_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_marker_fillstyle_reference_001.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_fillstyle_reference_thumb.png b/_images/sphx_glr_marker_fillstyle_reference_thumb.png deleted file mode 120000 index 8cec876ef6b..00000000000 --- a/_images/sphx_glr_marker_fillstyle_reference_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_marker_fillstyle_reference_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_path_001.png b/_images/sphx_glr_marker_path_001.png deleted file mode 120000 index 43ee12b5acd..00000000000 --- a/_images/sphx_glr_marker_path_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_marker_path_001.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_path_thumb.png b/_images/sphx_glr_marker_path_thumb.png deleted file mode 120000 index 00cc2fb2cc5..00000000000 --- a/_images/sphx_glr_marker_path_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_marker_path_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_001.png b/_images/sphx_glr_marker_reference_001.png deleted file mode 120000 index cb4f6ef1b2a..00000000000 --- a/_images/sphx_glr_marker_reference_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_001.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_001_2_0x.png b/_images/sphx_glr_marker_reference_001_2_0x.png deleted file mode 120000 index beafc239d8b..00000000000 --- a/_images/sphx_glr_marker_reference_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_002.png b/_images/sphx_glr_marker_reference_002.png deleted file mode 120000 index da3cd266d5e..00000000000 --- a/_images/sphx_glr_marker_reference_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_002.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_002_2_0x.png b/_images/sphx_glr_marker_reference_002_2_0x.png deleted file mode 120000 index 6fc0487ad54..00000000000 --- a/_images/sphx_glr_marker_reference_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_003.png b/_images/sphx_glr_marker_reference_003.png deleted file mode 120000 index b0f9729a1c5..00000000000 --- a/_images/sphx_glr_marker_reference_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_003.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_003_2_0x.png b/_images/sphx_glr_marker_reference_003_2_0x.png deleted file mode 120000 index c85eeb1f4eb..00000000000 --- a/_images/sphx_glr_marker_reference_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_004.png b/_images/sphx_glr_marker_reference_004.png deleted file mode 120000 index b2aad188ca0..00000000000 --- a/_images/sphx_glr_marker_reference_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_004.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_004_2_0x.png b/_images/sphx_glr_marker_reference_004_2_0x.png deleted file mode 120000 index 3b8dc9a86dc..00000000000 --- a/_images/sphx_glr_marker_reference_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_005.png b/_images/sphx_glr_marker_reference_005.png deleted file mode 120000 index b77a46550f1..00000000000 --- a/_images/sphx_glr_marker_reference_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_005.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_005_2_0x.png b/_images/sphx_glr_marker_reference_005_2_0x.png deleted file mode 120000 index 8045161cd2c..00000000000 --- a/_images/sphx_glr_marker_reference_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_marker_reference_thumb.png b/_images/sphx_glr_marker_reference_thumb.png deleted file mode 120000 index 0cdab189f85..00000000000 --- a/_images/sphx_glr_marker_reference_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_marker_reference_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_001.png b/_images/sphx_glr_markevery_demo_001.png deleted file mode 120000 index 67fb8bed7c4..00000000000 --- a/_images/sphx_glr_markevery_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_001_2_0x.png b/_images/sphx_glr_markevery_demo_001_2_0x.png deleted file mode 120000 index 1978b1246c7..00000000000 --- a/_images/sphx_glr_markevery_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_002.png b/_images/sphx_glr_markevery_demo_002.png deleted file mode 120000 index 7d0d4874c6b..00000000000 --- a/_images/sphx_glr_markevery_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_002_2_0x.png b/_images/sphx_glr_markevery_demo_002_2_0x.png deleted file mode 120000 index b665b32b58d..00000000000 --- a/_images/sphx_glr_markevery_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_003.png b/_images/sphx_glr_markevery_demo_003.png deleted file mode 120000 index dd9a3e9716d..00000000000 --- a/_images/sphx_glr_markevery_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_003_2_0x.png b/_images/sphx_glr_markevery_demo_003_2_0x.png deleted file mode 120000 index 76c6eddccc0..00000000000 --- a/_images/sphx_glr_markevery_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_004.png b/_images/sphx_glr_markevery_demo_004.png deleted file mode 120000 index d010a192a25..00000000000 --- a/_images/sphx_glr_markevery_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_004_2_0x.png b/_images/sphx_glr_markevery_demo_004_2_0x.png deleted file mode 120000 index 850221b26ca..00000000000 --- a/_images/sphx_glr_markevery_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_005.png b/_images/sphx_glr_markevery_demo_005.png deleted file mode 120000 index 6a09eb770d4..00000000000 --- a/_images/sphx_glr_markevery_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_markevery_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_007.png b/_images/sphx_glr_markevery_demo_007.png deleted file mode 120000 index 7d224e60e85..00000000000 --- a/_images/sphx_glr_markevery_demo_007.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_markevery_demo_007.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_demo_thumb.png b/_images/sphx_glr_markevery_demo_thumb.png deleted file mode 120000 index b4ae51ecdb5..00000000000 --- a/_images/sphx_glr_markevery_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_markevery_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_prop_cycle_001.png b/_images/sphx_glr_markevery_prop_cycle_001.png deleted file mode 120000 index 9570ab25cd9..00000000000 --- a/_images/sphx_glr_markevery_prop_cycle_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_markevery_prop_cycle_001.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_prop_cycle_001_2_0x.png b/_images/sphx_glr_markevery_prop_cycle_001_2_0x.png deleted file mode 120000 index d923ed392a7..00000000000 --- a/_images/sphx_glr_markevery_prop_cycle_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_markevery_prop_cycle_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_markevery_prop_cycle_thumb.png b/_images/sphx_glr_markevery_prop_cycle_thumb.png deleted file mode 120000 index c366099f228..00000000000 --- a/_images/sphx_glr_markevery_prop_cycle_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_markevery_prop_cycle_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_masked_demo_001.png b/_images/sphx_glr_masked_demo_001.png deleted file mode 120000 index 6ad1fb85962..00000000000 --- a/_images/sphx_glr_masked_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_masked_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_masked_demo_001_2_0x.png b/_images/sphx_glr_masked_demo_001_2_0x.png deleted file mode 120000 index f4c5ee84887..00000000000 --- a/_images/sphx_glr_masked_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_masked_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_masked_demo_thumb.png b/_images/sphx_glr_masked_demo_thumb.png deleted file mode 120000 index 9043d04ccff..00000000000 --- a/_images/sphx_glr_masked_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_masked_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_asarray_001.png b/_images/sphx_glr_mathtext_asarray_001.png deleted file mode 120000 index 6d76d38de5e..00000000000 --- a/_images/sphx_glr_mathtext_asarray_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_asarray_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_asarray_001_2_0x.png b/_images/sphx_glr_mathtext_asarray_001_2_0x.png deleted file mode 120000 index fc8a5e4da30..00000000000 --- a/_images/sphx_glr_mathtext_asarray_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_asarray_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_asarray_thumb.png b/_images/sphx_glr_mathtext_asarray_thumb.png deleted file mode 120000 index a65649697c8..00000000000 --- a/_images/sphx_glr_mathtext_asarray_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_asarray_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_demo_001.png b/_images/sphx_glr_mathtext_demo_001.png deleted file mode 120000 index d4c0a93a044..00000000000 --- a/_images/sphx_glr_mathtext_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_demo_001_2_0x.png b/_images/sphx_glr_mathtext_demo_001_2_0x.png deleted file mode 120000 index c95bd207aca..00000000000 --- a/_images/sphx_glr_mathtext_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_demo_thumb.png b/_images/sphx_glr_mathtext_demo_thumb.png deleted file mode 120000 index d272a14b2c1..00000000000 --- a/_images/sphx_glr_mathtext_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_examples_001.png b/_images/sphx_glr_mathtext_examples_001.png deleted file mode 120000 index 61af0b418d7..00000000000 --- a/_images/sphx_glr_mathtext_examples_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_examples_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_examples_0011.png b/_images/sphx_glr_mathtext_examples_0011.png deleted file mode 120000 index 188ef10b62f..00000000000 --- a/_images/sphx_glr_mathtext_examples_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_mathtext_examples_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_examples_001_2_0x.png b/_images/sphx_glr_mathtext_examples_001_2_0x.png deleted file mode 120000 index 0d5ed2d7d17..00000000000 --- a/_images/sphx_glr_mathtext_examples_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_examples_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_examples_thumb.png b/_images/sphx_glr_mathtext_examples_thumb.png deleted file mode 120000 index e18b4f86f89..00000000000 --- a/_images/sphx_glr_mathtext_examples_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_examples_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_fontfamily_example_001.png b/_images/sphx_glr_mathtext_fontfamily_example_001.png deleted file mode 120000 index 1c2d6867aa4..00000000000 --- a/_images/sphx_glr_mathtext_fontfamily_example_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_fontfamily_example_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_fontfamily_example_001_2_0x.png b/_images/sphx_glr_mathtext_fontfamily_example_001_2_0x.png deleted file mode 120000 index 461187fb9a1..00000000000 --- a/_images/sphx_glr_mathtext_fontfamily_example_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_fontfamily_example_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_fontfamily_example_thumb.png b/_images/sphx_glr_mathtext_fontfamily_example_thumb.png deleted file mode 120000 index 95285b1ada3..00000000000 --- a/_images/sphx_glr_mathtext_fontfamily_example_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_fontfamily_example_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_thumb.png b/_images/sphx_glr_mathtext_thumb.png deleted file mode 120000 index aa4678da02a..00000000000 --- a/_images/sphx_glr_mathtext_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mathtext_wx_sgskip_thumb.png b/_images/sphx_glr_mathtext_wx_sgskip_thumb.png deleted file mode 120000 index fe76b456dec..00000000000 --- a/_images/sphx_glr_mathtext_wx_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mathtext_wx_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_matshow_001.png b/_images/sphx_glr_matshow_001.png deleted file mode 120000 index 0d19bf97cbf..00000000000 --- a/_images/sphx_glr_matshow_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_matshow_001.png \ No newline at end of file diff --git a/_images/sphx_glr_matshow_001_2_0x.png b/_images/sphx_glr_matshow_001_2_0x.png deleted file mode 120000 index ec4f28b0c8a..00000000000 --- a/_images/sphx_glr_matshow_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_matshow_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_matshow_thumb.png b/_images/sphx_glr_matshow_thumb.png deleted file mode 120000 index 1d44732ae85..00000000000 --- a/_images/sphx_glr_matshow_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_matshow_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_membrane_001.png b/_images/sphx_glr_membrane_001.png deleted file mode 120000 index 9541a65501f..00000000000 --- a/_images/sphx_glr_membrane_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_membrane_001.png \ No newline at end of file diff --git a/_images/sphx_glr_membrane_001_2_0x.png b/_images/sphx_glr_membrane_001_2_0x.png deleted file mode 120000 index 624fa4c0638..00000000000 --- a/_images/sphx_glr_membrane_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_membrane_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_membrane_thumb.png b/_images/sphx_glr_membrane_thumb.png deleted file mode 120000 index 428a64fefa7..00000000000 --- a/_images/sphx_glr_membrane_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_membrane_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_menu_001.png b/_images/sphx_glr_menu_001.png deleted file mode 120000 index bd8eeee1b7c..00000000000 --- a/_images/sphx_glr_menu_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_menu_001.png \ No newline at end of file diff --git a/_images/sphx_glr_menu_001_2_0x.png b/_images/sphx_glr_menu_001_2_0x.png deleted file mode 120000 index 36e7305c302..00000000000 --- a/_images/sphx_glr_menu_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_menu_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_menu_thumb.png b/_images/sphx_glr_menu_thumb.png deleted file mode 120000 index bd039775643..00000000000 --- a/_images/sphx_glr_menu_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_menu_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mixed_subplots_001.png b/_images/sphx_glr_mixed_subplots_001.png deleted file mode 120000 index 158a68d26ad..00000000000 --- a/_images/sphx_glr_mixed_subplots_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mixed_subplots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mixed_subplots_001_2_0x.png b/_images/sphx_glr_mixed_subplots_001_2_0x.png deleted file mode 120000 index 77d3ea40604..00000000000 --- a/_images/sphx_glr_mixed_subplots_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mixed_subplots_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mixed_subplots_thumb.png b/_images/sphx_glr_mixed_subplots_thumb.png deleted file mode 120000 index f3f6f4faba7..00000000000 --- a/_images/sphx_glr_mixed_subplots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mixed_subplots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_001.png b/_images/sphx_glr_mosaic_001.png deleted file mode 120000 index d53c40a8111..00000000000 --- a/_images/sphx_glr_mosaic_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_001_2_0x.png b/_images/sphx_glr_mosaic_001_2_0x.png deleted file mode 120000 index 03c7a98859f..00000000000 --- a/_images/sphx_glr_mosaic_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_002.png b/_images/sphx_glr_mosaic_002.png deleted file mode 120000 index bb5b00a36e3..00000000000 --- a/_images/sphx_glr_mosaic_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_002.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_002_2_0x.png b/_images/sphx_glr_mosaic_002_2_0x.png deleted file mode 120000 index 296c084f81f..00000000000 --- a/_images/sphx_glr_mosaic_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_003.png b/_images/sphx_glr_mosaic_003.png deleted file mode 120000 index 0b66a43fa75..00000000000 --- a/_images/sphx_glr_mosaic_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_003.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_003_2_0x.png b/_images/sphx_glr_mosaic_003_2_0x.png deleted file mode 120000 index f455d3915d3..00000000000 --- a/_images/sphx_glr_mosaic_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_004.png b/_images/sphx_glr_mosaic_004.png deleted file mode 120000 index 27455172b69..00000000000 --- a/_images/sphx_glr_mosaic_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_004.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_004_2_0x.png b/_images/sphx_glr_mosaic_004_2_0x.png deleted file mode 120000 index ee89eb5aa44..00000000000 --- a/_images/sphx_glr_mosaic_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_005.png b/_images/sphx_glr_mosaic_005.png deleted file mode 120000 index 6f2be0b3a3a..00000000000 --- a/_images/sphx_glr_mosaic_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_005.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_005_2_0x.png b/_images/sphx_glr_mosaic_005_2_0x.png deleted file mode 120000 index 70606415b69..00000000000 --- a/_images/sphx_glr_mosaic_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_006.png b/_images/sphx_glr_mosaic_006.png deleted file mode 120000 index 4a69249d4ef..00000000000 --- a/_images/sphx_glr_mosaic_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_006.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_006_2_0x.png b/_images/sphx_glr_mosaic_006_2_0x.png deleted file mode 120000 index fed2af57118..00000000000 --- a/_images/sphx_glr_mosaic_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_007.png b/_images/sphx_glr_mosaic_007.png deleted file mode 120000 index c7b8fd290c4..00000000000 --- a/_images/sphx_glr_mosaic_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_007.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_007_2_0x.png b/_images/sphx_glr_mosaic_007_2_0x.png deleted file mode 120000 index 27e7a0cb71b..00000000000 --- a/_images/sphx_glr_mosaic_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_008.png b/_images/sphx_glr_mosaic_008.png deleted file mode 120000 index 0932fc13988..00000000000 --- a/_images/sphx_glr_mosaic_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_008.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_008_2_0x.png b/_images/sphx_glr_mosaic_008_2_0x.png deleted file mode 120000 index 0866f8e45d5..00000000000 --- a/_images/sphx_glr_mosaic_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_009.png b/_images/sphx_glr_mosaic_009.png deleted file mode 120000 index 0c9689e76b1..00000000000 --- a/_images/sphx_glr_mosaic_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_009.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_009_2_0x.png b/_images/sphx_glr_mosaic_009_2_0x.png deleted file mode 120000 index d4f12bbc3da..00000000000 --- a/_images/sphx_glr_mosaic_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_010.png b/_images/sphx_glr_mosaic_010.png deleted file mode 120000 index b878e2fb231..00000000000 --- a/_images/sphx_glr_mosaic_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_010.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_010_2_0x.png b/_images/sphx_glr_mosaic_010_2_0x.png deleted file mode 120000 index ec7146615bd..00000000000 --- a/_images/sphx_glr_mosaic_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_011.png b/_images/sphx_glr_mosaic_011.png deleted file mode 120000 index 5c4d0c25532..00000000000 --- a/_images/sphx_glr_mosaic_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_011.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_011_2_0x.png b/_images/sphx_glr_mosaic_011_2_0x.png deleted file mode 120000 index 3f69786122d..00000000000 --- a/_images/sphx_glr_mosaic_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_012.png b/_images/sphx_glr_mosaic_012.png deleted file mode 120000 index d8926a0dcea..00000000000 --- a/_images/sphx_glr_mosaic_012.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_012.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_012_2_0x.png b/_images/sphx_glr_mosaic_012_2_0x.png deleted file mode 120000 index 48d67ea176a..00000000000 --- a/_images/sphx_glr_mosaic_012_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_012_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_013.png b/_images/sphx_glr_mosaic_013.png deleted file mode 120000 index b9b2e0cc38e..00000000000 --- a/_images/sphx_glr_mosaic_013.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_013.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_013_2_0x.png b/_images/sphx_glr_mosaic_013_2_0x.png deleted file mode 120000 index 891f78f85ee..00000000000 --- a/_images/sphx_glr_mosaic_013_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_013_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_014.png b/_images/sphx_glr_mosaic_014.png deleted file mode 120000 index 8c67bec21ed..00000000000 --- a/_images/sphx_glr_mosaic_014.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_014.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_014_2_0x.png b/_images/sphx_glr_mosaic_014_2_0x.png deleted file mode 120000 index 5f28597f2ba..00000000000 --- a/_images/sphx_glr_mosaic_014_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_014_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mosaic_thumb.png b/_images/sphx_glr_mosaic_thumb.png deleted file mode 120000 index 4dbcca2ed6a..00000000000 --- a/_images/sphx_glr_mosaic_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mosaic_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mouse_cursor_001.png b/_images/sphx_glr_mouse_cursor_001.png deleted file mode 120000 index 915f0d2cfee..00000000000 --- a/_images/sphx_glr_mouse_cursor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mouse_cursor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mouse_cursor_001_2_0x.png b/_images/sphx_glr_mouse_cursor_001_2_0x.png deleted file mode 120000 index ca1104eaf44..00000000000 --- a/_images/sphx_glr_mouse_cursor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mouse_cursor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mouse_cursor_thumb.png b/_images/sphx_glr_mouse_cursor_thumb.png deleted file mode 120000 index 72d5340fdce..00000000000 --- a/_images/sphx_glr_mouse_cursor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mouse_cursor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_movie_demo_sgskip_thumb.png b/_images/sphx_glr_movie_demo_sgskip_thumb.png deleted file mode 120000 index 666d894ea3a..00000000000 --- a/_images/sphx_glr_movie_demo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_movie_demo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_moviewriter_sgskip_thumb.png b/_images/sphx_glr_moviewriter_sgskip_thumb.png deleted file mode 120000 index 4d1f0388146..00000000000 --- a/_images/sphx_glr_moviewriter_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_moviewriter_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mpl_with_glade3_sgskip_thumb.png b/_images/sphx_glr_mpl_with_glade3_sgskip_thumb.png deleted file mode 120000 index d0c5256a015..00000000000 --- a/_images/sphx_glr_mpl_with_glade3_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mpl_with_glade3_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mpl_with_glade_316_sgskip_thumb.png b/_images/sphx_glr_mpl_with_glade_316_sgskip_thumb.png deleted file mode 120000 index 909bbb694e9..00000000000 --- a/_images/sphx_glr_mpl_with_glade_316_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_mpl_with_glade_316_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mpl_with_glade_sgskip_thumb.png b/_images/sphx_glr_mpl_with_glade_sgskip_thumb.png deleted file mode 120000 index 41f5e8a14e0..00000000000 --- a/_images/sphx_glr_mpl_with_glade_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_mpl_with_glade_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mplot3d_thumb.png b/_images/sphx_glr_mplot3d_thumb.png deleted file mode 120000 index 3a7a2539183..00000000000 --- a/_images/sphx_glr_mplot3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mplot3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mri_demo_001.png b/_images/sphx_glr_mri_demo_001.png deleted file mode 120000 index 5dcee1bb39d..00000000000 --- a/_images/sphx_glr_mri_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mri_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mri_demo_001_2_0x.png b/_images/sphx_glr_mri_demo_001_2_0x.png deleted file mode 120000 index 4031d9e9589..00000000000 --- a/_images/sphx_glr_mri_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mri_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mri_demo_thumb.png b/_images/sphx_glr_mri_demo_thumb.png deleted file mode 120000 index 6822d962298..00000000000 --- a/_images/sphx_glr_mri_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mri_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_mri_with_eeg_001.png b/_images/sphx_glr_mri_with_eeg_001.png deleted file mode 120000 index 6777657a998..00000000000 --- a/_images/sphx_glr_mri_with_eeg_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mri_with_eeg_001.png \ No newline at end of file diff --git a/_images/sphx_glr_mri_with_eeg_001_2_0x.png b/_images/sphx_glr_mri_with_eeg_001_2_0x.png deleted file mode 120000 index 807806ef5c8..00000000000 --- a/_images/sphx_glr_mri_with_eeg_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mri_with_eeg_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_mri_with_eeg_thumb.png b/_images/sphx_glr_mri_with_eeg_thumb.png deleted file mode 120000 index 10b886e4765..00000000000 --- a/_images/sphx_glr_mri_with_eeg_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_mri_with_eeg_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multi_image_001.png b/_images/sphx_glr_multi_image_001.png deleted file mode 120000 index 7f32364d692..00000000000 --- a/_images/sphx_glr_multi_image_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multi_image_001.png \ No newline at end of file diff --git a/_images/sphx_glr_multi_image_001_2_0x.png b/_images/sphx_glr_multi_image_001_2_0x.png deleted file mode 120000 index fb95dbf42dd..00000000000 --- a/_images/sphx_glr_multi_image_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multi_image_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multi_image_thumb.png b/_images/sphx_glr_multi_image_thumb.png deleted file mode 120000 index adfb3ac52da..00000000000 --- a/_images/sphx_glr_multi_image_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multi_image_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multicolored_line_001.png b/_images/sphx_glr_multicolored_line_001.png deleted file mode 120000 index 5b9e387abd4..00000000000 --- a/_images/sphx_glr_multicolored_line_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multicolored_line_001.png \ No newline at end of file diff --git a/_images/sphx_glr_multicolored_line_001_2_0x.png b/_images/sphx_glr_multicolored_line_001_2_0x.png deleted file mode 120000 index 8d99feaa85d..00000000000 --- a/_images/sphx_glr_multicolored_line_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multicolored_line_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multicolored_line_thumb.png b/_images/sphx_glr_multicolored_line_thumb.png deleted file mode 120000 index f68770da6e6..00000000000 --- a/_images/sphx_glr_multicolored_line_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multicolored_line_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multicursor_001.png b/_images/sphx_glr_multicursor_001.png deleted file mode 120000 index 0f3504fdc30..00000000000 --- a/_images/sphx_glr_multicursor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multicursor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_multicursor_001_2_0x.png b/_images/sphx_glr_multicursor_001_2_0x.png deleted file mode 120000 index 47d4b763ead..00000000000 --- a/_images/sphx_glr_multicursor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multicursor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multicursor_thumb.png b/_images/sphx_glr_multicursor_thumb.png deleted file mode 120000 index 46a175160d3..00000000000 --- a/_images/sphx_glr_multicursor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multicursor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multiline_001.png b/_images/sphx_glr_multiline_001.png deleted file mode 120000 index 975fc37f673..00000000000 --- a/_images/sphx_glr_multiline_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiline_001.png \ No newline at end of file diff --git a/_images/sphx_glr_multiline_001_2_0x.png b/_images/sphx_glr_multiline_001_2_0x.png deleted file mode 120000 index 9010db5d057..00000000000 --- a/_images/sphx_glr_multiline_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiline_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multiline_thumb.png b/_images/sphx_glr_multiline_thumb.png deleted file mode 120000 index 508e55a386d..00000000000 --- a/_images/sphx_glr_multiline_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiline_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multipage_pdf_thumb.png b/_images/sphx_glr_multipage_pdf_thumb.png deleted file mode 120000 index 078e0171763..00000000000 --- a/_images/sphx_glr_multipage_pdf_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multipage_pdf_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_figs_demo_001.png b/_images/sphx_glr_multiple_figs_demo_001.png deleted file mode 120000 index c1e3bd19921..00000000000 --- a/_images/sphx_glr_multiple_figs_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_figs_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_figs_demo_001_2_0x.png b/_images/sphx_glr_multiple_figs_demo_001_2_0x.png deleted file mode 120000 index 25e3e4ab8e7..00000000000 --- a/_images/sphx_glr_multiple_figs_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_figs_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_figs_demo_002.png b/_images/sphx_glr_multiple_figs_demo_002.png deleted file mode 120000 index 862d29a54f4..00000000000 --- a/_images/sphx_glr_multiple_figs_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_figs_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_figs_demo_002_2_0x.png b/_images/sphx_glr_multiple_figs_demo_002_2_0x.png deleted file mode 120000 index 1e7f7db4dae..00000000000 --- a/_images/sphx_glr_multiple_figs_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_figs_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_figs_demo_003.png b/_images/sphx_glr_multiple_figs_demo_003.png deleted file mode 120000 index a052cc5b72e..00000000000 --- a/_images/sphx_glr_multiple_figs_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_figs_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_figs_demo_003_2_0x.png b/_images/sphx_glr_multiple_figs_demo_003_2_0x.png deleted file mode 120000 index 69137df7142..00000000000 --- a/_images/sphx_glr_multiple_figs_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_figs_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_figs_demo_thumb.png b/_images/sphx_glr_multiple_figs_demo_thumb.png deleted file mode 120000 index a107a269ee2..00000000000 --- a/_images/sphx_glr_multiple_figs_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_figs_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_histograms_side_by_side_001.png b/_images/sphx_glr_multiple_histograms_side_by_side_001.png deleted file mode 120000 index 42e0e1ed9bd..00000000000 --- a/_images/sphx_glr_multiple_histograms_side_by_side_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_histograms_side_by_side_001.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_histograms_side_by_side_001_2_0x.png b/_images/sphx_glr_multiple_histograms_side_by_side_001_2_0x.png deleted file mode 120000 index 7cc9f1ac3e7..00000000000 --- a/_images/sphx_glr_multiple_histograms_side_by_side_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_histograms_side_by_side_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_histograms_side_by_side_thumb.png b/_images/sphx_glr_multiple_histograms_side_by_side_thumb.png deleted file mode 120000 index 0a4631f6ea2..00000000000 --- a/_images/sphx_glr_multiple_histograms_side_by_side_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_histograms_side_by_side_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_yaxis_with_spines_001.png b/_images/sphx_glr_multiple_yaxis_with_spines_001.png deleted file mode 120000 index 17cced1ff86..00000000000 --- a/_images/sphx_glr_multiple_yaxis_with_spines_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_yaxis_with_spines_001.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_yaxis_with_spines_001_2_0x.png b/_images/sphx_glr_multiple_yaxis_with_spines_001_2_0x.png deleted file mode 120000 index 7d8cb0923d7..00000000000 --- a/_images/sphx_glr_multiple_yaxis_with_spines_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_yaxis_with_spines_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_multiple_yaxis_with_spines_thumb.png b/_images/sphx_glr_multiple_yaxis_with_spines_thumb.png deleted file mode 120000 index 088f40aaf78..00000000000 --- a/_images/sphx_glr_multiple_yaxis_with_spines_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiple_yaxis_with_spines_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_multiprocess_sgskip_thumb.png b/_images/sphx_glr_multiprocess_sgskip_thumb.png deleted file mode 120000 index e65d4231267..00000000000 --- a/_images/sphx_glr_multiprocess_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_multiprocess_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_named_colors_001.png b/_images/sphx_glr_named_colors_001.png deleted file mode 120000 index 88df39948c2..00000000000 --- a/_images/sphx_glr_named_colors_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_named_colors_001.png \ No newline at end of file diff --git a/_images/sphx_glr_named_colors_001_2_0x.png b/_images/sphx_glr_named_colors_001_2_0x.png deleted file mode 120000 index e6532a61237..00000000000 --- a/_images/sphx_glr_named_colors_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_named_colors_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_named_colors_002.png b/_images/sphx_glr_named_colors_002.png deleted file mode 120000 index c11ebe82815..00000000000 --- a/_images/sphx_glr_named_colors_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_named_colors_002.png \ No newline at end of file diff --git a/_images/sphx_glr_named_colors_002_2_0x.png b/_images/sphx_glr_named_colors_002_2_0x.png deleted file mode 120000 index 2641d051496..00000000000 --- a/_images/sphx_glr_named_colors_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_named_colors_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_named_colors_003.png b/_images/sphx_glr_named_colors_003.png deleted file mode 120000 index 55b5343724f..00000000000 --- a/_images/sphx_glr_named_colors_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_named_colors_003.png \ No newline at end of file diff --git a/_images/sphx_glr_named_colors_003_2_0x.png b/_images/sphx_glr_named_colors_003_2_0x.png deleted file mode 120000 index 6189b6fcbb2..00000000000 --- a/_images/sphx_glr_named_colors_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_named_colors_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_named_colors_thumb.png b/_images/sphx_glr_named_colors_thumb.png deleted file mode 120000 index a7a8dd7e4f1..00000000000 --- a/_images/sphx_glr_named_colors_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_named_colors_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_nan_test_001.png b/_images/sphx_glr_nan_test_001.png deleted file mode 120000 index 61144600c30..00000000000 --- a/_images/sphx_glr_nan_test_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_nan_test_001.png \ No newline at end of file diff --git a/_images/sphx_glr_nan_test_thumb.png b/_images/sphx_glr_nan_test_thumb.png deleted file mode 120000 index c63d93fff51..00000000000 --- a/_images/sphx_glr_nan_test_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_nan_test_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_nested_pie_001.png b/_images/sphx_glr_nested_pie_001.png deleted file mode 120000 index bbe9a39feec..00000000000 --- a/_images/sphx_glr_nested_pie_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_nested_pie_001.png \ No newline at end of file diff --git a/_images/sphx_glr_nested_pie_001_2_0x.png b/_images/sphx_glr_nested_pie_001_2_0x.png deleted file mode 120000 index b96e43c6a25..00000000000 --- a/_images/sphx_glr_nested_pie_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_nested_pie_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_nested_pie_002.png b/_images/sphx_glr_nested_pie_002.png deleted file mode 120000 index 896fcadfd33..00000000000 --- a/_images/sphx_glr_nested_pie_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_nested_pie_002.png \ No newline at end of file diff --git a/_images/sphx_glr_nested_pie_002_2_0x.png b/_images/sphx_glr_nested_pie_002_2_0x.png deleted file mode 120000 index 5f2fe6e0bd5..00000000000 --- a/_images/sphx_glr_nested_pie_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_nested_pie_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_nested_pie_thumb.png b/_images/sphx_glr_nested_pie_thumb.png deleted file mode 120000 index db8ac6ceab6..00000000000 --- a/_images/sphx_glr_nested_pie_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_nested_pie_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_offset_001.png b/_images/sphx_glr_offset_001.png deleted file mode 120000 index 1e60c5b5eb6..00000000000 --- a/_images/sphx_glr_offset_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_offset_001.png \ No newline at end of file diff --git a/_images/sphx_glr_offset_0011.png b/_images/sphx_glr_offset_0011.png deleted file mode 120000 index ff3be4e2952..00000000000 --- a/_images/sphx_glr_offset_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_offset_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_offset_001_2_0x.png b/_images/sphx_glr_offset_001_2_0x.png deleted file mode 120000 index 799b2ccd042..00000000000 --- a/_images/sphx_glr_offset_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_offset_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_offset_thumb.png b/_images/sphx_glr_offset_thumb.png deleted file mode 120000 index eebdb371833..00000000000 --- a/_images/sphx_glr_offset_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_offset_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_packed_bubbles_001.png b/_images/sphx_glr_packed_bubbles_001.png deleted file mode 120000 index 960e16c2e11..00000000000 --- a/_images/sphx_glr_packed_bubbles_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_packed_bubbles_001.png \ No newline at end of file diff --git a/_images/sphx_glr_packed_bubbles_001_2_0x.png b/_images/sphx_glr_packed_bubbles_001_2_0x.png deleted file mode 120000 index a9ae26058b0..00000000000 --- a/_images/sphx_glr_packed_bubbles_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_packed_bubbles_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_packed_bubbles_thumb.png b/_images/sphx_glr_packed_bubbles_thumb.png deleted file mode 120000 index 95e25d5c8f5..00000000000 --- a/_images/sphx_glr_packed_bubbles_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_packed_bubbles_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple2_001.png b/_images/sphx_glr_parasite_simple2_001.png deleted file mode 120000 index e7ed48a98ec..00000000000 --- a/_images/sphx_glr_parasite_simple2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_parasite_simple2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple2_0011.png b/_images/sphx_glr_parasite_simple2_0011.png deleted file mode 120000 index 4a8214d15cd..00000000000 --- a/_images/sphx_glr_parasite_simple2_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_parasite_simple2_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple2_001_2_0x.png b/_images/sphx_glr_parasite_simple2_001_2_0x.png deleted file mode 120000 index 08730eca439..00000000000 --- a/_images/sphx_glr_parasite_simple2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_parasite_simple2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple2_thumb.png b/_images/sphx_glr_parasite_simple2_thumb.png deleted file mode 120000 index 9bbe9c17090..00000000000 --- a/_images/sphx_glr_parasite_simple2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_parasite_simple2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple_001.png b/_images/sphx_glr_parasite_simple_001.png deleted file mode 120000 index 1f59dc3f220..00000000000 --- a/_images/sphx_glr_parasite_simple_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_parasite_simple_001.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple_0011.png b/_images/sphx_glr_parasite_simple_0011.png deleted file mode 120000 index 37aa13da405..00000000000 --- a/_images/sphx_glr_parasite_simple_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_parasite_simple_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple_001_2_0x.png b/_images/sphx_glr_parasite_simple_001_2_0x.png deleted file mode 120000 index b7ac16499bb..00000000000 --- a/_images/sphx_glr_parasite_simple_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_parasite_simple_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_parasite_simple_thumb.png b/_images/sphx_glr_parasite_simple_thumb.png deleted file mode 120000 index 0d94dec47a2..00000000000 --- a/_images/sphx_glr_parasite_simple_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_parasite_simple_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_patch_collection_001.png b/_images/sphx_glr_patch_collection_001.png deleted file mode 120000 index 91f33353e01..00000000000 --- a/_images/sphx_glr_patch_collection_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patch_collection_001.png \ No newline at end of file diff --git a/_images/sphx_glr_patch_collection_001_2_0x.png b/_images/sphx_glr_patch_collection_001_2_0x.png deleted file mode 120000 index 0c490d3bf9f..00000000000 --- a/_images/sphx_glr_patch_collection_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patch_collection_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_patch_collection_thumb.png b/_images/sphx_glr_patch_collection_thumb.png deleted file mode 120000 index d3bcf4a680f..00000000000 --- a/_images/sphx_glr_patch_collection_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patch_collection_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_path_editor_001.png b/_images/sphx_glr_path_editor_001.png deleted file mode 120000 index 777ded42a65..00000000000 --- a/_images/sphx_glr_path_editor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_editor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_path_editor_001_2_0x.png b/_images/sphx_glr_path_editor_001_2_0x.png deleted file mode 120000 index 45d7e9c5267..00000000000 --- a/_images/sphx_glr_path_editor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_editor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_path_editor_thumb.png b/_images/sphx_glr_path_editor_thumb.png deleted file mode 120000 index d8c2faf8b6c..00000000000 --- a/_images/sphx_glr_path_editor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_editor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_path_patch_001.png b/_images/sphx_glr_path_patch_001.png deleted file mode 120000 index 1c470551f9c..00000000000 --- a/_images/sphx_glr_path_patch_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_patch_001.png \ No newline at end of file diff --git a/_images/sphx_glr_path_patch_0011.png b/_images/sphx_glr_path_patch_0011.png deleted file mode 120000 index 03b9d3d5e1c..00000000000 --- a/_images/sphx_glr_path_patch_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_path_patch_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_path_patch_001_2_0x.png b/_images/sphx_glr_path_patch_001_2_0x.png deleted file mode 120000 index 383208f92cd..00000000000 --- a/_images/sphx_glr_path_patch_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_patch_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_path_patch_thumb.png b/_images/sphx_glr_path_patch_thumb.png deleted file mode 120000 index e0df4f1eb23..00000000000 --- a/_images/sphx_glr_path_patch_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_patch_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_path_tutorial_001.png b/_images/sphx_glr_path_tutorial_001.png deleted file mode 120000 index e66ebc88ba9..00000000000 --- a/_images/sphx_glr_path_tutorial_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_tutorial_001.png \ No newline at end of file diff --git a/_images/sphx_glr_path_tutorial_001_2_0x.png b/_images/sphx_glr_path_tutorial_001_2_0x.png deleted file mode 120000 index d3a618dfaf7..00000000000 --- a/_images/sphx_glr_path_tutorial_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_tutorial_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_path_tutorial_002.png b/_images/sphx_glr_path_tutorial_002.png deleted file mode 120000 index b44ba3cabd3..00000000000 --- a/_images/sphx_glr_path_tutorial_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_tutorial_002.png \ No newline at end of file diff --git a/_images/sphx_glr_path_tutorial_002_2_0x.png b/_images/sphx_glr_path_tutorial_002_2_0x.png deleted file mode 120000 index bd66b4b6084..00000000000 --- a/_images/sphx_glr_path_tutorial_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_tutorial_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_path_tutorial_003.png b/_images/sphx_glr_path_tutorial_003.png deleted file mode 120000 index 1f614474dc9..00000000000 --- a/_images/sphx_glr_path_tutorial_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_tutorial_003.png \ No newline at end of file diff --git a/_images/sphx_glr_path_tutorial_003_2_0x.png b/_images/sphx_glr_path_tutorial_003_2_0x.png deleted file mode 120000 index 1270dd6dafb..00000000000 --- a/_images/sphx_glr_path_tutorial_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_tutorial_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_path_tutorial_thumb.png b/_images/sphx_glr_path_tutorial_thumb.png deleted file mode 120000 index afc75174710..00000000000 --- a/_images/sphx_glr_path_tutorial_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_path_tutorial_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffect_demo_001.png b/_images/sphx_glr_patheffect_demo_001.png deleted file mode 120000 index 4fa09139a06..00000000000 --- a/_images/sphx_glr_patheffect_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffect_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffect_demo_0011.png b/_images/sphx_glr_patheffect_demo_0011.png deleted file mode 120000 index fb03b4dc967..00000000000 --- a/_images/sphx_glr_patheffect_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_patheffect_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffect_demo_001_2_0x.png b/_images/sphx_glr_patheffect_demo_001_2_0x.png deleted file mode 120000 index d82d82f5212..00000000000 --- a/_images/sphx_glr_patheffect_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffect_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffect_demo_thumb.png b/_images/sphx_glr_patheffect_demo_thumb.png deleted file mode 120000 index 0d33df772ad..00000000000 --- a/_images/sphx_glr_patheffect_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffect_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_001.png b/_images/sphx_glr_patheffects_guide_001.png deleted file mode 120000 index 1bdcd406afd..00000000000 --- a/_images/sphx_glr_patheffects_guide_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_001.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_001_2_0x.png b/_images/sphx_glr_patheffects_guide_001_2_0x.png deleted file mode 120000 index 22609937a5d..00000000000 --- a/_images/sphx_glr_patheffects_guide_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_002.png b/_images/sphx_glr_patheffects_guide_002.png deleted file mode 120000 index e388cea330c..00000000000 --- a/_images/sphx_glr_patheffects_guide_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_002.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_002_2_0x.png b/_images/sphx_glr_patheffects_guide_002_2_0x.png deleted file mode 120000 index a943bc41706..00000000000 --- a/_images/sphx_glr_patheffects_guide_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_003.png b/_images/sphx_glr_patheffects_guide_003.png deleted file mode 120000 index 3667a15c267..00000000000 --- a/_images/sphx_glr_patheffects_guide_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_003.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_003_2_0x.png b/_images/sphx_glr_patheffects_guide_003_2_0x.png deleted file mode 120000 index 294c9fe059d..00000000000 --- a/_images/sphx_glr_patheffects_guide_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_004.png b/_images/sphx_glr_patheffects_guide_004.png deleted file mode 120000 index ed2d1a8d87c..00000000000 --- a/_images/sphx_glr_patheffects_guide_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_004.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_004_2_0x.png b/_images/sphx_glr_patheffects_guide_004_2_0x.png deleted file mode 120000 index 8e6823055e0..00000000000 --- a/_images/sphx_glr_patheffects_guide_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_patheffects_guide_thumb.png b/_images/sphx_glr_patheffects_guide_thumb.png deleted file mode 120000 index 55a07d67740..00000000000 --- a/_images/sphx_glr_patheffects_guide_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_patheffects_guide_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pathpatch3d_001.png b/_images/sphx_glr_pathpatch3d_001.png deleted file mode 120000 index 8907b68373c..00000000000 --- a/_images/sphx_glr_pathpatch3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pathpatch3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pathpatch3d_001_2_0x.png b/_images/sphx_glr_pathpatch3d_001_2_0x.png deleted file mode 120000 index e61c972a360..00000000000 --- a/_images/sphx_glr_pathpatch3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pathpatch3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pathpatch3d_thumb.png b/_images/sphx_glr_pathpatch3d_thumb.png deleted file mode 120000 index dbe2f4c4526..00000000000 --- a/_images/sphx_glr_pathpatch3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pathpatch3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pause_resume_001.png b/_images/sphx_glr_pause_resume_001.png deleted file mode 120000 index 9a1845e4958..00000000000 --- a/_images/sphx_glr_pause_resume_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pause_resume_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pause_resume_001_2_0x.png b/_images/sphx_glr_pause_resume_001_2_0x.png deleted file mode 120000 index ee6507b5a67..00000000000 --- a/_images/sphx_glr_pause_resume_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pause_resume_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pause_resume_thumb.png b/_images/sphx_glr_pause_resume_thumb.png deleted file mode 120000 index 9e0d86b3edf..00000000000 --- a/_images/sphx_glr_pause_resume_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pause_resume_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolor_demo_001.png b/_images/sphx_glr_pcolor_demo_001.png deleted file mode 120000 index 9f28e168fa6..00000000000 --- a/_images/sphx_glr_pcolor_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolor_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolor_demo_001_2_0x.png b/_images/sphx_glr_pcolor_demo_001_2_0x.png deleted file mode 120000 index 641f18f0ba3..00000000000 --- a/_images/sphx_glr_pcolor_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolor_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolor_demo_002.png b/_images/sphx_glr_pcolor_demo_002.png deleted file mode 120000 index ad279b1568e..00000000000 --- a/_images/sphx_glr_pcolor_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolor_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolor_demo_002_2_0x.png b/_images/sphx_glr_pcolor_demo_002_2_0x.png deleted file mode 120000 index 167a5fa69de..00000000000 --- a/_images/sphx_glr_pcolor_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolor_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolor_demo_003.png b/_images/sphx_glr_pcolor_demo_003.png deleted file mode 120000 index a3141b6d25c..00000000000 --- a/_images/sphx_glr_pcolor_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolor_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolor_demo_003_2_0x.png b/_images/sphx_glr_pcolor_demo_003_2_0x.png deleted file mode 120000 index e41650d369f..00000000000 --- a/_images/sphx_glr_pcolor_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolor_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolor_demo_thumb.png b/_images/sphx_glr_pcolor_demo_thumb.png deleted file mode 120000 index 757d1e572c5..00000000000 --- a/_images/sphx_glr_pcolor_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolor_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_001.png b/_images/sphx_glr_pcolormesh_001.png deleted file mode 120000 index bc739031a78..00000000000 --- a/_images/sphx_glr_pcolormesh_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_001_2_0x.png b/_images/sphx_glr_pcolormesh_001_2_0x.png deleted file mode 120000 index 575860f05a7..00000000000 --- a/_images/sphx_glr_pcolormesh_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_001.png b/_images/sphx_glr_pcolormesh_grids_001.png deleted file mode 120000 index bd2436a2a68..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_001_2_0x.png b/_images/sphx_glr_pcolormesh_grids_001_2_0x.png deleted file mode 120000 index 7eb79cf10fc..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_002.png b/_images/sphx_glr_pcolormesh_grids_002.png deleted file mode 120000 index 852170c31cf..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_002.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_002_2_0x.png b/_images/sphx_glr_pcolormesh_grids_002_2_0x.png deleted file mode 120000 index 39615285407..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_003.png b/_images/sphx_glr_pcolormesh_grids_003.png deleted file mode 120000 index f11b520bfb9..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_003.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_003_2_0x.png b/_images/sphx_glr_pcolormesh_grids_003_2_0x.png deleted file mode 120000 index 53adae25599..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_004.png b/_images/sphx_glr_pcolormesh_grids_004.png deleted file mode 120000 index 43abdb0f55e..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_004.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_004_2_0x.png b/_images/sphx_glr_pcolormesh_grids_004_2_0x.png deleted file mode 120000 index 8cb63dfd5ef..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_005.png b/_images/sphx_glr_pcolormesh_grids_005.png deleted file mode 120000 index 35414d8a898..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_005.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_005_2_0x.png b/_images/sphx_glr_pcolormesh_grids_005_2_0x.png deleted file mode 120000 index 623ba401741..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_grids_thumb.png b/_images/sphx_glr_pcolormesh_grids_thumb.png deleted file mode 120000 index 4fe26ccdc9d..00000000000 --- a/_images/sphx_glr_pcolormesh_grids_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_grids_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_001.png b/_images/sphx_glr_pcolormesh_levels_001.png deleted file mode 120000 index 34a2086654e..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_0011.png b/_images/sphx_glr_pcolormesh_levels_0011.png deleted file mode 120000 index 6fe485d501d..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_pcolormesh_levels_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_001_2_0x.png b/_images/sphx_glr_pcolormesh_levels_001_2_0x.png deleted file mode 120000 index 2b4752cad9d..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_002.png b/_images/sphx_glr_pcolormesh_levels_002.png deleted file mode 120000 index b601ccab29d..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_002.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_002_2_0x.png b/_images/sphx_glr_pcolormesh_levels_002_2_0x.png deleted file mode 120000 index 1746844eed1..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_003.png b/_images/sphx_glr_pcolormesh_levels_003.png deleted file mode 120000 index 0743293c9de..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_003.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_003_2_0x.png b/_images/sphx_glr_pcolormesh_levels_003_2_0x.png deleted file mode 120000 index a58fbcfae05..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_004.png b/_images/sphx_glr_pcolormesh_levels_004.png deleted file mode 120000 index 0cf4b6c3b8e..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_004.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_004_2_0x.png b/_images/sphx_glr_pcolormesh_levels_004_2_0x.png deleted file mode 120000 index d78701f5576..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_levels_thumb.png b/_images/sphx_glr_pcolormesh_levels_thumb.png deleted file mode 120000 index 3ada80e3885..00000000000 --- a/_images/sphx_glr_pcolormesh_levels_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_levels_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pcolormesh_thumb.png b/_images/sphx_glr_pcolormesh_thumb.png deleted file mode 120000 index ea07aba67c5..00000000000 --- a/_images/sphx_glr_pcolormesh_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pcolormesh_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_fonts_001.png b/_images/sphx_glr_pgf_fonts_001.png deleted file mode 120000 index eaf68aab19d..00000000000 --- a/_images/sphx_glr_pgf_fonts_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_fonts_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_fonts_001_2_0x.png b/_images/sphx_glr_pgf_fonts_001_2_0x.png deleted file mode 120000 index bef8223851a..00000000000 --- a/_images/sphx_glr_pgf_fonts_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_fonts_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_fonts_sgskip_thumb.png b/_images/sphx_glr_pgf_fonts_sgskip_thumb.png deleted file mode 120000 index 653cca75907..00000000000 --- a/_images/sphx_glr_pgf_fonts_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_pgf_fonts_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_fonts_thumb.png b/_images/sphx_glr_pgf_fonts_thumb.png deleted file mode 120000 index 7e0027b0277..00000000000 --- a/_images/sphx_glr_pgf_fonts_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_fonts_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_preamble_sgskip_thumb.png b/_images/sphx_glr_pgf_preamble_sgskip_thumb.png deleted file mode 120000 index 17647fed5f4..00000000000 --- a/_images/sphx_glr_pgf_preamble_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_preamble_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_texsystem_001.png b/_images/sphx_glr_pgf_texsystem_001.png deleted file mode 120000 index e684ed230f9..00000000000 --- a/_images/sphx_glr_pgf_texsystem_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_texsystem_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_texsystem_001_2_0x.png b/_images/sphx_glr_pgf_texsystem_001_2_0x.png deleted file mode 120000 index be009d8e2ec..00000000000 --- a/_images/sphx_glr_pgf_texsystem_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_texsystem_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_texsystem_sgskip_thumb.png b/_images/sphx_glr_pgf_texsystem_sgskip_thumb.png deleted file mode 120000 index ee1236be199..00000000000 --- a/_images/sphx_glr_pgf_texsystem_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_pgf_texsystem_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_texsystem_thumb.png b/_images/sphx_glr_pgf_texsystem_thumb.png deleted file mode 120000 index f4d3414e308..00000000000 --- a/_images/sphx_glr_pgf_texsystem_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_texsystem_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pgf_thumb.png b/_images/sphx_glr_pgf_thumb.png deleted file mode 120000 index 54c26ca1b53..00000000000 --- a/_images/sphx_glr_pgf_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pgf_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo2_001.png b/_images/sphx_glr_pick_event_demo2_001.png deleted file mode 120000 index 74c389ab3f5..00000000000 --- a/_images/sphx_glr_pick_event_demo2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo2_001_2_0x.png b/_images/sphx_glr_pick_event_demo2_001_2_0x.png deleted file mode 120000 index 5176a09e98f..00000000000 --- a/_images/sphx_glr_pick_event_demo2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo2_thumb.png b/_images/sphx_glr_pick_event_demo2_thumb.png deleted file mode 120000 index 428cbcd9b12..00000000000 --- a/_images/sphx_glr_pick_event_demo2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_001.png b/_images/sphx_glr_pick_event_demo_001.png deleted file mode 120000 index f217e2dbd19..00000000000 --- a/_images/sphx_glr_pick_event_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_001_2_0x.png b/_images/sphx_glr_pick_event_demo_001_2_0x.png deleted file mode 120000 index 6b36453eff6..00000000000 --- a/_images/sphx_glr_pick_event_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_002.png b/_images/sphx_glr_pick_event_demo_002.png deleted file mode 120000 index 24ded40c47c..00000000000 --- a/_images/sphx_glr_pick_event_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_002_2_0x.png b/_images/sphx_glr_pick_event_demo_002_2_0x.png deleted file mode 120000 index f24734c7182..00000000000 --- a/_images/sphx_glr_pick_event_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_003.png b/_images/sphx_glr_pick_event_demo_003.png deleted file mode 120000 index 4cbd2c3b102..00000000000 --- a/_images/sphx_glr_pick_event_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_003_2_0x.png b/_images/sphx_glr_pick_event_demo_003_2_0x.png deleted file mode 120000 index cf2df4a5410..00000000000 --- a/_images/sphx_glr_pick_event_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_004.png b/_images/sphx_glr_pick_event_demo_004.png deleted file mode 120000 index ba59e1791fe..00000000000 --- a/_images/sphx_glr_pick_event_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_004_2_0x.png b/_images/sphx_glr_pick_event_demo_004_2_0x.png deleted file mode 120000 index c25edea40a4..00000000000 --- a/_images/sphx_glr_pick_event_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pick_event_demo_thumb.png b/_images/sphx_glr_pick_event_demo_thumb.png deleted file mode 120000 index 78007e3dfa9..00000000000 --- a/_images/sphx_glr_pick_event_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pick_event_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_001.png b/_images/sphx_glr_pie_001.png deleted file mode 120000 index 1885a6cdcf2..00000000000 --- a/_images/sphx_glr_pie_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_001_2_0x.png b/_images/sphx_glr_pie_001_2_0x.png deleted file mode 120000 index 94602418eef..00000000000 --- a/_images/sphx_glr_pie_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_and_donut_labels_001.png b/_images/sphx_glr_pie_and_donut_labels_001.png deleted file mode 120000 index 96b8a93c640..00000000000 --- a/_images/sphx_glr_pie_and_donut_labels_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_and_donut_labels_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_and_donut_labels_001_2_0x.png b/_images/sphx_glr_pie_and_donut_labels_001_2_0x.png deleted file mode 120000 index c5391f68627..00000000000 --- a/_images/sphx_glr_pie_and_donut_labels_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_and_donut_labels_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_and_donut_labels_002.png b/_images/sphx_glr_pie_and_donut_labels_002.png deleted file mode 120000 index f2040402907..00000000000 --- a/_images/sphx_glr_pie_and_donut_labels_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_and_donut_labels_002.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_and_donut_labels_002_2_0x.png b/_images/sphx_glr_pie_and_donut_labels_002_2_0x.png deleted file mode 120000 index dee83962ace..00000000000 --- a/_images/sphx_glr_pie_and_donut_labels_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_and_donut_labels_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_and_donut_labels_thumb.png b/_images/sphx_glr_pie_and_donut_labels_thumb.png deleted file mode 120000 index cb45388ffb7..00000000000 --- a/_images/sphx_glr_pie_and_donut_labels_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_and_donut_labels_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_demo2_001.png b/_images/sphx_glr_pie_demo2_001.png deleted file mode 120000 index 8c7610c91b1..00000000000 --- a/_images/sphx_glr_pie_demo2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_demo2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_demo2_001_2_0x.png b/_images/sphx_glr_pie_demo2_001_2_0x.png deleted file mode 120000 index 17fb2d3e074..00000000000 --- a/_images/sphx_glr_pie_demo2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_demo2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_demo2_thumb.png b/_images/sphx_glr_pie_demo2_thumb.png deleted file mode 120000 index d1b685c5b7e..00000000000 --- a/_images/sphx_glr_pie_demo2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_demo2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_features_001.png b/_images/sphx_glr_pie_features_001.png deleted file mode 120000 index 8da7050706b..00000000000 --- a/_images/sphx_glr_pie_features_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_features_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_features_0011.png b/_images/sphx_glr_pie_features_0011.png deleted file mode 120000 index 5edc3003c88..00000000000 --- a/_images/sphx_glr_pie_features_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_pie_features_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_features_001_2_0x.png b/_images/sphx_glr_pie_features_001_2_0x.png deleted file mode 120000 index 65b13c95a8c..00000000000 --- a/_images/sphx_glr_pie_features_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_features_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_features_thumb.png b/_images/sphx_glr_pie_features_thumb.png deleted file mode 120000 index a549e370f66..00000000000 --- a/_images/sphx_glr_pie_features_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_features_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pie_thumb.png b/_images/sphx_glr_pie_thumb.png deleted file mode 120000 index 84a610073eb..00000000000 --- a/_images/sphx_glr_pie_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pie_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pipong_thumb.png b/_images/sphx_glr_pipong_thumb.png deleted file mode 120000 index 20ecdaf51d6..00000000000 --- a/_images/sphx_glr_pipong_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_pipong_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_placing_text_boxes_001.png b/_images/sphx_glr_placing_text_boxes_001.png deleted file mode 120000 index 675ad669087..00000000000 --- a/_images/sphx_glr_placing_text_boxes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_placing_text_boxes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_placing_text_boxes_001_2_0x.png b/_images/sphx_glr_placing_text_boxes_001_2_0x.png deleted file mode 120000 index 55b98c6b4c3..00000000000 --- a/_images/sphx_glr_placing_text_boxes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_placing_text_boxes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_placing_text_boxes_thumb.png b/_images/sphx_glr_placing_text_boxes_thumb.png deleted file mode 120000 index 31be7558d6d..00000000000 --- a/_images/sphx_glr_placing_text_boxes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_placing_text_boxes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_001.png b/_images/sphx_glr_plot_001.png deleted file mode 120000 index ec14f44405c..00000000000 --- a/_images/sphx_glr_plot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_001_2_0x.png b/_images/sphx_glr_plot_001_2_0x.png deleted file mode 120000 index 7508c1ed853..00000000000 --- a/_images/sphx_glr_plot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_solarizedlight2_001.png b/_images/sphx_glr_plot_solarizedlight2_001.png deleted file mode 120000 index 097d3bf54ae..00000000000 --- a/_images/sphx_glr_plot_solarizedlight2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_solarizedlight2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_solarizedlight2_001_2_0x.png b/_images/sphx_glr_plot_solarizedlight2_001_2_0x.png deleted file mode 120000 index 06a1ad7c6b6..00000000000 --- a/_images/sphx_glr_plot_solarizedlight2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_solarizedlight2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_solarizedlight2_thumb.png b/_images/sphx_glr_plot_solarizedlight2_thumb.png deleted file mode 120000 index 1a73cd052cf..00000000000 --- a/_images/sphx_glr_plot_solarizedlight2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_solarizedlight2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_streamplot_001.png b/_images/sphx_glr_plot_streamplot_001.png deleted file mode 120000 index e41418f5b6a..00000000000 --- a/_images/sphx_glr_plot_streamplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_streamplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_streamplot_0011.png b/_images/sphx_glr_plot_streamplot_0011.png deleted file mode 120000 index 6e9b094e75b..00000000000 --- a/_images/sphx_glr_plot_streamplot_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_plot_streamplot_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_streamplot_0012.png b/_images/sphx_glr_plot_streamplot_0012.png deleted file mode 120000 index 6e076152446..00000000000 --- a/_images/sphx_glr_plot_streamplot_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_plot_streamplot_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_streamplot_001_2_0x.png b/_images/sphx_glr_plot_streamplot_001_2_0x.png deleted file mode 120000 index 0c3be632ac3..00000000000 --- a/_images/sphx_glr_plot_streamplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_streamplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_streamplot_thumb.png b/_images/sphx_glr_plot_streamplot_thumb.png deleted file mode 120000 index 84aee96302c..00000000000 --- a/_images/sphx_glr_plot_streamplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_streamplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_plot_thumb.png b/_images/sphx_glr_plot_thumb.png deleted file mode 120000 index 7d32eceaf95..00000000000 --- a/_images/sphx_glr_plot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_plot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_001.png b/_images/sphx_glr_plotfile_demo_001.png deleted file mode 120000 index f38305411de..00000000000 --- a/_images/sphx_glr_plotfile_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_002.png b/_images/sphx_glr_plotfile_demo_002.png deleted file mode 120000 index 85388bafc34..00000000000 --- a/_images/sphx_glr_plotfile_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_003.png b/_images/sphx_glr_plotfile_demo_003.png deleted file mode 120000 index 25d9fb2dec7..00000000000 --- a/_images/sphx_glr_plotfile_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_004.png b/_images/sphx_glr_plotfile_demo_004.png deleted file mode 120000 index fde04dd5003..00000000000 --- a/_images/sphx_glr_plotfile_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_005.png b/_images/sphx_glr_plotfile_demo_005.png deleted file mode 120000 index b1f61a818ec..00000000000 --- a/_images/sphx_glr_plotfile_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_006.png b/_images/sphx_glr_plotfile_demo_006.png deleted file mode 120000 index dc7d4e59ca5..00000000000 --- a/_images/sphx_glr_plotfile_demo_006.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_006.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_007.png b/_images/sphx_glr_plotfile_demo_007.png deleted file mode 120000 index ea2c47fadda..00000000000 --- a/_images/sphx_glr_plotfile_demo_007.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_007.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_008.png b/_images/sphx_glr_plotfile_demo_008.png deleted file mode 120000 index 71dddf7b347..00000000000 --- a/_images/sphx_glr_plotfile_demo_008.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_008.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_sgskip_thumb.png b/_images/sphx_glr_plotfile_demo_sgskip_thumb.png deleted file mode 120000 index 7f800453234..00000000000 --- a/_images/sphx_glr_plotfile_demo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_plotfile_demo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_plotfile_demo_thumb.png b/_images/sphx_glr_plotfile_demo_thumb.png deleted file mode 120000 index 44ee5e9d3d4..00000000000 --- a/_images/sphx_glr_plotfile_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_plotfile_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_bar_001.png b/_images/sphx_glr_polar_bar_001.png deleted file mode 120000 index 4d2b1868add..00000000000 --- a/_images/sphx_glr_polar_bar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_bar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_bar_001_2_0x.png b/_images/sphx_glr_polar_bar_001_2_0x.png deleted file mode 120000 index f6013a9486a..00000000000 --- a/_images/sphx_glr_polar_bar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_bar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_bar_thumb.png b/_images/sphx_glr_polar_bar_thumb.png deleted file mode 120000 index dcaf7dd31e1..00000000000 --- a/_images/sphx_glr_polar_bar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_bar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_demo_001.png b/_images/sphx_glr_polar_demo_001.png deleted file mode 120000 index fe9415f19b3..00000000000 --- a/_images/sphx_glr_polar_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_demo_0011.png b/_images/sphx_glr_polar_demo_0011.png deleted file mode 120000 index d0e76ac2b51..00000000000 --- a/_images/sphx_glr_polar_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_polar_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_demo_001_2_0x.png b/_images/sphx_glr_polar_demo_001_2_0x.png deleted file mode 120000 index 53801ee1026..00000000000 --- a/_images/sphx_glr_polar_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_demo_thumb.png b/_images/sphx_glr_polar_demo_thumb.png deleted file mode 120000 index 1bd5725c845..00000000000 --- a/_images/sphx_glr_polar_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_legend_001.png b/_images/sphx_glr_polar_legend_001.png deleted file mode 120000 index 759a9beabde..00000000000 --- a/_images/sphx_glr_polar_legend_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_legend_001.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_legend_001_2_0x.png b/_images/sphx_glr_polar_legend_001_2_0x.png deleted file mode 120000 index 4b0532f9966..00000000000 --- a/_images/sphx_glr_polar_legend_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_legend_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_legend_thumb.png b/_images/sphx_glr_polar_legend_thumb.png deleted file mode 120000 index 308f1cab34c..00000000000 --- a/_images/sphx_glr_polar_legend_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_legend_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_scatter_001.png b/_images/sphx_glr_polar_scatter_001.png deleted file mode 120000 index f7fba2185d3..00000000000 --- a/_images/sphx_glr_polar_scatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_scatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_scatter_001_2_0x.png b/_images/sphx_glr_polar_scatter_001_2_0x.png deleted file mode 120000 index f36aa946009..00000000000 --- a/_images/sphx_glr_polar_scatter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_scatter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_scatter_002.png b/_images/sphx_glr_polar_scatter_002.png deleted file mode 120000 index 163fd0e25ac..00000000000 --- a/_images/sphx_glr_polar_scatter_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_scatter_002.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_scatter_002_2_0x.png b/_images/sphx_glr_polar_scatter_002_2_0x.png deleted file mode 120000 index b23c4f217ba..00000000000 --- a/_images/sphx_glr_polar_scatter_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_scatter_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_scatter_003.png b/_images/sphx_glr_polar_scatter_003.png deleted file mode 120000 index 1825bc5f9a2..00000000000 --- a/_images/sphx_glr_polar_scatter_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_scatter_003.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_scatter_003_2_0x.png b/_images/sphx_glr_polar_scatter_003_2_0x.png deleted file mode 120000 index 63b3213648a..00000000000 --- a/_images/sphx_glr_polar_scatter_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_scatter_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polar_scatter_thumb.png b/_images/sphx_glr_polar_scatter_thumb.png deleted file mode 120000 index 5a427e10c59..00000000000 --- a/_images/sphx_glr_polar_scatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polar_scatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_poly_editor_001.png b/_images/sphx_glr_poly_editor_001.png deleted file mode 120000 index e4e75fc00de..00000000000 --- a/_images/sphx_glr_poly_editor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_poly_editor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_poly_editor_001_2_0x.png b/_images/sphx_glr_poly_editor_001_2_0x.png deleted file mode 120000 index 370c76ade4c..00000000000 --- a/_images/sphx_glr_poly_editor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_poly_editor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_poly_editor_thumb.png b/_images/sphx_glr_poly_editor_thumb.png deleted file mode 120000 index a1f9df0622d..00000000000 --- a/_images/sphx_glr_poly_editor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_poly_editor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_polygon_selector_demo_001.png b/_images/sphx_glr_polygon_selector_demo_001.png deleted file mode 120000 index f7f494ce2d5..00000000000 --- a/_images/sphx_glr_polygon_selector_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polygon_selector_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_polygon_selector_demo_001_2_0x.png b/_images/sphx_glr_polygon_selector_demo_001_2_0x.png deleted file mode 120000 index 13a2a950380..00000000000 --- a/_images/sphx_glr_polygon_selector_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polygon_selector_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polygon_selector_demo_thumb.png b/_images/sphx_glr_polygon_selector_demo_thumb.png deleted file mode 120000 index ae30ce16af7..00000000000 --- a/_images/sphx_glr_polygon_selector_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polygon_selector_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_polys3d_001.png b/_images/sphx_glr_polys3d_001.png deleted file mode 120000 index 43915640664..00000000000 --- a/_images/sphx_glr_polys3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polys3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_polys3d_0011.png b/_images/sphx_glr_polys3d_0011.png deleted file mode 120000 index 32d059916d6..00000000000 --- a/_images/sphx_glr_polys3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_polys3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_polys3d_001_2_0x.png b/_images/sphx_glr_polys3d_001_2_0x.png deleted file mode 120000 index f9aed142141..00000000000 --- a/_images/sphx_glr_polys3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polys3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_polys3d_thumb.png b/_images/sphx_glr_polys3d_thumb.png deleted file mode 120000 index a727232152b..00000000000 --- a/_images/sphx_glr_polys3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_polys3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pong_sgskip_thumb.png b/_images/sphx_glr_pong_sgskip_thumb.png deleted file mode 120000 index 77655fb5647..00000000000 --- a/_images/sphx_glr_pong_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pong_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_power_norm_001.png b/_images/sphx_glr_power_norm_001.png deleted file mode 120000 index 1afb7c5c293..00000000000 --- a/_images/sphx_glr_power_norm_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_power_norm_001.png \ No newline at end of file diff --git a/_images/sphx_glr_power_norm_001_2_0x.png b/_images/sphx_glr_power_norm_001_2_0x.png deleted file mode 120000 index d3956b432fb..00000000000 --- a/_images/sphx_glr_power_norm_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_power_norm_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_power_norm_thumb.png b/_images/sphx_glr_power_norm_thumb.png deleted file mode 120000 index 0bdba01114d..00000000000 --- a/_images/sphx_glr_power_norm_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_power_norm_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_print_stdout_sgskip_thumb.png b/_images/sphx_glr_print_stdout_sgskip_thumb.png deleted file mode 120000 index 8180dfb540d..00000000000 --- a/_images/sphx_glr_print_stdout_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_print_stdout_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_001.png b/_images/sphx_glr_psd_demo_001.png deleted file mode 120000 index f159d09df88..00000000000 --- a/_images/sphx_glr_psd_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_001_2_0x.png b/_images/sphx_glr_psd_demo_001_2_0x.png deleted file mode 120000 index 93ab272d26b..00000000000 --- a/_images/sphx_glr_psd_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_002.png b/_images/sphx_glr_psd_demo_002.png deleted file mode 120000 index 6c8c66bd74b..00000000000 --- a/_images/sphx_glr_psd_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_002_2_0x.png b/_images/sphx_glr_psd_demo_002_2_0x.png deleted file mode 120000 index eb2ae3fb7df..00000000000 --- a/_images/sphx_glr_psd_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_003.png b/_images/sphx_glr_psd_demo_003.png deleted file mode 120000 index 4716982e6e2..00000000000 --- a/_images/sphx_glr_psd_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_003_2_0x.png b/_images/sphx_glr_psd_demo_003_2_0x.png deleted file mode 120000 index daa8e5557fe..00000000000 --- a/_images/sphx_glr_psd_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_004.png b/_images/sphx_glr_psd_demo_004.png deleted file mode 120000 index 4785f7c02a6..00000000000 --- a/_images/sphx_glr_psd_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_004_2_0x.png b/_images/sphx_glr_psd_demo_004_2_0x.png deleted file mode 120000 index 06feb7984b1..00000000000 --- a/_images/sphx_glr_psd_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_psd_demo_thumb.png b/_images/sphx_glr_psd_demo_thumb.png deleted file mode 120000 index aa5da8c50fc..00000000000 --- a/_images/sphx_glr_psd_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_psd_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pylab_with_gtk3_sgskip_thumb.png b/_images/sphx_glr_pylab_with_gtk3_sgskip_thumb.png deleted file mode 120000 index 7723580817c..00000000000 --- a/_images/sphx_glr_pylab_with_gtk3_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pylab_with_gtk3_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pylab_with_gtk4_sgskip_thumb.png b/_images/sphx_glr_pylab_with_gtk4_sgskip_thumb.png deleted file mode 120000 index a08f17c7997..00000000000 --- a/_images/sphx_glr_pylab_with_gtk4_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pylab_with_gtk4_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pylab_with_gtk_sgskip_thumb.png b/_images/sphx_glr_pylab_with_gtk_sgskip_thumb.png deleted file mode 120000 index 90832124b76..00000000000 --- a/_images/sphx_glr_pylab_with_gtk_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_pylab_with_gtk_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_001.png b/_images/sphx_glr_pyplot_001.png deleted file mode 120000 index ba4720230d9..00000000000 --- a/_images/sphx_glr_pyplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_001_2_0x.png b/_images/sphx_glr_pyplot_001_2_0x.png deleted file mode 120000 index 97d876d9a50..00000000000 --- a/_images/sphx_glr_pyplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_002.png b/_images/sphx_glr_pyplot_002.png deleted file mode 120000 index 29bab5eaf8f..00000000000 --- a/_images/sphx_glr_pyplot_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_002.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_002_2_0x.png b/_images/sphx_glr_pyplot_002_2_0x.png deleted file mode 120000 index a9d1e587dee..00000000000 --- a/_images/sphx_glr_pyplot_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_003.png b/_images/sphx_glr_pyplot_003.png deleted file mode 120000 index 5f20cb01e1d..00000000000 --- a/_images/sphx_glr_pyplot_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_003.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_003_2_0x.png b/_images/sphx_glr_pyplot_003_2_0x.png deleted file mode 120000 index 1cd4b824e99..00000000000 --- a/_images/sphx_glr_pyplot_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_004.png b/_images/sphx_glr_pyplot_004.png deleted file mode 120000 index a6bf1e36be1..00000000000 --- a/_images/sphx_glr_pyplot_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_004.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_004_2_0x.png b/_images/sphx_glr_pyplot_004_2_0x.png deleted file mode 120000 index c774a77d01e..00000000000 --- a/_images/sphx_glr_pyplot_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_005.png b/_images/sphx_glr_pyplot_005.png deleted file mode 120000 index a6436934f20..00000000000 --- a/_images/sphx_glr_pyplot_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_005.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_005_2_0x.png b/_images/sphx_glr_pyplot_005_2_0x.png deleted file mode 120000 index 3ed2a1c6ecc..00000000000 --- a/_images/sphx_glr_pyplot_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_006.png b/_images/sphx_glr_pyplot_006.png deleted file mode 120000 index 34ebe524b71..00000000000 --- a/_images/sphx_glr_pyplot_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_006.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_006_2_0x.png b/_images/sphx_glr_pyplot_006_2_0x.png deleted file mode 120000 index f8eb6c4879a..00000000000 --- a/_images/sphx_glr_pyplot_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_007.png b/_images/sphx_glr_pyplot_007.png deleted file mode 120000 index cf78b5aa308..00000000000 --- a/_images/sphx_glr_pyplot_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_007.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_007_2_0x.png b/_images/sphx_glr_pyplot_007_2_0x.png deleted file mode 120000 index 4d6b9a0caa6..00000000000 --- a/_images/sphx_glr_pyplot_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_008.png b/_images/sphx_glr_pyplot_008.png deleted file mode 120000 index e8fb4ad1b9f..00000000000 --- a/_images/sphx_glr_pyplot_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_008.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_008_2_0x.png b/_images/sphx_glr_pyplot_008_2_0x.png deleted file mode 120000 index d3f00288a67..00000000000 --- a/_images/sphx_glr_pyplot_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_009.png b/_images/sphx_glr_pyplot_009.png deleted file mode 120000 index 71a3bdaf380..00000000000 --- a/_images/sphx_glr_pyplot_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_009.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_009_2_0x.png b/_images/sphx_glr_pyplot_009_2_0x.png deleted file mode 120000 index 1ac6bc3eb11..00000000000 --- a/_images/sphx_glr_pyplot_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_010.png b/_images/sphx_glr_pyplot_010.png deleted file mode 120000 index fefbea7edaf..00000000000 --- a/_images/sphx_glr_pyplot_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_010.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_010_2_0x.png b/_images/sphx_glr_pyplot_010_2_0x.png deleted file mode 120000 index 4d6022160d6..00000000000 --- a/_images/sphx_glr_pyplot_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_annotate_001.png b/_images/sphx_glr_pyplot_annotate_001.png deleted file mode 120000 index 750b506e6ee..00000000000 --- a/_images/sphx_glr_pyplot_annotate_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_pyplot_annotate_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_annotate_thumb.png b/_images/sphx_glr_pyplot_annotate_thumb.png deleted file mode 120000 index 7d9b30880b1..00000000000 --- a/_images/sphx_glr_pyplot_annotate_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_pyplot_annotate_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_formatstr_001.png b/_images/sphx_glr_pyplot_formatstr_001.png deleted file mode 120000 index d20fc455a06..00000000000 --- a/_images/sphx_glr_pyplot_formatstr_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_formatstr_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_formatstr_001_2_0x.png b/_images/sphx_glr_pyplot_formatstr_001_2_0x.png deleted file mode 120000 index 56aa78cedfb..00000000000 --- a/_images/sphx_glr_pyplot_formatstr_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_formatstr_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_formatstr_thumb.png b/_images/sphx_glr_pyplot_formatstr_thumb.png deleted file mode 120000 index 64c570608f3..00000000000 --- a/_images/sphx_glr_pyplot_formatstr_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_formatstr_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_mathtext_001.png b/_images/sphx_glr_pyplot_mathtext_001.png deleted file mode 120000 index 5fd3f935bde..00000000000 --- a/_images/sphx_glr_pyplot_mathtext_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_mathtext_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_mathtext_0011.png b/_images/sphx_glr_pyplot_mathtext_0011.png deleted file mode 120000 index ea4ab2f47e5..00000000000 --- a/_images/sphx_glr_pyplot_mathtext_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_pyplot_mathtext_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_mathtext_001_2_0x.png b/_images/sphx_glr_pyplot_mathtext_001_2_0x.png deleted file mode 120000 index 1323612e7ea..00000000000 --- a/_images/sphx_glr_pyplot_mathtext_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_mathtext_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_mathtext_thumb.png b/_images/sphx_glr_pyplot_mathtext_thumb.png deleted file mode 120000 index 0194fe1ff5e..00000000000 --- a/_images/sphx_glr_pyplot_mathtext_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_mathtext_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_scales_001.png b/_images/sphx_glr_pyplot_scales_001.png deleted file mode 120000 index fb8c2407109..00000000000 --- a/_images/sphx_glr_pyplot_scales_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_pyplot_scales_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_scales_thumb.png b/_images/sphx_glr_pyplot_scales_thumb.png deleted file mode 120000 index d09e400a1cd..00000000000 --- a/_images/sphx_glr_pyplot_scales_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_pyplot_scales_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_simple_001.png b/_images/sphx_glr_pyplot_simple_001.png deleted file mode 120000 index af5000b6b75..00000000000 --- a/_images/sphx_glr_pyplot_simple_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_simple_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_simple_001_2_0x.png b/_images/sphx_glr_pyplot_simple_001_2_0x.png deleted file mode 120000 index ad6782aa2b7..00000000000 --- a/_images/sphx_glr_pyplot_simple_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_simple_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_simple_thumb.png b/_images/sphx_glr_pyplot_simple_thumb.png deleted file mode 120000 index 5ef3e040aee..00000000000 --- a/_images/sphx_glr_pyplot_simple_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_simple_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_text_001.png b/_images/sphx_glr_pyplot_text_001.png deleted file mode 120000 index e56ea2521e9..00000000000 --- a/_images/sphx_glr_pyplot_text_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_text_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_text_001_2_0x.png b/_images/sphx_glr_pyplot_text_001_2_0x.png deleted file mode 120000 index eea8b96ef70..00000000000 --- a/_images/sphx_glr_pyplot_text_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_text_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_text_thumb.png b/_images/sphx_glr_pyplot_text_thumb.png deleted file mode 120000 index ebecd410f66..00000000000 --- a/_images/sphx_glr_pyplot_text_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_text_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_three_001.png b/_images/sphx_glr_pyplot_three_001.png deleted file mode 120000 index 8a23030fff6..00000000000 --- a/_images/sphx_glr_pyplot_three_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_three_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_three_001_2_0x.png b/_images/sphx_glr_pyplot_three_001_2_0x.png deleted file mode 120000 index d99e2bb28c7..00000000000 --- a/_images/sphx_glr_pyplot_three_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_three_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_three_thumb.png b/_images/sphx_glr_pyplot_three_thumb.png deleted file mode 120000 index f398fad398c..00000000000 --- a/_images/sphx_glr_pyplot_three_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_three_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_thumb.png b/_images/sphx_glr_pyplot_thumb.png deleted file mode 120000 index af1510fef76..00000000000 --- a/_images/sphx_glr_pyplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_two_subplots_001.png b/_images/sphx_glr_pyplot_two_subplots_001.png deleted file mode 120000 index bd65c85654d..00000000000 --- a/_images/sphx_glr_pyplot_two_subplots_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_two_subplots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_two_subplots_001_2_0x.png b/_images/sphx_glr_pyplot_two_subplots_001_2_0x.png deleted file mode 120000 index a37333b74bd..00000000000 --- a/_images/sphx_glr_pyplot_two_subplots_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_two_subplots_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pyplot_two_subplots_thumb.png b/_images/sphx_glr_pyplot_two_subplots_thumb.png deleted file mode 120000 index b81807f055d..00000000000 --- a/_images/sphx_glr_pyplot_two_subplots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pyplot_two_subplots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_pythonic_matplotlib_001.png b/_images/sphx_glr_pythonic_matplotlib_001.png deleted file mode 120000 index 9815537bbf5..00000000000 --- a/_images/sphx_glr_pythonic_matplotlib_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pythonic_matplotlib_001.png \ No newline at end of file diff --git a/_images/sphx_glr_pythonic_matplotlib_001_2_0x.png b/_images/sphx_glr_pythonic_matplotlib_001_2_0x.png deleted file mode 120000 index c0d414f46fc..00000000000 --- a/_images/sphx_glr_pythonic_matplotlib_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pythonic_matplotlib_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_pythonic_matplotlib_thumb.png b/_images/sphx_glr_pythonic_matplotlib_thumb.png deleted file mode 120000 index 19e62d86e1c..00000000000 --- a/_images/sphx_glr_pythonic_matplotlib_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_pythonic_matplotlib_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_quad_bezier_001.png b/_images/sphx_glr_quad_bezier_001.png deleted file mode 120000 index 981102d7660..00000000000 --- a/_images/sphx_glr_quad_bezier_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quad_bezier_001.png \ No newline at end of file diff --git a/_images/sphx_glr_quad_bezier_001_2_0x.png b/_images/sphx_glr_quad_bezier_001_2_0x.png deleted file mode 120000 index 99ad9639eae..00000000000 --- a/_images/sphx_glr_quad_bezier_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quad_bezier_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quad_bezier_thumb.png b/_images/sphx_glr_quad_bezier_thumb.png deleted file mode 120000 index e5ff7443b2e..00000000000 --- a/_images/sphx_glr_quad_bezier_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quad_bezier_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_quadmesh_demo_001.png b/_images/sphx_glr_quadmesh_demo_001.png deleted file mode 120000 index 5473726c391..00000000000 --- a/_images/sphx_glr_quadmesh_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quadmesh_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_quadmesh_demo_001_2_0x.png b/_images/sphx_glr_quadmesh_demo_001_2_0x.png deleted file mode 120000 index 3c4ea214b2b..00000000000 --- a/_images/sphx_glr_quadmesh_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quadmesh_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quadmesh_demo_thumb.png b/_images/sphx_glr_quadmesh_demo_thumb.png deleted file mode 120000 index 1ba4957b82e..00000000000 --- a/_images/sphx_glr_quadmesh_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quadmesh_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver3d_001.png b/_images/sphx_glr_quiver3d_001.png deleted file mode 120000 index e082d23834a..00000000000 --- a/_images/sphx_glr_quiver3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver3d_0011.png b/_images/sphx_glr_quiver3d_0011.png deleted file mode 120000 index 193cd62e186..00000000000 --- a/_images/sphx_glr_quiver3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_quiver3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver3d_0012.png b/_images/sphx_glr_quiver3d_0012.png deleted file mode 120000 index e8cfffc97ca..00000000000 --- a/_images/sphx_glr_quiver3d_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_quiver3d_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver3d_001_2_0x.png b/_images/sphx_glr_quiver3d_001_2_0x.png deleted file mode 120000 index f80723d53dd..00000000000 --- a/_images/sphx_glr_quiver3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver3d_thumb.png b/_images/sphx_glr_quiver3d_thumb.png deleted file mode 120000 index ba4148c1883..00000000000 --- a/_images/sphx_glr_quiver3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_001.png b/_images/sphx_glr_quiver_001.png deleted file mode 120000 index a94c46e18ca..00000000000 --- a/_images/sphx_glr_quiver_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_001.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_001_2_0x.png b/_images/sphx_glr_quiver_001_2_0x.png deleted file mode 120000 index 83228a94f92..00000000000 --- a/_images/sphx_glr_quiver_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_demo_001.png b/_images/sphx_glr_quiver_demo_001.png deleted file mode 120000 index 4d1fd22eedb..00000000000 --- a/_images/sphx_glr_quiver_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_demo_001_2_0x.png b/_images/sphx_glr_quiver_demo_001_2_0x.png deleted file mode 120000 index 9d3bd0fa0d3..00000000000 --- a/_images/sphx_glr_quiver_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_demo_002.png b/_images/sphx_glr_quiver_demo_002.png deleted file mode 120000 index 32c92e76a51..00000000000 --- a/_images/sphx_glr_quiver_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_demo_002_2_0x.png b/_images/sphx_glr_quiver_demo_002_2_0x.png deleted file mode 120000 index 1228e356e10..00000000000 --- a/_images/sphx_glr_quiver_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_demo_003.png b/_images/sphx_glr_quiver_demo_003.png deleted file mode 120000 index 5dbb6c33a13..00000000000 --- a/_images/sphx_glr_quiver_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_demo_003_2_0x.png b/_images/sphx_glr_quiver_demo_003_2_0x.png deleted file mode 120000 index 48a437bfd19..00000000000 --- a/_images/sphx_glr_quiver_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_demo_thumb.png b/_images/sphx_glr_quiver_demo_thumb.png deleted file mode 120000 index 5ce5d13193a..00000000000 --- a/_images/sphx_glr_quiver_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_simple_demo_001.png b/_images/sphx_glr_quiver_simple_demo_001.png deleted file mode 120000 index 90781edd97f..00000000000 --- a/_images/sphx_glr_quiver_simple_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_simple_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_simple_demo_001_2_0x.png b/_images/sphx_glr_quiver_simple_demo_001_2_0x.png deleted file mode 120000 index d2313fbf7fe..00000000000 --- a/_images/sphx_glr_quiver_simple_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_simple_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_simple_demo_thumb.png b/_images/sphx_glr_quiver_simple_demo_thumb.png deleted file mode 120000 index 1c0a0748218..00000000000 --- a/_images/sphx_glr_quiver_simple_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_simple_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_quiver_thumb.png b/_images/sphx_glr_quiver_thumb.png deleted file mode 120000 index 438a7f40a6b..00000000000 --- a/_images/sphx_glr_quiver_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_quiver_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_radar_chart_001.png b/_images/sphx_glr_radar_chart_001.png deleted file mode 120000 index efa281e7e50..00000000000 --- a/_images/sphx_glr_radar_chart_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radar_chart_001.png \ No newline at end of file diff --git a/_images/sphx_glr_radar_chart_001_2_0x.png b/_images/sphx_glr_radar_chart_001_2_0x.png deleted file mode 120000 index 7100648df6f..00000000000 --- a/_images/sphx_glr_radar_chart_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radar_chart_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_radar_chart_thumb.png b/_images/sphx_glr_radar_chart_thumb.png deleted file mode 120000 index 4e853e7255d..00000000000 --- a/_images/sphx_glr_radar_chart_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radar_chart_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_radian_demo_001.png b/_images/sphx_glr_radian_demo_001.png deleted file mode 120000 index 801ceab3499..00000000000 --- a/_images/sphx_glr_radian_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radian_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_radian_demo_001_2_0x.png b/_images/sphx_glr_radian_demo_001_2_0x.png deleted file mode 120000 index 7ed015c3aa4..00000000000 --- a/_images/sphx_glr_radian_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radian_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_radian_demo_thumb.png b/_images/sphx_glr_radian_demo_thumb.png deleted file mode 120000 index 19f53e9587a..00000000000 --- a/_images/sphx_glr_radian_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radian_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_radio_buttons_001.png b/_images/sphx_glr_radio_buttons_001.png deleted file mode 120000 index f377169ffb4..00000000000 --- a/_images/sphx_glr_radio_buttons_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radio_buttons_001.png \ No newline at end of file diff --git a/_images/sphx_glr_radio_buttons_001_2_0x.png b/_images/sphx_glr_radio_buttons_001_2_0x.png deleted file mode 120000 index f504e65dd32..00000000000 --- a/_images/sphx_glr_radio_buttons_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radio_buttons_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_radio_buttons_thumb.png b/_images/sphx_glr_radio_buttons_thumb.png deleted file mode 120000 index 747e7825723..00000000000 --- a/_images/sphx_glr_radio_buttons_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_radio_buttons_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rain_001.png b/_images/sphx_glr_rain_001.png deleted file mode 120000 index 4c83f1168ce..00000000000 --- a/_images/sphx_glr_rain_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_rain_001.png \ No newline at end of file diff --git a/_images/sphx_glr_rain_thumb.gif b/_images/sphx_glr_rain_thumb.gif deleted file mode 120000 index 82b48b0b5df..00000000000 --- a/_images/sphx_glr_rain_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rain_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_rain_thumb.png b/_images/sphx_glr_rain_thumb.png deleted file mode 120000 index e01073a2e72..00000000000 --- a/_images/sphx_glr_rain_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_rain_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rainbow_text_001.png b/_images/sphx_glr_rainbow_text_001.png deleted file mode 120000 index fe840823a9f..00000000000 --- a/_images/sphx_glr_rainbow_text_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rainbow_text_001.png \ No newline at end of file diff --git a/_images/sphx_glr_rainbow_text_001_2_0x.png b/_images/sphx_glr_rainbow_text_001_2_0x.png deleted file mode 120000 index fcb8737ede2..00000000000 --- a/_images/sphx_glr_rainbow_text_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rainbow_text_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_rainbow_text_thumb.png b/_images/sphx_glr_rainbow_text_thumb.png deleted file mode 120000 index 5b5c2fd0879..00000000000 --- a/_images/sphx_glr_rainbow_text_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rainbow_text_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_random_data_001.png b/_images/sphx_glr_random_data_001.png deleted file mode 120000 index 69e37bec0c9..00000000000 --- a/_images/sphx_glr_random_data_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_random_data_001.png \ No newline at end of file diff --git a/_images/sphx_glr_random_data_thumb.png b/_images/sphx_glr_random_data_thumb.png deleted file mode 120000 index 5cc52e10cf2..00000000000 --- a/_images/sphx_glr_random_data_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_random_data_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_random_walk_001.png b/_images/sphx_glr_random_walk_001.png deleted file mode 120000 index bebe4226fc2..00000000000 --- a/_images/sphx_glr_random_walk_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_random_walk_001.png \ No newline at end of file diff --git a/_images/sphx_glr_random_walk_thumb.gif b/_images/sphx_glr_random_walk_thumb.gif deleted file mode 120000 index f496f2039c0..00000000000 --- a/_images/sphx_glr_random_walk_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_random_walk_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_random_walk_thumb.png b/_images/sphx_glr_random_walk_thumb.png deleted file mode 120000 index 87c3c5e0ad1..00000000000 --- a/_images/sphx_glr_random_walk_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_random_walk_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_range_slider_001.png b/_images/sphx_glr_range_slider_001.png deleted file mode 120000 index e39340379f8..00000000000 --- a/_images/sphx_glr_range_slider_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_range_slider_001.png \ No newline at end of file diff --git a/_images/sphx_glr_range_slider_001_2_0x.png b/_images/sphx_glr_range_slider_001_2_0x.png deleted file mode 120000 index ca06b51b32c..00000000000 --- a/_images/sphx_glr_range_slider_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_range_slider_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_range_slider_thumb.png b/_images/sphx_glr_range_slider_thumb.png deleted file mode 120000 index 3f198e86cd9..00000000000 --- a/_images/sphx_glr_range_slider_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_range_slider_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rasterization_demo_001.png b/_images/sphx_glr_rasterization_demo_001.png deleted file mode 120000 index 4dbbc7c16f9..00000000000 --- a/_images/sphx_glr_rasterization_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rasterization_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_rasterization_demo_001_2_0x.png b/_images/sphx_glr_rasterization_demo_001_2_0x.png deleted file mode 120000 index e3d3fed592f..00000000000 --- a/_images/sphx_glr_rasterization_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rasterization_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_rasterization_demo_thumb.png b/_images/sphx_glr_rasterization_demo_thumb.png deleted file mode 120000 index 2f713773de6..00000000000 --- a/_images/sphx_glr_rasterization_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rasterization_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rc_traits_sgskip_thumb.png b/_images/sphx_glr_rc_traits_sgskip_thumb.png deleted file mode 120000 index 1b6ce472eb8..00000000000 --- a/_images/sphx_glr_rc_traits_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_rc_traits_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rec_groupby_demo_thumb.png b/_images/sphx_glr_rec_groupby_demo_thumb.png deleted file mode 120000 index ab85da37300..00000000000 --- a/_images/sphx_glr_rec_groupby_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_rec_groupby_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rectangle_selector_001.png b/_images/sphx_glr_rectangle_selector_001.png deleted file mode 120000 index 4981b420458..00000000000 --- a/_images/sphx_glr_rectangle_selector_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rectangle_selector_001.png \ No newline at end of file diff --git a/_images/sphx_glr_rectangle_selector_001_2_0x.png b/_images/sphx_glr_rectangle_selector_001_2_0x.png deleted file mode 120000 index f41d85f4234..00000000000 --- a/_images/sphx_glr_rectangle_selector_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rectangle_selector_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_rectangle_selector_thumb.png b/_images/sphx_glr_rectangle_selector_thumb.png deleted file mode 120000 index 44a466210b1..00000000000 --- a/_images/sphx_glr_rectangle_selector_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rectangle_selector_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_resample_001.png b/_images/sphx_glr_resample_001.png deleted file mode 120000 index e01f7aa7eae..00000000000 --- a/_images/sphx_glr_resample_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_resample_001.png \ No newline at end of file diff --git a/_images/sphx_glr_resample_001_2_0x.png b/_images/sphx_glr_resample_001_2_0x.png deleted file mode 120000 index 31bedf448ad..00000000000 --- a/_images/sphx_glr_resample_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_resample_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_resample_thumb.png b/_images/sphx_glr_resample_thumb.png deleted file mode 120000 index 2454968ffdd..00000000000 --- a/_images/sphx_glr_resample_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_resample_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rotate_axes3d_001.png b/_images/sphx_glr_rotate_axes3d_001.png deleted file mode 120000 index 793b7dbb4d2..00000000000 --- a/_images/sphx_glr_rotate_axes3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_rotate_axes3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_rotate_axes3d_sgskip_thumb.png b/_images/sphx_glr_rotate_axes3d_sgskip_thumb.png deleted file mode 120000 index a89c03599bc..00000000000 --- a/_images/sphx_glr_rotate_axes3d_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_rotate_axes3d_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_rotate_axes3d_thumb.png b/_images/sphx_glr_rotate_axes3d_thumb.png deleted file mode 120000 index d3dae8651c2..00000000000 --- a/_images/sphx_glr_rotate_axes3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_rotate_axes3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_sample_plots_001.png b/_images/sphx_glr_sample_plots_001.png deleted file mode 120000 index 6f184b27ac4..00000000000 --- a/_images/sphx_glr_sample_plots_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_sample_plots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_sample_plots_thumb.png b/_images/sphx_glr_sample_plots_thumb.png deleted file mode 120000 index 6cd4006b226..00000000000 --- a/_images/sphx_glr_sample_plots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_sample_plots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_basics_001.png b/_images/sphx_glr_sankey_basics_001.png deleted file mode 120000 index a26a6a6e541..00000000000 --- a/_images/sphx_glr_sankey_basics_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_basics_001.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_basics_001_2_0x.png b/_images/sphx_glr_sankey_basics_001_2_0x.png deleted file mode 120000 index cecd63a998e..00000000000 --- a/_images/sphx_glr_sankey_basics_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_basics_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_basics_002.png b/_images/sphx_glr_sankey_basics_002.png deleted file mode 120000 index 094e369b401..00000000000 --- a/_images/sphx_glr_sankey_basics_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_basics_002.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_basics_002_2_0x.png b/_images/sphx_glr_sankey_basics_002_2_0x.png deleted file mode 120000 index e40031929ba..00000000000 --- a/_images/sphx_glr_sankey_basics_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_basics_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_basics_003.png b/_images/sphx_glr_sankey_basics_003.png deleted file mode 120000 index 3b49ddce093..00000000000 --- a/_images/sphx_glr_sankey_basics_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_basics_003.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_basics_003_2_0x.png b/_images/sphx_glr_sankey_basics_003_2_0x.png deleted file mode 120000 index afa53d642b9..00000000000 --- a/_images/sphx_glr_sankey_basics_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_basics_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_basics_thumb.png b/_images/sphx_glr_sankey_basics_thumb.png deleted file mode 120000 index 3f51a256b20..00000000000 --- a/_images/sphx_glr_sankey_basics_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_basics_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_links_001.png b/_images/sphx_glr_sankey_links_001.png deleted file mode 120000 index 8760bcaa663..00000000000 --- a/_images/sphx_glr_sankey_links_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_links_001.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_links_001_2_0x.png b/_images/sphx_glr_sankey_links_001_2_0x.png deleted file mode 120000 index b50e9f6fa5d..00000000000 --- a/_images/sphx_glr_sankey_links_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_links_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_links_thumb.png b/_images/sphx_glr_sankey_links_thumb.png deleted file mode 120000 index 4dae2181777..00000000000 --- a/_images/sphx_glr_sankey_links_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_links_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_rankine_001.png b/_images/sphx_glr_sankey_rankine_001.png deleted file mode 120000 index f74c1dec30d..00000000000 --- a/_images/sphx_glr_sankey_rankine_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_rankine_001.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_rankine_0011.png b/_images/sphx_glr_sankey_rankine_0011.png deleted file mode 120000 index 1d37c857a73..00000000000 --- a/_images/sphx_glr_sankey_rankine_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_sankey_rankine_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_rankine_001_2_0x.png b/_images/sphx_glr_sankey_rankine_001_2_0x.png deleted file mode 120000 index 21c703bc037..00000000000 --- a/_images/sphx_glr_sankey_rankine_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_rankine_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_sankey_rankine_thumb.png b/_images/sphx_glr_sankey_rankine_thumb.png deleted file mode 120000 index 5751bd94361..00000000000 --- a/_images/sphx_glr_sankey_rankine_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_sankey_rankine_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scalarformatter_001.png b/_images/sphx_glr_scalarformatter_001.png deleted file mode 120000 index 0b25d4ffbb8..00000000000 --- a/_images/sphx_glr_scalarformatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scalarformatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scalarformatter_001_2_0x.png b/_images/sphx_glr_scalarformatter_001_2_0x.png deleted file mode 120000 index aaa7e88b39f..00000000000 --- a/_images/sphx_glr_scalarformatter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scalarformatter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scalarformatter_002.png b/_images/sphx_glr_scalarformatter_002.png deleted file mode 120000 index ef94eaa51d4..00000000000 --- a/_images/sphx_glr_scalarformatter_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scalarformatter_002.png \ No newline at end of file diff --git a/_images/sphx_glr_scalarformatter_002_2_0x.png b/_images/sphx_glr_scalarformatter_002_2_0x.png deleted file mode 120000 index 9cf86e98e84..00000000000 --- a/_images/sphx_glr_scalarformatter_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scalarformatter_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scalarformatter_003.png b/_images/sphx_glr_scalarformatter_003.png deleted file mode 120000 index 51e1e8b5623..00000000000 --- a/_images/sphx_glr_scalarformatter_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scalarformatter_003.png \ No newline at end of file diff --git a/_images/sphx_glr_scalarformatter_003_2_0x.png b/_images/sphx_glr_scalarformatter_003_2_0x.png deleted file mode 120000 index 3cb9f707187..00000000000 --- a/_images/sphx_glr_scalarformatter_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scalarformatter_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scalarformatter_thumb.png b/_images/sphx_glr_scalarformatter_thumb.png deleted file mode 120000 index 46b7cd2867c..00000000000 --- a/_images/sphx_glr_scalarformatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scalarformatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scales_001.png b/_images/sphx_glr_scales_001.png deleted file mode 120000 index 2611ba9ce66..00000000000 --- a/_images/sphx_glr_scales_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scales_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scales_001_2_0x.png b/_images/sphx_glr_scales_001_2_0x.png deleted file mode 120000 index 7a5964707b1..00000000000 --- a/_images/sphx_glr_scales_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scales_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scales_thumb.png b/_images/sphx_glr_scales_thumb.png deleted file mode 120000 index 44dc29a91a0..00000000000 --- a/_images/sphx_glr_scales_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scales_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter3d_001.png b/_images/sphx_glr_scatter3d_001.png deleted file mode 120000 index 040038df92a..00000000000 --- a/_images/sphx_glr_scatter3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter3d_0011.png b/_images/sphx_glr_scatter3d_0011.png deleted file mode 120000 index 6f5637e39d5..00000000000 --- a/_images/sphx_glr_scatter3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_scatter3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter3d_001_2_0x.png b/_images/sphx_glr_scatter3d_001_2_0x.png deleted file mode 120000 index 35a66d98001..00000000000 --- a/_images/sphx_glr_scatter3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter3d_thumb.png b/_images/sphx_glr_scatter3d_thumb.png deleted file mode 120000 index 21ef307d3b4..00000000000 --- a/_images/sphx_glr_scatter3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_001.png b/_images/sphx_glr_scatter_001.png deleted file mode 120000 index 9f5075461c1..00000000000 --- a/_images/sphx_glr_scatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_001_2_0x.png b/_images/sphx_glr_scatter_001_2_0x.png deleted file mode 120000 index eba352e50da..00000000000 --- a/_images/sphx_glr_scatter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_custom_symbol_001.png b/_images/sphx_glr_scatter_custom_symbol_001.png deleted file mode 120000 index bf875d4bc2a..00000000000 --- a/_images/sphx_glr_scatter_custom_symbol_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_custom_symbol_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_custom_symbol_001_2_0x.png b/_images/sphx_glr_scatter_custom_symbol_001_2_0x.png deleted file mode 120000 index 1ba5100b6e6..00000000000 --- a/_images/sphx_glr_scatter_custom_symbol_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_custom_symbol_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_custom_symbol_thumb.png b/_images/sphx_glr_scatter_custom_symbol_thumb.png deleted file mode 120000 index ae703b0143b..00000000000 --- a/_images/sphx_glr_scatter_custom_symbol_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_custom_symbol_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_demo2_001.png b/_images/sphx_glr_scatter_demo2_001.png deleted file mode 120000 index c6ad381b0b2..00000000000 --- a/_images/sphx_glr_scatter_demo2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_demo2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_demo2_0011.png b/_images/sphx_glr_scatter_demo2_0011.png deleted file mode 120000 index 0bf1a816f38..00000000000 --- a/_images/sphx_glr_scatter_demo2_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_scatter_demo2_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_demo2_001_2_0x.png b/_images/sphx_glr_scatter_demo2_001_2_0x.png deleted file mode 120000 index 71a693703f1..00000000000 --- a/_images/sphx_glr_scatter_demo2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_demo2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_demo2_thumb.png b/_images/sphx_glr_scatter_demo2_thumb.png deleted file mode 120000 index 573eabb398a..00000000000 --- a/_images/sphx_glr_scatter_demo2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_demo2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_001.png b/_images/sphx_glr_scatter_hist_001.png deleted file mode 120000 index c684a5fd4f3..00000000000 --- a/_images/sphx_glr_scatter_hist_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_0011.png b/_images/sphx_glr_scatter_hist_0011.png deleted file mode 120000 index 995c6ee68a7..00000000000 --- a/_images/sphx_glr_scatter_hist_0011.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_scatter_hist_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_0012.png b/_images/sphx_glr_scatter_hist_0012.png deleted file mode 120000 index 5d35c958777..00000000000 --- a/_images/sphx_glr_scatter_hist_0012.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_scatter_hist_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_001_2_0x.png b/_images/sphx_glr_scatter_hist_001_2_0x.png deleted file mode 120000 index 15c09ee50c6..00000000000 --- a/_images/sphx_glr_scatter_hist_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_002.png b/_images/sphx_glr_scatter_hist_002.png deleted file mode 120000 index 00164be71d4..00000000000 --- a/_images/sphx_glr_scatter_hist_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_002.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_002_2_0x.png b/_images/sphx_glr_scatter_hist_002_2_0x.png deleted file mode 120000 index eb4baf62374..00000000000 --- a/_images/sphx_glr_scatter_hist_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_locatable_axes_001.png b/_images/sphx_glr_scatter_hist_locatable_axes_001.png deleted file mode 120000 index 31f8e3462ea..00000000000 --- a/_images/sphx_glr_scatter_hist_locatable_axes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_locatable_axes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_locatable_axes_0011.png b/_images/sphx_glr_scatter_hist_locatable_axes_0011.png deleted file mode 120000 index 70b8f069697..00000000000 --- a/_images/sphx_glr_scatter_hist_locatable_axes_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_scatter_hist_locatable_axes_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_locatable_axes_001_2_0x.png b/_images/sphx_glr_scatter_hist_locatable_axes_001_2_0x.png deleted file mode 120000 index b749ff7fda6..00000000000 --- a/_images/sphx_glr_scatter_hist_locatable_axes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_locatable_axes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_locatable_axes_thumb.png b/_images/sphx_glr_scatter_hist_locatable_axes_thumb.png deleted file mode 120000 index 4d2d7ba571d..00000000000 --- a/_images/sphx_glr_scatter_hist_locatable_axes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_locatable_axes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_thumb.png b/_images/sphx_glr_scatter_hist_thumb.png deleted file mode 120000 index b54be0c25ae..00000000000 --- a/_images/sphx_glr_scatter_hist_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_hist_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_hist_thumb1.png b/_images/sphx_glr_scatter_hist_thumb1.png deleted file mode 120000 index 1e21cba0fc9..00000000000 --- a/_images/sphx_glr_scatter_hist_thumb1.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_scatter_hist_thumb1.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_masked_001.png b/_images/sphx_glr_scatter_masked_001.png deleted file mode 120000 index cbf12735494..00000000000 --- a/_images/sphx_glr_scatter_masked_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_masked_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_masked_001_2_0x.png b/_images/sphx_glr_scatter_masked_001_2_0x.png deleted file mode 120000 index dcac3fd1bea..00000000000 --- a/_images/sphx_glr_scatter_masked_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_masked_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_masked_thumb.png b/_images/sphx_glr_scatter_masked_thumb.png deleted file mode 120000 index d030dd4ca90..00000000000 --- a/_images/sphx_glr_scatter_masked_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_masked_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_piecharts_001.png b/_images/sphx_glr_scatter_piecharts_001.png deleted file mode 120000 index a6ea7e4541f..00000000000 --- a/_images/sphx_glr_scatter_piecharts_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_scatter_piecharts_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_piecharts_001_2_0x.png b/_images/sphx_glr_scatter_piecharts_001_2_0x.png deleted file mode 120000 index 5a665ac9486..00000000000 --- a/_images/sphx_glr_scatter_piecharts_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_scatter_piecharts_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_piecharts_thumb.png b/_images/sphx_glr_scatter_piecharts_thumb.png deleted file mode 120000 index 8c11ced58ce..00000000000 --- a/_images/sphx_glr_scatter_piecharts_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_scatter_piecharts_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_plot_001.png b/_images/sphx_glr_scatter_plot_001.png deleted file mode 120000 index 85d7f120423..00000000000 --- a/_images/sphx_glr_scatter_plot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_plot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_plot_001_2_0x.png b/_images/sphx_glr_scatter_plot_001_2_0x.png deleted file mode 120000 index 3f2b8ef423a..00000000000 --- a/_images/sphx_glr_scatter_plot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_plot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_plot_thumb.png b/_images/sphx_glr_scatter_plot_thumb.png deleted file mode 120000 index 612ee30411d..00000000000 --- a/_images/sphx_glr_scatter_plot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_plot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_star_poly_001.png b/_images/sphx_glr_scatter_star_poly_001.png deleted file mode 120000 index e0efdf27573..00000000000 --- a/_images/sphx_glr_scatter_star_poly_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_star_poly_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_star_poly_001_2_0x.png b/_images/sphx_glr_scatter_star_poly_001_2_0x.png deleted file mode 120000 index 4a1d3172e69..00000000000 --- a/_images/sphx_glr_scatter_star_poly_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_star_poly_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_star_poly_thumb.png b/_images/sphx_glr_scatter_star_poly_thumb.png deleted file mode 120000 index 0bcedcb92dd..00000000000 --- a/_images/sphx_glr_scatter_star_poly_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_star_poly_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_symbol_001.png b/_images/sphx_glr_scatter_symbol_001.png deleted file mode 120000 index e8e128d5bd5..00000000000 --- a/_images/sphx_glr_scatter_symbol_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_scatter_symbol_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_symbol_001_2_0x.png b/_images/sphx_glr_scatter_symbol_001_2_0x.png deleted file mode 120000 index c8ee2fd384a..00000000000 --- a/_images/sphx_glr_scatter_symbol_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_scatter_symbol_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_symbol_thumb.png b/_images/sphx_glr_scatter_symbol_thumb.png deleted file mode 120000 index 5800ea98018..00000000000 --- a/_images/sphx_glr_scatter_symbol_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_scatter_symbol_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_thumb.png b/_images/sphx_glr_scatter_thumb.png deleted file mode 120000 index 8dd00a49346..00000000000 --- a/_images/sphx_glr_scatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_with_legend_001.png b/_images/sphx_glr_scatter_with_legend_001.png deleted file mode 120000 index c4183e0a5a6..00000000000 --- a/_images/sphx_glr_scatter_with_legend_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_with_legend_001.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_with_legend_001_2_0x.png b/_images/sphx_glr_scatter_with_legend_001_2_0x.png deleted file mode 120000 index f2893d3eaea..00000000000 --- a/_images/sphx_glr_scatter_with_legend_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_with_legend_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_with_legend_002.png b/_images/sphx_glr_scatter_with_legend_002.png deleted file mode 120000 index 24840de7a67..00000000000 --- a/_images/sphx_glr_scatter_with_legend_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_with_legend_002.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_with_legend_002_2_0x.png b/_images/sphx_glr_scatter_with_legend_002_2_0x.png deleted file mode 120000 index 27af7d97f32..00000000000 --- a/_images/sphx_glr_scatter_with_legend_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_with_legend_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_with_legend_003.png b/_images/sphx_glr_scatter_with_legend_003.png deleted file mode 120000 index 0b4b6e0a5b1..00000000000 --- a/_images/sphx_glr_scatter_with_legend_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_with_legend_003.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_with_legend_003_2_0x.png b/_images/sphx_glr_scatter_with_legend_003_2_0x.png deleted file mode 120000 index c578a06be92..00000000000 --- a/_images/sphx_glr_scatter_with_legend_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_with_legend_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_scatter_with_legend_thumb.png b/_images/sphx_glr_scatter_with_legend_thumb.png deleted file mode 120000 index a22e33957f9..00000000000 --- a/_images/sphx_glr_scatter_with_legend_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_scatter_with_legend_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_001.png b/_images/sphx_glr_secondary_axis_001.png deleted file mode 120000 index 75e6332948a..00000000000 --- a/_images/sphx_glr_secondary_axis_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_001.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_001_2_0x.png b/_images/sphx_glr_secondary_axis_001_2_0x.png deleted file mode 120000 index 0477b778efa..00000000000 --- a/_images/sphx_glr_secondary_axis_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_002.png b/_images/sphx_glr_secondary_axis_002.png deleted file mode 120000 index 9f30dd303b9..00000000000 --- a/_images/sphx_glr_secondary_axis_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_002.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_002_2_0x.png b/_images/sphx_glr_secondary_axis_002_2_0x.png deleted file mode 120000 index 2d709a053d3..00000000000 --- a/_images/sphx_glr_secondary_axis_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_003.png b/_images/sphx_glr_secondary_axis_003.png deleted file mode 120000 index bfdbd3f167f..00000000000 --- a/_images/sphx_glr_secondary_axis_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_003.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_003_2_0x.png b/_images/sphx_glr_secondary_axis_003_2_0x.png deleted file mode 120000 index e26f190b532..00000000000 --- a/_images/sphx_glr_secondary_axis_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_004.png b/_images/sphx_glr_secondary_axis_004.png deleted file mode 120000 index 846716c9923..00000000000 --- a/_images/sphx_glr_secondary_axis_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_004.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_004_2_0x.png b/_images/sphx_glr_secondary_axis_004_2_0x.png deleted file mode 120000 index 2bd0867c12f..00000000000 --- a/_images/sphx_glr_secondary_axis_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_secondary_axis_thumb.png b/_images/sphx_glr_secondary_axis_thumb.png deleted file mode 120000 index 4c0b75de599..00000000000 --- a/_images/sphx_glr_secondary_axis_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_secondary_axis_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_set_and_get_001.png b/_images/sphx_glr_set_and_get_001.png deleted file mode 120000 index d555d3724bc..00000000000 --- a/_images/sphx_glr_set_and_get_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_set_and_get_001.png \ No newline at end of file diff --git a/_images/sphx_glr_set_and_get_001_2_0x.png b/_images/sphx_glr_set_and_get_001_2_0x.png deleted file mode 120000 index 3ae93931cc7..00000000000 --- a/_images/sphx_glr_set_and_get_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_set_and_get_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_set_and_get_thumb.png b/_images/sphx_glr_set_and_get_thumb.png deleted file mode 120000 index 3bc9f5fbf4d..00000000000 --- a/_images/sphx_glr_set_and_get_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_set_and_get_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_shading_example_001.png b/_images/sphx_glr_shading_example_001.png deleted file mode 120000 index 6ed1d13f03a..00000000000 --- a/_images/sphx_glr_shading_example_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shading_example_001.png \ No newline at end of file diff --git a/_images/sphx_glr_shading_example_001_2_0x.png b/_images/sphx_glr_shading_example_001_2_0x.png deleted file mode 120000 index a7eecf84e7c..00000000000 --- a/_images/sphx_glr_shading_example_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shading_example_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_shading_example_002.png b/_images/sphx_glr_shading_example_002.png deleted file mode 120000 index 8a3a6420732..00000000000 --- a/_images/sphx_glr_shading_example_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shading_example_002.png \ No newline at end of file diff --git a/_images/sphx_glr_shading_example_002_2_0x.png b/_images/sphx_glr_shading_example_002_2_0x.png deleted file mode 120000 index 273000446c2..00000000000 --- a/_images/sphx_glr_shading_example_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shading_example_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_shading_example_thumb.png b/_images/sphx_glr_shading_example_thumb.png deleted file mode 120000 index 09358b045ed..00000000000 --- a/_images/sphx_glr_shading_example_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shading_example_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_share_axis_lims_views_001.png b/_images/sphx_glr_share_axis_lims_views_001.png deleted file mode 120000 index 1b5189a7441..00000000000 --- a/_images/sphx_glr_share_axis_lims_views_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_share_axis_lims_views_001.png \ No newline at end of file diff --git a/_images/sphx_glr_share_axis_lims_views_001_2_0x.png b/_images/sphx_glr_share_axis_lims_views_001_2_0x.png deleted file mode 120000 index 8873f6058dd..00000000000 --- a/_images/sphx_glr_share_axis_lims_views_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_share_axis_lims_views_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_share_axis_lims_views_thumb.png b/_images/sphx_glr_share_axis_lims_views_thumb.png deleted file mode 120000 index 6f985c59e0d..00000000000 --- a/_images/sphx_glr_share_axis_lims_views_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_share_axis_lims_views_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_shared_axis_demo_001.png b/_images/sphx_glr_shared_axis_demo_001.png deleted file mode 120000 index fa48b6e2665..00000000000 --- a/_images/sphx_glr_shared_axis_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shared_axis_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_shared_axis_demo_001_2_0x.png b/_images/sphx_glr_shared_axis_demo_001_2_0x.png deleted file mode 120000 index b3dd4220745..00000000000 --- a/_images/sphx_glr_shared_axis_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shared_axis_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_shared_axis_demo_thumb.png b/_images/sphx_glr_shared_axis_demo_thumb.png deleted file mode 120000 index b9fbfdc7f24..00000000000 --- a/_images/sphx_glr_shared_axis_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_shared_axis_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_3danim_001.png b/_images/sphx_glr_simple_3danim_001.png deleted file mode 120000 index 15cf4ed782f..00000000000 --- a/_images/sphx_glr_simple_3danim_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_simple_3danim_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_3danim_thumb.png b/_images/sphx_glr_simple_3danim_thumb.png deleted file mode 120000 index 08b7b8f2983..00000000000 --- a/_images/sphx_glr_simple_3danim_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_simple_3danim_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_anchored_artists_001.png b/_images/sphx_glr_simple_anchored_artists_001.png deleted file mode 120000 index f78c2bbe510..00000000000 --- a/_images/sphx_glr_simple_anchored_artists_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_anchored_artists_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_anchored_artists_0011.png b/_images/sphx_glr_simple_anchored_artists_0011.png deleted file mode 120000 index 5596f936cf5..00000000000 --- a/_images/sphx_glr_simple_anchored_artists_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_anchored_artists_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_anchored_artists_001_2_0x.png b/_images/sphx_glr_simple_anchored_artists_001_2_0x.png deleted file mode 120000 index 64e9a6948c8..00000000000 --- a/_images/sphx_glr_simple_anchored_artists_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_anchored_artists_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_anchored_artists_thumb.png b/_images/sphx_glr_simple_anchored_artists_thumb.png deleted file mode 120000 index 1c52dbdae1b..00000000000 --- a/_images/sphx_glr_simple_anchored_artists_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_anchored_artists_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_anim_001.png b/_images/sphx_glr_simple_anim_001.png deleted file mode 120000 index 294480f424f..00000000000 --- a/_images/sphx_glr_simple_anim_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_anim_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_anim_thumb.gif b/_images/sphx_glr_simple_anim_thumb.gif deleted file mode 120000 index b0acc4a171b..00000000000 --- a/_images/sphx_glr_simple_anim_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_anim_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_simple_anim_thumb.png b/_images/sphx_glr_simple_anim_thumb.png deleted file mode 120000 index 77587490d6f..00000000000 --- a/_images/sphx_glr_simple_anim_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_anim_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_annotate01_001.png b/_images/sphx_glr_simple_annotate01_001.png deleted file mode 120000 index 224a9af3b19..00000000000 --- a/_images/sphx_glr_simple_annotate01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_annotate01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_annotate01_001_2_0x.png b/_images/sphx_glr_simple_annotate01_001_2_0x.png deleted file mode 120000 index affc0fb4b3e..00000000000 --- a/_images/sphx_glr_simple_annotate01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_annotate01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_annotate01_thumb.png b/_images/sphx_glr_simple_annotate01_thumb.png deleted file mode 120000 index d7e1e60d048..00000000000 --- a/_images/sphx_glr_simple_annotate01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_annotate01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider1_001.png b/_images/sphx_glr_simple_axes_divider1_001.png deleted file mode 120000 index baf158eddcd..00000000000 --- a/_images/sphx_glr_simple_axes_divider1_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider1_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider1_001_2_0x.png b/_images/sphx_glr_simple_axes_divider1_001_2_0x.png deleted file mode 120000 index 49ccb4c85e6..00000000000 --- a/_images/sphx_glr_simple_axes_divider1_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider1_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider1_002.png b/_images/sphx_glr_simple_axes_divider1_002.png deleted file mode 120000 index 0ae3ba41b5c..00000000000 --- a/_images/sphx_glr_simple_axes_divider1_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider1_002.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider1_0021.png b/_images/sphx_glr_simple_axes_divider1_0021.png deleted file mode 120000 index b6df6779d9a..00000000000 --- a/_images/sphx_glr_simple_axes_divider1_0021.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axes_divider1_0021.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider1_002_2_0x.png b/_images/sphx_glr_simple_axes_divider1_002_2_0x.png deleted file mode 120000 index 66d2adcdb01..00000000000 --- a/_images/sphx_glr_simple_axes_divider1_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider1_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider1_thumb.png b/_images/sphx_glr_simple_axes_divider1_thumb.png deleted file mode 120000 index a28325a40b5..00000000000 --- a/_images/sphx_glr_simple_axes_divider1_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider1_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider2_001.png b/_images/sphx_glr_simple_axes_divider2_001.png deleted file mode 120000 index 84f6a01913b..00000000000 --- a/_images/sphx_glr_simple_axes_divider2_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_axes_divider2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider2_0011.png b/_images/sphx_glr_simple_axes_divider2_0011.png deleted file mode 120000 index 0b551ef76b4..00000000000 --- a/_images/sphx_glr_simple_axes_divider2_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_axes_divider2_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider2_thumb.png b/_images/sphx_glr_simple_axes_divider2_thumb.png deleted file mode 120000 index ab43a6dd94e..00000000000 --- a/_images/sphx_glr_simple_axes_divider2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_axes_divider2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider3_001.png b/_images/sphx_glr_simple_axes_divider3_001.png deleted file mode 120000 index 796631c88b3..00000000000 --- a/_images/sphx_glr_simple_axes_divider3_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider3_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider3_0011.png b/_images/sphx_glr_simple_axes_divider3_0011.png deleted file mode 120000 index 69bd76aef84..00000000000 --- a/_images/sphx_glr_simple_axes_divider3_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axes_divider3_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider3_001_2_0x.png b/_images/sphx_glr_simple_axes_divider3_001_2_0x.png deleted file mode 120000 index 981d8aea9b3..00000000000 --- a/_images/sphx_glr_simple_axes_divider3_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider3_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axes_divider3_thumb.png b/_images/sphx_glr_simple_axes_divider3_thumb.png deleted file mode 120000 index 1e9e4eb2e9e..00000000000 --- a/_images/sphx_glr_simple_axes_divider3_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axes_divider3_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid2_001.png b/_images/sphx_glr_simple_axesgrid2_001.png deleted file mode 120000 index a7dabeeb0f8..00000000000 --- a/_images/sphx_glr_simple_axesgrid2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axesgrid2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid2_0011.png b/_images/sphx_glr_simple_axesgrid2_0011.png deleted file mode 120000 index d39c10411e5..00000000000 --- a/_images/sphx_glr_simple_axesgrid2_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axesgrid2_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid2_001_2_0x.png b/_images/sphx_glr_simple_axesgrid2_001_2_0x.png deleted file mode 120000 index d935edff9d7..00000000000 --- a/_images/sphx_glr_simple_axesgrid2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axesgrid2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid2_thumb.png b/_images/sphx_glr_simple_axesgrid2_thumb.png deleted file mode 120000 index 04879bc1b0f..00000000000 --- a/_images/sphx_glr_simple_axesgrid2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axesgrid2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid_001.png b/_images/sphx_glr_simple_axesgrid_001.png deleted file mode 120000 index 78d954795b7..00000000000 --- a/_images/sphx_glr_simple_axesgrid_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axesgrid_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid_0011.png b/_images/sphx_glr_simple_axesgrid_0011.png deleted file mode 120000 index fc7db898c35..00000000000 --- a/_images/sphx_glr_simple_axesgrid_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axesgrid_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid_001_2_0x.png b/_images/sphx_glr_simple_axesgrid_001_2_0x.png deleted file mode 120000 index 5aed231a520..00000000000 --- a/_images/sphx_glr_simple_axesgrid_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axesgrid_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axesgrid_thumb.png b/_images/sphx_glr_simple_axesgrid_thumb.png deleted file mode 120000 index 2e64dc3cab1..00000000000 --- a/_images/sphx_glr_simple_axesgrid_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axesgrid_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction01_001.png b/_images/sphx_glr_simple_axis_direction01_001.png deleted file mode 120000 index 876f28b4997..00000000000 --- a/_images/sphx_glr_simple_axis_direction01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_direction01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction01_0011.png b/_images/sphx_glr_simple_axis_direction01_0011.png deleted file mode 120000 index 612ee7711ff..00000000000 --- a/_images/sphx_glr_simple_axis_direction01_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axis_direction01_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction01_001_2_0x.png b/_images/sphx_glr_simple_axis_direction01_001_2_0x.png deleted file mode 120000 index f17d5116a03..00000000000 --- a/_images/sphx_glr_simple_axis_direction01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_direction01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction01_thumb.png b/_images/sphx_glr_simple_axis_direction01_thumb.png deleted file mode 120000 index cd2297828e6..00000000000 --- a/_images/sphx_glr_simple_axis_direction01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_direction01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction03_001.png b/_images/sphx_glr_simple_axis_direction03_001.png deleted file mode 120000 index 9bd00609a52..00000000000 --- a/_images/sphx_glr_simple_axis_direction03_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_direction03_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction03_0011.png b/_images/sphx_glr_simple_axis_direction03_0011.png deleted file mode 120000 index e0442c894a6..00000000000 --- a/_images/sphx_glr_simple_axis_direction03_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axis_direction03_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction03_001_2_0x.png b/_images/sphx_glr_simple_axis_direction03_001_2_0x.png deleted file mode 120000 index aa25ba6d634..00000000000 --- a/_images/sphx_glr_simple_axis_direction03_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_direction03_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_direction03_thumb.png b/_images/sphx_glr_simple_axis_direction03_thumb.png deleted file mode 120000 index 381aabc3ab7..00000000000 --- a/_images/sphx_glr_simple_axis_direction03_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_direction03_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_pad_001.png b/_images/sphx_glr_simple_axis_pad_001.png deleted file mode 120000 index a0beba3c546..00000000000 --- a/_images/sphx_glr_simple_axis_pad_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_pad_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_pad_0011.png b/_images/sphx_glr_simple_axis_pad_0011.png deleted file mode 120000 index 22b93085946..00000000000 --- a/_images/sphx_glr_simple_axis_pad_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axis_pad_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_pad_001_2_0x.png b/_images/sphx_glr_simple_axis_pad_001_2_0x.png deleted file mode 120000 index 3c4fee4005b..00000000000 --- a/_images/sphx_glr_simple_axis_pad_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_pad_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axis_pad_thumb.png b/_images/sphx_glr_simple_axis_pad_thumb.png deleted file mode 120000 index de3c9b274e8..00000000000 --- a/_images/sphx_glr_simple_axis_pad_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axis_pad_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisartist1_001.png b/_images/sphx_glr_simple_axisartist1_001.png deleted file mode 120000 index 647bc7290ef..00000000000 --- a/_images/sphx_glr_simple_axisartist1_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisartist1_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisartist1_0011.png b/_images/sphx_glr_simple_axisartist1_0011.png deleted file mode 120000 index d1f3cb34cfd..00000000000 --- a/_images/sphx_glr_simple_axisartist1_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axisartist1_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisartist1_001_2_0x.png b/_images/sphx_glr_simple_axisartist1_001_2_0x.png deleted file mode 120000 index de6e92d5820..00000000000 --- a/_images/sphx_glr_simple_axisartist1_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisartist1_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisartist1_thumb.png b/_images/sphx_glr_simple_axisartist1_thumb.png deleted file mode 120000 index ed902ce932c..00000000000 --- a/_images/sphx_glr_simple_axisartist1_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisartist1_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline2_001.png b/_images/sphx_glr_simple_axisline2_001.png deleted file mode 120000 index c57e411b20a..00000000000 --- a/_images/sphx_glr_simple_axisline2_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axisline2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline2_thumb.png b/_images/sphx_glr_simple_axisline2_thumb.png deleted file mode 120000 index 994b4d14db8..00000000000 --- a/_images/sphx_glr_simple_axisline2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axisline2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline3_001.png b/_images/sphx_glr_simple_axisline3_001.png deleted file mode 120000 index 44828a7212b..00000000000 --- a/_images/sphx_glr_simple_axisline3_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline3_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline3_0011.png b/_images/sphx_glr_simple_axisline3_0011.png deleted file mode 120000 index 1b1b259f55a..00000000000 --- a/_images/sphx_glr_simple_axisline3_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axisline3_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline3_001_2_0x.png b/_images/sphx_glr_simple_axisline3_001_2_0x.png deleted file mode 120000 index da58ad48e7d..00000000000 --- a/_images/sphx_glr_simple_axisline3_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline3_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline3_thumb.png b/_images/sphx_glr_simple_axisline3_thumb.png deleted file mode 120000 index ac2613a94f9..00000000000 --- a/_images/sphx_glr_simple_axisline3_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline3_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline4_001.png b/_images/sphx_glr_simple_axisline4_001.png deleted file mode 120000 index 5f157ad87e8..00000000000 --- a/_images/sphx_glr_simple_axisline4_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline4_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline4_0011.png b/_images/sphx_glr_simple_axisline4_0011.png deleted file mode 120000 index 01e1b87cfbe..00000000000 --- a/_images/sphx_glr_simple_axisline4_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_axisline4_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline4_001_2_0x.png b/_images/sphx_glr_simple_axisline4_001_2_0x.png deleted file mode 120000 index 67ef83dc4e4..00000000000 --- a/_images/sphx_glr_simple_axisline4_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline4_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline4_thumb.png b/_images/sphx_glr_simple_axisline4_thumb.png deleted file mode 120000 index d3e76272f84..00000000000 --- a/_images/sphx_glr_simple_axisline4_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline4_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline_001.png b/_images/sphx_glr_simple_axisline_001.png deleted file mode 120000 index e6cd7827028..00000000000 --- a/_images/sphx_glr_simple_axisline_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline_001_2_0x.png b/_images/sphx_glr_simple_axisline_001_2_0x.png deleted file mode 120000 index e0254d0bb83..00000000000 --- a/_images/sphx_glr_simple_axisline_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_axisline_thumb.png b/_images/sphx_glr_simple_axisline_thumb.png deleted file mode 120000 index 17b2d4f141b..00000000000 --- a/_images/sphx_glr_simple_axisline_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_axisline_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_colorbar_001.png b/_images/sphx_glr_simple_colorbar_001.png deleted file mode 120000 index 3a7b080469f..00000000000 --- a/_images/sphx_glr_simple_colorbar_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_colorbar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_colorbar_0011.png b/_images/sphx_glr_simple_colorbar_0011.png deleted file mode 120000 index f3f042935ba..00000000000 --- a/_images/sphx_glr_simple_colorbar_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_colorbar_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_colorbar_001_2_0x.png b/_images/sphx_glr_simple_colorbar_001_2_0x.png deleted file mode 120000 index a2907e658cb..00000000000 --- a/_images/sphx_glr_simple_colorbar_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_colorbar_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_colorbar_thumb.png b/_images/sphx_glr_simple_colorbar_thumb.png deleted file mode 120000 index 833536ab43e..00000000000 --- a/_images/sphx_glr_simple_colorbar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_colorbar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_legend01_001.png b/_images/sphx_glr_simple_legend01_001.png deleted file mode 120000 index 3214fa702a1..00000000000 --- a/_images/sphx_glr_simple_legend01_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_legend01_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_legend01_001_2_0x.png b/_images/sphx_glr_simple_legend01_001_2_0x.png deleted file mode 120000 index 4fbb74ad59d..00000000000 --- a/_images/sphx_glr_simple_legend01_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_legend01_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_legend01_thumb.png b/_images/sphx_glr_simple_legend01_thumb.png deleted file mode 120000 index 482ecbec04a..00000000000 --- a/_images/sphx_glr_simple_legend01_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_legend01_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_legend02_001.png b/_images/sphx_glr_simple_legend02_001.png deleted file mode 120000 index 668ccb3ca4a..00000000000 --- a/_images/sphx_glr_simple_legend02_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_legend02_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_legend02_001_2_0x.png b/_images/sphx_glr_simple_legend02_001_2_0x.png deleted file mode 120000 index d4dcf6f8479..00000000000 --- a/_images/sphx_glr_simple_legend02_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_legend02_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_legend02_thumb.png b/_images/sphx_glr_simple_legend02_thumb.png deleted file mode 120000 index 23529b5dd5c..00000000000 --- a/_images/sphx_glr_simple_legend02_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_legend02_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_plot_001.png b/_images/sphx_glr_simple_plot_001.png deleted file mode 120000 index 5f5fd115b73..00000000000 --- a/_images/sphx_glr_simple_plot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_plot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_plot_0011.png b/_images/sphx_glr_simple_plot_0011.png deleted file mode 120000 index 6c94b227ef4..00000000000 --- a/_images/sphx_glr_simple_plot_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_simple_plot_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_plot_001_2_0x.png b/_images/sphx_glr_simple_plot_001_2_0x.png deleted file mode 120000 index ce0541f801e..00000000000 --- a/_images/sphx_glr_simple_plot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_plot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_plot_thumb.png b/_images/sphx_glr_simple_plot_thumb.png deleted file mode 120000 index 7c3e5512d8e..00000000000 --- a/_images/sphx_glr_simple_plot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_simple_plot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_rgb_001.png b/_images/sphx_glr_simple_rgb_001.png deleted file mode 120000 index c1886daa7d6..00000000000 --- a/_images/sphx_glr_simple_rgb_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_rgb_001.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_rgb_0011.png b/_images/sphx_glr_simple_rgb_0011.png deleted file mode 120000 index 357f586aea9..00000000000 --- a/_images/sphx_glr_simple_rgb_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_rgb_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_simple_rgb_thumb.png b/_images/sphx_glr_simple_rgb_thumb.png deleted file mode 120000 index 31620643632..00000000000 --- a/_images/sphx_glr_simple_rgb_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_simple_rgb_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_skewt_001.png b/_images/sphx_glr_skewt_001.png deleted file mode 120000 index 4a569120461..00000000000 --- a/_images/sphx_glr_skewt_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_skewt_001.png \ No newline at end of file diff --git a/_images/sphx_glr_skewt_0011.png b/_images/sphx_glr_skewt_0011.png deleted file mode 120000 index 13e4f91a61a..00000000000 --- a/_images/sphx_glr_skewt_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_skewt_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_skewt_001_2_0x.png b/_images/sphx_glr_skewt_001_2_0x.png deleted file mode 120000 index 151851239f0..00000000000 --- a/_images/sphx_glr_skewt_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_skewt_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_skewt_thumb.png b/_images/sphx_glr_skewt_thumb.png deleted file mode 120000 index 774b30945b7..00000000000 --- a/_images/sphx_glr_skewt_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_skewt_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_slider_demo_001.png b/_images/sphx_glr_slider_demo_001.png deleted file mode 120000 index 38e1757a1ce..00000000000 --- a/_images/sphx_glr_slider_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_slider_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_slider_demo_0011.png b/_images/sphx_glr_slider_demo_0011.png deleted file mode 120000 index ce92a06c4a6..00000000000 --- a/_images/sphx_glr_slider_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_slider_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_slider_demo_001_2_0x.png b/_images/sphx_glr_slider_demo_001_2_0x.png deleted file mode 120000 index 48da7b35df9..00000000000 --- a/_images/sphx_glr_slider_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_slider_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_slider_demo_thumb.png b/_images/sphx_glr_slider_demo_thumb.png deleted file mode 120000 index f0bb8aea686..00000000000 --- a/_images/sphx_glr_slider_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_slider_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_slider_snap_demo_001.png b/_images/sphx_glr_slider_snap_demo_001.png deleted file mode 120000 index 6e5754368d2..00000000000 --- a/_images/sphx_glr_slider_snap_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_slider_snap_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_slider_snap_demo_001_2_0x.png b/_images/sphx_glr_slider_snap_demo_001_2_0x.png deleted file mode 120000 index d840546d84d..00000000000 --- a/_images/sphx_glr_slider_snap_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_slider_snap_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_slider_snap_demo_thumb.png b/_images/sphx_glr_slider_snap_demo_thumb.png deleted file mode 120000 index e681f7adc50..00000000000 --- a/_images/sphx_glr_slider_snap_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_slider_snap_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_span_regions_001.png b/_images/sphx_glr_span_regions_001.png deleted file mode 120000 index dd1bac26641..00000000000 --- a/_images/sphx_glr_span_regions_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_span_regions_001.png \ No newline at end of file diff --git a/_images/sphx_glr_span_regions_001_2_0x.png b/_images/sphx_glr_span_regions_001_2_0x.png deleted file mode 120000 index 6c618008187..00000000000 --- a/_images/sphx_glr_span_regions_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_span_regions_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_span_regions_thumb.png b/_images/sphx_glr_span_regions_thumb.png deleted file mode 120000 index 550e03fccc5..00000000000 --- a/_images/sphx_glr_span_regions_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_span_regions_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_span_selector_001.png b/_images/sphx_glr_span_selector_001.png deleted file mode 120000 index 0e13d50d3a2..00000000000 --- a/_images/sphx_glr_span_selector_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_span_selector_001.png \ No newline at end of file diff --git a/_images/sphx_glr_span_selector_001_2_0x.png b/_images/sphx_glr_span_selector_001_2_0x.png deleted file mode 120000 index 92857c178f4..00000000000 --- a/_images/sphx_glr_span_selector_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_span_selector_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_span_selector_thumb.png b/_images/sphx_glr_span_selector_thumb.png deleted file mode 120000 index f44babb0051..00000000000 --- a/_images/sphx_glr_span_selector_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_span_selector_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_specgram_demo_001.png b/_images/sphx_glr_specgram_demo_001.png deleted file mode 120000 index a0041e472fa..00000000000 --- a/_images/sphx_glr_specgram_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_specgram_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_specgram_demo_001_2_0x.png b/_images/sphx_glr_specgram_demo_001_2_0x.png deleted file mode 120000 index 1792187531a..00000000000 --- a/_images/sphx_glr_specgram_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_specgram_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_specgram_demo_thumb.png b/_images/sphx_glr_specgram_demo_thumb.png deleted file mode 120000 index 4574a6e99a0..00000000000 --- a/_images/sphx_glr_specgram_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_specgram_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_spectrum_demo_001.png b/_images/sphx_glr_spectrum_demo_001.png deleted file mode 120000 index 51ba9231c0b..00000000000 --- a/_images/sphx_glr_spectrum_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spectrum_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_spectrum_demo_001_2_0x.png b/_images/sphx_glr_spectrum_demo_001_2_0x.png deleted file mode 120000 index 1795cf0bde0..00000000000 --- a/_images/sphx_glr_spectrum_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spectrum_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_spectrum_demo_thumb.png b/_images/sphx_glr_spectrum_demo_thumb.png deleted file mode 120000 index 3db2d153d2a..00000000000 --- a/_images/sphx_glr_spectrum_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spectrum_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_spine_placement_demo_001.png b/_images/sphx_glr_spine_placement_demo_001.png deleted file mode 120000 index b54e8ea1316..00000000000 --- a/_images/sphx_glr_spine_placement_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spine_placement_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_spine_placement_demo_001_2_0x.png b/_images/sphx_glr_spine_placement_demo_001_2_0x.png deleted file mode 120000 index 32676c81a2d..00000000000 --- a/_images/sphx_glr_spine_placement_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spine_placement_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_spine_placement_demo_002.png b/_images/sphx_glr_spine_placement_demo_002.png deleted file mode 120000 index 48858d8a6a5..00000000000 --- a/_images/sphx_glr_spine_placement_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spine_placement_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_spine_placement_demo_002_2_0x.png b/_images/sphx_glr_spine_placement_demo_002_2_0x.png deleted file mode 120000 index 3e6592b340d..00000000000 --- a/_images/sphx_glr_spine_placement_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spine_placement_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_spine_placement_demo_thumb.png b/_images/sphx_glr_spine_placement_demo_thumb.png deleted file mode 120000 index 569a5d6d96a..00000000000 --- a/_images/sphx_glr_spine_placement_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spine_placement_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_001.png b/_images/sphx_glr_spines_001.png deleted file mode 120000 index 84389076f18..00000000000 --- a/_images/sphx_glr_spines_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_001.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_001_2_0x.png b/_images/sphx_glr_spines_001_2_0x.png deleted file mode 120000 index a19aabb360c..00000000000 --- a/_images/sphx_glr_spines_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_bounds_001.png b/_images/sphx_glr_spines_bounds_001.png deleted file mode 120000 index 97da23ac7a9..00000000000 --- a/_images/sphx_glr_spines_bounds_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_bounds_001.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_bounds_001_2_0x.png b/_images/sphx_glr_spines_bounds_001_2_0x.png deleted file mode 120000 index f59c95c5842..00000000000 --- a/_images/sphx_glr_spines_bounds_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_bounds_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_bounds_thumb.png b/_images/sphx_glr_spines_bounds_thumb.png deleted file mode 120000 index ca6ba1ed68c..00000000000 --- a/_images/sphx_glr_spines_bounds_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_bounds_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_dropped_001.png b/_images/sphx_glr_spines_dropped_001.png deleted file mode 120000 index 4a2b0c1d08a..00000000000 --- a/_images/sphx_glr_spines_dropped_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_dropped_001.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_dropped_001_2_0x.png b/_images/sphx_glr_spines_dropped_001_2_0x.png deleted file mode 120000 index 958dbb47544..00000000000 --- a/_images/sphx_glr_spines_dropped_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_dropped_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_dropped_thumb.png b/_images/sphx_glr_spines_dropped_thumb.png deleted file mode 120000 index e552c8c161f..00000000000 --- a/_images/sphx_glr_spines_dropped_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_dropped_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_spines_thumb.png b/_images/sphx_glr_spines_thumb.png deleted file mode 120000 index 4bba2bfc0d9..00000000000 --- a/_images/sphx_glr_spines_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spines_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_spy_demos_001.png b/_images/sphx_glr_spy_demos_001.png deleted file mode 120000 index 0028727af69..00000000000 --- a/_images/sphx_glr_spy_demos_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spy_demos_001.png \ No newline at end of file diff --git a/_images/sphx_glr_spy_demos_001_2_0x.png b/_images/sphx_glr_spy_demos_001_2_0x.png deleted file mode 120000 index e68d2496832..00000000000 --- a/_images/sphx_glr_spy_demos_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spy_demos_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_spy_demos_thumb.png b/_images/sphx_glr_spy_demos_thumb.png deleted file mode 120000 index f66cc1fdbc3..00000000000 --- a/_images/sphx_glr_spy_demos_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_spy_demos_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_stackplot_demo_001.png b/_images/sphx_glr_stackplot_demo_001.png deleted file mode 120000 index 3fc1bd586d0..00000000000 --- a/_images/sphx_glr_stackplot_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stackplot_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_stackplot_demo_0011.png b/_images/sphx_glr_stackplot_demo_0011.png deleted file mode 120000 index 533bae66dd5..00000000000 --- a/_images/sphx_glr_stackplot_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_stackplot_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_stackplot_demo_001_2_0x.png b/_images/sphx_glr_stackplot_demo_001_2_0x.png deleted file mode 120000 index 192595f681d..00000000000 --- a/_images/sphx_glr_stackplot_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stackplot_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stackplot_demo_002.png b/_images/sphx_glr_stackplot_demo_002.png deleted file mode 120000 index 6fc8de9b803..00000000000 --- a/_images/sphx_glr_stackplot_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stackplot_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_stackplot_demo_002_2_0x.png b/_images/sphx_glr_stackplot_demo_002_2_0x.png deleted file mode 120000 index c5991064395..00000000000 --- a/_images/sphx_glr_stackplot_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stackplot_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stackplot_demo_003.png b/_images/sphx_glr_stackplot_demo_003.png deleted file mode 120000 index b4fa3e3825d..00000000000 --- a/_images/sphx_glr_stackplot_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_stackplot_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_stackplot_demo_thumb.png b/_images/sphx_glr_stackplot_demo_thumb.png deleted file mode 120000 index 40ed46896c5..00000000000 --- a/_images/sphx_glr_stackplot_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stackplot_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_stairs_demo_001.png b/_images/sphx_glr_stairs_demo_001.png deleted file mode 120000 index 7e1ac6b8a5b..00000000000 --- a/_images/sphx_glr_stairs_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stairs_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_stairs_demo_001_2_0x.png b/_images/sphx_glr_stairs_demo_001_2_0x.png deleted file mode 120000 index 441c24005d9..00000000000 --- a/_images/sphx_glr_stairs_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stairs_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stairs_demo_002.png b/_images/sphx_glr_stairs_demo_002.png deleted file mode 120000 index e6f6090d349..00000000000 --- a/_images/sphx_glr_stairs_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stairs_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_stairs_demo_002_2_0x.png b/_images/sphx_glr_stairs_demo_002_2_0x.png deleted file mode 120000 index 28970d39741..00000000000 --- a/_images/sphx_glr_stairs_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stairs_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stairs_demo_003.png b/_images/sphx_glr_stairs_demo_003.png deleted file mode 120000 index 7eef467dabb..00000000000 --- a/_images/sphx_glr_stairs_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stairs_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_stairs_demo_003_2_0x.png b/_images/sphx_glr_stairs_demo_003_2_0x.png deleted file mode 120000 index d5b7a43afba..00000000000 --- a/_images/sphx_glr_stairs_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stairs_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stairs_demo_thumb.png b/_images/sphx_glr_stairs_demo_thumb.png deleted file mode 120000 index 8b2ecdf4eb3..00000000000 --- a/_images/sphx_glr_stairs_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stairs_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_stem3d_demo_001.png b/_images/sphx_glr_stem3d_demo_001.png deleted file mode 120000 index eda814c6376..00000000000 --- a/_images/sphx_glr_stem3d_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem3d_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_stem3d_demo_001_2_0x.png b/_images/sphx_glr_stem3d_demo_001_2_0x.png deleted file mode 120000 index 27c377b98a5..00000000000 --- a/_images/sphx_glr_stem3d_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem3d_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stem3d_demo_002.png b/_images/sphx_glr_stem3d_demo_002.png deleted file mode 120000 index 5c7d4b35ee3..00000000000 --- a/_images/sphx_glr_stem3d_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem3d_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_stem3d_demo_002_2_0x.png b/_images/sphx_glr_stem3d_demo_002_2_0x.png deleted file mode 120000 index 30ba48c9455..00000000000 --- a/_images/sphx_glr_stem3d_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem3d_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stem3d_demo_003.png b/_images/sphx_glr_stem3d_demo_003.png deleted file mode 120000 index 01004f481eb..00000000000 --- a/_images/sphx_glr_stem3d_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem3d_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_stem3d_demo_003_2_0x.png b/_images/sphx_glr_stem3d_demo_003_2_0x.png deleted file mode 120000 index 93d1f8661ba..00000000000 --- a/_images/sphx_glr_stem3d_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem3d_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stem3d_demo_thumb.png b/_images/sphx_glr_stem3d_demo_thumb.png deleted file mode 120000 index d1a1750da59..00000000000 --- a/_images/sphx_glr_stem3d_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem3d_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_001.png b/_images/sphx_glr_stem_001.png deleted file mode 120000 index c481261aa96..00000000000 --- a/_images/sphx_glr_stem_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_001.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_001_2_0x.png b/_images/sphx_glr_stem_001_2_0x.png deleted file mode 120000 index e0de34af810..00000000000 --- a/_images/sphx_glr_stem_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_plot_001.png b/_images/sphx_glr_stem_plot_001.png deleted file mode 120000 index c0d2f91e2cd..00000000000 --- a/_images/sphx_glr_stem_plot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_plot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_plot_001_2_0x.png b/_images/sphx_glr_stem_plot_001_2_0x.png deleted file mode 120000 index 7580ad1c539..00000000000 --- a/_images/sphx_glr_stem_plot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_plot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_plot_002.png b/_images/sphx_glr_stem_plot_002.png deleted file mode 120000 index 150988fb4d8..00000000000 --- a/_images/sphx_glr_stem_plot_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_plot_002.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_plot_002_2_0x.png b/_images/sphx_glr_stem_plot_002_2_0x.png deleted file mode 120000 index 3fd1b6c67d6..00000000000 --- a/_images/sphx_glr_stem_plot_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_plot_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_plot_thumb.png b/_images/sphx_glr_stem_plot_thumb.png deleted file mode 120000 index 74c180de9ef..00000000000 --- a/_images/sphx_glr_stem_plot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_plot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_stem_thumb.png b/_images/sphx_glr_stem_thumb.png deleted file mode 120000 index 3ad114913bb..00000000000 --- a/_images/sphx_glr_stem_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stem_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_step_001.png b/_images/sphx_glr_step_001.png deleted file mode 120000 index 851e76f23b0..00000000000 --- a/_images/sphx_glr_step_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_001.png \ No newline at end of file diff --git a/_images/sphx_glr_step_001_2_0x.png b/_images/sphx_glr_step_001_2_0x.png deleted file mode 120000 index 3bd363957d3..00000000000 --- a/_images/sphx_glr_step_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_step_demo_001.png b/_images/sphx_glr_step_demo_001.png deleted file mode 120000 index 51508c8c755..00000000000 --- a/_images/sphx_glr_step_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_step_demo_001_2_0x.png b/_images/sphx_glr_step_demo_001_2_0x.png deleted file mode 120000 index af5f4b69d98..00000000000 --- a/_images/sphx_glr_step_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_step_demo_002.png b/_images/sphx_glr_step_demo_002.png deleted file mode 120000 index 50aaec00cc2..00000000000 --- a/_images/sphx_glr_step_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_step_demo_002_2_0x.png b/_images/sphx_glr_step_demo_002_2_0x.png deleted file mode 120000 index 5e22cb303cd..00000000000 --- a/_images/sphx_glr_step_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_step_demo_thumb.png b/_images/sphx_glr_step_demo_thumb.png deleted file mode 120000 index 05158b1c460..00000000000 --- a/_images/sphx_glr_step_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_step_thumb.png b/_images/sphx_glr_step_thumb.png deleted file mode 120000 index c0e3b3e5066..00000000000 --- a/_images/sphx_glr_step_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_step_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_stix_fonts_demo_001.png b/_images/sphx_glr_stix_fonts_demo_001.png deleted file mode 120000 index 7aaf311d771..00000000000 --- a/_images/sphx_glr_stix_fonts_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stix_fonts_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_stix_fonts_demo_001_2_0x.png b/_images/sphx_glr_stix_fonts_demo_001_2_0x.png deleted file mode 120000 index 98308ed1ce9..00000000000 --- a/_images/sphx_glr_stix_fonts_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stix_fonts_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_stix_fonts_demo_thumb.png b/_images/sphx_glr_stix_fonts_demo_thumb.png deleted file mode 120000 index 6cf96c8527d..00000000000 --- a/_images/sphx_glr_stix_fonts_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_stix_fonts_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_streamplot_001.png b/_images/sphx_glr_streamplot_001.png deleted file mode 120000 index 0024e033d56..00000000000 --- a/_images/sphx_glr_streamplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_streamplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_streamplot_001_2_0x.png b/_images/sphx_glr_streamplot_001_2_0x.png deleted file mode 120000 index b8e95a53f82..00000000000 --- a/_images/sphx_glr_streamplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_streamplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_streamplot_thumb.png b/_images/sphx_glr_streamplot_thumb.png deleted file mode 120000 index e907df9b2ae..00000000000 --- a/_images/sphx_glr_streamplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_streamplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_strip_chart_001.png b/_images/sphx_glr_strip_chart_001.png deleted file mode 120000 index e20aee8a98c..00000000000 --- a/_images/sphx_glr_strip_chart_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_strip_chart_001.png \ No newline at end of file diff --git a/_images/sphx_glr_strip_chart_demo_001.png b/_images/sphx_glr_strip_chart_demo_001.png deleted file mode 120000 index 7ea45086921..00000000000 --- a/_images/sphx_glr_strip_chart_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_strip_chart_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_strip_chart_demo_thumb.png b/_images/sphx_glr_strip_chart_demo_thumb.png deleted file mode 120000 index d126f21974a..00000000000 --- a/_images/sphx_glr_strip_chart_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_strip_chart_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_strip_chart_thumb.gif b/_images/sphx_glr_strip_chart_thumb.gif deleted file mode 120000 index 1e059e564cd..00000000000 --- a/_images/sphx_glr_strip_chart_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_strip_chart_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_strip_chart_thumb.png b/_images/sphx_glr_strip_chart_thumb.png deleted file mode 120000 index 5f47c0b8fbc..00000000000 --- a/_images/sphx_glr_strip_chart_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_strip_chart_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_001.png b/_images/sphx_glr_style_sheets_reference_001.png deleted file mode 120000 index f7f26ae375b..00000000000 --- a/_images/sphx_glr_style_sheets_reference_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_001.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_001_2_0x.png b/_images/sphx_glr_style_sheets_reference_001_2_0x.png deleted file mode 120000 index 21b1bc59667..00000000000 --- a/_images/sphx_glr_style_sheets_reference_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_002.png b/_images/sphx_glr_style_sheets_reference_002.png deleted file mode 120000 index 20063ad6d3e..00000000000 --- a/_images/sphx_glr_style_sheets_reference_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_002.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_002_2_0x.png b/_images/sphx_glr_style_sheets_reference_002_2_0x.png deleted file mode 120000 index b16481acd3f..00000000000 --- a/_images/sphx_glr_style_sheets_reference_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_003.png b/_images/sphx_glr_style_sheets_reference_003.png deleted file mode 120000 index 1b397eeaebf..00000000000 --- a/_images/sphx_glr_style_sheets_reference_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_003.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_003_2_0x.png b/_images/sphx_glr_style_sheets_reference_003_2_0x.png deleted file mode 120000 index abf0838dbd5..00000000000 --- a/_images/sphx_glr_style_sheets_reference_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_004.png b/_images/sphx_glr_style_sheets_reference_004.png deleted file mode 120000 index 1b93cd8b134..00000000000 --- a/_images/sphx_glr_style_sheets_reference_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_004.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_004_2_0x.png b/_images/sphx_glr_style_sheets_reference_004_2_0x.png deleted file mode 120000 index 34480cccff3..00000000000 --- a/_images/sphx_glr_style_sheets_reference_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_005.png b/_images/sphx_glr_style_sheets_reference_005.png deleted file mode 120000 index 1cf88d54b89..00000000000 --- a/_images/sphx_glr_style_sheets_reference_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_005.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_005_2_0x.png b/_images/sphx_glr_style_sheets_reference_005_2_0x.png deleted file mode 120000 index 0026e09e820..00000000000 --- a/_images/sphx_glr_style_sheets_reference_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_006.png b/_images/sphx_glr_style_sheets_reference_006.png deleted file mode 120000 index a1c0317873d..00000000000 --- a/_images/sphx_glr_style_sheets_reference_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_006.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_006_2_0x.png b/_images/sphx_glr_style_sheets_reference_006_2_0x.png deleted file mode 120000 index fd70f5381a9..00000000000 --- a/_images/sphx_glr_style_sheets_reference_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_007.png b/_images/sphx_glr_style_sheets_reference_007.png deleted file mode 120000 index 54630305c6f..00000000000 --- a/_images/sphx_glr_style_sheets_reference_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_007.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_007_2_0x.png b/_images/sphx_glr_style_sheets_reference_007_2_0x.png deleted file mode 120000 index 4c443ff8741..00000000000 --- a/_images/sphx_glr_style_sheets_reference_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_008.png b/_images/sphx_glr_style_sheets_reference_008.png deleted file mode 120000 index e8dd862a836..00000000000 --- a/_images/sphx_glr_style_sheets_reference_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_008.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_008_2_0x.png b/_images/sphx_glr_style_sheets_reference_008_2_0x.png deleted file mode 120000 index 9e859202029..00000000000 --- a/_images/sphx_glr_style_sheets_reference_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_009.png b/_images/sphx_glr_style_sheets_reference_009.png deleted file mode 120000 index f34ad6658ba..00000000000 --- a/_images/sphx_glr_style_sheets_reference_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_009.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_009_2_0x.png b/_images/sphx_glr_style_sheets_reference_009_2_0x.png deleted file mode 120000 index 33efa28b9d2..00000000000 --- a/_images/sphx_glr_style_sheets_reference_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_010.png b/_images/sphx_glr_style_sheets_reference_010.png deleted file mode 120000 index d3e4af955d3..00000000000 --- a/_images/sphx_glr_style_sheets_reference_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_010.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_010_2_0x.png b/_images/sphx_glr_style_sheets_reference_010_2_0x.png deleted file mode 120000 index dbcae5308a6..00000000000 --- a/_images/sphx_glr_style_sheets_reference_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_011.png b/_images/sphx_glr_style_sheets_reference_011.png deleted file mode 120000 index 4e10d1cb65a..00000000000 --- a/_images/sphx_glr_style_sheets_reference_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_011.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_011_2_0x.png b/_images/sphx_glr_style_sheets_reference_011_2_0x.png deleted file mode 120000 index 4471a03dca8..00000000000 --- a/_images/sphx_glr_style_sheets_reference_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_012.png b/_images/sphx_glr_style_sheets_reference_012.png deleted file mode 120000 index 670700f37f3..00000000000 --- a/_images/sphx_glr_style_sheets_reference_012.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_012.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_012_2_0x.png b/_images/sphx_glr_style_sheets_reference_012_2_0x.png deleted file mode 120000 index 5f5f9462fba..00000000000 --- a/_images/sphx_glr_style_sheets_reference_012_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_012_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_013.png b/_images/sphx_glr_style_sheets_reference_013.png deleted file mode 120000 index d4f29d47e82..00000000000 --- a/_images/sphx_glr_style_sheets_reference_013.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_013.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_013_2_0x.png b/_images/sphx_glr_style_sheets_reference_013_2_0x.png deleted file mode 120000 index 9c902f74f4c..00000000000 --- a/_images/sphx_glr_style_sheets_reference_013_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_013_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_014.png b/_images/sphx_glr_style_sheets_reference_014.png deleted file mode 120000 index 731bc53cd36..00000000000 --- a/_images/sphx_glr_style_sheets_reference_014.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_014.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_014_2_0x.png b/_images/sphx_glr_style_sheets_reference_014_2_0x.png deleted file mode 120000 index de546d8220d..00000000000 --- a/_images/sphx_glr_style_sheets_reference_014_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_014_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_015.png b/_images/sphx_glr_style_sheets_reference_015.png deleted file mode 120000 index 20ca8de5f90..00000000000 --- a/_images/sphx_glr_style_sheets_reference_015.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_015.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_015_2_0x.png b/_images/sphx_glr_style_sheets_reference_015_2_0x.png deleted file mode 120000 index c3d78da8b23..00000000000 --- a/_images/sphx_glr_style_sheets_reference_015_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_015_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_016.png b/_images/sphx_glr_style_sheets_reference_016.png deleted file mode 120000 index 0d72fad5604..00000000000 --- a/_images/sphx_glr_style_sheets_reference_016.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_016.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_016_2_0x.png b/_images/sphx_glr_style_sheets_reference_016_2_0x.png deleted file mode 120000 index 757ee3daac9..00000000000 --- a/_images/sphx_glr_style_sheets_reference_016_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_016_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_017.png b/_images/sphx_glr_style_sheets_reference_017.png deleted file mode 120000 index ce8c0b28477..00000000000 --- a/_images/sphx_glr_style_sheets_reference_017.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_017.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_017_2_0x.png b/_images/sphx_glr_style_sheets_reference_017_2_0x.png deleted file mode 120000 index 9940fa73d7a..00000000000 --- a/_images/sphx_glr_style_sheets_reference_017_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_017_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_018.png b/_images/sphx_glr_style_sheets_reference_018.png deleted file mode 120000 index 826a7104764..00000000000 --- a/_images/sphx_glr_style_sheets_reference_018.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_018.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_018_2_0x.png b/_images/sphx_glr_style_sheets_reference_018_2_0x.png deleted file mode 120000 index 630496ac119..00000000000 --- a/_images/sphx_glr_style_sheets_reference_018_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_018_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_019.png b/_images/sphx_glr_style_sheets_reference_019.png deleted file mode 120000 index 4b1edb26a5d..00000000000 --- a/_images/sphx_glr_style_sheets_reference_019.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_019.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_019_2_0x.png b/_images/sphx_glr_style_sheets_reference_019_2_0x.png deleted file mode 120000 index f892c9a857f..00000000000 --- a/_images/sphx_glr_style_sheets_reference_019_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_019_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_020.png b/_images/sphx_glr_style_sheets_reference_020.png deleted file mode 120000 index c541ffbab10..00000000000 --- a/_images/sphx_glr_style_sheets_reference_020.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_020.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_020_2_0x.png b/_images/sphx_glr_style_sheets_reference_020_2_0x.png deleted file mode 120000 index 1593513313b..00000000000 --- a/_images/sphx_glr_style_sheets_reference_020_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_020_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_021.png b/_images/sphx_glr_style_sheets_reference_021.png deleted file mode 120000 index 3e24e639eec..00000000000 --- a/_images/sphx_glr_style_sheets_reference_021.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_021.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_021_2_0x.png b/_images/sphx_glr_style_sheets_reference_021_2_0x.png deleted file mode 120000 index 45e86436c50..00000000000 --- a/_images/sphx_glr_style_sheets_reference_021_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_021_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_022.png b/_images/sphx_glr_style_sheets_reference_022.png deleted file mode 120000 index 22b7cea9823..00000000000 --- a/_images/sphx_glr_style_sheets_reference_022.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_022.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_022_2_0x.png b/_images/sphx_glr_style_sheets_reference_022_2_0x.png deleted file mode 120000 index cadb700f1c1..00000000000 --- a/_images/sphx_glr_style_sheets_reference_022_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_022_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_023.png b/_images/sphx_glr_style_sheets_reference_023.png deleted file mode 120000 index 22da6d6451b..00000000000 --- a/_images/sphx_glr_style_sheets_reference_023.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_023.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_023_2_0x.png b/_images/sphx_glr_style_sheets_reference_023_2_0x.png deleted file mode 120000 index 4dd7efa74b9..00000000000 --- a/_images/sphx_glr_style_sheets_reference_023_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_023_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_024.png b/_images/sphx_glr_style_sheets_reference_024.png deleted file mode 120000 index 355fe788944..00000000000 --- a/_images/sphx_glr_style_sheets_reference_024.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_024.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_024_2_0x.png b/_images/sphx_glr_style_sheets_reference_024_2_0x.png deleted file mode 120000 index 4ba95aa09af..00000000000 --- a/_images/sphx_glr_style_sheets_reference_024_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_024_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_025.png b/_images/sphx_glr_style_sheets_reference_025.png deleted file mode 120000 index 71eed658c92..00000000000 --- a/_images/sphx_glr_style_sheets_reference_025.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_025.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_025_2_0x.png b/_images/sphx_glr_style_sheets_reference_025_2_0x.png deleted file mode 120000 index ca94d65f46a..00000000000 --- a/_images/sphx_glr_style_sheets_reference_025_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_025_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_026.png b/_images/sphx_glr_style_sheets_reference_026.png deleted file mode 120000 index e726d7d5917..00000000000 --- a/_images/sphx_glr_style_sheets_reference_026.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_026.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_026_2_0x.png b/_images/sphx_glr_style_sheets_reference_026_2_0x.png deleted file mode 120000 index 446d2bf7b98..00000000000 --- a/_images/sphx_glr_style_sheets_reference_026_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_026_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_027.png b/_images/sphx_glr_style_sheets_reference_027.png deleted file mode 120000 index f81e238b6aa..00000000000 --- a/_images/sphx_glr_style_sheets_reference_027.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_style_sheets_reference_027.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_027_2_0x.png b/_images/sphx_glr_style_sheets_reference_027_2_0x.png deleted file mode 120000 index 5227cdc683e..00000000000 --- a/_images/sphx_glr_style_sheets_reference_027_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_style_sheets_reference_027_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_028.png b/_images/sphx_glr_style_sheets_reference_028.png deleted file mode 120000 index e7cbbc5153e..00000000000 --- a/_images/sphx_glr_style_sheets_reference_028.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_style_sheets_reference_028.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_028_2_0x.png b/_images/sphx_glr_style_sheets_reference_028_2_0x.png deleted file mode 120000 index c6686a20a2b..00000000000 --- a/_images/sphx_glr_style_sheets_reference_028_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_style_sheets_reference_028_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_029.png b/_images/sphx_glr_style_sheets_reference_029.png deleted file mode 120000 index 26261ccee03..00000000000 --- a/_images/sphx_glr_style_sheets_reference_029.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_style_sheets_reference_029.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_029_2_0x.png b/_images/sphx_glr_style_sheets_reference_029_2_0x.png deleted file mode 120000 index 11751696430..00000000000 --- a/_images/sphx_glr_style_sheets_reference_029_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.0/_images/sphx_glr_style_sheets_reference_029_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_style_sheets_reference_thumb.png b/_images/sphx_glr_style_sheets_reference_thumb.png deleted file mode 120000 index 647082fa1a8..00000000000 --- a/_images/sphx_glr_style_sheets_reference_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_style_sheets_reference_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_001.png b/_images/sphx_glr_subfigures_001.png deleted file mode 120000 index f5727c0f00b..00000000000 --- a/_images/sphx_glr_subfigures_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_001_2_0x.png b/_images/sphx_glr_subfigures_001_2_0x.png deleted file mode 120000 index c3c8c0cb01a..00000000000 --- a/_images/sphx_glr_subfigures_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_002.png b/_images/sphx_glr_subfigures_002.png deleted file mode 120000 index 0bd79178343..00000000000 --- a/_images/sphx_glr_subfigures_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_002.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_002_2_0x.png b/_images/sphx_glr_subfigures_002_2_0x.png deleted file mode 120000 index 711264ecec1..00000000000 --- a/_images/sphx_glr_subfigures_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_003.png b/_images/sphx_glr_subfigures_003.png deleted file mode 120000 index 318957994ca..00000000000 --- a/_images/sphx_glr_subfigures_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_003.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_003_2_0x.png b/_images/sphx_glr_subfigures_003_2_0x.png deleted file mode 120000 index 733fbc0ebb0..00000000000 --- a/_images/sphx_glr_subfigures_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_004.png b/_images/sphx_glr_subfigures_004.png deleted file mode 120000 index df5476102a6..00000000000 --- a/_images/sphx_glr_subfigures_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_004.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_004_2_0x.png b/_images/sphx_glr_subfigures_004_2_0x.png deleted file mode 120000 index 0327d4a7b63..00000000000 --- a/_images/sphx_glr_subfigures_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subfigures_thumb.png b/_images/sphx_glr_subfigures_thumb.png deleted file mode 120000 index 52d46c5c59b..00000000000 --- a/_images/sphx_glr_subfigures_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subfigures_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot3d_001.png b/_images/sphx_glr_subplot3d_001.png deleted file mode 120000 index cd76ba6b3e7..00000000000 --- a/_images/sphx_glr_subplot3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot3d_0011.png b/_images/sphx_glr_subplot3d_0011.png deleted file mode 120000 index 9bd6b9484f3..00000000000 --- a/_images/sphx_glr_subplot3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_subplot3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot3d_001_2_0x.png b/_images/sphx_glr_subplot3d_001_2_0x.png deleted file mode 120000 index b99833cf1bd..00000000000 --- a/_images/sphx_glr_subplot3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot3d_thumb.png b/_images/sphx_glr_subplot3d_thumb.png deleted file mode 120000 index 2e453acd001..00000000000 --- a/_images/sphx_glr_subplot3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_001.png b/_images/sphx_glr_subplot_001.png deleted file mode 120000 index e3bfc40715d..00000000000 --- a/_images/sphx_glr_subplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_0011.png b/_images/sphx_glr_subplot_0011.png deleted file mode 120000 index 638e4feeb17..00000000000 --- a/_images/sphx_glr_subplot_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_subplot_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_001_2_0x.png b/_images/sphx_glr_subplot_001_2_0x.png deleted file mode 120000 index cb6193ceb47..00000000000 --- a/_images/sphx_glr_subplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_002.png b/_images/sphx_glr_subplot_002.png deleted file mode 120000 index 358866828ff..00000000000 --- a/_images/sphx_glr_subplot_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot_002.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_002_2_0x.png b/_images/sphx_glr_subplot_002_2_0x.png deleted file mode 120000 index 568cbda4007..00000000000 --- a/_images/sphx_glr_subplot_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_demo_001.png b/_images/sphx_glr_subplot_demo_001.png deleted file mode 120000 index f6b13efa202..00000000000 --- a/_images/sphx_glr_subplot_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_subplot_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_demo_thumb.png b/_images/sphx_glr_subplot_demo_thumb.png deleted file mode 120000 index 8692bc32fe1..00000000000 --- a/_images/sphx_glr_subplot_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_subplot_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_thumb.png b/_images/sphx_glr_subplot_thumb.png deleted file mode 120000 index 708a8756bba..00000000000 --- a/_images/sphx_glr_subplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_toolbar_001.png b/_images/sphx_glr_subplot_toolbar_001.png deleted file mode 120000 index 7b3eb1ecd16..00000000000 --- a/_images/sphx_glr_subplot_toolbar_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_subplot_toolbar_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_toolbar_002.png b/_images/sphx_glr_subplot_toolbar_002.png deleted file mode 120000 index 6f229360c0e..00000000000 --- a/_images/sphx_glr_subplot_toolbar_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_subplot_toolbar_002.png \ No newline at end of file diff --git a/_images/sphx_glr_subplot_toolbar_thumb.png b/_images/sphx_glr_subplot_toolbar_thumb.png deleted file mode 120000 index 8a2086d9610..00000000000 --- a/_images/sphx_glr_subplot_toolbar_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_subplot_toolbar_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_001.png b/_images/sphx_glr_subplots_001.png deleted file mode 120000 index b7d6c3d9e4a..00000000000 --- a/_images/sphx_glr_subplots_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_subplots_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_adjust_001.png b/_images/sphx_glr_subplots_adjust_001.png deleted file mode 120000 index ad4db419072..00000000000 --- a/_images/sphx_glr_subplots_adjust_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_adjust_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_adjust_001_2_0x.png b/_images/sphx_glr_subplots_adjust_001_2_0x.png deleted file mode 120000 index 35e1b458c4a..00000000000 --- a/_images/sphx_glr_subplots_adjust_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_adjust_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_adjust_thumb.png b/_images/sphx_glr_subplots_adjust_thumb.png deleted file mode 120000 index 494f6c74680..00000000000 --- a/_images/sphx_glr_subplots_adjust_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_adjust_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_001.png b/_images/sphx_glr_subplots_demo_001.png deleted file mode 120000 index 9b01d61345e..00000000000 --- a/_images/sphx_glr_subplots_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_001_2_0x.png b/_images/sphx_glr_subplots_demo_001_2_0x.png deleted file mode 120000 index 7b78bfb5058..00000000000 --- a/_images/sphx_glr_subplots_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_002.png b/_images/sphx_glr_subplots_demo_002.png deleted file mode 120000 index 68951ee3aad..00000000000 --- a/_images/sphx_glr_subplots_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_002_2_0x.png b/_images/sphx_glr_subplots_demo_002_2_0x.png deleted file mode 120000 index d6071e2c212..00000000000 --- a/_images/sphx_glr_subplots_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_003.png b/_images/sphx_glr_subplots_demo_003.png deleted file mode 120000 index 44c76dd7517..00000000000 --- a/_images/sphx_glr_subplots_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_003_2_0x.png b/_images/sphx_glr_subplots_demo_003_2_0x.png deleted file mode 120000 index b8e456c0127..00000000000 --- a/_images/sphx_glr_subplots_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_004.png b/_images/sphx_glr_subplots_demo_004.png deleted file mode 120000 index 997ea421b16..00000000000 --- a/_images/sphx_glr_subplots_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_004_2_0x.png b/_images/sphx_glr_subplots_demo_004_2_0x.png deleted file mode 120000 index 3cd7803958a..00000000000 --- a/_images/sphx_glr_subplots_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_005.png b/_images/sphx_glr_subplots_demo_005.png deleted file mode 120000 index 9474f52b5a4..00000000000 --- a/_images/sphx_glr_subplots_demo_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_005.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_005_2_0x.png b/_images/sphx_glr_subplots_demo_005_2_0x.png deleted file mode 120000 index 67e98a2d3f7..00000000000 --- a/_images/sphx_glr_subplots_demo_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_006.png b/_images/sphx_glr_subplots_demo_006.png deleted file mode 120000 index 8393aaebab9..00000000000 --- a/_images/sphx_glr_subplots_demo_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_006.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_006_2_0x.png b/_images/sphx_glr_subplots_demo_006_2_0x.png deleted file mode 120000 index 7095cd1fbd0..00000000000 --- a/_images/sphx_glr_subplots_demo_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_007.png b/_images/sphx_glr_subplots_demo_007.png deleted file mode 120000 index 8e8a72692a3..00000000000 --- a/_images/sphx_glr_subplots_demo_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_007.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_007_2_0x.png b/_images/sphx_glr_subplots_demo_007_2_0x.png deleted file mode 120000 index 9d6d5abfeed..00000000000 --- a/_images/sphx_glr_subplots_demo_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_008.png b/_images/sphx_glr_subplots_demo_008.png deleted file mode 120000 index 574b5b8ed75..00000000000 --- a/_images/sphx_glr_subplots_demo_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_008.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_008_2_0x.png b/_images/sphx_glr_subplots_demo_008_2_0x.png deleted file mode 120000 index 94435c4f782..00000000000 --- a/_images/sphx_glr_subplots_demo_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_009.png b/_images/sphx_glr_subplots_demo_009.png deleted file mode 120000 index 1abc2a95a5d..00000000000 --- a/_images/sphx_glr_subplots_demo_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_009.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_009_2_0x.png b/_images/sphx_glr_subplots_demo_009_2_0x.png deleted file mode 120000 index 2a2228d8a84..00000000000 --- a/_images/sphx_glr_subplots_demo_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_010.png b/_images/sphx_glr_subplots_demo_010.png deleted file mode 120000 index 73819f6d928..00000000000 --- a/_images/sphx_glr_subplots_demo_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_010.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_010_2_0x.png b/_images/sphx_glr_subplots_demo_010_2_0x.png deleted file mode 120000 index d717f4d1aac..00000000000 --- a/_images/sphx_glr_subplots_demo_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_011.png b/_images/sphx_glr_subplots_demo_011.png deleted file mode 120000 index cee42af71b0..00000000000 --- a/_images/sphx_glr_subplots_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_011.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_011_2_0x.png b/_images/sphx_glr_subplots_demo_011_2_0x.png deleted file mode 120000 index 9b7e2bc4f4e..00000000000 --- a/_images/sphx_glr_subplots_demo_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_012.png b/_images/sphx_glr_subplots_demo_012.png deleted file mode 120000 index ee6544510f3..00000000000 --- a/_images/sphx_glr_subplots_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_012.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_012_2_0x.png b/_images/sphx_glr_subplots_demo_012_2_0x.png deleted file mode 120000 index 675b8480d62..00000000000 --- a/_images/sphx_glr_subplots_demo_012_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_012_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_013.png b/_images/sphx_glr_subplots_demo_013.png deleted file mode 120000 index 410f22ae13e..00000000000 --- a/_images/sphx_glr_subplots_demo_013.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_013.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_013_2_0x.png b/_images/sphx_glr_subplots_demo_013_2_0x.png deleted file mode 120000 index 026094dc3fb..00000000000 --- a/_images/sphx_glr_subplots_demo_013_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_013_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_demo_thumb.png b/_images/sphx_glr_subplots_demo_thumb.png deleted file mode 120000 index f64ff92b273..00000000000 --- a/_images/sphx_glr_subplots_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_subplots_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_subplots_thumb.png b/_images/sphx_glr_subplots_thumb.png deleted file mode 120000 index 4b4935113bf..00000000000 --- a/_images/sphx_glr_subplots_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_subplots_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_001.png b/_images/sphx_glr_surface3d_001.png deleted file mode 120000 index 192270f7388..00000000000 --- a/_images/sphx_glr_surface3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_0011.png b/_images/sphx_glr_surface3d_0011.png deleted file mode 120000 index d525ae89318..00000000000 --- a/_images/sphx_glr_surface3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_surface3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_0012.png b/_images/sphx_glr_surface3d_0012.png deleted file mode 120000 index 5a96e5e0243..00000000000 --- a/_images/sphx_glr_surface3d_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_surface3d_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_001_2_0x.png b/_images/sphx_glr_surface3d_001_2_0x.png deleted file mode 120000 index 716b381f050..00000000000 --- a/_images/sphx_glr_surface3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_2_001.png b/_images/sphx_glr_surface3d_2_001.png deleted file mode 120000 index 6e46deccda9..00000000000 --- a/_images/sphx_glr_surface3d_2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_2_001_2_0x.png b/_images/sphx_glr_surface3d_2_001_2_0x.png deleted file mode 120000 index 99312453098..00000000000 --- a/_images/sphx_glr_surface3d_2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_2_thumb.png b/_images/sphx_glr_surface3d_2_thumb.png deleted file mode 120000 index f50d8cd2d1e..00000000000 --- a/_images/sphx_glr_surface3d_2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_3_001.png b/_images/sphx_glr_surface3d_3_001.png deleted file mode 120000 index 2be3f6d636b..00000000000 --- a/_images/sphx_glr_surface3d_3_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_3_001.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_3_001_2_0x.png b/_images/sphx_glr_surface3d_3_001_2_0x.png deleted file mode 120000 index e0b6a6abc50..00000000000 --- a/_images/sphx_glr_surface3d_3_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_3_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_3_thumb.png b/_images/sphx_glr_surface3d_3_thumb.png deleted file mode 120000 index 016f99093a1..00000000000 --- a/_images/sphx_glr_surface3d_3_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_3_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_radial_001.png b/_images/sphx_glr_surface3d_radial_001.png deleted file mode 120000 index 122e1ca48fd..00000000000 --- a/_images/sphx_glr_surface3d_radial_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_radial_001.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_radial_001_2_0x.png b/_images/sphx_glr_surface3d_radial_001_2_0x.png deleted file mode 120000 index 0c20b5cf973..00000000000 --- a/_images/sphx_glr_surface3d_radial_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_radial_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_radial_thumb.png b/_images/sphx_glr_surface3d_radial_thumb.png deleted file mode 120000 index df482d437f5..00000000000 --- a/_images/sphx_glr_surface3d_radial_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_radial_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_surface3d_thumb.png b/_images/sphx_glr_surface3d_thumb.png deleted file mode 120000 index d2bea5eb11a..00000000000 --- a/_images/sphx_glr_surface3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_surface3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_filter_line_001.png b/_images/sphx_glr_svg_filter_line_001.png deleted file mode 120000 index 3fc1331d52e..00000000000 --- a/_images/sphx_glr_svg_filter_line_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_filter_line_001.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_filter_line_001_2_0x.png b/_images/sphx_glr_svg_filter_line_001_2_0x.png deleted file mode 120000 index aa71df5cd43..00000000000 --- a/_images/sphx_glr_svg_filter_line_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_filter_line_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_filter_line_thumb.png b/_images/sphx_glr_svg_filter_line_thumb.png deleted file mode 120000 index c09fdc0a627..00000000000 --- a/_images/sphx_glr_svg_filter_line_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_filter_line_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_filter_pie_001.png b/_images/sphx_glr_svg_filter_pie_001.png deleted file mode 120000 index 8eaaf7a8a8a..00000000000 --- a/_images/sphx_glr_svg_filter_pie_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_filter_pie_001.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_filter_pie_001_2_0x.png b/_images/sphx_glr_svg_filter_pie_001_2_0x.png deleted file mode 120000 index d0a6dccef8c..00000000000 --- a/_images/sphx_glr_svg_filter_pie_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_filter_pie_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_filter_pie_thumb.png b/_images/sphx_glr_svg_filter_pie_thumb.png deleted file mode 120000 index fd43235ab58..00000000000 --- a/_images/sphx_glr_svg_filter_pie_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_filter_pie_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_histogram_sgskip_thumb.png b/_images/sphx_glr_svg_histogram_sgskip_thumb.png deleted file mode 120000 index e3c4b247274..00000000000 --- a/_images/sphx_glr_svg_histogram_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_histogram_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_svg_tooltip_sgskip_thumb.png b/_images/sphx_glr_svg_tooltip_sgskip_thumb.png deleted file mode 120000 index d80c3d136ba..00000000000 --- a/_images/sphx_glr_svg_tooltip_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_svg_tooltip_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_symlog_demo_001.png b/_images/sphx_glr_symlog_demo_001.png deleted file mode 120000 index ddeb350e84b..00000000000 --- a/_images/sphx_glr_symlog_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_symlog_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_symlog_demo_001_2_0x.png b/_images/sphx_glr_symlog_demo_001_2_0x.png deleted file mode 120000 index 967208e465f..00000000000 --- a/_images/sphx_glr_symlog_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_symlog_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_symlog_demo_thumb.png b/_images/sphx_glr_symlog_demo_thumb.png deleted file mode 120000 index 2454ecfbd2b..00000000000 --- a/_images/sphx_glr_symlog_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_symlog_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_system_monitor_001.png b/_images/sphx_glr_system_monitor_001.png deleted file mode 120000 index 4a9d4d37648..00000000000 --- a/_images/sphx_glr_system_monitor_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_system_monitor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_system_monitor_thumb.png b/_images/sphx_glr_system_monitor_thumb.png deleted file mode 120000 index 101d980afa3..00000000000 --- a/_images/sphx_glr_system_monitor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_system_monitor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_table_demo_001.png b/_images/sphx_glr_table_demo_001.png deleted file mode 120000 index f68e50e67b6..00000000000 --- a/_images/sphx_glr_table_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_table_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_table_demo_0011.png b/_images/sphx_glr_table_demo_0011.png deleted file mode 120000 index f913219a91d..00000000000 --- a/_images/sphx_glr_table_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_table_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_table_demo_001_2_0x.png b/_images/sphx_glr_table_demo_001_2_0x.png deleted file mode 120000 index 1660c71372e..00000000000 --- a/_images/sphx_glr_table_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_table_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_table_demo_thumb.png b/_images/sphx_glr_table_demo_thumb.png deleted file mode 120000 index b76a66c593a..00000000000 --- a/_images/sphx_glr_table_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_table_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tex_demo_001.png b/_images/sphx_glr_tex_demo_001.png deleted file mode 120000 index 8174aacbbd9..00000000000 --- a/_images/sphx_glr_tex_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tex_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tex_demo_0011.png b/_images/sphx_glr_tex_demo_0011.png deleted file mode 120000 index 07885889d0c..00000000000 --- a/_images/sphx_glr_tex_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_tex_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_tex_demo_0012.png b/_images/sphx_glr_tex_demo_0012.png deleted file mode 120000 index 18c54d43d38..00000000000 --- a/_images/sphx_glr_tex_demo_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_tex_demo_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_tex_demo_001_2_0x.png b/_images/sphx_glr_tex_demo_001_2_0x.png deleted file mode 120000 index ae2ae544b76..00000000000 --- a/_images/sphx_glr_tex_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tex_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tex_demo_002.png b/_images/sphx_glr_tex_demo_002.png deleted file mode 120000 index df1e9034c6c..00000000000 --- a/_images/sphx_glr_tex_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tex_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_tex_demo_002_2_0x.png b/_images/sphx_glr_tex_demo_002_2_0x.png deleted file mode 120000 index d9f15ac4479..00000000000 --- a/_images/sphx_glr_tex_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tex_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tex_demo_thumb.png b/_images/sphx_glr_tex_demo_thumb.png deleted file mode 120000 index d46c799ed77..00000000000 --- a/_images/sphx_glr_tex_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tex_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text3d_001.png b/_images/sphx_glr_text3d_001.png deleted file mode 120000 index 2a30d64bc98..00000000000 --- a/_images/sphx_glr_text3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text3d_0011.png b/_images/sphx_glr_text3d_0011.png deleted file mode 120000 index e3b6c7c985b..00000000000 --- a/_images/sphx_glr_text3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_text3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_text3d_001_2_0x.png b/_images/sphx_glr_text3d_001_2_0x.png deleted file mode 120000 index 2fd34523d01..00000000000 --- a/_images/sphx_glr_text3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text3d_thumb.png b/_images/sphx_glr_text3d_thumb.png deleted file mode 120000 index 1b64ca69f1e..00000000000 --- a/_images/sphx_glr_text3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_alignment_001.png b/_images/sphx_glr_text_alignment_001.png deleted file mode 120000 index a7dfba08a8b..00000000000 --- a/_images/sphx_glr_text_alignment_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_alignment_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_alignment_001_2_0x.png b/_images/sphx_glr_text_alignment_001_2_0x.png deleted file mode 120000 index 5cc432fbec7..00000000000 --- a/_images/sphx_glr_text_alignment_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_alignment_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_alignment_thumb.png b/_images/sphx_glr_text_alignment_thumb.png deleted file mode 120000 index f8267b0be6b..00000000000 --- a/_images/sphx_glr_text_alignment_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_alignment_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_commands_001.png b/_images/sphx_glr_text_commands_001.png deleted file mode 120000 index 1fcccd70f16..00000000000 --- a/_images/sphx_glr_text_commands_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_commands_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_commands_001_2_0x.png b/_images/sphx_glr_text_commands_001_2_0x.png deleted file mode 120000 index 759d91db0a4..00000000000 --- a/_images/sphx_glr_text_commands_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_commands_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_commands_thumb.png b/_images/sphx_glr_text_commands_thumb.png deleted file mode 120000 index 22d5c39a92c..00000000000 --- a/_images/sphx_glr_text_commands_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_commands_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_fontdict_001.png b/_images/sphx_glr_text_fontdict_001.png deleted file mode 120000 index 78e724df19d..00000000000 --- a/_images/sphx_glr_text_fontdict_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_fontdict_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_fontdict_001_2_0x.png b/_images/sphx_glr_text_fontdict_001_2_0x.png deleted file mode 120000 index a171e6f281e..00000000000 --- a/_images/sphx_glr_text_fontdict_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_fontdict_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_fontdict_thumb.png b/_images/sphx_glr_text_fontdict_thumb.png deleted file mode 120000 index c2392761116..00000000000 --- a/_images/sphx_glr_text_fontdict_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_fontdict_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_001.png b/_images/sphx_glr_text_intro_001.png deleted file mode 120000 index 8eb261d592f..00000000000 --- a/_images/sphx_glr_text_intro_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_001_2_0x.png b/_images/sphx_glr_text_intro_001_2_0x.png deleted file mode 120000 index 72c5536035e..00000000000 --- a/_images/sphx_glr_text_intro_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_002.png b/_images/sphx_glr_text_intro_002.png deleted file mode 120000 index 34515f2f6dd..00000000000 --- a/_images/sphx_glr_text_intro_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_002.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_002_2_0x.png b/_images/sphx_glr_text_intro_002_2_0x.png deleted file mode 120000 index 9e888752fae..00000000000 --- a/_images/sphx_glr_text_intro_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_003.png b/_images/sphx_glr_text_intro_003.png deleted file mode 120000 index 03a25162cec..00000000000 --- a/_images/sphx_glr_text_intro_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_003.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_003_2_0x.png b/_images/sphx_glr_text_intro_003_2_0x.png deleted file mode 120000 index a2a4aa5fd15..00000000000 --- a/_images/sphx_glr_text_intro_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_004.png b/_images/sphx_glr_text_intro_004.png deleted file mode 120000 index b5020d4e840..00000000000 --- a/_images/sphx_glr_text_intro_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_004.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_004_2_0x.png b/_images/sphx_glr_text_intro_004_2_0x.png deleted file mode 120000 index ce29440ddbf..00000000000 --- a/_images/sphx_glr_text_intro_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_005.png b/_images/sphx_glr_text_intro_005.png deleted file mode 120000 index a47c2e71a90..00000000000 --- a/_images/sphx_glr_text_intro_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_005.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_005_2_0x.png b/_images/sphx_glr_text_intro_005_2_0x.png deleted file mode 120000 index 0e1f58119d2..00000000000 --- a/_images/sphx_glr_text_intro_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_006.png b/_images/sphx_glr_text_intro_006.png deleted file mode 120000 index 9d8c847e163..00000000000 --- a/_images/sphx_glr_text_intro_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_006.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_006_2_0x.png b/_images/sphx_glr_text_intro_006_2_0x.png deleted file mode 120000 index e7b6450cc35..00000000000 --- a/_images/sphx_glr_text_intro_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_007.png b/_images/sphx_glr_text_intro_007.png deleted file mode 120000 index 3e3f1c56759..00000000000 --- a/_images/sphx_glr_text_intro_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_007.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_007_2_0x.png b/_images/sphx_glr_text_intro_007_2_0x.png deleted file mode 120000 index 730eac1b4f8..00000000000 --- a/_images/sphx_glr_text_intro_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_008.png b/_images/sphx_glr_text_intro_008.png deleted file mode 120000 index 0816e8bef6c..00000000000 --- a/_images/sphx_glr_text_intro_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_008.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_008_2_0x.png b/_images/sphx_glr_text_intro_008_2_0x.png deleted file mode 120000 index e6e7c07de10..00000000000 --- a/_images/sphx_glr_text_intro_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_009.png b/_images/sphx_glr_text_intro_009.png deleted file mode 120000 index 174e06b7f18..00000000000 --- a/_images/sphx_glr_text_intro_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_009.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_009_2_0x.png b/_images/sphx_glr_text_intro_009_2_0x.png deleted file mode 120000 index d77167c8e44..00000000000 --- a/_images/sphx_glr_text_intro_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_010.png b/_images/sphx_glr_text_intro_010.png deleted file mode 120000 index 5584d8be2aa..00000000000 --- a/_images/sphx_glr_text_intro_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_010.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_010_2_0x.png b/_images/sphx_glr_text_intro_010_2_0x.png deleted file mode 120000 index 12ec246473c..00000000000 --- a/_images/sphx_glr_text_intro_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_011.png b/_images/sphx_glr_text_intro_011.png deleted file mode 120000 index 6b9377ab08d..00000000000 --- a/_images/sphx_glr_text_intro_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_011.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_011_2_0x.png b/_images/sphx_glr_text_intro_011_2_0x.png deleted file mode 120000 index c6f87d297e0..00000000000 --- a/_images/sphx_glr_text_intro_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_012.png b/_images/sphx_glr_text_intro_012.png deleted file mode 120000 index 3c872ad7d1b..00000000000 --- a/_images/sphx_glr_text_intro_012.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_012.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_012_2_0x.png b/_images/sphx_glr_text_intro_012_2_0x.png deleted file mode 120000 index 2ef25a9971a..00000000000 --- a/_images/sphx_glr_text_intro_012_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_012_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_013.png b/_images/sphx_glr_text_intro_013.png deleted file mode 120000 index 5a5e15599ba..00000000000 --- a/_images/sphx_glr_text_intro_013.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_013.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_013_2_0x.png b/_images/sphx_glr_text_intro_013_2_0x.png deleted file mode 120000 index 86e8671b456..00000000000 --- a/_images/sphx_glr_text_intro_013_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_013_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_014.png b/_images/sphx_glr_text_intro_014.png deleted file mode 120000 index 10abdb1fef3..00000000000 --- a/_images/sphx_glr_text_intro_014.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_014.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_014_2_0x.png b/_images/sphx_glr_text_intro_014_2_0x.png deleted file mode 120000 index beb49cefeb6..00000000000 --- a/_images/sphx_glr_text_intro_014_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_014_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_015.png b/_images/sphx_glr_text_intro_015.png deleted file mode 120000 index 550e7a24a59..00000000000 --- a/_images/sphx_glr_text_intro_015.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_015.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_015_2_0x.png b/_images/sphx_glr_text_intro_015_2_0x.png deleted file mode 120000 index 31091208d5a..00000000000 --- a/_images/sphx_glr_text_intro_015_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_015_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_016.png b/_images/sphx_glr_text_intro_016.png deleted file mode 120000 index f087bebbd7e..00000000000 --- a/_images/sphx_glr_text_intro_016.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_016.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_016_2_0x.png b/_images/sphx_glr_text_intro_016_2_0x.png deleted file mode 120000 index 0909be674cd..00000000000 --- a/_images/sphx_glr_text_intro_016_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_016_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_017.png b/_images/sphx_glr_text_intro_017.png deleted file mode 120000 index dabfa76f542..00000000000 --- a/_images/sphx_glr_text_intro_017.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_017.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_017_2_0x.png b/_images/sphx_glr_text_intro_017_2_0x.png deleted file mode 120000 index 67496a2feb1..00000000000 --- a/_images/sphx_glr_text_intro_017_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_017_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_018.png b/_images/sphx_glr_text_intro_018.png deleted file mode 120000 index aa1f539d06b..00000000000 --- a/_images/sphx_glr_text_intro_018.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_text_intro_018.png \ No newline at end of file diff --git a/_images/sphx_glr_text_intro_thumb.png b/_images/sphx_glr_text_intro_thumb.png deleted file mode 120000 index 930a0b34693..00000000000 --- a/_images/sphx_glr_text_intro_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_intro_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_layout_001.png b/_images/sphx_glr_text_layout_001.png deleted file mode 120000 index 9e6645f29de..00000000000 --- a/_images/sphx_glr_text_layout_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_layout_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_layout_001_2_0x.png b/_images/sphx_glr_text_layout_001_2_0x.png deleted file mode 120000 index 09b88cb7013..00000000000 --- a/_images/sphx_glr_text_layout_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_layout_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_layout_thumb.png b/_images/sphx_glr_text_layout_thumb.png deleted file mode 120000 index 6dd691497ef..00000000000 --- a/_images/sphx_glr_text_layout_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_layout_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_props_001.png b/_images/sphx_glr_text_props_001.png deleted file mode 120000 index 3c3c32337e2..00000000000 --- a/_images/sphx_glr_text_props_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_props_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_props_001_2_0x.png b/_images/sphx_glr_text_props_001_2_0x.png deleted file mode 120000 index 4fecffec006..00000000000 --- a/_images/sphx_glr_text_props_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_props_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_props_thumb.png b/_images/sphx_glr_text_props_thumb.png deleted file mode 120000 index df3cda97bf2..00000000000 --- a/_images/sphx_glr_text_props_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_props_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_rotation_001.png b/_images/sphx_glr_text_rotation_001.png deleted file mode 120000 index 2e7e31a7f87..00000000000 --- a/_images/sphx_glr_text_rotation_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_rotation_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_rotation_001_2_0x.png b/_images/sphx_glr_text_rotation_001_2_0x.png deleted file mode 120000 index 977a0431ef8..00000000000 --- a/_images/sphx_glr_text_rotation_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_rotation_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_rotation_relative_to_line_001.png b/_images/sphx_glr_text_rotation_relative_to_line_001.png deleted file mode 120000 index 8a6a37d124b..00000000000 --- a/_images/sphx_glr_text_rotation_relative_to_line_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_rotation_relative_to_line_001.png \ No newline at end of file diff --git a/_images/sphx_glr_text_rotation_relative_to_line_001_2_0x.png b/_images/sphx_glr_text_rotation_relative_to_line_001_2_0x.png deleted file mode 120000 index 3e973717ab9..00000000000 --- a/_images/sphx_glr_text_rotation_relative_to_line_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_rotation_relative_to_line_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_text_rotation_relative_to_line_thumb.png b/_images/sphx_glr_text_rotation_relative_to_line_thumb.png deleted file mode 120000 index 7b440f5209c..00000000000 --- a/_images/sphx_glr_text_rotation_relative_to_line_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_rotation_relative_to_line_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_text_rotation_thumb.png b/_images/sphx_glr_text_rotation_thumb.png deleted file mode 120000 index 517b71c125e..00000000000 --- a/_images/sphx_glr_text_rotation_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_text_rotation_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_textbox_001.png b/_images/sphx_glr_textbox_001.png deleted file mode 120000 index 08ff9de6ca5..00000000000 --- a/_images/sphx_glr_textbox_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_textbox_001.png \ No newline at end of file diff --git a/_images/sphx_glr_textbox_001_2_0x.png b/_images/sphx_glr_textbox_001_2_0x.png deleted file mode 120000 index 256cfb2100f..00000000000 --- a/_images/sphx_glr_textbox_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_textbox_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_textbox_thumb.png b/_images/sphx_glr_textbox_thumb.png deleted file mode 120000 index b92fde10c20..00000000000 --- a/_images/sphx_glr_textbox_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_textbox_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-formatters_001.png b/_images/sphx_glr_tick-formatters_001.png deleted file mode 120000 index 978b39acc26..00000000000 --- a/_images/sphx_glr_tick-formatters_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-formatters_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-formatters_001_2_0x.png b/_images/sphx_glr_tick-formatters_001_2_0x.png deleted file mode 120000 index 7035a897823..00000000000 --- a/_images/sphx_glr_tick-formatters_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-formatters_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-formatters_002.png b/_images/sphx_glr_tick-formatters_002.png deleted file mode 120000 index 95797849a16..00000000000 --- a/_images/sphx_glr_tick-formatters_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-formatters_002.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-formatters_002_2_0x.png b/_images/sphx_glr_tick-formatters_002_2_0x.png deleted file mode 120000 index 2de0bb9c0f4..00000000000 --- a/_images/sphx_glr_tick-formatters_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-formatters_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-formatters_thumb.png b/_images/sphx_glr_tick-formatters_thumb.png deleted file mode 120000 index 394c238ff2b..00000000000 --- a/_images/sphx_glr_tick-formatters_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-formatters_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-locators_001.png b/_images/sphx_glr_tick-locators_001.png deleted file mode 120000 index e30dbca62f7..00000000000 --- a/_images/sphx_glr_tick-locators_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-locators_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-locators_001_2_0x.png b/_images/sphx_glr_tick-locators_001_2_0x.png deleted file mode 120000 index 27791d751fc..00000000000 --- a/_images/sphx_glr_tick-locators_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-locators_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tick-locators_thumb.png b/_images/sphx_glr_tick-locators_thumb.png deleted file mode 120000 index 838a300caf3..00000000000 --- a/_images/sphx_glr_tick-locators_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick-locators_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_label_right_001.png b/_images/sphx_glr_tick_label_right_001.png deleted file mode 120000 index 0e11e0442a5..00000000000 --- a/_images/sphx_glr_tick_label_right_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_label_right_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_label_right_001_2_0x.png b/_images/sphx_glr_tick_label_right_001_2_0x.png deleted file mode 120000 index 85f4a6dfa45..00000000000 --- a/_images/sphx_glr_tick_label_right_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_label_right_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_label_right_thumb.png b/_images/sphx_glr_tick_label_right_thumb.png deleted file mode 120000 index 6988b2dfedc..00000000000 --- a/_images/sphx_glr_tick_label_right_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_label_right_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_labels_from_values_001.png b/_images/sphx_glr_tick_labels_from_values_001.png deleted file mode 120000 index 5124b1a493e..00000000000 --- a/_images/sphx_glr_tick_labels_from_values_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_labels_from_values_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_labels_from_values_001_2_0x.png b/_images/sphx_glr_tick_labels_from_values_001_2_0x.png deleted file mode 120000 index 93640cce800..00000000000 --- a/_images/sphx_glr_tick_labels_from_values_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_labels_from_values_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_labels_from_values_thumb.png b/_images/sphx_glr_tick_labels_from_values_thumb.png deleted file mode 120000 index 2308d87a7cd..00000000000 --- a/_images/sphx_glr_tick_labels_from_values_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_labels_from_values_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_xlabel_top_001.png b/_images/sphx_glr_tick_xlabel_top_001.png deleted file mode 120000 index a7e16a3c5f7..00000000000 --- a/_images/sphx_glr_tick_xlabel_top_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_xlabel_top_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_xlabel_top_001_2_0x.png b/_images/sphx_glr_tick_xlabel_top_001_2_0x.png deleted file mode 120000 index 3a6bcc1d332..00000000000 --- a/_images/sphx_glr_tick_xlabel_top_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_xlabel_top_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tick_xlabel_top_thumb.png b/_images/sphx_glr_tick_xlabel_top_thumb.png deleted file mode 120000 index 5f3286c2da9..00000000000 --- a/_images/sphx_glr_tick_xlabel_top_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tick_xlabel_top_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tickedstroke_demo_001.png b/_images/sphx_glr_tickedstroke_demo_001.png deleted file mode 120000 index 2e8f4ce49f5..00000000000 --- a/_images/sphx_glr_tickedstroke_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tickedstroke_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tickedstroke_demo_001_2_0x.png b/_images/sphx_glr_tickedstroke_demo_001_2_0x.png deleted file mode 120000 index 72d13dfcfab..00000000000 --- a/_images/sphx_glr_tickedstroke_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tickedstroke_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tickedstroke_demo_002.png b/_images/sphx_glr_tickedstroke_demo_002.png deleted file mode 120000 index 87c14b192fd..00000000000 --- a/_images/sphx_glr_tickedstroke_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tickedstroke_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_tickedstroke_demo_002_2_0x.png b/_images/sphx_glr_tickedstroke_demo_002_2_0x.png deleted file mode 120000 index 664c1f7b740..00000000000 --- a/_images/sphx_glr_tickedstroke_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tickedstroke_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tickedstroke_demo_003.png b/_images/sphx_glr_tickedstroke_demo_003.png deleted file mode 120000 index 38cd4cb0171..00000000000 --- a/_images/sphx_glr_tickedstroke_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tickedstroke_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_tickedstroke_demo_003_2_0x.png b/_images/sphx_glr_tickedstroke_demo_003_2_0x.png deleted file mode 120000 index 3aaa41f25b4..00000000000 --- a/_images/sphx_glr_tickedstroke_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tickedstroke_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tickedstroke_demo_thumb.png b/_images/sphx_glr_tickedstroke_demo_thumb.png deleted file mode 120000 index f13a02408f0..00000000000 --- a/_images/sphx_glr_tickedstroke_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tickedstroke_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_ticklabels_rotation_001.png b/_images/sphx_glr_ticklabels_rotation_001.png deleted file mode 120000 index 6ebce7a8546..00000000000 --- a/_images/sphx_glr_ticklabels_rotation_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ticklabels_rotation_001.png \ No newline at end of file diff --git a/_images/sphx_glr_ticklabels_rotation_001_2_0x.png b/_images/sphx_glr_ticklabels_rotation_001_2_0x.png deleted file mode 120000 index 95c378ac9a9..00000000000 --- a/_images/sphx_glr_ticklabels_rotation_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ticklabels_rotation_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_ticklabels_rotation_thumb.png b/_images/sphx_glr_ticklabels_rotation_thumb.png deleted file mode 120000 index 7a6da37faff..00000000000 --- a/_images/sphx_glr_ticklabels_rotation_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_ticklabels_rotation_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_bbox_test_001.png b/_images/sphx_glr_tight_bbox_test_001.png deleted file mode 120000 index 536897680fc..00000000000 --- a/_images/sphx_glr_tight_bbox_test_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_tight_bbox_test_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_bbox_test_thumb.png b/_images/sphx_glr_tight_bbox_test_thumb.png deleted file mode 120000 index f5f0b1442f1..00000000000 --- a/_images/sphx_glr_tight_bbox_test_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_tight_bbox_test_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_001.png b/_images/sphx_glr_tight_layout_guide_001.png deleted file mode 120000 index 3e478ba174d..00000000000 --- a/_images/sphx_glr_tight_layout_guide_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_001_2_0x.png b/_images/sphx_glr_tight_layout_guide_001_2_0x.png deleted file mode 120000 index 5fe99a8c782..00000000000 --- a/_images/sphx_glr_tight_layout_guide_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_002.png b/_images/sphx_glr_tight_layout_guide_002.png deleted file mode 120000 index 39b1bddbc64..00000000000 --- a/_images/sphx_glr_tight_layout_guide_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_002.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_002_2_0x.png b/_images/sphx_glr_tight_layout_guide_002_2_0x.png deleted file mode 120000 index 624f3a5281e..00000000000 --- a/_images/sphx_glr_tight_layout_guide_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_003.png b/_images/sphx_glr_tight_layout_guide_003.png deleted file mode 120000 index 87e40df5a33..00000000000 --- a/_images/sphx_glr_tight_layout_guide_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_003.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_003_2_0x.png b/_images/sphx_glr_tight_layout_guide_003_2_0x.png deleted file mode 120000 index dfc33d487de..00000000000 --- a/_images/sphx_glr_tight_layout_guide_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_004.png b/_images/sphx_glr_tight_layout_guide_004.png deleted file mode 120000 index 9de3334bc8d..00000000000 --- a/_images/sphx_glr_tight_layout_guide_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_004.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_004_2_0x.png b/_images/sphx_glr_tight_layout_guide_004_2_0x.png deleted file mode 120000 index 5e4cfdc79a5..00000000000 --- a/_images/sphx_glr_tight_layout_guide_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_005.png b/_images/sphx_glr_tight_layout_guide_005.png deleted file mode 120000 index 9e6746cfe7f..00000000000 --- a/_images/sphx_glr_tight_layout_guide_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_005.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_005_2_0x.png b/_images/sphx_glr_tight_layout_guide_005_2_0x.png deleted file mode 120000 index 563e51701ae..00000000000 --- a/_images/sphx_glr_tight_layout_guide_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_006.png b/_images/sphx_glr_tight_layout_guide_006.png deleted file mode 120000 index 02785d5628c..00000000000 --- a/_images/sphx_glr_tight_layout_guide_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_006.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_006_2_0x.png b/_images/sphx_glr_tight_layout_guide_006_2_0x.png deleted file mode 120000 index 0da49e178eb..00000000000 --- a/_images/sphx_glr_tight_layout_guide_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_007.png b/_images/sphx_glr_tight_layout_guide_007.png deleted file mode 120000 index 7c9c78bfdd3..00000000000 --- a/_images/sphx_glr_tight_layout_guide_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_007.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_007_2_0x.png b/_images/sphx_glr_tight_layout_guide_007_2_0x.png deleted file mode 120000 index 0f6d34bc856..00000000000 --- a/_images/sphx_glr_tight_layout_guide_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_008.png b/_images/sphx_glr_tight_layout_guide_008.png deleted file mode 120000 index 5f80b9ae50c..00000000000 --- a/_images/sphx_glr_tight_layout_guide_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_008.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_008_2_0x.png b/_images/sphx_glr_tight_layout_guide_008_2_0x.png deleted file mode 120000 index 82caf17f4ac..00000000000 --- a/_images/sphx_glr_tight_layout_guide_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_009.png b/_images/sphx_glr_tight_layout_guide_009.png deleted file mode 120000 index 686c54f4318..00000000000 --- a/_images/sphx_glr_tight_layout_guide_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_009.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_009_2_0x.png b/_images/sphx_glr_tight_layout_guide_009_2_0x.png deleted file mode 120000 index c864b8c1848..00000000000 --- a/_images/sphx_glr_tight_layout_guide_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_010.png b/_images/sphx_glr_tight_layout_guide_010.png deleted file mode 120000 index 5e1ecd8c4f6..00000000000 --- a/_images/sphx_glr_tight_layout_guide_010.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_010.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_010_2_0x.png b/_images/sphx_glr_tight_layout_guide_010_2_0x.png deleted file mode 120000 index 066631c707d..00000000000 --- a/_images/sphx_glr_tight_layout_guide_010_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_010_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_011.png b/_images/sphx_glr_tight_layout_guide_011.png deleted file mode 120000 index cc796c8929a..00000000000 --- a/_images/sphx_glr_tight_layout_guide_011.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_011.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_011_2_0x.png b/_images/sphx_glr_tight_layout_guide_011_2_0x.png deleted file mode 120000 index 0ae0aeef8e4..00000000000 --- a/_images/sphx_glr_tight_layout_guide_011_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_011_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_012.png b/_images/sphx_glr_tight_layout_guide_012.png deleted file mode 120000 index fc8755fa8c3..00000000000 --- a/_images/sphx_glr_tight_layout_guide_012.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_012.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_012_2_0x.png b/_images/sphx_glr_tight_layout_guide_012_2_0x.png deleted file mode 120000 index 35e86d90357..00000000000 --- a/_images/sphx_glr_tight_layout_guide_012_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_012_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_013.png b/_images/sphx_glr_tight_layout_guide_013.png deleted file mode 120000 index 6c247469a1c..00000000000 --- a/_images/sphx_glr_tight_layout_guide_013.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_013.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_013_2_0x.png b/_images/sphx_glr_tight_layout_guide_013_2_0x.png deleted file mode 120000 index 8321d982ac4..00000000000 --- a/_images/sphx_glr_tight_layout_guide_013_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_013_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_014.png b/_images/sphx_glr_tight_layout_guide_014.png deleted file mode 120000 index 9fbab9ea447..00000000000 --- a/_images/sphx_glr_tight_layout_guide_014.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_014.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_014_2_0x.png b/_images/sphx_glr_tight_layout_guide_014_2_0x.png deleted file mode 120000 index cf06163f93c..00000000000 --- a/_images/sphx_glr_tight_layout_guide_014_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_014_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_015.png b/_images/sphx_glr_tight_layout_guide_015.png deleted file mode 120000 index 069440a6383..00000000000 --- a/_images/sphx_glr_tight_layout_guide_015.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_015.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_015_2_0x.png b/_images/sphx_glr_tight_layout_guide_015_2_0x.png deleted file mode 120000 index dac7801a68d..00000000000 --- a/_images/sphx_glr_tight_layout_guide_015_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_015_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_016.png b/_images/sphx_glr_tight_layout_guide_016.png deleted file mode 120000 index 5745ece3368..00000000000 --- a/_images/sphx_glr_tight_layout_guide_016.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_tight_layout_guide_016.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_017.png b/_images/sphx_glr_tight_layout_guide_017.png deleted file mode 120000 index c910b0bc746..00000000000 --- a/_images/sphx_glr_tight_layout_guide_017.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/sphx_glr_tight_layout_guide_017.png \ No newline at end of file diff --git a/_images/sphx_glr_tight_layout_guide_thumb.png b/_images/sphx_glr_tight_layout_guide_thumb.png deleted file mode 120000 index 00d2676b0fd..00000000000 --- a/_images/sphx_glr_tight_layout_guide_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tight_layout_guide_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_time_series_histogram_001.png b/_images/sphx_glr_time_series_histogram_001.png deleted file mode 120000 index 9172c249c3c..00000000000 --- a/_images/sphx_glr_time_series_histogram_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_time_series_histogram_001.png \ No newline at end of file diff --git a/_images/sphx_glr_time_series_histogram_001_2_0x.png b/_images/sphx_glr_time_series_histogram_001_2_0x.png deleted file mode 120000 index 78e1cb2bad6..00000000000 --- a/_images/sphx_glr_time_series_histogram_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_time_series_histogram_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_time_series_histogram_thumb.png b/_images/sphx_glr_time_series_histogram_thumb.png deleted file mode 120000 index 88ab0eecb02..00000000000 --- a/_images/sphx_glr_time_series_histogram_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_time_series_histogram_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_timeline_001.png b/_images/sphx_glr_timeline_001.png deleted file mode 120000 index 34fc0ba4fdc..00000000000 --- a/_images/sphx_glr_timeline_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_timeline_001.png \ No newline at end of file diff --git a/_images/sphx_glr_timeline_001_2_0x.png b/_images/sphx_glr_timeline_001_2_0x.png deleted file mode 120000 index 23056804a5d..00000000000 --- a/_images/sphx_glr_timeline_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_timeline_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_timeline_thumb.png b/_images/sphx_glr_timeline_thumb.png deleted file mode 120000 index c6cb5672240..00000000000 --- a/_images/sphx_glr_timeline_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_timeline_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_timers_001.png b/_images/sphx_glr_timers_001.png deleted file mode 120000 index c0475769a6b..00000000000 --- a/_images/sphx_glr_timers_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_timers_001.png \ No newline at end of file diff --git a/_images/sphx_glr_timers_001_2_0x.png b/_images/sphx_glr_timers_001_2_0x.png deleted file mode 120000 index 3d645543ae7..00000000000 --- a/_images/sphx_glr_timers_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_timers_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_timers_thumb.png b/_images/sphx_glr_timers_thumb.png deleted file mode 120000 index 05d2dd481e5..00000000000 --- a/_images/sphx_glr_timers_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_timers_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_titles_demo_001.png b/_images/sphx_glr_titles_demo_001.png deleted file mode 120000 index 5d34031c5f0..00000000000 --- a/_images/sphx_glr_titles_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_titles_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_titles_demo_001_2_0x.png b/_images/sphx_glr_titles_demo_001_2_0x.png deleted file mode 120000 index 7807a664a95..00000000000 --- a/_images/sphx_glr_titles_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_titles_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_titles_demo_002.png b/_images/sphx_glr_titles_demo_002.png deleted file mode 120000 index 790bbfa0236..00000000000 --- a/_images/sphx_glr_titles_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_titles_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_titles_demo_002_2_0x.png b/_images/sphx_glr_titles_demo_002_2_0x.png deleted file mode 120000 index 7953fa24f75..00000000000 --- a/_images/sphx_glr_titles_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_titles_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_titles_demo_003.png b/_images/sphx_glr_titles_demo_003.png deleted file mode 120000 index 9758ef315d9..00000000000 --- a/_images/sphx_glr_titles_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_titles_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_titles_demo_003_2_0x.png b/_images/sphx_glr_titles_demo_003_2_0x.png deleted file mode 120000 index 49c1cf8abf7..00000000000 --- a/_images/sphx_glr_titles_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_titles_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_titles_demo_thumb.png b/_images/sphx_glr_titles_demo_thumb.png deleted file mode 120000 index ed3cd39d31d..00000000000 --- a/_images/sphx_glr_titles_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_titles_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_toolmanager_sgskip_thumb.png b/_images/sphx_glr_toolmanager_sgskip_thumb.png deleted file mode 120000 index 878fcd817a5..00000000000 --- a/_images/sphx_glr_toolmanager_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_toolmanager_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_topographic_hillshading_001.png b/_images/sphx_glr_topographic_hillshading_001.png deleted file mode 120000 index c08d57ff773..00000000000 --- a/_images/sphx_glr_topographic_hillshading_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_topographic_hillshading_001.png \ No newline at end of file diff --git a/_images/sphx_glr_topographic_hillshading_001_2_0x.png b/_images/sphx_glr_topographic_hillshading_001_2_0x.png deleted file mode 120000 index 8b75f078eb5..00000000000 --- a/_images/sphx_glr_topographic_hillshading_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_topographic_hillshading_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_topographic_hillshading_thumb.png b/_images/sphx_glr_topographic_hillshading_thumb.png deleted file mode 120000 index 5bcd0b4a22d..00000000000 --- a/_images/sphx_glr_topographic_hillshading_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_topographic_hillshading_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_001.png b/_images/sphx_glr_transforms_tutorial_001.png deleted file mode 120000 index 999ffa29d96..00000000000 --- a/_images/sphx_glr_transforms_tutorial_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_001.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_001_2_0x.png b/_images/sphx_glr_transforms_tutorial_001_2_0x.png deleted file mode 120000 index 97111c6443a..00000000000 --- a/_images/sphx_glr_transforms_tutorial_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_002.png b/_images/sphx_glr_transforms_tutorial_002.png deleted file mode 120000 index 7435c340944..00000000000 --- a/_images/sphx_glr_transforms_tutorial_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_002.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_002_2_0x.png b/_images/sphx_glr_transforms_tutorial_002_2_0x.png deleted file mode 120000 index 82c43f8e603..00000000000 --- a/_images/sphx_glr_transforms_tutorial_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_003.png b/_images/sphx_glr_transforms_tutorial_003.png deleted file mode 120000 index 0c832adc0b1..00000000000 --- a/_images/sphx_glr_transforms_tutorial_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_003.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_003_2_0x.png b/_images/sphx_glr_transforms_tutorial_003_2_0x.png deleted file mode 120000 index 42f39faa2be..00000000000 --- a/_images/sphx_glr_transforms_tutorial_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_004.png b/_images/sphx_glr_transforms_tutorial_004.png deleted file mode 120000 index 67a9e604191..00000000000 --- a/_images/sphx_glr_transforms_tutorial_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_004.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_004_2_0x.png b/_images/sphx_glr_transforms_tutorial_004_2_0x.png deleted file mode 120000 index 104dbe42191..00000000000 --- a/_images/sphx_glr_transforms_tutorial_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_005.png b/_images/sphx_glr_transforms_tutorial_005.png deleted file mode 120000 index 3697eb05deb..00000000000 --- a/_images/sphx_glr_transforms_tutorial_005.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_005.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_005_2_0x.png b/_images/sphx_glr_transforms_tutorial_005_2_0x.png deleted file mode 120000 index 4e4335a41f7..00000000000 --- a/_images/sphx_glr_transforms_tutorial_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_006.png b/_images/sphx_glr_transforms_tutorial_006.png deleted file mode 120000 index 519bb1fc8f8..00000000000 --- a/_images/sphx_glr_transforms_tutorial_006.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_006.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_006_2_0x.png b/_images/sphx_glr_transforms_tutorial_006_2_0x.png deleted file mode 120000 index ad334c6eb4c..00000000000 --- a/_images/sphx_glr_transforms_tutorial_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_007.png b/_images/sphx_glr_transforms_tutorial_007.png deleted file mode 120000 index 279d9b7bd78..00000000000 --- a/_images/sphx_glr_transforms_tutorial_007.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_007.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_007_2_0x.png b/_images/sphx_glr_transforms_tutorial_007_2_0x.png deleted file mode 120000 index e13116044b7..00000000000 --- a/_images/sphx_glr_transforms_tutorial_007_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_007_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_008.png b/_images/sphx_glr_transforms_tutorial_008.png deleted file mode 120000 index 81a48a1ef26..00000000000 --- a/_images/sphx_glr_transforms_tutorial_008.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_008.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_008_2_0x.png b/_images/sphx_glr_transforms_tutorial_008_2_0x.png deleted file mode 120000 index ba665a8d805..00000000000 --- a/_images/sphx_glr_transforms_tutorial_008_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_008_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_009.png b/_images/sphx_glr_transforms_tutorial_009.png deleted file mode 120000 index 0908871a6be..00000000000 --- a/_images/sphx_glr_transforms_tutorial_009.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_009.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_009_2_0x.png b/_images/sphx_glr_transforms_tutorial_009_2_0x.png deleted file mode 120000 index ec437768ecd..00000000000 --- a/_images/sphx_glr_transforms_tutorial_009_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_009_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transforms_tutorial_thumb.png b/_images/sphx_glr_transforms_tutorial_thumb.png deleted file mode 120000 index 2b353b348b2..00000000000 --- a/_images/sphx_glr_transforms_tutorial_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transforms_tutorial_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_transoffset_001.png b/_images/sphx_glr_transoffset_001.png deleted file mode 120000 index 06ad2f78e58..00000000000 --- a/_images/sphx_glr_transoffset_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transoffset_001.png \ No newline at end of file diff --git a/_images/sphx_glr_transoffset_001_2_0x.png b/_images/sphx_glr_transoffset_001_2_0x.png deleted file mode 120000 index 625d52582b5..00000000000 --- a/_images/sphx_glr_transoffset_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transoffset_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_transoffset_thumb.png b/_images/sphx_glr_transoffset_thumb.png deleted file mode 120000 index 990bf56b919..00000000000 --- a/_images/sphx_glr_transoffset_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_transoffset_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_transparent_legends_001.png b/_images/sphx_glr_transparent_legends_001.png deleted file mode 120000 index 4a5db0b67fd..00000000000 --- a/_images/sphx_glr_transparent_legends_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_transparent_legends_001.png \ No newline at end of file diff --git a/_images/sphx_glr_transparent_legends_thumb.png b/_images/sphx_glr_transparent_legends_thumb.png deleted file mode 120000 index faff3dea9c6..00000000000 --- a/_images/sphx_glr_transparent_legends_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.0.3/_images/sphx_glr_transparent_legends_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour3d_001.png b/_images/sphx_glr_tricontour3d_001.png deleted file mode 120000 index d638bd22429..00000000000 --- a/_images/sphx_glr_tricontour3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour3d_0011.png b/_images/sphx_glr_tricontour3d_0011.png deleted file mode 120000 index 3e7a0e98eea..00000000000 --- a/_images/sphx_glr_tricontour3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_tricontour3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour3d_001_2_0x.png b/_images/sphx_glr_tricontour3d_001_2_0x.png deleted file mode 120000 index 31fbb4ad0c8..00000000000 --- a/_images/sphx_glr_tricontour3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour3d_thumb.png b/_images/sphx_glr_tricontour3d_thumb.png deleted file mode 120000 index 4f4bc7b1ba2..00000000000 --- a/_images/sphx_glr_tricontour3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_001.png b/_images/sphx_glr_tricontour_001.png deleted file mode 120000 index 4ce1487024b..00000000000 --- a/_images/sphx_glr_tricontour_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_001_2_0x.png b/_images/sphx_glr_tricontour_001_2_0x.png deleted file mode 120000 index c4fa409c2e1..00000000000 --- a/_images/sphx_glr_tricontour_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_001.png b/_images/sphx_glr_tricontour_demo_001.png deleted file mode 120000 index 4faa8e3a090..00000000000 --- a/_images/sphx_glr_tricontour_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_001_2_0x.png b/_images/sphx_glr_tricontour_demo_001_2_0x.png deleted file mode 120000 index c404a84eba2..00000000000 --- a/_images/sphx_glr_tricontour_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_002.png b/_images/sphx_glr_tricontour_demo_002.png deleted file mode 120000 index 5bbce1902e2..00000000000 --- a/_images/sphx_glr_tricontour_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_002_2_0x.png b/_images/sphx_glr_tricontour_demo_002_2_0x.png deleted file mode 120000 index 8e20379b2ad..00000000000 --- a/_images/sphx_glr_tricontour_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_003.png b/_images/sphx_glr_tricontour_demo_003.png deleted file mode 120000 index 1269a3492c1..00000000000 --- a/_images/sphx_glr_tricontour_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_003_2_0x.png b/_images/sphx_glr_tricontour_demo_003_2_0x.png deleted file mode 120000 index 7db65533ac8..00000000000 --- a/_images/sphx_glr_tricontour_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_004.png b/_images/sphx_glr_tricontour_demo_004.png deleted file mode 120000 index 90547991945..00000000000 --- a/_images/sphx_glr_tricontour_demo_004.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_004.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_004_2_0x.png b/_images/sphx_glr_tricontour_demo_004_2_0x.png deleted file mode 120000 index b42456c2411..00000000000 --- a/_images/sphx_glr_tricontour_demo_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_demo_thumb.png b/_images/sphx_glr_tricontour_demo_thumb.png deleted file mode 120000 index c38a1bb0a44..00000000000 --- a/_images/sphx_glr_tricontour_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_smooth_delaunay_001.png b/_images/sphx_glr_tricontour_smooth_delaunay_001.png deleted file mode 120000 index 154975ed07c..00000000000 --- a/_images/sphx_glr_tricontour_smooth_delaunay_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_smooth_delaunay_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_smooth_delaunay_001_2_0x.png b/_images/sphx_glr_tricontour_smooth_delaunay_001_2_0x.png deleted file mode 120000 index 4591bb0719b..00000000000 --- a/_images/sphx_glr_tricontour_smooth_delaunay_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_smooth_delaunay_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_smooth_delaunay_thumb.png b/_images/sphx_glr_tricontour_smooth_delaunay_thumb.png deleted file mode 120000 index 9c127b09559..00000000000 --- a/_images/sphx_glr_tricontour_smooth_delaunay_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_smooth_delaunay_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_smooth_user_001.png b/_images/sphx_glr_tricontour_smooth_user_001.png deleted file mode 120000 index 53e0beccb15..00000000000 --- a/_images/sphx_glr_tricontour_smooth_user_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_smooth_user_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_smooth_user_0011.png b/_images/sphx_glr_tricontour_smooth_user_0011.png deleted file mode 120000 index b6b6c686a0b..00000000000 --- a/_images/sphx_glr_tricontour_smooth_user_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_tricontour_smooth_user_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_smooth_user_001_2_0x.png b/_images/sphx_glr_tricontour_smooth_user_001_2_0x.png deleted file mode 120000 index 2a123377e12..00000000000 --- a/_images/sphx_glr_tricontour_smooth_user_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_smooth_user_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_smooth_user_thumb.png b/_images/sphx_glr_tricontour_smooth_user_thumb.png deleted file mode 120000 index 8c6051fac76..00000000000 --- a/_images/sphx_glr_tricontour_smooth_user_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_smooth_user_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_thumb.png b/_images/sphx_glr_tricontour_thumb.png deleted file mode 120000 index 1abdefefc44..00000000000 --- a/_images/sphx_glr_tricontour_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontour_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_vs_griddata_001.png b/_images/sphx_glr_tricontour_vs_griddata_001.png deleted file mode 120000 index e9e59bd1bc1..00000000000 --- a/_images/sphx_glr_tricontour_vs_griddata_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_tricontour_vs_griddata_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontour_vs_griddata_thumb.png b/_images/sphx_glr_tricontour_vs_griddata_thumb.png deleted file mode 120000 index 62612aac510..00000000000 --- a/_images/sphx_glr_tricontour_vs_griddata_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_images/sphx_glr_tricontour_vs_griddata_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontourf3d_001.png b/_images/sphx_glr_tricontourf3d_001.png deleted file mode 120000 index 1e21ce1c869..00000000000 --- a/_images/sphx_glr_tricontourf3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontourf3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontourf3d_001_2_0x.png b/_images/sphx_glr_tricontourf3d_001_2_0x.png deleted file mode 120000 index 5a9f77a6f67..00000000000 --- a/_images/sphx_glr_tricontourf3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontourf3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontourf3d_thumb.png b/_images/sphx_glr_tricontourf3d_thumb.png deleted file mode 120000 index 46ad99e2d0b..00000000000 --- a/_images/sphx_glr_tricontourf3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontourf3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontourf_001.png b/_images/sphx_glr_tricontourf_001.png deleted file mode 120000 index 14f2ae25266..00000000000 --- a/_images/sphx_glr_tricontourf_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontourf_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontourf_001_2_0x.png b/_images/sphx_glr_tricontourf_001_2_0x.png deleted file mode 120000 index 4d2173bf9d0..00000000000 --- a/_images/sphx_glr_tricontourf_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontourf_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tricontourf_thumb.png b/_images/sphx_glr_tricontourf_thumb.png deleted file mode 120000 index 265b4519f48..00000000000 --- a/_images/sphx_glr_tricontourf_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tricontourf_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_trifinder_event_demo_001.png b/_images/sphx_glr_trifinder_event_demo_001.png deleted file mode 120000 index efe73bab2d9..00000000000 --- a/_images/sphx_glr_trifinder_event_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trifinder_event_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_trifinder_event_demo_001_2_0x.png b/_images/sphx_glr_trifinder_event_demo_001_2_0x.png deleted file mode 120000 index fbca04f3d96..00000000000 --- a/_images/sphx_glr_trifinder_event_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trifinder_event_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_trifinder_event_demo_thumb.png b/_images/sphx_glr_trifinder_event_demo_thumb.png deleted file mode 120000 index a64f4ad63cf..00000000000 --- a/_images/sphx_glr_trifinder_event_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trifinder_event_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_trigradient_demo_001.png b/_images/sphx_glr_trigradient_demo_001.png deleted file mode 120000 index 9334cb6c623..00000000000 --- a/_images/sphx_glr_trigradient_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trigradient_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_trigradient_demo_001_2_0x.png b/_images/sphx_glr_trigradient_demo_001_2_0x.png deleted file mode 120000 index 525e6d7e98d..00000000000 --- a/_images/sphx_glr_trigradient_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trigradient_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_trigradient_demo_thumb.png b/_images/sphx_glr_trigradient_demo_thumb.png deleted file mode 120000 index 27a5b7ba49f..00000000000 --- a/_images/sphx_glr_trigradient_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trigradient_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_triinterp_demo_001.png b/_images/sphx_glr_triinterp_demo_001.png deleted file mode 120000 index a685eb2b53a..00000000000 --- a/_images/sphx_glr_triinterp_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triinterp_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_triinterp_demo_001_2_0x.png b/_images/sphx_glr_triinterp_demo_001_2_0x.png deleted file mode 120000 index acd82c16e54..00000000000 --- a/_images/sphx_glr_triinterp_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triinterp_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_triinterp_demo_thumb.png b/_images/sphx_glr_triinterp_demo_thumb.png deleted file mode 120000 index feb7ccfc2a2..00000000000 --- a/_images/sphx_glr_triinterp_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triinterp_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_001.png b/_images/sphx_glr_tripcolor_001.png deleted file mode 120000 index 45ad709a9e9..00000000000 --- a/_images/sphx_glr_tripcolor_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_001_2_0x.png b/_images/sphx_glr_tripcolor_001_2_0x.png deleted file mode 120000 index 8d2aee56fe5..00000000000 --- a/_images/sphx_glr_tripcolor_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_001.png b/_images/sphx_glr_tripcolor_demo_001.png deleted file mode 120000 index 521b10d9576..00000000000 --- a/_images/sphx_glr_tripcolor_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_0011.png b/_images/sphx_glr_tripcolor_demo_0011.png deleted file mode 120000 index 0569c2edf31..00000000000 --- a/_images/sphx_glr_tripcolor_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_tripcolor_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_001_2_0x.png b/_images/sphx_glr_tripcolor_demo_001_2_0x.png deleted file mode 120000 index 051c2b3215f..00000000000 --- a/_images/sphx_glr_tripcolor_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_002.png b/_images/sphx_glr_tripcolor_demo_002.png deleted file mode 120000 index c5b8d4abc90..00000000000 --- a/_images/sphx_glr_tripcolor_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_002_2_0x.png b/_images/sphx_glr_tripcolor_demo_002_2_0x.png deleted file mode 120000 index 27bb20d0bf0..00000000000 --- a/_images/sphx_glr_tripcolor_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_003.png b/_images/sphx_glr_tripcolor_demo_003.png deleted file mode 120000 index 716353db92f..00000000000 --- a/_images/sphx_glr_tripcolor_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_demo_003.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_003_2_0x.png b/_images/sphx_glr_tripcolor_demo_003_2_0x.png deleted file mode 120000 index fb38a8f03d8..00000000000 --- a/_images/sphx_glr_tripcolor_demo_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_demo_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_demo_thumb.png b/_images/sphx_glr_tripcolor_demo_thumb.png deleted file mode 120000 index 17cdb57279c..00000000000 --- a/_images/sphx_glr_tripcolor_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_tripcolor_thumb.png b/_images/sphx_glr_tripcolor_thumb.png deleted file mode 120000 index 497f61c701d..00000000000 --- a/_images/sphx_glr_tripcolor_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_tripcolor_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_001.png b/_images/sphx_glr_triplot_001.png deleted file mode 120000 index 7f9feb0f453..00000000000 --- a/_images/sphx_glr_triplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_001_2_0x.png b/_images/sphx_glr_triplot_001_2_0x.png deleted file mode 120000 index 4dbe22951b0..00000000000 --- a/_images/sphx_glr_triplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_demo_001.png b/_images/sphx_glr_triplot_demo_001.png deleted file mode 120000 index 362b36454b6..00000000000 --- a/_images/sphx_glr_triplot_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_demo_0011.png b/_images/sphx_glr_triplot_demo_0011.png deleted file mode 120000 index 6d8ad7f4d9f..00000000000 --- a/_images/sphx_glr_triplot_demo_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_triplot_demo_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_demo_001_2_0x.png b/_images/sphx_glr_triplot_demo_001_2_0x.png deleted file mode 120000 index a7287739b8e..00000000000 --- a/_images/sphx_glr_triplot_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_demo_002.png b/_images/sphx_glr_triplot_demo_002.png deleted file mode 120000 index 5be7024f499..00000000000 --- a/_images/sphx_glr_triplot_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_demo_002_2_0x.png b/_images/sphx_glr_triplot_demo_002_2_0x.png deleted file mode 120000 index c01d7ef4814..00000000000 --- a/_images/sphx_glr_triplot_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_demo_thumb.png b/_images/sphx_glr_triplot_demo_thumb.png deleted file mode 120000 index 166849a7905..00000000000 --- a/_images/sphx_glr_triplot_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_triplot_thumb.png b/_images/sphx_glr_triplot_thumb.png deleted file mode 120000 index a5c1940e921..00000000000 --- a/_images/sphx_glr_triplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_triplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_001.png b/_images/sphx_glr_trisurf3d_001.png deleted file mode 120000 index 232bba18a97..00000000000 --- a/_images/sphx_glr_trisurf3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trisurf3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_0011.png b/_images/sphx_glr_trisurf3d_0011.png deleted file mode 120000 index 78051b0bf62..00000000000 --- a/_images/sphx_glr_trisurf3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_trisurf3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_0012.png b/_images/sphx_glr_trisurf3d_0012.png deleted file mode 120000 index 8dbd4cb6b63..00000000000 --- a/_images/sphx_glr_trisurf3d_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_trisurf3d_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_001_2_0x.png b/_images/sphx_glr_trisurf3d_001_2_0x.png deleted file mode 120000 index 3211e9f8236..00000000000 --- a/_images/sphx_glr_trisurf3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trisurf3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_2_001.png b/_images/sphx_glr_trisurf3d_2_001.png deleted file mode 120000 index c5b7e38c23d..00000000000 --- a/_images/sphx_glr_trisurf3d_2_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trisurf3d_2_001.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_2_001_2_0x.png b/_images/sphx_glr_trisurf3d_2_001_2_0x.png deleted file mode 120000 index 730b46edac6..00000000000 --- a/_images/sphx_glr_trisurf3d_2_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trisurf3d_2_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_2_thumb.png b/_images/sphx_glr_trisurf3d_2_thumb.png deleted file mode 120000 index 3c7ef608a78..00000000000 --- a/_images/sphx_glr_trisurf3d_2_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trisurf3d_2_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_trisurf3d_thumb.png b/_images/sphx_glr_trisurf3d_thumb.png deleted file mode 120000 index 82ee78c25b3..00000000000 --- a/_images/sphx_glr_trisurf3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_trisurf3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_two_scales_001.png b/_images/sphx_glr_two_scales_001.png deleted file mode 120000 index fa76078ab48..00000000000 --- a/_images/sphx_glr_two_scales_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_two_scales_001.png \ No newline at end of file diff --git a/_images/sphx_glr_two_scales_001_2_0x.png b/_images/sphx_glr_two_scales_001_2_0x.png deleted file mode 120000 index 3455b6ef444..00000000000 --- a/_images/sphx_glr_two_scales_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_two_scales_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_two_scales_thumb.png b/_images/sphx_glr_two_scales_thumb.png deleted file mode 120000 index 2c81460516f..00000000000 --- a/_images/sphx_glr_two_scales_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_two_scales_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_unchained_001.png b/_images/sphx_glr_unchained_001.png deleted file mode 120000 index 656754d6ae2..00000000000 --- a/_images/sphx_glr_unchained_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_unchained_001.png \ No newline at end of file diff --git a/_images/sphx_glr_unchained_thumb.gif b/_images/sphx_glr_unchained_thumb.gif deleted file mode 120000 index e72128499e2..00000000000 --- a/_images/sphx_glr_unchained_thumb.gif +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_unchained_thumb.gif \ No newline at end of file diff --git a/_images/sphx_glr_unchained_thumb.png b/_images/sphx_glr_unchained_thumb.png deleted file mode 120000 index b1de02530db..00000000000 --- a/_images/sphx_glr_unchained_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_unchained_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_unicode_minus_001.png b/_images/sphx_glr_unicode_minus_001.png deleted file mode 120000 index 2a6b34cdf9b..00000000000 --- a/_images/sphx_glr_unicode_minus_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_unicode_minus_001.png \ No newline at end of file diff --git a/_images/sphx_glr_unicode_minus_001_2_0x.png b/_images/sphx_glr_unicode_minus_001_2_0x.png deleted file mode 120000 index 3e299102fc3..00000000000 --- a/_images/sphx_glr_unicode_minus_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_unicode_minus_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_unicode_minus_thumb.png b/_images/sphx_glr_unicode_minus_thumb.png deleted file mode 120000 index f98942f2e5f..00000000000 --- a/_images/sphx_glr_unicode_minus_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_unicode_minus_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_units_sample_001.png b/_images/sphx_glr_units_sample_001.png deleted file mode 120000 index d33384366b4..00000000000 --- a/_images/sphx_glr_units_sample_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_units_sample_001.png \ No newline at end of file diff --git a/_images/sphx_glr_units_sample_001_2_0x.png b/_images/sphx_glr_units_sample_001_2_0x.png deleted file mode 120000 index 4cf89c7ec3e..00000000000 --- a/_images/sphx_glr_units_sample_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_units_sample_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_units_sample_thumb.png b/_images/sphx_glr_units_sample_thumb.png deleted file mode 120000 index 37a3894d844..00000000000 --- a/_images/sphx_glr_units_sample_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_units_sample_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_units_scatter_001.png b/_images/sphx_glr_units_scatter_001.png deleted file mode 120000 index 19a01e7f220..00000000000 --- a/_images/sphx_glr_units_scatter_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_units_scatter_001.png \ No newline at end of file diff --git a/_images/sphx_glr_units_scatter_001_2_0x.png b/_images/sphx_glr_units_scatter_001_2_0x.png deleted file mode 120000 index ae210a36afb..00000000000 --- a/_images/sphx_glr_units_scatter_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_units_scatter_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_units_scatter_thumb.png b/_images/sphx_glr_units_scatter_thumb.png deleted file mode 120000 index 7be1c9e0cc3..00000000000 --- a/_images/sphx_glr_units_scatter_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_units_scatter_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_001.png b/_images/sphx_glr_usage_001.png deleted file mode 120000 index 707a920562d..00000000000 --- a/_images/sphx_glr_usage_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_001.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_001_2_0x.png b/_images/sphx_glr_usage_001_2_0x.png deleted file mode 120000 index 9e20c81f9df..00000000000 --- a/_images/sphx_glr_usage_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_002.png b/_images/sphx_glr_usage_002.png deleted file mode 120000 index 8518b049920..00000000000 --- a/_images/sphx_glr_usage_002.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_002.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_002_2_0x.png b/_images/sphx_glr_usage_002_2_0x.png deleted file mode 120000 index cb13610f5a3..00000000000 --- a/_images/sphx_glr_usage_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_003.png b/_images/sphx_glr_usage_003.png deleted file mode 120000 index b2d9153bf52..00000000000 --- a/_images/sphx_glr_usage_003.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_003.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_003_2_0x.png b/_images/sphx_glr_usage_003_2_0x.png deleted file mode 120000 index 833efe3e5b9..00000000000 --- a/_images/sphx_glr_usage_003_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_003_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_004.png b/_images/sphx_glr_usage_004.png deleted file mode 120000 index 0e08dcab297..00000000000 --- a/_images/sphx_glr_usage_004.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_004.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_004_2_0x.png b/_images/sphx_glr_usage_004_2_0x.png deleted file mode 120000 index f12f6909ce1..00000000000 --- a/_images/sphx_glr_usage_004_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_004_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_005.png b/_images/sphx_glr_usage_005.png deleted file mode 120000 index 9a85a476872..00000000000 --- a/_images/sphx_glr_usage_005.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_005.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_005_2_0x.png b/_images/sphx_glr_usage_005_2_0x.png deleted file mode 120000 index f17e74e23c3..00000000000 --- a/_images/sphx_glr_usage_005_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_005_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_006.png b/_images/sphx_glr_usage_006.png deleted file mode 120000 index 336e82c712f..00000000000 --- a/_images/sphx_glr_usage_006.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_006.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_006_2_0x.png b/_images/sphx_glr_usage_006_2_0x.png deleted file mode 120000 index ddcae817d5f..00000000000 --- a/_images/sphx_glr_usage_006_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_006_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_007.png b/_images/sphx_glr_usage_007.png deleted file mode 120000 index 58908de5df8..00000000000 --- a/_images/sphx_glr_usage_007.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_007.png \ No newline at end of file diff --git a/_images/sphx_glr_usage_thumb.png b/_images/sphx_glr_usage_thumb.png deleted file mode 120000 index c840a347159..00000000000 --- a/_images/sphx_glr_usage_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_images/sphx_glr_usage_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_baseline_test_001.png b/_images/sphx_glr_usetex_baseline_test_001.png deleted file mode 120000 index 094feae51b7..00000000000 --- a/_images/sphx_glr_usetex_baseline_test_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_usetex_baseline_test_001.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_baseline_test_001_2_0x.png b/_images/sphx_glr_usetex_baseline_test_001_2_0x.png deleted file mode 120000 index d4ecd8435f3..00000000000 --- a/_images/sphx_glr_usetex_baseline_test_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_usetex_baseline_test_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_baseline_test_thumb.png b/_images/sphx_glr_usetex_baseline_test_thumb.png deleted file mode 120000 index 7e275f85045..00000000000 --- a/_images/sphx_glr_usetex_baseline_test_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_usetex_baseline_test_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_demo_001.png b/_images/sphx_glr_usetex_demo_001.png deleted file mode 120000 index 0fa74185091..00000000000 --- a/_images/sphx_glr_usetex_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_usetex_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_demo_thumb.png b/_images/sphx_glr_usetex_demo_thumb.png deleted file mode 120000 index 82533ab8b5b..00000000000 --- a/_images/sphx_glr_usetex_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/sphx_glr_usetex_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_fonteffects_001.png b/_images/sphx_glr_usetex_fonteffects_001.png deleted file mode 120000 index 45a3ef5098f..00000000000 --- a/_images/sphx_glr_usetex_fonteffects_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_usetex_fonteffects_001.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_fonteffects_001_2_0x.png b/_images/sphx_glr_usetex_fonteffects_001_2_0x.png deleted file mode 120000 index ba7be9ba920..00000000000 --- a/_images/sphx_glr_usetex_fonteffects_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_usetex_fonteffects_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_fonteffects_thumb.png b/_images/sphx_glr_usetex_fonteffects_thumb.png deleted file mode 120000 index bfc6178413e..00000000000 --- a/_images/sphx_glr_usetex_fonteffects_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_usetex_fonteffects_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_usetex_thumb.png b/_images/sphx_glr_usetex_thumb.png deleted file mode 120000 index 017c34d453c..00000000000 --- a/_images/sphx_glr_usetex_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_usetex_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_viewlims_001.png b/_images/sphx_glr_viewlims_001.png deleted file mode 120000 index e5436df553f..00000000000 --- a/_images/sphx_glr_viewlims_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_viewlims_001.png \ No newline at end of file diff --git a/_images/sphx_glr_viewlims_001_2_0x.png b/_images/sphx_glr_viewlims_001_2_0x.png deleted file mode 120000 index 04424251321..00000000000 --- a/_images/sphx_glr_viewlims_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_viewlims_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_viewlims_thumb.png b/_images/sphx_glr_viewlims_thumb.png deleted file mode 120000 index f1681cd182f..00000000000 --- a/_images/sphx_glr_viewlims_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_viewlims_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_violin_001.png b/_images/sphx_glr_violin_001.png deleted file mode 120000 index e7621a86467..00000000000 --- a/_images/sphx_glr_violin_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_violin_001.png \ No newline at end of file diff --git a/_images/sphx_glr_violin_001_2_0x.png b/_images/sphx_glr_violin_001_2_0x.png deleted file mode 120000 index 982e90847d2..00000000000 --- a/_images/sphx_glr_violin_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_violin_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_violin_thumb.png b/_images/sphx_glr_violin_thumb.png deleted file mode 120000 index 16e2b0a2be0..00000000000 --- a/_images/sphx_glr_violin_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_violin_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_violinplot_001.png b/_images/sphx_glr_violinplot_001.png deleted file mode 120000 index 92e3718976b..00000000000 --- a/_images/sphx_glr_violinplot_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_violinplot_001.png \ No newline at end of file diff --git a/_images/sphx_glr_violinplot_001_2_0x.png b/_images/sphx_glr_violinplot_001_2_0x.png deleted file mode 120000 index 0255690ed5e..00000000000 --- a/_images/sphx_glr_violinplot_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_violinplot_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_violinplot_thumb.png b/_images/sphx_glr_violinplot_thumb.png deleted file mode 120000 index 6ecf77e575a..00000000000 --- a/_images/sphx_glr_violinplot_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_violinplot_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_vline_hline_demo_001.png b/_images/sphx_glr_vline_hline_demo_001.png deleted file mode 120000 index 53e45028821..00000000000 --- a/_images/sphx_glr_vline_hline_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_vline_hline_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_vline_hline_demo_001_2_0x.png b/_images/sphx_glr_vline_hline_demo_001_2_0x.png deleted file mode 120000 index c920585e0f3..00000000000 --- a/_images/sphx_glr_vline_hline_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_vline_hline_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_vline_hline_demo_thumb.png b/_images/sphx_glr_vline_hline_demo_thumb.png deleted file mode 120000 index 56d38490eee..00000000000 --- a/_images/sphx_glr_vline_hline_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_vline_hline_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_001.png b/_images/sphx_glr_voxels_001.png deleted file mode 120000 index 7a34ff983dc..00000000000 --- a/_images/sphx_glr_voxels_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_001.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_001_2_0x.png b/_images/sphx_glr_voxels_001_2_0x.png deleted file mode 120000 index cd0d73fbbf7..00000000000 --- a/_images/sphx_glr_voxels_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_numpy_logo_001.png b/_images/sphx_glr_voxels_numpy_logo_001.png deleted file mode 120000 index 66b57ea6f33..00000000000 --- a/_images/sphx_glr_voxels_numpy_logo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_numpy_logo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_numpy_logo_001_2_0x.png b/_images/sphx_glr_voxels_numpy_logo_001_2_0x.png deleted file mode 120000 index 7141387b633..00000000000 --- a/_images/sphx_glr_voxels_numpy_logo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_numpy_logo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_numpy_logo_thumb.png b/_images/sphx_glr_voxels_numpy_logo_thumb.png deleted file mode 120000 index 62b2c106d8b..00000000000 --- a/_images/sphx_glr_voxels_numpy_logo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_numpy_logo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_rgb_001.png b/_images/sphx_glr_voxels_rgb_001.png deleted file mode 120000 index 729c0c335f3..00000000000 --- a/_images/sphx_glr_voxels_rgb_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_rgb_001.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_rgb_001_2_0x.png b/_images/sphx_glr_voxels_rgb_001_2_0x.png deleted file mode 120000 index 2fe8d453931..00000000000 --- a/_images/sphx_glr_voxels_rgb_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_rgb_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_rgb_thumb.png b/_images/sphx_glr_voxels_rgb_thumb.png deleted file mode 120000 index 61bab602ddb..00000000000 --- a/_images/sphx_glr_voxels_rgb_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_rgb_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_thumb.png b/_images/sphx_glr_voxels_thumb.png deleted file mode 120000 index 3fd8be702d7..00000000000 --- a/_images/sphx_glr_voxels_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_torus_001.png b/_images/sphx_glr_voxels_torus_001.png deleted file mode 120000 index ed2a853df4d..00000000000 --- a/_images/sphx_glr_voxels_torus_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_torus_001.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_torus_001_2_0x.png b/_images/sphx_glr_voxels_torus_001_2_0x.png deleted file mode 120000 index a127e250a6e..00000000000 --- a/_images/sphx_glr_voxels_torus_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_torus_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_voxels_torus_thumb.png b/_images/sphx_glr_voxels_torus_thumb.png deleted file mode 120000 index a64d567b2b2..00000000000 --- a/_images/sphx_glr_voxels_torus_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_voxels_torus_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_watermark_image_001.png b/_images/sphx_glr_watermark_image_001.png deleted file mode 120000 index 9b7658debde..00000000000 --- a/_images/sphx_glr_watermark_image_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_watermark_image_001.png \ No newline at end of file diff --git a/_images/sphx_glr_watermark_image_001_2_0x.png b/_images/sphx_glr_watermark_image_001_2_0x.png deleted file mode 120000 index 012949b910f..00000000000 --- a/_images/sphx_glr_watermark_image_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_watermark_image_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_watermark_image_thumb.png b/_images/sphx_glr_watermark_image_thumb.png deleted file mode 120000 index 2b377c6c633..00000000000 --- a/_images/sphx_glr_watermark_image_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_watermark_image_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_watermark_text_001.png b/_images/sphx_glr_watermark_text_001.png deleted file mode 120000 index 34f9735bee0..00000000000 --- a/_images/sphx_glr_watermark_text_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_watermark_text_001.png \ No newline at end of file diff --git a/_images/sphx_glr_watermark_text_001_2_0x.png b/_images/sphx_glr_watermark_text_001_2_0x.png deleted file mode 120000 index 9a1c2e64bf8..00000000000 --- a/_images/sphx_glr_watermark_text_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_watermark_text_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_watermark_text_thumb.png b/_images/sphx_glr_watermark_text_thumb.png deleted file mode 120000 index d61a2e913aa..00000000000 --- a/_images/sphx_glr_watermark_text_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_watermark_text_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_web_application_server_sgskip_thumb.png b/_images/sphx_glr_web_application_server_sgskip_thumb.png deleted file mode 120000 index 4a1ccb6db85..00000000000 --- a/_images/sphx_glr_web_application_server_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_web_application_server_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_webapp_demo_sgskip_thumb.png b/_images/sphx_glr_webapp_demo_sgskip_thumb.png deleted file mode 120000 index 66bedcae2e3..00000000000 --- a/_images/sphx_glr_webapp_demo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_webapp_demo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_1_subplot3d_001.png b/_images/sphx_glr_whats_new_1_subplot3d_001.png deleted file mode 120000 index 220884aa445..00000000000 --- a/_images/sphx_glr_whats_new_1_subplot3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_1_subplot3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_1_subplot3d_0011.png b/_images/sphx_glr_whats_new_1_subplot3d_0011.png deleted file mode 120000 index ba3152b20f3..00000000000 --- a/_images/sphx_glr_whats_new_1_subplot3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_1_subplot3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_1_subplot3d_thumb.png b/_images/sphx_glr_whats_new_1_subplot3d_thumb.png deleted file mode 120000 index 4da95085c31..00000000000 --- a/_images/sphx_glr_whats_new_1_subplot3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_1_subplot3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_fancy_001.png b/_images/sphx_glr_whats_new_98_4_fancy_001.png deleted file mode 120000 index a9a2c0ce9a7..00000000000 --- a/_images/sphx_glr_whats_new_98_4_fancy_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_whats_new_98_4_fancy_001.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_fancy_0011.png b/_images/sphx_glr_whats_new_98_4_fancy_0011.png deleted file mode 120000 index 54809fdd329..00000000000 --- a/_images/sphx_glr_whats_new_98_4_fancy_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_whats_new_98_4_fancy_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_fancy_thumb.png b/_images/sphx_glr_whats_new_98_4_fancy_thumb.png deleted file mode 120000 index 874ed74dffc..00000000000 --- a/_images/sphx_glr_whats_new_98_4_fancy_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_images/sphx_glr_whats_new_98_4_fancy_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_fill_between_001.png b/_images/sphx_glr_whats_new_98_4_fill_between_001.png deleted file mode 120000 index 45b4c90dc69..00000000000 --- a/_images/sphx_glr_whats_new_98_4_fill_between_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_98_4_fill_between_001.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_fill_between_0011.png b/_images/sphx_glr_whats_new_98_4_fill_between_0011.png deleted file mode 120000 index a5a42365502..00000000000 --- a/_images/sphx_glr_whats_new_98_4_fill_between_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_98_4_fill_between_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_fill_between_thumb.png b/_images/sphx_glr_whats_new_98_4_fill_between_thumb.png deleted file mode 120000 index 2a5e6e35aca..00000000000 --- a/_images/sphx_glr_whats_new_98_4_fill_between_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_98_4_fill_between_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_legend_001.png b/_images/sphx_glr_whats_new_98_4_legend_001.png deleted file mode 120000 index 6afc3aa95c4..00000000000 --- a/_images/sphx_glr_whats_new_98_4_legend_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_98_4_legend_001.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_legend_0011.png b/_images/sphx_glr_whats_new_98_4_legend_0011.png deleted file mode 120000 index d0aa47681eb..00000000000 --- a/_images/sphx_glr_whats_new_98_4_legend_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_98_4_legend_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_98_4_legend_thumb.png b/_images/sphx_glr_whats_new_98_4_legend_thumb.png deleted file mode 120000 index 690692cded0..00000000000 --- a/_images/sphx_glr_whats_new_98_4_legend_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_98_4_legend_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_axes_grid_001.png b/_images/sphx_glr_whats_new_99_axes_grid_001.png deleted file mode 120000 index c5b3074aac1..00000000000 --- a/_images/sphx_glr_whats_new_99_axes_grid_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_axes_grid_001.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_axes_grid_0011.png b/_images/sphx_glr_whats_new_99_axes_grid_0011.png deleted file mode 120000 index 6cbafe8faa7..00000000000 --- a/_images/sphx_glr_whats_new_99_axes_grid_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_axes_grid_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_axes_grid_thumb.png b/_images/sphx_glr_whats_new_99_axes_grid_thumb.png deleted file mode 120000 index e2a878a0996..00000000000 --- a/_images/sphx_glr_whats_new_99_axes_grid_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_axes_grid_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_mplot3d_001.png b/_images/sphx_glr_whats_new_99_mplot3d_001.png deleted file mode 120000 index d01a9d0002b..00000000000 --- a/_images/sphx_glr_whats_new_99_mplot3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_mplot3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_mplot3d_0011.png b/_images/sphx_glr_whats_new_99_mplot3d_0011.png deleted file mode 120000 index 7ad7d0f11c1..00000000000 --- a/_images/sphx_glr_whats_new_99_mplot3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_mplot3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_mplot3d_thumb.png b/_images/sphx_glr_whats_new_99_mplot3d_thumb.png deleted file mode 120000 index d18d9f681fb..00000000000 --- a/_images/sphx_glr_whats_new_99_mplot3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_mplot3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_spines_001.png b/_images/sphx_glr_whats_new_99_spines_001.png deleted file mode 120000 index a500cd2fa1a..00000000000 --- a/_images/sphx_glr_whats_new_99_spines_001.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_spines_001.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_spines_0011.png b/_images/sphx_glr_whats_new_99_spines_0011.png deleted file mode 120000 index 48fbd2ee454..00000000000 --- a/_images/sphx_glr_whats_new_99_spines_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_spines_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_whats_new_99_spines_thumb.png b/_images/sphx_glr_whats_new_99_spines_thumb.png deleted file mode 120000 index b10279ca65f..00000000000 --- a/_images/sphx_glr_whats_new_99_spines_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_whats_new_99_spines_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_001.png b/_images/sphx_glr_wire3d_001.png deleted file mode 120000 index 3afbedb9228..00000000000 --- a/_images/sphx_glr_wire3d_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wire3d_001.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_0011.png b/_images/sphx_glr_wire3d_0011.png deleted file mode 120000 index ea840a068e3..00000000000 --- a/_images/sphx_glr_wire3d_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_wire3d_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_001_2_0x.png b/_images/sphx_glr_wire3d_001_2_0x.png deleted file mode 120000 index d688119b95a..00000000000 --- a/_images/sphx_glr_wire3d_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wire3d_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_animation_001.png b/_images/sphx_glr_wire3d_animation_001.png deleted file mode 120000 index 3e07920ad42..00000000000 --- a/_images/sphx_glr_wire3d_animation_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_wire3d_animation_001.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_animation_sgskip_thumb.png b/_images/sphx_glr_wire3d_animation_sgskip_thumb.png deleted file mode 120000 index a60cb7119d6..00000000000 --- a/_images/sphx_glr_wire3d_animation_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wire3d_animation_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_animation_thumb.png b/_images/sphx_glr_wire3d_animation_thumb.png deleted file mode 120000 index 0f39c17e4f8..00000000000 --- a/_images/sphx_glr_wire3d_animation_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/sphx_glr_wire3d_animation_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_thumb.png b/_images/sphx_glr_wire3d_thumb.png deleted file mode 120000 index f0819682158..00000000000 --- a/_images/sphx_glr_wire3d_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wire3d_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_zero_stride_001.png b/_images/sphx_glr_wire3d_zero_stride_001.png deleted file mode 120000 index 475da967583..00000000000 --- a/_images/sphx_glr_wire3d_zero_stride_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wire3d_zero_stride_001.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_zero_stride_001_2_0x.png b/_images/sphx_glr_wire3d_zero_stride_001_2_0x.png deleted file mode 120000 index a0ff93e0430..00000000000 --- a/_images/sphx_glr_wire3d_zero_stride_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wire3d_zero_stride_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_wire3d_zero_stride_thumb.png b/_images/sphx_glr_wire3d_zero_stride_thumb.png deleted file mode 120000 index 4d7da9a538d..00000000000 --- a/_images/sphx_glr_wire3d_zero_stride_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wire3d_zero_stride_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_wxcursor_demo_sgskip_thumb.png b/_images/sphx_glr_wxcursor_demo_sgskip_thumb.png deleted file mode 120000 index 3117a4c5342..00000000000 --- a/_images/sphx_glr_wxcursor_demo_sgskip_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_wxcursor_demo_sgskip_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_xcorr_acorr_demo_001.png b/_images/sphx_glr_xcorr_acorr_demo_001.png deleted file mode 120000 index af8a9ef2113..00000000000 --- a/_images/sphx_glr_xcorr_acorr_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xcorr_acorr_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_xcorr_acorr_demo_001_2_0x.png b/_images/sphx_glr_xcorr_acorr_demo_001_2_0x.png deleted file mode 120000 index d25b3b7a809..00000000000 --- a/_images/sphx_glr_xcorr_acorr_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xcorr_acorr_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_xcorr_acorr_demo_thumb.png b/_images/sphx_glr_xcorr_acorr_demo_thumb.png deleted file mode 120000 index 53195e3763e..00000000000 --- a/_images/sphx_glr_xcorr_acorr_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xcorr_acorr_demo_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_xkcd_001.png b/_images/sphx_glr_xkcd_001.png deleted file mode 120000 index f62d1a2f453..00000000000 --- a/_images/sphx_glr_xkcd_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xkcd_001.png \ No newline at end of file diff --git a/_images/sphx_glr_xkcd_0011.png b/_images/sphx_glr_xkcd_0011.png deleted file mode 120000 index d817ac92f7d..00000000000 --- a/_images/sphx_glr_xkcd_0011.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_xkcd_0011.png \ No newline at end of file diff --git a/_images/sphx_glr_xkcd_0012.png b/_images/sphx_glr_xkcd_0012.png deleted file mode 120000 index 86f389187dd..00000000000 --- a/_images/sphx_glr_xkcd_0012.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sphx_glr_xkcd_0012.png \ No newline at end of file diff --git a/_images/sphx_glr_xkcd_001_2_0x.png b/_images/sphx_glr_xkcd_001_2_0x.png deleted file mode 120000 index 22ce9e71c31..00000000000 --- a/_images/sphx_glr_xkcd_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xkcd_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_xkcd_002.png b/_images/sphx_glr_xkcd_002.png deleted file mode 120000 index 54788ef8f1d..00000000000 --- a/_images/sphx_glr_xkcd_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xkcd_002.png \ No newline at end of file diff --git a/_images/sphx_glr_xkcd_002_2_0x.png b/_images/sphx_glr_xkcd_002_2_0x.png deleted file mode 120000 index 1c75eb7607b..00000000000 --- a/_images/sphx_glr_xkcd_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xkcd_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_xkcd_thumb.png b/_images/sphx_glr_xkcd_thumb.png deleted file mode 120000 index dfcc5193089..00000000000 --- a/_images/sphx_glr_xkcd_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_xkcd_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_inset_axes_001.png b/_images/sphx_glr_zoom_inset_axes_001.png deleted file mode 120000 index 618a7aadc31..00000000000 --- a/_images/sphx_glr_zoom_inset_axes_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_inset_axes_001.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_inset_axes_001_2_0x.png b/_images/sphx_glr_zoom_inset_axes_001_2_0x.png deleted file mode 120000 index cf837f73ba2..00000000000 --- a/_images/sphx_glr_zoom_inset_axes_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_inset_axes_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_inset_axes_thumb.png b/_images/sphx_glr_zoom_inset_axes_thumb.png deleted file mode 120000 index d3c8cdb4fd4..00000000000 --- a/_images/sphx_glr_zoom_inset_axes_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_inset_axes_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_window_001.png b/_images/sphx_glr_zoom_window_001.png deleted file mode 120000 index 653c6cf3860..00000000000 --- a/_images/sphx_glr_zoom_window_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_window_001.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_window_001_2_0x.png b/_images/sphx_glr_zoom_window_001_2_0x.png deleted file mode 120000 index 14c69afbb0d..00000000000 --- a/_images/sphx_glr_zoom_window_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_window_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_window_002.png b/_images/sphx_glr_zoom_window_002.png deleted file mode 120000 index 2f794448fdb..00000000000 --- a/_images/sphx_glr_zoom_window_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_window_002.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_window_002_2_0x.png b/_images/sphx_glr_zoom_window_002_2_0x.png deleted file mode 120000 index be84e0da861..00000000000 --- a/_images/sphx_glr_zoom_window_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_window_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_zoom_window_thumb.png b/_images/sphx_glr_zoom_window_thumb.png deleted file mode 120000 index 14ec1975ca3..00000000000 --- a/_images/sphx_glr_zoom_window_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zoom_window_thumb.png \ No newline at end of file diff --git a/_images/sphx_glr_zorder_demo_001.png b/_images/sphx_glr_zorder_demo_001.png deleted file mode 120000 index 0ff835d3ae9..00000000000 --- a/_images/sphx_glr_zorder_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zorder_demo_001.png \ No newline at end of file diff --git a/_images/sphx_glr_zorder_demo_001_2_0x.png b/_images/sphx_glr_zorder_demo_001_2_0x.png deleted file mode 120000 index 3006da0bceb..00000000000 --- a/_images/sphx_glr_zorder_demo_001_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zorder_demo_001_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_zorder_demo_002.png b/_images/sphx_glr_zorder_demo_002.png deleted file mode 120000 index 04ac631aaa7..00000000000 --- a/_images/sphx_glr_zorder_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zorder_demo_002.png \ No newline at end of file diff --git a/_images/sphx_glr_zorder_demo_002_2_0x.png b/_images/sphx_glr_zorder_demo_002_2_0x.png deleted file mode 120000 index d17e5b75df0..00000000000 --- a/_images/sphx_glr_zorder_demo_002_2_0x.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zorder_demo_002_2_0x.png \ No newline at end of file diff --git a/_images/sphx_glr_zorder_demo_thumb.png b/_images/sphx_glr_zorder_demo_thumb.png deleted file mode 120000 index e8fc98a96ba..00000000000 --- a/_images/sphx_glr_zorder_demo_thumb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/sphx_glr_zorder_demo_thumb.png \ No newline at end of file diff --git a/_images/spine_placement_demo_00.png b/_images/spine_placement_demo_00.png deleted file mode 120000 index d249279a2cc..00000000000 --- a/_images/spine_placement_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spine_placement_demo_00.png \ No newline at end of file diff --git a/_images/spine_placement_demo_01.png b/_images/spine_placement_demo_01.png deleted file mode 120000 index ec364ef5ed8..00000000000 --- a/_images/spine_placement_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spine_placement_demo_01.png \ No newline at end of file diff --git a/_images/spines_demo.png b/_images/spines_demo.png deleted file mode 120000 index e0e64e14da0..00000000000 --- a/_images/spines_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spines_demo.png \ No newline at end of file diff --git a/_images/spines_demo_bounds.png b/_images/spines_demo_bounds.png deleted file mode 120000 index 35730db0dac..00000000000 --- a/_images/spines_demo_bounds.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spines_demo_bounds.png \ No newline at end of file diff --git a/_images/spines_demo_dropped.png b/_images/spines_demo_dropped.png deleted file mode 120000 index d9858f0ca0b..00000000000 --- a/_images/spines_demo_dropped.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spines_demo_dropped.png \ No newline at end of file diff --git a/_images/spy_demos.png b/_images/spy_demos.png deleted file mode 120000 index 60072671b49..00000000000 --- a/_images/spy_demos.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/spy_demos.png \ No newline at end of file diff --git a/_images/stackplot_demo2.png b/_images/stackplot_demo2.png deleted file mode 120000 index 32e4705a901..00000000000 --- a/_images/stackplot_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stackplot_demo2.png \ No newline at end of file diff --git a/_images/stackplot_demo21.png b/_images/stackplot_demo21.png deleted file mode 120000 index 4d24fa02158..00000000000 --- a/_images/stackplot_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stackplot_demo21.png \ No newline at end of file diff --git a/_images/stackplot_demo_00_00.png b/_images/stackplot_demo_00_00.png deleted file mode 120000 index eb67faf32b1..00000000000 --- a/_images/stackplot_demo_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stackplot_demo_00_00.png \ No newline at end of file diff --git a/_images/stackplot_demo_01_00.png b/_images/stackplot_demo_01_00.png deleted file mode 120000 index 3e0da642c98..00000000000 --- a/_images/stackplot_demo_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stackplot_demo_01_00.png \ No newline at end of file diff --git a/_images/stem3d_demo_00_00.png b/_images/stem3d_demo_00_00.png deleted file mode 120000 index 3a1497a0c77..00000000000 --- a/_images/stem3d_demo_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/stem3d_demo_00_00.png \ No newline at end of file diff --git a/_images/stem3d_demo_01_00.png b/_images/stem3d_demo_01_00.png deleted file mode 120000 index 8fcbd989854..00000000000 --- a/_images/stem3d_demo_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/stem3d_demo_01_00.png \ No newline at end of file diff --git a/_images/stem3d_demo_02_00.png b/_images/stem3d_demo_02_00.png deleted file mode 120000 index a988c2cf553..00000000000 --- a/_images/stem3d_demo_02_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/stem3d_demo_02_00.png \ No newline at end of file diff --git a/_images/stem_plot.png b/_images/stem_plot.png deleted file mode 120000 index dbb1491d753..00000000000 --- a/_images/stem_plot.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stem_plot.png \ No newline at end of file diff --git a/_images/stem_plot1.png b/_images/stem_plot1.png deleted file mode 120000 index ef3a8b9f491..00000000000 --- a/_images/stem_plot1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stem_plot1.png \ No newline at end of file diff --git a/_images/stem_plot2.png b/_images/stem_plot2.png deleted file mode 120000 index 93c2492f79e..00000000000 --- a/_images/stem_plot2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stem_plot2.png \ No newline at end of file diff --git a/_images/step_demo.png b/_images/step_demo.png deleted file mode 120000 index c746d3fa295..00000000000 --- a/_images/step_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/step_demo.png \ No newline at end of file diff --git a/_images/stinkbug.png b/_images/stinkbug.png deleted file mode 120000 index 8b3022ecd36..00000000000 --- a/_images/stinkbug.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/stinkbug.png \ No newline at end of file diff --git a/_images/stix_fonts_demo_01_00.png b/_images/stix_fonts_demo_01_00.png deleted file mode 120000 index 3e67787d7fd..00000000000 --- a/_images/stix_fonts_demo_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/stix_fonts_demo_01_00.png \ No newline at end of file diff --git a/_images/stix_fontset.png b/_images/stix_fontset.png deleted file mode 120000 index c925a6d0585..00000000000 --- a/_images/stix_fontset.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/stix_fontset.png \ No newline at end of file diff --git a/_images/stixsans_fontset.png b/_images/stixsans_fontset.png deleted file mode 120000 index 6b6e778e2f2..00000000000 --- a/_images/stixsans_fontset.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/stixsans_fontset.png \ No newline at end of file diff --git a/_images/stock_demo.png b/_images/stock_demo.png deleted file mode 120000 index 9834be73152..00000000000 --- a/_images/stock_demo.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/stock_demo.png \ No newline at end of file diff --git a/_images/streamplot_demo_features_00.png b/_images/streamplot_demo_features_00.png deleted file mode 120000 index 7ac4f8b79b2..00000000000 --- a/_images/streamplot_demo_features_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_features_00.png \ No newline at end of file diff --git a/_images/streamplot_demo_features_001.png b/_images/streamplot_demo_features_001.png deleted file mode 120000 index e8357fb0a47..00000000000 --- a/_images/streamplot_demo_features_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_features_001.png \ No newline at end of file diff --git a/_images/streamplot_demo_features_002.png b/_images/streamplot_demo_features_002.png deleted file mode 120000 index 5fab09e1b4a..00000000000 --- a/_images/streamplot_demo_features_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_features_002.png \ No newline at end of file diff --git a/_images/streamplot_demo_features_01.png b/_images/streamplot_demo_features_01.png deleted file mode 120000 index cf3f0454ea7..00000000000 --- a/_images/streamplot_demo_features_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_features_01.png \ No newline at end of file diff --git a/_images/streamplot_demo_features_011.png b/_images/streamplot_demo_features_011.png deleted file mode 120000 index bdd905b4913..00000000000 --- a/_images/streamplot_demo_features_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_features_011.png \ No newline at end of file diff --git a/_images/streamplot_demo_features_012.png b/_images/streamplot_demo_features_012.png deleted file mode 120000 index 3f395db8be2..00000000000 --- a/_images/streamplot_demo_features_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_features_012.png \ No newline at end of file diff --git a/_images/streamplot_demo_masking.png b/_images/streamplot_demo_masking.png deleted file mode 120000 index 05ecc21177d..00000000000 --- a/_images/streamplot_demo_masking.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_masking.png \ No newline at end of file diff --git a/_images/streamplot_demo_start_points.png b/_images/streamplot_demo_start_points.png deleted file mode 120000 index 80892bc449f..00000000000 --- a/_images/streamplot_demo_start_points.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/streamplot_demo_start_points.png \ No newline at end of file diff --git a/_images/style_sheets_reference_00.png b/_images/style_sheets_reference_00.png deleted file mode 120000 index 5f96d0b3016..00000000000 --- a/_images/style_sheets_reference_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_00.png \ No newline at end of file diff --git a/_images/style_sheets_reference_01.png b/_images/style_sheets_reference_01.png deleted file mode 120000 index a795fb945d5..00000000000 --- a/_images/style_sheets_reference_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_01.png \ No newline at end of file diff --git a/_images/style_sheets_reference_02.png b/_images/style_sheets_reference_02.png deleted file mode 120000 index 5844b41b731..00000000000 --- a/_images/style_sheets_reference_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_02.png \ No newline at end of file diff --git a/_images/style_sheets_reference_03.png b/_images/style_sheets_reference_03.png deleted file mode 120000 index 381e09698db..00000000000 --- a/_images/style_sheets_reference_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_03.png \ No newline at end of file diff --git a/_images/style_sheets_reference_04.png b/_images/style_sheets_reference_04.png deleted file mode 120000 index ef05aa783fe..00000000000 --- a/_images/style_sheets_reference_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_04.png \ No newline at end of file diff --git a/_images/style_sheets_reference_05.png b/_images/style_sheets_reference_05.png deleted file mode 120000 index e5b1e89b283..00000000000 --- a/_images/style_sheets_reference_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_05.png \ No newline at end of file diff --git a/_images/style_sheets_reference_06.png b/_images/style_sheets_reference_06.png deleted file mode 120000 index 87c06cdaea5..00000000000 --- a/_images/style_sheets_reference_06.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_06.png \ No newline at end of file diff --git a/_images/style_sheets_reference_07.png b/_images/style_sheets_reference_07.png deleted file mode 120000 index 66ec64b841b..00000000000 --- a/_images/style_sheets_reference_07.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_07.png \ No newline at end of file diff --git a/_images/style_sheets_reference_08.png b/_images/style_sheets_reference_08.png deleted file mode 120000 index 3e38559431e..00000000000 --- a/_images/style_sheets_reference_08.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_08.png \ No newline at end of file diff --git a/_images/style_sheets_reference_09.png b/_images/style_sheets_reference_09.png deleted file mode 120000 index bfeb4e029af..00000000000 --- a/_images/style_sheets_reference_09.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_09.png \ No newline at end of file diff --git a/_images/style_sheets_reference_10.png b/_images/style_sheets_reference_10.png deleted file mode 120000 index 2f90198eb51..00000000000 --- a/_images/style_sheets_reference_10.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_10.png \ No newline at end of file diff --git a/_images/style_sheets_reference_11.png b/_images/style_sheets_reference_11.png deleted file mode 120000 index c059c82329f..00000000000 --- a/_images/style_sheets_reference_11.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_11.png \ No newline at end of file diff --git a/_images/style_sheets_reference_12.png b/_images/style_sheets_reference_12.png deleted file mode 120000 index f58b43c95d4..00000000000 --- a/_images/style_sheets_reference_12.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_12.png \ No newline at end of file diff --git a/_images/style_sheets_reference_13.png b/_images/style_sheets_reference_13.png deleted file mode 120000 index 953e2684407..00000000000 --- a/_images/style_sheets_reference_13.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_13.png \ No newline at end of file diff --git a/_images/style_sheets_reference_14.png b/_images/style_sheets_reference_14.png deleted file mode 120000 index 3cd63124ef6..00000000000 --- a/_images/style_sheets_reference_14.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_14.png \ No newline at end of file diff --git a/_images/style_sheets_reference_15.png b/_images/style_sheets_reference_15.png deleted file mode 120000 index 0ef6656a57d..00000000000 --- a/_images/style_sheets_reference_15.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_15.png \ No newline at end of file diff --git a/_images/style_sheets_reference_16.png b/_images/style_sheets_reference_16.png deleted file mode 120000 index c12f83d93e2..00000000000 --- a/_images/style_sheets_reference_16.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_16.png \ No newline at end of file diff --git a/_images/style_sheets_reference_17.png b/_images/style_sheets_reference_17.png deleted file mode 120000 index 890f4cd0d21..00000000000 --- a/_images/style_sheets_reference_17.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_17.png \ No newline at end of file diff --git a/_images/style_sheets_reference_18.png b/_images/style_sheets_reference_18.png deleted file mode 120000 index 6a30e0dcfa9..00000000000 --- a/_images/style_sheets_reference_18.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_18.png \ No newline at end of file diff --git a/_images/style_sheets_reference_19.png b/_images/style_sheets_reference_19.png deleted file mode 120000 index a5ba981cafb..00000000000 --- a/_images/style_sheets_reference_19.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_19.png \ No newline at end of file diff --git a/_images/style_sheets_reference_20.png b/_images/style_sheets_reference_20.png deleted file mode 120000 index 2513c5492e9..00000000000 --- a/_images/style_sheets_reference_20.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_20.png \ No newline at end of file diff --git a/_images/style_sheets_reference_21.png b/_images/style_sheets_reference_21.png deleted file mode 120000 index 2643d1186db..00000000000 --- a/_images/style_sheets_reference_21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_21.png \ No newline at end of file diff --git a/_images/style_sheets_reference_22.png b/_images/style_sheets_reference_22.png deleted file mode 120000 index b1bee0b4772..00000000000 --- a/_images/style_sheets_reference_22.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_22.png \ No newline at end of file diff --git a/_images/style_sheets_reference_23.png b/_images/style_sheets_reference_23.png deleted file mode 120000 index fe0fe93f1d8..00000000000 --- a/_images/style_sheets_reference_23.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/style_sheets_reference_23.png \ No newline at end of file diff --git a/_images/subplot.png b/_images/subplot.png deleted file mode 120000 index 473a333b150..00000000000 --- a/_images/subplot.png +++ /dev/null @@ -1 +0,0 @@ -../2.2.5/_images/subplot.png \ No newline at end of file diff --git a/_images/subplot3d_demo.png b/_images/subplot3d_demo.png deleted file mode 120000 index 26308c5787c..00000000000 --- a/_images/subplot3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot3d_demo.png \ No newline at end of file diff --git a/_images/subplot3d_demo1.png b/_images/subplot3d_demo1.png deleted file mode 120000 index 4a28f84822d..00000000000 --- a/_images/subplot3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot3d_demo1.png \ No newline at end of file diff --git a/_images/subplot_demo.png b/_images/subplot_demo.png deleted file mode 120000 index 778f8e9d539..00000000000 --- a/_images/subplot_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot_demo.png \ No newline at end of file diff --git a/_images/subplot_demo1.png b/_images/subplot_demo1.png deleted file mode 120000 index 511e0d578c3..00000000000 --- a/_images/subplot_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot_demo1.png \ No newline at end of file diff --git a/_images/subplot_demo2.png b/_images/subplot_demo2.png deleted file mode 120000 index 2e558defce4..00000000000 --- a/_images/subplot_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot_demo2.png \ No newline at end of file diff --git a/_images/subplot_demo3.png b/_images/subplot_demo3.png deleted file mode 120000 index 63805f174cb..00000000000 --- a/_images/subplot_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot_demo3.png \ No newline at end of file diff --git a/_images/subplot_toolbar_00.png b/_images/subplot_toolbar_00.png deleted file mode 120000 index 90a1026ecff..00000000000 --- a/_images/subplot_toolbar_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot_toolbar_00.png \ No newline at end of file diff --git a/_images/subplot_toolbar_01.png b/_images/subplot_toolbar_01.png deleted file mode 120000 index 734b56cfc4d..00000000000 --- a/_images/subplot_toolbar_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplot_toolbar_01.png \ No newline at end of file diff --git a/_images/subplots.png b/_images/subplots.png deleted file mode 120000 index 65706f64883..00000000000 --- a/_images/subplots.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/subplots.png \ No newline at end of file diff --git a/_images/subplots_adjust.png b/_images/subplots_adjust.png deleted file mode 120000 index 08be3e6cc4c..00000000000 --- a/_images/subplots_adjust.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_adjust.png \ No newline at end of file diff --git a/_images/subplots_demo_00.png b/_images/subplots_demo_00.png deleted file mode 120000 index be84a1fbb13..00000000000 --- a/_images/subplots_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_demo_00.png \ No newline at end of file diff --git a/_images/subplots_demo_01.png b/_images/subplots_demo_01.png deleted file mode 120000 index 675c68276a8..00000000000 --- a/_images/subplots_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_demo_01.png \ No newline at end of file diff --git a/_images/subplots_demo_02.png b/_images/subplots_demo_02.png deleted file mode 120000 index f1224f5361b..00000000000 --- a/_images/subplots_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_demo_02.png \ No newline at end of file diff --git a/_images/subplots_demo_03.png b/_images/subplots_demo_03.png deleted file mode 120000 index 98d9156d160..00000000000 --- a/_images/subplots_demo_03.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_demo_03.png \ No newline at end of file diff --git a/_images/subplots_demo_04.png b/_images/subplots_demo_04.png deleted file mode 120000 index b4c2c19fdb6..00000000000 --- a/_images/subplots_demo_04.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_demo_04.png \ No newline at end of file diff --git a/_images/subplots_demo_05.png b/_images/subplots_demo_05.png deleted file mode 120000 index 5e8f651d962..00000000000 --- a/_images/subplots_demo_05.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_demo_05.png \ No newline at end of file diff --git a/_images/subplots_demo_06.png b/_images/subplots_demo_06.png deleted file mode 120000 index e0f00c17ce8..00000000000 --- a/_images/subplots_demo_06.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/subplots_demo_06.png \ No newline at end of file diff --git a/_images/subplots_large.png b/_images/subplots_large.png deleted file mode 120000 index 0a9335be4ae..00000000000 --- a/_images/subplots_large.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/subplots_large.png \ No newline at end of file diff --git a/_images/surface3d_demo.png b/_images/surface3d_demo.png deleted file mode 120000 index 0fad3c60883..00000000000 --- a/_images/surface3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_demo.png \ No newline at end of file diff --git a/_images/surface3d_demo1.png b/_images/surface3d_demo1.png deleted file mode 120000 index 03e2b94ff86..00000000000 --- a/_images/surface3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_demo1.png \ No newline at end of file diff --git a/_images/surface3d_demo2.png b/_images/surface3d_demo2.png deleted file mode 120000 index babaee949d6..00000000000 --- a/_images/surface3d_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_demo2.png \ No newline at end of file diff --git a/_images/surface3d_demo21.png b/_images/surface3d_demo21.png deleted file mode 120000 index 284af3a1532..00000000000 --- a/_images/surface3d_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_demo21.png \ No newline at end of file diff --git a/_images/surface3d_demo3.png b/_images/surface3d_demo3.png deleted file mode 120000 index 941cb519b39..00000000000 --- a/_images/surface3d_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_demo3.png \ No newline at end of file diff --git a/_images/surface3d_demo31.png b/_images/surface3d_demo31.png deleted file mode 120000 index 5f557ae9319..00000000000 --- a/_images/surface3d_demo31.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_demo31.png \ No newline at end of file diff --git a/_images/surface3d_demo4.png b/_images/surface3d_demo4.png deleted file mode 120000 index bcab0175815..00000000000 --- a/_images/surface3d_demo4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_demo4.png \ No newline at end of file diff --git a/_images/surface3d_radial_demo.png b/_images/surface3d_radial_demo.png deleted file mode 120000 index 2e05c3e62b9..00000000000 --- a/_images/surface3d_radial_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/surface3d_radial_demo.png \ No newline at end of file diff --git a/_images/svg_filter_line.png b/_images/svg_filter_line.png deleted file mode 120000 index 6f4321fc57e..00000000000 --- a/_images/svg_filter_line.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/svg_filter_line.png \ No newline at end of file diff --git a/_images/svg_filter_pie.png b/_images/svg_filter_pie.png deleted file mode 120000 index 91ba5ec0b2f..00000000000 --- a/_images/svg_filter_pie.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/svg_filter_pie.png \ No newline at end of file diff --git a/_images/sviewgui_sample.png b/_images/sviewgui_sample.png deleted file mode 120000 index b9612d241bf..00000000000 --- a/_images/sviewgui_sample.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/sviewgui_sample.png \ No newline at end of file diff --git a/_images/symlog_demo.png b/_images/symlog_demo.png deleted file mode 120000 index d32c63dc5c0..00000000000 --- a/_images/symlog_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/symlog_demo.png \ No newline at end of file diff --git a/_images/system_monitor.png b/_images/system_monitor.png deleted file mode 120000 index 3fa10920ccc..00000000000 --- a/_images/system_monitor.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/system_monitor.png \ No newline at end of file diff --git a/_images/table_demo.png b/_images/table_demo.png deleted file mode 120000 index 910e536cab0..00000000000 --- a/_images/table_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/table_demo.png \ No newline at end of file diff --git a/_images/table_demo1.png b/_images/table_demo1.png deleted file mode 120000 index 436c770f923..00000000000 --- a/_images/table_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/table_demo1.png \ No newline at end of file diff --git a/_images/tex_demo.png b/_images/tex_demo.png deleted file mode 120000 index c5fd20055d5..00000000000 --- a/_images/tex_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tex_demo.png \ No newline at end of file diff --git a/_images/tex_demo1.png b/_images/tex_demo1.png deleted file mode 120000 index 5c3aaa4e331..00000000000 --- a/_images/tex_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tex_demo1.png \ No newline at end of file diff --git a/_images/tex_unicode_demo.png b/_images/tex_unicode_demo.png deleted file mode 120000 index d61ea034f6f..00000000000 --- a/_images/tex_unicode_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tex_unicode_demo.png \ No newline at end of file diff --git a/_images/tex_unicode_demo1.png b/_images/tex_unicode_demo1.png deleted file mode 120000 index de7ce75b3e7..00000000000 --- a/_images/tex_unicode_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tex_unicode_demo1.png \ No newline at end of file diff --git a/_images/text3d_demo.png b/_images/text3d_demo.png deleted file mode 120000 index 28b2a5f95e9..00000000000 --- a/_images/text3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text3d_demo.png \ No newline at end of file diff --git a/_images/text3d_demo1.png b/_images/text3d_demo1.png deleted file mode 120000 index 91cb52fbb85..00000000000 --- a/_images/text3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text3d_demo1.png \ No newline at end of file diff --git a/_images/text_commands.png b/_images/text_commands.png deleted file mode 120000 index e9a8da8add5..00000000000 --- a/_images/text_commands.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text_commands.png \ No newline at end of file diff --git a/_images/text_demo_fontdict.png b/_images/text_demo_fontdict.png deleted file mode 120000 index 5e7e6c750c8..00000000000 --- a/_images/text_demo_fontdict.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text_demo_fontdict.png \ No newline at end of file diff --git a/_images/text_handles.png b/_images/text_handles.png deleted file mode 120000 index 6bd580f7641..00000000000 --- a/_images/text_handles.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text_handles.png \ No newline at end of file diff --git a/_images/text_layout.png b/_images/text_layout.png deleted file mode 120000 index 39a33df8e10..00000000000 --- a/_images/text_layout.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text_layout.png \ No newline at end of file diff --git a/_images/text_rotation.png b/_images/text_rotation.png deleted file mode 120000 index a35fc0f74ea..00000000000 --- a/_images/text_rotation.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text_rotation.png \ No newline at end of file diff --git a/_images/text_rotation_relative_to_line.png b/_images/text_rotation_relative_to_line.png deleted file mode 120000 index 1fbb470ffe2..00000000000 --- a/_images/text_rotation_relative_to_line.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/text_rotation_relative_to_line.png \ No newline at end of file diff --git a/_images/tick-formatters.png b/_images/tick-formatters.png deleted file mode 120000 index 65c211a1788..00000000000 --- a/_images/tick-formatters.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tick-formatters.png \ No newline at end of file diff --git a/_images/tick-locators.png b/_images/tick-locators.png deleted file mode 120000 index 581f7c36331..00000000000 --- a/_images/tick-locators.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tick-locators.png \ No newline at end of file diff --git a/_images/tick_labels_from_values.png b/_images/tick_labels_from_values.png deleted file mode 120000 index 7ebe89c8074..00000000000 --- a/_images/tick_labels_from_values.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tick_labels_from_values.png \ No newline at end of file diff --git a/_images/ticker_api-1.png b/_images/ticker_api-1.png deleted file mode 120000 index 018a86f44d0..00000000000 --- a/_images/ticker_api-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/ticker_api-1.png \ No newline at end of file diff --git a/_images/ticklabels_demo_rotation.png b/_images/ticklabels_demo_rotation.png deleted file mode 120000 index 1dd629299a5..00000000000 --- a/_images/ticklabels_demo_rotation.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/ticklabels_demo_rotation.png \ No newline at end of file diff --git a/_images/tight_bbox_test.png b/_images/tight_bbox_test.png deleted file mode 120000 index f6e51da3f4a..00000000000 --- a/_images/tight_bbox_test.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_bbox_test.png \ No newline at end of file diff --git a/_images/tight_layout_guide-1.png b/_images/tight_layout_guide-1.png deleted file mode 120000 index bfe030210b6..00000000000 --- a/_images/tight_layout_guide-1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-1.png \ No newline at end of file diff --git a/_images/tight_layout_guide-10.png b/_images/tight_layout_guide-10.png deleted file mode 120000 index e2adb9ef30e..00000000000 --- a/_images/tight_layout_guide-10.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-10.png \ No newline at end of file diff --git a/_images/tight_layout_guide-11.png b/_images/tight_layout_guide-11.png deleted file mode 120000 index c6a6edc085c..00000000000 --- a/_images/tight_layout_guide-11.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-11.png \ No newline at end of file diff --git a/_images/tight_layout_guide-12.png b/_images/tight_layout_guide-12.png deleted file mode 120000 index ae80ca26496..00000000000 --- a/_images/tight_layout_guide-12.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-12.png \ No newline at end of file diff --git a/_images/tight_layout_guide-13.png b/_images/tight_layout_guide-13.png deleted file mode 120000 index 70f30eabf32..00000000000 --- a/_images/tight_layout_guide-13.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-13.png \ No newline at end of file diff --git a/_images/tight_layout_guide-14.png b/_images/tight_layout_guide-14.png deleted file mode 120000 index 359e8a65e2b..00000000000 --- a/_images/tight_layout_guide-14.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-14.png \ No newline at end of file diff --git a/_images/tight_layout_guide-15.png b/_images/tight_layout_guide-15.png deleted file mode 120000 index 9b53274a1e8..00000000000 --- a/_images/tight_layout_guide-15.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-15.png \ No newline at end of file diff --git a/_images/tight_layout_guide-2.png b/_images/tight_layout_guide-2.png deleted file mode 120000 index d4f3a32fc87..00000000000 --- a/_images/tight_layout_guide-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-2.png \ No newline at end of file diff --git a/_images/tight_layout_guide-3.png b/_images/tight_layout_guide-3.png deleted file mode 120000 index 305684ec946..00000000000 --- a/_images/tight_layout_guide-3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-3.png \ No newline at end of file diff --git a/_images/tight_layout_guide-4.png b/_images/tight_layout_guide-4.png deleted file mode 120000 index f946b354101..00000000000 --- a/_images/tight_layout_guide-4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-4.png \ No newline at end of file diff --git a/_images/tight_layout_guide-5.png b/_images/tight_layout_guide-5.png deleted file mode 120000 index 5c8ee734406..00000000000 --- a/_images/tight_layout_guide-5.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-5.png \ No newline at end of file diff --git a/_images/tight_layout_guide-6.png b/_images/tight_layout_guide-6.png deleted file mode 120000 index c49f7442e78..00000000000 --- a/_images/tight_layout_guide-6.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-6.png \ No newline at end of file diff --git a/_images/tight_layout_guide-7.png b/_images/tight_layout_guide-7.png deleted file mode 120000 index 2f4d6f7e3ea..00000000000 --- a/_images/tight_layout_guide-7.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-7.png \ No newline at end of file diff --git a/_images/tight_layout_guide-8.png b/_images/tight_layout_guide-8.png deleted file mode 120000 index 5cdec8edd45..00000000000 --- a/_images/tight_layout_guide-8.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-8.png \ No newline at end of file diff --git a/_images/tight_layout_guide-9.png b/_images/tight_layout_guide-9.png deleted file mode 120000 index 2a06011f378..00000000000 --- a/_images/tight_layout_guide-9.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tight_layout_guide-9.png \ No newline at end of file diff --git a/_images/titles_demo.png b/_images/titles_demo.png deleted file mode 120000 index 626e1107ba0..00000000000 --- a/_images/titles_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/titles_demo.png \ No newline at end of file diff --git a/_images/toggle_images.png b/_images/toggle_images.png deleted file mode 120000 index f142399f6aa..00000000000 --- a/_images/toggle_images.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/toggle_images.png \ No newline at end of file diff --git a/_images/toolbar.png b/_images/toolbar.png deleted file mode 120000 index 941452bd1cc..00000000000 --- a/_images/toolbar.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/toolbar.png \ No newline at end of file diff --git a/_images/topographic_hillshading.png b/_images/topographic_hillshading.png deleted file mode 120000 index 932fe96231e..00000000000 --- a/_images/topographic_hillshading.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/topographic_hillshading.png \ No newline at end of file diff --git a/_images/transforms.png b/_images/transforms.png deleted file mode 120000 index 8ba76274f62..00000000000 --- a/_images/transforms.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/transforms.png \ No newline at end of file diff --git a/_images/transforms_tutorial-1.png b/_images/transforms_tutorial-1.png deleted file mode 120000 index dd0aa9cb3fe..00000000000 --- a/_images/transforms_tutorial-1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/transforms_tutorial-1.png \ No newline at end of file diff --git a/_images/transforms_tutorial-2.png b/_images/transforms_tutorial-2.png deleted file mode 120000 index 54d18760a5c..00000000000 --- a/_images/transforms_tutorial-2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/transforms_tutorial-2.png \ No newline at end of file diff --git a/_images/transforms_tutorial-3.png b/_images/transforms_tutorial-3.png deleted file mode 120000 index e1e1ca4e248..00000000000 --- a/_images/transforms_tutorial-3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/transforms_tutorial-3.png \ No newline at end of file diff --git a/_images/transforms_tutorial-4.png b/_images/transforms_tutorial-4.png deleted file mode 120000 index 4eed3124a5b..00000000000 --- a/_images/transforms_tutorial-4.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/transforms_tutorial-4.png \ No newline at end of file diff --git a/_images/transforms_tutorial-5.png b/_images/transforms_tutorial-5.png deleted file mode 120000 index d5d0c96cf63..00000000000 --- a/_images/transforms_tutorial-5.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/transforms_tutorial-5.png \ No newline at end of file diff --git a/_images/transoffset.png b/_images/transoffset.png deleted file mode 120000 index 3359cbf55dd..00000000000 --- a/_images/transoffset.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/transoffset.png \ No newline at end of file diff --git a/_images/tricontour3d_demo.png b/_images/tricontour3d_demo.png deleted file mode 120000 index 6013871d7ce..00000000000 --- a/_images/tricontour3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour3d_demo.png \ No newline at end of file diff --git a/_images/tricontour3d_demo1.png b/_images/tricontour3d_demo1.png deleted file mode 120000 index 05b210fd724..00000000000 --- a/_images/tricontour3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour3d_demo1.png \ No newline at end of file diff --git a/_images/tricontour_demo_00.png b/_images/tricontour_demo_00.png deleted file mode 120000 index c66441cd85b..00000000000 --- a/_images/tricontour_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_demo_00.png \ No newline at end of file diff --git a/_images/tricontour_demo_001.png b/_images/tricontour_demo_001.png deleted file mode 120000 index bf620c1258d..00000000000 --- a/_images/tricontour_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_demo_001.png \ No newline at end of file diff --git a/_images/tricontour_demo_002.png b/_images/tricontour_demo_002.png deleted file mode 120000 index a0058eb4ef2..00000000000 --- a/_images/tricontour_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_demo_002.png \ No newline at end of file diff --git a/_images/tricontour_demo_01.png b/_images/tricontour_demo_01.png deleted file mode 120000 index dbc1b7878b9..00000000000 --- a/_images/tricontour_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_demo_01.png \ No newline at end of file diff --git a/_images/tricontour_demo_011.png b/_images/tricontour_demo_011.png deleted file mode 120000 index 4ca384fc91e..00000000000 --- a/_images/tricontour_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_demo_011.png \ No newline at end of file diff --git a/_images/tricontour_demo_012.png b/_images/tricontour_demo_012.png deleted file mode 120000 index 3f8d17888ac..00000000000 --- a/_images/tricontour_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_demo_012.png \ No newline at end of file diff --git a/_images/tricontour_smooth_delaunay.png b/_images/tricontour_smooth_delaunay.png deleted file mode 120000 index 06ea90d85b3..00000000000 --- a/_images/tricontour_smooth_delaunay.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_smooth_delaunay.png \ No newline at end of file diff --git a/_images/tricontour_smooth_delaunay1.png b/_images/tricontour_smooth_delaunay1.png deleted file mode 120000 index 64d7535d6b7..00000000000 --- a/_images/tricontour_smooth_delaunay1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_smooth_delaunay1.png \ No newline at end of file diff --git a/_images/tricontour_smooth_user.png b/_images/tricontour_smooth_user.png deleted file mode 120000 index ed28298fba1..00000000000 --- a/_images/tricontour_smooth_user.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_smooth_user.png \ No newline at end of file diff --git a/_images/tricontour_smooth_user1.png b/_images/tricontour_smooth_user1.png deleted file mode 120000 index b2a0b4f5982..00000000000 --- a/_images/tricontour_smooth_user1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_smooth_user1.png \ No newline at end of file diff --git a/_images/tricontour_smooth_user2.png b/_images/tricontour_smooth_user2.png deleted file mode 120000 index 0dd8fe86ad0..00000000000 --- a/_images/tricontour_smooth_user2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_smooth_user2.png \ No newline at end of file diff --git a/_images/tricontour_vs_griddata.png b/_images/tricontour_vs_griddata.png deleted file mode 120000 index bfd61bbdea7..00000000000 --- a/_images/tricontour_vs_griddata.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontour_vs_griddata.png \ No newline at end of file diff --git a/_images/tricontourf3d_demo.png b/_images/tricontourf3d_demo.png deleted file mode 120000 index 3cb5a2060e2..00000000000 --- a/_images/tricontourf3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tricontourf3d_demo.png \ No newline at end of file diff --git a/_images/trigradient_demo.png b/_images/trigradient_demo.png deleted file mode 120000 index 56ed5e6ecac..00000000000 --- a/_images/trigradient_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/trigradient_demo.png \ No newline at end of file diff --git a/_images/trigradient_demo1.png b/_images/trigradient_demo1.png deleted file mode 120000 index ca4c4924a9b..00000000000 --- a/_images/trigradient_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/trigradient_demo1.png \ No newline at end of file diff --git a/_images/triinterp_demo.png b/_images/triinterp_demo.png deleted file mode 120000 index 865ab2214e0..00000000000 --- a/_images/triinterp_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triinterp_demo.png \ No newline at end of file diff --git a/_images/tripcolor_demo_00.png b/_images/tripcolor_demo_00.png deleted file mode 120000 index c902af3d6cc..00000000000 --- a/_images/tripcolor_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_00.png \ No newline at end of file diff --git a/_images/tripcolor_demo_001.png b/_images/tripcolor_demo_001.png deleted file mode 120000 index 36fb82a2620..00000000000 --- a/_images/tripcolor_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_001.png \ No newline at end of file diff --git a/_images/tripcolor_demo_002.png b/_images/tripcolor_demo_002.png deleted file mode 120000 index 001b81d69dd..00000000000 --- a/_images/tripcolor_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_002.png \ No newline at end of file diff --git a/_images/tripcolor_demo_003.png b/_images/tripcolor_demo_003.png deleted file mode 120000 index bb081106c93..00000000000 --- a/_images/tripcolor_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_003.png \ No newline at end of file diff --git a/_images/tripcolor_demo_01.png b/_images/tripcolor_demo_01.png deleted file mode 120000 index 7afb9c541fc..00000000000 --- a/_images/tripcolor_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_01.png \ No newline at end of file diff --git a/_images/tripcolor_demo_011.png b/_images/tripcolor_demo_011.png deleted file mode 120000 index 8e457854bd9..00000000000 --- a/_images/tripcolor_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_011.png \ No newline at end of file diff --git a/_images/tripcolor_demo_012.png b/_images/tripcolor_demo_012.png deleted file mode 120000 index 987bc97638d..00000000000 --- a/_images/tripcolor_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_012.png \ No newline at end of file diff --git a/_images/tripcolor_demo_013.png b/_images/tripcolor_demo_013.png deleted file mode 120000 index d6278f0968c..00000000000 --- a/_images/tripcolor_demo_013.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_013.png \ No newline at end of file diff --git a/_images/tripcolor_demo_02.png b/_images/tripcolor_demo_02.png deleted file mode 120000 index e6b84676ded..00000000000 --- a/_images/tripcolor_demo_02.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_02.png \ No newline at end of file diff --git a/_images/tripcolor_demo_021.png b/_images/tripcolor_demo_021.png deleted file mode 120000 index c977b3f32ff..00000000000 --- a/_images/tripcolor_demo_021.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_021.png \ No newline at end of file diff --git a/_images/tripcolor_demo_022.png b/_images/tripcolor_demo_022.png deleted file mode 120000 index 60c637ec696..00000000000 --- a/_images/tripcolor_demo_022.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_022.png \ No newline at end of file diff --git a/_images/tripcolor_demo_023.png b/_images/tripcolor_demo_023.png deleted file mode 120000 index 04e1dfd209e..00000000000 --- a/_images/tripcolor_demo_023.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/tripcolor_demo_023.png \ No newline at end of file diff --git a/_images/triplot_demo_00.png b/_images/triplot_demo_00.png deleted file mode 120000 index 1d18916e2ed..00000000000 --- a/_images/triplot_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_00.png \ No newline at end of file diff --git a/_images/triplot_demo_001.png b/_images/triplot_demo_001.png deleted file mode 120000 index 69b3413b324..00000000000 --- a/_images/triplot_demo_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_001.png \ No newline at end of file diff --git a/_images/triplot_demo_002.png b/_images/triplot_demo_002.png deleted file mode 120000 index 79691da17ba..00000000000 --- a/_images/triplot_demo_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_002.png \ No newline at end of file diff --git a/_images/triplot_demo_003.png b/_images/triplot_demo_003.png deleted file mode 120000 index d3580837eff..00000000000 --- a/_images/triplot_demo_003.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_003.png \ No newline at end of file diff --git a/_images/triplot_demo_01.png b/_images/triplot_demo_01.png deleted file mode 120000 index eaa8e11eb09..00000000000 --- a/_images/triplot_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_01.png \ No newline at end of file diff --git a/_images/triplot_demo_011.png b/_images/triplot_demo_011.png deleted file mode 120000 index bb677439769..00000000000 --- a/_images/triplot_demo_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_011.png \ No newline at end of file diff --git a/_images/triplot_demo_012.png b/_images/triplot_demo_012.png deleted file mode 120000 index 1f95161240e..00000000000 --- a/_images/triplot_demo_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_012.png \ No newline at end of file diff --git a/_images/triplot_demo_013.png b/_images/triplot_demo_013.png deleted file mode 120000 index 346e4236da3..00000000000 --- a/_images/triplot_demo_013.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/triplot_demo_013.png \ No newline at end of file diff --git a/_images/trisurf3d.png b/_images/trisurf3d.png deleted file mode 120000 index 669a15ca6ce..00000000000 --- a/_images/trisurf3d.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/trisurf3d.png \ No newline at end of file diff --git a/_images/trisurf3d1.png b/_images/trisurf3d1.png deleted file mode 120000 index 1d8af234b94..00000000000 --- a/_images/trisurf3d1.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.1/_images/trisurf3d1.png \ No newline at end of file diff --git a/_images/trisurf3d2.png b/_images/trisurf3d2.png deleted file mode 120000 index 9ac4b5ceaab..00000000000 --- a/_images/trisurf3d2.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/trisurf3d2.png \ No newline at end of file diff --git a/_images/trisurf3d_2.png b/_images/trisurf3d_2.png deleted file mode 120000 index f0cfb014c8d..00000000000 --- a/_images/trisurf3d_2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/trisurf3d_2.png \ No newline at end of file diff --git a/_images/trisurf3d_21.png b/_images/trisurf3d_21.png deleted file mode 120000 index 4e26faf890f..00000000000 --- a/_images/trisurf3d_21.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.1/_images/trisurf3d_21.png \ No newline at end of file diff --git a/_images/trisurf3d_22.png b/_images/trisurf3d_22.png deleted file mode 120000 index 9ecde36f6ce..00000000000 --- a/_images/trisurf3d_22.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/trisurf3d_22.png \ No newline at end of file diff --git a/_images/trisurf3d_demo.png b/_images/trisurf3d_demo.png deleted file mode 120000 index 425ea5ae673..00000000000 --- a/_images/trisurf3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/trisurf3d_demo.png \ No newline at end of file diff --git a/_images/trisurf3d_demo1.png b/_images/trisurf3d_demo1.png deleted file mode 120000 index 2ece7890346..00000000000 --- a/_images/trisurf3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/trisurf3d_demo1.png \ No newline at end of file diff --git a/_images/trisurf3d_demo2.png b/_images/trisurf3d_demo2.png deleted file mode 120000 index 1395e302646..00000000000 --- a/_images/trisurf3d_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/trisurf3d_demo2.png \ No newline at end of file diff --git a/_images/trisurf3d_demo21.png b/_images/trisurf3d_demo21.png deleted file mode 120000 index 7040879913a..00000000000 --- a/_images/trisurf3d_demo21.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/trisurf3d_demo21.png \ No newline at end of file diff --git a/_images/trisurf3d_demo2_00.png b/_images/trisurf3d_demo2_00.png deleted file mode 120000 index e34e1cde110..00000000000 --- a/_images/trisurf3d_demo2_00.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/trisurf3d_demo2_00.png \ No newline at end of file diff --git a/_images/trisurf3d_demo2_001.png b/_images/trisurf3d_demo2_001.png deleted file mode 120000 index 066718869f9..00000000000 --- a/_images/trisurf3d_demo2_001.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/trisurf3d_demo2_001.png \ No newline at end of file diff --git a/_images/trisurf3d_demo2_01.png b/_images/trisurf3d_demo2_01.png deleted file mode 120000 index 88cff8e75db..00000000000 --- a/_images/trisurf3d_demo2_01.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/trisurf3d_demo2_01.png \ No newline at end of file diff --git a/_images/trisurf3d_demo2_011.png b/_images/trisurf3d_demo2_011.png deleted file mode 120000 index 651ddff6b40..00000000000 --- a/_images/trisurf3d_demo2_011.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/trisurf3d_demo2_011.png \ No newline at end of file diff --git a/_images/trisurf3d_demo3.png b/_images/trisurf3d_demo3.png deleted file mode 120000 index 2e8a99d0084..00000000000 --- a/_images/trisurf3d_demo3.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/trisurf3d_demo3.png \ No newline at end of file diff --git a/_images/two_scales.png b/_images/two_scales.png deleted file mode 120000 index 95997a65251..00000000000 --- a/_images/two_scales.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/two_scales.png \ No newline at end of file diff --git a/_images/unicode_demo.png b/_images/unicode_demo.png deleted file mode 120000 index 9bcf48c5515..00000000000 --- a/_images/unicode_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/unicode_demo.png \ No newline at end of file diff --git a/_images/unicode_minus.png b/_images/unicode_minus.png deleted file mode 120000 index 85a275b0df3..00000000000 --- a/_images/unicode_minus.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/unicode_minus.png \ No newline at end of file diff --git a/_images/units_sample.png b/_images/units_sample.png deleted file mode 120000 index c5d3be848eb..00000000000 --- a/_images/units_sample.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/units_sample.png \ No newline at end of file diff --git a/_images/units_scatter.png b/_images/units_scatter.png deleted file mode 120000 index c5e2a2927da..00000000000 --- a/_images/units_scatter.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/units_scatter.png \ No newline at end of file diff --git a/_images/usetex_baseline_test.png b/_images/usetex_baseline_test.png deleted file mode 120000 index 7ce0c26e659..00000000000 --- a/_images/usetex_baseline_test.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/usetex_baseline_test.png \ No newline at end of file diff --git a/_images/usetex_demo.png b/_images/usetex_demo.png deleted file mode 120000 index 3ce5040622d..00000000000 --- a/_images/usetex_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/usetex_demo.png \ No newline at end of file diff --git a/_images/usetex_fonteffects.png b/_images/usetex_fonteffects.png deleted file mode 120000 index 9784a77eebf..00000000000 --- a/_images/usetex_fonteffects.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/usetex_fonteffects.png \ No newline at end of file diff --git a/_images/violinplot_demo.png b/_images/violinplot_demo.png deleted file mode 120000 index b65d3b07238..00000000000 --- a/_images/violinplot_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/violinplot_demo.png \ No newline at end of file diff --git a/_images/vline_hline_demo.png b/_images/vline_hline_demo.png deleted file mode 120000 index 5e951d3c131..00000000000 --- a/_images/vline_hline_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/vline_hline_demo.png \ No newline at end of file diff --git a/_images/vline_hline_demo1.png b/_images/vline_hline_demo1.png deleted file mode 120000 index 16d246168c9..00000000000 --- a/_images/vline_hline_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/vline_hline_demo1.png \ No newline at end of file diff --git a/_images/vline_hline_demo2.png b/_images/vline_hline_demo2.png deleted file mode 120000 index ff8a152c18c..00000000000 --- a/_images/vline_hline_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/vline_hline_demo2.png \ No newline at end of file diff --git a/_images/voxels.png b/_images/voxels.png deleted file mode 120000 index b3a044f3a4a..00000000000 --- a/_images/voxels.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/voxels.png \ No newline at end of file diff --git a/_images/voxels_numpy_logo.png b/_images/voxels_numpy_logo.png deleted file mode 120000 index 5056312fe53..00000000000 --- a/_images/voxels_numpy_logo.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/voxels_numpy_logo.png \ No newline at end of file diff --git a/_images/voxels_rgb.png b/_images/voxels_rgb.png deleted file mode 120000 index 4197a4d989b..00000000000 --- a/_images/voxels_rgb.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/voxels_rgb.png \ No newline at end of file diff --git a/_images/voxels_torus.png b/_images/voxels_torus.png deleted file mode 120000 index 359e95a8101..00000000000 --- a/_images/voxels_torus.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/voxels_torus.png \ No newline at end of file diff --git a/_images/watermark_image.png b/_images/watermark_image.png deleted file mode 120000 index 153f62985bb..00000000000 --- a/_images/watermark_image.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/watermark_image.png \ No newline at end of file diff --git a/_images/watermark_text.png b/_images/watermark_text.png deleted file mode 120000 index 40482b94d56..00000000000 --- a/_images/watermark_text.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/watermark_text.png \ No newline at end of file diff --git a/_images/wcsaxes.jpg b/_images/wcsaxes.jpg deleted file mode 120000 index 0b9ac318b05..00000000000 --- a/_images/wcsaxes.jpg +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/wcsaxes.jpg \ No newline at end of file diff --git a/_images/webagg_screenshot.png b/_images/webagg_screenshot.png deleted file mode 120000 index 3e7c9398410..00000000000 --- a/_images/webagg_screenshot.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/webagg_screenshot.png \ No newline at end of file diff --git a/_images/whats_new-1.png b/_images/whats_new-1.png deleted file mode 120000 index fd1b7d5ca92..00000000000 --- a/_images/whats_new-1.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-1.png \ No newline at end of file diff --git a/_images/whats_new-10.png b/_images/whats_new-10.png deleted file mode 120000 index 6c326c26fd8..00000000000 --- a/_images/whats_new-10.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-10.png \ No newline at end of file diff --git a/_images/whats_new-111.png b/_images/whats_new-111.png deleted file mode 120000 index 7a3e3ac6131..00000000000 --- a/_images/whats_new-111.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-111.png \ No newline at end of file diff --git a/_images/whats_new-12.png b/_images/whats_new-12.png deleted file mode 120000 index 47ae0435469..00000000000 --- a/_images/whats_new-12.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-12.png \ No newline at end of file diff --git a/_images/whats_new-13.png b/_images/whats_new-13.png deleted file mode 120000 index ca49eee3f60..00000000000 --- a/_images/whats_new-13.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-13.png \ No newline at end of file diff --git a/_images/whats_new-14.png b/_images/whats_new-14.png deleted file mode 120000 index af64a46f746..00000000000 --- a/_images/whats_new-14.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-14.png \ No newline at end of file diff --git a/_images/whats_new-15.png b/_images/whats_new-15.png deleted file mode 120000 index 3c04046eea7..00000000000 --- a/_images/whats_new-15.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-15.png \ No newline at end of file diff --git a/_images/whats_new-16.png b/_images/whats_new-16.png deleted file mode 120000 index ec9df00baed..00000000000 --- a/_images/whats_new-16.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-16.png \ No newline at end of file diff --git a/_images/whats_new-17.png b/_images/whats_new-17.png deleted file mode 120000 index b2a41805ef9..00000000000 --- a/_images/whats_new-17.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-17.png \ No newline at end of file diff --git a/_images/whats_new-18.png b/_images/whats_new-18.png deleted file mode 120000 index 64016955915..00000000000 --- a/_images/whats_new-18.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-18.png \ No newline at end of file diff --git a/_images/whats_new-19.png b/_images/whats_new-19.png deleted file mode 120000 index 8ee05ca38eb..00000000000 --- a/_images/whats_new-19.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-19.png \ No newline at end of file diff --git a/_images/whats_new-2.png b/_images/whats_new-2.png deleted file mode 120000 index 448d30bd62e..00000000000 --- a/_images/whats_new-2.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-2.png \ No newline at end of file diff --git a/_images/whats_new-20.png b/_images/whats_new-20.png deleted file mode 120000 index 6cd2d49c3de..00000000000 --- a/_images/whats_new-20.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-20.png \ No newline at end of file diff --git a/_images/whats_new-211.png b/_images/whats_new-211.png deleted file mode 120000 index b9ff51326cc..00000000000 --- a/_images/whats_new-211.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-211.png \ No newline at end of file diff --git a/_images/whats_new-22.png b/_images/whats_new-22.png deleted file mode 120000 index 4d9a8de7d29..00000000000 --- a/_images/whats_new-22.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-22.png \ No newline at end of file diff --git a/_images/whats_new-23.png b/_images/whats_new-23.png deleted file mode 120000 index e5efeec3246..00000000000 --- a/_images/whats_new-23.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-23.png \ No newline at end of file diff --git a/_images/whats_new-24.png b/_images/whats_new-24.png deleted file mode 120000 index c4bb73d2e34..00000000000 --- a/_images/whats_new-24.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-24.png \ No newline at end of file diff --git a/_images/whats_new-25.png b/_images/whats_new-25.png deleted file mode 120000 index d3b599f14c2..00000000000 --- a/_images/whats_new-25.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-25.png \ No newline at end of file diff --git a/_images/whats_new-3.png b/_images/whats_new-3.png deleted file mode 120000 index 531e0fda861..00000000000 --- a/_images/whats_new-3.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-3.png \ No newline at end of file diff --git a/_images/whats_new-4.png b/_images/whats_new-4.png deleted file mode 120000 index a10284afd61..00000000000 --- a/_images/whats_new-4.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-4.png \ No newline at end of file diff --git a/_images/whats_new-5.png b/_images/whats_new-5.png deleted file mode 120000 index b902c2ac901..00000000000 --- a/_images/whats_new-5.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-5.png \ No newline at end of file diff --git a/_images/whats_new-6.png b/_images/whats_new-6.png deleted file mode 120000 index b1b15c2d419..00000000000 --- a/_images/whats_new-6.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-6.png \ No newline at end of file diff --git a/_images/whats_new-7.png b/_images/whats_new-7.png deleted file mode 120000 index 95aa5c948aa..00000000000 --- a/_images/whats_new-7.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-7.png \ No newline at end of file diff --git a/_images/whats_new-8.png b/_images/whats_new-8.png deleted file mode 120000 index c898c44a5a4..00000000000 --- a/_images/whats_new-8.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-8.png \ No newline at end of file diff --git a/_images/whats_new-8_00_00.png b/_images/whats_new-8_00_00.png deleted file mode 120000 index 0bc962db8e9..00000000000 --- a/_images/whats_new-8_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/whats_new-8_00_00.png \ No newline at end of file diff --git a/_images/whats_new-8_01_00.png b/_images/whats_new-8_01_00.png deleted file mode 120000 index 1d7d536ba49..00000000000 --- a/_images/whats_new-8_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/whats_new-8_01_00.png \ No newline at end of file diff --git a/_images/whats_new-9.png b/_images/whats_new-9.png deleted file mode 120000 index da48d24118a..00000000000 --- a/_images/whats_new-9.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new-9.png \ No newline at end of file diff --git a/_images/whats_new-9_00.png b/_images/whats_new-9_00.png deleted file mode 120000 index 3f9a980422a..00000000000 --- a/_images/whats_new-9_00.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/whats_new-9_00.png \ No newline at end of file diff --git a/_images/whats_new-9_01.png b/_images/whats_new-9_01.png deleted file mode 120000 index 0b4764dc5ac..00000000000 --- a/_images/whats_new-9_01.png +++ /dev/null @@ -1 +0,0 @@ -../3.3.4/_images/whats_new-9_01.png \ No newline at end of file diff --git a/_images/whats_new_0-98-4-1.png b/_images/whats_new_0-98-4-1.png deleted file mode 120000 index f0d469c3fa7..00000000000 --- a/_images/whats_new_0-98-4-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_0-98-4-1.png \ No newline at end of file diff --git a/_images/whats_new_0-98-4-2.png b/_images/whats_new_0-98-4-2.png deleted file mode 120000 index b243512a2bb..00000000000 --- a/_images/whats_new_0-98-4-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_0-98-4-2.png \ No newline at end of file diff --git a/_images/whats_new_0-98-4-3.png b/_images/whats_new_0-98-4-3.png deleted file mode 120000 index c8538e605a9..00000000000 --- a/_images/whats_new_0-98-4-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_0-98-4-3.png \ No newline at end of file diff --git a/_images/whats_new_0-99-1.png b/_images/whats_new_0-99-1.png deleted file mode 120000 index e9d0c8b0554..00000000000 --- a/_images/whats_new_0-99-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_0-99-1.png \ No newline at end of file diff --git a/_images/whats_new_0-99-2.png b/_images/whats_new_0-99-2.png deleted file mode 120000 index 630f1fbcfc1..00000000000 --- a/_images/whats_new_0-99-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_0-99-2.png \ No newline at end of file diff --git a/_images/whats_new_0-99-3.png b/_images/whats_new_0-99-3.png deleted file mode 120000 index 7f7a635a647..00000000000 --- a/_images/whats_new_0-99-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_0-99-3.png \ No newline at end of file diff --git a/_images/whats_new_1-0-1.png b/_images/whats_new_1-0-1.png deleted file mode 120000 index 243c6e7a891..00000000000 --- a/_images/whats_new_1-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-0-1.png \ No newline at end of file diff --git a/_images/whats_new_1-1-1_00_00.png b/_images/whats_new_1-1-1_00_00.png deleted file mode 120000 index 0edee6f65ac..00000000000 --- a/_images/whats_new_1-1-1_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-1-1_00_00.png \ No newline at end of file diff --git a/_images/whats_new_1-1-1_01_00.png b/_images/whats_new_1-1-1_01_00.png deleted file mode 120000 index 6636d52bf03..00000000000 --- a/_images/whats_new_1-1-1_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-1-1_01_00.png \ No newline at end of file diff --git a/_images/whats_new_1-2-1.png b/_images/whats_new_1-2-1.png deleted file mode 120000 index fb458c87cd6..00000000000 --- a/_images/whats_new_1-2-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-2-1.png \ No newline at end of file diff --git a/_images/whats_new_1-5-1.png b/_images/whats_new_1-5-1.png deleted file mode 120000 index fec6e82eff2..00000000000 --- a/_images/whats_new_1-5-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-5-1.png \ No newline at end of file diff --git a/_images/whats_new_1-5-2.png b/_images/whats_new_1-5-2.png deleted file mode 120000 index c6979f8e1ed..00000000000 --- a/_images/whats_new_1-5-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-5-2.png \ No newline at end of file diff --git a/_images/whats_new_1-5-3.png b/_images/whats_new_1-5-3.png deleted file mode 120000 index fda24183b28..00000000000 --- a/_images/whats_new_1-5-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-5-3.png \ No newline at end of file diff --git a/_images/whats_new_1-5-4.png b/_images/whats_new_1-5-4.png deleted file mode 120000 index 3a6332a06c8..00000000000 --- a/_images/whats_new_1-5-4.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-5-4.png \ No newline at end of file diff --git a/_images/whats_new_1-5-5.png b/_images/whats_new_1-5-5.png deleted file mode 120000 index b4d0a5cafb5..00000000000 --- a/_images/whats_new_1-5-5.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-5-5.png \ No newline at end of file diff --git a/_images/whats_new_1-5-6.png b/_images/whats_new_1-5-6.png deleted file mode 120000 index 47a44199b5b..00000000000 --- a/_images/whats_new_1-5-6.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_1-5-6.png \ No newline at end of file diff --git a/_images/whats_new_1_subplot3d.png b/_images/whats_new_1_subplot3d.png deleted file mode 120000 index d8684278566..00000000000 --- a/_images/whats_new_1_subplot3d.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/whats_new_1_subplot3d.png \ No newline at end of file diff --git a/_images/whats_new_2-0-0-1.png b/_images/whats_new_2-0-0-1.png deleted file mode 120000 index 7a672a15448..00000000000 --- a/_images/whats_new_2-0-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_2-0-0-1.png \ No newline at end of file diff --git a/_images/whats_new_2-1-0-1.png b/_images/whats_new_2-1-0-1.png deleted file mode 120000 index 214e26e0e07..00000000000 --- a/_images/whats_new_2-1-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_2-1-0-1.png \ No newline at end of file diff --git a/_images/whats_new_2-1-0-2.png b/_images/whats_new_2-1-0-2.png deleted file mode 120000 index 08a266d816d..00000000000 --- a/_images/whats_new_2-1-0-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_2-1-0-2.png \ No newline at end of file diff --git a/_images/whats_new_2-1-0-3.png b/_images/whats_new_2-1-0-3.png deleted file mode 120000 index d23d4daf7a5..00000000000 --- a/_images/whats_new_2-1-0-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_2-1-0-3.png \ No newline at end of file diff --git a/_images/whats_new_2-1-0-4.png b/_images/whats_new_2-1-0-4.png deleted file mode 120000 index 6e9ea387fa4..00000000000 --- a/_images/whats_new_2-1-0-4.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_2-1-0-4.png \ No newline at end of file diff --git a/_images/whats_new_2-2-1.png b/_images/whats_new_2-2-1.png deleted file mode 120000 index d7b5d0215d5..00000000000 --- a/_images/whats_new_2-2-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_2-2-1.png \ No newline at end of file diff --git a/_images/whats_new_2-2-2.png b/_images/whats_new_2-2-2.png deleted file mode 120000 index 2b88415a2e7..00000000000 --- a/_images/whats_new_2-2-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_2-2-2.png \ No newline at end of file diff --git a/_images/whats_new_3-1-0-1.png b/_images/whats_new_3-1-0-1.png deleted file mode 120000 index 3723e813481..00000000000 --- a/_images/whats_new_3-1-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-1-0-1.png \ No newline at end of file diff --git a/_images/whats_new_3-1-0-2.png b/_images/whats_new_3-1-0-2.png deleted file mode 120000 index f3a857714d2..00000000000 --- a/_images/whats_new_3-1-0-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-1-0-2.png \ No newline at end of file diff --git a/_images/whats_new_3-1-0-3.png b/_images/whats_new_3-1-0-3.png deleted file mode 120000 index 239f7d5002f..00000000000 --- a/_images/whats_new_3-1-0-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-1-0-3.png \ No newline at end of file diff --git a/_images/whats_new_3-1-0-4.png b/_images/whats_new_3-1-0-4.png deleted file mode 120000 index 76feda35a8b..00000000000 --- a/_images/whats_new_3-1-0-4.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-1-0-4.png \ No newline at end of file diff --git a/_images/whats_new_3-2-0-1.png b/_images/whats_new_3-2-0-1.png deleted file mode 120000 index 6cab1f0a90b..00000000000 --- a/_images/whats_new_3-2-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-2-0-1.png \ No newline at end of file diff --git a/_images/whats_new_3-2-0-2.png b/_images/whats_new_3-2-0-2.png deleted file mode 120000 index a2b2d6b1b32..00000000000 --- a/_images/whats_new_3-2-0-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-2-0-2.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-1.png b/_images/whats_new_3-3-0-1.png deleted file mode 120000 index 42f80c66a0f..00000000000 --- a/_images/whats_new_3-3-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-1.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-10.png b/_images/whats_new_3-3-0-10.png deleted file mode 120000 index f05610463a8..00000000000 --- a/_images/whats_new_3-3-0-10.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-10.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-11.png b/_images/whats_new_3-3-0-11.png deleted file mode 120000 index 34b8d3435bd..00000000000 --- a/_images/whats_new_3-3-0-11.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-11.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-111.png b/_images/whats_new_3-3-0-111.png deleted file mode 120000 index bc504459cdf..00000000000 --- a/_images/whats_new_3-3-0-111.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/whats_new_3-3-0-111.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-12.png b/_images/whats_new_3-3-0-12.png deleted file mode 120000 index 34e09bad5f0..00000000000 --- a/_images/whats_new_3-3-0-12.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-12.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-13.png b/_images/whats_new_3-3-0-13.png deleted file mode 120000 index 875c2648551..00000000000 --- a/_images/whats_new_3-3-0-13.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-13.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-14.png b/_images/whats_new_3-3-0-14.png deleted file mode 120000 index a2715a126e3..00000000000 --- a/_images/whats_new_3-3-0-14.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-14.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-2.png b/_images/whats_new_3-3-0-2.png deleted file mode 120000 index f0cb151a84c..00000000000 --- a/_images/whats_new_3-3-0-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-2.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-3.png b/_images/whats_new_3-3-0-3.png deleted file mode 120000 index 41010680705..00000000000 --- a/_images/whats_new_3-3-0-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-3.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-4.png b/_images/whats_new_3-3-0-4.png deleted file mode 120000 index 1404d7ba4a4..00000000000 --- a/_images/whats_new_3-3-0-4.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-4.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-5.png b/_images/whats_new_3-3-0-5.png deleted file mode 120000 index e99476e73ec..00000000000 --- a/_images/whats_new_3-3-0-5.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-5.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-6.png b/_images/whats_new_3-3-0-6.png deleted file mode 120000 index 243857ecc7d..00000000000 --- a/_images/whats_new_3-3-0-6.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-6.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-7.png b/_images/whats_new_3-3-0-7.png deleted file mode 120000 index 239ede93616..00000000000 --- a/_images/whats_new_3-3-0-7.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-7.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-8.png b/_images/whats_new_3-3-0-8.png deleted file mode 120000 index 7d333ba788f..00000000000 --- a/_images/whats_new_3-3-0-8.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-8.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-9_00.png b/_images/whats_new_3-3-0-9_00.png deleted file mode 120000 index ed8c3b44368..00000000000 --- a/_images/whats_new_3-3-0-9_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-9_00.png \ No newline at end of file diff --git a/_images/whats_new_3-3-0-9_01.png b/_images/whats_new_3-3-0-9_01.png deleted file mode 120000 index 556d8b04034..00000000000 --- a/_images/whats_new_3-3-0-9_01.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-3-0-9_01.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-1.png b/_images/whats_new_3-4-0-1.png deleted file mode 120000 index 16e171ff073..00000000000 --- a/_images/whats_new_3-4-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-1.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-10.png b/_images/whats_new_3-4-0-10.png deleted file mode 120000 index 5233a6236f6..00000000000 --- a/_images/whats_new_3-4-0-10.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-10.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-11.png b/_images/whats_new_3-4-0-11.png deleted file mode 120000 index 147737be282..00000000000 --- a/_images/whats_new_3-4-0-11.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-11.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-12.png b/_images/whats_new_3-4-0-12.png deleted file mode 120000 index 81fe325f8cc..00000000000 --- a/_images/whats_new_3-4-0-12.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-12.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-13.png b/_images/whats_new_3-4-0-13.png deleted file mode 120000 index f2fb893354f..00000000000 --- a/_images/whats_new_3-4-0-13.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-13.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-14.png b/_images/whats_new_3-4-0-14.png deleted file mode 120000 index 2aeec418e94..00000000000 --- a/_images/whats_new_3-4-0-14.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-14.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-15.png b/_images/whats_new_3-4-0-15.png deleted file mode 120000 index 313aa0c8c38..00000000000 --- a/_images/whats_new_3-4-0-15.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-15.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-16.png b/_images/whats_new_3-4-0-16.png deleted file mode 120000 index bc03521362e..00000000000 --- a/_images/whats_new_3-4-0-16.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-16.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-17.png b/_images/whats_new_3-4-0-17.png deleted file mode 120000 index ef7c2c1df24..00000000000 --- a/_images/whats_new_3-4-0-17.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-17.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-18.png b/_images/whats_new_3-4-0-18.png deleted file mode 120000 index 51bd5fc1af4..00000000000 --- a/_images/whats_new_3-4-0-18.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-18.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-19.png b/_images/whats_new_3-4-0-19.png deleted file mode 120000 index 76e8aae19dd..00000000000 --- a/_images/whats_new_3-4-0-19.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-19.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-2.png b/_images/whats_new_3-4-0-2.png deleted file mode 120000 index 011b361de7a..00000000000 --- a/_images/whats_new_3-4-0-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-2.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-20.png b/_images/whats_new_3-4-0-20.png deleted file mode 120000 index 93fa0f6f1ce..00000000000 --- a/_images/whats_new_3-4-0-20.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-20.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-21.png b/_images/whats_new_3-4-0-21.png deleted file mode 120000 index 20624624e54..00000000000 --- a/_images/whats_new_3-4-0-21.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-21.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-22.png b/_images/whats_new_3-4-0-22.png deleted file mode 120000 index 8cc98220b1a..00000000000 --- a/_images/whats_new_3-4-0-22.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-22.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-23.png b/_images/whats_new_3-4-0-23.png deleted file mode 120000 index 283be29958f..00000000000 --- a/_images/whats_new_3-4-0-23.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-23.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-24.png b/_images/whats_new_3-4-0-24.png deleted file mode 120000 index 1f05058c3ec..00000000000 --- a/_images/whats_new_3-4-0-24.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-24.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-25.png b/_images/whats_new_3-4-0-25.png deleted file mode 120000 index 4a9d27505d9..00000000000 --- a/_images/whats_new_3-4-0-25.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-25.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-3.png b/_images/whats_new_3-4-0-3.png deleted file mode 120000 index b801a6ecb75..00000000000 --- a/_images/whats_new_3-4-0-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-3.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-4.png b/_images/whats_new_3-4-0-4.png deleted file mode 120000 index ed3d8ad2c87..00000000000 --- a/_images/whats_new_3-4-0-4.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-4.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-5.png b/_images/whats_new_3-4-0-5.png deleted file mode 120000 index 7ec8c569c92..00000000000 --- a/_images/whats_new_3-4-0-5.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-5.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-6.png b/_images/whats_new_3-4-0-6.png deleted file mode 120000 index 02caf781e22..00000000000 --- a/_images/whats_new_3-4-0-6.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-6.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-7.png b/_images/whats_new_3-4-0-7.png deleted file mode 120000 index dc75369fa78..00000000000 --- a/_images/whats_new_3-4-0-7.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-7.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-8.png b/_images/whats_new_3-4-0-8.png deleted file mode 120000 index 8ccca57dc35..00000000000 --- a/_images/whats_new_3-4-0-8.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-8.png \ No newline at end of file diff --git a/_images/whats_new_3-4-0-9.png b/_images/whats_new_3-4-0-9.png deleted file mode 120000 index 6b648d1db14..00000000000 --- a/_images/whats_new_3-4-0-9.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-4-0-9.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-1.png b/_images/whats_new_3-5-0-1.png deleted file mode 120000 index 2999a84a06d..00000000000 --- a/_images/whats_new_3-5-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-1.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-10.png b/_images/whats_new_3-5-0-10.png deleted file mode 120000 index 90387eb6880..00000000000 --- a/_images/whats_new_3-5-0-10.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-10.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-11.png b/_images/whats_new_3-5-0-11.png deleted file mode 120000 index bedadbaedf3..00000000000 --- a/_images/whats_new_3-5-0-11.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-11.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-2.png b/_images/whats_new_3-5-0-2.png deleted file mode 120000 index 70b2f24b5ec..00000000000 --- a/_images/whats_new_3-5-0-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-2.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-3.png b/_images/whats_new_3-5-0-3.png deleted file mode 120000 index 16221a51b56..00000000000 --- a/_images/whats_new_3-5-0-3.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-3.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-4.png b/_images/whats_new_3-5-0-4.png deleted file mode 120000 index 690b6292800..00000000000 --- a/_images/whats_new_3-5-0-4.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-4.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-5.png b/_images/whats_new_3-5-0-5.png deleted file mode 120000 index e33c823c75c..00000000000 --- a/_images/whats_new_3-5-0-5.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-5.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-6.png b/_images/whats_new_3-5-0-6.png deleted file mode 120000 index e8fd017b704..00000000000 --- a/_images/whats_new_3-5-0-6.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-6.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-7.png b/_images/whats_new_3-5-0-7.png deleted file mode 120000 index ded68819480..00000000000 --- a/_images/whats_new_3-5-0-7.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-7.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-8.png b/_images/whats_new_3-5-0-8.png deleted file mode 120000 index c812a7229d7..00000000000 --- a/_images/whats_new_3-5-0-8.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-8.png \ No newline at end of file diff --git a/_images/whats_new_3-5-0-9.png b/_images/whats_new_3-5-0-9.png deleted file mode 120000 index 47c69bbb508..00000000000 --- a/_images/whats_new_3-5-0-9.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_images/whats_new_3-5-0-9.png \ No newline at end of file diff --git a/_images/whats_new_98_4_fancy.png b/_images/whats_new_98_4_fancy.png deleted file mode 120000 index da539cf3372..00000000000 --- a/_images/whats_new_98_4_fancy.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/whats_new_98_4_fancy.png \ No newline at end of file diff --git a/_images/whats_new_98_4_fill_between.png b/_images/whats_new_98_4_fill_between.png deleted file mode 120000 index 973da7c832e..00000000000 --- a/_images/whats_new_98_4_fill_between.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/whats_new_98_4_fill_between.png \ No newline at end of file diff --git a/_images/whats_new_98_4_legend.png b/_images/whats_new_98_4_legend.png deleted file mode 120000 index d1d2fbaca05..00000000000 --- a/_images/whats_new_98_4_legend.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/whats_new_98_4_legend.png \ No newline at end of file diff --git a/_images/whats_new_99_axes_grid.png b/_images/whats_new_99_axes_grid.png deleted file mode 120000 index e5ddf496c52..00000000000 --- a/_images/whats_new_99_axes_grid.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/whats_new_99_axes_grid.png \ No newline at end of file diff --git a/_images/whats_new_99_mplot3d.png b/_images/whats_new_99_mplot3d.png deleted file mode 120000 index 89c3165ca5a..00000000000 --- a/_images/whats_new_99_mplot3d.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/whats_new_99_mplot3d.png \ No newline at end of file diff --git a/_images/whats_new_99_spines.png b/_images/whats_new_99_spines.png deleted file mode 120000 index 203cea7c6b3..00000000000 --- a/_images/whats_new_99_spines.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/whats_new_99_spines.png \ No newline at end of file diff --git a/_images/wire3d_animation_demo.png b/_images/wire3d_animation_demo.png deleted file mode 120000 index b692fa174c4..00000000000 --- a/_images/wire3d_animation_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/wire3d_animation_demo.png \ No newline at end of file diff --git a/_images/wire3d_demo.png b/_images/wire3d_demo.png deleted file mode 120000 index f6d16ec9cd8..00000000000 --- a/_images/wire3d_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/wire3d_demo.png \ No newline at end of file diff --git a/_images/wire3d_demo1.png b/_images/wire3d_demo1.png deleted file mode 120000 index d60eafbdb10..00000000000 --- a/_images/wire3d_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/wire3d_demo1.png \ No newline at end of file diff --git a/_images/wire3d_zero_stride.png b/_images/wire3d_zero_stride.png deleted file mode 120000 index a2919bd5110..00000000000 --- a/_images/wire3d_zero_stride.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/wire3d_zero_stride.png \ No newline at end of file diff --git a/_images/xcorr_demo.png b/_images/xcorr_demo.png deleted file mode 120000 index 66395f6e9ae..00000000000 --- a/_images/xcorr_demo.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xcorr_demo.png \ No newline at end of file diff --git a/_images/xcorr_demo1.png b/_images/xcorr_demo1.png deleted file mode 120000 index d3a9d19337b..00000000000 --- a/_images/xcorr_demo1.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xcorr_demo1.png \ No newline at end of file diff --git a/_images/xcorr_demo2.png b/_images/xcorr_demo2.png deleted file mode 120000 index bb582a9eb10..00000000000 --- a/_images/xcorr_demo2.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xcorr_demo2.png \ No newline at end of file diff --git a/_images/xkcd_00.png b/_images/xkcd_00.png deleted file mode 120000 index aa0a0e28275..00000000000 --- a/_images/xkcd_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xkcd_00.png \ No newline at end of file diff --git a/_images/xkcd_001.png b/_images/xkcd_001.png deleted file mode 120000 index 4399e9f1569..00000000000 --- a/_images/xkcd_001.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xkcd_001.png \ No newline at end of file diff --git a/_images/xkcd_002.png b/_images/xkcd_002.png deleted file mode 120000 index b02dec301d2..00000000000 --- a/_images/xkcd_002.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xkcd_002.png \ No newline at end of file diff --git a/_images/xkcd_01.png b/_images/xkcd_01.png deleted file mode 120000 index f8ad9d420ab..00000000000 --- a/_images/xkcd_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xkcd_01.png \ No newline at end of file diff --git a/_images/xkcd_011.png b/_images/xkcd_011.png deleted file mode 120000 index 4cfb323d7db..00000000000 --- a/_images/xkcd_011.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xkcd_011.png \ No newline at end of file diff --git a/_images/xkcd_012.png b/_images/xkcd_012.png deleted file mode 120000 index e94700fda10..00000000000 --- a/_images/xkcd_012.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/xkcd_012.png \ No newline at end of file diff --git a/_images/yellowbrick.png b/_images/yellowbrick.png deleted file mode 120000 index 736ecb1c0a6..00000000000 --- a/_images/yellowbrick.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_images/yellowbrick.png \ No newline at end of file diff --git a/_images/zoom_to_rect.png b/_images/zoom_to_rect.png deleted file mode 120000 index f56e00378a0..00000000000 --- a/_images/zoom_to_rect.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_images/zoom_to_rect.png \ No newline at end of file diff --git a/_images/zoom_to_rect_large.png b/_images/zoom_to_rect_large.png deleted file mode 120000 index 4959fc241b3..00000000000 --- a/_images/zoom_to_rect_large.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_images/zoom_to_rect_large.png \ No newline at end of file diff --git a/_images/zorder_demo_00.png b/_images/zorder_demo_00.png deleted file mode 120000 index 9375a79f78a..00000000000 --- a/_images/zorder_demo_00.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/zorder_demo_00.png \ No newline at end of file diff --git a/_images/zorder_demo_01.png b/_images/zorder_demo_01.png deleted file mode 120000 index 0aec91e0014..00000000000 --- a/_images/zorder_demo_01.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_images/zorder_demo_01.png \ No newline at end of file diff --git a/_modules/dateutil/relativedelta.html b/_modules/dateutil/relativedelta.html deleted file mode 100644 index 8acfeaf9291..00000000000 --- a/_modules/dateutil/relativedelta.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/dateutil/rrule.html b/_modules/dateutil/rrule.html deleted file mode 100644 index 25c29e2487d..00000000000 --- a/_modules/dateutil/rrule.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/index.html b/_modules/index.html deleted file mode 100644 index 678906c7896..00000000000 --- a/_modules/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib.html b/_modules/matplotlib.html deleted file mode 100644 index 74bff0c6ca4..00000000000 --- a/_modules/matplotlib.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/_api.html b/_modules/matplotlib/_api.html deleted file mode 100644 index 1a282896228..00000000000 --- a/_modules/matplotlib/_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/_api/deprecation.html b/_modules/matplotlib/_api/deprecation.html deleted file mode 100644 index 6c89d044c7f..00000000000 --- a/_modules/matplotlib/_api/deprecation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/_enums.html b/_modules/matplotlib/_enums.html deleted file mode 100644 index 72b6231cde1..00000000000 --- a/_modules/matplotlib/_enums.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/afm.html b/_modules/matplotlib/afm.html deleted file mode 100644 index f989fa8b5a8..00000000000 --- a/_modules/matplotlib/afm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/animation.html b/_modules/matplotlib/animation.html deleted file mode 100644 index c55629ac31d..00000000000 --- a/_modules/matplotlib/animation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/artist.html b/_modules/matplotlib/artist.html deleted file mode 100644 index 7d03b6e9c92..00000000000 --- a/_modules/matplotlib/artist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/axes/_axes.html b/_modules/matplotlib/axes/_axes.html deleted file mode 100644 index ec846654b49..00000000000 --- a/_modules/matplotlib/axes/_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/axes/_base.html b/_modules/matplotlib/axes/_base.html deleted file mode 100644 index 8083cdffdf3..00000000000 --- a/_modules/matplotlib/axes/_base.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/axes/_subplots.html b/_modules/matplotlib/axes/_subplots.html deleted file mode 100644 index 816ae38980d..00000000000 --- a/_modules/matplotlib/axes/_subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/axis.html b/_modules/matplotlib/axis.html deleted file mode 100644 index 803acb4beeb..00000000000 --- a/_modules/matplotlib/axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backend_bases.html b/_modules/matplotlib/backend_bases.html deleted file mode 100644 index 8feeef20721..00000000000 --- a/_modules/matplotlib/backend_bases.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backend_managers.html b/_modules/matplotlib/backend_managers.html deleted file mode 100644 index 1e8d7e24b3c..00000000000 --- a/_modules/matplotlib/backend_managers.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backend_tools.html b/_modules/matplotlib/backend_tools.html deleted file mode 100644 index db39224be0e..00000000000 --- a/_modules/matplotlib/backend_tools.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_agg.html b/_modules/matplotlib/backends/backend_agg.html deleted file mode 100644 index 66a1abe7972..00000000000 --- a/_modules/matplotlib/backends/backend_agg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_cairo.html b/_modules/matplotlib/backends/backend_cairo.html deleted file mode 100644 index 2bc2add7c9f..00000000000 --- a/_modules/matplotlib/backends/backend_cairo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_mixed.html b/_modules/matplotlib/backends/backend_mixed.html deleted file mode 100644 index 4e5cfe138a7..00000000000 --- a/_modules/matplotlib/backends/backend_mixed.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_nbagg.html b/_modules/matplotlib/backends/backend_nbagg.html deleted file mode 100644 index cfd2406650e..00000000000 --- a/_modules/matplotlib/backends/backend_nbagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_pdf.html b/_modules/matplotlib/backends/backend_pdf.html deleted file mode 100644 index 5097d787a4c..00000000000 --- a/_modules/matplotlib/backends/backend_pdf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_pgf.html b/_modules/matplotlib/backends/backend_pgf.html deleted file mode 100644 index 082bd05ad8c..00000000000 --- a/_modules/matplotlib/backends/backend_pgf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_ps.html b/_modules/matplotlib/backends/backend_ps.html deleted file mode 100644 index e537622604c..00000000000 --- a/_modules/matplotlib/backends/backend_ps.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_qt5agg.html b/_modules/matplotlib/backends/backend_qt5agg.html deleted file mode 100644 index c1588628f5b..00000000000 --- a/_modules/matplotlib/backends/backend_qt5agg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_qt5cairo.html b/_modules/matplotlib/backends/backend_qt5cairo.html deleted file mode 100644 index d003ec77e34..00000000000 --- a/_modules/matplotlib/backends/backend_qt5cairo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_svg.html b/_modules/matplotlib/backends/backend_svg.html deleted file mode 100644 index 05448b4bfcc..00000000000 --- a/_modules/matplotlib/backends/backend_svg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_template.html b/_modules/matplotlib/backends/backend_template.html deleted file mode 100644 index 311bb1d66b3..00000000000 --- a/_modules/matplotlib/backends/backend_template.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_tkagg.html b/_modules/matplotlib/backends/backend_tkagg.html deleted file mode 100644 index aed0faf2743..00000000000 --- a/_modules/matplotlib/backends/backend_tkagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_tkcairo.html b/_modules/matplotlib/backends/backend_tkcairo.html deleted file mode 100644 index 619b6f05543..00000000000 --- a/_modules/matplotlib/backends/backend_tkcairo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/backends/backend_wxagg.html b/_modules/matplotlib/backends/backend_wxagg.html deleted file mode 100644 index 735350a9559..00000000000 --- a/_modules/matplotlib/backends/backend_wxagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/bezier.html b/_modules/matplotlib/bezier.html deleted file mode 100644 index 13b4a00c608..00000000000 --- a/_modules/matplotlib/bezier.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/blocking_input.html b/_modules/matplotlib/blocking_input.html deleted file mode 100644 index 4af86a394f6..00000000000 --- a/_modules/matplotlib/blocking_input.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/category.html b/_modules/matplotlib/category.html deleted file mode 100644 index d31bc1495bb..00000000000 --- a/_modules/matplotlib/category.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/cbook.html b/_modules/matplotlib/cbook.html deleted file mode 100644 index 8692e85b1bc..00000000000 --- a/_modules/matplotlib/cbook.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/cbook/deprecation.html b/_modules/matplotlib/cbook/deprecation.html deleted file mode 100644 index ad9284c100c..00000000000 --- a/_modules/matplotlib/cbook/deprecation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/cm.html b/_modules/matplotlib/cm.html deleted file mode 100644 index 8396f9117de..00000000000 --- a/_modules/matplotlib/cm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/collections.html b/_modules/matplotlib/collections.html deleted file mode 100644 index b134d56dbe1..00000000000 --- a/_modules/matplotlib/collections.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/colorbar.html b/_modules/matplotlib/colorbar.html deleted file mode 100644 index 91c45cb4ab4..00000000000 --- a/_modules/matplotlib/colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/colors.html b/_modules/matplotlib/colors.html deleted file mode 100644 index a95a8b6bc5d..00000000000 --- a/_modules/matplotlib/colors.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/container.html b/_modules/matplotlib/container.html deleted file mode 100644 index e9dab741ec9..00000000000 --- a/_modules/matplotlib/container.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/contour.html b/_modules/matplotlib/contour.html deleted file mode 100644 index 71804fbd0f9..00000000000 --- a/_modules/matplotlib/contour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/dates.html b/_modules/matplotlib/dates.html deleted file mode 100644 index 7d634ca0332..00000000000 --- a/_modules/matplotlib/dates.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/docstring.html b/_modules/matplotlib/docstring.html deleted file mode 100644 index 2ac60f597b9..00000000000 --- a/_modules/matplotlib/docstring.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/dviread.html b/_modules/matplotlib/dviread.html deleted file mode 100644 index 363e810c504..00000000000 --- a/_modules/matplotlib/dviread.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/figure.html b/_modules/matplotlib/figure.html deleted file mode 100644 index 8d5dfb9111d..00000000000 --- a/_modules/matplotlib/figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/font_manager.html b/_modules/matplotlib/font_manager.html deleted file mode 100644 index fa58a62c09f..00000000000 --- a/_modules/matplotlib/font_manager.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/fontconfig_pattern.html b/_modules/matplotlib/fontconfig_pattern.html deleted file mode 100644 index 8c276e102ec..00000000000 --- a/_modules/matplotlib/fontconfig_pattern.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/gridspec.html b/_modules/matplotlib/gridspec.html deleted file mode 100644 index 4c2a9797c72..00000000000 --- a/_modules/matplotlib/gridspec.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/image.html b/_modules/matplotlib/image.html deleted file mode 100644 index 28d75374513..00000000000 --- a/_modules/matplotlib/image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/legend.html b/_modules/matplotlib/legend.html deleted file mode 100644 index ed49bdd20b2..00000000000 --- a/_modules/matplotlib/legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/legend_handler.html b/_modules/matplotlib/legend_handler.html deleted file mode 100644 index 658a3210334..00000000000 --- a/_modules/matplotlib/legend_handler.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/lines.html b/_modules/matplotlib/lines.html deleted file mode 100644 index 7ce8401c5f8..00000000000 --- a/_modules/matplotlib/lines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/markers.html b/_modules/matplotlib/markers.html deleted file mode 100644 index 64df5702099..00000000000 --- a/_modules/matplotlib/markers.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/mathtext.html b/_modules/matplotlib/mathtext.html deleted file mode 100644 index ef242f5f524..00000000000 --- a/_modules/matplotlib/mathtext.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/mlab.html b/_modules/matplotlib/mlab.html deleted file mode 100644 index ee776feba3b..00000000000 --- a/_modules/matplotlib/mlab.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/offsetbox.html b/_modules/matplotlib/offsetbox.html deleted file mode 100644 index d45d6dc2821..00000000000 --- a/_modules/matplotlib/offsetbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/patches.html b/_modules/matplotlib/patches.html deleted file mode 100644 index 1da4ba0b78b..00000000000 --- a/_modules/matplotlib/patches.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/path.html b/_modules/matplotlib/path.html deleted file mode 100644 index 835ac6323f7..00000000000 --- a/_modules/matplotlib/path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/patheffects.html b/_modules/matplotlib/patheffects.html deleted file mode 100644 index 79edcd963b3..00000000000 --- a/_modules/matplotlib/patheffects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/projections.html b/_modules/matplotlib/projections.html deleted file mode 100644 index eb08903060a..00000000000 --- a/_modules/matplotlib/projections.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/projections/polar.html b/_modules/matplotlib/projections/polar.html deleted file mode 100644 index fffb12cc305..00000000000 --- a/_modules/matplotlib/projections/polar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/pyplot.html b/_modules/matplotlib/pyplot.html deleted file mode 100644 index 4958757ba6e..00000000000 --- a/_modules/matplotlib/pyplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/quiver.html b/_modules/matplotlib/quiver.html deleted file mode 100644 index c7cb0f0e685..00000000000 --- a/_modules/matplotlib/quiver.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/rcsetup.html b/_modules/matplotlib/rcsetup.html deleted file mode 100644 index e6f4e813710..00000000000 --- a/_modules/matplotlib/rcsetup.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/sankey.html b/_modules/matplotlib/sankey.html deleted file mode 100644 index 5b48e6a176c..00000000000 --- a/_modules/matplotlib/sankey.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/scale.html b/_modules/matplotlib/scale.html deleted file mode 100644 index 10f32e4233b..00000000000 --- a/_modules/matplotlib/scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/sphinxext/plot_directive.html b/_modules/matplotlib/sphinxext/plot_directive.html deleted file mode 100644 index 71e423cf4c9..00000000000 --- a/_modules/matplotlib/sphinxext/plot_directive.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/spines.html b/_modules/matplotlib/spines.html deleted file mode 100644 index 050df5cc175..00000000000 --- a/_modules/matplotlib/spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/stackplot.html b/_modules/matplotlib/stackplot.html deleted file mode 100644 index 995e6f9deb4..00000000000 --- a/_modules/matplotlib/stackplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/streamplot.html b/_modules/matplotlib/streamplot.html deleted file mode 100644 index 91572fde1e6..00000000000 --- a/_modules/matplotlib/streamplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/style/core.html b/_modules/matplotlib/style/core.html deleted file mode 100644 index 51f0e4146fd..00000000000 --- a/_modules/matplotlib/style/core.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/table.html b/_modules/matplotlib/table.html deleted file mode 100644 index 9aebdfec940..00000000000 --- a/_modules/matplotlib/table.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/testing.html b/_modules/matplotlib/testing.html deleted file mode 100644 index 1189fa9a114..00000000000 --- a/_modules/matplotlib/testing.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/testing/compare.html b/_modules/matplotlib/testing/compare.html deleted file mode 100644 index c662d45eb4e..00000000000 --- a/_modules/matplotlib/testing/compare.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/testing/decorators.html b/_modules/matplotlib/testing/decorators.html deleted file mode 100644 index d9667d7cc0b..00000000000 --- a/_modules/matplotlib/testing/decorators.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/testing/disable_internet.html b/_modules/matplotlib/testing/disable_internet.html deleted file mode 100644 index e23de195b05..00000000000 --- a/_modules/matplotlib/testing/disable_internet.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/testing/exceptions.html b/_modules/matplotlib/testing/exceptions.html deleted file mode 100644 index e2c44b7f505..00000000000 --- a/_modules/matplotlib/testing/exceptions.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/texmanager.html b/_modules/matplotlib/texmanager.html deleted file mode 100644 index beed894f0b0..00000000000 --- a/_modules/matplotlib/texmanager.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/text.html b/_modules/matplotlib/text.html deleted file mode 100644 index 6238d1de5ea..00000000000 --- a/_modules/matplotlib/text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/textpath.html b/_modules/matplotlib/textpath.html deleted file mode 100644 index 9d914263103..00000000000 --- a/_modules/matplotlib/textpath.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/ticker.html b/_modules/matplotlib/ticker.html deleted file mode 100644 index b3f8f14a210..00000000000 --- a/_modules/matplotlib/ticker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tight_bbox.html b/_modules/matplotlib/tight_bbox.html deleted file mode 100644 index a73834bf4a4..00000000000 --- a/_modules/matplotlib/tight_bbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tight_layout.html b/_modules/matplotlib/tight_layout.html deleted file mode 100644 index 4395d6a9128..00000000000 --- a/_modules/matplotlib/tight_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/transforms.html b/_modules/matplotlib/transforms.html deleted file mode 100644 index ca855f3e255..00000000000 --- a/_modules/matplotlib/transforms.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/triangulation.html b/_modules/matplotlib/tri/triangulation.html deleted file mode 100644 index 72d74e37bb9..00000000000 --- a/_modules/matplotlib/tri/triangulation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/tricontour.html b/_modules/matplotlib/tri/tricontour.html deleted file mode 100644 index 111d5011ba3..00000000000 --- a/_modules/matplotlib/tri/tricontour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/trifinder.html b/_modules/matplotlib/tri/trifinder.html deleted file mode 100644 index 2fc15e28d89..00000000000 --- a/_modules/matplotlib/tri/trifinder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/triinterpolate.html b/_modules/matplotlib/tri/triinterpolate.html deleted file mode 100644 index 63de84fcf42..00000000000 --- a/_modules/matplotlib/tri/triinterpolate.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/tripcolor.html b/_modules/matplotlib/tri/tripcolor.html deleted file mode 100644 index 0b19a4d4ed0..00000000000 --- a/_modules/matplotlib/tri/tripcolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/triplot.html b/_modules/matplotlib/tri/triplot.html deleted file mode 100644 index ed5488f2850..00000000000 --- a/_modules/matplotlib/tri/triplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/trirefine.html b/_modules/matplotlib/tri/trirefine.html deleted file mode 100644 index 53ad5e3ec62..00000000000 --- a/_modules/matplotlib/tri/trirefine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/tri/tritools.html b/_modules/matplotlib/tri/tritools.html deleted file mode 100644 index ad5a6ef63c1..00000000000 --- a/_modules/matplotlib/tri/tritools.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/type1font.html b/_modules/matplotlib/type1font.html deleted file mode 100644 index 08069027001..00000000000 --- a/_modules/matplotlib/type1font.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/units.html b/_modules/matplotlib/units.html deleted file mode 100644 index bf301369104..00000000000 --- a/_modules/matplotlib/units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/matplotlib/widgets.html b/_modules/matplotlib/widgets.html deleted file mode 100644 index 86266eac743..00000000000 --- a/_modules/matplotlib/widgets.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/anchored_artists.html b/_modules/mpl_toolkits/axes_grid1/anchored_artists.html deleted file mode 100644 index 40c1b45cc88..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/anchored_artists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/axes_divider.html b/_modules/mpl_toolkits/axes_grid1/axes_divider.html deleted file mode 100644 index 85f228ec7f4..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/axes_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/axes_grid.html b/_modules/mpl_toolkits/axes_grid1/axes_grid.html deleted file mode 100644 index 3d7efcccef3..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/axes_rgb.html b/_modules/mpl_toolkits/axes_grid1/axes_rgb.html deleted file mode 100644 index 10a5b0ed0ed..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/axes_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/axes_size.html b/_modules/mpl_toolkits/axes_grid1/axes_size.html deleted file mode 100644 index db3f9d4e8fe..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/axes_size.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/colorbar.html b/_modules/mpl_toolkits/axes_grid1/colorbar.html deleted file mode 100644 index ec421d18cd0..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/inset_locator.html b/_modules/mpl_toolkits/axes_grid1/inset_locator.html deleted file mode 100644 index 0446c4c7518..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/inset_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/mpl_axes.html b/_modules/mpl_toolkits/axes_grid1/mpl_axes.html deleted file mode 100644 index 8aad23dc020..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/mpl_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axes_grid1/parasite_axes.html b/_modules/mpl_toolkits/axes_grid1/parasite_axes.html deleted file mode 100644 index 1575e1b90b2..00000000000 --- a/_modules/mpl_toolkits/axes_grid1/parasite_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/angle_helper.html b/_modules/mpl_toolkits/axisartist/angle_helper.html deleted file mode 100644 index 3a3586e88c0..00000000000 --- a/_modules/mpl_toolkits/axisartist/angle_helper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/axes_divider.html b/_modules/mpl_toolkits/axisartist/axes_divider.html deleted file mode 100644 index a038b9d0f4b..00000000000 --- a/_modules/mpl_toolkits/axisartist/axes_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/axes_grid.html b/_modules/mpl_toolkits/axisartist/axes_grid.html deleted file mode 100644 index 6d2ac775f59..00000000000 --- a/_modules/mpl_toolkits/axisartist/axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/axes_rgb.html b/_modules/mpl_toolkits/axisartist/axes_rgb.html deleted file mode 100644 index a537124ace6..00000000000 --- a/_modules/mpl_toolkits/axisartist/axes_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/axis_artist.html b/_modules/mpl_toolkits/axisartist/axis_artist.html deleted file mode 100644 index 6cc08c6e2d3..00000000000 --- a/_modules/mpl_toolkits/axisartist/axis_artist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/axisline_style.html b/_modules/mpl_toolkits/axisartist/axisline_style.html deleted file mode 100644 index 4d13944e7b3..00000000000 --- a/_modules/mpl_toolkits/axisartist/axisline_style.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/axislines.html b/_modules/mpl_toolkits/axisartist/axislines.html deleted file mode 100644 index c55e424ab9a..00000000000 --- a/_modules/mpl_toolkits/axisartist/axislines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/clip_path.html b/_modules/mpl_toolkits/axisartist/clip_path.html deleted file mode 100644 index 180b51093d3..00000000000 --- a/_modules/mpl_toolkits/axisartist/clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/floating_axes.html b/_modules/mpl_toolkits/axisartist/floating_axes.html deleted file mode 100644 index ae283328f24..00000000000 --- a/_modules/mpl_toolkits/axisartist/floating_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/grid_finder.html b/_modules/mpl_toolkits/axisartist/grid_finder.html deleted file mode 100644 index 6ef2ab2c6f7..00000000000 --- a/_modules/mpl_toolkits/axisartist/grid_finder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/axisartist/grid_helper_curvelinear.html b/_modules/mpl_toolkits/axisartist/grid_helper_curvelinear.html deleted file mode 100644 index c0ac9c30320..00000000000 --- a/_modules/mpl_toolkits/axisartist/grid_helper_curvelinear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/mplot3d/art3d.html b/_modules/mpl_toolkits/mplot3d/art3d.html deleted file mode 100644 index 7f7e50d07ac..00000000000 --- a/_modules/mpl_toolkits/mplot3d/art3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/mplot3d/axes3d.html b/_modules/mpl_toolkits/mplot3d/axes3d.html deleted file mode 100644 index a02a024ef31..00000000000 --- a/_modules/mpl_toolkits/mplot3d/axes3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/mplot3d/axis3d.html b/_modules/mpl_toolkits/mplot3d/axis3d.html deleted file mode 100644 index 9de84ccd38a..00000000000 --- a/_modules/mpl_toolkits/mplot3d/axis3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/mpl_toolkits/mplot3d/proj3d.html b/_modules/mpl_toolkits/mplot3d/proj3d.html deleted file mode 100644 index b39ea8825c7..00000000000 --- a/_modules/mpl_toolkits/mplot3d/proj3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_modules/numpy.html b/_modules/numpy.html deleted file mode 100644 index c6aef15347b..00000000000 --- a/_modules/numpy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/_panels_static/panels-main.c949a650a448cc0ae9fd3441c0e17fb0.css b/_panels_static/panels-main.c949a650a448cc0ae9fd3441c0e17fb0.css deleted file mode 120000 index 24136c3e25c..00000000000 --- a/_panels_static/panels-main.c949a650a448cc0ae9fd3441c0e17fb0.css +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_panels_static/panels-main.c949a650a448cc0ae9fd3441c0e17fb0.css \ No newline at end of file diff --git a/_panels_static/panels-variables.06eb56fa6e07937060861dad626602ad.css b/_panels_static/panels-variables.06eb56fa6e07937060861dad626602ad.css deleted file mode 120000 index db27203d682..00000000000 --- a/_panels_static/panels-variables.06eb56fa6e07937060861dad626602ad.css +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/_panels_static/panels-variables.06eb56fa6e07937060861dad626602ad.css \ No newline at end of file diff --git a/_sources/api/_api_api.rst.txt b/_sources/api/_api_api.rst.txt deleted file mode 120000 index ca2be392c1c..00000000000 --- a/_sources/api/_api_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/_api_api.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.AVConvBase.rst.txt b/_sources/api/_as_gen/matplotlib.animation.AVConvBase.rst.txt deleted file mode 120000 index ad3a1f7bbb8..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.AVConvBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.animation.AVConvBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.AVConvFileWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.AVConvFileWriter.rst.txt deleted file mode 120000 index 202b0a6db21..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.AVConvFileWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.animation.AVConvFileWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.AVConvWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.AVConvWriter.rst.txt deleted file mode 120000 index f71249e150d..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.AVConvWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.animation.AVConvWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.AbstractMovieWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.AbstractMovieWriter.rst.txt deleted file mode 120000 index f353cfa6cdc..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.AbstractMovieWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.AbstractMovieWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.Animation.rst.txt b/_sources/api/_as_gen/matplotlib.animation.Animation.rst.txt deleted file mode 120000 index 809a14d27a9..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.Animation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.Animation.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.Animation.save.rst.txt b/_sources/api/_as_gen/matplotlib.animation.Animation.save.rst.txt deleted file mode 120000 index d81d78481e6..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.Animation.save.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.animation.Animation.save.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.Animation.to_html5_video.rst.txt b/_sources/api/_as_gen/matplotlib.animation.Animation.to_html5_video.rst.txt deleted file mode 120000 index de90011ec40..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.Animation.to_html5_video.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.animation.Animation.to_html5_video.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.ArtistAnimation.rst.txt b/_sources/api/_as_gen/matplotlib.animation.ArtistAnimation.rst.txt deleted file mode 120000 index f44e4346b10..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.ArtistAnimation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.ArtistAnimation.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.FFMpegBase.rst.txt b/_sources/api/_as_gen/matplotlib.animation.FFMpegBase.rst.txt deleted file mode 120000 index cd46a6aa7d6..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.FFMpegBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.FFMpegBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst.txt deleted file mode 120000 index d9337775ad0..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.FFMpegWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.FFMpegWriter.rst.txt deleted file mode 120000 index bfa294c2d12..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.FFMpegWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.FFMpegWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.rst.txt deleted file mode 120000 index dfa2502fdf9..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.setup.rst.txt b/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.setup.rst.txt deleted file mode 120000 index d5ba98a8c1c..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.setup.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.animation.FileMovieWriter.setup.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.FuncAnimation.rst.txt b/_sources/api/_as_gen/matplotlib.animation.FuncAnimation.rst.txt deleted file mode 120000 index 08acbf60a56..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.FuncAnimation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.FuncAnimation.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.HTMLWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.HTMLWriter.rst.txt deleted file mode 120000 index 0c15ff99d09..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.HTMLWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.HTMLWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.ImageMagickBase.rst.txt b/_sources/api/_as_gen/matplotlib.animation.ImageMagickBase.rst.txt deleted file mode 120000 index 8ce81352eb4..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.ImageMagickBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.ImageMagickBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst.txt deleted file mode 120000 index ebf89e16c48..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst.txt deleted file mode 120000 index 6f6746963b7..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MencoderBase.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MencoderBase.rst.txt deleted file mode 120000 index d8d11a7d27c..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MencoderBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.animation.MencoderBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MencoderFileWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MencoderFileWriter.rst.txt deleted file mode 120000 index 60d5eb9d8a6..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MencoderFileWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.animation.MencoderFileWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MencoderWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MencoderWriter.rst.txt deleted file mode 120000 index 8d2391d0b57..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MencoderWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.animation.MencoderWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.finish.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MovieWriter.finish.rst.txt deleted file mode 120000 index 36a691a167c..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.finish.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.animation.MovieWriter.finish.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.grab_frame.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MovieWriter.grab_frame.rst.txt deleted file mode 120000 index d5926aac56c..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.grab_frame.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.animation.MovieWriter.grab_frame.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MovieWriter.rst.txt deleted file mode 120000 index 239c7772472..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.MovieWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.saving.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MovieWriter.saving.rst.txt deleted file mode 120000 index b88e3299d46..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.saving.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.animation.MovieWriter.saving.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.setup.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MovieWriter.setup.rst.txt deleted file mode 120000 index a9a1ba7b291..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MovieWriter.setup.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.animation.MovieWriter.setup.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.MovieWriterRegistry.rst.txt b/_sources/api/_as_gen/matplotlib.animation.MovieWriterRegistry.rst.txt deleted file mode 120000 index 0cf93aef29f..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.MovieWriterRegistry.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.MovieWriterRegistry.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.PillowWriter.rst.txt b/_sources/api/_as_gen/matplotlib.animation.PillowWriter.rst.txt deleted file mode 120000 index d99734d209d..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.PillowWriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.PillowWriter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.animation.TimedAnimation.rst.txt b/_sources/api/_as_gen/matplotlib.animation.TimedAnimation.rst.txt deleted file mode 120000 index 12d56556eb1..00000000000 --- a/_sources/api/_as_gen/matplotlib.animation.TimedAnimation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.animation.TimedAnimation.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.add_callback.rst.txt deleted file mode 120000 index 084e417fdd2..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.aname.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.aname.rst.txt deleted file mode 120000 index 2495bc71421..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.artist.Artist.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.axes.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.axes.rst.txt deleted file mode 120000 index d2753e7388f..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.contains.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.contains.rst.txt deleted file mode 120000 index ee9f95e2998..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.convert_xunits.rst.txt deleted file mode 120000 index d67d266fd06..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.convert_yunits.rst.txt deleted file mode 120000 index e7fa951c4bf..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.draw.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.draw.rst.txt deleted file mode 120000 index 2f63d3dafcc..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.findobj.rst.txt deleted file mode 120000 index 3d562dd3243..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.format_cursor_data.rst.txt deleted file mode 120000 index 561721a5a7e..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_agg_filter.rst.txt deleted file mode 120000 index fbb3c84d08e..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_alpha.rst.txt deleted file mode 120000 index dea8aea556f..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_animated.rst.txt deleted file mode 120000 index d74335564fa..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_axes.rst.txt deleted file mode 120000 index 0bbe5bc0e38..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.artist.Artist.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_children.rst.txt deleted file mode 120000 index 1a750a41bda..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_box.rst.txt deleted file mode 120000 index 289a07e4893..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_on.rst.txt deleted file mode 120000 index c6298620a8f..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_path.rst.txt deleted file mode 120000 index 3ce9c96ef53..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_contains.rst.txt deleted file mode 120000 index 3657bb76a3a..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.artist.Artist.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_cursor_data.rst.txt deleted file mode 120000 index cd47437b153..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_figure.rst.txt deleted file mode 120000 index 1fc9fe27600..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_gid.rst.txt deleted file mode 120000 index 69ad7fc8dce..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_in_layout.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_in_layout.rst.txt deleted file mode 120000 index d3ba3bfc332..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_in_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_in_layout.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_label.rst.txt deleted file mode 120000 index 827c480d0a6..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_path_effects.rst.txt deleted file mode 120000 index e29b028e615..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_picker.rst.txt deleted file mode 120000 index cc6debad4cc..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_rasterized.rst.txt deleted file mode 120000 index 792184c5f22..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_sketch_params.rst.txt deleted file mode 120000 index 664a80a5c0f..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_snap.rst.txt deleted file mode 120000 index 2fea8596846..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_transform.rst.txt deleted file mode 120000 index 733db4a7e02..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index d1705d4279c..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_url.rst.txt deleted file mode 120000 index b9a6305e3c6..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_visible.rst.txt deleted file mode 120000 index 71c1c6115a5..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_window_extent.rst.txt deleted file mode 120000 index 411e8eaacdc..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.get_zorder.rst.txt deleted file mode 120000 index 430c594fe95..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.have_units.rst.txt deleted file mode 120000 index e8bd1d5ab3d..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.hitlist.rst.txt deleted file mode 120000 index f7ed4036831..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.artist.Artist.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.is_figure_set.rst.txt deleted file mode 120000 index 23a3a4c4c64..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.artist.Artist.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.is_transform_set.rst.txt deleted file mode 120000 index 8d08d7c77ca..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.mouseover.rst.txt deleted file mode 120000 index a6db89217c6..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.pchanged.rst.txt deleted file mode 120000 index eaa1c3ea3f3..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.pick.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.pick.rst.txt deleted file mode 120000 index ad274373f18..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.pickable.rst.txt deleted file mode 120000 index 0c7ab9e51b7..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.properties.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.properties.rst.txt deleted file mode 120000 index 52f76bc1baf..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.remove.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.remove.rst.txt deleted file mode 120000 index d2207fd993e..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.remove_callback.rst.txt deleted file mode 120000 index ec5fe891ec4..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set.rst.txt deleted file mode 120000 index e4a0475cd7a..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_agg_filter.rst.txt deleted file mode 120000 index e955e4831e9..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_alpha.rst.txt deleted file mode 120000 index bd73df85b50..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_animated.rst.txt deleted file mode 120000 index 2da4bd65fce..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_axes.rst.txt deleted file mode 120000 index fc9a89ccb63..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.artist.Artist.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_box.rst.txt deleted file mode 120000 index ca63adac981..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_on.rst.txt deleted file mode 120000 index 4284792973d..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_path.rst.txt deleted file mode 120000 index 67040eea6e6..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_contains.rst.txt deleted file mode 120000 index c3ad9731790..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.artist.Artist.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_figure.rst.txt deleted file mode 120000 index a474307dc1e..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_gid.rst.txt deleted file mode 120000 index aab8cb3a15a..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_in_layout.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_in_layout.rst.txt deleted file mode 120000 index 47a3a520b4d..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_in_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_in_layout.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_label.rst.txt deleted file mode 120000 index b85e95fe529..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_path_effects.rst.txt deleted file mode 120000 index f78c72b1349..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_picker.rst.txt deleted file mode 120000 index f243d13d75e..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_rasterized.rst.txt deleted file mode 120000 index deb6888898f..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_sketch_params.rst.txt deleted file mode 120000 index 1d17e5c3920..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_snap.rst.txt deleted file mode 120000 index dd5f24a62ee..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_transform.rst.txt deleted file mode 120000 index 778433cb009..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_url.rst.txt deleted file mode 120000 index 3344af3bd27..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_visible.rst.txt deleted file mode 120000 index af3b1dcfd94..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.set_zorder.rst.txt deleted file mode 120000 index ff7dfd5eb66..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.stale.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.stale.rst.txt deleted file mode 120000 index 44e9eaf329a..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.sticky_edges.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.sticky_edges.rst.txt deleted file mode 120000 index 292b5e3e41a..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.sticky_edges.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.sticky_edges.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.update.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.update.rst.txt deleted file mode 120000 index 30d97728ad3..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.update_from.rst.txt deleted file mode 120000 index bdf95a6f7c7..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.Artist.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.artist.Artist.zorder.rst.txt deleted file mode 120000 index da79bf1eccb..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.Artist.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.Artist.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.ArtistInspector.rst.txt b/_sources/api/_as_gen/matplotlib.artist.ArtistInspector.rst.txt deleted file mode 120000 index 95c8eed7dc0..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.ArtistInspector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.ArtistInspector.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.allow_rasterization.rst.txt b/_sources/api/_as_gen/matplotlib.artist.allow_rasterization.rst.txt deleted file mode 120000 index 595e44cf749..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.allow_rasterization.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.allow_rasterization.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.get.rst.txt b/_sources/api/_as_gen/matplotlib.artist.get.rst.txt deleted file mode 120000 index db45b914bca..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.get.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.get.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.getp.rst.txt b/_sources/api/_as_gen/matplotlib.artist.getp.rst.txt deleted file mode 120000 index c24791ebafe..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.getp.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.getp.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.kwdoc.rst.txt b/_sources/api/_as_gen/matplotlib.artist.kwdoc.rst.txt deleted file mode 120000 index 0a3962f9c48..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.kwdoc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.kwdoc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.artist.setp.rst.txt b/_sources/api/_as_gen/matplotlib.artist.setp.rst.txt deleted file mode 120000 index 95ad3be693f..00000000000 --- a/_sources/api/_as_gen/matplotlib.artist.setp.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.artist.setp.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.acorr.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.acorr.rst.txt deleted file mode 120000 index 60ecd2e888b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.acorr.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.acorr.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_artist.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_artist.rst.txt deleted file mode 120000 index 4e9c9b8a831..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_artist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_artist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_callback.rst.txt deleted file mode 120000 index 252b98677a0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_child_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_child_axes.rst.txt deleted file mode 120000 index 696acfa77fa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_child_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_child_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_collection.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_collection.rst.txt deleted file mode 120000 index ebd5c3fee01..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_collection.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_container.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_container.rst.txt deleted file mode 120000 index ee8c431f9ab..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_container.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_container.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_image.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_image.rst.txt deleted file mode 120000 index 84a9de48eb0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_image.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_line.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_line.rst.txt deleted file mode 120000 index 8f835676427..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_line.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_line.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_patch.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_patch.rst.txt deleted file mode 120000 index ca01e70b93b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_patch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_patch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.add_table.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.add_table.rst.txt deleted file mode 120000 index 33de5ecdeeb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.add_table.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.add_table.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.aname.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.aname.rst.txt deleted file mode 120000 index 096ac3c541f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axes.Axes.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.angle_spectrum.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.angle_spectrum.rst.txt deleted file mode 120000 index 1a72d893054..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.angle_spectrum.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.angle_spectrum.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.annotate.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.annotate.rst.txt deleted file mode 120000 index efae041adc6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.annotate.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.annotate.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.apply_aspect.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.apply_aspect.rst.txt deleted file mode 120000 index 940b8fccfd6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.apply_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.apply_aspect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.arrow.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.arrow.rst.txt deleted file mode 120000 index 3ae487fe550..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.arrow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.arrow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale.rst.txt deleted file mode 120000 index 0930eca0515..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale_view.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale_view.rst.txt deleted file mode 120000 index 5abe1ddc459..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale_view.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.autoscale_view.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.axes.rst.txt deleted file mode 120000 index 7cbcfed70f3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.axhline.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.axhline.rst.txt deleted file mode 120000 index 2dcc71d207c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.axhline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.axhline.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.axhspan.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.axhspan.rst.txt deleted file mode 120000 index c5ef9655eb3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.axhspan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.axhspan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.axis.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.axis.rst.txt deleted file mode 120000 index 84a51af7206..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.axis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.axline.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.axline.rst.txt deleted file mode 120000 index d5387835fe3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.axline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.axline.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.axvline.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.axvline.rst.txt deleted file mode 120000 index 9e820087023..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.axvline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.axvline.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.axvspan.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.axvspan.rst.txt deleted file mode 120000 index fe718b61d4a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.axvspan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.axvspan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.bar.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.bar.rst.txt deleted file mode 120000 index b57d592f3e8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.bar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.bar_label.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.bar_label.rst.txt deleted file mode 120000 index 47349f039bc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.bar_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.bar_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.barbs.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.barbs.rst.txt deleted file mode 120000 index 300837226dd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.barbs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.barbs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.barh.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.barh.rst.txt deleted file mode 120000 index feb4ef70ce7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.barh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.barh.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.boxplot.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.boxplot.rst.txt deleted file mode 120000 index 2e2a00abd74..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.boxplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.boxplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.broken_barh.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.broken_barh.rst.txt deleted file mode 120000 index 09634dbd35e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.broken_barh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.broken_barh.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.bxp.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.bxp.rst.txt deleted file mode 120000 index fcd4299ae48..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.bxp.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.bxp.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.can_pan.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.can_pan.rst.txt deleted file mode 120000 index fd38a58e478..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.can_pan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.can_pan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.can_zoom.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.can_zoom.rst.txt deleted file mode 120000 index 18e0e4f57bb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.can_zoom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.can_zoom.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.cla.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.cla.rst.txt deleted file mode 120000 index ae123b738c3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.cla.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.cla.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.clabel.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.clabel.rst.txt deleted file mode 120000 index 812631175e5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.clabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.clabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.clear.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.clear.rst.txt deleted file mode 120000 index bee2dcf1049..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.clear.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.clear.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.cohere.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.cohere.rst.txt deleted file mode 120000 index c2e699aca0c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.cohere.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.cohere.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.contains.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.contains.rst.txt deleted file mode 120000 index efcba362daf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.contains_point.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.contains_point.rst.txt deleted file mode 120000 index 938752f2a16..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.contains_point.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.contains_point.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.contour.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.contour.rst.txt deleted file mode 120000 index 8037e06ec34..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.contour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.contour.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.contourf.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.contourf.rst.txt deleted file mode 120000 index 2894a1a9dbf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.contourf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.contourf.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.convert_xunits.rst.txt deleted file mode 120000 index 84cca824b9e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.convert_yunits.rst.txt deleted file mode 120000 index 6f563010d9b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.csd.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.csd.rst.txt deleted file mode 120000 index 8f1085e106c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.csd.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.csd.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.drag_pan.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.drag_pan.rst.txt deleted file mode 120000 index 3fdd717b667..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.drag_pan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.drag_pan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.draw.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.draw.rst.txt deleted file mode 120000 index eddc040b2e0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.draw_artist.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.draw_artist.rst.txt deleted file mode 120000 index b978f6edd56..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.draw_artist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.draw_artist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.end_pan.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.end_pan.rst.txt deleted file mode 120000 index 4daced585de..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.end_pan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.end_pan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.errorbar.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.errorbar.rst.txt deleted file mode 120000 index cefa52b1be0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.errorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.errorbar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.eventplot.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.eventplot.rst.txt deleted file mode 120000 index 4bb2d90922b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.eventplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.eventplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.fill.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.fill.rst.txt deleted file mode 120000 index 318ddc13db1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.fill.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.fill.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.fill_between.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.fill_between.rst.txt deleted file mode 120000 index 7abe96ff4f1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.fill_between.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.fill_between.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.fill_betweenx.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.fill_betweenx.rst.txt deleted file mode 120000 index 720e838b556..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.fill_betweenx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.fill_betweenx.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.findobj.rst.txt deleted file mode 120000 index eeab67bd358..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.format_coord.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.format_coord.rst.txt deleted file mode 120000 index 450f11909ad..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.format_coord.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.format_coord.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.format_cursor_data.rst.txt deleted file mode 120000 index 50e256cd662..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.format_xdata.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.format_xdata.rst.txt deleted file mode 120000 index 9ffe41929e0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.format_xdata.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.format_xdata.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.format_ydata.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.format_ydata.rst.txt deleted file mode 120000 index 21f0ad17cb5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.format_ydata.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.format_ydata.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_adjustable.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_adjustable.rst.txt deleted file mode 120000 index cb659b8ed0b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_adjustable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_adjustable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_agg_filter.rst.txt deleted file mode 120000 index b7e2745c443..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_alpha.rst.txt deleted file mode 120000 index d52e6f5da12..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_anchor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_anchor.rst.txt deleted file mode 120000 index 9074902dd49..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_anchor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_anchor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_animated.rst.txt deleted file mode 120000 index 0dda58b1234..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_aspect.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_aspect.rst.txt deleted file mode 120000 index d8cfb99fa79..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_aspect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscale_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscale_on.rst.txt deleted file mode 120000 index e1063102dc5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscale_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscale_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscalex_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscalex_on.rst.txt deleted file mode 120000 index 332e4da7cfe..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscalex_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscalex_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscaley_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscaley_on.rst.txt deleted file mode 120000 index f084884573b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscaley_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_autoscaley_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes.rst.txt deleted file mode 120000 index 9e97d1c6aac..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes_locator.rst.txt deleted file mode 120000 index 475dd5e1a66..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_axes_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axis_bgcolor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_axis_bgcolor.rst.txt deleted file mode 120000 index 4384e439eed..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axis_bgcolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_axis_bgcolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axisbelow.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_axisbelow.rst.txt deleted file mode 120000 index cb1f063972a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_axisbelow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_axisbelow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_box_aspect.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_box_aspect.rst.txt deleted file mode 120000 index 2994c92e265..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_box_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_box_aspect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_children.rst.txt deleted file mode 120000 index 22190867748..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_box.rst.txt deleted file mode 120000 index f7140c688e6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_on.rst.txt deleted file mode 120000 index 6d83659180f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_path.rst.txt deleted file mode 120000 index d5033bfd9cb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_contains.rst.txt deleted file mode 120000 index 9df3fa831d4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axes.Axes.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_data.rst.txt deleted file mode 120000 index 57f509d68bf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_props.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_props.rst.txt deleted file mode 120000 index a67509bb065..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.axes.Axes.get_cursor_props.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio.rst.txt deleted file mode 120000 index f84bb7bf09f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio_log.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio_log.rst.txt deleted file mode 120000 index 50ed6564aa1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio_log.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axes.Axes.get_data_ratio_log.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_default_bbox_extra_artists.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_default_bbox_extra_artists.rst.txt deleted file mode 120000 index f027a38063f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_default_bbox_extra_artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_default_bbox_extra_artists.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_facecolor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_facecolor.rst.txt deleted file mode 120000 index 7ac2c6a2eab..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_facecolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_facecolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_fc.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_fc.rst.txt deleted file mode 120000 index c28ad4c844b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_fc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_fc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_figure.rst.txt deleted file mode 120000 index a612e726f22..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_frame_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_frame_on.rst.txt deleted file mode 120000 index d3531181309..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_frame_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_frame_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_gid.rst.txt deleted file mode 120000 index c41d38289b5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_images.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_images.rst.txt deleted file mode 120000 index 762ba0889b1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_images.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_images.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_label.rst.txt deleted file mode 120000 index 4002a0b3ac2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend.rst.txt deleted file mode 120000 index d54885a9cb5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend_handles_labels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend_handles_labels.rst.txt deleted file mode 120000 index 467726f1e95..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend_handles_labels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_legend_handles_labels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_lines.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_lines.rst.txt deleted file mode 120000 index 7dbec3fbdfb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_lines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_lines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate.rst.txt deleted file mode 120000 index 3dfc1e7dd71..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate_mode.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate_mode.rst.txt deleted file mode 120000 index 0da89a11f9b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate_mode.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_navigate_mode.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_path_effects.rst.txt deleted file mode 120000 index af017c183d9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_picker.rst.txt deleted file mode 120000 index 68891c3ea96..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axes.Axes.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_position.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_position.rst.txt deleted file mode 120000 index f8a018b35e8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterization_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterization_zorder.rst.txt deleted file mode 120000 index 41d8290c4c1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterization_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterization_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterized.rst.txt deleted file mode 120000 index c7455491530..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_renderer_cache.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_renderer_cache.rst.txt deleted file mode 120000 index 7e770360fd7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_renderer_cache.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_renderer_cache.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_x_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_x_axes.rst.txt deleted file mode 120000 index e188ca5bad3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_x_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_x_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_y_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_y_axes.rst.txt deleted file mode 120000 index e3b8b9c4b89..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_y_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_shared_y_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_sketch_params.rst.txt deleted file mode 120000 index 66c3785ad50..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_snap.rst.txt deleted file mode 120000 index 43969d91776..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_tightbbox.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_tightbbox.rst.txt deleted file mode 120000 index 77fc8b49e15..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_tightbbox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_tightbbox.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_title.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_title.rst.txt deleted file mode 120000 index 8c4e6b8fc22..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_title.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_title.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_transform.rst.txt deleted file mode 120000 index 4c37a23163d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index 40e12ae5e02..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_url.rst.txt deleted file mode 120000 index 05d9fa430c0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_visible.rst.txt deleted file mode 120000 index e09964aad25..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_window_extent.rst.txt deleted file mode 120000 index b492c513b23..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis.rst.txt deleted file mode 120000 index 855eb383e30..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text1_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text1_transform.rst.txt deleted file mode 120000 index a95146bae20..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text1_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text1_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text2_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text2_transform.rst.txt deleted file mode 120000 index 8392f40d722..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text2_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text2_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_transform.rst.txt deleted file mode 120000 index bd38ad050f7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xaxis_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xbound.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xbound.rst.txt deleted file mode 120000 index 2741664585c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xbound.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xbound.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xgridlines.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xgridlines.rst.txt deleted file mode 120000 index 087e26bc311..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xgridlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xgridlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlabel.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlabel.rst.txt deleted file mode 120000 index f8cd3db1bf2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlim.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlim.rst.txt deleted file mode 120000 index fdb17b92993..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xlim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xmajorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xmajorticklabels.rst.txt deleted file mode 120000 index c0f7a866210..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xmajorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xmajorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xminorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xminorticklabels.rst.txt deleted file mode 120000 index 0e3eb6abbf4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xminorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xminorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xscale.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xscale.rst.txt deleted file mode 120000 index b4bc4fb2fdf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklabels.rst.txt deleted file mode 120000 index cd03413f664..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklines.rst.txt deleted file mode 120000 index 855dce53b90..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticks.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticks.rst.txt deleted file mode 120000 index aaa78dd736e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_xticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis.rst.txt deleted file mode 120000 index 3444636fdcb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text1_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text1_transform.rst.txt deleted file mode 120000 index 01e160bc59e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text1_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text1_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text2_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text2_transform.rst.txt deleted file mode 120000 index 4ecdb44ed18..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text2_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text2_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_transform.rst.txt deleted file mode 120000 index a26f7b3238b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yaxis_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ybound.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_ybound.rst.txt deleted file mode 120000 index 2951c52c2aa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ybound.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_ybound.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ygridlines.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_ygridlines.rst.txt deleted file mode 120000 index fa060790c72..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ygridlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_ygridlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylabel.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylabel.rst.txt deleted file mode 120000 index c187d15143a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylim.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylim.rst.txt deleted file mode 120000 index 62b314fc6d4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_ylim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ymajorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_ymajorticklabels.rst.txt deleted file mode 120000 index 127fe1f9862..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_ymajorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_ymajorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yminorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yminorticklabels.rst.txt deleted file mode 120000 index 6de68450160..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yminorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yminorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yscale.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yscale.rst.txt deleted file mode 120000 index b2bf40437d0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklabels.rst.txt deleted file mode 120000 index 7610a874f7b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklines.rst.txt deleted file mode 120000 index 7d4eb2a69ee..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticks.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticks.rst.txt deleted file mode 120000 index b32f8e13ea8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.get_yticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.get_zorder.rst.txt deleted file mode 120000 index 35473406416..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.grid.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.grid.rst.txt deleted file mode 120000 index 0a077bf4a71..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.has_data.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.has_data.rst.txt deleted file mode 120000 index a008466cb7c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.has_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.has_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.have_units.rst.txt deleted file mode 120000 index 10eabe3ac24..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.hexbin.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.hexbin.rst.txt deleted file mode 120000 index da5c54c7cd1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.hexbin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.hexbin.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.hist.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.hist.rst.txt deleted file mode 120000 index 5a5d24bde29..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.hist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.hist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.hist2d.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.hist2d.rst.txt deleted file mode 120000 index 41d4fdab209..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.hist2d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.hist2d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.hitlist.rst.txt deleted file mode 120000 index f22afbb4e96..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axes.Axes.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.hlines.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.hlines.rst.txt deleted file mode 120000 index f167feb7ef9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.hlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.hlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.hold.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.hold.rst.txt deleted file mode 120000 index 746a0204b36..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.hold.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.axes.Axes.hold.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.imshow.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.imshow.rst.txt deleted file mode 120000 index f5634c8fc42..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.imshow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.imshow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.in_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.in_axes.rst.txt deleted file mode 120000 index 039cab8bd07..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.in_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.in_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset.rst.txt deleted file mode 120000 index ce8221f109d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset_zoom.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset_zoom.rst.txt deleted file mode 120000 index 7c49e992012..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset_zoom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.indicate_inset_zoom.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.inset_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.inset_axes.rst.txt deleted file mode 120000 index 45b0219ae8a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.inset_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.inset_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.invert_xaxis.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.invert_xaxis.rst.txt deleted file mode 120000 index 208b4203340..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.invert_xaxis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.invert_xaxis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.invert_yaxis.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.invert_yaxis.rst.txt deleted file mode 120000 index df783b27b3b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.invert_yaxis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.invert_yaxis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.is_figure_set.rst.txt deleted file mode 120000 index 94fe5e3a55c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axes.Axes.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.is_transform_set.rst.txt deleted file mode 120000 index b4349706021..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.ishold.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.ishold.rst.txt deleted file mode 120000 index f4824495846..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.ishold.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.axes.Axes.ishold.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.legend.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.legend.rst.txt deleted file mode 120000 index 6e5a7f16441..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.legend.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.locator_params.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.locator_params.rst.txt deleted file mode 120000 index ec14e98f350..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.locator_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.locator_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.loglog.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.loglog.rst.txt deleted file mode 120000 index 20bcc2bf59e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.loglog.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.loglog.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.magnitude_spectrum.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.magnitude_spectrum.rst.txt deleted file mode 120000 index faf322cbdb7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.magnitude_spectrum.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.magnitude_spectrum.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.margins.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.margins.rst.txt deleted file mode 120000 index 79cb5cc472a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.margins.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.margins.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.matshow.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.matshow.rst.txt deleted file mode 120000 index ea4a4ce3edc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.matshow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.matshow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_off.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_off.rst.txt deleted file mode 120000 index b4b58839fd4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_off.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_off.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_on.rst.txt deleted file mode 120000 index fa2091fb66e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.minorticks_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.mouseover.rst.txt deleted file mode 120000 index 9d4ba0cb7f5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.name.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.name.rst.txt deleted file mode 120000 index 313b3806031..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.name.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.name.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.pchanged.rst.txt deleted file mode 120000 index c8009043eef..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.pcolor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.pcolor.rst.txt deleted file mode 120000 index 67314ab286c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.pcolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.pcolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.pcolorfast.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.pcolorfast.rst.txt deleted file mode 120000 index 3b6f20657e5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.pcolorfast.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.pcolorfast.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.pcolormesh.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.pcolormesh.rst.txt deleted file mode 120000 index c50f03725fb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.pcolormesh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.pcolormesh.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.phase_spectrum.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.phase_spectrum.rst.txt deleted file mode 120000 index 4fea2dc2205..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.phase_spectrum.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.phase_spectrum.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.pick.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.pick.rst.txt deleted file mode 120000 index bfdc27d491b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axes.Axes.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.pickable.rst.txt deleted file mode 120000 index ab9a75c4858..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axes.Axes.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.pie.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.pie.rst.txt deleted file mode 120000 index f32da44ef73..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.pie.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.pie.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.plot.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.plot.rst.txt deleted file mode 120000 index 48be323eccf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.plot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.plot_date.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.plot_date.rst.txt deleted file mode 120000 index 88433100eac..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.plot_date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.plot_date.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.properties.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.properties.rst.txt deleted file mode 120000 index 037253073ad..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.psd.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.psd.rst.txt deleted file mode 120000 index ab4f8bbb20d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.psd.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.psd.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.quiver.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.quiver.rst.txt deleted file mode 120000 index dd75d39fee1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.quiver.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.quiver.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.quiverkey.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.quiverkey.rst.txt deleted file mode 120000 index a4f86ad5cb7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.quiverkey.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.quiverkey.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.redraw_in_frame.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.redraw_in_frame.rst.txt deleted file mode 120000 index 11e8b0787fa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.redraw_in_frame.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.redraw_in_frame.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.relim.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.relim.rst.txt deleted file mode 120000 index 778d830bcc2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.relim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.relim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.remove.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.remove.rst.txt deleted file mode 120000 index 8c061ef3022..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.remove_callback.rst.txt deleted file mode 120000 index c177c62dda6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.reset_position.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.reset_position.rst.txt deleted file mode 120000 index 11369d49bda..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.reset_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.reset_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.scatter.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.scatter.rst.txt deleted file mode 120000 index 6874be4388c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.scatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.scatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_xaxis.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_xaxis.rst.txt deleted file mode 120000 index 596b288660d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_xaxis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_xaxis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_yaxis.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_yaxis.rst.txt deleted file mode 120000 index fc480a6bc62..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_yaxis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.secondary_yaxis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.semilogx.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.semilogx.rst.txt deleted file mode 120000 index 21ca1a74b48..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.semilogx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.semilogx.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.semilogy.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.semilogy.rst.txt deleted file mode 120000 index 9d800fb78c6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.semilogy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.semilogy.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set.rst.txt deleted file mode 120000 index a215829d021..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_adjustable.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_adjustable.rst.txt deleted file mode 120000 index 3e329636b1b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_adjustable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_adjustable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_agg_filter.rst.txt deleted file mode 120000 index 8450e1d043f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_alpha.rst.txt deleted file mode 120000 index 36b1965f590..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_anchor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_anchor.rst.txt deleted file mode 120000 index 656a17d726b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_anchor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_anchor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_animated.rst.txt deleted file mode 120000 index 5967f20b80e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_aspect.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_aspect.rst.txt deleted file mode 120000 index 22f46e670ef..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_aspect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscale_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscale_on.rst.txt deleted file mode 120000 index 90410b9fb4e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscale_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscale_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscalex_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscalex_on.rst.txt deleted file mode 120000 index ddb5305d4b3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscalex_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscalex_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscaley_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscaley_on.rst.txt deleted file mode 120000 index 57346efac45..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscaley_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_autoscaley_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes.rst.txt deleted file mode 120000 index f1482be9de0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes_locator.rst.txt deleted file mode 120000 index 2ccf72e360b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_axes_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_bgcolor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_bgcolor.rst.txt deleted file mode 120000 index 1b97abe4c56..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_bgcolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_bgcolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_off.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_off.rst.txt deleted file mode 120000 index 9ae954fd830..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_off.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_off.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_on.rst.txt deleted file mode 120000 index 33309cbf790..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_axis_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axisbelow.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_axisbelow.rst.txt deleted file mode 120000 index ae96cdc41a3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_axisbelow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_axisbelow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_box_aspect.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_box_aspect.rst.txt deleted file mode 120000 index d13e3c40419..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_box_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_box_aspect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_box.rst.txt deleted file mode 120000 index 6aae759b535..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_on.rst.txt deleted file mode 120000 index 9d243b0838b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_path.rst.txt deleted file mode 120000 index 5bb1e65d55d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_color_cycle.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_color_cycle.rst.txt deleted file mode 120000 index c0b3acb3cfc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_color_cycle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.axes.Axes.set_color_cycle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_contains.rst.txt deleted file mode 120000 index 3419c91c03b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axes.Axes.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_cursor_props.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_cursor_props.rst.txt deleted file mode 120000 index 5ca80acbf48..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_cursor_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.axes.Axes.set_cursor_props.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_facecolor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_facecolor.rst.txt deleted file mode 120000 index 440c8652730..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_facecolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_facecolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_fc.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_fc.rst.txt deleted file mode 120000 index 097e38ed851..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_fc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_fc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_figure.rst.txt deleted file mode 120000 index 1b44b8cab69..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_frame_on.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_frame_on.rst.txt deleted file mode 120000 index 969b70e8618..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_frame_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_frame_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_gid.rst.txt deleted file mode 120000 index 2d5ad90a5b8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_label.rst.txt deleted file mode 120000 index b8c498026e4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate.rst.txt deleted file mode 120000 index f369821ec1c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate_mode.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate_mode.rst.txt deleted file mode 120000 index fd5baf2742b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate_mode.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_navigate_mode.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_path_effects.rst.txt deleted file mode 120000 index 23587abe780..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_picker.rst.txt deleted file mode 120000 index 3370b95ae67..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axes.Axes.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_position.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_position.rst.txt deleted file mode 120000 index b5b6644bcfd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.rst.txt deleted file mode 120000 index 12e8c0e98a3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterization_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterization_zorder.rst.txt deleted file mode 120000 index fbc36e4bfb1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterization_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterization_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterized.rst.txt deleted file mode 120000 index f35e8f76591..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_sketch_params.rst.txt deleted file mode 120000 index 7b30cc554b8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_snap.rst.txt deleted file mode 120000 index df83dc6b01d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_title.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_title.rst.txt deleted file mode 120000 index 1e99ceed564..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_title.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_title.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_transform.rst.txt deleted file mode 120000 index 9d3c7fe2768..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_url.rst.txt deleted file mode 120000 index 4d8b64ff5e6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_visible.rst.txt deleted file mode 120000 index 31da025a05c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xbound.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_xbound.rst.txt deleted file mode 120000 index de81226e6f2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xbound.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_xbound.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlabel.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlabel.rst.txt deleted file mode 120000 index cabe3b75282..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlim.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlim.rst.txt deleted file mode 120000 index 5cc19d84513..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_xlim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xmargin.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_xmargin.rst.txt deleted file mode 120000 index 226e3d0fcb6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xmargin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_xmargin.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xscale.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_xscale.rst.txt deleted file mode 120000 index 7bb5851a208..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_xscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticklabels.rst.txt deleted file mode 120000 index af188efaadf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticks.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticks.rst.txt deleted file mode 120000 index 1b936915a36..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_xticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ybound.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_ybound.rst.txt deleted file mode 120000 index 41a4d9db138..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ybound.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_ybound.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylabel.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylabel.rst.txt deleted file mode 120000 index 0c84d02109d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylim.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylim.rst.txt deleted file mode 120000 index 279d1465aaf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_ylim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ymargin.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_ymargin.rst.txt deleted file mode 120000 index 1773294da51..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_ymargin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_ymargin.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_yscale.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_yscale.rst.txt deleted file mode 120000 index c79df18f5e2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_yscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_yscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticklabels.rst.txt deleted file mode 120000 index 2a83d0fcacd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticks.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticks.rst.txt deleted file mode 120000 index fa7a041d9ca..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.set_yticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.set_zorder.rst.txt deleted file mode 120000 index b620a552647..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.sharex.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.sharex.rst.txt deleted file mode 120000 index 7a0cf126ecd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.sharex.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.sharex.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.sharey.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.sharey.rst.txt deleted file mode 120000 index 5bc82bf35cc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.sharey.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.sharey.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.specgram.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.specgram.rst.txt deleted file mode 120000 index 6b4f626f00d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.specgram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.specgram.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.spy.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.spy.rst.txt deleted file mode 120000 index 73f513f2614..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.spy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.spy.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.stackplot.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.stackplot.rst.txt deleted file mode 120000 index 4b750505627..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.stackplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.stackplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.stairs.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.stairs.rst.txt deleted file mode 120000 index e1d089576e2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.stairs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.stairs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.stale.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.stale.rst.txt deleted file mode 120000 index 40e728e56ca..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.start_pan.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.start_pan.rst.txt deleted file mode 120000 index ec304abc861..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.start_pan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.start_pan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.stem.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.stem.rst.txt deleted file mode 120000 index 0a6a68f3ce2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.stem.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.stem.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.step.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.step.rst.txt deleted file mode 120000 index 881d11ec0e6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.step.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.step.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.streamplot.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.streamplot.rst.txt deleted file mode 120000 index bf95a756e64..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.streamplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.streamplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.table.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.table.rst.txt deleted file mode 120000 index 512b9625494..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.table.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.table.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.text.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.text.rst.txt deleted file mode 120000 index 3131f922157..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.tick_params.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.tick_params.rst.txt deleted file mode 120000 index 5496d6dc1e5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.tick_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.tick_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.ticklabel_format.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.ticklabel_format.rst.txt deleted file mode 120000 index e3682ead501..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.ticklabel_format.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.ticklabel_format.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.tricontour.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.tricontour.rst.txt deleted file mode 120000 index d73716fb8ac..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.tricontour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.tricontour.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.tricontourf.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.tricontourf.rst.txt deleted file mode 120000 index be70f9c66e9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.tricontourf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.tricontourf.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.tripcolor.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.tripcolor.rst.txt deleted file mode 120000 index 39c60c5d092..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.tripcolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.tripcolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.triplot.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.triplot.rst.txt deleted file mode 120000 index 59376cd9f3d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.triplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.triplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.twinx.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.twinx.rst.txt deleted file mode 120000 index 13c3a23a6c9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.twinx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.twinx.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.twiny.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.twiny.rst.txt deleted file mode 120000 index c28aeeae531..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.twiny.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.twiny.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.update.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.update.rst.txt deleted file mode 120000 index e616ef9ce83..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim.rst.txt deleted file mode 120000 index 73c11f59439..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_bounds.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_bounds.rst.txt deleted file mode 120000 index cce1fa93bbd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_bounds.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_numerix.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_numerix.rst.txt deleted file mode 120000 index 6b124ade1ed..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_numerix.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.0/_sources/api/_as_gen/matplotlib.axes.Axes.update_datalim_numerix.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.update_from.rst.txt deleted file mode 120000 index 3edfd97a403..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axes.Axes.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.use_sticky_edges.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.use_sticky_edges.rst.txt deleted file mode 120000 index ee825edfda2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.use_sticky_edges.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.use_sticky_edges.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.violin.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.violin.rst.txt deleted file mode 120000 index cadc658c069..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.violin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.violin.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.violinplot.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.violinplot.rst.txt deleted file mode 120000 index 3b79a680f6d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.violinplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.violinplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.vlines.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.vlines.rst.txt deleted file mode 120000 index f39951a0ad7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.vlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.vlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_date.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_date.rst.txt deleted file mode 120000 index 26f87d0d802..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_date.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_inverted.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_inverted.rst.txt deleted file mode 120000 index 81453617082..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_inverted.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.xaxis_inverted.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.xcorr.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.xcorr.rst.txt deleted file mode 120000 index c62a8b25a59..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.xcorr.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.xcorr.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_date.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_date.rst.txt deleted file mode 120000 index 8af194176af..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_date.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_inverted.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_inverted.rst.txt deleted file mode 120000 index 0c7d835f4ed..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_inverted.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.yaxis_inverted.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.Axes.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axes.Axes.zorder.rst.txt deleted file mode 120000 index 79a9e635174..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.Axes.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.Axes.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.SubplotBase.rst.txt b/_sources/api/_as_gen/matplotlib.axes.SubplotBase.rst.txt deleted file mode 120000 index b19e4c9f129..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.SubplotBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.SubplotBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axes.subplot_class_factory.rst.txt b/_sources/api/_as_gen/matplotlib.axes.subplot_class_factory.rst.txt deleted file mode 120000 index f6f7a39c5a0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axes.subplot_class_factory.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axes.subplot_class_factory.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.OFFSETTEXTPAD.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.OFFSETTEXTPAD.rst.txt deleted file mode 120000 index 573756e8fc2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.OFFSETTEXTPAD.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.OFFSETTEXTPAD.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.add_callback.rst.txt deleted file mode 120000 index 05e10904f67..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.aname.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.aname.rst.txt deleted file mode 120000 index 762a400c67c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.Axis.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.axes.rst.txt deleted file mode 120000 index 19cee327c42..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.axis_date.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.axis_date.rst.txt deleted file mode 120000 index 172b2c7f282..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.axis_date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.axis_date.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.cla.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.cla.rst.txt deleted file mode 120000 index a364b8af6b7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.cla.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.axis.Axis.cla.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.clear.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.clear.rst.txt deleted file mode 120000 index da2ddf72fcb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.clear.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.clear.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.contains.rst.txt deleted file mode 120000 index 33b57a85698..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.convert_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.convert_units.rst.txt deleted file mode 120000 index 1de91f9e85f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.convert_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.convert_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.convert_xunits.rst.txt deleted file mode 120000 index 86e808701c4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.convert_yunits.rst.txt deleted file mode 120000 index 9b97d414dab..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.draw.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.draw.rst.txt deleted file mode 120000 index 9a64f302f0a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.findobj.rst.txt deleted file mode 120000 index a3ec9454a4e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.format_cursor_data.rst.txt deleted file mode 120000 index 4495bdf1a89..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_agg_filter.rst.txt deleted file mode 120000 index 73d66db4614..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_alpha.rst.txt deleted file mode 120000 index bfaa81050c2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_animated.rst.txt deleted file mode 120000 index 06a62d715cb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_axes.rst.txt deleted file mode 120000 index d54386c07ac..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_children.rst.txt deleted file mode 120000 index 910704b21bb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_box.rst.txt deleted file mode 120000 index 0e71ea9ef1c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_on.rst.txt deleted file mode 120000 index c64cb6d6201..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_path.rst.txt deleted file mode 120000 index 1298e45adb3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_contains.rst.txt deleted file mode 120000 index 55d7eed2e85..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_cursor_data.rst.txt deleted file mode 120000 index 5f819d7680f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_data_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_data_interval.rst.txt deleted file mode 120000 index cb15e6aad4e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_data_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_data_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_figure.rst.txt deleted file mode 120000 index d47dfffba5b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_gid.rst.txt deleted file mode 120000 index 5987632bf6c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_gridlines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_gridlines.rst.txt deleted file mode 120000 index c9d0a21f69f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_gridlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_gridlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_inverted.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_inverted.rst.txt deleted file mode 120000 index 1f09a79973f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_inverted.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_inverted.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_label.rst.txt deleted file mode 120000 index 0b60a044b91..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_position.rst.txt deleted file mode 120000 index 5a82530a20f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_text.rst.txt deleted file mode 120000 index 26968db5035..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_label_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_formatter.rst.txt deleted file mode 120000 index cdc2ebf97e4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_locator.rst.txt deleted file mode 120000 index 1a78e7953ee..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_ticks.rst.txt deleted file mode 120000 index 501a3e8be71..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_major_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklabels.rst.txt deleted file mode 120000 index df704f9ec0a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklines.rst.txt deleted file mode 120000 index 7f951e168df..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklocs.rst.txt deleted file mode 120000 index b3dafc74864..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_majorticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_formatter.rst.txt deleted file mode 120000 index a5efe5bbb29..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_locator.rst.txt deleted file mode 120000 index 2a73e3f0beb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_ticks.rst.txt deleted file mode 120000 index 6df49e5a125..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_minor_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklabels.rst.txt deleted file mode 120000 index 80e1db21acb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklines.rst.txt deleted file mode 120000 index 4703a807414..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklocs.rst.txt deleted file mode 120000 index 50a622bea20..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_minorticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minpos.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_minpos.rst.txt deleted file mode 120000 index ca0b14becd2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_minpos.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_minpos.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_offset_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_offset_text.rst.txt deleted file mode 120000 index 6131c96b18b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_offset_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_offset_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_path_effects.rst.txt deleted file mode 120000 index 315895e2b87..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_picker.rst.txt deleted file mode 120000 index 8368abe1a7b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_pickradius.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_pickradius.rst.txt deleted file mode 120000 index 6aceb8d280a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_pickradius.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_pickradius.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_rasterized.rst.txt deleted file mode 120000 index beef4842fa0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_remove_overlapping_locs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_remove_overlapping_locs.rst.txt deleted file mode 120000 index 8cc2c2ec8b5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_remove_overlapping_locs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_remove_overlapping_locs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_scale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_scale.rst.txt deleted file mode 120000 index 2a586f74bc4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_scale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_sketch_params.rst.txt deleted file mode 120000 index 3f4993da9d0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_smart_bounds.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_smart_bounds.rst.txt deleted file mode 120000 index 6063c93770a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_smart_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axis.Axis.get_smart_bounds.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_snap.rst.txt deleted file mode 120000 index 76c0ee2e413..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_padding.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_padding.rst.txt deleted file mode 120000 index 2bbed255ae9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_padding.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_padding.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_space.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_space.rst.txt deleted file mode 120000 index 2aa783cfd64..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_space.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_tick_space.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabel_extents.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabel_extents.rst.txt deleted file mode 120000 index bba902486f3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabel_extents.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabel_extents.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabels.rst.txt deleted file mode 120000 index d3f0e577db2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklines.rst.txt deleted file mode 120000 index 00de9f80b4c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklocs.rst.txt deleted file mode 120000 index ed9ca55a52d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_ticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_tightbbox.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_tightbbox.rst.txt deleted file mode 120000 index f373f14d75d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_tightbbox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_tightbbox.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_transform.rst.txt deleted file mode 120000 index 4539f401c5d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index a8bee1dc530..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_units.rst.txt deleted file mode 120000 index be89935e5b1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_url.rst.txt deleted file mode 120000 index 99808e6c879..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_view_interval.rst.txt deleted file mode 120000 index 13cd09f3149..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.get_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_visible.rst.txt deleted file mode 120000 index f83889a1c1e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_window_extent.rst.txt deleted file mode 120000 index dde505e4f60..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.get_zorder.rst.txt deleted file mode 120000 index 96244717562..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.grid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.grid.rst.txt deleted file mode 120000 index ddf173361c7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.have_units.rst.txt deleted file mode 120000 index f990d08a3b9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.hitlist.rst.txt deleted file mode 120000 index 98883460191..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.Axis.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.is_figure_set.rst.txt deleted file mode 120000 index 29bc591306a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.Axis.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.is_transform_set.rst.txt deleted file mode 120000 index 85e6db9e8f8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.iter_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.iter_ticks.rst.txt deleted file mode 120000 index c492bbe159e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.iter_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.Axis.iter_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.limit_range_for_scale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.limit_range_for_scale.rst.txt deleted file mode 120000 index fb5f5560882..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.limit_range_for_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.limit_range_for_scale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.mouseover.rst.txt deleted file mode 120000 index cc11bdbac60..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.pan.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.pan.rst.txt deleted file mode 120000 index db551901bc8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.pan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.axis.Axis.pan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.pchanged.rst.txt deleted file mode 120000 index c9ab7c79915..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.pick.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.pick.rst.txt deleted file mode 120000 index 62117e67a29..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.pickable.rst.txt deleted file mode 120000 index 505f7ffcad5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.properties.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.properties.rst.txt deleted file mode 120000 index a2eaf372f5d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.remove.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.remove.rst.txt deleted file mode 120000 index edae01b33a5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.remove_callback.rst.txt deleted file mode 120000 index 4a4f9bdfde2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.remove_overlapping_locs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.remove_overlapping_locs.rst.txt deleted file mode 120000 index d8f41a873a2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.remove_overlapping_locs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.remove_overlapping_locs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.reset_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.reset_ticks.rst.txt deleted file mode 120000 index 48a9adf604d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.reset_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.reset_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set.rst.txt deleted file mode 120000 index 67450c543a6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_agg_filter.rst.txt deleted file mode 120000 index 3cb260d56e9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_alpha.rst.txt deleted file mode 120000 index 0bf0ef2ec6f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_animated.rst.txt deleted file mode 120000 index c20ed411fe0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_axes.rst.txt deleted file mode 120000 index 73b0e32f610..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_box.rst.txt deleted file mode 120000 index 3599579e32b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_on.rst.txt deleted file mode 120000 index 0906bbeba90..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_path.rst.txt deleted file mode 120000 index ca7ed4c6e22..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_contains.rst.txt deleted file mode 120000 index 82ced738e68..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_data_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_data_interval.rst.txt deleted file mode 120000 index 8263e92e69a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_data_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_data_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_default_intervals.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_default_intervals.rst.txt deleted file mode 120000 index b74cc342eef..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_default_intervals.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_default_intervals.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_figure.rst.txt deleted file mode 120000 index 99d65a50b3e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_gid.rst.txt deleted file mode 120000 index 5adf146e462..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_inverted.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_inverted.rst.txt deleted file mode 120000 index f15b94a10dd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_inverted.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_inverted.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_label.rst.txt deleted file mode 120000 index b49971ea8a5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_coords.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_coords.rst.txt deleted file mode 120000 index 851adb01b64..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_coords.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_coords.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_position.rst.txt deleted file mode 120000 index c2b1e3a5f27..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_text.rst.txt deleted file mode 120000 index 734c7ca2853..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_label_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_formatter.rst.txt deleted file mode 120000 index 83d5edcb0c4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_locator.rst.txt deleted file mode 120000 index 88b98d44ac8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_major_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_formatter.rst.txt deleted file mode 120000 index a65ebb93e55..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_locator.rst.txt deleted file mode 120000 index 0bdc214ce5e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_minor_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_path_effects.rst.txt deleted file mode 120000 index 120f0ccb954..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_picker.rst.txt deleted file mode 120000 index c83aeff8a47..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_pickradius.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_pickradius.rst.txt deleted file mode 120000 index 787c7f22e39..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_pickradius.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_pickradius.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_rasterized.rst.txt deleted file mode 120000 index ec48ed80997..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_remove_overlapping_locs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_remove_overlapping_locs.rst.txt deleted file mode 120000 index 8151e18b950..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_remove_overlapping_locs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_remove_overlapping_locs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_sketch_params.rst.txt deleted file mode 120000 index 366ce4509fd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_smart_bounds.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_smart_bounds.rst.txt deleted file mode 120000 index cb7a70d02d7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_smart_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.axis.Axis.set_smart_bounds.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_snap.rst.txt deleted file mode 120000 index a26f3da2458..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_tick_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_tick_params.rst.txt deleted file mode 120000 index e785138978f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_tick_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_tick_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticklabels.rst.txt deleted file mode 120000 index 8e2d5cf8b7c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticks.rst.txt deleted file mode 120000 index a11b7923e65..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_transform.rst.txt deleted file mode 120000 index 7c25aca399b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_units.rst.txt deleted file mode 120000 index 1ec143afe3c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_url.rst.txt deleted file mode 120000 index d551c0f0e1b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_view_interval.rst.txt deleted file mode 120000 index 965f70d7620..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.set_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_visible.rst.txt deleted file mode 120000 index 17f58c5a2cd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.set_zorder.rst.txt deleted file mode 120000 index 9b63c38479a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.stale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.stale.rst.txt deleted file mode 120000 index c9e92ded09d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.update.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.update.rst.txt deleted file mode 120000 index e1bd8b7ce2e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.update_from.rst.txt deleted file mode 120000 index e5300413207..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.update_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.update_units.rst.txt deleted file mode 120000 index 8ca5bb3c49d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.update_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Axis.update_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.zoom.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.zoom.rst.txt deleted file mode 120000 index 5488a51a8a0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.zoom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.axis.Axis.zoom.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Axis.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Axis.zorder.rst.txt deleted file mode 120000 index 4ee7e525125..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Axis.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Axis.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.add_callback.rst.txt deleted file mode 120000 index 76aa5e7b8af..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.aname.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.aname.rst.txt deleted file mode 120000 index bf71d161935..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.Tick.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.apply_tickdir.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.apply_tickdir.rst.txt deleted file mode 120000 index bc415b85386..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.apply_tickdir.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/matplotlib.axis.Tick.apply_tickdir.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.axes.rst.txt deleted file mode 120000 index 220d4c65ac9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.contains.rst.txt deleted file mode 120000 index 23e02d8f634..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.convert_xunits.rst.txt deleted file mode 120000 index 4288e0d8dbf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.convert_yunits.rst.txt deleted file mode 120000 index a8e340677cb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.draw.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.draw.rst.txt deleted file mode 120000 index 4d48c6cd9ff..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.findobj.rst.txt deleted file mode 120000 index 7ca1f0297c5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.format_cursor_data.rst.txt deleted file mode 120000 index 14eb5530f88..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_agg_filter.rst.txt deleted file mode 120000 index ade368cb66f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_alpha.rst.txt deleted file mode 120000 index 8364e183df5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_animated.rst.txt deleted file mode 120000 index bb71ed10dc6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_axes.rst.txt deleted file mode 120000 index 38755d413c8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_children.rst.txt deleted file mode 120000 index c49644c2d86..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_box.rst.txt deleted file mode 120000 index b51fac5a04b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_on.rst.txt deleted file mode 120000 index 1b210c86556..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_path.rst.txt deleted file mode 120000 index 5d3ef30333f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_contains.rst.txt deleted file mode 120000 index 07e0453927b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_cursor_data.rst.txt deleted file mode 120000 index 4e34c4456ec..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_figure.rst.txt deleted file mode 120000 index 8d057574540..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_gid.rst.txt deleted file mode 120000 index a8955a4c82f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_label.rst.txt deleted file mode 120000 index 406376d8ab5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_loc.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_loc.rst.txt deleted file mode 120000 index fb97a4fe0fc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_loc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.get_loc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad.rst.txt deleted file mode 120000 index 5e76ef74c2c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad_pixels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad_pixels.rst.txt deleted file mode 120000 index a39113a29d7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad_pixels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.get_pad_pixels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_path_effects.rst.txt deleted file mode 120000 index e4a07b7fcb2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_picker.rst.txt deleted file mode 120000 index 93f98774822..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_rasterized.rst.txt deleted file mode 120000 index 58fbd99a573..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_sketch_params.rst.txt deleted file mode 120000 index 077c6814181..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_snap.rst.txt deleted file mode 120000 index a53d0926013..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_tick_padding.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_tick_padding.rst.txt deleted file mode 120000 index 32d6d17125e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_tick_padding.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.get_tick_padding.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_tickdir.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_tickdir.rst.txt deleted file mode 120000 index d8994efda3c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_tickdir.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.get_tickdir.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_transform.rst.txt deleted file mode 120000 index b2ac2c48309..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index 5ab8b806e6e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_url.rst.txt deleted file mode 120000 index e435a72b549..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_view_interval.rst.txt deleted file mode 120000 index b0f7bdc0fac..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.get_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_visible.rst.txt deleted file mode 120000 index b7d11945d9f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_window_extent.rst.txt deleted file mode 120000 index 0f764cced32..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.get_zorder.rst.txt deleted file mode 120000 index 98f0d420f2e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.have_units.rst.txt deleted file mode 120000 index 3a09c0e8ce5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.hitlist.rst.txt deleted file mode 120000 index d2714f528fb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.Tick.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.is_figure_set.rst.txt deleted file mode 120000 index 1474d90f497..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.Tick.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.is_transform_set.rst.txt deleted file mode 120000 index 635c89955d9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.mouseover.rst.txt deleted file mode 120000 index 76fa20d2330..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.pchanged.rst.txt deleted file mode 120000 index 0105c90c206..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.pick.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.pick.rst.txt deleted file mode 120000 index 6b9b8c1a993..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.pickable.rst.txt deleted file mode 120000 index 8c9f179057c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.properties.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.properties.rst.txt deleted file mode 120000 index 7b12877b53d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.remove.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.remove.rst.txt deleted file mode 120000 index 16297ca608a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.remove_callback.rst.txt deleted file mode 120000 index 215ba1ed8a5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set.rst.txt deleted file mode 120000 index 388d934430d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_agg_filter.rst.txt deleted file mode 120000 index 595af9843b2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_alpha.rst.txt deleted file mode 120000 index c3fb9705362..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_animated.rst.txt deleted file mode 120000 index 92ade0ce8eb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_axes.rst.txt deleted file mode 120000 index f2841a17803..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_box.rst.txt deleted file mode 120000 index 0aeb9ba0833..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_on.rst.txt deleted file mode 120000 index 7eb3a55ab70..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_path.rst.txt deleted file mode 120000 index 63e29012e6c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_contains.rst.txt deleted file mode 120000 index a6faaf993b6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_figure.rst.txt deleted file mode 120000 index a30dfb87168..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_gid.rst.txt deleted file mode 120000 index fdfddb0a7be..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_label.rst.txt deleted file mode 120000 index de4394143bb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_label1.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_label1.rst.txt deleted file mode 120000 index 75d079d2a14..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_label1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.set_label1.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_label2.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_label2.rst.txt deleted file mode 120000 index 2a7f899d26b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_label2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.set_label2.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_pad.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_pad.rst.txt deleted file mode 120000 index 551f865e11d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.set_pad.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_path_effects.rst.txt deleted file mode 120000 index 116a53dd286..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_picker.rst.txt deleted file mode 120000 index 5fb9b97877a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_rasterized.rst.txt deleted file mode 120000 index ac2428be0c9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_sketch_params.rst.txt deleted file mode 120000 index a7c406508af..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_snap.rst.txt deleted file mode 120000 index 0f16a00ddee..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_transform.rst.txt deleted file mode 120000 index adab7ea0cc0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_url.rst.txt deleted file mode 120000 index b395638ae75..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_visible.rst.txt deleted file mode 120000 index 2568bfe9290..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.set_zorder.rst.txt deleted file mode 120000 index 5aa1b68e9af..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.stale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.stale.rst.txt deleted file mode 120000 index 1529b50c50c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.update.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.update.rst.txt deleted file mode 120000 index 31b288f15aa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.update_from.rst.txt deleted file mode 120000 index 740f4217719..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.update_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.update_position.rst.txt deleted file mode 120000 index b58d8846f24..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.update_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.Tick.update_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.Tick.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.Tick.zorder.rst.txt deleted file mode 120000 index 0f3704428d5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.Tick.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.Tick.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.OFFSETTEXTPAD.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.OFFSETTEXTPAD.rst.txt deleted file mode 120000 index a5c1df9a43b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.OFFSETTEXTPAD.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.OFFSETTEXTPAD.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.add_callback.rst.txt deleted file mode 120000 index 1988f1dec69..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.aname.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.aname.rst.txt deleted file mode 120000 index 69da2d1703e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.XAxis.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.axes.rst.txt deleted file mode 120000 index bbf18decbbd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_date.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_date.rst.txt deleted file mode 120000 index b1dd58ea7db..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_date.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_name.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_name.rst.txt deleted file mode 120000 index 9d3022b2246..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_name.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.XAxis.axis_name.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.cla.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.cla.rst.txt deleted file mode 120000 index 56bb8e6a2a1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.cla.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.cla.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.contains.rst.txt deleted file mode 120000 index 6804ddd090d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_units.rst.txt deleted file mode 120000 index afa07e16bf5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_xunits.rst.txt deleted file mode 120000 index 4595ab22309..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_yunits.rst.txt deleted file mode 120000 index 61f42677b9d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.draw.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.draw.rst.txt deleted file mode 120000 index 65afffa6999..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.findobj.rst.txt deleted file mode 120000 index d3cecaafd4c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.format_cursor_data.rst.txt deleted file mode 120000 index 6efc7ecbe2b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_agg_filter.rst.txt deleted file mode 120000 index 08d6d33edc1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_alpha.rst.txt deleted file mode 120000 index 8ba125178bc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_animated.rst.txt deleted file mode 120000 index 2223637b198..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_axes.rst.txt deleted file mode 120000 index 3802414fef6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_children.rst.txt deleted file mode 120000 index b11693eb95c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_box.rst.txt deleted file mode 120000 index 63f3d6bc3e9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_on.rst.txt deleted file mode 120000 index 555c43d8ae3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_path.rst.txt deleted file mode 120000 index 7552b78770f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_contains.rst.txt deleted file mode 120000 index 71b2ddcb844..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_cursor_data.rst.txt deleted file mode 120000 index 971e96d7040..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_data_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_data_interval.rst.txt deleted file mode 120000 index 88af9c49480..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_data_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_data_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_figure.rst.txt deleted file mode 120000 index 83544c8369f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gid.rst.txt deleted file mode 120000 index 41eed41d2df..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gridlines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gridlines.rst.txt deleted file mode 120000 index 2af4aae90cd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gridlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_gridlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label.rst.txt deleted file mode 120000 index ca0b680ba39..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_position.rst.txt deleted file mode 120000 index 4247f3d9b03..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_text.rst.txt deleted file mode 120000 index 0f881806531..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_label_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_formatter.rst.txt deleted file mode 120000 index 6d76b0f5a0a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_locator.rst.txt deleted file mode 120000 index d6631ba5b58..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_ticks.rst.txt deleted file mode 120000 index 0bd7e15a340..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_major_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklabels.rst.txt deleted file mode 120000 index 6b9ffa0b543..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklines.rst.txt deleted file mode 120000 index e2660016c21..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklocs.rst.txt deleted file mode 120000 index a6c54f4e3f6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_majorticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_formatter.rst.txt deleted file mode 120000 index 1b0cab87831..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_locator.rst.txt deleted file mode 120000 index d5bbb82b73b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_ticks.rst.txt deleted file mode 120000 index a1a1da66100..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minor_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklabels.rst.txt deleted file mode 120000 index f3fd47ceee9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklines.rst.txt deleted file mode 120000 index a8fce80e1e2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklocs.rst.txt deleted file mode 120000 index 77a578895a8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minorticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minpos.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minpos.rst.txt deleted file mode 120000 index 69115d0ce0b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minpos.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_minpos.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_offset_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_offset_text.rst.txt deleted file mode 120000 index 9ddbdb42441..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_offset_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_offset_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_path_effects.rst.txt deleted file mode 120000 index 96db24e083e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_picker.rst.txt deleted file mode 120000 index 53c9958e9b8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_pickradius.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_pickradius.rst.txt deleted file mode 120000 index 6bd5e9c0485..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_pickradius.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_pickradius.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_rasterized.rst.txt deleted file mode 120000 index c82c2f55854..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_scale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_scale.rst.txt deleted file mode 120000 index e0e2694d498..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_scale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_sketch_params.rst.txt deleted file mode 120000 index e28d8acd466..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_smart_bounds.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_smart_bounds.rst.txt deleted file mode 120000 index 86d30053262..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_smart_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_smart_bounds.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_snap.rst.txt deleted file mode 120000 index 0f890d27a85..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_text_heights.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_text_heights.rst.txt deleted file mode 120000 index 152bc98e0ce..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_text_heights.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.XAxis.get_text_heights.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_padding.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_padding.rst.txt deleted file mode 120000 index b69a053f96f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_padding.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_padding.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_space.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_space.rst.txt deleted file mode 120000 index 06ec006dd57..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_space.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tick_space.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabel_extents.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabel_extents.rst.txt deleted file mode 120000 index ad7704aea69..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabel_extents.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabel_extents.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabels.rst.txt deleted file mode 120000 index 8a6807a9feb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklines.rst.txt deleted file mode 120000 index e4f6531bd3a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklocs.rst.txt deleted file mode 120000 index 4cf15f55dde..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticks_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticks_position.rst.txt deleted file mode 120000 index 424e124bd92..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticks_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.XAxis.get_ticks_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tightbbox.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tightbbox.rst.txt deleted file mode 120000 index 5ec3db9f961..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tightbbox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_tightbbox.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transform.rst.txt deleted file mode 120000 index 0587a104f04..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index d7de2ce8f75..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_units.rst.txt deleted file mode 120000 index c98e2ad471e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_url.rst.txt deleted file mode 120000 index cfca52e1302..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_view_interval.rst.txt deleted file mode 120000 index eff22e17201..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_visible.rst.txt deleted file mode 120000 index e7535f775d9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_window_extent.rst.txt deleted file mode 120000 index 2145cbf0d9b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.get_zorder.rst.txt deleted file mode 120000 index 45b450375df..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.grid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.grid.rst.txt deleted file mode 120000 index fa5bd3c78c0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.have_units.rst.txt deleted file mode 120000 index aa42d2850cf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.hitlist.rst.txt deleted file mode 120000 index 120d4f8a01b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.XAxis.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.is_figure_set.rst.txt deleted file mode 120000 index 9c9660dc743..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.XAxis.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.is_transform_set.rst.txt deleted file mode 120000 index 395fe5eeaf0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.iter_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.iter_ticks.rst.txt deleted file mode 120000 index f85b2a804d6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.iter_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.XAxis.iter_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.limit_range_for_scale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.limit_range_for_scale.rst.txt deleted file mode 120000 index a3185d9d377..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.limit_range_for_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.limit_range_for_scale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.mouseover.rst.txt deleted file mode 120000 index d0304d30616..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.pan.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.pan.rst.txt deleted file mode 120000 index c136f0edb56..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.pan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.pan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.pchanged.rst.txt deleted file mode 120000 index 69cec4d27c9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.pick.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.pick.rst.txt deleted file mode 120000 index 9b00b80207b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.pickable.rst.txt deleted file mode 120000 index fd27f61f13a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.properties.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.properties.rst.txt deleted file mode 120000 index 8b4315e1bd5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.remove.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.remove.rst.txt deleted file mode 120000 index 72f964c7d2e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.remove_callback.rst.txt deleted file mode 120000 index b7baa4d2911..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.reset_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.reset_ticks.rst.txt deleted file mode 120000 index d8d63089edc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.reset_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.reset_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set.rst.txt deleted file mode 120000 index 9881fa1751d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_agg_filter.rst.txt deleted file mode 120000 index 501ef176ea9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_alpha.rst.txt deleted file mode 120000 index 3b4ec7b5d96..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_animated.rst.txt deleted file mode 120000 index ffcc402c3cf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_axes.rst.txt deleted file mode 120000 index d648cdce3f6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_box.rst.txt deleted file mode 120000 index 41ce1a08d5b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_on.rst.txt deleted file mode 120000 index ca9690a5ce7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_path.rst.txt deleted file mode 120000 index 5af73e41e9d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_contains.rst.txt deleted file mode 120000 index e7fa84f20be..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_data_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_data_interval.rst.txt deleted file mode 120000 index 5543d699961..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_data_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_data_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_default_intervals.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_default_intervals.rst.txt deleted file mode 120000 index a83de2bf434..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_default_intervals.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_default_intervals.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_figure.rst.txt deleted file mode 120000 index 83bb358e8f8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_gid.rst.txt deleted file mode 120000 index 04732da880b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label.rst.txt deleted file mode 120000 index 75df00cab34..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_coords.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_coords.rst.txt deleted file mode 120000 index 08da7bc54eb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_coords.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_coords.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_position.rst.txt deleted file mode 120000 index 384183e7303..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_text.rst.txt deleted file mode 120000 index 2207535dead..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_label_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_formatter.rst.txt deleted file mode 120000 index 14af5c4be26..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_locator.rst.txt deleted file mode 120000 index 51ecd6fa46e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_major_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_formatter.rst.txt deleted file mode 120000 index 4c8bff92e9e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_locator.rst.txt deleted file mode 120000 index 087c98cd4b8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_minor_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_path_effects.rst.txt deleted file mode 120000 index d657d5c2483..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_picker.rst.txt deleted file mode 120000 index 5ceb6d4a124..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_pickradius.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_pickradius.rst.txt deleted file mode 120000 index 1c34198606b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_pickradius.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_pickradius.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_rasterized.rst.txt deleted file mode 120000 index 78e313e67de..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_sketch_params.rst.txt deleted file mode 120000 index 3ec6ada7364..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_smart_bounds.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_smart_bounds.rst.txt deleted file mode 120000 index 22d0e346826..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_smart_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_smart_bounds.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_snap.rst.txt deleted file mode 120000 index d64db008a8c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_tick_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_tick_params.rst.txt deleted file mode 120000 index 981f19b95c3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_tick_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_tick_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticklabels.rst.txt deleted file mode 120000 index 41606f53d4d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks.rst.txt deleted file mode 120000 index fa2bc726bd3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks_position.rst.txt deleted file mode 120000 index 77e80739093..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.XAxis.set_ticks_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_transform.rst.txt deleted file mode 120000 index 2e222f7491e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_units.rst.txt deleted file mode 120000 index 75660317620..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_url.rst.txt deleted file mode 120000 index afda1c1e8af..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_view_interval.rst.txt deleted file mode 120000 index bf77eb655c2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_visible.rst.txt deleted file mode 120000 index aaab7a4b409..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.set_zorder.rst.txt deleted file mode 120000 index 080795207d3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.stale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.stale.rst.txt deleted file mode 120000 index 2f080be68ec..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_bottom.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_bottom.rst.txt deleted file mode 120000 index f044bfe23b7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_bottom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_bottom.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_top.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_top.rst.txt deleted file mode 120000 index 22e5652863d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_top.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.XAxis.tick_top.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.update.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.update.rst.txt deleted file mode 120000 index a8e95e21582..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.update_from.rst.txt deleted file mode 120000 index 77796fc64c9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.update_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.update_units.rst.txt deleted file mode 120000 index 8b49b649184..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.update_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.update_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.zoom.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.zoom.rst.txt deleted file mode 120000 index f926b0cdc6d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.zoom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.zoom.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XAxis.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XAxis.zorder.rst.txt deleted file mode 120000 index e19ade52b47..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XAxis.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XAxis.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.add_callback.rst.txt deleted file mode 120000 index c586c52c9cb..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.aname.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.aname.rst.txt deleted file mode 120000 index 6262901fd27..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.XTick.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.apply_tickdir.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.apply_tickdir.rst.txt deleted file mode 120000 index c341f1d126e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.apply_tickdir.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.apply_tickdir.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.axes.rst.txt deleted file mode 120000 index d5f4ae08b04..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.contains.rst.txt deleted file mode 120000 index ceb3e376319..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.convert_xunits.rst.txt deleted file mode 120000 index ec66bdfad6c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.convert_yunits.rst.txt deleted file mode 120000 index 098150de44b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.draw.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.draw.rst.txt deleted file mode 120000 index ed982aa5697..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.findobj.rst.txt deleted file mode 120000 index f0ea9ae1cd1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.format_cursor_data.rst.txt deleted file mode 120000 index b5233ad6610..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_agg_filter.rst.txt deleted file mode 120000 index b2617f30b97..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_alpha.rst.txt deleted file mode 120000 index 714e77df263..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_animated.rst.txt deleted file mode 120000 index a6de1e18ee2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_axes.rst.txt deleted file mode 120000 index cba0e5dc9f9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_children.rst.txt deleted file mode 120000 index 660eb4c6656..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_box.rst.txt deleted file mode 120000 index f26761cab16..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_on.rst.txt deleted file mode 120000 index 8e14ea64ebc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_path.rst.txt deleted file mode 120000 index 6144f9bf137..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_contains.rst.txt deleted file mode 120000 index be3d10619c0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_cursor_data.rst.txt deleted file mode 120000 index 40f29d2b747..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_figure.rst.txt deleted file mode 120000 index 633032d9875..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_gid.rst.txt deleted file mode 120000 index 135f3cfadc4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_label.rst.txt deleted file mode 120000 index 2a3595ae673..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_loc.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_loc.rst.txt deleted file mode 120000 index 3fda55deaad..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_loc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_loc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad.rst.txt deleted file mode 120000 index 379d8f325ed..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad_pixels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad_pixels.rst.txt deleted file mode 120000 index 8ed6d67b9c8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad_pixels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_pad_pixels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_path_effects.rst.txt deleted file mode 120000 index 5d5f35105a9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_picker.rst.txt deleted file mode 120000 index ee3faef0042..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_rasterized.rst.txt deleted file mode 120000 index 342e7168781..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_sketch_params.rst.txt deleted file mode 120000 index 4d2ff50d705..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_snap.rst.txt deleted file mode 120000 index 018f126089f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_tick_padding.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_tick_padding.rst.txt deleted file mode 120000 index bfc1644b008..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_tick_padding.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_tick_padding.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_tickdir.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_tickdir.rst.txt deleted file mode 120000 index c4b6c4ef9bc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_tickdir.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_tickdir.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_transform.rst.txt deleted file mode 120000 index 5615a3973fe..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index a648cc919c9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_url.rst.txt deleted file mode 120000 index b3223b5a708..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_view_interval.rst.txt deleted file mode 120000 index b84262c83c3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_visible.rst.txt deleted file mode 120000 index 70c813abaf6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_window_extent.rst.txt deleted file mode 120000 index 4154617e074..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.get_zorder.rst.txt deleted file mode 120000 index 266510988e9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.have_units.rst.txt deleted file mode 120000 index cf33569ba40..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.hitlist.rst.txt deleted file mode 120000 index ff98a270cb2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.XTick.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.is_figure_set.rst.txt deleted file mode 120000 index a037dbda183..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.XTick.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.is_transform_set.rst.txt deleted file mode 120000 index 003e012ba56..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.mouseover.rst.txt deleted file mode 120000 index 3353a795b6d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.pchanged.rst.txt deleted file mode 120000 index ec5713aa60d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.pick.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.pick.rst.txt deleted file mode 120000 index b3d9b96e614..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.pickable.rst.txt deleted file mode 120000 index cc74260dbce..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.properties.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.properties.rst.txt deleted file mode 120000 index 7b508fc84e2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.remove.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.remove.rst.txt deleted file mode 120000 index b67b1a36677..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.remove_callback.rst.txt deleted file mode 120000 index 84f7a8cf73b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set.rst.txt deleted file mode 120000 index 0109c8b7ba9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_agg_filter.rst.txt deleted file mode 120000 index 48bbffb80a3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_alpha.rst.txt deleted file mode 120000 index 92357821a6f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_animated.rst.txt deleted file mode 120000 index d3b18af6256..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_axes.rst.txt deleted file mode 120000 index 92145d047ff..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_box.rst.txt deleted file mode 120000 index 708ad0a9934..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_on.rst.txt deleted file mode 120000 index 719945fc2e7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_path.rst.txt deleted file mode 120000 index da1b1ac79b5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_contains.rst.txt deleted file mode 120000 index 51ff85591f7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_figure.rst.txt deleted file mode 120000 index a9f9b89963b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_gid.rst.txt deleted file mode 120000 index 629d093da7c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_label.rst.txt deleted file mode 120000 index 0b30f45ab1d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_label1.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_label1.rst.txt deleted file mode 120000 index 7ccc1d02ecf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_label1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_label1.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_label2.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_label2.rst.txt deleted file mode 120000 index 501fe48f1b3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_label2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_label2.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_pad.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_pad.rst.txt deleted file mode 120000 index 962b281e9b5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_pad.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_path_effects.rst.txt deleted file mode 120000 index d91f5bc91d8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_picker.rst.txt deleted file mode 120000 index d9cf971b0c1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_rasterized.rst.txt deleted file mode 120000 index 5b14cf2cc9e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_sketch_params.rst.txt deleted file mode 120000 index eb47640aa6c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_snap.rst.txt deleted file mode 120000 index d7477c91e51..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_transform.rst.txt deleted file mode 120000 index 323c2d130a8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_url.rst.txt deleted file mode 120000 index 4cca4056ec2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_visible.rst.txt deleted file mode 120000 index 8262176e092..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.set_zorder.rst.txt deleted file mode 120000 index 16aca56ad6e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.stale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.stale.rst.txt deleted file mode 120000 index fb2e2cd0ad1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.update.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.update.rst.txt deleted file mode 120000 index c7cb7efbafa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.update_from.rst.txt deleted file mode 120000 index bf5c56412a1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.update_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.update_position.rst.txt deleted file mode 120000 index 6fe5dd6c577..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.update_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.update_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.XTick.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.XTick.zorder.rst.txt deleted file mode 120000 index a807adf3321..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.XTick.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.XTick.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.OFFSETTEXTPAD.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.OFFSETTEXTPAD.rst.txt deleted file mode 120000 index 05fc237dfb6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.OFFSETTEXTPAD.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.OFFSETTEXTPAD.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.add_callback.rst.txt deleted file mode 120000 index 789d32c2487..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.aname.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.aname.rst.txt deleted file mode 120000 index 5698e736297..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.YAxis.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.axes.rst.txt deleted file mode 120000 index 1ca1b5a2651..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_date.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_date.rst.txt deleted file mode 120000 index 4abdba48680..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_date.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_name.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_name.rst.txt deleted file mode 120000 index 15e4cea2bff..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_name.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.axis_name.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.cla.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.cla.rst.txt deleted file mode 120000 index e319fde8f44..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.cla.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.cla.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.contains.rst.txt deleted file mode 120000 index 2c046d58eca..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_units.rst.txt deleted file mode 120000 index 8fc56aedcc5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_xunits.rst.txt deleted file mode 120000 index 0c92e7107ed..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_yunits.rst.txt deleted file mode 120000 index 9655f40d5d5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.draw.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.draw.rst.txt deleted file mode 120000 index ae454f9f23b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.findobj.rst.txt deleted file mode 120000 index 35fe2168b6a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.format_cursor_data.rst.txt deleted file mode 120000 index 64ecb644bb0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_agg_filter.rst.txt deleted file mode 120000 index 5a7a564b99e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_alpha.rst.txt deleted file mode 120000 index 53a348b4555..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_animated.rst.txt deleted file mode 120000 index 8ea42df16a3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_axes.rst.txt deleted file mode 120000 index d86734b6896..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_children.rst.txt deleted file mode 120000 index 946487eee52..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_box.rst.txt deleted file mode 120000 index 4fdd63612b2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_on.rst.txt deleted file mode 120000 index 9523bfaff6d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_path.rst.txt deleted file mode 120000 index 832a69bd4f2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_contains.rst.txt deleted file mode 120000 index 71ce40debb6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_cursor_data.rst.txt deleted file mode 120000 index eea9b249378..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_data_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_data_interval.rst.txt deleted file mode 120000 index 6add0cdef6d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_data_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_data_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_figure.rst.txt deleted file mode 120000 index dfb2b1e5785..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gid.rst.txt deleted file mode 120000 index f8432c802d1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gridlines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gridlines.rst.txt deleted file mode 120000 index bb81b5d8981..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gridlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_gridlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label.rst.txt deleted file mode 120000 index 73f7484041a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_position.rst.txt deleted file mode 120000 index c335601201a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_text.rst.txt deleted file mode 120000 index d093896c559..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_label_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_formatter.rst.txt deleted file mode 120000 index 11b87e562c7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_locator.rst.txt deleted file mode 120000 index e511df4b80f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_ticks.rst.txt deleted file mode 120000 index bb818e84323..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_major_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklabels.rst.txt deleted file mode 120000 index 3fbac4201aa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklines.rst.txt deleted file mode 120000 index d70cc6e4609..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklocs.rst.txt deleted file mode 120000 index 22b8da17070..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_majorticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_formatter.rst.txt deleted file mode 120000 index 1607515d704..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_locator.rst.txt deleted file mode 120000 index 3df9ef5d6a5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_ticks.rst.txt deleted file mode 120000 index 8f2d9c49d94..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minor_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklabels.rst.txt deleted file mode 120000 index 7a5bda06fa5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklines.rst.txt deleted file mode 120000 index 2927acd0eb9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklocs.rst.txt deleted file mode 120000 index 79c3c17f3f1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minorticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minpos.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minpos.rst.txt deleted file mode 120000 index e4e7fb03261..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minpos.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_minpos.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_offset_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_offset_text.rst.txt deleted file mode 120000 index 9fca9cd929c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_offset_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_offset_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_path_effects.rst.txt deleted file mode 120000 index d2205e136a0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_picker.rst.txt deleted file mode 120000 index d1fa31a0db5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_pickradius.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_pickradius.rst.txt deleted file mode 120000 index 570e84310ad..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_pickradius.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_pickradius.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_rasterized.rst.txt deleted file mode 120000 index 7ef28acb358..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_scale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_scale.rst.txt deleted file mode 120000 index fe2026d8140..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_scale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_sketch_params.rst.txt deleted file mode 120000 index 217aa2c8123..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_smart_bounds.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_smart_bounds.rst.txt deleted file mode 120000 index 518e27be797..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_smart_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_smart_bounds.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_snap.rst.txt deleted file mode 120000 index 950b1b6770c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_text_widths.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_text_widths.rst.txt deleted file mode 120000 index 1aaa4cee02e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_text_widths.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.get_text_widths.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_padding.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_padding.rst.txt deleted file mode 120000 index eea25e89991..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_padding.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_padding.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_space.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_space.rst.txt deleted file mode 120000 index 0b1a88ed76e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_space.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tick_space.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabel_extents.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabel_extents.rst.txt deleted file mode 120000 index a6c363b91e2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabel_extents.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabel_extents.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabels.rst.txt deleted file mode 120000 index 64b40c4ec8d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklines.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklines.rst.txt deleted file mode 120000 index 85faa061ce5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklocs.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklocs.rst.txt deleted file mode 120000 index d2b3cbd4c91..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklocs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticklocs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticks_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticks_position.rst.txt deleted file mode 120000 index b3631c6489f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticks_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.get_ticks_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tightbbox.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tightbbox.rst.txt deleted file mode 120000 index 02403a6d465..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tightbbox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_tightbbox.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transform.rst.txt deleted file mode 120000 index b23e46ce836..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index 0c2b96de98c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_units.rst.txt deleted file mode 120000 index 6515e9d73a7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_url.rst.txt deleted file mode 120000 index 292c8f442ec..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_view_interval.rst.txt deleted file mode 120000 index 684d0bd5a8e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_visible.rst.txt deleted file mode 120000 index d9d5f1dd591..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_window_extent.rst.txt deleted file mode 120000 index 76d51cc89fc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.get_zorder.rst.txt deleted file mode 120000 index 49d4cd5523e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.grid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.grid.rst.txt deleted file mode 120000 index 511fc65b78a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.have_units.rst.txt deleted file mode 120000 index 38d2dae710e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.hitlist.rst.txt deleted file mode 120000 index f44a5c0aef3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.YAxis.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.is_figure_set.rst.txt deleted file mode 120000 index 8808aafb74a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.YAxis.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.is_transform_set.rst.txt deleted file mode 120000 index 8fec9b608a1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.iter_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.iter_ticks.rst.txt deleted file mode 120000 index d75de9e0934..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.iter_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.YAxis.iter_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.limit_range_for_scale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.limit_range_for_scale.rst.txt deleted file mode 120000 index 2defc3f9fc5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.limit_range_for_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.limit_range_for_scale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.mouseover.rst.txt deleted file mode 120000 index 77f5f93d9b5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.pan.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.pan.rst.txt deleted file mode 120000 index ad66bca1182..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.pan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.pan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.pchanged.rst.txt deleted file mode 120000 index 5f52cd8ddcf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.pick.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.pick.rst.txt deleted file mode 120000 index 9d06d4723d0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.pickable.rst.txt deleted file mode 120000 index 03765c5d86d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.properties.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.properties.rst.txt deleted file mode 120000 index 567deb83b1e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.remove.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.remove.rst.txt deleted file mode 120000 index 5163a9ce9cd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.remove_callback.rst.txt deleted file mode 120000 index f1f74a15eee..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.reset_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.reset_ticks.rst.txt deleted file mode 120000 index 28338c555ce..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.reset_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.reset_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set.rst.txt deleted file mode 120000 index ead969e33f5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_agg_filter.rst.txt deleted file mode 120000 index 316f768a410..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_alpha.rst.txt deleted file mode 120000 index d86d07d5bfc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_animated.rst.txt deleted file mode 120000 index 3ae31b68081..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_axes.rst.txt deleted file mode 120000 index dbec587d1f4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_box.rst.txt deleted file mode 120000 index 9ac368ffe71..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_on.rst.txt deleted file mode 120000 index 2dc71474bb0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_path.rst.txt deleted file mode 120000 index d577b222de4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_contains.rst.txt deleted file mode 120000 index 1be95a46042..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_data_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_data_interval.rst.txt deleted file mode 120000 index 3256086c59f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_data_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_data_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_default_intervals.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_default_intervals.rst.txt deleted file mode 120000 index 663bf93b3bc..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_default_intervals.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_default_intervals.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_figure.rst.txt deleted file mode 120000 index fca10970652..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_gid.rst.txt deleted file mode 120000 index c599ae7d78c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label.rst.txt deleted file mode 120000 index fdfaefec0ee..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_coords.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_coords.rst.txt deleted file mode 120000 index f74913bb9b2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_coords.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_coords.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_position.rst.txt deleted file mode 120000 index e30db88a962..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_text.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_text.rst.txt deleted file mode 120000 index e41e0ac5a93..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_label_text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_formatter.rst.txt deleted file mode 120000 index d0b80d18d95..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_locator.rst.txt deleted file mode 120000 index 794ce01d0d8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_major_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_formatter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_formatter.rst.txt deleted file mode 120000 index 118d4838588..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_formatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_locator.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_locator.rst.txt deleted file mode 120000 index 57373aa2888..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_minor_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_offset_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_offset_position.rst.txt deleted file mode 120000 index d1e4cc91d1e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_offset_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.set_offset_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_path_effects.rst.txt deleted file mode 120000 index ca4508de315..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_picker.rst.txt deleted file mode 120000 index 5c28813def7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_pickradius.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_pickradius.rst.txt deleted file mode 120000 index bb43cc04217..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_pickradius.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_pickradius.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_rasterized.rst.txt deleted file mode 120000 index df9ffbfe561..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_sketch_params.rst.txt deleted file mode 120000 index dd197f24e83..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_smart_bounds.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_smart_bounds.rst.txt deleted file mode 120000 index 3eee97fb780..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_smart_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_smart_bounds.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_snap.rst.txt deleted file mode 120000 index 5f54b55dbe3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_tick_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_tick_params.rst.txt deleted file mode 120000 index 6349a34ddc3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_tick_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_tick_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticklabels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticklabels.rst.txt deleted file mode 120000 index 56c03637185..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks.rst.txt deleted file mode 120000 index e6f066445bd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks_position.rst.txt deleted file mode 120000 index 5673ffbcfc3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.set_ticks_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_transform.rst.txt deleted file mode 120000 index dc2d2675c44..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_units.rst.txt deleted file mode 120000 index 175d7fbbae8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_url.rst.txt deleted file mode 120000 index 0974045eaaa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_view_interval.rst.txt deleted file mode 120000 index e1b1f6dc49b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_visible.rst.txt deleted file mode 120000 index e1d850d3533..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.set_zorder.rst.txt deleted file mode 120000 index e16f1e8402c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.stale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.stale.rst.txt deleted file mode 120000 index bb1a265709b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_left.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_left.rst.txt deleted file mode 120000 index 652626d7e0d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_left.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_left.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_right.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_right.rst.txt deleted file mode 120000 index 7a797c502f8..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_right.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.axis.YAxis.tick_right.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.update.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.update.rst.txt deleted file mode 120000 index d90c3a14fd3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.update_from.rst.txt deleted file mode 120000 index 37f9dca7cac..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.update_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.update_units.rst.txt deleted file mode 120000 index db595951682..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.update_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.update_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.zoom.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.zoom.rst.txt deleted file mode 120000 index d06f427f821..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.zoom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.zoom.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YAxis.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YAxis.zorder.rst.txt deleted file mode 120000 index 9404910514b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YAxis.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YAxis.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.add_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.add_callback.rst.txt deleted file mode 120000 index 6ab9fb3fdc4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.add_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.add_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.aname.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.aname.rst.txt deleted file mode 120000 index c9e9b5c1d00..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.aname.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/api/_as_gen/matplotlib.axis.YTick.aname.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.apply_tickdir.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.apply_tickdir.rst.txt deleted file mode 120000 index f167e64f4df..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.apply_tickdir.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.apply_tickdir.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.axes.rst.txt deleted file mode 120000 index d3639c0f1e5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.contains.rst.txt deleted file mode 120000 index c977fc3930d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.convert_xunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.convert_xunits.rst.txt deleted file mode 120000 index 2fe1deed385..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.convert_xunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.convert_xunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.convert_yunits.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.convert_yunits.rst.txt deleted file mode 120000 index 4c1ce293a68..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.convert_yunits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.convert_yunits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.draw.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.draw.rst.txt deleted file mode 120000 index 0e787e44f65..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.findobj.rst.txt deleted file mode 120000 index 9fe147fa924..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.format_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.format_cursor_data.rst.txt deleted file mode 120000 index 1c17c112ed5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.format_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.format_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_agg_filter.rst.txt deleted file mode 120000 index c1888c092f7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_alpha.rst.txt deleted file mode 120000 index 7652660e05f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_animated.rst.txt deleted file mode 120000 index 9451c6958df..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_axes.rst.txt deleted file mode 120000 index 7b571425cfe..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_children.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_children.rst.txt deleted file mode 120000 index 3620fdb6be4..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_children.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_children.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_box.rst.txt deleted file mode 120000 index 65b30adab69..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_on.rst.txt deleted file mode 120000 index 01f00c87304..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_path.rst.txt deleted file mode 120000 index 25157c5c2e2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_contains.rst.txt deleted file mode 120000 index a148f362e92..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_cursor_data.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_cursor_data.rst.txt deleted file mode 120000 index 2d09464c810..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_cursor_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_cursor_data.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_figure.rst.txt deleted file mode 120000 index 44eaa6eb552..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_gid.rst.txt deleted file mode 120000 index 7b288f6fd63..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_label.rst.txt deleted file mode 120000 index 4f48edb973b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_loc.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_loc.rst.txt deleted file mode 120000 index 3f25a5be094..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_loc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_loc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad.rst.txt deleted file mode 120000 index 9beea75968d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad_pixels.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad_pixels.rst.txt deleted file mode 120000 index 44fae9ffe27..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad_pixels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_pad_pixels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_path_effects.rst.txt deleted file mode 120000 index 6e706383263..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_picker.rst.txt deleted file mode 120000 index 60f06d8f26a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_rasterized.rst.txt deleted file mode 120000 index 577af7cf10b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_sketch_params.rst.txt deleted file mode 120000 index b2376947ec7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_snap.rst.txt deleted file mode 120000 index abc3a79c6aa..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_tick_padding.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_tick_padding.rst.txt deleted file mode 120000 index ad2edbca91e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_tick_padding.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_tick_padding.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_tickdir.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_tickdir.rst.txt deleted file mode 120000 index 79b18145c53..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_tickdir.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_tickdir.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_transform.rst.txt deleted file mode 120000 index 558bc35318f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_transformed_clip_path_and_affine.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_transformed_clip_path_and_affine.rst.txt deleted file mode 120000 index 812a4262b10..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_transformed_clip_path_and_affine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_transformed_clip_path_and_affine.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_url.rst.txt deleted file mode 120000 index 284d10e6083..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_view_interval.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_view_interval.rst.txt deleted file mode 120000 index fce5767b364..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_view_interval.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_view_interval.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_visible.rst.txt deleted file mode 120000 index 86e21ad2c34..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_window_extent.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_window_extent.rst.txt deleted file mode 120000 index 5022cb983c2..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_window_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_window_extent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.get_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.get_zorder.rst.txt deleted file mode 120000 index 18c6f08695a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.get_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.get_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.have_units.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.have_units.rst.txt deleted file mode 120000 index 0ebac475ce6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.have_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.have_units.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.hitlist.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.hitlist.rst.txt deleted file mode 120000 index 04366d21ac5..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.hitlist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.YTick.hitlist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.is_figure_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.is_figure_set.rst.txt deleted file mode 120000 index 26bd1d4ed9d..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.is_figure_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/matplotlib.axis.YTick.is_figure_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.is_transform_set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.is_transform_set.rst.txt deleted file mode 120000 index 0f866abb297..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.is_transform_set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.is_transform_set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.mouseover.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.mouseover.rst.txt deleted file mode 120000 index a7b68a0788e..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.mouseover.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.mouseover.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.pchanged.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.pchanged.rst.txt deleted file mode 120000 index 35310fc1263..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.pchanged.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.pchanged.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.pick.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.pick.rst.txt deleted file mode 120000 index 76bbbbf9ebf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.pick.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.pick.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.pickable.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.pickable.rst.txt deleted file mode 120000 index 474e0bf064b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.pickable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.pickable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.properties.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.properties.rst.txt deleted file mode 120000 index c85836d9047..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.properties.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.properties.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.remove.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.remove.rst.txt deleted file mode 120000 index c190e4c5cf9..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.remove.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.remove.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.remove_callback.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.remove_callback.rst.txt deleted file mode 120000 index 6f8ec2e6ea0..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.remove_callback.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.remove_callback.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set.rst.txt deleted file mode 120000 index c61e0f3d0b3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_agg_filter.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_agg_filter.rst.txt deleted file mode 120000 index 092e58dc5d6..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_alpha.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_alpha.rst.txt deleted file mode 120000 index c26216709bd..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_alpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_animated.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_animated.rst.txt deleted file mode 120000 index ec5b2dd4c13..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_animated.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_axes.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_axes.rst.txt deleted file mode 120000 index 36a4971c079..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_box.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_box.rst.txt deleted file mode 120000 index d2bdb44f2ce..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_on.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_on.rst.txt deleted file mode 120000 index da4f8ce4063..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_path.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_path.rst.txt deleted file mode 120000 index 75e7e068687..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_contains.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_contains.rst.txt deleted file mode 120000 index df614396783..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_contains.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_contains.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_figure.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_figure.rst.txt deleted file mode 120000 index 500755da754..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_gid.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_gid.rst.txt deleted file mode 120000 index 4ad116b7461..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_gid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_gid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_label.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_label.rst.txt deleted file mode 120000 index 28c56c78978..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_label1.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_label1.rst.txt deleted file mode 120000 index 56560606caf..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_label1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_label1.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_label2.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_label2.rst.txt deleted file mode 120000 index d0ac781ed79..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_label2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_label2.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_pad.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_pad.rst.txt deleted file mode 120000 index 66a9bda5dd7..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_pad.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_path_effects.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_path_effects.rst.txt deleted file mode 120000 index c6bd4879396..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_path_effects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_path_effects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_picker.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_picker.rst.txt deleted file mode 120000 index 6e6e09c46f1..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_picker.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_picker.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_rasterized.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_rasterized.rst.txt deleted file mode 120000 index df38bd6a41f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_rasterized.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_rasterized.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_sketch_params.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_sketch_params.rst.txt deleted file mode 120000 index f781778044a..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_sketch_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_sketch_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_snap.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_snap.rst.txt deleted file mode 120000 index 4dcdcc4b4a3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_snap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_snap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_transform.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_transform.rst.txt deleted file mode 120000 index 2dfedbc4821..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_url.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_url.rst.txt deleted file mode 120000 index f774d09b182..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_url.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_url.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_visible.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_visible.rst.txt deleted file mode 120000 index 369400f475f..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_visible.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_visible.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.set_zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.set_zorder.rst.txt deleted file mode 120000 index 4b9bce9b52c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.set_zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.set_zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.stale.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.stale.rst.txt deleted file mode 120000 index 20c5797c14c..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.stale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.stale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.update.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.update.rst.txt deleted file mode 120000 index c0996b9e164..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.update.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.update_from.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.update_from.rst.txt deleted file mode 120000 index a6e541aceb3..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.update_from.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.update_from.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.update_position.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.update_position.rst.txt deleted file mode 120000 index d5c55734a82..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.update_position.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.update_position.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.axis.YTick.zorder.rst.txt b/_sources/api/_as_gen/matplotlib.axis.YTick.zorder.rst.txt deleted file mode 120000 index ba259ac633b..00000000000 --- a/_sources/api/_as_gen/matplotlib.axis.YTick.zorder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.axis.YTick.zorder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.BoundaryNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.BoundaryNorm.rst.txt deleted file mode 120000 index f019fc7bb36..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.BoundaryNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.BoundaryNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.CenteredNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.CenteredNorm.rst.txt deleted file mode 120000 index dd0aa3e247c..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.CenteredNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.CenteredNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.Colormap.rst.txt b/_sources/api/_as_gen/matplotlib.colors.Colormap.rst.txt deleted file mode 120000 index 1b5e801d73a..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.Colormap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.Colormap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.DivergingNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.DivergingNorm.rst.txt deleted file mode 120000 index 870c9e82c84..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.DivergingNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.colors.DivergingNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.FuncNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.FuncNorm.rst.txt deleted file mode 120000 index a988d2bad8e..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.FuncNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.FuncNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.LightSource.rst.txt b/_sources/api/_as_gen/matplotlib.colors.LightSource.rst.txt deleted file mode 120000 index 6bfbc19184c..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.LightSource.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.LightSource.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.LinearSegmentedColormap.rst.txt b/_sources/api/_as_gen/matplotlib.colors.LinearSegmentedColormap.rst.txt deleted file mode 120000 index 61268e1d295..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.LinearSegmentedColormap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.LinearSegmentedColormap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.ListedColormap.rst.txt b/_sources/api/_as_gen/matplotlib.colors.ListedColormap.rst.txt deleted file mode 120000 index 3cf0de35e32..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.ListedColormap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.ListedColormap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.LogNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.LogNorm.rst.txt deleted file mode 120000 index 51e20600359..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.LogNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.LogNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.NoNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.NoNorm.rst.txt deleted file mode 120000 index 8aa49a0a204..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.NoNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.NoNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.Normalize.rst.txt b/_sources/api/_as_gen/matplotlib.colors.Normalize.rst.txt deleted file mode 120000 index a12969e023c..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.Normalize.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.Normalize.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.PowerNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.PowerNorm.rst.txt deleted file mode 120000 index 2392fcfb6c5..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.PowerNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.PowerNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.SymLogNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.SymLogNorm.rst.txt deleted file mode 120000 index 279b3b747b4..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.SymLogNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.SymLogNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.TwoSlopeNorm.rst.txt b/_sources/api/_as_gen/matplotlib.colors.TwoSlopeNorm.rst.txt deleted file mode 120000 index 6cac165b06b..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.TwoSlopeNorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.TwoSlopeNorm.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.from_levels_and_colors.rst.txt b/_sources/api/_as_gen/matplotlib.colors.from_levels_and_colors.rst.txt deleted file mode 120000 index 443d6e0f388..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.from_levels_and_colors.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.from_levels_and_colors.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.get_named_colors_mapping.rst.txt b/_sources/api/_as_gen/matplotlib.colors.get_named_colors_mapping.rst.txt deleted file mode 120000 index 077d119032e..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.get_named_colors_mapping.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.get_named_colors_mapping.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.hsv_to_rgb.rst.txt b/_sources/api/_as_gen/matplotlib.colors.hsv_to_rgb.rst.txt deleted file mode 120000 index 5947e73608c..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.hsv_to_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.hsv_to_rgb.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.is_color_like.rst.txt b/_sources/api/_as_gen/matplotlib.colors.is_color_like.rst.txt deleted file mode 120000 index 7987aeb5ee2..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.is_color_like.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.is_color_like.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.makeMappingArray.rst.txt b/_sources/api/_as_gen/matplotlib.colors.makeMappingArray.rst.txt deleted file mode 120000 index 8dd91adbdbd..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.makeMappingArray.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.colors.makeMappingArray.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.make_norm_from_scale.rst.txt b/_sources/api/_as_gen/matplotlib.colors.make_norm_from_scale.rst.txt deleted file mode 120000 index f3a561c1315..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.make_norm_from_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.make_norm_from_scale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.rgb_to_hsv.rst.txt b/_sources/api/_as_gen/matplotlib.colors.rgb_to_hsv.rst.txt deleted file mode 120000 index d046f906f33..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.rgb_to_hsv.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.rgb_to_hsv.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.same_color.rst.txt b/_sources/api/_as_gen/matplotlib.colors.same_color.rst.txt deleted file mode 120000 index db03f1e4326..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.same_color.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.same_color.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.to_hex.rst.txt b/_sources/api/_as_gen/matplotlib.colors.to_hex.rst.txt deleted file mode 120000 index 3aee7ddc168..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.to_hex.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.to_hex.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.to_rgb.rst.txt b/_sources/api/_as_gen/matplotlib.colors.to_rgb.rst.txt deleted file mode 120000 index ba96c017f47..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.to_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.to_rgb.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.to_rgba.rst.txt b/_sources/api/_as_gen/matplotlib.colors.to_rgba.rst.txt deleted file mode 120000 index bbc9102dd62..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.to_rgba.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.to_rgba.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.colors.to_rgba_array.rst.txt b/_sources/api/_as_gen/matplotlib.colors.to_rgba_array.rst.txt deleted file mode 120000 index 5f0f75c3b00..00000000000 --- a/_sources/api/_as_gen/matplotlib.colors.to_rgba_array.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.colors.to_rgba_array.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.figure.AxesStack.rst.txt b/_sources/api/_as_gen/matplotlib.figure.AxesStack.rst.txt deleted file mode 120000 index 56d4df0c4fd..00000000000 --- a/_sources/api/_as_gen/matplotlib.figure.AxesStack.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.figure.AxesStack.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.figure.Figure.rst.txt b/_sources/api/_as_gen/matplotlib.figure.Figure.rst.txt deleted file mode 120000 index 11015f0cb07..00000000000 --- a/_sources/api/_as_gen/matplotlib.figure.Figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.figure.Figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.figure.SubplotParams.rst.txt b/_sources/api/_as_gen/matplotlib.figure.SubplotParams.rst.txt deleted file mode 120000 index 1c3b06bed12..00000000000 --- a/_sources/api/_as_gen/matplotlib.figure.SubplotParams.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.figure.SubplotParams.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.figure.figaspect.rst.txt b/_sources/api/_as_gen/matplotlib.figure.figaspect.rst.txt deleted file mode 120000 index 6e41bef409e..00000000000 --- a/_sources/api/_as_gen/matplotlib.figure.figaspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/matplotlib.figure.figaspect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.gridspec.GridSpec.rst.txt b/_sources/api/_as_gen/matplotlib.gridspec.GridSpec.rst.txt deleted file mode 120000 index bca97326cf8..00000000000 --- a/_sources/api/_as_gen/matplotlib.gridspec.GridSpec.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.gridspec.GridSpec.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.gridspec.GridSpecBase.rst.txt b/_sources/api/_as_gen/matplotlib.gridspec.GridSpecBase.rst.txt deleted file mode 120000 index b50c0f7ae28..00000000000 --- a/_sources/api/_as_gen/matplotlib.gridspec.GridSpecBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.gridspec.GridSpecBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.gridspec.GridSpecFromSubplotSpec.rst.txt b/_sources/api/_as_gen/matplotlib.gridspec.GridSpecFromSubplotSpec.rst.txt deleted file mode 120000 index fac71c67be2..00000000000 --- a/_sources/api/_as_gen/matplotlib.gridspec.GridSpecFromSubplotSpec.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.gridspec.GridSpecFromSubplotSpec.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.gridspec.SubplotSpec.rst.txt b/_sources/api/_as_gen/matplotlib.gridspec.SubplotSpec.rst.txt deleted file mode 120000 index 218c26c8dcc..00000000000 --- a/_sources/api/_as_gen/matplotlib.gridspec.SubplotSpec.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.gridspec.SubplotSpec.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.lines.Line2D.rst.txt b/_sources/api/_as_gen/matplotlib.lines.Line2D.rst.txt deleted file mode 120000 index f49a7fdd25a..00000000000 --- a/_sources/api/_as_gen/matplotlib.lines.Line2D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.lines.Line2D.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.lines.VertexSelector.rst.txt b/_sources/api/_as_gen/matplotlib.lines.VertexSelector.rst.txt deleted file mode 120000 index 3313d9fb115..00000000000 --- a/_sources/api/_as_gen/matplotlib.lines.VertexSelector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.lines.VertexSelector.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.lines.segment_hits.rst.txt b/_sources/api/_as_gen/matplotlib.lines.segment_hits.rst.txt deleted file mode 120000 index 71dbc603c21..00000000000 --- a/_sources/api/_as_gen/matplotlib.lines.segment_hits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.lines.segment_hits.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.markers.MarkerStyle.rst.txt b/_sources/api/_as_gen/matplotlib.markers.MarkerStyle.rst.txt deleted file mode 120000 index cb9e4a2fcef..00000000000 --- a/_sources/api/_as_gen/matplotlib.markers.MarkerStyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.markers.MarkerStyle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Annulus.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Annulus.rst.txt deleted file mode 120000 index 932592b880a..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Annulus.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Annulus.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Arc.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Arc.rst.txt deleted file mode 120000 index 9f6e1573fbe..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Arc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Arc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Arrow.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Arrow.rst.txt deleted file mode 120000 index 9c5fe89eafb..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Arrow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Arrow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.ArrowStyle.rst.txt b/_sources/api/_as_gen/matplotlib.patches.ArrowStyle.rst.txt deleted file mode 120000 index 8ad3def9ab6..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.ArrowStyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.ArrowStyle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.BoxStyle.rst.txt b/_sources/api/_as_gen/matplotlib.patches.BoxStyle.rst.txt deleted file mode 120000 index 7fb428b7490..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.BoxStyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.BoxStyle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Circle.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Circle.rst.txt deleted file mode 120000 index a98a185653d..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Circle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Circle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.CirclePolygon.rst.txt b/_sources/api/_as_gen/matplotlib.patches.CirclePolygon.rst.txt deleted file mode 120000 index fc2f84c14ab..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.CirclePolygon.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.CirclePolygon.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.ConnectionPatch.rst.txt b/_sources/api/_as_gen/matplotlib.patches.ConnectionPatch.rst.txt deleted file mode 120000 index 32649773f06..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.ConnectionPatch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.ConnectionPatch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.ConnectionStyle.rst.txt b/_sources/api/_as_gen/matplotlib.patches.ConnectionStyle.rst.txt deleted file mode 120000 index 4fb960ef9b6..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.ConnectionStyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.ConnectionStyle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Ellipse.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Ellipse.rst.txt deleted file mode 120000 index baa1046aaa0..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Ellipse.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Ellipse.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.FancyArrow.rst.txt b/_sources/api/_as_gen/matplotlib.patches.FancyArrow.rst.txt deleted file mode 120000 index 01d9234edd0..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.FancyArrow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.FancyArrow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.FancyArrowPatch.rst.txt b/_sources/api/_as_gen/matplotlib.patches.FancyArrowPatch.rst.txt deleted file mode 120000 index 2495f138597..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.FancyArrowPatch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.FancyArrowPatch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.FancyBboxPatch.rst.txt b/_sources/api/_as_gen/matplotlib.patches.FancyBboxPatch.rst.txt deleted file mode 120000 index 7620a18112c..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.FancyBboxPatch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.FancyBboxPatch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Patch.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Patch.rst.txt deleted file mode 120000 index 093952e39e0..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Patch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Patch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.PathPatch.rst.txt b/_sources/api/_as_gen/matplotlib.patches.PathPatch.rst.txt deleted file mode 120000 index 52352f589cf..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.PathPatch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.PathPatch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Polygon.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Polygon.rst.txt deleted file mode 120000 index bdf590a7602..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Polygon.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Polygon.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Rectangle.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Rectangle.rst.txt deleted file mode 120000 index 74073c7ea02..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Rectangle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Rectangle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.RegularPolygon.rst.txt b/_sources/api/_as_gen/matplotlib.patches.RegularPolygon.rst.txt deleted file mode 120000 index aa3d9bbe906..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.RegularPolygon.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.RegularPolygon.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Shadow.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Shadow.rst.txt deleted file mode 120000 index bf79d4ddfd7..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Shadow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Shadow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.StepPatch.rst.txt b/_sources/api/_as_gen/matplotlib.patches.StepPatch.rst.txt deleted file mode 120000 index 4c211114960..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.StepPatch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.StepPatch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.Wedge.rst.txt b/_sources/api/_as_gen/matplotlib.patches.Wedge.rst.txt deleted file mode 120000 index 50beab002da..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.Wedge.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.Wedge.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.YAArrow.rst.txt b/_sources/api/_as_gen/matplotlib.patches.YAArrow.rst.txt deleted file mode 120000 index a7b8d489c0b..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.YAArrow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/api/_as_gen/matplotlib.patches.YAArrow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.bbox_artist.rst.txt b/_sources/api/_as_gen/matplotlib.patches.bbox_artist.rst.txt deleted file mode 120000 index 4688ae58c95..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.bbox_artist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.bbox_artist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.patches.draw_bbox.rst.txt b/_sources/api/_as_gen/matplotlib.patches.draw_bbox.rst.txt deleted file mode 120000 index 6cd9d3020bd..00000000000 --- a/_sources/api/_as_gen/matplotlib.patches.draw_bbox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.patches.draw_bbox.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.acorr.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.acorr.rst.txt deleted file mode 120000 index d54b726dd7f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.acorr.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.acorr.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.angle_spectrum.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.angle_spectrum.rst.txt deleted file mode 120000 index 54c47d26362..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.angle_spectrum.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.angle_spectrum.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.annotate.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.annotate.rst.txt deleted file mode 120000 index 8d79ace1651..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.annotate.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.annotate.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.arrow.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.arrow.rst.txt deleted file mode 120000 index 1345d75e364..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.arrow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.arrow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.autoscale.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.autoscale.rst.txt deleted file mode 120000 index 1d9717cfd4b..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.autoscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.autoscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.autumn.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.autumn.rst.txt deleted file mode 120000 index d80e164d187..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.autumn.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.autumn.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.axes.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.axes.rst.txt deleted file mode 120000 index d5b6baa61f0..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.axhline.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.axhline.rst.txt deleted file mode 120000 index ea3bdfdcb34..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.axhline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.axhline.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.axhspan.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.axhspan.rst.txt deleted file mode 120000 index 246dd9f9b6b..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.axhspan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.axhspan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.axis.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.axis.rst.txt deleted file mode 120000 index 0140764c78d..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.axis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.axline.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.axline.rst.txt deleted file mode 120000 index 039265d439f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.axline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.axline.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.axvline.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.axvline.rst.txt deleted file mode 120000 index 523103d7aeb..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.axvline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.axvline.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.axvspan.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.axvspan.rst.txt deleted file mode 120000 index aecd1ee55f0..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.axvspan.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.axvspan.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.bar.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.bar.rst.txt deleted file mode 120000 index c4538f6a58b..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.bar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.bar_label.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.bar_label.rst.txt deleted file mode 120000 index e57e9bc5561..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.bar_label.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.bar_label.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.barbs.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.barbs.rst.txt deleted file mode 120000 index 73735024600..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.barbs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.barbs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.barh.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.barh.rst.txt deleted file mode 120000 index 90a10f57333..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.barh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.barh.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.bone.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.bone.rst.txt deleted file mode 120000 index f0f3e7abe4a..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.bone.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.bone.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.box.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.box.rst.txt deleted file mode 120000 index 4f5f560911d..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.box.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.boxplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.boxplot.rst.txt deleted file mode 120000 index dc465ef9a71..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.boxplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.boxplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.broken_barh.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.broken_barh.rst.txt deleted file mode 120000 index b239e7c21c5..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.broken_barh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.broken_barh.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.cla.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.cla.rst.txt deleted file mode 120000 index a6d38fab92d..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.cla.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.cla.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.clabel.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.clabel.rst.txt deleted file mode 120000 index 173e2aa8ba9..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.clabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.clabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.clf.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.clf.rst.txt deleted file mode 120000 index 12b8a03cd2f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.clf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.clf.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.clim.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.clim.rst.txt deleted file mode 120000 index 6550dc162ca..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.clim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.clim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.close.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.close.rst.txt deleted file mode 120000 index 87cbedd03f9..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.close.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.close.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.cohere.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.cohere.rst.txt deleted file mode 120000 index 155c1787c82..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.cohere.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.cohere.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.colorbar.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.colorbar.rst.txt deleted file mode 120000 index cfde7b27ea5..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.colorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.colorbar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.colors.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.colors.rst.txt deleted file mode 120000 index 508443d51f4..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.colors.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.pyplot.colors.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.connect.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.connect.rst.txt deleted file mode 120000 index 4404bca3708..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.connect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.connect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.contour.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.contour.rst.txt deleted file mode 120000 index 10ce7b2243c..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.contour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.contour.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.contourf.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.contourf.rst.txt deleted file mode 120000 index 2f3f8f6d4d6..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.contourf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.contourf.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.cool.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.cool.rst.txt deleted file mode 120000 index 7228c3f5728..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.cool.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.cool.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.copper.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.copper.rst.txt deleted file mode 120000 index 75b26576b15..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.copper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.copper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.csd.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.csd.rst.txt deleted file mode 120000 index c4b30780683..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.csd.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.csd.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.delaxes.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.delaxes.rst.txt deleted file mode 120000 index f1e91f25b39..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.delaxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.delaxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.disconnect.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.disconnect.rst.txt deleted file mode 120000 index f8442c27995..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.disconnect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.disconnect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.draw.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.draw.rst.txt deleted file mode 120000 index 7fc43969fbe..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.draw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.draw.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.draw_if_interactive.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.draw_if_interactive.rst.txt deleted file mode 120000 index 257b028dc2e..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.draw_if_interactive.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.draw_if_interactive.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.errorbar.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.errorbar.rst.txt deleted file mode 120000 index 75a16e84c13..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.errorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.errorbar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.eventplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.eventplot.rst.txt deleted file mode 120000 index 8ab20cfdd04..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.eventplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.eventplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.figimage.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.figimage.rst.txt deleted file mode 120000 index 0ab2a01831d..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.figimage.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.figimage.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.figlegend.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.figlegend.rst.txt deleted file mode 120000 index d25addb0998..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.figlegend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.figlegend.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.fignum_exists.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.fignum_exists.rst.txt deleted file mode 120000 index f101915bbff..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.fignum_exists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.fignum_exists.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.figtext.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.figtext.rst.txt deleted file mode 120000 index a9a3191a725..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.figtext.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.figtext.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.figure.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.figure.rst.txt deleted file mode 120000 index 98cfc671a77..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.figure.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.figure.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.fill.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.fill.rst.txt deleted file mode 120000 index 9fe3524b067..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.fill.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.fill.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.fill_between.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.fill_between.rst.txt deleted file mode 120000 index 3532f92178c..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.fill_between.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.fill_between.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.fill_betweenx.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.fill_betweenx.rst.txt deleted file mode 120000 index dabe149f4b5..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.fill_betweenx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.fill_betweenx.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.findobj.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.findobj.rst.txt deleted file mode 120000 index 79ee24aeb7e..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.findobj.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.findobj.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.flag.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.flag.rst.txt deleted file mode 120000 index b98d40dad44..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.flag.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.flag.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.gca.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.gca.rst.txt deleted file mode 120000 index 6d90412d8c7..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.gca.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.gca.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.gcf.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.gcf.rst.txt deleted file mode 120000 index 10b63c940a2..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.gcf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.gcf.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.gci.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.gci.rst.txt deleted file mode 120000 index e304c666895..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.gci.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.gci.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.get.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.get.rst.txt deleted file mode 120000 index 478e2064d88..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.get.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.get.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.get_current_fig_manager.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.get_current_fig_manager.rst.txt deleted file mode 120000 index 667632a6ee1..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.get_current_fig_manager.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.get_current_fig_manager.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.get_figlabels.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.get_figlabels.rst.txt deleted file mode 120000 index 313a299d9c7..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.get_figlabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.get_figlabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.get_fignums.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.get_fignums.rst.txt deleted file mode 120000 index d86e310c45e..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.get_fignums.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.get_fignums.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.get_plot_commands.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.get_plot_commands.rst.txt deleted file mode 120000 index edea8c94431..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.get_plot_commands.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.get_plot_commands.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.getp.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.getp.rst.txt deleted file mode 120000 index 474820a86ab..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.getp.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.getp.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.ginput.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.ginput.rst.txt deleted file mode 120000 index 9c067a05157..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.ginput.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.ginput.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.gray.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.gray.rst.txt deleted file mode 120000 index 71faca66a6a..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.gray.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.gray.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.grid.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.grid.rst.txt deleted file mode 120000 index 71f5e99ff71..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.hexbin.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.hexbin.rst.txt deleted file mode 120000 index 14b7518fc08..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.hexbin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.hexbin.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.hist.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.hist.rst.txt deleted file mode 120000 index fbb14718e47..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.hist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.hist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.hist2d.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.hist2d.rst.txt deleted file mode 120000 index 59e3c8130b8..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.hist2d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.hist2d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.hlines.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.hlines.rst.txt deleted file mode 120000 index 095a0e307a7..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.hlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.hlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.hold.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.hold.rst.txt deleted file mode 120000 index d1433f5eecb..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.hold.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.pyplot.hold.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.hot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.hot.rst.txt deleted file mode 120000 index 46c5a789d45..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.hot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.hot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.hsv.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.hsv.rst.txt deleted file mode 120000 index ce729ba569f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.hsv.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.hsv.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.imread.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.imread.rst.txt deleted file mode 120000 index 4e29f63633f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.imread.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.imread.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.imsave.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.imsave.rst.txt deleted file mode 120000 index eca96b2340e..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.imsave.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.imsave.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.imshow.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.imshow.rst.txt deleted file mode 120000 index 6a1dc053fc9..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.imshow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.imshow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.inferno.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.inferno.rst.txt deleted file mode 120000 index 3790de43f8e..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.inferno.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.inferno.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.install_repl_displayhook.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.install_repl_displayhook.rst.txt deleted file mode 120000 index 43523a00cfd..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.install_repl_displayhook.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.install_repl_displayhook.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.ioff.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.ioff.rst.txt deleted file mode 120000 index fdc672b042f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.ioff.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.ioff.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.ion.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.ion.rst.txt deleted file mode 120000 index 7971fa4de21..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.ion.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.ion.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.ishold.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.ishold.rst.txt deleted file mode 120000 index 5c6f81b1b7d..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.ishold.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.pyplot.ishold.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.isinteractive.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.isinteractive.rst.txt deleted file mode 120000 index af3a63e2bb1..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.isinteractive.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.isinteractive.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.jet.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.jet.rst.txt deleted file mode 120000 index 50362478841..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.jet.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.jet.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.legend.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.legend.rst.txt deleted file mode 120000 index 2e3f487e9cb..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.legend.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.locator_params.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.locator_params.rst.txt deleted file mode 120000 index 08f0d027f42..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.locator_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.locator_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.loglog.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.loglog.rst.txt deleted file mode 120000 index ab7a2719c9f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.loglog.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.loglog.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.magma.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.magma.rst.txt deleted file mode 120000 index 3b8fa07f466..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.magma.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.magma.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.magnitude_spectrum.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.magnitude_spectrum.rst.txt deleted file mode 120000 index 2cc87354a4d..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.magnitude_spectrum.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.magnitude_spectrum.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.margins.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.margins.rst.txt deleted file mode 120000 index 10cec6120e4..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.margins.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.margins.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.matshow.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.matshow.rst.txt deleted file mode 120000 index 63d7963c502..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.matshow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.matshow.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.minorticks_off.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.minorticks_off.rst.txt deleted file mode 120000 index 3a33f9bb379..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.minorticks_off.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.minorticks_off.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.minorticks_on.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.minorticks_on.rst.txt deleted file mode 120000 index 87a0bdb2fde..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.minorticks_on.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.minorticks_on.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.new_figure_manager.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.new_figure_manager.rst.txt deleted file mode 120000 index a87254fa7d7..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.new_figure_manager.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.new_figure_manager.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.nipy_spectral.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.nipy_spectral.rst.txt deleted file mode 120000 index 0fbdbebda41..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.nipy_spectral.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.nipy_spectral.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.over.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.over.rst.txt deleted file mode 120000 index ae5c85f332f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.over.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.pyplot.over.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.pause.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.pause.rst.txt deleted file mode 120000 index f109a36ae30..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.pause.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.pause.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.pcolor.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.pcolor.rst.txt deleted file mode 120000 index bcf2fcb727f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.pcolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.pcolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.pcolormesh.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.pcolormesh.rst.txt deleted file mode 120000 index fd04c2a6403..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.pcolormesh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.pcolormesh.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.phase_spectrum.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.phase_spectrum.rst.txt deleted file mode 120000 index a995514fa4e..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.phase_spectrum.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.phase_spectrum.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.pie.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.pie.rst.txt deleted file mode 120000 index b08b349ba07..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.pie.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.pie.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.pink.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.pink.rst.txt deleted file mode 120000 index 8af367a81aa..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.pink.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.pink.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.plasma.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.plasma.rst.txt deleted file mode 120000 index aa6d949ec03..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.plasma.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.plasma.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.plot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.plot.rst.txt deleted file mode 120000 index bcdf63cba67..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.plot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.plot_date.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.plot_date.rst.txt deleted file mode 120000 index 1392b47757c..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.plot_date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.plot_date.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.plotfile.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.plotfile.rst.txt deleted file mode 120000 index 234fa5181a9..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.plotfile.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/matplotlib.pyplot.plotfile.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.polar.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.polar.rst.txt deleted file mode 120000 index c7a3cece163..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.polar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.polar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.prism.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.prism.rst.txt deleted file mode 120000 index bc756c23813..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.prism.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.prism.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.psd.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.psd.rst.txt deleted file mode 120000 index f3ba77a9934..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.psd.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.psd.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.quiver.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.quiver.rst.txt deleted file mode 120000 index f9ca783eba4..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.quiver.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.quiver.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.quiverkey.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.quiverkey.rst.txt deleted file mode 120000 index c55a9904d93..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.quiverkey.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.quiverkey.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.rc.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.rc.rst.txt deleted file mode 120000 index 1728fd48760..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.rc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.rc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.rc_context.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.rc_context.rst.txt deleted file mode 120000 index 61942c53f44..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.rc_context.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.rc_context.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.rcdefaults.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.rcdefaults.rst.txt deleted file mode 120000 index 5e9fcb76ae2..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.rcdefaults.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.rcdefaults.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.rgrids.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.rgrids.rst.txt deleted file mode 120000 index 2b74d0b8df6..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.rgrids.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.rgrids.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.rst.txt deleted file mode 120000 index 50aa71fb840..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.savefig.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.savefig.rst.txt deleted file mode 120000 index 674ba507438..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.savefig.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.savefig.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.sca.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.sca.rst.txt deleted file mode 120000 index 50eeb216500..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.sca.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.sca.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.scatter.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.scatter.rst.txt deleted file mode 120000 index 6b9800a8146..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.scatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.scatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.sci.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.sci.rst.txt deleted file mode 120000 index 0a11c026a3f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.sci.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.sci.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.semilogx.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.semilogx.rst.txt deleted file mode 120000 index d11aee7aac5..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.semilogx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.semilogx.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.semilogy.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.semilogy.rst.txt deleted file mode 120000 index 1209aecd0dc..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.semilogy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.semilogy.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.set_cmap.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.set_cmap.rst.txt deleted file mode 120000 index cce685ffa68..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.set_cmap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.set_cmap.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.set_loglevel.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.set_loglevel.rst.txt deleted file mode 120000 index 832c484fbc4..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.set_loglevel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.set_loglevel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.setp.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.setp.rst.txt deleted file mode 120000 index 57c121cc5f1..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.setp.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.setp.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.show.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.show.rst.txt deleted file mode 120000 index 5d4662bd411..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.show.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.show.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.specgram.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.specgram.rst.txt deleted file mode 120000 index 46a983f97d1..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.specgram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.specgram.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.spectral.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.spectral.rst.txt deleted file mode 120000 index 4a07d19ed51..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.spectral.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/api/_as_gen/matplotlib.pyplot.spectral.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.spring.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.spring.rst.txt deleted file mode 120000 index db71b15c528..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.spring.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.spring.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.spy.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.spy.rst.txt deleted file mode 120000 index 43c5e3f0ca8..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.spy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.spy.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.stackplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.stackplot.rst.txt deleted file mode 120000 index a45f627a486..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.stackplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.stackplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.stairs.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.stairs.rst.txt deleted file mode 120000 index ef2c2d6dcef..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.stairs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.stairs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.stem.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.stem.rst.txt deleted file mode 120000 index b470053af9f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.stem.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.stem.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.step.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.step.rst.txt deleted file mode 120000 index 240ab7e6a1a..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.step.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.step.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.streamplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.streamplot.rst.txt deleted file mode 120000 index 2532194e117..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.streamplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.streamplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.subplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.subplot.rst.txt deleted file mode 120000 index b6fe70b56de..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.subplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.subplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.subplot2grid.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.subplot2grid.rst.txt deleted file mode 120000 index fddac547722..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.subplot2grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.subplot2grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.subplot_mosaic.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.subplot_mosaic.rst.txt deleted file mode 120000 index a15dfe167c7..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.subplot_mosaic.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.subplot_mosaic.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.subplot_tool.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.subplot_tool.rst.txt deleted file mode 120000 index 3c0cb33f308..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.subplot_tool.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.subplot_tool.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.subplots.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.subplots.rst.txt deleted file mode 120000 index df720d22649..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.subplots.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.subplots_adjust.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.subplots_adjust.rst.txt deleted file mode 120000 index 05764bfbaef..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.subplots_adjust.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.subplots_adjust.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.summer.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.summer.rst.txt deleted file mode 120000 index 1aa0be4bd8b..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.summer.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.summer.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.suptitle.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.suptitle.rst.txt deleted file mode 120000 index f0785d8811e..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.suptitle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.suptitle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.switch_backend.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.switch_backend.rst.txt deleted file mode 120000 index 74e6415cd9a..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.switch_backend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.switch_backend.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.table.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.table.rst.txt deleted file mode 120000 index b5ea63d8226..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.table.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.table.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.text.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.text.rst.txt deleted file mode 120000 index 96f45fa7d48..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.text.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.thetagrids.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.thetagrids.rst.txt deleted file mode 120000 index bd6439fd7d7..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.thetagrids.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.thetagrids.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.tick_params.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.tick_params.rst.txt deleted file mode 120000 index 85d7670f6ed..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.tick_params.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.tick_params.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.ticklabel_format.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.ticklabel_format.rst.txt deleted file mode 120000 index c0ede352755..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.ticklabel_format.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.ticklabel_format.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.tight_layout.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.tight_layout.rst.txt deleted file mode 120000 index f1c2a93302d..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.tight_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.tight_layout.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.title.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.title.rst.txt deleted file mode 120000 index c1277aa31ce..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.title.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.title.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.tricontour.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.tricontour.rst.txt deleted file mode 120000 index 90ba61f5ec0..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.tricontour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.tricontour.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.tricontourf.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.tricontourf.rst.txt deleted file mode 120000 index c3f246c49fc..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.tricontourf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.tricontourf.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.tripcolor.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.tripcolor.rst.txt deleted file mode 120000 index 5a235695cba..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.tripcolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.tripcolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.triplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.triplot.rst.txt deleted file mode 120000 index a7e64c89bbe..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.triplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.triplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.twinx.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.twinx.rst.txt deleted file mode 120000 index e72035768ca..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.twinx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.twinx.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.twiny.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.twiny.rst.txt deleted file mode 120000 index a69f23b4bbc..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.twiny.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.twiny.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.uninstall_repl_displayhook.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.uninstall_repl_displayhook.rst.txt deleted file mode 120000 index 03e914a8a13..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.uninstall_repl_displayhook.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.uninstall_repl_displayhook.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.violinplot.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.violinplot.rst.txt deleted file mode 120000 index 657efcec274..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.violinplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.violinplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.viridis.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.viridis.rst.txt deleted file mode 120000 index d026683982f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.viridis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.viridis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.vlines.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.vlines.rst.txt deleted file mode 120000 index c09f304156f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.vlines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.vlines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.waitforbuttonpress.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.waitforbuttonpress.rst.txt deleted file mode 120000 index 98f869ecb31..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.waitforbuttonpress.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.waitforbuttonpress.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.winter.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.winter.rst.txt deleted file mode 120000 index 2e71b3c0b81..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.winter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/matplotlib.pyplot.winter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.xcorr.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.xcorr.rst.txt deleted file mode 120000 index 9531c02cb62..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.xcorr.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.xcorr.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.xkcd.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.xkcd.rst.txt deleted file mode 120000 index eb5cca56aae..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.xkcd.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.xkcd.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.xlabel.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.xlabel.rst.txt deleted file mode 120000 index c53f1d79965..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.xlabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.xlabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.xlim.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.xlim.rst.txt deleted file mode 120000 index 974c5845bb7..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.xlim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.xlim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.xscale.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.xscale.rst.txt deleted file mode 120000 index a6053334101..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.xscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.xscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.xticks.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.xticks.rst.txt deleted file mode 120000 index d3f8f38366f..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.xticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.xticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.ylabel.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.ylabel.rst.txt deleted file mode 120000 index 113f076ff55..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.ylabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.ylabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.ylim.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.ylim.rst.txt deleted file mode 120000 index e8a0a8959b2..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.ylim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.ylim.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.yscale.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.yscale.rst.txt deleted file mode 120000 index 4107332d6e4..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.yscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.yscale.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.pyplot.yticks.rst.txt b/_sources/api/_as_gen/matplotlib.pyplot.yticks.rst.txt deleted file mode 120000 index c8002356bc9..00000000000 --- a/_sources/api/_as_gen/matplotlib.pyplot.yticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.pyplot.yticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.quiver.Barbs.rst.txt b/_sources/api/_as_gen/matplotlib.quiver.Barbs.rst.txt deleted file mode 120000 index cb1b7ba181c..00000000000 --- a/_sources/api/_as_gen/matplotlib.quiver.Barbs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.quiver.Barbs.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.quiver.Quiver.rst.txt b/_sources/api/_as_gen/matplotlib.quiver.Quiver.rst.txt deleted file mode 120000 index 12012b5f4b3..00000000000 --- a/_sources/api/_as_gen/matplotlib.quiver.Quiver.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.quiver.Quiver.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/matplotlib.quiver.QuiverKey.rst.txt b/_sources/api/_as_gen/matplotlib.quiver.QuiverKey.rst.txt deleted file mode 120000 index 61d8be0bc5e..00000000000 --- a/_sources/api/_as_gen/matplotlib.quiver.QuiverKey.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/matplotlib.quiver.QuiverKey.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox.rst.txt deleted file mode 120000 index 89f079a645a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows.rst.txt deleted file mode 120000 index 78afb1a0fd6..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDrawingArea.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDrawingArea.rst.txt deleted file mode 120000 index 968af3948a5..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDrawingArea.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDrawingArea.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse.rst.txt deleted file mode 120000 index fff388c0223..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar.rst.txt deleted file mode 120000 index 23ab6080f6b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.rst.txt deleted file mode 120000 index 9918fd8a501..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Axes.rst.txt deleted file mode 120000 index 31ee8a80e4c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesDivider.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesDivider.rst.txt deleted file mode 120000 index 19412186857..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesDivider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesDivider.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesLocator.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesLocator.rst.txt deleted file mode 120000 index c564583a64c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesLocator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesLocator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Divider.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Divider.rst.txt deleted file mode 120000 index be36e7c9a70..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Divider.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.HBoxDivider.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.HBoxDivider.rst.txt deleted file mode 120000 index d8a77be2e91..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.HBoxDivider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.HBoxDivider.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxes.rst.txt deleted file mode 120000 index 3e8928db1af..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxesBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxesBase.rst.txt deleted file mode 120000 index d9e1a56978a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxesBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxesBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.SubplotDivider.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.SubplotDivider.rst.txt deleted file mode 120000 index 6867532eceb..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.SubplotDivider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.SubplotDivider.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.VBoxDivider.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.VBoxDivider.rst.txt deleted file mode 120000 index 7b35ef5aae1..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.VBoxDivider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.VBoxDivider.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.locatable_axes_factory.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.locatable_axes_factory.rst.txt deleted file mode 120000 index 189ee08c66e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.locatable_axes_factory.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.locatable_axes_factory.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_area_auto_adjustable.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_area_auto_adjustable.rst.txt deleted file mode 120000 index 1082f2eca7a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_area_auto_adjustable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_area_auto_adjustable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_locatable.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_locatable.rst.txt deleted file mode 120000 index 72a3471b440..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_locatable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_locatable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.rst.txt deleted file mode 120000 index 9bdc565f212..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.AxesGrid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.AxesGrid.rst.txt deleted file mode 120000 index 68d2f785526..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.AxesGrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.AxesGrid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxes.rst.txt deleted file mode 120000 index 792c1746b6c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxesBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxesBase.rst.txt deleted file mode 120000 index 9a6f6e2cde5..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxesBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxesBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.Grid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.Grid.rst.txt deleted file mode 120000 index 18a78e25ad5..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.Grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.Grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.ImageGrid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.ImageGrid.rst.txt deleted file mode 120000 index 8409791a6eb..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.ImageGrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.ImageGrid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.rst.txt deleted file mode 120000 index b3c8c3a975b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.rst.txt deleted file mode 120000 index a72ddd9a623..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxesBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxesBase.rst.txt deleted file mode 120000 index 88df5e3e505..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxesBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxesBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.imshow_rgb.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.imshow_rgb.rst.txt deleted file mode 120000 index 95862df340e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.imshow_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.imshow_rgb.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes.rst.txt deleted file mode 120000 index 0c8db6de1c9..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.rst.txt deleted file mode 120000 index 9aee0182955..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Add.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Add.rst.txt deleted file mode 120000 index 4f4fc5f49dd..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Add.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Add.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AddList.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AddList.rst.txt deleted file mode 120000 index 360519c6e0b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AddList.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AddList.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesX.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesX.rst.txt deleted file mode 120000 index 3d986bcbcb5..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesX.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesX.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesY.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesY.rst.txt deleted file mode 120000 index 6382bbb6c02..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesY.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesY.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fixed.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fixed.rst.txt deleted file mode 120000 index a9545ebec62..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fixed.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fixed.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fraction.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fraction.rst.txt deleted file mode 120000 index 8ae9d3f9ca9..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fraction.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fraction.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.rst.txt deleted file mode 120000 index abe8a361822..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxExtent.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxExtent.rst.txt deleted file mode 120000 index 46fe5574d07..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxExtent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxExtent.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxHeight.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxHeight.rst.txt deleted file mode 120000 index a6e2e21fa2c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxHeight.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxHeight.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxWidth.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxWidth.rst.txt deleted file mode 120000 index e115764c8e4..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxWidth.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxWidth.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Padded.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Padded.rst.txt deleted file mode 120000 index 0673e21e634..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Padded.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Padded.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scalable.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scalable.rst.txt deleted file mode 120000 index 28a93509531..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scalable.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scalable.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scaled.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scaled.rst.txt deleted file mode 120000 index 30702b9066b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scaled.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scaled.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.rst.txt deleted file mode 120000 index 3809013f8cf..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.from_any.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.from_any.rst.txt deleted file mode 120000 index 6475a6af912..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.from_any.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.from_any.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.rst.txt deleted file mode 120000 index 677fed2f19a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.colorbar.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.colorbar.rst.txt deleted file mode 120000 index 8330ca4c9c6..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.colorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/mpl_toolkits.axes_grid1.colorbar.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.rst.txt deleted file mode 120000 index 32e7a6ea81d..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.rst.txt deleted file mode 120000 index a1e2b8dbb48..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.rst.txt deleted file mode 120000 index 2a49b477844..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnector.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnector.rst.txt deleted file mode 120000 index 6c5137b31dd..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnector.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.rst.txt deleted file mode 120000 index 6ab27c2f78c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxPatch.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxPatch.rst.txt deleted file mode 120000 index 95553b457b7..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxPatch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxPatch.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.InsetPosition.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.InsetPosition.rst.txt deleted file mode 120000 index 76855cfb7fd..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.InsetPosition.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.InsetPosition.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.rst.txt deleted file mode 120000 index 58511d82f78..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.mark_inset.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.mark_inset.rst.txt deleted file mode 120000 index 1c27d217c80..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.mark_inset.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.mark_inset.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.rst.txt deleted file mode 120000 index b587d6589bd..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes.rst.txt deleted file mode 120000 index d5f8caf84d2..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.Axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.Axes.rst.txt deleted file mode 120000 index 503510ed011..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.Axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.Axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.rst.txt deleted file mode 120000 index a4faa473e99..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.rst.txt deleted file mode 120000 index 01f831d536e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.rst.txt deleted file mode 120000 index 2c925f987bf..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxes.rst.txt deleted file mode 120000 index a894adc4c81..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.rst.txt deleted file mode 120000 index b6b9909ade2..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes.rst.txt deleted file mode 120000 index 296099e96a5..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans.rst.txt deleted file mode 120000 index d8fd116494a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.rst.txt deleted file mode 120000 index 85a9b354cbf..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.rst.txt deleted file mode 120000 index ada8d6d7999..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes.rst.txt deleted file mode 120000 index 9f21dc71276..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory.rst.txt deleted file mode 120000 index 1e19cfaf02a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot.rst.txt deleted file mode 120000 index d0780394a89..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory.rst.txt deleted file mode 120000 index 5745abf9d7a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory.rst.txt deleted file mode 120000 index 8acbf9289ce..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory.rst.txt deleted file mode 120000 index a722ae6258f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.rst.txt deleted file mode 120000 index 863d346fe88..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axes_grid1.rst.txt deleted file mode 120000 index 3db39cba730..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axes_grid1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/api/_as_gen/mpl_toolkits.axes_grid1.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.ExtremeFinderCycle.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.ExtremeFinderCycle.rst.txt deleted file mode 120000 index 30e2b7dc857..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.ExtremeFinderCycle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.ExtremeFinderCycle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterDMS.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterDMS.rst.txt deleted file mode 120000 index 9eb0c673ec4..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterDMS.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterDMS.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterHMS.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterHMS.rst.txt deleted file mode 120000 index 19b00bebd9f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterHMS.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterHMS.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorBase.rst.txt deleted file mode 120000 index af7d6fee37d..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorD.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorD.rst.txt deleted file mode 120000 index a21de9cc0c2..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorD.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorD.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDM.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDM.rst.txt deleted file mode 120000 index 1df8adb0710..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDM.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDM.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDMS.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDMS.rst.txt deleted file mode 120000 index eb9b9e85639..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDMS.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDMS.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorH.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorH.rst.txt deleted file mode 120000 index 649c24d0996..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorH.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorH.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHM.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHM.rst.txt deleted file mode 120000 index ae2dfe3b5bb..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHM.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHM.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHMS.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHMS.rst.txt deleted file mode 120000 index b4e54a4d2b3..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHMS.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHMS.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.rst.txt deleted file mode 120000 index a22ed94e089..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step.rst.txt deleted file mode 120000 index f4903d90866..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step24.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step24.rst.txt deleted file mode 120000 index a33993602d2..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step24.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step24.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step360.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step360.rst.txt deleted file mode 120000 index 05dd207514a..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step360.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step360.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_degree.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_degree.rst.txt deleted file mode 120000 index a229d19aa06..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_degree.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_degree.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_hour.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_hour.rst.txt deleted file mode 120000 index aa2f4ef9977..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_hour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_hour.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_sub.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_sub.rst.txt deleted file mode 120000 index c88cbaf3729..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_sub.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_sub.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.Axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.Axes.rst.txt deleted file mode 120000 index c2c29d78b12..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.Axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.Axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.LocatableAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.LocatableAxes.rst.txt deleted file mode 120000 index 5ca42a47548..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.LocatableAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.LocatableAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.rst.txt deleted file mode 120000 index e9184cf1f1e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_divider.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.AxesGrid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.AxesGrid.rst.txt deleted file mode 120000 index fa45d5803e7..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.AxesGrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.AxesGrid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.CbarAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.CbarAxes.rst.txt deleted file mode 120000 index 6d731b13444..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.CbarAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.CbarAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.Grid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.Grid.rst.txt deleted file mode 120000 index 5630e6f855d..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.Grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.Grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.ImageGrid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.ImageGrid.rst.txt deleted file mode 120000 index d341b2a0a4f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.ImageGrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.ImageGrid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.rst.txt deleted file mode 120000 index 28ed91a70cb..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.RGBAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.RGBAxes.rst.txt deleted file mode 120000 index 4bc76bc308b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.RGBAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.RGBAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.rst.txt deleted file mode 120000 index 3f9efe46741..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AttributeCopier.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AttributeCopier.rst.txt deleted file mode 120000 index 29e6493b027..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AttributeCopier.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AttributeCopier.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisArtist.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisArtist.rst.txt deleted file mode 120000 index b3aa149189b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisArtist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisArtist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.rst.txt deleted file mode 120000 index f0864270b91..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.BezierPath.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.BezierPath.rst.txt deleted file mode 120000 index 0dfb58e5e03..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.BezierPath.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.BezierPath.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.GridlinesCollection.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.GridlinesCollection.rst.txt deleted file mode 120000 index f397407a957..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.GridlinesCollection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.GridlinesCollection.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.LabelBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.LabelBase.rst.txt deleted file mode 120000 index 86376506b9b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.LabelBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.LabelBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.TickLabels.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.TickLabels.rst.txt deleted file mode 120000 index 4aa628d9ce4..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.TickLabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.TickLabels.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.Ticks.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.Ticks.rst.txt deleted file mode 120000 index cf3f6bb3c76..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.Ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.Ticks.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.rst.txt deleted file mode 120000 index 781007fe0eb..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axis_artist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.AxislineStyle.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.AxislineStyle.rst.txt deleted file mode 120000 index cfad19b9993..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.AxislineStyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.AxislineStyle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.rst.txt deleted file mode 120000 index 4ccbc5b2a66..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axisline_style.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.Axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.Axes.rst.txt deleted file mode 120000 index 5e2c19219fa..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.Axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.Axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxesZero.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxesZero.rst.txt deleted file mode 120000 index 3d0fc787143..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxesZero.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxesZero.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelper.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelper.rst.txt deleted file mode 120000 index ee8b57ca37e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelperRectlinear.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelperRectlinear.rst.txt deleted file mode 120000 index b0d9fe6c912..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelperRectlinear.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelperRectlinear.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperBase.rst.txt deleted file mode 120000 index 6175133b25e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperRectlinear.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperRectlinear.rst.txt deleted file mode 120000 index 449680c712f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperRectlinear.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperRectlinear.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.SimpleChainedObjects.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.SimpleChainedObjects.rst.txt deleted file mode 120000 index 25f2804a73c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.SimpleChainedObjects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.SimpleChainedObjects.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.rst.txt deleted file mode 120000 index c4891c068f0..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.axislines.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.atan2.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.atan2.rst.txt deleted file mode 120000 index b91bdd1b0d5..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.atan2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.atan2.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip.rst.txt deleted file mode 120000 index 76e59621c30..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip_line_to_rect.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip_line_to_rect.rst.txt deleted file mode 120000 index 2988e835474..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip_line_to_rect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip_line_to_rect.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.rst.txt deleted file mode 120000 index 359428cdc36..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.clip_path.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.ExtremeFinderFixed.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.ExtremeFinderFixed.rst.txt deleted file mode 120000 index 456f4560c84..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.ExtremeFinderFixed.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.ExtremeFinderFixed.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FixedAxisArtistHelper.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FixedAxisArtistHelper.rst.txt deleted file mode 120000 index 3f09e113e4d..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FixedAxisArtistHelper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FixedAxisArtistHelper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxes.rst.txt deleted file mode 120000 index 832e6bcc3d8..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxesBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxesBase.rst.txt deleted file mode 120000 index 16c00183832..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxesBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxesBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxisArtistHelper.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxisArtistHelper.rst.txt deleted file mode 120000 index f73d2c0059b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxisArtistHelper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxisArtistHelper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.GridHelperCurveLinear.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.GridHelperCurveLinear.rst.txt deleted file mode 120000 index d4dbb22280b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.GridHelperCurveLinear.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.GridHelperCurveLinear.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.floatingaxes_class_factory.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.floatingaxes_class_factory.rst.txt deleted file mode 120000 index c8483956ebd..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.floatingaxes_class_factory.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.floatingaxes_class_factory.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.rst.txt deleted file mode 120000 index 518bc318b56..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.floating_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.DictFormatter.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.DictFormatter.rst.txt deleted file mode 120000 index a20eec5ca59..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.DictFormatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.DictFormatter.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.ExtremeFinderSimple.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.ExtremeFinderSimple.rst.txt deleted file mode 120000 index 14953e3dfc1..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.ExtremeFinderSimple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.ExtremeFinderSimple.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FixedLocator.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FixedLocator.rst.txt deleted file mode 120000 index 569c1a03af0..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FixedLocator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FixedLocator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FormatterPrettyPrint.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FormatterPrettyPrint.rst.txt deleted file mode 120000 index 5eafcc8361f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FormatterPrettyPrint.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FormatterPrettyPrint.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinder.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinder.rst.txt deleted file mode 120000 index 12a6a254902..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinderBase.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinderBase.rst.txt deleted file mode 120000 index 7ab336252f3..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinderBase.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinderBase.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.MaxNLocator.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.MaxNLocator.rst.txt deleted file mode 120000 index 0e05f77edba..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.MaxNLocator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.MaxNLocator.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.rst.txt deleted file mode 120000 index 1e9d06b96e0..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_finder.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper.rst.txt deleted file mode 120000 index 640f0c83418..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper.rst.txt deleted file mode 120000 index 3645a74d533..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.GridHelperCurveLinear.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.GridHelperCurveLinear.rst.txt deleted file mode 120000 index 64e30f17065..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.GridHelperCurveLinear.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.GridHelperCurveLinear.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.rst.txt deleted file mode 120000 index 53802bfa875..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.parasite_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.parasite_axes.rst.txt deleted file mode 120000 index 4f2615f1400..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.parasite_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.axisartist.parasite_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.axisartist.rst.txt b/_sources/api/_as_gen/mpl_toolkits.axisartist.rst.txt deleted file mode 120000 index 3b9d7652b9c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.axisartist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/api/_as_gen/mpl_toolkits.axisartist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3D.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3D.rst.txt deleted file mode 120000 index 1f77de0fbb9..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3D.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.rst.txt deleted file mode 120000 index b1b5351393f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3D.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3D.rst.txt deleted file mode 120000 index d4876e03e88..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3D.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3DCollection.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3DCollection.rst.txt deleted file mode 120000 index 11c0608a489..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3DCollection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3DCollection.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Path3DCollection.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Path3DCollection.rst.txt deleted file mode 120000 index 3d4bf79e8d9..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Path3DCollection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Path3DCollection.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.PathPatch3D.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.PathPatch3D.rst.txt deleted file mode 120000 index 3f2d9114b49..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.PathPatch3D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.PathPatch3D.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Poly3DCollection.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Poly3DCollection.rst.txt deleted file mode 120000 index 415212b1f46..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Poly3DCollection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Poly3DCollection.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.rst.txt deleted file mode 120000 index ba7b8f58c7f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_colors.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_colors.rst.txt deleted file mode 120000 index ef0a152fdff..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_colors.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_colors.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_dir_vector.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_dir_vector.rst.txt deleted file mode 120000 index 5990748072f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_dir_vector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_dir_vector.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_patch_verts.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_patch_verts.rst.txt deleted file mode 120000 index beae73a57f6..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_patch_verts.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_patch_verts.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.iscolor.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.iscolor.rst.txt deleted file mode 120000 index 710f5b8d6df..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.iscolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.iscolor.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.juggle_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.juggle_axes.rst.txt deleted file mode 120000 index b4977863dbc..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.juggle_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.juggle_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_2d_to_3d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_2d_to_3d.rst.txt deleted file mode 120000 index fba5e2da2e1..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_2d_to_3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_2d_to_3d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_collection_2d_to_3d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_collection_2d_to_3d.rst.txt deleted file mode 120000 index 20e7102bdbf..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_collection_2d_to_3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_collection_2d_to_3d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_angle.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_angle.rst.txt deleted file mode 120000 index 58c76feda3c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_angle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_angle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_text_angle.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_text_angle.rst.txt deleted file mode 120000 index 1680c753e79..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_text_angle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_text_angle.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_2d_to_3d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_2d_to_3d.rst.txt deleted file mode 120000 index 7b89a5364d3..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_2d_to_3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_2d_to_3d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_collection_2d_to_3d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_collection_2d_to_3d.rst.txt deleted file mode 120000 index 405f83c5db7..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_collection_2d_to_3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_collection_2d_to_3d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment.rst.txt deleted file mode 120000 index 5170c141478..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment_with_codes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment_with_codes.rst.txt deleted file mode 120000 index d86e31b573b..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment_with_codes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment_with_codes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.pathpatch_2d_to_3d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.pathpatch_2d_to_3d.rst.txt deleted file mode 120000 index 867722b73bb..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.pathpatch_2d_to_3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.pathpatch_2d_to_3d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments.rst.txt deleted file mode 120000 index 27a2212d300..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments_with_codes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments_with_codes.rst.txt deleted file mode 120000 index cb12d1470a6..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments_with_codes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments_with_codes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.poly_collection_2d_to_3d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.poly_collection_2d_to_3d.rst.txt deleted file mode 120000 index 20b9345cdfb..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.poly_collection_2d_to_3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.poly_collection_2d_to_3d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.rotate_axes.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.rotate_axes.rst.txt deleted file mode 120000 index 107ea08a11f..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.rotate_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.rotate_axes.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.text_2d_to_3d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.text_2d_to_3d.rst.txt deleted file mode 120000 index e0fccdd9001..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.text_2d_to_3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.text_2d_to_3d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.zalpha.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.zalpha.rst.txt deleted file mode 120000 index be0b1a08ee2..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.zalpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.art3d.zalpha.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.rst.txt deleted file mode 120000 index f65cdefe1c0..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.axis3d.Axis.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.axis3d.Axis.rst.txt deleted file mode 120000 index 1c7dbac001e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.axis3d.Axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.axis3d.Axis.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.inv_transform.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.inv_transform.rst.txt deleted file mode 120000 index a2c4cc248a5..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.inv_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.inv_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d.rst.txt deleted file mode 120000 index 495387a34f0..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_dist.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_dist.rst.txt deleted file mode 120000 index 7924c15fe80..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_dist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_dist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_seg_dist.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_seg_dist.rst.txt deleted file mode 120000 index 66a9a2a8877..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_seg_dist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_seg_dist.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.mod.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.mod.rst.txt deleted file mode 120000 index 468cfabc43c..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.mod.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.mod.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.persp_transformation.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.persp_transformation.rst.txt deleted file mode 120000 index 6e8507eab17..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.persp_transformation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.persp_transformation.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_points.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_points.rst.txt deleted file mode 120000 index e75f3eb8d3e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_points.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_points.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_clip_points.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_clip_points.rst.txt deleted file mode 120000 index f1235307199..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_clip_points.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_clip_points.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_points.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_points.rst.txt deleted file mode 120000 index 1ba47bb8121..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_points.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_points.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform.rst.txt deleted file mode 120000 index c3ad3cadc2e..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_clip.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_clip.rst.txt deleted file mode 120000 index daf0930c5fa..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_clip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_clip.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec.rst.txt deleted file mode 120000 index fa0d79d7a85..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec_clip.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec_clip.rst.txt deleted file mode 120000 index 521bf0e1eff..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec_clip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec_clip.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.rot_x.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.rot_x.rst.txt deleted file mode 120000 index db74aa9ce61..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.rot_x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.rot_x.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.transform.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.transform.rst.txt deleted file mode 120000 index 9982b7346f9..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.transform.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.vec_pad_ones.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.vec_pad_ones.rst.txt deleted file mode 120000 index 0dfd25a6006..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.vec_pad_ones.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.vec_pad_ones.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.view_transformation.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.view_transformation.rst.txt deleted file mode 120000 index 08f6226d7b4..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.view_transformation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.view_transformation.rst.txt \ No newline at end of file diff --git a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.world_transformation.rst.txt b/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.world_transformation.rst.txt deleted file mode 120000 index 13702642bd0..00000000000 --- a/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.world_transformation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/_as_gen/mpl_toolkits.mplot3d.proj3d.world_transformation.rst.txt \ No newline at end of file diff --git a/_sources/api/_enums_api.rst.txt b/_sources/api/_enums_api.rst.txt deleted file mode 120000 index 8be5c460c25..00000000000 --- a/_sources/api/_enums_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/_enums_api.rst.txt \ No newline at end of file diff --git a/_sources/api/afm_api.rst.txt b/_sources/api/afm_api.rst.txt deleted file mode 120000 index dd02542ac4b..00000000000 --- a/_sources/api/afm_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/afm_api.rst.txt \ No newline at end of file diff --git a/_sources/api/afm_api.txt b/_sources/api/afm_api.txt deleted file mode 120000 index e6e2495a5df..00000000000 --- a/_sources/api/afm_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/afm_api.txt \ No newline at end of file diff --git a/_sources/api/animation_api.rst.txt b/_sources/api/animation_api.rst.txt deleted file mode 120000 index 022e230cf64..00000000000 --- a/_sources/api/animation_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/animation_api.rst.txt \ No newline at end of file diff --git a/_sources/api/animation_api.txt b/_sources/api/animation_api.txt deleted file mode 120000 index 3840ed0d58f..00000000000 --- a/_sources/api/animation_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/animation_api.txt \ No newline at end of file diff --git a/_sources/api/api_changes.rst.txt b/_sources/api/api_changes.rst.txt deleted file mode 120000 index 02784115906..00000000000 --- a/_sources/api/api_changes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/api/api_changes.rst.txt \ No newline at end of file diff --git a/_sources/api/api_changes.txt b/_sources/api/api_changes.txt deleted file mode 120000 index c78d63ab7a8..00000000000 --- a/_sources/api/api_changes.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/api_changes.txt \ No newline at end of file diff --git a/_sources/api/api_changes_3.4/README.rst.txt b/_sources/api/api_changes_3.4/README.rst.txt deleted file mode 120000 index 190a42fbbe8..00000000000 --- a/_sources/api/api_changes_3.4/README.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/api_changes_3.4/README.rst.txt \ No newline at end of file diff --git a/_sources/api/api_changes_3.4/behaviour.rst.txt b/_sources/api/api_changes_3.4/behaviour.rst.txt deleted file mode 120000 index fae5cbd8e19..00000000000 --- a/_sources/api/api_changes_3.4/behaviour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/api_changes_3.4/behaviour.rst.txt \ No newline at end of file diff --git a/_sources/api/api_changes_3.4/deprecations.rst.txt b/_sources/api/api_changes_3.4/deprecations.rst.txt deleted file mode 120000 index c931477b75c..00000000000 --- a/_sources/api/api_changes_3.4/deprecations.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/api_changes_3.4/deprecations.rst.txt \ No newline at end of file diff --git a/_sources/api/api_changes_3.4/development.rst.txt b/_sources/api/api_changes_3.4/development.rst.txt deleted file mode 120000 index b08a2c13d9d..00000000000 --- a/_sources/api/api_changes_3.4/development.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/api_changes_3.4/development.rst.txt \ No newline at end of file diff --git a/_sources/api/api_changes_3.4/removals.rst.txt b/_sources/api/api_changes_3.4/removals.rst.txt deleted file mode 120000 index 973a2837a2c..00000000000 --- a/_sources/api/api_changes_3.4/removals.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/api/api_changes_3.4/removals.rst.txt \ No newline at end of file diff --git a/_sources/api/api_changes_old.rst.txt b/_sources/api/api_changes_old.rst.txt deleted file mode 120000 index 98a1c058363..00000000000 --- a/_sources/api/api_changes_old.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/api/api_changes_old.rst.txt \ No newline at end of file diff --git a/_sources/api/api_overview.rst.txt b/_sources/api/api_overview.rst.txt deleted file mode 120000 index 76bf3f155b2..00000000000 --- a/_sources/api/api_overview.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.0.3/_sources/api/api_overview.rst.txt \ No newline at end of file diff --git a/_sources/api/artist_api.rst.txt b/_sources/api/artist_api.rst.txt deleted file mode 120000 index 6d2e72365a4..00000000000 --- a/_sources/api/artist_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/artist_api.rst.txt \ No newline at end of file diff --git a/_sources/api/artist_api.txt b/_sources/api/artist_api.txt deleted file mode 120000 index f0135634840..00000000000 --- a/_sources/api/artist_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/artist_api.txt \ No newline at end of file diff --git a/_sources/api/axes_api.rst.txt b/_sources/api/axes_api.rst.txt deleted file mode 120000 index 07ea49d4822..00000000000 --- a/_sources/api/axes_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/axes_api.rst.txt \ No newline at end of file diff --git a/_sources/api/axes_api.txt b/_sources/api/axes_api.txt deleted file mode 120000 index 8f8a434c2f7..00000000000 --- a/_sources/api/axes_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/axes_api.txt \ No newline at end of file diff --git a/_sources/api/axis_api.rst.txt b/_sources/api/axis_api.rst.txt deleted file mode 120000 index 2bbd9c11163..00000000000 --- a/_sources/api/axis_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/axis_api.rst.txt \ No newline at end of file diff --git a/_sources/api/axis_api.txt b/_sources/api/axis_api.txt deleted file mode 120000 index f1f62d09678..00000000000 --- a/_sources/api/axis_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/axis_api.txt \ No newline at end of file diff --git a/_sources/api/backend_agg_api.rst.txt b/_sources/api/backend_agg_api.rst.txt deleted file mode 120000 index ca0e8742def..00000000000 --- a/_sources/api/backend_agg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_agg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_bases_api.rst.txt b/_sources/api/backend_bases_api.rst.txt deleted file mode 120000 index aa5421a3dd7..00000000000 --- a/_sources/api/backend_bases_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_bases_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_bases_api.txt b/_sources/api/backend_bases_api.txt deleted file mode 120000 index 32f7c50f981..00000000000 --- a/_sources/api/backend_bases_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/backend_bases_api.txt \ No newline at end of file diff --git a/_sources/api/backend_cairo_api.rst.txt b/_sources/api/backend_cairo_api.rst.txt deleted file mode 120000 index a03c61684ff..00000000000 --- a/_sources/api/backend_cairo_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_cairo_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_gtk3_api.rst.txt b/_sources/api/backend_gtk3_api.rst.txt deleted file mode 120000 index 82a81a7ada8..00000000000 --- a/_sources/api/backend_gtk3_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_gtk3_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_gtk3agg_api.rst.txt b/_sources/api/backend_gtk3agg_api.rst.txt deleted file mode 120000 index d9c391736bd..00000000000 --- a/_sources/api/backend_gtk3agg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_gtk3agg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_gtk3cairo_api.rst.txt b/_sources/api/backend_gtk3cairo_api.rst.txt deleted file mode 120000 index 093ace4f49b..00000000000 --- a/_sources/api/backend_gtk3cairo_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_gtk3cairo_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_gtk4_api.rst.txt b/_sources/api/backend_gtk4_api.rst.txt deleted file mode 120000 index 3992111df1c..00000000000 --- a/_sources/api/backend_gtk4_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_gtk4_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_gtkagg_api.rst.txt b/_sources/api/backend_gtkagg_api.rst.txt deleted file mode 120000 index 660a0cfed67..00000000000 --- a/_sources/api/backend_gtkagg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/_sources/api/backend_gtkagg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_gtkagg_api.txt b/_sources/api/backend_gtkagg_api.txt deleted file mode 120000 index cd2cfc57be3..00000000000 --- a/_sources/api/backend_gtkagg_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/backend_gtkagg_api.txt \ No newline at end of file diff --git a/_sources/api/backend_gtkcairo_api.rst.txt b/_sources/api/backend_gtkcairo_api.rst.txt deleted file mode 120000 index 53f5cddf04b..00000000000 --- a/_sources/api/backend_gtkcairo_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/_sources/api/backend_gtkcairo_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_managers_api.rst.txt b/_sources/api/backend_managers_api.rst.txt deleted file mode 120000 index e08db8bc213..00000000000 --- a/_sources/api/backend_managers_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_managers_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_managers_api.txt b/_sources/api/backend_managers_api.txt deleted file mode 120000 index 7d2c7128c1f..00000000000 --- a/_sources/api/backend_managers_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/backend_managers_api.txt \ No newline at end of file diff --git a/_sources/api/backend_mixed_api.rst.txt b/_sources/api/backend_mixed_api.rst.txt deleted file mode 120000 index 374675bea3f..00000000000 --- a/_sources/api/backend_mixed_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_mixed_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_nbagg_api.rst.txt b/_sources/api/backend_nbagg_api.rst.txt deleted file mode 120000 index db1f4f336fc..00000000000 --- a/_sources/api/backend_nbagg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_nbagg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_pdf_api.rst.txt b/_sources/api/backend_pdf_api.rst.txt deleted file mode 120000 index eec959dbbdd..00000000000 --- a/_sources/api/backend_pdf_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_pdf_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_pdf_api.txt b/_sources/api/backend_pdf_api.txt deleted file mode 120000 index 68d926162f2..00000000000 --- a/_sources/api/backend_pdf_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/backend_pdf_api.txt \ No newline at end of file diff --git a/_sources/api/backend_pgf_api.rst.txt b/_sources/api/backend_pgf_api.rst.txt deleted file mode 120000 index 45469f9cd57..00000000000 --- a/_sources/api/backend_pgf_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_pgf_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_ps_api.rst.txt b/_sources/api/backend_ps_api.rst.txt deleted file mode 120000 index f92f7b4ac9b..00000000000 --- a/_sources/api/backend_ps_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_ps_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_qt4agg_api.rst.txt b/_sources/api/backend_qt4agg_api.rst.txt deleted file mode 120000 index 19de5945508..00000000000 --- a/_sources/api/backend_qt4agg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_qt4agg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_qt4agg_api.txt b/_sources/api/backend_qt4agg_api.txt deleted file mode 120000 index 53493c0d730..00000000000 --- a/_sources/api/backend_qt4agg_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/backend_qt4agg_api.txt \ No newline at end of file diff --git a/_sources/api/backend_qt4cairo_api.rst.txt b/_sources/api/backend_qt4cairo_api.rst.txt deleted file mode 120000 index a2b19cbfb5f..00000000000 --- a/_sources/api/backend_qt4cairo_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_qt4cairo_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_qt5agg_api.rst.txt b/_sources/api/backend_qt5agg_api.rst.txt deleted file mode 120000 index 3678ae19c4a..00000000000 --- a/_sources/api/backend_qt5agg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_qt5agg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_qt5cairo_api.rst.txt b/_sources/api/backend_qt5cairo_api.rst.txt deleted file mode 120000 index 3c26ed73a80..00000000000 --- a/_sources/api/backend_qt5cairo_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_qt5cairo_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_qt_api.rst.txt b/_sources/api/backend_qt_api.rst.txt deleted file mode 120000 index 0522717f069..00000000000 --- a/_sources/api/backend_qt_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_qt_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_svg_api.rst.txt b/_sources/api/backend_svg_api.rst.txt deleted file mode 120000 index ac8a6e78f57..00000000000 --- a/_sources/api/backend_svg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_svg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_template_api.rst.txt b/_sources/api/backend_template_api.rst.txt deleted file mode 120000 index b6c706ef5fa..00000000000 --- a/_sources/api/backend_template_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_template_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_tk_api.rst.txt b/_sources/api/backend_tk_api.rst.txt deleted file mode 120000 index b4d361eb05f..00000000000 --- a/_sources/api/backend_tk_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_tk_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_tkagg_api.rst.txt b/_sources/api/backend_tkagg_api.rst.txt deleted file mode 120000 index f7034f0ad48..00000000000 --- a/_sources/api/backend_tkagg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_tkagg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_tools_api.rst.txt b/_sources/api/backend_tools_api.rst.txt deleted file mode 120000 index 1e0c395d00f..00000000000 --- a/_sources/api/backend_tools_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_tools_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_tools_api.txt b/_sources/api/backend_tools_api.txt deleted file mode 120000 index af7ee74e310..00000000000 --- a/_sources/api/backend_tools_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/backend_tools_api.txt \ No newline at end of file diff --git a/_sources/api/backend_webagg_api.rst.txt b/_sources/api/backend_webagg_api.rst.txt deleted file mode 120000 index 9fa45c7d2c4..00000000000 --- a/_sources/api/backend_webagg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_webagg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_wx_api.rst.txt b/_sources/api/backend_wx_api.rst.txt deleted file mode 120000 index 65d672a98c8..00000000000 --- a/_sources/api/backend_wx_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/backend_wx_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_wxagg_api.rst.txt b/_sources/api/backend_wxagg_api.rst.txt deleted file mode 120000 index 8084b65cb0f..00000000000 --- a/_sources/api/backend_wxagg_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/api/backend_wxagg_api.rst.txt \ No newline at end of file diff --git a/_sources/api/backend_wxagg_api.txt b/_sources/api/backend_wxagg_api.txt deleted file mode 120000 index 208641f16d2..00000000000 --- a/_sources/api/backend_wxagg_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/backend_wxagg_api.txt \ No newline at end of file diff --git a/_sources/api/bezier_api.rst.txt b/_sources/api/bezier_api.rst.txt deleted file mode 120000 index a2e8676a4e4..00000000000 --- a/_sources/api/bezier_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/bezier_api.rst.txt \ No newline at end of file diff --git a/_sources/api/blocking_input_api.rst.txt b/_sources/api/blocking_input_api.rst.txt deleted file mode 120000 index 65d95cab376..00000000000 --- a/_sources/api/blocking_input_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/blocking_input_api.rst.txt \ No newline at end of file diff --git a/_sources/api/category_api.rst.txt b/_sources/api/category_api.rst.txt deleted file mode 120000 index 5d41732b08b..00000000000 --- a/_sources/api/category_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/category_api.rst.txt \ No newline at end of file diff --git a/_sources/api/cbook_api.rst.txt b/_sources/api/cbook_api.rst.txt deleted file mode 120000 index 8c8fb2959bf..00000000000 --- a/_sources/api/cbook_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/cbook_api.rst.txt \ No newline at end of file diff --git a/_sources/api/cbook_api.txt b/_sources/api/cbook_api.txt deleted file mode 120000 index 4ba5bd30ed0..00000000000 --- a/_sources/api/cbook_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/cbook_api.txt \ No newline at end of file diff --git a/_sources/api/cm_api.rst.txt b/_sources/api/cm_api.rst.txt deleted file mode 120000 index 86fb19a7512..00000000000 --- a/_sources/api/cm_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/cm_api.rst.txt \ No newline at end of file diff --git a/_sources/api/cm_api.txt b/_sources/api/cm_api.txt deleted file mode 120000 index 9b0411c97c0..00000000000 --- a/_sources/api/cm_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/cm_api.txt \ No newline at end of file diff --git a/_sources/api/collections_api.rst.txt b/_sources/api/collections_api.rst.txt deleted file mode 120000 index 092bd188d7d..00000000000 --- a/_sources/api/collections_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/collections_api.rst.txt \ No newline at end of file diff --git a/_sources/api/collections_api.txt b/_sources/api/collections_api.txt deleted file mode 120000 index 53bb9573655..00000000000 --- a/_sources/api/collections_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/collections_api.txt \ No newline at end of file diff --git a/_sources/api/colorbar_api.rst.txt b/_sources/api/colorbar_api.rst.txt deleted file mode 120000 index 30dcb8e23fe..00000000000 --- a/_sources/api/colorbar_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/colorbar_api.rst.txt \ No newline at end of file diff --git a/_sources/api/colorbar_api.txt b/_sources/api/colorbar_api.txt deleted file mode 120000 index db1a6d1615f..00000000000 --- a/_sources/api/colorbar_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/colorbar_api.txt \ No newline at end of file diff --git a/_sources/api/colors_api.rst.txt b/_sources/api/colors_api.rst.txt deleted file mode 120000 index 34271ca0f67..00000000000 --- a/_sources/api/colors_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/colors_api.rst.txt \ No newline at end of file diff --git a/_sources/api/colors_api.txt b/_sources/api/colors_api.txt deleted file mode 120000 index 0ecd50ac13d..00000000000 --- a/_sources/api/colors_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/colors_api.txt \ No newline at end of file diff --git a/_sources/api/container_api.rst.txt b/_sources/api/container_api.rst.txt deleted file mode 120000 index 97e56ae5f74..00000000000 --- a/_sources/api/container_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/container_api.rst.txt \ No newline at end of file diff --git a/_sources/api/contour_api.rst.txt b/_sources/api/contour_api.rst.txt deleted file mode 120000 index 078cbc76ef3..00000000000 --- a/_sources/api/contour_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/contour_api.rst.txt \ No newline at end of file diff --git a/_sources/api/dates_api.rst.txt b/_sources/api/dates_api.rst.txt deleted file mode 120000 index 24f2b74ea3c..00000000000 --- a/_sources/api/dates_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/dates_api.rst.txt \ No newline at end of file diff --git a/_sources/api/dates_api.txt b/_sources/api/dates_api.txt deleted file mode 120000 index 4dd29a248ad..00000000000 --- a/_sources/api/dates_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/dates_api.txt \ No newline at end of file diff --git a/_sources/api/docstring_api.rst.txt b/_sources/api/docstring_api.rst.txt deleted file mode 120000 index 4a6a316ae02..00000000000 --- a/_sources/api/docstring_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/docstring_api.rst.txt \ No newline at end of file diff --git a/_sources/api/dviread.rst.txt b/_sources/api/dviread.rst.txt deleted file mode 120000 index 250a4091926..00000000000 --- a/_sources/api/dviread.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/dviread.rst.txt \ No newline at end of file diff --git a/_sources/api/dviread.txt b/_sources/api/dviread.txt deleted file mode 120000 index dcec190dc01..00000000000 --- a/_sources/api/dviread.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/dviread.txt \ No newline at end of file diff --git a/_sources/api/figure_api.rst.txt b/_sources/api/figure_api.rst.txt deleted file mode 120000 index 9f6af237acb..00000000000 --- a/_sources/api/figure_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/figure_api.rst.txt \ No newline at end of file diff --git a/_sources/api/figure_api.txt b/_sources/api/figure_api.txt deleted file mode 120000 index 9a0771444cb..00000000000 --- a/_sources/api/figure_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/figure_api.txt \ No newline at end of file diff --git a/_sources/api/finance_api.rst.txt b/_sources/api/finance_api.rst.txt deleted file mode 120000 index ccb93fc4bef..00000000000 --- a/_sources/api/finance_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.1.2/_sources/api/finance_api.rst.txt \ No newline at end of file diff --git a/_sources/api/finance_api.txt b/_sources/api/finance_api.txt deleted file mode 120000 index a36e4f25e9f..00000000000 --- a/_sources/api/finance_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/finance_api.txt \ No newline at end of file diff --git a/_sources/api/font_manager_api.rst.txt b/_sources/api/font_manager_api.rst.txt deleted file mode 120000 index 8ea4246782a..00000000000 --- a/_sources/api/font_manager_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/font_manager_api.rst.txt \ No newline at end of file diff --git a/_sources/api/font_manager_api.txt b/_sources/api/font_manager_api.txt deleted file mode 120000 index e88cec7a546..00000000000 --- a/_sources/api/font_manager_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/font_manager_api.txt \ No newline at end of file diff --git a/_sources/api/fontconfig_pattern_api.rst.txt b/_sources/api/fontconfig_pattern_api.rst.txt deleted file mode 120000 index c0cbe40ecf4..00000000000 --- a/_sources/api/fontconfig_pattern_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/fontconfig_pattern_api.rst.txt \ No newline at end of file diff --git a/_sources/api/gridspec_api.rst.txt b/_sources/api/gridspec_api.rst.txt deleted file mode 120000 index 0eada97d84f..00000000000 --- a/_sources/api/gridspec_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/gridspec_api.rst.txt \ No newline at end of file diff --git a/_sources/api/gridspec_api.txt b/_sources/api/gridspec_api.txt deleted file mode 120000 index 5b90c6df96f..00000000000 --- a/_sources/api/gridspec_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/gridspec_api.txt \ No newline at end of file diff --git a/_sources/api/image_api.rst.txt b/_sources/api/image_api.rst.txt deleted file mode 120000 index 94601b51dd7..00000000000 --- a/_sources/api/image_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/image_api.rst.txt \ No newline at end of file diff --git a/_sources/api/image_api.txt b/_sources/api/image_api.txt deleted file mode 120000 index a0f9d8f4db1..00000000000 --- a/_sources/api/image_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/image_api.txt \ No newline at end of file diff --git a/_sources/api/index.rst.txt b/_sources/api/index.rst.txt deleted file mode 120000 index 9d54bd94fe8..00000000000 --- a/_sources/api/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/index.rst.txt \ No newline at end of file diff --git a/_sources/api/index.txt b/_sources/api/index.txt deleted file mode 120000 index 1b6712dac83..00000000000 --- a/_sources/api/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/index.txt \ No newline at end of file diff --git a/_sources/api/index_backend_api.rst.txt b/_sources/api/index_backend_api.rst.txt deleted file mode 120000 index bb91c1a98ae..00000000000 --- a/_sources/api/index_backend_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/index_backend_api.rst.txt \ No newline at end of file diff --git a/_sources/api/index_backend_api.txt b/_sources/api/index_backend_api.txt deleted file mode 120000 index 6a7fca83a01..00000000000 --- a/_sources/api/index_backend_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/index_backend_api.txt \ No newline at end of file diff --git a/_sources/api/legend_api.rst.txt b/_sources/api/legend_api.rst.txt deleted file mode 120000 index 24f549afabe..00000000000 --- a/_sources/api/legend_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/legend_api.rst.txt \ No newline at end of file diff --git a/_sources/api/legend_api.txt b/_sources/api/legend_api.txt deleted file mode 120000 index 99309991352..00000000000 --- a/_sources/api/legend_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/legend_api.txt \ No newline at end of file diff --git a/_sources/api/legend_handler_api.rst.txt b/_sources/api/legend_handler_api.rst.txt deleted file mode 120000 index edc351f15ab..00000000000 --- a/_sources/api/legend_handler_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/legend_handler_api.rst.txt \ No newline at end of file diff --git a/_sources/api/lines_api.rst.txt b/_sources/api/lines_api.rst.txt deleted file mode 120000 index 95e7cfcfa5a..00000000000 --- a/_sources/api/lines_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/lines_api.rst.txt \ No newline at end of file diff --git a/_sources/api/lines_api.txt b/_sources/api/lines_api.txt deleted file mode 120000 index 7fb99215627..00000000000 --- a/_sources/api/lines_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/lines_api.txt \ No newline at end of file diff --git a/_sources/api/markers_api.rst.txt b/_sources/api/markers_api.rst.txt deleted file mode 120000 index e40b4ff87f9..00000000000 --- a/_sources/api/markers_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/markers_api.rst.txt \ No newline at end of file diff --git a/_sources/api/markers_api.txt b/_sources/api/markers_api.txt deleted file mode 120000 index a4b957627b4..00000000000 --- a/_sources/api/markers_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/markers_api.txt \ No newline at end of file diff --git a/_sources/api/mathtext_api.rst.txt b/_sources/api/mathtext_api.rst.txt deleted file mode 120000 index 31f600dd506..00000000000 --- a/_sources/api/mathtext_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/mathtext_api.rst.txt \ No newline at end of file diff --git a/_sources/api/mathtext_api.txt b/_sources/api/mathtext_api.txt deleted file mode 120000 index 1721ead78f3..00000000000 --- a/_sources/api/mathtext_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/mathtext_api.txt \ No newline at end of file diff --git a/_sources/api/matplotlib_configuration_api.rst.txt b/_sources/api/matplotlib_configuration_api.rst.txt deleted file mode 120000 index d58e328a86c..00000000000 --- a/_sources/api/matplotlib_configuration_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/matplotlib_configuration_api.rst.txt \ No newline at end of file diff --git a/_sources/api/matplotlib_configuration_api.txt b/_sources/api/matplotlib_configuration_api.txt deleted file mode 120000 index 32909680c7e..00000000000 --- a/_sources/api/matplotlib_configuration_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/matplotlib_configuration_api.txt \ No newline at end of file diff --git a/_sources/api/mlab_api.rst.txt b/_sources/api/mlab_api.rst.txt deleted file mode 120000 index 47fb0e6a45b..00000000000 --- a/_sources/api/mlab_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/mlab_api.rst.txt \ No newline at end of file diff --git a/_sources/api/mlab_api.txt b/_sources/api/mlab_api.txt deleted file mode 120000 index 66d84680ade..00000000000 --- a/_sources/api/mlab_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/mlab_api.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes.rst.txt b/_sources/api/next_api_changes.rst.txt deleted file mode 120000 index a5d98b44c40..00000000000 --- a/_sources/api/next_api_changes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/next_api_changes.rst.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes/2018-09-22-TH-win32InstalledFonts.rst.txt b/_sources/api/next_api_changes/2018-09-22-TH-win32InstalledFonts.rst.txt deleted file mode 120000 index d9be8e05d54..00000000000 --- a/_sources/api/next_api_changes/2018-09-22-TH-win32InstalledFonts.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.2/_sources/api/next_api_changes/2018-09-22-TH-win32InstalledFonts.rst.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes/2018-10-24-JMK.rst.txt b/_sources/api/next_api_changes/2018-10-24-JMK.rst.txt deleted file mode 120000 index 71374045637..00000000000 --- a/_sources/api/next_api_changes/2018-10-24-JMK.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.2/_sources/api/next_api_changes/2018-10-24-JMK.rst.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes/README.rst.txt b/_sources/api/next_api_changes/README.rst.txt deleted file mode 120000 index 4489a6b9fd4..00000000000 --- a/_sources/api/next_api_changes/README.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/next_api_changes/README.rst.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes/behavior/00001-ABC.rst.txt b/_sources/api/next_api_changes/behavior/00001-ABC.rst.txt deleted file mode 120000 index 677410b9163..00000000000 --- a/_sources/api/next_api_changes/behavior/00001-ABC.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../stable/_sources/api/next_api_changes/behavior/00001-ABC.rst.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes/deprecations/00001-ABC.rst.txt b/_sources/api/next_api_changes/deprecations/00001-ABC.rst.txt deleted file mode 120000 index 74608bf86f0..00000000000 --- a/_sources/api/next_api_changes/deprecations/00001-ABC.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../stable/_sources/api/next_api_changes/deprecations/00001-ABC.rst.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes/development/00001-ABC.rst.txt b/_sources/api/next_api_changes/development/00001-ABC.rst.txt deleted file mode 120000 index d3b56ac520f..00000000000 --- a/_sources/api/next_api_changes/development/00001-ABC.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../stable/_sources/api/next_api_changes/development/00001-ABC.rst.txt \ No newline at end of file diff --git a/_sources/api/next_api_changes/removals/00001-ABC.rst.txt b/_sources/api/next_api_changes/removals/00001-ABC.rst.txt deleted file mode 120000 index 412f0bcce29..00000000000 --- a/_sources/api/next_api_changes/removals/00001-ABC.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../stable/_sources/api/next_api_changes/removals/00001-ABC.rst.txt \ No newline at end of file diff --git a/_sources/api/offsetbox_api.rst.txt b/_sources/api/offsetbox_api.rst.txt deleted file mode 120000 index bd2eb297e4a..00000000000 --- a/_sources/api/offsetbox_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/offsetbox_api.rst.txt \ No newline at end of file diff --git a/_sources/api/offsetbox_api.txt b/_sources/api/offsetbox_api.txt deleted file mode 120000 index 8506c2f6b0b..00000000000 --- a/_sources/api/offsetbox_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/offsetbox_api.txt \ No newline at end of file diff --git a/_sources/api/patches_api.rst.txt b/_sources/api/patches_api.rst.txt deleted file mode 120000 index 31dbed1d98c..00000000000 --- a/_sources/api/patches_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/patches_api.rst.txt \ No newline at end of file diff --git a/_sources/api/patches_api.txt b/_sources/api/patches_api.txt deleted file mode 120000 index 1d0cb5b86b6..00000000000 --- a/_sources/api/patches_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/patches_api.txt \ No newline at end of file diff --git a/_sources/api/path_api.rst.txt b/_sources/api/path_api.rst.txt deleted file mode 120000 index ae5d03648b3..00000000000 --- a/_sources/api/path_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/path_api.rst.txt \ No newline at end of file diff --git a/_sources/api/path_api.txt b/_sources/api/path_api.txt deleted file mode 120000 index d09a7bad304..00000000000 --- a/_sources/api/path_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/path_api.txt \ No newline at end of file diff --git a/_sources/api/patheffects_api.rst.txt b/_sources/api/patheffects_api.rst.txt deleted file mode 120000 index 07bfb629964..00000000000 --- a/_sources/api/patheffects_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/patheffects_api.rst.txt \ No newline at end of file diff --git a/_sources/api/patheffects_api.txt b/_sources/api/patheffects_api.txt deleted file mode 120000 index 0c8af5cf823..00000000000 --- a/_sources/api/patheffects_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/patheffects_api.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.40.rst.txt b/_sources/api/prev_api_changes/api_changes_0.40.rst.txt deleted file mode 120000 index fdb9411f347..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.40.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.40.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.42.rst.txt b/_sources/api/prev_api_changes/api_changes_0.42.rst.txt deleted file mode 120000 index 67bd942e99e..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.42.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.42.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.50.rst.txt b/_sources/api/prev_api_changes/api_changes_0.50.rst.txt deleted file mode 120000 index 0dc1f7ca229..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.50.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.50.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.54.3.rst.txt b/_sources/api/prev_api_changes/api_changes_0.54.3.rst.txt deleted file mode 120000 index f7b2db475ad..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.54.3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.54.3.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.54.rst.txt b/_sources/api/prev_api_changes/api_changes_0.54.rst.txt deleted file mode 120000 index abec61bb3cc..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.54.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.54.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.60.rst.txt b/_sources/api/prev_api_changes/api_changes_0.60.rst.txt deleted file mode 120000 index f914c45508a..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.60.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.60.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.61.rst.txt b/_sources/api/prev_api_changes/api_changes_0.61.rst.txt deleted file mode 120000 index 678a1009922..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.61.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.61.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.63.rst.txt b/_sources/api/prev_api_changes/api_changes_0.63.rst.txt deleted file mode 120000 index 99f2791846c..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.63.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.63.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.65.1.rst.txt b/_sources/api/prev_api_changes/api_changes_0.65.1.rst.txt deleted file mode 120000 index ae8943331b3..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.65.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.65.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.65.rst.txt b/_sources/api/prev_api_changes/api_changes_0.65.rst.txt deleted file mode 120000 index 2ffa331df41..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.65.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.65.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.70.rst.txt b/_sources/api/prev_api_changes/api_changes_0.70.rst.txt deleted file mode 120000 index ca9e4eb5882..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.70.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.70.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.71.rst.txt b/_sources/api/prev_api_changes/api_changes_0.71.rst.txt deleted file mode 120000 index 07b9935f71e..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.71.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.71.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.72.rst.txt b/_sources/api/prev_api_changes/api_changes_0.72.rst.txt deleted file mode 120000 index d992f4cf080..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.72.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.72.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.73.rst.txt b/_sources/api/prev_api_changes/api_changes_0.73.rst.txt deleted file mode 120000 index 1534c265b0b..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.73.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.73.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.80.rst.txt b/_sources/api/prev_api_changes/api_changes_0.80.rst.txt deleted file mode 120000 index 69f68290c06..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.80.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.80.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.81.rst.txt b/_sources/api/prev_api_changes/api_changes_0.81.rst.txt deleted file mode 120000 index c8eb5b2e6f4..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.81.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.81.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.82.rst.txt b/_sources/api/prev_api_changes/api_changes_0.82.rst.txt deleted file mode 120000 index a046d15a517..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.82.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.82.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.83.rst.txt b/_sources/api/prev_api_changes/api_changes_0.83.rst.txt deleted file mode 120000 index c50b813b59e..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.83.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.83.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.84.rst.txt b/_sources/api/prev_api_changes/api_changes_0.84.rst.txt deleted file mode 120000 index 606a95ca191..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.84.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.84.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.85.rst.txt b/_sources/api/prev_api_changes/api_changes_0.85.rst.txt deleted file mode 120000 index 0307970c8be..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.85.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.85.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.86.rst.txt b/_sources/api/prev_api_changes/api_changes_0.86.rst.txt deleted file mode 120000 index 3f125dd6bab..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.86.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.86.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.87.7.rst.txt b/_sources/api/prev_api_changes/api_changes_0.87.7.rst.txt deleted file mode 120000 index b8f1a81e181..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.87.7.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.87.7.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.90.0.rst.txt b/_sources/api/prev_api_changes/api_changes_0.90.0.rst.txt deleted file mode 120000 index 4551b30e4e5..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.90.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.90.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.90.1.rst.txt b/_sources/api/prev_api_changes/api_changes_0.90.1.rst.txt deleted file mode 120000 index b77049a7db4..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.90.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.90.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.91.0.rst.txt b/_sources/api/prev_api_changes/api_changes_0.91.0.rst.txt deleted file mode 120000 index 396657fb1ea..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.91.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.91.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.91.2.rst.txt b/_sources/api/prev_api_changes/api_changes_0.91.2.rst.txt deleted file mode 120000 index a87be8c0979..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.91.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.91.2.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.98.0.rst.txt b/_sources/api/prev_api_changes/api_changes_0.98.0.rst.txt deleted file mode 120000 index a11cb7e3aa9..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.98.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.98.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.98.1.rst.txt b/_sources/api/prev_api_changes/api_changes_0.98.1.rst.txt deleted file mode 120000 index 0b391b53456..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.98.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.98.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.98.x.rst.txt b/_sources/api/prev_api_changes/api_changes_0.98.x.rst.txt deleted file mode 120000 index 1f6a083b22f..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.98.x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.98.x.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.99.rst.txt b/_sources/api/prev_api_changes/api_changes_0.99.rst.txt deleted file mode 120000 index 97c03b9b85f..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.99.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.99.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_0.99.x.rst.txt b/_sources/api/prev_api_changes/api_changes_0.99.x.rst.txt deleted file mode 120000 index 64d067c77cb..00000000000 --- a/_sources/api/prev_api_changes/api_changes_0.99.x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_0.99.x.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_1.1.x.rst.txt b/_sources/api/prev_api_changes/api_changes_1.1.x.rst.txt deleted file mode 120000 index 8b921bfb028..00000000000 --- a/_sources/api/prev_api_changes/api_changes_1.1.x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_1.1.x.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_1.2.x.rst.txt b/_sources/api/prev_api_changes/api_changes_1.2.x.rst.txt deleted file mode 120000 index 1e31db02399..00000000000 --- a/_sources/api/prev_api_changes/api_changes_1.2.x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_1.2.x.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_1.3.x.rst.txt b/_sources/api/prev_api_changes/api_changes_1.3.x.rst.txt deleted file mode 120000 index 837b0f2872d..00000000000 --- a/_sources/api/prev_api_changes/api_changes_1.3.x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_1.3.x.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_1.4.x.rst.txt b/_sources/api/prev_api_changes/api_changes_1.4.x.rst.txt deleted file mode 120000 index 703b931c88c..00000000000 --- a/_sources/api/prev_api_changes/api_changes_1.4.x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_1.4.x.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_1.5.0.rst.txt b/_sources/api/prev_api_changes/api_changes_1.5.0.rst.txt deleted file mode 120000 index a2a322e4c94..00000000000 --- a/_sources/api/prev_api_changes/api_changes_1.5.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_1.5.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_1.5.2.rst.txt b/_sources/api/prev_api_changes/api_changes_1.5.2.rst.txt deleted file mode 120000 index 5f673d9493f..00000000000 --- a/_sources/api/prev_api_changes/api_changes_1.5.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_1.5.2.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_1.5.3.rst.txt b/_sources/api/prev_api_changes/api_changes_1.5.3.rst.txt deleted file mode 120000 index 9223f21a65f..00000000000 --- a/_sources/api/prev_api_changes/api_changes_1.5.3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_1.5.3.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_2.0.0.rst.txt b/_sources/api/prev_api_changes/api_changes_2.0.0.rst.txt deleted file mode 120000 index 87643b37dc1..00000000000 --- a/_sources/api/prev_api_changes/api_changes_2.0.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_2.0.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_2.0.1.rst.txt b/_sources/api/prev_api_changes/api_changes_2.0.1.rst.txt deleted file mode 120000 index 0628e579e7b..00000000000 --- a/_sources/api/prev_api_changes/api_changes_2.0.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_2.0.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_2.1.0.rst.txt b/_sources/api/prev_api_changes/api_changes_2.1.0.rst.txt deleted file mode 120000 index 924e6399ecd..00000000000 --- a/_sources/api/prev_api_changes/api_changes_2.1.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_2.1.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_2.1.1.rst.txt b/_sources/api/prev_api_changes/api_changes_2.1.1.rst.txt deleted file mode 120000 index e8b48f3c4c6..00000000000 --- a/_sources/api/prev_api_changes/api_changes_2.1.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_2.1.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_2.1.2.rst.txt b/_sources/api/prev_api_changes/api_changes_2.1.2.rst.txt deleted file mode 120000 index 9f6459f18ec..00000000000 --- a/_sources/api/prev_api_changes/api_changes_2.1.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_2.1.2.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_2.2.0.rst.txt b/_sources/api/prev_api_changes/api_changes_2.2.0.rst.txt deleted file mode 120000 index c44e72699da..00000000000 --- a/_sources/api/prev_api_changes/api_changes_2.2.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_2.2.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.0.0.rst.txt b/_sources/api/prev_api_changes/api_changes_3.0.0.rst.txt deleted file mode 120000 index 213fa471c56..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.0.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.0.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.0.1.rst.txt b/_sources/api/prev_api_changes/api_changes_3.0.1.rst.txt deleted file mode 120000 index 97754cff87e..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.0.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.0.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.1.0.rst.txt b/_sources/api/prev_api_changes/api_changes_3.1.0.rst.txt deleted file mode 120000 index 55dfe78e480..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.1.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.1.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.1.1.rst.txt b/_sources/api/prev_api_changes/api_changes_3.1.1.rst.txt deleted file mode 120000 index 58a2eae6413..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.1.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.1.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.2.0.rst.txt b/_sources/api/prev_api_changes/api_changes_3.2.0.rst.txt deleted file mode 120000 index 25dc46fc090..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.2.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.2.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.2.0/behavior.rst.txt b/_sources/api/prev_api_changes/api_changes_3.2.0/behavior.rst.txt deleted file mode 120000 index 2882e660fee..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.2.0/behavior.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.2.0/behavior.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.2.0/deprecations.rst.txt b/_sources/api/prev_api_changes/api_changes_3.2.0/deprecations.rst.txt deleted file mode 120000 index 4fcf7e3b0b7..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.2.0/deprecations.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.2.0/deprecations.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.2.0/development.rst.txt b/_sources/api/prev_api_changes/api_changes_3.2.0/development.rst.txt deleted file mode 120000 index aa1489e0c37..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.2.0/development.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.2.0/development.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.2.0/removals.rst.txt b/_sources/api/prev_api_changes/api_changes_3.2.0/removals.rst.txt deleted file mode 120000 index b4fe51da527..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.2.0/removals.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.2.0/removals.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.3.0.rst.txt b/_sources/api/prev_api_changes/api_changes_3.3.0.rst.txt deleted file mode 120000 index ddb8cfb9908..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.3.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.3.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.3.0/behaviour.rst.txt b/_sources/api/prev_api_changes/api_changes_3.3.0/behaviour.rst.txt deleted file mode 120000 index 475f5e99452..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.3.0/behaviour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.3.0/behaviour.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.3.0/deprecations.rst.txt b/_sources/api/prev_api_changes/api_changes_3.3.0/deprecations.rst.txt deleted file mode 120000 index ae120da1def..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.3.0/deprecations.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.3.0/deprecations.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.3.0/development.rst.txt b/_sources/api/prev_api_changes/api_changes_3.3.0/development.rst.txt deleted file mode 120000 index e64a3dcb861..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.3.0/development.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.3.0/development.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.3.0/removals.rst.txt b/_sources/api/prev_api_changes/api_changes_3.3.0/removals.rst.txt deleted file mode 120000 index d094223bf23..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.3.0/removals.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.3.0/_sources/api/prev_api_changes/api_changes_3.3.0/removals.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.3.1.rst.txt b/_sources/api/prev_api_changes/api_changes_3.3.1.rst.txt deleted file mode 120000 index f8afd883a0c..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.3.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.3.1.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.4.0.rst.txt b/_sources/api/prev_api_changes/api_changes_3.4.0.rst.txt deleted file mode 120000 index 903c98ac77a..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.4.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.4.0.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.4.2.rst.txt b/_sources/api/prev_api_changes/api_changes_3.4.2.rst.txt deleted file mode 120000 index a4f457758f3..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.4.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.4.2.rst.txt \ No newline at end of file diff --git a/_sources/api/prev_api_changes/api_changes_3.5.0.rst.txt b/_sources/api/prev_api_changes/api_changes_3.5.0.rst.txt deleted file mode 120000 index a13c6f9047e..00000000000 --- a/_sources/api/prev_api_changes/api_changes_3.5.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/prev_api_changes/api_changes_3.5.0.rst.txt \ No newline at end of file diff --git a/_sources/api/projections_api.rst.txt b/_sources/api/projections_api.rst.txt deleted file mode 120000 index ec92b0d8ffa..00000000000 --- a/_sources/api/projections_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/projections_api.rst.txt \ No newline at end of file diff --git a/_sources/api/projections_api.txt b/_sources/api/projections_api.txt deleted file mode 120000 index bf602f36a0d..00000000000 --- a/_sources/api/projections_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/projections_api.txt \ No newline at end of file diff --git a/_sources/api/pyplot_api.rst.txt b/_sources/api/pyplot_api.rst.txt deleted file mode 120000 index 53b03d6c95e..00000000000 --- a/_sources/api/pyplot_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/api/pyplot_api.rst.txt \ No newline at end of file diff --git a/_sources/api/pyplot_api.txt b/_sources/api/pyplot_api.txt deleted file mode 120000 index 13a17b44bda..00000000000 --- a/_sources/api/pyplot_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/pyplot_api.txt \ No newline at end of file diff --git a/_sources/api/pyplot_summary.rst.txt b/_sources/api/pyplot_summary.rst.txt deleted file mode 120000 index 36de9bfb92a..00000000000 --- a/_sources/api/pyplot_summary.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/pyplot_summary.rst.txt \ No newline at end of file diff --git a/_sources/api/pyplot_summary.txt b/_sources/api/pyplot_summary.txt deleted file mode 120000 index 1782d24dc0f..00000000000 --- a/_sources/api/pyplot_summary.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/pyplot_summary.txt \ No newline at end of file diff --git a/_sources/api/quiver_api.rst.txt b/_sources/api/quiver_api.rst.txt deleted file mode 120000 index 61c5b1966ff..00000000000 --- a/_sources/api/quiver_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/quiver_api.rst.txt \ No newline at end of file diff --git a/_sources/api/rcsetup_api.rst.txt b/_sources/api/rcsetup_api.rst.txt deleted file mode 120000 index 73c2de423ff..00000000000 --- a/_sources/api/rcsetup_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/rcsetup_api.rst.txt \ No newline at end of file diff --git a/_sources/api/sankey_api.rst.txt b/_sources/api/sankey_api.rst.txt deleted file mode 120000 index d3e43c59115..00000000000 --- a/_sources/api/sankey_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/sankey_api.rst.txt \ No newline at end of file diff --git a/_sources/api/sankey_api.txt b/_sources/api/sankey_api.txt deleted file mode 120000 index 0c36a0e1b02..00000000000 --- a/_sources/api/sankey_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/sankey_api.txt \ No newline at end of file diff --git a/_sources/api/scale_api.rst.txt b/_sources/api/scale_api.rst.txt deleted file mode 120000 index 84d465fd4e9..00000000000 --- a/_sources/api/scale_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/scale_api.rst.txt \ No newline at end of file diff --git a/_sources/api/scale_api.txt b/_sources/api/scale_api.txt deleted file mode 120000 index 34561b0e72f..00000000000 --- a/_sources/api/scale_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/scale_api.txt \ No newline at end of file diff --git a/_sources/api/sphinxext_mathmpl_api.rst.txt b/_sources/api/sphinxext_mathmpl_api.rst.txt deleted file mode 120000 index 42da623f6fd..00000000000 --- a/_sources/api/sphinxext_mathmpl_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/sphinxext_mathmpl_api.rst.txt \ No newline at end of file diff --git a/_sources/api/sphinxext_plot_directive_api.rst.txt b/_sources/api/sphinxext_plot_directive_api.rst.txt deleted file mode 120000 index 0c31490d74e..00000000000 --- a/_sources/api/sphinxext_plot_directive_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/sphinxext_plot_directive_api.rst.txt \ No newline at end of file diff --git a/_sources/api/spines_api.rst.txt b/_sources/api/spines_api.rst.txt deleted file mode 120000 index 7a64c8c0ea3..00000000000 --- a/_sources/api/spines_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/spines_api.rst.txt \ No newline at end of file diff --git a/_sources/api/spines_api.txt b/_sources/api/spines_api.txt deleted file mode 120000 index 18ec71f17b5..00000000000 --- a/_sources/api/spines_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/spines_api.txt \ No newline at end of file diff --git a/_sources/api/style_api.rst.txt b/_sources/api/style_api.rst.txt deleted file mode 120000 index 79ceeae5ec8..00000000000 --- a/_sources/api/style_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/style_api.rst.txt \ No newline at end of file diff --git a/_sources/api/style_api.txt b/_sources/api/style_api.txt deleted file mode 120000 index 4b122fa52a5..00000000000 --- a/_sources/api/style_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/style_api.txt \ No newline at end of file diff --git a/_sources/api/table_api.rst.txt b/_sources/api/table_api.rst.txt deleted file mode 120000 index 0903578da7d..00000000000 --- a/_sources/api/table_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/table_api.rst.txt \ No newline at end of file diff --git a/_sources/api/testing_api.rst.txt b/_sources/api/testing_api.rst.txt deleted file mode 120000 index 86df84d3c74..00000000000 --- a/_sources/api/testing_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/testing_api.rst.txt \ No newline at end of file diff --git a/_sources/api/texmanager_api.rst.txt b/_sources/api/texmanager_api.rst.txt deleted file mode 120000 index 440994722cc..00000000000 --- a/_sources/api/texmanager_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/texmanager_api.rst.txt \ No newline at end of file diff --git a/_sources/api/text_api.rst.txt b/_sources/api/text_api.rst.txt deleted file mode 120000 index 327a3179cf8..00000000000 --- a/_sources/api/text_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/text_api.rst.txt \ No newline at end of file diff --git a/_sources/api/text_api.txt b/_sources/api/text_api.txt deleted file mode 120000 index c37e91bad44..00000000000 --- a/_sources/api/text_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/text_api.txt \ No newline at end of file diff --git a/_sources/api/textpath_api.rst.txt b/_sources/api/textpath_api.rst.txt deleted file mode 120000 index 0add84a668c..00000000000 --- a/_sources/api/textpath_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/textpath_api.rst.txt \ No newline at end of file diff --git a/_sources/api/ticker_api.rst.txt b/_sources/api/ticker_api.rst.txt deleted file mode 120000 index 95c24257184..00000000000 --- a/_sources/api/ticker_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/ticker_api.rst.txt \ No newline at end of file diff --git a/_sources/api/ticker_api.txt b/_sources/api/ticker_api.txt deleted file mode 120000 index ee41d63970a..00000000000 --- a/_sources/api/ticker_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/ticker_api.txt \ No newline at end of file diff --git a/_sources/api/tight_bbox_api.rst.txt b/_sources/api/tight_bbox_api.rst.txt deleted file mode 120000 index 5363a2abd60..00000000000 --- a/_sources/api/tight_bbox_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/tight_bbox_api.rst.txt \ No newline at end of file diff --git a/_sources/api/tight_layout_api.rst.txt b/_sources/api/tight_layout_api.rst.txt deleted file mode 120000 index 0c7078746ce..00000000000 --- a/_sources/api/tight_layout_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/tight_layout_api.rst.txt \ No newline at end of file diff --git a/_sources/api/tight_layout_api.txt b/_sources/api/tight_layout_api.txt deleted file mode 120000 index 50f4373c4c3..00000000000 --- a/_sources/api/tight_layout_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/tight_layout_api.txt \ No newline at end of file diff --git a/_sources/api/toolkits/axes_grid.rst.txt b/_sources/api/toolkits/axes_grid.rst.txt deleted file mode 120000 index 97942d3a339..00000000000 --- a/_sources/api/toolkits/axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/api/toolkits/axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/api/toolkits/axes_grid1.rst.txt b/_sources/api/toolkits/axes_grid1.rst.txt deleted file mode 120000 index da0d06831aa..00000000000 --- a/_sources/api/toolkits/axes_grid1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/toolkits/axes_grid1.rst.txt \ No newline at end of file diff --git a/_sources/api/toolkits/axisartist.rst.txt b/_sources/api/toolkits/axisartist.rst.txt deleted file mode 120000 index 6c0505132af..00000000000 --- a/_sources/api/toolkits/axisartist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/toolkits/axisartist.rst.txt \ No newline at end of file diff --git a/_sources/api/toolkits/index.rst.txt b/_sources/api/toolkits/index.rst.txt deleted file mode 120000 index 9ed61a3432c..00000000000 --- a/_sources/api/toolkits/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/api/toolkits/index.rst.txt \ No newline at end of file diff --git a/_sources/api/toolkits/mplot3d.rst.txt b/_sources/api/toolkits/mplot3d.rst.txt deleted file mode 120000 index 6477a39219f..00000000000 --- a/_sources/api/toolkits/mplot3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/api/toolkits/mplot3d.rst.txt \ No newline at end of file diff --git a/_sources/api/toolkits/mplot3d/faq.rst.txt b/_sources/api/toolkits/mplot3d/faq.rst.txt deleted file mode 120000 index 40107c3cf5d..00000000000 --- a/_sources/api/toolkits/mplot3d/faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../stable/_sources/api/toolkits/mplot3d/faq.rst.txt \ No newline at end of file diff --git a/_sources/api/toolkits/mplot3d/index.rst.txt b/_sources/api/toolkits/mplot3d/index.rst.txt deleted file mode 120000 index 55f7167bf1e..00000000000 --- a/_sources/api/toolkits/mplot3d/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../3.4.3/_sources/api/toolkits/mplot3d/index.rst.txt \ No newline at end of file diff --git a/_sources/api/transformations.rst.txt b/_sources/api/transformations.rst.txt deleted file mode 120000 index 043a8b3966a..00000000000 --- a/_sources/api/transformations.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/transformations.rst.txt \ No newline at end of file diff --git a/_sources/api/tri_api.rst.txt b/_sources/api/tri_api.rst.txt deleted file mode 120000 index 62b872c59ec..00000000000 --- a/_sources/api/tri_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/tri_api.rst.txt \ No newline at end of file diff --git a/_sources/api/tri_api.txt b/_sources/api/tri_api.txt deleted file mode 120000 index 3bd19c01edc..00000000000 --- a/_sources/api/tri_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/tri_api.txt \ No newline at end of file diff --git a/_sources/api/type1font.rst.txt b/_sources/api/type1font.rst.txt deleted file mode 120000 index 2b1d941487e..00000000000 --- a/_sources/api/type1font.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/type1font.rst.txt \ No newline at end of file diff --git a/_sources/api/type1font.txt b/_sources/api/type1font.txt deleted file mode 120000 index 7e1fce683ab..00000000000 --- a/_sources/api/type1font.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/type1font.txt \ No newline at end of file diff --git a/_sources/api/units_api.rst.txt b/_sources/api/units_api.rst.txt deleted file mode 120000 index 4fe035e688a..00000000000 --- a/_sources/api/units_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/units_api.rst.txt \ No newline at end of file diff --git a/_sources/api/units_api.txt b/_sources/api/units_api.txt deleted file mode 120000 index 078d0057a41..00000000000 --- a/_sources/api/units_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/units_api.txt \ No newline at end of file diff --git a/_sources/api/widgets_api.rst.txt b/_sources/api/widgets_api.rst.txt deleted file mode 120000 index 1806bf2ab83..00000000000 --- a/_sources/api/widgets_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/api/widgets_api.rst.txt \ No newline at end of file diff --git a/_sources/api/widgets_api.txt b/_sources/api/widgets_api.txt deleted file mode 120000 index 3e4c345fab5..00000000000 --- a/_sources/api/widgets_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/api/widgets_api.txt \ No newline at end of file diff --git a/_sources/citing.rst.txt b/_sources/citing.rst.txt deleted file mode 120000 index a3a6519c92d..00000000000 --- a/_sources/citing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_sources/citing.rst.txt \ No newline at end of file diff --git a/_sources/contents.rst.txt b/_sources/contents.rst.txt deleted file mode 120000 index 217c287603d..00000000000 --- a/_sources/contents.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_sources/contents.rst.txt \ No newline at end of file diff --git a/_sources/contents.txt b/_sources/contents.txt deleted file mode 120000 index 0a3a20586e8..00000000000 --- a/_sources/contents.txt +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_sources/contents.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP08.rst.txt b/_sources/devel/MEP/MEP08.rst.txt deleted file mode 120000 index 20c8dceeca1..00000000000 --- a/_sources/devel/MEP/MEP08.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP08.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP08.txt b/_sources/devel/MEP/MEP08.txt deleted file mode 120000 index 399ab52188c..00000000000 --- a/_sources/devel/MEP/MEP08.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP08.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP09.rst.txt b/_sources/devel/MEP/MEP09.rst.txt deleted file mode 120000 index a9b16a7b7b0..00000000000 --- a/_sources/devel/MEP/MEP09.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP09.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP09.txt b/_sources/devel/MEP/MEP09.txt deleted file mode 120000 index f6728ec28e3..00000000000 --- a/_sources/devel/MEP/MEP09.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP09.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP10.rst.txt b/_sources/devel/MEP/MEP10.rst.txt deleted file mode 120000 index 8ca4c90bce1..00000000000 --- a/_sources/devel/MEP/MEP10.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP10.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP10.txt b/_sources/devel/MEP/MEP10.txt deleted file mode 120000 index f9a12205e11..00000000000 --- a/_sources/devel/MEP/MEP10.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP10.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP11.rst.txt b/_sources/devel/MEP/MEP11.rst.txt deleted file mode 120000 index e73e54e5fc7..00000000000 --- a/_sources/devel/MEP/MEP11.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP11.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP11.txt b/_sources/devel/MEP/MEP11.txt deleted file mode 120000 index 0c2d5e89f97..00000000000 --- a/_sources/devel/MEP/MEP11.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP11.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP12.rst.txt b/_sources/devel/MEP/MEP12.rst.txt deleted file mode 120000 index d68d56e29aa..00000000000 --- a/_sources/devel/MEP/MEP12.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP12.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP12.txt b/_sources/devel/MEP/MEP12.txt deleted file mode 120000 index b16f14b3f9f..00000000000 --- a/_sources/devel/MEP/MEP12.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP12.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP13.rst.txt b/_sources/devel/MEP/MEP13.rst.txt deleted file mode 120000 index 9bdd8d98f46..00000000000 --- a/_sources/devel/MEP/MEP13.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP13.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP13.txt b/_sources/devel/MEP/MEP13.txt deleted file mode 120000 index 277f8926641..00000000000 --- a/_sources/devel/MEP/MEP13.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP13.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP14.rst.txt b/_sources/devel/MEP/MEP14.rst.txt deleted file mode 120000 index 7ae7e716aab..00000000000 --- a/_sources/devel/MEP/MEP14.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP14.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP14.txt b/_sources/devel/MEP/MEP14.txt deleted file mode 120000 index 55ccff76116..00000000000 --- a/_sources/devel/MEP/MEP14.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP14.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP15.rst.txt b/_sources/devel/MEP/MEP15.rst.txt deleted file mode 120000 index 92e4629ef6f..00000000000 --- a/_sources/devel/MEP/MEP15.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP15.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP15.txt b/_sources/devel/MEP/MEP15.txt deleted file mode 120000 index cd4af956afe..00000000000 --- a/_sources/devel/MEP/MEP15.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP15.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP19.rst.txt b/_sources/devel/MEP/MEP19.rst.txt deleted file mode 120000 index a8c39713ed4..00000000000 --- a/_sources/devel/MEP/MEP19.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP19.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP19.txt b/_sources/devel/MEP/MEP19.txt deleted file mode 120000 index a7571075340..00000000000 --- a/_sources/devel/MEP/MEP19.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP19.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP21.rst.txt b/_sources/devel/MEP/MEP21.rst.txt deleted file mode 120000 index 03b19681aec..00000000000 --- a/_sources/devel/MEP/MEP21.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP21.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP21.txt b/_sources/devel/MEP/MEP21.txt deleted file mode 120000 index dd15a5a23e1..00000000000 --- a/_sources/devel/MEP/MEP21.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP21.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP22.rst.txt b/_sources/devel/MEP/MEP22.rst.txt deleted file mode 120000 index 51375c02861..00000000000 --- a/_sources/devel/MEP/MEP22.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP22.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP22.txt b/_sources/devel/MEP/MEP22.txt deleted file mode 120000 index 365e0240831..00000000000 --- a/_sources/devel/MEP/MEP22.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP22.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP23.rst.txt b/_sources/devel/MEP/MEP23.rst.txt deleted file mode 120000 index 1d6e173eb40..00000000000 --- a/_sources/devel/MEP/MEP23.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP23.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP23.txt b/_sources/devel/MEP/MEP23.txt deleted file mode 120000 index a64273c247e..00000000000 --- a/_sources/devel/MEP/MEP23.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP23.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP24.rst.txt b/_sources/devel/MEP/MEP24.rst.txt deleted file mode 120000 index 45674a45514..00000000000 --- a/_sources/devel/MEP/MEP24.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP24.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP24.txt b/_sources/devel/MEP/MEP24.txt deleted file mode 120000 index 8fd54456f31..00000000000 --- a/_sources/devel/MEP/MEP24.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP24.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP25.rst.txt b/_sources/devel/MEP/MEP25.rst.txt deleted file mode 120000 index 64e18b00f04..00000000000 --- a/_sources/devel/MEP/MEP25.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP25.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP25.txt b/_sources/devel/MEP/MEP25.txt deleted file mode 120000 index 6fdf57fac24..00000000000 --- a/_sources/devel/MEP/MEP25.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP25.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP26.rst.txt b/_sources/devel/MEP/MEP26.rst.txt deleted file mode 120000 index 78968d5d1be..00000000000 --- a/_sources/devel/MEP/MEP26.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP26.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP26.txt b/_sources/devel/MEP/MEP26.txt deleted file mode 120000 index 36a3108f6a7..00000000000 --- a/_sources/devel/MEP/MEP26.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP26.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP27.rst.txt b/_sources/devel/MEP/MEP27.rst.txt deleted file mode 120000 index f9561d99c9c..00000000000 --- a/_sources/devel/MEP/MEP27.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP27.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP27.txt b/_sources/devel/MEP/MEP27.txt deleted file mode 120000 index 5342270c9ea..00000000000 --- a/_sources/devel/MEP/MEP27.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/MEP27.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP28.rst.txt b/_sources/devel/MEP/MEP28.rst.txt deleted file mode 120000 index e8edac2db52..00000000000 --- a/_sources/devel/MEP/MEP28.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP28.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/MEP29.rst.txt b/_sources/devel/MEP/MEP29.rst.txt deleted file mode 120000 index 5acc19b59cc..00000000000 --- a/_sources/devel/MEP/MEP29.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/MEP29.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/README.rst.txt b/_sources/devel/MEP/README.rst.txt deleted file mode 120000 index c1ffc8b035a..00000000000 --- a/_sources/devel/MEP/README.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/README.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/index.rst.txt b/_sources/devel/MEP/index.rst.txt deleted file mode 120000 index a70ba88f7a8..00000000000 --- a/_sources/devel/MEP/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/index.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/index.txt b/_sources/devel/MEP/index.txt deleted file mode 120000 index 0ff23ea463c..00000000000 --- a/_sources/devel/MEP/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/index.txt \ No newline at end of file diff --git a/_sources/devel/MEP/template.rst.txt b/_sources/devel/MEP/template.rst.txt deleted file mode 120000 index 56ff1591779..00000000000 --- a/_sources/devel/MEP/template.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/MEP/template.rst.txt \ No newline at end of file diff --git a/_sources/devel/MEP/template.txt b/_sources/devel/MEP/template.txt deleted file mode 120000 index 13df47adfa5..00000000000 --- a/_sources/devel/MEP/template.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/MEP/template.txt \ No newline at end of file diff --git a/_sources/devel/add_new_projection.rst.txt b/_sources/devel/add_new_projection.rst.txt deleted file mode 120000 index 9e8b05161d5..00000000000 --- a/_sources/devel/add_new_projection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/devel/add_new_projection.rst.txt \ No newline at end of file diff --git a/_sources/devel/add_new_projection.txt b/_sources/devel/add_new_projection.txt deleted file mode 120000 index bd37e3eeb7a..00000000000 --- a/_sources/devel/add_new_projection.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/add_new_projection.txt \ No newline at end of file diff --git a/_sources/devel/coding_guide.rst.txt b/_sources/devel/coding_guide.rst.txt deleted file mode 120000 index 8015893896f..00000000000 --- a/_sources/devel/coding_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/coding_guide.rst.txt \ No newline at end of file diff --git a/_sources/devel/coding_guide.txt b/_sources/devel/coding_guide.txt deleted file mode 120000 index e352e5ad37d..00000000000 --- a/_sources/devel/coding_guide.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/coding_guide.txt \ No newline at end of file diff --git a/_sources/devel/color_changes.rst.txt b/_sources/devel/color_changes.rst.txt deleted file mode 120000 index 7735e2e5d5f..00000000000 --- a/_sources/devel/color_changes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/color_changes.rst.txt \ No newline at end of file diff --git a/_sources/devel/color_changes.txt b/_sources/devel/color_changes.txt deleted file mode 120000 index fe7294433eb..00000000000 --- a/_sources/devel/color_changes.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/color_changes.txt \ No newline at end of file diff --git a/_sources/devel/contributing.rst.txt b/_sources/devel/contributing.rst.txt deleted file mode 120000 index 09d14f11a18..00000000000 --- a/_sources/devel/contributing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/contributing.rst.txt \ No newline at end of file diff --git a/_sources/devel/dependencies.rst.txt b/_sources/devel/dependencies.rst.txt deleted file mode 120000 index 9bb3126704b..00000000000 --- a/_sources/devel/dependencies.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/dependencies.rst.txt \ No newline at end of file diff --git a/_sources/devel/development_setup.rst.txt b/_sources/devel/development_setup.rst.txt deleted file mode 120000 index 2dd024f9ef3..00000000000 --- a/_sources/devel/development_setup.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/development_setup.rst.txt \ No newline at end of file diff --git a/_sources/devel/documenting_mpl.rst.txt b/_sources/devel/documenting_mpl.rst.txt deleted file mode 120000 index 5628b901a03..00000000000 --- a/_sources/devel/documenting_mpl.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/documenting_mpl.rst.txt \ No newline at end of file diff --git a/_sources/devel/documenting_mpl.txt b/_sources/devel/documenting_mpl.txt deleted file mode 120000 index 97ddd2e2cb2..00000000000 --- a/_sources/devel/documenting_mpl.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/documenting_mpl.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/configure_git.rst.txt b/_sources/devel/gitwash/configure_git.rst.txt deleted file mode 120000 index 0cc06348d7c..00000000000 --- a/_sources/devel/gitwash/configure_git.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/configure_git.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/configure_git.txt b/_sources/devel/gitwash/configure_git.txt deleted file mode 120000 index 3983f3e43ac..00000000000 --- a/_sources/devel/gitwash/configure_git.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/configure_git.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/development_workflow.rst.txt b/_sources/devel/gitwash/development_workflow.rst.txt deleted file mode 120000 index 60e8c440173..00000000000 --- a/_sources/devel/gitwash/development_workflow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/development_workflow.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/development_workflow.txt b/_sources/devel/gitwash/development_workflow.txt deleted file mode 120000 index d7edba5f487..00000000000 --- a/_sources/devel/gitwash/development_workflow.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/development_workflow.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/dot2_dot3.rst.txt b/_sources/devel/gitwash/dot2_dot3.rst.txt deleted file mode 120000 index 85c26fb3c56..00000000000 --- a/_sources/devel/gitwash/dot2_dot3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/dot2_dot3.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/dot2_dot3.txt b/_sources/devel/gitwash/dot2_dot3.txt deleted file mode 120000 index b53d42ae479..00000000000 --- a/_sources/devel/gitwash/dot2_dot3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/dot2_dot3.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/following_latest.rst.txt b/_sources/devel/gitwash/following_latest.rst.txt deleted file mode 120000 index ac73c23f9b7..00000000000 --- a/_sources/devel/gitwash/following_latest.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/following_latest.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/following_latest.txt b/_sources/devel/gitwash/following_latest.txt deleted file mode 120000 index 124c4b90446..00000000000 --- a/_sources/devel/gitwash/following_latest.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/following_latest.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/forking_hell.rst.txt b/_sources/devel/gitwash/forking_hell.rst.txt deleted file mode 120000 index afe973d45fe..00000000000 --- a/_sources/devel/gitwash/forking_hell.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/forking_hell.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/forking_hell.txt b/_sources/devel/gitwash/forking_hell.txt deleted file mode 120000 index 110a7ba9535..00000000000 --- a/_sources/devel/gitwash/forking_hell.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/forking_hell.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_development.rst.txt b/_sources/devel/gitwash/git_development.rst.txt deleted file mode 120000 index 2d71374eb93..00000000000 --- a/_sources/devel/gitwash/git_development.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/git_development.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_development.txt b/_sources/devel/gitwash/git_development.txt deleted file mode 120000 index 6ce9e945163..00000000000 --- a/_sources/devel/gitwash/git_development.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/git_development.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_install.rst.txt b/_sources/devel/gitwash/git_install.rst.txt deleted file mode 120000 index 385f0766134..00000000000 --- a/_sources/devel/gitwash/git_install.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/git_install.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_install.txt b/_sources/devel/gitwash/git_install.txt deleted file mode 120000 index f83c17fb4ce..00000000000 --- a/_sources/devel/gitwash/git_install.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/git_install.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_intro.rst.txt b/_sources/devel/gitwash/git_intro.rst.txt deleted file mode 120000 index 4989b43ac2c..00000000000 --- a/_sources/devel/gitwash/git_intro.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/git_intro.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_intro.txt b/_sources/devel/gitwash/git_intro.txt deleted file mode 120000 index 9a46178b264..00000000000 --- a/_sources/devel/gitwash/git_intro.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/git_intro.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_resources.rst.txt b/_sources/devel/gitwash/git_resources.rst.txt deleted file mode 120000 index 009a1de98cb..00000000000 --- a/_sources/devel/gitwash/git_resources.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/git_resources.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/git_resources.txt b/_sources/devel/gitwash/git_resources.txt deleted file mode 120000 index 99fc6925e10..00000000000 --- a/_sources/devel/gitwash/git_resources.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/git_resources.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/index.rst.txt b/_sources/devel/gitwash/index.rst.txt deleted file mode 120000 index c36a4407d32..00000000000 --- a/_sources/devel/gitwash/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/index.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/index.txt b/_sources/devel/gitwash/index.txt deleted file mode 120000 index 48dcfcd4f3f..00000000000 --- a/_sources/devel/gitwash/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/index.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/maintainer_workflow.rst.txt b/_sources/devel/gitwash/maintainer_workflow.rst.txt deleted file mode 120000 index 1ec7ef19813..00000000000 --- a/_sources/devel/gitwash/maintainer_workflow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/maintainer_workflow.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/patching.rst.txt b/_sources/devel/gitwash/patching.rst.txt deleted file mode 120000 index a72ecdfb396..00000000000 --- a/_sources/devel/gitwash/patching.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/patching.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/patching.txt b/_sources/devel/gitwash/patching.txt deleted file mode 120000 index 4ad370961b9..00000000000 --- a/_sources/devel/gitwash/patching.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/patching.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/set_up_fork.rst.txt b/_sources/devel/gitwash/set_up_fork.rst.txt deleted file mode 120000 index 906465e81a8..00000000000 --- a/_sources/devel/gitwash/set_up_fork.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/devel/gitwash/set_up_fork.rst.txt \ No newline at end of file diff --git a/_sources/devel/gitwash/set_up_fork.txt b/_sources/devel/gitwash/set_up_fork.txt deleted file mode 120000 index ba9f2e0c2ba..00000000000 --- a/_sources/devel/gitwash/set_up_fork.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/devel/gitwash/set_up_fork.txt \ No newline at end of file diff --git a/_sources/devel/index.rst.txt b/_sources/devel/index.rst.txt deleted file mode 120000 index c84df635ff0..00000000000 --- a/_sources/devel/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/index.rst.txt \ No newline at end of file diff --git a/_sources/devel/index.txt b/_sources/devel/index.txt deleted file mode 120000 index 4b4cfebfbc6..00000000000 --- a/_sources/devel/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/index.txt \ No newline at end of file diff --git a/_sources/devel/license.rst.txt b/_sources/devel/license.rst.txt deleted file mode 120000 index 60ad3cd5509..00000000000 --- a/_sources/devel/license.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/license.rst.txt \ No newline at end of file diff --git a/_sources/devel/license.txt b/_sources/devel/license.txt deleted file mode 120000 index 3219048cfb5..00000000000 --- a/_sources/devel/license.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/license.txt \ No newline at end of file diff --git a/_sources/devel/min_dep_policy.rst.txt b/_sources/devel/min_dep_policy.rst.txt deleted file mode 120000 index 8072d0d9dcb..00000000000 --- a/_sources/devel/min_dep_policy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/min_dep_policy.rst.txt \ No newline at end of file diff --git a/_sources/devel/plot_directive.rst.txt b/_sources/devel/plot_directive.rst.txt deleted file mode 120000 index 2e99b8360e6..00000000000 --- a/_sources/devel/plot_directive.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_sources/devel/plot_directive.rst.txt \ No newline at end of file diff --git a/_sources/devel/portable_code.rst.txt b/_sources/devel/portable_code.rst.txt deleted file mode 120000 index 6523b33d7ae..00000000000 --- a/_sources/devel/portable_code.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/_sources/devel/portable_code.rst.txt \ No newline at end of file diff --git a/_sources/devel/portable_code.txt b/_sources/devel/portable_code.txt deleted file mode 120000 index f3e35d95f37..00000000000 --- a/_sources/devel/portable_code.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/portable_code.txt \ No newline at end of file diff --git a/_sources/devel/release_guide.rst.txt b/_sources/devel/release_guide.rst.txt deleted file mode 120000 index 1ca562c19a8..00000000000 --- a/_sources/devel/release_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/release_guide.rst.txt \ No newline at end of file diff --git a/_sources/devel/release_guide.txt b/_sources/devel/release_guide.txt deleted file mode 120000 index ee3f76045a8..00000000000 --- a/_sources/devel/release_guide.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/release_guide.txt \ No newline at end of file diff --git a/_sources/devel/style_guide.rst.txt b/_sources/devel/style_guide.rst.txt deleted file mode 120000 index 6e54cf5a8cf..00000000000 --- a/_sources/devel/style_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/style_guide.rst.txt \ No newline at end of file diff --git a/_sources/devel/testing.rst.txt b/_sources/devel/testing.rst.txt deleted file mode 120000 index 8311571b8f4..00000000000 --- a/_sources/devel/testing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/testing.rst.txt \ No newline at end of file diff --git a/_sources/devel/testing.txt b/_sources/devel/testing.txt deleted file mode 120000 index 9005d148887..00000000000 --- a/_sources/devel/testing.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/testing.txt \ No newline at end of file diff --git a/_sources/devel/transformations.txt b/_sources/devel/transformations.txt deleted file mode 120000 index 1c4655d8593..00000000000 --- a/_sources/devel/transformations.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/devel/transformations.txt \ No newline at end of file diff --git a/_sources/devel/triage.rst.txt b/_sources/devel/triage.rst.txt deleted file mode 120000 index 0b4a6b4f4c5..00000000000 --- a/_sources/devel/triage.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/devel/triage.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/animate_decay.rst.txt b/_sources/examples/animation/animate_decay.rst.txt deleted file mode 120000 index 8be6b470633..00000000000 --- a/_sources/examples/animation/animate_decay.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/animate_decay.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/animate_decay.txt b/_sources/examples/animation/animate_decay.txt deleted file mode 120000 index 4bdd1908f81..00000000000 --- a/_sources/examples/animation/animate_decay.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/animate_decay.txt \ No newline at end of file diff --git a/_sources/examples/animation/basic_example.rst.txt b/_sources/examples/animation/basic_example.rst.txt deleted file mode 120000 index 6e19a930af8..00000000000 --- a/_sources/examples/animation/basic_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/basic_example.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/basic_example.txt b/_sources/examples/animation/basic_example.txt deleted file mode 120000 index e7a1cb6354f..00000000000 --- a/_sources/examples/animation/basic_example.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/basic_example.txt \ No newline at end of file diff --git a/_sources/examples/animation/basic_example_writer.rst.txt b/_sources/examples/animation/basic_example_writer.rst.txt deleted file mode 120000 index abac17dde2f..00000000000 --- a/_sources/examples/animation/basic_example_writer.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/basic_example_writer.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/basic_example_writer.txt b/_sources/examples/animation/basic_example_writer.txt deleted file mode 120000 index bb680aca1b4..00000000000 --- a/_sources/examples/animation/basic_example_writer.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/basic_example_writer.txt \ No newline at end of file diff --git a/_sources/examples/animation/bayes_update.rst.txt b/_sources/examples/animation/bayes_update.rst.txt deleted file mode 120000 index 13c8ab2c864..00000000000 --- a/_sources/examples/animation/bayes_update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/bayes_update.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/bayes_update.txt b/_sources/examples/animation/bayes_update.txt deleted file mode 120000 index 6fa0a0dae26..00000000000 --- a/_sources/examples/animation/bayes_update.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/bayes_update.txt \ No newline at end of file diff --git a/_sources/examples/animation/double_pendulum_animated.rst.txt b/_sources/examples/animation/double_pendulum_animated.rst.txt deleted file mode 120000 index edfa5080764..00000000000 --- a/_sources/examples/animation/double_pendulum_animated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/double_pendulum_animated.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/double_pendulum_animated.txt b/_sources/examples/animation/double_pendulum_animated.txt deleted file mode 120000 index e833e7ea6cd..00000000000 --- a/_sources/examples/animation/double_pendulum_animated.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/double_pendulum_animated.txt \ No newline at end of file diff --git a/_sources/examples/animation/dynamic_image.rst.txt b/_sources/examples/animation/dynamic_image.rst.txt deleted file mode 120000 index 3245f852722..00000000000 --- a/_sources/examples/animation/dynamic_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/dynamic_image.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/dynamic_image.txt b/_sources/examples/animation/dynamic_image.txt deleted file mode 120000 index 6f3a3c7ffad..00000000000 --- a/_sources/examples/animation/dynamic_image.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/dynamic_image.txt \ No newline at end of file diff --git a/_sources/examples/animation/dynamic_image2.rst.txt b/_sources/examples/animation/dynamic_image2.rst.txt deleted file mode 120000 index bc97fec903e..00000000000 --- a/_sources/examples/animation/dynamic_image2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/dynamic_image2.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/dynamic_image2.txt b/_sources/examples/animation/dynamic_image2.txt deleted file mode 120000 index e8e61a00e86..00000000000 --- a/_sources/examples/animation/dynamic_image2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/dynamic_image2.txt \ No newline at end of file diff --git a/_sources/examples/animation/histogram.rst.txt b/_sources/examples/animation/histogram.rst.txt deleted file mode 120000 index 481475ced64..00000000000 --- a/_sources/examples/animation/histogram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/histogram.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/histogram.txt b/_sources/examples/animation/histogram.txt deleted file mode 120000 index f423359a6e2..00000000000 --- a/_sources/examples/animation/histogram.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/histogram.txt \ No newline at end of file diff --git a/_sources/examples/animation/index.rst.txt b/_sources/examples/animation/index.rst.txt deleted file mode 120000 index 2d3290b4e9e..00000000000 --- a/_sources/examples/animation/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/index.txt b/_sources/examples/animation/index.txt deleted file mode 120000 index dccaf9e1019..00000000000 --- a/_sources/examples/animation/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/index.txt \ No newline at end of file diff --git a/_sources/examples/animation/moviewriter.rst.txt b/_sources/examples/animation/moviewriter.rst.txt deleted file mode 120000 index 714e3fc6aa8..00000000000 --- a/_sources/examples/animation/moviewriter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/moviewriter.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/moviewriter.txt b/_sources/examples/animation/moviewriter.txt deleted file mode 120000 index 075eda7ecf7..00000000000 --- a/_sources/examples/animation/moviewriter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/moviewriter.txt \ No newline at end of file diff --git a/_sources/examples/animation/rain.rst.txt b/_sources/examples/animation/rain.rst.txt deleted file mode 120000 index 8b2aad80db1..00000000000 --- a/_sources/examples/animation/rain.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/rain.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/rain.txt b/_sources/examples/animation/rain.txt deleted file mode 120000 index cbaf536223f..00000000000 --- a/_sources/examples/animation/rain.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/rain.txt \ No newline at end of file diff --git a/_sources/examples/animation/random_data.rst.txt b/_sources/examples/animation/random_data.rst.txt deleted file mode 120000 index dcc9d49dbd2..00000000000 --- a/_sources/examples/animation/random_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/random_data.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/random_data.txt b/_sources/examples/animation/random_data.txt deleted file mode 120000 index 92587a4f81c..00000000000 --- a/_sources/examples/animation/random_data.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/random_data.txt \ No newline at end of file diff --git a/_sources/examples/animation/simple_3danim.rst.txt b/_sources/examples/animation/simple_3danim.rst.txt deleted file mode 120000 index 6908ee28cd1..00000000000 --- a/_sources/examples/animation/simple_3danim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/simple_3danim.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/simple_3danim.txt b/_sources/examples/animation/simple_3danim.txt deleted file mode 120000 index cb903e9b901..00000000000 --- a/_sources/examples/animation/simple_3danim.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/simple_3danim.txt \ No newline at end of file diff --git a/_sources/examples/animation/simple_anim.rst.txt b/_sources/examples/animation/simple_anim.rst.txt deleted file mode 120000 index 945313b4268..00000000000 --- a/_sources/examples/animation/simple_anim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/simple_anim.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/simple_anim.txt b/_sources/examples/animation/simple_anim.txt deleted file mode 120000 index 359c5e8ff45..00000000000 --- a/_sources/examples/animation/simple_anim.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/simple_anim.txt \ No newline at end of file diff --git a/_sources/examples/animation/strip_chart_demo.rst.txt b/_sources/examples/animation/strip_chart_demo.rst.txt deleted file mode 120000 index 25efe4ab918..00000000000 --- a/_sources/examples/animation/strip_chart_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/strip_chart_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/strip_chart_demo.txt b/_sources/examples/animation/strip_chart_demo.txt deleted file mode 120000 index ae4106aa0a5..00000000000 --- a/_sources/examples/animation/strip_chart_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/strip_chart_demo.txt \ No newline at end of file diff --git a/_sources/examples/animation/subplots.rst.txt b/_sources/examples/animation/subplots.rst.txt deleted file mode 120000 index f1cd841268b..00000000000 --- a/_sources/examples/animation/subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/subplots.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/subplots.txt b/_sources/examples/animation/subplots.txt deleted file mode 120000 index 98896c473ea..00000000000 --- a/_sources/examples/animation/subplots.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/subplots.txt \ No newline at end of file diff --git a/_sources/examples/animation/unchained.rst.txt b/_sources/examples/animation/unchained.rst.txt deleted file mode 120000 index 38492286eae..00000000000 --- a/_sources/examples/animation/unchained.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/animation/unchained.rst.txt \ No newline at end of file diff --git a/_sources/examples/animation/unchained.txt b/_sources/examples/animation/unchained.txt deleted file mode 120000 index e98e861f0f1..00000000000 --- a/_sources/examples/animation/unchained.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/animation/unchained.txt \ No newline at end of file diff --git a/_sources/examples/api/agg_oo.rst.txt b/_sources/examples/api/agg_oo.rst.txt deleted file mode 120000 index 7c3ad844195..00000000000 --- a/_sources/examples/api/agg_oo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/agg_oo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/agg_oo.txt b/_sources/examples/api/agg_oo.txt deleted file mode 120000 index af3dfa3cd4d..00000000000 --- a/_sources/examples/api/agg_oo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/agg_oo.txt \ No newline at end of file diff --git a/_sources/examples/api/artist_demo.txt b/_sources/examples/api/artist_demo.txt deleted file mode 120000 index 1eff1499961..00000000000 --- a/_sources/examples/api/artist_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/api/artist_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/barchart_demo.rst.txt b/_sources/examples/api/barchart_demo.rst.txt deleted file mode 120000 index aba3b18a252..00000000000 --- a/_sources/examples/api/barchart_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/barchart_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/barchart_demo.txt b/_sources/examples/api/barchart_demo.txt deleted file mode 120000 index bfc22be29ca..00000000000 --- a/_sources/examples/api/barchart_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/barchart_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/bbox_intersect.rst.txt b/_sources/examples/api/bbox_intersect.rst.txt deleted file mode 120000 index bd509ac4f44..00000000000 --- a/_sources/examples/api/bbox_intersect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/bbox_intersect.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/bbox_intersect.txt b/_sources/examples/api/bbox_intersect.txt deleted file mode 120000 index bedb52b0cb3..00000000000 --- a/_sources/examples/api/bbox_intersect.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/bbox_intersect.txt \ No newline at end of file diff --git a/_sources/examples/api/clippath_demo.txt b/_sources/examples/api/clippath_demo.txt deleted file mode 120000 index 7f5e705bfeb..00000000000 --- a/_sources/examples/api/clippath_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/api/clippath_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/collections_demo.rst.txt b/_sources/examples/api/collections_demo.rst.txt deleted file mode 120000 index a17bdafb4f8..00000000000 --- a/_sources/examples/api/collections_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/collections_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/collections_demo.txt b/_sources/examples/api/collections_demo.txt deleted file mode 120000 index 235fd925cd1..00000000000 --- a/_sources/examples/api/collections_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/collections_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/color_cycle.txt b/_sources/examples/api/color_cycle.txt deleted file mode 120000 index 9ebb0ee3fa6..00000000000 --- a/_sources/examples/api/color_cycle.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/api/color_cycle.txt \ No newline at end of file diff --git a/_sources/examples/api/colorbar_basics.rst.txt b/_sources/examples/api/colorbar_basics.rst.txt deleted file mode 120000 index d9f3a3dc149..00000000000 --- a/_sources/examples/api/colorbar_basics.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/colorbar_basics.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/colorbar_only.rst.txt b/_sources/examples/api/colorbar_only.rst.txt deleted file mode 120000 index 2452ef9a6ed..00000000000 --- a/_sources/examples/api/colorbar_only.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/colorbar_only.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/colorbar_only.txt b/_sources/examples/api/colorbar_only.txt deleted file mode 120000 index e2e0bbd3b4c..00000000000 --- a/_sources/examples/api/colorbar_only.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/colorbar_only.txt \ No newline at end of file diff --git a/_sources/examples/api/compound_path.rst.txt b/_sources/examples/api/compound_path.rst.txt deleted file mode 120000 index 54a8aa0e979..00000000000 --- a/_sources/examples/api/compound_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/compound_path.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/compound_path.txt b/_sources/examples/api/compound_path.txt deleted file mode 120000 index cfbb8a5c1f3..00000000000 --- a/_sources/examples/api/compound_path.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/compound_path.txt \ No newline at end of file diff --git a/_sources/examples/api/custom_projection_example.rst.txt b/_sources/examples/api/custom_projection_example.rst.txt deleted file mode 120000 index e855fd9bacd..00000000000 --- a/_sources/examples/api/custom_projection_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/custom_projection_example.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/custom_projection_example.txt b/_sources/examples/api/custom_projection_example.txt deleted file mode 120000 index b1de7929ad1..00000000000 --- a/_sources/examples/api/custom_projection_example.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/custom_projection_example.txt \ No newline at end of file diff --git a/_sources/examples/api/custom_scale_example.rst.txt b/_sources/examples/api/custom_scale_example.rst.txt deleted file mode 120000 index 181f7243d76..00000000000 --- a/_sources/examples/api/custom_scale_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/custom_scale_example.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/custom_scale_example.txt b/_sources/examples/api/custom_scale_example.txt deleted file mode 120000 index 98e824c13f9..00000000000 --- a/_sources/examples/api/custom_scale_example.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/custom_scale_example.txt \ No newline at end of file diff --git a/_sources/examples/api/date_demo.rst.txt b/_sources/examples/api/date_demo.rst.txt deleted file mode 120000 index 100578da168..00000000000 --- a/_sources/examples/api/date_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/date_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/date_demo.txt b/_sources/examples/api/date_demo.txt deleted file mode 120000 index eaa62a1f475..00000000000 --- a/_sources/examples/api/date_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/date_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/date_index_formatter.rst.txt b/_sources/examples/api/date_index_formatter.rst.txt deleted file mode 120000 index fea3074842c..00000000000 --- a/_sources/examples/api/date_index_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/date_index_formatter.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/date_index_formatter.txt b/_sources/examples/api/date_index_formatter.txt deleted file mode 120000 index e10fa7b7279..00000000000 --- a/_sources/examples/api/date_index_formatter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/date_index_formatter.txt \ No newline at end of file diff --git a/_sources/examples/api/demo_affine_image.rst.txt b/_sources/examples/api/demo_affine_image.rst.txt deleted file mode 120000 index 2ae765436c6..00000000000 --- a/_sources/examples/api/demo_affine_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/demo_affine_image.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/demo_affine_image.txt b/_sources/examples/api/demo_affine_image.txt deleted file mode 120000 index 0b117753abe..00000000000 --- a/_sources/examples/api/demo_affine_image.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/demo_affine_image.txt \ No newline at end of file diff --git a/_sources/examples/api/donut_demo.rst.txt b/_sources/examples/api/donut_demo.rst.txt deleted file mode 120000 index 8b0a0afd6c0..00000000000 --- a/_sources/examples/api/donut_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/donut_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/donut_demo.txt b/_sources/examples/api/donut_demo.txt deleted file mode 120000 index 9583b301553..00000000000 --- a/_sources/examples/api/donut_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/donut_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/engineering_formatter.rst.txt b/_sources/examples/api/engineering_formatter.rst.txt deleted file mode 120000 index 0b0f14fa016..00000000000 --- a/_sources/examples/api/engineering_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/engineering_formatter.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/engineering_formatter.txt b/_sources/examples/api/engineering_formatter.txt deleted file mode 120000 index a5da6765404..00000000000 --- a/_sources/examples/api/engineering_formatter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/engineering_formatter.txt \ No newline at end of file diff --git a/_sources/examples/api/fahrenheit_celsius_scales.txt b/_sources/examples/api/fahrenheit_celsius_scales.txt deleted file mode 120000 index ddd7e611cc8..00000000000 --- a/_sources/examples/api/fahrenheit_celsius_scales.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/api/fahrenheit_celsius_scales.txt \ No newline at end of file diff --git a/_sources/examples/api/filled_step.rst.txt b/_sources/examples/api/filled_step.rst.txt deleted file mode 120000 index a17880d8bcc..00000000000 --- a/_sources/examples/api/filled_step.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/filled_step.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/filled_step.txt b/_sources/examples/api/filled_step.txt deleted file mode 120000 index e1e5b47d6ec..00000000000 --- a/_sources/examples/api/filled_step.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/filled_step.txt \ No newline at end of file diff --git a/_sources/examples/api/font_family_rc.rst.txt b/_sources/examples/api/font_family_rc.rst.txt deleted file mode 120000 index 1215cc3b012..00000000000 --- a/_sources/examples/api/font_family_rc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/font_family_rc.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/font_family_rc.txt b/_sources/examples/api/font_family_rc.txt deleted file mode 120000 index 1d3f4e7fcf0..00000000000 --- a/_sources/examples/api/font_family_rc.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/font_family_rc.txt \ No newline at end of file diff --git a/_sources/examples/api/font_file.rst.txt b/_sources/examples/api/font_file.rst.txt deleted file mode 120000 index b173d8f4e23..00000000000 --- a/_sources/examples/api/font_file.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/font_file.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/font_file.txt b/_sources/examples/api/font_file.txt deleted file mode 120000 index 6724c36bca4..00000000000 --- a/_sources/examples/api/font_file.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/font_file.txt \ No newline at end of file diff --git a/_sources/examples/api/hinton_demo.txt b/_sources/examples/api/hinton_demo.txt deleted file mode 120000 index 1fa86defcad..00000000000 --- a/_sources/examples/api/hinton_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/api/hinton_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/histogram_demo.txt b/_sources/examples/api/histogram_demo.txt deleted file mode 120000 index cf54a33cbfe..00000000000 --- a/_sources/examples/api/histogram_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/api/histogram_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/histogram_path_demo.rst.txt b/_sources/examples/api/histogram_path_demo.rst.txt deleted file mode 120000 index e4e82ef794f..00000000000 --- a/_sources/examples/api/histogram_path_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/histogram_path_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/histogram_path_demo.txt b/_sources/examples/api/histogram_path_demo.txt deleted file mode 120000 index 443c3e38701..00000000000 --- a/_sources/examples/api/histogram_path_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/histogram_path_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/image_zcoord.rst.txt b/_sources/examples/api/image_zcoord.rst.txt deleted file mode 120000 index cf7181d4152..00000000000 --- a/_sources/examples/api/image_zcoord.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/image_zcoord.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/image_zcoord.txt b/_sources/examples/api/image_zcoord.txt deleted file mode 120000 index 02ffe9e2221..00000000000 --- a/_sources/examples/api/image_zcoord.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/image_zcoord.txt \ No newline at end of file diff --git a/_sources/examples/api/index.rst.txt b/_sources/examples/api/index.rst.txt deleted file mode 120000 index deb8dab8ebb..00000000000 --- a/_sources/examples/api/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/index.txt b/_sources/examples/api/index.txt deleted file mode 120000 index e57326c2824..00000000000 --- a/_sources/examples/api/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/index.txt \ No newline at end of file diff --git a/_sources/examples/api/joinstyle.rst.txt b/_sources/examples/api/joinstyle.rst.txt deleted file mode 120000 index 23e695ba37a..00000000000 --- a/_sources/examples/api/joinstyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/joinstyle.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/joinstyle.txt b/_sources/examples/api/joinstyle.txt deleted file mode 120000 index 78598f313a6..00000000000 --- a/_sources/examples/api/joinstyle.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/joinstyle.txt \ No newline at end of file diff --git a/_sources/examples/api/legend_demo.rst.txt b/_sources/examples/api/legend_demo.rst.txt deleted file mode 120000 index cfca7c47909..00000000000 --- a/_sources/examples/api/legend_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/legend_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/legend_demo.txt b/_sources/examples/api/legend_demo.txt deleted file mode 120000 index ae72f0312cc..00000000000 --- a/_sources/examples/api/legend_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/legend_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/line_with_text.rst.txt b/_sources/examples/api/line_with_text.rst.txt deleted file mode 120000 index 677ccfd962f..00000000000 --- a/_sources/examples/api/line_with_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/line_with_text.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/line_with_text.txt b/_sources/examples/api/line_with_text.txt deleted file mode 120000 index b65ba2852c1..00000000000 --- a/_sources/examples/api/line_with_text.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/line_with_text.txt \ No newline at end of file diff --git a/_sources/examples/api/logo2.rst.txt b/_sources/examples/api/logo2.rst.txt deleted file mode 120000 index 109a6c52584..00000000000 --- a/_sources/examples/api/logo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/logo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/logo2.txt b/_sources/examples/api/logo2.txt deleted file mode 120000 index c184ba63601..00000000000 --- a/_sources/examples/api/logo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/logo2.txt \ No newline at end of file diff --git a/_sources/examples/api/mathtext_asarray.rst.txt b/_sources/examples/api/mathtext_asarray.rst.txt deleted file mode 120000 index 6609b91169c..00000000000 --- a/_sources/examples/api/mathtext_asarray.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/mathtext_asarray.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/mathtext_asarray.txt b/_sources/examples/api/mathtext_asarray.txt deleted file mode 120000 index fa8567817d2..00000000000 --- a/_sources/examples/api/mathtext_asarray.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/mathtext_asarray.txt \ No newline at end of file diff --git a/_sources/examples/api/patch_collection.rst.txt b/_sources/examples/api/patch_collection.rst.txt deleted file mode 120000 index 5de54e69fbf..00000000000 --- a/_sources/examples/api/patch_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/patch_collection.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/patch_collection.txt b/_sources/examples/api/patch_collection.txt deleted file mode 120000 index 6f8b60afb80..00000000000 --- a/_sources/examples/api/patch_collection.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/patch_collection.txt \ No newline at end of file diff --git a/_sources/examples/api/path_patch_demo.txt b/_sources/examples/api/path_patch_demo.txt deleted file mode 120000 index ca0095b0711..00000000000 --- a/_sources/examples/api/path_patch_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/api/path_patch_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/power_norm_demo.rst.txt b/_sources/examples/api/power_norm_demo.rst.txt deleted file mode 120000 index 9956e9e6583..00000000000 --- a/_sources/examples/api/power_norm_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/power_norm_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/power_norm_demo.txt b/_sources/examples/api/power_norm_demo.txt deleted file mode 120000 index b93f82473b9..00000000000 --- a/_sources/examples/api/power_norm_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/power_norm_demo.txt \ No newline at end of file diff --git a/_sources/examples/api/quad_bezier.rst.txt b/_sources/examples/api/quad_bezier.rst.txt deleted file mode 120000 index 9ea450a212d..00000000000 --- a/_sources/examples/api/quad_bezier.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/quad_bezier.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/quad_bezier.txt b/_sources/examples/api/quad_bezier.txt deleted file mode 120000 index e278681c62f..00000000000 --- a/_sources/examples/api/quad_bezier.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/quad_bezier.txt \ No newline at end of file diff --git a/_sources/examples/api/radar_chart.rst.txt b/_sources/examples/api/radar_chart.rst.txt deleted file mode 120000 index 0d55b754e13..00000000000 --- a/_sources/examples/api/radar_chart.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/radar_chart.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/radar_chart.txt b/_sources/examples/api/radar_chart.txt deleted file mode 120000 index d4290888049..00000000000 --- a/_sources/examples/api/radar_chart.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/radar_chart.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_basics.rst.txt b/_sources/examples/api/sankey_demo_basics.rst.txt deleted file mode 120000 index 7e297c51653..00000000000 --- a/_sources/examples/api/sankey_demo_basics.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/sankey_demo_basics.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_basics.txt b/_sources/examples/api/sankey_demo_basics.txt deleted file mode 120000 index 6ffd1083703..00000000000 --- a/_sources/examples/api/sankey_demo_basics.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/sankey_demo_basics.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_links.rst.txt b/_sources/examples/api/sankey_demo_links.rst.txt deleted file mode 120000 index d786d0b6b04..00000000000 --- a/_sources/examples/api/sankey_demo_links.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/sankey_demo_links.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_links.txt b/_sources/examples/api/sankey_demo_links.txt deleted file mode 120000 index 6570e723bea..00000000000 --- a/_sources/examples/api/sankey_demo_links.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/sankey_demo_links.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_old.rst.txt b/_sources/examples/api/sankey_demo_old.rst.txt deleted file mode 120000 index 5544a6654ed..00000000000 --- a/_sources/examples/api/sankey_demo_old.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/sankey_demo_old.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_old.txt b/_sources/examples/api/sankey_demo_old.txt deleted file mode 120000 index e94ddedbe75..00000000000 --- a/_sources/examples/api/sankey_demo_old.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/sankey_demo_old.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_rankine.rst.txt b/_sources/examples/api/sankey_demo_rankine.rst.txt deleted file mode 120000 index b95416ae045..00000000000 --- a/_sources/examples/api/sankey_demo_rankine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/sankey_demo_rankine.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/sankey_demo_rankine.txt b/_sources/examples/api/sankey_demo_rankine.txt deleted file mode 120000 index dac9e9c958f..00000000000 --- a/_sources/examples/api/sankey_demo_rankine.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/sankey_demo_rankine.txt \ No newline at end of file diff --git a/_sources/examples/api/scatter_piecharts.rst.txt b/_sources/examples/api/scatter_piecharts.rst.txt deleted file mode 120000 index 452b68390ac..00000000000 --- a/_sources/examples/api/scatter_piecharts.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/scatter_piecharts.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/scatter_piecharts.txt b/_sources/examples/api/scatter_piecharts.txt deleted file mode 120000 index 0f076587db4..00000000000 --- a/_sources/examples/api/scatter_piecharts.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/scatter_piecharts.txt \ No newline at end of file diff --git a/_sources/examples/api/skewt.rst.txt b/_sources/examples/api/skewt.rst.txt deleted file mode 120000 index 3e3384c7e90..00000000000 --- a/_sources/examples/api/skewt.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/skewt.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/skewt.txt b/_sources/examples/api/skewt.txt deleted file mode 120000 index dbf338af9a4..00000000000 --- a/_sources/examples/api/skewt.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/skewt.txt \ No newline at end of file diff --git a/_sources/examples/api/span_regions.rst.txt b/_sources/examples/api/span_regions.rst.txt deleted file mode 120000 index a93a84a2b98..00000000000 --- a/_sources/examples/api/span_regions.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/span_regions.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/span_regions.txt b/_sources/examples/api/span_regions.txt deleted file mode 120000 index 282f2148710..00000000000 --- a/_sources/examples/api/span_regions.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/span_regions.txt \ No newline at end of file diff --git a/_sources/examples/api/two_scales.rst.txt b/_sources/examples/api/two_scales.rst.txt deleted file mode 120000 index 1fad219b53b..00000000000 --- a/_sources/examples/api/two_scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/two_scales.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/two_scales.txt b/_sources/examples/api/two_scales.txt deleted file mode 120000 index 418afaa2762..00000000000 --- a/_sources/examples/api/two_scales.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/two_scales.txt \ No newline at end of file diff --git a/_sources/examples/api/unicode_minus.rst.txt b/_sources/examples/api/unicode_minus.rst.txt deleted file mode 120000 index 62484e9e073..00000000000 --- a/_sources/examples/api/unicode_minus.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/unicode_minus.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/unicode_minus.txt b/_sources/examples/api/unicode_minus.txt deleted file mode 120000 index 4595502cddd..00000000000 --- a/_sources/examples/api/unicode_minus.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/unicode_minus.txt \ No newline at end of file diff --git a/_sources/examples/api/watermark_image.rst.txt b/_sources/examples/api/watermark_image.rst.txt deleted file mode 120000 index baf23f273c6..00000000000 --- a/_sources/examples/api/watermark_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/watermark_image.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/watermark_image.txt b/_sources/examples/api/watermark_image.txt deleted file mode 120000 index 59cccd09f2d..00000000000 --- a/_sources/examples/api/watermark_image.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/watermark_image.txt \ No newline at end of file diff --git a/_sources/examples/api/watermark_text.rst.txt b/_sources/examples/api/watermark_text.rst.txt deleted file mode 120000 index 3699249ca0b..00000000000 --- a/_sources/examples/api/watermark_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/api/watermark_text.rst.txt \ No newline at end of file diff --git a/_sources/examples/api/watermark_text.txt b/_sources/examples/api/watermark_text.txt deleted file mode 120000 index 9cb09e1e12e..00000000000 --- a/_sources/examples/api/watermark_text.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/api/watermark_text.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_divider.rst.txt b/_sources/examples/axes_grid/demo_axes_divider.rst.txt deleted file mode 120000 index b8baa2cd0ca..00000000000 --- a/_sources/examples/axes_grid/demo_axes_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_axes_divider.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_divider.txt b/_sources/examples/axes_grid/demo_axes_divider.txt deleted file mode 120000 index 06e727c89b7..00000000000 --- a/_sources/examples/axes_grid/demo_axes_divider.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_axes_divider.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_grid.rst.txt b/_sources/examples/axes_grid/demo_axes_grid.rst.txt deleted file mode 120000 index 57d3e4d0aac..00000000000 --- a/_sources/examples/axes_grid/demo_axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_grid.txt b/_sources/examples/axes_grid/demo_axes_grid.txt deleted file mode 120000 index 2e0c1b9839a..00000000000 --- a/_sources/examples/axes_grid/demo_axes_grid.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_axes_grid.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_grid2.rst.txt b/_sources/examples/axes_grid/demo_axes_grid2.rst.txt deleted file mode 120000 index ce86d4793a6..00000000000 --- a/_sources/examples/axes_grid/demo_axes_grid2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_axes_grid2.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_grid2.txt b/_sources/examples/axes_grid/demo_axes_grid2.txt deleted file mode 120000 index 302368b60e2..00000000000 --- a/_sources/examples/axes_grid/demo_axes_grid2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_axes_grid2.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_hbox_divider.rst.txt b/_sources/examples/axes_grid/demo_axes_hbox_divider.rst.txt deleted file mode 120000 index eb60e113886..00000000000 --- a/_sources/examples/axes_grid/demo_axes_hbox_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_axes_hbox_divider.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_hbox_divider.txt b/_sources/examples/axes_grid/demo_axes_hbox_divider.txt deleted file mode 120000 index 58231cafde1..00000000000 --- a/_sources/examples/axes_grid/demo_axes_hbox_divider.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_axes_hbox_divider.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_rgb.rst.txt b/_sources/examples/axes_grid/demo_axes_rgb.rst.txt deleted file mode 120000 index ee4ea043288..00000000000 --- a/_sources/examples/axes_grid/demo_axes_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_axes_rgb.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axes_rgb.txt b/_sources/examples/axes_grid/demo_axes_rgb.txt deleted file mode 120000 index 530cba81a6c..00000000000 --- a/_sources/examples/axes_grid/demo_axes_rgb.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_axes_rgb.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axisline_style.rst.txt b/_sources/examples/axes_grid/demo_axisline_style.rst.txt deleted file mode 120000 index 1cf7cf19534..00000000000 --- a/_sources/examples/axes_grid/demo_axisline_style.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_axisline_style.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_axisline_style.txt b/_sources/examples/axes_grid/demo_axisline_style.txt deleted file mode 120000 index 992ab5abb04..00000000000 --- a/_sources/examples/axes_grid/demo_axisline_style.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_axisline_style.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.rst.txt b/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.rst.txt deleted file mode 120000 index dbfce226b73..00000000000 --- a/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.txt b/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.txt deleted file mode 120000 index 8fc796735aa..00000000000 --- a/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_colorbar_with_inset_locator.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_curvelinear_grid.rst.txt b/_sources/examples/axes_grid/demo_curvelinear_grid.rst.txt deleted file mode 120000 index 8d71c476aa5..00000000000 --- a/_sources/examples/axes_grid/demo_curvelinear_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_curvelinear_grid.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_curvelinear_grid.txt b/_sources/examples/axes_grid/demo_curvelinear_grid.txt deleted file mode 120000 index 0ead229df7e..00000000000 --- a/_sources/examples/axes_grid/demo_curvelinear_grid.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_curvelinear_grid.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_curvelinear_grid2.rst.txt b/_sources/examples/axes_grid/demo_curvelinear_grid2.rst.txt deleted file mode 120000 index b3156cc799f..00000000000 --- a/_sources/examples/axes_grid/demo_curvelinear_grid2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_curvelinear_grid2.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_curvelinear_grid2.txt b/_sources/examples/axes_grid/demo_curvelinear_grid2.txt deleted file mode 120000 index 8b557e1bd29..00000000000 --- a/_sources/examples/axes_grid/demo_curvelinear_grid2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_curvelinear_grid2.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_edge_colorbar.rst.txt b/_sources/examples/axes_grid/demo_edge_colorbar.rst.txt deleted file mode 120000 index 10613f405fa..00000000000 --- a/_sources/examples/axes_grid/demo_edge_colorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_edge_colorbar.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_edge_colorbar.txt b/_sources/examples/axes_grid/demo_edge_colorbar.txt deleted file mode 120000 index 648c25f2826..00000000000 --- a/_sources/examples/axes_grid/demo_edge_colorbar.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_edge_colorbar.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_floating_axes.rst.txt b/_sources/examples/axes_grid/demo_floating_axes.rst.txt deleted file mode 120000 index 0f1ade725a6..00000000000 --- a/_sources/examples/axes_grid/demo_floating_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_floating_axes.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_floating_axes.txt b/_sources/examples/axes_grid/demo_floating_axes.txt deleted file mode 120000 index 47d7f599630..00000000000 --- a/_sources/examples/axes_grid/demo_floating_axes.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_floating_axes.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_floating_axis.rst.txt b/_sources/examples/axes_grid/demo_floating_axis.rst.txt deleted file mode 120000 index 2a89fa2d507..00000000000 --- a/_sources/examples/axes_grid/demo_floating_axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_floating_axis.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_floating_axis.txt b/_sources/examples/axes_grid/demo_floating_axis.txt deleted file mode 120000 index 73fb7391562..00000000000 --- a/_sources/examples/axes_grid/demo_floating_axis.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_floating_axis.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_imagegrid_aspect.rst.txt b/_sources/examples/axes_grid/demo_imagegrid_aspect.rst.txt deleted file mode 120000 index 8739c7dcc91..00000000000 --- a/_sources/examples/axes_grid/demo_imagegrid_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_imagegrid_aspect.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_imagegrid_aspect.txt b/_sources/examples/axes_grid/demo_imagegrid_aspect.txt deleted file mode 120000 index b71e1116c6b..00000000000 --- a/_sources/examples/axes_grid/demo_imagegrid_aspect.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_imagegrid_aspect.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_parasite_axes2.rst.txt b/_sources/examples/axes_grid/demo_parasite_axes2.rst.txt deleted file mode 120000 index dc22ccac678..00000000000 --- a/_sources/examples/axes_grid/demo_parasite_axes2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/demo_parasite_axes2.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/demo_parasite_axes2.txt b/_sources/examples/axes_grid/demo_parasite_axes2.txt deleted file mode 120000 index c2b51067f52..00000000000 --- a/_sources/examples/axes_grid/demo_parasite_axes2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/demo_parasite_axes2.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/index.rst.txt b/_sources/examples/axes_grid/index.rst.txt deleted file mode 120000 index 7d08d6371ee..00000000000 --- a/_sources/examples/axes_grid/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/index.txt b/_sources/examples/axes_grid/index.txt deleted file mode 120000 index 2487dbcf927..00000000000 --- a/_sources/examples/axes_grid/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/index.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/inset_locator_demo.rst.txt b/_sources/examples/axes_grid/inset_locator_demo.rst.txt deleted file mode 120000 index dcb383442ed..00000000000 --- a/_sources/examples/axes_grid/inset_locator_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/inset_locator_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/inset_locator_demo.txt b/_sources/examples/axes_grid/inset_locator_demo.txt deleted file mode 120000 index 888af3cbf30..00000000000 --- a/_sources/examples/axes_grid/inset_locator_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/inset_locator_demo.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/inset_locator_demo2.rst.txt b/_sources/examples/axes_grid/inset_locator_demo2.rst.txt deleted file mode 120000 index 201085f1a00..00000000000 --- a/_sources/examples/axes_grid/inset_locator_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/inset_locator_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/inset_locator_demo2.txt b/_sources/examples/axes_grid/inset_locator_demo2.txt deleted file mode 120000 index caa2c76404c..00000000000 --- a/_sources/examples/axes_grid/inset_locator_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/inset_locator_demo2.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.rst.txt b/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.rst.txt deleted file mode 120000 index ab80700ad5c..00000000000 --- a/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.txt b/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.txt deleted file mode 120000 index 90be8ac0eef..00000000000 --- a/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/make_room_for_ylabel_using_axesgrid.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/parasite_simple2.rst.txt b/_sources/examples/axes_grid/parasite_simple2.rst.txt deleted file mode 120000 index 876036ace78..00000000000 --- a/_sources/examples/axes_grid/parasite_simple2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/parasite_simple2.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/parasite_simple2.txt b/_sources/examples/axes_grid/parasite_simple2.txt deleted file mode 120000 index f340d8d6851..00000000000 --- a/_sources/examples/axes_grid/parasite_simple2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/parasite_simple2.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/scatter_hist.rst.txt b/_sources/examples/axes_grid/scatter_hist.rst.txt deleted file mode 120000 index 3f7a640ce46..00000000000 --- a/_sources/examples/axes_grid/scatter_hist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/scatter_hist.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/scatter_hist.txt b/_sources/examples/axes_grid/scatter_hist.txt deleted file mode 120000 index c9386da0857..00000000000 --- a/_sources/examples/axes_grid/scatter_hist.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/scatter_hist.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_anchored_artists.rst.txt b/_sources/examples/axes_grid/simple_anchored_artists.rst.txt deleted file mode 120000 index b15b4cd31f5..00000000000 --- a/_sources/examples/axes_grid/simple_anchored_artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/simple_anchored_artists.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_anchored_artists.txt b/_sources/examples/axes_grid/simple_anchored_artists.txt deleted file mode 120000 index d8e815bba71..00000000000 --- a/_sources/examples/axes_grid/simple_anchored_artists.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/simple_anchored_artists.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_axesgrid.rst.txt b/_sources/examples/axes_grid/simple_axesgrid.rst.txt deleted file mode 120000 index f31759c5a99..00000000000 --- a/_sources/examples/axes_grid/simple_axesgrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/simple_axesgrid.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_axesgrid.txt b/_sources/examples/axes_grid/simple_axesgrid.txt deleted file mode 120000 index 02d70b99455..00000000000 --- a/_sources/examples/axes_grid/simple_axesgrid.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/simple_axesgrid.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_axesgrid2.rst.txt b/_sources/examples/axes_grid/simple_axesgrid2.rst.txt deleted file mode 120000 index 7b80b89068c..00000000000 --- a/_sources/examples/axes_grid/simple_axesgrid2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/simple_axesgrid2.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_axesgrid2.txt b/_sources/examples/axes_grid/simple_axesgrid2.txt deleted file mode 120000 index 4d858730460..00000000000 --- a/_sources/examples/axes_grid/simple_axesgrid2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/simple_axesgrid2.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_axisline4.rst.txt b/_sources/examples/axes_grid/simple_axisline4.rst.txt deleted file mode 120000 index 7f0a78608d2..00000000000 --- a/_sources/examples/axes_grid/simple_axisline4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/axes_grid/simple_axisline4.rst.txt \ No newline at end of file diff --git a/_sources/examples/axes_grid/simple_axisline4.txt b/_sources/examples/axes_grid/simple_axisline4.txt deleted file mode 120000 index ffc733e3a4b..00000000000 --- a/_sources/examples/axes_grid/simple_axisline4.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/axes_grid/simple_axisline4.txt \ No newline at end of file diff --git a/_sources/examples/color/color_cycle_default.rst.txt b/_sources/examples/color/color_cycle_default.rst.txt deleted file mode 120000 index 32cc1b43ed8..00000000000 --- a/_sources/examples/color/color_cycle_default.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/color/color_cycle_default.rst.txt \ No newline at end of file diff --git a/_sources/examples/color/color_cycle_demo.rst.txt b/_sources/examples/color/color_cycle_demo.rst.txt deleted file mode 120000 index 9822f69f5a5..00000000000 --- a/_sources/examples/color/color_cycle_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/color/color_cycle_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/color/color_cycle_demo.txt b/_sources/examples/color/color_cycle_demo.txt deleted file mode 120000 index 8de1ca2fe4d..00000000000 --- a/_sources/examples/color/color_cycle_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/color/color_cycle_demo.txt \ No newline at end of file diff --git a/_sources/examples/color/colormaps_reference.rst.txt b/_sources/examples/color/colormaps_reference.rst.txt deleted file mode 120000 index ceff1afad41..00000000000 --- a/_sources/examples/color/colormaps_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/color/colormaps_reference.rst.txt \ No newline at end of file diff --git a/_sources/examples/color/colormaps_reference.txt b/_sources/examples/color/colormaps_reference.txt deleted file mode 120000 index 3b9c6f68bb6..00000000000 --- a/_sources/examples/color/colormaps_reference.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/color/colormaps_reference.txt \ No newline at end of file diff --git a/_sources/examples/color/index.rst.txt b/_sources/examples/color/index.rst.txt deleted file mode 120000 index 717340b26e1..00000000000 --- a/_sources/examples/color/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/color/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/color/index.txt b/_sources/examples/color/index.txt deleted file mode 120000 index ab7a4293c46..00000000000 --- a/_sources/examples/color/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/color/index.txt \ No newline at end of file diff --git a/_sources/examples/color/named_colors.rst.txt b/_sources/examples/color/named_colors.rst.txt deleted file mode 120000 index 143508b7928..00000000000 --- a/_sources/examples/color/named_colors.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/color/named_colors.rst.txt \ No newline at end of file diff --git a/_sources/examples/color/named_colors.txt b/_sources/examples/color/named_colors.txt deleted file mode 120000 index cca623f2cf6..00000000000 --- a/_sources/examples/color/named_colors.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/color/named_colors.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/close_event.rst.txt b/_sources/examples/event_handling/close_event.rst.txt deleted file mode 120000 index adbb5d68c4d..00000000000 --- a/_sources/examples/event_handling/close_event.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/close_event.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/close_event.txt b/_sources/examples/event_handling/close_event.txt deleted file mode 120000 index 5addc53c01c..00000000000 --- a/_sources/examples/event_handling/close_event.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/close_event.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/data_browser.rst.txt b/_sources/examples/event_handling/data_browser.rst.txt deleted file mode 120000 index d949e313b98..00000000000 --- a/_sources/examples/event_handling/data_browser.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/data_browser.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/data_browser.txt b/_sources/examples/event_handling/data_browser.txt deleted file mode 120000 index 519ad08a3bc..00000000000 --- a/_sources/examples/event_handling/data_browser.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/data_browser.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/figure_axes_enter_leave.rst.txt b/_sources/examples/event_handling/figure_axes_enter_leave.rst.txt deleted file mode 120000 index 7f76dd6ac9f..00000000000 --- a/_sources/examples/event_handling/figure_axes_enter_leave.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/figure_axes_enter_leave.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/figure_axes_enter_leave.txt b/_sources/examples/event_handling/figure_axes_enter_leave.txt deleted file mode 120000 index d9a456c7460..00000000000 --- a/_sources/examples/event_handling/figure_axes_enter_leave.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/figure_axes_enter_leave.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/idle_and_timeout.rst.txt b/_sources/examples/event_handling/idle_and_timeout.rst.txt deleted file mode 120000 index 273f16e11e1..00000000000 --- a/_sources/examples/event_handling/idle_and_timeout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/idle_and_timeout.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/idle_and_timeout.txt b/_sources/examples/event_handling/idle_and_timeout.txt deleted file mode 120000 index 79470fd6ea3..00000000000 --- a/_sources/examples/event_handling/idle_and_timeout.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/idle_and_timeout.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/index.rst.txt b/_sources/examples/event_handling/index.rst.txt deleted file mode 120000 index 5f1e765e862..00000000000 --- a/_sources/examples/event_handling/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/index.txt b/_sources/examples/event_handling/index.txt deleted file mode 120000 index 74feac79a2e..00000000000 --- a/_sources/examples/event_handling/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/index.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/keypress_demo.rst.txt b/_sources/examples/event_handling/keypress_demo.rst.txt deleted file mode 120000 index f352791c64a..00000000000 --- a/_sources/examples/event_handling/keypress_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/keypress_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/keypress_demo.txt b/_sources/examples/event_handling/keypress_demo.txt deleted file mode 120000 index 754ff459024..00000000000 --- a/_sources/examples/event_handling/keypress_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/keypress_demo.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/lasso_demo.rst.txt b/_sources/examples/event_handling/lasso_demo.rst.txt deleted file mode 120000 index 7e0fab32732..00000000000 --- a/_sources/examples/event_handling/lasso_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/lasso_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/lasso_demo.txt b/_sources/examples/event_handling/lasso_demo.txt deleted file mode 120000 index 67dc9fc9a37..00000000000 --- a/_sources/examples/event_handling/lasso_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/lasso_demo.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/legend_picking.rst.txt b/_sources/examples/event_handling/legend_picking.rst.txt deleted file mode 120000 index ded81a7bea6..00000000000 --- a/_sources/examples/event_handling/legend_picking.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/legend_picking.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/legend_picking.txt b/_sources/examples/event_handling/legend_picking.txt deleted file mode 120000 index 2d87a917a1c..00000000000 --- a/_sources/examples/event_handling/legend_picking.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/legend_picking.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/looking_glass.rst.txt b/_sources/examples/event_handling/looking_glass.rst.txt deleted file mode 120000 index 83020d6909e..00000000000 --- a/_sources/examples/event_handling/looking_glass.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/looking_glass.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/looking_glass.txt b/_sources/examples/event_handling/looking_glass.txt deleted file mode 120000 index 119d17fa875..00000000000 --- a/_sources/examples/event_handling/looking_glass.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/looking_glass.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/path_editor.rst.txt b/_sources/examples/event_handling/path_editor.rst.txt deleted file mode 120000 index 7a41a310ef8..00000000000 --- a/_sources/examples/event_handling/path_editor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/path_editor.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/path_editor.txt b/_sources/examples/event_handling/path_editor.txt deleted file mode 120000 index 56a3efbcfca..00000000000 --- a/_sources/examples/event_handling/path_editor.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/path_editor.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pick_event_demo.rst.txt b/_sources/examples/event_handling/pick_event_demo.rst.txt deleted file mode 120000 index 5c2559b1372..00000000000 --- a/_sources/examples/event_handling/pick_event_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/pick_event_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pick_event_demo.txt b/_sources/examples/event_handling/pick_event_demo.txt deleted file mode 120000 index 2b0ca50e694..00000000000 --- a/_sources/examples/event_handling/pick_event_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/pick_event_demo.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pick_event_demo2.rst.txt b/_sources/examples/event_handling/pick_event_demo2.rst.txt deleted file mode 120000 index fbe28a71889..00000000000 --- a/_sources/examples/event_handling/pick_event_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/pick_event_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pick_event_demo2.txt b/_sources/examples/event_handling/pick_event_demo2.txt deleted file mode 120000 index d8bbc51968e..00000000000 --- a/_sources/examples/event_handling/pick_event_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/pick_event_demo2.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pipong.rst.txt b/_sources/examples/event_handling/pipong.rst.txt deleted file mode 120000 index 99029cd562a..00000000000 --- a/_sources/examples/event_handling/pipong.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/pipong.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pipong.txt b/_sources/examples/event_handling/pipong.txt deleted file mode 120000 index 7bc130239a1..00000000000 --- a/_sources/examples/event_handling/pipong.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/pipong.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/poly_editor.rst.txt b/_sources/examples/event_handling/poly_editor.rst.txt deleted file mode 120000 index c1488561fb7..00000000000 --- a/_sources/examples/event_handling/poly_editor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/poly_editor.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/poly_editor.txt b/_sources/examples/event_handling/poly_editor.txt deleted file mode 120000 index 04ea91926d5..00000000000 --- a/_sources/examples/event_handling/poly_editor.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/poly_editor.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pong_gtk.rst.txt b/_sources/examples/event_handling/pong_gtk.rst.txt deleted file mode 120000 index 4a26bd4b1b8..00000000000 --- a/_sources/examples/event_handling/pong_gtk.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/pong_gtk.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pong_gtk.txt b/_sources/examples/event_handling/pong_gtk.txt deleted file mode 120000 index 0809e8c59ce..00000000000 --- a/_sources/examples/event_handling/pong_gtk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/pong_gtk.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/pong_qt.txt b/_sources/examples/event_handling/pong_qt.txt deleted file mode 120000 index 66e9f54593e..00000000000 --- a/_sources/examples/event_handling/pong_qt.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/event_handling/pong_qt.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/resample.rst.txt b/_sources/examples/event_handling/resample.rst.txt deleted file mode 120000 index 16f164e4f5a..00000000000 --- a/_sources/examples/event_handling/resample.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/resample.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/resample.txt b/_sources/examples/event_handling/resample.txt deleted file mode 120000 index 786a8dac855..00000000000 --- a/_sources/examples/event_handling/resample.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/resample.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/test_mouseclicks.rst.txt b/_sources/examples/event_handling/test_mouseclicks.rst.txt deleted file mode 120000 index 1d15fad1317..00000000000 --- a/_sources/examples/event_handling/test_mouseclicks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/test_mouseclicks.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/test_mouseclicks.txt b/_sources/examples/event_handling/test_mouseclicks.txt deleted file mode 120000 index 1bff4dadc8e..00000000000 --- a/_sources/examples/event_handling/test_mouseclicks.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/test_mouseclicks.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/timers.rst.txt b/_sources/examples/event_handling/timers.rst.txt deleted file mode 120000 index 634ffabf863..00000000000 --- a/_sources/examples/event_handling/timers.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/timers.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/timers.txt b/_sources/examples/event_handling/timers.txt deleted file mode 120000 index 94788a8db7b..00000000000 --- a/_sources/examples/event_handling/timers.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/timers.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/trifinder_event_demo.rst.txt b/_sources/examples/event_handling/trifinder_event_demo.rst.txt deleted file mode 120000 index 92e7a3a1388..00000000000 --- a/_sources/examples/event_handling/trifinder_event_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/trifinder_event_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/trifinder_event_demo.txt b/_sources/examples/event_handling/trifinder_event_demo.txt deleted file mode 120000 index a450e7bedaa..00000000000 --- a/_sources/examples/event_handling/trifinder_event_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/trifinder_event_demo.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/viewlims.rst.txt b/_sources/examples/event_handling/viewlims.rst.txt deleted file mode 120000 index 4a85449510b..00000000000 --- a/_sources/examples/event_handling/viewlims.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/viewlims.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/viewlims.txt b/_sources/examples/event_handling/viewlims.txt deleted file mode 120000 index 241ffe08e1b..00000000000 --- a/_sources/examples/event_handling/viewlims.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/viewlims.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/zoom_window.rst.txt b/_sources/examples/event_handling/zoom_window.rst.txt deleted file mode 120000 index b90662f23ef..00000000000 --- a/_sources/examples/event_handling/zoom_window.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/event_handling/zoom_window.rst.txt \ No newline at end of file diff --git a/_sources/examples/event_handling/zoom_window.txt b/_sources/examples/event_handling/zoom_window.txt deleted file mode 120000 index cf67390f015..00000000000 --- a/_sources/examples/event_handling/zoom_window.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/event_handling/zoom_window.txt \ No newline at end of file diff --git a/_sources/examples/frontpage/index.rst.txt b/_sources/examples/frontpage/index.rst.txt deleted file mode 120000 index beb5e4dbb0c..00000000000 --- a/_sources/examples/frontpage/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/frontpage/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/frontpage/plot_3D.rst.txt b/_sources/examples/frontpage/plot_3D.rst.txt deleted file mode 120000 index d2b4d7e5a21..00000000000 --- a/_sources/examples/frontpage/plot_3D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/frontpage/plot_3D.rst.txt \ No newline at end of file diff --git a/_sources/examples/frontpage/plot_contour.rst.txt b/_sources/examples/frontpage/plot_contour.rst.txt deleted file mode 120000 index a050d8900fb..00000000000 --- a/_sources/examples/frontpage/plot_contour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/frontpage/plot_contour.rst.txt \ No newline at end of file diff --git a/_sources/examples/frontpage/plot_histogram.rst.txt b/_sources/examples/frontpage/plot_histogram.rst.txt deleted file mode 120000 index 97fd2dbac96..00000000000 --- a/_sources/examples/frontpage/plot_histogram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/frontpage/plot_histogram.rst.txt \ No newline at end of file diff --git a/_sources/examples/frontpage/plot_membrane.rst.txt b/_sources/examples/frontpage/plot_membrane.rst.txt deleted file mode 120000 index 9e7aa4271ed..00000000000 --- a/_sources/examples/frontpage/plot_membrane.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/frontpage/plot_membrane.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/contourf_log.rst.txt b/_sources/examples/images_contours_and_fields/contourf_log.rst.txt deleted file mode 120000 index 43996b163bc..00000000000 --- a/_sources/examples/images_contours_and_fields/contourf_log.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/contourf_log.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/contourf_log.txt b/_sources/examples/images_contours_and_fields/contourf_log.txt deleted file mode 120000 index ab83ea6d67e..00000000000 --- a/_sources/examples/images_contours_and_fields/contourf_log.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/contourf_log.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/image_demo.rst.txt b/_sources/examples/images_contours_and_fields/image_demo.rst.txt deleted file mode 120000 index f6c5007f208..00000000000 --- a/_sources/examples/images_contours_and_fields/image_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/image_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/image_demo.txt b/_sources/examples/images_contours_and_fields/image_demo.txt deleted file mode 120000 index 9d1f43c626f..00000000000 --- a/_sources/examples/images_contours_and_fields/image_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/image_demo.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/image_demo_clip_path.rst.txt b/_sources/examples/images_contours_and_fields/image_demo_clip_path.rst.txt deleted file mode 120000 index bdc2a1f6142..00000000000 --- a/_sources/examples/images_contours_and_fields/image_demo_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/image_demo_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/image_demo_clip_path.txt b/_sources/examples/images_contours_and_fields/image_demo_clip_path.txt deleted file mode 120000 index 8255b40d3ae..00000000000 --- a/_sources/examples/images_contours_and_fields/image_demo_clip_path.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/image_demo_clip_path.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/index.rst.txt b/_sources/examples/images_contours_and_fields/index.rst.txt deleted file mode 120000 index 23fb36c6b05..00000000000 --- a/_sources/examples/images_contours_and_fields/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/index.txt b/_sources/examples/images_contours_and_fields/index.txt deleted file mode 120000 index d3ac098f393..00000000000 --- a/_sources/examples/images_contours_and_fields/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/index.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/interpolation_methods.rst.txt b/_sources/examples/images_contours_and_fields/interpolation_methods.rst.txt deleted file mode 120000 index be24952570f..00000000000 --- a/_sources/examples/images_contours_and_fields/interpolation_methods.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/interpolation_methods.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/interpolation_methods.txt b/_sources/examples/images_contours_and_fields/interpolation_methods.txt deleted file mode 120000 index 8fcff3633f5..00000000000 --- a/_sources/examples/images_contours_and_fields/interpolation_methods.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/interpolation_methods.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/interpolation_none_vs_nearest.txt b/_sources/examples/images_contours_and_fields/interpolation_none_vs_nearest.txt deleted file mode 120000 index d19b468688f..00000000000 --- a/_sources/examples/images_contours_and_fields/interpolation_none_vs_nearest.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/interpolation_none_vs_nearest.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/pcolormesh_levels.rst.txt b/_sources/examples/images_contours_and_fields/pcolormesh_levels.rst.txt deleted file mode 120000 index 44a279a191b..00000000000 --- a/_sources/examples/images_contours_and_fields/pcolormesh_levels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/pcolormesh_levels.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/pcolormesh_levels.txt b/_sources/examples/images_contours_and_fields/pcolormesh_levels.txt deleted file mode 120000 index 768b25c99f3..00000000000 --- a/_sources/examples/images_contours_and_fields/pcolormesh_levels.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/pcolormesh_levels.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/streamplot_demo_features.rst.txt b/_sources/examples/images_contours_and_fields/streamplot_demo_features.rst.txt deleted file mode 120000 index 48d40af40ed..00000000000 --- a/_sources/examples/images_contours_and_fields/streamplot_demo_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/streamplot_demo_features.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/streamplot_demo_features.txt b/_sources/examples/images_contours_and_fields/streamplot_demo_features.txt deleted file mode 120000 index 829dc519b8d..00000000000 --- a/_sources/examples/images_contours_and_fields/streamplot_demo_features.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/streamplot_demo_features.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/streamplot_demo_masking.rst.txt b/_sources/examples/images_contours_and_fields/streamplot_demo_masking.rst.txt deleted file mode 120000 index 8e21c292c45..00000000000 --- a/_sources/examples/images_contours_and_fields/streamplot_demo_masking.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/streamplot_demo_masking.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/streamplot_demo_masking.txt b/_sources/examples/images_contours_and_fields/streamplot_demo_masking.txt deleted file mode 120000 index 719899736e1..00000000000 --- a/_sources/examples/images_contours_and_fields/streamplot_demo_masking.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/streamplot_demo_masking.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.rst.txt b/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.rst.txt deleted file mode 120000 index cb9450e68e9..00000000000 --- a/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.rst.txt \ No newline at end of file diff --git a/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.txt b/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.txt deleted file mode 120000 index 848e23b1115..00000000000 --- a/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/images_contours_and_fields/streamplot_demo_start_points.txt \ No newline at end of file diff --git a/_sources/examples/index.rst.txt b/_sources/examples/index.rst.txt deleted file mode 120000 index f44bb853595..00000000000 --- a/_sources/examples/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/examples/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/index.txt b/_sources/examples/index.txt deleted file mode 120000 index 859d1124f98..00000000000 --- a/_sources/examples/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/examples/index.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/barh_demo.rst.txt b/_sources/examples/lines_bars_and_markers/barh_demo.rst.txt deleted file mode 120000 index 308d792df4b..00000000000 --- a/_sources/examples/lines_bars_and_markers/barh_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/barh_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/barh_demo.txt b/_sources/examples/lines_bars_and_markers/barh_demo.txt deleted file mode 120000 index 85b1bfcc9fa..00000000000 --- a/_sources/examples/lines_bars_and_markers/barh_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/barh_demo.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/fill_demo.rst.txt b/_sources/examples/lines_bars_and_markers/fill_demo.rst.txt deleted file mode 120000 index 65f50b13a3d..00000000000 --- a/_sources/examples/lines_bars_and_markers/fill_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/fill_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/fill_demo.txt b/_sources/examples/lines_bars_and_markers/fill_demo.txt deleted file mode 120000 index 5e9211e6a8f..00000000000 --- a/_sources/examples/lines_bars_and_markers/fill_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/fill_demo.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/fill_demo_features.rst.txt b/_sources/examples/lines_bars_and_markers/fill_demo_features.rst.txt deleted file mode 120000 index cf597a64489..00000000000 --- a/_sources/examples/lines_bars_and_markers/fill_demo_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/fill_demo_features.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/fill_demo_features.txt b/_sources/examples/lines_bars_and_markers/fill_demo_features.txt deleted file mode 120000 index 78cda5fd921..00000000000 --- a/_sources/examples/lines_bars_and_markers/fill_demo_features.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/fill_demo_features.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/index.rst.txt b/_sources/examples/lines_bars_and_markers/index.rst.txt deleted file mode 120000 index f7ebeaa0571..00000000000 --- a/_sources/examples/lines_bars_and_markers/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/index.txt b/_sources/examples/lines_bars_and_markers/index.txt deleted file mode 120000 index 4593b561e32..00000000000 --- a/_sources/examples/lines_bars_and_markers/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/index.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/line_demo_dash_control.rst.txt b/_sources/examples/lines_bars_and_markers/line_demo_dash_control.rst.txt deleted file mode 120000 index 60a9e44c6da..00000000000 --- a/_sources/examples/lines_bars_and_markers/line_demo_dash_control.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/line_demo_dash_control.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/line_demo_dash_control.txt b/_sources/examples/lines_bars_and_markers/line_demo_dash_control.txt deleted file mode 120000 index efc8744f5e0..00000000000 --- a/_sources/examples/lines_bars_and_markers/line_demo_dash_control.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/line_demo_dash_control.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/line_styles_reference.rst.txt b/_sources/examples/lines_bars_and_markers/line_styles_reference.rst.txt deleted file mode 120000 index b65165be239..00000000000 --- a/_sources/examples/lines_bars_and_markers/line_styles_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/line_styles_reference.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/line_styles_reference.txt b/_sources/examples/lines_bars_and_markers/line_styles_reference.txt deleted file mode 120000 index 01b6784d042..00000000000 --- a/_sources/examples/lines_bars_and_markers/line_styles_reference.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/line_styles_reference.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/linestyles.rst.txt b/_sources/examples/lines_bars_and_markers/linestyles.rst.txt deleted file mode 120000 index d623f8e9fcc..00000000000 --- a/_sources/examples/lines_bars_and_markers/linestyles.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/linestyles.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.rst.txt b/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.rst.txt deleted file mode 120000 index 7c6aa0a7bdc..00000000000 --- a/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.txt b/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.txt deleted file mode 120000 index 771bf691cfd..00000000000 --- a/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/marker_fillstyle_reference.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/marker_reference.rst.txt b/_sources/examples/lines_bars_and_markers/marker_reference.rst.txt deleted file mode 120000 index 1053e215907..00000000000 --- a/_sources/examples/lines_bars_and_markers/marker_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/marker_reference.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/marker_reference.txt b/_sources/examples/lines_bars_and_markers/marker_reference.txt deleted file mode 120000 index 86fb4618475..00000000000 --- a/_sources/examples/lines_bars_and_markers/marker_reference.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/marker_reference.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/scatter_with_legend.rst.txt b/_sources/examples/lines_bars_and_markers/scatter_with_legend.rst.txt deleted file mode 120000 index ee5a577c708..00000000000 --- a/_sources/examples/lines_bars_and_markers/scatter_with_legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/lines_bars_and_markers/scatter_with_legend.rst.txt \ No newline at end of file diff --git a/_sources/examples/lines_bars_and_markers/scatter_with_legend.txt b/_sources/examples/lines_bars_and_markers/scatter_with_legend.txt deleted file mode 120000 index f039597ec62..00000000000 --- a/_sources/examples/lines_bars_and_markers/scatter_with_legend.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/lines_bars_and_markers/scatter_with_legend.txt \ No newline at end of file diff --git a/_sources/examples/misc/contour_manual.rst.txt b/_sources/examples/misc/contour_manual.rst.txt deleted file mode 120000 index f4e9977d675..00000000000 --- a/_sources/examples/misc/contour_manual.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/contour_manual.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/contour_manual.txt b/_sources/examples/misc/contour_manual.txt deleted file mode 120000 index 5fcf214dd5d..00000000000 --- a/_sources/examples/misc/contour_manual.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/contour_manual.txt \ No newline at end of file diff --git a/_sources/examples/misc/developer_commit_history.txt b/_sources/examples/misc/developer_commit_history.txt deleted file mode 120000 index 7cb862e50e8..00000000000 --- a/_sources/examples/misc/developer_commit_history.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/misc/developer_commit_history.txt \ No newline at end of file diff --git a/_sources/examples/misc/font_indexing.rst.txt b/_sources/examples/misc/font_indexing.rst.txt deleted file mode 120000 index 046122ed027..00000000000 --- a/_sources/examples/misc/font_indexing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/font_indexing.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/font_indexing.txt b/_sources/examples/misc/font_indexing.txt deleted file mode 120000 index 34d97386a7f..00000000000 --- a/_sources/examples/misc/font_indexing.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/font_indexing.txt \ No newline at end of file diff --git a/_sources/examples/misc/ftface_props.rst.txt b/_sources/examples/misc/ftface_props.rst.txt deleted file mode 120000 index 7776bb26149..00000000000 --- a/_sources/examples/misc/ftface_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/ftface_props.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/ftface_props.txt b/_sources/examples/misc/ftface_props.txt deleted file mode 120000 index bad908ca700..00000000000 --- a/_sources/examples/misc/ftface_props.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/ftface_props.txt \ No newline at end of file diff --git a/_sources/examples/misc/image_thumbnail.rst.txt b/_sources/examples/misc/image_thumbnail.rst.txt deleted file mode 120000 index 59dac733b18..00000000000 --- a/_sources/examples/misc/image_thumbnail.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/image_thumbnail.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/image_thumbnail.txt b/_sources/examples/misc/image_thumbnail.txt deleted file mode 120000 index f39d7c740d1..00000000000 --- a/_sources/examples/misc/image_thumbnail.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/image_thumbnail.txt \ No newline at end of file diff --git a/_sources/examples/misc/index.rst.txt b/_sources/examples/misc/index.rst.txt deleted file mode 120000 index 660f7c9673c..00000000000 --- a/_sources/examples/misc/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/index.txt b/_sources/examples/misc/index.txt deleted file mode 120000 index bc6daf11c21..00000000000 --- a/_sources/examples/misc/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/index.txt \ No newline at end of file diff --git a/_sources/examples/misc/longshort.txt b/_sources/examples/misc/longshort.txt deleted file mode 120000 index ed2a5b20593..00000000000 --- a/_sources/examples/misc/longshort.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/longshort.txt \ No newline at end of file diff --git a/_sources/examples/misc/multiprocess.rst.txt b/_sources/examples/misc/multiprocess.rst.txt deleted file mode 120000 index b90f465d98c..00000000000 --- a/_sources/examples/misc/multiprocess.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/multiprocess.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/multiprocess.txt b/_sources/examples/misc/multiprocess.txt deleted file mode 120000 index 4a1049170b1..00000000000 --- a/_sources/examples/misc/multiprocess.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/multiprocess.txt \ No newline at end of file diff --git a/_sources/examples/misc/rasterization_demo.rst.txt b/_sources/examples/misc/rasterization_demo.rst.txt deleted file mode 120000 index 094ab03b87d..00000000000 --- a/_sources/examples/misc/rasterization_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/rasterization_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/rasterization_demo.txt b/_sources/examples/misc/rasterization_demo.txt deleted file mode 120000 index 8708d8bd1bd..00000000000 --- a/_sources/examples/misc/rasterization_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/rasterization_demo.txt \ No newline at end of file diff --git a/_sources/examples/misc/rc_traits.rst.txt b/_sources/examples/misc/rc_traits.rst.txt deleted file mode 120000 index 14b19f321df..00000000000 --- a/_sources/examples/misc/rc_traits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/rc_traits.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/rc_traits.txt b/_sources/examples/misc/rc_traits.txt deleted file mode 120000 index f79d6ba511a..00000000000 --- a/_sources/examples/misc/rc_traits.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/rc_traits.txt \ No newline at end of file diff --git a/_sources/examples/misc/rec_groupby_demo.rst.txt b/_sources/examples/misc/rec_groupby_demo.rst.txt deleted file mode 120000 index de344db3889..00000000000 --- a/_sources/examples/misc/rec_groupby_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/rec_groupby_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/rec_groupby_demo.txt b/_sources/examples/misc/rec_groupby_demo.txt deleted file mode 120000 index 265d2fa7dd3..00000000000 --- a/_sources/examples/misc/rec_groupby_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/rec_groupby_demo.txt \ No newline at end of file diff --git a/_sources/examples/misc/rec_join_demo.rst.txt b/_sources/examples/misc/rec_join_demo.rst.txt deleted file mode 120000 index 0920dd23c2c..00000000000 --- a/_sources/examples/misc/rec_join_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/rec_join_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/rec_join_demo.txt b/_sources/examples/misc/rec_join_demo.txt deleted file mode 120000 index 6b32aa35f98..00000000000 --- a/_sources/examples/misc/rec_join_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/rec_join_demo.txt \ No newline at end of file diff --git a/_sources/examples/misc/sample_data_demo.rst.txt b/_sources/examples/misc/sample_data_demo.rst.txt deleted file mode 120000 index cf036ea3947..00000000000 --- a/_sources/examples/misc/sample_data_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/sample_data_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/sample_data_demo.txt b/_sources/examples/misc/sample_data_demo.txt deleted file mode 120000 index 55891b01e72..00000000000 --- a/_sources/examples/misc/sample_data_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/sample_data_demo.txt \ No newline at end of file diff --git a/_sources/examples/misc/svg_filter_line.rst.txt b/_sources/examples/misc/svg_filter_line.rst.txt deleted file mode 120000 index 91e6d07d63a..00000000000 --- a/_sources/examples/misc/svg_filter_line.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/svg_filter_line.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/svg_filter_line.txt b/_sources/examples/misc/svg_filter_line.txt deleted file mode 120000 index 713ba796874..00000000000 --- a/_sources/examples/misc/svg_filter_line.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/svg_filter_line.txt \ No newline at end of file diff --git a/_sources/examples/misc/svg_filter_pie.rst.txt b/_sources/examples/misc/svg_filter_pie.rst.txt deleted file mode 120000 index be0456e5949..00000000000 --- a/_sources/examples/misc/svg_filter_pie.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/svg_filter_pie.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/svg_filter_pie.txt b/_sources/examples/misc/svg_filter_pie.txt deleted file mode 120000 index f6b5274c06b..00000000000 --- a/_sources/examples/misc/svg_filter_pie.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/svg_filter_pie.txt \ No newline at end of file diff --git a/_sources/examples/misc/tight_bbox_test.rst.txt b/_sources/examples/misc/tight_bbox_test.rst.txt deleted file mode 120000 index 8ab5f70bfea..00000000000 --- a/_sources/examples/misc/tight_bbox_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/misc/tight_bbox_test.rst.txt \ No newline at end of file diff --git a/_sources/examples/misc/tight_bbox_test.txt b/_sources/examples/misc/tight_bbox_test.txt deleted file mode 120000 index b35a7eaeb3f..00000000000 --- a/_sources/examples/misc/tight_bbox_test.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/misc/tight_bbox_test.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/2dcollections3d_demo.rst.txt b/_sources/examples/mplot3d/2dcollections3d_demo.rst.txt deleted file mode 120000 index 7bbbc6c4b59..00000000000 --- a/_sources/examples/mplot3d/2dcollections3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/2dcollections3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/2dcollections3d_demo.txt b/_sources/examples/mplot3d/2dcollections3d_demo.txt deleted file mode 120000 index aad0453c0e4..00000000000 --- a/_sources/examples/mplot3d/2dcollections3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/2dcollections3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/bars3d_demo.rst.txt b/_sources/examples/mplot3d/bars3d_demo.rst.txt deleted file mode 120000 index eed76e069c3..00000000000 --- a/_sources/examples/mplot3d/bars3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/bars3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/bars3d_demo.txt b/_sources/examples/mplot3d/bars3d_demo.txt deleted file mode 120000 index 383f08e7416..00000000000 --- a/_sources/examples/mplot3d/bars3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/bars3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contour3d_demo.rst.txt b/_sources/examples/mplot3d/contour3d_demo.rst.txt deleted file mode 120000 index ff2c5459fe4..00000000000 --- a/_sources/examples/mplot3d/contour3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/contour3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contour3d_demo.txt b/_sources/examples/mplot3d/contour3d_demo.txt deleted file mode 120000 index e0e21b22474..00000000000 --- a/_sources/examples/mplot3d/contour3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/contour3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contour3d_demo2.rst.txt b/_sources/examples/mplot3d/contour3d_demo2.rst.txt deleted file mode 120000 index b18e30d16bd..00000000000 --- a/_sources/examples/mplot3d/contour3d_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/contour3d_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contour3d_demo2.txt b/_sources/examples/mplot3d/contour3d_demo2.txt deleted file mode 120000 index 9b532bf90cc..00000000000 --- a/_sources/examples/mplot3d/contour3d_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/contour3d_demo2.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contour3d_demo3.rst.txt b/_sources/examples/mplot3d/contour3d_demo3.rst.txt deleted file mode 120000 index 0775021a3f9..00000000000 --- a/_sources/examples/mplot3d/contour3d_demo3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/contour3d_demo3.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contour3d_demo3.txt b/_sources/examples/mplot3d/contour3d_demo3.txt deleted file mode 120000 index e49afb65be0..00000000000 --- a/_sources/examples/mplot3d/contour3d_demo3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/contour3d_demo3.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contourf3d_demo.rst.txt b/_sources/examples/mplot3d/contourf3d_demo.rst.txt deleted file mode 120000 index 85ca7181a2e..00000000000 --- a/_sources/examples/mplot3d/contourf3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/contourf3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contourf3d_demo.txt b/_sources/examples/mplot3d/contourf3d_demo.txt deleted file mode 120000 index a671f65291d..00000000000 --- a/_sources/examples/mplot3d/contourf3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/contourf3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contourf3d_demo2.rst.txt b/_sources/examples/mplot3d/contourf3d_demo2.rst.txt deleted file mode 120000 index 422703fd4f4..00000000000 --- a/_sources/examples/mplot3d/contourf3d_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/contourf3d_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/contourf3d_demo2.txt b/_sources/examples/mplot3d/contourf3d_demo2.txt deleted file mode 120000 index 5fe95f0dd95..00000000000 --- a/_sources/examples/mplot3d/contourf3d_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/contourf3d_demo2.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/custom_shaded_3d_surface.rst.txt b/_sources/examples/mplot3d/custom_shaded_3d_surface.rst.txt deleted file mode 120000 index f809f5a0192..00000000000 --- a/_sources/examples/mplot3d/custom_shaded_3d_surface.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/custom_shaded_3d_surface.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/custom_shaded_3d_surface.txt b/_sources/examples/mplot3d/custom_shaded_3d_surface.txt deleted file mode 120000 index 6413a8671b6..00000000000 --- a/_sources/examples/mplot3d/custom_shaded_3d_surface.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/custom_shaded_3d_surface.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/hist3d_demo.rst.txt b/_sources/examples/mplot3d/hist3d_demo.rst.txt deleted file mode 120000 index 61eaba594f9..00000000000 --- a/_sources/examples/mplot3d/hist3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/hist3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/hist3d_demo.txt b/_sources/examples/mplot3d/hist3d_demo.txt deleted file mode 120000 index 4b66bb759f1..00000000000 --- a/_sources/examples/mplot3d/hist3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/hist3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/index.rst.txt b/_sources/examples/mplot3d/index.rst.txt deleted file mode 120000 index 4e15d748dac..00000000000 --- a/_sources/examples/mplot3d/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/index.txt b/_sources/examples/mplot3d/index.txt deleted file mode 120000 index 1c3f7a2d5f0..00000000000 --- a/_sources/examples/mplot3d/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/index.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/lines3d_demo.rst.txt b/_sources/examples/mplot3d/lines3d_demo.rst.txt deleted file mode 120000 index 7890e8bd820..00000000000 --- a/_sources/examples/mplot3d/lines3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/lines3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/lines3d_demo.txt b/_sources/examples/mplot3d/lines3d_demo.txt deleted file mode 120000 index 60ad2a5c0ae..00000000000 --- a/_sources/examples/mplot3d/lines3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/lines3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/lorenz_attractor.rst.txt b/_sources/examples/mplot3d/lorenz_attractor.rst.txt deleted file mode 120000 index 0e258a31fc8..00000000000 --- a/_sources/examples/mplot3d/lorenz_attractor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/lorenz_attractor.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/lorenz_attractor.txt b/_sources/examples/mplot3d/lorenz_attractor.txt deleted file mode 120000 index 7d6722ed78d..00000000000 --- a/_sources/examples/mplot3d/lorenz_attractor.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/lorenz_attractor.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/mixed_subplots_demo.rst.txt b/_sources/examples/mplot3d/mixed_subplots_demo.rst.txt deleted file mode 120000 index 26f9adf10f6..00000000000 --- a/_sources/examples/mplot3d/mixed_subplots_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/mixed_subplots_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/mixed_subplots_demo.txt b/_sources/examples/mplot3d/mixed_subplots_demo.txt deleted file mode 120000 index 9456ee799a0..00000000000 --- a/_sources/examples/mplot3d/mixed_subplots_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/mixed_subplots_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/offset_demo.rst.txt b/_sources/examples/mplot3d/offset_demo.rst.txt deleted file mode 120000 index 6a8006a2cfb..00000000000 --- a/_sources/examples/mplot3d/offset_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/offset_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/offset_demo.txt b/_sources/examples/mplot3d/offset_demo.txt deleted file mode 120000 index cdc456a751d..00000000000 --- a/_sources/examples/mplot3d/offset_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/offset_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/pathpatch3d_demo.rst.txt b/_sources/examples/mplot3d/pathpatch3d_demo.rst.txt deleted file mode 120000 index 8dccaa8d2bf..00000000000 --- a/_sources/examples/mplot3d/pathpatch3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/pathpatch3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/pathpatch3d_demo.txt b/_sources/examples/mplot3d/pathpatch3d_demo.txt deleted file mode 120000 index dbf48dd6329..00000000000 --- a/_sources/examples/mplot3d/pathpatch3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/pathpatch3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/polys3d_demo.rst.txt b/_sources/examples/mplot3d/polys3d_demo.rst.txt deleted file mode 120000 index 7d26cffd6cb..00000000000 --- a/_sources/examples/mplot3d/polys3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/polys3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/polys3d_demo.txt b/_sources/examples/mplot3d/polys3d_demo.txt deleted file mode 120000 index fe02a4ba7a1..00000000000 --- a/_sources/examples/mplot3d/polys3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/polys3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/quiver3d_demo.rst.txt b/_sources/examples/mplot3d/quiver3d_demo.rst.txt deleted file mode 120000 index ced65b0cde2..00000000000 --- a/_sources/examples/mplot3d/quiver3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/quiver3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/quiver3d_demo.txt b/_sources/examples/mplot3d/quiver3d_demo.txt deleted file mode 120000 index 46776406a77..00000000000 --- a/_sources/examples/mplot3d/quiver3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/quiver3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/rotate_axes3d_demo.rst.txt b/_sources/examples/mplot3d/rotate_axes3d_demo.rst.txt deleted file mode 120000 index 44608d6a557..00000000000 --- a/_sources/examples/mplot3d/rotate_axes3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/rotate_axes3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/rotate_axes3d_demo.txt b/_sources/examples/mplot3d/rotate_axes3d_demo.txt deleted file mode 120000 index 8feb772770f..00000000000 --- a/_sources/examples/mplot3d/rotate_axes3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/rotate_axes3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/scatter3d_demo.rst.txt b/_sources/examples/mplot3d/scatter3d_demo.rst.txt deleted file mode 120000 index 9b178575d17..00000000000 --- a/_sources/examples/mplot3d/scatter3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/scatter3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/scatter3d_demo.txt b/_sources/examples/mplot3d/scatter3d_demo.txt deleted file mode 120000 index da893130689..00000000000 --- a/_sources/examples/mplot3d/scatter3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/scatter3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/subplot3d_demo.rst.txt b/_sources/examples/mplot3d/subplot3d_demo.rst.txt deleted file mode 120000 index 85ad405f1ea..00000000000 --- a/_sources/examples/mplot3d/subplot3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/subplot3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/subplot3d_demo.txt b/_sources/examples/mplot3d/subplot3d_demo.txt deleted file mode 120000 index ca989943042..00000000000 --- a/_sources/examples/mplot3d/subplot3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/subplot3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_demo.rst.txt b/_sources/examples/mplot3d/surface3d_demo.rst.txt deleted file mode 120000 index c5d6ed15665..00000000000 --- a/_sources/examples/mplot3d/surface3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/surface3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_demo.txt b/_sources/examples/mplot3d/surface3d_demo.txt deleted file mode 120000 index c1725ba86fd..00000000000 --- a/_sources/examples/mplot3d/surface3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/surface3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_demo2.rst.txt b/_sources/examples/mplot3d/surface3d_demo2.rst.txt deleted file mode 120000 index 45644e3b778..00000000000 --- a/_sources/examples/mplot3d/surface3d_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/surface3d_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_demo2.txt b/_sources/examples/mplot3d/surface3d_demo2.txt deleted file mode 120000 index 6142e68dd40..00000000000 --- a/_sources/examples/mplot3d/surface3d_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/surface3d_demo2.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_demo3.rst.txt b/_sources/examples/mplot3d/surface3d_demo3.rst.txt deleted file mode 120000 index 4b70b932df3..00000000000 --- a/_sources/examples/mplot3d/surface3d_demo3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/surface3d_demo3.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_demo3.txt b/_sources/examples/mplot3d/surface3d_demo3.txt deleted file mode 120000 index 2bd3906fa7f..00000000000 --- a/_sources/examples/mplot3d/surface3d_demo3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/surface3d_demo3.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_radial_demo.rst.txt b/_sources/examples/mplot3d/surface3d_radial_demo.rst.txt deleted file mode 120000 index 7166a645809..00000000000 --- a/_sources/examples/mplot3d/surface3d_radial_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/surface3d_radial_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/surface3d_radial_demo.txt b/_sources/examples/mplot3d/surface3d_radial_demo.txt deleted file mode 120000 index 3e4940d597a..00000000000 --- a/_sources/examples/mplot3d/surface3d_radial_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/surface3d_radial_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/text3d_demo.rst.txt b/_sources/examples/mplot3d/text3d_demo.rst.txt deleted file mode 120000 index a0bf55155a6..00000000000 --- a/_sources/examples/mplot3d/text3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/text3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/text3d_demo.txt b/_sources/examples/mplot3d/text3d_demo.txt deleted file mode 120000 index 6b951b48cfa..00000000000 --- a/_sources/examples/mplot3d/text3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/text3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/tricontour3d_demo.rst.txt b/_sources/examples/mplot3d/tricontour3d_demo.rst.txt deleted file mode 120000 index 604d82d8b9b..00000000000 --- a/_sources/examples/mplot3d/tricontour3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/tricontour3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/tricontour3d_demo.txt b/_sources/examples/mplot3d/tricontour3d_demo.txt deleted file mode 120000 index 884743dc203..00000000000 --- a/_sources/examples/mplot3d/tricontour3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/tricontour3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/tricontourf3d_demo.rst.txt b/_sources/examples/mplot3d/tricontourf3d_demo.rst.txt deleted file mode 120000 index f5f578de304..00000000000 --- a/_sources/examples/mplot3d/tricontourf3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/tricontourf3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/tricontourf3d_demo.txt b/_sources/examples/mplot3d/tricontourf3d_demo.txt deleted file mode 120000 index dce2a1717be..00000000000 --- a/_sources/examples/mplot3d/tricontourf3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/tricontourf3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/trisurf3d_demo.rst.txt b/_sources/examples/mplot3d/trisurf3d_demo.rst.txt deleted file mode 120000 index 51544114120..00000000000 --- a/_sources/examples/mplot3d/trisurf3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/trisurf3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/trisurf3d_demo.txt b/_sources/examples/mplot3d/trisurf3d_demo.txt deleted file mode 120000 index 9e58aac8827..00000000000 --- a/_sources/examples/mplot3d/trisurf3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/trisurf3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/trisurf3d_demo2.rst.txt b/_sources/examples/mplot3d/trisurf3d_demo2.rst.txt deleted file mode 120000 index 7826bae5072..00000000000 --- a/_sources/examples/mplot3d/trisurf3d_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/trisurf3d_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/trisurf3d_demo2.txt b/_sources/examples/mplot3d/trisurf3d_demo2.txt deleted file mode 120000 index 37f514a0b35..00000000000 --- a/_sources/examples/mplot3d/trisurf3d_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/trisurf3d_demo2.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/wire3d_animation_demo.rst.txt b/_sources/examples/mplot3d/wire3d_animation_demo.rst.txt deleted file mode 120000 index 869155f31c2..00000000000 --- a/_sources/examples/mplot3d/wire3d_animation_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/wire3d_animation_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/wire3d_animation_demo.txt b/_sources/examples/mplot3d/wire3d_animation_demo.txt deleted file mode 120000 index 6a312cc3fea..00000000000 --- a/_sources/examples/mplot3d/wire3d_animation_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/wire3d_animation_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/wire3d_demo.rst.txt b/_sources/examples/mplot3d/wire3d_demo.rst.txt deleted file mode 120000 index 71315ae4f9f..00000000000 --- a/_sources/examples/mplot3d/wire3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/wire3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/wire3d_demo.txt b/_sources/examples/mplot3d/wire3d_demo.txt deleted file mode 120000 index d5b027a116f..00000000000 --- a/_sources/examples/mplot3d/wire3d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/wire3d_demo.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/wire3d_zero_stride.rst.txt b/_sources/examples/mplot3d/wire3d_zero_stride.rst.txt deleted file mode 120000 index 316c1b9a92e..00000000000 --- a/_sources/examples/mplot3d/wire3d_zero_stride.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/mplot3d/wire3d_zero_stride.rst.txt \ No newline at end of file diff --git a/_sources/examples/mplot3d/wire3d_zero_stride.txt b/_sources/examples/mplot3d/wire3d_zero_stride.txt deleted file mode 120000 index 2d45f62933e..00000000000 --- a/_sources/examples/mplot3d/wire3d_zero_stride.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/mplot3d/wire3d_zero_stride.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animate_decay_tk_blit.txt b/_sources/examples/old_animation/animate_decay_tk_blit.txt deleted file mode 120000 index 4b4d0f46dd9..00000000000 --- a/_sources/examples/old_animation/animate_decay_tk_blit.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/animate_decay_tk_blit.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animation_blit_fltk.txt b/_sources/examples/old_animation/animation_blit_fltk.txt deleted file mode 120000 index d679f9b8b69..00000000000 --- a/_sources/examples/old_animation/animation_blit_fltk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/old_animation/animation_blit_fltk.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animation_blit_gtk.txt b/_sources/examples/old_animation/animation_blit_gtk.txt deleted file mode 120000 index a142a9de68c..00000000000 --- a/_sources/examples/old_animation/animation_blit_gtk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/animation_blit_gtk.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animation_blit_gtk2.txt b/_sources/examples/old_animation/animation_blit_gtk2.txt deleted file mode 120000 index 5797890096c..00000000000 --- a/_sources/examples/old_animation/animation_blit_gtk2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/animation_blit_gtk2.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animation_blit_qt.txt b/_sources/examples/old_animation/animation_blit_qt.txt deleted file mode 120000 index 7f839ae9a3d..00000000000 --- a/_sources/examples/old_animation/animation_blit_qt.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/old_animation/animation_blit_qt.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animation_blit_qt4.txt b/_sources/examples/old_animation/animation_blit_qt4.txt deleted file mode 120000 index 47fbce17718..00000000000 --- a/_sources/examples/old_animation/animation_blit_qt4.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/animation_blit_qt4.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animation_blit_tk.txt b/_sources/examples/old_animation/animation_blit_tk.txt deleted file mode 120000 index 610f125d22c..00000000000 --- a/_sources/examples/old_animation/animation_blit_tk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/animation_blit_tk.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/animation_blit_wx.txt b/_sources/examples/old_animation/animation_blit_wx.txt deleted file mode 120000 index 0f2934e9d15..00000000000 --- a/_sources/examples/old_animation/animation_blit_wx.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/animation_blit_wx.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/draggable_legend.txt b/_sources/examples/old_animation/draggable_legend.txt deleted file mode 120000 index 8ae63bb8f36..00000000000 --- a/_sources/examples/old_animation/draggable_legend.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/draggable_legend.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/dynamic_collection.txt b/_sources/examples/old_animation/dynamic_collection.txt deleted file mode 120000 index b33313458b1..00000000000 --- a/_sources/examples/old_animation/dynamic_collection.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/dynamic_collection.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/dynamic_image_gtkagg.txt b/_sources/examples/old_animation/dynamic_image_gtkagg.txt deleted file mode 120000 index 5ee997d4df0..00000000000 --- a/_sources/examples/old_animation/dynamic_image_gtkagg.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/dynamic_image_gtkagg.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/dynamic_image_wxagg2.txt b/_sources/examples/old_animation/dynamic_image_wxagg2.txt deleted file mode 120000 index 06919c4364f..00000000000 --- a/_sources/examples/old_animation/dynamic_image_wxagg2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/dynamic_image_wxagg2.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/gtk_timeout.txt b/_sources/examples/old_animation/gtk_timeout.txt deleted file mode 120000 index 0eb704a1b85..00000000000 --- a/_sources/examples/old_animation/gtk_timeout.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/gtk_timeout.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/histogram_tkagg.txt b/_sources/examples/old_animation/histogram_tkagg.txt deleted file mode 120000 index 8d60278b51c..00000000000 --- a/_sources/examples/old_animation/histogram_tkagg.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/histogram_tkagg.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/index.txt b/_sources/examples/old_animation/index.txt deleted file mode 120000 index 630bf9bc149..00000000000 --- a/_sources/examples/old_animation/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/index.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/movie_demo.txt b/_sources/examples/old_animation/movie_demo.txt deleted file mode 120000 index 87bfaaf5e3c..00000000000 --- a/_sources/examples/old_animation/movie_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/movie_demo.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/simple_anim_gtk.txt b/_sources/examples/old_animation/simple_anim_gtk.txt deleted file mode 120000 index 106851913b2..00000000000 --- a/_sources/examples/old_animation/simple_anim_gtk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/simple_anim_gtk.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/simple_anim_tkagg.txt b/_sources/examples/old_animation/simple_anim_tkagg.txt deleted file mode 120000 index 4c3d4278e36..00000000000 --- a/_sources/examples/old_animation/simple_anim_tkagg.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/simple_anim_tkagg.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/simple_idle_wx.txt b/_sources/examples/old_animation/simple_idle_wx.txt deleted file mode 120000 index 9c484cfa9b1..00000000000 --- a/_sources/examples/old_animation/simple_idle_wx.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/simple_idle_wx.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/simple_timer_wx.txt b/_sources/examples/old_animation/simple_timer_wx.txt deleted file mode 120000 index eef393753cf..00000000000 --- a/_sources/examples/old_animation/simple_timer_wx.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/simple_timer_wx.txt \ No newline at end of file diff --git a/_sources/examples/old_animation/strip_chart_demo.txt b/_sources/examples/old_animation/strip_chart_demo.txt deleted file mode 120000 index 8593001a888..00000000000 --- a/_sources/examples/old_animation/strip_chart_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/old_animation/strip_chart_demo.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/index.rst.txt b/_sources/examples/pie_and_polar_charts/index.rst.txt deleted file mode 120000 index 354398e8ed5..00000000000 --- a/_sources/examples/pie_and_polar_charts/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pie_and_polar_charts/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/index.txt b/_sources/examples/pie_and_polar_charts/index.txt deleted file mode 120000 index 9fdd912817d..00000000000 --- a/_sources/examples/pie_and_polar_charts/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pie_and_polar_charts/index.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/pie_demo_features.rst.txt b/_sources/examples/pie_and_polar_charts/pie_demo_features.rst.txt deleted file mode 120000 index e835636b071..00000000000 --- a/_sources/examples/pie_and_polar_charts/pie_demo_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pie_and_polar_charts/pie_demo_features.rst.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/pie_demo_features.txt b/_sources/examples/pie_and_polar_charts/pie_demo_features.txt deleted file mode 120000 index 69d3c6eee28..00000000000 --- a/_sources/examples/pie_and_polar_charts/pie_demo_features.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pie_and_polar_charts/pie_demo_features.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/polar_bar_demo.rst.txt b/_sources/examples/pie_and_polar_charts/polar_bar_demo.rst.txt deleted file mode 120000 index 0dc87c0bfc3..00000000000 --- a/_sources/examples/pie_and_polar_charts/polar_bar_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pie_and_polar_charts/polar_bar_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/polar_bar_demo.txt b/_sources/examples/pie_and_polar_charts/polar_bar_demo.txt deleted file mode 120000 index 48e108d658e..00000000000 --- a/_sources/examples/pie_and_polar_charts/polar_bar_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pie_and_polar_charts/polar_bar_demo.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/polar_scatter_demo.rst.txt b/_sources/examples/pie_and_polar_charts/polar_scatter_demo.rst.txt deleted file mode 120000 index da8d9ba567e..00000000000 --- a/_sources/examples/pie_and_polar_charts/polar_scatter_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pie_and_polar_charts/polar_scatter_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pie_and_polar_charts/polar_scatter_demo.txt b/_sources/examples/pie_and_polar_charts/polar_scatter_demo.txt deleted file mode 120000 index 78130e67fc7..00000000000 --- a/_sources/examples/pie_and_polar_charts/polar_scatter_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pie_and_polar_charts/polar_scatter_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/accented_text.rst.txt b/_sources/examples/pylab_examples/accented_text.rst.txt deleted file mode 120000 index c0e00e5e4a9..00000000000 --- a/_sources/examples/pylab_examples/accented_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/accented_text.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/accented_text.txt b/_sources/examples/pylab_examples/accented_text.txt deleted file mode 120000 index 56a41d0326d..00000000000 --- a/_sources/examples/pylab_examples/accented_text.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/accented_text.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/agg_buffer.rst.txt b/_sources/examples/pylab_examples/agg_buffer.rst.txt deleted file mode 120000 index bbfb4d8e431..00000000000 --- a/_sources/examples/pylab_examples/agg_buffer.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/agg_buffer.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/agg_buffer.txt b/_sources/examples/pylab_examples/agg_buffer.txt deleted file mode 120000 index 422e4fe685c..00000000000 --- a/_sources/examples/pylab_examples/agg_buffer.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/agg_buffer.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/agg_buffer_to_array.rst.txt b/_sources/examples/pylab_examples/agg_buffer_to_array.rst.txt deleted file mode 120000 index ed4d58960b7..00000000000 --- a/_sources/examples/pylab_examples/agg_buffer_to_array.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/agg_buffer_to_array.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/agg_buffer_to_array.txt b/_sources/examples/pylab_examples/agg_buffer_to_array.txt deleted file mode 120000 index d0db7e9dbd5..00000000000 --- a/_sources/examples/pylab_examples/agg_buffer_to_array.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/agg_buffer_to_array.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/alignment_test.rst.txt b/_sources/examples/pylab_examples/alignment_test.rst.txt deleted file mode 120000 index 15f9e1a10a4..00000000000 --- a/_sources/examples/pylab_examples/alignment_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/alignment_test.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/alignment_test.txt b/_sources/examples/pylab_examples/alignment_test.txt deleted file mode 120000 index 67fa4b718ba..00000000000 --- a/_sources/examples/pylab_examples/alignment_test.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/alignment_test.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/anchored_artists.rst.txt b/_sources/examples/pylab_examples/anchored_artists.rst.txt deleted file mode 120000 index 89dd62c2944..00000000000 --- a/_sources/examples/pylab_examples/anchored_artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/anchored_artists.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/anchored_artists.txt b/_sources/examples/pylab_examples/anchored_artists.txt deleted file mode 120000 index ef190adbee7..00000000000 --- a/_sources/examples/pylab_examples/anchored_artists.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/anchored_artists.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/animation_demo.rst.txt b/_sources/examples/pylab_examples/animation_demo.rst.txt deleted file mode 120000 index 89e01ca29f5..00000000000 --- a/_sources/examples/pylab_examples/animation_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/animation_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/animation_demo.txt b/_sources/examples/pylab_examples/animation_demo.txt deleted file mode 120000 index 81cac3fbad6..00000000000 --- a/_sources/examples/pylab_examples/animation_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/animation_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/annotation_demo.rst.txt b/_sources/examples/pylab_examples/annotation_demo.rst.txt deleted file mode 120000 index 04c6a846e3c..00000000000 --- a/_sources/examples/pylab_examples/annotation_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/annotation_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/annotation_demo.txt b/_sources/examples/pylab_examples/annotation_demo.txt deleted file mode 120000 index a67a152bd7c..00000000000 --- a/_sources/examples/pylab_examples/annotation_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/annotation_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/annotation_demo2.rst.txt b/_sources/examples/pylab_examples/annotation_demo2.rst.txt deleted file mode 120000 index 64f27245507..00000000000 --- a/_sources/examples/pylab_examples/annotation_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/annotation_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/annotation_demo2.txt b/_sources/examples/pylab_examples/annotation_demo2.txt deleted file mode 120000 index 7ec2033c03c..00000000000 --- a/_sources/examples/pylab_examples/annotation_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/annotation_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/annotation_demo3.rst.txt b/_sources/examples/pylab_examples/annotation_demo3.rst.txt deleted file mode 120000 index 120d267f36c..00000000000 --- a/_sources/examples/pylab_examples/annotation_demo3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/annotation_demo3.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/annotation_demo3.txt b/_sources/examples/pylab_examples/annotation_demo3.txt deleted file mode 120000 index e52e38409d2..00000000000 --- a/_sources/examples/pylab_examples/annotation_demo3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/annotation_demo3.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/anscombe.rst.txt b/_sources/examples/pylab_examples/anscombe.rst.txt deleted file mode 120000 index d90b7ed968d..00000000000 --- a/_sources/examples/pylab_examples/anscombe.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/anscombe.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/anscombe.txt b/_sources/examples/pylab_examples/anscombe.txt deleted file mode 120000 index 3f9f2078fe1..00000000000 --- a/_sources/examples/pylab_examples/anscombe.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/anscombe.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/arctest.rst.txt b/_sources/examples/pylab_examples/arctest.rst.txt deleted file mode 120000 index e9f17a63b1f..00000000000 --- a/_sources/examples/pylab_examples/arctest.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/arctest.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/arctest.txt b/_sources/examples/pylab_examples/arctest.txt deleted file mode 120000 index 456201b4655..00000000000 --- a/_sources/examples/pylab_examples/arctest.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/arctest.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/arrow_demo.rst.txt b/_sources/examples/pylab_examples/arrow_demo.rst.txt deleted file mode 120000 index 04e2f0765a1..00000000000 --- a/_sources/examples/pylab_examples/arrow_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/arrow_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/arrow_demo.txt b/_sources/examples/pylab_examples/arrow_demo.txt deleted file mode 120000 index 7771065c77e..00000000000 --- a/_sources/examples/pylab_examples/arrow_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/arrow_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/arrow_simple_demo.rst.txt b/_sources/examples/pylab_examples/arrow_simple_demo.rst.txt deleted file mode 120000 index 6d065f8015f..00000000000 --- a/_sources/examples/pylab_examples/arrow_simple_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/arrow_simple_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/arrow_simple_demo.txt b/_sources/examples/pylab_examples/arrow_simple_demo.txt deleted file mode 120000 index a5c0e132fd1..00000000000 --- a/_sources/examples/pylab_examples/arrow_simple_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/arrow_simple_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/aspect_loglog.rst.txt b/_sources/examples/pylab_examples/aspect_loglog.rst.txt deleted file mode 120000 index 122c563f68a..00000000000 --- a/_sources/examples/pylab_examples/aspect_loglog.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/aspect_loglog.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/aspect_loglog.txt b/_sources/examples/pylab_examples/aspect_loglog.txt deleted file mode 120000 index aea07dcf8dc..00000000000 --- a/_sources/examples/pylab_examples/aspect_loglog.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/aspect_loglog.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axes_demo.rst.txt b/_sources/examples/pylab_examples/axes_demo.rst.txt deleted file mode 120000 index 2f156c31cbf..00000000000 --- a/_sources/examples/pylab_examples/axes_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/axes_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axes_demo.txt b/_sources/examples/pylab_examples/axes_demo.txt deleted file mode 120000 index d0a9d49ae27..00000000000 --- a/_sources/examples/pylab_examples/axes_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/axes_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axes_props.rst.txt b/_sources/examples/pylab_examples/axes_props.rst.txt deleted file mode 120000 index a62c105d849..00000000000 --- a/_sources/examples/pylab_examples/axes_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/axes_props.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axes_props.txt b/_sources/examples/pylab_examples/axes_props.txt deleted file mode 120000 index 4efab408a7a..00000000000 --- a/_sources/examples/pylab_examples/axes_props.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/axes_props.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axes_zoom_effect.rst.txt b/_sources/examples/pylab_examples/axes_zoom_effect.rst.txt deleted file mode 120000 index 31aba78f87e..00000000000 --- a/_sources/examples/pylab_examples/axes_zoom_effect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/axes_zoom_effect.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axes_zoom_effect.txt b/_sources/examples/pylab_examples/axes_zoom_effect.txt deleted file mode 120000 index 554d8e476f6..00000000000 --- a/_sources/examples/pylab_examples/axes_zoom_effect.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/axes_zoom_effect.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axhspan_demo.rst.txt b/_sources/examples/pylab_examples/axhspan_demo.rst.txt deleted file mode 120000 index 1a0ee4f0ede..00000000000 --- a/_sources/examples/pylab_examples/axhspan_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/axhspan_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axhspan_demo.txt b/_sources/examples/pylab_examples/axhspan_demo.txt deleted file mode 120000 index ce7d2ed2806..00000000000 --- a/_sources/examples/pylab_examples/axhspan_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/axhspan_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axis_equal_demo.rst.txt b/_sources/examples/pylab_examples/axis_equal_demo.rst.txt deleted file mode 120000 index 201b46f5ce7..00000000000 --- a/_sources/examples/pylab_examples/axis_equal_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/axis_equal_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/axis_equal_demo.txt b/_sources/examples/pylab_examples/axis_equal_demo.txt deleted file mode 120000 index d96c9671df1..00000000000 --- a/_sources/examples/pylab_examples/axis_equal_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/axis_equal_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/bar_stacked.rst.txt b/_sources/examples/pylab_examples/bar_stacked.rst.txt deleted file mode 120000 index 893bb3e61b3..00000000000 --- a/_sources/examples/pylab_examples/bar_stacked.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/bar_stacked.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/bar_stacked.txt b/_sources/examples/pylab_examples/bar_stacked.txt deleted file mode 120000 index 2aecde4d23d..00000000000 --- a/_sources/examples/pylab_examples/bar_stacked.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/bar_stacked.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barb_demo.rst.txt b/_sources/examples/pylab_examples/barb_demo.rst.txt deleted file mode 120000 index 7d27448b300..00000000000 --- a/_sources/examples/pylab_examples/barb_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/barb_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barb_demo.txt b/_sources/examples/pylab_examples/barb_demo.txt deleted file mode 120000 index 4952cd00e1a..00000000000 --- a/_sources/examples/pylab_examples/barb_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/barb_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barchart_demo.rst.txt b/_sources/examples/pylab_examples/barchart_demo.rst.txt deleted file mode 120000 index 2be8ed0dc4a..00000000000 --- a/_sources/examples/pylab_examples/barchart_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/barchart_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barchart_demo.txt b/_sources/examples/pylab_examples/barchart_demo.txt deleted file mode 120000 index 6576ece06d7..00000000000 --- a/_sources/examples/pylab_examples/barchart_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/barchart_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barchart_demo2.rst.txt b/_sources/examples/pylab_examples/barchart_demo2.rst.txt deleted file mode 120000 index 52a21a9ea80..00000000000 --- a/_sources/examples/pylab_examples/barchart_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/barchart_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barchart_demo2.txt b/_sources/examples/pylab_examples/barchart_demo2.txt deleted file mode 120000 index 370f839c11b..00000000000 --- a/_sources/examples/pylab_examples/barchart_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/barchart_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barcode_demo.rst.txt b/_sources/examples/pylab_examples/barcode_demo.rst.txt deleted file mode 120000 index e15aabe81ab..00000000000 --- a/_sources/examples/pylab_examples/barcode_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/barcode_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barcode_demo.txt b/_sources/examples/pylab_examples/barcode_demo.txt deleted file mode 120000 index 6bcb805d399..00000000000 --- a/_sources/examples/pylab_examples/barcode_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/barcode_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/barh_demo.txt b/_sources/examples/pylab_examples/barh_demo.txt deleted file mode 120000 index 496013f580c..00000000000 --- a/_sources/examples/pylab_examples/barh_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/barh_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/boxplot_demo.rst.txt b/_sources/examples/pylab_examples/boxplot_demo.rst.txt deleted file mode 120000 index 316f60e89f7..00000000000 --- a/_sources/examples/pylab_examples/boxplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/boxplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/boxplot_demo.txt b/_sources/examples/pylab_examples/boxplot_demo.txt deleted file mode 120000 index 177db6bd656..00000000000 --- a/_sources/examples/pylab_examples/boxplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/boxplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/boxplot_demo2.rst.txt b/_sources/examples/pylab_examples/boxplot_demo2.rst.txt deleted file mode 120000 index e717c305e04..00000000000 --- a/_sources/examples/pylab_examples/boxplot_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/boxplot_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/boxplot_demo2.txt b/_sources/examples/pylab_examples/boxplot_demo2.txt deleted file mode 120000 index f604d829799..00000000000 --- a/_sources/examples/pylab_examples/boxplot_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/boxplot_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/boxplot_demo3.rst.txt b/_sources/examples/pylab_examples/boxplot_demo3.rst.txt deleted file mode 120000 index 09165fadc48..00000000000 --- a/_sources/examples/pylab_examples/boxplot_demo3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/boxplot_demo3.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/boxplot_demo3.txt b/_sources/examples/pylab_examples/boxplot_demo3.txt deleted file mode 120000 index a1427070b14..00000000000 --- a/_sources/examples/pylab_examples/boxplot_demo3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/boxplot_demo3.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/break.txt b/_sources/examples/pylab_examples/break.txt deleted file mode 120000 index b435ab1e939..00000000000 --- a/_sources/examples/pylab_examples/break.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/break.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/broken_axis.rst.txt b/_sources/examples/pylab_examples/broken_axis.rst.txt deleted file mode 120000 index 8e32d5a3fed..00000000000 --- a/_sources/examples/pylab_examples/broken_axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/broken_axis.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/broken_axis.txt b/_sources/examples/pylab_examples/broken_axis.txt deleted file mode 120000 index 12ff98a7351..00000000000 --- a/_sources/examples/pylab_examples/broken_axis.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/broken_axis.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/broken_barh.rst.txt b/_sources/examples/pylab_examples/broken_barh.rst.txt deleted file mode 120000 index 38fa2fa5b19..00000000000 --- a/_sources/examples/pylab_examples/broken_barh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/broken_barh.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/broken_barh.txt b/_sources/examples/pylab_examples/broken_barh.txt deleted file mode 120000 index 37dd7635fb8..00000000000 --- a/_sources/examples/pylab_examples/broken_barh.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/broken_barh.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/centered_ticklabels.rst.txt b/_sources/examples/pylab_examples/centered_ticklabels.rst.txt deleted file mode 120000 index a2cb2428615..00000000000 --- a/_sources/examples/pylab_examples/centered_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/centered_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/centered_ticklabels.txt b/_sources/examples/pylab_examples/centered_ticklabels.txt deleted file mode 120000 index 4d81157d130..00000000000 --- a/_sources/examples/pylab_examples/centered_ticklabels.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/centered_ticklabels.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/clippedline.txt b/_sources/examples/pylab_examples/clippedline.txt deleted file mode 120000 index 2526aef7641..00000000000 --- a/_sources/examples/pylab_examples/clippedline.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.0/_sources/examples/pylab_examples/clippedline.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/cohere_demo.rst.txt b/_sources/examples/pylab_examples/cohere_demo.rst.txt deleted file mode 120000 index f2ff603532f..00000000000 --- a/_sources/examples/pylab_examples/cohere_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/cohere_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/cohere_demo.txt b/_sources/examples/pylab_examples/cohere_demo.txt deleted file mode 120000 index da700127808..00000000000 --- a/_sources/examples/pylab_examples/cohere_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/cohere_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/color_by_yvalue.rst.txt b/_sources/examples/pylab_examples/color_by_yvalue.rst.txt deleted file mode 120000 index cad79b64955..00000000000 --- a/_sources/examples/pylab_examples/color_by_yvalue.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/color_by_yvalue.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/color_by_yvalue.txt b/_sources/examples/pylab_examples/color_by_yvalue.txt deleted file mode 120000 index de78e90db86..00000000000 --- a/_sources/examples/pylab_examples/color_by_yvalue.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/color_by_yvalue.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/color_demo.rst.txt b/_sources/examples/pylab_examples/color_demo.rst.txt deleted file mode 120000 index 3e7dc8865de..00000000000 --- a/_sources/examples/pylab_examples/color_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/color_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/color_demo.txt b/_sources/examples/pylab_examples/color_demo.txt deleted file mode 120000 index ee19652e4a7..00000000000 --- a/_sources/examples/pylab_examples/color_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/color_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.rst.txt b/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.rst.txt deleted file mode 120000 index 0205e87380f..00000000000 --- a/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.txt b/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.txt deleted file mode 120000 index c0f5c680255..00000000000 --- a/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/colorbar_tick_labelling_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/colours.rst.txt b/_sources/examples/pylab_examples/colours.rst.txt deleted file mode 120000 index 2719c20a1d1..00000000000 --- a/_sources/examples/pylab_examples/colours.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/colours.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/colours.txt b/_sources/examples/pylab_examples/colours.txt deleted file mode 120000 index c7546bb3cf1..00000000000 --- a/_sources/examples/pylab_examples/colours.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/colours.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_corner_mask.rst.txt b/_sources/examples/pylab_examples/contour_corner_mask.rst.txt deleted file mode 120000 index 4eda7a977bf..00000000000 --- a/_sources/examples/pylab_examples/contour_corner_mask.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/contour_corner_mask.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_corner_mask.txt b/_sources/examples/pylab_examples/contour_corner_mask.txt deleted file mode 120000 index 52e4acbfe85..00000000000 --- a/_sources/examples/pylab_examples/contour_corner_mask.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/contour_corner_mask.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_demo.rst.txt b/_sources/examples/pylab_examples/contour_demo.rst.txt deleted file mode 120000 index 65bbc654287..00000000000 --- a/_sources/examples/pylab_examples/contour_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/contour_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_demo.txt b/_sources/examples/pylab_examples/contour_demo.txt deleted file mode 120000 index 1644a41c128..00000000000 --- a/_sources/examples/pylab_examples/contour_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/contour_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_image.rst.txt b/_sources/examples/pylab_examples/contour_image.rst.txt deleted file mode 120000 index 1914218cce8..00000000000 --- a/_sources/examples/pylab_examples/contour_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/contour_image.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_image.txt b/_sources/examples/pylab_examples/contour_image.txt deleted file mode 120000 index 0dc213fa7e1..00000000000 --- a/_sources/examples/pylab_examples/contour_image.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/contour_image.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_label_demo.rst.txt b/_sources/examples/pylab_examples/contour_label_demo.rst.txt deleted file mode 120000 index 1e4c0adb46d..00000000000 --- a/_sources/examples/pylab_examples/contour_label_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/contour_label_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contour_label_demo.txt b/_sources/examples/pylab_examples/contour_label_demo.txt deleted file mode 120000 index 07d9b99eb04..00000000000 --- a/_sources/examples/pylab_examples/contour_label_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/contour_label_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contourf_demo.rst.txt b/_sources/examples/pylab_examples/contourf_demo.rst.txt deleted file mode 120000 index ac74563e8df..00000000000 --- a/_sources/examples/pylab_examples/contourf_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/contourf_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contourf_demo.txt b/_sources/examples/pylab_examples/contourf_demo.txt deleted file mode 120000 index 2c8a6bd865b..00000000000 --- a/_sources/examples/pylab_examples/contourf_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/contourf_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contourf_hatching.rst.txt b/_sources/examples/pylab_examples/contourf_hatching.rst.txt deleted file mode 120000 index 51b52dfb36d..00000000000 --- a/_sources/examples/pylab_examples/contourf_hatching.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/contourf_hatching.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contourf_hatching.txt b/_sources/examples/pylab_examples/contourf_hatching.txt deleted file mode 120000 index 307ac583957..00000000000 --- a/_sources/examples/pylab_examples/contourf_hatching.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/contourf_hatching.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/contourf_log.txt b/_sources/examples/pylab_examples/contourf_log.txt deleted file mode 120000 index 8cc3ba5fe37..00000000000 --- a/_sources/examples/pylab_examples/contourf_log.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.4.3/_sources/examples/pylab_examples/contourf_log.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/coords_demo.rst.txt b/_sources/examples/pylab_examples/coords_demo.rst.txt deleted file mode 120000 index 0992fb21bd1..00000000000 --- a/_sources/examples/pylab_examples/coords_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/coords_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/coords_demo.txt b/_sources/examples/pylab_examples/coords_demo.txt deleted file mode 120000 index d45c2c95a13..00000000000 --- a/_sources/examples/pylab_examples/coords_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/coords_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/coords_report.rst.txt b/_sources/examples/pylab_examples/coords_report.rst.txt deleted file mode 120000 index ed67fb4302c..00000000000 --- a/_sources/examples/pylab_examples/coords_report.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/coords_report.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/coords_report.txt b/_sources/examples/pylab_examples/coords_report.txt deleted file mode 120000 index 3364190684c..00000000000 --- a/_sources/examples/pylab_examples/coords_report.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/coords_report.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/csd_demo.rst.txt b/_sources/examples/pylab_examples/csd_demo.rst.txt deleted file mode 120000 index 0c54732f9bd..00000000000 --- a/_sources/examples/pylab_examples/csd_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/csd_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/csd_demo.txt b/_sources/examples/pylab_examples/csd_demo.txt deleted file mode 120000 index 62d880a56ce..00000000000 --- a/_sources/examples/pylab_examples/csd_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/csd_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/cursor_demo.rst.txt b/_sources/examples/pylab_examples/cursor_demo.rst.txt deleted file mode 120000 index 30e76c68135..00000000000 --- a/_sources/examples/pylab_examples/cursor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/cursor_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/cursor_demo.txt b/_sources/examples/pylab_examples/cursor_demo.txt deleted file mode 120000 index 4c545e47744..00000000000 --- a/_sources/examples/pylab_examples/cursor_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/cursor_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/custom_cmap.rst.txt b/_sources/examples/pylab_examples/custom_cmap.rst.txt deleted file mode 120000 index b70c8698da3..00000000000 --- a/_sources/examples/pylab_examples/custom_cmap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/custom_cmap.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/custom_cmap.txt b/_sources/examples/pylab_examples/custom_cmap.txt deleted file mode 120000 index 71265ad0b41..00000000000 --- a/_sources/examples/pylab_examples/custom_cmap.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/custom_cmap.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/custom_figure_class.rst.txt b/_sources/examples/pylab_examples/custom_figure_class.rst.txt deleted file mode 120000 index 1b11d7da4a7..00000000000 --- a/_sources/examples/pylab_examples/custom_figure_class.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/custom_figure_class.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/custom_figure_class.txt b/_sources/examples/pylab_examples/custom_figure_class.txt deleted file mode 120000 index 94260ebc66e..00000000000 --- a/_sources/examples/pylab_examples/custom_figure_class.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/custom_figure_class.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/custom_ticker1.rst.txt b/_sources/examples/pylab_examples/custom_ticker1.rst.txt deleted file mode 120000 index fb6824e538b..00000000000 --- a/_sources/examples/pylab_examples/custom_ticker1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/custom_ticker1.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/custom_ticker1.txt b/_sources/examples/pylab_examples/custom_ticker1.txt deleted file mode 120000 index 904897a6ab2..00000000000 --- a/_sources/examples/pylab_examples/custom_ticker1.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/custom_ticker1.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/customize_rc.rst.txt b/_sources/examples/pylab_examples/customize_rc.rst.txt deleted file mode 120000 index ef9fc3143ae..00000000000 --- a/_sources/examples/pylab_examples/customize_rc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/customize_rc.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/customize_rc.txt b/_sources/examples/pylab_examples/customize_rc.txt deleted file mode 120000 index 95ca19958fe..00000000000 --- a/_sources/examples/pylab_examples/customize_rc.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/customize_rc.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/dannys_example.txt b/_sources/examples/pylab_examples/dannys_example.txt deleted file mode 120000 index dd6ecbbce4d..00000000000 --- a/_sources/examples/pylab_examples/dannys_example.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/dannys_example.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/dash_control.txt b/_sources/examples/pylab_examples/dash_control.txt deleted file mode 120000 index ffaeeba69fd..00000000000 --- a/_sources/examples/pylab_examples/dash_control.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/dash_control.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/dashpointlabel.rst.txt b/_sources/examples/pylab_examples/dashpointlabel.rst.txt deleted file mode 120000 index bd4d07a1839..00000000000 --- a/_sources/examples/pylab_examples/dashpointlabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/dashpointlabel.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/dashpointlabel.txt b/_sources/examples/pylab_examples/dashpointlabel.txt deleted file mode 120000 index 4dc61da061a..00000000000 --- a/_sources/examples/pylab_examples/dashpointlabel.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/dashpointlabel.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/data_helper.txt b/_sources/examples/pylab_examples/data_helper.txt deleted file mode 120000 index 0d2c1c95686..00000000000 --- a/_sources/examples/pylab_examples/data_helper.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/data_helper.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_demo1.txt b/_sources/examples/pylab_examples/date_demo1.txt deleted file mode 120000 index 80afa9e6a49..00000000000 --- a/_sources/examples/pylab_examples/date_demo1.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/date_demo1.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_demo2.txt b/_sources/examples/pylab_examples/date_demo2.txt deleted file mode 120000 index 860fa800598..00000000000 --- a/_sources/examples/pylab_examples/date_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/date_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_demo_convert.rst.txt b/_sources/examples/pylab_examples/date_demo_convert.rst.txt deleted file mode 120000 index 16dd9d7e285..00000000000 --- a/_sources/examples/pylab_examples/date_demo_convert.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/date_demo_convert.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_demo_convert.txt b/_sources/examples/pylab_examples/date_demo_convert.txt deleted file mode 120000 index 9587b2c29a5..00000000000 --- a/_sources/examples/pylab_examples/date_demo_convert.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/date_demo_convert.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_demo_rrule.rst.txt b/_sources/examples/pylab_examples/date_demo_rrule.rst.txt deleted file mode 120000 index 53f4e1e9dc3..00000000000 --- a/_sources/examples/pylab_examples/date_demo_rrule.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/date_demo_rrule.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_demo_rrule.txt b/_sources/examples/pylab_examples/date_demo_rrule.txt deleted file mode 120000 index 277536f6073..00000000000 --- a/_sources/examples/pylab_examples/date_demo_rrule.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/date_demo_rrule.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_index_formatter.rst.txt b/_sources/examples/pylab_examples/date_index_formatter.rst.txt deleted file mode 120000 index dd7b9dfc5af..00000000000 --- a/_sources/examples/pylab_examples/date_index_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/date_index_formatter.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/date_index_formatter.txt b/_sources/examples/pylab_examples/date_index_formatter.txt deleted file mode 120000 index e4dd84c77ff..00000000000 --- a/_sources/examples/pylab_examples/date_index_formatter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/date_index_formatter.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_agg_filter.rst.txt b/_sources/examples/pylab_examples/demo_agg_filter.rst.txt deleted file mode 120000 index 876d9e191ee..00000000000 --- a/_sources/examples/pylab_examples/demo_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/demo_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_agg_filter.txt b/_sources/examples/pylab_examples/demo_agg_filter.txt deleted file mode 120000 index 02a01f4d4e5..00000000000 --- a/_sources/examples/pylab_examples/demo_agg_filter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/demo_agg_filter.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_annotation_box.rst.txt b/_sources/examples/pylab_examples/demo_annotation_box.rst.txt deleted file mode 120000 index 80ebe034267..00000000000 --- a/_sources/examples/pylab_examples/demo_annotation_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/demo_annotation_box.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_annotation_box.txt b/_sources/examples/pylab_examples/demo_annotation_box.txt deleted file mode 120000 index 7fd011992da..00000000000 --- a/_sources/examples/pylab_examples/demo_annotation_box.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/demo_annotation_box.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_bboximage.rst.txt b/_sources/examples/pylab_examples/demo_bboximage.rst.txt deleted file mode 120000 index c0fce809486..00000000000 --- a/_sources/examples/pylab_examples/demo_bboximage.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/demo_bboximage.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_bboximage.txt b/_sources/examples/pylab_examples/demo_bboximage.txt deleted file mode 120000 index e711864dad9..00000000000 --- a/_sources/examples/pylab_examples/demo_bboximage.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/demo_bboximage.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_ribbon_box.rst.txt b/_sources/examples/pylab_examples/demo_ribbon_box.rst.txt deleted file mode 120000 index 966e6f721a1..00000000000 --- a/_sources/examples/pylab_examples/demo_ribbon_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/demo_ribbon_box.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_ribbon_box.txt b/_sources/examples/pylab_examples/demo_ribbon_box.txt deleted file mode 120000 index 823fc8a61a4..00000000000 --- a/_sources/examples/pylab_examples/demo_ribbon_box.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/demo_ribbon_box.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_text_path.rst.txt b/_sources/examples/pylab_examples/demo_text_path.rst.txt deleted file mode 120000 index 35ad5eca9dd..00000000000 --- a/_sources/examples/pylab_examples/demo_text_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/demo_text_path.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_text_path.txt b/_sources/examples/pylab_examples/demo_text_path.txt deleted file mode 120000 index bac6991cdd5..00000000000 --- a/_sources/examples/pylab_examples/demo_text_path.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/demo_text_path.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_text_rotation_mode.rst.txt b/_sources/examples/pylab_examples/demo_text_rotation_mode.rst.txt deleted file mode 120000 index 70e6816727d..00000000000 --- a/_sources/examples/pylab_examples/demo_text_rotation_mode.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/demo_text_rotation_mode.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_text_rotation_mode.txt b/_sources/examples/pylab_examples/demo_text_rotation_mode.txt deleted file mode 120000 index 4950aeba8fc..00000000000 --- a/_sources/examples/pylab_examples/demo_text_rotation_mode.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/demo_text_rotation_mode.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_tight_layout.rst.txt b/_sources/examples/pylab_examples/demo_tight_layout.rst.txt deleted file mode 120000 index 2134f26add8..00000000000 --- a/_sources/examples/pylab_examples/demo_tight_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/demo_tight_layout.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/demo_tight_layout.txt b/_sources/examples/pylab_examples/demo_tight_layout.txt deleted file mode 120000 index 05fd33be121..00000000000 --- a/_sources/examples/pylab_examples/demo_tight_layout.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/demo_tight_layout.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/dolphin.rst.txt b/_sources/examples/pylab_examples/dolphin.rst.txt deleted file mode 120000 index 8957c3a2a9c..00000000000 --- a/_sources/examples/pylab_examples/dolphin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/dolphin.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/dolphin.txt b/_sources/examples/pylab_examples/dolphin.txt deleted file mode 120000 index fa698602ddc..00000000000 --- a/_sources/examples/pylab_examples/dolphin.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/dolphin.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ellipse_collection.rst.txt b/_sources/examples/pylab_examples/ellipse_collection.rst.txt deleted file mode 120000 index 6690a94faba..00000000000 --- a/_sources/examples/pylab_examples/ellipse_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/ellipse_collection.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ellipse_collection.txt b/_sources/examples/pylab_examples/ellipse_collection.txt deleted file mode 120000 index 7ccc9326dfd..00000000000 --- a/_sources/examples/pylab_examples/ellipse_collection.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/ellipse_collection.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ellipse_demo.rst.txt b/_sources/examples/pylab_examples/ellipse_demo.rst.txt deleted file mode 120000 index db856318d31..00000000000 --- a/_sources/examples/pylab_examples/ellipse_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/ellipse_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ellipse_demo.txt b/_sources/examples/pylab_examples/ellipse_demo.txt deleted file mode 120000 index 6e6c348d94b..00000000000 --- a/_sources/examples/pylab_examples/ellipse_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/ellipse_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ellipse_rotated.rst.txt b/_sources/examples/pylab_examples/ellipse_rotated.rst.txt deleted file mode 120000 index 3b363b43131..00000000000 --- a/_sources/examples/pylab_examples/ellipse_rotated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/ellipse_rotated.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ellipse_rotated.txt b/_sources/examples/pylab_examples/ellipse_rotated.txt deleted file mode 120000 index 79d895c0d64..00000000000 --- a/_sources/examples/pylab_examples/ellipse_rotated.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/ellipse_rotated.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/equal_aspect_ratio.rst.txt b/_sources/examples/pylab_examples/equal_aspect_ratio.rst.txt deleted file mode 120000 index 4d095b1fdda..00000000000 --- a/_sources/examples/pylab_examples/equal_aspect_ratio.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/equal_aspect_ratio.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/equal_aspect_ratio.txt b/_sources/examples/pylab_examples/equal_aspect_ratio.txt deleted file mode 120000 index 44af08f0a67..00000000000 --- a/_sources/examples/pylab_examples/equal_aspect_ratio.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/equal_aspect_ratio.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/errorbar_demo.txt b/_sources/examples/pylab_examples/errorbar_demo.txt deleted file mode 120000 index ff7805a6517..00000000000 --- a/_sources/examples/pylab_examples/errorbar_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/errorbar_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/errorbar_limits.rst.txt b/_sources/examples/pylab_examples/errorbar_limits.rst.txt deleted file mode 120000 index 407aba0b8c2..00000000000 --- a/_sources/examples/pylab_examples/errorbar_limits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/errorbar_limits.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/errorbar_limits.txt b/_sources/examples/pylab_examples/errorbar_limits.txt deleted file mode 120000 index 1819fc4a99b..00000000000 --- a/_sources/examples/pylab_examples/errorbar_limits.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/errorbar_limits.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/errorbar_subsample.rst.txt b/_sources/examples/pylab_examples/errorbar_subsample.rst.txt deleted file mode 120000 index 5729ed539a8..00000000000 --- a/_sources/examples/pylab_examples/errorbar_subsample.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/errorbar_subsample.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/errorbar_subsample.txt b/_sources/examples/pylab_examples/errorbar_subsample.txt deleted file mode 120000 index 15e5839c983..00000000000 --- a/_sources/examples/pylab_examples/errorbar_subsample.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/errorbar_subsample.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/eventcollection_demo.rst.txt b/_sources/examples/pylab_examples/eventcollection_demo.rst.txt deleted file mode 120000 index 5b02b763f34..00000000000 --- a/_sources/examples/pylab_examples/eventcollection_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/eventcollection_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/eventcollection_demo.txt b/_sources/examples/pylab_examples/eventcollection_demo.txt deleted file mode 120000 index 69b689b9ca4..00000000000 --- a/_sources/examples/pylab_examples/eventcollection_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/eventcollection_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/eventplot_demo.rst.txt b/_sources/examples/pylab_examples/eventplot_demo.rst.txt deleted file mode 120000 index 380b1e86925..00000000000 --- a/_sources/examples/pylab_examples/eventplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/eventplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/eventplot_demo.txt b/_sources/examples/pylab_examples/eventplot_demo.txt deleted file mode 120000 index 3147d25a972..00000000000 --- a/_sources/examples/pylab_examples/eventplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/eventplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancyarrow_demo.rst.txt b/_sources/examples/pylab_examples/fancyarrow_demo.rst.txt deleted file mode 120000 index 108fa78d98c..00000000000 --- a/_sources/examples/pylab_examples/fancyarrow_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fancyarrow_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancyarrow_demo.txt b/_sources/examples/pylab_examples/fancyarrow_demo.txt deleted file mode 120000 index a06404ab904..00000000000 --- a/_sources/examples/pylab_examples/fancyarrow_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fancyarrow_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancybox_demo.rst.txt b/_sources/examples/pylab_examples/fancybox_demo.rst.txt deleted file mode 120000 index dcc9bc6365c..00000000000 --- a/_sources/examples/pylab_examples/fancybox_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fancybox_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancybox_demo.txt b/_sources/examples/pylab_examples/fancybox_demo.txt deleted file mode 120000 index 7ac7a0b424c..00000000000 --- a/_sources/examples/pylab_examples/fancybox_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fancybox_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancybox_demo2.rst.txt b/_sources/examples/pylab_examples/fancybox_demo2.rst.txt deleted file mode 120000 index ed8edb378d8..00000000000 --- a/_sources/examples/pylab_examples/fancybox_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fancybox_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancybox_demo2.txt b/_sources/examples/pylab_examples/fancybox_demo2.txt deleted file mode 120000 index 21e0539c0b6..00000000000 --- a/_sources/examples/pylab_examples/fancybox_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fancybox_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancytextbox_demo.rst.txt b/_sources/examples/pylab_examples/fancytextbox_demo.rst.txt deleted file mode 120000 index 9cec1a9e708..00000000000 --- a/_sources/examples/pylab_examples/fancytextbox_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fancytextbox_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fancytextbox_demo.txt b/_sources/examples/pylab_examples/fancytextbox_demo.txt deleted file mode 120000 index 8e8f51d3b21..00000000000 --- a/_sources/examples/pylab_examples/fancytextbox_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fancytextbox_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/figimage_demo.rst.txt b/_sources/examples/pylab_examples/figimage_demo.rst.txt deleted file mode 120000 index bc6cc875f0d..00000000000 --- a/_sources/examples/pylab_examples/figimage_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/figimage_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/figimage_demo.txt b/_sources/examples/pylab_examples/figimage_demo.txt deleted file mode 120000 index b943c5503b2..00000000000 --- a/_sources/examples/pylab_examples/figimage_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/figimage_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/figlegend_demo.rst.txt b/_sources/examples/pylab_examples/figlegend_demo.rst.txt deleted file mode 120000 index 3cfb3a613ac..00000000000 --- a/_sources/examples/pylab_examples/figlegend_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/figlegend_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/figlegend_demo.txt b/_sources/examples/pylab_examples/figlegend_demo.txt deleted file mode 120000 index 836b29cd909..00000000000 --- a/_sources/examples/pylab_examples/figlegend_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/figlegend_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/figure_title.rst.txt b/_sources/examples/pylab_examples/figure_title.rst.txt deleted file mode 120000 index 573fba248c7..00000000000 --- a/_sources/examples/pylab_examples/figure_title.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/figure_title.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/figure_title.txt b/_sources/examples/pylab_examples/figure_title.txt deleted file mode 120000 index c81d0aa73d5..00000000000 --- a/_sources/examples/pylab_examples/figure_title.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/figure_title.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_between_demo.rst.txt b/_sources/examples/pylab_examples/fill_between_demo.rst.txt deleted file mode 120000 index c6698810bc1..00000000000 --- a/_sources/examples/pylab_examples/fill_between_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fill_between_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_between_demo.txt b/_sources/examples/pylab_examples/fill_between_demo.txt deleted file mode 120000 index 20bbce31748..00000000000 --- a/_sources/examples/pylab_examples/fill_between_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fill_between_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_betweenx_demo.rst.txt b/_sources/examples/pylab_examples/fill_betweenx_demo.rst.txt deleted file mode 120000 index fa244a26eec..00000000000 --- a/_sources/examples/pylab_examples/fill_betweenx_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fill_betweenx_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_betweenx_demo.txt b/_sources/examples/pylab_examples/fill_betweenx_demo.txt deleted file mode 120000 index 15bce02aba5..00000000000 --- a/_sources/examples/pylab_examples/fill_betweenx_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fill_betweenx_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_demo.txt b/_sources/examples/pylab_examples/fill_demo.txt deleted file mode 120000 index 28b812abbdf..00000000000 --- a/_sources/examples/pylab_examples/fill_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/fill_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_demo2.txt b/_sources/examples/pylab_examples/fill_demo2.txt deleted file mode 120000 index b5ae252adc8..00000000000 --- a/_sources/examples/pylab_examples/fill_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/fill_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_spiral.rst.txt b/_sources/examples/pylab_examples/fill_spiral.rst.txt deleted file mode 120000 index 31fc9e2f284..00000000000 --- a/_sources/examples/pylab_examples/fill_spiral.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fill_spiral.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fill_spiral.txt b/_sources/examples/pylab_examples/fill_spiral.txt deleted file mode 120000 index 4329b53b56f..00000000000 --- a/_sources/examples/pylab_examples/fill_spiral.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fill_spiral.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/filledmarker_demo.txt b/_sources/examples/pylab_examples/filledmarker_demo.txt deleted file mode 120000 index e3d0fb5d725..00000000000 --- a/_sources/examples/pylab_examples/filledmarker_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/filledmarker_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/finance_demo.txt b/_sources/examples/pylab_examples/finance_demo.txt deleted file mode 120000 index d8817556bcb..00000000000 --- a/_sources/examples/pylab_examples/finance_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/finance_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/finance_work2.txt b/_sources/examples/pylab_examples/finance_work2.txt deleted file mode 120000 index 6de137d5488..00000000000 --- a/_sources/examples/pylab_examples/finance_work2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/finance_work2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/findobj_demo.rst.txt b/_sources/examples/pylab_examples/findobj_demo.rst.txt deleted file mode 120000 index 25d211c9003..00000000000 --- a/_sources/examples/pylab_examples/findobj_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/findobj_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/findobj_demo.txt b/_sources/examples/pylab_examples/findobj_demo.txt deleted file mode 120000 index b0a1e2574d7..00000000000 --- a/_sources/examples/pylab_examples/findobj_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/findobj_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/font_table_ttf.rst.txt b/_sources/examples/pylab_examples/font_table_ttf.rst.txt deleted file mode 120000 index 3ec8429f01b..00000000000 --- a/_sources/examples/pylab_examples/font_table_ttf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/font_table_ttf.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/font_table_ttf.txt b/_sources/examples/pylab_examples/font_table_ttf.txt deleted file mode 120000 index 569cddcbd05..00000000000 --- a/_sources/examples/pylab_examples/font_table_ttf.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/font_table_ttf.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fonts_demo.rst.txt b/_sources/examples/pylab_examples/fonts_demo.rst.txt deleted file mode 120000 index 8c33f43d2db..00000000000 --- a/_sources/examples/pylab_examples/fonts_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fonts_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fonts_demo.txt b/_sources/examples/pylab_examples/fonts_demo.txt deleted file mode 120000 index a0cb38a50c2..00000000000 --- a/_sources/examples/pylab_examples/fonts_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fonts_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fonts_demo_kw.rst.txt b/_sources/examples/pylab_examples/fonts_demo_kw.rst.txt deleted file mode 120000 index eab17b3162d..00000000000 --- a/_sources/examples/pylab_examples/fonts_demo_kw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/fonts_demo_kw.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/fonts_demo_kw.txt b/_sources/examples/pylab_examples/fonts_demo_kw.txt deleted file mode 120000 index f5934f5a089..00000000000 --- a/_sources/examples/pylab_examples/fonts_demo_kw.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/fonts_demo_kw.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ganged_plots.rst.txt b/_sources/examples/pylab_examples/ganged_plots.rst.txt deleted file mode 120000 index 5228147f975..00000000000 --- a/_sources/examples/pylab_examples/ganged_plots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/ganged_plots.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ganged_plots.txt b/_sources/examples/pylab_examples/ganged_plots.txt deleted file mode 120000 index 9e43ab367de..00000000000 --- a/_sources/examples/pylab_examples/ganged_plots.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/ganged_plots.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/geo_demo.rst.txt b/_sources/examples/pylab_examples/geo_demo.rst.txt deleted file mode 120000 index 6caeab754ab..00000000000 --- a/_sources/examples/pylab_examples/geo_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/geo_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/geo_demo.txt b/_sources/examples/pylab_examples/geo_demo.txt deleted file mode 120000 index c44c8b69075..00000000000 --- a/_sources/examples/pylab_examples/geo_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/geo_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ginput_demo.rst.txt b/_sources/examples/pylab_examples/ginput_demo.rst.txt deleted file mode 120000 index a4275427dcf..00000000000 --- a/_sources/examples/pylab_examples/ginput_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/ginput_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ginput_demo.txt b/_sources/examples/pylab_examples/ginput_demo.txt deleted file mode 120000 index 589f22e3b59..00000000000 --- a/_sources/examples/pylab_examples/ginput_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/ginput_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ginput_manual_clabel.rst.txt b/_sources/examples/pylab_examples/ginput_manual_clabel.rst.txt deleted file mode 120000 index 83835857a6e..00000000000 --- a/_sources/examples/pylab_examples/ginput_manual_clabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/ginput_manual_clabel.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/ginput_manual_clabel.txt b/_sources/examples/pylab_examples/ginput_manual_clabel.txt deleted file mode 120000 index 66422cdfb7a..00000000000 --- a/_sources/examples/pylab_examples/ginput_manual_clabel.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/ginput_manual_clabel.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/gradient_bar.rst.txt b/_sources/examples/pylab_examples/gradient_bar.rst.txt deleted file mode 120000 index 43fddff1ed1..00000000000 --- a/_sources/examples/pylab_examples/gradient_bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/gradient_bar.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/gradient_bar.txt b/_sources/examples/pylab_examples/gradient_bar.txt deleted file mode 120000 index 846d9036038..00000000000 --- a/_sources/examples/pylab_examples/gradient_bar.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/gradient_bar.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/griddata_demo.rst.txt b/_sources/examples/pylab_examples/griddata_demo.rst.txt deleted file mode 120000 index 1624b42751f..00000000000 --- a/_sources/examples/pylab_examples/griddata_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/griddata_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/griddata_demo.txt b/_sources/examples/pylab_examples/griddata_demo.txt deleted file mode 120000 index 05d846a1ce5..00000000000 --- a/_sources/examples/pylab_examples/griddata_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/griddata_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hatch_demo.rst.txt b/_sources/examples/pylab_examples/hatch_demo.rst.txt deleted file mode 120000 index 6bf2a18ed36..00000000000 --- a/_sources/examples/pylab_examples/hatch_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/hatch_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hatch_demo.txt b/_sources/examples/pylab_examples/hatch_demo.txt deleted file mode 120000 index c29bae3eb7e..00000000000 --- a/_sources/examples/pylab_examples/hatch_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/hatch_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hexbin_demo.rst.txt b/_sources/examples/pylab_examples/hexbin_demo.rst.txt deleted file mode 120000 index 4e89cba6e1a..00000000000 --- a/_sources/examples/pylab_examples/hexbin_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/hexbin_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hexbin_demo.txt b/_sources/examples/pylab_examples/hexbin_demo.txt deleted file mode 120000 index 2183507028e..00000000000 --- a/_sources/examples/pylab_examples/hexbin_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/hexbin_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hexbin_demo2.rst.txt b/_sources/examples/pylab_examples/hexbin_demo2.rst.txt deleted file mode 120000 index 4822237f669..00000000000 --- a/_sources/examples/pylab_examples/hexbin_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/hexbin_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hexbin_demo2.txt b/_sources/examples/pylab_examples/hexbin_demo2.txt deleted file mode 120000 index 8c1e7eb208b..00000000000 --- a/_sources/examples/pylab_examples/hexbin_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/hexbin_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hist2d_demo.rst.txt b/_sources/examples/pylab_examples/hist2d_demo.rst.txt deleted file mode 120000 index 0b5b0c0ba77..00000000000 --- a/_sources/examples/pylab_examples/hist2d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/hist2d_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hist2d_demo.txt b/_sources/examples/pylab_examples/hist2d_demo.txt deleted file mode 120000 index 9a3f756dd0f..00000000000 --- a/_sources/examples/pylab_examples/hist2d_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/hist2d_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hist2d_log_demo.rst.txt b/_sources/examples/pylab_examples/hist2d_log_demo.rst.txt deleted file mode 120000 index 8d8267554da..00000000000 --- a/_sources/examples/pylab_examples/hist2d_log_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/hist2d_log_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hist2d_log_demo.txt b/_sources/examples/pylab_examples/hist2d_log_demo.txt deleted file mode 120000 index d150cfd922f..00000000000 --- a/_sources/examples/pylab_examples/hist2d_log_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/hist2d_log_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hist_colormapped.rst.txt b/_sources/examples/pylab_examples/hist_colormapped.rst.txt deleted file mode 120000 index ab6ecfba356..00000000000 --- a/_sources/examples/pylab_examples/hist_colormapped.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/hist_colormapped.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hist_colormapped.txt b/_sources/examples/pylab_examples/hist_colormapped.txt deleted file mode 120000 index c1716f3723a..00000000000 --- a/_sources/examples/pylab_examples/hist_colormapped.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/hist_colormapped.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/histogram_demo.txt b/_sources/examples/pylab_examples/histogram_demo.txt deleted file mode 120000 index 651c1047d53..00000000000 --- a/_sources/examples/pylab_examples/histogram_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/histogram_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/histogram_demo_extended.txt b/_sources/examples/pylab_examples/histogram_demo_extended.txt deleted file mode 120000 index 58f47b99202..00000000000 --- a/_sources/examples/pylab_examples/histogram_demo_extended.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/histogram_demo_extended.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/histogram_percent_demo.rst.txt b/_sources/examples/pylab_examples/histogram_percent_demo.rst.txt deleted file mode 120000 index c4a384b88c8..00000000000 --- a/_sources/examples/pylab_examples/histogram_percent_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/histogram_percent_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/histogram_percent_demo.txt b/_sources/examples/pylab_examples/histogram_percent_demo.txt deleted file mode 120000 index afe6b44b29d..00000000000 --- a/_sources/examples/pylab_examples/histogram_percent_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/histogram_percent_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hline_demo.txt b/_sources/examples/pylab_examples/hline_demo.txt deleted file mode 120000 index d17a0b3d09d..00000000000 --- a/_sources/examples/pylab_examples/hline_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/hline_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hyperlinks.rst.txt b/_sources/examples/pylab_examples/hyperlinks.rst.txt deleted file mode 120000 index 76177064a92..00000000000 --- a/_sources/examples/pylab_examples/hyperlinks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/hyperlinks.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/hyperlinks.txt b/_sources/examples/pylab_examples/hyperlinks.txt deleted file mode 120000 index 6f626082148..00000000000 --- a/_sources/examples/pylab_examples/hyperlinks.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/hyperlinks.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_clip_path.rst.txt b/_sources/examples/pylab_examples/image_clip_path.rst.txt deleted file mode 120000 index afffaf01303..00000000000 --- a/_sources/examples/pylab_examples/image_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_clip_path.txt b/_sources/examples/pylab_examples/image_clip_path.txt deleted file mode 120000 index ceed22a5817..00000000000 --- a/_sources/examples/pylab_examples/image_clip_path.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_clip_path.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_demo.rst.txt b/_sources/examples/pylab_examples/image_demo.rst.txt deleted file mode 120000 index 47b83e8d181..00000000000 --- a/_sources/examples/pylab_examples/image_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_demo.txt b/_sources/examples/pylab_examples/image_demo.txt deleted file mode 120000 index a0a3e8bab95..00000000000 --- a/_sources/examples/pylab_examples/image_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_demo2.rst.txt b/_sources/examples/pylab_examples/image_demo2.rst.txt deleted file mode 120000 index 05db0ae5827..00000000000 --- a/_sources/examples/pylab_examples/image_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_demo2.txt b/_sources/examples/pylab_examples/image_demo2.txt deleted file mode 120000 index e332345a865..00000000000 --- a/_sources/examples/pylab_examples/image_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_demo3.txt b/_sources/examples/pylab_examples/image_demo3.txt deleted file mode 120000 index a9f49c730d6..00000000000 --- a/_sources/examples/pylab_examples/image_demo3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/image_demo3.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_interp.rst.txt b/_sources/examples/pylab_examples/image_interp.rst.txt deleted file mode 120000 index 2ae1764b035..00000000000 --- a/_sources/examples/pylab_examples/image_interp.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_interp.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_interp.txt b/_sources/examples/pylab_examples/image_interp.txt deleted file mode 120000 index 39581cdb214..00000000000 --- a/_sources/examples/pylab_examples/image_interp.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_interp.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_masked.rst.txt b/_sources/examples/pylab_examples/image_masked.rst.txt deleted file mode 120000 index a10f7a46d80..00000000000 --- a/_sources/examples/pylab_examples/image_masked.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_masked.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_masked.txt b/_sources/examples/pylab_examples/image_masked.txt deleted file mode 120000 index a60c8d48008..00000000000 --- a/_sources/examples/pylab_examples/image_masked.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_masked.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_nonuniform.rst.txt b/_sources/examples/pylab_examples/image_nonuniform.rst.txt deleted file mode 120000 index bb4fbf98e15..00000000000 --- a/_sources/examples/pylab_examples/image_nonuniform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_nonuniform.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_nonuniform.txt b/_sources/examples/pylab_examples/image_nonuniform.txt deleted file mode 120000 index 7ec9e447084..00000000000 --- a/_sources/examples/pylab_examples/image_nonuniform.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_nonuniform.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_origin.rst.txt b/_sources/examples/pylab_examples/image_origin.rst.txt deleted file mode 120000 index b8de0bbb313..00000000000 --- a/_sources/examples/pylab_examples/image_origin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_origin.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_origin.txt b/_sources/examples/pylab_examples/image_origin.txt deleted file mode 120000 index 19ae9719546..00000000000 --- a/_sources/examples/pylab_examples/image_origin.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_origin.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_slices_viewer.rst.txt b/_sources/examples/pylab_examples/image_slices_viewer.rst.txt deleted file mode 120000 index 0949fb73792..00000000000 --- a/_sources/examples/pylab_examples/image_slices_viewer.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/image_slices_viewer.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/image_slices_viewer.txt b/_sources/examples/pylab_examples/image_slices_viewer.txt deleted file mode 120000 index 7b6418273db..00000000000 --- a/_sources/examples/pylab_examples/image_slices_viewer.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/image_slices_viewer.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/index.rst.txt b/_sources/examples/pylab_examples/index.rst.txt deleted file mode 120000 index 9275fb5f334..00000000000 --- a/_sources/examples/pylab_examples/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/index.txt b/_sources/examples/pylab_examples/index.txt deleted file mode 120000 index 79b206976fd..00000000000 --- a/_sources/examples/pylab_examples/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/index.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/integral_demo.txt b/_sources/examples/pylab_examples/integral_demo.txt deleted file mode 120000 index cd5cb59ceec..00000000000 --- a/_sources/examples/pylab_examples/integral_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/integral_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/interp_demo.rst.txt b/_sources/examples/pylab_examples/interp_demo.rst.txt deleted file mode 120000 index b744950dfc3..00000000000 --- a/_sources/examples/pylab_examples/interp_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/interp_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/interp_demo.txt b/_sources/examples/pylab_examples/interp_demo.txt deleted file mode 120000 index b4bb598e932..00000000000 --- a/_sources/examples/pylab_examples/interp_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/interp_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/invert_axes.rst.txt b/_sources/examples/pylab_examples/invert_axes.rst.txt deleted file mode 120000 index fac01206a4e..00000000000 --- a/_sources/examples/pylab_examples/invert_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/invert_axes.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/invert_axes.txt b/_sources/examples/pylab_examples/invert_axes.txt deleted file mode 120000 index 72dad79e9b8..00000000000 --- a/_sources/examples/pylab_examples/invert_axes.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/invert_axes.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/layer_images.rst.txt b/_sources/examples/pylab_examples/layer_images.rst.txt deleted file mode 120000 index f355fd2f680..00000000000 --- a/_sources/examples/pylab_examples/layer_images.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/layer_images.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/layer_images.txt b/_sources/examples/pylab_examples/layer_images.txt deleted file mode 120000 index 8cf8e989262..00000000000 --- a/_sources/examples/pylab_examples/layer_images.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/layer_images.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/leftventricle_bulleye.rst.txt b/_sources/examples/pylab_examples/leftventricle_bulleye.rst.txt deleted file mode 120000 index 1f5a8cb9083..00000000000 --- a/_sources/examples/pylab_examples/leftventricle_bulleye.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/leftventricle_bulleye.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/leftventricle_bulleye.txt b/_sources/examples/pylab_examples/leftventricle_bulleye.txt deleted file mode 120000 index 18bd893ef8d..00000000000 --- a/_sources/examples/pylab_examples/leftventricle_bulleye.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/leftventricle_bulleye.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_auto.txt b/_sources/examples/pylab_examples/legend_auto.txt deleted file mode 120000 index 6a326e6eb05..00000000000 --- a/_sources/examples/pylab_examples/legend_auto.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/legend_auto.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo.txt b/_sources/examples/pylab_examples/legend_demo.txt deleted file mode 120000 index 74cabe56edc..00000000000 --- a/_sources/examples/pylab_examples/legend_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/legend_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo2.rst.txt b/_sources/examples/pylab_examples/legend_demo2.rst.txt deleted file mode 120000 index 3dbf7561d92..00000000000 --- a/_sources/examples/pylab_examples/legend_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/legend_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo2.txt b/_sources/examples/pylab_examples/legend_demo2.txt deleted file mode 120000 index 83aefff4eae..00000000000 --- a/_sources/examples/pylab_examples/legend_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/legend_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo3.rst.txt b/_sources/examples/pylab_examples/legend_demo3.rst.txt deleted file mode 120000 index 1eb3cf37f48..00000000000 --- a/_sources/examples/pylab_examples/legend_demo3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/legend_demo3.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo3.txt b/_sources/examples/pylab_examples/legend_demo3.txt deleted file mode 120000 index 67cfa02a043..00000000000 --- a/_sources/examples/pylab_examples/legend_demo3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/legend_demo3.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo4.rst.txt b/_sources/examples/pylab_examples/legend_demo4.rst.txt deleted file mode 120000 index a2ff7eef5f3..00000000000 --- a/_sources/examples/pylab_examples/legend_demo4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/legend_demo4.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo4.txt b/_sources/examples/pylab_examples/legend_demo4.txt deleted file mode 120000 index 30e92cfac62..00000000000 --- a/_sources/examples/pylab_examples/legend_demo4.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/legend_demo4.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo5.rst.txt b/_sources/examples/pylab_examples/legend_demo5.rst.txt deleted file mode 120000 index 40075dbcb7b..00000000000 --- a/_sources/examples/pylab_examples/legend_demo5.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/legend_demo5.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo5.txt b/_sources/examples/pylab_examples/legend_demo5.txt deleted file mode 120000 index 5fc166cbc10..00000000000 --- a/_sources/examples/pylab_examples/legend_demo5.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/legend_demo5.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_demo_custom_handler.txt b/_sources/examples/pylab_examples/legend_demo_custom_handler.txt deleted file mode 120000 index 29add7f539e..00000000000 --- a/_sources/examples/pylab_examples/legend_demo_custom_handler.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/legend_demo_custom_handler.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_scatter.txt b/_sources/examples/pylab_examples/legend_scatter.txt deleted file mode 120000 index 20f22e96d4a..00000000000 --- a/_sources/examples/pylab_examples/legend_scatter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/legend_scatter.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/legend_translucent.txt b/_sources/examples/pylab_examples/legend_translucent.txt deleted file mode 120000 index c11d572e586..00000000000 --- a/_sources/examples/pylab_examples/legend_translucent.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/legend_translucent.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/line_collection.rst.txt b/_sources/examples/pylab_examples/line_collection.rst.txt deleted file mode 120000 index 5197b4e0678..00000000000 --- a/_sources/examples/pylab_examples/line_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/line_collection.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/line_collection.txt b/_sources/examples/pylab_examples/line_collection.txt deleted file mode 120000 index 3b365ee2b15..00000000000 --- a/_sources/examples/pylab_examples/line_collection.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/line_collection.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/line_collection2.rst.txt b/_sources/examples/pylab_examples/line_collection2.rst.txt deleted file mode 120000 index 7448e187a2f..00000000000 --- a/_sources/examples/pylab_examples/line_collection2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/line_collection2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/line_collection2.txt b/_sources/examples/pylab_examples/line_collection2.txt deleted file mode 120000 index 51c8540604d..00000000000 --- a/_sources/examples/pylab_examples/line_collection2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/line_collection2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/line_styles.txt b/_sources/examples/pylab_examples/line_styles.txt deleted file mode 120000 index f63fa58ca6b..00000000000 --- a/_sources/examples/pylab_examples/line_styles.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.3.1/_sources/examples/pylab_examples/line_styles.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/load_converter.rst.txt b/_sources/examples/pylab_examples/load_converter.rst.txt deleted file mode 120000 index 6b5688d3f67..00000000000 --- a/_sources/examples/pylab_examples/load_converter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/load_converter.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/load_converter.txt b/_sources/examples/pylab_examples/load_converter.txt deleted file mode 120000 index 6ec3c966ee2..00000000000 --- a/_sources/examples/pylab_examples/load_converter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/load_converter.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/loadrec.rst.txt b/_sources/examples/pylab_examples/loadrec.rst.txt deleted file mode 120000 index dd5010358f2..00000000000 --- a/_sources/examples/pylab_examples/loadrec.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/loadrec.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/loadrec.txt b/_sources/examples/pylab_examples/loadrec.txt deleted file mode 120000 index e619545ad9e..00000000000 --- a/_sources/examples/pylab_examples/loadrec.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/loadrec.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/log_bar.rst.txt b/_sources/examples/pylab_examples/log_bar.rst.txt deleted file mode 120000 index 5a0f98ec584..00000000000 --- a/_sources/examples/pylab_examples/log_bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/log_bar.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/log_bar.txt b/_sources/examples/pylab_examples/log_bar.txt deleted file mode 120000 index 02cc01f31c7..00000000000 --- a/_sources/examples/pylab_examples/log_bar.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/log_bar.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/log_demo.rst.txt b/_sources/examples/pylab_examples/log_demo.rst.txt deleted file mode 120000 index d3eb00b69ab..00000000000 --- a/_sources/examples/pylab_examples/log_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/log_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/log_demo.txt b/_sources/examples/pylab_examples/log_demo.txt deleted file mode 120000 index 490dc2ca85e..00000000000 --- a/_sources/examples/pylab_examples/log_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/log_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/log_test.rst.txt b/_sources/examples/pylab_examples/log_test.rst.txt deleted file mode 120000 index 8eed74b0795..00000000000 --- a/_sources/examples/pylab_examples/log_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/log_test.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/log_test.txt b/_sources/examples/pylab_examples/log_test.txt deleted file mode 120000 index 6072e7cc10e..00000000000 --- a/_sources/examples/pylab_examples/log_test.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/log_test.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/logo.rst.txt b/_sources/examples/pylab_examples/logo.rst.txt deleted file mode 120000 index e86e95d76fe..00000000000 --- a/_sources/examples/pylab_examples/logo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/logo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/logo.txt b/_sources/examples/pylab_examples/logo.txt deleted file mode 120000 index 3ad9ed26e6b..00000000000 --- a/_sources/examples/pylab_examples/logo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/logo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/major_minor_demo1.rst.txt b/_sources/examples/pylab_examples/major_minor_demo1.rst.txt deleted file mode 120000 index 786626d024c..00000000000 --- a/_sources/examples/pylab_examples/major_minor_demo1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/major_minor_demo1.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/major_minor_demo1.txt b/_sources/examples/pylab_examples/major_minor_demo1.txt deleted file mode 120000 index f7f60b0c279..00000000000 --- a/_sources/examples/pylab_examples/major_minor_demo1.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/major_minor_demo1.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/major_minor_demo2.rst.txt b/_sources/examples/pylab_examples/major_minor_demo2.rst.txt deleted file mode 120000 index ef600140f55..00000000000 --- a/_sources/examples/pylab_examples/major_minor_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/major_minor_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/major_minor_demo2.txt b/_sources/examples/pylab_examples/major_minor_demo2.txt deleted file mode 120000 index f6459078ca6..00000000000 --- a/_sources/examples/pylab_examples/major_minor_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/major_minor_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/manual_axis.rst.txt b/_sources/examples/pylab_examples/manual_axis.rst.txt deleted file mode 120000 index e364a0ed015..00000000000 --- a/_sources/examples/pylab_examples/manual_axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/manual_axis.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/manual_axis.txt b/_sources/examples/pylab_examples/manual_axis.txt deleted file mode 120000 index 4f49107e2b1..00000000000 --- a/_sources/examples/pylab_examples/manual_axis.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/manual_axis.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/marker_path.rst.txt b/_sources/examples/pylab_examples/marker_path.rst.txt deleted file mode 120000 index c611980361e..00000000000 --- a/_sources/examples/pylab_examples/marker_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/marker_path.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/marker_path.txt b/_sources/examples/pylab_examples/marker_path.txt deleted file mode 120000 index e9f38a1770e..00000000000 --- a/_sources/examples/pylab_examples/marker_path.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/marker_path.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/markevery_demo.rst.txt b/_sources/examples/pylab_examples/markevery_demo.rst.txt deleted file mode 120000 index 8c76d581636..00000000000 --- a/_sources/examples/pylab_examples/markevery_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/markevery_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/markevery_demo.txt b/_sources/examples/pylab_examples/markevery_demo.txt deleted file mode 120000 index a9dc07bb700..00000000000 --- a/_sources/examples/pylab_examples/markevery_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/markevery_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/masked_demo.rst.txt b/_sources/examples/pylab_examples/masked_demo.rst.txt deleted file mode 120000 index 3aaf2505a8f..00000000000 --- a/_sources/examples/pylab_examples/masked_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/masked_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/masked_demo.txt b/_sources/examples/pylab_examples/masked_demo.txt deleted file mode 120000 index 8979c3881bb..00000000000 --- a/_sources/examples/pylab_examples/masked_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/masked_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mathtext_demo.rst.txt b/_sources/examples/pylab_examples/mathtext_demo.rst.txt deleted file mode 120000 index 7fb6bd30f3a..00000000000 --- a/_sources/examples/pylab_examples/mathtext_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/mathtext_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mathtext_demo.txt b/_sources/examples/pylab_examples/mathtext_demo.txt deleted file mode 120000 index 33efe7d9579..00000000000 --- a/_sources/examples/pylab_examples/mathtext_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/mathtext_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mathtext_examples.rst.txt b/_sources/examples/pylab_examples/mathtext_examples.rst.txt deleted file mode 120000 index 4c033a270e3..00000000000 --- a/_sources/examples/pylab_examples/mathtext_examples.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/mathtext_examples.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mathtext_examples.txt b/_sources/examples/pylab_examples/mathtext_examples.txt deleted file mode 120000 index 415730ad583..00000000000 --- a/_sources/examples/pylab_examples/mathtext_examples.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/mathtext_examples.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/matplotlib_icon.txt b/_sources/examples/pylab_examples/matplotlib_icon.txt deleted file mode 120000 index e0eeabb0d0b..00000000000 --- a/_sources/examples/pylab_examples/matplotlib_icon.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/matplotlib_icon.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/matshow.rst.txt b/_sources/examples/pylab_examples/matshow.rst.txt deleted file mode 120000 index 77b92b1c6c3..00000000000 --- a/_sources/examples/pylab_examples/matshow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/matshow.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/matshow.txt b/_sources/examples/pylab_examples/matshow.txt deleted file mode 120000 index 38065250c20..00000000000 --- a/_sources/examples/pylab_examples/matshow.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/matshow.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/movie_demo.txt b/_sources/examples/pylab_examples/movie_demo.txt deleted file mode 120000 index 14c9b5634d2..00000000000 --- a/_sources/examples/pylab_examples/movie_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/movie_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mri_demo.rst.txt b/_sources/examples/pylab_examples/mri_demo.rst.txt deleted file mode 120000 index ac5d317dcf2..00000000000 --- a/_sources/examples/pylab_examples/mri_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/mri_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mri_demo.txt b/_sources/examples/pylab_examples/mri_demo.txt deleted file mode 120000 index 57fe392d4d3..00000000000 --- a/_sources/examples/pylab_examples/mri_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/mri_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mri_with_eeg.rst.txt b/_sources/examples/pylab_examples/mri_with_eeg.rst.txt deleted file mode 120000 index dbf8968a4d8..00000000000 --- a/_sources/examples/pylab_examples/mri_with_eeg.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/mri_with_eeg.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/mri_with_eeg.txt b/_sources/examples/pylab_examples/mri_with_eeg.txt deleted file mode 120000 index f4771757007..00000000000 --- a/_sources/examples/pylab_examples/mri_with_eeg.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/mri_with_eeg.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multi_image.rst.txt b/_sources/examples/pylab_examples/multi_image.rst.txt deleted file mode 120000 index 9e989ced469..00000000000 --- a/_sources/examples/pylab_examples/multi_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/multi_image.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multi_image.txt b/_sources/examples/pylab_examples/multi_image.txt deleted file mode 120000 index 1387ccd4a30..00000000000 --- a/_sources/examples/pylab_examples/multi_image.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/multi_image.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multicolored_line.rst.txt b/_sources/examples/pylab_examples/multicolored_line.rst.txt deleted file mode 120000 index d0c670eb2ca..00000000000 --- a/_sources/examples/pylab_examples/multicolored_line.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/multicolored_line.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multicolored_line.txt b/_sources/examples/pylab_examples/multicolored_line.txt deleted file mode 120000 index 910043c83a9..00000000000 --- a/_sources/examples/pylab_examples/multicolored_line.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/multicolored_line.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multiline.rst.txt b/_sources/examples/pylab_examples/multiline.rst.txt deleted file mode 120000 index 5009c8173b8..00000000000 --- a/_sources/examples/pylab_examples/multiline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/multiline.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multiline.txt b/_sources/examples/pylab_examples/multiline.txt deleted file mode 120000 index 568aa1cbdd9..00000000000 --- a/_sources/examples/pylab_examples/multiline.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/multiline.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multipage_pdf.rst.txt b/_sources/examples/pylab_examples/multipage_pdf.rst.txt deleted file mode 120000 index b3eae6f9ccf..00000000000 --- a/_sources/examples/pylab_examples/multipage_pdf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/multipage_pdf.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multipage_pdf.txt b/_sources/examples/pylab_examples/multipage_pdf.txt deleted file mode 120000 index 2da7e38caab..00000000000 --- a/_sources/examples/pylab_examples/multipage_pdf.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/multipage_pdf.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multiple_figs_demo.rst.txt b/_sources/examples/pylab_examples/multiple_figs_demo.rst.txt deleted file mode 120000 index 0e292ad1d66..00000000000 --- a/_sources/examples/pylab_examples/multiple_figs_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/multiple_figs_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multiple_figs_demo.txt b/_sources/examples/pylab_examples/multiple_figs_demo.txt deleted file mode 120000 index da1ea5529ca..00000000000 --- a/_sources/examples/pylab_examples/multiple_figs_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/multiple_figs_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multiple_yaxis_with_spines.rst.txt b/_sources/examples/pylab_examples/multiple_yaxis_with_spines.rst.txt deleted file mode 120000 index c3439dc90a3..00000000000 --- a/_sources/examples/pylab_examples/multiple_yaxis_with_spines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/multiple_yaxis_with_spines.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/multiple_yaxis_with_spines.txt b/_sources/examples/pylab_examples/multiple_yaxis_with_spines.txt deleted file mode 120000 index 53043c97130..00000000000 --- a/_sources/examples/pylab_examples/multiple_yaxis_with_spines.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/multiple_yaxis_with_spines.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/nan_test.rst.txt b/_sources/examples/pylab_examples/nan_test.rst.txt deleted file mode 120000 index bcda5da1fe4..00000000000 --- a/_sources/examples/pylab_examples/nan_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/nan_test.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/nan_test.txt b/_sources/examples/pylab_examples/nan_test.txt deleted file mode 120000 index a439062e920..00000000000 --- a/_sources/examples/pylab_examples/nan_test.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/nan_test.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/newscalarformatter_demo.rst.txt b/_sources/examples/pylab_examples/newscalarformatter_demo.rst.txt deleted file mode 120000 index baea02f2962..00000000000 --- a/_sources/examples/pylab_examples/newscalarformatter_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/newscalarformatter_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/newscalarformatter_demo.txt b/_sources/examples/pylab_examples/newscalarformatter_demo.txt deleted file mode 120000 index 9d5e6bce384..00000000000 --- a/_sources/examples/pylab_examples/newscalarformatter_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/newscalarformatter_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/patheffect_demo.rst.txt b/_sources/examples/pylab_examples/patheffect_demo.rst.txt deleted file mode 120000 index f910ec57b0b..00000000000 --- a/_sources/examples/pylab_examples/patheffect_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/patheffect_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/patheffect_demo.txt b/_sources/examples/pylab_examples/patheffect_demo.txt deleted file mode 120000 index 2b5db20ec40..00000000000 --- a/_sources/examples/pylab_examples/patheffect_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/patheffect_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pcolor_demo.rst.txt b/_sources/examples/pylab_examples/pcolor_demo.rst.txt deleted file mode 120000 index 8a748ffcc8e..00000000000 --- a/_sources/examples/pylab_examples/pcolor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/pcolor_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pcolor_demo.txt b/_sources/examples/pylab_examples/pcolor_demo.txt deleted file mode 120000 index d6e470974cd..00000000000 --- a/_sources/examples/pylab_examples/pcolor_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/pcolor_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pcolor_demo2.txt b/_sources/examples/pylab_examples/pcolor_demo2.txt deleted file mode 120000 index 90df819e924..00000000000 --- a/_sources/examples/pylab_examples/pcolor_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/pcolor_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pcolor_log.rst.txt b/_sources/examples/pylab_examples/pcolor_log.rst.txt deleted file mode 120000 index 58f0e8fa1fd..00000000000 --- a/_sources/examples/pylab_examples/pcolor_log.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/pcolor_log.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pcolor_log.txt b/_sources/examples/pylab_examples/pcolor_log.txt deleted file mode 120000 index 8aa82e23b65..00000000000 --- a/_sources/examples/pylab_examples/pcolor_log.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/pcolor_log.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pcolor_small.rst.txt b/_sources/examples/pylab_examples/pcolor_small.rst.txt deleted file mode 120000 index fe07078d63f..00000000000 --- a/_sources/examples/pylab_examples/pcolor_small.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/pcolor_small.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pcolor_small.txt b/_sources/examples/pylab_examples/pcolor_small.txt deleted file mode 120000 index 15b0550ae29..00000000000 --- a/_sources/examples/pylab_examples/pcolor_small.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/pcolor_small.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pie_demo.txt b/_sources/examples/pylab_examples/pie_demo.txt deleted file mode 120000 index 1619b36cb1f..00000000000 --- a/_sources/examples/pylab_examples/pie_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/pie_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pie_demo2.rst.txt b/_sources/examples/pylab_examples/pie_demo2.rst.txt deleted file mode 120000 index 2377e398dc0..00000000000 --- a/_sources/examples/pylab_examples/pie_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/pie_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pie_demo2.txt b/_sources/examples/pylab_examples/pie_demo2.txt deleted file mode 120000 index 64e020cdd36..00000000000 --- a/_sources/examples/pylab_examples/pie_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/pie_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/plotfile_demo.rst.txt b/_sources/examples/pylab_examples/plotfile_demo.rst.txt deleted file mode 120000 index fda82a62bed..00000000000 --- a/_sources/examples/pylab_examples/plotfile_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/plotfile_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/plotfile_demo.txt b/_sources/examples/pylab_examples/plotfile_demo.txt deleted file mode 120000 index d217ab7f36a..00000000000 --- a/_sources/examples/pylab_examples/plotfile_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/plotfile_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/polar_bar.txt b/_sources/examples/pylab_examples/polar_bar.txt deleted file mode 120000 index bf59566414b..00000000000 --- a/_sources/examples/pylab_examples/polar_bar.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/polar_bar.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/polar_demo.rst.txt b/_sources/examples/pylab_examples/polar_demo.rst.txt deleted file mode 120000 index d372235fb8b..00000000000 --- a/_sources/examples/pylab_examples/polar_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/polar_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/polar_demo.txt b/_sources/examples/pylab_examples/polar_demo.txt deleted file mode 120000 index 82d3151f243..00000000000 --- a/_sources/examples/pylab_examples/polar_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/polar_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/polar_legend.rst.txt b/_sources/examples/pylab_examples/polar_legend.rst.txt deleted file mode 120000 index b0f436d5e59..00000000000 --- a/_sources/examples/pylab_examples/polar_legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/polar_legend.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/polar_legend.txt b/_sources/examples/pylab_examples/polar_legend.txt deleted file mode 120000 index 2d7b8802965..00000000000 --- a/_sources/examples/pylab_examples/polar_legend.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/polar_legend.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/polar_scatter.txt b/_sources/examples/pylab_examples/polar_scatter.txt deleted file mode 120000 index 7211e3f666f..00000000000 --- a/_sources/examples/pylab_examples/polar_scatter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/polar_scatter.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/poormans_contour.txt b/_sources/examples/pylab_examples/poormans_contour.txt deleted file mode 120000 index b613167ad25..00000000000 --- a/_sources/examples/pylab_examples/poormans_contour.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/poormans_contour.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/print_stdout.rst.txt b/_sources/examples/pylab_examples/print_stdout.rst.txt deleted file mode 120000 index 1fa81bad109..00000000000 --- a/_sources/examples/pylab_examples/print_stdout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/print_stdout.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/print_stdout.txt b/_sources/examples/pylab_examples/print_stdout.txt deleted file mode 120000 index df461d8a414..00000000000 --- a/_sources/examples/pylab_examples/print_stdout.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/print_stdout.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo.rst.txt b/_sources/examples/pylab_examples/psd_demo.rst.txt deleted file mode 120000 index a5ad8d0ac11..00000000000 --- a/_sources/examples/pylab_examples/psd_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/psd_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo.txt b/_sources/examples/pylab_examples/psd_demo.txt deleted file mode 120000 index 20f98c3a76b..00000000000 --- a/_sources/examples/pylab_examples/psd_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/psd_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo2.rst.txt b/_sources/examples/pylab_examples/psd_demo2.rst.txt deleted file mode 120000 index 6dd683dbe7f..00000000000 --- a/_sources/examples/pylab_examples/psd_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/psd_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo2.txt b/_sources/examples/pylab_examples/psd_demo2.txt deleted file mode 120000 index a57ca8bccba..00000000000 --- a/_sources/examples/pylab_examples/psd_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/psd_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo3.rst.txt b/_sources/examples/pylab_examples/psd_demo3.rst.txt deleted file mode 120000 index 9d6569fed00..00000000000 --- a/_sources/examples/pylab_examples/psd_demo3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/psd_demo3.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo3.txt b/_sources/examples/pylab_examples/psd_demo3.txt deleted file mode 120000 index 889664cc5cb..00000000000 --- a/_sources/examples/pylab_examples/psd_demo3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/psd_demo3.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo_complex.rst.txt b/_sources/examples/pylab_examples/psd_demo_complex.rst.txt deleted file mode 120000 index 6ca8e4f1a07..00000000000 --- a/_sources/examples/pylab_examples/psd_demo_complex.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/psd_demo_complex.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/psd_demo_complex.txt b/_sources/examples/pylab_examples/psd_demo_complex.txt deleted file mode 120000 index c1a174a49d9..00000000000 --- a/_sources/examples/pylab_examples/psd_demo_complex.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/psd_demo_complex.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pstest.txt b/_sources/examples/pylab_examples/pstest.txt deleted file mode 120000 index d787eb81eb7..00000000000 --- a/_sources/examples/pylab_examples/pstest.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.4.3/_sources/examples/pylab_examples/pstest.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pythonic_matplotlib.rst.txt b/_sources/examples/pylab_examples/pythonic_matplotlib.rst.txt deleted file mode 120000 index 488e82c150f..00000000000 --- a/_sources/examples/pylab_examples/pythonic_matplotlib.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/pythonic_matplotlib.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/pythonic_matplotlib.txt b/_sources/examples/pylab_examples/pythonic_matplotlib.txt deleted file mode 120000 index a42300217e7..00000000000 --- a/_sources/examples/pylab_examples/pythonic_matplotlib.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/pythonic_matplotlib.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/quadmesh_demo.rst.txt b/_sources/examples/pylab_examples/quadmesh_demo.rst.txt deleted file mode 120000 index dd0a1d1ca72..00000000000 --- a/_sources/examples/pylab_examples/quadmesh_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/quadmesh_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/quadmesh_demo.txt b/_sources/examples/pylab_examples/quadmesh_demo.txt deleted file mode 120000 index f2d27f90ac4..00000000000 --- a/_sources/examples/pylab_examples/quadmesh_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/quadmesh_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/quiver_demo.rst.txt b/_sources/examples/pylab_examples/quiver_demo.rst.txt deleted file mode 120000 index 33e3050fe0f..00000000000 --- a/_sources/examples/pylab_examples/quiver_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/quiver_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/quiver_demo.txt b/_sources/examples/pylab_examples/quiver_demo.txt deleted file mode 120000 index 1f3a15b8101..00000000000 --- a/_sources/examples/pylab_examples/quiver_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/quiver_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/quiver_simple_demo.rst.txt b/_sources/examples/pylab_examples/quiver_simple_demo.rst.txt deleted file mode 120000 index d489f3463bb..00000000000 --- a/_sources/examples/pylab_examples/quiver_simple_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/quiver_simple_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_custom_symbol.rst.txt b/_sources/examples/pylab_examples/scatter_custom_symbol.rst.txt deleted file mode 120000 index deb037bdd9a..00000000000 --- a/_sources/examples/pylab_examples/scatter_custom_symbol.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/scatter_custom_symbol.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_custom_symbol.txt b/_sources/examples/pylab_examples/scatter_custom_symbol.txt deleted file mode 120000 index 380604c995d..00000000000 --- a/_sources/examples/pylab_examples/scatter_custom_symbol.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/scatter_custom_symbol.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_demo.txt b/_sources/examples/pylab_examples/scatter_demo.txt deleted file mode 120000 index 2a6c7d0d2f1..00000000000 --- a/_sources/examples/pylab_examples/scatter_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/scatter_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_demo2.rst.txt b/_sources/examples/pylab_examples/scatter_demo2.rst.txt deleted file mode 120000 index bedfe54ccef..00000000000 --- a/_sources/examples/pylab_examples/scatter_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/scatter_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_demo2.txt b/_sources/examples/pylab_examples/scatter_demo2.txt deleted file mode 120000 index 2724a6f81b3..00000000000 --- a/_sources/examples/pylab_examples/scatter_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/scatter_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_hist.rst.txt b/_sources/examples/pylab_examples/scatter_hist.rst.txt deleted file mode 120000 index ad33d563e75..00000000000 --- a/_sources/examples/pylab_examples/scatter_hist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/scatter_hist.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_hist.txt b/_sources/examples/pylab_examples/scatter_hist.txt deleted file mode 120000 index 5c3c767f5bd..00000000000 --- a/_sources/examples/pylab_examples/scatter_hist.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/scatter_hist.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_masked.rst.txt b/_sources/examples/pylab_examples/scatter_masked.rst.txt deleted file mode 120000 index d908f7bdf08..00000000000 --- a/_sources/examples/pylab_examples/scatter_masked.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/scatter_masked.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_masked.txt b/_sources/examples/pylab_examples/scatter_masked.txt deleted file mode 120000 index 645de25f72a..00000000000 --- a/_sources/examples/pylab_examples/scatter_masked.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/scatter_masked.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_profile.rst.txt b/_sources/examples/pylab_examples/scatter_profile.rst.txt deleted file mode 120000 index 6cae3422628..00000000000 --- a/_sources/examples/pylab_examples/scatter_profile.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/scatter_profile.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_profile.txt b/_sources/examples/pylab_examples/scatter_profile.txt deleted file mode 120000 index a886548819b..00000000000 --- a/_sources/examples/pylab_examples/scatter_profile.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/scatter_profile.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_star_poly.rst.txt b/_sources/examples/pylab_examples/scatter_star_poly.rst.txt deleted file mode 120000 index 26d96448fd2..00000000000 --- a/_sources/examples/pylab_examples/scatter_star_poly.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/scatter_star_poly.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_star_poly.txt b/_sources/examples/pylab_examples/scatter_star_poly.txt deleted file mode 120000 index 2545b08d4b9..00000000000 --- a/_sources/examples/pylab_examples/scatter_star_poly.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/scatter_star_poly.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_symbol.rst.txt b/_sources/examples/pylab_examples/scatter_symbol.rst.txt deleted file mode 120000 index d26997c8062..00000000000 --- a/_sources/examples/pylab_examples/scatter_symbol.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/scatter_symbol.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/scatter_symbol.txt b/_sources/examples/pylab_examples/scatter_symbol.txt deleted file mode 120000 index 65dca0e5c68..00000000000 --- a/_sources/examples/pylab_examples/scatter_symbol.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/scatter_symbol.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/set_and_get.rst.txt b/_sources/examples/pylab_examples/set_and_get.rst.txt deleted file mode 120000 index 3bc5bf2b60a..00000000000 --- a/_sources/examples/pylab_examples/set_and_get.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/set_and_get.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/set_and_get.txt b/_sources/examples/pylab_examples/set_and_get.txt deleted file mode 120000 index 6bb813b33aa..00000000000 --- a/_sources/examples/pylab_examples/set_and_get.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/set_and_get.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/shading_example.rst.txt b/_sources/examples/pylab_examples/shading_example.rst.txt deleted file mode 120000 index 8f91611935e..00000000000 --- a/_sources/examples/pylab_examples/shading_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/shading_example.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/shading_example.txt b/_sources/examples/pylab_examples/shading_example.txt deleted file mode 120000 index 711fb05384d..00000000000 --- a/_sources/examples/pylab_examples/shading_example.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/shading_example.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/shared_axis_across_figures.rst.txt b/_sources/examples/pylab_examples/shared_axis_across_figures.rst.txt deleted file mode 120000 index a8baea18c71..00000000000 --- a/_sources/examples/pylab_examples/shared_axis_across_figures.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/shared_axis_across_figures.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/shared_axis_across_figures.txt b/_sources/examples/pylab_examples/shared_axis_across_figures.txt deleted file mode 120000 index 6063236b3d6..00000000000 --- a/_sources/examples/pylab_examples/shared_axis_across_figures.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/shared_axis_across_figures.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/shared_axis_demo.rst.txt b/_sources/examples/pylab_examples/shared_axis_demo.rst.txt deleted file mode 120000 index b5bbb506c94..00000000000 --- a/_sources/examples/pylab_examples/shared_axis_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/shared_axis_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/shared_axis_demo.txt b/_sources/examples/pylab_examples/shared_axis_demo.txt deleted file mode 120000 index bb62aca75ef..00000000000 --- a/_sources/examples/pylab_examples/shared_axis_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/shared_axis_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/show_colormaps.txt b/_sources/examples/pylab_examples/show_colormaps.txt deleted file mode 120000 index 0725c0edfb2..00000000000 --- a/_sources/examples/pylab_examples/show_colormaps.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/show_colormaps.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/simple_plot.rst.txt b/_sources/examples/pylab_examples/simple_plot.rst.txt deleted file mode 120000 index f0275cdb907..00000000000 --- a/_sources/examples/pylab_examples/simple_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/simple_plot.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/simple_plot.txt b/_sources/examples/pylab_examples/simple_plot.txt deleted file mode 120000 index d7d9a7580b1..00000000000 --- a/_sources/examples/pylab_examples/simple_plot.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/simple_plot.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/simple_plot_fps.txt b/_sources/examples/pylab_examples/simple_plot_fps.txt deleted file mode 120000 index 54495c35927..00000000000 --- a/_sources/examples/pylab_examples/simple_plot_fps.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.1/_sources/examples/pylab_examples/simple_plot_fps.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/specgram_demo.rst.txt b/_sources/examples/pylab_examples/specgram_demo.rst.txt deleted file mode 120000 index 191fa387cf4..00000000000 --- a/_sources/examples/pylab_examples/specgram_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/specgram_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/specgram_demo.txt b/_sources/examples/pylab_examples/specgram_demo.txt deleted file mode 120000 index 42e6d973d3e..00000000000 --- a/_sources/examples/pylab_examples/specgram_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/specgram_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/spectrum_demo.rst.txt b/_sources/examples/pylab_examples/spectrum_demo.rst.txt deleted file mode 120000 index 2a487903749..00000000000 --- a/_sources/examples/pylab_examples/spectrum_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/spectrum_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/spectrum_demo.txt b/_sources/examples/pylab_examples/spectrum_demo.txt deleted file mode 120000 index 0235dd52efa..00000000000 --- a/_sources/examples/pylab_examples/spectrum_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/spectrum_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/spine_placement_demo.rst.txt b/_sources/examples/pylab_examples/spine_placement_demo.rst.txt deleted file mode 120000 index 9f2d05c41d4..00000000000 --- a/_sources/examples/pylab_examples/spine_placement_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/spine_placement_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/spine_placement_demo.txt b/_sources/examples/pylab_examples/spine_placement_demo.txt deleted file mode 120000 index c3ee4003843..00000000000 --- a/_sources/examples/pylab_examples/spine_placement_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/spine_placement_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/spy_demos.rst.txt b/_sources/examples/pylab_examples/spy_demos.rst.txt deleted file mode 120000 index 7f88e5f31be..00000000000 --- a/_sources/examples/pylab_examples/spy_demos.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/spy_demos.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/spy_demos.txt b/_sources/examples/pylab_examples/spy_demos.txt deleted file mode 120000 index cd12ca85550..00000000000 --- a/_sources/examples/pylab_examples/spy_demos.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/spy_demos.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stackplot_demo.rst.txt b/_sources/examples/pylab_examples/stackplot_demo.rst.txt deleted file mode 120000 index b805d3d9e8b..00000000000 --- a/_sources/examples/pylab_examples/stackplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/stackplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stackplot_demo.txt b/_sources/examples/pylab_examples/stackplot_demo.txt deleted file mode 120000 index fcf5c311b79..00000000000 --- a/_sources/examples/pylab_examples/stackplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/stackplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stackplot_demo2.rst.txt b/_sources/examples/pylab_examples/stackplot_demo2.rst.txt deleted file mode 120000 index a3628b41092..00000000000 --- a/_sources/examples/pylab_examples/stackplot_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/stackplot_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stackplot_demo2.txt b/_sources/examples/pylab_examples/stackplot_demo2.txt deleted file mode 120000 index 713b251ff5f..00000000000 --- a/_sources/examples/pylab_examples/stackplot_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/stackplot_demo2.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stem_plot.rst.txt b/_sources/examples/pylab_examples/stem_plot.rst.txt deleted file mode 120000 index 10990a4db45..00000000000 --- a/_sources/examples/pylab_examples/stem_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/stem_plot.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stem_plot.txt b/_sources/examples/pylab_examples/stem_plot.txt deleted file mode 120000 index cb427af515d..00000000000 --- a/_sources/examples/pylab_examples/stem_plot.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/stem_plot.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/step_demo.rst.txt b/_sources/examples/pylab_examples/step_demo.rst.txt deleted file mode 120000 index 4bcdd7b5a04..00000000000 --- a/_sources/examples/pylab_examples/step_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/step_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/step_demo.txt b/_sources/examples/pylab_examples/step_demo.txt deleted file mode 120000 index 4efceafefb9..00000000000 --- a/_sources/examples/pylab_examples/step_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/step_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stix_fonts_demo.rst.txt b/_sources/examples/pylab_examples/stix_fonts_demo.rst.txt deleted file mode 120000 index e4705bae09e..00000000000 --- a/_sources/examples/pylab_examples/stix_fonts_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/stix_fonts_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stix_fonts_demo.txt b/_sources/examples/pylab_examples/stix_fonts_demo.txt deleted file mode 120000 index 703a25f2788..00000000000 --- a/_sources/examples/pylab_examples/stix_fonts_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/stix_fonts_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/stock_demo.txt b/_sources/examples/pylab_examples/stock_demo.txt deleted file mode 120000 index 363b1f68835..00000000000 --- a/_sources/examples/pylab_examples/stock_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/stock_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/streamplot_demo.txt b/_sources/examples/pylab_examples/streamplot_demo.txt deleted file mode 120000 index 2563e7283e6..00000000000 --- a/_sources/examples/pylab_examples/streamplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/streamplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/streamplot_with_mask.txt b/_sources/examples/pylab_examples/streamplot_with_mask.txt deleted file mode 120000 index baecab3ba96..00000000000 --- a/_sources/examples/pylab_examples/streamplot_with_mask.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/streamplot_with_mask.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplot_demo.rst.txt b/_sources/examples/pylab_examples/subplot_demo.rst.txt deleted file mode 120000 index 12c5307358e..00000000000 --- a/_sources/examples/pylab_examples/subplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/subplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplot_demo.txt b/_sources/examples/pylab_examples/subplot_demo.txt deleted file mode 120000 index 6d248cb4bd5..00000000000 --- a/_sources/examples/pylab_examples/subplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/subplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplot_toolbar.rst.txt b/_sources/examples/pylab_examples/subplot_toolbar.rst.txt deleted file mode 120000 index 0227648fa4f..00000000000 --- a/_sources/examples/pylab_examples/subplot_toolbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/subplot_toolbar.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplot_toolbar.txt b/_sources/examples/pylab_examples/subplot_toolbar.txt deleted file mode 120000 index 8320787d83e..00000000000 --- a/_sources/examples/pylab_examples/subplot_toolbar.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/subplot_toolbar.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplots_adjust.rst.txt b/_sources/examples/pylab_examples/subplots_adjust.rst.txt deleted file mode 120000 index 52ebe87da74..00000000000 --- a/_sources/examples/pylab_examples/subplots_adjust.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/subplots_adjust.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplots_adjust.txt b/_sources/examples/pylab_examples/subplots_adjust.txt deleted file mode 120000 index 94ecfa5318b..00000000000 --- a/_sources/examples/pylab_examples/subplots_adjust.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/subplots_adjust.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplots_demo.rst.txt b/_sources/examples/pylab_examples/subplots_demo.rst.txt deleted file mode 120000 index e1a9055f59c..00000000000 --- a/_sources/examples/pylab_examples/subplots_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/subplots_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/subplots_demo.txt b/_sources/examples/pylab_examples/subplots_demo.txt deleted file mode 120000 index b3201a47c61..00000000000 --- a/_sources/examples/pylab_examples/subplots_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/subplots_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/symlog_demo.rst.txt b/_sources/examples/pylab_examples/symlog_demo.rst.txt deleted file mode 120000 index a29da7faa7a..00000000000 --- a/_sources/examples/pylab_examples/symlog_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/symlog_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/symlog_demo.txt b/_sources/examples/pylab_examples/symlog_demo.txt deleted file mode 120000 index af3148b4e9e..00000000000 --- a/_sources/examples/pylab_examples/symlog_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/symlog_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/system_monitor.rst.txt b/_sources/examples/pylab_examples/system_monitor.rst.txt deleted file mode 120000 index cf9903951a1..00000000000 --- a/_sources/examples/pylab_examples/system_monitor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/system_monitor.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/system_monitor.txt b/_sources/examples/pylab_examples/system_monitor.txt deleted file mode 120000 index bf10e179077..00000000000 --- a/_sources/examples/pylab_examples/system_monitor.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/system_monitor.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/table_demo.rst.txt b/_sources/examples/pylab_examples/table_demo.rst.txt deleted file mode 120000 index 1255a50a5f3..00000000000 --- a/_sources/examples/pylab_examples/table_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/table_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/table_demo.txt b/_sources/examples/pylab_examples/table_demo.txt deleted file mode 120000 index 1d8d0222a05..00000000000 --- a/_sources/examples/pylab_examples/table_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/table_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tex_demo.rst.txt b/_sources/examples/pylab_examples/tex_demo.rst.txt deleted file mode 120000 index b73b38fb225..00000000000 --- a/_sources/examples/pylab_examples/tex_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/tex_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tex_demo.txt b/_sources/examples/pylab_examples/tex_demo.txt deleted file mode 120000 index 25aeec6e13c..00000000000 --- a/_sources/examples/pylab_examples/tex_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/tex_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tex_unicode_demo.rst.txt b/_sources/examples/pylab_examples/tex_unicode_demo.rst.txt deleted file mode 120000 index 656b70f9591..00000000000 --- a/_sources/examples/pylab_examples/tex_unicode_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/tex_unicode_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tex_unicode_demo.txt b/_sources/examples/pylab_examples/tex_unicode_demo.txt deleted file mode 120000 index 6b6001df36b..00000000000 --- a/_sources/examples/pylab_examples/tex_unicode_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/tex_unicode_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/text_handles.rst.txt b/_sources/examples/pylab_examples/text_handles.rst.txt deleted file mode 120000 index 648ac2f86e4..00000000000 --- a/_sources/examples/pylab_examples/text_handles.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/text_handles.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/text_handles.txt b/_sources/examples/pylab_examples/text_handles.txt deleted file mode 120000 index 9a85c1441ee..00000000000 --- a/_sources/examples/pylab_examples/text_handles.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/text_handles.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/text_rotation.rst.txt b/_sources/examples/pylab_examples/text_rotation.rst.txt deleted file mode 120000 index 63a3deac940..00000000000 --- a/_sources/examples/pylab_examples/text_rotation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/text_rotation.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/text_rotation.txt b/_sources/examples/pylab_examples/text_rotation.txt deleted file mode 120000 index 5c1614bc0a3..00000000000 --- a/_sources/examples/pylab_examples/text_rotation.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/text_rotation.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/text_rotation_relative_to_line.rst.txt b/_sources/examples/pylab_examples/text_rotation_relative_to_line.rst.txt deleted file mode 120000 index a9da8c038c4..00000000000 --- a/_sources/examples/pylab_examples/text_rotation_relative_to_line.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/text_rotation_relative_to_line.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/text_rotation_relative_to_line.txt b/_sources/examples/pylab_examples/text_rotation_relative_to_line.txt deleted file mode 120000 index 1c090ab9dcf..00000000000 --- a/_sources/examples/pylab_examples/text_rotation_relative_to_line.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/text_rotation_relative_to_line.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/text_themes.txt b/_sources/examples/pylab_examples/text_themes.txt deleted file mode 120000 index 0855c54812a..00000000000 --- a/_sources/examples/pylab_examples/text_themes.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/text_themes.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/titles_demo.rst.txt b/_sources/examples/pylab_examples/titles_demo.rst.txt deleted file mode 120000 index d201c399069..00000000000 --- a/_sources/examples/pylab_examples/titles_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/titles_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/titles_demo.txt b/_sources/examples/pylab_examples/titles_demo.txt deleted file mode 120000 index 5d6f16e9c53..00000000000 --- a/_sources/examples/pylab_examples/titles_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/titles_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/to_numeric.txt b/_sources/examples/pylab_examples/to_numeric.txt deleted file mode 120000 index a7a0bdf1c07..00000000000 --- a/_sources/examples/pylab_examples/to_numeric.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.4.3/_sources/examples/pylab_examples/to_numeric.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/toggle_images.rst.txt b/_sources/examples/pylab_examples/toggle_images.rst.txt deleted file mode 120000 index 849911b6867..00000000000 --- a/_sources/examples/pylab_examples/toggle_images.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/toggle_images.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/toggle_images.txt b/_sources/examples/pylab_examples/toggle_images.txt deleted file mode 120000 index 85f81b134d1..00000000000 --- a/_sources/examples/pylab_examples/toggle_images.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/toggle_images.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/transoffset.rst.txt b/_sources/examples/pylab_examples/transoffset.rst.txt deleted file mode 120000 index b06e6f5595c..00000000000 --- a/_sources/examples/pylab_examples/transoffset.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/transoffset.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/transoffset.txt b/_sources/examples/pylab_examples/transoffset.txt deleted file mode 120000 index 001950b4e7e..00000000000 --- a/_sources/examples/pylab_examples/transoffset.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/transoffset.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_demo.rst.txt b/_sources/examples/pylab_examples/tricontour_demo.rst.txt deleted file mode 120000 index 6ef31de6294..00000000000 --- a/_sources/examples/pylab_examples/tricontour_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/tricontour_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_demo.txt b/_sources/examples/pylab_examples/tricontour_demo.txt deleted file mode 120000 index 872a01c4064..00000000000 --- a/_sources/examples/pylab_examples/tricontour_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/tricontour_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_smooth_delaunay.rst.txt b/_sources/examples/pylab_examples/tricontour_smooth_delaunay.rst.txt deleted file mode 120000 index 8ed1262fb64..00000000000 --- a/_sources/examples/pylab_examples/tricontour_smooth_delaunay.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/tricontour_smooth_delaunay.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_smooth_delaunay.txt b/_sources/examples/pylab_examples/tricontour_smooth_delaunay.txt deleted file mode 120000 index 0b1b1f1a314..00000000000 --- a/_sources/examples/pylab_examples/tricontour_smooth_delaunay.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/tricontour_smooth_delaunay.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_smooth_user.rst.txt b/_sources/examples/pylab_examples/tricontour_smooth_user.rst.txt deleted file mode 120000 index 45bd1ac513a..00000000000 --- a/_sources/examples/pylab_examples/tricontour_smooth_user.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/tricontour_smooth_user.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_smooth_user.txt b/_sources/examples/pylab_examples/tricontour_smooth_user.txt deleted file mode 120000 index 983b3e4359d..00000000000 --- a/_sources/examples/pylab_examples/tricontour_smooth_user.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/tricontour_smooth_user.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_vs_griddata.rst.txt b/_sources/examples/pylab_examples/tricontour_vs_griddata.rst.txt deleted file mode 120000 index 2915ec0ea5d..00000000000 --- a/_sources/examples/pylab_examples/tricontour_vs_griddata.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/tricontour_vs_griddata.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tricontour_vs_griddata.txt b/_sources/examples/pylab_examples/tricontour_vs_griddata.txt deleted file mode 120000 index 57d51372ca0..00000000000 --- a/_sources/examples/pylab_examples/tricontour_vs_griddata.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/tricontour_vs_griddata.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/trigradient_demo.rst.txt b/_sources/examples/pylab_examples/trigradient_demo.rst.txt deleted file mode 120000 index a51cb41414a..00000000000 --- a/_sources/examples/pylab_examples/trigradient_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/trigradient_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/trigradient_demo.txt b/_sources/examples/pylab_examples/trigradient_demo.txt deleted file mode 120000 index 69fbadec35a..00000000000 --- a/_sources/examples/pylab_examples/trigradient_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/trigradient_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/triinterp_demo.rst.txt b/_sources/examples/pylab_examples/triinterp_demo.rst.txt deleted file mode 120000 index b313ac23dc4..00000000000 --- a/_sources/examples/pylab_examples/triinterp_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/triinterp_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/triinterp_demo.txt b/_sources/examples/pylab_examples/triinterp_demo.txt deleted file mode 120000 index e0e64231ad7..00000000000 --- a/_sources/examples/pylab_examples/triinterp_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/triinterp_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tripcolor_demo.rst.txt b/_sources/examples/pylab_examples/tripcolor_demo.rst.txt deleted file mode 120000 index d76d8305300..00000000000 --- a/_sources/examples/pylab_examples/tripcolor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/tripcolor_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/tripcolor_demo.txt b/_sources/examples/pylab_examples/tripcolor_demo.txt deleted file mode 120000 index 17bc9221324..00000000000 --- a/_sources/examples/pylab_examples/tripcolor_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/tripcolor_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/triplot_demo.rst.txt b/_sources/examples/pylab_examples/triplot_demo.rst.txt deleted file mode 120000 index 161f7b2b080..00000000000 --- a/_sources/examples/pylab_examples/triplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/triplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/triplot_demo.txt b/_sources/examples/pylab_examples/triplot_demo.txt deleted file mode 120000 index 5deaaf18931..00000000000 --- a/_sources/examples/pylab_examples/triplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/triplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/unicode_demo.txt b/_sources/examples/pylab_examples/unicode_demo.txt deleted file mode 120000 index 68bc7fe2d01..00000000000 --- a/_sources/examples/pylab_examples/unicode_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/unicode_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/usetex_baseline_test.rst.txt b/_sources/examples/pylab_examples/usetex_baseline_test.rst.txt deleted file mode 120000 index a2190af81a5..00000000000 --- a/_sources/examples/pylab_examples/usetex_baseline_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/usetex_baseline_test.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/usetex_baseline_test.txt b/_sources/examples/pylab_examples/usetex_baseline_test.txt deleted file mode 120000 index 47e4b38d30a..00000000000 --- a/_sources/examples/pylab_examples/usetex_baseline_test.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/usetex_baseline_test.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/usetex_demo.rst.txt b/_sources/examples/pylab_examples/usetex_demo.rst.txt deleted file mode 120000 index ddf881d1669..00000000000 --- a/_sources/examples/pylab_examples/usetex_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/usetex_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/usetex_demo.txt b/_sources/examples/pylab_examples/usetex_demo.txt deleted file mode 120000 index 9c380bb6796..00000000000 --- a/_sources/examples/pylab_examples/usetex_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/usetex_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/usetex_fonteffects.rst.txt b/_sources/examples/pylab_examples/usetex_fonteffects.rst.txt deleted file mode 120000 index 7f10f935f0c..00000000000 --- a/_sources/examples/pylab_examples/usetex_fonteffects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/usetex_fonteffects.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/usetex_fonteffects.txt b/_sources/examples/pylab_examples/usetex_fonteffects.txt deleted file mode 120000 index a5864a507c0..00000000000 --- a/_sources/examples/pylab_examples/usetex_fonteffects.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/usetex_fonteffects.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/vertical_ticklabels.txt b/_sources/examples/pylab_examples/vertical_ticklabels.txt deleted file mode 120000 index 983ecaba4a1..00000000000 --- a/_sources/examples/pylab_examples/vertical_ticklabels.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/vertical_ticklabels.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/vline_demo.txt b/_sources/examples/pylab_examples/vline_demo.txt deleted file mode 120000 index c4b76798f19..00000000000 --- a/_sources/examples/pylab_examples/vline_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/pylab_examples/vline_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/vline_hline_demo.rst.txt b/_sources/examples/pylab_examples/vline_hline_demo.rst.txt deleted file mode 120000 index f845dea1ec2..00000000000 --- a/_sources/examples/pylab_examples/vline_hline_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/vline_hline_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/vline_hline_demo.txt b/_sources/examples/pylab_examples/vline_hline_demo.txt deleted file mode 120000 index 4c7f44473be..00000000000 --- a/_sources/examples/pylab_examples/vline_hline_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/vline_hline_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/webapp_demo.rst.txt b/_sources/examples/pylab_examples/webapp_demo.rst.txt deleted file mode 120000 index b3a1347c6d9..00000000000 --- a/_sources/examples/pylab_examples/webapp_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/webapp_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/webapp_demo.txt b/_sources/examples/pylab_examples/webapp_demo.txt deleted file mode 120000 index 4e2153ba7db..00000000000 --- a/_sources/examples/pylab_examples/webapp_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/webapp_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/xcorr_demo.rst.txt b/_sources/examples/pylab_examples/xcorr_demo.rst.txt deleted file mode 120000 index 472c8e18f8b..00000000000 --- a/_sources/examples/pylab_examples/xcorr_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/xcorr_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/xcorr_demo.txt b/_sources/examples/pylab_examples/xcorr_demo.txt deleted file mode 120000 index 51151ca83d9..00000000000 --- a/_sources/examples/pylab_examples/xcorr_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/xcorr_demo.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/zorder_demo.rst.txt b/_sources/examples/pylab_examples/zorder_demo.rst.txt deleted file mode 120000 index 61422e6585b..00000000000 --- a/_sources/examples/pylab_examples/zorder_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pylab_examples/zorder_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pylab_examples/zorder_demo.txt b/_sources/examples/pylab_examples/zorder_demo.txt deleted file mode 120000 index 7868ac18997..00000000000 --- a/_sources/examples/pylab_examples/zorder_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/pylab_examples/zorder_demo.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/align_ylabels.rst.txt b/_sources/examples/pyplots/align_ylabels.rst.txt deleted file mode 120000 index 74087185549..00000000000 --- a/_sources/examples/pyplots/align_ylabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/align_ylabels.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/annotate_transform.rst.txt b/_sources/examples/pyplots/annotate_transform.rst.txt deleted file mode 120000 index 339ffa2cd3f..00000000000 --- a/_sources/examples/pyplots/annotate_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/annotate_transform.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/annotation_basic.rst.txt b/_sources/examples/pyplots/annotation_basic.rst.txt deleted file mode 120000 index 533f0a622e2..00000000000 --- a/_sources/examples/pyplots/annotation_basic.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/annotation_basic.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/annotation_polar.rst.txt b/_sources/examples/pyplots/annotation_polar.rst.txt deleted file mode 120000 index a84dd02bff1..00000000000 --- a/_sources/examples/pyplots/annotation_polar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/annotation_polar.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/auto_subplots_adjust.rst.txt b/_sources/examples/pyplots/auto_subplots_adjust.rst.txt deleted file mode 120000 index 0da30ea51fa..00000000000 --- a/_sources/examples/pyplots/auto_subplots_adjust.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/auto_subplots_adjust.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/boxplot_demo.rst.txt b/_sources/examples/pyplots/boxplot_demo.rst.txt deleted file mode 120000 index e968a3a40e7..00000000000 --- a/_sources/examples/pyplots/boxplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/boxplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/compound_path_demo.rst.txt b/_sources/examples/pyplots/compound_path_demo.rst.txt deleted file mode 120000 index 5fd916760e8..00000000000 --- a/_sources/examples/pyplots/compound_path_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/compound_path_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/dollar_ticks.rst.txt b/_sources/examples/pyplots/dollar_ticks.rst.txt deleted file mode 120000 index 0e421195de8..00000000000 --- a/_sources/examples/pyplots/dollar_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/dollar_ticks.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/fig_axes_customize_simple.rst.txt b/_sources/examples/pyplots/fig_axes_customize_simple.rst.txt deleted file mode 120000 index 129f814145c..00000000000 --- a/_sources/examples/pyplots/fig_axes_customize_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/fig_axes_customize_simple.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/fig_axes_labels_simple.rst.txt b/_sources/examples/pyplots/fig_axes_labels_simple.rst.txt deleted file mode 120000 index 72d64a1ce11..00000000000 --- a/_sources/examples/pyplots/fig_axes_labels_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/fig_axes_labels_simple.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/fig_x.rst.txt b/_sources/examples/pyplots/fig_x.rst.txt deleted file mode 120000 index 04ab4e352e6..00000000000 --- a/_sources/examples/pyplots/fig_x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/fig_x.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/index.rst.txt b/_sources/examples/pyplots/index.rst.txt deleted file mode 120000 index 00603f0a53f..00000000000 --- a/_sources/examples/pyplots/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_annotate.rst.txt b/_sources/examples/pyplots/pyplot_annotate.rst.txt deleted file mode 120000 index a048c33ec69..00000000000 --- a/_sources/examples/pyplots/pyplot_annotate.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_annotate.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_formatstr.rst.txt b/_sources/examples/pyplots/pyplot_formatstr.rst.txt deleted file mode 120000 index 64149e341d9..00000000000 --- a/_sources/examples/pyplots/pyplot_formatstr.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_formatstr.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_mathtext.rst.txt b/_sources/examples/pyplots/pyplot_mathtext.rst.txt deleted file mode 120000 index 7dc758d511f..00000000000 --- a/_sources/examples/pyplots/pyplot_mathtext.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_mathtext.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_scales.rst.txt b/_sources/examples/pyplots/pyplot_scales.rst.txt deleted file mode 120000 index 81aa6add513..00000000000 --- a/_sources/examples/pyplots/pyplot_scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_scales.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_simple.rst.txt b/_sources/examples/pyplots/pyplot_simple.rst.txt deleted file mode 120000 index d86a6ddb0a2..00000000000 --- a/_sources/examples/pyplots/pyplot_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_simple.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_text.rst.txt b/_sources/examples/pyplots/pyplot_text.rst.txt deleted file mode 120000 index 2d703e91807..00000000000 --- a/_sources/examples/pyplots/pyplot_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_text.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_three.rst.txt b/_sources/examples/pyplots/pyplot_three.rst.txt deleted file mode 120000 index 0369c303736..00000000000 --- a/_sources/examples/pyplots/pyplot_three.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_three.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/pyplot_two_subplots.rst.txt b/_sources/examples/pyplots/pyplot_two_subplots.rst.txt deleted file mode 120000 index c146ad6d8d4..00000000000 --- a/_sources/examples/pyplots/pyplot_two_subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/pyplot_two_subplots.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/tex_demo.rst.txt b/_sources/examples/pyplots/tex_demo.rst.txt deleted file mode 120000 index d25ab40a0d5..00000000000 --- a/_sources/examples/pyplots/tex_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/tex_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/text_commands.rst.txt b/_sources/examples/pyplots/text_commands.rst.txt deleted file mode 120000 index 8a918eceb1b..00000000000 --- a/_sources/examples/pyplots/text_commands.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/text_commands.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/text_layout.rst.txt b/_sources/examples/pyplots/text_layout.rst.txt deleted file mode 120000 index 45b5fa7b08b..00000000000 --- a/_sources/examples/pyplots/text_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/text_layout.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/whats_new_1_subplot3d.rst.txt b/_sources/examples/pyplots/whats_new_1_subplot3d.rst.txt deleted file mode 120000 index c412f4f04c6..00000000000 --- a/_sources/examples/pyplots/whats_new_1_subplot3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/whats_new_1_subplot3d.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/whats_new_98_4_fancy.rst.txt b/_sources/examples/pyplots/whats_new_98_4_fancy.rst.txt deleted file mode 120000 index d3d3f84f2f2..00000000000 --- a/_sources/examples/pyplots/whats_new_98_4_fancy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/whats_new_98_4_fancy.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/whats_new_98_4_fill_between.rst.txt b/_sources/examples/pyplots/whats_new_98_4_fill_between.rst.txt deleted file mode 120000 index bfdd6b471c6..00000000000 --- a/_sources/examples/pyplots/whats_new_98_4_fill_between.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/whats_new_98_4_fill_between.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/whats_new_98_4_legend.rst.txt b/_sources/examples/pyplots/whats_new_98_4_legend.rst.txt deleted file mode 120000 index b4b1ba5109f..00000000000 --- a/_sources/examples/pyplots/whats_new_98_4_legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/whats_new_98_4_legend.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/whats_new_99_axes_grid.rst.txt b/_sources/examples/pyplots/whats_new_99_axes_grid.rst.txt deleted file mode 120000 index 40153e5e514..00000000000 --- a/_sources/examples/pyplots/whats_new_99_axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/whats_new_99_axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/whats_new_99_mplot3d.rst.txt b/_sources/examples/pyplots/whats_new_99_mplot3d.rst.txt deleted file mode 120000 index d3d81c487ca..00000000000 --- a/_sources/examples/pyplots/whats_new_99_mplot3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/whats_new_99_mplot3d.rst.txt \ No newline at end of file diff --git a/_sources/examples/pyplots/whats_new_99_spines.rst.txt b/_sources/examples/pyplots/whats_new_99_spines.rst.txt deleted file mode 120000 index 65ad858d301..00000000000 --- a/_sources/examples/pyplots/whats_new_99_spines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/pyplots/whats_new_99_spines.rst.txt \ No newline at end of file diff --git a/_sources/examples/scales/index.rst.txt b/_sources/examples/scales/index.rst.txt deleted file mode 120000 index 67abd93a3fb..00000000000 --- a/_sources/examples/scales/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/scales/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/scales/index.txt b/_sources/examples/scales/index.txt deleted file mode 120000 index 3580618aa99..00000000000 --- a/_sources/examples/scales/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/scales/index.txt \ No newline at end of file diff --git a/_sources/examples/scales/scales.rst.txt b/_sources/examples/scales/scales.rst.txt deleted file mode 120000 index 619be8ef5ee..00000000000 --- a/_sources/examples/scales/scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/scales/scales.rst.txt \ No newline at end of file diff --git a/_sources/examples/scales/scales.txt b/_sources/examples/scales/scales.txt deleted file mode 120000 index cfa79fa19b3..00000000000 --- a/_sources/examples/scales/scales.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/scales/scales.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/artist_reference.rst.txt b/_sources/examples/shapes_and_collections/artist_reference.rst.txt deleted file mode 120000 index f7c88b0a8ef..00000000000 --- a/_sources/examples/shapes_and_collections/artist_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/shapes_and_collections/artist_reference.rst.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/artist_reference.txt b/_sources/examples/shapes_and_collections/artist_reference.txt deleted file mode 120000 index ad070fe5fe1..00000000000 --- a/_sources/examples/shapes_and_collections/artist_reference.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/shapes_and_collections/artist_reference.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/index.rst.txt b/_sources/examples/shapes_and_collections/index.rst.txt deleted file mode 120000 index aaecf0b0b7a..00000000000 --- a/_sources/examples/shapes_and_collections/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/shapes_and_collections/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/index.txt b/_sources/examples/shapes_and_collections/index.txt deleted file mode 120000 index 12ee917cf21..00000000000 --- a/_sources/examples/shapes_and_collections/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/shapes_and_collections/index.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/path_patch_demo.rst.txt b/_sources/examples/shapes_and_collections/path_patch_demo.rst.txt deleted file mode 120000 index 0df9d92602b..00000000000 --- a/_sources/examples/shapes_and_collections/path_patch_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/shapes_and_collections/path_patch_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/path_patch_demo.txt b/_sources/examples/shapes_and_collections/path_patch_demo.txt deleted file mode 120000 index 1aec6a5a107..00000000000 --- a/_sources/examples/shapes_and_collections/path_patch_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/shapes_and_collections/path_patch_demo.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/scatter_demo.rst.txt b/_sources/examples/shapes_and_collections/scatter_demo.rst.txt deleted file mode 120000 index 2bf8c28ed63..00000000000 --- a/_sources/examples/shapes_and_collections/scatter_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/shapes_and_collections/scatter_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/shapes_and_collections/scatter_demo.txt b/_sources/examples/shapes_and_collections/scatter_demo.txt deleted file mode 120000 index cfd2d2a0fd3..00000000000 --- a/_sources/examples/shapes_and_collections/scatter_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/shapes_and_collections/scatter_demo.txt \ No newline at end of file diff --git a/_sources/examples/showcase/anatomy.rst.txt b/_sources/examples/showcase/anatomy.rst.txt deleted file mode 120000 index d928d802db1..00000000000 --- a/_sources/examples/showcase/anatomy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/showcase/anatomy.rst.txt \ No newline at end of file diff --git a/_sources/examples/showcase/bachelors_degrees_by_gender.rst.txt b/_sources/examples/showcase/bachelors_degrees_by_gender.rst.txt deleted file mode 120000 index 83cf0c4241d..00000000000 --- a/_sources/examples/showcase/bachelors_degrees_by_gender.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/showcase/bachelors_degrees_by_gender.rst.txt \ No newline at end of file diff --git a/_sources/examples/showcase/bachelors_degrees_by_gender.txt b/_sources/examples/showcase/bachelors_degrees_by_gender.txt deleted file mode 120000 index 0a0bf36e92d..00000000000 --- a/_sources/examples/showcase/bachelors_degrees_by_gender.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/showcase/bachelors_degrees_by_gender.txt \ No newline at end of file diff --git a/_sources/examples/showcase/firefox.rst.txt b/_sources/examples/showcase/firefox.rst.txt deleted file mode 120000 index f85fbddcd06..00000000000 --- a/_sources/examples/showcase/firefox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/showcase/firefox.rst.txt \ No newline at end of file diff --git a/_sources/examples/showcase/index.rst.txt b/_sources/examples/showcase/index.rst.txt deleted file mode 120000 index dc87bd1db14..00000000000 --- a/_sources/examples/showcase/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/showcase/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/showcase/index.txt b/_sources/examples/showcase/index.txt deleted file mode 120000 index 6ca42fc9c64..00000000000 --- a/_sources/examples/showcase/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/showcase/index.txt \ No newline at end of file diff --git a/_sources/examples/showcase/integral_demo.rst.txt b/_sources/examples/showcase/integral_demo.rst.txt deleted file mode 120000 index 914173c695a..00000000000 --- a/_sources/examples/showcase/integral_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/showcase/integral_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/showcase/integral_demo.txt b/_sources/examples/showcase/integral_demo.txt deleted file mode 120000 index 6d16021e292..00000000000 --- a/_sources/examples/showcase/integral_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/showcase/integral_demo.txt \ No newline at end of file diff --git a/_sources/examples/showcase/mandelbrot.rst.txt b/_sources/examples/showcase/mandelbrot.rst.txt deleted file mode 120000 index b459ef6a867..00000000000 --- a/_sources/examples/showcase/mandelbrot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/showcase/mandelbrot.rst.txt \ No newline at end of file diff --git a/_sources/examples/showcase/xkcd.rst.txt b/_sources/examples/showcase/xkcd.rst.txt deleted file mode 120000 index fc0361e00f7..00000000000 --- a/_sources/examples/showcase/xkcd.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/showcase/xkcd.rst.txt \ No newline at end of file diff --git a/_sources/examples/showcase/xkcd.txt b/_sources/examples/showcase/xkcd.txt deleted file mode 120000 index bb32597ba05..00000000000 --- a/_sources/examples/showcase/xkcd.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/showcase/xkcd.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/advanced_hillshading.rst.txt b/_sources/examples/specialty_plots/advanced_hillshading.rst.txt deleted file mode 120000 index 18436e1d364..00000000000 --- a/_sources/examples/specialty_plots/advanced_hillshading.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/specialty_plots/advanced_hillshading.rst.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/advanced_hillshading.txt b/_sources/examples/specialty_plots/advanced_hillshading.txt deleted file mode 120000 index b1ced48a818..00000000000 --- a/_sources/examples/specialty_plots/advanced_hillshading.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/specialty_plots/advanced_hillshading.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/hinton_demo.rst.txt b/_sources/examples/specialty_plots/hinton_demo.rst.txt deleted file mode 120000 index 4425c31eb19..00000000000 --- a/_sources/examples/specialty_plots/hinton_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/specialty_plots/hinton_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/hinton_demo.txt b/_sources/examples/specialty_plots/hinton_demo.txt deleted file mode 120000 index d053693715f..00000000000 --- a/_sources/examples/specialty_plots/hinton_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/specialty_plots/hinton_demo.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/index.rst.txt b/_sources/examples/specialty_plots/index.rst.txt deleted file mode 120000 index 5eb11088b3b..00000000000 --- a/_sources/examples/specialty_plots/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/specialty_plots/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/index.txt b/_sources/examples/specialty_plots/index.txt deleted file mode 120000 index 15f339561ec..00000000000 --- a/_sources/examples/specialty_plots/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/specialty_plots/index.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/topographic_hillshading.rst.txt b/_sources/examples/specialty_plots/topographic_hillshading.rst.txt deleted file mode 120000 index 88bb640f892..00000000000 --- a/_sources/examples/specialty_plots/topographic_hillshading.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/specialty_plots/topographic_hillshading.rst.txt \ No newline at end of file diff --git a/_sources/examples/specialty_plots/topographic_hillshading.txt b/_sources/examples/specialty_plots/topographic_hillshading.txt deleted file mode 120000 index 8c0d6daea0d..00000000000 --- a/_sources/examples/specialty_plots/topographic_hillshading.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/specialty_plots/topographic_hillshading.txt \ No newline at end of file diff --git a/_sources/examples/statistics/boxplot_color_demo.rst.txt b/_sources/examples/statistics/boxplot_color_demo.rst.txt deleted file mode 120000 index d0ef9c079d7..00000000000 --- a/_sources/examples/statistics/boxplot_color_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/boxplot_color_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/boxplot_color_demo.txt b/_sources/examples/statistics/boxplot_color_demo.txt deleted file mode 120000 index b6de5a7f5fd..00000000000 --- a/_sources/examples/statistics/boxplot_color_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/boxplot_color_demo.txt \ No newline at end of file diff --git a/_sources/examples/statistics/boxplot_demo.rst.txt b/_sources/examples/statistics/boxplot_demo.rst.txt deleted file mode 120000 index 83ff49285c2..00000000000 --- a/_sources/examples/statistics/boxplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/boxplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/boxplot_demo.txt b/_sources/examples/statistics/boxplot_demo.txt deleted file mode 120000 index 22c7effa2ad..00000000000 --- a/_sources/examples/statistics/boxplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/boxplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/statistics/boxplot_vs_violin_demo.rst.txt b/_sources/examples/statistics/boxplot_vs_violin_demo.rst.txt deleted file mode 120000 index 06065a0b919..00000000000 --- a/_sources/examples/statistics/boxplot_vs_violin_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/boxplot_vs_violin_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/boxplot_vs_violin_demo.txt b/_sources/examples/statistics/boxplot_vs_violin_demo.txt deleted file mode 120000 index ac76a1461f4..00000000000 --- a/_sources/examples/statistics/boxplot_vs_violin_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/boxplot_vs_violin_demo.txt \ No newline at end of file diff --git a/_sources/examples/statistics/bxp_demo.rst.txt b/_sources/examples/statistics/bxp_demo.rst.txt deleted file mode 120000 index da563e3a950..00000000000 --- a/_sources/examples/statistics/bxp_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/bxp_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/bxp_demo.txt b/_sources/examples/statistics/bxp_demo.txt deleted file mode 120000 index 967411e1279..00000000000 --- a/_sources/examples/statistics/bxp_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/bxp_demo.txt \ No newline at end of file diff --git a/_sources/examples/statistics/customized_violin_demo.rst.txt b/_sources/examples/statistics/customized_violin_demo.rst.txt deleted file mode 120000 index 9eea87cedf5..00000000000 --- a/_sources/examples/statistics/customized_violin_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/customized_violin_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/errorbar_demo.rst.txt b/_sources/examples/statistics/errorbar_demo.rst.txt deleted file mode 120000 index c1e325015d8..00000000000 --- a/_sources/examples/statistics/errorbar_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/errorbar_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/errorbar_demo.txt b/_sources/examples/statistics/errorbar_demo.txt deleted file mode 120000 index 5e212848673..00000000000 --- a/_sources/examples/statistics/errorbar_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/errorbar_demo.txt \ No newline at end of file diff --git a/_sources/examples/statistics/errorbar_demo_features.rst.txt b/_sources/examples/statistics/errorbar_demo_features.rst.txt deleted file mode 120000 index 8cd500c0da1..00000000000 --- a/_sources/examples/statistics/errorbar_demo_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/errorbar_demo_features.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/errorbar_demo_features.txt b/_sources/examples/statistics/errorbar_demo_features.txt deleted file mode 120000 index 367463994c6..00000000000 --- a/_sources/examples/statistics/errorbar_demo_features.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/errorbar_demo_features.txt \ No newline at end of file diff --git a/_sources/examples/statistics/errorbar_limits.rst.txt b/_sources/examples/statistics/errorbar_limits.rst.txt deleted file mode 120000 index 2595edb6374..00000000000 --- a/_sources/examples/statistics/errorbar_limits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/errorbar_limits.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/errorbar_limits.txt b/_sources/examples/statistics/errorbar_limits.txt deleted file mode 120000 index d1eb1934cf0..00000000000 --- a/_sources/examples/statistics/errorbar_limits.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/errorbar_limits.txt \ No newline at end of file diff --git a/_sources/examples/statistics/errorbars_and_boxes.rst.txt b/_sources/examples/statistics/errorbars_and_boxes.rst.txt deleted file mode 120000 index 5ea0c520246..00000000000 --- a/_sources/examples/statistics/errorbars_and_boxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/errorbars_and_boxes.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_cumulative.rst.txt b/_sources/examples/statistics/histogram_demo_cumulative.rst.txt deleted file mode 120000 index 990846d4e0a..00000000000 --- a/_sources/examples/statistics/histogram_demo_cumulative.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/histogram_demo_cumulative.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_cumulative.txt b/_sources/examples/statistics/histogram_demo_cumulative.txt deleted file mode 120000 index 166ff362c24..00000000000 --- a/_sources/examples/statistics/histogram_demo_cumulative.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/histogram_demo_cumulative.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_features.rst.txt b/_sources/examples/statistics/histogram_demo_features.rst.txt deleted file mode 120000 index 4e50b2b59fb..00000000000 --- a/_sources/examples/statistics/histogram_demo_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/histogram_demo_features.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_features.txt b/_sources/examples/statistics/histogram_demo_features.txt deleted file mode 120000 index 15eb824714f..00000000000 --- a/_sources/examples/statistics/histogram_demo_features.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/histogram_demo_features.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_histtypes.rst.txt b/_sources/examples/statistics/histogram_demo_histtypes.rst.txt deleted file mode 120000 index 1d13cae8c97..00000000000 --- a/_sources/examples/statistics/histogram_demo_histtypes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/histogram_demo_histtypes.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_histtypes.txt b/_sources/examples/statistics/histogram_demo_histtypes.txt deleted file mode 120000 index 4da0ba60e36..00000000000 --- a/_sources/examples/statistics/histogram_demo_histtypes.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/histogram_demo_histtypes.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_multihist.rst.txt b/_sources/examples/statistics/histogram_demo_multihist.rst.txt deleted file mode 120000 index 481cf5c42d6..00000000000 --- a/_sources/examples/statistics/histogram_demo_multihist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/histogram_demo_multihist.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/histogram_demo_multihist.txt b/_sources/examples/statistics/histogram_demo_multihist.txt deleted file mode 120000 index fde5c0ba29d..00000000000 --- a/_sources/examples/statistics/histogram_demo_multihist.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/histogram_demo_multihist.txt \ No newline at end of file diff --git a/_sources/examples/statistics/index.rst.txt b/_sources/examples/statistics/index.rst.txt deleted file mode 120000 index 383c5233eba..00000000000 --- a/_sources/examples/statistics/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/index.txt b/_sources/examples/statistics/index.txt deleted file mode 120000 index 1a82ec6fe37..00000000000 --- a/_sources/examples/statistics/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/index.txt \ No newline at end of file diff --git a/_sources/examples/statistics/multiple_histograms_side_by_side.rst.txt b/_sources/examples/statistics/multiple_histograms_side_by_side.rst.txt deleted file mode 120000 index 78c2538543f..00000000000 --- a/_sources/examples/statistics/multiple_histograms_side_by_side.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/multiple_histograms_side_by_side.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/multiple_histograms_side_by_side.txt b/_sources/examples/statistics/multiple_histograms_side_by_side.txt deleted file mode 120000 index 5b4e60de7c9..00000000000 --- a/_sources/examples/statistics/multiple_histograms_side_by_side.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/multiple_histograms_side_by_side.txt \ No newline at end of file diff --git a/_sources/examples/statistics/violinplot_demo.rst.txt b/_sources/examples/statistics/violinplot_demo.rst.txt deleted file mode 120000 index ea24d51ec7c..00000000000 --- a/_sources/examples/statistics/violinplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/statistics/violinplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/statistics/violinplot_demo.txt b/_sources/examples/statistics/violinplot_demo.txt deleted file mode 120000 index 9dd38d5f9f7..00000000000 --- a/_sources/examples/statistics/violinplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/statistics/violinplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/index.rst.txt b/_sources/examples/style_sheets/index.rst.txt deleted file mode 120000 index fa08eb5a03b..00000000000 --- a/_sources/examples/style_sheets/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/style_sheets/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/index.txt b/_sources/examples/style_sheets/index.txt deleted file mode 120000 index 8de32419d44..00000000000 --- a/_sources/examples/style_sheets/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/style_sheets/index.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_bmh.rst.txt b/_sources/examples/style_sheets/plot_bmh.rst.txt deleted file mode 120000 index d94ea15ef87..00000000000 --- a/_sources/examples/style_sheets/plot_bmh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/style_sheets/plot_bmh.rst.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_bmh.txt b/_sources/examples/style_sheets/plot_bmh.txt deleted file mode 120000 index d4ac131513b..00000000000 --- a/_sources/examples/style_sheets/plot_bmh.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/style_sheets/plot_bmh.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_dark_background.rst.txt b/_sources/examples/style_sheets/plot_dark_background.rst.txt deleted file mode 120000 index efabf5afbe6..00000000000 --- a/_sources/examples/style_sheets/plot_dark_background.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/style_sheets/plot_dark_background.rst.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_dark_background.txt b/_sources/examples/style_sheets/plot_dark_background.txt deleted file mode 120000 index ae41ecc490c..00000000000 --- a/_sources/examples/style_sheets/plot_dark_background.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/style_sheets/plot_dark_background.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_fivethirtyeight.rst.txt b/_sources/examples/style_sheets/plot_fivethirtyeight.rst.txt deleted file mode 120000 index 38d60d147ae..00000000000 --- a/_sources/examples/style_sheets/plot_fivethirtyeight.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/style_sheets/plot_fivethirtyeight.rst.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_fivethirtyeight.txt b/_sources/examples/style_sheets/plot_fivethirtyeight.txt deleted file mode 120000 index 39fb428f1b5..00000000000 --- a/_sources/examples/style_sheets/plot_fivethirtyeight.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/style_sheets/plot_fivethirtyeight.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_ggplot.rst.txt b/_sources/examples/style_sheets/plot_ggplot.rst.txt deleted file mode 120000 index da028fdfbb7..00000000000 --- a/_sources/examples/style_sheets/plot_ggplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/style_sheets/plot_ggplot.rst.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_ggplot.txt b/_sources/examples/style_sheets/plot_ggplot.txt deleted file mode 120000 index 27efbc66811..00000000000 --- a/_sources/examples/style_sheets/plot_ggplot.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/style_sheets/plot_ggplot.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_grayscale.rst.txt b/_sources/examples/style_sheets/plot_grayscale.rst.txt deleted file mode 120000 index f0b68b52681..00000000000 --- a/_sources/examples/style_sheets/plot_grayscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/style_sheets/plot_grayscale.rst.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/plot_grayscale.txt b/_sources/examples/style_sheets/plot_grayscale.txt deleted file mode 120000 index 74595a8f76b..00000000000 --- a/_sources/examples/style_sheets/plot_grayscale.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/style_sheets/plot_grayscale.txt \ No newline at end of file diff --git a/_sources/examples/style_sheets/style_sheets_reference.rst.txt b/_sources/examples/style_sheets/style_sheets_reference.rst.txt deleted file mode 120000 index f39fa3e7318..00000000000 --- a/_sources/examples/style_sheets/style_sheets_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/style_sheets/style_sheets_reference.rst.txt \ No newline at end of file diff --git a/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt b/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt deleted file mode 120000 index 08599db974e..00000000000 --- a/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt \ No newline at end of file diff --git a/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.txt b/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.txt deleted file mode 120000 index b0efb977cfa..00000000000 --- a/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.txt \ No newline at end of file diff --git a/_sources/examples/subplots_axes_and_figures/index.rst.txt b/_sources/examples/subplots_axes_and_figures/index.rst.txt deleted file mode 120000 index bf5eb63cdb4..00000000000 --- a/_sources/examples/subplots_axes_and_figures/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/subplots_axes_and_figures/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/subplots_axes_and_figures/index.txt b/_sources/examples/subplots_axes_and_figures/index.txt deleted file mode 120000 index 932eff902e4..00000000000 --- a/_sources/examples/subplots_axes_and_figures/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/subplots_axes_and_figures/index.txt \ No newline at end of file diff --git a/_sources/examples/subplots_axes_and_figures/subplot_demo.rst.txt b/_sources/examples/subplots_axes_and_figures/subplot_demo.rst.txt deleted file mode 120000 index 9184ffdc5c5..00000000000 --- a/_sources/examples/subplots_axes_and_figures/subplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/subplots_axes_and_figures/subplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/subplots_axes_and_figures/subplot_demo.txt b/_sources/examples/subplots_axes_and_figures/subplot_demo.txt deleted file mode 120000 index 64e06d399c5..00000000000 --- a/_sources/examples/subplots_axes_and_figures/subplot_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/subplots_axes_and_figures/subplot_demo.txt \ No newline at end of file diff --git a/_sources/examples/tests/backend_driver.rst.txt b/_sources/examples/tests/backend_driver.rst.txt deleted file mode 120000 index 318bfb762e7..00000000000 --- a/_sources/examples/tests/backend_driver.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/tests/backend_driver.rst.txt \ No newline at end of file diff --git a/_sources/examples/tests/backend_driver.txt b/_sources/examples/tests/backend_driver.txt deleted file mode 120000 index 60b3314a0bc..00000000000 --- a/_sources/examples/tests/backend_driver.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/tests/backend_driver.txt \ No newline at end of file diff --git a/_sources/examples/tests/index.rst.txt b/_sources/examples/tests/index.rst.txt deleted file mode 120000 index d9183077aeb..00000000000 --- a/_sources/examples/tests/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/tests/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/tests/index.txt b/_sources/examples/tests/index.txt deleted file mode 120000 index 9615acc2337..00000000000 --- a/_sources/examples/tests/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/tests/index.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/autowrap_demo.rst.txt b/_sources/examples/text_labels_and_annotations/autowrap_demo.rst.txt deleted file mode 120000 index 4796409c0ea..00000000000 --- a/_sources/examples/text_labels_and_annotations/autowrap_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/text_labels_and_annotations/autowrap_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/autowrap_demo.txt b/_sources/examples/text_labels_and_annotations/autowrap_demo.txt deleted file mode 120000 index 156dcc6944c..00000000000 --- a/_sources/examples/text_labels_and_annotations/autowrap_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/text_labels_and_annotations/autowrap_demo.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/index.rst.txt b/_sources/examples/text_labels_and_annotations/index.rst.txt deleted file mode 120000 index 329c0c12e57..00000000000 --- a/_sources/examples/text_labels_and_annotations/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/text_labels_and_annotations/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/index.txt b/_sources/examples/text_labels_and_annotations/index.txt deleted file mode 120000 index 591ea26eab2..00000000000 --- a/_sources/examples/text_labels_and_annotations/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/text_labels_and_annotations/index.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/rainbow_text.rst.txt b/_sources/examples/text_labels_and_annotations/rainbow_text.rst.txt deleted file mode 120000 index f61847b1094..00000000000 --- a/_sources/examples/text_labels_and_annotations/rainbow_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/text_labels_and_annotations/rainbow_text.rst.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/rainbow_text.txt b/_sources/examples/text_labels_and_annotations/rainbow_text.txt deleted file mode 120000 index 2940c739bee..00000000000 --- a/_sources/examples/text_labels_and_annotations/rainbow_text.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/text_labels_and_annotations/rainbow_text.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/text_demo_fontdict.rst.txt b/_sources/examples/text_labels_and_annotations/text_demo_fontdict.rst.txt deleted file mode 120000 index 9a1a8d050d4..00000000000 --- a/_sources/examples/text_labels_and_annotations/text_demo_fontdict.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/text_labels_and_annotations/text_demo_fontdict.rst.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/text_demo_fontdict.txt b/_sources/examples/text_labels_and_annotations/text_demo_fontdict.txt deleted file mode 120000 index 91623aecf08..00000000000 --- a/_sources/examples/text_labels_and_annotations/text_demo_fontdict.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/text_labels_and_annotations/text_demo_fontdict.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/unicode_demo.rst.txt b/_sources/examples/text_labels_and_annotations/unicode_demo.rst.txt deleted file mode 120000 index 835c3c188fb..00000000000 --- a/_sources/examples/text_labels_and_annotations/unicode_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/text_labels_and_annotations/unicode_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/text_labels_and_annotations/unicode_demo.txt b/_sources/examples/text_labels_and_annotations/unicode_demo.txt deleted file mode 120000 index a9df1459a66..00000000000 --- a/_sources/examples/text_labels_and_annotations/unicode_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/text_labels_and_annotations/unicode_demo.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/index.rst.txt b/_sources/examples/ticks_and_spines/index.rst.txt deleted file mode 120000 index 83c687f344d..00000000000 --- a/_sources/examples/ticks_and_spines/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/index.txt b/_sources/examples/ticks_and_spines/index.txt deleted file mode 120000 index 0c52b052579..00000000000 --- a/_sources/examples/ticks_and_spines/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/ticks_and_spines/index.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/spines_demo.rst.txt b/_sources/examples/ticks_and_spines/spines_demo.rst.txt deleted file mode 120000 index 2410c828873..00000000000 --- a/_sources/examples/ticks_and_spines/spines_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/spines_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/spines_demo.txt b/_sources/examples/ticks_and_spines/spines_demo.txt deleted file mode 120000 index faf79a2d787..00000000000 --- a/_sources/examples/ticks_and_spines/spines_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/ticks_and_spines/spines_demo.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/spines_demo_bounds.rst.txt b/_sources/examples/ticks_and_spines/spines_demo_bounds.rst.txt deleted file mode 120000 index c62b8680aa9..00000000000 --- a/_sources/examples/ticks_and_spines/spines_demo_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/spines_demo_bounds.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/spines_demo_bounds.txt b/_sources/examples/ticks_and_spines/spines_demo_bounds.txt deleted file mode 120000 index 380cb793595..00000000000 --- a/_sources/examples/ticks_and_spines/spines_demo_bounds.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/ticks_and_spines/spines_demo_bounds.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/spines_demo_dropped.rst.txt b/_sources/examples/ticks_and_spines/spines_demo_dropped.rst.txt deleted file mode 120000 index 91e310abc21..00000000000 --- a/_sources/examples/ticks_and_spines/spines_demo_dropped.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/spines_demo_dropped.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/spines_demo_dropped.txt b/_sources/examples/ticks_and_spines/spines_demo_dropped.txt deleted file mode 120000 index 55f4e15bce4..00000000000 --- a/_sources/examples/ticks_and_spines/spines_demo_dropped.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/ticks_and_spines/spines_demo_dropped.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/tick-formatters.rst.txt b/_sources/examples/ticks_and_spines/tick-formatters.rst.txt deleted file mode 120000 index c2f68093b94..00000000000 --- a/_sources/examples/ticks_and_spines/tick-formatters.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/tick-formatters.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/tick-locators.rst.txt b/_sources/examples/ticks_and_spines/tick-locators.rst.txt deleted file mode 120000 index 235b09759cf..00000000000 --- a/_sources/examples/ticks_and_spines/tick-locators.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/tick-locators.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/tick_labels_from_values.rst.txt b/_sources/examples/ticks_and_spines/tick_labels_from_values.rst.txt deleted file mode 120000 index 8246784f2fb..00000000000 --- a/_sources/examples/ticks_and_spines/tick_labels_from_values.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/tick_labels_from_values.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/tick_labels_from_values.txt b/_sources/examples/ticks_and_spines/tick_labels_from_values.txt deleted file mode 120000 index 4c94f18477a..00000000000 --- a/_sources/examples/ticks_and_spines/tick_labels_from_values.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/ticks_and_spines/tick_labels_from_values.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.rst.txt b/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.rst.txt deleted file mode 120000 index 2a52636f3ae..00000000000 --- a/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.rst.txt \ No newline at end of file diff --git a/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.txt b/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.txt deleted file mode 120000 index 83b1e84c5c8..00000000000 --- a/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/ticks_and_spines/ticklabels_demo_rotation.txt \ No newline at end of file diff --git a/_sources/examples/units/annotate_with_units.rst.txt b/_sources/examples/units/annotate_with_units.rst.txt deleted file mode 120000 index 92678e1f9f4..00000000000 --- a/_sources/examples/units/annotate_with_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/annotate_with_units.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/annotate_with_units.txt b/_sources/examples/units/annotate_with_units.txt deleted file mode 120000 index 722c8ccfcd0..00000000000 --- a/_sources/examples/units/annotate_with_units.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/annotate_with_units.txt \ No newline at end of file diff --git a/_sources/examples/units/artist_tests.rst.txt b/_sources/examples/units/artist_tests.rst.txt deleted file mode 120000 index a3546477777..00000000000 --- a/_sources/examples/units/artist_tests.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/artist_tests.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/artist_tests.txt b/_sources/examples/units/artist_tests.txt deleted file mode 120000 index 3cb616858cf..00000000000 --- a/_sources/examples/units/artist_tests.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/artist_tests.txt \ No newline at end of file diff --git a/_sources/examples/units/bar_demo2.rst.txt b/_sources/examples/units/bar_demo2.rst.txt deleted file mode 120000 index 84d75c6926b..00000000000 --- a/_sources/examples/units/bar_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/bar_demo2.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/bar_demo2.txt b/_sources/examples/units/bar_demo2.txt deleted file mode 120000 index 6866e58b0eb..00000000000 --- a/_sources/examples/units/bar_demo2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/bar_demo2.txt \ No newline at end of file diff --git a/_sources/examples/units/bar_unit_demo.rst.txt b/_sources/examples/units/bar_unit_demo.rst.txt deleted file mode 120000 index 4e4ae64fbf0..00000000000 --- a/_sources/examples/units/bar_unit_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/bar_unit_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/bar_unit_demo.txt b/_sources/examples/units/bar_unit_demo.txt deleted file mode 120000 index ed0160ccabd..00000000000 --- a/_sources/examples/units/bar_unit_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/bar_unit_demo.txt \ No newline at end of file diff --git a/_sources/examples/units/basic_units.rst.txt b/_sources/examples/units/basic_units.rst.txt deleted file mode 120000 index 42d9b9be15a..00000000000 --- a/_sources/examples/units/basic_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/basic_units.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/basic_units.txt b/_sources/examples/units/basic_units.txt deleted file mode 120000 index baba337c2a8..00000000000 --- a/_sources/examples/units/basic_units.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/basic_units.txt \ No newline at end of file diff --git a/_sources/examples/units/ellipse_with_units.rst.txt b/_sources/examples/units/ellipse_with_units.rst.txt deleted file mode 120000 index 0b36451704e..00000000000 --- a/_sources/examples/units/ellipse_with_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/ellipse_with_units.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/ellipse_with_units.txt b/_sources/examples/units/ellipse_with_units.txt deleted file mode 120000 index 06637f168f6..00000000000 --- a/_sources/examples/units/ellipse_with_units.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/ellipse_with_units.txt \ No newline at end of file diff --git a/_sources/examples/units/evans_test.rst.txt b/_sources/examples/units/evans_test.rst.txt deleted file mode 120000 index b470433eafd..00000000000 --- a/_sources/examples/units/evans_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/evans_test.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/evans_test.txt b/_sources/examples/units/evans_test.txt deleted file mode 120000 index afd64a391ac..00000000000 --- a/_sources/examples/units/evans_test.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/evans_test.txt \ No newline at end of file diff --git a/_sources/examples/units/index.rst.txt b/_sources/examples/units/index.rst.txt deleted file mode 120000 index f04335e19b7..00000000000 --- a/_sources/examples/units/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/index.txt b/_sources/examples/units/index.txt deleted file mode 120000 index 4ad8d647ed7..00000000000 --- a/_sources/examples/units/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/index.txt \ No newline at end of file diff --git a/_sources/examples/units/radian_demo.rst.txt b/_sources/examples/units/radian_demo.rst.txt deleted file mode 120000 index 3ad74b84349..00000000000 --- a/_sources/examples/units/radian_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/radian_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/radian_demo.txt b/_sources/examples/units/radian_demo.txt deleted file mode 120000 index a285df73e11..00000000000 --- a/_sources/examples/units/radian_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/radian_demo.txt \ No newline at end of file diff --git a/_sources/examples/units/units_sample.rst.txt b/_sources/examples/units/units_sample.rst.txt deleted file mode 120000 index 46ed7ebeddf..00000000000 --- a/_sources/examples/units/units_sample.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/units_sample.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/units_sample.txt b/_sources/examples/units/units_sample.txt deleted file mode 120000 index 6f807b5726f..00000000000 --- a/_sources/examples/units/units_sample.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/units_sample.txt \ No newline at end of file diff --git a/_sources/examples/units/units_scatter.rst.txt b/_sources/examples/units/units_scatter.rst.txt deleted file mode 120000 index 6d20eb2e47f..00000000000 --- a/_sources/examples/units/units_scatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/units/units_scatter.rst.txt \ No newline at end of file diff --git a/_sources/examples/units/units_scatter.txt b/_sources/examples/units/units_scatter.txt deleted file mode 120000 index f74d735d173..00000000000 --- a/_sources/examples/units/units_scatter.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/units/units_scatter.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk.rst.txt b/_sources/examples/user_interfaces/embedding_in_gtk.rst.txt deleted file mode 120000 index 12746a2ad3e..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_gtk.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk.txt b/_sources/examples/user_interfaces/embedding_in_gtk.txt deleted file mode 120000 index af91a8dbb69..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_gtk.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk2.rst.txt b/_sources/examples/user_interfaces/embedding_in_gtk2.rst.txt deleted file mode 120000 index 0730872723f..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_gtk2.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk2.txt b/_sources/examples/user_interfaces/embedding_in_gtk2.txt deleted file mode 120000 index fe7dec2360e..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_gtk2.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk3.rst.txt b/_sources/examples/user_interfaces/embedding_in_gtk3.rst.txt deleted file mode 120000 index 38d0ecbb29a..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_gtk3.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk3.txt b/_sources/examples/user_interfaces/embedding_in_gtk3.txt deleted file mode 120000 index 9d981ab62fb..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_gtk3.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.rst.txt b/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.rst.txt deleted file mode 120000 index 6c540689a92..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.txt b/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.txt deleted file mode 120000 index 06a4c5e75b5..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_gtk3_panzoom.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_qt.txt b/_sources/examples/user_interfaces/embedding_in_qt.txt deleted file mode 120000 index 71153a8d536..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_qt.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.2.1/_sources/examples/user_interfaces/embedding_in_qt.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_qt4.rst.txt b/_sources/examples/user_interfaces/embedding_in_qt4.rst.txt deleted file mode 120000 index 6b65ce37121..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_qt4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_qt4.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_qt4.txt b/_sources/examples/user_interfaces/embedding_in_qt4.txt deleted file mode 120000 index 817a58bb9e3..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_qt4.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_qt4.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.rst.txt b/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.rst.txt deleted file mode 120000 index 10993fa3994..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.txt b/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.txt deleted file mode 120000 index 55d808373f1..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_qt4_wtoolbar.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_qt5.rst.txt b/_sources/examples/user_interfaces/embedding_in_qt5.rst.txt deleted file mode 120000 index 55756ee7d40..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_qt5.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_qt5.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_qt5.txt b/_sources/examples/user_interfaces/embedding_in_qt5.txt deleted file mode 120000 index ca473babd23..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_qt5.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_qt5.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_tk.rst.txt b/_sources/examples/user_interfaces/embedding_in_tk.rst.txt deleted file mode 120000 index f7a96be8d36..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_tk.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_tk.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_tk.txt b/_sources/examples/user_interfaces/embedding_in_tk.txt deleted file mode 120000 index e93c8160ebf..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_tk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_tk.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_tk2.rst.txt b/_sources/examples/user_interfaces/embedding_in_tk2.rst.txt deleted file mode 120000 index 354ffcd6f17..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_tk2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_tk2.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_tk2.txt b/_sources/examples/user_interfaces/embedding_in_tk2.txt deleted file mode 120000 index fee17cde0ae..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_tk2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_tk2.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_tk_canvas.rst.txt b/_sources/examples/user_interfaces/embedding_in_tk_canvas.rst.txt deleted file mode 120000 index 7b716695442..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_tk_canvas.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_tk_canvas.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_tk_canvas.txt b/_sources/examples/user_interfaces/embedding_in_tk_canvas.txt deleted file mode 120000 index b61e5ee6223..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_tk_canvas.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_tk_canvas.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx2.rst.txt b/_sources/examples/user_interfaces/embedding_in_wx2.rst.txt deleted file mode 120000 index f9e94c30779..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_wx2.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx2.txt b/_sources/examples/user_interfaces/embedding_in_wx2.txt deleted file mode 120000 index 7bb73a96d57..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_wx2.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx3.rst.txt b/_sources/examples/user_interfaces/embedding_in_wx3.rst.txt deleted file mode 120000 index a0f7b0e21d8..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_wx3.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx3.txt b/_sources/examples/user_interfaces/embedding_in_wx3.txt deleted file mode 120000 index 64913dc9f83..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx3.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_wx3.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx4.rst.txt b/_sources/examples/user_interfaces/embedding_in_wx4.rst.txt deleted file mode 120000 index 53d27c489a0..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_wx4.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx4.txt b/_sources/examples/user_interfaces/embedding_in_wx4.txt deleted file mode 120000 index 64ce6db02f5..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx4.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_wx4.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx5.rst.txt b/_sources/examples/user_interfaces/embedding_in_wx5.rst.txt deleted file mode 120000 index 1782099f6bd..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx5.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_in_wx5.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_in_wx5.txt b/_sources/examples/user_interfaces/embedding_in_wx5.txt deleted file mode 120000 index 3d8bf237462..00000000000 --- a/_sources/examples/user_interfaces/embedding_in_wx5.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_in_wx5.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_webagg.rst.txt b/_sources/examples/user_interfaces/embedding_webagg.rst.txt deleted file mode 120000 index a42c56625cd..00000000000 --- a/_sources/examples/user_interfaces/embedding_webagg.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/embedding_webagg.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/embedding_webagg.txt b/_sources/examples/user_interfaces/embedding_webagg.txt deleted file mode 120000 index caaf54caad3..00000000000 --- a/_sources/examples/user_interfaces/embedding_webagg.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/embedding_webagg.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/fourier_demo_wx.rst.txt b/_sources/examples/user_interfaces/fourier_demo_wx.rst.txt deleted file mode 120000 index 0da5c6a4cee..00000000000 --- a/_sources/examples/user_interfaces/fourier_demo_wx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/fourier_demo_wx.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/fourier_demo_wx.txt b/_sources/examples/user_interfaces/fourier_demo_wx.txt deleted file mode 120000 index 601b83fe52e..00000000000 --- a/_sources/examples/user_interfaces/fourier_demo_wx.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/fourier_demo_wx.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/gtk_spreadsheet.rst.txt b/_sources/examples/user_interfaces/gtk_spreadsheet.rst.txt deleted file mode 120000 index c4149940beb..00000000000 --- a/_sources/examples/user_interfaces/gtk_spreadsheet.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/gtk_spreadsheet.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/gtk_spreadsheet.txt b/_sources/examples/user_interfaces/gtk_spreadsheet.txt deleted file mode 120000 index ee0ec58294d..00000000000 --- a/_sources/examples/user_interfaces/gtk_spreadsheet.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/gtk_spreadsheet.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/histogram_demo_canvasagg.rst.txt b/_sources/examples/user_interfaces/histogram_demo_canvasagg.rst.txt deleted file mode 120000 index 0aec377bc04..00000000000 --- a/_sources/examples/user_interfaces/histogram_demo_canvasagg.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/histogram_demo_canvasagg.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/histogram_demo_canvasagg.txt b/_sources/examples/user_interfaces/histogram_demo_canvasagg.txt deleted file mode 120000 index 320639fa783..00000000000 --- a/_sources/examples/user_interfaces/histogram_demo_canvasagg.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/histogram_demo_canvasagg.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/index.rst.txt b/_sources/examples/user_interfaces/index.rst.txt deleted file mode 120000 index 570a2d2da11..00000000000 --- a/_sources/examples/user_interfaces/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/index.txt b/_sources/examples/user_interfaces/index.txt deleted file mode 120000 index ef9337f5770..00000000000 --- a/_sources/examples/user_interfaces/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/index.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/interactive.rst.txt b/_sources/examples/user_interfaces/interactive.rst.txt deleted file mode 120000 index 278e3851c6d..00000000000 --- a/_sources/examples/user_interfaces/interactive.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/interactive.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/interactive.txt b/_sources/examples/user_interfaces/interactive.txt deleted file mode 120000 index ca920ef72c4..00000000000 --- a/_sources/examples/user_interfaces/interactive.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/interactive.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/interactive2.rst.txt b/_sources/examples/user_interfaces/interactive2.rst.txt deleted file mode 120000 index 8a6e1c6cb8e..00000000000 --- a/_sources/examples/user_interfaces/interactive2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/interactive2.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/interactive2.txt b/_sources/examples/user_interfaces/interactive2.txt deleted file mode 120000 index 81fcb1da536..00000000000 --- a/_sources/examples/user_interfaces/interactive2.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/interactive2.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/lineprops_dialog_gtk.rst.txt b/_sources/examples/user_interfaces/lineprops_dialog_gtk.rst.txt deleted file mode 120000 index 708069899ad..00000000000 --- a/_sources/examples/user_interfaces/lineprops_dialog_gtk.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/lineprops_dialog_gtk.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/lineprops_dialog_gtk.txt b/_sources/examples/user_interfaces/lineprops_dialog_gtk.txt deleted file mode 120000 index 2356c7e58ab..00000000000 --- a/_sources/examples/user_interfaces/lineprops_dialog_gtk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/lineprops_dialog_gtk.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/mathtext_wx.rst.txt b/_sources/examples/user_interfaces/mathtext_wx.rst.txt deleted file mode 120000 index 460a40a6063..00000000000 --- a/_sources/examples/user_interfaces/mathtext_wx.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/mathtext_wx.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/mathtext_wx.txt b/_sources/examples/user_interfaces/mathtext_wx.txt deleted file mode 120000 index f6e4e0310c4..00000000000 --- a/_sources/examples/user_interfaces/mathtext_wx.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/mathtext_wx.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/mpl_with_glade.rst.txt b/_sources/examples/user_interfaces/mpl_with_glade.rst.txt deleted file mode 120000 index 1082552f1b8..00000000000 --- a/_sources/examples/user_interfaces/mpl_with_glade.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/mpl_with_glade.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/mpl_with_glade.txt b/_sources/examples/user_interfaces/mpl_with_glade.txt deleted file mode 120000 index e3df2035e88..00000000000 --- a/_sources/examples/user_interfaces/mpl_with_glade.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/mpl_with_glade.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/mpl_with_glade_316.rst.txt b/_sources/examples/user_interfaces/mpl_with_glade_316.rst.txt deleted file mode 120000 index f9f197152c8..00000000000 --- a/_sources/examples/user_interfaces/mpl_with_glade_316.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/mpl_with_glade_316.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/mpl_with_glade_316.txt b/_sources/examples/user_interfaces/mpl_with_glade_316.txt deleted file mode 120000 index fafaed291f4..00000000000 --- a/_sources/examples/user_interfaces/mpl_with_glade_316.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/mpl_with_glade_316.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/pylab_with_gtk.rst.txt b/_sources/examples/user_interfaces/pylab_with_gtk.rst.txt deleted file mode 120000 index 5a360d8e79c..00000000000 --- a/_sources/examples/user_interfaces/pylab_with_gtk.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/pylab_with_gtk.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/pylab_with_gtk.txt b/_sources/examples/user_interfaces/pylab_with_gtk.txt deleted file mode 120000 index 7dee7a9b7d4..00000000000 --- a/_sources/examples/user_interfaces/pylab_with_gtk.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/pylab_with_gtk.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/rec_edit_gtk_custom.rst.txt b/_sources/examples/user_interfaces/rec_edit_gtk_custom.rst.txt deleted file mode 120000 index 65eb8b75267..00000000000 --- a/_sources/examples/user_interfaces/rec_edit_gtk_custom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/rec_edit_gtk_custom.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/rec_edit_gtk_custom.txt b/_sources/examples/user_interfaces/rec_edit_gtk_custom.txt deleted file mode 120000 index f64f1a57972..00000000000 --- a/_sources/examples/user_interfaces/rec_edit_gtk_custom.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/rec_edit_gtk_custom.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/rec_edit_gtk_simple.rst.txt b/_sources/examples/user_interfaces/rec_edit_gtk_simple.rst.txt deleted file mode 120000 index 1b334889383..00000000000 --- a/_sources/examples/user_interfaces/rec_edit_gtk_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/rec_edit_gtk_simple.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/rec_edit_gtk_simple.txt b/_sources/examples/user_interfaces/rec_edit_gtk_simple.txt deleted file mode 120000 index a58064420f3..00000000000 --- a/_sources/examples/user_interfaces/rec_edit_gtk_simple.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/rec_edit_gtk_simple.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/svg_histogram.rst.txt b/_sources/examples/user_interfaces/svg_histogram.rst.txt deleted file mode 120000 index ad09d512bab..00000000000 --- a/_sources/examples/user_interfaces/svg_histogram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/svg_histogram.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/svg_histogram.txt b/_sources/examples/user_interfaces/svg_histogram.txt deleted file mode 120000 index 553658c7f93..00000000000 --- a/_sources/examples/user_interfaces/svg_histogram.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/svg_histogram.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/svg_tooltip.rst.txt b/_sources/examples/user_interfaces/svg_tooltip.rst.txt deleted file mode 120000 index 13e13de4b94..00000000000 --- a/_sources/examples/user_interfaces/svg_tooltip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/svg_tooltip.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/svg_tooltip.txt b/_sources/examples/user_interfaces/svg_tooltip.txt deleted file mode 120000 index 90b81b18a24..00000000000 --- a/_sources/examples/user_interfaces/svg_tooltip.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/svg_tooltip.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/toolmanager.rst.txt b/_sources/examples/user_interfaces/toolmanager.rst.txt deleted file mode 120000 index de87b45739f..00000000000 --- a/_sources/examples/user_interfaces/toolmanager.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/toolmanager.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/toolmanager.txt b/_sources/examples/user_interfaces/toolmanager.txt deleted file mode 120000 index a9a7ba3cadc..00000000000 --- a/_sources/examples/user_interfaces/toolmanager.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/toolmanager.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/wxcursor_demo.rst.txt b/_sources/examples/user_interfaces/wxcursor_demo.rst.txt deleted file mode 120000 index 0f4889e8eed..00000000000 --- a/_sources/examples/user_interfaces/wxcursor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/user_interfaces/wxcursor_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/user_interfaces/wxcursor_demo.txt b/_sources/examples/user_interfaces/wxcursor_demo.txt deleted file mode 120000 index cb3c6151c38..00000000000 --- a/_sources/examples/user_interfaces/wxcursor_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/user_interfaces/wxcursor_demo.txt \ No newline at end of file diff --git a/_sources/examples/widgets/buttons.rst.txt b/_sources/examples/widgets/buttons.rst.txt deleted file mode 120000 index f8cda5587a1..00000000000 --- a/_sources/examples/widgets/buttons.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/buttons.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/buttons.txt b/_sources/examples/widgets/buttons.txt deleted file mode 120000 index 6f858c1370b..00000000000 --- a/_sources/examples/widgets/buttons.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/buttons.txt \ No newline at end of file diff --git a/_sources/examples/widgets/check_buttons.rst.txt b/_sources/examples/widgets/check_buttons.rst.txt deleted file mode 120000 index cdb0d982ffc..00000000000 --- a/_sources/examples/widgets/check_buttons.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/check_buttons.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/check_buttons.txt b/_sources/examples/widgets/check_buttons.txt deleted file mode 120000 index f9ee4973839..00000000000 --- a/_sources/examples/widgets/check_buttons.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/check_buttons.txt \ No newline at end of file diff --git a/_sources/examples/widgets/cursor.rst.txt b/_sources/examples/widgets/cursor.rst.txt deleted file mode 120000 index c89f5fdc73b..00000000000 --- a/_sources/examples/widgets/cursor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/cursor.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/cursor.txt b/_sources/examples/widgets/cursor.txt deleted file mode 120000 index 769d1d719af..00000000000 --- a/_sources/examples/widgets/cursor.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/cursor.txt \ No newline at end of file diff --git a/_sources/examples/widgets/index.rst.txt b/_sources/examples/widgets/index.rst.txt deleted file mode 120000 index 92864870a07..00000000000 --- a/_sources/examples/widgets/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/index.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/index.txt b/_sources/examples/widgets/index.txt deleted file mode 120000 index 1e83ea3f464..00000000000 --- a/_sources/examples/widgets/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/index.txt \ No newline at end of file diff --git a/_sources/examples/widgets/lasso_selector_demo.rst.txt b/_sources/examples/widgets/lasso_selector_demo.rst.txt deleted file mode 120000 index 39947a5ddb4..00000000000 --- a/_sources/examples/widgets/lasso_selector_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/lasso_selector_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/lasso_selector_demo.txt b/_sources/examples/widgets/lasso_selector_demo.txt deleted file mode 120000 index 32028c07472..00000000000 --- a/_sources/examples/widgets/lasso_selector_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/lasso_selector_demo.txt \ No newline at end of file diff --git a/_sources/examples/widgets/menu.rst.txt b/_sources/examples/widgets/menu.rst.txt deleted file mode 120000 index 3fc753f371d..00000000000 --- a/_sources/examples/widgets/menu.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/menu.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/menu.txt b/_sources/examples/widgets/menu.txt deleted file mode 120000 index 279be44f44f..00000000000 --- a/_sources/examples/widgets/menu.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/menu.txt \ No newline at end of file diff --git a/_sources/examples/widgets/multicursor.rst.txt b/_sources/examples/widgets/multicursor.rst.txt deleted file mode 120000 index a3c11d9728c..00000000000 --- a/_sources/examples/widgets/multicursor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/multicursor.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/multicursor.txt b/_sources/examples/widgets/multicursor.txt deleted file mode 120000 index 2c96ccbecd4..00000000000 --- a/_sources/examples/widgets/multicursor.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/multicursor.txt \ No newline at end of file diff --git a/_sources/examples/widgets/radio_buttons.rst.txt b/_sources/examples/widgets/radio_buttons.rst.txt deleted file mode 120000 index acc222f42b0..00000000000 --- a/_sources/examples/widgets/radio_buttons.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/radio_buttons.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/radio_buttons.txt b/_sources/examples/widgets/radio_buttons.txt deleted file mode 120000 index eacd01c3e9e..00000000000 --- a/_sources/examples/widgets/radio_buttons.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/radio_buttons.txt \ No newline at end of file diff --git a/_sources/examples/widgets/rectangle_selector.rst.txt b/_sources/examples/widgets/rectangle_selector.rst.txt deleted file mode 120000 index e36c82fc2dd..00000000000 --- a/_sources/examples/widgets/rectangle_selector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/rectangle_selector.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/rectangle_selector.txt b/_sources/examples/widgets/rectangle_selector.txt deleted file mode 120000 index 051a7a5e567..00000000000 --- a/_sources/examples/widgets/rectangle_selector.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/rectangle_selector.txt \ No newline at end of file diff --git a/_sources/examples/widgets/slider_demo.rst.txt b/_sources/examples/widgets/slider_demo.rst.txt deleted file mode 120000 index 43fc19e9ede..00000000000 --- a/_sources/examples/widgets/slider_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/slider_demo.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/slider_demo.txt b/_sources/examples/widgets/slider_demo.txt deleted file mode 120000 index ee1ea4ec9b2..00000000000 --- a/_sources/examples/widgets/slider_demo.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/slider_demo.txt \ No newline at end of file diff --git a/_sources/examples/widgets/span_selector.rst.txt b/_sources/examples/widgets/span_selector.rst.txt deleted file mode 120000 index 866feeee09b..00000000000 --- a/_sources/examples/widgets/span_selector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/examples/widgets/span_selector.rst.txt \ No newline at end of file diff --git a/_sources/examples/widgets/span_selector.txt b/_sources/examples/widgets/span_selector.txt deleted file mode 120000 index 3a1c696b529..00000000000 --- a/_sources/examples/widgets/span_selector.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/examples/widgets/span_selector.txt \ No newline at end of file diff --git a/_sources/faq/environment_variables_faq.rst.txt b/_sources/faq/environment_variables_faq.rst.txt deleted file mode 120000 index 0db1967c449..00000000000 --- a/_sources/faq/environment_variables_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/faq/environment_variables_faq.rst.txt \ No newline at end of file diff --git a/_sources/faq/environment_variables_faq.txt b/_sources/faq/environment_variables_faq.txt deleted file mode 120000 index 953be912b38..00000000000 --- a/_sources/faq/environment_variables_faq.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/faq/environment_variables_faq.txt \ No newline at end of file diff --git a/_sources/faq/howto_faq.rst.txt b/_sources/faq/howto_faq.rst.txt deleted file mode 120000 index 2b06b611a96..00000000000 --- a/_sources/faq/howto_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/faq/howto_faq.rst.txt \ No newline at end of file diff --git a/_sources/faq/howto_faq.txt b/_sources/faq/howto_faq.txt deleted file mode 120000 index 1b874479c6d..00000000000 --- a/_sources/faq/howto_faq.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/faq/howto_faq.txt \ No newline at end of file diff --git a/_sources/faq/index.rst.txt b/_sources/faq/index.rst.txt deleted file mode 120000 index 307d2390937..00000000000 --- a/_sources/faq/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/faq/index.rst.txt \ No newline at end of file diff --git a/_sources/faq/index.txt b/_sources/faq/index.txt deleted file mode 120000 index 3f34c6e9f62..00000000000 --- a/_sources/faq/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/faq/index.txt \ No newline at end of file diff --git a/_sources/faq/installing_faq.rst.txt b/_sources/faq/installing_faq.rst.txt deleted file mode 120000 index 6629ad7832d..00000000000 --- a/_sources/faq/installing_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/faq/installing_faq.rst.txt \ No newline at end of file diff --git a/_sources/faq/installing_faq.txt b/_sources/faq/installing_faq.txt deleted file mode 120000 index 3b252457ecb..00000000000 --- a/_sources/faq/installing_faq.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/faq/installing_faq.txt \ No newline at end of file diff --git a/_sources/faq/osx_framework.rst.txt b/_sources/faq/osx_framework.rst.txt deleted file mode 120000 index e67a57ac8dd..00000000000 --- a/_sources/faq/osx_framework.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.1.0/_sources/faq/osx_framework.rst.txt \ No newline at end of file diff --git a/_sources/faq/troubleshooting_faq.rst.txt b/_sources/faq/troubleshooting_faq.rst.txt deleted file mode 120000 index 816586e3833..00000000000 --- a/_sources/faq/troubleshooting_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/faq/troubleshooting_faq.rst.txt \ No newline at end of file diff --git a/_sources/faq/troubleshooting_faq.txt b/_sources/faq/troubleshooting_faq.txt deleted file mode 120000 index b50b1109150..00000000000 --- a/_sources/faq/troubleshooting_faq.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/faq/troubleshooting_faq.txt \ No newline at end of file diff --git a/_sources/faq/usage_faq.rst.txt b/_sources/faq/usage_faq.rst.txt deleted file mode 120000 index 373d0f1b31a..00000000000 --- a/_sources/faq/usage_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/faq/usage_faq.rst.txt \ No newline at end of file diff --git a/_sources/faq/usage_faq.txt b/_sources/faq/usage_faq.txt deleted file mode 120000 index 598a9e5da2a..00000000000 --- a/_sources/faq/usage_faq.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/faq/usage_faq.txt \ No newline at end of file diff --git a/_sources/faq/virtualenv_faq.rst.txt b/_sources/faq/virtualenv_faq.rst.txt deleted file mode 120000 index 7e0a28bbfb7..00000000000 --- a/_sources/faq/virtualenv_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.1.3/_sources/faq/virtualenv_faq.rst.txt \ No newline at end of file diff --git a/_sources/faq/virtualenv_faq.txt b/_sources/faq/virtualenv_faq.txt deleted file mode 120000 index 6759afd5c0b..00000000000 --- a/_sources/faq/virtualenv_faq.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/faq/virtualenv_faq.txt \ No newline at end of file diff --git a/_sources/gallery/animation/animate_decay.rst.txt b/_sources/gallery/animation/animate_decay.rst.txt deleted file mode 120000 index 1d527fb2119..00000000000 --- a/_sources/gallery/animation/animate_decay.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/animate_decay.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/animated_histogram.rst.txt b/_sources/gallery/animation/animated_histogram.rst.txt deleted file mode 120000 index 1cd8ed1f31c..00000000000 --- a/_sources/gallery/animation/animated_histogram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/animated_histogram.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/animation_demo.rst.txt b/_sources/gallery/animation/animation_demo.rst.txt deleted file mode 120000 index 1a6c5766c3e..00000000000 --- a/_sources/gallery/animation/animation_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/animation_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/basic_example.rst.txt b/_sources/gallery/animation/basic_example.rst.txt deleted file mode 120000 index 52e475ddd93..00000000000 --- a/_sources/gallery/animation/basic_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/basic_example.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/basic_example_writer_sgskip.rst.txt b/_sources/gallery/animation/basic_example_writer_sgskip.rst.txt deleted file mode 120000 index 585aa5be155..00000000000 --- a/_sources/gallery/animation/basic_example_writer_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/basic_example_writer_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/bayes_update.rst.txt b/_sources/gallery/animation/bayes_update.rst.txt deleted file mode 120000 index 76075bb9d6a..00000000000 --- a/_sources/gallery/animation/bayes_update.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/bayes_update.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/bayes_update_sgskip.rst.txt b/_sources/gallery/animation/bayes_update_sgskip.rst.txt deleted file mode 120000 index 9b766cd0735..00000000000 --- a/_sources/gallery/animation/bayes_update_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/bayes_update_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/double_pendulum.rst.txt b/_sources/gallery/animation/double_pendulum.rst.txt deleted file mode 120000 index 79e7af6b410..00000000000 --- a/_sources/gallery/animation/double_pendulum.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/double_pendulum.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/double_pendulum_animated_sgskip.rst.txt b/_sources/gallery/animation/double_pendulum_animated_sgskip.rst.txt deleted file mode 120000 index 997e82372bd..00000000000 --- a/_sources/gallery/animation/double_pendulum_animated_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/double_pendulum_animated_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/double_pendulum_sgskip.rst.txt b/_sources/gallery/animation/double_pendulum_sgskip.rst.txt deleted file mode 120000 index 5c6072eaf47..00000000000 --- a/_sources/gallery/animation/double_pendulum_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/animation/double_pendulum_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/dynamic_image.rst.txt b/_sources/gallery/animation/dynamic_image.rst.txt deleted file mode 120000 index 645eed2b3d9..00000000000 --- a/_sources/gallery/animation/dynamic_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/dynamic_image.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/dynamic_image2.rst.txt b/_sources/gallery/animation/dynamic_image2.rst.txt deleted file mode 120000 index 6c69f958a76..00000000000 --- a/_sources/gallery/animation/dynamic_image2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/dynamic_image2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/frame_grabbing_sgskip.rst.txt b/_sources/gallery/animation/frame_grabbing_sgskip.rst.txt deleted file mode 120000 index fa289d2010f..00000000000 --- a/_sources/gallery/animation/frame_grabbing_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/frame_grabbing_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/histogram.rst.txt b/_sources/gallery/animation/histogram.rst.txt deleted file mode 120000 index 38b010cdc69..00000000000 --- a/_sources/gallery/animation/histogram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/histogram.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/image_slices_viewer.rst.txt b/_sources/gallery/animation/image_slices_viewer.rst.txt deleted file mode 120000 index 5d402e0237c..00000000000 --- a/_sources/gallery/animation/image_slices_viewer.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/image_slices_viewer.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/movie_demo_sgskip.rst.txt b/_sources/gallery/animation/movie_demo_sgskip.rst.txt deleted file mode 120000 index 3d0011154ff..00000000000 --- a/_sources/gallery/animation/movie_demo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/movie_demo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/moviewriter_sgskip.rst.txt b/_sources/gallery/animation/moviewriter_sgskip.rst.txt deleted file mode 120000 index 3fec70cacfa..00000000000 --- a/_sources/gallery/animation/moviewriter_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/moviewriter_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/pause_resume.rst.txt b/_sources/gallery/animation/pause_resume.rst.txt deleted file mode 120000 index 7641c840f5c..00000000000 --- a/_sources/gallery/animation/pause_resume.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/pause_resume.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/rain.rst.txt b/_sources/gallery/animation/rain.rst.txt deleted file mode 120000 index 53d15285d43..00000000000 --- a/_sources/gallery/animation/rain.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/rain.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/random_data.rst.txt b/_sources/gallery/animation/random_data.rst.txt deleted file mode 120000 index 7ce58d68611..00000000000 --- a/_sources/gallery/animation/random_data.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/random_data.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/random_walk.rst.txt b/_sources/gallery/animation/random_walk.rst.txt deleted file mode 120000 index 4392297197e..00000000000 --- a/_sources/gallery/animation/random_walk.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/random_walk.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/sg_execution_times.rst.txt b/_sources/gallery/animation/sg_execution_times.rst.txt deleted file mode 120000 index 65f4ef891e8..00000000000 --- a/_sources/gallery/animation/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/simple_3danim.rst.txt b/_sources/gallery/animation/simple_3danim.rst.txt deleted file mode 120000 index 1b880572587..00000000000 --- a/_sources/gallery/animation/simple_3danim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/simple_3danim.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/simple_anim.rst.txt b/_sources/gallery/animation/simple_anim.rst.txt deleted file mode 120000 index 948fece1646..00000000000 --- a/_sources/gallery/animation/simple_anim.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/simple_anim.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/strip_chart.rst.txt b/_sources/gallery/animation/strip_chart.rst.txt deleted file mode 120000 index 7e250222d25..00000000000 --- a/_sources/gallery/animation/strip_chart.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/strip_chart.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/strip_chart_demo.rst.txt b/_sources/gallery/animation/strip_chart_demo.rst.txt deleted file mode 120000 index fb73d5df20f..00000000000 --- a/_sources/gallery/animation/strip_chart_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/strip_chart_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/subplots.rst.txt b/_sources/gallery/animation/subplots.rst.txt deleted file mode 120000 index 29511a67269..00000000000 --- a/_sources/gallery/animation/subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/animation/subplots.rst.txt \ No newline at end of file diff --git a/_sources/gallery/animation/unchained.rst.txt b/_sources/gallery/animation/unchained.rst.txt deleted file mode 120000 index 7000c3849c1..00000000000 --- a/_sources/gallery/animation/unchained.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/animation/unchained.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/affine_image.rst.txt b/_sources/gallery/api/affine_image.rst.txt deleted file mode 120000 index 2d00a757ef5..00000000000 --- a/_sources/gallery/api/affine_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/affine_image.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/agg_oo_sgskip.rst.txt b/_sources/gallery/api/agg_oo_sgskip.rst.txt deleted file mode 120000 index a8ae98ace4b..00000000000 --- a/_sources/gallery/api/agg_oo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/agg_oo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/barchart.rst.txt b/_sources/gallery/api/barchart.rst.txt deleted file mode 120000 index 9b059cafb2f..00000000000 --- a/_sources/gallery/api/barchart.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/barchart.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/bbox_intersect.rst.txt b/_sources/gallery/api/bbox_intersect.rst.txt deleted file mode 120000 index 13905ccbe64..00000000000 --- a/_sources/gallery/api/bbox_intersect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/bbox_intersect.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/collections.rst.txt b/_sources/gallery/api/collections.rst.txt deleted file mode 120000 index 1d68f2cc182..00000000000 --- a/_sources/gallery/api/collections.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/collections.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/colorbar_basics.rst.txt b/_sources/gallery/api/colorbar_basics.rst.txt deleted file mode 120000 index 8dc343e77f8..00000000000 --- a/_sources/gallery/api/colorbar_basics.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/colorbar_basics.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/compound_path.rst.txt b/_sources/gallery/api/compound_path.rst.txt deleted file mode 120000 index 96b38e96cd5..00000000000 --- a/_sources/gallery/api/compound_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/compound_path.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/custom_projection_example.rst.txt b/_sources/gallery/api/custom_projection_example.rst.txt deleted file mode 120000 index 243eb67e151..00000000000 --- a/_sources/gallery/api/custom_projection_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/custom_projection_example.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/custom_scale_example.rst.txt b/_sources/gallery/api/custom_scale_example.rst.txt deleted file mode 120000 index c8083b675bd..00000000000 --- a/_sources/gallery/api/custom_scale_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/custom_scale_example.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/date.rst.txt b/_sources/gallery/api/date.rst.txt deleted file mode 120000 index ce210384a52..00000000000 --- a/_sources/gallery/api/date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/date.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/date_index_formatter.rst.txt b/_sources/gallery/api/date_index_formatter.rst.txt deleted file mode 120000 index 14ae7441d8f..00000000000 --- a/_sources/gallery/api/date_index_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/api/date_index_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/donut.rst.txt b/_sources/gallery/api/donut.rst.txt deleted file mode 120000 index 2b08d737939..00000000000 --- a/_sources/gallery/api/donut.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/donut.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/engineering_formatter.rst.txt b/_sources/gallery/api/engineering_formatter.rst.txt deleted file mode 120000 index d82e325edfc..00000000000 --- a/_sources/gallery/api/engineering_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/api/engineering_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/filled_step.rst.txt b/_sources/gallery/api/filled_step.rst.txt deleted file mode 120000 index 3e3f4c591fa..00000000000 --- a/_sources/gallery/api/filled_step.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/filled_step.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/font_family_rc_sgskip.rst.txt b/_sources/gallery/api/font_family_rc_sgskip.rst.txt deleted file mode 120000 index ede74cebdb3..00000000000 --- a/_sources/gallery/api/font_family_rc_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/font_family_rc_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/font_file.rst.txt b/_sources/gallery/api/font_file.rst.txt deleted file mode 120000 index f5ba85c1d0f..00000000000 --- a/_sources/gallery/api/font_file.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/font_file.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/histogram_path.rst.txt b/_sources/gallery/api/histogram_path.rst.txt deleted file mode 120000 index e3c97f91aff..00000000000 --- a/_sources/gallery/api/histogram_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/histogram_path.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/image_zcoord.rst.txt b/_sources/gallery/api/image_zcoord.rst.txt deleted file mode 120000 index 5212a892939..00000000000 --- a/_sources/gallery/api/image_zcoord.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/image_zcoord.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/joinstyle.rst.txt b/_sources/gallery/api/joinstyle.rst.txt deleted file mode 120000 index 4a839f0030d..00000000000 --- a/_sources/gallery/api/joinstyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/joinstyle.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/legend.rst.txt b/_sources/gallery/api/legend.rst.txt deleted file mode 120000 index c5cc9d5a116..00000000000 --- a/_sources/gallery/api/legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/legend.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/line_with_text.rst.txt b/_sources/gallery/api/line_with_text.rst.txt deleted file mode 120000 index be86356638c..00000000000 --- a/_sources/gallery/api/line_with_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/line_with_text.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/logos2.rst.txt b/_sources/gallery/api/logos2.rst.txt deleted file mode 120000 index 5bdf2ab8756..00000000000 --- a/_sources/gallery/api/logos2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/logos2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/mathtext_asarray.rst.txt b/_sources/gallery/api/mathtext_asarray.rst.txt deleted file mode 120000 index b578ff6b8aa..00000000000 --- a/_sources/gallery/api/mathtext_asarray.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/mathtext_asarray.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/patch_collection.rst.txt b/_sources/gallery/api/patch_collection.rst.txt deleted file mode 120000 index 6ec7a9585ae..00000000000 --- a/_sources/gallery/api/patch_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/patch_collection.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/power_norm.rst.txt b/_sources/gallery/api/power_norm.rst.txt deleted file mode 120000 index d61b6723d04..00000000000 --- a/_sources/gallery/api/power_norm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/power_norm.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/quad_bezier.rst.txt b/_sources/gallery/api/quad_bezier.rst.txt deleted file mode 120000 index 13dafd7b5db..00000000000 --- a/_sources/gallery/api/quad_bezier.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/quad_bezier.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/radar_chart.rst.txt b/_sources/gallery/api/radar_chart.rst.txt deleted file mode 120000 index 292eff1e0fc..00000000000 --- a/_sources/gallery/api/radar_chart.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/radar_chart.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/sankey_basics.rst.txt b/_sources/gallery/api/sankey_basics.rst.txt deleted file mode 120000 index 56991691c53..00000000000 --- a/_sources/gallery/api/sankey_basics.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/sankey_basics.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/sankey_links.rst.txt b/_sources/gallery/api/sankey_links.rst.txt deleted file mode 120000 index f56a98e6c73..00000000000 --- a/_sources/gallery/api/sankey_links.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/sankey_links.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/sankey_rankine.rst.txt b/_sources/gallery/api/sankey_rankine.rst.txt deleted file mode 120000 index b42d5992598..00000000000 --- a/_sources/gallery/api/sankey_rankine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/sankey_rankine.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/scatter_piecharts.rst.txt b/_sources/gallery/api/scatter_piecharts.rst.txt deleted file mode 120000 index fec7887cfe4..00000000000 --- a/_sources/gallery/api/scatter_piecharts.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/scatter_piecharts.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/skewt.rst.txt b/_sources/gallery/api/skewt.rst.txt deleted file mode 120000 index 23d461fe00e..00000000000 --- a/_sources/gallery/api/skewt.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/skewt.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/span_regions.rst.txt b/_sources/gallery/api/span_regions.rst.txt deleted file mode 120000 index a8f8830d121..00000000000 --- a/_sources/gallery/api/span_regions.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/span_regions.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/two_scales.rst.txt b/_sources/gallery/api/two_scales.rst.txt deleted file mode 120000 index 1de5869ffda..00000000000 --- a/_sources/gallery/api/two_scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/two_scales.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/unicode_minus.rst.txt b/_sources/gallery/api/unicode_minus.rst.txt deleted file mode 120000 index ed0e44ebfc9..00000000000 --- a/_sources/gallery/api/unicode_minus.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/unicode_minus.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/watermark_image.rst.txt b/_sources/gallery/api/watermark_image.rst.txt deleted file mode 120000 index 1d3fd53cd09..00000000000 --- a/_sources/gallery/api/watermark_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/watermark_image.rst.txt \ No newline at end of file diff --git a/_sources/gallery/api/watermark_text.rst.txt b/_sources/gallery/api/watermark_text.rst.txt deleted file mode 120000 index 185e03a70bb..00000000000 --- a/_sources/gallery/api/watermark_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/api/watermark_text.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_anchored_direction_arrows.rst.txt b/_sources/gallery/axes_grid1/demo_anchored_direction_arrows.rst.txt deleted file mode 120000 index 417bc53afa6..00000000000 --- a/_sources/gallery/axes_grid1/demo_anchored_direction_arrows.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_anchored_direction_arrows.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_axes_divider.rst.txt b/_sources/gallery/axes_grid1/demo_axes_divider.rst.txt deleted file mode 120000 index 091b2035802..00000000000 --- a/_sources/gallery/axes_grid1/demo_axes_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_axes_divider.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_axes_grid.rst.txt b/_sources/gallery/axes_grid1/demo_axes_grid.rst.txt deleted file mode 120000 index e305f13c143..00000000000 --- a/_sources/gallery/axes_grid1/demo_axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_axes_grid2.rst.txt b/_sources/gallery/axes_grid1/demo_axes_grid2.rst.txt deleted file mode 120000 index 63d3765283a..00000000000 --- a/_sources/gallery/axes_grid1/demo_axes_grid2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_axes_grid2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_axes_hbox_divider.rst.txt b/_sources/gallery/axes_grid1/demo_axes_hbox_divider.rst.txt deleted file mode 120000 index 9134bcd0b34..00000000000 --- a/_sources/gallery/axes_grid1/demo_axes_hbox_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_axes_hbox_divider.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_axes_rgb.rst.txt b/_sources/gallery/axes_grid1/demo_axes_rgb.rst.txt deleted file mode 120000 index 0a143e06f4b..00000000000 --- a/_sources/gallery/axes_grid1/demo_axes_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_axes_rgb.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_colorbar_of_inset_axes.rst.txt b/_sources/gallery/axes_grid1/demo_colorbar_of_inset_axes.rst.txt deleted file mode 120000 index 724d6dfde54..00000000000 --- a/_sources/gallery/axes_grid1/demo_colorbar_of_inset_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_colorbar_of_inset_axes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_colorbar_with_axes_divider.rst.txt b/_sources/gallery/axes_grid1/demo_colorbar_with_axes_divider.rst.txt deleted file mode 120000 index 0fb0c6d7f0c..00000000000 --- a/_sources/gallery/axes_grid1/demo_colorbar_with_axes_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_colorbar_with_axes_divider.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_colorbar_with_inset_locator.rst.txt b/_sources/gallery/axes_grid1/demo_colorbar_with_inset_locator.rst.txt deleted file mode 120000 index c8dd3d0433f..00000000000 --- a/_sources/gallery/axes_grid1/demo_colorbar_with_inset_locator.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_colorbar_with_inset_locator.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_edge_colorbar.rst.txt b/_sources/gallery/axes_grid1/demo_edge_colorbar.rst.txt deleted file mode 120000 index 1b19b07e483..00000000000 --- a/_sources/gallery/axes_grid1/demo_edge_colorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_edge_colorbar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_fixed_size_axes.rst.txt b/_sources/gallery/axes_grid1/demo_fixed_size_axes.rst.txt deleted file mode 120000 index 3e9ab9c6df4..00000000000 --- a/_sources/gallery/axes_grid1/demo_fixed_size_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_fixed_size_axes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_imagegrid_aspect.rst.txt b/_sources/gallery/axes_grid1/demo_imagegrid_aspect.rst.txt deleted file mode 120000 index 93eef67ac08..00000000000 --- a/_sources/gallery/axes_grid1/demo_imagegrid_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/demo_imagegrid_aspect.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/demo_new_colorbar.rst.txt b/_sources/gallery/axes_grid1/demo_new_colorbar.rst.txt deleted file mode 120000 index da79076d31b..00000000000 --- a/_sources/gallery/axes_grid1/demo_new_colorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/axes_grid1/demo_new_colorbar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/inset_locator_demo.rst.txt b/_sources/gallery/axes_grid1/inset_locator_demo.rst.txt deleted file mode 120000 index 422381cc6a9..00000000000 --- a/_sources/gallery/axes_grid1/inset_locator_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/inset_locator_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/inset_locator_demo2.rst.txt b/_sources/gallery/axes_grid1/inset_locator_demo2.rst.txt deleted file mode 120000 index c73d1fe102d..00000000000 --- a/_sources/gallery/axes_grid1/inset_locator_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/inset_locator_demo2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.rst.txt b/_sources/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.rst.txt deleted file mode 120000 index 246b443c632..00000000000 --- a/_sources/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/parasite_simple.rst.txt b/_sources/gallery/axes_grid1/parasite_simple.rst.txt deleted file mode 120000 index f5b10e0c5cb..00000000000 --- a/_sources/gallery/axes_grid1/parasite_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/parasite_simple.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/parasite_simple2.rst.txt b/_sources/gallery/axes_grid1/parasite_simple2.rst.txt deleted file mode 120000 index 4abf38910c1..00000000000 --- a/_sources/gallery/axes_grid1/parasite_simple2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/parasite_simple2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/scatter_hist.rst.txt b/_sources/gallery/axes_grid1/scatter_hist.rst.txt deleted file mode 120000 index 4346bd30dd4..00000000000 --- a/_sources/gallery/axes_grid1/scatter_hist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/axes_grid1/scatter_hist.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/scatter_hist_locatable_axes.rst.txt b/_sources/gallery/axes_grid1/scatter_hist_locatable_axes.rst.txt deleted file mode 120000 index d54c3f07af2..00000000000 --- a/_sources/gallery/axes_grid1/scatter_hist_locatable_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/scatter_hist_locatable_axes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/sg_execution_times.rst.txt b/_sources/gallery/axes_grid1/sg_execution_times.rst.txt deleted file mode 120000 index a26ac32fd84..00000000000 --- a/_sources/gallery/axes_grid1/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_anchored_artists.rst.txt b/_sources/gallery/axes_grid1/simple_anchored_artists.rst.txt deleted file mode 120000 index 41049997f29..00000000000 --- a/_sources/gallery/axes_grid1/simple_anchored_artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/simple_anchored_artists.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_axes_divider1.rst.txt b/_sources/gallery/axes_grid1/simple_axes_divider1.rst.txt deleted file mode 120000 index 1a026246e26..00000000000 --- a/_sources/gallery/axes_grid1/simple_axes_divider1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/simple_axes_divider1.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_axes_divider2.rst.txt b/_sources/gallery/axes_grid1/simple_axes_divider2.rst.txt deleted file mode 120000 index ce92195247c..00000000000 --- a/_sources/gallery/axes_grid1/simple_axes_divider2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/axes_grid1/simple_axes_divider2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_axes_divider3.rst.txt b/_sources/gallery/axes_grid1/simple_axes_divider3.rst.txt deleted file mode 120000 index 4a622dc2216..00000000000 --- a/_sources/gallery/axes_grid1/simple_axes_divider3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/simple_axes_divider3.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_axesgrid.rst.txt b/_sources/gallery/axes_grid1/simple_axesgrid.rst.txt deleted file mode 120000 index 9d4017394ac..00000000000 --- a/_sources/gallery/axes_grid1/simple_axesgrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/simple_axesgrid.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_axesgrid2.rst.txt b/_sources/gallery/axes_grid1/simple_axesgrid2.rst.txt deleted file mode 120000 index d009dea1daf..00000000000 --- a/_sources/gallery/axes_grid1/simple_axesgrid2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/simple_axesgrid2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_axisline4.rst.txt b/_sources/gallery/axes_grid1/simple_axisline4.rst.txt deleted file mode 120000 index 5a372dd687e..00000000000 --- a/_sources/gallery/axes_grid1/simple_axisline4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/simple_axisline4.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_colorbar.rst.txt b/_sources/gallery/axes_grid1/simple_colorbar.rst.txt deleted file mode 120000 index 7095c4d5f17..00000000000 --- a/_sources/gallery/axes_grid1/simple_colorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axes_grid1/simple_colorbar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axes_grid1/simple_rgb.rst.txt b/_sources/gallery/axes_grid1/simple_rgb.rst.txt deleted file mode 120000 index d0f9bfbddb1..00000000000 --- a/_sources/gallery/axes_grid1/simple_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/axes_grid1/simple_rgb.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/axis_direction.rst.txt b/_sources/gallery/axisartist/axis_direction.rst.txt deleted file mode 120000 index 04858a5adca..00000000000 --- a/_sources/gallery/axisartist/axis_direction.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/axis_direction.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/axis_direction_demo_step01.rst.txt b/_sources/gallery/axisartist/axis_direction_demo_step01.rst.txt deleted file mode 120000 index 89e0cae7f44..00000000000 --- a/_sources/gallery/axisartist/axis_direction_demo_step01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/axisartist/axis_direction_demo_step01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/axis_direction_demo_step02.rst.txt b/_sources/gallery/axisartist/axis_direction_demo_step02.rst.txt deleted file mode 120000 index e35173d2300..00000000000 --- a/_sources/gallery/axisartist/axis_direction_demo_step02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/axisartist/axis_direction_demo_step02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/axis_direction_demo_step03.rst.txt b/_sources/gallery/axisartist/axis_direction_demo_step03.rst.txt deleted file mode 120000 index 89ced44ef90..00000000000 --- a/_sources/gallery/axisartist/axis_direction_demo_step03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/axisartist/axis_direction_demo_step03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/axis_direction_demo_step04.rst.txt b/_sources/gallery/axisartist/axis_direction_demo_step04.rst.txt deleted file mode 120000 index 242eab267a3..00000000000 --- a/_sources/gallery/axisartist/axis_direction_demo_step04.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/axisartist/axis_direction_demo_step04.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_axis_direction.rst.txt b/_sources/gallery/axisartist/demo_axis_direction.rst.txt deleted file mode 120000 index d3dd04edc3e..00000000000 --- a/_sources/gallery/axisartist/demo_axis_direction.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_axis_direction.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_axisline_style.rst.txt b/_sources/gallery/axisartist/demo_axisline_style.rst.txt deleted file mode 120000 index 16c98e0cd7d..00000000000 --- a/_sources/gallery/axisartist/demo_axisline_style.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_axisline_style.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_curvelinear_grid.rst.txt b/_sources/gallery/axisartist/demo_curvelinear_grid.rst.txt deleted file mode 120000 index f66b99f4609..00000000000 --- a/_sources/gallery/axisartist/demo_curvelinear_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_curvelinear_grid.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_curvelinear_grid2.rst.txt b/_sources/gallery/axisartist/demo_curvelinear_grid2.rst.txt deleted file mode 120000 index da59e0abfff..00000000000 --- a/_sources/gallery/axisartist/demo_curvelinear_grid2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_curvelinear_grid2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_floating_axes.rst.txt b/_sources/gallery/axisartist/demo_floating_axes.rst.txt deleted file mode 120000 index 98b73e878e2..00000000000 --- a/_sources/gallery/axisartist/demo_floating_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_floating_axes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_floating_axis.rst.txt b/_sources/gallery/axisartist/demo_floating_axis.rst.txt deleted file mode 120000 index 3fa965bdd38..00000000000 --- a/_sources/gallery/axisartist/demo_floating_axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_floating_axis.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_parasite_axes.rst.txt b/_sources/gallery/axisartist/demo_parasite_axes.rst.txt deleted file mode 120000 index bde3792ee3f..00000000000 --- a/_sources/gallery/axisartist/demo_parasite_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_parasite_axes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_parasite_axes2.rst.txt b/_sources/gallery/axisartist/demo_parasite_axes2.rst.txt deleted file mode 120000 index 19440e46656..00000000000 --- a/_sources/gallery/axisartist/demo_parasite_axes2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_parasite_axes2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_ticklabel_alignment.rst.txt b/_sources/gallery/axisartist/demo_ticklabel_alignment.rst.txt deleted file mode 120000 index e98cfa20dd5..00000000000 --- a/_sources/gallery/axisartist/demo_ticklabel_alignment.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_ticklabel_alignment.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/demo_ticklabel_direction.rst.txt b/_sources/gallery/axisartist/demo_ticklabel_direction.rst.txt deleted file mode 120000 index e991f79af12..00000000000 --- a/_sources/gallery/axisartist/demo_ticklabel_direction.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/demo_ticklabel_direction.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/sg_execution_times.rst.txt b/_sources/gallery/axisartist/sg_execution_times.rst.txt deleted file mode 120000 index 3675dcfcbee..00000000000 --- a/_sources/gallery/axisartist/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/simple_axis_direction01.rst.txt b/_sources/gallery/axisartist/simple_axis_direction01.rst.txt deleted file mode 120000 index f4e2ce821ca..00000000000 --- a/_sources/gallery/axisartist/simple_axis_direction01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/simple_axis_direction01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/simple_axis_direction03.rst.txt b/_sources/gallery/axisartist/simple_axis_direction03.rst.txt deleted file mode 120000 index 66559b5bee4..00000000000 --- a/_sources/gallery/axisartist/simple_axis_direction03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/simple_axis_direction03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/simple_axis_pad.rst.txt b/_sources/gallery/axisartist/simple_axis_pad.rst.txt deleted file mode 120000 index 81bf8f120cc..00000000000 --- a/_sources/gallery/axisartist/simple_axis_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/simple_axis_pad.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/simple_axisartist1.rst.txt b/_sources/gallery/axisartist/simple_axisartist1.rst.txt deleted file mode 120000 index 81e6424a29d..00000000000 --- a/_sources/gallery/axisartist/simple_axisartist1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/simple_axisartist1.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/simple_axisline.rst.txt b/_sources/gallery/axisartist/simple_axisline.rst.txt deleted file mode 120000 index 9438cbae21c..00000000000 --- a/_sources/gallery/axisartist/simple_axisline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/simple_axisline.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/simple_axisline2.rst.txt b/_sources/gallery/axisartist/simple_axisline2.rst.txt deleted file mode 120000 index a1a71408b2c..00000000000 --- a/_sources/gallery/axisartist/simple_axisline2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/axisartist/simple_axisline2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/axisartist/simple_axisline3.rst.txt b/_sources/gallery/axisartist/simple_axisline3.rst.txt deleted file mode 120000 index 4324ca140ca..00000000000 --- a/_sources/gallery/axisartist/simple_axisline3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/axisartist/simple_axisline3.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/color_by_yvalue.rst.txt b/_sources/gallery/color/color_by_yvalue.rst.txt deleted file mode 120000 index ee238516c9d..00000000000 --- a/_sources/gallery/color/color_by_yvalue.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/color_by_yvalue.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/color_cycle.rst.txt b/_sources/gallery/color/color_cycle.rst.txt deleted file mode 120000 index 2f30008867e..00000000000 --- a/_sources/gallery/color/color_cycle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/color/color_cycle.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/color_cycle_default.rst.txt b/_sources/gallery/color/color_cycle_default.rst.txt deleted file mode 120000 index 261e6efc25c..00000000000 --- a/_sources/gallery/color/color_cycle_default.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/color_cycle_default.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/color_cycler.rst.txt b/_sources/gallery/color/color_cycler.rst.txt deleted file mode 120000 index 43a14ea8394..00000000000 --- a/_sources/gallery/color/color_cycler.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/color/color_cycler.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/color_demo.rst.txt b/_sources/gallery/color/color_demo.rst.txt deleted file mode 120000 index 17307040979..00000000000 --- a/_sources/gallery/color/color_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/color_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/colorbar_basics.rst.txt b/_sources/gallery/color/colorbar_basics.rst.txt deleted file mode 120000 index afa9c936e6b..00000000000 --- a/_sources/gallery/color/colorbar_basics.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/colorbar_basics.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/colormap_reference.rst.txt b/_sources/gallery/color/colormap_reference.rst.txt deleted file mode 120000 index 87d5e0e7e27..00000000000 --- a/_sources/gallery/color/colormap_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/colormap_reference.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/colors_sgskip.rst.txt b/_sources/gallery/color/colors_sgskip.rst.txt deleted file mode 120000 index c0dd0314368..00000000000 --- a/_sources/gallery/color/colors_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/color/colors_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/custom_cmap.rst.txt b/_sources/gallery/color/custom_cmap.rst.txt deleted file mode 120000 index 6d32d0de33a..00000000000 --- a/_sources/gallery/color/custom_cmap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/custom_cmap.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/named_colors.rst.txt b/_sources/gallery/color/named_colors.rst.txt deleted file mode 120000 index 89f1ec85dbc..00000000000 --- a/_sources/gallery/color/named_colors.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/named_colors.rst.txt \ No newline at end of file diff --git a/_sources/gallery/color/sg_execution_times.rst.txt b/_sources/gallery/color/sg_execution_times.rst.txt deleted file mode 120000 index 9abb5487a2b..00000000000 --- a/_sources/gallery/color/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/color/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/close_event.rst.txt b/_sources/gallery/event_handling/close_event.rst.txt deleted file mode 120000 index f98f6e343ac..00000000000 --- a/_sources/gallery/event_handling/close_event.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/close_event.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/coords_demo.rst.txt b/_sources/gallery/event_handling/coords_demo.rst.txt deleted file mode 120000 index f6dde7aebf4..00000000000 --- a/_sources/gallery/event_handling/coords_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/coords_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/data_browser.rst.txt b/_sources/gallery/event_handling/data_browser.rst.txt deleted file mode 120000 index 6acbe3cc415..00000000000 --- a/_sources/gallery/event_handling/data_browser.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/data_browser.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/figure_axes_enter_leave.rst.txt b/_sources/gallery/event_handling/figure_axes_enter_leave.rst.txt deleted file mode 120000 index 370a6e08531..00000000000 --- a/_sources/gallery/event_handling/figure_axes_enter_leave.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/figure_axes_enter_leave.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/ginput_demo_sgskip.rst.txt b/_sources/gallery/event_handling/ginput_demo_sgskip.rst.txt deleted file mode 120000 index 20aede7dffa..00000000000 --- a/_sources/gallery/event_handling/ginput_demo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/event_handling/ginput_demo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/ginput_manual_clabel_sgskip.rst.txt b/_sources/gallery/event_handling/ginput_manual_clabel_sgskip.rst.txt deleted file mode 120000 index 808bcd868a5..00000000000 --- a/_sources/gallery/event_handling/ginput_manual_clabel_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/ginput_manual_clabel_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/image_slices_viewer.rst.txt b/_sources/gallery/event_handling/image_slices_viewer.rst.txt deleted file mode 120000 index b0d121bef64..00000000000 --- a/_sources/gallery/event_handling/image_slices_viewer.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/image_slices_viewer.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/keypress_demo.rst.txt b/_sources/gallery/event_handling/keypress_demo.rst.txt deleted file mode 120000 index b5a5a2f4fc6..00000000000 --- a/_sources/gallery/event_handling/keypress_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/keypress_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/lasso_demo.rst.txt b/_sources/gallery/event_handling/lasso_demo.rst.txt deleted file mode 120000 index 7d13f863a5b..00000000000 --- a/_sources/gallery/event_handling/lasso_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/lasso_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/legend_picking.rst.txt b/_sources/gallery/event_handling/legend_picking.rst.txt deleted file mode 120000 index 6b33394d4fd..00000000000 --- a/_sources/gallery/event_handling/legend_picking.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/legend_picking.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/looking_glass.rst.txt b/_sources/gallery/event_handling/looking_glass.rst.txt deleted file mode 120000 index eaff4bbf16b..00000000000 --- a/_sources/gallery/event_handling/looking_glass.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/looking_glass.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/path_editor.rst.txt b/_sources/gallery/event_handling/path_editor.rst.txt deleted file mode 120000 index 17cd82488d9..00000000000 --- a/_sources/gallery/event_handling/path_editor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/path_editor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/pick_event_demo.rst.txt b/_sources/gallery/event_handling/pick_event_demo.rst.txt deleted file mode 120000 index bc4632d7fae..00000000000 --- a/_sources/gallery/event_handling/pick_event_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/pick_event_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/pick_event_demo2.rst.txt b/_sources/gallery/event_handling/pick_event_demo2.rst.txt deleted file mode 120000 index bf50af5c671..00000000000 --- a/_sources/gallery/event_handling/pick_event_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/pick_event_demo2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/pipong.rst.txt b/_sources/gallery/event_handling/pipong.rst.txt deleted file mode 120000 index 6e9b27e03e7..00000000000 --- a/_sources/gallery/event_handling/pipong.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/event_handling/pipong.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/poly_editor.rst.txt b/_sources/gallery/event_handling/poly_editor.rst.txt deleted file mode 120000 index 573f48a8149..00000000000 --- a/_sources/gallery/event_handling/poly_editor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/poly_editor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/pong_sgskip.rst.txt b/_sources/gallery/event_handling/pong_sgskip.rst.txt deleted file mode 120000 index 0efbf363d52..00000000000 --- a/_sources/gallery/event_handling/pong_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/pong_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/resample.rst.txt b/_sources/gallery/event_handling/resample.rst.txt deleted file mode 120000 index 9bb1dea5661..00000000000 --- a/_sources/gallery/event_handling/resample.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/resample.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/sg_execution_times.rst.txt b/_sources/gallery/event_handling/sg_execution_times.rst.txt deleted file mode 120000 index 6a6778fa187..00000000000 --- a/_sources/gallery/event_handling/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/timers.rst.txt b/_sources/gallery/event_handling/timers.rst.txt deleted file mode 120000 index 25d53159d69..00000000000 --- a/_sources/gallery/event_handling/timers.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/timers.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/trifinder_event_demo.rst.txt b/_sources/gallery/event_handling/trifinder_event_demo.rst.txt deleted file mode 120000 index 4573a3236e5..00000000000 --- a/_sources/gallery/event_handling/trifinder_event_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/trifinder_event_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/viewlims.rst.txt b/_sources/gallery/event_handling/viewlims.rst.txt deleted file mode 120000 index c96927ad349..00000000000 --- a/_sources/gallery/event_handling/viewlims.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/viewlims.rst.txt \ No newline at end of file diff --git a/_sources/gallery/event_handling/zoom_window.rst.txt b/_sources/gallery/event_handling/zoom_window.rst.txt deleted file mode 120000 index 5bf38fc3048..00000000000 --- a/_sources/gallery/event_handling/zoom_window.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/event_handling/zoom_window.rst.txt \ No newline at end of file diff --git a/_sources/gallery/frontpage/3D.rst.txt b/_sources/gallery/frontpage/3D.rst.txt deleted file mode 120000 index a0aefeea753..00000000000 --- a/_sources/gallery/frontpage/3D.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/frontpage/3D.rst.txt \ No newline at end of file diff --git a/_sources/gallery/frontpage/contour.rst.txt b/_sources/gallery/frontpage/contour.rst.txt deleted file mode 120000 index d58a55caad3..00000000000 --- a/_sources/gallery/frontpage/contour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/frontpage/contour.rst.txt \ No newline at end of file diff --git a/_sources/gallery/frontpage/contour_frontpage.rst.txt b/_sources/gallery/frontpage/contour_frontpage.rst.txt deleted file mode 120000 index 30319d8bd76..00000000000 --- a/_sources/gallery/frontpage/contour_frontpage.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/frontpage/contour_frontpage.rst.txt \ No newline at end of file diff --git a/_sources/gallery/frontpage/histogram.rst.txt b/_sources/gallery/frontpage/histogram.rst.txt deleted file mode 120000 index 9216c8b7510..00000000000 --- a/_sources/gallery/frontpage/histogram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/frontpage/histogram.rst.txt \ No newline at end of file diff --git a/_sources/gallery/frontpage/membrane.rst.txt b/_sources/gallery/frontpage/membrane.rst.txt deleted file mode 120000 index 23e6781cdd9..00000000000 --- a/_sources/gallery/frontpage/membrane.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/frontpage/membrane.rst.txt \ No newline at end of file diff --git a/_sources/gallery/frontpage/sg_execution_times.rst.txt b/_sources/gallery/frontpage/sg_execution_times.rst.txt deleted file mode 120000 index b3d3ccecb01..00000000000 --- a/_sources/gallery/frontpage/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/frontpage/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/affine_image.rst.txt b/_sources/gallery/images_contours_and_fields/affine_image.rst.txt deleted file mode 120000 index f8492eaf04d..00000000000 --- a/_sources/gallery/images_contours_and_fields/affine_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/affine_image.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/barb_demo.rst.txt b/_sources/gallery/images_contours_and_fields/barb_demo.rst.txt deleted file mode 120000 index 5d6477c2410..00000000000 --- a/_sources/gallery/images_contours_and_fields/barb_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/barb_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/barcode_demo.rst.txt b/_sources/gallery/images_contours_and_fields/barcode_demo.rst.txt deleted file mode 120000 index 0538c83384c..00000000000 --- a/_sources/gallery/images_contours_and_fields/barcode_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/barcode_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contour_corner_mask.rst.txt b/_sources/gallery/images_contours_and_fields/contour_corner_mask.rst.txt deleted file mode 120000 index bd0ce97dc4f..00000000000 --- a/_sources/gallery/images_contours_and_fields/contour_corner_mask.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contour_corner_mask.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contour_demo.rst.txt b/_sources/gallery/images_contours_and_fields/contour_demo.rst.txt deleted file mode 120000 index 91c770330f2..00000000000 --- a/_sources/gallery/images_contours_and_fields/contour_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contour_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contour_image.rst.txt b/_sources/gallery/images_contours_and_fields/contour_image.rst.txt deleted file mode 120000 index 85dec976473..00000000000 --- a/_sources/gallery/images_contours_and_fields/contour_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contour_image.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contour_label_demo.rst.txt b/_sources/gallery/images_contours_and_fields/contour_label_demo.rst.txt deleted file mode 120000 index 0e0a3497ac5..00000000000 --- a/_sources/gallery/images_contours_and_fields/contour_label_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contour_label_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contourf_demo.rst.txt b/_sources/gallery/images_contours_and_fields/contourf_demo.rst.txt deleted file mode 120000 index b560b974628..00000000000 --- a/_sources/gallery/images_contours_and_fields/contourf_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contourf_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contourf_hatching.rst.txt b/_sources/gallery/images_contours_and_fields/contourf_hatching.rst.txt deleted file mode 120000 index cbad13a6959..00000000000 --- a/_sources/gallery/images_contours_and_fields/contourf_hatching.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contourf_hatching.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contourf_log.rst.txt b/_sources/gallery/images_contours_and_fields/contourf_log.rst.txt deleted file mode 120000 index 811e22194dc..00000000000 --- a/_sources/gallery/images_contours_and_fields/contourf_log.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contourf_log.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/contours_in_optimization_demo.rst.txt b/_sources/gallery/images_contours_and_fields/contours_in_optimization_demo.rst.txt deleted file mode 120000 index 3826467c607..00000000000 --- a/_sources/gallery/images_contours_and_fields/contours_in_optimization_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/contours_in_optimization_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/custom_cmap.rst.txt b/_sources/gallery/images_contours_and_fields/custom_cmap.rst.txt deleted file mode 120000 index c43b509d4bf..00000000000 --- a/_sources/gallery/images_contours_and_fields/custom_cmap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.0/_sources/gallery/images_contours_and_fields/custom_cmap.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/demo_bboximage.rst.txt b/_sources/gallery/images_contours_and_fields/demo_bboximage.rst.txt deleted file mode 120000 index d16615c17dd..00000000000 --- a/_sources/gallery/images_contours_and_fields/demo_bboximage.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/demo_bboximage.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/figimage_demo.rst.txt b/_sources/gallery/images_contours_and_fields/figimage_demo.rst.txt deleted file mode 120000 index 29258237506..00000000000 --- a/_sources/gallery/images_contours_and_fields/figimage_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/figimage_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/griddata_demo.rst.txt b/_sources/gallery/images_contours_and_fields/griddata_demo.rst.txt deleted file mode 120000 index 52cb41a1beb..00000000000 --- a/_sources/gallery/images_contours_and_fields/griddata_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/images_contours_and_fields/griddata_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_annotated_heatmap.rst.txt b/_sources/gallery/images_contours_and_fields/image_annotated_heatmap.rst.txt deleted file mode 120000 index 14419e024a6..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_annotated_heatmap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_annotated_heatmap.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_antialiasing.rst.txt b/_sources/gallery/images_contours_and_fields/image_antialiasing.rst.txt deleted file mode 120000 index ee4f840b5e1..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_antialiasing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_antialiasing.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_clip_path.rst.txt b/_sources/gallery/images_contours_and_fields/image_clip_path.rst.txt deleted file mode 120000 index e80dc1a042f..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_clip_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_clip_path.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_demo.rst.txt b/_sources/gallery/images_contours_and_fields/image_demo.rst.txt deleted file mode 120000 index 243c0438fcc..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_masked.rst.txt b/_sources/gallery/images_contours_and_fields/image_masked.rst.txt deleted file mode 120000 index fa367ca81ae..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_masked.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_masked.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_nonuniform.rst.txt b/_sources/gallery/images_contours_and_fields/image_nonuniform.rst.txt deleted file mode 120000 index 5a8e87d49bc..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_nonuniform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_nonuniform.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_transparency_blend.rst.txt b/_sources/gallery/images_contours_and_fields/image_transparency_blend.rst.txt deleted file mode 120000 index aedc21270c1..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_transparency_blend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_transparency_blend.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/image_zcoord.rst.txt b/_sources/gallery/images_contours_and_fields/image_zcoord.rst.txt deleted file mode 120000 index f77844fcecf..00000000000 --- a/_sources/gallery/images_contours_and_fields/image_zcoord.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/image_zcoord.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/interpolation_methods.rst.txt b/_sources/gallery/images_contours_and_fields/interpolation_methods.rst.txt deleted file mode 120000 index b6f75f04791..00000000000 --- a/_sources/gallery/images_contours_and_fields/interpolation_methods.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/interpolation_methods.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/irregulardatagrid.rst.txt b/_sources/gallery/images_contours_and_fields/irregulardatagrid.rst.txt deleted file mode 120000 index a33dd2d6661..00000000000 --- a/_sources/gallery/images_contours_and_fields/irregulardatagrid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/irregulardatagrid.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/layer_images.rst.txt b/_sources/gallery/images_contours_and_fields/layer_images.rst.txt deleted file mode 120000 index d4b10e7494d..00000000000 --- a/_sources/gallery/images_contours_and_fields/layer_images.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/layer_images.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/matshow.rst.txt b/_sources/gallery/images_contours_and_fields/matshow.rst.txt deleted file mode 120000 index 29e1811c951..00000000000 --- a/_sources/gallery/images_contours_and_fields/matshow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/matshow.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/multi_image.rst.txt b/_sources/gallery/images_contours_and_fields/multi_image.rst.txt deleted file mode 120000 index 69096d98746..00000000000 --- a/_sources/gallery/images_contours_and_fields/multi_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/multi_image.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/pcolor_demo.rst.txt b/_sources/gallery/images_contours_and_fields/pcolor_demo.rst.txt deleted file mode 120000 index 51602de7442..00000000000 --- a/_sources/gallery/images_contours_and_fields/pcolor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/pcolor_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/pcolormesh_grids.rst.txt b/_sources/gallery/images_contours_and_fields/pcolormesh_grids.rst.txt deleted file mode 120000 index 952b589be17..00000000000 --- a/_sources/gallery/images_contours_and_fields/pcolormesh_grids.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/pcolormesh_grids.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/pcolormesh_levels.rst.txt b/_sources/gallery/images_contours_and_fields/pcolormesh_levels.rst.txt deleted file mode 120000 index 76480795439..00000000000 --- a/_sources/gallery/images_contours_and_fields/pcolormesh_levels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/pcolormesh_levels.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/plot_streamplot.rst.txt b/_sources/gallery/images_contours_and_fields/plot_streamplot.rst.txt deleted file mode 120000 index 980fed49e09..00000000000 --- a/_sources/gallery/images_contours_and_fields/plot_streamplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/plot_streamplot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/quadmesh_demo.rst.txt b/_sources/gallery/images_contours_and_fields/quadmesh_demo.rst.txt deleted file mode 120000 index 8d831e24a25..00000000000 --- a/_sources/gallery/images_contours_and_fields/quadmesh_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/quadmesh_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/quiver_demo.rst.txt b/_sources/gallery/images_contours_and_fields/quiver_demo.rst.txt deleted file mode 120000 index 10c113c26a0..00000000000 --- a/_sources/gallery/images_contours_and_fields/quiver_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/quiver_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/quiver_simple_demo.rst.txt b/_sources/gallery/images_contours_and_fields/quiver_simple_demo.rst.txt deleted file mode 120000 index e9c0262f59b..00000000000 --- a/_sources/gallery/images_contours_and_fields/quiver_simple_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/quiver_simple_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/sg_execution_times.rst.txt b/_sources/gallery/images_contours_and_fields/sg_execution_times.rst.txt deleted file mode 120000 index 43fc6660892..00000000000 --- a/_sources/gallery/images_contours_and_fields/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/shading_example.rst.txt b/_sources/gallery/images_contours_and_fields/shading_example.rst.txt deleted file mode 120000 index 0d59756d967..00000000000 --- a/_sources/gallery/images_contours_and_fields/shading_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/shading_example.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/specgram_demo.rst.txt b/_sources/gallery/images_contours_and_fields/specgram_demo.rst.txt deleted file mode 120000 index 191f786d69a..00000000000 --- a/_sources/gallery/images_contours_and_fields/specgram_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/specgram_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/spy_demos.rst.txt b/_sources/gallery/images_contours_and_fields/spy_demos.rst.txt deleted file mode 120000 index c65f37bf1e8..00000000000 --- a/_sources/gallery/images_contours_and_fields/spy_demos.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/spy_demos.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/tricontour_demo.rst.txt b/_sources/gallery/images_contours_and_fields/tricontour_demo.rst.txt deleted file mode 120000 index d3b91be1322..00000000000 --- a/_sources/gallery/images_contours_and_fields/tricontour_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/tricontour_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/tricontour_smooth_delaunay.rst.txt b/_sources/gallery/images_contours_and_fields/tricontour_smooth_delaunay.rst.txt deleted file mode 120000 index 82566ccf3fb..00000000000 --- a/_sources/gallery/images_contours_and_fields/tricontour_smooth_delaunay.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/tricontour_smooth_delaunay.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/tricontour_smooth_user.rst.txt b/_sources/gallery/images_contours_and_fields/tricontour_smooth_user.rst.txt deleted file mode 120000 index 19ec89a4867..00000000000 --- a/_sources/gallery/images_contours_and_fields/tricontour_smooth_user.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/tricontour_smooth_user.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/tricontour_vs_griddata.rst.txt b/_sources/gallery/images_contours_and_fields/tricontour_vs_griddata.rst.txt deleted file mode 120000 index e2951c44061..00000000000 --- a/_sources/gallery/images_contours_and_fields/tricontour_vs_griddata.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/images_contours_and_fields/tricontour_vs_griddata.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/trigradient_demo.rst.txt b/_sources/gallery/images_contours_and_fields/trigradient_demo.rst.txt deleted file mode 120000 index a7c71fea9ff..00000000000 --- a/_sources/gallery/images_contours_and_fields/trigradient_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/trigradient_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/triinterp_demo.rst.txt b/_sources/gallery/images_contours_and_fields/triinterp_demo.rst.txt deleted file mode 120000 index 1f9f3c302b9..00000000000 --- a/_sources/gallery/images_contours_and_fields/triinterp_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/triinterp_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/tripcolor_demo.rst.txt b/_sources/gallery/images_contours_and_fields/tripcolor_demo.rst.txt deleted file mode 120000 index 494ef7fd8ff..00000000000 --- a/_sources/gallery/images_contours_and_fields/tripcolor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/tripcolor_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/triplot_demo.rst.txt b/_sources/gallery/images_contours_and_fields/triplot_demo.rst.txt deleted file mode 120000 index af5cf2cceaf..00000000000 --- a/_sources/gallery/images_contours_and_fields/triplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/triplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/images_contours_and_fields/watermark_image.rst.txt b/_sources/gallery/images_contours_and_fields/watermark_image.rst.txt deleted file mode 120000 index e4efbdee018..00000000000 --- a/_sources/gallery/images_contours_and_fields/watermark_image.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/images_contours_and_fields/watermark_image.rst.txt \ No newline at end of file diff --git a/_sources/gallery/index.rst.txt b/_sources/gallery/index.rst.txt deleted file mode 120000 index 4b038eb0685..00000000000 --- a/_sources/gallery/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/gallery/index.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/arctest.rst.txt b/_sources/gallery/lines_bars_and_markers/arctest.rst.txt deleted file mode 120000 index a3a2deb7b1e..00000000000 --- a/_sources/gallery/lines_bars_and_markers/arctest.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/lines_bars_and_markers/arctest.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/bar_label_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/bar_label_demo.rst.txt deleted file mode 120000 index afb12a0864a..00000000000 --- a/_sources/gallery/lines_bars_and_markers/bar_label_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/bar_label_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/bar_stacked.rst.txt b/_sources/gallery/lines_bars_and_markers/bar_stacked.rst.txt deleted file mode 120000 index 1e8068448f2..00000000000 --- a/_sources/gallery/lines_bars_and_markers/bar_stacked.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/bar_stacked.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/barchart.rst.txt b/_sources/gallery/lines_bars_and_markers/barchart.rst.txt deleted file mode 120000 index 857b4837845..00000000000 --- a/_sources/gallery/lines_bars_and_markers/barchart.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/barchart.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/barh.rst.txt b/_sources/gallery/lines_bars_and_markers/barh.rst.txt deleted file mode 120000 index 522e6d3096c..00000000000 --- a/_sources/gallery/lines_bars_and_markers/barh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/barh.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/broken_barh.rst.txt b/_sources/gallery/lines_bars_and_markers/broken_barh.rst.txt deleted file mode 120000 index fbecf159748..00000000000 --- a/_sources/gallery/lines_bars_and_markers/broken_barh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/broken_barh.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/capstyle.rst.txt b/_sources/gallery/lines_bars_and_markers/capstyle.rst.txt deleted file mode 120000 index aa4a5b27f3f..00000000000 --- a/_sources/gallery/lines_bars_and_markers/capstyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/capstyle.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/categorical_variables.rst.txt b/_sources/gallery/lines_bars_and_markers/categorical_variables.rst.txt deleted file mode 120000 index 5690e7ca2ef..00000000000 --- a/_sources/gallery/lines_bars_and_markers/categorical_variables.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/categorical_variables.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/cohere.rst.txt b/_sources/gallery/lines_bars_and_markers/cohere.rst.txt deleted file mode 120000 index ce561722f41..00000000000 --- a/_sources/gallery/lines_bars_and_markers/cohere.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/cohere.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/csd_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/csd_demo.rst.txt deleted file mode 120000 index 0c1e2f975d4..00000000000 --- a/_sources/gallery/lines_bars_and_markers/csd_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/csd_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/curve_error_band.rst.txt b/_sources/gallery/lines_bars_and_markers/curve_error_band.rst.txt deleted file mode 120000 index 743faf39e9e..00000000000 --- a/_sources/gallery/lines_bars_and_markers/curve_error_band.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/curve_error_band.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/errorbar_limits.rst.txt b/_sources/gallery/lines_bars_and_markers/errorbar_limits.rst.txt deleted file mode 120000 index f38d9be3aae..00000000000 --- a/_sources/gallery/lines_bars_and_markers/errorbar_limits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/lines_bars_and_markers/errorbar_limits.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/errorbar_limits_simple.rst.txt b/_sources/gallery/lines_bars_and_markers/errorbar_limits_simple.rst.txt deleted file mode 120000 index b9c20ebf709..00000000000 --- a/_sources/gallery/lines_bars_and_markers/errorbar_limits_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/errorbar_limits_simple.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/errorbar_subsample.rst.txt b/_sources/gallery/lines_bars_and_markers/errorbar_subsample.rst.txt deleted file mode 120000 index 95b2ce51af4..00000000000 --- a/_sources/gallery/lines_bars_and_markers/errorbar_subsample.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/errorbar_subsample.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/eventcollection_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/eventcollection_demo.rst.txt deleted file mode 120000 index 29c1d536a21..00000000000 --- a/_sources/gallery/lines_bars_and_markers/eventcollection_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/eventcollection_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/eventplot_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/eventplot_demo.rst.txt deleted file mode 120000 index 14db6ba0bf7..00000000000 --- a/_sources/gallery/lines_bars_and_markers/eventplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/eventplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/fill.rst.txt b/_sources/gallery/lines_bars_and_markers/fill.rst.txt deleted file mode 120000 index 3e19685f45c..00000000000 --- a/_sources/gallery/lines_bars_and_markers/fill.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/fill.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/fill_between_alpha.rst.txt b/_sources/gallery/lines_bars_and_markers/fill_between_alpha.rst.txt deleted file mode 120000 index 400fd465a79..00000000000 --- a/_sources/gallery/lines_bars_and_markers/fill_between_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/fill_between_alpha.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/fill_between_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/fill_between_demo.rst.txt deleted file mode 120000 index d5f466f46aa..00000000000 --- a/_sources/gallery/lines_bars_and_markers/fill_between_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/fill_between_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/fill_betweenx_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/fill_betweenx_demo.rst.txt deleted file mode 120000 index f8e10cd66d2..00000000000 --- a/_sources/gallery/lines_bars_and_markers/fill_betweenx_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/fill_betweenx_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/filled_step.rst.txt b/_sources/gallery/lines_bars_and_markers/filled_step.rst.txt deleted file mode 120000 index f3261c36d6a..00000000000 --- a/_sources/gallery/lines_bars_and_markers/filled_step.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/filled_step.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/gradient_bar.rst.txt b/_sources/gallery/lines_bars_and_markers/gradient_bar.rst.txt deleted file mode 120000 index c55cd8eedf1..00000000000 --- a/_sources/gallery/lines_bars_and_markers/gradient_bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/gradient_bar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/hat_graph.rst.txt b/_sources/gallery/lines_bars_and_markers/hat_graph.rst.txt deleted file mode 120000 index 625d6ea2fc9..00000000000 --- a/_sources/gallery/lines_bars_and_markers/hat_graph.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/hat_graph.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/horizontal_barchart_distribution.rst.txt b/_sources/gallery/lines_bars_and_markers/horizontal_barchart_distribution.rst.txt deleted file mode 120000 index ea48552ed5a..00000000000 --- a/_sources/gallery/lines_bars_and_markers/horizontal_barchart_distribution.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/horizontal_barchart_distribution.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/interp_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/interp_demo.rst.txt deleted file mode 120000 index 47b613dca9f..00000000000 --- a/_sources/gallery/lines_bars_and_markers/interp_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/lines_bars_and_markers/interp_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/joinstyle.rst.txt b/_sources/gallery/lines_bars_and_markers/joinstyle.rst.txt deleted file mode 120000 index b1247d56591..00000000000 --- a/_sources/gallery/lines_bars_and_markers/joinstyle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/joinstyle.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/line_demo_dash_control.rst.txt b/_sources/gallery/lines_bars_and_markers/line_demo_dash_control.rst.txt deleted file mode 120000 index 3037720fa2b..00000000000 --- a/_sources/gallery/lines_bars_and_markers/line_demo_dash_control.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/line_demo_dash_control.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/line_styles_reference.rst.txt b/_sources/gallery/lines_bars_and_markers/line_styles_reference.rst.txt deleted file mode 120000 index 208ebbdd0ce..00000000000 --- a/_sources/gallery/lines_bars_and_markers/line_styles_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/lines_bars_and_markers/line_styles_reference.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/lines_with_ticks_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/lines_with_ticks_demo.rst.txt deleted file mode 120000 index d1025bb5bd0..00000000000 --- a/_sources/gallery/lines_bars_and_markers/lines_with_ticks_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/lines_with_ticks_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/linestyles.rst.txt b/_sources/gallery/lines_bars_and_markers/linestyles.rst.txt deleted file mode 120000 index 1f16f2df11a..00000000000 --- a/_sources/gallery/lines_bars_and_markers/linestyles.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/linestyles.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/marker_fillstyle_reference.rst.txt b/_sources/gallery/lines_bars_and_markers/marker_fillstyle_reference.rst.txt deleted file mode 120000 index d0d487752f1..00000000000 --- a/_sources/gallery/lines_bars_and_markers/marker_fillstyle_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/lines_bars_and_markers/marker_fillstyle_reference.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/marker_reference.rst.txt b/_sources/gallery/lines_bars_and_markers/marker_reference.rst.txt deleted file mode 120000 index 7157c5ff89d..00000000000 --- a/_sources/gallery/lines_bars_and_markers/marker_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/marker_reference.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/markevery_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/markevery_demo.rst.txt deleted file mode 120000 index 1426bcd14ad..00000000000 --- a/_sources/gallery/lines_bars_and_markers/markevery_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/markevery_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/markevery_prop_cycle.rst.txt b/_sources/gallery/lines_bars_and_markers/markevery_prop_cycle.rst.txt deleted file mode 120000 index 49eb471a69e..00000000000 --- a/_sources/gallery/lines_bars_and_markers/markevery_prop_cycle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/lines_bars_and_markers/markevery_prop_cycle.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/masked_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/masked_demo.rst.txt deleted file mode 120000 index 5598addcd5a..00000000000 --- a/_sources/gallery/lines_bars_and_markers/masked_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/masked_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/multicolored_line.rst.txt b/_sources/gallery/lines_bars_and_markers/multicolored_line.rst.txt deleted file mode 120000 index 95a267bce3b..00000000000 --- a/_sources/gallery/lines_bars_and_markers/multicolored_line.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/multicolored_line.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/nan_test.rst.txt b/_sources/gallery/lines_bars_and_markers/nan_test.rst.txt deleted file mode 120000 index 92a86c79906..00000000000 --- a/_sources/gallery/lines_bars_and_markers/nan_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/gallery/lines_bars_and_markers/nan_test.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/psd_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/psd_demo.rst.txt deleted file mode 120000 index 39cdf421784..00000000000 --- a/_sources/gallery/lines_bars_and_markers/psd_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/psd_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_custom_symbol.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_custom_symbol.rst.txt deleted file mode 120000 index cdf8414cfa4..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_custom_symbol.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/scatter_custom_symbol.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_demo2.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_demo2.rst.txt deleted file mode 120000 index 04a0d0c1fcc..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/scatter_demo2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_hist.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_hist.rst.txt deleted file mode 120000 index 7c013e5ce9d..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_hist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/scatter_hist.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_masked.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_masked.rst.txt deleted file mode 120000 index 716e33ca069..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_masked.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/scatter_masked.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_piecharts.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_piecharts.rst.txt deleted file mode 120000 index cb3fe1d1816..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_piecharts.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/lines_bars_and_markers/scatter_piecharts.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_star_poly.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_star_poly.rst.txt deleted file mode 120000 index 44636677058..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_star_poly.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/scatter_star_poly.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_symbol.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_symbol.rst.txt deleted file mode 120000 index 724bb8f9a4f..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_symbol.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/lines_bars_and_markers/scatter_symbol.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/scatter_with_legend.rst.txt b/_sources/gallery/lines_bars_and_markers/scatter_with_legend.rst.txt deleted file mode 120000 index e869da0c805..00000000000 --- a/_sources/gallery/lines_bars_and_markers/scatter_with_legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/scatter_with_legend.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/sg_execution_times.rst.txt b/_sources/gallery/lines_bars_and_markers/sg_execution_times.rst.txt deleted file mode 120000 index 57801cf3b5e..00000000000 --- a/_sources/gallery/lines_bars_and_markers/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/simple_plot.rst.txt b/_sources/gallery/lines_bars_and_markers/simple_plot.rst.txt deleted file mode 120000 index 40dbdebaf03..00000000000 --- a/_sources/gallery/lines_bars_and_markers/simple_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/simple_plot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/span_regions.rst.txt b/_sources/gallery/lines_bars_and_markers/span_regions.rst.txt deleted file mode 120000 index 94ce2a497c0..00000000000 --- a/_sources/gallery/lines_bars_and_markers/span_regions.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/span_regions.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/spectrum_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/spectrum_demo.rst.txt deleted file mode 120000 index a8dfc77c6d3..00000000000 --- a/_sources/gallery/lines_bars_and_markers/spectrum_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/spectrum_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/stackplot_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/stackplot_demo.rst.txt deleted file mode 120000 index b37ecc8f7a3..00000000000 --- a/_sources/gallery/lines_bars_and_markers/stackplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/stackplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/stairs_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/stairs_demo.rst.txt deleted file mode 120000 index 2d00d5f947b..00000000000 --- a/_sources/gallery/lines_bars_and_markers/stairs_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/stairs_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/stem_plot.rst.txt b/_sources/gallery/lines_bars_and_markers/stem_plot.rst.txt deleted file mode 120000 index b4167010ad6..00000000000 --- a/_sources/gallery/lines_bars_and_markers/stem_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/stem_plot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/step_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/step_demo.rst.txt deleted file mode 120000 index 51cdf6b0867..00000000000 --- a/_sources/gallery/lines_bars_and_markers/step_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/step_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/timeline.rst.txt b/_sources/gallery/lines_bars_and_markers/timeline.rst.txt deleted file mode 120000 index 71ae2d9516c..00000000000 --- a/_sources/gallery/lines_bars_and_markers/timeline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/timeline.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/vline_hline_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/vline_hline_demo.rst.txt deleted file mode 120000 index 24fda25f7ae..00000000000 --- a/_sources/gallery/lines_bars_and_markers/vline_hline_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/vline_hline_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/lines_bars_and_markers/xcorr_acorr_demo.rst.txt b/_sources/gallery/lines_bars_and_markers/xcorr_acorr_demo.rst.txt deleted file mode 120000 index f96019d784b..00000000000 --- a/_sources/gallery/lines_bars_and_markers/xcorr_acorr_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/lines_bars_and_markers/xcorr_acorr_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/agg_buffer.rst.txt b/_sources/gallery/misc/agg_buffer.rst.txt deleted file mode 120000 index ff524eca4c6..00000000000 --- a/_sources/gallery/misc/agg_buffer.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/misc/agg_buffer.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/agg_buffer_to_array.rst.txt b/_sources/gallery/misc/agg_buffer_to_array.rst.txt deleted file mode 120000 index b015776b648..00000000000 --- a/_sources/gallery/misc/agg_buffer_to_array.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/misc/agg_buffer_to_array.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/anchored_artists.rst.txt b/_sources/gallery/misc/anchored_artists.rst.txt deleted file mode 120000 index ede14a1fecb..00000000000 --- a/_sources/gallery/misc/anchored_artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/anchored_artists.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/bbox_intersect.rst.txt b/_sources/gallery/misc/bbox_intersect.rst.txt deleted file mode 120000 index 6068b3719d5..00000000000 --- a/_sources/gallery/misc/bbox_intersect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/bbox_intersect.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/contour_manual.rst.txt b/_sources/gallery/misc/contour_manual.rst.txt deleted file mode 120000 index 92489ebb255..00000000000 --- a/_sources/gallery/misc/contour_manual.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/contour_manual.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/coords_report.rst.txt b/_sources/gallery/misc/coords_report.rst.txt deleted file mode 120000 index 13626f059c0..00000000000 --- a/_sources/gallery/misc/coords_report.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/coords_report.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/cursor_demo.rst.txt b/_sources/gallery/misc/cursor_demo.rst.txt deleted file mode 120000 index 640d2311115..00000000000 --- a/_sources/gallery/misc/cursor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/misc/cursor_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/cursor_demo_sgskip.rst.txt b/_sources/gallery/misc/cursor_demo_sgskip.rst.txt deleted file mode 120000 index 8369512e3ba..00000000000 --- a/_sources/gallery/misc/cursor_demo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/misc/cursor_demo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/custom_projection.rst.txt b/_sources/gallery/misc/custom_projection.rst.txt deleted file mode 120000 index c8d7f968ef3..00000000000 --- a/_sources/gallery/misc/custom_projection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/custom_projection.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/customize_rc.rst.txt b/_sources/gallery/misc/customize_rc.rst.txt deleted file mode 120000 index 3c49e2d69a4..00000000000 --- a/_sources/gallery/misc/customize_rc.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/customize_rc.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/demo_agg_filter.rst.txt b/_sources/gallery/misc/demo_agg_filter.rst.txt deleted file mode 120000 index cb164482e50..00000000000 --- a/_sources/gallery/misc/demo_agg_filter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/demo_agg_filter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/demo_ribbon_box.rst.txt b/_sources/gallery/misc/demo_ribbon_box.rst.txt deleted file mode 120000 index 2ec03b4d258..00000000000 --- a/_sources/gallery/misc/demo_ribbon_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/demo_ribbon_box.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/fill_spiral.rst.txt b/_sources/gallery/misc/fill_spiral.rst.txt deleted file mode 120000 index 48555a16d5a..00000000000 --- a/_sources/gallery/misc/fill_spiral.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/fill_spiral.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/findobj_demo.rst.txt b/_sources/gallery/misc/findobj_demo.rst.txt deleted file mode 120000 index 45b7a153dac..00000000000 --- a/_sources/gallery/misc/findobj_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/findobj_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/font_indexing.rst.txt b/_sources/gallery/misc/font_indexing.rst.txt deleted file mode 120000 index 235bf65e2c1..00000000000 --- a/_sources/gallery/misc/font_indexing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/font_indexing.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/ftface_props.rst.txt b/_sources/gallery/misc/ftface_props.rst.txt deleted file mode 120000 index 8dd23f1962a..00000000000 --- a/_sources/gallery/misc/ftface_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/ftface_props.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/histogram_path.rst.txt b/_sources/gallery/misc/histogram_path.rst.txt deleted file mode 120000 index 2d1c7b1da05..00000000000 --- a/_sources/gallery/misc/histogram_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/histogram_path.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/hyperlinks_sgskip.rst.txt b/_sources/gallery/misc/hyperlinks_sgskip.rst.txt deleted file mode 120000 index 26162e68174..00000000000 --- a/_sources/gallery/misc/hyperlinks_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/hyperlinks_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/image_thumbnail_sgskip.rst.txt b/_sources/gallery/misc/image_thumbnail_sgskip.rst.txt deleted file mode 120000 index 8fcfd42e3c2..00000000000 --- a/_sources/gallery/misc/image_thumbnail_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/image_thumbnail_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/keyword_plotting.rst.txt b/_sources/gallery/misc/keyword_plotting.rst.txt deleted file mode 120000 index 82120a84fb3..00000000000 --- a/_sources/gallery/misc/keyword_plotting.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/keyword_plotting.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/load_converter.rst.txt b/_sources/gallery/misc/load_converter.rst.txt deleted file mode 120000 index 5a110261cda..00000000000 --- a/_sources/gallery/misc/load_converter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.0/_sources/gallery/misc/load_converter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/logos2.rst.txt b/_sources/gallery/misc/logos2.rst.txt deleted file mode 120000 index 13b2e307fce..00000000000 --- a/_sources/gallery/misc/logos2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/logos2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/multipage_pdf.rst.txt b/_sources/gallery/misc/multipage_pdf.rst.txt deleted file mode 120000 index d38982a0dcb..00000000000 --- a/_sources/gallery/misc/multipage_pdf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/multipage_pdf.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/multiprocess_sgskip.rst.txt b/_sources/gallery/misc/multiprocess_sgskip.rst.txt deleted file mode 120000 index a7bb7ff9791..00000000000 --- a/_sources/gallery/misc/multiprocess_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/multiprocess_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/packed_bubbles.rst.txt b/_sources/gallery/misc/packed_bubbles.rst.txt deleted file mode 120000 index 78c820e8eee..00000000000 --- a/_sources/gallery/misc/packed_bubbles.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/packed_bubbles.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/patheffect_demo.rst.txt b/_sources/gallery/misc/patheffect_demo.rst.txt deleted file mode 120000 index 137194436c3..00000000000 --- a/_sources/gallery/misc/patheffect_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/patheffect_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/plotfile_demo.rst.txt b/_sources/gallery/misc/plotfile_demo.rst.txt deleted file mode 120000 index e0a6177ceea..00000000000 --- a/_sources/gallery/misc/plotfile_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/gallery/misc/plotfile_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/plotfile_demo_sgskip.rst.txt b/_sources/gallery/misc/plotfile_demo_sgskip.rst.txt deleted file mode 120000 index 70d64bd6912..00000000000 --- a/_sources/gallery/misc/plotfile_demo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/misc/plotfile_demo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/print_stdout_sgskip.rst.txt b/_sources/gallery/misc/print_stdout_sgskip.rst.txt deleted file mode 120000 index 1b040a6f2c6..00000000000 --- a/_sources/gallery/misc/print_stdout_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/print_stdout_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/pythonic_matplotlib.rst.txt b/_sources/gallery/misc/pythonic_matplotlib.rst.txt deleted file mode 120000 index 0214974abcf..00000000000 --- a/_sources/gallery/misc/pythonic_matplotlib.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/pythonic_matplotlib.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/rasterization_demo.rst.txt b/_sources/gallery/misc/rasterization_demo.rst.txt deleted file mode 120000 index d69290fd372..00000000000 --- a/_sources/gallery/misc/rasterization_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/rasterization_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/rc_traits_sgskip.rst.txt b/_sources/gallery/misc/rc_traits_sgskip.rst.txt deleted file mode 120000 index 22211ba523d..00000000000 --- a/_sources/gallery/misc/rc_traits_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/misc/rc_traits_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/rec_groupby_demo.rst.txt b/_sources/gallery/misc/rec_groupby_demo.rst.txt deleted file mode 120000 index 4fc5ff7fc35..00000000000 --- a/_sources/gallery/misc/rec_groupby_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/misc/rec_groupby_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/set_and_get.rst.txt b/_sources/gallery/misc/set_and_get.rst.txt deleted file mode 120000 index f04bd0cc8a0..00000000000 --- a/_sources/gallery/misc/set_and_get.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/set_and_get.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/sg_execution_times.rst.txt b/_sources/gallery/misc/sg_execution_times.rst.txt deleted file mode 120000 index 280e204f214..00000000000 --- a/_sources/gallery/misc/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/svg_filter_line.rst.txt b/_sources/gallery/misc/svg_filter_line.rst.txt deleted file mode 120000 index 6e64215e239..00000000000 --- a/_sources/gallery/misc/svg_filter_line.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/svg_filter_line.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/svg_filter_pie.rst.txt b/_sources/gallery/misc/svg_filter_pie.rst.txt deleted file mode 120000 index 0e2887c16ab..00000000000 --- a/_sources/gallery/misc/svg_filter_pie.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/svg_filter_pie.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/table_demo.rst.txt b/_sources/gallery/misc/table_demo.rst.txt deleted file mode 120000 index f4c72247773..00000000000 --- a/_sources/gallery/misc/table_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/table_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/tickedstroke_demo.rst.txt b/_sources/gallery/misc/tickedstroke_demo.rst.txt deleted file mode 120000 index 6c19d809e19..00000000000 --- a/_sources/gallery/misc/tickedstroke_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/tickedstroke_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/tight_bbox_test.rst.txt b/_sources/gallery/misc/tight_bbox_test.rst.txt deleted file mode 120000 index f8490ca1c07..00000000000 --- a/_sources/gallery/misc/tight_bbox_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/misc/tight_bbox_test.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/transoffset.rst.txt b/_sources/gallery/misc/transoffset.rst.txt deleted file mode 120000 index cc0abf07332..00000000000 --- a/_sources/gallery/misc/transoffset.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/transoffset.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/webapp_demo_sgskip.rst.txt b/_sources/gallery/misc/webapp_demo_sgskip.rst.txt deleted file mode 120000 index 54d8039e1a4..00000000000 --- a/_sources/gallery/misc/webapp_demo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/misc/webapp_demo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/misc/zorder_demo.rst.txt b/_sources/gallery/misc/zorder_demo.rst.txt deleted file mode 120000 index 1f7ef3b78bb..00000000000 --- a/_sources/gallery/misc/zorder_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/misc/zorder_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/2dcollections3d.rst.txt b/_sources/gallery/mplot3d/2dcollections3d.rst.txt deleted file mode 120000 index ea12534ff0c..00000000000 --- a/_sources/gallery/mplot3d/2dcollections3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/2dcollections3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/3d_bars.rst.txt b/_sources/gallery/mplot3d/3d_bars.rst.txt deleted file mode 120000 index bca43a35fbe..00000000000 --- a/_sources/gallery/mplot3d/3d_bars.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/3d_bars.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/bars3d.rst.txt b/_sources/gallery/mplot3d/bars3d.rst.txt deleted file mode 120000 index c35655f1701..00000000000 --- a/_sources/gallery/mplot3d/bars3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/bars3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/box3d.rst.txt b/_sources/gallery/mplot3d/box3d.rst.txt deleted file mode 120000 index f80d317007e..00000000000 --- a/_sources/gallery/mplot3d/box3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/box3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/contour3d.rst.txt b/_sources/gallery/mplot3d/contour3d.rst.txt deleted file mode 120000 index 3fc4e22b077..00000000000 --- a/_sources/gallery/mplot3d/contour3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/contour3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/contour3d_2.rst.txt b/_sources/gallery/mplot3d/contour3d_2.rst.txt deleted file mode 120000 index 94d48dfe2ba..00000000000 --- a/_sources/gallery/mplot3d/contour3d_2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/contour3d_2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/contour3d_3.rst.txt b/_sources/gallery/mplot3d/contour3d_3.rst.txt deleted file mode 120000 index 2d566a01fa5..00000000000 --- a/_sources/gallery/mplot3d/contour3d_3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/contour3d_3.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/contourf3d.rst.txt b/_sources/gallery/mplot3d/contourf3d.rst.txt deleted file mode 120000 index 5dba6417742..00000000000 --- a/_sources/gallery/mplot3d/contourf3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/contourf3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/contourf3d_2.rst.txt b/_sources/gallery/mplot3d/contourf3d_2.rst.txt deleted file mode 120000 index 654a3e14475..00000000000 --- a/_sources/gallery/mplot3d/contourf3d_2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/contourf3d_2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/custom_shaded_3d_surface.rst.txt b/_sources/gallery/mplot3d/custom_shaded_3d_surface.rst.txt deleted file mode 120000 index d3b91f7e8fd..00000000000 --- a/_sources/gallery/mplot3d/custom_shaded_3d_surface.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/custom_shaded_3d_surface.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/errorbar3d.rst.txt b/_sources/gallery/mplot3d/errorbar3d.rst.txt deleted file mode 120000 index 9da1dbb902c..00000000000 --- a/_sources/gallery/mplot3d/errorbar3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/errorbar3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/hist3d.rst.txt b/_sources/gallery/mplot3d/hist3d.rst.txt deleted file mode 120000 index da72cba3f37..00000000000 --- a/_sources/gallery/mplot3d/hist3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/hist3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/lines3d.rst.txt b/_sources/gallery/mplot3d/lines3d.rst.txt deleted file mode 120000 index 42299bda3a9..00000000000 --- a/_sources/gallery/mplot3d/lines3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/lines3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/lorenz_attractor.rst.txt b/_sources/gallery/mplot3d/lorenz_attractor.rst.txt deleted file mode 120000 index 30b712489f7..00000000000 --- a/_sources/gallery/mplot3d/lorenz_attractor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/lorenz_attractor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/mixed_subplots.rst.txt b/_sources/gallery/mplot3d/mixed_subplots.rst.txt deleted file mode 120000 index 7dbebf3a6e6..00000000000 --- a/_sources/gallery/mplot3d/mixed_subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/mixed_subplots.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/offset.rst.txt b/_sources/gallery/mplot3d/offset.rst.txt deleted file mode 120000 index 745bd986e65..00000000000 --- a/_sources/gallery/mplot3d/offset.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/offset.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/pathpatch3d.rst.txt b/_sources/gallery/mplot3d/pathpatch3d.rst.txt deleted file mode 120000 index b14dbfee594..00000000000 --- a/_sources/gallery/mplot3d/pathpatch3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/pathpatch3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/polys3d.rst.txt b/_sources/gallery/mplot3d/polys3d.rst.txt deleted file mode 120000 index a9a5e7b3105..00000000000 --- a/_sources/gallery/mplot3d/polys3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/polys3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/quiver3d.rst.txt b/_sources/gallery/mplot3d/quiver3d.rst.txt deleted file mode 120000 index b80bd58b272..00000000000 --- a/_sources/gallery/mplot3d/quiver3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/quiver3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/rotate_axes3d.rst.txt b/_sources/gallery/mplot3d/rotate_axes3d.rst.txt deleted file mode 120000 index 01401c3ee50..00000000000 --- a/_sources/gallery/mplot3d/rotate_axes3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/mplot3d/rotate_axes3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/rotate_axes3d_sgskip.rst.txt b/_sources/gallery/mplot3d/rotate_axes3d_sgskip.rst.txt deleted file mode 120000 index 0ba25f2ea3c..00000000000 --- a/_sources/gallery/mplot3d/rotate_axes3d_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/rotate_axes3d_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/scatter3d.rst.txt b/_sources/gallery/mplot3d/scatter3d.rst.txt deleted file mode 120000 index b1a40392218..00000000000 --- a/_sources/gallery/mplot3d/scatter3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/scatter3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/sg_execution_times.rst.txt b/_sources/gallery/mplot3d/sg_execution_times.rst.txt deleted file mode 120000 index 286804ec483..00000000000 --- a/_sources/gallery/mplot3d/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/stem3d_demo.rst.txt b/_sources/gallery/mplot3d/stem3d_demo.rst.txt deleted file mode 120000 index 96b11bb6210..00000000000 --- a/_sources/gallery/mplot3d/stem3d_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/stem3d_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/subplot3d.rst.txt b/_sources/gallery/mplot3d/subplot3d.rst.txt deleted file mode 120000 index 3aace8bc5b8..00000000000 --- a/_sources/gallery/mplot3d/subplot3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/subplot3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/surface3d.rst.txt b/_sources/gallery/mplot3d/surface3d.rst.txt deleted file mode 120000 index e17a1634a38..00000000000 --- a/_sources/gallery/mplot3d/surface3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/surface3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/surface3d_2.rst.txt b/_sources/gallery/mplot3d/surface3d_2.rst.txt deleted file mode 120000 index c62b494b2a5..00000000000 --- a/_sources/gallery/mplot3d/surface3d_2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/surface3d_2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/surface3d_3.rst.txt b/_sources/gallery/mplot3d/surface3d_3.rst.txt deleted file mode 120000 index 3c1e2698351..00000000000 --- a/_sources/gallery/mplot3d/surface3d_3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/surface3d_3.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/surface3d_radial.rst.txt b/_sources/gallery/mplot3d/surface3d_radial.rst.txt deleted file mode 120000 index 7afef7e5b68..00000000000 --- a/_sources/gallery/mplot3d/surface3d_radial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/surface3d_radial.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/text3d.rst.txt b/_sources/gallery/mplot3d/text3d.rst.txt deleted file mode 120000 index fea698eb085..00000000000 --- a/_sources/gallery/mplot3d/text3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/text3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/tricontour3d.rst.txt b/_sources/gallery/mplot3d/tricontour3d.rst.txt deleted file mode 120000 index a0c400f3f34..00000000000 --- a/_sources/gallery/mplot3d/tricontour3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/tricontour3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/tricontourf3d.rst.txt b/_sources/gallery/mplot3d/tricontourf3d.rst.txt deleted file mode 120000 index 6792dbc49d1..00000000000 --- a/_sources/gallery/mplot3d/tricontourf3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/tricontourf3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/trisurf3d.rst.txt b/_sources/gallery/mplot3d/trisurf3d.rst.txt deleted file mode 120000 index a6bbf5cf716..00000000000 --- a/_sources/gallery/mplot3d/trisurf3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/trisurf3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/trisurf3d_2.rst.txt b/_sources/gallery/mplot3d/trisurf3d_2.rst.txt deleted file mode 120000 index 65ece825751..00000000000 --- a/_sources/gallery/mplot3d/trisurf3d_2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/trisurf3d_2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/voxels.rst.txt b/_sources/gallery/mplot3d/voxels.rst.txt deleted file mode 120000 index f1c8abd1ffb..00000000000 --- a/_sources/gallery/mplot3d/voxels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/voxels.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/voxels_numpy_logo.rst.txt b/_sources/gallery/mplot3d/voxels_numpy_logo.rst.txt deleted file mode 120000 index f8eecaba48a..00000000000 --- a/_sources/gallery/mplot3d/voxels_numpy_logo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/voxels_numpy_logo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/voxels_rgb.rst.txt b/_sources/gallery/mplot3d/voxels_rgb.rst.txt deleted file mode 120000 index 18eab8dd2d4..00000000000 --- a/_sources/gallery/mplot3d/voxels_rgb.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/voxels_rgb.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/voxels_torus.rst.txt b/_sources/gallery/mplot3d/voxels_torus.rst.txt deleted file mode 120000 index b0ce2a5012d..00000000000 --- a/_sources/gallery/mplot3d/voxels_torus.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/voxels_torus.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/wire3d.rst.txt b/_sources/gallery/mplot3d/wire3d.rst.txt deleted file mode 120000 index 4d05bd2b314..00000000000 --- a/_sources/gallery/mplot3d/wire3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/wire3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/wire3d_animation.rst.txt b/_sources/gallery/mplot3d/wire3d_animation.rst.txt deleted file mode 120000 index 3ed3436cedf..00000000000 --- a/_sources/gallery/mplot3d/wire3d_animation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/mplot3d/wire3d_animation.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/wire3d_animation_sgskip.rst.txt b/_sources/gallery/mplot3d/wire3d_animation_sgskip.rst.txt deleted file mode 120000 index a0849a8d5a6..00000000000 --- a/_sources/gallery/mplot3d/wire3d_animation_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/wire3d_animation_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/mplot3d/wire3d_zero_stride.rst.txt b/_sources/gallery/mplot3d/wire3d_zero_stride.rst.txt deleted file mode 120000 index 67e3c88cffb..00000000000 --- a/_sources/gallery/mplot3d/wire3d_zero_stride.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/mplot3d/wire3d_zero_stride.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/bar_of_pie.rst.txt b/_sources/gallery/pie_and_polar_charts/bar_of_pie.rst.txt deleted file mode 120000 index c12c16bf5b6..00000000000 --- a/_sources/gallery/pie_and_polar_charts/bar_of_pie.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/bar_of_pie.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/nested_pie.rst.txt b/_sources/gallery/pie_and_polar_charts/nested_pie.rst.txt deleted file mode 120000 index 71d0cf2160e..00000000000 --- a/_sources/gallery/pie_and_polar_charts/nested_pie.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/nested_pie.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/pie_and_donut_labels.rst.txt b/_sources/gallery/pie_and_polar_charts/pie_and_donut_labels.rst.txt deleted file mode 120000 index 48cbc4febe6..00000000000 --- a/_sources/gallery/pie_and_polar_charts/pie_and_donut_labels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/pie_and_donut_labels.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/pie_demo2.rst.txt b/_sources/gallery/pie_and_polar_charts/pie_demo2.rst.txt deleted file mode 120000 index e6ae2d7c51e..00000000000 --- a/_sources/gallery/pie_and_polar_charts/pie_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/pie_demo2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/pie_features.rst.txt b/_sources/gallery/pie_and_polar_charts/pie_features.rst.txt deleted file mode 120000 index 1be5bb010ee..00000000000 --- a/_sources/gallery/pie_and_polar_charts/pie_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/pie_features.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/polar_bar.rst.txt b/_sources/gallery/pie_and_polar_charts/polar_bar.rst.txt deleted file mode 120000 index debac7ba3ea..00000000000 --- a/_sources/gallery/pie_and_polar_charts/polar_bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/polar_bar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/polar_demo.rst.txt b/_sources/gallery/pie_and_polar_charts/polar_demo.rst.txt deleted file mode 120000 index d56b3b55cba..00000000000 --- a/_sources/gallery/pie_and_polar_charts/polar_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/polar_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/polar_legend.rst.txt b/_sources/gallery/pie_and_polar_charts/polar_legend.rst.txt deleted file mode 120000 index 4252e6eb758..00000000000 --- a/_sources/gallery/pie_and_polar_charts/polar_legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/polar_legend.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/polar_scatter.rst.txt b/_sources/gallery/pie_and_polar_charts/polar_scatter.rst.txt deleted file mode 120000 index 93c8dda9a0f..00000000000 --- a/_sources/gallery/pie_and_polar_charts/polar_scatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/polar_scatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pie_and_polar_charts/sg_execution_times.rst.txt b/_sources/gallery/pie_and_polar_charts/sg_execution_times.rst.txt deleted file mode 120000 index 97491cc6659..00000000000 --- a/_sources/gallery/pie_and_polar_charts/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pie_and_polar_charts/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/align_ylabels.rst.txt b/_sources/gallery/pyplots/align_ylabels.rst.txt deleted file mode 120000 index f727586abb1..00000000000 --- a/_sources/gallery/pyplots/align_ylabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/align_ylabels.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/annotate_transform.rst.txt b/_sources/gallery/pyplots/annotate_transform.rst.txt deleted file mode 120000 index e63dc3fcaf4..00000000000 --- a/_sources/gallery/pyplots/annotate_transform.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/annotate_transform.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/annotation_basic.rst.txt b/_sources/gallery/pyplots/annotation_basic.rst.txt deleted file mode 120000 index 4d1d52a198f..00000000000 --- a/_sources/gallery/pyplots/annotation_basic.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/annotation_basic.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/annotation_polar.rst.txt b/_sources/gallery/pyplots/annotation_polar.rst.txt deleted file mode 120000 index 3d493fda8d5..00000000000 --- a/_sources/gallery/pyplots/annotation_polar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/annotation_polar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/auto_subplots_adjust.rst.txt b/_sources/gallery/pyplots/auto_subplots_adjust.rst.txt deleted file mode 120000 index 0f6531aaf7b..00000000000 --- a/_sources/gallery/pyplots/auto_subplots_adjust.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/auto_subplots_adjust.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/axline.rst.txt b/_sources/gallery/pyplots/axline.rst.txt deleted file mode 120000 index df1ffccd4d0..00000000000 --- a/_sources/gallery/pyplots/axline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/axline.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/boxplot_demo.rst.txt b/_sources/gallery/pyplots/boxplot_demo.rst.txt deleted file mode 120000 index 788e007e849..00000000000 --- a/_sources/gallery/pyplots/boxplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/pyplots/boxplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/boxplot_demo_pyplot.rst.txt b/_sources/gallery/pyplots/boxplot_demo_pyplot.rst.txt deleted file mode 120000 index 1a80371e8b6..00000000000 --- a/_sources/gallery/pyplots/boxplot_demo_pyplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/boxplot_demo_pyplot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/compound_path_demo.rst.txt b/_sources/gallery/pyplots/compound_path_demo.rst.txt deleted file mode 120000 index 0c519e96773..00000000000 --- a/_sources/gallery/pyplots/compound_path_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/pyplots/compound_path_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/dollar_ticks.rst.txt b/_sources/gallery/pyplots/dollar_ticks.rst.txt deleted file mode 120000 index a3f29ee2e1f..00000000000 --- a/_sources/gallery/pyplots/dollar_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/dollar_ticks.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/fig_axes_customize_simple.rst.txt b/_sources/gallery/pyplots/fig_axes_customize_simple.rst.txt deleted file mode 120000 index 5081d5291f6..00000000000 --- a/_sources/gallery/pyplots/fig_axes_customize_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/fig_axes_customize_simple.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/fig_axes_labels_simple.rst.txt b/_sources/gallery/pyplots/fig_axes_labels_simple.rst.txt deleted file mode 120000 index d714254fffb..00000000000 --- a/_sources/gallery/pyplots/fig_axes_labels_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/fig_axes_labels_simple.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/fig_x.rst.txt b/_sources/gallery/pyplots/fig_x.rst.txt deleted file mode 120000 index 5c2d62b2475..00000000000 --- a/_sources/gallery/pyplots/fig_x.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/fig_x.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_annotate.rst.txt b/_sources/gallery/pyplots/pyplot_annotate.rst.txt deleted file mode 120000 index 3d9597dedaf..00000000000 --- a/_sources/gallery/pyplots/pyplot_annotate.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/pyplots/pyplot_annotate.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_formatstr.rst.txt b/_sources/gallery/pyplots/pyplot_formatstr.rst.txt deleted file mode 120000 index 170bbd1b6bb..00000000000 --- a/_sources/gallery/pyplots/pyplot_formatstr.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/pyplot_formatstr.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_mathtext.rst.txt b/_sources/gallery/pyplots/pyplot_mathtext.rst.txt deleted file mode 120000 index 04c074c2238..00000000000 --- a/_sources/gallery/pyplots/pyplot_mathtext.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/pyplot_mathtext.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_scales.rst.txt b/_sources/gallery/pyplots/pyplot_scales.rst.txt deleted file mode 120000 index fd3cb1d707a..00000000000 --- a/_sources/gallery/pyplots/pyplot_scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/gallery/pyplots/pyplot_scales.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_simple.rst.txt b/_sources/gallery/pyplots/pyplot_simple.rst.txt deleted file mode 120000 index 351820b4363..00000000000 --- a/_sources/gallery/pyplots/pyplot_simple.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/pyplot_simple.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_text.rst.txt b/_sources/gallery/pyplots/pyplot_text.rst.txt deleted file mode 120000 index 30ec3eda751..00000000000 --- a/_sources/gallery/pyplots/pyplot_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/pyplot_text.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_three.rst.txt b/_sources/gallery/pyplots/pyplot_three.rst.txt deleted file mode 120000 index 1a5cde849e0..00000000000 --- a/_sources/gallery/pyplots/pyplot_three.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/pyplot_three.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/pyplot_two_subplots.rst.txt b/_sources/gallery/pyplots/pyplot_two_subplots.rst.txt deleted file mode 120000 index ad5ead33186..00000000000 --- a/_sources/gallery/pyplots/pyplot_two_subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/pyplot_two_subplots.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/sg_execution_times.rst.txt b/_sources/gallery/pyplots/sg_execution_times.rst.txt deleted file mode 120000 index 23607fc03a1..00000000000 --- a/_sources/gallery/pyplots/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/text_commands.rst.txt b/_sources/gallery/pyplots/text_commands.rst.txt deleted file mode 120000 index 07353ab449b..00000000000 --- a/_sources/gallery/pyplots/text_commands.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/text_commands.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/text_layout.rst.txt b/_sources/gallery/pyplots/text_layout.rst.txt deleted file mode 120000 index d097d3dbac5..00000000000 --- a/_sources/gallery/pyplots/text_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/pyplots/text_layout.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/whats_new_1_subplot3d.rst.txt b/_sources/gallery/pyplots/whats_new_1_subplot3d.rst.txt deleted file mode 120000 index 429c0e4fd82..00000000000 --- a/_sources/gallery/pyplots/whats_new_1_subplot3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/pyplots/whats_new_1_subplot3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/whats_new_98_4_fancy.rst.txt b/_sources/gallery/pyplots/whats_new_98_4_fancy.rst.txt deleted file mode 120000 index 733eedc591f..00000000000 --- a/_sources/gallery/pyplots/whats_new_98_4_fancy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.1.3/_sources/gallery/pyplots/whats_new_98_4_fancy.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/whats_new_98_4_fill_between.rst.txt b/_sources/gallery/pyplots/whats_new_98_4_fill_between.rst.txt deleted file mode 120000 index 67cf580a5f3..00000000000 --- a/_sources/gallery/pyplots/whats_new_98_4_fill_between.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/pyplots/whats_new_98_4_fill_between.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/whats_new_98_4_legend.rst.txt b/_sources/gallery/pyplots/whats_new_98_4_legend.rst.txt deleted file mode 120000 index f3692cb97a0..00000000000 --- a/_sources/gallery/pyplots/whats_new_98_4_legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/pyplots/whats_new_98_4_legend.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/whats_new_99_axes_grid.rst.txt b/_sources/gallery/pyplots/whats_new_99_axes_grid.rst.txt deleted file mode 120000 index 75eb7225ced..00000000000 --- a/_sources/gallery/pyplots/whats_new_99_axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/pyplots/whats_new_99_axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/whats_new_99_mplot3d.rst.txt b/_sources/gallery/pyplots/whats_new_99_mplot3d.rst.txt deleted file mode 120000 index 04ffa6ef56f..00000000000 --- a/_sources/gallery/pyplots/whats_new_99_mplot3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/pyplots/whats_new_99_mplot3d.rst.txt \ No newline at end of file diff --git a/_sources/gallery/pyplots/whats_new_99_spines.rst.txt b/_sources/gallery/pyplots/whats_new_99_spines.rst.txt deleted file mode 120000 index 6425ae577f2..00000000000 --- a/_sources/gallery/pyplots/whats_new_99_spines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/pyplots/whats_new_99_spines.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/centered_spines_with_arrows.rst.txt b/_sources/gallery/recipes/centered_spines_with_arrows.rst.txt deleted file mode 120000 index 29cc5050119..00000000000 --- a/_sources/gallery/recipes/centered_spines_with_arrows.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/recipes/centered_spines_with_arrows.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/common_date_problems.rst.txt b/_sources/gallery/recipes/common_date_problems.rst.txt deleted file mode 120000 index 6e39679ef0b..00000000000 --- a/_sources/gallery/recipes/common_date_problems.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/recipes/common_date_problems.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/create_subplots.rst.txt b/_sources/gallery/recipes/create_subplots.rst.txt deleted file mode 120000 index 1917424adcf..00000000000 --- a/_sources/gallery/recipes/create_subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/recipes/create_subplots.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/fill_between_alpha.rst.txt b/_sources/gallery/recipes/fill_between_alpha.rst.txt deleted file mode 120000 index 8b3f8f3dcff..00000000000 --- a/_sources/gallery/recipes/fill_between_alpha.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/recipes/fill_between_alpha.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/placing_text_boxes.rst.txt b/_sources/gallery/recipes/placing_text_boxes.rst.txt deleted file mode 120000 index 9b350ded0e0..00000000000 --- a/_sources/gallery/recipes/placing_text_boxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/recipes/placing_text_boxes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/sg_execution_times.rst.txt b/_sources/gallery/recipes/sg_execution_times.rst.txt deleted file mode 120000 index 9c133f9705d..00000000000 --- a/_sources/gallery/recipes/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/recipes/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/share_axis_lims_views.rst.txt b/_sources/gallery/recipes/share_axis_lims_views.rst.txt deleted file mode 120000 index 40701b22287..00000000000 --- a/_sources/gallery/recipes/share_axis_lims_views.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.4/_sources/gallery/recipes/share_axis_lims_views.rst.txt \ No newline at end of file diff --git a/_sources/gallery/recipes/transparent_legends.rst.txt b/_sources/gallery/recipes/transparent_legends.rst.txt deleted file mode 120000 index b9e1aa1da8b..00000000000 --- a/_sources/gallery/recipes/transparent_legends.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/recipes/transparent_legends.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/aspect_loglog.rst.txt b/_sources/gallery/scales/aspect_loglog.rst.txt deleted file mode 120000 index 8687ccf8689..00000000000 --- a/_sources/gallery/scales/aspect_loglog.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/aspect_loglog.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/custom_scale.rst.txt b/_sources/gallery/scales/custom_scale.rst.txt deleted file mode 120000 index e06cc441572..00000000000 --- a/_sources/gallery/scales/custom_scale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/custom_scale.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/log_bar.rst.txt b/_sources/gallery/scales/log_bar.rst.txt deleted file mode 120000 index 154171f36fc..00000000000 --- a/_sources/gallery/scales/log_bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/log_bar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/log_demo.rst.txt b/_sources/gallery/scales/log_demo.rst.txt deleted file mode 120000 index a7de8822b34..00000000000 --- a/_sources/gallery/scales/log_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/log_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/log_test.rst.txt b/_sources/gallery/scales/log_test.rst.txt deleted file mode 120000 index fc38661bbc3..00000000000 --- a/_sources/gallery/scales/log_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/scales/log_test.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/logit_demo.rst.txt b/_sources/gallery/scales/logit_demo.rst.txt deleted file mode 120000 index d7592035d88..00000000000 --- a/_sources/gallery/scales/logit_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/logit_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/power_norm.rst.txt b/_sources/gallery/scales/power_norm.rst.txt deleted file mode 120000 index c9250186154..00000000000 --- a/_sources/gallery/scales/power_norm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/power_norm.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/scales.rst.txt b/_sources/gallery/scales/scales.rst.txt deleted file mode 120000 index 061a38604c0..00000000000 --- a/_sources/gallery/scales/scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/scales.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/sg_execution_times.rst.txt b/_sources/gallery/scales/sg_execution_times.rst.txt deleted file mode 120000 index a41692a7b7c..00000000000 --- a/_sources/gallery/scales/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/scales/symlog_demo.rst.txt b/_sources/gallery/scales/symlog_demo.rst.txt deleted file mode 120000 index 3803cb1184d..00000000000 --- a/_sources/gallery/scales/symlog_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/scales/symlog_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/arrow_guide.rst.txt b/_sources/gallery/shapes_and_collections/arrow_guide.rst.txt deleted file mode 120000 index 5446ba670e7..00000000000 --- a/_sources/gallery/shapes_and_collections/arrow_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/arrow_guide.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/artist_reference.rst.txt b/_sources/gallery/shapes_and_collections/artist_reference.rst.txt deleted file mode 120000 index bf21e73dd1e..00000000000 --- a/_sources/gallery/shapes_and_collections/artist_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/artist_reference.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/collections.rst.txt b/_sources/gallery/shapes_and_collections/collections.rst.txt deleted file mode 120000 index d1910b9591b..00000000000 --- a/_sources/gallery/shapes_and_collections/collections.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/collections.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/compound_path.rst.txt b/_sources/gallery/shapes_and_collections/compound_path.rst.txt deleted file mode 120000 index 9a145d1cde2..00000000000 --- a/_sources/gallery/shapes_and_collections/compound_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/compound_path.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/dolphin.rst.txt b/_sources/gallery/shapes_and_collections/dolphin.rst.txt deleted file mode 120000 index 103ec45c472..00000000000 --- a/_sources/gallery/shapes_and_collections/dolphin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/dolphin.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/donut.rst.txt b/_sources/gallery/shapes_and_collections/donut.rst.txt deleted file mode 120000 index 1f7627fb579..00000000000 --- a/_sources/gallery/shapes_and_collections/donut.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/donut.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/ellipse_collection.rst.txt b/_sources/gallery/shapes_and_collections/ellipse_collection.rst.txt deleted file mode 120000 index f462f5e2a0a..00000000000 --- a/_sources/gallery/shapes_and_collections/ellipse_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/ellipse_collection.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/ellipse_demo.rst.txt b/_sources/gallery/shapes_and_collections/ellipse_demo.rst.txt deleted file mode 120000 index 06d45f1cab8..00000000000 --- a/_sources/gallery/shapes_and_collections/ellipse_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/ellipse_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/ellipse_rotated.rst.txt b/_sources/gallery/shapes_and_collections/ellipse_rotated.rst.txt deleted file mode 120000 index a2740bcd170..00000000000 --- a/_sources/gallery/shapes_and_collections/ellipse_rotated.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/shapes_and_collections/ellipse_rotated.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/fancybox_demo.rst.txt b/_sources/gallery/shapes_and_collections/fancybox_demo.rst.txt deleted file mode 120000 index d7afe73e7e8..00000000000 --- a/_sources/gallery/shapes_and_collections/fancybox_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/fancybox_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/hatch_demo.rst.txt b/_sources/gallery/shapes_and_collections/hatch_demo.rst.txt deleted file mode 120000 index 1b2955c36ba..00000000000 --- a/_sources/gallery/shapes_and_collections/hatch_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/hatch_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/hatch_style_reference.rst.txt b/_sources/gallery/shapes_and_collections/hatch_style_reference.rst.txt deleted file mode 120000 index e87aee3e182..00000000000 --- a/_sources/gallery/shapes_and_collections/hatch_style_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/hatch_style_reference.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/line_collection.rst.txt b/_sources/gallery/shapes_and_collections/line_collection.rst.txt deleted file mode 120000 index 41cd418f4bc..00000000000 --- a/_sources/gallery/shapes_and_collections/line_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/line_collection.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/marker_path.rst.txt b/_sources/gallery/shapes_and_collections/marker_path.rst.txt deleted file mode 120000 index c022f275ea4..00000000000 --- a/_sources/gallery/shapes_and_collections/marker_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/shapes_and_collections/marker_path.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/patch_collection.rst.txt b/_sources/gallery/shapes_and_collections/patch_collection.rst.txt deleted file mode 120000 index 158446b9916..00000000000 --- a/_sources/gallery/shapes_and_collections/patch_collection.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/patch_collection.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/path_patch.rst.txt b/_sources/gallery/shapes_and_collections/path_patch.rst.txt deleted file mode 120000 index 585ddceed1f..00000000000 --- a/_sources/gallery/shapes_and_collections/path_patch.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/path_patch.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/quad_bezier.rst.txt b/_sources/gallery/shapes_and_collections/quad_bezier.rst.txt deleted file mode 120000 index 92e8f2bb9b3..00000000000 --- a/_sources/gallery/shapes_and_collections/quad_bezier.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/quad_bezier.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/scatter.rst.txt b/_sources/gallery/shapes_and_collections/scatter.rst.txt deleted file mode 120000 index f59f70b4eda..00000000000 --- a/_sources/gallery/shapes_and_collections/scatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/scatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/shapes_and_collections/sg_execution_times.rst.txt b/_sources/gallery/shapes_and_collections/sg_execution_times.rst.txt deleted file mode 120000 index 9c25f32df07..00000000000 --- a/_sources/gallery/shapes_and_collections/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/shapes_and_collections/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/showcase/anatomy.rst.txt b/_sources/gallery/showcase/anatomy.rst.txt deleted file mode 120000 index 92b1e01eec1..00000000000 --- a/_sources/gallery/showcase/anatomy.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/showcase/anatomy.rst.txt \ No newline at end of file diff --git a/_sources/gallery/showcase/bachelors_degrees_by_gender.rst.txt b/_sources/gallery/showcase/bachelors_degrees_by_gender.rst.txt deleted file mode 120000 index c0df75fc8a3..00000000000 --- a/_sources/gallery/showcase/bachelors_degrees_by_gender.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/showcase/bachelors_degrees_by_gender.rst.txt \ No newline at end of file diff --git a/_sources/gallery/showcase/firefox.rst.txt b/_sources/gallery/showcase/firefox.rst.txt deleted file mode 120000 index 69872df109d..00000000000 --- a/_sources/gallery/showcase/firefox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/showcase/firefox.rst.txt \ No newline at end of file diff --git a/_sources/gallery/showcase/integral.rst.txt b/_sources/gallery/showcase/integral.rst.txt deleted file mode 120000 index 43e262ed3e6..00000000000 --- a/_sources/gallery/showcase/integral.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/showcase/integral.rst.txt \ No newline at end of file diff --git a/_sources/gallery/showcase/mandelbrot.rst.txt b/_sources/gallery/showcase/mandelbrot.rst.txt deleted file mode 120000 index dcbf917026d..00000000000 --- a/_sources/gallery/showcase/mandelbrot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/showcase/mandelbrot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/showcase/sg_execution_times.rst.txt b/_sources/gallery/showcase/sg_execution_times.rst.txt deleted file mode 120000 index ccef62814cc..00000000000 --- a/_sources/gallery/showcase/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/showcase/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/showcase/xkcd.rst.txt b/_sources/gallery/showcase/xkcd.rst.txt deleted file mode 120000 index 17a0172f3d9..00000000000 --- a/_sources/gallery/showcase/xkcd.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/showcase/xkcd.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/advanced_hillshading.rst.txt b/_sources/gallery/specialty_plots/advanced_hillshading.rst.txt deleted file mode 120000 index 97f1fd4da94..00000000000 --- a/_sources/gallery/specialty_plots/advanced_hillshading.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/advanced_hillshading.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/anscombe.rst.txt b/_sources/gallery/specialty_plots/anscombe.rst.txt deleted file mode 120000 index e398f14514c..00000000000 --- a/_sources/gallery/specialty_plots/anscombe.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/anscombe.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/hinton_demo.rst.txt b/_sources/gallery/specialty_plots/hinton_demo.rst.txt deleted file mode 120000 index 62c3fdcf190..00000000000 --- a/_sources/gallery/specialty_plots/hinton_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/hinton_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/leftventricle_bulleye.rst.txt b/_sources/gallery/specialty_plots/leftventricle_bulleye.rst.txt deleted file mode 120000 index 4936ce7442a..00000000000 --- a/_sources/gallery/specialty_plots/leftventricle_bulleye.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/leftventricle_bulleye.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/mri_demo.rst.txt b/_sources/gallery/specialty_plots/mri_demo.rst.txt deleted file mode 120000 index 8df0f1331f7..00000000000 --- a/_sources/gallery/specialty_plots/mri_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/mri_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/mri_with_eeg.rst.txt b/_sources/gallery/specialty_plots/mri_with_eeg.rst.txt deleted file mode 120000 index 300c58eed06..00000000000 --- a/_sources/gallery/specialty_plots/mri_with_eeg.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/mri_with_eeg.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/radar_chart.rst.txt b/_sources/gallery/specialty_plots/radar_chart.rst.txt deleted file mode 120000 index c8b4cc3c1a8..00000000000 --- a/_sources/gallery/specialty_plots/radar_chart.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/radar_chart.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/sankey_basics.rst.txt b/_sources/gallery/specialty_plots/sankey_basics.rst.txt deleted file mode 120000 index 4f2ca0d9ce1..00000000000 --- a/_sources/gallery/specialty_plots/sankey_basics.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/sankey_basics.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/sankey_links.rst.txt b/_sources/gallery/specialty_plots/sankey_links.rst.txt deleted file mode 120000 index 2b1373076fa..00000000000 --- a/_sources/gallery/specialty_plots/sankey_links.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/sankey_links.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/sankey_rankine.rst.txt b/_sources/gallery/specialty_plots/sankey_rankine.rst.txt deleted file mode 120000 index a444a175842..00000000000 --- a/_sources/gallery/specialty_plots/sankey_rankine.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/sankey_rankine.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/sg_execution_times.rst.txt b/_sources/gallery/specialty_plots/sg_execution_times.rst.txt deleted file mode 120000 index 4a9e10b7d41..00000000000 --- a/_sources/gallery/specialty_plots/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/skewt.rst.txt b/_sources/gallery/specialty_plots/skewt.rst.txt deleted file mode 120000 index 4aa0f848b65..00000000000 --- a/_sources/gallery/specialty_plots/skewt.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/skewt.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/system_monitor.rst.txt b/_sources/gallery/specialty_plots/system_monitor.rst.txt deleted file mode 120000 index d3071630aa8..00000000000 --- a/_sources/gallery/specialty_plots/system_monitor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/specialty_plots/system_monitor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/specialty_plots/topographic_hillshading.rst.txt b/_sources/gallery/specialty_plots/topographic_hillshading.rst.txt deleted file mode 120000 index 8f64aa76085..00000000000 --- a/_sources/gallery/specialty_plots/topographic_hillshading.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/specialty_plots/topographic_hillshading.rst.txt \ No newline at end of file diff --git a/_sources/gallery/spines/centered_spines_with_arrows.rst.txt b/_sources/gallery/spines/centered_spines_with_arrows.rst.txt deleted file mode 120000 index bd6370ffee1..00000000000 --- a/_sources/gallery/spines/centered_spines_with_arrows.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/spines/centered_spines_with_arrows.rst.txt \ No newline at end of file diff --git a/_sources/gallery/spines/multiple_yaxis_with_spines.rst.txt b/_sources/gallery/spines/multiple_yaxis_with_spines.rst.txt deleted file mode 120000 index 8676715cb71..00000000000 --- a/_sources/gallery/spines/multiple_yaxis_with_spines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/spines/multiple_yaxis_with_spines.rst.txt \ No newline at end of file diff --git a/_sources/gallery/spines/sg_execution_times.rst.txt b/_sources/gallery/spines/sg_execution_times.rst.txt deleted file mode 120000 index 723da92efa6..00000000000 --- a/_sources/gallery/spines/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/spines/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/spines/spine_placement_demo.rst.txt b/_sources/gallery/spines/spine_placement_demo.rst.txt deleted file mode 120000 index 1c803a701bb..00000000000 --- a/_sources/gallery/spines/spine_placement_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/spines/spine_placement_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/spines/spines.rst.txt b/_sources/gallery/spines/spines.rst.txt deleted file mode 120000 index 0bc6511ab48..00000000000 --- a/_sources/gallery/spines/spines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/spines/spines.rst.txt \ No newline at end of file diff --git a/_sources/gallery/spines/spines_bounds.rst.txt b/_sources/gallery/spines/spines_bounds.rst.txt deleted file mode 120000 index 52c0290599c..00000000000 --- a/_sources/gallery/spines/spines_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/spines/spines_bounds.rst.txt \ No newline at end of file diff --git a/_sources/gallery/spines/spines_dropped.rst.txt b/_sources/gallery/spines/spines_dropped.rst.txt deleted file mode 120000 index 0803a8568d4..00000000000 --- a/_sources/gallery/spines/spines_dropped.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/spines/spines_dropped.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/barchart_demo.rst.txt b/_sources/gallery/statistics/barchart_demo.rst.txt deleted file mode 120000 index 030bdbeeb7e..00000000000 --- a/_sources/gallery/statistics/barchart_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/barchart_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/boxplot.rst.txt b/_sources/gallery/statistics/boxplot.rst.txt deleted file mode 120000 index 8a6130e6b14..00000000000 --- a/_sources/gallery/statistics/boxplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/boxplot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/boxplot_color.rst.txt b/_sources/gallery/statistics/boxplot_color.rst.txt deleted file mode 120000 index e4ad6e75c1c..00000000000 --- a/_sources/gallery/statistics/boxplot_color.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/boxplot_color.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/boxplot_demo.rst.txt b/_sources/gallery/statistics/boxplot_demo.rst.txt deleted file mode 120000 index cbb90ac173b..00000000000 --- a/_sources/gallery/statistics/boxplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/boxplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/boxplot_vs_violin.rst.txt b/_sources/gallery/statistics/boxplot_vs_violin.rst.txt deleted file mode 120000 index 600db0c5a4d..00000000000 --- a/_sources/gallery/statistics/boxplot_vs_violin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/boxplot_vs_violin.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/bxp.rst.txt b/_sources/gallery/statistics/bxp.rst.txt deleted file mode 120000 index 1a8bf01d892..00000000000 --- a/_sources/gallery/statistics/bxp.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/bxp.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/confidence_ellipse.rst.txt b/_sources/gallery/statistics/confidence_ellipse.rst.txt deleted file mode 120000 index 646466833a8..00000000000 --- a/_sources/gallery/statistics/confidence_ellipse.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/confidence_ellipse.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/customized_violin.rst.txt b/_sources/gallery/statistics/customized_violin.rst.txt deleted file mode 120000 index e70f71d4ed1..00000000000 --- a/_sources/gallery/statistics/customized_violin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/customized_violin.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/errorbar.rst.txt b/_sources/gallery/statistics/errorbar.rst.txt deleted file mode 120000 index 2bc2bdf0a26..00000000000 --- a/_sources/gallery/statistics/errorbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/errorbar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/errorbar_features.rst.txt b/_sources/gallery/statistics/errorbar_features.rst.txt deleted file mode 120000 index d15efc3ce35..00000000000 --- a/_sources/gallery/statistics/errorbar_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/errorbar_features.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/errorbar_limits.rst.txt b/_sources/gallery/statistics/errorbar_limits.rst.txt deleted file mode 120000 index 1b0792102dd..00000000000 --- a/_sources/gallery/statistics/errorbar_limits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/errorbar_limits.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/errorbars_and_boxes.rst.txt b/_sources/gallery/statistics/errorbars_and_boxes.rst.txt deleted file mode 120000 index 6b383218e03..00000000000 --- a/_sources/gallery/statistics/errorbars_and_boxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/errorbars_and_boxes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/hexbin_demo.rst.txt b/_sources/gallery/statistics/hexbin_demo.rst.txt deleted file mode 120000 index c2c3c7bf7d1..00000000000 --- a/_sources/gallery/statistics/hexbin_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/hexbin_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/hist.rst.txt b/_sources/gallery/statistics/hist.rst.txt deleted file mode 120000 index 1ae2d86bc41..00000000000 --- a/_sources/gallery/statistics/hist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/hist.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/histogram_cumulative.rst.txt b/_sources/gallery/statistics/histogram_cumulative.rst.txt deleted file mode 120000 index 7c17aec4735..00000000000 --- a/_sources/gallery/statistics/histogram_cumulative.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/histogram_cumulative.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/histogram_features.rst.txt b/_sources/gallery/statistics/histogram_features.rst.txt deleted file mode 120000 index 0d0bd832df3..00000000000 --- a/_sources/gallery/statistics/histogram_features.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/histogram_features.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/histogram_histtypes.rst.txt b/_sources/gallery/statistics/histogram_histtypes.rst.txt deleted file mode 120000 index a7864567fe7..00000000000 --- a/_sources/gallery/statistics/histogram_histtypes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/histogram_histtypes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/histogram_multihist.rst.txt b/_sources/gallery/statistics/histogram_multihist.rst.txt deleted file mode 120000 index d18e6b4e119..00000000000 --- a/_sources/gallery/statistics/histogram_multihist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/histogram_multihist.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/multiple_histograms_side_by_side.rst.txt b/_sources/gallery/statistics/multiple_histograms_side_by_side.rst.txt deleted file mode 120000 index 07924103861..00000000000 --- a/_sources/gallery/statistics/multiple_histograms_side_by_side.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/multiple_histograms_side_by_side.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/sg_execution_times.rst.txt b/_sources/gallery/statistics/sg_execution_times.rst.txt deleted file mode 120000 index 5e284849129..00000000000 --- a/_sources/gallery/statistics/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/time_series_histogram.rst.txt b/_sources/gallery/statistics/time_series_histogram.rst.txt deleted file mode 120000 index 5ebcd0a646f..00000000000 --- a/_sources/gallery/statistics/time_series_histogram.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/time_series_histogram.rst.txt \ No newline at end of file diff --git a/_sources/gallery/statistics/violinplot.rst.txt b/_sources/gallery/statistics/violinplot.rst.txt deleted file mode 120000 index 46997c85a01..00000000000 --- a/_sources/gallery/statistics/violinplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/statistics/violinplot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/bmh.rst.txt b/_sources/gallery/style_sheets/bmh.rst.txt deleted file mode 120000 index 4bc8cd03cff..00000000000 --- a/_sources/gallery/style_sheets/bmh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/bmh.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/dark_background.rst.txt b/_sources/gallery/style_sheets/dark_background.rst.txt deleted file mode 120000 index 7a185f62747..00000000000 --- a/_sources/gallery/style_sheets/dark_background.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/dark_background.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/fivethirtyeight.rst.txt b/_sources/gallery/style_sheets/fivethirtyeight.rst.txt deleted file mode 120000 index d3e019378b4..00000000000 --- a/_sources/gallery/style_sheets/fivethirtyeight.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/fivethirtyeight.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/ggplot.rst.txt b/_sources/gallery/style_sheets/ggplot.rst.txt deleted file mode 120000 index 796a20853e7..00000000000 --- a/_sources/gallery/style_sheets/ggplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/ggplot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/grayscale.rst.txt b/_sources/gallery/style_sheets/grayscale.rst.txt deleted file mode 120000 index 25e1f94879b..00000000000 --- a/_sources/gallery/style_sheets/grayscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/grayscale.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/plot_solarizedlight2.rst.txt b/_sources/gallery/style_sheets/plot_solarizedlight2.rst.txt deleted file mode 120000 index 8b7d1cb0ed3..00000000000 --- a/_sources/gallery/style_sheets/plot_solarizedlight2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/plot_solarizedlight2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/sg_execution_times.rst.txt b/_sources/gallery/style_sheets/sg_execution_times.rst.txt deleted file mode 120000 index 3f01ebd11d4..00000000000 --- a/_sources/gallery/style_sheets/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/style_sheets/style_sheets_reference.rst.txt b/_sources/gallery/style_sheets/style_sheets_reference.rst.txt deleted file mode 120000 index c5fd445ef53..00000000000 --- a/_sources/gallery/style_sheets/style_sheets_reference.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/style_sheets/style_sheets_reference.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/align_labels_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/align_labels_demo.rst.txt deleted file mode 120000 index 60e78f51ed1..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/align_labels_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/align_labels_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axes_box_aspect.rst.txt b/_sources/gallery/subplots_axes_and_figures/axes_box_aspect.rst.txt deleted file mode 120000 index 91a2d6169ae..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axes_box_aspect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axes_box_aspect.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axes_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/axes_demo.rst.txt deleted file mode 120000 index a587e8f11aa..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axes_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axes_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axes_margins.rst.txt b/_sources/gallery/subplots_axes_and_figures/axes_margins.rst.txt deleted file mode 120000 index 6e271458b72..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axes_margins.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axes_margins.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axes_props.rst.txt b/_sources/gallery/subplots_axes_and_figures/axes_props.rst.txt deleted file mode 120000 index 190a185db5b..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axes_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axes_props.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axes_zoom_effect.rst.txt b/_sources/gallery/subplots_axes_and_figures/axes_zoom_effect.rst.txt deleted file mode 120000 index b68f1092aa0..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axes_zoom_effect.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axes_zoom_effect.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axhspan_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/axhspan_demo.rst.txt deleted file mode 120000 index cee04ed07e3..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axhspan_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axhspan_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axis_equal_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/axis_equal_demo.rst.txt deleted file mode 120000 index 4b65d05c2d1..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axis_equal_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axis_equal_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/axis_labels_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/axis_labels_demo.rst.txt deleted file mode 120000 index b07f0391251..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/axis_labels_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/axis_labels_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/broken_axis.rst.txt b/_sources/gallery/subplots_axes_and_figures/broken_axis.rst.txt deleted file mode 120000 index 534d94a12b9..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/broken_axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/broken_axis.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/colorbar_placement.rst.txt b/_sources/gallery/subplots_axes_and_figures/colorbar_placement.rst.txt deleted file mode 120000 index a93dc8e159c..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/colorbar_placement.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/colorbar_placement.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/custom_figure_class.rst.txt b/_sources/gallery/subplots_axes_and_figures/custom_figure_class.rst.txt deleted file mode 120000 index 23a4143437a..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/custom_figure_class.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/custom_figure_class.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/demo_constrained_layout.rst.txt b/_sources/gallery/subplots_axes_and_figures/demo_constrained_layout.rst.txt deleted file mode 120000 index 3f70075c94a..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/demo_constrained_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/demo_constrained_layout.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/demo_tight_layout.rst.txt b/_sources/gallery/subplots_axes_and_figures/demo_tight_layout.rst.txt deleted file mode 120000 index 86ebaaab9ac..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/demo_tight_layout.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/demo_tight_layout.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt b/_sources/gallery/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt deleted file mode 120000 index 367475ced24..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/fahrenheit_celsius_scales.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/figure_size_units.rst.txt b/_sources/gallery/subplots_axes_and_figures/figure_size_units.rst.txt deleted file mode 120000 index 23d3b00ff33..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/figure_size_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/figure_size_units.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/figure_title.rst.txt b/_sources/gallery/subplots_axes_and_figures/figure_title.rst.txt deleted file mode 120000 index 253897bdfc0..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/figure_title.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/figure_title.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/ganged_plots.rst.txt b/_sources/gallery/subplots_axes_and_figures/ganged_plots.rst.txt deleted file mode 120000 index 99f47a896bb..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/ganged_plots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/ganged_plots.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/geo_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/geo_demo.rst.txt deleted file mode 120000 index 874fc41654a..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/geo_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/geo_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/gridspec_and_subplots.rst.txt b/_sources/gallery/subplots_axes_and_figures/gridspec_and_subplots.rst.txt deleted file mode 120000 index 019fe4bfd81..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/gridspec_and_subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/gridspec_and_subplots.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/gridspec_multicolumn.rst.txt b/_sources/gallery/subplots_axes_and_figures/gridspec_multicolumn.rst.txt deleted file mode 120000 index 46ce8a3a18c..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/gridspec_multicolumn.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/gridspec_multicolumn.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/gridspec_nested.rst.txt b/_sources/gallery/subplots_axes_and_figures/gridspec_nested.rst.txt deleted file mode 120000 index 86d0819a481..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/gridspec_nested.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/gridspec_nested.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/invert_axes.rst.txt b/_sources/gallery/subplots_axes_and_figures/invert_axes.rst.txt deleted file mode 120000 index 498ee009e30..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/invert_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/invert_axes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/multiple_figs_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/multiple_figs_demo.rst.txt deleted file mode 120000 index d826c849e85..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/multiple_figs_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/multiple_figs_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/secondary_axis.rst.txt b/_sources/gallery/subplots_axes_and_figures/secondary_axis.rst.txt deleted file mode 120000 index c747c4fa1ca..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/secondary_axis.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/secondary_axis.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/sg_execution_times.rst.txt b/_sources/gallery/subplots_axes_and_figures/sg_execution_times.rst.txt deleted file mode 120000 index ed5108c0792..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/share_axis_lims_views.rst.txt b/_sources/gallery/subplots_axes_and_figures/share_axis_lims_views.rst.txt deleted file mode 120000 index ca6be473f75..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/share_axis_lims_views.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/share_axis_lims_views.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/shared_axis_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/shared_axis_demo.rst.txt deleted file mode 120000 index 9e501e5e92d..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/shared_axis_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/shared_axis_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/subfigures.rst.txt b/_sources/gallery/subplots_axes_and_figures/subfigures.rst.txt deleted file mode 120000 index b3828fde5da..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/subfigures.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/subfigures.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/subplot.rst.txt b/_sources/gallery/subplots_axes_and_figures/subplot.rst.txt deleted file mode 120000 index d154cc547ff..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/subplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/subplot.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/subplot_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/subplot_demo.rst.txt deleted file mode 120000 index 4a717a4ab68..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/subplot_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/subplots_axes_and_figures/subplot_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/subplot_toolbar.rst.txt b/_sources/gallery/subplots_axes_and_figures/subplot_toolbar.rst.txt deleted file mode 120000 index d790cd708b3..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/subplot_toolbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/subplots_axes_and_figures/subplot_toolbar.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/subplots_adjust.rst.txt b/_sources/gallery/subplots_axes_and_figures/subplots_adjust.rst.txt deleted file mode 120000 index 7147f986237..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/subplots_adjust.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/subplots_adjust.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/subplots_demo.rst.txt b/_sources/gallery/subplots_axes_and_figures/subplots_demo.rst.txt deleted file mode 120000 index 7770e765f64..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/subplots_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/subplots_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/two_scales.rst.txt b/_sources/gallery/subplots_axes_and_figures/two_scales.rst.txt deleted file mode 120000 index 12d2b39ab24..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/two_scales.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/two_scales.rst.txt \ No newline at end of file diff --git a/_sources/gallery/subplots_axes_and_figures/zoom_inset_axes.rst.txt b/_sources/gallery/subplots_axes_and_figures/zoom_inset_axes.rst.txt deleted file mode 120000 index d2be5ba8b4e..00000000000 --- a/_sources/gallery/subplots_axes_and_figures/zoom_inset_axes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/subplots_axes_and_figures/zoom_inset_axes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/accented_text.rst.txt b/_sources/gallery/text_labels_and_annotations/accented_text.rst.txt deleted file mode 120000 index 8844006d9d4..00000000000 --- a/_sources/gallery/text_labels_and_annotations/accented_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/accented_text.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/angle_annotation.rst.txt b/_sources/gallery/text_labels_and_annotations/angle_annotation.rst.txt deleted file mode 120000 index 6ccc2728e4f..00000000000 --- a/_sources/gallery/text_labels_and_annotations/angle_annotation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/angle_annotation.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/annotation_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/annotation_demo.rst.txt deleted file mode 120000 index af3b0f071b2..00000000000 --- a/_sources/gallery/text_labels_and_annotations/annotation_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/annotation_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/arrow_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/arrow_demo.rst.txt deleted file mode 120000 index 3f784142d66..00000000000 --- a/_sources/gallery/text_labels_and_annotations/arrow_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/arrow_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/arrow_simple_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/arrow_simple_demo.rst.txt deleted file mode 120000 index 7258de13a2d..00000000000 --- a/_sources/gallery/text_labels_and_annotations/arrow_simple_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/text_labels_and_annotations/arrow_simple_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/autowrap.rst.txt b/_sources/gallery/text_labels_and_annotations/autowrap.rst.txt deleted file mode 120000 index 711ff36be1b..00000000000 --- a/_sources/gallery/text_labels_and_annotations/autowrap.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/autowrap.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/custom_date_formatter.rst.txt b/_sources/gallery/text_labels_and_annotations/custom_date_formatter.rst.txt deleted file mode 120000 index 3e17bd39e79..00000000000 --- a/_sources/gallery/text_labels_and_annotations/custom_date_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/text_labels_and_annotations/custom_date_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/custom_legends.rst.txt b/_sources/gallery/text_labels_and_annotations/custom_legends.rst.txt deleted file mode 120000 index a1d2282afef..00000000000 --- a/_sources/gallery/text_labels_and_annotations/custom_legends.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/custom_legends.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/dashpointlabel.rst.txt b/_sources/gallery/text_labels_and_annotations/dashpointlabel.rst.txt deleted file mode 120000 index 30ade8fd3c0..00000000000 --- a/_sources/gallery/text_labels_and_annotations/dashpointlabel.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/text_labels_and_annotations/dashpointlabel.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/date.rst.txt b/_sources/gallery/text_labels_and_annotations/date.rst.txt deleted file mode 120000 index a1ba43dd758..00000000000 --- a/_sources/gallery/text_labels_and_annotations/date.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/date.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/date_index_formatter.rst.txt b/_sources/gallery/text_labels_and_annotations/date_index_formatter.rst.txt deleted file mode 120000 index 1b27cbbca4e..00000000000 --- a/_sources/gallery/text_labels_and_annotations/date_index_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/text_labels_and_annotations/date_index_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/demo_annotation_box.rst.txt b/_sources/gallery/text_labels_and_annotations/demo_annotation_box.rst.txt deleted file mode 120000 index e3004d38dc4..00000000000 --- a/_sources/gallery/text_labels_and_annotations/demo_annotation_box.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/demo_annotation_box.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/demo_text_path.rst.txt b/_sources/gallery/text_labels_and_annotations/demo_text_path.rst.txt deleted file mode 120000 index 8d04a7f47c4..00000000000 --- a/_sources/gallery/text_labels_and_annotations/demo_text_path.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/demo_text_path.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/demo_text_rotation_mode.rst.txt b/_sources/gallery/text_labels_and_annotations/demo_text_rotation_mode.rst.txt deleted file mode 120000 index aad1034ec3a..00000000000 --- a/_sources/gallery/text_labels_and_annotations/demo_text_rotation_mode.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/demo_text_rotation_mode.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/dfrac_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/dfrac_demo.rst.txt deleted file mode 120000 index 9cb274f4d35..00000000000 --- a/_sources/gallery/text_labels_and_annotations/dfrac_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/dfrac_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/engineering_formatter.rst.txt b/_sources/gallery/text_labels_and_annotations/engineering_formatter.rst.txt deleted file mode 120000 index bd6e0ff876e..00000000000 --- a/_sources/gallery/text_labels_and_annotations/engineering_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/engineering_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/fancyarrow_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/fancyarrow_demo.rst.txt deleted file mode 120000 index 53a94de9b00..00000000000 --- a/_sources/gallery/text_labels_and_annotations/fancyarrow_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/fancyarrow_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/fancytextbox_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/fancytextbox_demo.rst.txt deleted file mode 120000 index cad8ce90109..00000000000 --- a/_sources/gallery/text_labels_and_annotations/fancytextbox_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/fancytextbox_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/figlegend_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/figlegend_demo.rst.txt deleted file mode 120000 index 40ef41ab184..00000000000 --- a/_sources/gallery/text_labels_and_annotations/figlegend_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/figlegend_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/font_family_rc_sgskip.rst.txt b/_sources/gallery/text_labels_and_annotations/font_family_rc_sgskip.rst.txt deleted file mode 120000 index 9626d1f5606..00000000000 --- a/_sources/gallery/text_labels_and_annotations/font_family_rc_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/text_labels_and_annotations/font_family_rc_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/font_file.rst.txt b/_sources/gallery/text_labels_and_annotations/font_file.rst.txt deleted file mode 120000 index 3d0574e0b75..00000000000 --- a/_sources/gallery/text_labels_and_annotations/font_file.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/font_file.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/font_table.rst.txt b/_sources/gallery/text_labels_and_annotations/font_table.rst.txt deleted file mode 120000 index 9f71cd00f0f..00000000000 --- a/_sources/gallery/text_labels_and_annotations/font_table.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/font_table.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/font_table_ttf_sgskip.rst.txt b/_sources/gallery/text_labels_and_annotations/font_table_ttf_sgskip.rst.txt deleted file mode 120000 index 7b9600c444e..00000000000 --- a/_sources/gallery/text_labels_and_annotations/font_table_ttf_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/text_labels_and_annotations/font_table_ttf_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/fonts_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/fonts_demo.rst.txt deleted file mode 120000 index 9ca28b15c4c..00000000000 --- a/_sources/gallery/text_labels_and_annotations/fonts_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/fonts_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/fonts_demo_kw.rst.txt b/_sources/gallery/text_labels_and_annotations/fonts_demo_kw.rst.txt deleted file mode 120000 index fb46670b0ad..00000000000 --- a/_sources/gallery/text_labels_and_annotations/fonts_demo_kw.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/fonts_demo_kw.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/label_subplots.rst.txt b/_sources/gallery/text_labels_and_annotations/label_subplots.rst.txt deleted file mode 120000 index 96527f7abfc..00000000000 --- a/_sources/gallery/text_labels_and_annotations/label_subplots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/label_subplots.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/legend.rst.txt b/_sources/gallery/text_labels_and_annotations/legend.rst.txt deleted file mode 120000 index 97d0c693866..00000000000 --- a/_sources/gallery/text_labels_and_annotations/legend.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/legend.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/legend_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/legend_demo.rst.txt deleted file mode 120000 index 9dff004906a..00000000000 --- a/_sources/gallery/text_labels_and_annotations/legend_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/legend_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/line_with_text.rst.txt b/_sources/gallery/text_labels_and_annotations/line_with_text.rst.txt deleted file mode 120000 index 49e81adb8b7..00000000000 --- a/_sources/gallery/text_labels_and_annotations/line_with_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/line_with_text.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/mathtext_asarray.rst.txt b/_sources/gallery/text_labels_and_annotations/mathtext_asarray.rst.txt deleted file mode 120000 index 9daa1f32de7..00000000000 --- a/_sources/gallery/text_labels_and_annotations/mathtext_asarray.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/mathtext_asarray.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/mathtext_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/mathtext_demo.rst.txt deleted file mode 120000 index a0e78da139e..00000000000 --- a/_sources/gallery/text_labels_and_annotations/mathtext_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/mathtext_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/mathtext_examples.rst.txt b/_sources/gallery/text_labels_and_annotations/mathtext_examples.rst.txt deleted file mode 120000 index 8d3afde48d0..00000000000 --- a/_sources/gallery/text_labels_and_annotations/mathtext_examples.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/mathtext_examples.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/mathtext_fontfamily_example.rst.txt b/_sources/gallery/text_labels_and_annotations/mathtext_fontfamily_example.rst.txt deleted file mode 120000 index c894d260a81..00000000000 --- a/_sources/gallery/text_labels_and_annotations/mathtext_fontfamily_example.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/mathtext_fontfamily_example.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/multiline.rst.txt b/_sources/gallery/text_labels_and_annotations/multiline.rst.txt deleted file mode 120000 index 9dc28424cd0..00000000000 --- a/_sources/gallery/text_labels_and_annotations/multiline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/multiline.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/placing_text_boxes.rst.txt b/_sources/gallery/text_labels_and_annotations/placing_text_boxes.rst.txt deleted file mode 120000 index d948cff3282..00000000000 --- a/_sources/gallery/text_labels_and_annotations/placing_text_boxes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/placing_text_boxes.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/rainbow_text.rst.txt b/_sources/gallery/text_labels_and_annotations/rainbow_text.rst.txt deleted file mode 120000 index 847ee485628..00000000000 --- a/_sources/gallery/text_labels_and_annotations/rainbow_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/rainbow_text.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/sg_execution_times.rst.txt b/_sources/gallery/text_labels_and_annotations/sg_execution_times.rst.txt deleted file mode 120000 index f09f87d553d..00000000000 --- a/_sources/gallery/text_labels_and_annotations/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/stix_fonts_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/stix_fonts_demo.rst.txt deleted file mode 120000 index 20cf7717684..00000000000 --- a/_sources/gallery/text_labels_and_annotations/stix_fonts_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/stix_fonts_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/tex_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/tex_demo.rst.txt deleted file mode 120000 index 6031ffb547e..00000000000 --- a/_sources/gallery/text_labels_and_annotations/tex_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/tex_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/text_alignment.rst.txt b/_sources/gallery/text_labels_and_annotations/text_alignment.rst.txt deleted file mode 120000 index 71e6a335d05..00000000000 --- a/_sources/gallery/text_labels_and_annotations/text_alignment.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/text_alignment.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/text_fontdict.rst.txt b/_sources/gallery/text_labels_and_annotations/text_fontdict.rst.txt deleted file mode 120000 index 3e4801c0922..00000000000 --- a/_sources/gallery/text_labels_and_annotations/text_fontdict.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/text_fontdict.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/text_rotation.rst.txt b/_sources/gallery/text_labels_and_annotations/text_rotation.rst.txt deleted file mode 120000 index a467f91821b..00000000000 --- a/_sources/gallery/text_labels_and_annotations/text_rotation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/text_rotation.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/text_rotation_relative_to_line.rst.txt b/_sources/gallery/text_labels_and_annotations/text_rotation_relative_to_line.rst.txt deleted file mode 120000 index f6e0f3b29b0..00000000000 --- a/_sources/gallery/text_labels_and_annotations/text_rotation_relative_to_line.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/text_rotation_relative_to_line.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/titles_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/titles_demo.rst.txt deleted file mode 120000 index 88d95ef51ac..00000000000 --- a/_sources/gallery/text_labels_and_annotations/titles_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/titles_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/unicode_minus.rst.txt b/_sources/gallery/text_labels_and_annotations/unicode_minus.rst.txt deleted file mode 120000 index 31474366731..00000000000 --- a/_sources/gallery/text_labels_and_annotations/unicode_minus.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/unicode_minus.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/usetex_baseline_test.rst.txt b/_sources/gallery/text_labels_and_annotations/usetex_baseline_test.rst.txt deleted file mode 120000 index 44635b68627..00000000000 --- a/_sources/gallery/text_labels_and_annotations/usetex_baseline_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/usetex_baseline_test.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/usetex_demo.rst.txt b/_sources/gallery/text_labels_and_annotations/usetex_demo.rst.txt deleted file mode 120000 index 26d88718849..00000000000 --- a/_sources/gallery/text_labels_and_annotations/usetex_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/text_labels_and_annotations/usetex_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/usetex_fonteffects.rst.txt b/_sources/gallery/text_labels_and_annotations/usetex_fonteffects.rst.txt deleted file mode 120000 index 7dc79add9f6..00000000000 --- a/_sources/gallery/text_labels_and_annotations/usetex_fonteffects.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/usetex_fonteffects.rst.txt \ No newline at end of file diff --git a/_sources/gallery/text_labels_and_annotations/watermark_text.rst.txt b/_sources/gallery/text_labels_and_annotations/watermark_text.rst.txt deleted file mode 120000 index 98252f77071..00000000000 --- a/_sources/gallery/text_labels_and_annotations/watermark_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/text_labels_and_annotations/watermark_text.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/auto_ticks.rst.txt b/_sources/gallery/ticks/auto_ticks.rst.txt deleted file mode 120000 index 2170a783e45..00000000000 --- a/_sources/gallery/ticks/auto_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/auto_ticks.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/centered_ticklabels.rst.txt b/_sources/gallery/ticks/centered_ticklabels.rst.txt deleted file mode 120000 index 757cc4efc84..00000000000 --- a/_sources/gallery/ticks/centered_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/centered_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/colorbar_tick_labelling_demo.rst.txt b/_sources/gallery/ticks/colorbar_tick_labelling_demo.rst.txt deleted file mode 120000 index 363706efb4c..00000000000 --- a/_sources/gallery/ticks/colorbar_tick_labelling_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/colorbar_tick_labelling_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/custom_ticker1.rst.txt b/_sources/gallery/ticks/custom_ticker1.rst.txt deleted file mode 120000 index f2852e7f778..00000000000 --- a/_sources/gallery/ticks/custom_ticker1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/custom_ticker1.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/date_concise_formatter.rst.txt b/_sources/gallery/ticks/date_concise_formatter.rst.txt deleted file mode 120000 index b94f98843d4..00000000000 --- a/_sources/gallery/ticks/date_concise_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/date_concise_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/date_demo_convert.rst.txt b/_sources/gallery/ticks/date_demo_convert.rst.txt deleted file mode 120000 index d6239c93543..00000000000 --- a/_sources/gallery/ticks/date_demo_convert.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/date_demo_convert.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/date_demo_rrule.rst.txt b/_sources/gallery/ticks/date_demo_rrule.rst.txt deleted file mode 120000 index 573044b7a84..00000000000 --- a/_sources/gallery/ticks/date_demo_rrule.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/date_demo_rrule.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/date_index_formatter2.rst.txt b/_sources/gallery/ticks/date_index_formatter2.rst.txt deleted file mode 120000 index 6f9631eec98..00000000000 --- a/_sources/gallery/ticks/date_index_formatter2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/ticks/date_index_formatter2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/date_precision_and_epochs.rst.txt b/_sources/gallery/ticks/date_precision_and_epochs.rst.txt deleted file mode 120000 index 893ee78f18e..00000000000 --- a/_sources/gallery/ticks/date_precision_and_epochs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/date_precision_and_epochs.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/major_minor_demo.rst.txt b/_sources/gallery/ticks/major_minor_demo.rst.txt deleted file mode 120000 index e9718e0e2a6..00000000000 --- a/_sources/gallery/ticks/major_minor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/major_minor_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/scalarformatter.rst.txt b/_sources/gallery/ticks/scalarformatter.rst.txt deleted file mode 120000 index 02bf8a13df0..00000000000 --- a/_sources/gallery/ticks/scalarformatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/scalarformatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/sg_execution_times.rst.txt b/_sources/gallery/ticks/sg_execution_times.rst.txt deleted file mode 120000 index 6352f841530..00000000000 --- a/_sources/gallery/ticks/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/tick-formatters.rst.txt b/_sources/gallery/ticks/tick-formatters.rst.txt deleted file mode 120000 index f8d90ddcc3d..00000000000 --- a/_sources/gallery/ticks/tick-formatters.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/tick-formatters.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/tick-locators.rst.txt b/_sources/gallery/ticks/tick-locators.rst.txt deleted file mode 120000 index 61af3e35d81..00000000000 --- a/_sources/gallery/ticks/tick-locators.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/tick-locators.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/tick_label_right.rst.txt b/_sources/gallery/ticks/tick_label_right.rst.txt deleted file mode 120000 index 9b3ee95c1e5..00000000000 --- a/_sources/gallery/ticks/tick_label_right.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/tick_label_right.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/tick_labels_from_values.rst.txt b/_sources/gallery/ticks/tick_labels_from_values.rst.txt deleted file mode 120000 index eb4dbd47c9e..00000000000 --- a/_sources/gallery/ticks/tick_labels_from_values.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/tick_labels_from_values.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/tick_xlabel_top.rst.txt b/_sources/gallery/ticks/tick_xlabel_top.rst.txt deleted file mode 120000 index d429eb03805..00000000000 --- a/_sources/gallery/ticks/tick_xlabel_top.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/tick_xlabel_top.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks/ticklabels_rotation.rst.txt b/_sources/gallery/ticks/ticklabels_rotation.rst.txt deleted file mode 120000 index cb4287563f0..00000000000 --- a/_sources/gallery/ticks/ticklabels_rotation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/ticks/ticklabels_rotation.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/auto_ticks.rst.txt b/_sources/gallery/ticks_and_spines/auto_ticks.rst.txt deleted file mode 120000 index eb2a85013b9..00000000000 --- a/_sources/gallery/ticks_and_spines/auto_ticks.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/auto_ticks.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/centered_spines_with_arrows.rst.txt b/_sources/gallery/ticks_and_spines/centered_spines_with_arrows.rst.txt deleted file mode 120000 index 1cb63055c2a..00000000000 --- a/_sources/gallery/ticks_and_spines/centered_spines_with_arrows.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/centered_spines_with_arrows.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/centered_ticklabels.rst.txt b/_sources/gallery/ticks_and_spines/centered_ticklabels.rst.txt deleted file mode 120000 index 7865382efeb..00000000000 --- a/_sources/gallery/ticks_and_spines/centered_ticklabels.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/centered_ticklabels.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/colorbar_tick_labelling_demo.rst.txt b/_sources/gallery/ticks_and_spines/colorbar_tick_labelling_demo.rst.txt deleted file mode 120000 index fece05ef0a8..00000000000 --- a/_sources/gallery/ticks_and_spines/colorbar_tick_labelling_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/colorbar_tick_labelling_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/custom_ticker1.rst.txt b/_sources/gallery/ticks_and_spines/custom_ticker1.rst.txt deleted file mode 120000 index 95829199c52..00000000000 --- a/_sources/gallery/ticks_and_spines/custom_ticker1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/custom_ticker1.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/date_concise_formatter.rst.txt b/_sources/gallery/ticks_and_spines/date_concise_formatter.rst.txt deleted file mode 120000 index 787c2ee7e79..00000000000 --- a/_sources/gallery/ticks_and_spines/date_concise_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/date_concise_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/date_demo_convert.rst.txt b/_sources/gallery/ticks_and_spines/date_demo_convert.rst.txt deleted file mode 120000 index ab04f180cab..00000000000 --- a/_sources/gallery/ticks_and_spines/date_demo_convert.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/date_demo_convert.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/date_demo_rrule.rst.txt b/_sources/gallery/ticks_and_spines/date_demo_rrule.rst.txt deleted file mode 120000 index e9c1d06c185..00000000000 --- a/_sources/gallery/ticks_and_spines/date_demo_rrule.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/date_demo_rrule.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/date_index_formatter.rst.txt b/_sources/gallery/ticks_and_spines/date_index_formatter.rst.txt deleted file mode 120000 index 610ec69f5f5..00000000000 --- a/_sources/gallery/ticks_and_spines/date_index_formatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/gallery/ticks_and_spines/date_index_formatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/date_index_formatter2.rst.txt b/_sources/gallery/ticks_and_spines/date_index_formatter2.rst.txt deleted file mode 120000 index 25c54fc8da7..00000000000 --- a/_sources/gallery/ticks_and_spines/date_index_formatter2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/date_index_formatter2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/date_precision_and_epochs.rst.txt b/_sources/gallery/ticks_and_spines/date_precision_and_epochs.rst.txt deleted file mode 120000 index cf6a2eae78b..00000000000 --- a/_sources/gallery/ticks_and_spines/date_precision_and_epochs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/date_precision_and_epochs.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/major_minor_demo.rst.txt b/_sources/gallery/ticks_and_spines/major_minor_demo.rst.txt deleted file mode 120000 index 83f21fefac8..00000000000 --- a/_sources/gallery/ticks_and_spines/major_minor_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/major_minor_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/multiple_yaxis_with_spines.rst.txt b/_sources/gallery/ticks_and_spines/multiple_yaxis_with_spines.rst.txt deleted file mode 120000 index dc42166529b..00000000000 --- a/_sources/gallery/ticks_and_spines/multiple_yaxis_with_spines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/multiple_yaxis_with_spines.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/scalarformatter.rst.txt b/_sources/gallery/ticks_and_spines/scalarformatter.rst.txt deleted file mode 120000 index 73a8a38a46a..00000000000 --- a/_sources/gallery/ticks_and_spines/scalarformatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/scalarformatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/sg_execution_times.rst.txt b/_sources/gallery/ticks_and_spines/sg_execution_times.rst.txt deleted file mode 120000 index 4090ceb3575..00000000000 --- a/_sources/gallery/ticks_and_spines/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/spine_placement_demo.rst.txt b/_sources/gallery/ticks_and_spines/spine_placement_demo.rst.txt deleted file mode 120000 index 912a104e8d2..00000000000 --- a/_sources/gallery/ticks_and_spines/spine_placement_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/spine_placement_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/spines.rst.txt b/_sources/gallery/ticks_and_spines/spines.rst.txt deleted file mode 120000 index dfedaef66af..00000000000 --- a/_sources/gallery/ticks_and_spines/spines.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/spines.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/spines_bounds.rst.txt b/_sources/gallery/ticks_and_spines/spines_bounds.rst.txt deleted file mode 120000 index ec9be658612..00000000000 --- a/_sources/gallery/ticks_and_spines/spines_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/spines_bounds.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/spines_dropped.rst.txt b/_sources/gallery/ticks_and_spines/spines_dropped.rst.txt deleted file mode 120000 index 0642aed7491..00000000000 --- a/_sources/gallery/ticks_and_spines/spines_dropped.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/spines_dropped.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/tick-formatters.rst.txt b/_sources/gallery/ticks_and_spines/tick-formatters.rst.txt deleted file mode 120000 index d83df1ebe7b..00000000000 --- a/_sources/gallery/ticks_and_spines/tick-formatters.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/tick-formatters.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/tick-locators.rst.txt b/_sources/gallery/ticks_and_spines/tick-locators.rst.txt deleted file mode 120000 index 5ae2305a95c..00000000000 --- a/_sources/gallery/ticks_and_spines/tick-locators.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/tick-locators.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/tick_label_right.rst.txt b/_sources/gallery/ticks_and_spines/tick_label_right.rst.txt deleted file mode 120000 index a01872935eb..00000000000 --- a/_sources/gallery/ticks_and_spines/tick_label_right.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/tick_label_right.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/tick_labels_from_values.rst.txt b/_sources/gallery/ticks_and_spines/tick_labels_from_values.rst.txt deleted file mode 120000 index 3de427df59c..00000000000 --- a/_sources/gallery/ticks_and_spines/tick_labels_from_values.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/tick_labels_from_values.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/tick_xlabel_top.rst.txt b/_sources/gallery/ticks_and_spines/tick_xlabel_top.rst.txt deleted file mode 120000 index 8d63b506b05..00000000000 --- a/_sources/gallery/ticks_and_spines/tick_xlabel_top.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/tick_xlabel_top.rst.txt \ No newline at end of file diff --git a/_sources/gallery/ticks_and_spines/ticklabels_rotation.rst.txt b/_sources/gallery/ticks_and_spines/ticklabels_rotation.rst.txt deleted file mode 120000 index f84aa1ef05c..00000000000 --- a/_sources/gallery/ticks_and_spines/ticklabels_rotation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/ticks_and_spines/ticklabels_rotation.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/annotate_with_units.rst.txt b/_sources/gallery/units/annotate_with_units.rst.txt deleted file mode 120000 index 8f42e494f53..00000000000 --- a/_sources/gallery/units/annotate_with_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/annotate_with_units.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/artist_tests.rst.txt b/_sources/gallery/units/artist_tests.rst.txt deleted file mode 120000 index 47e60f85ab4..00000000000 --- a/_sources/gallery/units/artist_tests.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/artist_tests.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/bar_demo2.rst.txt b/_sources/gallery/units/bar_demo2.rst.txt deleted file mode 120000 index 22fd7293038..00000000000 --- a/_sources/gallery/units/bar_demo2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/bar_demo2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/bar_unit_demo.rst.txt b/_sources/gallery/units/bar_unit_demo.rst.txt deleted file mode 120000 index 9b728f75c56..00000000000 --- a/_sources/gallery/units/bar_unit_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/bar_unit_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/basic_units.rst.txt b/_sources/gallery/units/basic_units.rst.txt deleted file mode 120000 index 15c82437a15..00000000000 --- a/_sources/gallery/units/basic_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/basic_units.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/ellipse_with_units.rst.txt b/_sources/gallery/units/ellipse_with_units.rst.txt deleted file mode 120000 index 14eec5fe312..00000000000 --- a/_sources/gallery/units/ellipse_with_units.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/ellipse_with_units.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/evans_test.rst.txt b/_sources/gallery/units/evans_test.rst.txt deleted file mode 120000 index 210572f466e..00000000000 --- a/_sources/gallery/units/evans_test.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/evans_test.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/radian_demo.rst.txt b/_sources/gallery/units/radian_demo.rst.txt deleted file mode 120000 index be89505a42b..00000000000 --- a/_sources/gallery/units/radian_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/radian_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/sg_execution_times.rst.txt b/_sources/gallery/units/sg_execution_times.rst.txt deleted file mode 120000 index 8fe95ccf91b..00000000000 --- a/_sources/gallery/units/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/units_sample.rst.txt b/_sources/gallery/units/units_sample.rst.txt deleted file mode 120000 index 965ecc5eb32..00000000000 --- a/_sources/gallery/units/units_sample.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/units_sample.rst.txt \ No newline at end of file diff --git a/_sources/gallery/units/units_scatter.rst.txt b/_sources/gallery/units/units_scatter.rst.txt deleted file mode 120000 index 5b901cd148a..00000000000 --- a/_sources/gallery/units/units_scatter.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/units/units_scatter.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/canvasagg.rst.txt b/_sources/gallery/user_interfaces/canvasagg.rst.txt deleted file mode 120000 index f6094453f04..00000000000 --- a/_sources/gallery/user_interfaces/canvasagg.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/canvasagg.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_gtk2_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_gtk2_sgskip.rst.txt deleted file mode 120000 index fecb36a930d..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_gtk2_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/user_interfaces/embedding_in_gtk2_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_gtk3_panzoom_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_gtk3_panzoom_sgskip.rst.txt deleted file mode 120000 index 8d406a565b8..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_gtk3_panzoom_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_gtk3_panzoom_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_gtk3_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_gtk3_sgskip.rst.txt deleted file mode 120000 index 589ae9e2143..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_gtk3_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_gtk3_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_gtk4_panzoom_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_gtk4_panzoom_sgskip.rst.txt deleted file mode 120000 index d0884ec4cf1..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_gtk4_panzoom_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_gtk4_panzoom_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_gtk4_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_gtk4_sgskip.rst.txt deleted file mode 120000 index 022096d35c6..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_gtk4_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_gtk4_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_gtk_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_gtk_sgskip.rst.txt deleted file mode 120000 index 634f26ed753..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_gtk_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/user_interfaces/embedding_in_gtk_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_qt_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_qt_sgskip.rst.txt deleted file mode 120000 index 7ca884c1b34..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_qt_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_qt_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_tk2_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_tk2_sgskip.rst.txt deleted file mode 120000 index d2a4992dd15..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_tk2_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/user_interfaces/embedding_in_tk2_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_tk_canvas_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_tk_canvas_sgskip.rst.txt deleted file mode 120000 index be6333f93f3..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_tk_canvas_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/user_interfaces/embedding_in_tk_canvas_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_tk_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_tk_sgskip.rst.txt deleted file mode 120000 index 2b2f592cdae..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_tk_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_tk_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_wx2_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_wx2_sgskip.rst.txt deleted file mode 120000 index 52aaa113095..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_wx2_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_wx2_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_wx3_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_wx3_sgskip.rst.txt deleted file mode 120000 index f5c08c8c51c..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_wx3_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_wx3_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_wx4_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_wx4_sgskip.rst.txt deleted file mode 120000 index 57d4208413d..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_wx4_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_wx4_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_in_wx5_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_in_wx5_sgskip.rst.txt deleted file mode 120000 index 5f6c64b1a85..00000000000 --- a/_sources/gallery/user_interfaces/embedding_in_wx5_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_in_wx5_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/embedding_webagg_sgskip.rst.txt b/_sources/gallery/user_interfaces/embedding_webagg_sgskip.rst.txt deleted file mode 120000 index 5b05587a65f..00000000000 --- a/_sources/gallery/user_interfaces/embedding_webagg_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/embedding_webagg_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/fourier_demo_wx_sgskip.rst.txt b/_sources/gallery/user_interfaces/fourier_demo_wx_sgskip.rst.txt deleted file mode 120000 index 0358b2ac863..00000000000 --- a/_sources/gallery/user_interfaces/fourier_demo_wx_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/fourier_demo_wx_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/gtk3_spreadsheet_sgskip.rst.txt b/_sources/gallery/user_interfaces/gtk3_spreadsheet_sgskip.rst.txt deleted file mode 120000 index f39dd89a30f..00000000000 --- a/_sources/gallery/user_interfaces/gtk3_spreadsheet_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/gtk3_spreadsheet_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/gtk4_spreadsheet_sgskip.rst.txt b/_sources/gallery/user_interfaces/gtk4_spreadsheet_sgskip.rst.txt deleted file mode 120000 index f23bcdba402..00000000000 --- a/_sources/gallery/user_interfaces/gtk4_spreadsheet_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/gtk4_spreadsheet_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/gtk_spreadsheet_sgskip.rst.txt b/_sources/gallery/user_interfaces/gtk_spreadsheet_sgskip.rst.txt deleted file mode 120000 index d7c7e89a9f6..00000000000 --- a/_sources/gallery/user_interfaces/gtk_spreadsheet_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/user_interfaces/gtk_spreadsheet_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/histogram_demo_canvasagg_sgskip.rst.txt b/_sources/gallery/user_interfaces/histogram_demo_canvasagg_sgskip.rst.txt deleted file mode 120000 index 64d8b77b4f2..00000000000 --- a/_sources/gallery/user_interfaces/histogram_demo_canvasagg_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/user_interfaces/histogram_demo_canvasagg_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/lineprops_dialog_gtk_sgskip.rst.txt b/_sources/gallery/user_interfaces/lineprops_dialog_gtk_sgskip.rst.txt deleted file mode 120000 index fd0234227cb..00000000000 --- a/_sources/gallery/user_interfaces/lineprops_dialog_gtk_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/user_interfaces/lineprops_dialog_gtk_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/mathtext_wx_sgskip.rst.txt b/_sources/gallery/user_interfaces/mathtext_wx_sgskip.rst.txt deleted file mode 120000 index d682ff41a76..00000000000 --- a/_sources/gallery/user_interfaces/mathtext_wx_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/mathtext_wx_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/mpl_with_glade3_sgskip.rst.txt b/_sources/gallery/user_interfaces/mpl_with_glade3_sgskip.rst.txt deleted file mode 120000 index 8f015c04da3..00000000000 --- a/_sources/gallery/user_interfaces/mpl_with_glade3_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/mpl_with_glade3_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/mpl_with_glade_316_sgskip.rst.txt b/_sources/gallery/user_interfaces/mpl_with_glade_316_sgskip.rst.txt deleted file mode 120000 index 40752f8b1be..00000000000 --- a/_sources/gallery/user_interfaces/mpl_with_glade_316_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/user_interfaces/mpl_with_glade_316_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/mpl_with_glade_sgskip.rst.txt b/_sources/gallery/user_interfaces/mpl_with_glade_sgskip.rst.txt deleted file mode 120000 index 77c8171a8ec..00000000000 --- a/_sources/gallery/user_interfaces/mpl_with_glade_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/user_interfaces/mpl_with_glade_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/pylab_with_gtk3_sgskip.rst.txt b/_sources/gallery/user_interfaces/pylab_with_gtk3_sgskip.rst.txt deleted file mode 120000 index ae48b192ca5..00000000000 --- a/_sources/gallery/user_interfaces/pylab_with_gtk3_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/pylab_with_gtk3_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/pylab_with_gtk4_sgskip.rst.txt b/_sources/gallery/user_interfaces/pylab_with_gtk4_sgskip.rst.txt deleted file mode 120000 index f89f1cf4920..00000000000 --- a/_sources/gallery/user_interfaces/pylab_with_gtk4_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/pylab_with_gtk4_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/pylab_with_gtk_sgskip.rst.txt b/_sources/gallery/user_interfaces/pylab_with_gtk_sgskip.rst.txt deleted file mode 120000 index 34f4bba18c5..00000000000 --- a/_sources/gallery/user_interfaces/pylab_with_gtk_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/user_interfaces/pylab_with_gtk_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/sg_execution_times.rst.txt b/_sources/gallery/user_interfaces/sg_execution_times.rst.txt deleted file mode 120000 index dc0fa8a0f99..00000000000 --- a/_sources/gallery/user_interfaces/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/svg_histogram_sgskip.rst.txt b/_sources/gallery/user_interfaces/svg_histogram_sgskip.rst.txt deleted file mode 120000 index f4e951886bb..00000000000 --- a/_sources/gallery/user_interfaces/svg_histogram_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/svg_histogram_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/svg_tooltip_sgskip.rst.txt b/_sources/gallery/user_interfaces/svg_tooltip_sgskip.rst.txt deleted file mode 120000 index 3b3758c6838..00000000000 --- a/_sources/gallery/user_interfaces/svg_tooltip_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/svg_tooltip_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/toolmanager_sgskip.rst.txt b/_sources/gallery/user_interfaces/toolmanager_sgskip.rst.txt deleted file mode 120000 index 24704b64786..00000000000 --- a/_sources/gallery/user_interfaces/toolmanager_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/toolmanager_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/web_application_server_sgskip.rst.txt b/_sources/gallery/user_interfaces/web_application_server_sgskip.rst.txt deleted file mode 120000 index 5928f90b0c7..00000000000 --- a/_sources/gallery/user_interfaces/web_application_server_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/web_application_server_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/user_interfaces/wxcursor_demo_sgskip.rst.txt b/_sources/gallery/user_interfaces/wxcursor_demo_sgskip.rst.txt deleted file mode 120000 index b7598cd29e2..00000000000 --- a/_sources/gallery/user_interfaces/wxcursor_demo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/user_interfaces/wxcursor_demo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/anchored_box01.rst.txt b/_sources/gallery/userdemo/anchored_box01.rst.txt deleted file mode 120000 index 2e94b3cc894..00000000000 --- a/_sources/gallery/userdemo/anchored_box01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/userdemo/anchored_box01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/anchored_box02.rst.txt b/_sources/gallery/userdemo/anchored_box02.rst.txt deleted file mode 120000 index 9e3098adc9b..00000000000 --- a/_sources/gallery/userdemo/anchored_box02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/userdemo/anchored_box02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/anchored_box03.rst.txt b/_sources/gallery/userdemo/anchored_box03.rst.txt deleted file mode 120000 index 0761aa80fbd..00000000000 --- a/_sources/gallery/userdemo/anchored_box03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/gallery/userdemo/anchored_box03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/anchored_box04.rst.txt b/_sources/gallery/userdemo/anchored_box04.rst.txt deleted file mode 120000 index 521f5ad21c9..00000000000 --- a/_sources/gallery/userdemo/anchored_box04.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/anchored_box04.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_explain.rst.txt b/_sources/gallery/userdemo/annotate_explain.rst.txt deleted file mode 120000 index 03b08862c95..00000000000 --- a/_sources/gallery/userdemo/annotate_explain.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_explain.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_simple01.rst.txt b/_sources/gallery/userdemo/annotate_simple01.rst.txt deleted file mode 120000 index 3fbeca68d34..00000000000 --- a/_sources/gallery/userdemo/annotate_simple01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_simple01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_simple02.rst.txt b/_sources/gallery/userdemo/annotate_simple02.rst.txt deleted file mode 120000 index 1f1b6a43a9f..00000000000 --- a/_sources/gallery/userdemo/annotate_simple02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_simple02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_simple03.rst.txt b/_sources/gallery/userdemo/annotate_simple03.rst.txt deleted file mode 120000 index ee76d47a510..00000000000 --- a/_sources/gallery/userdemo/annotate_simple03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_simple03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_simple04.rst.txt b/_sources/gallery/userdemo/annotate_simple04.rst.txt deleted file mode 120000 index d30f2ba5ba7..00000000000 --- a/_sources/gallery/userdemo/annotate_simple04.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_simple04.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_simple_coord01.rst.txt b/_sources/gallery/userdemo/annotate_simple_coord01.rst.txt deleted file mode 120000 index fd9a360f9d5..00000000000 --- a/_sources/gallery/userdemo/annotate_simple_coord01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_simple_coord01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_simple_coord02.rst.txt b/_sources/gallery/userdemo/annotate_simple_coord02.rst.txt deleted file mode 120000 index e83d732292f..00000000000 --- a/_sources/gallery/userdemo/annotate_simple_coord02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_simple_coord02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_simple_coord03.rst.txt b/_sources/gallery/userdemo/annotate_simple_coord03.rst.txt deleted file mode 120000 index 34d6b8f0022..00000000000 --- a/_sources/gallery/userdemo/annotate_simple_coord03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_simple_coord03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/annotate_text_arrow.rst.txt b/_sources/gallery/userdemo/annotate_text_arrow.rst.txt deleted file mode 120000 index d629e86b841..00000000000 --- a/_sources/gallery/userdemo/annotate_text_arrow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/annotate_text_arrow.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/axis_direction_demo_step01.rst.txt b/_sources/gallery/userdemo/axis_direction_demo_step01.rst.txt deleted file mode 120000 index 1f542174696..00000000000 --- a/_sources/gallery/userdemo/axis_direction_demo_step01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/axis_direction_demo_step01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/axis_direction_demo_step02.rst.txt b/_sources/gallery/userdemo/axis_direction_demo_step02.rst.txt deleted file mode 120000 index 0a680dd165f..00000000000 --- a/_sources/gallery/userdemo/axis_direction_demo_step02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/axis_direction_demo_step02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/axis_direction_demo_step03.rst.txt b/_sources/gallery/userdemo/axis_direction_demo_step03.rst.txt deleted file mode 120000 index 3393254c258..00000000000 --- a/_sources/gallery/userdemo/axis_direction_demo_step03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/axis_direction_demo_step03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/axis_direction_demo_step04.rst.txt b/_sources/gallery/userdemo/axis_direction_demo_step04.rst.txt deleted file mode 120000 index 4dcaa05d3ac..00000000000 --- a/_sources/gallery/userdemo/axis_direction_demo_step04.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/axis_direction_demo_step04.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_interactive_adjustment.rst.txt b/_sources/gallery/userdemo/colormap_interactive_adjustment.rst.txt deleted file mode 120000 index 4ae237f101b..00000000000 --- a/_sources/gallery/userdemo/colormap_interactive_adjustment.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/userdemo/colormap_interactive_adjustment.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_normalizations.rst.txt b/_sources/gallery/userdemo/colormap_normalizations.rst.txt deleted file mode 120000 index de7f98171d9..00000000000 --- a/_sources/gallery/userdemo/colormap_normalizations.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/userdemo/colormap_normalizations.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_normalizations_bounds.rst.txt b/_sources/gallery/userdemo/colormap_normalizations_bounds.rst.txt deleted file mode 120000 index 3adcfb6d18c..00000000000 --- a/_sources/gallery/userdemo/colormap_normalizations_bounds.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/userdemo/colormap_normalizations_bounds.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_normalizations_custom.rst.txt b/_sources/gallery/userdemo/colormap_normalizations_custom.rst.txt deleted file mode 120000 index ad86133af9d..00000000000 --- a/_sources/gallery/userdemo/colormap_normalizations_custom.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/userdemo/colormap_normalizations_custom.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_normalizations_diverging.rst.txt b/_sources/gallery/userdemo/colormap_normalizations_diverging.rst.txt deleted file mode 120000 index 65bb8503b40..00000000000 --- a/_sources/gallery/userdemo/colormap_normalizations_diverging.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/userdemo/colormap_normalizations_diverging.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_normalizations_lognorm.rst.txt b/_sources/gallery/userdemo/colormap_normalizations_lognorm.rst.txt deleted file mode 120000 index 319d61fecf3..00000000000 --- a/_sources/gallery/userdemo/colormap_normalizations_lognorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/userdemo/colormap_normalizations_lognorm.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_normalizations_power.rst.txt b/_sources/gallery/userdemo/colormap_normalizations_power.rst.txt deleted file mode 120000 index c39dcf702e9..00000000000 --- a/_sources/gallery/userdemo/colormap_normalizations_power.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/userdemo/colormap_normalizations_power.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/colormap_normalizations_symlognorm.rst.txt b/_sources/gallery/userdemo/colormap_normalizations_symlognorm.rst.txt deleted file mode 120000 index b899e9ba2f9..00000000000 --- a/_sources/gallery/userdemo/colormap_normalizations_symlognorm.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/gallery/userdemo/colormap_normalizations_symlognorm.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/connect_simple01.rst.txt b/_sources/gallery/userdemo/connect_simple01.rst.txt deleted file mode 120000 index bd1cf82c9c7..00000000000 --- a/_sources/gallery/userdemo/connect_simple01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/connect_simple01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/connectionstyle_demo.rst.txt b/_sources/gallery/userdemo/connectionstyle_demo.rst.txt deleted file mode 120000 index 4654c72b818..00000000000 --- a/_sources/gallery/userdemo/connectionstyle_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/connectionstyle_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/custom_boxstyle01.rst.txt b/_sources/gallery/userdemo/custom_boxstyle01.rst.txt deleted file mode 120000 index 5d2a3595c65..00000000000 --- a/_sources/gallery/userdemo/custom_boxstyle01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/custom_boxstyle01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/custom_boxstyle02.rst.txt b/_sources/gallery/userdemo/custom_boxstyle02.rst.txt deleted file mode 120000 index 3aac29960de..00000000000 --- a/_sources/gallery/userdemo/custom_boxstyle02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.2.2/_sources/gallery/userdemo/custom_boxstyle02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_axis_direction.rst.txt b/_sources/gallery/userdemo/demo_axis_direction.rst.txt deleted file mode 120000 index 20d3258d40e..00000000000 --- a/_sources/gallery/userdemo/demo_axis_direction.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/demo_axis_direction.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_gridspec01.rst.txt b/_sources/gallery/userdemo/demo_gridspec01.rst.txt deleted file mode 120000 index 568567ff931..00000000000 --- a/_sources/gallery/userdemo/demo_gridspec01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/demo_gridspec01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_gridspec02.rst.txt b/_sources/gallery/userdemo/demo_gridspec02.rst.txt deleted file mode 120000 index 02f6bda23a8..00000000000 --- a/_sources/gallery/userdemo/demo_gridspec02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/userdemo/demo_gridspec02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_gridspec03.rst.txt b/_sources/gallery/userdemo/demo_gridspec03.rst.txt deleted file mode 120000 index 884a7028837..00000000000 --- a/_sources/gallery/userdemo/demo_gridspec03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/demo_gridspec03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_gridspec04.rst.txt b/_sources/gallery/userdemo/demo_gridspec04.rst.txt deleted file mode 120000 index 8ef9978fe68..00000000000 --- a/_sources/gallery/userdemo/demo_gridspec04.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/userdemo/demo_gridspec04.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_gridspec05.rst.txt b/_sources/gallery/userdemo/demo_gridspec05.rst.txt deleted file mode 120000 index 7313ddb98f7..00000000000 --- a/_sources/gallery/userdemo/demo_gridspec05.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.3/_sources/gallery/userdemo/demo_gridspec05.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_gridspec06.rst.txt b/_sources/gallery/userdemo/demo_gridspec06.rst.txt deleted file mode 120000 index 14cb1623546..00000000000 --- a/_sources/gallery/userdemo/demo_gridspec06.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/demo_gridspec06.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_parasite_axes_sgskip.rst.txt b/_sources/gallery/userdemo/demo_parasite_axes_sgskip.rst.txt deleted file mode 120000 index 72d93e8802e..00000000000 --- a/_sources/gallery/userdemo/demo_parasite_axes_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/demo_parasite_axes_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_ticklabel_alignment.rst.txt b/_sources/gallery/userdemo/demo_ticklabel_alignment.rst.txt deleted file mode 120000 index e6222203e7a..00000000000 --- a/_sources/gallery/userdemo/demo_ticklabel_alignment.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/demo_ticklabel_alignment.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/demo_ticklabel_direction.rst.txt b/_sources/gallery/userdemo/demo_ticklabel_direction.rst.txt deleted file mode 120000 index 366b5ad3183..00000000000 --- a/_sources/gallery/userdemo/demo_ticklabel_direction.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/demo_ticklabel_direction.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/pgf_fonts.rst.txt b/_sources/gallery/userdemo/pgf_fonts.rst.txt deleted file mode 120000 index 6a27dd4cbc1..00000000000 --- a/_sources/gallery/userdemo/pgf_fonts.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/pgf_fonts.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/pgf_fonts_sgskip.rst.txt b/_sources/gallery/userdemo/pgf_fonts_sgskip.rst.txt deleted file mode 120000 index 9f589f9a789..00000000000 --- a/_sources/gallery/userdemo/pgf_fonts_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/userdemo/pgf_fonts_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/pgf_preamble_sgskip.rst.txt b/_sources/gallery/userdemo/pgf_preamble_sgskip.rst.txt deleted file mode 120000 index 075a4955802..00000000000 --- a/_sources/gallery/userdemo/pgf_preamble_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/pgf_preamble_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/pgf_texsystem.rst.txt b/_sources/gallery/userdemo/pgf_texsystem.rst.txt deleted file mode 120000 index d7acdea16c8..00000000000 --- a/_sources/gallery/userdemo/pgf_texsystem.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/pgf_texsystem.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/pgf_texsystem_sgskip.rst.txt b/_sources/gallery/userdemo/pgf_texsystem_sgskip.rst.txt deleted file mode 120000 index 459b5509cfe..00000000000 --- a/_sources/gallery/userdemo/pgf_texsystem_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.5/_sources/gallery/userdemo/pgf_texsystem_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/sg_execution_times.rst.txt b/_sources/gallery/userdemo/sg_execution_times.rst.txt deleted file mode 120000 index 6c86150b943..00000000000 --- a/_sources/gallery/userdemo/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_annotate01.rst.txt b/_sources/gallery/userdemo/simple_annotate01.rst.txt deleted file mode 120000 index 28fd30dd0d4..00000000000 --- a/_sources/gallery/userdemo/simple_annotate01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/simple_annotate01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_axis_direction01.rst.txt b/_sources/gallery/userdemo/simple_axis_direction01.rst.txt deleted file mode 120000 index f9cf334b7d0..00000000000 --- a/_sources/gallery/userdemo/simple_axis_direction01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/simple_axis_direction01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_axis_direction03.rst.txt b/_sources/gallery/userdemo/simple_axis_direction03.rst.txt deleted file mode 120000 index 43aae4575a1..00000000000 --- a/_sources/gallery/userdemo/simple_axis_direction03.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/simple_axis_direction03.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_axis_pad.rst.txt b/_sources/gallery/userdemo/simple_axis_pad.rst.txt deleted file mode 120000 index 5b8da5c7512..00000000000 --- a/_sources/gallery/userdemo/simple_axis_pad.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/simple_axis_pad.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_axisartist1.rst.txt b/_sources/gallery/userdemo/simple_axisartist1.rst.txt deleted file mode 120000 index b711a20b495..00000000000 --- a/_sources/gallery/userdemo/simple_axisartist1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/simple_axisartist1.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_axisline.rst.txt b/_sources/gallery/userdemo/simple_axisline.rst.txt deleted file mode 120000 index 5633e2188c9..00000000000 --- a/_sources/gallery/userdemo/simple_axisline.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/simple_axisline.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_axisline2.rst.txt b/_sources/gallery/userdemo/simple_axisline2.rst.txt deleted file mode 120000 index 8492ced0ab2..00000000000 --- a/_sources/gallery/userdemo/simple_axisline2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/simple_axisline2.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_axisline3.rst.txt b/_sources/gallery/userdemo/simple_axisline3.rst.txt deleted file mode 120000 index dfd8e684195..00000000000 --- a/_sources/gallery/userdemo/simple_axisline3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.1.2/_sources/gallery/userdemo/simple_axisline3.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_legend01.rst.txt b/_sources/gallery/userdemo/simple_legend01.rst.txt deleted file mode 120000 index 3893d2e545f..00000000000 --- a/_sources/gallery/userdemo/simple_legend01.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/simple_legend01.rst.txt \ No newline at end of file diff --git a/_sources/gallery/userdemo/simple_legend02.rst.txt b/_sources/gallery/userdemo/simple_legend02.rst.txt deleted file mode 120000 index 616cba062b1..00000000000 --- a/_sources/gallery/userdemo/simple_legend02.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/userdemo/simple_legend02.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/annotated_cursor.rst.txt b/_sources/gallery/widgets/annotated_cursor.rst.txt deleted file mode 120000 index dec272b4e4f..00000000000 --- a/_sources/gallery/widgets/annotated_cursor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/annotated_cursor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/buttons.rst.txt b/_sources/gallery/widgets/buttons.rst.txt deleted file mode 120000 index 72315a79609..00000000000 --- a/_sources/gallery/widgets/buttons.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/buttons.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/check_buttons.rst.txt b/_sources/gallery/widgets/check_buttons.rst.txt deleted file mode 120000 index f5b3a8e3e93..00000000000 --- a/_sources/gallery/widgets/check_buttons.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/check_buttons.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/cursor.rst.txt b/_sources/gallery/widgets/cursor.rst.txt deleted file mode 120000 index 4b2d725e025..00000000000 --- a/_sources/gallery/widgets/cursor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/cursor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/lasso_selector_demo_sgskip.rst.txt b/_sources/gallery/widgets/lasso_selector_demo_sgskip.rst.txt deleted file mode 120000 index 8e045c240cd..00000000000 --- a/_sources/gallery/widgets/lasso_selector_demo_sgskip.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/lasso_selector_demo_sgskip.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/menu.rst.txt b/_sources/gallery/widgets/menu.rst.txt deleted file mode 120000 index 5bb4ffc6f6c..00000000000 --- a/_sources/gallery/widgets/menu.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/menu.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/mouse_cursor.rst.txt b/_sources/gallery/widgets/mouse_cursor.rst.txt deleted file mode 120000 index 56d374b2dc5..00000000000 --- a/_sources/gallery/widgets/mouse_cursor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/mouse_cursor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/multicursor.rst.txt b/_sources/gallery/widgets/multicursor.rst.txt deleted file mode 120000 index 2776b0b386f..00000000000 --- a/_sources/gallery/widgets/multicursor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/multicursor.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/polygon_selector_demo.rst.txt b/_sources/gallery/widgets/polygon_selector_demo.rst.txt deleted file mode 120000 index 77268e467e3..00000000000 --- a/_sources/gallery/widgets/polygon_selector_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/polygon_selector_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/radio_buttons.rst.txt b/_sources/gallery/widgets/radio_buttons.rst.txt deleted file mode 120000 index 296f0ee9b5b..00000000000 --- a/_sources/gallery/widgets/radio_buttons.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/radio_buttons.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/range_slider.rst.txt b/_sources/gallery/widgets/range_slider.rst.txt deleted file mode 120000 index 4052da3914e..00000000000 --- a/_sources/gallery/widgets/range_slider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/range_slider.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/rectangle_selector.rst.txt b/_sources/gallery/widgets/rectangle_selector.rst.txt deleted file mode 120000 index 5febcee6306..00000000000 --- a/_sources/gallery/widgets/rectangle_selector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/rectangle_selector.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/sg_execution_times.rst.txt b/_sources/gallery/widgets/sg_execution_times.rst.txt deleted file mode 120000 index c49ec561a80..00000000000 --- a/_sources/gallery/widgets/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/slider_demo.rst.txt b/_sources/gallery/widgets/slider_demo.rst.txt deleted file mode 120000 index b4505329aee..00000000000 --- a/_sources/gallery/widgets/slider_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/slider_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/slider_snap_demo.rst.txt b/_sources/gallery/widgets/slider_snap_demo.rst.txt deleted file mode 120000 index 9c6a65cf3e4..00000000000 --- a/_sources/gallery/widgets/slider_snap_demo.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/slider_snap_demo.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/span_selector.rst.txt b/_sources/gallery/widgets/span_selector.rst.txt deleted file mode 120000 index 204f73d9eb0..00000000000 --- a/_sources/gallery/widgets/span_selector.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/span_selector.rst.txt \ No newline at end of file diff --git a/_sources/gallery/widgets/textbox.rst.txt b/_sources/gallery/widgets/textbox.rst.txt deleted file mode 120000 index 4c29662dc4c..00000000000 --- a/_sources/gallery/widgets/textbox.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/gallery/widgets/textbox.rst.txt \ No newline at end of file diff --git a/_sources/glossary/index.rst.txt b/_sources/glossary/index.rst.txt deleted file mode 120000 index 63924a4da9a..00000000000 --- a/_sources/glossary/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.3.4/_sources/glossary/index.rst.txt \ No newline at end of file diff --git a/_sources/glossary/index.txt b/_sources/glossary/index.txt deleted file mode 120000 index a253bde7313..00000000000 --- a/_sources/glossary/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/glossary/index.txt \ No newline at end of file diff --git a/_sources/index.rst.txt b/_sources/index.rst.txt deleted file mode 100644 index 464cdc7e36f..00000000000 --- a/_sources/index.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -.. title:: Matplotlib - -.. raw:: html - :file: body.html \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/anchored_artists_api.rst.txt b/_sources/mpl_toolkits/axes_grid/api/anchored_artists_api.rst.txt deleted file mode 120000 index 6db91e4a369..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/anchored_artists_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/api/anchored_artists_api.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.rst.txt b/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.rst.txt deleted file mode 120000 index d4b577b8465..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.txt b/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.txt deleted file mode 120000 index f1895ad87a0..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/api/axes_divider_api.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.rst.txt b/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.rst.txt deleted file mode 120000 index 736874e6129..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.txt b/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.txt deleted file mode 120000 index e0b9c9ece73..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/api/axes_grid_api.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axes_size_api.rst.txt b/_sources/mpl_toolkits/axes_grid/api/axes_size_api.rst.txt deleted file mode 120000 index bda397d551a..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axes_size_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/api/axes_size_api.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axes_size_api.txt b/_sources/mpl_toolkits/axes_grid/api/axes_size_api.txt deleted file mode 120000 index 9c4f1f2a9a9..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axes_size_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/api/axes_size_api.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.rst.txt b/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.rst.txt deleted file mode 120000 index f26ae53804d..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.txt b/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.txt deleted file mode 120000 index 9d3d77ee34b..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/api/axis_artist_api.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/index.rst.txt b/_sources/mpl_toolkits/axes_grid/api/index.rst.txt deleted file mode 120000 index 52777023205..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/api/index.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/index.txt b/_sources/mpl_toolkits/axes_grid/api/index.txt deleted file mode 120000 index 1acc30c4439..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/api/index.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.rst.txt b/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.rst.txt deleted file mode 120000 index c73ed01ae7c..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.txt b/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.txt deleted file mode 120000 index fa3d9047b9e..00000000000 --- a/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/api/inset_locator_api.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/index.rst.txt b/_sources/mpl_toolkits/axes_grid/index.rst.txt deleted file mode 120000 index 23cb034baff..00000000000 --- a/_sources/mpl_toolkits/axes_grid/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/mpl_toolkits/axes_grid/index.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/index.txt b/_sources/mpl_toolkits/axes_grid/index.txt deleted file mode 120000 index b9f4ce1bbab..00000000000 --- a/_sources/mpl_toolkits/axes_grid/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/mpl_toolkits/axes_grid/index.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/axes_divider.rst.txt b/_sources/mpl_toolkits/axes_grid/users/axes_divider.rst.txt deleted file mode 120000 index 20601ebd8ab..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/axes_divider.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/users/axes_divider.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/axes_divider.txt b/_sources/mpl_toolkits/axes_grid/users/axes_divider.txt deleted file mode 120000 index 668d36ab6fd..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/axes_divider.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/users/axes_divider.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/axisartist.rst.txt b/_sources/mpl_toolkits/axes_grid/users/axisartist.rst.txt deleted file mode 120000 index 5bb27239e3f..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/axisartist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/users/axisartist.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/axisartist.txt b/_sources/mpl_toolkits/axes_grid/users/axisartist.txt deleted file mode 120000 index b2d250496b7..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/axisartist.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/users/axisartist.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/index.rst.txt b/_sources/mpl_toolkits/axes_grid/users/index.rst.txt deleted file mode 120000 index dfed1e213a5..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/users/index.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/index.txt b/_sources/mpl_toolkits/axes_grid/users/index.txt deleted file mode 120000 index 519051e83b9..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/users/index.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/overview.rst.txt b/_sources/mpl_toolkits/axes_grid/users/overview.rst.txt deleted file mode 120000 index d49c48dd931..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/overview.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../2.0.2/_sources/mpl_toolkits/axes_grid/users/overview.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid/users/overview.txt b/_sources/mpl_toolkits/axes_grid/users/overview.txt deleted file mode 120000 index df5c4f9a117..00000000000 --- a/_sources/mpl_toolkits/axes_grid/users/overview.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../1.5.3/_sources/mpl_toolkits/axes_grid/users/overview.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axes_grid1/index.rst.txt b/_sources/mpl_toolkits/axes_grid1/index.rst.txt deleted file mode 120000 index 9c5033fb03c..00000000000 --- a/_sources/mpl_toolkits/axes_grid1/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/mpl_toolkits/axes_grid1/index.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/axisartist/index.rst.txt b/_sources/mpl_toolkits/axisartist/index.rst.txt deleted file mode 120000 index 9a236287c6e..00000000000 --- a/_sources/mpl_toolkits/axisartist/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/mpl_toolkits/axisartist/index.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/index.rst.txt b/_sources/mpl_toolkits/index.rst.txt deleted file mode 120000 index 9335a5eb35c..00000000000 --- a/_sources/mpl_toolkits/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.2.2/_sources/mpl_toolkits/index.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/index.txt b/_sources/mpl_toolkits/index.txt deleted file mode 120000 index 5dcea389a9b..00000000000 --- a/_sources/mpl_toolkits/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/mpl_toolkits/index.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/api.rst.txt b/_sources/mpl_toolkits/mplot3d/api.rst.txt deleted file mode 120000 index 295efc8327d..00000000000 --- a/_sources/mpl_toolkits/mplot3d/api.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/mpl_toolkits/mplot3d/api.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/api.txt b/_sources/mpl_toolkits/mplot3d/api.txt deleted file mode 120000 index 7dd6b628ee2..00000000000 --- a/_sources/mpl_toolkits/mplot3d/api.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/mpl_toolkits/mplot3d/api.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/faq.rst.txt b/_sources/mpl_toolkits/mplot3d/faq.rst.txt deleted file mode 120000 index fa0ad76fddc..00000000000 --- a/_sources/mpl_toolkits/mplot3d/faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/mpl_toolkits/mplot3d/faq.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/faq.txt b/_sources/mpl_toolkits/mplot3d/faq.txt deleted file mode 120000 index 235de17df2d..00000000000 --- a/_sources/mpl_toolkits/mplot3d/faq.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/mpl_toolkits/mplot3d/faq.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/index.rst.txt b/_sources/mpl_toolkits/mplot3d/index.rst.txt deleted file mode 120000 index 05914f6a5d3..00000000000 --- a/_sources/mpl_toolkits/mplot3d/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.2.2/_sources/mpl_toolkits/mplot3d/index.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/index.txt b/_sources/mpl_toolkits/mplot3d/index.txt deleted file mode 120000 index 5bdde048fd8..00000000000 --- a/_sources/mpl_toolkits/mplot3d/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/mpl_toolkits/mplot3d/index.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/tutorial.rst.txt b/_sources/mpl_toolkits/mplot3d/tutorial.rst.txt deleted file mode 120000 index defe3f8dbe8..00000000000 --- a/_sources/mpl_toolkits/mplot3d/tutorial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../2.0.2/_sources/mpl_toolkits/mplot3d/tutorial.rst.txt \ No newline at end of file diff --git a/_sources/mpl_toolkits/mplot3d/tutorial.txt b/_sources/mpl_toolkits/mplot3d/tutorial.txt deleted file mode 120000 index 7df1a3ddcf5..00000000000 --- a/_sources/mpl_toolkits/mplot3d/tutorial.txt +++ /dev/null @@ -1 +0,0 @@ -../../../1.5.3/_sources/mpl_toolkits/mplot3d/tutorial.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/barbs.rst.txt b/_sources/plot_types/arrays/barbs.rst.txt deleted file mode 120000 index 5a2a1b3b25d..00000000000 --- a/_sources/plot_types/arrays/barbs.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/barbs.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/contour.rst.txt b/_sources/plot_types/arrays/contour.rst.txt deleted file mode 120000 index 27a0c20c417..00000000000 --- a/_sources/plot_types/arrays/contour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/contour.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/contourf.rst.txt b/_sources/plot_types/arrays/contourf.rst.txt deleted file mode 120000 index 114bdbe86c6..00000000000 --- a/_sources/plot_types/arrays/contourf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/contourf.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/imshow.rst.txt b/_sources/plot_types/arrays/imshow.rst.txt deleted file mode 120000 index f3ed0dff5de..00000000000 --- a/_sources/plot_types/arrays/imshow.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/imshow.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/pcolormesh.rst.txt b/_sources/plot_types/arrays/pcolormesh.rst.txt deleted file mode 120000 index 5e00542f012..00000000000 --- a/_sources/plot_types/arrays/pcolormesh.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/pcolormesh.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/quiver.rst.txt b/_sources/plot_types/arrays/quiver.rst.txt deleted file mode 120000 index af8911d5ae7..00000000000 --- a/_sources/plot_types/arrays/quiver.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/quiver.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/sg_execution_times.rst.txt b/_sources/plot_types/arrays/sg_execution_times.rst.txt deleted file mode 120000 index 548bd08472b..00000000000 --- a/_sources/plot_types/arrays/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/arrays/streamplot.rst.txt b/_sources/plot_types/arrays/streamplot.rst.txt deleted file mode 120000 index 7e81d06faf7..00000000000 --- a/_sources/plot_types/arrays/streamplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/arrays/streamplot.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/basic/bar.rst.txt b/_sources/plot_types/basic/bar.rst.txt deleted file mode 120000 index acc828ef222..00000000000 --- a/_sources/plot_types/basic/bar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/basic/bar.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/basic/fill_between.rst.txt b/_sources/plot_types/basic/fill_between.rst.txt deleted file mode 120000 index 610b12c8d4f..00000000000 --- a/_sources/plot_types/basic/fill_between.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/basic/fill_between.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/basic/plot.rst.txt b/_sources/plot_types/basic/plot.rst.txt deleted file mode 120000 index d4d321fe425..00000000000 --- a/_sources/plot_types/basic/plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/basic/plot.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/basic/scatter_plot.rst.txt b/_sources/plot_types/basic/scatter_plot.rst.txt deleted file mode 120000 index 1fc55c617bf..00000000000 --- a/_sources/plot_types/basic/scatter_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/basic/scatter_plot.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/basic/sg_execution_times.rst.txt b/_sources/plot_types/basic/sg_execution_times.rst.txt deleted file mode 120000 index adf8a614e7a..00000000000 --- a/_sources/plot_types/basic/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/basic/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/basic/stem.rst.txt b/_sources/plot_types/basic/stem.rst.txt deleted file mode 120000 index af8e09ada1d..00000000000 --- a/_sources/plot_types/basic/stem.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/basic/stem.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/basic/step.rst.txt b/_sources/plot_types/basic/step.rst.txt deleted file mode 120000 index 1b0bb32b956..00000000000 --- a/_sources/plot_types/basic/step.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/basic/step.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/index.rst.txt b/_sources/plot_types/index.rst.txt deleted file mode 120000 index 55608746c0f..00000000000 --- a/_sources/plot_types/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/plot_types/index.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/boxplot_plot.rst.txt b/_sources/plot_types/stats/boxplot_plot.rst.txt deleted file mode 120000 index 800d4789621..00000000000 --- a/_sources/plot_types/stats/boxplot_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/boxplot_plot.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/errorbar_plot.rst.txt b/_sources/plot_types/stats/errorbar_plot.rst.txt deleted file mode 120000 index e3465313f3a..00000000000 --- a/_sources/plot_types/stats/errorbar_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/errorbar_plot.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/eventplot.rst.txt b/_sources/plot_types/stats/eventplot.rst.txt deleted file mode 120000 index 7d2c59fd4a8..00000000000 --- a/_sources/plot_types/stats/eventplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/eventplot.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/hexbin.rst.txt b/_sources/plot_types/stats/hexbin.rst.txt deleted file mode 120000 index 65916046fbd..00000000000 --- a/_sources/plot_types/stats/hexbin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/hexbin.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/hist2d.rst.txt b/_sources/plot_types/stats/hist2d.rst.txt deleted file mode 120000 index 8a92d3f82fb..00000000000 --- a/_sources/plot_types/stats/hist2d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/hist2d.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/hist_plot.rst.txt b/_sources/plot_types/stats/hist_plot.rst.txt deleted file mode 120000 index 72b5a4aa169..00000000000 --- a/_sources/plot_types/stats/hist_plot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/hist_plot.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/pie.rst.txt b/_sources/plot_types/stats/pie.rst.txt deleted file mode 120000 index 54e757eb631..00000000000 --- a/_sources/plot_types/stats/pie.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/pie.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/sg_execution_times.rst.txt b/_sources/plot_types/stats/sg_execution_times.rst.txt deleted file mode 120000 index 94392a56b0c..00000000000 --- a/_sources/plot_types/stats/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/stats/violin.rst.txt b/_sources/plot_types/stats/violin.rst.txt deleted file mode 120000 index 19ff7f01ba6..00000000000 --- a/_sources/plot_types/stats/violin.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/stats/violin.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/unstructured/sg_execution_times.rst.txt b/_sources/plot_types/unstructured/sg_execution_times.rst.txt deleted file mode 120000 index 4beca504307..00000000000 --- a/_sources/plot_types/unstructured/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/unstructured/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/unstructured/tricontour.rst.txt b/_sources/plot_types/unstructured/tricontour.rst.txt deleted file mode 120000 index 392f7de38f5..00000000000 --- a/_sources/plot_types/unstructured/tricontour.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/unstructured/tricontour.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/unstructured/tricontourf.rst.txt b/_sources/plot_types/unstructured/tricontourf.rst.txt deleted file mode 120000 index 3deaa481f58..00000000000 --- a/_sources/plot_types/unstructured/tricontourf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/unstructured/tricontourf.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/unstructured/tripcolor.rst.txt b/_sources/plot_types/unstructured/tripcolor.rst.txt deleted file mode 120000 index dc7a151fcb8..00000000000 --- a/_sources/plot_types/unstructured/tripcolor.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/unstructured/tripcolor.rst.txt \ No newline at end of file diff --git a/_sources/plot_types/unstructured/triplot.rst.txt b/_sources/plot_types/unstructured/triplot.rst.txt deleted file mode 120000 index 69bed9ec9d7..00000000000 --- a/_sources/plot_types/unstructured/triplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/plot_types/unstructured/triplot.rst.txt \ No newline at end of file diff --git a/_sources/resources/index.rst.txt b/_sources/resources/index.rst.txt deleted file mode 120000 index 117d4966b73..00000000000 --- a/_sources/resources/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/resources/index.rst.txt \ No newline at end of file diff --git a/_sources/resources/index.txt b/_sources/resources/index.txt deleted file mode 120000 index afe3b670022..00000000000 --- a/_sources/resources/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/resources/index.txt \ No newline at end of file diff --git a/_sources/style_changes.txt b/_sources/style_changes.txt deleted file mode 120000 index b64ae8b8cf3..00000000000 --- a/_sources/style_changes.txt +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_sources/style_changes.txt \ No newline at end of file diff --git a/_sources/thirdpartypackages/index.rst.txt b/_sources/thirdpartypackages/index.rst.txt deleted file mode 120000 index 7a0c660c25c..00000000000 --- a/_sources/thirdpartypackages/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/thirdpartypackages/index.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/advanced/blitting.rst.txt b/_sources/tutorials/advanced/blitting.rst.txt deleted file mode 120000 index 08c7be8ceea..00000000000 --- a/_sources/tutorials/advanced/blitting.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/advanced/blitting.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/advanced/path_tutorial.rst.txt b/_sources/tutorials/advanced/path_tutorial.rst.txt deleted file mode 120000 index abe7c7cb17b..00000000000 --- a/_sources/tutorials/advanced/path_tutorial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/advanced/path_tutorial.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/advanced/patheffects_guide.rst.txt b/_sources/tutorials/advanced/patheffects_guide.rst.txt deleted file mode 120000 index d1e0e233f91..00000000000 --- a/_sources/tutorials/advanced/patheffects_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/advanced/patheffects_guide.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/advanced/sg_execution_times.rst.txt b/_sources/tutorials/advanced/sg_execution_times.rst.txt deleted file mode 120000 index 33cc8b36c38..00000000000 --- a/_sources/tutorials/advanced/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/advanced/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/advanced/transforms_tutorial.rst.txt b/_sources/tutorials/advanced/transforms_tutorial.rst.txt deleted file mode 120000 index a00b5b91d82..00000000000 --- a/_sources/tutorials/advanced/transforms_tutorial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/advanced/transforms_tutorial.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/colors/colorbar_only.rst.txt b/_sources/tutorials/colors/colorbar_only.rst.txt deleted file mode 120000 index 610234c6dfb..00000000000 --- a/_sources/tutorials/colors/colorbar_only.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/colors/colorbar_only.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/colors/colormap-manipulation.rst.txt b/_sources/tutorials/colors/colormap-manipulation.rst.txt deleted file mode 120000 index 865861eb12b..00000000000 --- a/_sources/tutorials/colors/colormap-manipulation.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/colors/colormap-manipulation.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/colors/colormapnorms.rst.txt b/_sources/tutorials/colors/colormapnorms.rst.txt deleted file mode 120000 index 14ce825eb38..00000000000 --- a/_sources/tutorials/colors/colormapnorms.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/colors/colormapnorms.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/colors/colormaps.rst.txt b/_sources/tutorials/colors/colormaps.rst.txt deleted file mode 120000 index 3f285faafae..00000000000 --- a/_sources/tutorials/colors/colormaps.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/colors/colormaps.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/colors/colors.rst.txt b/_sources/tutorials/colors/colors.rst.txt deleted file mode 120000 index 26c1545b272..00000000000 --- a/_sources/tutorials/colors/colors.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/colors/colors.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/colors/sg_execution_times.rst.txt b/_sources/tutorials/colors/sg_execution_times.rst.txt deleted file mode 120000 index 7cc7005abb5..00000000000 --- a/_sources/tutorials/colors/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/colors/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/index.rst.txt b/_sources/tutorials/index.rst.txt deleted file mode 120000 index 7b5d55acfa5..00000000000 --- a/_sources/tutorials/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/tutorials/index.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/artists.rst.txt b/_sources/tutorials/intermediate/artists.rst.txt deleted file mode 120000 index a0d2925667f..00000000000 --- a/_sources/tutorials/intermediate/artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/artists.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/autoscale.rst.txt b/_sources/tutorials/intermediate/autoscale.rst.txt deleted file mode 120000 index 2f23448560c..00000000000 --- a/_sources/tutorials/intermediate/autoscale.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/autoscale.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/color_cycle.rst.txt b/_sources/tutorials/intermediate/color_cycle.rst.txt deleted file mode 120000 index 4e318c36001..00000000000 --- a/_sources/tutorials/intermediate/color_cycle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/color_cycle.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/constrainedlayout_guide.rst.txt b/_sources/tutorials/intermediate/constrainedlayout_guide.rst.txt deleted file mode 120000 index c6b497d7cbb..00000000000 --- a/_sources/tutorials/intermediate/constrainedlayout_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/constrainedlayout_guide.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/gridspec.rst.txt b/_sources/tutorials/intermediate/gridspec.rst.txt deleted file mode 120000 index 461aff4c5ac..00000000000 --- a/_sources/tutorials/intermediate/gridspec.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.0/_sources/tutorials/intermediate/gridspec.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/imshow_extent.rst.txt b/_sources/tutorials/intermediate/imshow_extent.rst.txt deleted file mode 120000 index 544a624af94..00000000000 --- a/_sources/tutorials/intermediate/imshow_extent.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/imshow_extent.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/legend_guide.rst.txt b/_sources/tutorials/intermediate/legend_guide.rst.txt deleted file mode 120000 index dae74af9a85..00000000000 --- a/_sources/tutorials/intermediate/legend_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/legend_guide.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/sg_execution_times.rst.txt b/_sources/tutorials/intermediate/sg_execution_times.rst.txt deleted file mode 120000 index 36fa761ede7..00000000000 --- a/_sources/tutorials/intermediate/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/intermediate/tight_layout_guide.rst.txt b/_sources/tutorials/intermediate/tight_layout_guide.rst.txt deleted file mode 120000 index 61dd311a90b..00000000000 --- a/_sources/tutorials/intermediate/tight_layout_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/intermediate/tight_layout_guide.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/introductory/customizing.rst.txt b/_sources/tutorials/introductory/customizing.rst.txt deleted file mode 120000 index 956674c938e..00000000000 --- a/_sources/tutorials/introductory/customizing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/introductory/customizing.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/introductory/images.rst.txt b/_sources/tutorials/introductory/images.rst.txt deleted file mode 120000 index 935cea6809b..00000000000 --- a/_sources/tutorials/introductory/images.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/introductory/images.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/introductory/lifecycle.rst.txt b/_sources/tutorials/introductory/lifecycle.rst.txt deleted file mode 120000 index 0b56727e753..00000000000 --- a/_sources/tutorials/introductory/lifecycle.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/introductory/lifecycle.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/introductory/pyplot.rst.txt b/_sources/tutorials/introductory/pyplot.rst.txt deleted file mode 120000 index 990adccdee4..00000000000 --- a/_sources/tutorials/introductory/pyplot.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/introductory/pyplot.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/introductory/sample_plots.rst.txt b/_sources/tutorials/introductory/sample_plots.rst.txt deleted file mode 120000 index f63f3294f5e..00000000000 --- a/_sources/tutorials/introductory/sample_plots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.4.3/_sources/tutorials/introductory/sample_plots.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/introductory/sg_execution_times.rst.txt b/_sources/tutorials/introductory/sg_execution_times.rst.txt deleted file mode 120000 index 55cdd6a2d50..00000000000 --- a/_sources/tutorials/introductory/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/introductory/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/introductory/usage.rst.txt b/_sources/tutorials/introductory/usage.rst.txt deleted file mode 120000 index 90a2becf9ea..00000000000 --- a/_sources/tutorials/introductory/usage.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.3/_sources/tutorials/introductory/usage.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/provisional/mosaic.rst.txt b/_sources/tutorials/provisional/mosaic.rst.txt deleted file mode 120000 index 2f5ee41fb4b..00000000000 --- a/_sources/tutorials/provisional/mosaic.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/provisional/mosaic.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/provisional/sg_execution_times.rst.txt b/_sources/tutorials/provisional/sg_execution_times.rst.txt deleted file mode 120000 index b78dc06d20b..00000000000 --- a/_sources/tutorials/provisional/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/provisional/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/text/annotations.rst.txt b/_sources/tutorials/text/annotations.rst.txt deleted file mode 120000 index 1b99b180279..00000000000 --- a/_sources/tutorials/text/annotations.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/text/annotations.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/text/mathtext.rst.txt b/_sources/tutorials/text/mathtext.rst.txt deleted file mode 120000 index 314089031d9..00000000000 --- a/_sources/tutorials/text/mathtext.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/text/mathtext.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/text/pgf.rst.txt b/_sources/tutorials/text/pgf.rst.txt deleted file mode 120000 index 6efbd8c6252..00000000000 --- a/_sources/tutorials/text/pgf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/text/pgf.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/text/sg_execution_times.rst.txt b/_sources/tutorials/text/sg_execution_times.rst.txt deleted file mode 120000 index eca86029a87..00000000000 --- a/_sources/tutorials/text/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/text/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/text/text_intro.rst.txt b/_sources/tutorials/text/text_intro.rst.txt deleted file mode 120000 index b254a5201d2..00000000000 --- a/_sources/tutorials/text/text_intro.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/text/text_intro.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/text/text_props.rst.txt b/_sources/tutorials/text/text_props.rst.txt deleted file mode 120000 index c442a1ad691..00000000000 --- a/_sources/tutorials/text/text_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/text/text_props.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/text/usetex.rst.txt b/_sources/tutorials/text/usetex.rst.txt deleted file mode 120000 index c86d3d99af5..00000000000 --- a/_sources/tutorials/text/usetex.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/text/usetex.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/toolkits/axes_grid.rst.txt b/_sources/tutorials/toolkits/axes_grid.rst.txt deleted file mode 120000 index 19916f0caad..00000000000 --- a/_sources/tutorials/toolkits/axes_grid.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/toolkits/axes_grid.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/toolkits/axisartist.rst.txt b/_sources/tutorials/toolkits/axisartist.rst.txt deleted file mode 120000 index ebe81fb2946..00000000000 --- a/_sources/tutorials/toolkits/axisartist.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/toolkits/axisartist.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/toolkits/mplot3d.rst.txt b/_sources/tutorials/toolkits/mplot3d.rst.txt deleted file mode 120000 index 4da9a0fb92b..00000000000 --- a/_sources/tutorials/toolkits/mplot3d.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/toolkits/mplot3d.rst.txt \ No newline at end of file diff --git a/_sources/tutorials/toolkits/sg_execution_times.rst.txt b/_sources/tutorials/toolkits/sg_execution_times.rst.txt deleted file mode 120000 index 2178e25461a..00000000000 --- a/_sources/tutorials/toolkits/sg_execution_times.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/tutorials/toolkits/sg_execution_times.rst.txt \ No newline at end of file diff --git a/_sources/users/annotations.rst.txt b/_sources/users/annotations.rst.txt deleted file mode 120000 index 223dba7eed5..00000000000 --- a/_sources/users/annotations.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/annotations.rst.txt \ No newline at end of file diff --git a/_sources/users/annotations_guide.txt b/_sources/users/annotations_guide.txt deleted file mode 120000 index 7d6bb8ba9df..00000000000 --- a/_sources/users/annotations_guide.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/annotations_guide.txt \ No newline at end of file diff --git a/_sources/users/annotations_intro.txt b/_sources/users/annotations_intro.txt deleted file mode 120000 index 7a6bd35d052..00000000000 --- a/_sources/users/annotations_intro.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/annotations_intro.txt \ No newline at end of file diff --git a/_sources/users/artists.rst.txt b/_sources/users/artists.rst.txt deleted file mode 120000 index ab22152ac27..00000000000 --- a/_sources/users/artists.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/artists.rst.txt \ No newline at end of file diff --git a/_sources/users/artists.txt b/_sources/users/artists.txt deleted file mode 120000 index c36cb2aa196..00000000000 --- a/_sources/users/artists.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/artists.txt \ No newline at end of file diff --git a/_sources/users/beginner.txt b/_sources/users/beginner.txt deleted file mode 120000 index 728d0520873..00000000000 --- a/_sources/users/beginner.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/beginner.txt \ No newline at end of file diff --git a/_sources/users/color_index.rst.txt b/_sources/users/color_index.rst.txt deleted file mode 120000 index 5d8f107611b..00000000000 --- a/_sources/users/color_index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/color_index.rst.txt \ No newline at end of file diff --git a/_sources/users/colormapnorms.rst.txt b/_sources/users/colormapnorms.rst.txt deleted file mode 120000 index 3e92dd49710..00000000000 --- a/_sources/users/colormapnorms.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/colormapnorms.rst.txt \ No newline at end of file diff --git a/_sources/users/colormapnorms.txt b/_sources/users/colormapnorms.txt deleted file mode 120000 index 1ce576352f7..00000000000 --- a/_sources/users/colormapnorms.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/colormapnorms.txt \ No newline at end of file diff --git a/_sources/users/colormaps.rst.txt b/_sources/users/colormaps.rst.txt deleted file mode 120000 index 0d41ea87a7c..00000000000 --- a/_sources/users/colormaps.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/colormaps.rst.txt \ No newline at end of file diff --git a/_sources/users/colormaps.txt b/_sources/users/colormaps.txt deleted file mode 120000 index 296f357b36c..00000000000 --- a/_sources/users/colormaps.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/colormaps.txt \ No newline at end of file diff --git a/_sources/users/colors.rst.txt b/_sources/users/colors.rst.txt deleted file mode 120000 index 0309fe859e2..00000000000 --- a/_sources/users/colors.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/colors.rst.txt \ No newline at end of file diff --git a/_sources/users/configuration.txt b/_sources/users/configuration.txt deleted file mode 120000 index 156b97540ca..00000000000 --- a/_sources/users/configuration.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/configuration.txt \ No newline at end of file diff --git a/_sources/users/credits.rst.txt b/_sources/users/credits.rst.txt deleted file mode 120000 index a78d9c333c9..00000000000 --- a/_sources/users/credits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/credits.rst.txt \ No newline at end of file diff --git a/_sources/users/credits.txt b/_sources/users/credits.txt deleted file mode 120000 index b5990cadd9c..00000000000 --- a/_sources/users/credits.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/credits.txt \ No newline at end of file diff --git a/_sources/users/customizing.rst.txt b/_sources/users/customizing.rst.txt deleted file mode 120000 index 3695456f440..00000000000 --- a/_sources/users/customizing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/customizing.rst.txt \ No newline at end of file diff --git a/_sources/users/customizing.txt b/_sources/users/customizing.txt deleted file mode 120000 index a178135a8af..00000000000 --- a/_sources/users/customizing.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/customizing.txt \ No newline at end of file diff --git a/_sources/users/developer.txt b/_sources/users/developer.txt deleted file mode 120000 index b95c613462f..00000000000 --- a/_sources/users/developer.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/developer.txt \ No newline at end of file diff --git a/_sources/users/dflt_style_changes.rst.txt b/_sources/users/dflt_style_changes.rst.txt deleted file mode 120000 index 68b73ccb93f..00000000000 --- a/_sources/users/dflt_style_changes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/dflt_style_changes.rst.txt \ No newline at end of file diff --git a/_sources/users/event_handling.rst.txt b/_sources/users/event_handling.rst.txt deleted file mode 120000 index 5c7181ca2f5..00000000000 --- a/_sources/users/event_handling.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/event_handling.rst.txt \ No newline at end of file diff --git a/_sources/users/event_handling.txt b/_sources/users/event_handling.txt deleted file mode 120000 index 6e5915d2280..00000000000 --- a/_sources/users/event_handling.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/event_handling.txt \ No newline at end of file diff --git a/_sources/users/examples_index.rst.txt b/_sources/users/examples_index.rst.txt deleted file mode 120000 index dcbeac9dbb8..00000000000 --- a/_sources/users/examples_index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/examples_index.rst.txt \ No newline at end of file diff --git a/_sources/users/explain/backends.rst.txt b/_sources/users/explain/backends.rst.txt deleted file mode 120000 index eb6e3b4cbfe..00000000000 --- a/_sources/users/explain/backends.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/explain/backends.rst.txt \ No newline at end of file diff --git a/_sources/users/explain/event_handling.rst.txt b/_sources/users/explain/event_handling.rst.txt deleted file mode 120000 index 854a2ab2c02..00000000000 --- a/_sources/users/explain/event_handling.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/explain/event_handling.rst.txt \ No newline at end of file diff --git a/_sources/users/explain/fonts.rst.txt b/_sources/users/explain/fonts.rst.txt deleted file mode 120000 index d502e8f8bdb..00000000000 --- a/_sources/users/explain/fonts.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/explain/fonts.rst.txt \ No newline at end of file diff --git a/_sources/users/explain/index.rst.txt b/_sources/users/explain/index.rst.txt deleted file mode 120000 index 591e2ceb06b..00000000000 --- a/_sources/users/explain/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/explain/index.rst.txt \ No newline at end of file diff --git a/_sources/users/explain/interactive.rst.txt b/_sources/users/explain/interactive.rst.txt deleted file mode 120000 index ef647f1a59f..00000000000 --- a/_sources/users/explain/interactive.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/explain/interactive.rst.txt \ No newline at end of file diff --git a/_sources/users/explain/interactive_guide.rst.txt b/_sources/users/explain/interactive_guide.rst.txt deleted file mode 120000 index 646f080d225..00000000000 --- a/_sources/users/explain/interactive_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/explain/interactive_guide.rst.txt \ No newline at end of file diff --git a/_sources/users/explain/performance.rst.txt b/_sources/users/explain/performance.rst.txt deleted file mode 120000 index 9792a44b53d..00000000000 --- a/_sources/users/explain/performance.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/explain/performance.rst.txt \ No newline at end of file diff --git a/_sources/users/faq/environment_variables_faq.rst.txt b/_sources/users/faq/environment_variables_faq.rst.txt deleted file mode 120000 index 4414b096f77..00000000000 --- a/_sources/users/faq/environment_variables_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/faq/environment_variables_faq.rst.txt \ No newline at end of file diff --git a/_sources/users/faq/howto_faq.rst.txt b/_sources/users/faq/howto_faq.rst.txt deleted file mode 120000 index 9d4a36c2166..00000000000 --- a/_sources/users/faq/howto_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/faq/howto_faq.rst.txt \ No newline at end of file diff --git a/_sources/users/faq/index.rst.txt b/_sources/users/faq/index.rst.txt deleted file mode 120000 index c4edaa79a2c..00000000000 --- a/_sources/users/faq/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/faq/index.rst.txt \ No newline at end of file diff --git a/_sources/users/faq/installing_faq.rst.txt b/_sources/users/faq/installing_faq.rst.txt deleted file mode 120000 index 0dbe32d6a49..00000000000 --- a/_sources/users/faq/installing_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.0/_sources/users/faq/installing_faq.rst.txt \ No newline at end of file diff --git a/_sources/users/faq/troubleshooting_faq.rst.txt b/_sources/users/faq/troubleshooting_faq.rst.txt deleted file mode 120000 index 4a060826e45..00000000000 --- a/_sources/users/faq/troubleshooting_faq.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/faq/troubleshooting_faq.rst.txt \ No newline at end of file diff --git a/_sources/users/getting_started/index.rst.txt b/_sources/users/getting_started/index.rst.txt deleted file mode 120000 index 067fcdb5884..00000000000 --- a/_sources/users/getting_started/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/getting_started/index.rst.txt \ No newline at end of file diff --git a/_sources/users/github_stats.rst.txt b/_sources/users/github_stats.rst.txt deleted file mode 120000 index 383af766602..00000000000 --- a/_sources/users/github_stats.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/users/github_stats.rst.txt \ No newline at end of file diff --git a/_sources/users/github_stats.txt b/_sources/users/github_stats.txt deleted file mode 120000 index 3ab4a17e276..00000000000 --- a/_sources/users/github_stats.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/github_stats.txt \ No newline at end of file diff --git a/_sources/users/gridspec.rst.txt b/_sources/users/gridspec.rst.txt deleted file mode 120000 index f3bffe3eae6..00000000000 --- a/_sources/users/gridspec.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/gridspec.rst.txt \ No newline at end of file diff --git a/_sources/users/gridspec.txt b/_sources/users/gridspec.txt deleted file mode 120000 index 240f561e13f..00000000000 --- a/_sources/users/gridspec.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/gridspec.txt \ No newline at end of file diff --git a/_sources/users/history.rst.txt b/_sources/users/history.rst.txt deleted file mode 120000 index f562b7db9a5..00000000000 --- a/_sources/users/history.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/history.rst.txt \ No newline at end of file diff --git a/_sources/users/image_tutorial.rst.txt b/_sources/users/image_tutorial.rst.txt deleted file mode 120000 index 106a0716adc..00000000000 --- a/_sources/users/image_tutorial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/image_tutorial.rst.txt \ No newline at end of file diff --git a/_sources/users/image_tutorial.txt b/_sources/users/image_tutorial.txt deleted file mode 120000 index d244176c26e..00000000000 --- a/_sources/users/image_tutorial.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/image_tutorial.txt \ No newline at end of file diff --git a/_sources/users/index.rst.txt b/_sources/users/index.rst.txt deleted file mode 120000 index 533c1c1021e..00000000000 --- a/_sources/users/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/users/index.rst.txt \ No newline at end of file diff --git a/_sources/users/index.txt b/_sources/users/index.txt deleted file mode 120000 index ae395f2c185..00000000000 --- a/_sources/users/index.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/index.txt \ No newline at end of file diff --git a/_sources/users/index_text.rst.txt b/_sources/users/index_text.rst.txt deleted file mode 120000 index 8b2b537da81..00000000000 --- a/_sources/users/index_text.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/index_text.rst.txt \ No newline at end of file diff --git a/_sources/users/index_text.txt b/_sources/users/index_text.txt deleted file mode 120000 index 6a27a521f6d..00000000000 --- a/_sources/users/index_text.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/index_text.txt \ No newline at end of file diff --git a/_sources/users/installing.rst.txt b/_sources/users/installing.rst.txt deleted file mode 120000 index 6ce7f91c68f..00000000000 --- a/_sources/users/installing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/installing.rst.txt \ No newline at end of file diff --git a/_sources/users/installing.txt b/_sources/users/installing.txt deleted file mode 120000 index 3e5dbca45f6..00000000000 --- a/_sources/users/installing.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/installing.txt \ No newline at end of file diff --git a/_sources/users/installing/index.rst.txt b/_sources/users/installing/index.rst.txt deleted file mode 120000 index 7e6dc7e4796..00000000000 --- a/_sources/users/installing/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/installing/index.rst.txt \ No newline at end of file diff --git a/_sources/users/installing/installing_source.rst.txt b/_sources/users/installing/installing_source.rst.txt deleted file mode 120000 index 5d9006a5584..00000000000 --- a/_sources/users/installing/installing_source.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.5.0/_sources/users/installing/installing_source.rst.txt \ No newline at end of file diff --git a/_sources/users/installing_source.rst.txt b/_sources/users/installing_source.rst.txt deleted file mode 120000 index b3cd9ed895d..00000000000 --- a/_sources/users/installing_source.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/installing_source.rst.txt \ No newline at end of file diff --git a/_sources/users/interactive.rst.txt b/_sources/users/interactive.rst.txt deleted file mode 120000 index b6ae243b438..00000000000 --- a/_sources/users/interactive.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/interactive.rst.txt \ No newline at end of file diff --git a/_sources/users/interactive_guide.rst.txt b/_sources/users/interactive_guide.rst.txt deleted file mode 120000 index 1b8d19cf1c5..00000000000 --- a/_sources/users/interactive_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/interactive_guide.rst.txt \ No newline at end of file diff --git a/_sources/users/intro.rst.txt b/_sources/users/intro.rst.txt deleted file mode 120000 index 979cd06a592..00000000000 --- a/_sources/users/intro.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.1.0/_sources/users/intro.rst.txt \ No newline at end of file diff --git a/_sources/users/intro.txt b/_sources/users/intro.txt deleted file mode 120000 index e209592371f..00000000000 --- a/_sources/users/intro.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/intro.txt \ No newline at end of file diff --git a/_sources/users/legend_guide.rst.txt b/_sources/users/legend_guide.rst.txt deleted file mode 120000 index 897638bbf1f..00000000000 --- a/_sources/users/legend_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/legend_guide.rst.txt \ No newline at end of file diff --git a/_sources/users/legend_guide.txt b/_sources/users/legend_guide.txt deleted file mode 120000 index 8750a51a284..00000000000 --- a/_sources/users/legend_guide.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/legend_guide.txt \ No newline at end of file diff --git a/_sources/users/license.rst.txt b/_sources/users/license.rst.txt deleted file mode 120000 index 2897c03375b..00000000000 --- a/_sources/users/license.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/license.rst.txt \ No newline at end of file diff --git a/_sources/users/license.txt b/_sources/users/license.txt deleted file mode 120000 index de4e7407393..00000000000 --- a/_sources/users/license.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/license.txt \ No newline at end of file diff --git a/_sources/users/mathtext.rst.txt b/_sources/users/mathtext.rst.txt deleted file mode 120000 index f2982a001c3..00000000000 --- a/_sources/users/mathtext.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/mathtext.rst.txt \ No newline at end of file diff --git a/_sources/users/mathtext.txt b/_sources/users/mathtext.txt deleted file mode 120000 index a13edb1a19e..00000000000 --- a/_sources/users/mathtext.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/mathtext.txt \ No newline at end of file diff --git a/_sources/users/navigation_toolbar.rst.txt b/_sources/users/navigation_toolbar.rst.txt deleted file mode 120000 index 574fd56bdb9..00000000000 --- a/_sources/users/navigation_toolbar.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_sources/users/navigation_toolbar.rst.txt \ No newline at end of file diff --git a/_sources/users/navigation_toolbar.txt b/_sources/users/navigation_toolbar.txt deleted file mode 120000 index a3eac7bf3c3..00000000000 --- a/_sources/users/navigation_toolbar.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/navigation_toolbar.txt \ No newline at end of file diff --git a/_sources/users/next_whats_new.rst.txt b/_sources/users/next_whats_new.rst.txt deleted file mode 120000 index f2e367792c9..00000000000 --- a/_sources/users/next_whats_new.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/users/next_whats_new.rst.txt \ No newline at end of file diff --git a/_sources/users/next_whats_new/2018-07-18-AL.rst.txt b/_sources/users/next_whats_new/2018-07-18-AL.rst.txt deleted file mode 120000 index 1f9131762cc..00000000000 --- a/_sources/users/next_whats_new/2018-07-18-AL.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../3.0.2/_sources/users/next_whats_new/2018-07-18-AL.rst.txt \ No newline at end of file diff --git a/_sources/users/next_whats_new/README.rst.txt b/_sources/users/next_whats_new/README.rst.txt deleted file mode 120000 index acf5b32e6cb..00000000000 --- a/_sources/users/next_whats_new/README.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/next_whats_new/README.rst.txt \ No newline at end of file diff --git a/_sources/users/path_tutorial.rst.txt b/_sources/users/path_tutorial.rst.txt deleted file mode 120000 index 0337411233e..00000000000 --- a/_sources/users/path_tutorial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/path_tutorial.rst.txt \ No newline at end of file diff --git a/_sources/users/path_tutorial.txt b/_sources/users/path_tutorial.txt deleted file mode 120000 index f11afa5dbbf..00000000000 --- a/_sources/users/path_tutorial.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/path_tutorial.txt \ No newline at end of file diff --git a/_sources/users/patheffects_guide.rst.txt b/_sources/users/patheffects_guide.rst.txt deleted file mode 120000 index 263a33b0885..00000000000 --- a/_sources/users/patheffects_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/patheffects_guide.rst.txt \ No newline at end of file diff --git a/_sources/users/patheffects_guide.txt b/_sources/users/patheffects_guide.txt deleted file mode 120000 index d38a5deb63b..00000000000 --- a/_sources/users/patheffects_guide.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/patheffects_guide.txt \ No newline at end of file diff --git a/_sources/users/pgf.rst.txt b/_sources/users/pgf.rst.txt deleted file mode 120000 index ca61c90e879..00000000000 --- a/_sources/users/pgf.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/pgf.rst.txt \ No newline at end of file diff --git a/_sources/users/pgf.txt b/_sources/users/pgf.txt deleted file mode 120000 index 327f800f1aa..00000000000 --- a/_sources/users/pgf.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/pgf.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/changelog.rst.txt b/_sources/users/prev_whats_new/changelog.rst.txt deleted file mode 120000 index 5b073407c08..00000000000 --- a/_sources/users/prev_whats_new/changelog.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/changelog.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/dflt_style_changes.rst.txt b/_sources/users/prev_whats_new/dflt_style_changes.rst.txt deleted file mode 120000 index 9c72a0fceb4..00000000000 --- a/_sources/users/prev_whats_new/dflt_style_changes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/dflt_style_changes.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.0.0.rst.txt b/_sources/users/prev_whats_new/github_stats_3.0.0.rst.txt deleted file mode 120000 index 89f4aef1d34..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.0.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.0.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.0.1.rst.txt b/_sources/users/prev_whats_new/github_stats_3.0.1.rst.txt deleted file mode 120000 index 0bbda16ffc4..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.0.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.0.1.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.0.2.rst.txt b/_sources/users/prev_whats_new/github_stats_3.0.2.rst.txt deleted file mode 120000 index 1b545061a81..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.0.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.0.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.0.3.rst.txt b/_sources/users/prev_whats_new/github_stats_3.0.3.rst.txt deleted file mode 120000 index 30e90feaf75..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.0.3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.0.3.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.1.0.rst.txt b/_sources/users/prev_whats_new/github_stats_3.1.0.rst.txt deleted file mode 120000 index f6a4da78b6c..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.1.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.1.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.1.1.rst.txt b/_sources/users/prev_whats_new/github_stats_3.1.1.rst.txt deleted file mode 120000 index 658c4040f0b..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.1.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.1.1.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.1.2.rst.txt b/_sources/users/prev_whats_new/github_stats_3.1.2.rst.txt deleted file mode 120000 index d299d7a0fb1..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.1.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.1.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.1.3.rst.txt b/_sources/users/prev_whats_new/github_stats_3.1.3.rst.txt deleted file mode 120000 index b4ea94ccfcf..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.1.3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.1.3.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.2.0.rst.txt b/_sources/users/prev_whats_new/github_stats_3.2.0.rst.txt deleted file mode 120000 index 9eec128746b..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.2.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.2.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.2.1.rst.txt b/_sources/users/prev_whats_new/github_stats_3.2.1.rst.txt deleted file mode 120000 index 2db9687f4bc..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.2.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.2.1.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.2.2.rst.txt b/_sources/users/prev_whats_new/github_stats_3.2.2.rst.txt deleted file mode 120000 index 52fa3215483..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.2.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.2.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.3.0.rst.txt b/_sources/users/prev_whats_new/github_stats_3.3.0.rst.txt deleted file mode 120000 index d86d519fa97..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.3.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.3.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.3.1.rst.txt b/_sources/users/prev_whats_new/github_stats_3.3.1.rst.txt deleted file mode 120000 index c7efc8146d6..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.3.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.3.1.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.3.2.rst.txt b/_sources/users/prev_whats_new/github_stats_3.3.2.rst.txt deleted file mode 120000 index 142becfc6b7..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.3.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.3.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.3.3.rst.txt b/_sources/users/prev_whats_new/github_stats_3.3.3.rst.txt deleted file mode 120000 index f8a49c6b5e6..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.3.3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.3.3.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.3.4.rst.txt b/_sources/users/prev_whats_new/github_stats_3.3.4.rst.txt deleted file mode 120000 index 3c5874a3bd3..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.3.4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.3.4.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.4.0.rst.txt b/_sources/users/prev_whats_new/github_stats_3.4.0.rst.txt deleted file mode 120000 index 1f8a554d9b8..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.4.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.4.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.4.1.rst.txt b/_sources/users/prev_whats_new/github_stats_3.4.1.rst.txt deleted file mode 120000 index 07cde62f9f2..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.4.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.4.1.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.4.2.rst.txt b/_sources/users/prev_whats_new/github_stats_3.4.2.rst.txt deleted file mode 120000 index 8e67c965ebb..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.4.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.4.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/github_stats_3.4.3.rst.txt b/_sources/users/prev_whats_new/github_stats_3.4.3.rst.txt deleted file mode 120000 index 2c6285c613f..00000000000 --- a/_sources/users/prev_whats_new/github_stats_3.4.3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/github_stats_3.4.3.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_0.98.4.rst.txt b/_sources/users/prev_whats_new/whats_new_0.98.4.rst.txt deleted file mode 120000 index 455a7175962..00000000000 --- a/_sources/users/prev_whats_new/whats_new_0.98.4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_0.98.4.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_0.99.rst.txt b/_sources/users/prev_whats_new/whats_new_0.99.rst.txt deleted file mode 120000 index df37019be79..00000000000 --- a/_sources/users/prev_whats_new/whats_new_0.99.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_0.99.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_1.0.rst.txt b/_sources/users/prev_whats_new/whats_new_1.0.rst.txt deleted file mode 120000 index 07da0c6de8a..00000000000 --- a/_sources/users/prev_whats_new/whats_new_1.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_1.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_1.1.rst.txt b/_sources/users/prev_whats_new/whats_new_1.1.rst.txt deleted file mode 120000 index 899c3727322..00000000000 --- a/_sources/users/prev_whats_new/whats_new_1.1.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_1.1.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_1.2.2.rst.txt b/_sources/users/prev_whats_new/whats_new_1.2.2.rst.txt deleted file mode 120000 index 8070cb70b68..00000000000 --- a/_sources/users/prev_whats_new/whats_new_1.2.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_1.2.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_1.2.rst.txt b/_sources/users/prev_whats_new/whats_new_1.2.rst.txt deleted file mode 120000 index d507af6f810..00000000000 --- a/_sources/users/prev_whats_new/whats_new_1.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_1.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_1.3.rst.txt b/_sources/users/prev_whats_new/whats_new_1.3.rst.txt deleted file mode 120000 index 0625d8de54f..00000000000 --- a/_sources/users/prev_whats_new/whats_new_1.3.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_1.3.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_1.4.rst.txt b/_sources/users/prev_whats_new/whats_new_1.4.rst.txt deleted file mode 120000 index 3e677033e25..00000000000 --- a/_sources/users/prev_whats_new/whats_new_1.4.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_1.4.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_1.5.rst.txt b/_sources/users/prev_whats_new/whats_new_1.5.rst.txt deleted file mode 120000 index 4f8befbcff2..00000000000 --- a/_sources/users/prev_whats_new/whats_new_1.5.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_1.5.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_2.0.0.rst.txt b/_sources/users/prev_whats_new/whats_new_2.0.0.rst.txt deleted file mode 120000 index b2fd9789213..00000000000 --- a/_sources/users/prev_whats_new/whats_new_2.0.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_2.0.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_2.1.0.rst.txt b/_sources/users/prev_whats_new/whats_new_2.1.0.rst.txt deleted file mode 120000 index 694c4aebc91..00000000000 --- a/_sources/users/prev_whats_new/whats_new_2.1.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_2.1.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_2.2.rst.txt b/_sources/users/prev_whats_new/whats_new_2.2.rst.txt deleted file mode 120000 index bedfd72fb28..00000000000 --- a/_sources/users/prev_whats_new/whats_new_2.2.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_2.2.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_3.0.rst.txt b/_sources/users/prev_whats_new/whats_new_3.0.rst.txt deleted file mode 120000 index ad3918c9fbf..00000000000 --- a/_sources/users/prev_whats_new/whats_new_3.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_3.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_3.1.0.rst.txt b/_sources/users/prev_whats_new/whats_new_3.1.0.rst.txt deleted file mode 120000 index cc708ce8280..00000000000 --- a/_sources/users/prev_whats_new/whats_new_3.1.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_3.1.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_3.2.0.rst.txt b/_sources/users/prev_whats_new/whats_new_3.2.0.rst.txt deleted file mode 120000 index 517ff94701f..00000000000 --- a/_sources/users/prev_whats_new/whats_new_3.2.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_3.2.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_3.3.0.rst.txt b/_sources/users/prev_whats_new/whats_new_3.3.0.rst.txt deleted file mode 120000 index 3034e3ba8bd..00000000000 --- a/_sources/users/prev_whats_new/whats_new_3.3.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_3.3.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_3.4.0.rst.txt b/_sources/users/prev_whats_new/whats_new_3.4.0.rst.txt deleted file mode 120000 index 24af8f0e373..00000000000 --- a/_sources/users/prev_whats_new/whats_new_3.4.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_3.4.0.rst.txt \ No newline at end of file diff --git a/_sources/users/prev_whats_new/whats_new_3.5.0.rst.txt b/_sources/users/prev_whats_new/whats_new_3.5.0.rst.txt deleted file mode 120000 index d60d160b988..00000000000 --- a/_sources/users/prev_whats_new/whats_new_3.5.0.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/prev_whats_new/whats_new_3.5.0.rst.txt \ No newline at end of file diff --git a/_sources/users/project/citing.rst.txt b/_sources/users/project/citing.rst.txt deleted file mode 120000 index 4ab0ca55007..00000000000 --- a/_sources/users/project/citing.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/project/citing.rst.txt \ No newline at end of file diff --git a/_sources/users/project/credits.rst.txt b/_sources/users/project/credits.rst.txt deleted file mode 120000 index e98e470cd10..00000000000 --- a/_sources/users/project/credits.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/project/credits.rst.txt \ No newline at end of file diff --git a/_sources/users/project/history.rst.txt b/_sources/users/project/history.rst.txt deleted file mode 120000 index 246af0ead9d..00000000000 --- a/_sources/users/project/history.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/project/history.rst.txt \ No newline at end of file diff --git a/_sources/users/project/index.rst.txt b/_sources/users/project/index.rst.txt deleted file mode 120000 index 51ef5eb70ea..00000000000 --- a/_sources/users/project/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/project/index.rst.txt \ No newline at end of file diff --git a/_sources/users/project/license.rst.txt b/_sources/users/project/license.rst.txt deleted file mode 120000 index a56a4e353e9..00000000000 --- a/_sources/users/project/license.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/project/license.rst.txt \ No newline at end of file diff --git a/_sources/users/pyplot_tutorial.rst.txt b/_sources/users/pyplot_tutorial.rst.txt deleted file mode 120000 index 3c759044351..00000000000 --- a/_sources/users/pyplot_tutorial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/pyplot_tutorial.rst.txt \ No newline at end of file diff --git a/_sources/users/pyplot_tutorial.txt b/_sources/users/pyplot_tutorial.txt deleted file mode 120000 index 16ec629d150..00000000000 --- a/_sources/users/pyplot_tutorial.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/pyplot_tutorial.txt \ No newline at end of file diff --git a/_sources/users/recipes.rst.txt b/_sources/users/recipes.rst.txt deleted file mode 120000 index 81e0eefe824..00000000000 --- a/_sources/users/recipes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/recipes.rst.txt \ No newline at end of file diff --git a/_sources/users/recipes.txt b/_sources/users/recipes.txt deleted file mode 120000 index e90c3e83ed2..00000000000 --- a/_sources/users/recipes.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/recipes.txt \ No newline at end of file diff --git a/_sources/users/release_notes.rst.txt b/_sources/users/release_notes.rst.txt deleted file mode 120000 index 7b67ee286e0..00000000000 --- a/_sources/users/release_notes.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/users/release_notes.rst.txt \ No newline at end of file diff --git a/_sources/users/release_notes_next.rst.txt b/_sources/users/release_notes_next.rst.txt deleted file mode 120000 index 4b25a0f0220..00000000000 --- a/_sources/users/release_notes_next.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../stable/_sources/users/release_notes_next.rst.txt \ No newline at end of file diff --git a/_sources/users/resources/index.rst.txt b/_sources/users/resources/index.rst.txt deleted file mode 120000 index 9228fd9ddf9..00000000000 --- a/_sources/users/resources/index.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../../stable/_sources/users/resources/index.rst.txt \ No newline at end of file diff --git a/_sources/users/screenshots.rst.txt b/_sources/users/screenshots.rst.txt deleted file mode 120000 index aa4b0be8e96..00000000000 --- a/_sources/users/screenshots.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/screenshots.rst.txt \ No newline at end of file diff --git a/_sources/users/screenshots.txt b/_sources/users/screenshots.txt deleted file mode 120000 index 7dd563179d9..00000000000 --- a/_sources/users/screenshots.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/screenshots.txt \ No newline at end of file diff --git a/_sources/users/shell.rst.txt b/_sources/users/shell.rst.txt deleted file mode 120000 index e93db9e24d0..00000000000 --- a/_sources/users/shell.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.2.2/_sources/users/shell.rst.txt \ No newline at end of file diff --git a/_sources/users/shell.txt b/_sources/users/shell.txt deleted file mode 120000 index 1a896835fd5..00000000000 --- a/_sources/users/shell.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/shell.txt \ No newline at end of file diff --git a/_sources/users/style_sheets.txt b/_sources/users/style_sheets.txt deleted file mode 120000 index 8be11a0961c..00000000000 --- a/_sources/users/style_sheets.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/style_sheets.txt \ No newline at end of file diff --git a/_sources/users/text_intro.rst.txt b/_sources/users/text_intro.rst.txt deleted file mode 120000 index ffef055d563..00000000000 --- a/_sources/users/text_intro.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/text_intro.rst.txt \ No newline at end of file diff --git a/_sources/users/text_intro.txt b/_sources/users/text_intro.txt deleted file mode 120000 index f8bca7e2a98..00000000000 --- a/_sources/users/text_intro.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/text_intro.txt \ No newline at end of file diff --git a/_sources/users/text_props.rst.txt b/_sources/users/text_props.rst.txt deleted file mode 120000 index 276f11388eb..00000000000 --- a/_sources/users/text_props.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/text_props.rst.txt \ No newline at end of file diff --git a/_sources/users/text_props.txt b/_sources/users/text_props.txt deleted file mode 120000 index 13e1b193ddf..00000000000 --- a/_sources/users/text_props.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/text_props.txt \ No newline at end of file diff --git a/_sources/users/tight_layout_guide.rst.txt b/_sources/users/tight_layout_guide.rst.txt deleted file mode 120000 index 8a7f5b8e5b7..00000000000 --- a/_sources/users/tight_layout_guide.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/tight_layout_guide.rst.txt \ No newline at end of file diff --git a/_sources/users/tight_layout_guide.txt b/_sources/users/tight_layout_guide.txt deleted file mode 120000 index 7a435d4523e..00000000000 --- a/_sources/users/tight_layout_guide.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/tight_layout_guide.txt \ No newline at end of file diff --git a/_sources/users/transforms_tutorial.rst.txt b/_sources/users/transforms_tutorial.rst.txt deleted file mode 120000 index 9585061a02a..00000000000 --- a/_sources/users/transforms_tutorial.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/transforms_tutorial.rst.txt \ No newline at end of file diff --git a/_sources/users/transforms_tutorial.txt b/_sources/users/transforms_tutorial.txt deleted file mode 120000 index 5ed2024456d..00000000000 --- a/_sources/users/transforms_tutorial.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/transforms_tutorial.txt \ No newline at end of file diff --git a/_sources/users/tutorials.rst.txt b/_sources/users/tutorials.rst.txt deleted file mode 120000 index 59736a9c8fa..00000000000 --- a/_sources/users/tutorials.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/tutorials.rst.txt \ No newline at end of file diff --git a/_sources/users/usetex.rst.txt b/_sources/users/usetex.rst.txt deleted file mode 120000 index c1ffd29fd9a..00000000000 --- a/_sources/users/usetex.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/_sources/users/usetex.rst.txt \ No newline at end of file diff --git a/_sources/users/usetex.txt b/_sources/users/usetex.txt deleted file mode 120000 index 41dfe17fcbf..00000000000 --- a/_sources/users/usetex.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/usetex.txt \ No newline at end of file diff --git a/_sources/users/whats_new.rst.txt b/_sources/users/whats_new.rst.txt deleted file mode 120000 index 29b656c3a52..00000000000 --- a/_sources/users/whats_new.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/whats_new.rst.txt \ No newline at end of file diff --git a/_sources/users/whats_new.txt b/_sources/users/whats_new.txt deleted file mode 120000 index 006fe472800..00000000000 --- a/_sources/users/whats_new.txt +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/_sources/users/whats_new.txt \ No newline at end of file diff --git a/_sources/users/whats_new_old.rst.txt b/_sources/users/whats_new_old.rst.txt deleted file mode 120000 index 177ed0f4dd8..00000000000 --- a/_sources/users/whats_new_old.rst.txt +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_sources/users/whats_new_old.rst.txt \ No newline at end of file diff --git a/_static/CHANGELOG b/_static/CHANGELOG deleted file mode 120000 index 1611be8e80f..00000000000 --- a/_static/CHANGELOG +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_static/CHANGELOG \ No newline at end of file diff --git a/_static/John-hunter-crop-2.jpg b/_static/John-hunter-crop-2.jpg deleted file mode 120000 index 32231ed7341..00000000000 --- a/_static/John-hunter-crop-2.jpg +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/John-hunter-crop-2.jpg \ No newline at end of file diff --git a/_static/adjustText.png b/_static/adjustText.png deleted file mode 120000 index d2e8cef2857..00000000000 --- a/_static/adjustText.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/adjustText.png \ No newline at end of file diff --git a/_static/ajax-loader.gif b/_static/ajax-loader.gif deleted file mode 120000 index 1a1edd805e2..00000000000 --- a/_static/ajax-loader.gif +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/ajax-loader.gif \ No newline at end of file diff --git a/_static/alabaster.css b/_static/alabaster.css deleted file mode 120000 index 4b74444eb1a..00000000000 --- a/_static/alabaster.css +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_static/alabaster.css \ No newline at end of file diff --git a/_static/anatomy.png b/_static/anatomy.png deleted file mode 120000 index 188870e23be..00000000000 --- a/_static/anatomy.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/anatomy.png \ No newline at end of file diff --git a/_static/animatplot.png b/_static/animatplot.png deleted file mode 120000 index f3ed7b1bfe9..00000000000 --- a/_static/animatplot.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/animatplot.png \ No newline at end of file diff --git a/_static/basemap_contour1.png b/_static/basemap_contour1.png deleted file mode 120000 index cfd441e4b97..00000000000 --- a/_static/basemap_contour1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/basemap_contour1.png \ No newline at end of file diff --git a/_static/basic.css b/_static/basic.css deleted file mode 100644 index 10301e15e5f..00000000000 --- a/_static/basic.css +++ /dev/null @@ -1,904 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -div.section::after { - display: block; - content: ''; - clear: left; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 270px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox form.search { - overflow: hidden; -} - -div.sphinxsidebar #searchbox input[type="text"] { - float: left; - width: 80%; - padding: 0.25em; - box-sizing: border-box; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - float: left; - width: 20%; - border-left: none; - padding: 0.25em; - box-sizing: border-box; -} - - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li p.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body { - min-width: 450px; - max-width: 800px; -} - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -a.brackets:before, -span.brackets > a:before{ - content: "["; -} - -a.brackets:after, -span.brackets > a:after { - content: "]"; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, figure.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, figure.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, figure.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -img.align-default, figure.align-default, .figure.align-default { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-default { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar, -aside.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px; - background-color: #ffe; - width: 40%; - float: right; - clear: right; - overflow-x: auto; -} - -p.sidebar-title { - font-weight: bold; -} - -div.admonition, div.topic, blockquote { - clear: left; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- content of sidebars/topics/admonitions -------------------------------- */ - -div.sidebar > :last-child, -aside.sidebar > :last-child, -div.topic > :last-child, -div.admonition > :last-child { - margin-bottom: 0; -} - -div.sidebar::after, -aside.sidebar::after, -div.topic::after, -div.admonition::after, -blockquote::after { - display: block; - content: ''; - clear: both; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - margin-top: 10px; - margin-bottom: 10px; - border: 0; - border-collapse: collapse; -} - -table.align-center { - margin-left: auto; - margin-right: auto; -} - -table.align-default { - margin-left: auto; - margin-right: auto; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -th > :first-child, -td > :first-child { - margin-top: 0px; -} - -th > :last-child, -td > :last-child { - margin-bottom: 0px; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure, figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption, figcaption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number, -figcaption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text, -figcaption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.field-name { - -moz-hyphens: manual; - -ms-hyphens: manual; - -webkit-hyphens: manual; - hyphens: manual; -} - -/* -- hlist styles ---------------------------------------------------------- */ - -table.hlist { - margin: 1em 0; -} - -table.hlist td { - vertical-align: top; -} - -/* -- object description styles --------------------------------------------- */ - -.sig { - font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; -} - -.sig-name, code.descname { - background-color: transparent; - font-weight: bold; -} - -.sig-name { - font-size: 1.1em; -} - -code.descname { - font-size: 1.2em; -} - -.sig-prename, code.descclassname { - background-color: transparent; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.sig-param.n { - font-style: italic; -} - -/* C++ specific styling */ - -.sig-inline.c-texpr, -.sig-inline.cpp-texpr { - font-family: unset; -} - -.sig.c .k, .sig.c .kt, -.sig.cpp .k, .sig.cpp .kt { - color: #0033B3; -} - -.sig.c .m, -.sig.cpp .m { - color: #1750EB; -} - -.sig.c .s, .sig.c .sc, -.sig.cpp .s, .sig.cpp .sc { - color: #067D17; -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -:not(li) > ol > li:first-child > :first-child, -:not(li) > ul > li:first-child > :first-child { - margin-top: 0px; -} - -:not(li) > ol > li:last-child > :last-child, -:not(li) > ul > li:last-child > :last-child { - margin-bottom: 0px; -} - -ol.simple ol p, -ol.simple ul p, -ul.simple ol p, -ul.simple ul p { - margin-top: 0; -} - -ol.simple > li:not(:first-child) > p, -ul.simple > li:not(:first-child) > p { - margin-top: 0; -} - -ol.simple p, -ul.simple p { - margin-bottom: 0; -} - -dl.footnote > dt, -dl.citation > dt { - float: left; - margin-right: 0.5em; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -dl.field-list { - display: grid; - grid-template-columns: fit-content(30%) auto; -} - -dl.field-list > dt { - font-weight: bold; - word-break: break-word; - padding-left: 0.5em; - padding-right: 5px; -} - -dl.field-list > dt:after { - content: ":"; -} - -dl.field-list > dd { - padding-left: 0.5em; - margin-top: 0em; - margin-left: 0em; - margin-bottom: 0em; -} - -dl { - margin-bottom: 15px; -} - -dd > :first-child { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dl > dd:last-child, -dl > dd:last-child > :last-child { - margin-bottom: 0; -} - -dt:target, span.highlighted { - background-color: #fbe54e; -} - -rect.highlighted { - fill: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -.classifier:before { - font-style: normal; - margin: 0.5em; - content: ":"; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -pre, div[class*="highlight-"] { - clear: both; -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -div[class*="highlight-"] { - margin: 1em 0; -} - -td.linenos pre { - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - display: block; -} - -table.highlighttable tbody { - display: block; -} - -table.highlighttable tr { - display: flex; -} - -table.highlighttable td { - margin: 0; - padding: 0; -} - -table.highlighttable td.linenos { - padding-right: 0.5em; -} - -table.highlighttable td.code { - flex: 1; - overflow: hidden; -} - -.highlight .hll { - display: block; -} - -div.highlight pre, -table.highlighttable pre { - margin: 0; -} - -div.code-block-caption + div { - margin-top: 0; -} - -div.code-block-caption { - margin-top: 1em; - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -table.highlighttable td.linenos, -span.linenos, -div.highlight span.gp { /* gp: Generic.Prompt */ - user-select: none; - -webkit-user-select: text; /* Safari fallback only */ - -webkit-user-select: none; /* Chrome/Safari */ - -moz-user-select: none; /* Firefox */ - -ms-user-select: none; /* IE10+ */ -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - margin: 1em 0; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: absolute; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/_static/binder_badge_logo.svg b/_static/binder_badge_logo.svg deleted file mode 120000 index 9c48990328f..00000000000 --- a/_static/binder_badge_logo.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/binder_badge_logo.svg \ No newline at end of file diff --git a/_static/blume_table_example.png b/_static/blume_table_example.png deleted file mode 120000 index a3c620dad2c..00000000000 --- a/_static/blume_table_example.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/blume_table_example.png \ No newline at end of file diff --git a/_static/boxplot_explanation.png b/_static/boxplot_explanation.png deleted file mode 120000 index b91b4b98a69..00000000000 --- a/_static/boxplot_explanation.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_static/boxplot_explanation.png \ No newline at end of file diff --git a/_static/broken_example.png b/_static/broken_example.png deleted file mode 120000 index 813dd799adb..00000000000 --- a/_static/broken_example.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/broken_example.png \ No newline at end of file diff --git a/_static/brokenaxes.png b/_static/brokenaxes.png deleted file mode 120000 index b8b1ae80d1e..00000000000 --- a/_static/brokenaxes.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/brokenaxes.png \ No newline at end of file diff --git a/_static/cartopy_hurricane_katrina_01_00.png b/_static/cartopy_hurricane_katrina_01_00.png deleted file mode 120000 index 94a81191f24..00000000000 --- a/_static/cartopy_hurricane_katrina_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/cartopy_hurricane_katrina_01_00.png \ No newline at end of file diff --git a/_static/check-solid.svg b/_static/check-solid.svg deleted file mode 120000 index 3fd946ef2d6..00000000000 --- a/_static/check-solid.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/check-solid.svg \ No newline at end of file diff --git a/_static/clipboard.min.js b/_static/clipboard.min.js deleted file mode 120000 index 6ed08ebdd13..00000000000 --- a/_static/clipboard.min.js +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/clipboard.min.js \ No newline at end of file diff --git a/_static/cm_fontset.png b/_static/cm_fontset.png deleted file mode 120000 index 7005949b726..00000000000 --- a/_static/cm_fontset.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/_static/cm_fontset.png \ No newline at end of file diff --git a/_static/color_zorder_A.png b/_static/color_zorder_A.png deleted file mode 120000 index 8423fe1aa36..00000000000 --- a/_static/color_zorder_A.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/color_zorder_A.png \ No newline at end of file diff --git a/_static/color_zorder_B.png b/_static/color_zorder_B.png deleted file mode 120000 index 8c06f33138c..00000000000 --- a/_static/color_zorder_B.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/color_zorder_B.png \ No newline at end of file diff --git a/_static/comment-bright.png b/_static/comment-bright.png deleted file mode 120000 index e86e2079a2b..00000000000 --- a/_static/comment-bright.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/comment-bright.png \ No newline at end of file diff --git a/_static/comment-close.png b/_static/comment-close.png deleted file mode 120000 index 6940640f687..00000000000 --- a/_static/comment-close.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/comment-close.png \ No newline at end of file diff --git a/_static/comment.png b/_static/comment.png deleted file mode 120000 index d5e364b842f..00000000000 --- a/_static/comment.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/comment.png \ No newline at end of file diff --git a/_static/constrained_layout/CL00.png b/_static/constrained_layout/CL00.png deleted file mode 120000 index fb0587e7022..00000000000 --- a/_static/constrained_layout/CL00.png +++ /dev/null @@ -1 +0,0 @@ -../../3.3.0/_static/constrained_layout/CL00.png \ No newline at end of file diff --git a/_static/constrained_layout/CL01.png b/_static/constrained_layout/CL01.png deleted file mode 120000 index 57c82d30cff..00000000000 --- a/_static/constrained_layout/CL01.png +++ /dev/null @@ -1 +0,0 @@ -../../3.3.0/_static/constrained_layout/CL01.png \ No newline at end of file diff --git a/_static/constrained_layout/CL02.png b/_static/constrained_layout/CL02.png deleted file mode 120000 index 113a41841aa..00000000000 --- a/_static/constrained_layout/CL02.png +++ /dev/null @@ -1 +0,0 @@ -../../3.3.0/_static/constrained_layout/CL02.png \ No newline at end of file diff --git a/_static/constrained_layout_1b.png b/_static/constrained_layout_1b.png deleted file mode 120000 index 5fb54f1dae1..00000000000 --- a/_static/constrained_layout_1b.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/constrained_layout_1b.png \ No newline at end of file diff --git a/_static/constrained_layout_2b.png b/_static/constrained_layout_2b.png deleted file mode 120000 index 9ac31afcc06..00000000000 --- a/_static/constrained_layout_2b.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/constrained_layout_2b.png \ No newline at end of file diff --git a/_static/contents.png b/_static/contents.png deleted file mode 120000 index 44fb14ff1cd..00000000000 --- a/_static/contents.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/contents.png \ No newline at end of file diff --git a/_static/contour_frontpage.png b/_static/contour_frontpage.png deleted file mode 120000 index f003b7aab6a..00000000000 --- a/_static/contour_frontpage.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_static/contour_frontpage.png \ No newline at end of file diff --git a/_static/copy-button.svg b/_static/copy-button.svg deleted file mode 120000 index 912417a5a22..00000000000 --- a/_static/copy-button.svg +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/copy-button.svg \ No newline at end of file diff --git a/_static/copybutton.css b/_static/copybutton.css deleted file mode 120000 index b0dfa3712a3..00000000000 --- a/_static/copybutton.css +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/copybutton.css \ No newline at end of file diff --git a/_static/copybutton.js b/_static/copybutton.js deleted file mode 120000 index ab9f24c4069..00000000000 --- a/_static/copybutton.js +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/copybutton.js \ No newline at end of file diff --git a/_static/copybutton_funcs.js b/_static/copybutton_funcs.js deleted file mode 120000 index 3371b4b6851..00000000000 --- a/_static/copybutton_funcs.js +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/copybutton_funcs.js \ No newline at end of file diff --git a/_static/css/blank.css b/_static/css/blank.css deleted file mode 100644 index 8a686ec7579..00000000000 --- a/_static/css/blank.css +++ /dev/null @@ -1,2 +0,0 @@ -/* This file is intentionally left blank to override the stylesheet of the -parent theme via theme.conf. The parent style we import directly in theme.css */ \ No newline at end of file diff --git a/_static/css/index.ff1ffe594081f20da1ef19478df9384b.css b/_static/css/index.ff1ffe594081f20da1ef19478df9384b.css deleted file mode 100644 index 9b1c5d7921e..00000000000 --- a/_static/css/index.ff1ffe594081f20da1ef19478df9384b.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Bootstrap v4.5.0 (https://getbootstrap.com/) - * Copyright 2011-2020 The Bootstrap Authors - * Copyright 2011-2020 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:540px;--breakpoint-md:720px;--breakpoint-lg:960px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size:1rem;line-height:1.5;color:#212529;text-align:left}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;background-color:transparent}a:hover{color:#0056b3}a:not([href]),a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:"\2014\00A0"}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:540px){.container{max-width:540px}}@media (min-width:720px){.container{max-width:720px}}@media (min-width:960px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1400px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:540px){.container,.container-sm{max-width:540px}}@media (min-width:720px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:960px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1400px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:540px){.col-sm{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:720px){.col-md{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:960px){.col-lg{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.33333%;max-width:33.33333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.66667%;max-width:16.66667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media (max-width:539.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:719.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:959.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width:540px){.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary.focus,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary.focus,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:540px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:720px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:960px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{pointer-events:none;background-color:#fff;border:1px solid #adb5bd}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:""}.custom-control-label:after{background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.5em + .75rem + 2px)}.custom-file-input{z-index:2;margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{left:0;z-index:1;height:calc(1.5em + .75rem + 2px);font-weight:400;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.375rem .75rem;line-height:1.5;color:#495057}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat 50%;background-size:100% 100%}@media (max-width:539.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:540px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:719.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:720px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:959.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:960px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0,0,0,0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255,255,255,0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:540px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:540px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:540px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb,.breadcrumb-item{display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:540px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{height:1rem;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:540px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:720px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:960px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:540px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media (min-width:960px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:540px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:720px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:960px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:540px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:720px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:960px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:540px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:720px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:960px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:540px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:720px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:960px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:540px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:720px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:960px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:960px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}html{font-size:var(--pst-font-size-base);scroll-padding-top:calc(var(--pst-header-height) + 12px)}body{padding-top:calc(var(--pst-header-height) + 20px);background-color:#fff;font-family:var(--pst-font-family-base);font-weight:400;line-height:1.65;color:rgba(var(--pst-color-text-base),1)}p{margin-bottom:1.15rem;font-size:1em;color:rgba(var(--pst-color-paragraph),1)}p.rubric{border-bottom:1px solid #c9c9c9}a{color:rgba(var(--pst-color-link),1);text-decoration:none}a:hover{color:rgba(var(--pst-color-link-hover),1);text-decoration:underline}a.headerlink{color:rgba(var(--pst-color-headerlink),1);font-size:.8em;padding:0 4px;text-decoration:none}a.headerlink:hover{background-color:rgba(var(--pst-color-headerlink),1);color:rgba(var(--pst-color-headerlink-hover),1)}.heading-style,h1,h2,h3,h4,h5,h6{margin:2.75rem 0 1.05rem;font-family:var(--pst-font-family-heading);font-weight:400;line-height:1.15}h1{margin-top:0;font-size:var(--pst-font-size-h1);color:rgba(var(--pst-color-h1),1)}h2{font-size:var(--pst-font-size-h2);color:rgba(var(--pst-color-h2),1)}h3{font-size:var(--pst-font-size-h3);color:rgba(var(--pst-color-h3),1)}h4{font-size:var(--pst-font-size-h4);color:rgba(var(--pst-color-h4),1)}h5{font-size:var(--pst-font-size-h5);color:rgba(var(--pst-color-h5),1)}h6{font-size:var(--pst-font-size-h6);color:rgba(var(--pst-color-h6),1)}.text_small,small{font-size:var(--pst-font-size-milli)}hr{border:0;border-top:1px solid #e5e5e5}code,kbd,pre,samp{font-family:var(--pst-font-family-monospace)}code{color:rgba(var(--pst-color-inline-code),1)}pre{margin:1.5em 0;padding:10px;background-color:rgba(var(--pst-color-preformatted-background),1);color:rgba(var(--pst-color-preformatted-text),1);line-height:1.2em;border:1px solid #c9c9c9;border-radius:.2rem;box-shadow:1px 1px 1px #d8d8d8}dd{margin-top:3px;margin-bottom:10px;margin-left:30px}.navbar{position:fixed;min-height:var(--pst-header-height);width:100%;padding:0}.navbar .container-xl{height:100%}@media (min-width:960px){.navbar #navbar-end>.navbar-end-item{display:inline-block}}.navbar-brand{position:relative;height:var(--pst-header-height);width:auto;padding:.5rem 0}.navbar-brand img{max-width:100%;height:100%;width:auto}.navbar-light{background:#fff!important;box-shadow:0 .125rem .25rem 0 rgba(0,0,0,.11)}.navbar-light .navbar-nav li a.nav-link{padding:0 .5rem;color:rgba(var(--pst-color-navbar-link),1)}.navbar-light .navbar-nav li a.nav-link:hover{color:rgba(var(--pst-color-navbar-link-hover),1)}.navbar-light .navbar-nav>.active>.nav-link{font-weight:600;color:rgba(var(--pst-color-navbar-link-active),1)}.navbar-header a{padding:0 15px}.admonition,div.admonition{margin:1.5625em auto;padding:0 .6rem .8rem;overflow:hidden;page-break-inside:avoid;border-left:.2rem solid;border-left-color:rgba(var(--pst-color-admonition-default),1);border-bottom-color:rgba(var(--pst-color-admonition-default),1);border-right-color:rgba(var(--pst-color-admonition-default),1);border-top-color:rgba(var(--pst-color-admonition-default),1);border-radius:.2rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .0625rem rgba(0,0,0,.1);transition:color .25s,background-color .25s,border-color .25s}.admonition :last-child,div.admonition :last-child{margin-bottom:0}.admonition p.admonition-title~*,div.admonition p.admonition-title~*{padding:0 1.4rem}.admonition>ol,.admonition>ul,div.admonition>ol,div.admonition>ul{margin-left:1em}.admonition>.admonition-title,div.admonition>.admonition-title{position:relative;margin:0 -.6rem;padding:.4rem .6rem .4rem 2rem;font-weight:700;background-color:rgba(var(--pst-color-admonition-default),.1)}.admonition>.admonition-title:before,div.admonition>.admonition-title:before{position:absolute;left:.6rem;width:1rem;height:1rem;color:rgba(var(--pst-color-admonition-default),1);font-family:Font Awesome\ 5 Free;font-weight:900;content:var(--pst-icon-admonition-default)}.admonition>.admonition-title+*,div.admonition>.admonition-title+*{margin-top:.4em}.admonition.attention,div.admonition.attention{border-color:rgba(var(--pst-color-admonition-attention),1)}.admonition.attention>.admonition-title,div.admonition.attention>.admonition-title{background-color:rgba(var(--pst-color-admonition-attention),.1)}.admonition.attention>.admonition-title:before,div.admonition.attention>.admonition-title:before{color:rgba(var(--pst-color-admonition-attention),1);content:var(--pst-icon-admonition-attention)}.admonition.caution,div.admonition.caution{border-color:rgba(var(--pst-color-admonition-caution),1)}.admonition.caution>.admonition-title,div.admonition.caution>.admonition-title{background-color:rgba(var(--pst-color-admonition-caution),.1)}.admonition.caution>.admonition-title:before,div.admonition.caution>.admonition-title:before{color:rgba(var(--pst-color-admonition-caution),1);content:var(--pst-icon-admonition-caution)}.admonition.warning,div.admonition.warning{border-color:rgba(var(--pst-color-admonition-warning),1)}.admonition.warning>.admonition-title,div.admonition.warning>.admonition-title{background-color:rgba(var(--pst-color-admonition-warning),.1)}.admonition.warning>.admonition-title:before,div.admonition.warning>.admonition-title:before{color:rgba(var(--pst-color-admonition-warning),1);content:var(--pst-icon-admonition-warning)}.admonition.danger,div.admonition.danger{border-color:rgba(var(--pst-color-admonition-danger),1)}.admonition.danger>.admonition-title,div.admonition.danger>.admonition-title{background-color:rgba(var(--pst-color-admonition-danger),.1)}.admonition.danger>.admonition-title:before,div.admonition.danger>.admonition-title:before{color:rgba(var(--pst-color-admonition-danger),1);content:var(--pst-icon-admonition-danger)}.admonition.error,div.admonition.error{border-color:rgba(var(--pst-color-admonition-error),1)}.admonition.error>.admonition-title,div.admonition.error>.admonition-title{background-color:rgba(var(--pst-color-admonition-error),.1)}.admonition.error>.admonition-title:before,div.admonition.error>.admonition-title:before{color:rgba(var(--pst-color-admonition-error),1);content:var(--pst-icon-admonition-error)}.admonition.hint,div.admonition.hint{border-color:rgba(var(--pst-color-admonition-hint),1)}.admonition.hint>.admonition-title,div.admonition.hint>.admonition-title{background-color:rgba(var(--pst-color-admonition-hint),.1)}.admonition.hint>.admonition-title:before,div.admonition.hint>.admonition-title:before{color:rgba(var(--pst-color-admonition-hint),1);content:var(--pst-icon-admonition-hint)}.admonition.tip,div.admonition.tip{border-color:rgba(var(--pst-color-admonition-tip),1)}.admonition.tip>.admonition-title,div.admonition.tip>.admonition-title{background-color:rgba(var(--pst-color-admonition-tip),.1)}.admonition.tip>.admonition-title:before,div.admonition.tip>.admonition-title:before{color:rgba(var(--pst-color-admonition-tip),1);content:var(--pst-icon-admonition-tip)}.admonition.important,div.admonition.important{border-color:rgba(var(--pst-color-admonition-important),1)}.admonition.important>.admonition-title,div.admonition.important>.admonition-title{background-color:rgba(var(--pst-color-admonition-important),.1)}.admonition.important>.admonition-title:before,div.admonition.important>.admonition-title:before{color:rgba(var(--pst-color-admonition-important),1);content:var(--pst-icon-admonition-important)}.admonition.note,div.admonition.note{border-color:rgba(var(--pst-color-admonition-note),1)}.admonition.note>.admonition-title,div.admonition.note>.admonition-title{background-color:rgba(var(--pst-color-admonition-note),.1)}.admonition.note>.admonition-title:before,div.admonition.note>.admonition-title:before{color:rgba(var(--pst-color-admonition-note),1);content:var(--pst-icon-admonition-note)}table.field-list{border-collapse:separate;border-spacing:10px;margin-left:1px}table.field-list th.field-name{padding:1px 8px 1px 5px;white-space:nowrap;background-color:#eee}table.field-list td.field-body p{font-style:italic}table.field-list td.field-body p>strong{font-style:normal}table.field-list td.field-body blockquote{border-left:none;margin:0 0 .3em;padding-left:30px}.table.autosummary td:first-child{white-space:nowrap}.sig{font-family:var(--pst-font-family-monospace)}.sig-inline.c-texpr,.sig-inline.cpp-texpr{font-family:unset}.sig.c .k,.sig.c .kt,.sig.c .m,.sig.c .s,.sig.c .sc,.sig.cpp .k,.sig.cpp .kt,.sig.cpp .m,.sig.cpp .s,.sig.cpp .sc{color:rgba(var(--pst-color-text-base),1)}.sig-name{color:rgba(var(--pst-color-inline-code),1)}blockquote{padding:0 1em;color:#6a737d;border-left:.25em solid #dfe2e5}dt.label>span.brackets:not(:only-child):before{content:"["}dt.label>span.brackets:not(:only-child):after{content:"]"}a.footnote-reference{vertical-align:super;font-size:small}div.deprecated{margin-bottom:10px;margin-top:10px;padding:7px;background-color:#f3e5e5;border:1px solid #eed3d7;border-radius:.5rem}div.deprecated p{color:#b94a48;display:inline}.topic{background-color:#eee}.seealso dd{margin-top:0;margin-bottom:0}.viewcode-back{font-family:var(--pst-font-family-base)}.viewcode-block:target{background-color:#f4debf;border-top:1px solid #ac9;border-bottom:1px solid #ac9}span.guilabel{border:1px solid #7fbbe3;background:#e7f2fa;font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}footer{width:100%;border-top:1px solid #ccc;padding:10px}footer .footer-item p{margin-bottom:0}.bd-search{position:relative;padding:1rem 15px;margin-right:-15px;margin-left:-15px}.bd-search .icon{position:absolute;color:#a4a6a7;left:25px;top:25px}.bd-search input{border-radius:0;border:0;border-bottom:1px solid #e5e5e5;padding-left:35px}.bd-toc{-ms-flex-order:2;order:2;height:calc(100vh - 2rem);overflow-y:auto}@supports (position:-webkit-sticky) or (position:sticky){.bd-toc{position:-webkit-sticky;position:sticky;top:calc(var(--pst-header-height) + 20px);height:calc(100vh - 5rem);overflow-y:auto}}.bd-toc .onthispage{color:#a4a6a7}.section-nav{padding-left:0;border-left:1px solid #eee;border-bottom:none}.section-nav ul{padding-left:1rem}.toc-entry,.toc-entry a{display:block}.toc-entry a{padding:.125rem 1.5rem;color:rgba(var(--pst-color-toc-link),1)}@media (min-width:1200px){.toc-entry a{padding-right:0}}.toc-entry a:hover{color:rgba(var(--pst-color-toc-link-hover),1);text-decoration:none}.bd-sidebar{padding-top:1em}@media (min-width:720px){.bd-sidebar{border-right:1px solid rgba(0,0,0,.1)}@supports (position:-webkit-sticky) or (position:sticky){.bd-sidebar{position:-webkit-sticky;position:sticky;top:calc(var(--pst-header-height) + 20px);z-index:1000;height:calc(100vh - var(--pst-header-height) - 20px)}}}.bd-sidebar.no-sidebar{border-right:0}.bd-links{padding-top:1rem;padding-bottom:1rem;margin-right:-15px;margin-left:-15px}@media (min-width:720px){.bd-links{display:block}@supports (position:-webkit-sticky) or (position:sticky){.bd-links{max-height:calc(100vh - 11rem);overflow-y:auto}}}.bd-sidenav{display:none}.bd-content{padding-top:20px}.bd-content .section{max-width:100%}.bd-content .section table{display:block;overflow:auto}.bd-toc-link{display:block;padding:.25rem 1.5rem;font-weight:600;color:rgba(0,0,0,.65)}.bd-toc-link:hover{color:rgba(0,0,0,.85);text-decoration:none}.bd-toc-item.active{margin-bottom:1rem}.bd-toc-item.active:not(:first-child){margin-top:1rem}.bd-toc-item.active>.bd-toc-link{color:rgba(0,0,0,.85)}.bd-toc-item.active>.bd-toc-link:hover{background-color:transparent}.bd-toc-item.active>.bd-sidenav{display:block}nav.bd-links p.caption{font-size:var(--pst-sidebar-caption-font-size);text-transform:uppercase;font-weight:700;position:relative;margin-top:1.25em;margin-bottom:.5em;padding:0 1.5rem;color:rgba(var(--pst-color-sidebar-caption),1)}nav.bd-links p.caption:first-child{margin-top:0}.bd-sidebar .nav{font-size:var(--pst-sidebar-font-size)}.bd-sidebar .nav ul{list-style:none;padding:0 0 0 1.5rem}.bd-sidebar .nav li>a{display:block;padding:.25rem 1.5rem;color:rgba(var(--pst-color-sidebar-link),1)}.bd-sidebar .nav li>a:hover{color:rgba(var(--pst-color-sidebar-link-hover),1);text-decoration:none;background-color:transparent}.bd-sidebar .nav li>a.reference.external:after{font-family:Font Awesome\ 5 Free;font-weight:900;content:"\f35d";font-size:.75em;margin-left:.3em}.bd-sidebar .nav .active:hover>a,.bd-sidebar .nav .active>a{font-weight:600;color:rgba(var(--pst-color-sidebar-link-active),1)}.toc-h2{font-size:.85rem}.toc-h3{font-size:.75rem}.toc-h4{font-size:.65rem}.toc-entry>.nav-link.active{font-weight:600;color:#130654;color:rgba(var(--pst-color-toc-link-active),1);background-color:transparent;border-left:2px solid rgba(var(--pst-color-toc-link-active),1)}.nav-link:hover{border-style:none}#navbar-main-elements li.nav-item i{font-size:.7rem;padding-left:2px;vertical-align:middle}.bd-toc .nav .nav{display:none}.bd-toc .nav .nav.visible,.bd-toc .nav>.active>ul{display:block}.prev-next-area{margin:20px 0}.prev-next-area p{margin:0 .3em;line-height:1.3em}.prev-next-area i{font-size:1.2em}.prev-next-area a{display:flex;align-items:center;border:none;padding:10px;max-width:45%;overflow-x:hidden;color:rgba(0,0,0,.65);text-decoration:none}.prev-next-area a p.prev-next-title{color:rgba(var(--pst-color-link),1);font-weight:600;font-size:1.1em}.prev-next-area a:hover p.prev-next-title{text-decoration:underline}.prev-next-area a .prev-next-info{flex-direction:column;margin:0 .5em}.prev-next-area a .prev-next-info .prev-next-subtitle{text-transform:capitalize}.prev-next-area a.left-prev{float:left}.prev-next-area a.right-next{float:right}.prev-next-area a.right-next div.prev-next-info{text-align:right}.alert{padding-bottom:0}.alert-info a{color:#e83e8c}#navbar-icon-links i.fa,#navbar-icon-links i.fab,#navbar-icon-links i.far,#navbar-icon-links i.fas{vertical-align:middle;font-style:normal;font-size:1.5rem;line-height:1.25}#navbar-icon-links i.fa-github-square:before{color:#333}#navbar-icon-links i.fa-twitter-square:before{color:#55acee}#navbar-icon-links i.fa-gitlab:before{color:#548}#navbar-icon-links i.fa-bitbucket:before{color:#0052cc}.tocsection{border-left:1px solid #eee;padding:.3rem 1.5rem}.tocsection i{padding-right:.5rem}.editthispage{padding-top:2rem}.editthispage a{color:var(--pst-color-sidebar-link-active)}.xr-wrap[hidden]{display:block!important}.toctree-checkbox{position:absolute;display:none}.toctree-checkbox~ul{display:none}.toctree-checkbox~label i{transform:rotate(0deg)}.toctree-checkbox:checked~ul{display:block}.toctree-checkbox:checked~label i{transform:rotate(180deg)}.bd-sidebar li{position:relative}.bd-sidebar label{position:absolute;top:0;right:0;height:30px;width:30px;cursor:pointer;display:flex;justify-content:center;align-items:center}.bd-sidebar label:hover{background:rgba(var(--pst-color-sidebar-expander-background-hover),1)}.bd-sidebar label i{display:inline-block;font-size:.75rem;text-align:center}.bd-sidebar label i:hover{color:rgba(var(--pst-color-sidebar-link-hover),1)}.bd-sidebar li.has-children>.reference{padding-right:30px}div.doctest>div.highlight span.gp,span.linenos,table.highlighttable td.linenos{user-select:none;-webkit-user-select:text;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.docutils.container{padding-left:unset;padding-right:unset} \ No newline at end of file diff --git a/_static/css/landing.css b/_static/css/landing.css deleted file mode 100644 index 4e2a6f6e190..00000000000 --- a/_static/css/landing.css +++ /dev/null @@ -1,695 +0,0 @@ -/* all icons from https://fontawesome.com/ */ -*, -*::before, -*::after { - box-sizing: border-box; -} - -:root { - /* START COLOR PALETTE */ - - /* viridis solid colors */ - --dark-purple: #440154; - --purple: #482475; - --blue: #355f8d; - --teal: #22a884; - --green: #7ad151; - --lime: #bddf26; - - /* utility colors for text, links, etc... */ - --grey: #4f4f4f; - --logo-blue: #11557c; - --pale-blue: #869fbb; - --pale-orange: #ffc9a5; - --orange: #ffaa70; - --bold-orange: #ffaa70; - --light-gray: #e5e5e5; - --medium-gray: #c4c4c4; - --black: #000; - --white: #fff; - --alpha-white: rgba(255, 255, 255, 0.8); - /* END COLOR PALETTE */ - - /* START BACKGROUND GRADIENTS */ - - /* viridis gradients */ - --viridis: linear-gradient( - 90deg, - #0c0154, - #482475, - #414487, - #355f8d, - #2a788e, - #21908d, - #22a884, - #7ad151, - #bddf26 - ); - --viridis-purple: linear-gradient(90deg, #440154, #355f8d); - --viridis-blue: linear-gradient(90deg, #414487, #21908d); - --viridis-teal: linear-gradient(90deg, #2a788e, #42be71); - --viridis-green: linear-gradient(90deg, #42be71, #bddf26); - - --viridis-purple-vert: linear-gradient(180deg, #440154, #355f8d); - --viridis-blue-vert: linear-gradient(180deg, #414487, #21908d); - /* END BACKGROUND GRADIENTS */ - - /* FONTS */ - --regular: 400; - --bold: 700; - - /* Other metrics */ - --border-radius: 4px; - --shadow: 0px 2px 2px rgba(0, 0, 0, 0.11); -} - -/* callout boxes */ -.callout { - border-left: solid 1px var(--light-gray); - border-bottom: solid 1px var(--light-gray); - border-right: solid 1px var(--light-gray); - border-bottom-right-radius: var(--border-radius); - border-bottom-left-radius: var(--border-radius); - box-shadow: var(--shadow); - margin-bottom: 20px; - padding: 28px 20px 20px; - position: relative; -} - -.callout__list { - display: flex; - flex-direction: row; -} - -.callout__list p{ - margin: 1em 0; -} - -.callout::before { - content: ""; - position: absolute; - top: 0; - left: 0; - display: block; - height: 8px; - width: 100%; - background-color: var(--blue); -} - -.callout--purple::before { - background-image: var(--viridis-purple); -} - -.callout--blue::before { - background-image: var(--viridis-blue); -} - -.callout--teal::before { - background-image: var(--viridis-teal); -} - -.callout--green::before { - background-image: var(--viridis-green); -} - -.callout__icon { - color: var(--logo-blue); - font-size: 2em; - margin: auto 10px auto 0; -} - -.callout > * { - margin-top: 0; -} -/* offsite links */ -a.link--offsite { - font-size: var(--pst-font-size-h5); - display: block; - position: relative; - left: 0; - transition: left 0.2s ease-in-out; -} - -a.link--offsite::after { - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - content: "\f061"; - font-family: "Font Awesome 5 Free"; - font-weight: 900; - margin-left: 10px; -} -/* Rulers */ -.rule { - width: 100%; - background-color: var(--light-gray); - border: none; - height: 1px; - margin-bottom: 0em; -} - -.rule--viridis { - background-image: var(--viridis); - height: 3px; - margin-bottom: 0em; -} - -/* Quicklinks */ -.quicklinks { - padding: 0; - list-style-type: none; - display: flex; - flex-direction: row; - justify-content: space-between; - flex-wrap: wrap; -} - -.quicklinks a { - display: flex; - flex-direction: column; - align-items: center; - flex: 1 1 100px; -} - -.quicklinks a { - color: var(--default-text); - font-size: var(--heading-4); - font-family: var(--heading-font); -} - -.quicklinks__icon { - width: 75px; - display: block; - margin-bottom: 10px; -} - -@media (max-width: 700px) { - .quicklink-icon { - width: 60px; - } - .quicklinks a { - font-size: var(--base-font); - } - .quicklinks li { - margin-bottom: 20px; - } -} - -/* News */ -.news { - display: flex; - flex-direction: column; - justify-content: space-between; - margin-bottom: 2em; -} - -.news__item:not(:last-of-type){ - margin-bottom: 2em; -} - -.news__item--highlight, .news__item:last-of-type { - margin-bottom: 40px; -} - -.news__item .date, .news__item--highlight .date{ - margin: 1em 0 .5em; -} - -.news__item--highlight .title{ - margin: .5em 0 1em; -} - -.date{ - font-size: small; -} -/* tab switcher */ -.tools { - min-height: 280px; -} - -.tabs { - padding: 0; - padding: 0; - list-style-type: none; - display: flex; - flex-direction: column; - justify-content: space-evenly; - position: relative; -} - -.tabs__tab { - border: none; - text-align: right; - line-height: 1em; - cursor: pointer; - padding: 0.5em 0; - background-color: transparent; - font-family: var(--heading-font); - color: var(--logo-blue); - font-size: var(--heading-4); - font-weight: var(--bold); - transition: left 0.2s ease-out; - position: relative; - left: 0; -} - -.tabs__tab:hover { - left: 8px; -} - -.tabs__content { - border-top: solid 1px var(--light-gray); - border-bottom: solid 1px var(--light-gray); - border-right: solid 1px var(--light-gray); - flex-grow: 1; - padding: 20px 40px 20px 50px; - position: relative; -} - -.tabs::before { - content: ""; - width: 8px; - height: 100%; - background-color: var(--dark-purple); - position: absolute; - top: 0; - right: -20px; - display: block; - transition: background-color 0.2s ease-in-out; -} - -.tabs[data-current-tab="0"]::before { - background-color: var(--dark-purple); -} - -.tabs[data-current-tab="1"]::before { - background-color: var(--purple); -} - -.tabs[data-current-tab="2"]::before { - background-color: var(--blue); -} - -.tabs[data-current-tab="3"]::before { - background-color: var(--teal); -} - -.tabs[data-current-tab="4"]::before { - background-color: var(--green); -} - -.tabs::after { - content: ""; - width: 0; - height: 0; - border-top: 9px solid transparent; - border-left: 18px solid var(--purple); - border-bottom: 9px solid transparent; - position: absolute; - right: -38px; - top: 0; - display: block; - margin: 10% 0; - transition: top 0.2s ease-out, border-left-color 0.2s ease-in-out; -} - -.tabs[data-current-tab="0"]::after { - top: 0; - border-left-color: var(--dark-purple); -} - -.tabs[data-current-tab="1"]::after { - top: 20%; - border-left-color: var(--purple); -} - -.tabs[data-current-tab="2"]::after { - top: 40%; - border-left-color: var(--blue); -} - -.tabs[data-current-tab="3"]::after { - top: 60%; - border-left-color: var(--teal); -} - -.tabs[data-current-tab="4"]::after { - top: 80%; - border-left-color: var(--green); -} - -/* footer */ -footer { - color: var(--alpha-white); - background-image: var(--viridis-purple-vert); -} - -footer a { - color: var(--white); -} - -footer h1 { - color: var(--white); -} - -ul.social { - list-style-type: none; - padding: 0; - display: block; - font-size: 18px; -} - -ul.social li { - display: inline-block; - margin-right: 5px; -} -ul.social a { - color: var(--white); - transition: color 0.2 ease-in-out; -} -ul.social a:hover i { - color: var(--alpha-white); -} - -ul.mpl-links, -ul.release-docs { - list-style-type: none; - padding: 0; - margin-top: 1.33em; -} - -ul.mpl-links li, -ul.release-docs li { - margin-bottom: 10px; -} - -ul.mpl-links { - font-weight: bold; -} - -.release dt { - font-family: var(--heading-font); - font-size: var(--heading-5); - text-transform: uppercase; - letter-spacing: 1px; -} - -.release dd { - margin: 0; -} - -@media (min-width: 650px) { - .release dt, - .release dd, - ul.mpl-links { - text-align: right; - } -} - -/* layout */ -main { - display: grid; - column-gap: 20px; -} - -@media (min-width: 800px) { - main { - grid-template-columns: - minmax(1em, auto) minmax(44px, 118px) minmax(44px, 118px) - minmax(44px, 118px) minmax(44px, 118px) minmax(44px, 118px) minmax( - 44px, - 118px - ) - minmax(44px, 118px) minmax(44px, 118px) minmax(44px, 118px) minmax( - 44px, - 118px - ) - minmax(44px, 118px) minmax(44px, 118px) minmax(1em, auto); - grid-template-areas: - ". intro intro intro intro intro intro intro-text intro-text intro-text intro-text intro-text intro-text ." - ". quicklinks quicklinks quicklinks quicklinks quicklinks quicklinks quicklinks quicklinks quicklinks quicklinks quicklinks quicklinks ." - "rule1 rule1 rule1 rule1 rule1 rule1 rule1 rule1 rule1 rule1 rule1 rule1 rule1 rule1" - ". news news news news news news resources resources resources resources resources resources ." - "rule2 rule2 rule2 rule2 rule2 rule2 rule2 rule2 rule2 rule2 rule2 rule2 rule2 rule2" - ". tools tools tools tools tool-switcher tool-switcher tool-switcher tool-switcher tool-switcher tool-switcher tool-switcher tool-switcher ." - "rule3 rule3 rule3 rule3 rule3 rule3 rule3 rule3 rule3 rule3 rule3 rule3 rule3 rule3" - ". support support support support support support support support support support support support ." - "footer footer footer footer footer footer footer footer footer footer footer footer footer footer"; - } -} - -@media (max-width: 799px) { - main { - margin-top: 0px; - grid-template-columns: 1em auto 1em; - grid-template-areas: - ". intro-text ." - ". intro ." - ". quicklinks ." - "rule1 rule1 rule1" - ". resources ." - ". news ." - "rule2 rule2 rule2" - ". tools ." - ". tool-switcher ." - "rule3 rule3 rule3" - ". support ." - "footer footer footer"; - } -} - -.grid__intro-text { - grid-area: intro-text; -} - -.grid__intro { - margin-top: 4em; - grid-area: intro; -} - -.grid__quicklinks { - margin-top: 2em; - grid-area: quicklinks; -} - -@media (min-width: 1000px) { - .grid__quicklinks { - padding: 0 100px; - } -} - -.grid__rule1 { - margin-top: 1em; - grid-area: rule1; -} - -.grid__resources { - grid-area: resources; -} - -.grid__news { - grid-area: news; -} - -.grid__rule2 { - margin-top: 1em; - grid-area: rule2; -} - -.grid__tools { - margin-top: 2em; - margin-bottom: 2em; - grid-area: tools; -} - -.grid__tools-switcher { - margin-top: 2em; - margin-bottom: 2em; - grid-area: tool-switcher; -} - -.grid__rule3 { - margin-top: 1em; - grid-area: rule3; -} - -.grid__support { - grid-area: support; -} - -.grid__contribute { - grid-area: contribute; -} - -.support__items { - list-style-type: none; - padding: 0; -} - -@media (min-width: 800px) { - .support__items { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - } -} - -.support__items .callout { - flex: 0 0 calc(33.333333% - 13.3333333333333px); -} - -footer { - grid-area: footer; - display: grid; -} - -@media (min-width: 800px) { - footer { - grid-template-columns: minmax(1em, 40px) 1fr 1fr 1fr 1fr minmax(1em, 40px); - grid-template-areas: ". mpl mpl links release ."; - } -} - -@media (max-width: 799px) and (min-width: 650px) { - footer { - grid-template-columns: minmax(1em, 40px) 1fr 1fr minmax(1em, 40px); - grid-template-areas: - ". mpl links ." - ". mpl release ."; - } -} - -@media (max-width: 649px) { - footer { - grid-template-columns: minmax(auto, 1em) auto minmax(auto, 1em); - grid-template-areas: - ". mpl ." - ". links ." - ". release ."; - } -} - -.grid__mpl-info { - grid-area: mpl; -} - -.grid__mpl-links { - grid-area: links; -} - -.grid__release-docs { - grid-area: release; -} - -.grid__tools-switcher__tabs { - display: grid; - gap: 2em; -} - -@media (min-width: 800px) { - .grid__tools-switcher__tabs { - grid-template-columns: - minmax(44px, 118px) minmax(44px, 118px) minmax(44px, 118px) - minmax(44px, 118px) minmax(44px, 118px) minmax(44px, 118px) minmax( - 44px, - 118px - ) - minmax(44px, 118px); - grid-template-areas: "tabs tabs panel panel panel panel panel panel"; - } -} - -@media (max-width: 799px) { - .grid__tools-switcher__tabs { - grid-template-columns: 30% auto; - grid-template-areas: "tabs panel"; - } -} - -.grid__tabs__tabs { - grid-area: tabs; -} - -.grid__tabs__panel { - grid-area: panel; -} - -/* buttons */ -.button, -a.button { - background-color: var(--blue); - padding: 15px 20px; - width: fit-content; - width: -moz-fit-content; - display: block; - border-radius: var(--border-radius); - color: var(--white); - margin: 1em 0; - font-family: var(--pst-font-family-heading); - font-size: var(--pst-font-size-h5); - font-weight: var(--regular); - box-shadow: var(--shadow); -} - -.button::after, -a.button::after { - content: ""; - margin-left: 60px; - background: url("../images/arrow-right-solid-white.png") no-repeat 0 0; - background-size: 13px 15px; - height: 15px; - width: 15px; - display: inline-block; - vertical-align: middle; - transition: margin 0.2s ease-out; -} - -.button:hover::after, -a.button:hover::after { - margin-left: 80px; -} - -.button--purple, -a.button--purple { - background: var(--viridis-purple); -} - -.button--blue, -a.button--blue { - background: var(--viridis-blue); -} - -.button--teal, -a.button--teal { - background: var(--viridis-teal); -} - -.button--green, -a.button--green { - background: var(--viridis-green); - color: var(--black); -} - -.button--green::after, -a.button--green::after { - background-image: url("../images/arrow-right-solid-black.png"); -} - -.imrot-img { - display: flex; - margin: auto; - max-width:18em; - align-self: center; -} - -.imrot-cap { - text-align: center; - font-style: italic; - font-size: large; -} - -.copywrite { - color: var(--white); -} diff --git a/_static/css/normalize.css b/_static/css/normalize.css deleted file mode 100644 index b6eb8216595..00000000000 --- a/_static/css/normalize.css +++ /dev/null @@ -1,349 +0,0 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ - -/* Document - ========================================================================== */ - -/** - * 1. Correct the line height in all browsers. - * 2. Prevent adjustments of font size after orientation changes in iOS. - */ - - html { - line-height: 1.15; /* 1 */ - -webkit-text-size-adjust: 100%; /* 2 */ -} - -/* Sections - ========================================================================== */ - -/** - * Remove the margin in all browsers. - */ - -body { - margin: 0; -} - -/** - * Render the `main` element consistently in IE. - */ - -main { - display: block; -} - -/** - * Correct the font size and margin on `h1` elements within `section` and - * `article` contexts in Chrome, Firefox, and Safari. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/* Grouping content - ========================================================================== */ - -/** - * 1. Add the correct box sizing in Firefox. - * 2. Show the overflow in Edge and IE. - */ - -hr { - box-sizing: content-box; /* 1 */ - height: 0; /* 1 */ - overflow: visible; /* 2 */ -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -pre { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/* Text-level semantics - ========================================================================== */ - -/** - * Remove the gray background on active links in IE 10. - */ - -a { - background-color: transparent; -} - -/** - * 1. Remove the bottom border in Chrome 57- - * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. - */ - -abbr[title] { - border-bottom: none; /* 1 */ - text-decoration: underline; /* 2 */ - text-decoration: underline dotted; /* 2 */ -} - -/** - * Add the correct font weight in Chrome, Edge, and Safari. - */ - -b, -strong { - font-weight: bolder; -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -code, -kbd, -samp { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/** - * Add the correct font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` elements from affecting the line height in - * all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* Embedded content - ========================================================================== */ - -/** - * Remove the border on images inside links in IE 10. - */ - -img { - border-style: none; -} - -/* Forms - ========================================================================== */ - -/** - * 1. Change the font styles in all browsers. - * 2. Remove the margin in Firefox and Safari. - */ - -button, -input, -optgroup, -select, -textarea { - font-family: inherit; /* 1 */ - font-size: 100%; /* 1 */ - line-height: 1.15; /* 1 */ - margin: 0; /* 2 */ -} - -/** - * Show the overflow in IE. - * 1. Show the overflow in Edge. - */ - -button, -input { /* 1 */ - overflow: visible; -} - -/** - * Remove the inheritance of text transform in Edge, Firefox, and IE. - * 1. Remove the inheritance of text transform in Firefox. - */ - -button, -select { /* 1 */ - text-transform: none; -} - -/** - * Correct the inability to style clickable types in iOS and Safari. - */ - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -/** - * Remove the inner border and padding in Firefox. - */ - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -/** - * Restore the focus styles unset by the previous rule. - */ - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -/** - * Correct the padding in Firefox. - */ - -fieldset { - padding: 0.35em 0.75em 0.625em; -} - -/** - * 1. Correct the text wrapping in Edge and IE. - * 2. Correct the color inheritance from `fieldset` elements in IE. - * 3. Remove the padding so developers are not caught out when they zero out - * `fieldset` elements in all browsers. - */ - -legend { - box-sizing: border-box; /* 1 */ - color: inherit; /* 2 */ - display: table; /* 1 */ - max-width: 100%; /* 1 */ - padding: 0; /* 3 */ - white-space: normal; /* 1 */ -} - -/** - * Add the correct vertical alignment in Chrome, Firefox, and Opera. - */ - -progress { - vertical-align: baseline; -} - -/** - * Remove the default vertical scrollbar in IE 10+. - */ - -textarea { - overflow: auto; -} - -/** - * 1. Add the correct box sizing in IE 10. - * 2. Remove the padding in IE 10. - */ - -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Correct the cursor style of increment and decrement buttons in Chrome. - */ - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Correct the odd appearance in Chrome and Safari. - * 2. Correct the outline style in Safari. - */ - -[type="search"] { - -webkit-appearance: textfield; /* 1 */ - outline-offset: -2px; /* 2 */ -} - -/** - * Remove the inner padding in Chrome and Safari on macOS. - */ - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * 1. Correct the inability to style clickable types in iOS and Safari. - * 2. Change font properties to `inherit` in Safari. - */ - -::-webkit-file-upload-button { - -webkit-appearance: button; /* 1 */ - font: inherit; /* 2 */ -} - -/* Interactive - ========================================================================== */ - -/* - * Add the correct display in Edge, IE 10+, and Firefox. - */ - -details { - display: block; -} - -/* - * Add the correct display in all browsers. - */ - -summary { - display: list-item; -} - -/* Misc - ========================================================================== */ - -/** - * Add the correct display in IE 10+. - */ - -template { - display: none; -} - -/** - * Add the correct display in IE 10. - */ - -[hidden] { - display: none; -} \ No newline at end of file diff --git a/_static/css/style.css b/_static/css/style.css deleted file mode 100644 index 4aa48707fb6..00000000000 --- a/_static/css/style.css +++ /dev/null @@ -1,247 +0,0 @@ -a { - color: #11557C; - text-decoration: none; -} - -a:hover { - color: #CA7900; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -.simple li>p { - margin: 0; -} - -div.responsive_screenshots { - /* Horizontally centered */ - display: block; - margin: auto; - - /* Do not go beyond 1:1 scale (and ensure a 1x4 tight layout) */ - max-width: 640px; /* at most 4 x 1:1 subfig width */ - max-height: 120px; /* at most 1 x 1:1 subfig height */ -} - -/* To avoid subfigure parts outside of the responsive_screenshots */ -/* element (see ) */ -span.clear_screenshots { clear: left; display: block; } - -div.responsive_subfig{ - float: left; - width: 25%; /* we want 4 subfigs in a row */ - - /* Include content, padding and border in width. This should */ - /* avoid having to use tricks like "width: 24.9999%" */ - box-sizing: border-box; -} - -div.responsive_subfig img { - /* Horizontally centered */ - display: block; - margin: auto; - - /* Possible downscaling */ - max-width: 162px; /* at most 1 x 1:1 subfig width */ - max-height: 139px; /* at most 1 x 1:1 subfig height */ - - width: 100%; -} - -@media only screen and (max-width: 930px){ - /* The value of 1000px was handcrafted to provide a more or less */ - /* smooth transition between the 1x4 and the 2x2 layouts. It is */ - /* NB: it is slightly below 1024px: so one should still have a */ - /* row in a 1024x768 window */ - - div.responsive_screenshots { - /* Do not go beyond 1:1 scale (and ensure a 2x2 tight layout) */ - max-width: 324px; /* at most 2 x 1:1 subfig width */ - max-height: 278px; /* at most 2 x 1:1 subfig height */ - } - - div.responsive_subfig { - width: 50%; /* we want 2 subfigs in a row */ - } -} - -/* bullet boxes on main page */ -div.bullet-box-container { - display: flex; - flex-wrap: wrap; - margin: 1em 0; -} - -div.bullet-box { - flex-grow: 1; - width: 28%; - margin: 0.4em; - padding: 0 1em; - background: #eff9ff; -} - -div.bullet-box p:first-of-type { - font-size: 1.4em; - text-align: center; -} - -div.bullet-box ul { - padding-left: 1.2em; -} - -div.bullet-box li { - padding-left: 0.3em; - margin-bottom: 0.3em; -} - -@media only screen and (max-width: 930px){ - div.bullet-box { - flex: 0 0 90%; - } -} - -/* community items on main page */ -div.box { - display: flex; - flex-flow: row wrap; -} - -div.box-item { - flex: 0 0 45%; - padding: 4px; - margin: 8px 12px; -} - -div.box-item img { - float: left; - width: 30px; - height: 30px; - fill: #888; - -} -div.box-item p { - margin: 0 0 0 50px; -} - -div.box-item ul { - margin: 0 0 0 50px; - padding-left: 20px; -} - -hr.box-sep { - margin: 1em 2em; -} - -@media only screen and (max-width: 930px){ - div.box-item { - flex: 0 0 90%; - } -} - - -/* multi colunm TOC */ -.contents ul { - list-style-type: none; - padding-left: 2em; -} - -.contents > ul { - padding-left: 0; -} - -.multicol-toc > ul { - column-width: 250px; - column-gap: 60px; - -webkit-column-width: 250px; - -moz-column-width: 250px; - column-rule: 1px solid #ccc; -} - -.multicol-toc > li { - /* break inside is not yet broadly supported, but we just try */ - break-inside: avoid-column; - -moz-break-inside: avoid-column; - -webkit-break-inside: avoid-column; -} - -.contents > ul > li > a { - font-size: 1.0em; -} - - -.mpl-button { - background: #11557C; - font-weight: normal; - display: inline-block; - padding: 0 1em; - line-height: 2.8; - font-size: 16px; - text-align: center; - cursor: pointer; - color: #fff; - text-decoration: none; - border-radius: 6px; - z-index: 1; - transition: background .25s ease; -} - -.mpl-button:hover, .mpl-button:active, .mpl-button:focus { - background: #003c63; - outline-color: #003c63; -} - - -/* Hide red ¶ between the thumbnail and caption in gallery - -Due the way that sphinx-gallery floats its captions the perma-link -does not float with it. -*/ -.sphx-glr-thumbcontainer p.caption:hover > a.headerlink{ - visibility: hidden; - -} - -/* slightly reduce horizontal margin compared to gallery.css to -* get four columns of thumbnails in the pydata-sphinx-theme. */ -.sphx-glr-thumbcontainer { - margin: 5px 2px; -} - -/* workaround: the default padding decenters the image inside the frame */ -.sphx-glr-thumbcontainer .figure { - padding: 0; -} - -table.property-table th, -table.property-table td { - padding: 4px 10px; -} - -.sidebar-cheatsheets, .sidebar-donate { - margin: 2.75rem 0; -} - -.sidebar-donate .mpl-button { - /* fix width to width of cheatsheet */ - width: 210px; -} - -/* Two columns for install code blocks */ -div.twocol { - padding-left: 0; - padding-right: 0; - display: flex; - gap: 20px; -} - -div.twocol > div { - flex-grow: 1; - padding: 0; - margin: 0; -} diff --git a/_static/css/theme.css b/_static/css/theme.css deleted file mode 100644 index 2e03fe37245..00000000000 --- a/_static/css/theme.css +++ /dev/null @@ -1,120 +0,0 @@ -/* Provided by the Sphinx base theme template at build time */ -@import "../basic.css"; - -:root { - /***************************************************************************** - * Theme config - **/ - --pst-header-height: 60px; - - /***************************************************************************** - * Font size - **/ - --pst-font-size-base: 15px; /* base font size - applied at body / html level */ - - /* heading font sizes */ - --pst-font-size-h1: 36px; - --pst-font-size-h2: 32px; - --pst-font-size-h3: 26px; - --pst-font-size-h4: 21px; - --pst-font-size-h5: 18px; - --pst-font-size-h6: 16px; - - /* smaller then heading font sizes*/ - --pst-font-size-milli: 12px; - - --pst-sidebar-font-size: .9em; - --pst-sidebar-caption-font-size: .9em; - - /***************************************************************************** - * Font family - **/ - /* These are adapted from https://systemfontstack.com/ */ - --pst-font-family-base-system: -apple-system, BlinkMacSystemFont, Segoe UI, "Helvetica Neue", - Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - --pst-font-family-monospace-system: "SFMono-Regular", Menlo, Consolas, Monaco, - Liberation Mono, Lucida Console, monospace; - - --pst-font-family-base: var(--pst-font-family-base-system); - --pst-font-family-heading: var(--pst-font-family-base); - --pst-font-family-monospace: var(--pst-font-family-monospace-system); - - /***************************************************************************** - * Color - * - * Colors are defined in rgb string way, "red, green, blue" - **/ - --pst-color-primary: 19, 6, 84; - --pst-color-success: 40, 167, 69; - --pst-color-info: 0, 123, 255; /*23, 162, 184;*/ - --pst-color-warning: 255, 193, 7; - --pst-color-danger: 220, 53, 69; - --pst-color-text-base: 51, 51, 51; - - --pst-color-h1: var(--pst-color-primary); - --pst-color-h2: var(--pst-color-primary); - --pst-color-h3: var(--pst-color-text-base); - --pst-color-h4: var(--pst-color-text-base); - --pst-color-h5: var(--pst-color-text-base); - --pst-color-h6: var(--pst-color-text-base); - --pst-color-paragraph: var(--pst-color-text-base); - --pst-color-link: 0, 91, 129; - --pst-color-link-hover: 227, 46, 0; - --pst-color-headerlink: 198, 15, 15; - --pst-color-headerlink-hover: 255, 255, 255; - --pst-color-preformatted-text: 34, 34, 34; - --pst-color-preformatted-background: 250, 250, 250; - --pst-color-inline-code: 232, 62, 140; - - --pst-color-active-navigation: 19, 6, 84; - --pst-color-navbar-link: 77, 77, 77; - --pst-color-navbar-link-hover: var(--pst-color-active-navigation); - --pst-color-navbar-link-active: var(--pst-color-active-navigation); - --pst-color-sidebar-link: 77, 77, 77; - --pst-color-sidebar-link-hover: var(--pst-color-active-navigation); - --pst-color-sidebar-link-active: var(--pst-color-active-navigation); - --pst-color-sidebar-expander-background-hover: 244, 244, 244; - --pst-color-sidebar-caption: 77, 77, 77; - --pst-color-toc-link: 119, 117, 122; - --pst-color-toc-link-hover: var(--pst-color-active-navigation); - --pst-color-toc-link-active: var(--pst-color-active-navigation); - - /***************************************************************************** - * Icon - **/ - - /* font awesome icons*/ - --pst-icon-check-circle: '\f058'; - --pst-icon-info-circle: '\f05a'; - --pst-icon-exclamation-triangle: '\f071'; - --pst-icon-exclamation-circle: '\f06a'; - --pst-icon-times-circle: '\f057'; - --pst-icon-lightbulb: '\f0eb'; - - /***************************************************************************** - * Admonitions - **/ - - --pst-color-admonition-default: var(--pst-color-info); - --pst-color-admonition-note: var(--pst-color-info); - --pst-color-admonition-attention: var(--pst-color-warning); - --pst-color-admonition-caution: var(--pst-color-warning); - --pst-color-admonition-warning: var(--pst-color-warning); - --pst-color-admonition-danger: var(--pst-color-danger); - --pst-color-admonition-error: var(--pst-color-danger); - --pst-color-admonition-hint: var(--pst-color-success); - --pst-color-admonition-tip: var(--pst-color-success); - --pst-color-admonition-important: var(--pst-color-success); - - --pst-icon-admonition-default: var(--pst-icon-info-circle); - --pst-icon-admonition-note: var(--pst-icon-info-circle); - --pst-icon-admonition-attention: var(--pst-icon-exclamation-circle); - --pst-icon-admonition-caution: var(--pst-icon-exclamation-triangle); - --pst-icon-admonition-warning: var(--pst-icon-exclamation-triangle); - --pst-icon-admonition-danger: var(--pst-icon-exclamation-triangle); - --pst-icon-admonition-error: var(--pst-icon-times-circle); - --pst-icon-admonition-hint: var(--pst-icon-lightbulb); - --pst-icon-admonition-tip: var(--pst-icon-lightbulb); - --pst-icon-admonition-important: var(--pst-icon-exclamation-circle); - -} diff --git a/_static/custom.css b/_static/custom.css deleted file mode 120000 index 629c90954f6..00000000000 --- a/_static/custom.css +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_static/custom.css \ No newline at end of file diff --git a/_static/default.css b/_static/default.css deleted file mode 120000 index 9cdff330ef5..00000000000 --- a/_static/default.css +++ /dev/null @@ -1 +0,0 @@ -../1.4.3/_static/default.css \ No newline at end of file diff --git a/_static/demo_axes_grid.png b/_static/demo_axes_grid.png deleted file mode 120000 index a64268ac892..00000000000 --- a/_static/demo_axes_grid.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/demo_axes_grid.png \ No newline at end of file diff --git a/_static/demo_mplot3d.png b/_static/demo_mplot3d.png deleted file mode 120000 index ae3ec24f387..00000000000 --- a/_static/demo_mplot3d.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/demo_mplot3d.png \ No newline at end of file diff --git a/_static/depsy_badge.svg b/_static/depsy_badge.svg deleted file mode 120000 index d1e8f2a71c4..00000000000 --- a/_static/depsy_badge.svg +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_static/depsy_badge.svg \ No newline at end of file diff --git a/_static/depsy_badge_default.svg b/_static/depsy_badge_default.svg deleted file mode 120000 index 5d43bead6dd..00000000000 --- a/_static/depsy_badge_default.svg +++ /dev/null @@ -1 +0,0 @@ -../2.1.2/_static/depsy_badge_default.svg \ No newline at end of file diff --git a/_static/dna_features_viewer_screenshot.png b/_static/dna_features_viewer_screenshot.png deleted file mode 120000 index 257e5f2a6f8..00000000000 --- a/_static/dna_features_viewer_screenshot.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/dna_features_viewer_screenshot.png \ No newline at end of file diff --git a/_static/doctools.js b/_static/doctools.js deleted file mode 100644 index 8cbf1b161a6..00000000000 --- a/_static/doctools.js +++ /dev/null @@ -1,323 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - * - * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL - */ -jQuery.urldecode = function(x) { - if (!x) { - return x - } - return decodeURIComponent(x.replace(/\+/g, ' ')); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s === 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node, addItems) { - if (node.nodeType === 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && - !jQuery(node.parentNode).hasClass(className) && - !jQuery(node.parentNode).hasClass("nohighlight")) { - var span; - var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.className = className; - } - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - if (isInSVG) { - var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); - var bbox = node.parentElement.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute('class', className); - addItems.push({ - "parent": node.parentNode, - "target": rect}); - } - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this, addItems); - }); - } - } - var addItems = []; - var result = this.each(function() { - highlight(this, addItems); - }); - for (var i = 0; i < addItems.length; ++i) { - jQuery(addItems[i].parent).before(addItems[i].target); - } - return result; -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { - this.initOnKeyListeners(); - } - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated === 'undefined') - return string; - return (typeof translated === 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated === 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) === 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this === '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keydown(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box, textarea, dropdown or button - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' - && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey - && !event.shiftKey) { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - break; - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - break; - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/_static/documentation_options.js b/_static/documentation_options.js deleted file mode 100644 index 75b5cf13e47..00000000000 --- a/_static/documentation_options.js +++ /dev/null @@ -1,12 +0,0 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '', - LANGUAGE: 'None', - COLLAPSE_INDEX: false, - BUILDER: 'html', - FILE_SUFFIX: '.html', - LINK_SUFFIX: '.html', - HAS_SOURCE: true, - SOURCELINK_SUFFIX: '.txt', - NAVIGATION_WITH_KEYS: true -}; \ No newline at end of file diff --git a/_static/down-pressed.png b/_static/down-pressed.png deleted file mode 120000 index adfb0e77323..00000000000 --- a/_static/down-pressed.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/down-pressed.png \ No newline at end of file diff --git a/_static/down.png b/_static/down.png deleted file mode 120000 index 1fbe1838baf..00000000000 --- a/_static/down.png +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/down.png \ No newline at end of file diff --git a/_static/eeg_large.png b/_static/eeg_large.png deleted file mode 120000 index 8c6f5d2c8db..00000000000 --- a/_static/eeg_large.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/eeg_large.png \ No newline at end of file diff --git a/_static/eeg_small.png b/_static/eeg_small.png deleted file mode 120000 index 479596f0907..00000000000 --- a/_static/eeg_small.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/eeg_small.png \ No newline at end of file diff --git a/_static/fa/LICENSE b/_static/fa/LICENSE deleted file mode 100644 index 81369b90fe2..00000000000 --- a/_static/fa/LICENSE +++ /dev/null @@ -1,5 +0,0 @@ -Font Awsome SVG Icons are covered by CC BY 4.0 License. - -https://fontawesome.com/license/free - -Icons are based on Font Awesome 5.11.2 and colors have been adapted. diff --git a/_static/fa/discourse-brands.svg b/_static/fa/discourse-brands.svg deleted file mode 100644 index 3b8e2e0fab0..00000000000 --- a/_static/fa/discourse-brands.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/fa/envelope-regular.svg b/_static/fa/envelope-regular.svg deleted file mode 100644 index 9f82026d241..00000000000 --- a/_static/fa/envelope-regular.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/fa/github-brands.svg b/_static/fa/github-brands.svg deleted file mode 100644 index 52e76df0df4..00000000000 --- a/_static/fa/github-brands.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/fa/gitter-brands.svg b/_static/fa/gitter-brands.svg deleted file mode 100644 index f1d59e045c0..00000000000 --- a/_static/fa/gitter-brands.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/fa/hashtag-solid.svg b/_static/fa/hashtag-solid.svg deleted file mode 100644 index c7c033faeac..00000000000 --- a/_static/fa/hashtag-solid.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/fa/plus-square-regular.svg b/_static/fa/plus-square-regular.svg deleted file mode 100644 index 3303fd81116..00000000000 --- a/_static/fa/plus-square-regular.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/fa/question-circle-regular.svg b/_static/fa/question-circle-regular.svg deleted file mode 100644 index 5ddce26452f..00000000000 --- a/_static/fa/question-circle-regular.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/fa/stack-overflow-brands.svg b/_static/fa/stack-overflow-brands.svg deleted file mode 100644 index de164d4a2cf..00000000000 --- a/_static/fa/stack-overflow-brands.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/favicon.ico b/_static/favicon.ico deleted file mode 100644 index dc57242b5b9..00000000000 Binary files a/_static/favicon.ico and /dev/null differ diff --git a/_static/figpager.png b/_static/figpager.png deleted file mode 120000 index 5e639c70781..00000000000 --- a/_static/figpager.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/figpager.png \ No newline at end of file diff --git a/_static/file.png b/_static/file.png deleted file mode 100644 index a858a410e4f..00000000000 Binary files a/_static/file.png and /dev/null differ diff --git a/_static/fonts/Carlogo-bold.ttf b/_static/fonts/Carlogo-bold.ttf deleted file mode 100644 index c16254f57a8..00000000000 Binary files a/_static/fonts/Carlogo-bold.ttf and /dev/null differ diff --git a/_static/fonts/Carlogo-boldItalic.ttf b/_static/fonts/Carlogo-boldItalic.ttf deleted file mode 100644 index d7d2507a4e6..00000000000 Binary files a/_static/fonts/Carlogo-boldItalic.ttf and /dev/null differ diff --git a/_static/fonts/Carlogo-bolditalic.ttf b/_static/fonts/Carlogo-bolditalic.ttf deleted file mode 120000 index ee9f923b708..00000000000 --- a/_static/fonts/Carlogo-bolditalic.ttf +++ /dev/null @@ -1 +0,0 @@ -../../3.4.3/_static/fonts/Carlogo-bolditalic.ttf \ No newline at end of file diff --git a/_static/fonts/Carlogo-italic.ttf b/_static/fonts/Carlogo-italic.ttf deleted file mode 100644 index de7824c6bd3..00000000000 Binary files a/_static/fonts/Carlogo-italic.ttf and /dev/null differ diff --git a/_static/fonts/Carlogo-regular.ttf b/_static/fonts/Carlogo-regular.ttf deleted file mode 100644 index 6911c4ddf75..00000000000 Binary files a/_static/fonts/Carlogo-regular.ttf and /dev/null differ diff --git a/_static/fonts/carlogo-bold.woff b/_static/fonts/carlogo-bold.woff deleted file mode 100644 index 00c68a81d84..00000000000 Binary files a/_static/fonts/carlogo-bold.woff and /dev/null differ diff --git a/_static/fonts/carlogo-bold.woff2 b/_static/fonts/carlogo-bold.woff2 deleted file mode 100644 index cff2d45c900..00000000000 Binary files a/_static/fonts/carlogo-bold.woff2 and /dev/null differ diff --git a/_static/fonts/carlogo-bolditalic.woff b/_static/fonts/carlogo-bolditalic.woff deleted file mode 100644 index 88be19f8977..00000000000 Binary files a/_static/fonts/carlogo-bolditalic.woff and /dev/null differ diff --git a/_static/fonts/carlogo-bolditalic.woff2 b/_static/fonts/carlogo-bolditalic.woff2 deleted file mode 100644 index 3ceb3a39683..00000000000 Binary files a/_static/fonts/carlogo-bolditalic.woff2 and /dev/null differ diff --git a/_static/fonts/carlogo-italic.woff b/_static/fonts/carlogo-italic.woff deleted file mode 100644 index 806f239385a..00000000000 Binary files a/_static/fonts/carlogo-italic.woff and /dev/null differ diff --git a/_static/fonts/carlogo-italic.woff2 b/_static/fonts/carlogo-italic.woff2 deleted file mode 100644 index a70e881db73..00000000000 Binary files a/_static/fonts/carlogo-italic.woff2 and /dev/null differ diff --git a/_static/fonts/carlogo-regular.woff b/_static/fonts/carlogo-regular.woff deleted file mode 100644 index 7a8ab29f96b..00000000000 Binary files a/_static/fonts/carlogo-regular.woff and /dev/null differ diff --git a/_static/fonts/carlogo-regular.woff2 b/_static/fonts/carlogo-regular.woff2 deleted file mode 100644 index 272988a2bc0..00000000000 Binary files a/_static/fonts/carlogo-regular.woff2 and /dev/null differ diff --git a/_static/gallery-binder.css b/_static/gallery-binder.css deleted file mode 120000 index eae17f2cc1e..00000000000 --- a/_static/gallery-binder.css +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_static/gallery-binder.css \ No newline at end of file diff --git a/_static/gallery-dataframe.css b/_static/gallery-dataframe.css deleted file mode 120000 index ed64165bf79..00000000000 --- a/_static/gallery-dataframe.css +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_static/gallery-dataframe.css \ No newline at end of file diff --git a/_static/gallery-rendered-html.css b/_static/gallery-rendered-html.css deleted file mode 120000 index c9f9634ccfc..00000000000 --- a/_static/gallery-rendered-html.css +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_static/gallery-rendered-html.css \ No newline at end of file diff --git a/_static/gallery.css b/_static/gallery.css deleted file mode 120000 index 13596035813..00000000000 --- a/_static/gallery.css +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/_static/gallery.css \ No newline at end of file diff --git a/_static/geoplot_nyc_traffic_tickets.png b/_static/geoplot_nyc_traffic_tickets.png deleted file mode 120000 index 5e795dfb5c1..00000000000 --- a/_static/geoplot_nyc_traffic_tickets.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/geoplot_nyc_traffic_tickets.png \ No newline at end of file diff --git a/_static/ggplot.png b/_static/ggplot.png deleted file mode 120000 index 51cffa39d85..00000000000 --- a/_static/ggplot.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/ggplot.png \ No newline at end of file diff --git a/_static/gif_attachment_example.png b/_static/gif_attachment_example.png deleted file mode 120000 index 88ea37bb973..00000000000 --- a/_static/gif_attachment_example.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/gif_attachment_example.png \ No newline at end of file diff --git a/_static/gold_on_carbon.jpg b/_static/gold_on_carbon.jpg deleted file mode 120000 index eb775ec05c2..00000000000 --- a/_static/gold_on_carbon.jpg +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/gold_on_carbon.jpg \ No newline at end of file diff --git a/_static/graphviz.css b/_static/graphviz.css deleted file mode 120000 index 01e2a7436b8..00000000000 --- a/_static/graphviz.css +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/graphviz.css \ No newline at end of file diff --git a/_static/highlight_text_examples.png b/_static/highlight_text_examples.png deleted file mode 120000 index 5ddf6eba82b..00000000000 --- a/_static/highlight_text_examples.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/highlight_text_examples.png \ No newline at end of file diff --git a/_static/histogram_frontpage.png b/_static/histogram_frontpage.png deleted file mode 120000 index 1a9de75bb97..00000000000 --- a/_static/histogram_frontpage.png +++ /dev/null @@ -1 +0,0 @@ -../2.0.2/_static/histogram_frontpage.png \ No newline at end of file diff --git a/_static/holoviews.png b/_static/holoviews.png deleted file mode 120000 index c8e300f035c..00000000000 --- a/_static/holoviews.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/holoviews.png \ No newline at end of file diff --git a/_static/icon.png b/_static/icon.png deleted file mode 120000 index fedcaa86e15..00000000000 --- a/_static/icon.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/icon.png \ No newline at end of file diff --git a/_static/images-rotate-info.js b/_static/images-rotate-info.js deleted file mode 100644 index 2764f4daf74..00000000000 --- a/_static/images-rotate-info.js +++ /dev/null @@ -1,23 +0,0 @@ -var images_rotate = [ - {"image": "quiver300.png", "caption": "quiver(X, Y, U, V)", "link": "plot_types/arrays/quiver.html"}, - {"image": "imshow300.png", "caption": "imshow(Z)", "link": "plot_types/arrays/imshow.html"}, - {"image": "pcolormesh300.png", "caption": "pcolormesh(X, Y, Z)", "link": "plot_types/arrays/pcolormesh.html"}, - {"image": "contourf300.png", "caption": "contourf(X, Y, Z)", "link": "plot_types/arrays/contourf.html"}, - {"image": "barbs300.png", "caption": "barbs(X, Y, U, V)", "link": "plot_types/arrays/barbs.html"}, - {"image": "contour300.png", "caption": "contour(X, Y, Z)", "link": "plot_types/arrays/contour.html"}, - {"image": "streamplot300.png", "caption": "streamplot(X, Y, U, V)", "link": "plot_types/arrays/streamplot.html"}, - {"image": "plot300.png", "caption": "plot(x, y)", "link": "plot_types/basic/plot.html"}, - {"image": "fill_between300.png", "caption": "fill_between(x, y1, y2)", "link": "plot_types/basic/fill_between.html"}, - {"image": "step300.png", "caption": "step(x, y)", "link": "plot_types/basic/step.html"}, - {"image": "scatter_plot300.png", "caption": "scatter(x, y)", "link": "plot_types/basic/scatter_plot.html"}, - {"image": "stem300.png", "caption": "stem(x, y)", "link": "plot_types/basic/stem.html"}, - {"image": "bar300.png", "caption": "bar(x, height) / barh(y, width)", "link": "plot_types/basic/bar.html"}, - {"image": "hist_plot300.png", "caption": "hist(x)", "link": "plot_types/stats/hist_plot.html"}, - {"image": "hist2d300.png", "caption": "hist2d(x, y)", "link": "plot_types/stats/hist2d.html"}, - {"image": "pie300.png", "caption": "pie(x)", "link": "plot_types/stats/pie.html"}, - {"image": "hexbin300.png", "caption": "hexbin(x, y, C)", "link": "plot_types/stats/hexbin.html"}, - {"image": "boxplot_plot300.png", "caption": "boxplot(X)", "link": "plot_types/stats/boxplot_plot.html"}, - {"image": "violin300.png", "caption": "violinplot(D)", "link": "plot_types/stats/violin.html"}, - {"image": "errorbar_plot300.png", "caption": "errorbar(x, y, yerr, xerr)", "link": "plot_types/stats/errorbar_plot.html"}, - {"image": "eventplot300.png", "caption": "eventplot(D)", "link": "plot_types/stats/eventplot.html"}, -]; \ No newline at end of file diff --git a/_static/images-rotate/_generate_images.py b/_static/images-rotate/_generate_images.py deleted file mode 100644 index ce31a55e43e..00000000000 --- a/_static/images-rotate/_generate_images.py +++ /dev/null @@ -1,35 +0,0 @@ - -from pathlib import Path -import logging - -import matplotlib -matplotlib.use('Agg') - -_log = logging.getLogger(__name__) -# start to make info.js - -stout = 'var images_rotate = [\n' -# assumes that your directory structure has matplotlib/ and mpl-brochure-site/ -# at the same level relative each other. -home = Path('../../../../matplotlib/') -dirs = ['plot_types/arrays/', 'plot_types/basic/', 'plot_types/stats/'] -for d in dirs: - _log.info('working on: %s', d) - for fn in (home / d).glob('*.py'): - _log.info(' %s', fn) - name = fn.stem - exec(fn.read_text()) - fig.savefig(f'{name}300.png', dpi=300) - # fig.savefig(f'{name}150.png', dpi=150) - stop = False - for line in open(fn): - if stop: - cap = line[:-1] - break - if line[:3] == '===': - stop = True - stout += ' {' + f'"image": "{name}300.png", "caption": "{cap}", "link": "{d}{name}.html"' + '},\n' - -stout += '];' - -open('../images-rotate-info.js', 'w').write(stout) \ No newline at end of file diff --git a/_static/images-rotate/bar300.png b/_static/images-rotate/bar300.png deleted file mode 100644 index b9a009c2ccc..00000000000 Binary files a/_static/images-rotate/bar300.png and /dev/null differ diff --git a/_static/images-rotate/barbs300.png b/_static/images-rotate/barbs300.png deleted file mode 100644 index 13fb9de3ea9..00000000000 Binary files a/_static/images-rotate/barbs300.png and /dev/null differ diff --git a/_static/images-rotate/boxplot_plot300.png b/_static/images-rotate/boxplot_plot300.png deleted file mode 100644 index 70b63077f11..00000000000 Binary files a/_static/images-rotate/boxplot_plot300.png and /dev/null differ diff --git a/_static/images-rotate/contour300.png b/_static/images-rotate/contour300.png deleted file mode 100644 index d4d538f2f4e..00000000000 Binary files a/_static/images-rotate/contour300.png and /dev/null differ diff --git a/_static/images-rotate/contourf300.png b/_static/images-rotate/contourf300.png deleted file mode 100644 index 0ee8074d243..00000000000 Binary files a/_static/images-rotate/contourf300.png and /dev/null differ diff --git a/_static/images-rotate/errorbar_plot300.png b/_static/images-rotate/errorbar_plot300.png deleted file mode 100644 index b41cbc5e037..00000000000 Binary files a/_static/images-rotate/errorbar_plot300.png and /dev/null differ diff --git a/_static/images-rotate/eventplot300.png b/_static/images-rotate/eventplot300.png deleted file mode 100644 index d6301eeb1ee..00000000000 Binary files a/_static/images-rotate/eventplot300.png and /dev/null differ diff --git a/_static/images-rotate/fill_between300.png b/_static/images-rotate/fill_between300.png deleted file mode 100644 index 9e536b2ba7c..00000000000 Binary files a/_static/images-rotate/fill_between300.png and /dev/null differ diff --git a/_static/images-rotate/hexbin300.png b/_static/images-rotate/hexbin300.png deleted file mode 100644 index 62a9137a8ad..00000000000 Binary files a/_static/images-rotate/hexbin300.png and /dev/null differ diff --git a/_static/images-rotate/hist2d300.png b/_static/images-rotate/hist2d300.png deleted file mode 100644 index dde8dd2f1dd..00000000000 Binary files a/_static/images-rotate/hist2d300.png and /dev/null differ diff --git a/_static/images-rotate/hist_plot300.png b/_static/images-rotate/hist_plot300.png deleted file mode 100644 index b0bc024a5c4..00000000000 Binary files a/_static/images-rotate/hist_plot300.png and /dev/null differ diff --git a/_static/images-rotate/imshow300.png b/_static/images-rotate/imshow300.png deleted file mode 100644 index 93992d6e5a8..00000000000 Binary files a/_static/images-rotate/imshow300.png and /dev/null differ diff --git a/_static/images-rotate/pcolormesh300.png b/_static/images-rotate/pcolormesh300.png deleted file mode 100644 index 17a391fe422..00000000000 Binary files a/_static/images-rotate/pcolormesh300.png and /dev/null differ diff --git a/_static/images-rotate/pie300.png b/_static/images-rotate/pie300.png deleted file mode 100644 index 9950443046d..00000000000 Binary files a/_static/images-rotate/pie300.png and /dev/null differ diff --git a/_static/images-rotate/plot300.png b/_static/images-rotate/plot300.png deleted file mode 100644 index 60a5fd99209..00000000000 Binary files a/_static/images-rotate/plot300.png and /dev/null differ diff --git a/_static/images-rotate/quiver300.png b/_static/images-rotate/quiver300.png deleted file mode 100644 index 4abff995bb9..00000000000 Binary files a/_static/images-rotate/quiver300.png and /dev/null differ diff --git a/_static/images-rotate/scatter_plot300.png b/_static/images-rotate/scatter_plot300.png deleted file mode 100644 index 6657ab10a79..00000000000 Binary files a/_static/images-rotate/scatter_plot300.png and /dev/null differ diff --git a/_static/images-rotate/stem300.png b/_static/images-rotate/stem300.png deleted file mode 100644 index ee3194fa73b..00000000000 Binary files a/_static/images-rotate/stem300.png and /dev/null differ diff --git a/_static/images-rotate/step300.png b/_static/images-rotate/step300.png deleted file mode 100644 index 88d3d4e1810..00000000000 Binary files a/_static/images-rotate/step300.png and /dev/null differ diff --git a/_static/images-rotate/streamplot300.png b/_static/images-rotate/streamplot300.png deleted file mode 100644 index f282d0b9e86..00000000000 Binary files a/_static/images-rotate/streamplot300.png and /dev/null differ diff --git a/_static/images-rotate/violin300.png b/_static/images-rotate/violin300.png deleted file mode 100644 index 7f790aa4c4d..00000000000 Binary files a/_static/images-rotate/violin300.png and /dev/null differ diff --git a/_static/images/arrow-right-solid-black.png b/_static/images/arrow-right-solid-black.png deleted file mode 100644 index bc11fc2de98..00000000000 Binary files a/_static/images/arrow-right-solid-black.png and /dev/null differ diff --git a/_static/images/arrow-right-solid-white.png b/_static/images/arrow-right-solid-white.png deleted file mode 100644 index 42db80b6f8d..00000000000 Binary files a/_static/images/arrow-right-solid-white.png and /dev/null differ diff --git a/_static/images/background.png b/_static/images/background.png deleted file mode 100644 index 90d154b25bf..00000000000 Binary files a/_static/images/background.png and /dev/null differ diff --git a/_static/images/binder_badge_logo.svg b/_static/images/binder_badge_logo.svg deleted file mode 100644 index 327f6b639a9..00000000000 --- a/_static/images/binder_badge_logo.svg +++ /dev/null @@ -1 +0,0 @@ - launchlaunchbinderbinder \ No newline at end of file diff --git a/_static/images/cheatsheets.png b/_static/images/cheatsheets.png deleted file mode 100644 index bceacf1629d..00000000000 Binary files a/_static/images/cheatsheets.png and /dev/null differ diff --git a/_static/images/contents.png b/_static/images/contents.png deleted file mode 100644 index 7fb82154a17..00000000000 Binary files a/_static/images/contents.png and /dev/null differ diff --git a/_static/images/copy-button.svg b/_static/images/copy-button.svg deleted file mode 100644 index 7cefcfff69e..00000000000 --- a/_static/images/copy-button.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/_static/images/dask-horizontal-white.svg b/_static/images/dask-horizontal-white.svg deleted file mode 100644 index 05cbf43fc19..00000000000 --- a/_static/images/dask-horizontal-white.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - Dask - - - - - - - - - diff --git a/_static/images/documentation.png b/_static/images/documentation.png deleted file mode 100644 index 8e7dabb7952..00000000000 Binary files a/_static/images/documentation.png and /dev/null differ diff --git a/_static/images/favicon.ico b/_static/images/favicon.ico deleted file mode 100644 index eac169d0c7e..00000000000 Binary files a/_static/images/favicon.ico and /dev/null differ diff --git a/_static/images/getting-started.png b/_static/images/getting-started.png deleted file mode 100644 index 37e9b6d26ea..00000000000 Binary files a/_static/images/getting-started.png and /dev/null differ diff --git a/_static/images/logo2.svg b/_static/images/logo2.svg deleted file mode 100644 index f2d289c72a0..00000000000 --- a/_static/images/logo2.svg +++ /dev/null @@ -1,552 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/_static/images/navigation.png b/_static/images/navigation.png deleted file mode 100644 index 1081dc1439f..00000000000 Binary files a/_static/images/navigation.png and /dev/null differ diff --git a/_static/images/numfocus_badge.png b/_static/images/numfocus_badge.png deleted file mode 100644 index b8d8e6ca838..00000000000 Binary files a/_static/images/numfocus_badge.png and /dev/null differ diff --git a/_static/images/sample-plots.png b/_static/images/sample-plots.png deleted file mode 100644 index ecd206e4e22..00000000000 Binary files a/_static/images/sample-plots.png and /dev/null differ diff --git a/_static/images/sphx_glr_3D_thumb.png b/_static/images/sphx_glr_3D_thumb.png deleted file mode 100644 index def58eaf49d..00000000000 Binary files a/_static/images/sphx_glr_3D_thumb.png and /dev/null differ diff --git a/_static/images/sphx_glr_contour_thumb.png b/_static/images/sphx_glr_contour_thumb.png deleted file mode 100644 index d79517cd231..00000000000 Binary files a/_static/images/sphx_glr_contour_thumb.png and /dev/null differ diff --git a/_static/images/sphx_glr_histogram_thumb.png b/_static/images/sphx_glr_histogram_thumb.png deleted file mode 100644 index 00e829fdf65..00000000000 Binary files a/_static/images/sphx_glr_histogram_thumb.png and /dev/null differ diff --git a/_static/images/sphx_glr_membrane_thumb.png b/_static/images/sphx_glr_membrane_thumb.png deleted file mode 100644 index 5929169b2ea..00000000000 Binary files a/_static/images/sphx_glr_membrane_thumb.png and /dev/null differ diff --git a/_static/images/userguide.png b/_static/images/userguide.png deleted file mode 100644 index d33e446d0b7..00000000000 Binary files a/_static/images/userguide.png and /dev/null differ diff --git a/_static/jquery-1.11.1.js b/_static/jquery-1.11.1.js deleted file mode 120000 index ef7225fb58f..00000000000 --- a/_static/jquery-1.11.1.js +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/_static/jquery-1.11.1.js \ No newline at end of file diff --git a/_static/jquery-3.2.1.js b/_static/jquery-3.2.1.js deleted file mode 120000 index bb7ede766e5..00000000000 --- a/_static/jquery-3.2.1.js +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/jquery-3.2.1.js \ No newline at end of file diff --git a/_static/jquery-3.4.1.js b/_static/jquery-3.4.1.js deleted file mode 120000 index a98b0ac57fe..00000000000 --- a/_static/jquery-3.4.1.js +++ /dev/null @@ -1 +0,0 @@ -../3.3.0/_static/jquery-3.4.1.js \ No newline at end of file diff --git a/_static/jquery-3.5.1.js b/_static/jquery-3.5.1.js deleted file mode 100644 index 50937333b99..00000000000 --- a/_static/jquery-3.5.1.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " -{% endmacro %} \ No newline at end of file diff --git a/_static/websupport.js b/_static/websupport.js deleted file mode 120000 index 971e580bf93..00000000000 --- a/_static/websupport.js +++ /dev/null @@ -1 +0,0 @@ -../3.1.3/_static/websupport.js \ No newline at end of file diff --git a/_static/yellowbrick.png b/_static/yellowbrick.png deleted file mode 120000 index 17fe74aca4e..00000000000 --- a/_static/yellowbrick.png +++ /dev/null @@ -1 +0,0 @@ -../stable/_static/yellowbrick.png \ No newline at end of file diff --git a/_static/zenodo_cache/1004650.svg b/_static/zenodo_cache/1004650.svg deleted file mode 120000 index 7dd7d81270a..00000000000 --- a/_static/zenodo_cache/1004650.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1004650.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1098480.svg b/_static/zenodo_cache/1098480.svg deleted file mode 120000 index fc3737bec42..00000000000 --- a/_static/zenodo_cache/1098480.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1098480.svg \ No newline at end of file diff --git a/_static/zenodo_cache/11451.svg b/_static/zenodo_cache/11451.svg deleted file mode 120000 index dcd554edc84..00000000000 --- a/_static/zenodo_cache/11451.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/11451.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1154287.svg b/_static/zenodo_cache/1154287.svg deleted file mode 120000 index 92f4b4d4886..00000000000 --- a/_static/zenodo_cache/1154287.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1154287.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1189358.svg b/_static/zenodo_cache/1189358.svg deleted file mode 120000 index 937ea9c96dd..00000000000 --- a/_static/zenodo_cache/1189358.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1189358.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1202050.svg b/_static/zenodo_cache/1202050.svg deleted file mode 120000 index a6dfdbf024e..00000000000 --- a/_static/zenodo_cache/1202050.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1202050.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1202077.svg b/_static/zenodo_cache/1202077.svg deleted file mode 120000 index 5264b1b5526..00000000000 --- a/_static/zenodo_cache/1202077.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1202077.svg \ No newline at end of file diff --git a/_static/zenodo_cache/12287.svg b/_static/zenodo_cache/12287.svg deleted file mode 120000 index 3fe16b0bfad..00000000000 --- a/_static/zenodo_cache/12287.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/12287.svg \ No newline at end of file diff --git a/_static/zenodo_cache/12400.svg b/_static/zenodo_cache/12400.svg deleted file mode 120000 index 2ea90b8c620..00000000000 --- a/_static/zenodo_cache/12400.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/12400.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1343133.svg b/_static/zenodo_cache/1343133.svg deleted file mode 120000 index ca8898806ce..00000000000 --- a/_static/zenodo_cache/1343133.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1343133.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1420605.svg b/_static/zenodo_cache/1420605.svg deleted file mode 120000 index a7a900d6283..00000000000 --- a/_static/zenodo_cache/1420605.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1420605.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1482098.svg b/_static/zenodo_cache/1482098.svg deleted file mode 120000 index 3b0c79627df..00000000000 --- a/_static/zenodo_cache/1482098.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1482098.svg \ No newline at end of file diff --git a/_static/zenodo_cache/1482099.svg b/_static/zenodo_cache/1482099.svg deleted file mode 120000 index 8b98b2e6afe..00000000000 --- a/_static/zenodo_cache/1482099.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/1482099.svg \ No newline at end of file diff --git a/_static/zenodo_cache/15423.svg b/_static/zenodo_cache/15423.svg deleted file mode 120000 index 82986767163..00000000000 --- a/_static/zenodo_cache/15423.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/15423.svg \ No newline at end of file diff --git a/_static/zenodo_cache/248351.svg b/_static/zenodo_cache/248351.svg deleted file mode 120000 index 61d4b7a9498..00000000000 --- a/_static/zenodo_cache/248351.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/248351.svg \ No newline at end of file diff --git a/_static/zenodo_cache/2577644.svg b/_static/zenodo_cache/2577644.svg deleted file mode 120000 index 55750b650d9..00000000000 --- a/_static/zenodo_cache/2577644.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/2577644.svg \ No newline at end of file diff --git a/_static/zenodo_cache/2669103.svg b/_static/zenodo_cache/2669103.svg deleted file mode 120000 index da60a73bce1..00000000000 --- a/_static/zenodo_cache/2669103.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/2669103.svg \ No newline at end of file diff --git a/_static/zenodo_cache/2893252.svg b/_static/zenodo_cache/2893252.svg deleted file mode 120000 index 0fd4d460355..00000000000 --- a/_static/zenodo_cache/2893252.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/2893252.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3264781.svg b/_static/zenodo_cache/3264781.svg deleted file mode 120000 index 5847210fa8a..00000000000 --- a/_static/zenodo_cache/3264781.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3264781.svg \ No newline at end of file diff --git a/_static/zenodo_cache/32914.svg b/_static/zenodo_cache/32914.svg deleted file mode 120000 index 4679d275ae6..00000000000 --- a/_static/zenodo_cache/32914.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/32914.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3563226.svg b/_static/zenodo_cache/3563226.svg deleted file mode 120000 index 2003c6c32d1..00000000000 --- a/_static/zenodo_cache/3563226.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3563226.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3633833.svg b/_static/zenodo_cache/3633833.svg deleted file mode 120000 index f8a82495d97..00000000000 --- a/_static/zenodo_cache/3633833.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3633833.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3633844.svg b/_static/zenodo_cache/3633844.svg deleted file mode 120000 index b6a81327565..00000000000 --- a/_static/zenodo_cache/3633844.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3633844.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3695547.svg b/_static/zenodo_cache/3695547.svg deleted file mode 120000 index 79af295db36..00000000000 --- a/_static/zenodo_cache/3695547.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3695547.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3714460.svg b/_static/zenodo_cache/3714460.svg deleted file mode 120000 index df9a631001c..00000000000 --- a/_static/zenodo_cache/3714460.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3714460.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3898017.svg b/_static/zenodo_cache/3898017.svg deleted file mode 120000 index e2fc01c7158..00000000000 --- a/_static/zenodo_cache/3898017.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3898017.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3948793.svg b/_static/zenodo_cache/3948793.svg deleted file mode 120000 index 7ac7491d68c..00000000000 --- a/_static/zenodo_cache/3948793.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3948793.svg \ No newline at end of file diff --git a/_static/zenodo_cache/3984190.svg b/_static/zenodo_cache/3984190.svg deleted file mode 120000 index a68d74a5c21..00000000000 --- a/_static/zenodo_cache/3984190.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/3984190.svg \ No newline at end of file diff --git a/_static/zenodo_cache/4030140.svg b/_static/zenodo_cache/4030140.svg deleted file mode 120000 index 48dbcbb3e5e..00000000000 --- a/_static/zenodo_cache/4030140.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/4030140.svg \ No newline at end of file diff --git a/_static/zenodo_cache/4268928.svg b/_static/zenodo_cache/4268928.svg deleted file mode 120000 index f8532d7a1cf..00000000000 --- a/_static/zenodo_cache/4268928.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/4268928.svg \ No newline at end of file diff --git a/_static/zenodo_cache/44579.svg b/_static/zenodo_cache/44579.svg deleted file mode 120000 index c7aa63030f1..00000000000 --- a/_static/zenodo_cache/44579.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/44579.svg \ No newline at end of file diff --git a/_static/zenodo_cache/4475376.svg b/_static/zenodo_cache/4475376.svg deleted file mode 120000 index 207e9903b0c..00000000000 --- a/_static/zenodo_cache/4475376.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/4475376.svg \ No newline at end of file diff --git a/_static/zenodo_cache/4638398.svg b/_static/zenodo_cache/4638398.svg deleted file mode 120000 index 5e4c386cafa..00000000000 --- a/_static/zenodo_cache/4638398.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/4638398.svg \ No newline at end of file diff --git a/_static/zenodo_cache/4649959.svg b/_static/zenodo_cache/4649959.svg deleted file mode 120000 index 3733df05e3e..00000000000 --- a/_static/zenodo_cache/4649959.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/4649959.svg \ No newline at end of file diff --git a/_static/zenodo_cache/4743323.svg b/_static/zenodo_cache/4743323.svg deleted file mode 120000 index be5c7339479..00000000000 --- a/_static/zenodo_cache/4743323.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/4743323.svg \ No newline at end of file diff --git a/_static/zenodo_cache/5194481.svg b/_static/zenodo_cache/5194481.svg deleted file mode 120000 index 9e63e9dc6ff..00000000000 --- a/_static/zenodo_cache/5194481.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/5194481.svg \ No newline at end of file diff --git a/_static/zenodo_cache/56926.svg b/_static/zenodo_cache/56926.svg deleted file mode 120000 index 89311fe3e8d..00000000000 --- a/_static/zenodo_cache/56926.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/56926.svg \ No newline at end of file diff --git a/_static/zenodo_cache/570311.svg b/_static/zenodo_cache/570311.svg deleted file mode 120000 index 5bd754c8824..00000000000 --- a/_static/zenodo_cache/570311.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/570311.svg \ No newline at end of file diff --git a/_static/zenodo_cache/5706396.svg b/_static/zenodo_cache/5706396.svg deleted file mode 120000 index f64ed132f58..00000000000 --- a/_static/zenodo_cache/5706396.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/5706396.svg \ No newline at end of file diff --git a/_static/zenodo_cache/573577.svg b/_static/zenodo_cache/573577.svg deleted file mode 120000 index 7e1292bedf4..00000000000 --- a/_static/zenodo_cache/573577.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/573577.svg \ No newline at end of file diff --git a/_static/zenodo_cache/61948.svg b/_static/zenodo_cache/61948.svg deleted file mode 120000 index 84d27226f8a..00000000000 --- a/_static/zenodo_cache/61948.svg +++ /dev/null @@ -1 +0,0 @@ -../../stable/_static/zenodo_cache/61948.svg \ No newline at end of file diff --git a/api/_api_api.html b/api/_api_api.html deleted file mode 100644 index 66d305c2ca1..00000000000 --- a/api/_api_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.pdf b/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.pdf deleted file mode 120000 index 2a686b6cc45..00000000000 --- a/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.pdf \ No newline at end of file diff --git a/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.png b/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.png deleted file mode 120000 index 4a2b95ad43c..00000000000 --- a/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.png \ No newline at end of file diff --git a/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.py b/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.py deleted file mode 120000 index 1871246eb27..00000000000 --- a/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/_as_gen/matplotlib-axes-Axes-secondary_xaxis-1.py \ No newline at end of file diff --git a/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.pdf b/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.pdf deleted file mode 120000 index 3630ea11e2a..00000000000 --- a/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.pdf \ No newline at end of file diff --git a/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.png b/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.png deleted file mode 120000 index 2fab6189335..00000000000 --- a/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.png \ No newline at end of file diff --git a/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.py b/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.py deleted file mode 120000 index fea38770453..00000000000 --- a/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/_as_gen/matplotlib-axes-Axes-secondary_yaxis-1.py \ No newline at end of file diff --git a/api/_as_gen/matplotlib.animation.AVConvBase.html b/api/_as_gen/matplotlib.animation.AVConvBase.html deleted file mode 100644 index e69c1ed7856..00000000000 --- a/api/_as_gen/matplotlib.animation.AVConvBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.AVConvFileWriter.html b/api/_as_gen/matplotlib.animation.AVConvFileWriter.html deleted file mode 100644 index a9fee997d70..00000000000 --- a/api/_as_gen/matplotlib.animation.AVConvFileWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.AVConvWriter.html b/api/_as_gen/matplotlib.animation.AVConvWriter.html deleted file mode 100644 index d9ed1aa4d48..00000000000 --- a/api/_as_gen/matplotlib.animation.AVConvWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.AbstractMovieWriter.html b/api/_as_gen/matplotlib.animation.AbstractMovieWriter.html deleted file mode 100644 index 9c8022f8aae..00000000000 --- a/api/_as_gen/matplotlib.animation.AbstractMovieWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.Animation.html b/api/_as_gen/matplotlib.animation.Animation.html deleted file mode 100644 index 0990fddcffc..00000000000 --- a/api/_as_gen/matplotlib.animation.Animation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.Animation.save.html b/api/_as_gen/matplotlib.animation.Animation.save.html deleted file mode 100644 index 0483090a3b6..00000000000 --- a/api/_as_gen/matplotlib.animation.Animation.save.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.Animation.to_html5_video.html b/api/_as_gen/matplotlib.animation.Animation.to_html5_video.html deleted file mode 100644 index 80984503f5b..00000000000 --- a/api/_as_gen/matplotlib.animation.Animation.to_html5_video.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.ArtistAnimation.html b/api/_as_gen/matplotlib.animation.ArtistAnimation.html deleted file mode 100644 index 537b58f3f59..00000000000 --- a/api/_as_gen/matplotlib.animation.ArtistAnimation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.FFMpegBase.html b/api/_as_gen/matplotlib.animation.FFMpegBase.html deleted file mode 100644 index 55eb2a71b82..00000000000 --- a/api/_as_gen/matplotlib.animation.FFMpegBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.FFMpegFileWriter.html b/api/_as_gen/matplotlib.animation.FFMpegFileWriter.html deleted file mode 100644 index e3db3b770ae..00000000000 --- a/api/_as_gen/matplotlib.animation.FFMpegFileWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.FFMpegWriter.html b/api/_as_gen/matplotlib.animation.FFMpegWriter.html deleted file mode 100644 index 6027b7c2cd7..00000000000 --- a/api/_as_gen/matplotlib.animation.FFMpegWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.FileMovieWriter.html b/api/_as_gen/matplotlib.animation.FileMovieWriter.html deleted file mode 100644 index 49e9486498c..00000000000 --- a/api/_as_gen/matplotlib.animation.FileMovieWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.FileMovieWriter.setup.html b/api/_as_gen/matplotlib.animation.FileMovieWriter.setup.html deleted file mode 100644 index 84a3f26f79e..00000000000 --- a/api/_as_gen/matplotlib.animation.FileMovieWriter.setup.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.FuncAnimation.html b/api/_as_gen/matplotlib.animation.FuncAnimation.html deleted file mode 100644 index a492762a68e..00000000000 --- a/api/_as_gen/matplotlib.animation.FuncAnimation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.HTMLWriter.html b/api/_as_gen/matplotlib.animation.HTMLWriter.html deleted file mode 100644 index 9195fa7469b..00000000000 --- a/api/_as_gen/matplotlib.animation.HTMLWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.ImageMagickBase.html b/api/_as_gen/matplotlib.animation.ImageMagickBase.html deleted file mode 100644 index 47d7a366077..00000000000 --- a/api/_as_gen/matplotlib.animation.ImageMagickBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.html b/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.html deleted file mode 100644 index 2865eadb459..00000000000 --- a/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.ImageMagickWriter.html b/api/_as_gen/matplotlib.animation.ImageMagickWriter.html deleted file mode 100644 index 28f618c035e..00000000000 --- a/api/_as_gen/matplotlib.animation.ImageMagickWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MencoderBase.html b/api/_as_gen/matplotlib.animation.MencoderBase.html deleted file mode 100644 index 3109a635803..00000000000 --- a/api/_as_gen/matplotlib.animation.MencoderBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MencoderFileWriter.html b/api/_as_gen/matplotlib.animation.MencoderFileWriter.html deleted file mode 100644 index ed8818da1df..00000000000 --- a/api/_as_gen/matplotlib.animation.MencoderFileWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MencoderWriter.html b/api/_as_gen/matplotlib.animation.MencoderWriter.html deleted file mode 100644 index 5b08006e361..00000000000 --- a/api/_as_gen/matplotlib.animation.MencoderWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MovieWriter.finish.html b/api/_as_gen/matplotlib.animation.MovieWriter.finish.html deleted file mode 100644 index cfbd71896f1..00000000000 --- a/api/_as_gen/matplotlib.animation.MovieWriter.finish.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MovieWriter.grab_frame.html b/api/_as_gen/matplotlib.animation.MovieWriter.grab_frame.html deleted file mode 100644 index e4bb0e9dda5..00000000000 --- a/api/_as_gen/matplotlib.animation.MovieWriter.grab_frame.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MovieWriter.html b/api/_as_gen/matplotlib.animation.MovieWriter.html deleted file mode 100644 index 152d97656b6..00000000000 --- a/api/_as_gen/matplotlib.animation.MovieWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MovieWriter.saving.html b/api/_as_gen/matplotlib.animation.MovieWriter.saving.html deleted file mode 100644 index 646af9d9f7f..00000000000 --- a/api/_as_gen/matplotlib.animation.MovieWriter.saving.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MovieWriter.setup.html b/api/_as_gen/matplotlib.animation.MovieWriter.setup.html deleted file mode 100644 index bf00111808f..00000000000 --- a/api/_as_gen/matplotlib.animation.MovieWriter.setup.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.MovieWriterRegistry.html b/api/_as_gen/matplotlib.animation.MovieWriterRegistry.html deleted file mode 100644 index c9b0e148350..00000000000 --- a/api/_as_gen/matplotlib.animation.MovieWriterRegistry.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.PillowWriter.html b/api/_as_gen/matplotlib.animation.PillowWriter.html deleted file mode 100644 index 4e53dcc4a25..00000000000 --- a/api/_as_gen/matplotlib.animation.PillowWriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.animation.TimedAnimation.html b/api/_as_gen/matplotlib.animation.TimedAnimation.html deleted file mode 100644 index fecd528a808..00000000000 --- a/api/_as_gen/matplotlib.animation.TimedAnimation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.add_callback.html b/api/_as_gen/matplotlib.artist.Artist.add_callback.html deleted file mode 100644 index 34c98b491de..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.aname.html b/api/_as_gen/matplotlib.artist.Artist.aname.html deleted file mode 100644 index 979acbef0d3..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.axes.html b/api/_as_gen/matplotlib.artist.Artist.axes.html deleted file mode 100644 index 9b6b6ed4f42..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.contains.html b/api/_as_gen/matplotlib.artist.Artist.contains.html deleted file mode 100644 index a144e0979de..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.convert_xunits.html b/api/_as_gen/matplotlib.artist.Artist.convert_xunits.html deleted file mode 100644 index 8803fbf58ed..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.convert_yunits.html b/api/_as_gen/matplotlib.artist.Artist.convert_yunits.html deleted file mode 100644 index 20f543bfeaf..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.draw.html b/api/_as_gen/matplotlib.artist.Artist.draw.html deleted file mode 100644 index 3dc78703393..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.findobj.html b/api/_as_gen/matplotlib.artist.Artist.findobj.html deleted file mode 100644 index 43620ad1f85..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.format_cursor_data.html b/api/_as_gen/matplotlib.artist.Artist.format_cursor_data.html deleted file mode 100644 index f15b833e79a..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_agg_filter.html b/api/_as_gen/matplotlib.artist.Artist.get_agg_filter.html deleted file mode 100644 index ebb64be2958..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_alpha.html b/api/_as_gen/matplotlib.artist.Artist.get_alpha.html deleted file mode 100644 index 2e4ae34947e..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_animated.html b/api/_as_gen/matplotlib.artist.Artist.get_animated.html deleted file mode 100644 index 3512736bc6e..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_axes.html b/api/_as_gen/matplotlib.artist.Artist.get_axes.html deleted file mode 100644 index 0f6652b653e..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_children.html b/api/_as_gen/matplotlib.artist.Artist.get_children.html deleted file mode 100644 index 2a041facbfe..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_clip_box.html b/api/_as_gen/matplotlib.artist.Artist.get_clip_box.html deleted file mode 100644 index 5779aeeb9f4..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_clip_on.html b/api/_as_gen/matplotlib.artist.Artist.get_clip_on.html deleted file mode 100644 index 34b12301680..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_clip_path.html b/api/_as_gen/matplotlib.artist.Artist.get_clip_path.html deleted file mode 100644 index 0f9bb41db64..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_contains.html b/api/_as_gen/matplotlib.artist.Artist.get_contains.html deleted file mode 100644 index f02bbcc93cc..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_cursor_data.html b/api/_as_gen/matplotlib.artist.Artist.get_cursor_data.html deleted file mode 100644 index c5c291ef413..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_figure.html b/api/_as_gen/matplotlib.artist.Artist.get_figure.html deleted file mode 100644 index c611f9b637e..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_gid.html b/api/_as_gen/matplotlib.artist.Artist.get_gid.html deleted file mode 100644 index f2031b71326..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_in_layout.html b/api/_as_gen/matplotlib.artist.Artist.get_in_layout.html deleted file mode 100644 index 4b8dad30778..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_in_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_label.html b/api/_as_gen/matplotlib.artist.Artist.get_label.html deleted file mode 100644 index 5275558a2b1..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_path_effects.html b/api/_as_gen/matplotlib.artist.Artist.get_path_effects.html deleted file mode 100644 index fccff1912e1..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_picker.html b/api/_as_gen/matplotlib.artist.Artist.get_picker.html deleted file mode 100644 index 1f5f0578f49..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_rasterized.html b/api/_as_gen/matplotlib.artist.Artist.get_rasterized.html deleted file mode 100644 index 0770d01e2d1..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_sketch_params.html b/api/_as_gen/matplotlib.artist.Artist.get_sketch_params.html deleted file mode 100644 index 082475b2844..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_snap.html b/api/_as_gen/matplotlib.artist.Artist.get_snap.html deleted file mode 100644 index d999ff8f1c5..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_transform.html b/api/_as_gen/matplotlib.artist.Artist.get_transform.html deleted file mode 100644 index ab8cbce32a8..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.artist.Artist.get_transformed_clip_path_and_affine.html deleted file mode 100644 index 4b242f5e109..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_url.html b/api/_as_gen/matplotlib.artist.Artist.get_url.html deleted file mode 100644 index e45cb8690a5..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_visible.html b/api/_as_gen/matplotlib.artist.Artist.get_visible.html deleted file mode 100644 index 58a06eca6a7..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_window_extent.html b/api/_as_gen/matplotlib.artist.Artist.get_window_extent.html deleted file mode 100644 index 094be8e0a8b..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.get_zorder.html b/api/_as_gen/matplotlib.artist.Artist.get_zorder.html deleted file mode 100644 index dd01484353c..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.have_units.html b/api/_as_gen/matplotlib.artist.Artist.have_units.html deleted file mode 100644 index 74fab525c98..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.hitlist.html b/api/_as_gen/matplotlib.artist.Artist.hitlist.html deleted file mode 100644 index 53d0a03bc15..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.is_figure_set.html b/api/_as_gen/matplotlib.artist.Artist.is_figure_set.html deleted file mode 100644 index 57ed2f52e81..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.is_transform_set.html b/api/_as_gen/matplotlib.artist.Artist.is_transform_set.html deleted file mode 100644 index 6dd4405139e..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.mouseover.html b/api/_as_gen/matplotlib.artist.Artist.mouseover.html deleted file mode 100644 index a29916c4965..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.pchanged.html b/api/_as_gen/matplotlib.artist.Artist.pchanged.html deleted file mode 100644 index 6b82bc2c0fa..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.pick.html b/api/_as_gen/matplotlib.artist.Artist.pick.html deleted file mode 100644 index daf47f1f9be..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.pickable.html b/api/_as_gen/matplotlib.artist.Artist.pickable.html deleted file mode 100644 index 5f4155ad5e9..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.properties.html b/api/_as_gen/matplotlib.artist.Artist.properties.html deleted file mode 100644 index 1d47528c062..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.remove.html b/api/_as_gen/matplotlib.artist.Artist.remove.html deleted file mode 100644 index 4621b308efb..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.remove_callback.html b/api/_as_gen/matplotlib.artist.Artist.remove_callback.html deleted file mode 100644 index ccfd4b754b8..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set.html b/api/_as_gen/matplotlib.artist.Artist.set.html deleted file mode 100644 index 3d6c3a8fa68..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_agg_filter.html b/api/_as_gen/matplotlib.artist.Artist.set_agg_filter.html deleted file mode 100644 index 140ff3d4a1c..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_alpha.html b/api/_as_gen/matplotlib.artist.Artist.set_alpha.html deleted file mode 100644 index 65fba8ded20..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_animated.html b/api/_as_gen/matplotlib.artist.Artist.set_animated.html deleted file mode 100644 index 2ce29aba321..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_axes.html b/api/_as_gen/matplotlib.artist.Artist.set_axes.html deleted file mode 100644 index 8513b51af56..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_clip_box.html b/api/_as_gen/matplotlib.artist.Artist.set_clip_box.html deleted file mode 100644 index 86f8762a4d3..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_clip_on.html b/api/_as_gen/matplotlib.artist.Artist.set_clip_on.html deleted file mode 100644 index 6d1eed91306..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_clip_path.html b/api/_as_gen/matplotlib.artist.Artist.set_clip_path.html deleted file mode 100644 index 134b928c90a..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_contains.html b/api/_as_gen/matplotlib.artist.Artist.set_contains.html deleted file mode 100644 index ee71441215a..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_figure.html b/api/_as_gen/matplotlib.artist.Artist.set_figure.html deleted file mode 100644 index 18dc77a9bae..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_gid.html b/api/_as_gen/matplotlib.artist.Artist.set_gid.html deleted file mode 100644 index f8d98566aa9..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_in_layout.html b/api/_as_gen/matplotlib.artist.Artist.set_in_layout.html deleted file mode 100644 index 1265ab381e8..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_in_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_label.html b/api/_as_gen/matplotlib.artist.Artist.set_label.html deleted file mode 100644 index 8a4150e3dcd..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_path_effects.html b/api/_as_gen/matplotlib.artist.Artist.set_path_effects.html deleted file mode 100644 index d6900ba4f6b..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_picker.html b/api/_as_gen/matplotlib.artist.Artist.set_picker.html deleted file mode 100644 index a5723ed198a..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_rasterized.html b/api/_as_gen/matplotlib.artist.Artist.set_rasterized.html deleted file mode 100644 index d85a5e54629..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_sketch_params.html b/api/_as_gen/matplotlib.artist.Artist.set_sketch_params.html deleted file mode 100644 index 33272532c0f..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_snap.html b/api/_as_gen/matplotlib.artist.Artist.set_snap.html deleted file mode 100644 index 188579a15d6..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_transform.html b/api/_as_gen/matplotlib.artist.Artist.set_transform.html deleted file mode 100644 index 6923c2aba07..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_url.html b/api/_as_gen/matplotlib.artist.Artist.set_url.html deleted file mode 100644 index 371ace1c6dd..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_visible.html b/api/_as_gen/matplotlib.artist.Artist.set_visible.html deleted file mode 100644 index ccf056bea29..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.set_zorder.html b/api/_as_gen/matplotlib.artist.Artist.set_zorder.html deleted file mode 100644 index 2c356be0dfd..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.stale.html b/api/_as_gen/matplotlib.artist.Artist.stale.html deleted file mode 100644 index 7170302c754..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.sticky_edges.html b/api/_as_gen/matplotlib.artist.Artist.sticky_edges.html deleted file mode 100644 index 7a149d4abda..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.sticky_edges.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.update.html b/api/_as_gen/matplotlib.artist.Artist.update.html deleted file mode 100644 index 1c206125d56..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.update_from.html b/api/_as_gen/matplotlib.artist.Artist.update_from.html deleted file mode 100644 index 446aa5e7b28..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.Artist.zorder.html b/api/_as_gen/matplotlib.artist.Artist.zorder.html deleted file mode 100644 index 8c2d0924ff1..00000000000 --- a/api/_as_gen/matplotlib.artist.Artist.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.ArtistInspector.html b/api/_as_gen/matplotlib.artist.ArtistInspector.html deleted file mode 100644 index b133c9f35ea..00000000000 --- a/api/_as_gen/matplotlib.artist.ArtistInspector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.allow_rasterization.html b/api/_as_gen/matplotlib.artist.allow_rasterization.html deleted file mode 100644 index caad622ee37..00000000000 --- a/api/_as_gen/matplotlib.artist.allow_rasterization.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.get.html b/api/_as_gen/matplotlib.artist.get.html deleted file mode 100644 index f7175b059f7..00000000000 --- a/api/_as_gen/matplotlib.artist.get.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.getp.html b/api/_as_gen/matplotlib.artist.getp.html deleted file mode 100644 index 56a12da6b57..00000000000 --- a/api/_as_gen/matplotlib.artist.getp.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.kwdoc.html b/api/_as_gen/matplotlib.artist.kwdoc.html deleted file mode 100644 index 1c13b7ba0b8..00000000000 --- a/api/_as_gen/matplotlib.artist.kwdoc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.artist.setp.html b/api/_as_gen/matplotlib.artist.setp.html deleted file mode 100644 index c94f2511742..00000000000 --- a/api/_as_gen/matplotlib.artist.setp.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.acorr.html b/api/_as_gen/matplotlib.axes.Axes.acorr.html deleted file mode 100644 index 42f89b8d1a1..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.acorr.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_artist.html b/api/_as_gen/matplotlib.axes.Axes.add_artist.html deleted file mode 100644 index 10b47d8f680..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_artist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_callback.html b/api/_as_gen/matplotlib.axes.Axes.add_callback.html deleted file mode 100644 index 20c6e53dc82..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_child_axes.html b/api/_as_gen/matplotlib.axes.Axes.add_child_axes.html deleted file mode 100644 index 38285f99fb6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_child_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_collection.html b/api/_as_gen/matplotlib.axes.Axes.add_collection.html deleted file mode 100644 index 728a4ac3f4a..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_container.html b/api/_as_gen/matplotlib.axes.Axes.add_container.html deleted file mode 100644 index ad43d93e21b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_container.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_image.html b/api/_as_gen/matplotlib.axes.Axes.add_image.html deleted file mode 100644 index 474da5a956c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_line.html b/api/_as_gen/matplotlib.axes.Axes.add_line.html deleted file mode 100644 index dc9f06aa55e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_line.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_patch.html b/api/_as_gen/matplotlib.axes.Axes.add_patch.html deleted file mode 100644 index 62a873b5d3d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_patch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.add_table.html b/api/_as_gen/matplotlib.axes.Axes.add_table.html deleted file mode 100644 index 83ce3e74481..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.add_table.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.aname.html b/api/_as_gen/matplotlib.axes.Axes.aname.html deleted file mode 100644 index 7ed34faf4d8..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.angle_spectrum.html b/api/_as_gen/matplotlib.axes.Axes.angle_spectrum.html deleted file mode 100644 index cdcb9dac18d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.angle_spectrum.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.annotate.html b/api/_as_gen/matplotlib.axes.Axes.annotate.html deleted file mode 100644 index 3288fb57b7e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.annotate.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.apply_aspect.html b/api/_as_gen/matplotlib.axes.Axes.apply_aspect.html deleted file mode 100644 index 8787d1b10f5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.apply_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.arrow.html b/api/_as_gen/matplotlib.axes.Axes.arrow.html deleted file mode 100644 index 2cf8e5189f4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.arrow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.autoscale.html b/api/_as_gen/matplotlib.axes.Axes.autoscale.html deleted file mode 100644 index 10196d1dd20..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.autoscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.autoscale_view.html b/api/_as_gen/matplotlib.axes.Axes.autoscale_view.html deleted file mode 100644 index 48d44e704ca..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.autoscale_view.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.axes.html b/api/_as_gen/matplotlib.axes.Axes.axes.html deleted file mode 100644 index 0ba2dca751d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.axhline.html b/api/_as_gen/matplotlib.axes.Axes.axhline.html deleted file mode 100644 index 0e1d1229be0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.axhline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.axhspan.html b/api/_as_gen/matplotlib.axes.Axes.axhspan.html deleted file mode 100644 index 4e9a240e059..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.axhspan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.axis.html b/api/_as_gen/matplotlib.axes.Axes.axis.html deleted file mode 100644 index 78f9e4068ff..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.axline.html b/api/_as_gen/matplotlib.axes.Axes.axline.html deleted file mode 100644 index d48f63b0729..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.axline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.axvline.html b/api/_as_gen/matplotlib.axes.Axes.axvline.html deleted file mode 100644 index 6621b4a781f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.axvline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.axvspan.html b/api/_as_gen/matplotlib.axes.Axes.axvspan.html deleted file mode 100644 index 290fc45b74d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.axvspan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.bar.html b/api/_as_gen/matplotlib.axes.Axes.bar.html deleted file mode 100644 index 29ae76d7b26..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.bar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.bar_label.html b/api/_as_gen/matplotlib.axes.Axes.bar_label.html deleted file mode 100644 index 4c33eeb0a82..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.bar_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.barbs.html b/api/_as_gen/matplotlib.axes.Axes.barbs.html deleted file mode 100644 index 482a1a99615..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.barbs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.barh.html b/api/_as_gen/matplotlib.axes.Axes.barh.html deleted file mode 100644 index cc0c54e5f3f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.barh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.boxplot.html b/api/_as_gen/matplotlib.axes.Axes.boxplot.html deleted file mode 100644 index 26eb5d0fd86..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.boxplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.broken_barh.html b/api/_as_gen/matplotlib.axes.Axes.broken_barh.html deleted file mode 100644 index c626111a696..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.broken_barh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.bxp.html b/api/_as_gen/matplotlib.axes.Axes.bxp.html deleted file mode 100644 index 313cde48603..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.bxp.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.can_pan.html b/api/_as_gen/matplotlib.axes.Axes.can_pan.html deleted file mode 100644 index ed9bb0c2283..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.can_pan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.can_zoom.html b/api/_as_gen/matplotlib.axes.Axes.can_zoom.html deleted file mode 100644 index 94f3c1785be..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.can_zoom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.cla.html b/api/_as_gen/matplotlib.axes.Axes.cla.html deleted file mode 100644 index a2a2e605458..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.cla.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.clabel.html b/api/_as_gen/matplotlib.axes.Axes.clabel.html deleted file mode 100644 index 455d9cecbc4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.clabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.clear.html b/api/_as_gen/matplotlib.axes.Axes.clear.html deleted file mode 100644 index d0bc0624c81..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.clear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.cohere.html b/api/_as_gen/matplotlib.axes.Axes.cohere.html deleted file mode 100644 index 0e1d60fd103..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.cohere.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.contains.html b/api/_as_gen/matplotlib.axes.Axes.contains.html deleted file mode 100644 index 7cab86abdac..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.contains_point.html b/api/_as_gen/matplotlib.axes.Axes.contains_point.html deleted file mode 100644 index f7190325f65..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.contains_point.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.contour.html b/api/_as_gen/matplotlib.axes.Axes.contour.html deleted file mode 100644 index 23fe4767d25..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.contour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.contourf.html b/api/_as_gen/matplotlib.axes.Axes.contourf.html deleted file mode 100644 index 50d2ea943bd..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.contourf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.convert_xunits.html b/api/_as_gen/matplotlib.axes.Axes.convert_xunits.html deleted file mode 100644 index 1ff25fb610a..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.convert_yunits.html b/api/_as_gen/matplotlib.axes.Axes.convert_yunits.html deleted file mode 100644 index d86f69df25b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.csd.html b/api/_as_gen/matplotlib.axes.Axes.csd.html deleted file mode 100644 index d75150d75ed..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.csd.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.drag_pan.html b/api/_as_gen/matplotlib.axes.Axes.drag_pan.html deleted file mode 100644 index c40098df1b0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.drag_pan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.draw.html b/api/_as_gen/matplotlib.axes.Axes.draw.html deleted file mode 100644 index 9051d7a659d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.draw_artist.html b/api/_as_gen/matplotlib.axes.Axes.draw_artist.html deleted file mode 100644 index ceb1898fea5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.draw_artist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.end_pan.html b/api/_as_gen/matplotlib.axes.Axes.end_pan.html deleted file mode 100644 index 9b69d54de03..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.end_pan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.errorbar.html b/api/_as_gen/matplotlib.axes.Axes.errorbar.html deleted file mode 100644 index 1eeb1e0a7e0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.errorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.eventplot.html b/api/_as_gen/matplotlib.axes.Axes.eventplot.html deleted file mode 100644 index 06e3f8a16b7..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.eventplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.fill.html b/api/_as_gen/matplotlib.axes.Axes.fill.html deleted file mode 100644 index 7beaa8320f3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.fill.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.fill_between.html b/api/_as_gen/matplotlib.axes.Axes.fill_between.html deleted file mode 100644 index c2434852c12..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.fill_between.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.fill_betweenx.html b/api/_as_gen/matplotlib.axes.Axes.fill_betweenx.html deleted file mode 100644 index fef5500b993..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.fill_betweenx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.findobj.html b/api/_as_gen/matplotlib.axes.Axes.findobj.html deleted file mode 100644 index a99c61ff74f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.format_coord.html b/api/_as_gen/matplotlib.axes.Axes.format_coord.html deleted file mode 100644 index 93ef41c783f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.format_coord.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.format_cursor_data.html b/api/_as_gen/matplotlib.axes.Axes.format_cursor_data.html deleted file mode 100644 index 20e429e5c13..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.format_xdata.html b/api/_as_gen/matplotlib.axes.Axes.format_xdata.html deleted file mode 100644 index b161f4103a2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.format_xdata.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.format_ydata.html b/api/_as_gen/matplotlib.axes.Axes.format_ydata.html deleted file mode 100644 index 6b00987a4c1..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.format_ydata.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_adjustable.html b/api/_as_gen/matplotlib.axes.Axes.get_adjustable.html deleted file mode 100644 index fdba4088815..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_adjustable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_agg_filter.html b/api/_as_gen/matplotlib.axes.Axes.get_agg_filter.html deleted file mode 100644 index 21636544296..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_alpha.html b/api/_as_gen/matplotlib.axes.Axes.get_alpha.html deleted file mode 100644 index 23d49c9237b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_anchor.html b/api/_as_gen/matplotlib.axes.Axes.get_anchor.html deleted file mode 100644 index dbd7629f2a5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_anchor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_animated.html b/api/_as_gen/matplotlib.axes.Axes.get_animated.html deleted file mode 100644 index 5b1ece4c6b4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_aspect.html b/api/_as_gen/matplotlib.axes.Axes.get_aspect.html deleted file mode 100644 index 12895aff6fd..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_autoscale_on.html b/api/_as_gen/matplotlib.axes.Axes.get_autoscale_on.html deleted file mode 100644 index 4b2396c6ac5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_autoscale_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_autoscalex_on.html b/api/_as_gen/matplotlib.axes.Axes.get_autoscalex_on.html deleted file mode 100644 index c41dde4d465..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_autoscalex_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_autoscaley_on.html b/api/_as_gen/matplotlib.axes.Axes.get_autoscaley_on.html deleted file mode 100644 index c8dc0e5ce5e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_autoscaley_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_axes.html b/api/_as_gen/matplotlib.axes.Axes.get_axes.html deleted file mode 100644 index 73df4028c7f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_axes_locator.html b/api/_as_gen/matplotlib.axes.Axes.get_axes_locator.html deleted file mode 100644 index 0df53a3b306..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_axes_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_axis_bgcolor.html b/api/_as_gen/matplotlib.axes.Axes.get_axis_bgcolor.html deleted file mode 100644 index de00f9e0dd5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_axis_bgcolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_axisbelow.html b/api/_as_gen/matplotlib.axes.Axes.get_axisbelow.html deleted file mode 100644 index a2477cfd9c2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_axisbelow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_box_aspect.html b/api/_as_gen/matplotlib.axes.Axes.get_box_aspect.html deleted file mode 100644 index 71aca07dda6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_box_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_children.html b/api/_as_gen/matplotlib.axes.Axes.get_children.html deleted file mode 100644 index 083f8dd6471..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_clip_box.html b/api/_as_gen/matplotlib.axes.Axes.get_clip_box.html deleted file mode 100644 index c1b3485510d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_clip_on.html b/api/_as_gen/matplotlib.axes.Axes.get_clip_on.html deleted file mode 100644 index 3ed1917cf6b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_clip_path.html b/api/_as_gen/matplotlib.axes.Axes.get_clip_path.html deleted file mode 100644 index 14f3b96f460..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_contains.html b/api/_as_gen/matplotlib.axes.Axes.get_contains.html deleted file mode 100644 index 2a8adc1ba32..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_cursor_data.html b/api/_as_gen/matplotlib.axes.Axes.get_cursor_data.html deleted file mode 100644 index 4ccf4b311f3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_cursor_props.html b/api/_as_gen/matplotlib.axes.Axes.get_cursor_props.html deleted file mode 100644 index 5151bd1ed15..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_cursor_props.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_data_ratio.html b/api/_as_gen/matplotlib.axes.Axes.get_data_ratio.html deleted file mode 100644 index 3e392639fe0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_data_ratio.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_data_ratio_log.html b/api/_as_gen/matplotlib.axes.Axes.get_data_ratio_log.html deleted file mode 100644 index ca9f4fdbcfb..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_data_ratio_log.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_default_bbox_extra_artists.html b/api/_as_gen/matplotlib.axes.Axes.get_default_bbox_extra_artists.html deleted file mode 100644 index 9eb5dea6b2c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_default_bbox_extra_artists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_facecolor.html b/api/_as_gen/matplotlib.axes.Axes.get_facecolor.html deleted file mode 100644 index 92c9b91f2e0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_facecolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_fc.html b/api/_as_gen/matplotlib.axes.Axes.get_fc.html deleted file mode 100644 index 489ef556e66..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_fc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_figure.html b/api/_as_gen/matplotlib.axes.Axes.get_figure.html deleted file mode 100644 index 92693d17f68..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_frame_on.html b/api/_as_gen/matplotlib.axes.Axes.get_frame_on.html deleted file mode 100644 index b61e04dde6f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_frame_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_gid.html b/api/_as_gen/matplotlib.axes.Axes.get_gid.html deleted file mode 100644 index 664b0490b81..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_images.html b/api/_as_gen/matplotlib.axes.Axes.get_images.html deleted file mode 100644 index e990ce17575..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_images.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_label.html b/api/_as_gen/matplotlib.axes.Axes.get_label.html deleted file mode 100644 index b494fc2f038..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_legend.html b/api/_as_gen/matplotlib.axes.Axes.get_legend.html deleted file mode 100644 index d0f27a289b0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_legend_handles_labels.html b/api/_as_gen/matplotlib.axes.Axes.get_legend_handles_labels.html deleted file mode 100644 index 0a3bc702b83..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_legend_handles_labels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_lines.html b/api/_as_gen/matplotlib.axes.Axes.get_lines.html deleted file mode 100644 index b6bb63555b5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_lines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_navigate.html b/api/_as_gen/matplotlib.axes.Axes.get_navigate.html deleted file mode 100644 index 5f7937ecfd4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_navigate.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_navigate_mode.html b/api/_as_gen/matplotlib.axes.Axes.get_navigate_mode.html deleted file mode 100644 index 723ffa0b051..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_navigate_mode.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_path_effects.html b/api/_as_gen/matplotlib.axes.Axes.get_path_effects.html deleted file mode 100644 index 066b5e53ef6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_picker.html b/api/_as_gen/matplotlib.axes.Axes.get_picker.html deleted file mode 100644 index 4b5ec4468aa..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_position.html b/api/_as_gen/matplotlib.axes.Axes.get_position.html deleted file mode 100644 index 78ea126ee5a..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_rasterization_zorder.html b/api/_as_gen/matplotlib.axes.Axes.get_rasterization_zorder.html deleted file mode 100644 index daef4b73e40..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_rasterization_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_rasterized.html b/api/_as_gen/matplotlib.axes.Axes.get_rasterized.html deleted file mode 100644 index 8d3af78aee9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_renderer_cache.html b/api/_as_gen/matplotlib.axes.Axes.get_renderer_cache.html deleted file mode 100644 index 61c8ea37d34..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_renderer_cache.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_shared_x_axes.html b/api/_as_gen/matplotlib.axes.Axes.get_shared_x_axes.html deleted file mode 100644 index 5470b031549..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_shared_x_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_shared_y_axes.html b/api/_as_gen/matplotlib.axes.Axes.get_shared_y_axes.html deleted file mode 100644 index b944e0a87e8..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_shared_y_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_sketch_params.html b/api/_as_gen/matplotlib.axes.Axes.get_sketch_params.html deleted file mode 100644 index e0497906bc3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_snap.html b/api/_as_gen/matplotlib.axes.Axes.get_snap.html deleted file mode 100644 index 2f9d010814c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_tightbbox.html b/api/_as_gen/matplotlib.axes.Axes.get_tightbbox.html deleted file mode 100644 index ab9d86d084e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_tightbbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_title.html b/api/_as_gen/matplotlib.axes.Axes.get_title.html deleted file mode 100644 index 8960fab327b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_title.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_transform.html b/api/_as_gen/matplotlib.axes.Axes.get_transform.html deleted file mode 100644 index da2c9ee351b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.axes.Axes.get_transformed_clip_path_and_affine.html deleted file mode 100644 index a69ccbd7cbe..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_url.html b/api/_as_gen/matplotlib.axes.Axes.get_url.html deleted file mode 100644 index 9854838e1a2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_visible.html b/api/_as_gen/matplotlib.axes.Axes.get_visible.html deleted file mode 100644 index 604f002e69d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_window_extent.html b/api/_as_gen/matplotlib.axes.Axes.get_window_extent.html deleted file mode 100644 index 3ad1890076d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xaxis.html b/api/_as_gen/matplotlib.axes.Axes.get_xaxis.html deleted file mode 100644 index 2680184ab9f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xaxis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text1_transform.html b/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text1_transform.html deleted file mode 100644 index 3b9f31c4982..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text1_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text2_transform.html b/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text2_transform.html deleted file mode 100644 index 8482d345d30..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xaxis_text2_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xaxis_transform.html b/api/_as_gen/matplotlib.axes.Axes.get_xaxis_transform.html deleted file mode 100644 index e91ea73e707..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xaxis_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xbound.html b/api/_as_gen/matplotlib.axes.Axes.get_xbound.html deleted file mode 100644 index 2c583b6b4b3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xbound.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xgridlines.html b/api/_as_gen/matplotlib.axes.Axes.get_xgridlines.html deleted file mode 100644 index 0dec6c71db4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xgridlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xlabel.html b/api/_as_gen/matplotlib.axes.Axes.get_xlabel.html deleted file mode 100644 index f4ba1f799f7..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xlabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xlim.html b/api/_as_gen/matplotlib.axes.Axes.get_xlim.html deleted file mode 100644 index 6e62cdae611..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xlim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xmajorticklabels.html b/api/_as_gen/matplotlib.axes.Axes.get_xmajorticklabels.html deleted file mode 100644 index cf6cf174a1e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xmajorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xminorticklabels.html b/api/_as_gen/matplotlib.axes.Axes.get_xminorticklabels.html deleted file mode 100644 index cd24fdfae2f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xminorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xscale.html b/api/_as_gen/matplotlib.axes.Axes.get_xscale.html deleted file mode 100644 index 86ee840cdc6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xticklabels.html b/api/_as_gen/matplotlib.axes.Axes.get_xticklabels.html deleted file mode 100644 index 4601c24cec5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xticklines.html b/api/_as_gen/matplotlib.axes.Axes.get_xticklines.html deleted file mode 100644 index e827221bbe4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_xticks.html b/api/_as_gen/matplotlib.axes.Axes.get_xticks.html deleted file mode 100644 index a89a1422ccc..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_xticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yaxis.html b/api/_as_gen/matplotlib.axes.Axes.get_yaxis.html deleted file mode 100644 index c33385942a9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yaxis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text1_transform.html b/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text1_transform.html deleted file mode 100644 index b0a2df8f8ac..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text1_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text2_transform.html b/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text2_transform.html deleted file mode 100644 index 82b3748afad..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yaxis_text2_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yaxis_transform.html b/api/_as_gen/matplotlib.axes.Axes.get_yaxis_transform.html deleted file mode 100644 index 3a511a4706a..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yaxis_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_ybound.html b/api/_as_gen/matplotlib.axes.Axes.get_ybound.html deleted file mode 100644 index ae444047c76..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_ybound.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_ygridlines.html b/api/_as_gen/matplotlib.axes.Axes.get_ygridlines.html deleted file mode 100644 index 4d687a3a5b2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_ygridlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_ylabel.html b/api/_as_gen/matplotlib.axes.Axes.get_ylabel.html deleted file mode 100644 index 03adb7a7ea1..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_ylabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_ylim.html b/api/_as_gen/matplotlib.axes.Axes.get_ylim.html deleted file mode 100644 index 821fc8dbbf5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_ylim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_ymajorticklabels.html b/api/_as_gen/matplotlib.axes.Axes.get_ymajorticklabels.html deleted file mode 100644 index c1ea6346317..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_ymajorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yminorticklabels.html b/api/_as_gen/matplotlib.axes.Axes.get_yminorticklabels.html deleted file mode 100644 index b581e159c46..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yminorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yscale.html b/api/_as_gen/matplotlib.axes.Axes.get_yscale.html deleted file mode 100644 index 5a34ac618cb..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yticklabels.html b/api/_as_gen/matplotlib.axes.Axes.get_yticklabels.html deleted file mode 100644 index bd572be188f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yticklines.html b/api/_as_gen/matplotlib.axes.Axes.get_yticklines.html deleted file mode 100644 index 226a7a226e0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_yticks.html b/api/_as_gen/matplotlib.axes.Axes.get_yticks.html deleted file mode 100644 index 0378d8f31aa..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_yticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.get_zorder.html b/api/_as_gen/matplotlib.axes.Axes.get_zorder.html deleted file mode 100644 index d5bcad76ed6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.grid.html b/api/_as_gen/matplotlib.axes.Axes.grid.html deleted file mode 100644 index 9a64d469b8d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.has_data.html b/api/_as_gen/matplotlib.axes.Axes.has_data.html deleted file mode 100644 index 42d7b30578a..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.has_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.have_units.html b/api/_as_gen/matplotlib.axes.Axes.have_units.html deleted file mode 100644 index 940db2b3f49..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.hexbin.html b/api/_as_gen/matplotlib.axes.Axes.hexbin.html deleted file mode 100644 index 15bda38a9e5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.hexbin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.hist.html b/api/_as_gen/matplotlib.axes.Axes.hist.html deleted file mode 100644 index 19a88f1a391..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.hist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.hist2d.html b/api/_as_gen/matplotlib.axes.Axes.hist2d.html deleted file mode 100644 index 038eba2cf87..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.hist2d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.hitlist.html b/api/_as_gen/matplotlib.axes.Axes.hitlist.html deleted file mode 100644 index 777ca33039c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.hlines.html b/api/_as_gen/matplotlib.axes.Axes.hlines.html deleted file mode 100644 index b7e3cc9ca13..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.hlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.hold.html b/api/_as_gen/matplotlib.axes.Axes.hold.html deleted file mode 100644 index 38c69c7d017..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.hold.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.imshow.html b/api/_as_gen/matplotlib.axes.Axes.imshow.html deleted file mode 100644 index 95b5a6c6166..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.imshow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.in_axes.html b/api/_as_gen/matplotlib.axes.Axes.in_axes.html deleted file mode 100644 index 28286010a61..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.in_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.indicate_inset.html b/api/_as_gen/matplotlib.axes.Axes.indicate_inset.html deleted file mode 100644 index f6dc3d06e4d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.indicate_inset.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.indicate_inset_zoom.html b/api/_as_gen/matplotlib.axes.Axes.indicate_inset_zoom.html deleted file mode 100644 index 6b52fcbada6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.indicate_inset_zoom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.inset_axes.html b/api/_as_gen/matplotlib.axes.Axes.inset_axes.html deleted file mode 100644 index 59c2e2db573..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.inset_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.invert_xaxis.html b/api/_as_gen/matplotlib.axes.Axes.invert_xaxis.html deleted file mode 100644 index b6362345762..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.invert_xaxis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.invert_yaxis.html b/api/_as_gen/matplotlib.axes.Axes.invert_yaxis.html deleted file mode 100644 index 8dffb464282..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.invert_yaxis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.is_figure_set.html b/api/_as_gen/matplotlib.axes.Axes.is_figure_set.html deleted file mode 100644 index 422d4f83607..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.is_transform_set.html b/api/_as_gen/matplotlib.axes.Axes.is_transform_set.html deleted file mode 100644 index 5c99357ffc0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.ishold.html b/api/_as_gen/matplotlib.axes.Axes.ishold.html deleted file mode 100644 index 63c9410ef3e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.ishold.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.legend.html b/api/_as_gen/matplotlib.axes.Axes.legend.html deleted file mode 100644 index 7d676e3d5d2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.locator_params.html b/api/_as_gen/matplotlib.axes.Axes.locator_params.html deleted file mode 100644 index f02c4095d44..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.locator_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.loglog.html b/api/_as_gen/matplotlib.axes.Axes.loglog.html deleted file mode 100644 index b6395399c3d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.loglog.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.magnitude_spectrum.html b/api/_as_gen/matplotlib.axes.Axes.magnitude_spectrum.html deleted file mode 100644 index 3514f4c1e89..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.magnitude_spectrum.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.margins.html b/api/_as_gen/matplotlib.axes.Axes.margins.html deleted file mode 100644 index 3be645fe244..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.margins.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.matshow.html b/api/_as_gen/matplotlib.axes.Axes.matshow.html deleted file mode 100644 index f7540b7a18e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.matshow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.minorticks_off.html b/api/_as_gen/matplotlib.axes.Axes.minorticks_off.html deleted file mode 100644 index c3914641ee6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.minorticks_off.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.minorticks_on.html b/api/_as_gen/matplotlib.axes.Axes.minorticks_on.html deleted file mode 100644 index ba7951335b6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.minorticks_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.mouseover.html b/api/_as_gen/matplotlib.axes.Axes.mouseover.html deleted file mode 100644 index 13496464558..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.name.html b/api/_as_gen/matplotlib.axes.Axes.name.html deleted file mode 100644 index 2684b073ad5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.name.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.pchanged.html b/api/_as_gen/matplotlib.axes.Axes.pchanged.html deleted file mode 100644 index 928fd8511a8..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.pcolor.html b/api/_as_gen/matplotlib.axes.Axes.pcolor.html deleted file mode 100644 index 5e90e08e63e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.pcolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.pcolorfast.html b/api/_as_gen/matplotlib.axes.Axes.pcolorfast.html deleted file mode 100644 index a41aa0d8274..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.pcolorfast.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.pcolormesh.html b/api/_as_gen/matplotlib.axes.Axes.pcolormesh.html deleted file mode 100644 index 7b53eea1829..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.pcolormesh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.phase_spectrum.html b/api/_as_gen/matplotlib.axes.Axes.phase_spectrum.html deleted file mode 100644 index 72bcbe43c32..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.phase_spectrum.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.pick.html b/api/_as_gen/matplotlib.axes.Axes.pick.html deleted file mode 100644 index 7e1360b1ac9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.pickable.html b/api/_as_gen/matplotlib.axes.Axes.pickable.html deleted file mode 100644 index f561f7e0591..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.pie.html b/api/_as_gen/matplotlib.axes.Axes.pie.html deleted file mode 100644 index c6b988d0861..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.pie.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.plot.html b/api/_as_gen/matplotlib.axes.Axes.plot.html deleted file mode 100644 index 30d6e2a7be4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.plot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.plot_date.html b/api/_as_gen/matplotlib.axes.Axes.plot_date.html deleted file mode 100644 index 18bc46bc554..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.plot_date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.properties.html b/api/_as_gen/matplotlib.axes.Axes.properties.html deleted file mode 100644 index 5873a133f6d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.psd.html b/api/_as_gen/matplotlib.axes.Axes.psd.html deleted file mode 100644 index 51492632ff4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.psd.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.quiver.html b/api/_as_gen/matplotlib.axes.Axes.quiver.html deleted file mode 100644 index 624688b52ba..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.quiver.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.quiverkey.html b/api/_as_gen/matplotlib.axes.Axes.quiverkey.html deleted file mode 100644 index e1f2e11db5a..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.quiverkey.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.redraw_in_frame.html b/api/_as_gen/matplotlib.axes.Axes.redraw_in_frame.html deleted file mode 100644 index 2b810b46959..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.redraw_in_frame.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.relim.html b/api/_as_gen/matplotlib.axes.Axes.relim.html deleted file mode 100644 index 7d4cf4bed65..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.relim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.remove.html b/api/_as_gen/matplotlib.axes.Axes.remove.html deleted file mode 100644 index 5d941e30870..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.remove_callback.html b/api/_as_gen/matplotlib.axes.Axes.remove_callback.html deleted file mode 100644 index d7fecd6ac0b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.reset_position.html b/api/_as_gen/matplotlib.axes.Axes.reset_position.html deleted file mode 100644 index 18458c70b26..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.reset_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.scatter.html b/api/_as_gen/matplotlib.axes.Axes.scatter.html deleted file mode 100644 index 4104656f39c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.scatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.secondary_xaxis.html b/api/_as_gen/matplotlib.axes.Axes.secondary_xaxis.html deleted file mode 100644 index 9de061ec587..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.secondary_xaxis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.secondary_yaxis.html b/api/_as_gen/matplotlib.axes.Axes.secondary_yaxis.html deleted file mode 100644 index ec2c89a7610..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.secondary_yaxis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.semilogx.html b/api/_as_gen/matplotlib.axes.Axes.semilogx.html deleted file mode 100644 index da3d29192bf..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.semilogx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.semilogy.html b/api/_as_gen/matplotlib.axes.Axes.semilogy.html deleted file mode 100644 index d426ac12639..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.semilogy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set.html b/api/_as_gen/matplotlib.axes.Axes.set.html deleted file mode 100644 index c314aaa59c3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_adjustable.html b/api/_as_gen/matplotlib.axes.Axes.set_adjustable.html deleted file mode 100644 index d3646658308..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_adjustable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_agg_filter.html b/api/_as_gen/matplotlib.axes.Axes.set_agg_filter.html deleted file mode 100644 index 7cd9a737a8c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_alpha.html b/api/_as_gen/matplotlib.axes.Axes.set_alpha.html deleted file mode 100644 index 730cf9cdda4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_anchor.html b/api/_as_gen/matplotlib.axes.Axes.set_anchor.html deleted file mode 100644 index 0065f4da7b4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_anchor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_animated.html b/api/_as_gen/matplotlib.axes.Axes.set_animated.html deleted file mode 100644 index 191e6b0dcb6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_aspect.html b/api/_as_gen/matplotlib.axes.Axes.set_aspect.html deleted file mode 100644 index f3b6584400f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_autoscale_on.html b/api/_as_gen/matplotlib.axes.Axes.set_autoscale_on.html deleted file mode 100644 index 25f9b69a8e5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_autoscale_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_autoscalex_on.html b/api/_as_gen/matplotlib.axes.Axes.set_autoscalex_on.html deleted file mode 100644 index 333a92c71d2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_autoscalex_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_autoscaley_on.html b/api/_as_gen/matplotlib.axes.Axes.set_autoscaley_on.html deleted file mode 100644 index 35556fa7986..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_autoscaley_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_axes.html b/api/_as_gen/matplotlib.axes.Axes.set_axes.html deleted file mode 100644 index c1851be32bf..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_axes_locator.html b/api/_as_gen/matplotlib.axes.Axes.set_axes_locator.html deleted file mode 100644 index d28e454d597..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_axes_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_axis_bgcolor.html b/api/_as_gen/matplotlib.axes.Axes.set_axis_bgcolor.html deleted file mode 100644 index 3b83fa886a3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_axis_bgcolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_axis_off.html b/api/_as_gen/matplotlib.axes.Axes.set_axis_off.html deleted file mode 100644 index 530b06235e7..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_axis_off.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_axis_on.html b/api/_as_gen/matplotlib.axes.Axes.set_axis_on.html deleted file mode 100644 index 2b1be0c0ac2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_axis_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_axisbelow.html b/api/_as_gen/matplotlib.axes.Axes.set_axisbelow.html deleted file mode 100644 index 013946258e3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_axisbelow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_box_aspect.html b/api/_as_gen/matplotlib.axes.Axes.set_box_aspect.html deleted file mode 100644 index 67d21190311..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_box_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_clip_box.html b/api/_as_gen/matplotlib.axes.Axes.set_clip_box.html deleted file mode 100644 index 409650d6e21..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_clip_on.html b/api/_as_gen/matplotlib.axes.Axes.set_clip_on.html deleted file mode 100644 index 2eadcd960f8..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_clip_path.html b/api/_as_gen/matplotlib.axes.Axes.set_clip_path.html deleted file mode 100644 index ffaf468888d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_color_cycle.html b/api/_as_gen/matplotlib.axes.Axes.set_color_cycle.html deleted file mode 100644 index 777b57d6a55..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_color_cycle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_contains.html b/api/_as_gen/matplotlib.axes.Axes.set_contains.html deleted file mode 100644 index eaf286c02f0..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_cursor_props.html b/api/_as_gen/matplotlib.axes.Axes.set_cursor_props.html deleted file mode 100644 index f8de27ae16c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_cursor_props.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_facecolor.html b/api/_as_gen/matplotlib.axes.Axes.set_facecolor.html deleted file mode 100644 index fe295c9695c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_facecolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_fc.html b/api/_as_gen/matplotlib.axes.Axes.set_fc.html deleted file mode 100644 index 1711e264f6d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_fc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_figure.html b/api/_as_gen/matplotlib.axes.Axes.set_figure.html deleted file mode 100644 index dab21e36eb5..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_frame_on.html b/api/_as_gen/matplotlib.axes.Axes.set_frame_on.html deleted file mode 100644 index b4993323f28..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_frame_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_gid.html b/api/_as_gen/matplotlib.axes.Axes.set_gid.html deleted file mode 100644 index 592c462dfe9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_label.html b/api/_as_gen/matplotlib.axes.Axes.set_label.html deleted file mode 100644 index 2ce9fed24ca..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_navigate.html b/api/_as_gen/matplotlib.axes.Axes.set_navigate.html deleted file mode 100644 index 350bf9df478..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_navigate.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_navigate_mode.html b/api/_as_gen/matplotlib.axes.Axes.set_navigate_mode.html deleted file mode 100644 index d86d705755f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_navigate_mode.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_path_effects.html b/api/_as_gen/matplotlib.axes.Axes.set_path_effects.html deleted file mode 100644 index 9e5f0d6503f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_picker.html b/api/_as_gen/matplotlib.axes.Axes.set_picker.html deleted file mode 100644 index 2b1cadb3397..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_position.html b/api/_as_gen/matplotlib.axes.Axes.set_position.html deleted file mode 100644 index 5a80c142492..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.html b/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.html deleted file mode 100644 index cb93cde5e14..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_rasterization_zorder.html b/api/_as_gen/matplotlib.axes.Axes.set_rasterization_zorder.html deleted file mode 100644 index 663c6cbf607..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_rasterization_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_rasterized.html b/api/_as_gen/matplotlib.axes.Axes.set_rasterized.html deleted file mode 100644 index bddb763e9f7..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_sketch_params.html b/api/_as_gen/matplotlib.axes.Axes.set_sketch_params.html deleted file mode 100644 index d1d119dbfe4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_snap.html b/api/_as_gen/matplotlib.axes.Axes.set_snap.html deleted file mode 100644 index 7cb5f692111..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_title.html b/api/_as_gen/matplotlib.axes.Axes.set_title.html deleted file mode 100644 index e39659adec2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_title.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_transform.html b/api/_as_gen/matplotlib.axes.Axes.set_transform.html deleted file mode 100644 index 370ddeabbb7..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_url.html b/api/_as_gen/matplotlib.axes.Axes.set_url.html deleted file mode 100644 index 5a142755136..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_visible.html b/api/_as_gen/matplotlib.axes.Axes.set_visible.html deleted file mode 100644 index 63dd95f3a5f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_xbound.html b/api/_as_gen/matplotlib.axes.Axes.set_xbound.html deleted file mode 100644 index 3abcd9319d3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_xbound.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_xlabel.html b/api/_as_gen/matplotlib.axes.Axes.set_xlabel.html deleted file mode 100644 index 4317d03f18f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_xlabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_xlim.html b/api/_as_gen/matplotlib.axes.Axes.set_xlim.html deleted file mode 100644 index 1be91701538..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_xlim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_xmargin.html b/api/_as_gen/matplotlib.axes.Axes.set_xmargin.html deleted file mode 100644 index c76d9427e9d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_xmargin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_xscale.html b/api/_as_gen/matplotlib.axes.Axes.set_xscale.html deleted file mode 100644 index 4f42a6a24b9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_xscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_xticklabels.html b/api/_as_gen/matplotlib.axes.Axes.set_xticklabels.html deleted file mode 100644 index ed2625a8887..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_xticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_xticks.html b/api/_as_gen/matplotlib.axes.Axes.set_xticks.html deleted file mode 100644 index 2d16bcdd6b3..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_xticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_ybound.html b/api/_as_gen/matplotlib.axes.Axes.set_ybound.html deleted file mode 100644 index ca3057a0d4f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_ybound.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_ylabel.html b/api/_as_gen/matplotlib.axes.Axes.set_ylabel.html deleted file mode 100644 index fdc30e3d407..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_ylabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_ylim.html b/api/_as_gen/matplotlib.axes.Axes.set_ylim.html deleted file mode 100644 index b8f376efd21..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_ylim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_ymargin.html b/api/_as_gen/matplotlib.axes.Axes.set_ymargin.html deleted file mode 100644 index aa6b1677d3c..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_ymargin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_yscale.html b/api/_as_gen/matplotlib.axes.Axes.set_yscale.html deleted file mode 100644 index 1bc22c4e22b..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_yscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_yticklabels.html b/api/_as_gen/matplotlib.axes.Axes.set_yticklabels.html deleted file mode 100644 index fb853bf2430..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_yticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_yticks.html b/api/_as_gen/matplotlib.axes.Axes.set_yticks.html deleted file mode 100644 index c29d8eeb163..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_yticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.set_zorder.html b/api/_as_gen/matplotlib.axes.Axes.set_zorder.html deleted file mode 100644 index 02409121fd7..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.sharex.html b/api/_as_gen/matplotlib.axes.Axes.sharex.html deleted file mode 100644 index f0a2ee6f779..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.sharex.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.sharey.html b/api/_as_gen/matplotlib.axes.Axes.sharey.html deleted file mode 100644 index caf01220740..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.sharey.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.specgram.html b/api/_as_gen/matplotlib.axes.Axes.specgram.html deleted file mode 100644 index 093dd7f2dcd..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.specgram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.spy.html b/api/_as_gen/matplotlib.axes.Axes.spy.html deleted file mode 100644 index 54706aead57..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.spy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.stackplot.html b/api/_as_gen/matplotlib.axes.Axes.stackplot.html deleted file mode 100644 index 41f02a16087..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.stackplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.stairs.html b/api/_as_gen/matplotlib.axes.Axes.stairs.html deleted file mode 100644 index cb3571fd695..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.stairs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.stale.html b/api/_as_gen/matplotlib.axes.Axes.stale.html deleted file mode 100644 index 26880b6b1a9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.start_pan.html b/api/_as_gen/matplotlib.axes.Axes.start_pan.html deleted file mode 100644 index 0e4e8879a08..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.start_pan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.stem.html b/api/_as_gen/matplotlib.axes.Axes.stem.html deleted file mode 100644 index b1ffdf8de53..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.stem.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.step.html b/api/_as_gen/matplotlib.axes.Axes.step.html deleted file mode 100644 index aa60bf8eeb9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.step.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.streamplot.html b/api/_as_gen/matplotlib.axes.Axes.streamplot.html deleted file mode 100644 index 9283983ef46..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.streamplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.table.html b/api/_as_gen/matplotlib.axes.Axes.table.html deleted file mode 100644 index fb7454c7101..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.table.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.text.html b/api/_as_gen/matplotlib.axes.Axes.text.html deleted file mode 100644 index 982687594e4..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.tick_params.html b/api/_as_gen/matplotlib.axes.Axes.tick_params.html deleted file mode 100644 index 6bcfcd9d44a..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.tick_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.ticklabel_format.html b/api/_as_gen/matplotlib.axes.Axes.ticklabel_format.html deleted file mode 100644 index 3bd85402444..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.ticklabel_format.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.tricontour.html b/api/_as_gen/matplotlib.axes.Axes.tricontour.html deleted file mode 100644 index 94af7acd2fc..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.tricontour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.tricontourf.html b/api/_as_gen/matplotlib.axes.Axes.tricontourf.html deleted file mode 100644 index 717f25e2d80..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.tricontourf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.tripcolor.html b/api/_as_gen/matplotlib.axes.Axes.tripcolor.html deleted file mode 100644 index 00eeb0a8bbe..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.tripcolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.triplot.html b/api/_as_gen/matplotlib.axes.Axes.triplot.html deleted file mode 100644 index 6e69975d8de..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.triplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.twinx.html b/api/_as_gen/matplotlib.axes.Axes.twinx.html deleted file mode 100644 index 7e3374216e1..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.twinx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.twiny.html b/api/_as_gen/matplotlib.axes.Axes.twiny.html deleted file mode 100644 index 55f4509eabe..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.twiny.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.update.html b/api/_as_gen/matplotlib.axes.Axes.update.html deleted file mode 100644 index 9a78ad6df47..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.update_datalim.html b/api/_as_gen/matplotlib.axes.Axes.update_datalim.html deleted file mode 100644 index 6ec78c7ca68..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.update_datalim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.update_datalim_bounds.html b/api/_as_gen/matplotlib.axes.Axes.update_datalim_bounds.html deleted file mode 100644 index d7bb53ad6d2..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.update_datalim_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.update_datalim_numerix.html b/api/_as_gen/matplotlib.axes.Axes.update_datalim_numerix.html deleted file mode 100644 index d5e22ab2406..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.update_datalim_numerix.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.update_from.html b/api/_as_gen/matplotlib.axes.Axes.update_from.html deleted file mode 100644 index 912a9431861..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.use_sticky_edges.html b/api/_as_gen/matplotlib.axes.Axes.use_sticky_edges.html deleted file mode 100644 index d65b03ffb3e..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.use_sticky_edges.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.violin.html b/api/_as_gen/matplotlib.axes.Axes.violin.html deleted file mode 100644 index f19b8ad02d1..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.violin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.violinplot.html b/api/_as_gen/matplotlib.axes.Axes.violinplot.html deleted file mode 100644 index 186c05412da..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.violinplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.vlines.html b/api/_as_gen/matplotlib.axes.Axes.vlines.html deleted file mode 100644 index 76dced73696..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.vlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.xaxis_date.html b/api/_as_gen/matplotlib.axes.Axes.xaxis_date.html deleted file mode 100644 index ae8746c930d..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.xaxis_date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.xaxis_inverted.html b/api/_as_gen/matplotlib.axes.Axes.xaxis_inverted.html deleted file mode 100644 index 210dbeeea3f..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.xaxis_inverted.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.xcorr.html b/api/_as_gen/matplotlib.axes.Axes.xcorr.html deleted file mode 100644 index a9c218beb88..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.xcorr.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.yaxis_date.html b/api/_as_gen/matplotlib.axes.Axes.yaxis_date.html deleted file mode 100644 index 31cd6b579d6..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.yaxis_date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.yaxis_inverted.html b/api/_as_gen/matplotlib.axes.Axes.yaxis_inverted.html deleted file mode 100644 index 6ce360530a9..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.yaxis_inverted.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.Axes.zorder.html b/api/_as_gen/matplotlib.axes.Axes.zorder.html deleted file mode 100644 index 9662218f526..00000000000 --- a/api/_as_gen/matplotlib.axes.Axes.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.SubplotBase.html b/api/_as_gen/matplotlib.axes.SubplotBase.html deleted file mode 100644 index 01e564b5b07..00000000000 --- a/api/_as_gen/matplotlib.axes.SubplotBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axes.subplot_class_factory.html b/api/_as_gen/matplotlib.axes.subplot_class_factory.html deleted file mode 100644 index d815150ae24..00000000000 --- a/api/_as_gen/matplotlib.axes.subplot_class_factory.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.OFFSETTEXTPAD.html b/api/_as_gen/matplotlib.axis.Axis.OFFSETTEXTPAD.html deleted file mode 100644 index 72f26528b08..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.OFFSETTEXTPAD.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.add_callback.html b/api/_as_gen/matplotlib.axis.Axis.add_callback.html deleted file mode 100644 index f6a0fc0662d..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.aname.html b/api/_as_gen/matplotlib.axis.Axis.aname.html deleted file mode 100644 index 0f3e0e2c02f..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.axes.html b/api/_as_gen/matplotlib.axis.Axis.axes.html deleted file mode 100644 index 82fc4586989..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.axis_date.html b/api/_as_gen/matplotlib.axis.Axis.axis_date.html deleted file mode 100644 index d420fdc4fec..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.axis_date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.cla.html b/api/_as_gen/matplotlib.axis.Axis.cla.html deleted file mode 100644 index c6367647b7c..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.cla.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.clear.html b/api/_as_gen/matplotlib.axis.Axis.clear.html deleted file mode 100644 index 796039cd24d..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.clear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.contains.html b/api/_as_gen/matplotlib.axis.Axis.contains.html deleted file mode 100644 index 589f75bb6b3..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.convert_units.html b/api/_as_gen/matplotlib.axis.Axis.convert_units.html deleted file mode 100644 index 8d4bcf5ed8d..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.convert_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.convert_xunits.html b/api/_as_gen/matplotlib.axis.Axis.convert_xunits.html deleted file mode 100644 index 0d4a3855348..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.convert_yunits.html b/api/_as_gen/matplotlib.axis.Axis.convert_yunits.html deleted file mode 100644 index 6f7b2c8f982..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.draw.html b/api/_as_gen/matplotlib.axis.Axis.draw.html deleted file mode 100644 index 80c0bbe65e0..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.findobj.html b/api/_as_gen/matplotlib.axis.Axis.findobj.html deleted file mode 100644 index 0f913ad0a88..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.format_cursor_data.html b/api/_as_gen/matplotlib.axis.Axis.format_cursor_data.html deleted file mode 100644 index 725225cda41..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_agg_filter.html b/api/_as_gen/matplotlib.axis.Axis.get_agg_filter.html deleted file mode 100644 index a60389ed1fa..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_alpha.html b/api/_as_gen/matplotlib.axis.Axis.get_alpha.html deleted file mode 100644 index ddf401dfd60..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_animated.html b/api/_as_gen/matplotlib.axis.Axis.get_animated.html deleted file mode 100644 index f50050b19b5..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_axes.html b/api/_as_gen/matplotlib.axis.Axis.get_axes.html deleted file mode 100644 index 9a9f18c5ca6..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_children.html b/api/_as_gen/matplotlib.axis.Axis.get_children.html deleted file mode 100644 index 7f970af5368..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_clip_box.html b/api/_as_gen/matplotlib.axis.Axis.get_clip_box.html deleted file mode 100644 index 806bcabf73e..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_clip_on.html b/api/_as_gen/matplotlib.axis.Axis.get_clip_on.html deleted file mode 100644 index f9e35757b6c..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_clip_path.html b/api/_as_gen/matplotlib.axis.Axis.get_clip_path.html deleted file mode 100644 index e4916bb1372..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_contains.html b/api/_as_gen/matplotlib.axis.Axis.get_contains.html deleted file mode 100644 index 081248522c7..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_cursor_data.html b/api/_as_gen/matplotlib.axis.Axis.get_cursor_data.html deleted file mode 100644 index bd5a3d857e0..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_data_interval.html b/api/_as_gen/matplotlib.axis.Axis.get_data_interval.html deleted file mode 100644 index ff35cb81ea4..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_data_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_figure.html b/api/_as_gen/matplotlib.axis.Axis.get_figure.html deleted file mode 100644 index eca40c2e045..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_gid.html b/api/_as_gen/matplotlib.axis.Axis.get_gid.html deleted file mode 100644 index fe92ab99f22..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_gridlines.html b/api/_as_gen/matplotlib.axis.Axis.get_gridlines.html deleted file mode 100644 index ea1f3b6d4eb..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_gridlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_inverted.html b/api/_as_gen/matplotlib.axis.Axis.get_inverted.html deleted file mode 100644 index a7a51f099e7..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_inverted.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_label.html b/api/_as_gen/matplotlib.axis.Axis.get_label.html deleted file mode 100644 index 499bbd9401f..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_label_position.html b/api/_as_gen/matplotlib.axis.Axis.get_label_position.html deleted file mode 100644 index 53a1152f015..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_label_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_label_text.html b/api/_as_gen/matplotlib.axis.Axis.get_label_text.html deleted file mode 100644 index 3ff9dbbf148..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_label_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_major_formatter.html b/api/_as_gen/matplotlib.axis.Axis.get_major_formatter.html deleted file mode 100644 index feb2f89b784..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_major_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_major_locator.html b/api/_as_gen/matplotlib.axis.Axis.get_major_locator.html deleted file mode 100644 index 1617df4263e..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_major_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_major_ticks.html b/api/_as_gen/matplotlib.axis.Axis.get_major_ticks.html deleted file mode 100644 index e0074c86f20..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_major_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_majorticklabels.html b/api/_as_gen/matplotlib.axis.Axis.get_majorticklabels.html deleted file mode 100644 index 4e7242057e7..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_majorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_majorticklines.html b/api/_as_gen/matplotlib.axis.Axis.get_majorticklines.html deleted file mode 100644 index e331470490b..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_majorticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_majorticklocs.html b/api/_as_gen/matplotlib.axis.Axis.get_majorticklocs.html deleted file mode 100644 index 957872264d9..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_majorticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_minor_formatter.html b/api/_as_gen/matplotlib.axis.Axis.get_minor_formatter.html deleted file mode 100644 index 63171b36719..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_minor_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_minor_locator.html b/api/_as_gen/matplotlib.axis.Axis.get_minor_locator.html deleted file mode 100644 index 9d554d30f10..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_minor_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_minor_ticks.html b/api/_as_gen/matplotlib.axis.Axis.get_minor_ticks.html deleted file mode 100644 index 7b56e9e00d2..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_minor_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_minorticklabels.html b/api/_as_gen/matplotlib.axis.Axis.get_minorticklabels.html deleted file mode 100644 index 79c824d4833..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_minorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_minorticklines.html b/api/_as_gen/matplotlib.axis.Axis.get_minorticklines.html deleted file mode 100644 index 802c914cfdf..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_minorticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_minorticklocs.html b/api/_as_gen/matplotlib.axis.Axis.get_minorticklocs.html deleted file mode 100644 index 544b0a1f851..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_minorticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_minpos.html b/api/_as_gen/matplotlib.axis.Axis.get_minpos.html deleted file mode 100644 index 22fae331376..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_minpos.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_offset_text.html b/api/_as_gen/matplotlib.axis.Axis.get_offset_text.html deleted file mode 100644 index 7ca5a6110d3..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_offset_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_path_effects.html b/api/_as_gen/matplotlib.axis.Axis.get_path_effects.html deleted file mode 100644 index 4e333b7e79c..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_picker.html b/api/_as_gen/matplotlib.axis.Axis.get_picker.html deleted file mode 100644 index 3d60d1ae0b1..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_pickradius.html b/api/_as_gen/matplotlib.axis.Axis.get_pickradius.html deleted file mode 100644 index d61ec35ca38..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_pickradius.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_rasterized.html b/api/_as_gen/matplotlib.axis.Axis.get_rasterized.html deleted file mode 100644 index 7b7e1129846..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_remove_overlapping_locs.html b/api/_as_gen/matplotlib.axis.Axis.get_remove_overlapping_locs.html deleted file mode 100644 index e3b7eb07de0..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_remove_overlapping_locs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_scale.html b/api/_as_gen/matplotlib.axis.Axis.get_scale.html deleted file mode 100644 index b1a35220a74..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_sketch_params.html b/api/_as_gen/matplotlib.axis.Axis.get_sketch_params.html deleted file mode 100644 index 53b349f5cbe..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_smart_bounds.html b/api/_as_gen/matplotlib.axis.Axis.get_smart_bounds.html deleted file mode 100644 index 1445923901d..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_smart_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_snap.html b/api/_as_gen/matplotlib.axis.Axis.get_snap.html deleted file mode 100644 index aae022da836..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_tick_padding.html b/api/_as_gen/matplotlib.axis.Axis.get_tick_padding.html deleted file mode 100644 index e69b8a61013..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_tick_padding.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_tick_space.html b/api/_as_gen/matplotlib.axis.Axis.get_tick_space.html deleted file mode 100644 index 47805fc849e..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_tick_space.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_ticklabel_extents.html b/api/_as_gen/matplotlib.axis.Axis.get_ticklabel_extents.html deleted file mode 100644 index 09fc5b4d424..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_ticklabel_extents.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_ticklabels.html b/api/_as_gen/matplotlib.axis.Axis.get_ticklabels.html deleted file mode 100644 index 04aee0c2b70..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_ticklines.html b/api/_as_gen/matplotlib.axis.Axis.get_ticklines.html deleted file mode 100644 index 138e4dd9de7..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_ticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_ticklocs.html b/api/_as_gen/matplotlib.axis.Axis.get_ticklocs.html deleted file mode 100644 index c51424f788e..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_ticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_tightbbox.html b/api/_as_gen/matplotlib.axis.Axis.get_tightbbox.html deleted file mode 100644 index 5d61059e4b3..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_tightbbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_transform.html b/api/_as_gen/matplotlib.axis.Axis.get_transform.html deleted file mode 100644 index 1dfc5c152d4..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.axis.Axis.get_transformed_clip_path_and_affine.html deleted file mode 100644 index 72a8928e29a..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_units.html b/api/_as_gen/matplotlib.axis.Axis.get_units.html deleted file mode 100644 index 9853965c578..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_url.html b/api/_as_gen/matplotlib.axis.Axis.get_url.html deleted file mode 100644 index c7ace5766b7..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_view_interval.html b/api/_as_gen/matplotlib.axis.Axis.get_view_interval.html deleted file mode 100644 index c581ddfe99d..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_visible.html b/api/_as_gen/matplotlib.axis.Axis.get_visible.html deleted file mode 100644 index 7f6d2b6981a..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_window_extent.html b/api/_as_gen/matplotlib.axis.Axis.get_window_extent.html deleted file mode 100644 index 7888f10def5..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.get_zorder.html b/api/_as_gen/matplotlib.axis.Axis.get_zorder.html deleted file mode 100644 index 613c1a3eaf0..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.grid.html b/api/_as_gen/matplotlib.axis.Axis.grid.html deleted file mode 100644 index 0e4806fd851..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.have_units.html b/api/_as_gen/matplotlib.axis.Axis.have_units.html deleted file mode 100644 index b19447c5215..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.hitlist.html b/api/_as_gen/matplotlib.axis.Axis.hitlist.html deleted file mode 100644 index eb83236a5ae..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.is_figure_set.html b/api/_as_gen/matplotlib.axis.Axis.is_figure_set.html deleted file mode 100644 index 0a1042c8883..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.is_transform_set.html b/api/_as_gen/matplotlib.axis.Axis.is_transform_set.html deleted file mode 100644 index 84b2f5f2521..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.iter_ticks.html b/api/_as_gen/matplotlib.axis.Axis.iter_ticks.html deleted file mode 100644 index 0d4cb865af5..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.iter_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.limit_range_for_scale.html b/api/_as_gen/matplotlib.axis.Axis.limit_range_for_scale.html deleted file mode 100644 index d7010c5817f..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.limit_range_for_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.mouseover.html b/api/_as_gen/matplotlib.axis.Axis.mouseover.html deleted file mode 100644 index 7bede9a678b..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.pan.html b/api/_as_gen/matplotlib.axis.Axis.pan.html deleted file mode 100644 index 7795018cd2f..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.pan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.pchanged.html b/api/_as_gen/matplotlib.axis.Axis.pchanged.html deleted file mode 100644 index b176af088ee..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.pick.html b/api/_as_gen/matplotlib.axis.Axis.pick.html deleted file mode 100644 index a0a7167fa46..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.pickable.html b/api/_as_gen/matplotlib.axis.Axis.pickable.html deleted file mode 100644 index 46da6445df6..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.properties.html b/api/_as_gen/matplotlib.axis.Axis.properties.html deleted file mode 100644 index 0cdf328c14b..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.remove.html b/api/_as_gen/matplotlib.axis.Axis.remove.html deleted file mode 100644 index 8de8cef146c..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.remove_callback.html b/api/_as_gen/matplotlib.axis.Axis.remove_callback.html deleted file mode 100644 index 2ddf237c480..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.remove_overlapping_locs.html b/api/_as_gen/matplotlib.axis.Axis.remove_overlapping_locs.html deleted file mode 100644 index 1b428214db3..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.remove_overlapping_locs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.reset_ticks.html b/api/_as_gen/matplotlib.axis.Axis.reset_ticks.html deleted file mode 100644 index 701e3f0a12f..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.reset_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set.html b/api/_as_gen/matplotlib.axis.Axis.set.html deleted file mode 100644 index 9a735113da4..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_agg_filter.html b/api/_as_gen/matplotlib.axis.Axis.set_agg_filter.html deleted file mode 100644 index 536766ae80f..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_alpha.html b/api/_as_gen/matplotlib.axis.Axis.set_alpha.html deleted file mode 100644 index 3d17c2729b5..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_animated.html b/api/_as_gen/matplotlib.axis.Axis.set_animated.html deleted file mode 100644 index f8ad4c144ed..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_axes.html b/api/_as_gen/matplotlib.axis.Axis.set_axes.html deleted file mode 100644 index af43b8e774a..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_clip_box.html b/api/_as_gen/matplotlib.axis.Axis.set_clip_box.html deleted file mode 100644 index 9603d5b3202..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_clip_on.html b/api/_as_gen/matplotlib.axis.Axis.set_clip_on.html deleted file mode 100644 index 994ab13c982..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_clip_path.html b/api/_as_gen/matplotlib.axis.Axis.set_clip_path.html deleted file mode 100644 index 6e587178dbd..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_contains.html b/api/_as_gen/matplotlib.axis.Axis.set_contains.html deleted file mode 100644 index 0d7bf2db25b..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_data_interval.html b/api/_as_gen/matplotlib.axis.Axis.set_data_interval.html deleted file mode 100644 index af359898896..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_data_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_default_intervals.html b/api/_as_gen/matplotlib.axis.Axis.set_default_intervals.html deleted file mode 100644 index 0348d016f74..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_default_intervals.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_figure.html b/api/_as_gen/matplotlib.axis.Axis.set_figure.html deleted file mode 100644 index 33c7deca005..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_gid.html b/api/_as_gen/matplotlib.axis.Axis.set_gid.html deleted file mode 100644 index c2bbe5ecbf7..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_inverted.html b/api/_as_gen/matplotlib.axis.Axis.set_inverted.html deleted file mode 100644 index fe5e9900c15..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_inverted.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_label.html b/api/_as_gen/matplotlib.axis.Axis.set_label.html deleted file mode 100644 index 8510bb9a524..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_label_coords.html b/api/_as_gen/matplotlib.axis.Axis.set_label_coords.html deleted file mode 100644 index 8e7945b3021..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_label_coords.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_label_position.html b/api/_as_gen/matplotlib.axis.Axis.set_label_position.html deleted file mode 100644 index 3392d19d0d2..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_label_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_label_text.html b/api/_as_gen/matplotlib.axis.Axis.set_label_text.html deleted file mode 100644 index cde6bf2eef8..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_label_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_major_formatter.html b/api/_as_gen/matplotlib.axis.Axis.set_major_formatter.html deleted file mode 100644 index 0e05c03dc60..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_major_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_major_locator.html b/api/_as_gen/matplotlib.axis.Axis.set_major_locator.html deleted file mode 100644 index 9f4c57f081a..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_major_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_minor_formatter.html b/api/_as_gen/matplotlib.axis.Axis.set_minor_formatter.html deleted file mode 100644 index ffa2d61ad87..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_minor_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_minor_locator.html b/api/_as_gen/matplotlib.axis.Axis.set_minor_locator.html deleted file mode 100644 index e4315a2d4df..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_minor_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_path_effects.html b/api/_as_gen/matplotlib.axis.Axis.set_path_effects.html deleted file mode 100644 index b868cf826db..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_picker.html b/api/_as_gen/matplotlib.axis.Axis.set_picker.html deleted file mode 100644 index ec5f5067c63..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_pickradius.html b/api/_as_gen/matplotlib.axis.Axis.set_pickradius.html deleted file mode 100644 index 1cd4ff6e659..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_pickradius.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_rasterized.html b/api/_as_gen/matplotlib.axis.Axis.set_rasterized.html deleted file mode 100644 index 2af32822516..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_remove_overlapping_locs.html b/api/_as_gen/matplotlib.axis.Axis.set_remove_overlapping_locs.html deleted file mode 100644 index 3fb4dc69a5a..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_remove_overlapping_locs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_sketch_params.html b/api/_as_gen/matplotlib.axis.Axis.set_sketch_params.html deleted file mode 100644 index 9cee51d08e0..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_smart_bounds.html b/api/_as_gen/matplotlib.axis.Axis.set_smart_bounds.html deleted file mode 100644 index 081509fb1d9..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_smart_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_snap.html b/api/_as_gen/matplotlib.axis.Axis.set_snap.html deleted file mode 100644 index a2092ced1fe..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_tick_params.html b/api/_as_gen/matplotlib.axis.Axis.set_tick_params.html deleted file mode 100644 index d00d4de36e2..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_tick_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_ticklabels.html b/api/_as_gen/matplotlib.axis.Axis.set_ticklabels.html deleted file mode 100644 index a625d77a054..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_ticks.html b/api/_as_gen/matplotlib.axis.Axis.set_ticks.html deleted file mode 100644 index 68c4fd0e011..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_transform.html b/api/_as_gen/matplotlib.axis.Axis.set_transform.html deleted file mode 100644 index 2b9ecbfe4ad..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_units.html b/api/_as_gen/matplotlib.axis.Axis.set_units.html deleted file mode 100644 index e1b3b2fd185..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_url.html b/api/_as_gen/matplotlib.axis.Axis.set_url.html deleted file mode 100644 index 3df4d6d90bb..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_view_interval.html b/api/_as_gen/matplotlib.axis.Axis.set_view_interval.html deleted file mode 100644 index f473889e162..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_visible.html b/api/_as_gen/matplotlib.axis.Axis.set_visible.html deleted file mode 100644 index 0a94bd99ff0..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.set_zorder.html b/api/_as_gen/matplotlib.axis.Axis.set_zorder.html deleted file mode 100644 index f8dc92f9658..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.stale.html b/api/_as_gen/matplotlib.axis.Axis.stale.html deleted file mode 100644 index ed526d0efc8..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.update.html b/api/_as_gen/matplotlib.axis.Axis.update.html deleted file mode 100644 index ad1635a9e32..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.update_from.html b/api/_as_gen/matplotlib.axis.Axis.update_from.html deleted file mode 100644 index 4cd60436b27..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.update_units.html b/api/_as_gen/matplotlib.axis.Axis.update_units.html deleted file mode 100644 index 5930b5b9f80..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.update_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.zoom.html b/api/_as_gen/matplotlib.axis.Axis.zoom.html deleted file mode 100644 index 4654b4a19d0..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.zoom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Axis.zorder.html b/api/_as_gen/matplotlib.axis.Axis.zorder.html deleted file mode 100644 index 0c44a79cde5..00000000000 --- a/api/_as_gen/matplotlib.axis.Axis.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.add_callback.html b/api/_as_gen/matplotlib.axis.Tick.add_callback.html deleted file mode 100644 index 78d8bd03952..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.aname.html b/api/_as_gen/matplotlib.axis.Tick.aname.html deleted file mode 100644 index 9aef365ede2..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.apply_tickdir.html b/api/_as_gen/matplotlib.axis.Tick.apply_tickdir.html deleted file mode 100644 index f4837c44bd9..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.apply_tickdir.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.axes.html b/api/_as_gen/matplotlib.axis.Tick.axes.html deleted file mode 100644 index ad77c7a8e1d..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.contains.html b/api/_as_gen/matplotlib.axis.Tick.contains.html deleted file mode 100644 index 7c35f6c104f..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.convert_xunits.html b/api/_as_gen/matplotlib.axis.Tick.convert_xunits.html deleted file mode 100644 index b17b746a70d..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.convert_yunits.html b/api/_as_gen/matplotlib.axis.Tick.convert_yunits.html deleted file mode 100644 index 7f016b57ca8..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.draw.html b/api/_as_gen/matplotlib.axis.Tick.draw.html deleted file mode 100644 index 063e10860fb..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.findobj.html b/api/_as_gen/matplotlib.axis.Tick.findobj.html deleted file mode 100644 index e3a2b85fa48..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.format_cursor_data.html b/api/_as_gen/matplotlib.axis.Tick.format_cursor_data.html deleted file mode 100644 index 7618c067ab0..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_agg_filter.html b/api/_as_gen/matplotlib.axis.Tick.get_agg_filter.html deleted file mode 100644 index ebb40ef9561..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_alpha.html b/api/_as_gen/matplotlib.axis.Tick.get_alpha.html deleted file mode 100644 index 31e12823bb2..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_animated.html b/api/_as_gen/matplotlib.axis.Tick.get_animated.html deleted file mode 100644 index cdb94879d1c..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_axes.html b/api/_as_gen/matplotlib.axis.Tick.get_axes.html deleted file mode 100644 index ae6a84cb5e1..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_children.html b/api/_as_gen/matplotlib.axis.Tick.get_children.html deleted file mode 100644 index 8826f50d6ae..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_clip_box.html b/api/_as_gen/matplotlib.axis.Tick.get_clip_box.html deleted file mode 100644 index 87d06ba307b..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_clip_on.html b/api/_as_gen/matplotlib.axis.Tick.get_clip_on.html deleted file mode 100644 index 3ec73fd1fb0..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_clip_path.html b/api/_as_gen/matplotlib.axis.Tick.get_clip_path.html deleted file mode 100644 index 617a4cf3aae..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_contains.html b/api/_as_gen/matplotlib.axis.Tick.get_contains.html deleted file mode 100644 index 895b402d0db..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_cursor_data.html b/api/_as_gen/matplotlib.axis.Tick.get_cursor_data.html deleted file mode 100644 index e7544387199..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_figure.html b/api/_as_gen/matplotlib.axis.Tick.get_figure.html deleted file mode 100644 index ff21d027022..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_gid.html b/api/_as_gen/matplotlib.axis.Tick.get_gid.html deleted file mode 100644 index eec3021bd83..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_label.html b/api/_as_gen/matplotlib.axis.Tick.get_label.html deleted file mode 100644 index 151b4a8e758..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_loc.html b/api/_as_gen/matplotlib.axis.Tick.get_loc.html deleted file mode 100644 index f7d2fba6d7a..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_loc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_pad.html b/api/_as_gen/matplotlib.axis.Tick.get_pad.html deleted file mode 100644 index 6859691fb87..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_pad_pixels.html b/api/_as_gen/matplotlib.axis.Tick.get_pad_pixels.html deleted file mode 100644 index f6f3a5966d4..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_pad_pixels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_path_effects.html b/api/_as_gen/matplotlib.axis.Tick.get_path_effects.html deleted file mode 100644 index 3ca6db64dd2..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_picker.html b/api/_as_gen/matplotlib.axis.Tick.get_picker.html deleted file mode 100644 index c84b30d22ed..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_rasterized.html b/api/_as_gen/matplotlib.axis.Tick.get_rasterized.html deleted file mode 100644 index b509029314b..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_sketch_params.html b/api/_as_gen/matplotlib.axis.Tick.get_sketch_params.html deleted file mode 100644 index 287acaa9610..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_snap.html b/api/_as_gen/matplotlib.axis.Tick.get_snap.html deleted file mode 100644 index f085d707730..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_tick_padding.html b/api/_as_gen/matplotlib.axis.Tick.get_tick_padding.html deleted file mode 100644 index 29a948218d7..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_tick_padding.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_tickdir.html b/api/_as_gen/matplotlib.axis.Tick.get_tickdir.html deleted file mode 100644 index 017788c39ef..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_tickdir.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_transform.html b/api/_as_gen/matplotlib.axis.Tick.get_transform.html deleted file mode 100644 index 9b73491b3c3..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.axis.Tick.get_transformed_clip_path_and_affine.html deleted file mode 100644 index d1ea896128f..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_url.html b/api/_as_gen/matplotlib.axis.Tick.get_url.html deleted file mode 100644 index 0b9c6d04d26..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_view_interval.html b/api/_as_gen/matplotlib.axis.Tick.get_view_interval.html deleted file mode 100644 index 8c2c98a5fc9..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_visible.html b/api/_as_gen/matplotlib.axis.Tick.get_visible.html deleted file mode 100644 index 9322cb9bbe0..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_window_extent.html b/api/_as_gen/matplotlib.axis.Tick.get_window_extent.html deleted file mode 100644 index 81c219490b1..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.get_zorder.html b/api/_as_gen/matplotlib.axis.Tick.get_zorder.html deleted file mode 100644 index 0f26b301a52..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.have_units.html b/api/_as_gen/matplotlib.axis.Tick.have_units.html deleted file mode 100644 index 1c22fa0dc8f..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.hitlist.html b/api/_as_gen/matplotlib.axis.Tick.hitlist.html deleted file mode 100644 index ba22d6df86c..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.is_figure_set.html b/api/_as_gen/matplotlib.axis.Tick.is_figure_set.html deleted file mode 100644 index d3bdbbbeb46..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.is_transform_set.html b/api/_as_gen/matplotlib.axis.Tick.is_transform_set.html deleted file mode 100644 index 22054729bc4..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.mouseover.html b/api/_as_gen/matplotlib.axis.Tick.mouseover.html deleted file mode 100644 index 991ea7ff50b..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.pchanged.html b/api/_as_gen/matplotlib.axis.Tick.pchanged.html deleted file mode 100644 index 9cdab752607..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.pick.html b/api/_as_gen/matplotlib.axis.Tick.pick.html deleted file mode 100644 index 04eb069a5d0..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.pickable.html b/api/_as_gen/matplotlib.axis.Tick.pickable.html deleted file mode 100644 index 6d1b12d7541..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.properties.html b/api/_as_gen/matplotlib.axis.Tick.properties.html deleted file mode 100644 index 6d64939ac35..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.remove.html b/api/_as_gen/matplotlib.axis.Tick.remove.html deleted file mode 100644 index 3ea092f5065..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.remove_callback.html b/api/_as_gen/matplotlib.axis.Tick.remove_callback.html deleted file mode 100644 index 0a1f0411b13..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set.html b/api/_as_gen/matplotlib.axis.Tick.set.html deleted file mode 100644 index ec79b18b723..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_agg_filter.html b/api/_as_gen/matplotlib.axis.Tick.set_agg_filter.html deleted file mode 100644 index 3d84cba813e..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_alpha.html b/api/_as_gen/matplotlib.axis.Tick.set_alpha.html deleted file mode 100644 index 143ade50daf..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_animated.html b/api/_as_gen/matplotlib.axis.Tick.set_animated.html deleted file mode 100644 index 3f8b915acce..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_axes.html b/api/_as_gen/matplotlib.axis.Tick.set_axes.html deleted file mode 100644 index da4b5966a42..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_clip_box.html b/api/_as_gen/matplotlib.axis.Tick.set_clip_box.html deleted file mode 100644 index b34bfd4f6e7..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_clip_on.html b/api/_as_gen/matplotlib.axis.Tick.set_clip_on.html deleted file mode 100644 index 98cf56f2181..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_clip_path.html b/api/_as_gen/matplotlib.axis.Tick.set_clip_path.html deleted file mode 100644 index 6c971550032..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_contains.html b/api/_as_gen/matplotlib.axis.Tick.set_contains.html deleted file mode 100644 index 6884a26dba6..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_figure.html b/api/_as_gen/matplotlib.axis.Tick.set_figure.html deleted file mode 100644 index 9f374daada8..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_gid.html b/api/_as_gen/matplotlib.axis.Tick.set_gid.html deleted file mode 100644 index d1a2dfac777..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_label.html b/api/_as_gen/matplotlib.axis.Tick.set_label.html deleted file mode 100644 index 9b9410858b4..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_label1.html b/api/_as_gen/matplotlib.axis.Tick.set_label1.html deleted file mode 100644 index 66f899affeb..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_label1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_label2.html b/api/_as_gen/matplotlib.axis.Tick.set_label2.html deleted file mode 100644 index e4492d65e21..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_label2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_pad.html b/api/_as_gen/matplotlib.axis.Tick.set_pad.html deleted file mode 100644 index 06f0a39506a..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_path_effects.html b/api/_as_gen/matplotlib.axis.Tick.set_path_effects.html deleted file mode 100644 index 47050c48164..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_picker.html b/api/_as_gen/matplotlib.axis.Tick.set_picker.html deleted file mode 100644 index 50e4d3338cf..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_rasterized.html b/api/_as_gen/matplotlib.axis.Tick.set_rasterized.html deleted file mode 100644 index 8c622cdbb56..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_sketch_params.html b/api/_as_gen/matplotlib.axis.Tick.set_sketch_params.html deleted file mode 100644 index e0303e278bd..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_snap.html b/api/_as_gen/matplotlib.axis.Tick.set_snap.html deleted file mode 100644 index b7a97b1f8a6..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_transform.html b/api/_as_gen/matplotlib.axis.Tick.set_transform.html deleted file mode 100644 index 5f64ca105c4..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_url.html b/api/_as_gen/matplotlib.axis.Tick.set_url.html deleted file mode 100644 index da09651a0a2..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_visible.html b/api/_as_gen/matplotlib.axis.Tick.set_visible.html deleted file mode 100644 index 63fcde90e0c..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.set_zorder.html b/api/_as_gen/matplotlib.axis.Tick.set_zorder.html deleted file mode 100644 index f46b15df3c7..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.stale.html b/api/_as_gen/matplotlib.axis.Tick.stale.html deleted file mode 100644 index 6db4d594e07..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.update.html b/api/_as_gen/matplotlib.axis.Tick.update.html deleted file mode 100644 index 719d4a1e528..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.update_from.html b/api/_as_gen/matplotlib.axis.Tick.update_from.html deleted file mode 100644 index 83670bee1de..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.update_position.html b/api/_as_gen/matplotlib.axis.Tick.update_position.html deleted file mode 100644 index 1e7c6c92e6f..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.update_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.Tick.zorder.html b/api/_as_gen/matplotlib.axis.Tick.zorder.html deleted file mode 100644 index 76a1ccbf91e..00000000000 --- a/api/_as_gen/matplotlib.axis.Tick.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.OFFSETTEXTPAD.html b/api/_as_gen/matplotlib.axis.XAxis.OFFSETTEXTPAD.html deleted file mode 100644 index 20ad5c259f0..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.OFFSETTEXTPAD.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.add_callback.html b/api/_as_gen/matplotlib.axis.XAxis.add_callback.html deleted file mode 100644 index f60b4839fac..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.aname.html b/api/_as_gen/matplotlib.axis.XAxis.aname.html deleted file mode 100644 index 2ee4e8c799f..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.axes.html b/api/_as_gen/matplotlib.axis.XAxis.axes.html deleted file mode 100644 index bb70bbecd19..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.axis_date.html b/api/_as_gen/matplotlib.axis.XAxis.axis_date.html deleted file mode 100644 index 82c47447769..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.axis_date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.axis_name.html b/api/_as_gen/matplotlib.axis.XAxis.axis_name.html deleted file mode 100644 index c0be754e194..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.axis_name.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.cla.html b/api/_as_gen/matplotlib.axis.XAxis.cla.html deleted file mode 100644 index 8007a20b565..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.cla.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.contains.html b/api/_as_gen/matplotlib.axis.XAxis.contains.html deleted file mode 100644 index d0642e481b2..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.convert_units.html b/api/_as_gen/matplotlib.axis.XAxis.convert_units.html deleted file mode 100644 index a1c1c085d2a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.convert_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.convert_xunits.html b/api/_as_gen/matplotlib.axis.XAxis.convert_xunits.html deleted file mode 100644 index a1edad5689f..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.convert_yunits.html b/api/_as_gen/matplotlib.axis.XAxis.convert_yunits.html deleted file mode 100644 index ca3604a3d73..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.draw.html b/api/_as_gen/matplotlib.axis.XAxis.draw.html deleted file mode 100644 index be449630d4d..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.findobj.html b/api/_as_gen/matplotlib.axis.XAxis.findobj.html deleted file mode 100644 index fe4358ad0d4..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.format_cursor_data.html b/api/_as_gen/matplotlib.axis.XAxis.format_cursor_data.html deleted file mode 100644 index 2eafb982d4a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_agg_filter.html b/api/_as_gen/matplotlib.axis.XAxis.get_agg_filter.html deleted file mode 100644 index 825dc349019..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_alpha.html b/api/_as_gen/matplotlib.axis.XAxis.get_alpha.html deleted file mode 100644 index f81fda56b90..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_animated.html b/api/_as_gen/matplotlib.axis.XAxis.get_animated.html deleted file mode 100644 index 38fded5b470..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_axes.html b/api/_as_gen/matplotlib.axis.XAxis.get_axes.html deleted file mode 100644 index 88a3eb63ca0..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_children.html b/api/_as_gen/matplotlib.axis.XAxis.get_children.html deleted file mode 100644 index 3d29c9f5aa9..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_clip_box.html b/api/_as_gen/matplotlib.axis.XAxis.get_clip_box.html deleted file mode 100644 index 7843df52675..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_clip_on.html b/api/_as_gen/matplotlib.axis.XAxis.get_clip_on.html deleted file mode 100644 index 93a817ecca5..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_clip_path.html b/api/_as_gen/matplotlib.axis.XAxis.get_clip_path.html deleted file mode 100644 index 2bcf89fc421..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_contains.html b/api/_as_gen/matplotlib.axis.XAxis.get_contains.html deleted file mode 100644 index 58d5aa30c87..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_cursor_data.html b/api/_as_gen/matplotlib.axis.XAxis.get_cursor_data.html deleted file mode 100644 index 816fa6ae144..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_data_interval.html b/api/_as_gen/matplotlib.axis.XAxis.get_data_interval.html deleted file mode 100644 index 973442690d4..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_data_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_figure.html b/api/_as_gen/matplotlib.axis.XAxis.get_figure.html deleted file mode 100644 index c0742e7cd90..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_gid.html b/api/_as_gen/matplotlib.axis.XAxis.get_gid.html deleted file mode 100644 index 625a3c61916..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_gridlines.html b/api/_as_gen/matplotlib.axis.XAxis.get_gridlines.html deleted file mode 100644 index 48c64aa86e0..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_gridlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_label.html b/api/_as_gen/matplotlib.axis.XAxis.get_label.html deleted file mode 100644 index 495aa00f7bb..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_label_position.html b/api/_as_gen/matplotlib.axis.XAxis.get_label_position.html deleted file mode 100644 index 1b1337ad964..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_label_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_label_text.html b/api/_as_gen/matplotlib.axis.XAxis.get_label_text.html deleted file mode 100644 index ebd1e369353..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_label_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_major_formatter.html b/api/_as_gen/matplotlib.axis.XAxis.get_major_formatter.html deleted file mode 100644 index 00b874e055a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_major_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_major_locator.html b/api/_as_gen/matplotlib.axis.XAxis.get_major_locator.html deleted file mode 100644 index 961ed4ec275..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_major_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_major_ticks.html b/api/_as_gen/matplotlib.axis.XAxis.get_major_ticks.html deleted file mode 100644 index 1a9b19d3b20..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_major_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_majorticklabels.html b/api/_as_gen/matplotlib.axis.XAxis.get_majorticklabels.html deleted file mode 100644 index 73be02ee791..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_majorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_majorticklines.html b/api/_as_gen/matplotlib.axis.XAxis.get_majorticklines.html deleted file mode 100644 index 9155fe5e241..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_majorticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_majorticklocs.html b/api/_as_gen/matplotlib.axis.XAxis.get_majorticklocs.html deleted file mode 100644 index 84ae3b7e01e..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_majorticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_minor_formatter.html b/api/_as_gen/matplotlib.axis.XAxis.get_minor_formatter.html deleted file mode 100644 index f5b9c814b88..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_minor_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_minor_locator.html b/api/_as_gen/matplotlib.axis.XAxis.get_minor_locator.html deleted file mode 100644 index c5cdf16f633..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_minor_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_minor_ticks.html b/api/_as_gen/matplotlib.axis.XAxis.get_minor_ticks.html deleted file mode 100644 index f4126152754..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_minor_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_minorticklabels.html b/api/_as_gen/matplotlib.axis.XAxis.get_minorticklabels.html deleted file mode 100644 index 2b504be6e66..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_minorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_minorticklines.html b/api/_as_gen/matplotlib.axis.XAxis.get_minorticklines.html deleted file mode 100644 index 3494b62857e..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_minorticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_minorticklocs.html b/api/_as_gen/matplotlib.axis.XAxis.get_minorticklocs.html deleted file mode 100644 index 964af643d30..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_minorticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_minpos.html b/api/_as_gen/matplotlib.axis.XAxis.get_minpos.html deleted file mode 100644 index 67d9d2c4c08..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_minpos.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_offset_text.html b/api/_as_gen/matplotlib.axis.XAxis.get_offset_text.html deleted file mode 100644 index 52528ebdda3..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_offset_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_path_effects.html b/api/_as_gen/matplotlib.axis.XAxis.get_path_effects.html deleted file mode 100644 index 4dbb21521d4..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_picker.html b/api/_as_gen/matplotlib.axis.XAxis.get_picker.html deleted file mode 100644 index 3b3900ea51c..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_pickradius.html b/api/_as_gen/matplotlib.axis.XAxis.get_pickradius.html deleted file mode 100644 index 38aaff88a73..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_pickradius.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_rasterized.html b/api/_as_gen/matplotlib.axis.XAxis.get_rasterized.html deleted file mode 100644 index 836ab71f081..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_scale.html b/api/_as_gen/matplotlib.axis.XAxis.get_scale.html deleted file mode 100644 index 90dc2b34edf..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_sketch_params.html b/api/_as_gen/matplotlib.axis.XAxis.get_sketch_params.html deleted file mode 100644 index c8f032c45f2..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_smart_bounds.html b/api/_as_gen/matplotlib.axis.XAxis.get_smart_bounds.html deleted file mode 100644 index 9284352a114..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_smart_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_snap.html b/api/_as_gen/matplotlib.axis.XAxis.get_snap.html deleted file mode 100644 index 85ab3fe3030..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_text_heights.html b/api/_as_gen/matplotlib.axis.XAxis.get_text_heights.html deleted file mode 100644 index 75598055c6b..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_text_heights.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_tick_padding.html b/api/_as_gen/matplotlib.axis.XAxis.get_tick_padding.html deleted file mode 100644 index 0997f9fe514..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_tick_padding.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_tick_space.html b/api/_as_gen/matplotlib.axis.XAxis.get_tick_space.html deleted file mode 100644 index 1df5c6f173e..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_tick_space.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_ticklabel_extents.html b/api/_as_gen/matplotlib.axis.XAxis.get_ticklabel_extents.html deleted file mode 100644 index 96740ec077c..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_ticklabel_extents.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_ticklabels.html b/api/_as_gen/matplotlib.axis.XAxis.get_ticklabels.html deleted file mode 100644 index bca0c7a91a1..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_ticklines.html b/api/_as_gen/matplotlib.axis.XAxis.get_ticklines.html deleted file mode 100644 index f4e4f28fbf3..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_ticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_ticklocs.html b/api/_as_gen/matplotlib.axis.XAxis.get_ticklocs.html deleted file mode 100644 index 5898489b333..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_ticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_ticks_position.html b/api/_as_gen/matplotlib.axis.XAxis.get_ticks_position.html deleted file mode 100644 index e8d88e72e31..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_ticks_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_tightbbox.html b/api/_as_gen/matplotlib.axis.XAxis.get_tightbbox.html deleted file mode 100644 index 3c74f493890..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_tightbbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_transform.html b/api/_as_gen/matplotlib.axis.XAxis.get_transform.html deleted file mode 100644 index abb149acbde..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.axis.XAxis.get_transformed_clip_path_and_affine.html deleted file mode 100644 index 18ff6e1fead..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_units.html b/api/_as_gen/matplotlib.axis.XAxis.get_units.html deleted file mode 100644 index f4c2ee82f90..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_url.html b/api/_as_gen/matplotlib.axis.XAxis.get_url.html deleted file mode 100644 index 0aaa0d00ebb..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_view_interval.html b/api/_as_gen/matplotlib.axis.XAxis.get_view_interval.html deleted file mode 100644 index 91b52722ab5..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_visible.html b/api/_as_gen/matplotlib.axis.XAxis.get_visible.html deleted file mode 100644 index fe6cde54aaf..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_window_extent.html b/api/_as_gen/matplotlib.axis.XAxis.get_window_extent.html deleted file mode 100644 index 557fb484075..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.get_zorder.html b/api/_as_gen/matplotlib.axis.XAxis.get_zorder.html deleted file mode 100644 index f57a70501c5..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.grid.html b/api/_as_gen/matplotlib.axis.XAxis.grid.html deleted file mode 100644 index b912d7333c0..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.have_units.html b/api/_as_gen/matplotlib.axis.XAxis.have_units.html deleted file mode 100644 index e80c6d664f6..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.hitlist.html b/api/_as_gen/matplotlib.axis.XAxis.hitlist.html deleted file mode 100644 index 4103e647def..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.is_figure_set.html b/api/_as_gen/matplotlib.axis.XAxis.is_figure_set.html deleted file mode 100644 index cdaa1abf3ae..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.is_transform_set.html b/api/_as_gen/matplotlib.axis.XAxis.is_transform_set.html deleted file mode 100644 index d1e57fe5f80..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.iter_ticks.html b/api/_as_gen/matplotlib.axis.XAxis.iter_ticks.html deleted file mode 100644 index eb905de8398..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.iter_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.limit_range_for_scale.html b/api/_as_gen/matplotlib.axis.XAxis.limit_range_for_scale.html deleted file mode 100644 index 68463843542..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.limit_range_for_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.mouseover.html b/api/_as_gen/matplotlib.axis.XAxis.mouseover.html deleted file mode 100644 index 6ac7877b0ad..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.pan.html b/api/_as_gen/matplotlib.axis.XAxis.pan.html deleted file mode 100644 index 160f9b5c729..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.pan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.pchanged.html b/api/_as_gen/matplotlib.axis.XAxis.pchanged.html deleted file mode 100644 index d17311ba4a8..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.pick.html b/api/_as_gen/matplotlib.axis.XAxis.pick.html deleted file mode 100644 index 344012d63f9..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.pickable.html b/api/_as_gen/matplotlib.axis.XAxis.pickable.html deleted file mode 100644 index 26556df6632..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.properties.html b/api/_as_gen/matplotlib.axis.XAxis.properties.html deleted file mode 100644 index 643c6d1bb62..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.remove.html b/api/_as_gen/matplotlib.axis.XAxis.remove.html deleted file mode 100644 index e39157d63dc..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.remove_callback.html b/api/_as_gen/matplotlib.axis.XAxis.remove_callback.html deleted file mode 100644 index 17885637c1a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.reset_ticks.html b/api/_as_gen/matplotlib.axis.XAxis.reset_ticks.html deleted file mode 100644 index b54fd4897ff..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.reset_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set.html b/api/_as_gen/matplotlib.axis.XAxis.set.html deleted file mode 100644 index a7354141956..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_agg_filter.html b/api/_as_gen/matplotlib.axis.XAxis.set_agg_filter.html deleted file mode 100644 index 91d5cd9e24a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_alpha.html b/api/_as_gen/matplotlib.axis.XAxis.set_alpha.html deleted file mode 100644 index 1c4bfb8cca3..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_animated.html b/api/_as_gen/matplotlib.axis.XAxis.set_animated.html deleted file mode 100644 index d37f75fb6ef..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_axes.html b/api/_as_gen/matplotlib.axis.XAxis.set_axes.html deleted file mode 100644 index a6e461dca9b..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_clip_box.html b/api/_as_gen/matplotlib.axis.XAxis.set_clip_box.html deleted file mode 100644 index 19bd33252e1..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_clip_on.html b/api/_as_gen/matplotlib.axis.XAxis.set_clip_on.html deleted file mode 100644 index 311f77b710a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_clip_path.html b/api/_as_gen/matplotlib.axis.XAxis.set_clip_path.html deleted file mode 100644 index 531317b8285..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_contains.html b/api/_as_gen/matplotlib.axis.XAxis.set_contains.html deleted file mode 100644 index 7bf86160317..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_data_interval.html b/api/_as_gen/matplotlib.axis.XAxis.set_data_interval.html deleted file mode 100644 index dfb9da40db8..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_data_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_default_intervals.html b/api/_as_gen/matplotlib.axis.XAxis.set_default_intervals.html deleted file mode 100644 index 7861ef01ee7..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_default_intervals.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_figure.html b/api/_as_gen/matplotlib.axis.XAxis.set_figure.html deleted file mode 100644 index 4a26580ae18..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_gid.html b/api/_as_gen/matplotlib.axis.XAxis.set_gid.html deleted file mode 100644 index 98a3bfd2e99..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_label.html b/api/_as_gen/matplotlib.axis.XAxis.set_label.html deleted file mode 100644 index 1b125aa8ec2..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_label_coords.html b/api/_as_gen/matplotlib.axis.XAxis.set_label_coords.html deleted file mode 100644 index 0b3584fecf9..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_label_coords.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_label_position.html b/api/_as_gen/matplotlib.axis.XAxis.set_label_position.html deleted file mode 100644 index 7cfb9c2885b..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_label_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_label_text.html b/api/_as_gen/matplotlib.axis.XAxis.set_label_text.html deleted file mode 100644 index 17053002827..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_label_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_major_formatter.html b/api/_as_gen/matplotlib.axis.XAxis.set_major_formatter.html deleted file mode 100644 index 342e520342a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_major_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_major_locator.html b/api/_as_gen/matplotlib.axis.XAxis.set_major_locator.html deleted file mode 100644 index 2c9fe029e96..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_major_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_minor_formatter.html b/api/_as_gen/matplotlib.axis.XAxis.set_minor_formatter.html deleted file mode 100644 index c9e9c64e1de..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_minor_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_minor_locator.html b/api/_as_gen/matplotlib.axis.XAxis.set_minor_locator.html deleted file mode 100644 index 0806424f9c4..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_minor_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_path_effects.html b/api/_as_gen/matplotlib.axis.XAxis.set_path_effects.html deleted file mode 100644 index 8656bae5a3f..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_picker.html b/api/_as_gen/matplotlib.axis.XAxis.set_picker.html deleted file mode 100644 index 0c908f77f8b..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_pickradius.html b/api/_as_gen/matplotlib.axis.XAxis.set_pickradius.html deleted file mode 100644 index e9048f050eb..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_pickradius.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_rasterized.html b/api/_as_gen/matplotlib.axis.XAxis.set_rasterized.html deleted file mode 100644 index 0c083cd20f4..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_sketch_params.html b/api/_as_gen/matplotlib.axis.XAxis.set_sketch_params.html deleted file mode 100644 index 92a139ecc44..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_smart_bounds.html b/api/_as_gen/matplotlib.axis.XAxis.set_smart_bounds.html deleted file mode 100644 index 299e4f90fdf..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_smart_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_snap.html b/api/_as_gen/matplotlib.axis.XAxis.set_snap.html deleted file mode 100644 index b57b1828b02..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_tick_params.html b/api/_as_gen/matplotlib.axis.XAxis.set_tick_params.html deleted file mode 100644 index b0bf7fbb887..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_tick_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_ticklabels.html b/api/_as_gen/matplotlib.axis.XAxis.set_ticklabels.html deleted file mode 100644 index a4eb2a94cf6..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_ticks.html b/api/_as_gen/matplotlib.axis.XAxis.set_ticks.html deleted file mode 100644 index d884a9e377d..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_ticks_position.html b/api/_as_gen/matplotlib.axis.XAxis.set_ticks_position.html deleted file mode 100644 index 6ab62c8ed31..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_ticks_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_transform.html b/api/_as_gen/matplotlib.axis.XAxis.set_transform.html deleted file mode 100644 index 9ab1e33f3da..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_units.html b/api/_as_gen/matplotlib.axis.XAxis.set_units.html deleted file mode 100644 index 96ec5c480ee..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_url.html b/api/_as_gen/matplotlib.axis.XAxis.set_url.html deleted file mode 100644 index d6836549486..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_view_interval.html b/api/_as_gen/matplotlib.axis.XAxis.set_view_interval.html deleted file mode 100644 index 7fd865681ac..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_visible.html b/api/_as_gen/matplotlib.axis.XAxis.set_visible.html deleted file mode 100644 index f303d900ba3..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.set_zorder.html b/api/_as_gen/matplotlib.axis.XAxis.set_zorder.html deleted file mode 100644 index 78ec2eb05d5..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.stale.html b/api/_as_gen/matplotlib.axis.XAxis.stale.html deleted file mode 100644 index 33a299d9ef5..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.tick_bottom.html b/api/_as_gen/matplotlib.axis.XAxis.tick_bottom.html deleted file mode 100644 index 959c8150fb0..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.tick_bottom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.tick_top.html b/api/_as_gen/matplotlib.axis.XAxis.tick_top.html deleted file mode 100644 index f89375668fd..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.tick_top.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.update.html b/api/_as_gen/matplotlib.axis.XAxis.update.html deleted file mode 100644 index 460fda84fd7..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.update_from.html b/api/_as_gen/matplotlib.axis.XAxis.update_from.html deleted file mode 100644 index 2a2d2c12bf4..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.update_units.html b/api/_as_gen/matplotlib.axis.XAxis.update_units.html deleted file mode 100644 index 4d27bf88560..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.update_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.zoom.html b/api/_as_gen/matplotlib.axis.XAxis.zoom.html deleted file mode 100644 index ccf78f28d0c..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.zoom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XAxis.zorder.html b/api/_as_gen/matplotlib.axis.XAxis.zorder.html deleted file mode 100644 index 2892ae8858a..00000000000 --- a/api/_as_gen/matplotlib.axis.XAxis.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.add_callback.html b/api/_as_gen/matplotlib.axis.XTick.add_callback.html deleted file mode 100644 index cf8396854e6..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.aname.html b/api/_as_gen/matplotlib.axis.XTick.aname.html deleted file mode 100644 index 9751bec38dd..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.apply_tickdir.html b/api/_as_gen/matplotlib.axis.XTick.apply_tickdir.html deleted file mode 100644 index d6b77500339..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.apply_tickdir.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.axes.html b/api/_as_gen/matplotlib.axis.XTick.axes.html deleted file mode 100644 index 9ea4aa84136..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.contains.html b/api/_as_gen/matplotlib.axis.XTick.contains.html deleted file mode 100644 index b910217a8fb..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.convert_xunits.html b/api/_as_gen/matplotlib.axis.XTick.convert_xunits.html deleted file mode 100644 index 199196dabed..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.convert_yunits.html b/api/_as_gen/matplotlib.axis.XTick.convert_yunits.html deleted file mode 100644 index c06dff6ca40..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.draw.html b/api/_as_gen/matplotlib.axis.XTick.draw.html deleted file mode 100644 index 555091fda1f..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.findobj.html b/api/_as_gen/matplotlib.axis.XTick.findobj.html deleted file mode 100644 index 4546b7f2dfb..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.format_cursor_data.html b/api/_as_gen/matplotlib.axis.XTick.format_cursor_data.html deleted file mode 100644 index df2f8b18ceb..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_agg_filter.html b/api/_as_gen/matplotlib.axis.XTick.get_agg_filter.html deleted file mode 100644 index ca66882496a..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_alpha.html b/api/_as_gen/matplotlib.axis.XTick.get_alpha.html deleted file mode 100644 index 9166fe70618..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_animated.html b/api/_as_gen/matplotlib.axis.XTick.get_animated.html deleted file mode 100644 index b298f1a9bea..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_axes.html b/api/_as_gen/matplotlib.axis.XTick.get_axes.html deleted file mode 100644 index 5f4c85b9f0e..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_children.html b/api/_as_gen/matplotlib.axis.XTick.get_children.html deleted file mode 100644 index 9d2c912da5f..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_clip_box.html b/api/_as_gen/matplotlib.axis.XTick.get_clip_box.html deleted file mode 100644 index 0421157afe4..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_clip_on.html b/api/_as_gen/matplotlib.axis.XTick.get_clip_on.html deleted file mode 100644 index 20414fce9b1..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_clip_path.html b/api/_as_gen/matplotlib.axis.XTick.get_clip_path.html deleted file mode 100644 index ae23b3dc439..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_contains.html b/api/_as_gen/matplotlib.axis.XTick.get_contains.html deleted file mode 100644 index 296b6c671bc..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_cursor_data.html b/api/_as_gen/matplotlib.axis.XTick.get_cursor_data.html deleted file mode 100644 index 733cf441fd2..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_figure.html b/api/_as_gen/matplotlib.axis.XTick.get_figure.html deleted file mode 100644 index 5166856ae03..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_gid.html b/api/_as_gen/matplotlib.axis.XTick.get_gid.html deleted file mode 100644 index 2bcd460d95b..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_label.html b/api/_as_gen/matplotlib.axis.XTick.get_label.html deleted file mode 100644 index 20587a6354d..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_loc.html b/api/_as_gen/matplotlib.axis.XTick.get_loc.html deleted file mode 100644 index 7c2f79c994f..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_loc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_pad.html b/api/_as_gen/matplotlib.axis.XTick.get_pad.html deleted file mode 100644 index ea417ded6aa..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_pad_pixels.html b/api/_as_gen/matplotlib.axis.XTick.get_pad_pixels.html deleted file mode 100644 index 16e104a5997..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_pad_pixels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_path_effects.html b/api/_as_gen/matplotlib.axis.XTick.get_path_effects.html deleted file mode 100644 index b4f7707a916..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_picker.html b/api/_as_gen/matplotlib.axis.XTick.get_picker.html deleted file mode 100644 index 51856bb2c63..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_rasterized.html b/api/_as_gen/matplotlib.axis.XTick.get_rasterized.html deleted file mode 100644 index b50be359fbf..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_sketch_params.html b/api/_as_gen/matplotlib.axis.XTick.get_sketch_params.html deleted file mode 100644 index 1950ca80ec2..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_snap.html b/api/_as_gen/matplotlib.axis.XTick.get_snap.html deleted file mode 100644 index 412b0640137..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_tick_padding.html b/api/_as_gen/matplotlib.axis.XTick.get_tick_padding.html deleted file mode 100644 index 6628cb9a2fd..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_tick_padding.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_tickdir.html b/api/_as_gen/matplotlib.axis.XTick.get_tickdir.html deleted file mode 100644 index 9603799983b..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_tickdir.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_transform.html b/api/_as_gen/matplotlib.axis.XTick.get_transform.html deleted file mode 100644 index 02ced32f691..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.axis.XTick.get_transformed_clip_path_and_affine.html deleted file mode 100644 index c66f5352296..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_url.html b/api/_as_gen/matplotlib.axis.XTick.get_url.html deleted file mode 100644 index cf3dc264eb4..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_view_interval.html b/api/_as_gen/matplotlib.axis.XTick.get_view_interval.html deleted file mode 100644 index b6f69d387bf..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_visible.html b/api/_as_gen/matplotlib.axis.XTick.get_visible.html deleted file mode 100644 index 87f4ee79f16..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_window_extent.html b/api/_as_gen/matplotlib.axis.XTick.get_window_extent.html deleted file mode 100644 index 367c9977b2a..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.get_zorder.html b/api/_as_gen/matplotlib.axis.XTick.get_zorder.html deleted file mode 100644 index 24af1023ac8..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.have_units.html b/api/_as_gen/matplotlib.axis.XTick.have_units.html deleted file mode 100644 index 2cef0af344e..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.hitlist.html b/api/_as_gen/matplotlib.axis.XTick.hitlist.html deleted file mode 100644 index 3a243d17b35..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.is_figure_set.html b/api/_as_gen/matplotlib.axis.XTick.is_figure_set.html deleted file mode 100644 index 1a58c924a2e..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.is_transform_set.html b/api/_as_gen/matplotlib.axis.XTick.is_transform_set.html deleted file mode 100644 index 05127bf01cd..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.mouseover.html b/api/_as_gen/matplotlib.axis.XTick.mouseover.html deleted file mode 100644 index 9b21e631fd0..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.pchanged.html b/api/_as_gen/matplotlib.axis.XTick.pchanged.html deleted file mode 100644 index d5a7e0a9f9f..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.pick.html b/api/_as_gen/matplotlib.axis.XTick.pick.html deleted file mode 100644 index 4d7ba433e14..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.pickable.html b/api/_as_gen/matplotlib.axis.XTick.pickable.html deleted file mode 100644 index 5c19b9ea78b..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.properties.html b/api/_as_gen/matplotlib.axis.XTick.properties.html deleted file mode 100644 index 223dbef145a..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.remove.html b/api/_as_gen/matplotlib.axis.XTick.remove.html deleted file mode 100644 index 7db67ae9e5b..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.remove_callback.html b/api/_as_gen/matplotlib.axis.XTick.remove_callback.html deleted file mode 100644 index a2317c0e363..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set.html b/api/_as_gen/matplotlib.axis.XTick.set.html deleted file mode 100644 index f468c69edce..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_agg_filter.html b/api/_as_gen/matplotlib.axis.XTick.set_agg_filter.html deleted file mode 100644 index c27bd47b626..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_alpha.html b/api/_as_gen/matplotlib.axis.XTick.set_alpha.html deleted file mode 100644 index 30871f4acb5..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_animated.html b/api/_as_gen/matplotlib.axis.XTick.set_animated.html deleted file mode 100644 index 11bbd29663d..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_axes.html b/api/_as_gen/matplotlib.axis.XTick.set_axes.html deleted file mode 100644 index adc81d7cdc7..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_clip_box.html b/api/_as_gen/matplotlib.axis.XTick.set_clip_box.html deleted file mode 100644 index 6c5d102fd92..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_clip_on.html b/api/_as_gen/matplotlib.axis.XTick.set_clip_on.html deleted file mode 100644 index 560a7e6ee15..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_clip_path.html b/api/_as_gen/matplotlib.axis.XTick.set_clip_path.html deleted file mode 100644 index 54626db1231..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_contains.html b/api/_as_gen/matplotlib.axis.XTick.set_contains.html deleted file mode 100644 index 09fce570ffa..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_figure.html b/api/_as_gen/matplotlib.axis.XTick.set_figure.html deleted file mode 100644 index 556143ce45a..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_gid.html b/api/_as_gen/matplotlib.axis.XTick.set_gid.html deleted file mode 100644 index b50143845cf..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_label.html b/api/_as_gen/matplotlib.axis.XTick.set_label.html deleted file mode 100644 index 7150c00ac4e..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_label1.html b/api/_as_gen/matplotlib.axis.XTick.set_label1.html deleted file mode 100644 index 811a87e031c..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_label1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_label2.html b/api/_as_gen/matplotlib.axis.XTick.set_label2.html deleted file mode 100644 index 1d5924402b6..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_label2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_pad.html b/api/_as_gen/matplotlib.axis.XTick.set_pad.html deleted file mode 100644 index d25124ca4bc..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_path_effects.html b/api/_as_gen/matplotlib.axis.XTick.set_path_effects.html deleted file mode 100644 index 147b51ff90e..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_picker.html b/api/_as_gen/matplotlib.axis.XTick.set_picker.html deleted file mode 100644 index af98904569b..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_rasterized.html b/api/_as_gen/matplotlib.axis.XTick.set_rasterized.html deleted file mode 100644 index 88020a7e382..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_sketch_params.html b/api/_as_gen/matplotlib.axis.XTick.set_sketch_params.html deleted file mode 100644 index cd1a42f1ad2..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_snap.html b/api/_as_gen/matplotlib.axis.XTick.set_snap.html deleted file mode 100644 index 4e29b7ab5e0..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_transform.html b/api/_as_gen/matplotlib.axis.XTick.set_transform.html deleted file mode 100644 index c432e96b8d5..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_url.html b/api/_as_gen/matplotlib.axis.XTick.set_url.html deleted file mode 100644 index 374d8106cc7..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_visible.html b/api/_as_gen/matplotlib.axis.XTick.set_visible.html deleted file mode 100644 index 13ca2bf96fa..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.set_zorder.html b/api/_as_gen/matplotlib.axis.XTick.set_zorder.html deleted file mode 100644 index 23ed63d9ced..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.stale.html b/api/_as_gen/matplotlib.axis.XTick.stale.html deleted file mode 100644 index 990eb9e01e7..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.update.html b/api/_as_gen/matplotlib.axis.XTick.update.html deleted file mode 100644 index 2b9aecaeb78..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.update_from.html b/api/_as_gen/matplotlib.axis.XTick.update_from.html deleted file mode 100644 index e273a0da5c1..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.update_position.html b/api/_as_gen/matplotlib.axis.XTick.update_position.html deleted file mode 100644 index ac8c9301e17..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.update_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.XTick.zorder.html b/api/_as_gen/matplotlib.axis.XTick.zorder.html deleted file mode 100644 index f5c2f3445c3..00000000000 --- a/api/_as_gen/matplotlib.axis.XTick.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.OFFSETTEXTPAD.html b/api/_as_gen/matplotlib.axis.YAxis.OFFSETTEXTPAD.html deleted file mode 100644 index 8ee7c43d927..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.OFFSETTEXTPAD.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.add_callback.html b/api/_as_gen/matplotlib.axis.YAxis.add_callback.html deleted file mode 100644 index c4c8cc4f755..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.aname.html b/api/_as_gen/matplotlib.axis.YAxis.aname.html deleted file mode 100644 index 98e9fe8a8bf..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.axes.html b/api/_as_gen/matplotlib.axis.YAxis.axes.html deleted file mode 100644 index 2a63c97c996..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.axis_date.html b/api/_as_gen/matplotlib.axis.YAxis.axis_date.html deleted file mode 100644 index 20247c9b03e..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.axis_date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.axis_name.html b/api/_as_gen/matplotlib.axis.YAxis.axis_name.html deleted file mode 100644 index ffef2290404..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.axis_name.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.cla.html b/api/_as_gen/matplotlib.axis.YAxis.cla.html deleted file mode 100644 index 12a9393ec7f..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.cla.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.contains.html b/api/_as_gen/matplotlib.axis.YAxis.contains.html deleted file mode 100644 index 0e774cb9c52..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.convert_units.html b/api/_as_gen/matplotlib.axis.YAxis.convert_units.html deleted file mode 100644 index 75090d31984..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.convert_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.convert_xunits.html b/api/_as_gen/matplotlib.axis.YAxis.convert_xunits.html deleted file mode 100644 index 5825e18f9ae..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.convert_yunits.html b/api/_as_gen/matplotlib.axis.YAxis.convert_yunits.html deleted file mode 100644 index bcc677c66d9..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.draw.html b/api/_as_gen/matplotlib.axis.YAxis.draw.html deleted file mode 100644 index a1c6195b02d..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.findobj.html b/api/_as_gen/matplotlib.axis.YAxis.findobj.html deleted file mode 100644 index b547e993f4f..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.format_cursor_data.html b/api/_as_gen/matplotlib.axis.YAxis.format_cursor_data.html deleted file mode 100644 index d2e73200c6c..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_agg_filter.html b/api/_as_gen/matplotlib.axis.YAxis.get_agg_filter.html deleted file mode 100644 index 04680f69981..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_alpha.html b/api/_as_gen/matplotlib.axis.YAxis.get_alpha.html deleted file mode 100644 index 996687b02e2..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_animated.html b/api/_as_gen/matplotlib.axis.YAxis.get_animated.html deleted file mode 100644 index 0f6fe7ea96c..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_axes.html b/api/_as_gen/matplotlib.axis.YAxis.get_axes.html deleted file mode 100644 index 1eab0b8323a..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_children.html b/api/_as_gen/matplotlib.axis.YAxis.get_children.html deleted file mode 100644 index 88958859e7f..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_clip_box.html b/api/_as_gen/matplotlib.axis.YAxis.get_clip_box.html deleted file mode 100644 index 465a7b045c6..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_clip_on.html b/api/_as_gen/matplotlib.axis.YAxis.get_clip_on.html deleted file mode 100644 index bf8be9cc38a..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_clip_path.html b/api/_as_gen/matplotlib.axis.YAxis.get_clip_path.html deleted file mode 100644 index 5a264059050..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_contains.html b/api/_as_gen/matplotlib.axis.YAxis.get_contains.html deleted file mode 100644 index 92b3c120f84..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_cursor_data.html b/api/_as_gen/matplotlib.axis.YAxis.get_cursor_data.html deleted file mode 100644 index 530892c1a30..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_data_interval.html b/api/_as_gen/matplotlib.axis.YAxis.get_data_interval.html deleted file mode 100644 index eb02817563c..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_data_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_figure.html b/api/_as_gen/matplotlib.axis.YAxis.get_figure.html deleted file mode 100644 index cdff4ef6bae..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_gid.html b/api/_as_gen/matplotlib.axis.YAxis.get_gid.html deleted file mode 100644 index d5feb820575..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_gridlines.html b/api/_as_gen/matplotlib.axis.YAxis.get_gridlines.html deleted file mode 100644 index e5e1620afa0..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_gridlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_label.html b/api/_as_gen/matplotlib.axis.YAxis.get_label.html deleted file mode 100644 index 4234bc022ee..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_label_position.html b/api/_as_gen/matplotlib.axis.YAxis.get_label_position.html deleted file mode 100644 index c1e630cae6b..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_label_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_label_text.html b/api/_as_gen/matplotlib.axis.YAxis.get_label_text.html deleted file mode 100644 index 319f427b5ee..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_label_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_major_formatter.html b/api/_as_gen/matplotlib.axis.YAxis.get_major_formatter.html deleted file mode 100644 index 0456c15baa9..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_major_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_major_locator.html b/api/_as_gen/matplotlib.axis.YAxis.get_major_locator.html deleted file mode 100644 index 09d458d22b6..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_major_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_major_ticks.html b/api/_as_gen/matplotlib.axis.YAxis.get_major_ticks.html deleted file mode 100644 index 15c9a7344ee..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_major_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_majorticklabels.html b/api/_as_gen/matplotlib.axis.YAxis.get_majorticklabels.html deleted file mode 100644 index c006d023d69..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_majorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_majorticklines.html b/api/_as_gen/matplotlib.axis.YAxis.get_majorticklines.html deleted file mode 100644 index e58ee44f7d6..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_majorticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_majorticklocs.html b/api/_as_gen/matplotlib.axis.YAxis.get_majorticklocs.html deleted file mode 100644 index 6c68624951f..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_majorticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_minor_formatter.html b/api/_as_gen/matplotlib.axis.YAxis.get_minor_formatter.html deleted file mode 100644 index 42a35a5b71d..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_minor_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_minor_locator.html b/api/_as_gen/matplotlib.axis.YAxis.get_minor_locator.html deleted file mode 100644 index 36219753cf0..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_minor_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_minor_ticks.html b/api/_as_gen/matplotlib.axis.YAxis.get_minor_ticks.html deleted file mode 100644 index e76017db393..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_minor_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_minorticklabels.html b/api/_as_gen/matplotlib.axis.YAxis.get_minorticklabels.html deleted file mode 100644 index 75d764ced55..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_minorticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_minorticklines.html b/api/_as_gen/matplotlib.axis.YAxis.get_minorticklines.html deleted file mode 100644 index 5c988532274..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_minorticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_minorticklocs.html b/api/_as_gen/matplotlib.axis.YAxis.get_minorticklocs.html deleted file mode 100644 index d58fddf1342..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_minorticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_minpos.html b/api/_as_gen/matplotlib.axis.YAxis.get_minpos.html deleted file mode 100644 index 85803e7f1c2..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_minpos.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_offset_text.html b/api/_as_gen/matplotlib.axis.YAxis.get_offset_text.html deleted file mode 100644 index ef97d15a387..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_offset_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_path_effects.html b/api/_as_gen/matplotlib.axis.YAxis.get_path_effects.html deleted file mode 100644 index dc9abd58d07..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_picker.html b/api/_as_gen/matplotlib.axis.YAxis.get_picker.html deleted file mode 100644 index 9a6be90d0d8..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_pickradius.html b/api/_as_gen/matplotlib.axis.YAxis.get_pickradius.html deleted file mode 100644 index de3fb138757..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_pickradius.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_rasterized.html b/api/_as_gen/matplotlib.axis.YAxis.get_rasterized.html deleted file mode 100644 index f51ae890c92..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_scale.html b/api/_as_gen/matplotlib.axis.YAxis.get_scale.html deleted file mode 100644 index f68265d98fd..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_sketch_params.html b/api/_as_gen/matplotlib.axis.YAxis.get_sketch_params.html deleted file mode 100644 index a86746d2194..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_smart_bounds.html b/api/_as_gen/matplotlib.axis.YAxis.get_smart_bounds.html deleted file mode 100644 index 39a5adbf774..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_smart_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_snap.html b/api/_as_gen/matplotlib.axis.YAxis.get_snap.html deleted file mode 100644 index 4e0975e1a2a..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_text_widths.html b/api/_as_gen/matplotlib.axis.YAxis.get_text_widths.html deleted file mode 100644 index 5c4772b0860..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_text_widths.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_tick_padding.html b/api/_as_gen/matplotlib.axis.YAxis.get_tick_padding.html deleted file mode 100644 index 36afeb2a117..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_tick_padding.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_tick_space.html b/api/_as_gen/matplotlib.axis.YAxis.get_tick_space.html deleted file mode 100644 index ced3e4205c5..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_tick_space.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_ticklabel_extents.html b/api/_as_gen/matplotlib.axis.YAxis.get_ticklabel_extents.html deleted file mode 100644 index 02e6321c73e..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_ticklabel_extents.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_ticklabels.html b/api/_as_gen/matplotlib.axis.YAxis.get_ticklabels.html deleted file mode 100644 index 76f2cc52150..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_ticklines.html b/api/_as_gen/matplotlib.axis.YAxis.get_ticklines.html deleted file mode 100644 index 357b8f60cd9..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_ticklines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_ticklocs.html b/api/_as_gen/matplotlib.axis.YAxis.get_ticklocs.html deleted file mode 100644 index d39261ba9f0..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_ticklocs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_ticks_position.html b/api/_as_gen/matplotlib.axis.YAxis.get_ticks_position.html deleted file mode 100644 index 46e7116699f..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_ticks_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_tightbbox.html b/api/_as_gen/matplotlib.axis.YAxis.get_tightbbox.html deleted file mode 100644 index 7a1752146d0..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_tightbbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_transform.html b/api/_as_gen/matplotlib.axis.YAxis.get_transform.html deleted file mode 100644 index a89131bf05c..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.axis.YAxis.get_transformed_clip_path_and_affine.html deleted file mode 100644 index 6e92e051114..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_units.html b/api/_as_gen/matplotlib.axis.YAxis.get_units.html deleted file mode 100644 index 426fe3c9819..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_url.html b/api/_as_gen/matplotlib.axis.YAxis.get_url.html deleted file mode 100644 index 63ffa9dee31..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_view_interval.html b/api/_as_gen/matplotlib.axis.YAxis.get_view_interval.html deleted file mode 100644 index 349a8bf5ed3..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_visible.html b/api/_as_gen/matplotlib.axis.YAxis.get_visible.html deleted file mode 100644 index d4210fb32cf..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_window_extent.html b/api/_as_gen/matplotlib.axis.YAxis.get_window_extent.html deleted file mode 100644 index c8d70044018..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.get_zorder.html b/api/_as_gen/matplotlib.axis.YAxis.get_zorder.html deleted file mode 100644 index eb0e0bc1b01..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.grid.html b/api/_as_gen/matplotlib.axis.YAxis.grid.html deleted file mode 100644 index 47afe1774e3..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.have_units.html b/api/_as_gen/matplotlib.axis.YAxis.have_units.html deleted file mode 100644 index 7d2cfdc0cb3..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.hitlist.html b/api/_as_gen/matplotlib.axis.YAxis.hitlist.html deleted file mode 100644 index efc6ee9fdcc..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.is_figure_set.html b/api/_as_gen/matplotlib.axis.YAxis.is_figure_set.html deleted file mode 100644 index fb14fbe9270..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.is_transform_set.html b/api/_as_gen/matplotlib.axis.YAxis.is_transform_set.html deleted file mode 100644 index 895d0e9fea1..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.iter_ticks.html b/api/_as_gen/matplotlib.axis.YAxis.iter_ticks.html deleted file mode 100644 index a580ccb213f..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.iter_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.limit_range_for_scale.html b/api/_as_gen/matplotlib.axis.YAxis.limit_range_for_scale.html deleted file mode 100644 index 99c46a788c4..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.limit_range_for_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.mouseover.html b/api/_as_gen/matplotlib.axis.YAxis.mouseover.html deleted file mode 100644 index c1998aa7002..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.pan.html b/api/_as_gen/matplotlib.axis.YAxis.pan.html deleted file mode 100644 index 1bd0407a92a..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.pan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.pchanged.html b/api/_as_gen/matplotlib.axis.YAxis.pchanged.html deleted file mode 100644 index 8f62a156b55..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.pick.html b/api/_as_gen/matplotlib.axis.YAxis.pick.html deleted file mode 100644 index 4bc3904a0b3..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.pickable.html b/api/_as_gen/matplotlib.axis.YAxis.pickable.html deleted file mode 100644 index 17be71e8375..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.properties.html b/api/_as_gen/matplotlib.axis.YAxis.properties.html deleted file mode 100644 index 65585728691..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.remove.html b/api/_as_gen/matplotlib.axis.YAxis.remove.html deleted file mode 100644 index 20b5028d4e0..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.remove_callback.html b/api/_as_gen/matplotlib.axis.YAxis.remove_callback.html deleted file mode 100644 index dcc3f384838..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.reset_ticks.html b/api/_as_gen/matplotlib.axis.YAxis.reset_ticks.html deleted file mode 100644 index a86e11a2802..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.reset_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set.html b/api/_as_gen/matplotlib.axis.YAxis.set.html deleted file mode 100644 index e5ece434a61..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_agg_filter.html b/api/_as_gen/matplotlib.axis.YAxis.set_agg_filter.html deleted file mode 100644 index b519700e75c..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_alpha.html b/api/_as_gen/matplotlib.axis.YAxis.set_alpha.html deleted file mode 100644 index eb8db357ee2..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_animated.html b/api/_as_gen/matplotlib.axis.YAxis.set_animated.html deleted file mode 100644 index c54d5745758..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_axes.html b/api/_as_gen/matplotlib.axis.YAxis.set_axes.html deleted file mode 100644 index b90efbab335..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_clip_box.html b/api/_as_gen/matplotlib.axis.YAxis.set_clip_box.html deleted file mode 100644 index 131b5dcab01..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_clip_on.html b/api/_as_gen/matplotlib.axis.YAxis.set_clip_on.html deleted file mode 100644 index f8396fe9f77..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_clip_path.html b/api/_as_gen/matplotlib.axis.YAxis.set_clip_path.html deleted file mode 100644 index 5f011e59241..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_contains.html b/api/_as_gen/matplotlib.axis.YAxis.set_contains.html deleted file mode 100644 index 8f412076bc6..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_data_interval.html b/api/_as_gen/matplotlib.axis.YAxis.set_data_interval.html deleted file mode 100644 index a8199a0893a..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_data_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_default_intervals.html b/api/_as_gen/matplotlib.axis.YAxis.set_default_intervals.html deleted file mode 100644 index daf9d46f1c8..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_default_intervals.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_figure.html b/api/_as_gen/matplotlib.axis.YAxis.set_figure.html deleted file mode 100644 index bfefc764a10..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_gid.html b/api/_as_gen/matplotlib.axis.YAxis.set_gid.html deleted file mode 100644 index 45b71ea7bfb..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_label.html b/api/_as_gen/matplotlib.axis.YAxis.set_label.html deleted file mode 100644 index 02f0588a488..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_label_coords.html b/api/_as_gen/matplotlib.axis.YAxis.set_label_coords.html deleted file mode 100644 index d9f1a0c1d47..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_label_coords.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_label_position.html b/api/_as_gen/matplotlib.axis.YAxis.set_label_position.html deleted file mode 100644 index 62ae127215e..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_label_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_label_text.html b/api/_as_gen/matplotlib.axis.YAxis.set_label_text.html deleted file mode 100644 index 0df3334e382..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_label_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_major_formatter.html b/api/_as_gen/matplotlib.axis.YAxis.set_major_formatter.html deleted file mode 100644 index 4927295a707..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_major_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_major_locator.html b/api/_as_gen/matplotlib.axis.YAxis.set_major_locator.html deleted file mode 100644 index 5386fca5a48..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_major_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_minor_formatter.html b/api/_as_gen/matplotlib.axis.YAxis.set_minor_formatter.html deleted file mode 100644 index ba1a1cad5d0..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_minor_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_minor_locator.html b/api/_as_gen/matplotlib.axis.YAxis.set_minor_locator.html deleted file mode 100644 index 282e2a5b4ad..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_minor_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_offset_position.html b/api/_as_gen/matplotlib.axis.YAxis.set_offset_position.html deleted file mode 100644 index 0c7d8c24e26..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_offset_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_path_effects.html b/api/_as_gen/matplotlib.axis.YAxis.set_path_effects.html deleted file mode 100644 index 9e48dc9b8dd..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_picker.html b/api/_as_gen/matplotlib.axis.YAxis.set_picker.html deleted file mode 100644 index 8ccfbafc86d..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_pickradius.html b/api/_as_gen/matplotlib.axis.YAxis.set_pickradius.html deleted file mode 100644 index 57a58540576..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_pickradius.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_rasterized.html b/api/_as_gen/matplotlib.axis.YAxis.set_rasterized.html deleted file mode 100644 index d95f42d4bc5..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_sketch_params.html b/api/_as_gen/matplotlib.axis.YAxis.set_sketch_params.html deleted file mode 100644 index 9cead7138f2..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_smart_bounds.html b/api/_as_gen/matplotlib.axis.YAxis.set_smart_bounds.html deleted file mode 100644 index 6e2859cb323..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_smart_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_snap.html b/api/_as_gen/matplotlib.axis.YAxis.set_snap.html deleted file mode 100644 index 87d8ce0c844..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_tick_params.html b/api/_as_gen/matplotlib.axis.YAxis.set_tick_params.html deleted file mode 100644 index 2a830197937..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_tick_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_ticklabels.html b/api/_as_gen/matplotlib.axis.YAxis.set_ticklabels.html deleted file mode 100644 index adc43b4e20c..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_ticks.html b/api/_as_gen/matplotlib.axis.YAxis.set_ticks.html deleted file mode 100644 index c3576d98768..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_ticks_position.html b/api/_as_gen/matplotlib.axis.YAxis.set_ticks_position.html deleted file mode 100644 index dc12ad6d446..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_ticks_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_transform.html b/api/_as_gen/matplotlib.axis.YAxis.set_transform.html deleted file mode 100644 index 99b343bfee2..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_units.html b/api/_as_gen/matplotlib.axis.YAxis.set_units.html deleted file mode 100644 index f072cce5cc7..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_url.html b/api/_as_gen/matplotlib.axis.YAxis.set_url.html deleted file mode 100644 index 738be2c4d9d..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_view_interval.html b/api/_as_gen/matplotlib.axis.YAxis.set_view_interval.html deleted file mode 100644 index 10afdf4d29a..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_visible.html b/api/_as_gen/matplotlib.axis.YAxis.set_visible.html deleted file mode 100644 index 675817749e3..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.set_zorder.html b/api/_as_gen/matplotlib.axis.YAxis.set_zorder.html deleted file mode 100644 index 562a5912384..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.stale.html b/api/_as_gen/matplotlib.axis.YAxis.stale.html deleted file mode 100644 index 0649b9e5a75..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.tick_left.html b/api/_as_gen/matplotlib.axis.YAxis.tick_left.html deleted file mode 100644 index c56527e8b8f..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.tick_left.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.tick_right.html b/api/_as_gen/matplotlib.axis.YAxis.tick_right.html deleted file mode 100644 index d8c8ac101a7..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.tick_right.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.update.html b/api/_as_gen/matplotlib.axis.YAxis.update.html deleted file mode 100644 index aba47df5329..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.update_from.html b/api/_as_gen/matplotlib.axis.YAxis.update_from.html deleted file mode 100644 index d685989c685..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.update_units.html b/api/_as_gen/matplotlib.axis.YAxis.update_units.html deleted file mode 100644 index 78e900d3a09..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.update_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.zoom.html b/api/_as_gen/matplotlib.axis.YAxis.zoom.html deleted file mode 100644 index 360e5d1c134..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.zoom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YAxis.zorder.html b/api/_as_gen/matplotlib.axis.YAxis.zorder.html deleted file mode 100644 index 612672dbd8a..00000000000 --- a/api/_as_gen/matplotlib.axis.YAxis.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.add_callback.html b/api/_as_gen/matplotlib.axis.YTick.add_callback.html deleted file mode 100644 index 5375502ef1b..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.add_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.aname.html b/api/_as_gen/matplotlib.axis.YTick.aname.html deleted file mode 100644 index d424707a1ae..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.aname.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.apply_tickdir.html b/api/_as_gen/matplotlib.axis.YTick.apply_tickdir.html deleted file mode 100644 index 19d15f2954d..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.apply_tickdir.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.axes.html b/api/_as_gen/matplotlib.axis.YTick.axes.html deleted file mode 100644 index 921aba7ec5f..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.contains.html b/api/_as_gen/matplotlib.axis.YTick.contains.html deleted file mode 100644 index 226302f689d..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.convert_xunits.html b/api/_as_gen/matplotlib.axis.YTick.convert_xunits.html deleted file mode 100644 index 63a4a76addb..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.convert_xunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.convert_yunits.html b/api/_as_gen/matplotlib.axis.YTick.convert_yunits.html deleted file mode 100644 index a8e3f6164af..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.convert_yunits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.draw.html b/api/_as_gen/matplotlib.axis.YTick.draw.html deleted file mode 100644 index 5c117974470..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.findobj.html b/api/_as_gen/matplotlib.axis.YTick.findobj.html deleted file mode 100644 index b04f4897d65..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.format_cursor_data.html b/api/_as_gen/matplotlib.axis.YTick.format_cursor_data.html deleted file mode 100644 index 4bccd9bed4e..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.format_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_agg_filter.html b/api/_as_gen/matplotlib.axis.YTick.get_agg_filter.html deleted file mode 100644 index 23eac5e4d03..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_alpha.html b/api/_as_gen/matplotlib.axis.YTick.get_alpha.html deleted file mode 100644 index e1a07d39b0e..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_animated.html b/api/_as_gen/matplotlib.axis.YTick.get_animated.html deleted file mode 100644 index 041ff33e367..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_axes.html b/api/_as_gen/matplotlib.axis.YTick.get_axes.html deleted file mode 100644 index 593ae745369..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_children.html b/api/_as_gen/matplotlib.axis.YTick.get_children.html deleted file mode 100644 index 02032998ccc..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_children.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_clip_box.html b/api/_as_gen/matplotlib.axis.YTick.get_clip_box.html deleted file mode 100644 index abf1c1f9fae..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_clip_on.html b/api/_as_gen/matplotlib.axis.YTick.get_clip_on.html deleted file mode 100644 index dc072a0aa62..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_clip_path.html b/api/_as_gen/matplotlib.axis.YTick.get_clip_path.html deleted file mode 100644 index f6e869ac555..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_contains.html b/api/_as_gen/matplotlib.axis.YTick.get_contains.html deleted file mode 100644 index 5e9a85a029a..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_cursor_data.html b/api/_as_gen/matplotlib.axis.YTick.get_cursor_data.html deleted file mode 100644 index 3e7afabe17e..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_cursor_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_figure.html b/api/_as_gen/matplotlib.axis.YTick.get_figure.html deleted file mode 100644 index c94e577cc28..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_gid.html b/api/_as_gen/matplotlib.axis.YTick.get_gid.html deleted file mode 100644 index ac5052f83a2..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_label.html b/api/_as_gen/matplotlib.axis.YTick.get_label.html deleted file mode 100644 index 9b0bf38ed7d..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_loc.html b/api/_as_gen/matplotlib.axis.YTick.get_loc.html deleted file mode 100644 index e7423cfc181..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_loc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_pad.html b/api/_as_gen/matplotlib.axis.YTick.get_pad.html deleted file mode 100644 index b731c826e16..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_pad_pixels.html b/api/_as_gen/matplotlib.axis.YTick.get_pad_pixels.html deleted file mode 100644 index 060e5f1593f..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_pad_pixels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_path_effects.html b/api/_as_gen/matplotlib.axis.YTick.get_path_effects.html deleted file mode 100644 index ba04eef31a0..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_picker.html b/api/_as_gen/matplotlib.axis.YTick.get_picker.html deleted file mode 100644 index 36797171098..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_rasterized.html b/api/_as_gen/matplotlib.axis.YTick.get_rasterized.html deleted file mode 100644 index c5b70dd211a..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_sketch_params.html b/api/_as_gen/matplotlib.axis.YTick.get_sketch_params.html deleted file mode 100644 index 79503162e86..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_snap.html b/api/_as_gen/matplotlib.axis.YTick.get_snap.html deleted file mode 100644 index 9c5ad8b83cd..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_tick_padding.html b/api/_as_gen/matplotlib.axis.YTick.get_tick_padding.html deleted file mode 100644 index 0b1bf28e456..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_tick_padding.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_tickdir.html b/api/_as_gen/matplotlib.axis.YTick.get_tickdir.html deleted file mode 100644 index 0df2c4b40b5..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_tickdir.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_transform.html b/api/_as_gen/matplotlib.axis.YTick.get_transform.html deleted file mode 100644 index efb180640fe..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_transformed_clip_path_and_affine.html b/api/_as_gen/matplotlib.axis.YTick.get_transformed_clip_path_and_affine.html deleted file mode 100644 index dc8ea7232f6..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_transformed_clip_path_and_affine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_url.html b/api/_as_gen/matplotlib.axis.YTick.get_url.html deleted file mode 100644 index bd9e5f55194..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_view_interval.html b/api/_as_gen/matplotlib.axis.YTick.get_view_interval.html deleted file mode 100644 index 4f7f5cd889b..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_view_interval.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_visible.html b/api/_as_gen/matplotlib.axis.YTick.get_visible.html deleted file mode 100644 index 9b85d08bae5..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_window_extent.html b/api/_as_gen/matplotlib.axis.YTick.get_window_extent.html deleted file mode 100644 index 0e643c654fc..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_window_extent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.get_zorder.html b/api/_as_gen/matplotlib.axis.YTick.get_zorder.html deleted file mode 100644 index 7ea30771586..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.get_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.have_units.html b/api/_as_gen/matplotlib.axis.YTick.have_units.html deleted file mode 100644 index 10a49990463..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.have_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.hitlist.html b/api/_as_gen/matplotlib.axis.YTick.hitlist.html deleted file mode 100644 index b6859b6f0a1..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.hitlist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.is_figure_set.html b/api/_as_gen/matplotlib.axis.YTick.is_figure_set.html deleted file mode 100644 index d5734fed5c3..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.is_figure_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.is_transform_set.html b/api/_as_gen/matplotlib.axis.YTick.is_transform_set.html deleted file mode 100644 index a30a0bd039d..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.is_transform_set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.mouseover.html b/api/_as_gen/matplotlib.axis.YTick.mouseover.html deleted file mode 100644 index fb118bbc14d..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.mouseover.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.pchanged.html b/api/_as_gen/matplotlib.axis.YTick.pchanged.html deleted file mode 100644 index 8c0baaa40ad..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.pchanged.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.pick.html b/api/_as_gen/matplotlib.axis.YTick.pick.html deleted file mode 100644 index af2a5e03198..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.pick.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.pickable.html b/api/_as_gen/matplotlib.axis.YTick.pickable.html deleted file mode 100644 index ed90047c004..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.pickable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.properties.html b/api/_as_gen/matplotlib.axis.YTick.properties.html deleted file mode 100644 index 586251d2e8e..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.properties.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.remove.html b/api/_as_gen/matplotlib.axis.YTick.remove.html deleted file mode 100644 index 524ee087dc1..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.remove.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.remove_callback.html b/api/_as_gen/matplotlib.axis.YTick.remove_callback.html deleted file mode 100644 index 3d846a8c470..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.remove_callback.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set.html b/api/_as_gen/matplotlib.axis.YTick.set.html deleted file mode 100644 index 3de2b4e2158..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_agg_filter.html b/api/_as_gen/matplotlib.axis.YTick.set_agg_filter.html deleted file mode 100644 index bf9d04d7aea..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_alpha.html b/api/_as_gen/matplotlib.axis.YTick.set_alpha.html deleted file mode 100644 index cb61b590153..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_animated.html b/api/_as_gen/matplotlib.axis.YTick.set_animated.html deleted file mode 100644 index 46a578f4966..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_axes.html b/api/_as_gen/matplotlib.axis.YTick.set_axes.html deleted file mode 100644 index 2b740f08632..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_clip_box.html b/api/_as_gen/matplotlib.axis.YTick.set_clip_box.html deleted file mode 100644 index 684e1a1b998..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_clip_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_clip_on.html b/api/_as_gen/matplotlib.axis.YTick.set_clip_on.html deleted file mode 100644 index 295084243c2..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_clip_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_clip_path.html b/api/_as_gen/matplotlib.axis.YTick.set_clip_path.html deleted file mode 100644 index 69ac8afbf2b..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_contains.html b/api/_as_gen/matplotlib.axis.YTick.set_contains.html deleted file mode 100644 index fad2e32519f..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_contains.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_figure.html b/api/_as_gen/matplotlib.axis.YTick.set_figure.html deleted file mode 100644 index e09a4293c1e..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_gid.html b/api/_as_gen/matplotlib.axis.YTick.set_gid.html deleted file mode 100644 index f1c575d0a26..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_gid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_label.html b/api/_as_gen/matplotlib.axis.YTick.set_label.html deleted file mode 100644 index 6fa2f6a75b8..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_label1.html b/api/_as_gen/matplotlib.axis.YTick.set_label1.html deleted file mode 100644 index cbd3278c362..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_label1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_label2.html b/api/_as_gen/matplotlib.axis.YTick.set_label2.html deleted file mode 100644 index 05183309e32..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_label2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_pad.html b/api/_as_gen/matplotlib.axis.YTick.set_pad.html deleted file mode 100644 index c8be4d92a26..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_path_effects.html b/api/_as_gen/matplotlib.axis.YTick.set_path_effects.html deleted file mode 100644 index e7839190769..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_path_effects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_picker.html b/api/_as_gen/matplotlib.axis.YTick.set_picker.html deleted file mode 100644 index 560183cd144..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_picker.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_rasterized.html b/api/_as_gen/matplotlib.axis.YTick.set_rasterized.html deleted file mode 100644 index 613080b209e..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_rasterized.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_sketch_params.html b/api/_as_gen/matplotlib.axis.YTick.set_sketch_params.html deleted file mode 100644 index 760795460cb..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_sketch_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_snap.html b/api/_as_gen/matplotlib.axis.YTick.set_snap.html deleted file mode 100644 index dd2c2e5fa20..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_snap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_transform.html b/api/_as_gen/matplotlib.axis.YTick.set_transform.html deleted file mode 100644 index bb98a22e110..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_url.html b/api/_as_gen/matplotlib.axis.YTick.set_url.html deleted file mode 100644 index 4242589d364..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_url.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_visible.html b/api/_as_gen/matplotlib.axis.YTick.set_visible.html deleted file mode 100644 index a35e40f12f1..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_visible.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.set_zorder.html b/api/_as_gen/matplotlib.axis.YTick.set_zorder.html deleted file mode 100644 index dfffbda5187..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.set_zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.stale.html b/api/_as_gen/matplotlib.axis.YTick.stale.html deleted file mode 100644 index 6b084a7e4d1..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.stale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.update.html b/api/_as_gen/matplotlib.axis.YTick.update.html deleted file mode 100644 index d68c5f485cd..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.update_from.html b/api/_as_gen/matplotlib.axis.YTick.update_from.html deleted file mode 100644 index 336db03b3a4..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.update_from.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.update_position.html b/api/_as_gen/matplotlib.axis.YTick.update_position.html deleted file mode 100644 index 6f212630500..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.update_position.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.axis.YTick.zorder.html b/api/_as_gen/matplotlib.axis.YTick.zorder.html deleted file mode 100644 index 6861fc48fae..00000000000 --- a/api/_as_gen/matplotlib.axis.YTick.zorder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.BoundaryNorm.html b/api/_as_gen/matplotlib.colors.BoundaryNorm.html deleted file mode 100644 index 102b835d4b1..00000000000 --- a/api/_as_gen/matplotlib.colors.BoundaryNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.CenteredNorm.html b/api/_as_gen/matplotlib.colors.CenteredNorm.html deleted file mode 100644 index c6b049b6dc5..00000000000 --- a/api/_as_gen/matplotlib.colors.CenteredNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.Colormap.html b/api/_as_gen/matplotlib.colors.Colormap.html deleted file mode 100644 index a6d46393c44..00000000000 --- a/api/_as_gen/matplotlib.colors.Colormap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.DivergingNorm.html b/api/_as_gen/matplotlib.colors.DivergingNorm.html deleted file mode 100644 index ab7f687ea57..00000000000 --- a/api/_as_gen/matplotlib.colors.DivergingNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.FuncNorm.html b/api/_as_gen/matplotlib.colors.FuncNorm.html deleted file mode 100644 index 66b18843ad1..00000000000 --- a/api/_as_gen/matplotlib.colors.FuncNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.LightSource.html b/api/_as_gen/matplotlib.colors.LightSource.html deleted file mode 100644 index d7d02fa1280..00000000000 --- a/api/_as_gen/matplotlib.colors.LightSource.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.LinearSegmentedColormap.html b/api/_as_gen/matplotlib.colors.LinearSegmentedColormap.html deleted file mode 100644 index 6049cbecb22..00000000000 --- a/api/_as_gen/matplotlib.colors.LinearSegmentedColormap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.ListedColormap.html b/api/_as_gen/matplotlib.colors.ListedColormap.html deleted file mode 100644 index 6483c6f9626..00000000000 --- a/api/_as_gen/matplotlib.colors.ListedColormap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.LogNorm.html b/api/_as_gen/matplotlib.colors.LogNorm.html deleted file mode 100644 index 410d32303b6..00000000000 --- a/api/_as_gen/matplotlib.colors.LogNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.NoNorm.html b/api/_as_gen/matplotlib.colors.NoNorm.html deleted file mode 100644 index ae7e92f76d7..00000000000 --- a/api/_as_gen/matplotlib.colors.NoNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.Normalize.html b/api/_as_gen/matplotlib.colors.Normalize.html deleted file mode 100644 index 08712c7e074..00000000000 --- a/api/_as_gen/matplotlib.colors.Normalize.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.PowerNorm.html b/api/_as_gen/matplotlib.colors.PowerNorm.html deleted file mode 100644 index 0cba30e178a..00000000000 --- a/api/_as_gen/matplotlib.colors.PowerNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.SymLogNorm.html b/api/_as_gen/matplotlib.colors.SymLogNorm.html deleted file mode 100644 index be10df269bd..00000000000 --- a/api/_as_gen/matplotlib.colors.SymLogNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.TwoSlopeNorm.html b/api/_as_gen/matplotlib.colors.TwoSlopeNorm.html deleted file mode 100644 index 3715e38d396..00000000000 --- a/api/_as_gen/matplotlib.colors.TwoSlopeNorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.from_levels_and_colors.html b/api/_as_gen/matplotlib.colors.from_levels_and_colors.html deleted file mode 100644 index 01206291bd8..00000000000 --- a/api/_as_gen/matplotlib.colors.from_levels_and_colors.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.get_named_colors_mapping.html b/api/_as_gen/matplotlib.colors.get_named_colors_mapping.html deleted file mode 100644 index 9da687ebb90..00000000000 --- a/api/_as_gen/matplotlib.colors.get_named_colors_mapping.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.hsv_to_rgb.html b/api/_as_gen/matplotlib.colors.hsv_to_rgb.html deleted file mode 100644 index 48b2cc8a4eb..00000000000 --- a/api/_as_gen/matplotlib.colors.hsv_to_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.is_color_like.html b/api/_as_gen/matplotlib.colors.is_color_like.html deleted file mode 100644 index 191d9b38e64..00000000000 --- a/api/_as_gen/matplotlib.colors.is_color_like.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.makeMappingArray.html b/api/_as_gen/matplotlib.colors.makeMappingArray.html deleted file mode 100644 index 3242dc41173..00000000000 --- a/api/_as_gen/matplotlib.colors.makeMappingArray.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.make_norm_from_scale.html b/api/_as_gen/matplotlib.colors.make_norm_from_scale.html deleted file mode 100644 index 3f00fc4acc9..00000000000 --- a/api/_as_gen/matplotlib.colors.make_norm_from_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.rgb_to_hsv.html b/api/_as_gen/matplotlib.colors.rgb_to_hsv.html deleted file mode 100644 index 312853d41f0..00000000000 --- a/api/_as_gen/matplotlib.colors.rgb_to_hsv.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.same_color.html b/api/_as_gen/matplotlib.colors.same_color.html deleted file mode 100644 index 55e81959bb8..00000000000 --- a/api/_as_gen/matplotlib.colors.same_color.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.to_hex.html b/api/_as_gen/matplotlib.colors.to_hex.html deleted file mode 100644 index 3fa2ba5c620..00000000000 --- a/api/_as_gen/matplotlib.colors.to_hex.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.to_rgb.html b/api/_as_gen/matplotlib.colors.to_rgb.html deleted file mode 100644 index 14948c8dbe7..00000000000 --- a/api/_as_gen/matplotlib.colors.to_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.to_rgba.html b/api/_as_gen/matplotlib.colors.to_rgba.html deleted file mode 100644 index 87fa824f67b..00000000000 --- a/api/_as_gen/matplotlib.colors.to_rgba.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.colors.to_rgba_array.html b/api/_as_gen/matplotlib.colors.to_rgba_array.html deleted file mode 100644 index e01d23be2e5..00000000000 --- a/api/_as_gen/matplotlib.colors.to_rgba_array.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.figure.AxesStack.html b/api/_as_gen/matplotlib.figure.AxesStack.html deleted file mode 100644 index 601058b29dd..00000000000 --- a/api/_as_gen/matplotlib.figure.AxesStack.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.figure.Figure.html b/api/_as_gen/matplotlib.figure.Figure.html deleted file mode 100644 index 541547ac30e..00000000000 --- a/api/_as_gen/matplotlib.figure.Figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.figure.SubplotParams.html b/api/_as_gen/matplotlib.figure.SubplotParams.html deleted file mode 100644 index 27330609704..00000000000 --- a/api/_as_gen/matplotlib.figure.SubplotParams.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.figure.figaspect.html b/api/_as_gen/matplotlib.figure.figaspect.html deleted file mode 100644 index aa04e5c8f81..00000000000 --- a/api/_as_gen/matplotlib.figure.figaspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.gridspec.GridSpec.html b/api/_as_gen/matplotlib.gridspec.GridSpec.html deleted file mode 100644 index 97fa6a96335..00000000000 --- a/api/_as_gen/matplotlib.gridspec.GridSpec.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.gridspec.GridSpecBase.html b/api/_as_gen/matplotlib.gridspec.GridSpecBase.html deleted file mode 100644 index b44ca807cea..00000000000 --- a/api/_as_gen/matplotlib.gridspec.GridSpecBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.gridspec.GridSpecFromSubplotSpec.html b/api/_as_gen/matplotlib.gridspec.GridSpecFromSubplotSpec.html deleted file mode 100644 index b137f68edb3..00000000000 --- a/api/_as_gen/matplotlib.gridspec.GridSpecFromSubplotSpec.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.gridspec.SubplotSpec.html b/api/_as_gen/matplotlib.gridspec.SubplotSpec.html deleted file mode 100644 index 2dc0d0d5194..00000000000 --- a/api/_as_gen/matplotlib.gridspec.SubplotSpec.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.lines.Line2D.html b/api/_as_gen/matplotlib.lines.Line2D.html deleted file mode 100644 index fdc52aa22a7..00000000000 --- a/api/_as_gen/matplotlib.lines.Line2D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.lines.VertexSelector.html b/api/_as_gen/matplotlib.lines.VertexSelector.html deleted file mode 100644 index e0f04a7bf42..00000000000 --- a/api/_as_gen/matplotlib.lines.VertexSelector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.lines.segment_hits.html b/api/_as_gen/matplotlib.lines.segment_hits.html deleted file mode 100644 index 9031e869951..00000000000 --- a/api/_as_gen/matplotlib.lines.segment_hits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.markers.MarkerStyle.html b/api/_as_gen/matplotlib.markers.MarkerStyle.html deleted file mode 100644 index 13ca31e1aa8..00000000000 --- a/api/_as_gen/matplotlib.markers.MarkerStyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Annulus.html b/api/_as_gen/matplotlib.patches.Annulus.html deleted file mode 100644 index 47a7a390ce3..00000000000 --- a/api/_as_gen/matplotlib.patches.Annulus.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Arc.html b/api/_as_gen/matplotlib.patches.Arc.html deleted file mode 100644 index 1db13370cf7..00000000000 --- a/api/_as_gen/matplotlib.patches.Arc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Arrow.html b/api/_as_gen/matplotlib.patches.Arrow.html deleted file mode 100644 index efd139897df..00000000000 --- a/api/_as_gen/matplotlib.patches.Arrow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.ArrowStyle.html b/api/_as_gen/matplotlib.patches.ArrowStyle.html deleted file mode 100644 index 9037681de6f..00000000000 --- a/api/_as_gen/matplotlib.patches.ArrowStyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.BoxStyle.html b/api/_as_gen/matplotlib.patches.BoxStyle.html deleted file mode 100644 index fd1eeb8c700..00000000000 --- a/api/_as_gen/matplotlib.patches.BoxStyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Circle.html b/api/_as_gen/matplotlib.patches.Circle.html deleted file mode 100644 index eb2ab09345b..00000000000 --- a/api/_as_gen/matplotlib.patches.Circle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.CirclePolygon.html b/api/_as_gen/matplotlib.patches.CirclePolygon.html deleted file mode 100644 index bc9cd857f7e..00000000000 --- a/api/_as_gen/matplotlib.patches.CirclePolygon.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.ConnectionPatch.html b/api/_as_gen/matplotlib.patches.ConnectionPatch.html deleted file mode 100644 index 58fd4bf021d..00000000000 --- a/api/_as_gen/matplotlib.patches.ConnectionPatch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.ConnectionStyle.html b/api/_as_gen/matplotlib.patches.ConnectionStyle.html deleted file mode 100644 index ddfe9faa522..00000000000 --- a/api/_as_gen/matplotlib.patches.ConnectionStyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Ellipse.html b/api/_as_gen/matplotlib.patches.Ellipse.html deleted file mode 100644 index 9edd493250b..00000000000 --- a/api/_as_gen/matplotlib.patches.Ellipse.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.FancyArrow.html b/api/_as_gen/matplotlib.patches.FancyArrow.html deleted file mode 100644 index c4f84a01260..00000000000 --- a/api/_as_gen/matplotlib.patches.FancyArrow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.FancyArrowPatch.html b/api/_as_gen/matplotlib.patches.FancyArrowPatch.html deleted file mode 100644 index 9129bdafc7b..00000000000 --- a/api/_as_gen/matplotlib.patches.FancyArrowPatch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.FancyBboxPatch.html b/api/_as_gen/matplotlib.patches.FancyBboxPatch.html deleted file mode 100644 index 54973866719..00000000000 --- a/api/_as_gen/matplotlib.patches.FancyBboxPatch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Patch.html b/api/_as_gen/matplotlib.patches.Patch.html deleted file mode 100644 index bef35d262a2..00000000000 --- a/api/_as_gen/matplotlib.patches.Patch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.PathPatch.html b/api/_as_gen/matplotlib.patches.PathPatch.html deleted file mode 100644 index 3297518328d..00000000000 --- a/api/_as_gen/matplotlib.patches.PathPatch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Polygon.html b/api/_as_gen/matplotlib.patches.Polygon.html deleted file mode 100644 index 6159cd20a7b..00000000000 --- a/api/_as_gen/matplotlib.patches.Polygon.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Rectangle.html b/api/_as_gen/matplotlib.patches.Rectangle.html deleted file mode 100644 index 8e7457f816b..00000000000 --- a/api/_as_gen/matplotlib.patches.Rectangle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.RegularPolygon.html b/api/_as_gen/matplotlib.patches.RegularPolygon.html deleted file mode 100644 index f43b1e7a03c..00000000000 --- a/api/_as_gen/matplotlib.patches.RegularPolygon.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Shadow.html b/api/_as_gen/matplotlib.patches.Shadow.html deleted file mode 100644 index 33e4a578c3f..00000000000 --- a/api/_as_gen/matplotlib.patches.Shadow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.StepPatch.html b/api/_as_gen/matplotlib.patches.StepPatch.html deleted file mode 100644 index 981d77e0c66..00000000000 --- a/api/_as_gen/matplotlib.patches.StepPatch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.Wedge.html b/api/_as_gen/matplotlib.patches.Wedge.html deleted file mode 100644 index 3e688c56d9f..00000000000 --- a/api/_as_gen/matplotlib.patches.Wedge.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.YAArrow.html b/api/_as_gen/matplotlib.patches.YAArrow.html deleted file mode 100644 index dc9bf8e11aa..00000000000 --- a/api/_as_gen/matplotlib.patches.YAArrow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.bbox_artist.html b/api/_as_gen/matplotlib.patches.bbox_artist.html deleted file mode 100644 index c3ec77b9e73..00000000000 --- a/api/_as_gen/matplotlib.patches.bbox_artist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.patches.draw_bbox.html b/api/_as_gen/matplotlib.patches.draw_bbox.html deleted file mode 100644 index 626d61c1e80..00000000000 --- a/api/_as_gen/matplotlib.patches.draw_bbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.acorr.html b/api/_as_gen/matplotlib.pyplot.acorr.html deleted file mode 100644 index ac7dd2df76f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.acorr.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.angle_spectrum.html b/api/_as_gen/matplotlib.pyplot.angle_spectrum.html deleted file mode 100644 index 134dd821d32..00000000000 --- a/api/_as_gen/matplotlib.pyplot.angle_spectrum.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.annotate.html b/api/_as_gen/matplotlib.pyplot.annotate.html deleted file mode 100644 index 6a8b5c743e8..00000000000 --- a/api/_as_gen/matplotlib.pyplot.annotate.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.arrow.html b/api/_as_gen/matplotlib.pyplot.arrow.html deleted file mode 100644 index 89106db8d91..00000000000 --- a/api/_as_gen/matplotlib.pyplot.arrow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.autoscale.html b/api/_as_gen/matplotlib.pyplot.autoscale.html deleted file mode 100644 index 7f5809c0933..00000000000 --- a/api/_as_gen/matplotlib.pyplot.autoscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.autumn.html b/api/_as_gen/matplotlib.pyplot.autumn.html deleted file mode 100644 index 93a1d6e48da..00000000000 --- a/api/_as_gen/matplotlib.pyplot.autumn.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.axes.html b/api/_as_gen/matplotlib.pyplot.axes.html deleted file mode 100644 index 913c3056fee..00000000000 --- a/api/_as_gen/matplotlib.pyplot.axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.axhline.html b/api/_as_gen/matplotlib.pyplot.axhline.html deleted file mode 100644 index 9c1ad6dc421..00000000000 --- a/api/_as_gen/matplotlib.pyplot.axhline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.axhspan.html b/api/_as_gen/matplotlib.pyplot.axhspan.html deleted file mode 100644 index 42e84a89e8a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.axhspan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.axis.html b/api/_as_gen/matplotlib.pyplot.axis.html deleted file mode 100644 index a8041172924..00000000000 --- a/api/_as_gen/matplotlib.pyplot.axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.axline.html b/api/_as_gen/matplotlib.pyplot.axline.html deleted file mode 100644 index 19287a5fc11..00000000000 --- a/api/_as_gen/matplotlib.pyplot.axline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.axvline.html b/api/_as_gen/matplotlib.pyplot.axvline.html deleted file mode 100644 index 75b8e33c180..00000000000 --- a/api/_as_gen/matplotlib.pyplot.axvline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.axvspan.html b/api/_as_gen/matplotlib.pyplot.axvspan.html deleted file mode 100644 index 4019150e202..00000000000 --- a/api/_as_gen/matplotlib.pyplot.axvspan.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.bar.html b/api/_as_gen/matplotlib.pyplot.bar.html deleted file mode 100644 index 086596a822a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.bar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.bar_label.html b/api/_as_gen/matplotlib.pyplot.bar_label.html deleted file mode 100644 index a5b71d56985..00000000000 --- a/api/_as_gen/matplotlib.pyplot.bar_label.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.barbs.html b/api/_as_gen/matplotlib.pyplot.barbs.html deleted file mode 100644 index c5620c53ce5..00000000000 --- a/api/_as_gen/matplotlib.pyplot.barbs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.barh.html b/api/_as_gen/matplotlib.pyplot.barh.html deleted file mode 100644 index 5acd0ada516..00000000000 --- a/api/_as_gen/matplotlib.pyplot.barh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.bone.html b/api/_as_gen/matplotlib.pyplot.bone.html deleted file mode 100644 index 27e9b8fe3de..00000000000 --- a/api/_as_gen/matplotlib.pyplot.bone.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.box.html b/api/_as_gen/matplotlib.pyplot.box.html deleted file mode 100644 index bc3254023b2..00000000000 --- a/api/_as_gen/matplotlib.pyplot.box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.boxplot.html b/api/_as_gen/matplotlib.pyplot.boxplot.html deleted file mode 100644 index fe776a861db..00000000000 --- a/api/_as_gen/matplotlib.pyplot.boxplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.broken_barh.html b/api/_as_gen/matplotlib.pyplot.broken_barh.html deleted file mode 100644 index 83a74471cdc..00000000000 --- a/api/_as_gen/matplotlib.pyplot.broken_barh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.cla.html b/api/_as_gen/matplotlib.pyplot.cla.html deleted file mode 100644 index d62aa4b8764..00000000000 --- a/api/_as_gen/matplotlib.pyplot.cla.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.clabel.html b/api/_as_gen/matplotlib.pyplot.clabel.html deleted file mode 100644 index f8789d8e6b9..00000000000 --- a/api/_as_gen/matplotlib.pyplot.clabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.clf.html b/api/_as_gen/matplotlib.pyplot.clf.html deleted file mode 100644 index 08016d7b83f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.clf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.clim.html b/api/_as_gen/matplotlib.pyplot.clim.html deleted file mode 100644 index 5cbf551b7a3..00000000000 --- a/api/_as_gen/matplotlib.pyplot.clim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.close.html b/api/_as_gen/matplotlib.pyplot.close.html deleted file mode 100644 index d127956c40c..00000000000 --- a/api/_as_gen/matplotlib.pyplot.close.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.cohere.html b/api/_as_gen/matplotlib.pyplot.cohere.html deleted file mode 100644 index 5f52b059e0a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.cohere.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.colorbar.html b/api/_as_gen/matplotlib.pyplot.colorbar.html deleted file mode 100644 index d2793adb31f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.colors.html b/api/_as_gen/matplotlib.pyplot.colors.html deleted file mode 100644 index 8a3708ca702..00000000000 --- a/api/_as_gen/matplotlib.pyplot.colors.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.connect.html b/api/_as_gen/matplotlib.pyplot.connect.html deleted file mode 100644 index 086f4008a93..00000000000 --- a/api/_as_gen/matplotlib.pyplot.connect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.contour.html b/api/_as_gen/matplotlib.pyplot.contour.html deleted file mode 100644 index 5b70ccb5ddf..00000000000 --- a/api/_as_gen/matplotlib.pyplot.contour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.contourf.html b/api/_as_gen/matplotlib.pyplot.contourf.html deleted file mode 100644 index b781c41d54e..00000000000 --- a/api/_as_gen/matplotlib.pyplot.contourf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.cool.html b/api/_as_gen/matplotlib.pyplot.cool.html deleted file mode 100644 index f55f83f917f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.cool.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.copper.html b/api/_as_gen/matplotlib.pyplot.copper.html deleted file mode 100644 index 479614e6a98..00000000000 --- a/api/_as_gen/matplotlib.pyplot.copper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.csd.html b/api/_as_gen/matplotlib.pyplot.csd.html deleted file mode 100644 index 48d3aa21a63..00000000000 --- a/api/_as_gen/matplotlib.pyplot.csd.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.delaxes.html b/api/_as_gen/matplotlib.pyplot.delaxes.html deleted file mode 100644 index 5478e29ef4b..00000000000 --- a/api/_as_gen/matplotlib.pyplot.delaxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.disconnect.html b/api/_as_gen/matplotlib.pyplot.disconnect.html deleted file mode 100644 index 4b3851f32dd..00000000000 --- a/api/_as_gen/matplotlib.pyplot.disconnect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.draw.html b/api/_as_gen/matplotlib.pyplot.draw.html deleted file mode 100644 index d645cebc5b9..00000000000 --- a/api/_as_gen/matplotlib.pyplot.draw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.draw_if_interactive.html b/api/_as_gen/matplotlib.pyplot.draw_if_interactive.html deleted file mode 100644 index 44b8d3cc97e..00000000000 --- a/api/_as_gen/matplotlib.pyplot.draw_if_interactive.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.errorbar.html b/api/_as_gen/matplotlib.pyplot.errorbar.html deleted file mode 100644 index 597829ef2fd..00000000000 --- a/api/_as_gen/matplotlib.pyplot.errorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.eventplot.html b/api/_as_gen/matplotlib.pyplot.eventplot.html deleted file mode 100644 index 0f308e83eb5..00000000000 --- a/api/_as_gen/matplotlib.pyplot.eventplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.figimage.html b/api/_as_gen/matplotlib.pyplot.figimage.html deleted file mode 100644 index dbac256549a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.figimage.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.figlegend.html b/api/_as_gen/matplotlib.pyplot.figlegend.html deleted file mode 100644 index c4fe200ee96..00000000000 --- a/api/_as_gen/matplotlib.pyplot.figlegend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.fignum_exists.html b/api/_as_gen/matplotlib.pyplot.fignum_exists.html deleted file mode 100644 index 7ed437646b1..00000000000 --- a/api/_as_gen/matplotlib.pyplot.fignum_exists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.figtext.html b/api/_as_gen/matplotlib.pyplot.figtext.html deleted file mode 100644 index d01b1251d7f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.figtext.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.figure.html b/api/_as_gen/matplotlib.pyplot.figure.html deleted file mode 100644 index 9f63317f719..00000000000 --- a/api/_as_gen/matplotlib.pyplot.figure.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.fill.html b/api/_as_gen/matplotlib.pyplot.fill.html deleted file mode 100644 index 3a202c4ca1f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.fill.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.fill_between.html b/api/_as_gen/matplotlib.pyplot.fill_between.html deleted file mode 100644 index 938ff66cd63..00000000000 --- a/api/_as_gen/matplotlib.pyplot.fill_between.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.fill_betweenx.html b/api/_as_gen/matplotlib.pyplot.fill_betweenx.html deleted file mode 100644 index f15d962d7a6..00000000000 --- a/api/_as_gen/matplotlib.pyplot.fill_betweenx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.findobj.html b/api/_as_gen/matplotlib.pyplot.findobj.html deleted file mode 100644 index 74eb7901994..00000000000 --- a/api/_as_gen/matplotlib.pyplot.findobj.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.flag.html b/api/_as_gen/matplotlib.pyplot.flag.html deleted file mode 100644 index 562639902e8..00000000000 --- a/api/_as_gen/matplotlib.pyplot.flag.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.gca.html b/api/_as_gen/matplotlib.pyplot.gca.html deleted file mode 100644 index 70f30d164c5..00000000000 --- a/api/_as_gen/matplotlib.pyplot.gca.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.gcf.html b/api/_as_gen/matplotlib.pyplot.gcf.html deleted file mode 100644 index cf2ebae7c0c..00000000000 --- a/api/_as_gen/matplotlib.pyplot.gcf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.gci.html b/api/_as_gen/matplotlib.pyplot.gci.html deleted file mode 100644 index fb69abf3a91..00000000000 --- a/api/_as_gen/matplotlib.pyplot.gci.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.get.html b/api/_as_gen/matplotlib.pyplot.get.html deleted file mode 100644 index f885f401569..00000000000 --- a/api/_as_gen/matplotlib.pyplot.get.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.get_current_fig_manager.html b/api/_as_gen/matplotlib.pyplot.get_current_fig_manager.html deleted file mode 100644 index c664316166c..00000000000 --- a/api/_as_gen/matplotlib.pyplot.get_current_fig_manager.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.get_figlabels.html b/api/_as_gen/matplotlib.pyplot.get_figlabels.html deleted file mode 100644 index 9d267f7885a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.get_figlabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.get_fignums.html b/api/_as_gen/matplotlib.pyplot.get_fignums.html deleted file mode 100644 index ebc7bad1190..00000000000 --- a/api/_as_gen/matplotlib.pyplot.get_fignums.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.get_plot_commands.html b/api/_as_gen/matplotlib.pyplot.get_plot_commands.html deleted file mode 100644 index 52522706e21..00000000000 --- a/api/_as_gen/matplotlib.pyplot.get_plot_commands.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.getp.html b/api/_as_gen/matplotlib.pyplot.getp.html deleted file mode 100644 index d685b843167..00000000000 --- a/api/_as_gen/matplotlib.pyplot.getp.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.ginput.html b/api/_as_gen/matplotlib.pyplot.ginput.html deleted file mode 100644 index 42320c0b7ea..00000000000 --- a/api/_as_gen/matplotlib.pyplot.ginput.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.gray.html b/api/_as_gen/matplotlib.pyplot.gray.html deleted file mode 100644 index 5e94569cf94..00000000000 --- a/api/_as_gen/matplotlib.pyplot.gray.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.grid.html b/api/_as_gen/matplotlib.pyplot.grid.html deleted file mode 100644 index 860835983c3..00000000000 --- a/api/_as_gen/matplotlib.pyplot.grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.hexbin.html b/api/_as_gen/matplotlib.pyplot.hexbin.html deleted file mode 100644 index 953211928fa..00000000000 --- a/api/_as_gen/matplotlib.pyplot.hexbin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.hist.html b/api/_as_gen/matplotlib.pyplot.hist.html deleted file mode 100644 index 4465d529aa7..00000000000 --- a/api/_as_gen/matplotlib.pyplot.hist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.hist2d.html b/api/_as_gen/matplotlib.pyplot.hist2d.html deleted file mode 100644 index af4b2eb510e..00000000000 --- a/api/_as_gen/matplotlib.pyplot.hist2d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.hlines.html b/api/_as_gen/matplotlib.pyplot.hlines.html deleted file mode 100644 index 4e7ef0b4138..00000000000 --- a/api/_as_gen/matplotlib.pyplot.hlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.hold.html b/api/_as_gen/matplotlib.pyplot.hold.html deleted file mode 100644 index 5c2ab380d00..00000000000 --- a/api/_as_gen/matplotlib.pyplot.hold.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.hot.html b/api/_as_gen/matplotlib.pyplot.hot.html deleted file mode 100644 index 61ae47f7120..00000000000 --- a/api/_as_gen/matplotlib.pyplot.hot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.hsv.html b/api/_as_gen/matplotlib.pyplot.hsv.html deleted file mode 100644 index 2a504ea3db6..00000000000 --- a/api/_as_gen/matplotlib.pyplot.hsv.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.html b/api/_as_gen/matplotlib.pyplot.html deleted file mode 100644 index cab3cefe235..00000000000 --- a/api/_as_gen/matplotlib.pyplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.imread.html b/api/_as_gen/matplotlib.pyplot.imread.html deleted file mode 100644 index 65923cb4c0b..00000000000 --- a/api/_as_gen/matplotlib.pyplot.imread.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.imsave.html b/api/_as_gen/matplotlib.pyplot.imsave.html deleted file mode 100644 index 58e9476dfbc..00000000000 --- a/api/_as_gen/matplotlib.pyplot.imsave.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.imshow.html b/api/_as_gen/matplotlib.pyplot.imshow.html deleted file mode 100644 index 72485e1871c..00000000000 --- a/api/_as_gen/matplotlib.pyplot.imshow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.inferno.html b/api/_as_gen/matplotlib.pyplot.inferno.html deleted file mode 100644 index 156950c863c..00000000000 --- a/api/_as_gen/matplotlib.pyplot.inferno.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.install_repl_displayhook.html b/api/_as_gen/matplotlib.pyplot.install_repl_displayhook.html deleted file mode 100644 index 1fdb720893a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.install_repl_displayhook.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.ioff.html b/api/_as_gen/matplotlib.pyplot.ioff.html deleted file mode 100644 index c8e4dc79ad8..00000000000 --- a/api/_as_gen/matplotlib.pyplot.ioff.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.ion.html b/api/_as_gen/matplotlib.pyplot.ion.html deleted file mode 100644 index 7c4cf07faa9..00000000000 --- a/api/_as_gen/matplotlib.pyplot.ion.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.ishold.html b/api/_as_gen/matplotlib.pyplot.ishold.html deleted file mode 100644 index c98740e2b2f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.ishold.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.isinteractive.html b/api/_as_gen/matplotlib.pyplot.isinteractive.html deleted file mode 100644 index 0bc30649947..00000000000 --- a/api/_as_gen/matplotlib.pyplot.isinteractive.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.jet.html b/api/_as_gen/matplotlib.pyplot.jet.html deleted file mode 100644 index 2c1e410e18a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.jet.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.legend.html b/api/_as_gen/matplotlib.pyplot.legend.html deleted file mode 100644 index e345806974c..00000000000 --- a/api/_as_gen/matplotlib.pyplot.legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.locator_params.html b/api/_as_gen/matplotlib.pyplot.locator_params.html deleted file mode 100644 index 3091346c531..00000000000 --- a/api/_as_gen/matplotlib.pyplot.locator_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.loglog.html b/api/_as_gen/matplotlib.pyplot.loglog.html deleted file mode 100644 index 09fe8fdcdc3..00000000000 --- a/api/_as_gen/matplotlib.pyplot.loglog.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.magma.html b/api/_as_gen/matplotlib.pyplot.magma.html deleted file mode 100644 index 80833bd443e..00000000000 --- a/api/_as_gen/matplotlib.pyplot.magma.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.magnitude_spectrum.html b/api/_as_gen/matplotlib.pyplot.magnitude_spectrum.html deleted file mode 100644 index 105d5d0950b..00000000000 --- a/api/_as_gen/matplotlib.pyplot.magnitude_spectrum.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.margins.html b/api/_as_gen/matplotlib.pyplot.margins.html deleted file mode 100644 index 4847f4fcdfd..00000000000 --- a/api/_as_gen/matplotlib.pyplot.margins.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.matshow.html b/api/_as_gen/matplotlib.pyplot.matshow.html deleted file mode 100644 index 70b83c87abc..00000000000 --- a/api/_as_gen/matplotlib.pyplot.matshow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.minorticks_off.html b/api/_as_gen/matplotlib.pyplot.minorticks_off.html deleted file mode 100644 index a6dadcd1b2f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.minorticks_off.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.minorticks_on.html b/api/_as_gen/matplotlib.pyplot.minorticks_on.html deleted file mode 100644 index cbbd7305830..00000000000 --- a/api/_as_gen/matplotlib.pyplot.minorticks_on.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.new_figure_manager.html b/api/_as_gen/matplotlib.pyplot.new_figure_manager.html deleted file mode 100644 index 16d341e651f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.new_figure_manager.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.nipy_spectral.html b/api/_as_gen/matplotlib.pyplot.nipy_spectral.html deleted file mode 100644 index a6cb3ed4167..00000000000 --- a/api/_as_gen/matplotlib.pyplot.nipy_spectral.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.over.html b/api/_as_gen/matplotlib.pyplot.over.html deleted file mode 100644 index e14f96f6ff9..00000000000 --- a/api/_as_gen/matplotlib.pyplot.over.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.pause.html b/api/_as_gen/matplotlib.pyplot.pause.html deleted file mode 100644 index b032071b2b9..00000000000 --- a/api/_as_gen/matplotlib.pyplot.pause.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.pcolor.html b/api/_as_gen/matplotlib.pyplot.pcolor.html deleted file mode 100644 index 2f5050bff1a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.pcolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.pcolormesh.html b/api/_as_gen/matplotlib.pyplot.pcolormesh.html deleted file mode 100644 index 1efc5b5fdc2..00000000000 --- a/api/_as_gen/matplotlib.pyplot.pcolormesh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.phase_spectrum.html b/api/_as_gen/matplotlib.pyplot.phase_spectrum.html deleted file mode 100644 index 3be2dbdeadc..00000000000 --- a/api/_as_gen/matplotlib.pyplot.phase_spectrum.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.pie.html b/api/_as_gen/matplotlib.pyplot.pie.html deleted file mode 100644 index c8c3961b7a8..00000000000 --- a/api/_as_gen/matplotlib.pyplot.pie.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.pink.html b/api/_as_gen/matplotlib.pyplot.pink.html deleted file mode 100644 index c40e86d74ba..00000000000 --- a/api/_as_gen/matplotlib.pyplot.pink.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.plasma.html b/api/_as_gen/matplotlib.pyplot.plasma.html deleted file mode 100644 index 84e3be38d67..00000000000 --- a/api/_as_gen/matplotlib.pyplot.plasma.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.plot.html b/api/_as_gen/matplotlib.pyplot.plot.html deleted file mode 100644 index 7d8074b78c3..00000000000 --- a/api/_as_gen/matplotlib.pyplot.plot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.plot_date.html b/api/_as_gen/matplotlib.pyplot.plot_date.html deleted file mode 100644 index 66f2e53bc78..00000000000 --- a/api/_as_gen/matplotlib.pyplot.plot_date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.plotfile.html b/api/_as_gen/matplotlib.pyplot.plotfile.html deleted file mode 100644 index 620c23faf48..00000000000 --- a/api/_as_gen/matplotlib.pyplot.plotfile.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.polar.html b/api/_as_gen/matplotlib.pyplot.polar.html deleted file mode 100644 index 9ef791cd491..00000000000 --- a/api/_as_gen/matplotlib.pyplot.polar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.prism.html b/api/_as_gen/matplotlib.pyplot.prism.html deleted file mode 100644 index 9575e3652f5..00000000000 --- a/api/_as_gen/matplotlib.pyplot.prism.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.psd.html b/api/_as_gen/matplotlib.pyplot.psd.html deleted file mode 100644 index 369c5931528..00000000000 --- a/api/_as_gen/matplotlib.pyplot.psd.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.quiver.html b/api/_as_gen/matplotlib.pyplot.quiver.html deleted file mode 100644 index cc3e595c6d1..00000000000 --- a/api/_as_gen/matplotlib.pyplot.quiver.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.quiverkey.html b/api/_as_gen/matplotlib.pyplot.quiverkey.html deleted file mode 100644 index e8a60165713..00000000000 --- a/api/_as_gen/matplotlib.pyplot.quiverkey.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.rc.html b/api/_as_gen/matplotlib.pyplot.rc.html deleted file mode 100644 index 082d056a86a..00000000000 --- a/api/_as_gen/matplotlib.pyplot.rc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.rc_context.html b/api/_as_gen/matplotlib.pyplot.rc_context.html deleted file mode 100644 index 66f4eddb7e2..00000000000 --- a/api/_as_gen/matplotlib.pyplot.rc_context.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.rcdefaults.html b/api/_as_gen/matplotlib.pyplot.rcdefaults.html deleted file mode 100644 index 67a74fb856d..00000000000 --- a/api/_as_gen/matplotlib.pyplot.rcdefaults.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.rgrids.html b/api/_as_gen/matplotlib.pyplot.rgrids.html deleted file mode 100644 index 1f7e77ae671..00000000000 --- a/api/_as_gen/matplotlib.pyplot.rgrids.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.savefig.html b/api/_as_gen/matplotlib.pyplot.savefig.html deleted file mode 100644 index 5061187c137..00000000000 --- a/api/_as_gen/matplotlib.pyplot.savefig.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.sca.html b/api/_as_gen/matplotlib.pyplot.sca.html deleted file mode 100644 index 20c153b0c03..00000000000 --- a/api/_as_gen/matplotlib.pyplot.sca.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.scatter.html b/api/_as_gen/matplotlib.pyplot.scatter.html deleted file mode 100644 index 66fbc7642d1..00000000000 --- a/api/_as_gen/matplotlib.pyplot.scatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.sci.html b/api/_as_gen/matplotlib.pyplot.sci.html deleted file mode 100644 index b5efda71463..00000000000 --- a/api/_as_gen/matplotlib.pyplot.sci.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.semilogx.html b/api/_as_gen/matplotlib.pyplot.semilogx.html deleted file mode 100644 index 09bba5a117b..00000000000 --- a/api/_as_gen/matplotlib.pyplot.semilogx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.semilogy.html b/api/_as_gen/matplotlib.pyplot.semilogy.html deleted file mode 100644 index 01d6f0d7e55..00000000000 --- a/api/_as_gen/matplotlib.pyplot.semilogy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.set_cmap.html b/api/_as_gen/matplotlib.pyplot.set_cmap.html deleted file mode 100644 index 9ad63dc5d24..00000000000 --- a/api/_as_gen/matplotlib.pyplot.set_cmap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.set_loglevel.html b/api/_as_gen/matplotlib.pyplot.set_loglevel.html deleted file mode 100644 index 7abdc90da1e..00000000000 --- a/api/_as_gen/matplotlib.pyplot.set_loglevel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.setp.html b/api/_as_gen/matplotlib.pyplot.setp.html deleted file mode 100644 index 1e42fa37c99..00000000000 --- a/api/_as_gen/matplotlib.pyplot.setp.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.show.html b/api/_as_gen/matplotlib.pyplot.show.html deleted file mode 100644 index b2c3ffc9b72..00000000000 --- a/api/_as_gen/matplotlib.pyplot.show.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.specgram.html b/api/_as_gen/matplotlib.pyplot.specgram.html deleted file mode 100644 index 93e13e577ea..00000000000 --- a/api/_as_gen/matplotlib.pyplot.specgram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.spectral.html b/api/_as_gen/matplotlib.pyplot.spectral.html deleted file mode 100644 index d15bd37be9e..00000000000 --- a/api/_as_gen/matplotlib.pyplot.spectral.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.spring.html b/api/_as_gen/matplotlib.pyplot.spring.html deleted file mode 100644 index 249e90e17a5..00000000000 --- a/api/_as_gen/matplotlib.pyplot.spring.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.spy.html b/api/_as_gen/matplotlib.pyplot.spy.html deleted file mode 100644 index 6eb34d58def..00000000000 --- a/api/_as_gen/matplotlib.pyplot.spy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.stackplot.html b/api/_as_gen/matplotlib.pyplot.stackplot.html deleted file mode 100644 index 230a25be5d1..00000000000 --- a/api/_as_gen/matplotlib.pyplot.stackplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.stairs.html b/api/_as_gen/matplotlib.pyplot.stairs.html deleted file mode 100644 index c9cf5403457..00000000000 --- a/api/_as_gen/matplotlib.pyplot.stairs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.stem.html b/api/_as_gen/matplotlib.pyplot.stem.html deleted file mode 100644 index 9d15abbd2c7..00000000000 --- a/api/_as_gen/matplotlib.pyplot.stem.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.step.html b/api/_as_gen/matplotlib.pyplot.step.html deleted file mode 100644 index 6fb372ae63d..00000000000 --- a/api/_as_gen/matplotlib.pyplot.step.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.streamplot.html b/api/_as_gen/matplotlib.pyplot.streamplot.html deleted file mode 100644 index 3ee8d450eaf..00000000000 --- a/api/_as_gen/matplotlib.pyplot.streamplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.subplot.html b/api/_as_gen/matplotlib.pyplot.subplot.html deleted file mode 100644 index ecafe6b7715..00000000000 --- a/api/_as_gen/matplotlib.pyplot.subplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.subplot2grid.html b/api/_as_gen/matplotlib.pyplot.subplot2grid.html deleted file mode 100644 index 950e97bd360..00000000000 --- a/api/_as_gen/matplotlib.pyplot.subplot2grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.subplot_mosaic.html b/api/_as_gen/matplotlib.pyplot.subplot_mosaic.html deleted file mode 100644 index 47e3665ea97..00000000000 --- a/api/_as_gen/matplotlib.pyplot.subplot_mosaic.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.subplot_tool.html b/api/_as_gen/matplotlib.pyplot.subplot_tool.html deleted file mode 100644 index ee9bb9645e1..00000000000 --- a/api/_as_gen/matplotlib.pyplot.subplot_tool.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.subplots.html b/api/_as_gen/matplotlib.pyplot.subplots.html deleted file mode 100644 index 21b7cddfbbc..00000000000 --- a/api/_as_gen/matplotlib.pyplot.subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.subplots_adjust.html b/api/_as_gen/matplotlib.pyplot.subplots_adjust.html deleted file mode 100644 index 86b847d84af..00000000000 --- a/api/_as_gen/matplotlib.pyplot.subplots_adjust.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.summer.html b/api/_as_gen/matplotlib.pyplot.summer.html deleted file mode 100644 index f542fc6befc..00000000000 --- a/api/_as_gen/matplotlib.pyplot.summer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.suptitle.html b/api/_as_gen/matplotlib.pyplot.suptitle.html deleted file mode 100644 index d3d887df619..00000000000 --- a/api/_as_gen/matplotlib.pyplot.suptitle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.switch_backend.html b/api/_as_gen/matplotlib.pyplot.switch_backend.html deleted file mode 100644 index b56dd4666c9..00000000000 --- a/api/_as_gen/matplotlib.pyplot.switch_backend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.table.html b/api/_as_gen/matplotlib.pyplot.table.html deleted file mode 100644 index d4b43c540c5..00000000000 --- a/api/_as_gen/matplotlib.pyplot.table.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.text.html b/api/_as_gen/matplotlib.pyplot.text.html deleted file mode 100644 index cb8537070aa..00000000000 --- a/api/_as_gen/matplotlib.pyplot.text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.thetagrids.html b/api/_as_gen/matplotlib.pyplot.thetagrids.html deleted file mode 100644 index cdc7e43e461..00000000000 --- a/api/_as_gen/matplotlib.pyplot.thetagrids.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.tick_params.html b/api/_as_gen/matplotlib.pyplot.tick_params.html deleted file mode 100644 index 142e9c0fb4f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.tick_params.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.ticklabel_format.html b/api/_as_gen/matplotlib.pyplot.ticklabel_format.html deleted file mode 100644 index 4d6da514615..00000000000 --- a/api/_as_gen/matplotlib.pyplot.ticklabel_format.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.tight_layout.html b/api/_as_gen/matplotlib.pyplot.tight_layout.html deleted file mode 100644 index 4618ac5ac03..00000000000 --- a/api/_as_gen/matplotlib.pyplot.tight_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.title.html b/api/_as_gen/matplotlib.pyplot.title.html deleted file mode 100644 index 8dc0432402c..00000000000 --- a/api/_as_gen/matplotlib.pyplot.title.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.tricontour.html b/api/_as_gen/matplotlib.pyplot.tricontour.html deleted file mode 100644 index 36fd64367bf..00000000000 --- a/api/_as_gen/matplotlib.pyplot.tricontour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.tricontourf.html b/api/_as_gen/matplotlib.pyplot.tricontourf.html deleted file mode 100644 index 1c11eabc81f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.tricontourf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.tripcolor.html b/api/_as_gen/matplotlib.pyplot.tripcolor.html deleted file mode 100644 index 82fe3e08109..00000000000 --- a/api/_as_gen/matplotlib.pyplot.tripcolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.triplot.html b/api/_as_gen/matplotlib.pyplot.triplot.html deleted file mode 100644 index 03652f511bb..00000000000 --- a/api/_as_gen/matplotlib.pyplot.triplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.twinx.html b/api/_as_gen/matplotlib.pyplot.twinx.html deleted file mode 100644 index 3ad8f560cad..00000000000 --- a/api/_as_gen/matplotlib.pyplot.twinx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.twiny.html b/api/_as_gen/matplotlib.pyplot.twiny.html deleted file mode 100644 index 2eba2b8ac9f..00000000000 --- a/api/_as_gen/matplotlib.pyplot.twiny.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.uninstall_repl_displayhook.html b/api/_as_gen/matplotlib.pyplot.uninstall_repl_displayhook.html deleted file mode 100644 index 0b5faa11ed7..00000000000 --- a/api/_as_gen/matplotlib.pyplot.uninstall_repl_displayhook.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.violinplot.html b/api/_as_gen/matplotlib.pyplot.violinplot.html deleted file mode 100644 index dd5e830f64e..00000000000 --- a/api/_as_gen/matplotlib.pyplot.violinplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.viridis.html b/api/_as_gen/matplotlib.pyplot.viridis.html deleted file mode 100644 index 189913d3be5..00000000000 --- a/api/_as_gen/matplotlib.pyplot.viridis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.vlines.html b/api/_as_gen/matplotlib.pyplot.vlines.html deleted file mode 100644 index 8b058715385..00000000000 --- a/api/_as_gen/matplotlib.pyplot.vlines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.waitforbuttonpress.html b/api/_as_gen/matplotlib.pyplot.waitforbuttonpress.html deleted file mode 100644 index 96953fac8ce..00000000000 --- a/api/_as_gen/matplotlib.pyplot.waitforbuttonpress.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.winter.html b/api/_as_gen/matplotlib.pyplot.winter.html deleted file mode 100644 index 1420a3ec890..00000000000 --- a/api/_as_gen/matplotlib.pyplot.winter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.xcorr.html b/api/_as_gen/matplotlib.pyplot.xcorr.html deleted file mode 100644 index 96ae814f9f0..00000000000 --- a/api/_as_gen/matplotlib.pyplot.xcorr.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.xkcd.html b/api/_as_gen/matplotlib.pyplot.xkcd.html deleted file mode 100644 index bfdbec6f012..00000000000 --- a/api/_as_gen/matplotlib.pyplot.xkcd.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.xlabel.html b/api/_as_gen/matplotlib.pyplot.xlabel.html deleted file mode 100644 index c478326f7dd..00000000000 --- a/api/_as_gen/matplotlib.pyplot.xlabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.xlim.html b/api/_as_gen/matplotlib.pyplot.xlim.html deleted file mode 100644 index 7d7d6465c13..00000000000 --- a/api/_as_gen/matplotlib.pyplot.xlim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.xscale.html b/api/_as_gen/matplotlib.pyplot.xscale.html deleted file mode 100644 index 9d8fe60058b..00000000000 --- a/api/_as_gen/matplotlib.pyplot.xscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.xticks.html b/api/_as_gen/matplotlib.pyplot.xticks.html deleted file mode 100644 index a091f410e7d..00000000000 --- a/api/_as_gen/matplotlib.pyplot.xticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.ylabel.html b/api/_as_gen/matplotlib.pyplot.ylabel.html deleted file mode 100644 index 0ae1296afe1..00000000000 --- a/api/_as_gen/matplotlib.pyplot.ylabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.ylim.html b/api/_as_gen/matplotlib.pyplot.ylim.html deleted file mode 100644 index a75aab184fd..00000000000 --- a/api/_as_gen/matplotlib.pyplot.ylim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.yscale.html b/api/_as_gen/matplotlib.pyplot.yscale.html deleted file mode 100644 index f01ad526d73..00000000000 --- a/api/_as_gen/matplotlib.pyplot.yscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.pyplot.yticks.html b/api/_as_gen/matplotlib.pyplot.yticks.html deleted file mode 100644 index 38b2d633c20..00000000000 --- a/api/_as_gen/matplotlib.pyplot.yticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.quiver.Barbs.html b/api/_as_gen/matplotlib.quiver.Barbs.html deleted file mode 100644 index 3e30dfc41ac..00000000000 --- a/api/_as_gen/matplotlib.quiver.Barbs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.quiver.Quiver.html b/api/_as_gen/matplotlib.quiver.Quiver.html deleted file mode 100644 index bae2c28e055..00000000000 --- a/api/_as_gen/matplotlib.quiver.Quiver.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/matplotlib.quiver.QuiverKey.html b/api/_as_gen/matplotlib.quiver.QuiverKey.html deleted file mode 100644 index 7a86f64500c..00000000000 --- a/api/_as_gen/matplotlib.quiver.QuiverKey.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox.html b/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox.html deleted file mode 100644 index b07713d3fab..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows.html b/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows.html deleted file mode 100644 index 4d1f3867ab6..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDrawingArea.html b/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDrawingArea.html deleted file mode 100644 index 9e2e2dfd0d1..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredDrawingArea.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse.html b/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse.html deleted file mode 100644 index c4a4dcad691..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar.html b/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar.html deleted file mode 100644 index abe3f9998b4..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.html b/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.html deleted file mode 100644 index e8d9cf4f30c..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.anchored_artists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Axes.html deleted file mode 100644 index 09989d2526f..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesDivider.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesDivider.html deleted file mode 100644 index c8048f5edcb..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesDivider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesLocator.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesLocator.html deleted file mode 100644 index 3ea3e0a5cb4..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.AxesLocator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Divider.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Divider.html deleted file mode 100644 index bc66fef0c98..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.Divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.HBoxDivider.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.HBoxDivider.html deleted file mode 100644 index a6787b32894..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.HBoxDivider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxes.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxes.html deleted file mode 100644 index 2b42703d292..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxesBase.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxesBase.html deleted file mode 100644 index c2ea62ec0db..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.LocatableAxesBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.SubplotDivider.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.SubplotDivider.html deleted file mode 100644 index dbfbee57702..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.SubplotDivider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.VBoxDivider.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.VBoxDivider.html deleted file mode 100644 index d7363f36648..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.VBoxDivider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.html deleted file mode 100644 index 2a251065a6f..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.locatable_axes_factory.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.locatable_axes_factory.html deleted file mode 100644 index c48d3ed6a1a..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.locatable_axes_factory.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_area_auto_adjustable.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_area_auto_adjustable.html deleted file mode 100644 index bed188104b3..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_area_auto_adjustable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_locatable.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_locatable.html deleted file mode 100644 index 65a05716467..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_divider.make_axes_locatable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.AxesGrid.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.AxesGrid.html deleted file mode 100644 index b868a911349..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.AxesGrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxes.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxes.html deleted file mode 100644 index 75e3f3dbcb3..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxesBase.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxesBase.html deleted file mode 100644 index a91a1f7d542..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.CbarAxesBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.Grid.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.Grid.html deleted file mode 100644 index 5c6b7fd7c5b..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.Grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.ImageGrid.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.ImageGrid.html deleted file mode 100644 index c497515c7fb..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.ImageGrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.html deleted file mode 100644 index 8925115a82b..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.html deleted file mode 100644 index d7a16deedee..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxesBase.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxesBase.html deleted file mode 100644 index 4c4db29a35f..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.RGBAxesBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.html deleted file mode 100644 index dc93717ef54..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.imshow_rgb.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.imshow_rgb.html deleted file mode 100644 index 355f2e8e3ca..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.imshow_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes.html deleted file mode 100644 index 4967c6cd9df..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Add.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Add.html deleted file mode 100644 index 070fe8863be..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Add.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AddList.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AddList.html deleted file mode 100644 index 6734cf39a57..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AddList.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesX.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesX.html deleted file mode 100644 index 0fa9ae4b5fd..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesX.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesY.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesY.html deleted file mode 100644 index f77093d1924..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.AxesY.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fixed.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fixed.html deleted file mode 100644 index bede9285c30..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fixed.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fraction.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fraction.html deleted file mode 100644 index cb83c5a64ed..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Fraction.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.html deleted file mode 100644 index f13576b3de6..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxExtent.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxExtent.html deleted file mode 100644 index 09542cdb417..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxExtent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxHeight.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxHeight.html deleted file mode 100644 index 32250962099..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxHeight.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxWidth.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxWidth.html deleted file mode 100644 index 1c35d2d064a..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.MaxWidth.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Padded.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Padded.html deleted file mode 100644 index dc69759ac1b..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Padded.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scalable.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scalable.html deleted file mode 100644 index 9533f599d65..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scalable.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scaled.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scaled.html deleted file mode 100644 index 40ef31449d8..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.Scaled.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.html deleted file mode 100644 index 2f0f560258c..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.from_any.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.from_any.html deleted file mode 100644 index c67012f8480..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.from_any.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.html b/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.html deleted file mode 100644 index 88ce5a9ac8d..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.axes_size.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.colorbar.html b/api/_as_gen/mpl_toolkits.axes_grid1.colorbar.html deleted file mode 100644 index 6c03fdf73fd..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.html b/api/_as_gen/mpl_toolkits.axes_grid1.html deleted file mode 100644 index 2b0c63ce1ab..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.html deleted file mode 100644 index 102200eb43e..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.html deleted file mode 100644 index 249b3740a3b..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.html deleted file mode 100644 index efc9bba7523..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnector.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnector.html deleted file mode 100644 index ea2cc667cf9..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.html deleted file mode 100644 index 64c4d7a4f96..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxPatch.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxPatch.html deleted file mode 100644 index 503b959dfc0..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.BboxPatch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.InsetPosition.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.InsetPosition.html deleted file mode 100644 index ef98f4badee..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.InsetPosition.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.html deleted file mode 100644 index 4767273f984..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.html deleted file mode 100644 index 85c327b3dbb..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.inset_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.mark_inset.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.mark_inset.html deleted file mode 100644 index 40201e170e5..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.mark_inset.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes.html deleted file mode 100644 index e30229d8975..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.Axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.Axes.html deleted file mode 100644 index 566c582e600..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.Axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.html b/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.html deleted file mode 100644 index d1c554c506e..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.html b/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.html deleted file mode 100644 index b8d82d80623..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.html deleted file mode 100644 index 0dd383f18d3..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.mpl_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxes.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxes.html deleted file mode 100644 index dc452615c3b..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.html deleted file mode 100644 index 85d30b56b67..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes.html deleted file mode 100644 index f62ff81e233..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans.html deleted file mode 100644 index d41ca5a36bf..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.html deleted file mode 100644 index a5cdbcfdbaf..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.html deleted file mode 100644 index 3d288b06741..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes.html deleted file mode 100644 index 10e0bebe2dc..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory.html deleted file mode 100644 index 1cd3b18279a..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot.html deleted file mode 100644 index c6b9659a51e..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory.html deleted file mode 100644 index f9a093d6bce..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.html deleted file mode 100644 index 230ea673af2..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory.html deleted file mode 100644 index 33e736dd5bf..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory.html b/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory.html deleted file mode 100644 index c2ac6f9116f..00000000000 --- a/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.ExtremeFinderCycle.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.ExtremeFinderCycle.html deleted file mode 100644 index 5ee0cd3fd31..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.ExtremeFinderCycle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterDMS.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterDMS.html deleted file mode 100644 index 5b742b3efd0..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterDMS.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterHMS.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterHMS.html deleted file mode 100644 index d31f1f07ca2..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.FormatterHMS.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorBase.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorBase.html deleted file mode 100644 index 98d4d27a183..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorD.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorD.html deleted file mode 100644 index 7a505a174c5..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorD.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDM.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDM.html deleted file mode 100644 index 5351eebbabb..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDM.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDMS.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDMS.html deleted file mode 100644 index 52dd7ae8e3a..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorDMS.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorH.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorH.html deleted file mode 100644 index b013f23aaa9..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorH.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHM.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHM.html deleted file mode 100644 index a67f031ce2e..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHM.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHMS.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHMS.html deleted file mode 100644 index 119e533823a..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.LocatorHMS.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.html deleted file mode 100644 index 7d3a65ce722..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step.html deleted file mode 100644 index 741fc4c3cd6..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step24.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step24.html deleted file mode 100644 index 93124a0b404..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step24.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step360.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step360.html deleted file mode 100644 index fd8803399a7..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step360.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_degree.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_degree.html deleted file mode 100644 index b1b362bda7b..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_degree.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_hour.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_hour.html deleted file mode 100644 index d5aa123da6b..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_hour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_sub.html b/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_sub.html deleted file mode 100644 index 254f9b8975c..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.angle_helper.select_step_sub.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_divider.Axes.html b/api/_as_gen/mpl_toolkits.axisartist.axes_divider.Axes.html deleted file mode 100644 index 1103b4f7cf6..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_divider.Axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_divider.LocatableAxes.html b/api/_as_gen/mpl_toolkits.axisartist.axes_divider.LocatableAxes.html deleted file mode 100644 index 2c558a9e9ef..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_divider.LocatableAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_divider.html b/api/_as_gen/mpl_toolkits.axisartist.axes_divider.html deleted file mode 100644 index ec0b80a1a4a..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.AxesGrid.html b/api/_as_gen/mpl_toolkits.axisartist.axes_grid.AxesGrid.html deleted file mode 100644 index 53ea8978ccb..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.AxesGrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.CbarAxes.html b/api/_as_gen/mpl_toolkits.axisartist.axes_grid.CbarAxes.html deleted file mode 100644 index b77b079ed5a..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.CbarAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.Grid.html b/api/_as_gen/mpl_toolkits.axisartist.axes_grid.Grid.html deleted file mode 100644 index bbf63dd8960..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.Grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.ImageGrid.html b/api/_as_gen/mpl_toolkits.axisartist.axes_grid.ImageGrid.html deleted file mode 100644 index 0b151495307..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.ImageGrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.html b/api/_as_gen/mpl_toolkits.axisartist.axes_grid.html deleted file mode 100644 index baf76e3a7de..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.RGBAxes.html b/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.RGBAxes.html deleted file mode 100644 index a6a0b8cbb3c..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.RGBAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.html b/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.html deleted file mode 100644 index fff0bbe8308..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axes_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AttributeCopier.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AttributeCopier.html deleted file mode 100644 index 3606f23825c..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AttributeCopier.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisArtist.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisArtist.html deleted file mode 100644 index f39f28c3fbc..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisArtist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.html deleted file mode 100644 index b2f72295a14..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.BezierPath.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.BezierPath.html deleted file mode 100644 index 7c8e61f73bf..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.BezierPath.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.GridlinesCollection.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.GridlinesCollection.html deleted file mode 100644 index e79c2f31033..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.GridlinesCollection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.LabelBase.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.LabelBase.html deleted file mode 100644 index 1c54aa601df..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.LabelBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.TickLabels.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.TickLabels.html deleted file mode 100644 index 9a77fc50197..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.TickLabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.Ticks.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.Ticks.html deleted file mode 100644 index 86888e41fda..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.Ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.html b/api/_as_gen/mpl_toolkits.axisartist.axis_artist.html deleted file mode 100644 index 8929c84811b..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axis_artist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axisline_style.AxislineStyle.html b/api/_as_gen/mpl_toolkits.axisartist.axisline_style.AxislineStyle.html deleted file mode 100644 index fb4095b6524..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axisline_style.AxislineStyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axisline_style.html b/api/_as_gen/mpl_toolkits.axisartist.axisline_style.html deleted file mode 100644 index c2846c55c90..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axisline_style.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.Axes.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.Axes.html deleted file mode 100644 index 5cdb9454810..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.Axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.AxesZero.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.AxesZero.html deleted file mode 100644 index 6cc3fc8e399..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.AxesZero.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelper.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelper.html deleted file mode 100644 index 9a3d4d0c2d0..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelperRectlinear.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelperRectlinear.html deleted file mode 100644 index 6ca0861a260..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.AxisArtistHelperRectlinear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperBase.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperBase.html deleted file mode 100644 index 8c394f391cb..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperRectlinear.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperRectlinear.html deleted file mode 100644 index 867d861381c..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.GridHelperRectlinear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.SimpleChainedObjects.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.SimpleChainedObjects.html deleted file mode 100644 index 597a770532b..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.SimpleChainedObjects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.axislines.html b/api/_as_gen/mpl_toolkits.axisartist.axislines.html deleted file mode 100644 index d33fc3bd64b..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.axislines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.clip_path.atan2.html b/api/_as_gen/mpl_toolkits.axisartist.clip_path.atan2.html deleted file mode 100644 index 11c1580f32f..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.clip_path.atan2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip.html b/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip.html deleted file mode 100644 index db8ae25c4d8..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip_line_to_rect.html b/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip_line_to_rect.html deleted file mode 100644 index 36eca587ba4..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.clip_path.clip_line_to_rect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.clip_path.html b/api/_as_gen/mpl_toolkits.axisartist.clip_path.html deleted file mode 100644 index 4490270afc1..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.ExtremeFinderFixed.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.ExtremeFinderFixed.html deleted file mode 100644 index 79adc87852e..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.ExtremeFinderFixed.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FixedAxisArtistHelper.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FixedAxisArtistHelper.html deleted file mode 100644 index f7ba0c8b9eb..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FixedAxisArtistHelper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxes.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxes.html deleted file mode 100644 index 67621d4a349..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxesBase.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxesBase.html deleted file mode 100644 index 91009979028..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxesBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxisArtistHelper.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxisArtistHelper.html deleted file mode 100644 index d5dd3dc579b..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.FloatingAxisArtistHelper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.GridHelperCurveLinear.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.GridHelperCurveLinear.html deleted file mode 100644 index f7347420b0a..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.GridHelperCurveLinear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.floatingaxes_class_factory.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.floatingaxes_class_factory.html deleted file mode 100644 index 58348b3029e..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.floatingaxes_class_factory.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.html b/api/_as_gen/mpl_toolkits.axisartist.floating_axes.html deleted file mode 100644 index e91cadce724..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.floating_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.DictFormatter.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.DictFormatter.html deleted file mode 100644 index 263f3dc6861..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.DictFormatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.ExtremeFinderSimple.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.ExtremeFinderSimple.html deleted file mode 100644 index 06bfa368eac..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.ExtremeFinderSimple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FixedLocator.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FixedLocator.html deleted file mode 100644 index 37188c03a0d..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FixedLocator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FormatterPrettyPrint.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FormatterPrettyPrint.html deleted file mode 100644 index 9f3545e6ed8..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.FormatterPrettyPrint.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinder.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinder.html deleted file mode 100644 index 68c62545931..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinderBase.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinderBase.html deleted file mode 100644 index ac60bfc989e..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.GridFinderBase.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.MaxNLocator.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.MaxNLocator.html deleted file mode 100644 index 80835e07b94..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.MaxNLocator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.html b/api/_as_gen/mpl_toolkits.axisartist.grid_finder.html deleted file mode 100644 index 2c2945824d9..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_finder.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper.html b/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper.html deleted file mode 100644 index 82b615c6ac5..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper.html b/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper.html deleted file mode 100644 index dc695370c3e..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.GridHelperCurveLinear.html b/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.GridHelperCurveLinear.html deleted file mode 100644 index 280fda225a6..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.GridHelperCurveLinear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.html b/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.html deleted file mode 100644 index 81f604a1e5e..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.grid_helper_curvelinear.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.html b/api/_as_gen/mpl_toolkits.axisartist.html deleted file mode 100644 index d90b00c1738..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.axisartist.parasite_axes.html b/api/_as_gen/mpl_toolkits.axisartist.parasite_axes.html deleted file mode 100644 index 4606a90ca6c..00000000000 --- a/api/_as_gen/mpl_toolkits.axisartist.parasite_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3D.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3D.html deleted file mode 100644 index 0a29e9df032..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.html deleted file mode 100644 index bb25fe60194..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Line3DCollection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3D.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3D.html deleted file mode 100644 index 461e8548550..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3DCollection.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3DCollection.html deleted file mode 100644 index b6d9a5ef821..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Patch3DCollection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Path3DCollection.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.Path3DCollection.html deleted file mode 100644 index d1e70e24d84..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Path3DCollection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.PathPatch3D.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.PathPatch3D.html deleted file mode 100644 index a09740bf4ab..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.PathPatch3D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Poly3DCollection.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.Poly3DCollection.html deleted file mode 100644 index 16b469283f6..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Poly3DCollection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.html deleted file mode 100644 index 4706624dded..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.Text3D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_colors.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_colors.html deleted file mode 100644 index fc158b9e1b8..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_colors.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_dir_vector.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_dir_vector.html deleted file mode 100644 index d94e7160f33..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_dir_vector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_patch_verts.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_patch_verts.html deleted file mode 100644 index 830467cf846..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.get_patch_verts.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.iscolor.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.iscolor.html deleted file mode 100644 index 375bccb156b..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.iscolor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.juggle_axes.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.juggle_axes.html deleted file mode 100644 index 313d86c9361..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.juggle_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_2d_to_3d.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_2d_to_3d.html deleted file mode 100644 index c8539993e67..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_2d_to_3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_collection_2d_to_3d.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_collection_2d_to_3d.html deleted file mode 100644 index 6de5c79abd3..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.line_collection_2d_to_3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_angle.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_angle.html deleted file mode 100644 index b6733c3880d..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_angle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_text_angle.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_text_angle.html deleted file mode 100644 index a1ee1243251..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.norm_text_angle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_2d_to_3d.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_2d_to_3d.html deleted file mode 100644 index 04fce8bd01c..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_2d_to_3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_collection_2d_to_3d.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_collection_2d_to_3d.html deleted file mode 100644 index d1c05c209cc..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.patch_collection_2d_to_3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment.html deleted file mode 100644 index 6d21745835c..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment_with_codes.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment_with_codes.html deleted file mode 100644 index 7a44ae7b74e..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.path_to_3d_segment_with_codes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.pathpatch_2d_to_3d.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.pathpatch_2d_to_3d.html deleted file mode 100644 index cc62b781818..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.pathpatch_2d_to_3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments.html deleted file mode 100644 index 6200ad6a11c..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments_with_codes.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments_with_codes.html deleted file mode 100644 index 0b293eefeca..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.paths_to_3d_segments_with_codes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.poly_collection_2d_to_3d.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.poly_collection_2d_to_3d.html deleted file mode 100644 index 1ae344bc87f..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.poly_collection_2d_to_3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.rotate_axes.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.rotate_axes.html deleted file mode 100644 index ded0d74bc8a..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.rotate_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.text_2d_to_3d.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.text_2d_to_3d.html deleted file mode 100644 index a86281530ee..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.text_2d_to_3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.art3d.zalpha.html b/api/_as_gen/mpl_toolkits.mplot3d.art3d.zalpha.html deleted file mode 100644 index 704ccf92285..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.art3d.zalpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.html b/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.html deleted file mode 100644 index 2275231e58f..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.axis3d.Axis.html b/api/_as_gen/mpl_toolkits.mplot3d.axis3d.Axis.html deleted file mode 100644 index dc49f705fe2..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.axis3d.Axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.inv_transform.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.inv_transform.html deleted file mode 100644 index 5c8db5ca5f0..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.inv_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d.html deleted file mode 100644 index d09a73132d9..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_dist.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_dist.html deleted file mode 100644 index 3573f36634a..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_dist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_seg_dist.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_seg_dist.html deleted file mode 100644 index 347c36e5fb1..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.line2d_seg_dist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.mod.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.mod.html deleted file mode 100644 index 60b92c2e276..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.mod.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.persp_transformation.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.persp_transformation.html deleted file mode 100644 index c111f611b69..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.persp_transformation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_points.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_points.html deleted file mode 100644 index 18793e73850..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_points.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_clip_points.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_clip_points.html deleted file mode 100644 index 6713807ddea..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_clip_points.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_points.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_points.html deleted file mode 100644 index 79d7eb06427..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_trans_points.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform.html deleted file mode 100644 index b76ea361ba4..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_clip.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_clip.html deleted file mode 100644 index 4b57731db1b..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_clip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec.html deleted file mode 100644 index 4f5344283d4..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec_clip.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec_clip.html deleted file mode 100644 index b3105ae1675..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.proj_transform_vec_clip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.rot_x.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.rot_x.html deleted file mode 100644 index 8330558608c..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.rot_x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.transform.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.transform.html deleted file mode 100644 index cbc17e5f521..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.vec_pad_ones.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.vec_pad_ones.html deleted file mode 100644 index 71d6e7d7d05..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.vec_pad_ones.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.view_transformation.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.view_transformation.html deleted file mode 100644 index 5d6f940b280..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.view_transformation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.world_transformation.html b/api/_as_gen/mpl_toolkits.mplot3d.proj3d.world_transformation.html deleted file mode 100644 index b1984c43515..00000000000 --- a/api/_as_gen/mpl_toolkits.mplot3d.proj3d.world_transformation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/_enums_api-1.pdf b/api/_enums_api-1.pdf deleted file mode 120000 index 3b0e5a81ac1..00000000000 --- a/api/_enums_api-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/api/_enums_api-1.pdf \ No newline at end of file diff --git a/api/_enums_api-1.png b/api/_enums_api-1.png deleted file mode 120000 index 7d603dc481c..00000000000 --- a/api/_enums_api-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/api/_enums_api-1.png \ No newline at end of file diff --git a/api/_enums_api-1.py b/api/_enums_api-1.py deleted file mode 120000 index 9c118eef1fa..00000000000 --- a/api/_enums_api-1.py +++ /dev/null @@ -1 +0,0 @@ -../stable/api/_enums_api-1.py \ No newline at end of file diff --git a/api/_enums_api-2.pdf b/api/_enums_api-2.pdf deleted file mode 120000 index e7673b57814..00000000000 --- a/api/_enums_api-2.pdf +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/api/_enums_api-2.pdf \ No newline at end of file diff --git a/api/_enums_api-2.png b/api/_enums_api-2.png deleted file mode 120000 index 0ac4adef745..00000000000 --- a/api/_enums_api-2.png +++ /dev/null @@ -1 +0,0 @@ -../stable/api/_enums_api-2.png \ No newline at end of file diff --git a/api/_enums_api-2.py b/api/_enums_api-2.py deleted file mode 120000 index 67e2235c82b..00000000000 --- a/api/_enums_api-2.py +++ /dev/null @@ -1 +0,0 @@ -../stable/api/_enums_api-2.py \ No newline at end of file diff --git a/api/_enums_api.html b/api/_enums_api.html deleted file mode 100644 index 65c353de543..00000000000 --- a/api/_enums_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/afm_api.html b/api/afm_api.html deleted file mode 100644 index 6a88ce59082..00000000000 --- a/api/afm_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/animation_api.html b/api/animation_api.html deleted file mode 100644 index 69a39742f76..00000000000 --- a/api/animation_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_changes-1.pdf b/api/api_changes-1.pdf deleted file mode 120000 index 555fd72db77..00000000000 --- a/api/api_changes-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/api/api_changes-1.pdf \ No newline at end of file diff --git a/api/api_changes-1.png b/api/api_changes-1.png deleted file mode 120000 index 999cc65c95a..00000000000 --- a/api/api_changes-1.png +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/api/api_changes-1.png \ No newline at end of file diff --git a/api/api_changes-1.py b/api/api_changes-1.py deleted file mode 120000 index 10e46241937..00000000000 --- a/api/api_changes-1.py +++ /dev/null @@ -1 +0,0 @@ -../3.2.2/api/api_changes-1.py \ No newline at end of file diff --git a/api/api_changes.html b/api/api_changes.html deleted file mode 100644 index f2b41881ab9..00000000000 --- a/api/api_changes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_changes_3.4/README.html b/api/api_changes_3.4/README.html deleted file mode 100644 index a4a75d09c11..00000000000 --- a/api/api_changes_3.4/README.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_changes_3.4/behaviour.html b/api/api_changes_3.4/behaviour.html deleted file mode 100644 index 1ec9b2a26b8..00000000000 --- a/api/api_changes_3.4/behaviour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_changes_3.4/deprecations.html b/api/api_changes_3.4/deprecations.html deleted file mode 100644 index 256ecd850cf..00000000000 --- a/api/api_changes_3.4/deprecations.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_changes_3.4/development.html b/api/api_changes_3.4/development.html deleted file mode 100644 index 22b7953645f..00000000000 --- a/api/api_changes_3.4/development.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_changes_3.4/removals.html b/api/api_changes_3.4/removals.html deleted file mode 100644 index aeaaac6a5e8..00000000000 --- a/api/api_changes_3.4/removals.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_changes_old.html b/api/api_changes_old.html deleted file mode 100644 index 43d55763840..00000000000 --- a/api/api_changes_old.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/api_overview.html b/api/api_overview.html deleted file mode 100644 index 882ec01bb81..00000000000 --- a/api/api_overview.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/artist_api.html b/api/artist_api.html deleted file mode 100644 index 28b41f7a82d..00000000000 --- a/api/artist_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/axes_api.html b/api/axes_api.html deleted file mode 100644 index dbd31a60213..00000000000 --- a/api/axes_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/axis_api.html b/api/axis_api.html deleted file mode 100644 index 2b54b196ce1..00000000000 --- a/api/axis_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_agg_api.html b/api/backend_agg_api.html deleted file mode 100644 index cc9d222361a..00000000000 --- a/api/backend_agg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_bases_api.html b/api/backend_bases_api.html deleted file mode 100644 index 1174f7fea79..00000000000 --- a/api/backend_bases_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_cairo_api.html b/api/backend_cairo_api.html deleted file mode 100644 index 95b10f1e1da..00000000000 --- a/api/backend_cairo_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_gtk3_api.html b/api/backend_gtk3_api.html deleted file mode 100644 index fe3a3b85455..00000000000 --- a/api/backend_gtk3_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_gtk3agg_api.html b/api/backend_gtk3agg_api.html deleted file mode 100644 index df89c3be1d5..00000000000 --- a/api/backend_gtk3agg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_gtk3cairo_api.html b/api/backend_gtk3cairo_api.html deleted file mode 100644 index ea81d93291b..00000000000 --- a/api/backend_gtk3cairo_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_gtk4_api.html b/api/backend_gtk4_api.html deleted file mode 100644 index 548244a4978..00000000000 --- a/api/backend_gtk4_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_gtkagg_api.html b/api/backend_gtkagg_api.html deleted file mode 100644 index 511ba8be6d7..00000000000 --- a/api/backend_gtkagg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_gtkcairo_api.html b/api/backend_gtkcairo_api.html deleted file mode 100644 index 83c3d6e20d3..00000000000 --- a/api/backend_gtkcairo_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_managers_api.html b/api/backend_managers_api.html deleted file mode 100644 index 3efe7efb33a..00000000000 --- a/api/backend_managers_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_mixed_api.html b/api/backend_mixed_api.html deleted file mode 100644 index 72bf3ca7e1c..00000000000 --- a/api/backend_mixed_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_nbagg_api.html b/api/backend_nbagg_api.html deleted file mode 100644 index 6ee9f440a32..00000000000 --- a/api/backend_nbagg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_pdf_api.html b/api/backend_pdf_api.html deleted file mode 100644 index 25eb825301d..00000000000 --- a/api/backend_pdf_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_pgf_api.html b/api/backend_pgf_api.html deleted file mode 100644 index 41b1ae29959..00000000000 --- a/api/backend_pgf_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_ps_api.html b/api/backend_ps_api.html deleted file mode 100644 index 0b2bd5710d4..00000000000 --- a/api/backend_ps_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_qt4agg_api.html b/api/backend_qt4agg_api.html deleted file mode 100644 index 13f938f7111..00000000000 --- a/api/backend_qt4agg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_qt4cairo_api.html b/api/backend_qt4cairo_api.html deleted file mode 100644 index 52e00a854f7..00000000000 --- a/api/backend_qt4cairo_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_qt5agg_api.html b/api/backend_qt5agg_api.html deleted file mode 100644 index 9dc8d843920..00000000000 --- a/api/backend_qt5agg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_qt5cairo_api.html b/api/backend_qt5cairo_api.html deleted file mode 100644 index eb3c7e21392..00000000000 --- a/api/backend_qt5cairo_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_qt_api.html b/api/backend_qt_api.html deleted file mode 100644 index 714b9e7d498..00000000000 --- a/api/backend_qt_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_svg_api.html b/api/backend_svg_api.html deleted file mode 100644 index bd265a17233..00000000000 --- a/api/backend_svg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_template_api.html b/api/backend_template_api.html deleted file mode 100644 index d0e3f72fb14..00000000000 --- a/api/backend_template_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_tk_api.html b/api/backend_tk_api.html deleted file mode 100644 index c45797885c2..00000000000 --- a/api/backend_tk_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_tkagg_api.html b/api/backend_tkagg_api.html deleted file mode 100644 index a129bb9af08..00000000000 --- a/api/backend_tkagg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_tools_api.html b/api/backend_tools_api.html deleted file mode 100644 index 7fe4fffb9ff..00000000000 --- a/api/backend_tools_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_webagg_api.html b/api/backend_webagg_api.html deleted file mode 100644 index ccce67c538e..00000000000 --- a/api/backend_webagg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_wx_api.html b/api/backend_wx_api.html deleted file mode 100644 index 05b9d07f8d0..00000000000 --- a/api/backend_wx_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/backend_wxagg_api.html b/api/backend_wxagg_api.html deleted file mode 100644 index 2fa2df07527..00000000000 --- a/api/backend_wxagg_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/bezier_api.html b/api/bezier_api.html deleted file mode 100644 index dcc1b6006ea..00000000000 --- a/api/bezier_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/blocking_input_api.html b/api/blocking_input_api.html deleted file mode 100644 index cb527d7884f..00000000000 --- a/api/blocking_input_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/category_api.html b/api/category_api.html deleted file mode 100644 index c485b88f9af..00000000000 --- a/api/category_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/cbook_api.html b/api/cbook_api.html deleted file mode 100644 index 1d8d9916f99..00000000000 --- a/api/cbook_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/cm_api.html b/api/cm_api.html deleted file mode 100644 index cd560453201..00000000000 --- a/api/cm_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/collections_api.html b/api/collections_api.html deleted file mode 100644 index 9ba45a9bedb..00000000000 --- a/api/collections_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/colorbar_api.html b/api/colorbar_api.html deleted file mode 100644 index 41c2f24492f..00000000000 --- a/api/colorbar_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/colors_api.html b/api/colors_api.html deleted file mode 100644 index 077fda44900..00000000000 --- a/api/colors_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/container_api.html b/api/container_api.html deleted file mode 100644 index 3f16b5a2cf2..00000000000 --- a/api/container_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/contour_api.html b/api/contour_api.html deleted file mode 100644 index 0cf465b8394..00000000000 --- a/api/contour_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/dates_api-1.pdf b/api/dates_api-1.pdf deleted file mode 120000 index b160f40219d..00000000000 --- a/api/dates_api-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/api/dates_api-1.pdf \ No newline at end of file diff --git a/api/dates_api-1.png b/api/dates_api-1.png deleted file mode 120000 index fe73c34503d..00000000000 --- a/api/dates_api-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/api/dates_api-1.png \ No newline at end of file diff --git a/api/dates_api-1.py b/api/dates_api-1.py deleted file mode 120000 index 08a3334d89c..00000000000 --- a/api/dates_api-1.py +++ /dev/null @@ -1 +0,0 @@ -../stable/api/dates_api-1.py \ No newline at end of file diff --git a/api/dates_api.html b/api/dates_api.html deleted file mode 100644 index 492a31b6570..00000000000 --- a/api/dates_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/docstring_api.html b/api/docstring_api.html deleted file mode 100644 index 01660274a50..00000000000 --- a/api/docstring_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/dviread.html b/api/dviread.html deleted file mode 100644 index cd0477eff1a..00000000000 --- a/api/dviread.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/figure_api.html b/api/figure_api.html deleted file mode 100644 index 93d2ff9ca46..00000000000 --- a/api/figure_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/finance_api.html b/api/finance_api.html deleted file mode 100644 index 7f95b99e864..00000000000 --- a/api/finance_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/font_manager_api.html b/api/font_manager_api.html deleted file mode 100644 index 6038e89f909..00000000000 --- a/api/font_manager_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/fontconfig_pattern_api.html b/api/fontconfig_pattern_api.html deleted file mode 100644 index 99f9a0735ac..00000000000 --- a/api/fontconfig_pattern_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/gridspec_api.html b/api/gridspec_api.html deleted file mode 100644 index 2b595d528c7..00000000000 --- a/api/gridspec_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/image_api.html b/api/image_api.html deleted file mode 100644 index f72254d4e45..00000000000 --- a/api/image_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/index-1.pdf b/api/index-1.pdf deleted file mode 120000 index 452a3c4a863..00000000000 --- a/api/index-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/api/index-1.pdf \ No newline at end of file diff --git a/api/index-1.png b/api/index-1.png deleted file mode 120000 index 165e2bd28c1..00000000000 --- a/api/index-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/api/index-1.png \ No newline at end of file diff --git a/api/index-1.py b/api/index-1.py deleted file mode 120000 index 3aa615cc0a2..00000000000 --- a/api/index-1.py +++ /dev/null @@ -1 +0,0 @@ -../stable/api/index-1.py \ No newline at end of file diff --git a/api/index.html b/api/index.html deleted file mode 100644 index 55fa4b293dd..00000000000 --- a/api/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/index_backend_api.html b/api/index_backend_api.html deleted file mode 100644 index 40b27f88394..00000000000 --- a/api/index_backend_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/legend_api.html b/api/legend_api.html deleted file mode 100644 index 618bc467da0..00000000000 --- a/api/legend_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/legend_handler_api.html b/api/legend_handler_api.html deleted file mode 100644 index 8ea0e6050d2..00000000000 --- a/api/legend_handler_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/lines_api.html b/api/lines_api.html deleted file mode 100644 index 4fc3fdc3544..00000000000 --- a/api/lines_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/markers_api.html b/api/markers_api.html deleted file mode 100644 index 5840e900719..00000000000 --- a/api/markers_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/mathtext_api.html b/api/mathtext_api.html deleted file mode 100644 index 54daadba927..00000000000 --- a/api/mathtext_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/matplotlib_configuration_api.html b/api/matplotlib_configuration_api.html deleted file mode 100644 index 5205421a1bd..00000000000 --- a/api/matplotlib_configuration_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/mlab_api.html b/api/mlab_api.html deleted file mode 100644 index ab769f8f0d9..00000000000 --- a/api/mlab_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes.html b/api/next_api_changes.html deleted file mode 100644 index 05fa39a9b20..00000000000 --- a/api/next_api_changes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes/2018-09-22-TH-win32InstalledFonts.html b/api/next_api_changes/2018-09-22-TH-win32InstalledFonts.html deleted file mode 100644 index d504e4c3eac..00000000000 --- a/api/next_api_changes/2018-09-22-TH-win32InstalledFonts.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes/2018-10-24-JMK.html b/api/next_api_changes/2018-10-24-JMK.html deleted file mode 100644 index 6c502b9dd02..00000000000 --- a/api/next_api_changes/2018-10-24-JMK.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes/README.html b/api/next_api_changes/README.html deleted file mode 100644 index e782fe79a13..00000000000 --- a/api/next_api_changes/README.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes/behavior/00001-ABC.html b/api/next_api_changes/behavior/00001-ABC.html deleted file mode 100644 index 9266c5fe646..00000000000 --- a/api/next_api_changes/behavior/00001-ABC.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes/deprecations/00001-ABC.html b/api/next_api_changes/deprecations/00001-ABC.html deleted file mode 100644 index edd2c454fbf..00000000000 --- a/api/next_api_changes/deprecations/00001-ABC.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes/development/00001-ABC.html b/api/next_api_changes/development/00001-ABC.html deleted file mode 100644 index 793a6f701d6..00000000000 --- a/api/next_api_changes/development/00001-ABC.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/next_api_changes/removals/00001-ABC.html b/api/next_api_changes/removals/00001-ABC.html deleted file mode 100644 index a6df6235cdb..00000000000 --- a/api/next_api_changes/removals/00001-ABC.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/offsetbox_api.html b/api/offsetbox_api.html deleted file mode 100644 index b03e06492d6..00000000000 --- a/api/offsetbox_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/patches_api.html b/api/patches_api.html deleted file mode 100644 index 71f44ac3360..00000000000 --- a/api/patches_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/path_api.html b/api/path_api.html deleted file mode 100644 index bf74c9c5f1c..00000000000 --- a/api/path_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/patheffects_api.html b/api/patheffects_api.html deleted file mode 100644 index 7395d6bd1f4..00000000000 --- a/api/patheffects_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.40.html b/api/prev_api_changes/api_changes_0.40.html deleted file mode 100644 index f33c592a5db..00000000000 --- a/api/prev_api_changes/api_changes_0.40.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.42.html b/api/prev_api_changes/api_changes_0.42.html deleted file mode 100644 index cb77ac648d5..00000000000 --- a/api/prev_api_changes/api_changes_0.42.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.50.html b/api/prev_api_changes/api_changes_0.50.html deleted file mode 100644 index f4ba720217a..00000000000 --- a/api/prev_api_changes/api_changes_0.50.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.54.3.html b/api/prev_api_changes/api_changes_0.54.3.html deleted file mode 100644 index 7f7358fe8fb..00000000000 --- a/api/prev_api_changes/api_changes_0.54.3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.54.html b/api/prev_api_changes/api_changes_0.54.html deleted file mode 100644 index 15398f05f1c..00000000000 --- a/api/prev_api_changes/api_changes_0.54.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.60.html b/api/prev_api_changes/api_changes_0.60.html deleted file mode 100644 index 767dfb0a041..00000000000 --- a/api/prev_api_changes/api_changes_0.60.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.61.html b/api/prev_api_changes/api_changes_0.61.html deleted file mode 100644 index c4218e56981..00000000000 --- a/api/prev_api_changes/api_changes_0.61.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.63.html b/api/prev_api_changes/api_changes_0.63.html deleted file mode 100644 index 1f122297c00..00000000000 --- a/api/prev_api_changes/api_changes_0.63.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.65.1.html b/api/prev_api_changes/api_changes_0.65.1.html deleted file mode 100644 index d1d0d92880a..00000000000 --- a/api/prev_api_changes/api_changes_0.65.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.65.html b/api/prev_api_changes/api_changes_0.65.html deleted file mode 100644 index 48d794e8914..00000000000 --- a/api/prev_api_changes/api_changes_0.65.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.70.html b/api/prev_api_changes/api_changes_0.70.html deleted file mode 100644 index 99732f77e6e..00000000000 --- a/api/prev_api_changes/api_changes_0.70.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.71.html b/api/prev_api_changes/api_changes_0.71.html deleted file mode 100644 index bee4904cbcf..00000000000 --- a/api/prev_api_changes/api_changes_0.71.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.72.html b/api/prev_api_changes/api_changes_0.72.html deleted file mode 100644 index 1041e57b84e..00000000000 --- a/api/prev_api_changes/api_changes_0.72.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.73.html b/api/prev_api_changes/api_changes_0.73.html deleted file mode 100644 index 3abe0678319..00000000000 --- a/api/prev_api_changes/api_changes_0.73.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.80.html b/api/prev_api_changes/api_changes_0.80.html deleted file mode 100644 index 52b8b6f5345..00000000000 --- a/api/prev_api_changes/api_changes_0.80.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.81.html b/api/prev_api_changes/api_changes_0.81.html deleted file mode 100644 index 5770a724d31..00000000000 --- a/api/prev_api_changes/api_changes_0.81.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.82.html b/api/prev_api_changes/api_changes_0.82.html deleted file mode 100644 index 37e9be826bb..00000000000 --- a/api/prev_api_changes/api_changes_0.82.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.83.html b/api/prev_api_changes/api_changes_0.83.html deleted file mode 100644 index b61311f06e8..00000000000 --- a/api/prev_api_changes/api_changes_0.83.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.84.html b/api/prev_api_changes/api_changes_0.84.html deleted file mode 100644 index 127fab4ab2d..00000000000 --- a/api/prev_api_changes/api_changes_0.84.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.85.html b/api/prev_api_changes/api_changes_0.85.html deleted file mode 100644 index f541a861808..00000000000 --- a/api/prev_api_changes/api_changes_0.85.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.86.html b/api/prev_api_changes/api_changes_0.86.html deleted file mode 100644 index 5678b8b7e1f..00000000000 --- a/api/prev_api_changes/api_changes_0.86.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.87.7.html b/api/prev_api_changes/api_changes_0.87.7.html deleted file mode 100644 index ab8010d272c..00000000000 --- a/api/prev_api_changes/api_changes_0.87.7.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.90.0.html b/api/prev_api_changes/api_changes_0.90.0.html deleted file mode 100644 index bd2cfd0f284..00000000000 --- a/api/prev_api_changes/api_changes_0.90.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.90.1.html b/api/prev_api_changes/api_changes_0.90.1.html deleted file mode 100644 index e5800b4bdac..00000000000 --- a/api/prev_api_changes/api_changes_0.90.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.91.0.html b/api/prev_api_changes/api_changes_0.91.0.html deleted file mode 100644 index 99e9b543d9a..00000000000 --- a/api/prev_api_changes/api_changes_0.91.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.91.2.html b/api/prev_api_changes/api_changes_0.91.2.html deleted file mode 100644 index cd617c49d7a..00000000000 --- a/api/prev_api_changes/api_changes_0.91.2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.98.0.html b/api/prev_api_changes/api_changes_0.98.0.html deleted file mode 100644 index 7d8c46caeb2..00000000000 --- a/api/prev_api_changes/api_changes_0.98.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.98.1.html b/api/prev_api_changes/api_changes_0.98.1.html deleted file mode 100644 index b2998a9ce10..00000000000 --- a/api/prev_api_changes/api_changes_0.98.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.98.x.html b/api/prev_api_changes/api_changes_0.98.x.html deleted file mode 100644 index 9af16ffd8ad..00000000000 --- a/api/prev_api_changes/api_changes_0.98.x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.99.html b/api/prev_api_changes/api_changes_0.99.html deleted file mode 100644 index b4719c866bd..00000000000 --- a/api/prev_api_changes/api_changes_0.99.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_0.99.x.html b/api/prev_api_changes/api_changes_0.99.x.html deleted file mode 100644 index 2e730f28bad..00000000000 --- a/api/prev_api_changes/api_changes_0.99.x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_1.1.x.html b/api/prev_api_changes/api_changes_1.1.x.html deleted file mode 100644 index 9ebf99c68eb..00000000000 --- a/api/prev_api_changes/api_changes_1.1.x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_1.2.x.html b/api/prev_api_changes/api_changes_1.2.x.html deleted file mode 100644 index 0557d670ea3..00000000000 --- a/api/prev_api_changes/api_changes_1.2.x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_1.3.x.html b/api/prev_api_changes/api_changes_1.3.x.html deleted file mode 100644 index df659ebb4e1..00000000000 --- a/api/prev_api_changes/api_changes_1.3.x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_1.4.x.html b/api/prev_api_changes/api_changes_1.4.x.html deleted file mode 100644 index 2269a94cea5..00000000000 --- a/api/prev_api_changes/api_changes_1.4.x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_1.5.0.html b/api/prev_api_changes/api_changes_1.5.0.html deleted file mode 100644 index 5868907edd1..00000000000 --- a/api/prev_api_changes/api_changes_1.5.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_1.5.2.html b/api/prev_api_changes/api_changes_1.5.2.html deleted file mode 100644 index 270d5b37dc0..00000000000 --- a/api/prev_api_changes/api_changes_1.5.2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_1.5.3.html b/api/prev_api_changes/api_changes_1.5.3.html deleted file mode 100644 index b753076d1e5..00000000000 --- a/api/prev_api_changes/api_changes_1.5.3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_2.0.0.html b/api/prev_api_changes/api_changes_2.0.0.html deleted file mode 100644 index 0bb532d7cdd..00000000000 --- a/api/prev_api_changes/api_changes_2.0.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_2.0.1.html b/api/prev_api_changes/api_changes_2.0.1.html deleted file mode 100644 index d2406a192ad..00000000000 --- a/api/prev_api_changes/api_changes_2.0.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_2.1.0.html b/api/prev_api_changes/api_changes_2.1.0.html deleted file mode 100644 index 897efdce0a7..00000000000 --- a/api/prev_api_changes/api_changes_2.1.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_2.1.1.html b/api/prev_api_changes/api_changes_2.1.1.html deleted file mode 100644 index e3b96d96cd3..00000000000 --- a/api/prev_api_changes/api_changes_2.1.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_2.1.2.html b/api/prev_api_changes/api_changes_2.1.2.html deleted file mode 100644 index 6d7582120cb..00000000000 --- a/api/prev_api_changes/api_changes_2.1.2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_2.2.0.html b/api/prev_api_changes/api_changes_2.2.0.html deleted file mode 100644 index 50baf43c436..00000000000 --- a/api/prev_api_changes/api_changes_2.2.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3-0-0-1.pdf b/api/prev_api_changes/api_changes_3-0-0-1.pdf deleted file mode 120000 index a543f77a4eb..00000000000 --- a/api/prev_api_changes/api_changes_3-0-0-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/api/prev_api_changes/api_changes_3-0-0-1.pdf \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3-0-0-1.png b/api/prev_api_changes/api_changes_3-0-0-1.png deleted file mode 120000 index 8fb9e7e6d0d..00000000000 --- a/api/prev_api_changes/api_changes_3-0-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/prev_api_changes/api_changes_3-0-0-1.png \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3-0-0-1.py b/api/prev_api_changes/api_changes_3-0-0-1.py deleted file mode 120000 index ca08a7a4f11..00000000000 --- a/api/prev_api_changes/api_changes_3-0-0-1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/prev_api_changes/api_changes_3-0-0-1.py \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3-2-0-1.pdf b/api/prev_api_changes/api_changes_3-2-0-1.pdf deleted file mode 120000 index 7784e20987c..00000000000 --- a/api/prev_api_changes/api_changes_3-2-0-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/api/prev_api_changes/api_changes_3-2-0-1.pdf \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3-2-0-1.png b/api/prev_api_changes/api_changes_3-2-0-1.png deleted file mode 120000 index ca9e889e2c3..00000000000 --- a/api/prev_api_changes/api_changes_3-2-0-1.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/prev_api_changes/api_changes_3-2-0-1.png \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3-2-0-1.py b/api/prev_api_changes/api_changes_3-2-0-1.py deleted file mode 120000 index fc171cd0a9f..00000000000 --- a/api/prev_api_changes/api_changes_3-2-0-1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/api/prev_api_changes/api_changes_3-2-0-1.py \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3.0.0.html b/api/prev_api_changes/api_changes_3.0.0.html deleted file mode 100644 index 6ac181d3629..00000000000 --- a/api/prev_api_changes/api_changes_3.0.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.0.1.html b/api/prev_api_changes/api_changes_3.0.1.html deleted file mode 100644 index 2f6acb8e94e..00000000000 --- a/api/prev_api_changes/api_changes_3.0.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.1.0.html b/api/prev_api_changes/api_changes_3.1.0.html deleted file mode 100644 index 72e0a5473c8..00000000000 --- a/api/prev_api_changes/api_changes_3.1.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.1.1.html b/api/prev_api_changes/api_changes_3.1.1.html deleted file mode 100644 index 0a0f812dd91..00000000000 --- a/api/prev_api_changes/api_changes_3.1.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.2.0.html b/api/prev_api_changes/api_changes_3.2.0.html deleted file mode 100644 index d31d927addb..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.2.0/behavior-1.pdf b/api/prev_api_changes/api_changes_3.2.0/behavior-1.pdf deleted file mode 120000 index 340863c869d..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0/behavior-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.0/api/prev_api_changes/api_changes_3.2.0/behavior-1.pdf \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3.2.0/behavior-1.png b/api/prev_api_changes/api_changes_3.2.0/behavior-1.png deleted file mode 120000 index 75204fb92a5..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0/behavior-1.png +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.0/api/prev_api_changes/api_changes_3.2.0/behavior-1.png \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3.2.0/behavior-1.py b/api/prev_api_changes/api_changes_3.2.0/behavior-1.py deleted file mode 120000 index 74827946155..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0/behavior-1.py +++ /dev/null @@ -1 +0,0 @@ -../../../3.3.0/api/prev_api_changes/api_changes_3.2.0/behavior-1.py \ No newline at end of file diff --git a/api/prev_api_changes/api_changes_3.2.0/behavior.html b/api/prev_api_changes/api_changes_3.2.0/behavior.html deleted file mode 100644 index 6d11a8fd02a..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0/behavior.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.2.0/deprecations.html b/api/prev_api_changes/api_changes_3.2.0/deprecations.html deleted file mode 100644 index d131976e724..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0/deprecations.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.2.0/development.html b/api/prev_api_changes/api_changes_3.2.0/development.html deleted file mode 100644 index 76365eb4a19..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0/development.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.2.0/removals.html b/api/prev_api_changes/api_changes_3.2.0/removals.html deleted file mode 100644 index 2c236de61f7..00000000000 --- a/api/prev_api_changes/api_changes_3.2.0/removals.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.3.0.html b/api/prev_api_changes/api_changes_3.3.0.html deleted file mode 100644 index 48a66d0ffde..00000000000 --- a/api/prev_api_changes/api_changes_3.3.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.3.0/behaviour.html b/api/prev_api_changes/api_changes_3.3.0/behaviour.html deleted file mode 100644 index 5986c6e3e47..00000000000 --- a/api/prev_api_changes/api_changes_3.3.0/behaviour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.3.0/deprecations.html b/api/prev_api_changes/api_changes_3.3.0/deprecations.html deleted file mode 100644 index e9e6d8eb8e7..00000000000 --- a/api/prev_api_changes/api_changes_3.3.0/deprecations.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.3.0/development.html b/api/prev_api_changes/api_changes_3.3.0/development.html deleted file mode 100644 index 20e0e72a1ff..00000000000 --- a/api/prev_api_changes/api_changes_3.3.0/development.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.3.0/removals.html b/api/prev_api_changes/api_changes_3.3.0/removals.html deleted file mode 100644 index 7b1c080edb7..00000000000 --- a/api/prev_api_changes/api_changes_3.3.0/removals.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.3.1.html b/api/prev_api_changes/api_changes_3.3.1.html deleted file mode 100644 index 5cf339aeca8..00000000000 --- a/api/prev_api_changes/api_changes_3.3.1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.4.0.html b/api/prev_api_changes/api_changes_3.4.0.html deleted file mode 100644 index f125aa14f46..00000000000 --- a/api/prev_api_changes/api_changes_3.4.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.4.2.html b/api/prev_api_changes/api_changes_3.4.2.html deleted file mode 100644 index c135d741cb2..00000000000 --- a/api/prev_api_changes/api_changes_3.4.2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/prev_api_changes/api_changes_3.5.0.html b/api/prev_api_changes/api_changes_3.5.0.html deleted file mode 100644 index 2597a40d359..00000000000 --- a/api/prev_api_changes/api_changes_3.5.0.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/projections_api.html b/api/projections_api.html deleted file mode 100644 index c19fb6a72ca..00000000000 --- a/api/projections_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/pyplot_api.html b/api/pyplot_api.html deleted file mode 100644 index aef5d02be2f..00000000000 --- a/api/pyplot_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/pyplot_summary.html b/api/pyplot_summary.html deleted file mode 100644 index 8ebb06eb6ae..00000000000 --- a/api/pyplot_summary.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/quiver_api.html b/api/quiver_api.html deleted file mode 100644 index 3e522f99260..00000000000 --- a/api/quiver_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/rcsetup_api.html b/api/rcsetup_api.html deleted file mode 100644 index 5070bdaae03..00000000000 --- a/api/rcsetup_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/sankey_api.html b/api/sankey_api.html deleted file mode 100644 index fb6b0c8368c..00000000000 --- a/api/sankey_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/scale_api.html b/api/scale_api.html deleted file mode 100644 index 5e88baadd1f..00000000000 --- a/api/scale_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/sphinxext_mathmpl_api.html b/api/sphinxext_mathmpl_api.html deleted file mode 100644 index cdd348ae5f0..00000000000 --- a/api/sphinxext_mathmpl_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/sphinxext_plot_directive_api.html b/api/sphinxext_plot_directive_api.html deleted file mode 100644 index 31ae9cf2bb0..00000000000 --- a/api/sphinxext_plot_directive_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/spines_api.html b/api/spines_api.html deleted file mode 100644 index 0eacff6e81f..00000000000 --- a/api/spines_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/style_api.html b/api/style_api.html deleted file mode 100644 index 8b4222e587f..00000000000 --- a/api/style_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/table_api.html b/api/table_api.html deleted file mode 100644 index 970bae029cc..00000000000 --- a/api/table_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/testing_api.html b/api/testing_api.html deleted file mode 100644 index c9960188f6a..00000000000 --- a/api/testing_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/texmanager_api.html b/api/texmanager_api.html deleted file mode 100644 index 9e0a5453fa4..00000000000 --- a/api/texmanager_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/text_api.html b/api/text_api.html deleted file mode 100644 index a2fd1757efb..00000000000 --- a/api/text_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/textpath_api.html b/api/textpath_api.html deleted file mode 100644 index 312d6cf6063..00000000000 --- a/api/textpath_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/ticker_api-1.pdf b/api/ticker_api-1.pdf deleted file mode 120000 index e80f706cbb2..00000000000 --- a/api/ticker_api-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../3.5.3/api/ticker_api-1.pdf \ No newline at end of file diff --git a/api/ticker_api-1.png b/api/ticker_api-1.png deleted file mode 120000 index 41a93daf47a..00000000000 --- a/api/ticker_api-1.png +++ /dev/null @@ -1 +0,0 @@ -../stable/api/ticker_api-1.png \ No newline at end of file diff --git a/api/ticker_api-1.py b/api/ticker_api-1.py deleted file mode 120000 index 7040cf3e93c..00000000000 --- a/api/ticker_api-1.py +++ /dev/null @@ -1 +0,0 @@ -../stable/api/ticker_api-1.py \ No newline at end of file diff --git a/api/ticker_api.html b/api/ticker_api.html deleted file mode 100644 index d653c7bcbd7..00000000000 --- a/api/ticker_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/tight_bbox_api.html b/api/tight_bbox_api.html deleted file mode 100644 index b7d79332a7d..00000000000 --- a/api/tight_bbox_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/tight_layout_api.html b/api/tight_layout_api.html deleted file mode 100644 index 12543a75431..00000000000 --- a/api/tight_layout_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/toolkits/axes_grid.html b/api/toolkits/axes_grid.html deleted file mode 100644 index 01e81e6ddf3..00000000000 --- a/api/toolkits/axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/toolkits/axes_grid1.html b/api/toolkits/axes_grid1.html deleted file mode 100644 index 7b69e5fb5d1..00000000000 --- a/api/toolkits/axes_grid1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/toolkits/axisartist.html b/api/toolkits/axisartist.html deleted file mode 100644 index 737d2c9e203..00000000000 --- a/api/toolkits/axisartist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/toolkits/index.html b/api/toolkits/index.html deleted file mode 100644 index aedca97a894..00000000000 --- a/api/toolkits/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/toolkits/mplot3d.html b/api/toolkits/mplot3d.html deleted file mode 100644 index 5b86034e745..00000000000 --- a/api/toolkits/mplot3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/toolkits/mplot3d/faq.html b/api/toolkits/mplot3d/faq.html deleted file mode 100644 index 7daf64756be..00000000000 --- a/api/toolkits/mplot3d/faq.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/toolkits/mplot3d/index.html b/api/toolkits/mplot3d/index.html deleted file mode 100644 index 0976128a4fb..00000000000 --- a/api/toolkits/mplot3d/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/transformations.html b/api/transformations.html deleted file mode 100644 index 7d0fdfcdbe7..00000000000 --- a/api/transformations.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/tri_api.html b/api/tri_api.html deleted file mode 100644 index e6672b9cd1b..00000000000 --- a/api/tri_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/type1font.html b/api/type1font.html deleted file mode 100644 index 8b1608d5351..00000000000 --- a/api/type1font.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/units_api.html b/api/units_api.html deleted file mode 100644 index 8c68a074268..00000000000 --- a/api/units_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/api/widgets_api.html b/api/widgets_api.html deleted file mode 100644 index 9f338deba26..00000000000 --- a/api/widgets_api.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/citing.html b/citing.html deleted file mode 100644 index 2bc3c982b50..00000000000 --- a/citing.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/cleanout.py b/cleanout.py deleted file mode 100644 index 9cf88ca4136..00000000000 --- a/cleanout.py +++ /dev/null @@ -1,33 +0,0 @@ -import os -import sys - -""" -Cleans out the top-level (latest) docs from old files. - -Requires a single commandline argument for the latest version. -""" - -redirect = """ - - - - - - - -""" - -latest = sys.argv[-1] - -for tree in ('examples', '_images', 'mpl_examples', 'plot_directive', 'devel', 'users', 'api', 'faq', 'glossary'): - for root, dirs, files in os.walk(tree): - for file in files: - if not os.path.exists(os.path.join(latest, root, file)): - print(os.path.join(root, file)) - - if file.endswith('.html'): - with open(os.path.join(root, file), 'w') as fd: - fd.write(redirect.strip()) - elif file.endswith('.py') or file.endswith('.png') or file.endswith('.pdf'): - os.system('git rm ' + os.path.join(root, file)) diff --git a/contents.html b/contents.html deleted file mode 100644 index 7be4f33fe73..00000000000 --- a/contents.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP08.html b/devel/MEP/MEP08.html deleted file mode 100644 index 17c528d2d2d..00000000000 --- a/devel/MEP/MEP08.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP09.html b/devel/MEP/MEP09.html deleted file mode 100644 index 05affc75f68..00000000000 --- a/devel/MEP/MEP09.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP10.html b/devel/MEP/MEP10.html deleted file mode 100644 index 9596195b554..00000000000 --- a/devel/MEP/MEP10.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP11.html b/devel/MEP/MEP11.html deleted file mode 100644 index d304a473a85..00000000000 --- a/devel/MEP/MEP11.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP12.html b/devel/MEP/MEP12.html deleted file mode 100644 index 92738aa0e78..00000000000 --- a/devel/MEP/MEP12.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP13.html b/devel/MEP/MEP13.html deleted file mode 100644 index ea93aadb72b..00000000000 --- a/devel/MEP/MEP13.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP14.html b/devel/MEP/MEP14.html deleted file mode 100644 index 0563821c734..00000000000 --- a/devel/MEP/MEP14.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP15.html b/devel/MEP/MEP15.html deleted file mode 100644 index e54e7b91c63..00000000000 --- a/devel/MEP/MEP15.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP19.html b/devel/MEP/MEP19.html deleted file mode 100644 index 3bd2af7d0a9..00000000000 --- a/devel/MEP/MEP19.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP21.html b/devel/MEP/MEP21.html deleted file mode 100644 index 928cced4564..00000000000 --- a/devel/MEP/MEP21.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP22.html b/devel/MEP/MEP22.html deleted file mode 100644 index 953397ab9e0..00000000000 --- a/devel/MEP/MEP22.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP23.html b/devel/MEP/MEP23.html deleted file mode 100644 index b65cf845c68..00000000000 --- a/devel/MEP/MEP23.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP24.html b/devel/MEP/MEP24.html deleted file mode 100644 index d0f76c0f0f2..00000000000 --- a/devel/MEP/MEP24.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP25.html b/devel/MEP/MEP25.html deleted file mode 100644 index 54de0fac59a..00000000000 --- a/devel/MEP/MEP25.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP26.html b/devel/MEP/MEP26.html deleted file mode 100644 index f5c76a09988..00000000000 --- a/devel/MEP/MEP26.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP27.html b/devel/MEP/MEP27.html deleted file mode 100644 index 9eac0266843..00000000000 --- a/devel/MEP/MEP27.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP28-1.pdf b/devel/MEP/MEP28-1.pdf deleted file mode 120000 index 989703ef637..00000000000 --- a/devel/MEP/MEP28-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/devel/MEP/MEP28-1.pdf \ No newline at end of file diff --git a/devel/MEP/MEP28-1.png b/devel/MEP/MEP28-1.png deleted file mode 120000 index 5869afcf5bd..00000000000 --- a/devel/MEP/MEP28-1.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/devel/MEP/MEP28-1.png \ No newline at end of file diff --git a/devel/MEP/MEP28-1.py b/devel/MEP/MEP28-1.py deleted file mode 120000 index d1e58dc7be2..00000000000 --- a/devel/MEP/MEP28-1.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/devel/MEP/MEP28-1.py \ No newline at end of file diff --git a/devel/MEP/MEP28.html b/devel/MEP/MEP28.html deleted file mode 100644 index 888d537dcc1..00000000000 --- a/devel/MEP/MEP28.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/MEP29.html b/devel/MEP/MEP29.html deleted file mode 100644 index fb7ada1befa..00000000000 --- a/devel/MEP/MEP29.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/README.html b/devel/MEP/README.html deleted file mode 100644 index b7b8bad57e6..00000000000 --- a/devel/MEP/README.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/index.html b/devel/MEP/index.html deleted file mode 100644 index e5b4953bcc6..00000000000 --- a/devel/MEP/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/MEP/template.html b/devel/MEP/template.html deleted file mode 100644 index 2979c613846..00000000000 --- a/devel/MEP/template.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/add_new_projection.html b/devel/add_new_projection.html deleted file mode 100644 index 91367d2aae5..00000000000 --- a/devel/add_new_projection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/coding_guide.html b/devel/coding_guide.html deleted file mode 100644 index a36edc71e05..00000000000 --- a/devel/coding_guide.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/color_changes.html b/devel/color_changes.html deleted file mode 100644 index 2780f0a4d73..00000000000 --- a/devel/color_changes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/contributing.html b/devel/contributing.html deleted file mode 100644 index 2b67f71eb3d..00000000000 --- a/devel/contributing.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/dependencies.html b/devel/dependencies.html deleted file mode 100644 index 662ab206004..00000000000 --- a/devel/dependencies.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/development_setup.html b/devel/development_setup.html deleted file mode 100644 index 639e323a7db..00000000000 --- a/devel/development_setup.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/documenting_mpl.html b/devel/documenting_mpl.html deleted file mode 100644 index a32fc77e0e1..00000000000 --- a/devel/documenting_mpl.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/configure_git.html b/devel/gitwash/configure_git.html deleted file mode 100644 index ce5e1229046..00000000000 --- a/devel/gitwash/configure_git.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/development_workflow.html b/devel/gitwash/development_workflow.html deleted file mode 100644 index 7f6ea478d60..00000000000 --- a/devel/gitwash/development_workflow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/dot2_dot3.html b/devel/gitwash/dot2_dot3.html deleted file mode 100644 index cff16d16254..00000000000 --- a/devel/gitwash/dot2_dot3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/following_latest.html b/devel/gitwash/following_latest.html deleted file mode 100644 index f4e93c3f7ec..00000000000 --- a/devel/gitwash/following_latest.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/forking_hell.html b/devel/gitwash/forking_hell.html deleted file mode 100644 index 12edcca7497..00000000000 --- a/devel/gitwash/forking_hell.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/git_development.html b/devel/gitwash/git_development.html deleted file mode 100644 index fa582e87585..00000000000 --- a/devel/gitwash/git_development.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/git_install.html b/devel/gitwash/git_install.html deleted file mode 100644 index 4310d68bc01..00000000000 --- a/devel/gitwash/git_install.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/git_intro.html b/devel/gitwash/git_intro.html deleted file mode 100644 index b41a070ddf9..00000000000 --- a/devel/gitwash/git_intro.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/git_resources.html b/devel/gitwash/git_resources.html deleted file mode 100644 index 5626907fef7..00000000000 --- a/devel/gitwash/git_resources.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/index.html b/devel/gitwash/index.html deleted file mode 100644 index 4c7c8d1a4ae..00000000000 --- a/devel/gitwash/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/maintainer_workflow.html b/devel/gitwash/maintainer_workflow.html deleted file mode 100644 index fd246795ded..00000000000 --- a/devel/gitwash/maintainer_workflow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/patching.html b/devel/gitwash/patching.html deleted file mode 100644 index bfbb39751f3..00000000000 --- a/devel/gitwash/patching.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/set_up_fork.html b/devel/gitwash/set_up_fork.html deleted file mode 100644 index c6958422bf4..00000000000 --- a/devel/gitwash/set_up_fork.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/gitwash/setting_up_for_development.html b/devel/gitwash/setting_up_for_development.html deleted file mode 100644 index 91f109a7663..00000000000 --- a/devel/gitwash/setting_up_for_development.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/index.html b/devel/index.html deleted file mode 100644 index c62eb0b29e0..00000000000 --- a/devel/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/license.html b/devel/license.html deleted file mode 100644 index 2d14d5ab3f5..00000000000 --- a/devel/license.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/min_dep_policy.html b/devel/min_dep_policy.html deleted file mode 100644 index 4ed9e08301b..00000000000 --- a/devel/min_dep_policy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/outline.html b/devel/outline.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/devel/outline.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/devel/plot_directive.html b/devel/plot_directive.html deleted file mode 100644 index 09aa4eda35d..00000000000 --- a/devel/plot_directive.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/portable_code.html b/devel/portable_code.html deleted file mode 100644 index 9697c47d767..00000000000 --- a/devel/portable_code.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/release_guide.html b/devel/release_guide.html deleted file mode 100644 index 9f8ec201ef2..00000000000 --- a/devel/release_guide.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/style_guide.html b/devel/style_guide.html deleted file mode 100644 index 0925b845ed5..00000000000 --- a/devel/style_guide.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/testing.html b/devel/testing.html deleted file mode 100644 index f86bee949be..00000000000 --- a/devel/testing.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/transformations.html b/devel/transformations.html deleted file mode 100644 index e042dd2f7d2..00000000000 --- a/devel/transformations.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/devel/triage.html b/devel/triage.html deleted file mode 100644 index e8a5de38744..00000000000 --- a/devel/triage.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/downloads.html b/downloads.html deleted file mode 100644 index 3ada8e31eb8..00000000000 --- a/downloads.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/animate_decay.html b/examples/animation/animate_decay.html deleted file mode 100644 index 0a29d5e4cd5..00000000000 --- a/examples/animation/animate_decay.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/animate_decay.py b/examples/animation/animate_decay.py deleted file mode 120000 index 7c887c78da6..00000000000 --- a/examples/animation/animate_decay.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/animate_decay.py \ No newline at end of file diff --git a/examples/animation/animate_decay_tk_blit.html b/examples/animation/animate_decay_tk_blit.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animate_decay_tk_blit.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/animation_blit_fltk.html b/examples/animation/animation_blit_fltk.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animation_blit_fltk.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/animation_blit_gtk.html b/examples/animation/animation_blit_gtk.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animation_blit_gtk.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/animation_blit_gtk2.html b/examples/animation/animation_blit_gtk2.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animation_blit_gtk2.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/animation_blit_qt.html b/examples/animation/animation_blit_qt.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animation_blit_qt.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/animation_blit_qt4.html b/examples/animation/animation_blit_qt4.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animation_blit_qt4.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/animation_blit_tk.html b/examples/animation/animation_blit_tk.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animation_blit_tk.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/animation_blit_wx.html b/examples/animation/animation_blit_wx.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/animation_blit_wx.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/basic_example.html b/examples/animation/basic_example.html deleted file mode 100644 index 9c49ceddf0c..00000000000 --- a/examples/animation/basic_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/basic_example.py b/examples/animation/basic_example.py deleted file mode 120000 index dc60e077e53..00000000000 --- a/examples/animation/basic_example.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/basic_example.py \ No newline at end of file diff --git a/examples/animation/basic_example_writer.html b/examples/animation/basic_example_writer.html deleted file mode 100644 index 66f526ee328..00000000000 --- a/examples/animation/basic_example_writer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/basic_example_writer.py b/examples/animation/basic_example_writer.py deleted file mode 120000 index 43aeb89115b..00000000000 --- a/examples/animation/basic_example_writer.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/basic_example_writer.py \ No newline at end of file diff --git a/examples/animation/bayes_update.html b/examples/animation/bayes_update.html deleted file mode 100644 index a6cf58673b3..00000000000 --- a/examples/animation/bayes_update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/bayes_update.py b/examples/animation/bayes_update.py deleted file mode 120000 index c58eeac5a6a..00000000000 --- a/examples/animation/bayes_update.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/bayes_update.py \ No newline at end of file diff --git a/examples/animation/double_pendulum_animated.html b/examples/animation/double_pendulum_animated.html deleted file mode 100644 index 15d0784ac2e..00000000000 --- a/examples/animation/double_pendulum_animated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/double_pendulum_animated.py b/examples/animation/double_pendulum_animated.py deleted file mode 120000 index c4289a2e9ab..00000000000 --- a/examples/animation/double_pendulum_animated.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/double_pendulum_animated.py \ No newline at end of file diff --git a/examples/animation/draggable_legend.html b/examples/animation/draggable_legend.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/draggable_legend.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/dynamic_collection.html b/examples/animation/dynamic_collection.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/dynamic_collection.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/dynamic_image.html b/examples/animation/dynamic_image.html deleted file mode 100644 index 8de17f9225a..00000000000 --- a/examples/animation/dynamic_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/dynamic_image.py b/examples/animation/dynamic_image.py deleted file mode 120000 index b7769c93cc2..00000000000 --- a/examples/animation/dynamic_image.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/dynamic_image.py \ No newline at end of file diff --git a/examples/animation/dynamic_image2.html b/examples/animation/dynamic_image2.html deleted file mode 100644 index a7eb5ced4c3..00000000000 --- a/examples/animation/dynamic_image2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/dynamic_image2.py b/examples/animation/dynamic_image2.py deleted file mode 120000 index 71bd559138a..00000000000 --- a/examples/animation/dynamic_image2.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/dynamic_image2.py \ No newline at end of file diff --git a/examples/animation/dynamic_image_gtkagg.html b/examples/animation/dynamic_image_gtkagg.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/dynamic_image_gtkagg.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/dynamic_image_wxagg2.html b/examples/animation/dynamic_image_wxagg2.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/dynamic_image_wxagg2.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/gtk_timeout.html b/examples/animation/gtk_timeout.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/gtk_timeout.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/histogram.html b/examples/animation/histogram.html deleted file mode 100644 index bdecc77ef4b..00000000000 --- a/examples/animation/histogram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/histogram.py b/examples/animation/histogram.py deleted file mode 120000 index 7375a969d62..00000000000 --- a/examples/animation/histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/histogram.py \ No newline at end of file diff --git a/examples/animation/histogram_tkagg.html b/examples/animation/histogram_tkagg.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/histogram_tkagg.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/index.html b/examples/animation/index.html deleted file mode 100644 index 7476e46d9de..00000000000 --- a/examples/animation/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/movie_demo.html b/examples/animation/movie_demo.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/movie_demo.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/moviewriter.html b/examples/animation/moviewriter.html deleted file mode 100644 index 2e028801ae3..00000000000 --- a/examples/animation/moviewriter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/moviewriter.py b/examples/animation/moviewriter.py deleted file mode 120000 index 85de71da7dd..00000000000 --- a/examples/animation/moviewriter.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/moviewriter.py \ No newline at end of file diff --git a/examples/animation/rain.html b/examples/animation/rain.html deleted file mode 100644 index 98f18a0f2f1..00000000000 --- a/examples/animation/rain.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/rain.py b/examples/animation/rain.py deleted file mode 120000 index aa9be358d64..00000000000 --- a/examples/animation/rain.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/rain.py \ No newline at end of file diff --git a/examples/animation/random_data.html b/examples/animation/random_data.html deleted file mode 100644 index 41752acd6b6..00000000000 --- a/examples/animation/random_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/random_data.py b/examples/animation/random_data.py deleted file mode 120000 index cd5fafd7767..00000000000 --- a/examples/animation/random_data.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/random_data.py \ No newline at end of file diff --git a/examples/animation/simple_3danim.html b/examples/animation/simple_3danim.html deleted file mode 100644 index 3a18f4a20ac..00000000000 --- a/examples/animation/simple_3danim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/simple_3danim.py b/examples/animation/simple_3danim.py deleted file mode 120000 index d081d629ccd..00000000000 --- a/examples/animation/simple_3danim.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/simple_3danim.py \ No newline at end of file diff --git a/examples/animation/simple_anim.html b/examples/animation/simple_anim.html deleted file mode 100644 index 84429844c16..00000000000 --- a/examples/animation/simple_anim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/simple_anim.py b/examples/animation/simple_anim.py deleted file mode 120000 index d876860fe6f..00000000000 --- a/examples/animation/simple_anim.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/simple_anim.py \ No newline at end of file diff --git a/examples/animation/simple_anim_gtk.html b/examples/animation/simple_anim_gtk.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/simple_anim_gtk.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/simple_anim_tkagg.html b/examples/animation/simple_anim_tkagg.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/simple_anim_tkagg.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/simple_idle_wx.html b/examples/animation/simple_idle_wx.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/simple_idle_wx.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/simple_timer_wx.html b/examples/animation/simple_timer_wx.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/animation/simple_timer_wx.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/animation/strip_chart_demo.html b/examples/animation/strip_chart_demo.html deleted file mode 100644 index 91d953979cc..00000000000 --- a/examples/animation/strip_chart_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/strip_chart_demo.py b/examples/animation/strip_chart_demo.py deleted file mode 120000 index 94e883f1a0f..00000000000 --- a/examples/animation/strip_chart_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/strip_chart_demo.py \ No newline at end of file diff --git a/examples/animation/subplots.html b/examples/animation/subplots.html deleted file mode 100644 index 18a4ff2f1cd..00000000000 --- a/examples/animation/subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/subplots.py b/examples/animation/subplots.py deleted file mode 120000 index 4797f6bf949..00000000000 --- a/examples/animation/subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/subplots.py \ No newline at end of file diff --git a/examples/animation/unchained.html b/examples/animation/unchained.html deleted file mode 100644 index 2fd336b9459..00000000000 --- a/examples/animation/unchained.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/animation/unchained.py b/examples/animation/unchained.py deleted file mode 120000 index 4910fc23994..00000000000 --- a/examples/animation/unchained.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/animation/unchained.py \ No newline at end of file diff --git a/examples/api/agg_oo.html b/examples/api/agg_oo.html deleted file mode 100644 index fcab07a1836..00000000000 --- a/examples/api/agg_oo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/agg_oo.py b/examples/api/agg_oo.py deleted file mode 120000 index 5a160eb3a68..00000000000 --- a/examples/api/agg_oo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/api/agg_oo.py \ No newline at end of file diff --git a/examples/api/barchart_demo.html b/examples/api/barchart_demo.html deleted file mode 100644 index 74bfe424e71..00000000000 --- a/examples/api/barchart_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/bbox_intersect.html b/examples/api/bbox_intersect.html deleted file mode 100644 index 68f59503148..00000000000 --- a/examples/api/bbox_intersect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/collections_demo.html b/examples/api/collections_demo.html deleted file mode 100644 index c07094d3139..00000000000 --- a/examples/api/collections_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/colorbar_basics.html b/examples/api/colorbar_basics.html deleted file mode 100644 index 857fae9cf7c..00000000000 --- a/examples/api/colorbar_basics.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/colorbar_only.html b/examples/api/colorbar_only.html deleted file mode 100644 index 23746bb70e3..00000000000 --- a/examples/api/colorbar_only.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/compound_path.html b/examples/api/compound_path.html deleted file mode 100644 index 8a1a099461c..00000000000 --- a/examples/api/compound_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/custom_projection_example.html b/examples/api/custom_projection_example.html deleted file mode 100644 index 03bd06e209a..00000000000 --- a/examples/api/custom_projection_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/custom_scale_example.html b/examples/api/custom_scale_example.html deleted file mode 100644 index 3c894e5e8d1..00000000000 --- a/examples/api/custom_scale_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/date_demo.html b/examples/api/date_demo.html deleted file mode 100644 index e70e5bb0043..00000000000 --- a/examples/api/date_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/date_index_formatter.html b/examples/api/date_index_formatter.html deleted file mode 100644 index 9d84ecd6e7d..00000000000 --- a/examples/api/date_index_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/demo_affine_image.html b/examples/api/demo_affine_image.html deleted file mode 100644 index 624bf380513..00000000000 --- a/examples/api/demo_affine_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/donut_demo.html b/examples/api/donut_demo.html deleted file mode 100644 index fb1283ee2f5..00000000000 --- a/examples/api/donut_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/engineering_formatter.html b/examples/api/engineering_formatter.html deleted file mode 100644 index 2e2e63989eb..00000000000 --- a/examples/api/engineering_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/fahrenheit_celsius_scales.html b/examples/api/fahrenheit_celsius_scales.html deleted file mode 100644 index 903d4219c32..00000000000 --- a/examples/api/fahrenheit_celsius_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/filled_step.html b/examples/api/filled_step.html deleted file mode 100644 index 03d0c6a0a48..00000000000 --- a/examples/api/filled_step.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/font_family_rc.html b/examples/api/font_family_rc.html deleted file mode 100644 index aee3cf02fee..00000000000 --- a/examples/api/font_family_rc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/font_family_rc.py b/examples/api/font_family_rc.py deleted file mode 120000 index 221e71d6d22..00000000000 --- a/examples/api/font_family_rc.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/api/font_family_rc.py \ No newline at end of file diff --git a/examples/api/font_file.html b/examples/api/font_file.html deleted file mode 100644 index 4a4ec14849c..00000000000 --- a/examples/api/font_file.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/font_file.py b/examples/api/font_file.py deleted file mode 120000 index f39c4979855..00000000000 --- a/examples/api/font_file.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/api/font_file.py \ No newline at end of file diff --git a/examples/api/histogram_path_demo.html b/examples/api/histogram_path_demo.html deleted file mode 100644 index dcb6e71ba6f..00000000000 --- a/examples/api/histogram_path_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/image_zcoord.html b/examples/api/image_zcoord.html deleted file mode 100644 index eb776ab7a0e..00000000000 --- a/examples/api/image_zcoord.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/index.html b/examples/api/index.html deleted file mode 100644 index 2aa749613c2..00000000000 --- a/examples/api/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/joinstyle.html b/examples/api/joinstyle.html deleted file mode 100644 index 7427f0386bb..00000000000 --- a/examples/api/joinstyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/legend_demo.html b/examples/api/legend_demo.html deleted file mode 100644 index 53b2a2fd897..00000000000 --- a/examples/api/legend_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/line_with_text.html b/examples/api/line_with_text.html deleted file mode 100644 index a32956e8cf7..00000000000 --- a/examples/api/line_with_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/logo2.html b/examples/api/logo2.html deleted file mode 100644 index 836c8b49b53..00000000000 --- a/examples/api/logo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/mathtext_asarray.html b/examples/api/mathtext_asarray.html deleted file mode 100644 index b94659ecd63..00000000000 --- a/examples/api/mathtext_asarray.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/patch_collection.html b/examples/api/patch_collection.html deleted file mode 100644 index 0c3d4ece652..00000000000 --- a/examples/api/patch_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/power_norm_demo.html b/examples/api/power_norm_demo.html deleted file mode 100644 index eb195b6c025..00000000000 --- a/examples/api/power_norm_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/quad_bezier.html b/examples/api/quad_bezier.html deleted file mode 100644 index 412ba463d7b..00000000000 --- a/examples/api/quad_bezier.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/radar_chart.html b/examples/api/radar_chart.html deleted file mode 100644 index 1b6ce920740..00000000000 --- a/examples/api/radar_chart.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/sankey_demo_basics.html b/examples/api/sankey_demo_basics.html deleted file mode 100644 index c75e1c2d926..00000000000 --- a/examples/api/sankey_demo_basics.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/sankey_demo_links.html b/examples/api/sankey_demo_links.html deleted file mode 100644 index b77bc6f8fcf..00000000000 --- a/examples/api/sankey_demo_links.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/sankey_demo_old.html b/examples/api/sankey_demo_old.html deleted file mode 100644 index bd9b69ca39d..00000000000 --- a/examples/api/sankey_demo_old.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/sankey_demo_rankine.html b/examples/api/sankey_demo_rankine.html deleted file mode 100644 index 96673ec569c..00000000000 --- a/examples/api/sankey_demo_rankine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/scatter_piecharts.html b/examples/api/scatter_piecharts.html deleted file mode 100644 index e00b95381fa..00000000000 --- a/examples/api/scatter_piecharts.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/skewt.html b/examples/api/skewt.html deleted file mode 100644 index 87b7c01bfcf..00000000000 --- a/examples/api/skewt.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/span_regions.html b/examples/api/span_regions.html deleted file mode 100644 index 69f3a8b90af..00000000000 --- a/examples/api/span_regions.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/two_scales.html b/examples/api/two_scales.html deleted file mode 100644 index c9071a5301f..00000000000 --- a/examples/api/two_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/unicode_minus.html b/examples/api/unicode_minus.html deleted file mode 100644 index ffcd9efbc79..00000000000 --- a/examples/api/unicode_minus.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/watermark_image.html b/examples/api/watermark_image.html deleted file mode 100644 index fee0a032a13..00000000000 --- a/examples/api/watermark_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/api/watermark_text.html b/examples/api/watermark_text.html deleted file mode 100644 index 939ab4307f2..00000000000 --- a/examples/api/watermark_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_axes_divider.html b/examples/axes_grid/demo_axes_divider.html deleted file mode 100644 index 936c9be1422..00000000000 --- a/examples/axes_grid/demo_axes_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_axes_grid.html b/examples/axes_grid/demo_axes_grid.html deleted file mode 100644 index 0a06b7c8cab..00000000000 --- a/examples/axes_grid/demo_axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_axes_grid2.html b/examples/axes_grid/demo_axes_grid2.html deleted file mode 100644 index d15a7baf8c8..00000000000 --- a/examples/axes_grid/demo_axes_grid2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_axes_hbox_divider.html b/examples/axes_grid/demo_axes_hbox_divider.html deleted file mode 100644 index 9448b951114..00000000000 --- a/examples/axes_grid/demo_axes_hbox_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_axes_rgb.html b/examples/axes_grid/demo_axes_rgb.html deleted file mode 100644 index 1f4ff592be4..00000000000 --- a/examples/axes_grid/demo_axes_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_axisline_style.html b/examples/axes_grid/demo_axisline_style.html deleted file mode 100644 index 3ac5aec6b99..00000000000 --- a/examples/axes_grid/demo_axisline_style.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_colorbar_with_inset_locator.html b/examples/axes_grid/demo_colorbar_with_inset_locator.html deleted file mode 100644 index 36dd4152761..00000000000 --- a/examples/axes_grid/demo_colorbar_with_inset_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_curvelinear_grid.html b/examples/axes_grid/demo_curvelinear_grid.html deleted file mode 100644 index 54fc8ff10d6..00000000000 --- a/examples/axes_grid/demo_curvelinear_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_curvelinear_grid2.html b/examples/axes_grid/demo_curvelinear_grid2.html deleted file mode 100644 index 5c81f4de476..00000000000 --- a/examples/axes_grid/demo_curvelinear_grid2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_edge_colorbar.html b/examples/axes_grid/demo_edge_colorbar.html deleted file mode 100644 index 71436e97d42..00000000000 --- a/examples/axes_grid/demo_edge_colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_floating_axes.html b/examples/axes_grid/demo_floating_axes.html deleted file mode 100644 index b8a5b38b3f2..00000000000 --- a/examples/axes_grid/demo_floating_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_floating_axis.html b/examples/axes_grid/demo_floating_axis.html deleted file mode 100644 index 92dd96b8bf6..00000000000 --- a/examples/axes_grid/demo_floating_axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_imagegrid_aspect.html b/examples/axes_grid/demo_imagegrid_aspect.html deleted file mode 100644 index 22f9c1281ca..00000000000 --- a/examples/axes_grid/demo_imagegrid_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/demo_parasite_axes2.html b/examples/axes_grid/demo_parasite_axes2.html deleted file mode 100644 index d96010f548c..00000000000 --- a/examples/axes_grid/demo_parasite_axes2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/index.html b/examples/axes_grid/index.html deleted file mode 100644 index 7fc1111d668..00000000000 --- a/examples/axes_grid/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/inset_locator_demo.html b/examples/axes_grid/inset_locator_demo.html deleted file mode 100644 index bd13747adfe..00000000000 --- a/examples/axes_grid/inset_locator_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/inset_locator_demo2.html b/examples/axes_grid/inset_locator_demo2.html deleted file mode 100644 index f50bcc64b5d..00000000000 --- a/examples/axes_grid/inset_locator_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/make_room_for_ylabel_using_axesgrid.html b/examples/axes_grid/make_room_for_ylabel_using_axesgrid.html deleted file mode 100644 index 00bb56643ff..00000000000 --- a/examples/axes_grid/make_room_for_ylabel_using_axesgrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/parasite_simple2.html b/examples/axes_grid/parasite_simple2.html deleted file mode 100644 index 00cc4e2bfb4..00000000000 --- a/examples/axes_grid/parasite_simple2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/scatter_hist.html b/examples/axes_grid/scatter_hist.html deleted file mode 100644 index 0f00ea077d1..00000000000 --- a/examples/axes_grid/scatter_hist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/simple_anchored_artists.html b/examples/axes_grid/simple_anchored_artists.html deleted file mode 100644 index d981b4dcf52..00000000000 --- a/examples/axes_grid/simple_anchored_artists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/simple_axesgrid.html b/examples/axes_grid/simple_axesgrid.html deleted file mode 100644 index 831dff437c5..00000000000 --- a/examples/axes_grid/simple_axesgrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/simple_axesgrid2.html b/examples/axes_grid/simple_axesgrid2.html deleted file mode 100644 index 94d4cabc478..00000000000 --- a/examples/axes_grid/simple_axesgrid2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/axes_grid/simple_axisline4.html b/examples/axes_grid/simple_axisline4.html deleted file mode 100644 index f2b6bb53d37..00000000000 --- a/examples/axes_grid/simple_axisline4.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/color/color_cycle_default.html b/examples/color/color_cycle_default.html deleted file mode 100644 index 8d0abe8e952..00000000000 --- a/examples/color/color_cycle_default.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/color/color_cycle_demo.html b/examples/color/color_cycle_demo.html deleted file mode 100644 index 5aca7e2fb8a..00000000000 --- a/examples/color/color_cycle_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/color/colormaps_reference.html b/examples/color/colormaps_reference.html deleted file mode 100644 index a15623e304f..00000000000 --- a/examples/color/colormaps_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/color/index.html b/examples/color/index.html deleted file mode 100644 index 59763482bdd..00000000000 --- a/examples/color/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/color/named_colors.html b/examples/color/named_colors.html deleted file mode 100644 index a1b29efacc0..00000000000 --- a/examples/color/named_colors.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/close_event.html b/examples/event_handling/close_event.html deleted file mode 100644 index 2150a5a0d7c..00000000000 --- a/examples/event_handling/close_event.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/close_event.py b/examples/event_handling/close_event.py deleted file mode 120000 index 689ec4ab784..00000000000 --- a/examples/event_handling/close_event.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/close_event.py \ No newline at end of file diff --git a/examples/event_handling/data_browser.html b/examples/event_handling/data_browser.html deleted file mode 100644 index 34c9ddf6a11..00000000000 --- a/examples/event_handling/data_browser.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/data_browser.py b/examples/event_handling/data_browser.py deleted file mode 120000 index c849717a278..00000000000 --- a/examples/event_handling/data_browser.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/data_browser.py \ No newline at end of file diff --git a/examples/event_handling/figure_axes_enter_leave.html b/examples/event_handling/figure_axes_enter_leave.html deleted file mode 100644 index ec1f8c3eec4..00000000000 --- a/examples/event_handling/figure_axes_enter_leave.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/figure_axes_enter_leave.py b/examples/event_handling/figure_axes_enter_leave.py deleted file mode 120000 index 24b2830fc26..00000000000 --- a/examples/event_handling/figure_axes_enter_leave.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/figure_axes_enter_leave.py \ No newline at end of file diff --git a/examples/event_handling/idle_and_timeout.html b/examples/event_handling/idle_and_timeout.html deleted file mode 100644 index 2548cf9a0c0..00000000000 --- a/examples/event_handling/idle_and_timeout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/idle_and_timeout.py b/examples/event_handling/idle_and_timeout.py deleted file mode 120000 index a69d11805b1..00000000000 --- a/examples/event_handling/idle_and_timeout.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/idle_and_timeout.py \ No newline at end of file diff --git a/examples/event_handling/index.html b/examples/event_handling/index.html deleted file mode 100644 index ef06128c62f..00000000000 --- a/examples/event_handling/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/keypress_demo.html b/examples/event_handling/keypress_demo.html deleted file mode 100644 index 2a93fb26a2a..00000000000 --- a/examples/event_handling/keypress_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/keypress_demo.py b/examples/event_handling/keypress_demo.py deleted file mode 120000 index 01d70a3711a..00000000000 --- a/examples/event_handling/keypress_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/keypress_demo.py \ No newline at end of file diff --git a/examples/event_handling/lasso_demo.html b/examples/event_handling/lasso_demo.html deleted file mode 100644 index 14ee3a712c3..00000000000 --- a/examples/event_handling/lasso_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/lasso_demo.py b/examples/event_handling/lasso_demo.py deleted file mode 120000 index fb6f4aacbc5..00000000000 --- a/examples/event_handling/lasso_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/lasso_demo.py \ No newline at end of file diff --git a/examples/event_handling/legend_picking.html b/examples/event_handling/legend_picking.html deleted file mode 100644 index f54e1c8a9ba..00000000000 --- a/examples/event_handling/legend_picking.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/legend_picking.py b/examples/event_handling/legend_picking.py deleted file mode 120000 index ffadbe52951..00000000000 --- a/examples/event_handling/legend_picking.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/legend_picking.py \ No newline at end of file diff --git a/examples/event_handling/looking_glass.html b/examples/event_handling/looking_glass.html deleted file mode 100644 index cba0a4ad4db..00000000000 --- a/examples/event_handling/looking_glass.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/looking_glass.py b/examples/event_handling/looking_glass.py deleted file mode 120000 index 5347990afc0..00000000000 --- a/examples/event_handling/looking_glass.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/looking_glass.py \ No newline at end of file diff --git a/examples/event_handling/path_editor.html b/examples/event_handling/path_editor.html deleted file mode 100644 index 4783e0706ec..00000000000 --- a/examples/event_handling/path_editor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/path_editor.py b/examples/event_handling/path_editor.py deleted file mode 120000 index c1f14e2da5c..00000000000 --- a/examples/event_handling/path_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/path_editor.py \ No newline at end of file diff --git a/examples/event_handling/pick_event_demo.html b/examples/event_handling/pick_event_demo.html deleted file mode 100644 index 75be336a016..00000000000 --- a/examples/event_handling/pick_event_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/pick_event_demo.py b/examples/event_handling/pick_event_demo.py deleted file mode 120000 index 75a25e3b661..00000000000 --- a/examples/event_handling/pick_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/pick_event_demo.py \ No newline at end of file diff --git a/examples/event_handling/pick_event_demo2.html b/examples/event_handling/pick_event_demo2.html deleted file mode 100644 index 813176c9169..00000000000 --- a/examples/event_handling/pick_event_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/pick_event_demo2.py b/examples/event_handling/pick_event_demo2.py deleted file mode 120000 index 66e8718d41a..00000000000 --- a/examples/event_handling/pick_event_demo2.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/pick_event_demo2.py \ No newline at end of file diff --git a/examples/event_handling/pipong.html b/examples/event_handling/pipong.html deleted file mode 100644 index 85796cdab4a..00000000000 --- a/examples/event_handling/pipong.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/pipong.py b/examples/event_handling/pipong.py deleted file mode 120000 index 25893051a0d..00000000000 --- a/examples/event_handling/pipong.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/pipong.py \ No newline at end of file diff --git a/examples/event_handling/poly_editor.html b/examples/event_handling/poly_editor.html deleted file mode 100644 index 8fef574d37b..00000000000 --- a/examples/event_handling/poly_editor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/poly_editor.py b/examples/event_handling/poly_editor.py deleted file mode 120000 index 32c3a859d8e..00000000000 --- a/examples/event_handling/poly_editor.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/poly_editor.py \ No newline at end of file diff --git a/examples/event_handling/pong_gtk.html b/examples/event_handling/pong_gtk.html deleted file mode 100644 index 0291444dd0d..00000000000 --- a/examples/event_handling/pong_gtk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/pong_gtk.py b/examples/event_handling/pong_gtk.py deleted file mode 120000 index 724a5bb6175..00000000000 --- a/examples/event_handling/pong_gtk.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/pong_gtk.py \ No newline at end of file diff --git a/examples/event_handling/resample.html b/examples/event_handling/resample.html deleted file mode 100644 index 508fba426bb..00000000000 --- a/examples/event_handling/resample.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/resample.py b/examples/event_handling/resample.py deleted file mode 120000 index 5b5657a6f17..00000000000 --- a/examples/event_handling/resample.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/resample.py \ No newline at end of file diff --git a/examples/event_handling/test_mouseclicks.html b/examples/event_handling/test_mouseclicks.html deleted file mode 100644 index b9e8b700bc5..00000000000 --- a/examples/event_handling/test_mouseclicks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/test_mouseclicks.py b/examples/event_handling/test_mouseclicks.py deleted file mode 120000 index 36e22b63151..00000000000 --- a/examples/event_handling/test_mouseclicks.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/test_mouseclicks.py \ No newline at end of file diff --git a/examples/event_handling/timers.html b/examples/event_handling/timers.html deleted file mode 100644 index d1c6e9d16f2..00000000000 --- a/examples/event_handling/timers.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/timers.py b/examples/event_handling/timers.py deleted file mode 120000 index 4d7f86a9602..00000000000 --- a/examples/event_handling/timers.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/timers.py \ No newline at end of file diff --git a/examples/event_handling/trifinder_event_demo.html b/examples/event_handling/trifinder_event_demo.html deleted file mode 100644 index 960a32ea4e8..00000000000 --- a/examples/event_handling/trifinder_event_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/trifinder_event_demo.py b/examples/event_handling/trifinder_event_demo.py deleted file mode 120000 index f4943fbcca2..00000000000 --- a/examples/event_handling/trifinder_event_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/trifinder_event_demo.py \ No newline at end of file diff --git a/examples/event_handling/viewlims.html b/examples/event_handling/viewlims.html deleted file mode 100644 index 90886f3d13c..00000000000 --- a/examples/event_handling/viewlims.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/viewlims.py b/examples/event_handling/viewlims.py deleted file mode 120000 index 2d09bb91993..00000000000 --- a/examples/event_handling/viewlims.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/viewlims.py \ No newline at end of file diff --git a/examples/event_handling/zoom_window.html b/examples/event_handling/zoom_window.html deleted file mode 100644 index 917da493cec..00000000000 --- a/examples/event_handling/zoom_window.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/event_handling/zoom_window.py b/examples/event_handling/zoom_window.py deleted file mode 120000 index b4cdc155418..00000000000 --- a/examples/event_handling/zoom_window.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/event_handling/zoom_window.py \ No newline at end of file diff --git a/examples/frontpage/index.html b/examples/frontpage/index.html deleted file mode 100644 index 24e7caa5d9b..00000000000 --- a/examples/frontpage/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/frontpage/plot_3D.html b/examples/frontpage/plot_3D.html deleted file mode 100644 index 2def8ffe8bc..00000000000 --- a/examples/frontpage/plot_3D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/frontpage/plot_3D.py b/examples/frontpage/plot_3D.py deleted file mode 120000 index e094d20a1bc..00000000000 --- a/examples/frontpage/plot_3D.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/frontpage/plot_3D.py \ No newline at end of file diff --git a/examples/frontpage/plot_contour.html b/examples/frontpage/plot_contour.html deleted file mode 100644 index 94e6fc00424..00000000000 --- a/examples/frontpage/plot_contour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/frontpage/plot_contour.py b/examples/frontpage/plot_contour.py deleted file mode 120000 index b2664d97945..00000000000 --- a/examples/frontpage/plot_contour.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/frontpage/plot_contour.py \ No newline at end of file diff --git a/examples/frontpage/plot_histogram.html b/examples/frontpage/plot_histogram.html deleted file mode 100644 index 7e8b34cef03..00000000000 --- a/examples/frontpage/plot_histogram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/frontpage/plot_histogram.py b/examples/frontpage/plot_histogram.py deleted file mode 120000 index 270faa81c9f..00000000000 --- a/examples/frontpage/plot_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/frontpage/plot_histogram.py \ No newline at end of file diff --git a/examples/frontpage/plot_membrane.html b/examples/frontpage/plot_membrane.html deleted file mode 100644 index 42968c5f735..00000000000 --- a/examples/frontpage/plot_membrane.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/frontpage/plot_membrane.py b/examples/frontpage/plot_membrane.py deleted file mode 120000 index c7b44329331..00000000000 --- a/examples/frontpage/plot_membrane.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/frontpage/plot_membrane.py \ No newline at end of file diff --git a/examples/images_contours_and_fields/contourf_log.html b/examples/images_contours_and_fields/contourf_log.html deleted file mode 100644 index 3062a8a5731..00000000000 --- a/examples/images_contours_and_fields/contourf_log.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/image_demo.html b/examples/images_contours_and_fields/image_demo.html deleted file mode 100644 index 902faf9cc62..00000000000 --- a/examples/images_contours_and_fields/image_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/image_demo_clip_path.html b/examples/images_contours_and_fields/image_demo_clip_path.html deleted file mode 100644 index d63701c8aa8..00000000000 --- a/examples/images_contours_and_fields/image_demo_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/index.html b/examples/images_contours_and_fields/index.html deleted file mode 100644 index c72b4c248dc..00000000000 --- a/examples/images_contours_and_fields/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/interpolation_methods.html b/examples/images_contours_and_fields/interpolation_methods.html deleted file mode 100644 index 3aa33e3a30d..00000000000 --- a/examples/images_contours_and_fields/interpolation_methods.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/interpolation_none_vs_nearest.html b/examples/images_contours_and_fields/interpolation_none_vs_nearest.html deleted file mode 100644 index b6dee9ca786..00000000000 --- a/examples/images_contours_and_fields/interpolation_none_vs_nearest.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/pcolormesh_levels.html b/examples/images_contours_and_fields/pcolormesh_levels.html deleted file mode 100644 index ece007d946d..00000000000 --- a/examples/images_contours_and_fields/pcolormesh_levels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/streamplot_demo_features.html b/examples/images_contours_and_fields/streamplot_demo_features.html deleted file mode 100644 index 40f92e86cd0..00000000000 --- a/examples/images_contours_and_fields/streamplot_demo_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/streamplot_demo_masking.html b/examples/images_contours_and_fields/streamplot_demo_masking.html deleted file mode 100644 index 827bf852974..00000000000 --- a/examples/images_contours_and_fields/streamplot_demo_masking.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/images_contours_and_fields/streamplot_demo_start_points.html b/examples/images_contours_and_fields/streamplot_demo_start_points.html deleted file mode 100644 index 1d99c2e8281..00000000000 --- a/examples/images_contours_and_fields/streamplot_demo_start_points.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/index.html b/examples/index.html deleted file mode 100644 index eec0cd96079..00000000000 --- a/examples/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/barh_demo.html b/examples/lines_bars_and_markers/barh_demo.html deleted file mode 100644 index 831596a9e47..00000000000 --- a/examples/lines_bars_and_markers/barh_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/fill_demo.html b/examples/lines_bars_and_markers/fill_demo.html deleted file mode 100644 index b2372cca3eb..00000000000 --- a/examples/lines_bars_and_markers/fill_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/fill_demo_features.html b/examples/lines_bars_and_markers/fill_demo_features.html deleted file mode 100644 index d3b2fe01bcf..00000000000 --- a/examples/lines_bars_and_markers/fill_demo_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/index.html b/examples/lines_bars_and_markers/index.html deleted file mode 100644 index 34b09705354..00000000000 --- a/examples/lines_bars_and_markers/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/line_demo_dash_control.html b/examples/lines_bars_and_markers/line_demo_dash_control.html deleted file mode 100644 index 44368ad64b1..00000000000 --- a/examples/lines_bars_and_markers/line_demo_dash_control.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/line_styles_reference.html b/examples/lines_bars_and_markers/line_styles_reference.html deleted file mode 100644 index 36f1d40f9a3..00000000000 --- a/examples/lines_bars_and_markers/line_styles_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/linestyles.html b/examples/lines_bars_and_markers/linestyles.html deleted file mode 100644 index a3bf7a8b6c0..00000000000 --- a/examples/lines_bars_and_markers/linestyles.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/marker_fillstyle_reference.html b/examples/lines_bars_and_markers/marker_fillstyle_reference.html deleted file mode 100644 index 3e2f8ea9f94..00000000000 --- a/examples/lines_bars_and_markers/marker_fillstyle_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/marker_reference.html b/examples/lines_bars_and_markers/marker_reference.html deleted file mode 100644 index b83e0068c78..00000000000 --- a/examples/lines_bars_and_markers/marker_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/lines_bars_and_markers/scatter_with_legend.html b/examples/lines_bars_and_markers/scatter_with_legend.html deleted file mode 100644 index 566cdb9db9c..00000000000 --- a/examples/lines_bars_and_markers/scatter_with_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/contour_manual.html b/examples/misc/contour_manual.html deleted file mode 100644 index fd33f66553f..00000000000 --- a/examples/misc/contour_manual.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/contour_manual.py b/examples/misc/contour_manual.py deleted file mode 120000 index 7fad6d60405..00000000000 --- a/examples/misc/contour_manual.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/contour_manual.py \ No newline at end of file diff --git a/examples/misc/developer_commit_history.html b/examples/misc/developer_commit_history.html deleted file mode 100644 index 5d8c1eb3bf8..00000000000 --- a/examples/misc/developer_commit_history.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/font_indexing.html b/examples/misc/font_indexing.html deleted file mode 100644 index c70fd773aa8..00000000000 --- a/examples/misc/font_indexing.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/font_indexing.py b/examples/misc/font_indexing.py deleted file mode 120000 index 1174f1a9573..00000000000 --- a/examples/misc/font_indexing.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/font_indexing.py \ No newline at end of file diff --git a/examples/misc/ftface_props.html b/examples/misc/ftface_props.html deleted file mode 100644 index bec7ff00d42..00000000000 --- a/examples/misc/ftface_props.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/ftface_props.py b/examples/misc/ftface_props.py deleted file mode 120000 index 17e8f8c51c2..00000000000 --- a/examples/misc/ftface_props.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/ftface_props.py \ No newline at end of file diff --git a/examples/misc/image_thumbnail.html b/examples/misc/image_thumbnail.html deleted file mode 100644 index afb8f26f29a..00000000000 --- a/examples/misc/image_thumbnail.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/image_thumbnail.py b/examples/misc/image_thumbnail.py deleted file mode 120000 index 02ce06e24e6..00000000000 --- a/examples/misc/image_thumbnail.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/misc/image_thumbnail.py \ No newline at end of file diff --git a/examples/misc/index.html b/examples/misc/index.html deleted file mode 100644 index 8bce37a801e..00000000000 --- a/examples/misc/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/longshort.html b/examples/misc/longshort.html deleted file mode 100644 index ffa27656c28..00000000000 --- a/examples/misc/longshort.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/longshort.py b/examples/misc/longshort.py deleted file mode 120000 index 3e3a456bc2f..00000000000 --- a/examples/misc/longshort.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/longshort.py \ No newline at end of file diff --git a/examples/misc/multiprocess.html b/examples/misc/multiprocess.html deleted file mode 100644 index f723cc53675..00000000000 --- a/examples/misc/multiprocess.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/multiprocess.py b/examples/misc/multiprocess.py deleted file mode 120000 index d3930e66d91..00000000000 --- a/examples/misc/multiprocess.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/misc/multiprocess.py \ No newline at end of file diff --git a/examples/misc/rasterization_demo.html b/examples/misc/rasterization_demo.html deleted file mode 100644 index ff1768d9519..00000000000 --- a/examples/misc/rasterization_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/rasterization_demo.py b/examples/misc/rasterization_demo.py deleted file mode 120000 index 19cdf976791..00000000000 --- a/examples/misc/rasterization_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/rasterization_demo.py \ No newline at end of file diff --git a/examples/misc/rc_traits.html b/examples/misc/rc_traits.html deleted file mode 100644 index f0353069d40..00000000000 --- a/examples/misc/rc_traits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/rc_traits.py b/examples/misc/rc_traits.py deleted file mode 120000 index 58937cd5922..00000000000 --- a/examples/misc/rc_traits.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/misc/rc_traits.py \ No newline at end of file diff --git a/examples/misc/rec_groupby_demo.html b/examples/misc/rec_groupby_demo.html deleted file mode 100644 index 0e812619a88..00000000000 --- a/examples/misc/rec_groupby_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/rec_groupby_demo.py b/examples/misc/rec_groupby_demo.py deleted file mode 120000 index c48badd9724..00000000000 --- a/examples/misc/rec_groupby_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/rec_groupby_demo.py \ No newline at end of file diff --git a/examples/misc/rec_join_demo.html b/examples/misc/rec_join_demo.html deleted file mode 100644 index b5bd6751299..00000000000 --- a/examples/misc/rec_join_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/rec_join_demo.py b/examples/misc/rec_join_demo.py deleted file mode 120000 index cfa780aae87..00000000000 --- a/examples/misc/rec_join_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/rec_join_demo.py \ No newline at end of file diff --git a/examples/misc/sample_data_demo.html b/examples/misc/sample_data_demo.html deleted file mode 100644 index d74958d2d4b..00000000000 --- a/examples/misc/sample_data_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/sample_data_demo.py b/examples/misc/sample_data_demo.py deleted file mode 120000 index e05f13a8eca..00000000000 --- a/examples/misc/sample_data_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/sample_data_demo.py \ No newline at end of file diff --git a/examples/misc/svg_filter_line.html b/examples/misc/svg_filter_line.html deleted file mode 100644 index f9d333a8832..00000000000 --- a/examples/misc/svg_filter_line.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/svg_filter_line.py b/examples/misc/svg_filter_line.py deleted file mode 120000 index 9ba30016e72..00000000000 --- a/examples/misc/svg_filter_line.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/svg_filter_line.py \ No newline at end of file diff --git a/examples/misc/svg_filter_pie.html b/examples/misc/svg_filter_pie.html deleted file mode 100644 index f05a1f9f40b..00000000000 --- a/examples/misc/svg_filter_pie.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/svg_filter_pie.py b/examples/misc/svg_filter_pie.py deleted file mode 120000 index 11b781aca2a..00000000000 --- a/examples/misc/svg_filter_pie.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/svg_filter_pie.py \ No newline at end of file diff --git a/examples/misc/tight_bbox_test.html b/examples/misc/tight_bbox_test.html deleted file mode 100644 index 5a0ec2750f2..00000000000 --- a/examples/misc/tight_bbox_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/misc/tight_bbox_test.py b/examples/misc/tight_bbox_test.py deleted file mode 120000 index f7415c4d83b..00000000000 --- a/examples/misc/tight_bbox_test.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/misc/tight_bbox_test.py \ No newline at end of file diff --git a/examples/mplot3d/2dcollections3d_demo.html b/examples/mplot3d/2dcollections3d_demo.html deleted file mode 100644 index 20864921c20..00000000000 --- a/examples/mplot3d/2dcollections3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/bars3d_demo.html b/examples/mplot3d/bars3d_demo.html deleted file mode 100644 index c3544308b9e..00000000000 --- a/examples/mplot3d/bars3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/contour3d_demo.html b/examples/mplot3d/contour3d_demo.html deleted file mode 100644 index 4262952bbd4..00000000000 --- a/examples/mplot3d/contour3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/contour3d_demo2.html b/examples/mplot3d/contour3d_demo2.html deleted file mode 100644 index 66c04352938..00000000000 --- a/examples/mplot3d/contour3d_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/contour3d_demo3.html b/examples/mplot3d/contour3d_demo3.html deleted file mode 100644 index 9de748892cd..00000000000 --- a/examples/mplot3d/contour3d_demo3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/contourf3d_demo.html b/examples/mplot3d/contourf3d_demo.html deleted file mode 100644 index 9acc3348115..00000000000 --- a/examples/mplot3d/contourf3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/contourf3d_demo2.html b/examples/mplot3d/contourf3d_demo2.html deleted file mode 100644 index 380b5a5f7ca..00000000000 --- a/examples/mplot3d/contourf3d_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/custom_shaded_3d_surface.html b/examples/mplot3d/custom_shaded_3d_surface.html deleted file mode 100644 index 78247d387a5..00000000000 --- a/examples/mplot3d/custom_shaded_3d_surface.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/hist3d_demo.html b/examples/mplot3d/hist3d_demo.html deleted file mode 100644 index c7bda398f47..00000000000 --- a/examples/mplot3d/hist3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/index.html b/examples/mplot3d/index.html deleted file mode 100644 index 8056e2bcb2d..00000000000 --- a/examples/mplot3d/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/lines3d_demo.html b/examples/mplot3d/lines3d_demo.html deleted file mode 100644 index c7331e67105..00000000000 --- a/examples/mplot3d/lines3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/lorenz_attractor.html b/examples/mplot3d/lorenz_attractor.html deleted file mode 100644 index e65c0e067b8..00000000000 --- a/examples/mplot3d/lorenz_attractor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/mixed_subplots_demo.html b/examples/mplot3d/mixed_subplots_demo.html deleted file mode 100644 index 72ca321ef15..00000000000 --- a/examples/mplot3d/mixed_subplots_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/offset_demo.html b/examples/mplot3d/offset_demo.html deleted file mode 100644 index a3c923212e9..00000000000 --- a/examples/mplot3d/offset_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/pathpatch3d_demo.html b/examples/mplot3d/pathpatch3d_demo.html deleted file mode 100644 index 15e66c59721..00000000000 --- a/examples/mplot3d/pathpatch3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/polys3d_demo.html b/examples/mplot3d/polys3d_demo.html deleted file mode 100644 index ee6789f64b1..00000000000 --- a/examples/mplot3d/polys3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/quiver3d_demo.html b/examples/mplot3d/quiver3d_demo.html deleted file mode 100644 index 99455b85efe..00000000000 --- a/examples/mplot3d/quiver3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/rotate_axes3d_demo.html b/examples/mplot3d/rotate_axes3d_demo.html deleted file mode 100644 index b99b8e63cac..00000000000 --- a/examples/mplot3d/rotate_axes3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/scatter3d_demo.html b/examples/mplot3d/scatter3d_demo.html deleted file mode 100644 index 55c3c664812..00000000000 --- a/examples/mplot3d/scatter3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/subplot3d_demo.html b/examples/mplot3d/subplot3d_demo.html deleted file mode 100644 index b58e638e0bd..00000000000 --- a/examples/mplot3d/subplot3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/surface3d_demo.html b/examples/mplot3d/surface3d_demo.html deleted file mode 100644 index ced39702a31..00000000000 --- a/examples/mplot3d/surface3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/surface3d_demo2.html b/examples/mplot3d/surface3d_demo2.html deleted file mode 100644 index a39c2526117..00000000000 --- a/examples/mplot3d/surface3d_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/surface3d_demo3.html b/examples/mplot3d/surface3d_demo3.html deleted file mode 100644 index 6189fb712d5..00000000000 --- a/examples/mplot3d/surface3d_demo3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/surface3d_radial_demo.html b/examples/mplot3d/surface3d_radial_demo.html deleted file mode 100644 index 86e21fa5f18..00000000000 --- a/examples/mplot3d/surface3d_radial_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/text3d_demo.html b/examples/mplot3d/text3d_demo.html deleted file mode 100644 index 071d1ecf90d..00000000000 --- a/examples/mplot3d/text3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/tricontour3d_demo.html b/examples/mplot3d/tricontour3d_demo.html deleted file mode 100644 index b5ea4b225a0..00000000000 --- a/examples/mplot3d/tricontour3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/tricontourf3d_demo.html b/examples/mplot3d/tricontourf3d_demo.html deleted file mode 100644 index 0030216d1cf..00000000000 --- a/examples/mplot3d/tricontourf3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/trisurf3d_demo.html b/examples/mplot3d/trisurf3d_demo.html deleted file mode 100644 index 37b35a9d45f..00000000000 --- a/examples/mplot3d/trisurf3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/trisurf3d_demo2.html b/examples/mplot3d/trisurf3d_demo2.html deleted file mode 100644 index 05bd29a2372..00000000000 --- a/examples/mplot3d/trisurf3d_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/wire3d_animation_demo.html b/examples/mplot3d/wire3d_animation_demo.html deleted file mode 100644 index 14124d28aaf..00000000000 --- a/examples/mplot3d/wire3d_animation_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/wire3d_demo.html b/examples/mplot3d/wire3d_demo.html deleted file mode 100644 index 0d70488824a..00000000000 --- a/examples/mplot3d/wire3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/mplot3d/wire3d_zero_stride.html b/examples/mplot3d/wire3d_zero_stride.html deleted file mode 100644 index 984e630d8ba..00000000000 --- a/examples/mplot3d/wire3d_zero_stride.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/animate_decay_tk_blit.html b/examples/old_animation/animate_decay_tk_blit.html deleted file mode 100644 index 6f7e6377672..00000000000 --- a/examples/old_animation/animate_decay_tk_blit.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/animation_blit_gtk.html b/examples/old_animation/animation_blit_gtk.html deleted file mode 100644 index 43770a26b44..00000000000 --- a/examples/old_animation/animation_blit_gtk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/animation_blit_gtk2.html b/examples/old_animation/animation_blit_gtk2.html deleted file mode 100644 index 26a2c96b8e7..00000000000 --- a/examples/old_animation/animation_blit_gtk2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/animation_blit_qt4.html b/examples/old_animation/animation_blit_qt4.html deleted file mode 100644 index 86b94099dea..00000000000 --- a/examples/old_animation/animation_blit_qt4.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/animation_blit_tk.html b/examples/old_animation/animation_blit_tk.html deleted file mode 100644 index 54b48d85356..00000000000 --- a/examples/old_animation/animation_blit_tk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/animation_blit_wx.html b/examples/old_animation/animation_blit_wx.html deleted file mode 100644 index 9e6df8a42cb..00000000000 --- a/examples/old_animation/animation_blit_wx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/draggable_legend.html b/examples/old_animation/draggable_legend.html deleted file mode 100644 index 97b8bda0cd9..00000000000 --- a/examples/old_animation/draggable_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/dynamic_collection.html b/examples/old_animation/dynamic_collection.html deleted file mode 100644 index 3c0c42a3625..00000000000 --- a/examples/old_animation/dynamic_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/dynamic_image_gtkagg.html b/examples/old_animation/dynamic_image_gtkagg.html deleted file mode 100644 index c8d19a02408..00000000000 --- a/examples/old_animation/dynamic_image_gtkagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/dynamic_image_wxagg2.html b/examples/old_animation/dynamic_image_wxagg2.html deleted file mode 100644 index fbc305b6277..00000000000 --- a/examples/old_animation/dynamic_image_wxagg2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/gtk_timeout.html b/examples/old_animation/gtk_timeout.html deleted file mode 100644 index 9e2f162fcec..00000000000 --- a/examples/old_animation/gtk_timeout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/histogram_tkagg.html b/examples/old_animation/histogram_tkagg.html deleted file mode 100644 index 65a21ed6afd..00000000000 --- a/examples/old_animation/histogram_tkagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/index.html b/examples/old_animation/index.html deleted file mode 100644 index 7481ec18f24..00000000000 --- a/examples/old_animation/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/movie_demo.html b/examples/old_animation/movie_demo.html deleted file mode 100644 index b1829224308..00000000000 --- a/examples/old_animation/movie_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/simple_anim_gtk.html b/examples/old_animation/simple_anim_gtk.html deleted file mode 100644 index 22d2b3267cc..00000000000 --- a/examples/old_animation/simple_anim_gtk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/simple_anim_tkagg.html b/examples/old_animation/simple_anim_tkagg.html deleted file mode 100644 index b514e0764b9..00000000000 --- a/examples/old_animation/simple_anim_tkagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/simple_idle_wx.html b/examples/old_animation/simple_idle_wx.html deleted file mode 100644 index 0a0d7d69fe8..00000000000 --- a/examples/old_animation/simple_idle_wx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/simple_timer_wx.html b/examples/old_animation/simple_timer_wx.html deleted file mode 100644 index 32f98859f84..00000000000 --- a/examples/old_animation/simple_timer_wx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/old_animation/strip_chart_demo.html b/examples/old_animation/strip_chart_demo.html deleted file mode 100644 index f8b0e05a035..00000000000 --- a/examples/old_animation/strip_chart_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pie_and_polar_charts/index.html b/examples/pie_and_polar_charts/index.html deleted file mode 100644 index 33fa0cab778..00000000000 --- a/examples/pie_and_polar_charts/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pie_and_polar_charts/pie_demo_features.html b/examples/pie_and_polar_charts/pie_demo_features.html deleted file mode 100644 index 0f830f6b1bd..00000000000 --- a/examples/pie_and_polar_charts/pie_demo_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pie_and_polar_charts/polar_bar_demo.html b/examples/pie_and_polar_charts/polar_bar_demo.html deleted file mode 100644 index a5c4bb7737e..00000000000 --- a/examples/pie_and_polar_charts/polar_bar_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pie_and_polar_charts/polar_scatter_demo.html b/examples/pie_and_polar_charts/polar_scatter_demo.html deleted file mode 100644 index a0219586613..00000000000 --- a/examples/pie_and_polar_charts/polar_scatter_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pngsuite/index.html b/examples/pngsuite/index.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/pngsuite/index.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/pngsuite/pngsuite.html b/examples/pngsuite/pngsuite.html deleted file mode 100644 index cb04d5ca9bd..00000000000 --- a/examples/pngsuite/pngsuite.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/examples/pylab_examples/accented_text.html b/examples/pylab_examples/accented_text.html deleted file mode 100644 index 18e8848feb4..00000000000 --- a/examples/pylab_examples/accented_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/agg_buffer.html b/examples/pylab_examples/agg_buffer.html deleted file mode 100644 index 00d152975d8..00000000000 --- a/examples/pylab_examples/agg_buffer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/agg_buffer_to_array.html b/examples/pylab_examples/agg_buffer_to_array.html deleted file mode 100644 index a403bcda866..00000000000 --- a/examples/pylab_examples/agg_buffer_to_array.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/alignment_test.html b/examples/pylab_examples/alignment_test.html deleted file mode 100644 index 569bf65a06d..00000000000 --- a/examples/pylab_examples/alignment_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/anchored_artists.html b/examples/pylab_examples/anchored_artists.html deleted file mode 100644 index 7de15715004..00000000000 --- a/examples/pylab_examples/anchored_artists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/animation_demo.html b/examples/pylab_examples/animation_demo.html deleted file mode 100644 index 6c5a5fe9f9f..00000000000 --- a/examples/pylab_examples/animation_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/annotation_demo.html b/examples/pylab_examples/annotation_demo.html deleted file mode 100644 index 025b27beeb6..00000000000 --- a/examples/pylab_examples/annotation_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/annotation_demo2.html b/examples/pylab_examples/annotation_demo2.html deleted file mode 100644 index 66f1433c786..00000000000 --- a/examples/pylab_examples/annotation_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/annotation_demo3.html b/examples/pylab_examples/annotation_demo3.html deleted file mode 100644 index 4a6747da2ee..00000000000 --- a/examples/pylab_examples/annotation_demo3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/anscombe.html b/examples/pylab_examples/anscombe.html deleted file mode 100644 index 27726d058cd..00000000000 --- a/examples/pylab_examples/anscombe.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/arctest.html b/examples/pylab_examples/arctest.html deleted file mode 100644 index 02eedb7b134..00000000000 --- a/examples/pylab_examples/arctest.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/arrow_demo.html b/examples/pylab_examples/arrow_demo.html deleted file mode 100644 index d78101533f4..00000000000 --- a/examples/pylab_examples/arrow_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/arrow_simple_demo.html b/examples/pylab_examples/arrow_simple_demo.html deleted file mode 100644 index 76dcf3af124..00000000000 --- a/examples/pylab_examples/arrow_simple_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/aspect_loglog.html b/examples/pylab_examples/aspect_loglog.html deleted file mode 100644 index ccb3f07610f..00000000000 --- a/examples/pylab_examples/aspect_loglog.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/axes_demo.html b/examples/pylab_examples/axes_demo.html deleted file mode 100644 index 9c2add054b0..00000000000 --- a/examples/pylab_examples/axes_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/axes_props.html b/examples/pylab_examples/axes_props.html deleted file mode 100644 index bf2438d0e2c..00000000000 --- a/examples/pylab_examples/axes_props.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/axes_zoom_effect.html b/examples/pylab_examples/axes_zoom_effect.html deleted file mode 100644 index 1ce507ea8c2..00000000000 --- a/examples/pylab_examples/axes_zoom_effect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/axhspan_demo.html b/examples/pylab_examples/axhspan_demo.html deleted file mode 100644 index 291c8841e46..00000000000 --- a/examples/pylab_examples/axhspan_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/axis_equal_demo.html b/examples/pylab_examples/axis_equal_demo.html deleted file mode 100644 index 384378f090a..00000000000 --- a/examples/pylab_examples/axis_equal_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/bar_stacked.html b/examples/pylab_examples/bar_stacked.html deleted file mode 100644 index eb6fcc62a3c..00000000000 --- a/examples/pylab_examples/bar_stacked.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/barb_demo.html b/examples/pylab_examples/barb_demo.html deleted file mode 100644 index 050a0bc7e0b..00000000000 --- a/examples/pylab_examples/barb_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/barchart_demo.html b/examples/pylab_examples/barchart_demo.html deleted file mode 100644 index 039a40acf0e..00000000000 --- a/examples/pylab_examples/barchart_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/barchart_demo2.html b/examples/pylab_examples/barchart_demo2.html deleted file mode 100644 index 9a16a04dd31..00000000000 --- a/examples/pylab_examples/barchart_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/barcode_demo.html b/examples/pylab_examples/barcode_demo.html deleted file mode 100644 index 4a63b3b6c19..00000000000 --- a/examples/pylab_examples/barcode_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/boxplot_demo.html b/examples/pylab_examples/boxplot_demo.html deleted file mode 100644 index 822d4903c6f..00000000000 --- a/examples/pylab_examples/boxplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/boxplot_demo2.html b/examples/pylab_examples/boxplot_demo2.html deleted file mode 100644 index 324795b6db9..00000000000 --- a/examples/pylab_examples/boxplot_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/boxplot_demo3.html b/examples/pylab_examples/boxplot_demo3.html deleted file mode 100644 index abc3bab2d6e..00000000000 --- a/examples/pylab_examples/boxplot_demo3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/break.html b/examples/pylab_examples/break.html deleted file mode 100644 index d0124dcefd1..00000000000 --- a/examples/pylab_examples/break.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/broken_axis.html b/examples/pylab_examples/broken_axis.html deleted file mode 100644 index 1ad84170da0..00000000000 --- a/examples/pylab_examples/broken_axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/broken_barh.html b/examples/pylab_examples/broken_barh.html deleted file mode 100644 index 83ded261e89..00000000000 --- a/examples/pylab_examples/broken_barh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/centered_ticklabels.html b/examples/pylab_examples/centered_ticklabels.html deleted file mode 100644 index 2b958594acc..00000000000 --- a/examples/pylab_examples/centered_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/clippedline.html b/examples/pylab_examples/clippedline.html deleted file mode 100644 index 80dcb53ee39..00000000000 --- a/examples/pylab_examples/clippedline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/cohere_demo.html b/examples/pylab_examples/cohere_demo.html deleted file mode 100644 index e0f3db9f28f..00000000000 --- a/examples/pylab_examples/cohere_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/color_by_yvalue.html b/examples/pylab_examples/color_by_yvalue.html deleted file mode 100644 index b011db3db62..00000000000 --- a/examples/pylab_examples/color_by_yvalue.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/color_demo.html b/examples/pylab_examples/color_demo.html deleted file mode 100644 index 17529727270..00000000000 --- a/examples/pylab_examples/color_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/colorbar_tick_labelling_demo.html b/examples/pylab_examples/colorbar_tick_labelling_demo.html deleted file mode 100644 index 100f4532447..00000000000 --- a/examples/pylab_examples/colorbar_tick_labelling_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/colours.html b/examples/pylab_examples/colours.html deleted file mode 100644 index 31a827afc59..00000000000 --- a/examples/pylab_examples/colours.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/colours.py b/examples/pylab_examples/colours.py deleted file mode 120000 index b0f0551262c..00000000000 --- a/examples/pylab_examples/colours.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/colours.py \ No newline at end of file diff --git a/examples/pylab_examples/contour_corner_mask.html b/examples/pylab_examples/contour_corner_mask.html deleted file mode 100644 index 70db0874612..00000000000 --- a/examples/pylab_examples/contour_corner_mask.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/contour_demo.html b/examples/pylab_examples/contour_demo.html deleted file mode 100644 index ac75fd27601..00000000000 --- a/examples/pylab_examples/contour_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/contour_image.html b/examples/pylab_examples/contour_image.html deleted file mode 100644 index 56de7bb47cf..00000000000 --- a/examples/pylab_examples/contour_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/contour_label_demo.html b/examples/pylab_examples/contour_label_demo.html deleted file mode 100644 index 8f39cca169c..00000000000 --- a/examples/pylab_examples/contour_label_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/contourf_demo.html b/examples/pylab_examples/contourf_demo.html deleted file mode 100644 index c8edc209ebb..00000000000 --- a/examples/pylab_examples/contourf_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/contourf_hatching.html b/examples/pylab_examples/contourf_hatching.html deleted file mode 100644 index 801f64e32e9..00000000000 --- a/examples/pylab_examples/contourf_hatching.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/contourf_log.html b/examples/pylab_examples/contourf_log.html deleted file mode 100644 index fa8250fe29f..00000000000 --- a/examples/pylab_examples/contourf_log.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/coords_demo.html b/examples/pylab_examples/coords_demo.html deleted file mode 100644 index b57a775b5bd..00000000000 --- a/examples/pylab_examples/coords_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/coords_report.html b/examples/pylab_examples/coords_report.html deleted file mode 100644 index f934ed0605f..00000000000 --- a/examples/pylab_examples/coords_report.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/csd_demo.html b/examples/pylab_examples/csd_demo.html deleted file mode 100644 index 9b541fc2f49..00000000000 --- a/examples/pylab_examples/csd_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/cursor_demo.html b/examples/pylab_examples/cursor_demo.html deleted file mode 100644 index 81063d8e27e..00000000000 --- a/examples/pylab_examples/cursor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/cursor_demo.py b/examples/pylab_examples/cursor_demo.py deleted file mode 120000 index e1e0b2af492..00000000000 --- a/examples/pylab_examples/cursor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/cursor_demo.py \ No newline at end of file diff --git a/examples/pylab_examples/custom_cmap.html b/examples/pylab_examples/custom_cmap.html deleted file mode 100644 index 19545199b81..00000000000 --- a/examples/pylab_examples/custom_cmap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/custom_figure_class.html b/examples/pylab_examples/custom_figure_class.html deleted file mode 100644 index fc92467b5c4..00000000000 --- a/examples/pylab_examples/custom_figure_class.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/custom_ticker1.html b/examples/pylab_examples/custom_ticker1.html deleted file mode 100644 index 03686ad400a..00000000000 --- a/examples/pylab_examples/custom_ticker1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/customize_rc.html b/examples/pylab_examples/customize_rc.html deleted file mode 100644 index 02974f45ec1..00000000000 --- a/examples/pylab_examples/customize_rc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/dannys_example.html b/examples/pylab_examples/dannys_example.html deleted file mode 100644 index 4bc6543af33..00000000000 --- a/examples/pylab_examples/dannys_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/dashpointlabel.html b/examples/pylab_examples/dashpointlabel.html deleted file mode 100644 index dc65986afe3..00000000000 --- a/examples/pylab_examples/dashpointlabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/data_helper.html b/examples/pylab_examples/data_helper.html deleted file mode 100644 index e653ee223a1..00000000000 --- a/examples/pylab_examples/data_helper.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/date_demo1.html b/examples/pylab_examples/date_demo1.html deleted file mode 100644 index 08c4064c351..00000000000 --- a/examples/pylab_examples/date_demo1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/date_demo2.html b/examples/pylab_examples/date_demo2.html deleted file mode 100644 index d3822c9cf9f..00000000000 --- a/examples/pylab_examples/date_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/date_demo_convert.html b/examples/pylab_examples/date_demo_convert.html deleted file mode 100644 index aabb58813da..00000000000 --- a/examples/pylab_examples/date_demo_convert.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/date_demo_rrule.html b/examples/pylab_examples/date_demo_rrule.html deleted file mode 100644 index d9841ddf7d1..00000000000 --- a/examples/pylab_examples/date_demo_rrule.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/date_index_formatter.html b/examples/pylab_examples/date_index_formatter.html deleted file mode 100644 index 03a6539d774..00000000000 --- a/examples/pylab_examples/date_index_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/demo_agg_filter.html b/examples/pylab_examples/demo_agg_filter.html deleted file mode 100644 index 504a7336fa9..00000000000 --- a/examples/pylab_examples/demo_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/demo_annotation_box.html b/examples/pylab_examples/demo_annotation_box.html deleted file mode 100644 index 89dc5afb470..00000000000 --- a/examples/pylab_examples/demo_annotation_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/demo_bboximage.html b/examples/pylab_examples/demo_bboximage.html deleted file mode 100644 index a7484e20521..00000000000 --- a/examples/pylab_examples/demo_bboximage.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/demo_ribbon_box.html b/examples/pylab_examples/demo_ribbon_box.html deleted file mode 100644 index 85694372070..00000000000 --- a/examples/pylab_examples/demo_ribbon_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/demo_text_path.html b/examples/pylab_examples/demo_text_path.html deleted file mode 100644 index a3af2bae73b..00000000000 --- a/examples/pylab_examples/demo_text_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/demo_text_rotation_mode.html b/examples/pylab_examples/demo_text_rotation_mode.html deleted file mode 100644 index 4f4035dd200..00000000000 --- a/examples/pylab_examples/demo_text_rotation_mode.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/demo_tight_layout.html b/examples/pylab_examples/demo_tight_layout.html deleted file mode 100644 index 86f69734bee..00000000000 --- a/examples/pylab_examples/demo_tight_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/dolphin.html b/examples/pylab_examples/dolphin.html deleted file mode 100644 index f6474edd570..00000000000 --- a/examples/pylab_examples/dolphin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/ellipse_collection.html b/examples/pylab_examples/ellipse_collection.html deleted file mode 100644 index d96d4ff240f..00000000000 --- a/examples/pylab_examples/ellipse_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/ellipse_demo.html b/examples/pylab_examples/ellipse_demo.html deleted file mode 100644 index 4c257e70d1d..00000000000 --- a/examples/pylab_examples/ellipse_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/ellipse_rotated.html b/examples/pylab_examples/ellipse_rotated.html deleted file mode 100644 index d7656b4d798..00000000000 --- a/examples/pylab_examples/ellipse_rotated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/equal_aspect_ratio.html b/examples/pylab_examples/equal_aspect_ratio.html deleted file mode 100644 index 393951634ea..00000000000 --- a/examples/pylab_examples/equal_aspect_ratio.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/errorbar_limits.html b/examples/pylab_examples/errorbar_limits.html deleted file mode 100644 index 1866747fcc8..00000000000 --- a/examples/pylab_examples/errorbar_limits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/errorbar_subsample.html b/examples/pylab_examples/errorbar_subsample.html deleted file mode 100644 index f21ed839b24..00000000000 --- a/examples/pylab_examples/errorbar_subsample.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/eventcollection_demo.html b/examples/pylab_examples/eventcollection_demo.html deleted file mode 100644 index 5bab693f765..00000000000 --- a/examples/pylab_examples/eventcollection_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/eventplot_demo.html b/examples/pylab_examples/eventplot_demo.html deleted file mode 100644 index 4953786de27..00000000000 --- a/examples/pylab_examples/eventplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fancyarrow_demo.html b/examples/pylab_examples/fancyarrow_demo.html deleted file mode 100644 index 57f0f5698e1..00000000000 --- a/examples/pylab_examples/fancyarrow_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fancybox_demo.html b/examples/pylab_examples/fancybox_demo.html deleted file mode 100644 index 3788b3fdc44..00000000000 --- a/examples/pylab_examples/fancybox_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fancybox_demo2.html b/examples/pylab_examples/fancybox_demo2.html deleted file mode 100644 index cc4bd57bf61..00000000000 --- a/examples/pylab_examples/fancybox_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fancytextbox_demo.html b/examples/pylab_examples/fancytextbox_demo.html deleted file mode 100644 index 7511620dace..00000000000 --- a/examples/pylab_examples/fancytextbox_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/figimage_demo.html b/examples/pylab_examples/figimage_demo.html deleted file mode 100644 index fcf5f27603e..00000000000 --- a/examples/pylab_examples/figimage_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/figlegend_demo.html b/examples/pylab_examples/figlegend_demo.html deleted file mode 100644 index 23ccf0fdb91..00000000000 --- a/examples/pylab_examples/figlegend_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/figure_title.html b/examples/pylab_examples/figure_title.html deleted file mode 100644 index 1a6a764efe2..00000000000 --- a/examples/pylab_examples/figure_title.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fill_between_demo.html b/examples/pylab_examples/fill_between_demo.html deleted file mode 100644 index c293b1bcb67..00000000000 --- a/examples/pylab_examples/fill_between_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fill_betweenx_demo.html b/examples/pylab_examples/fill_betweenx_demo.html deleted file mode 100644 index b19efe8984a..00000000000 --- a/examples/pylab_examples/fill_betweenx_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fill_spiral.html b/examples/pylab_examples/fill_spiral.html deleted file mode 100644 index f2a0ef5aa05..00000000000 --- a/examples/pylab_examples/fill_spiral.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/filledmarker_demo.html b/examples/pylab_examples/filledmarker_demo.html deleted file mode 100644 index 292e59069c8..00000000000 --- a/examples/pylab_examples/filledmarker_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/finance_demo.html b/examples/pylab_examples/finance_demo.html deleted file mode 100644 index 3afd53e7529..00000000000 --- a/examples/pylab_examples/finance_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/finance_work2.html b/examples/pylab_examples/finance_work2.html deleted file mode 100644 index f19397484fd..00000000000 --- a/examples/pylab_examples/finance_work2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/findobj_demo.html b/examples/pylab_examples/findobj_demo.html deleted file mode 100644 index f3bb3ca25ae..00000000000 --- a/examples/pylab_examples/findobj_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/font_table_ttf.html b/examples/pylab_examples/font_table_ttf.html deleted file mode 100644 index bcd535bd183..00000000000 --- a/examples/pylab_examples/font_table_ttf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/font_table_ttf.py b/examples/pylab_examples/font_table_ttf.py deleted file mode 120000 index 71beacd70c1..00000000000 --- a/examples/pylab_examples/font_table_ttf.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/font_table_ttf.py \ No newline at end of file diff --git a/examples/pylab_examples/fonts_demo.html b/examples/pylab_examples/fonts_demo.html deleted file mode 100644 index 1a3596b63e8..00000000000 --- a/examples/pylab_examples/fonts_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/fonts_demo_kw.html b/examples/pylab_examples/fonts_demo_kw.html deleted file mode 100644 index 0ff68dd145b..00000000000 --- a/examples/pylab_examples/fonts_demo_kw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/ganged_plots.html b/examples/pylab_examples/ganged_plots.html deleted file mode 100644 index 34552c68fe4..00000000000 --- a/examples/pylab_examples/ganged_plots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/geo_demo.html b/examples/pylab_examples/geo_demo.html deleted file mode 100644 index 21d067fc037..00000000000 --- a/examples/pylab_examples/geo_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/ginput_demo.html b/examples/pylab_examples/ginput_demo.html deleted file mode 100644 index 8fabb677767..00000000000 --- a/examples/pylab_examples/ginput_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/ginput_demo.py b/examples/pylab_examples/ginput_demo.py deleted file mode 120000 index 367c51226b0..00000000000 --- a/examples/pylab_examples/ginput_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/ginput_demo.py \ No newline at end of file diff --git a/examples/pylab_examples/ginput_manual_clabel.html b/examples/pylab_examples/ginput_manual_clabel.html deleted file mode 100644 index b9dbbeccf3f..00000000000 --- a/examples/pylab_examples/ginput_manual_clabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/ginput_manual_clabel.py b/examples/pylab_examples/ginput_manual_clabel.py deleted file mode 120000 index acb53c0fd57..00000000000 --- a/examples/pylab_examples/ginput_manual_clabel.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/ginput_manual_clabel.py \ No newline at end of file diff --git a/examples/pylab_examples/gradient_bar.html b/examples/pylab_examples/gradient_bar.html deleted file mode 100644 index 14adf4b5aa1..00000000000 --- a/examples/pylab_examples/gradient_bar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/griddata_demo.html b/examples/pylab_examples/griddata_demo.html deleted file mode 100644 index 8d832a8a73d..00000000000 --- a/examples/pylab_examples/griddata_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hatch_demo.html b/examples/pylab_examples/hatch_demo.html deleted file mode 100644 index 35315b512e7..00000000000 --- a/examples/pylab_examples/hatch_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hexbin_demo.html b/examples/pylab_examples/hexbin_demo.html deleted file mode 100644 index 44032e70495..00000000000 --- a/examples/pylab_examples/hexbin_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hexbin_demo2.html b/examples/pylab_examples/hexbin_demo2.html deleted file mode 100644 index 98070d6fade..00000000000 --- a/examples/pylab_examples/hexbin_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hist2d_demo.html b/examples/pylab_examples/hist2d_demo.html deleted file mode 100644 index c43cf5ac671..00000000000 --- a/examples/pylab_examples/hist2d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hist2d_log_demo.html b/examples/pylab_examples/hist2d_log_demo.html deleted file mode 100644 index 0ecd2e9e5c1..00000000000 --- a/examples/pylab_examples/hist2d_log_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hist_colormapped.html b/examples/pylab_examples/hist_colormapped.html deleted file mode 100644 index 5e845e99c43..00000000000 --- a/examples/pylab_examples/hist_colormapped.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/histogram_demo_extended.html b/examples/pylab_examples/histogram_demo_extended.html deleted file mode 100644 index c553b620abf..00000000000 --- a/examples/pylab_examples/histogram_demo_extended.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/histogram_percent_demo.html b/examples/pylab_examples/histogram_percent_demo.html deleted file mode 100644 index ab201ef2c80..00000000000 --- a/examples/pylab_examples/histogram_percent_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hyperlinks.html b/examples/pylab_examples/hyperlinks.html deleted file mode 100644 index 7e717802d90..00000000000 --- a/examples/pylab_examples/hyperlinks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/hyperlinks.py b/examples/pylab_examples/hyperlinks.py deleted file mode 120000 index da153d68ab1..00000000000 --- a/examples/pylab_examples/hyperlinks.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/hyperlinks.py \ No newline at end of file diff --git a/examples/pylab_examples/image_clip_path.html b/examples/pylab_examples/image_clip_path.html deleted file mode 100644 index 1316ddfceee..00000000000 --- a/examples/pylab_examples/image_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/image_demo.html b/examples/pylab_examples/image_demo.html deleted file mode 100644 index ef992efd814..00000000000 --- a/examples/pylab_examples/image_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/image_demo2.html b/examples/pylab_examples/image_demo2.html deleted file mode 100644 index 8c607f9a000..00000000000 --- a/examples/pylab_examples/image_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/image_interp.html b/examples/pylab_examples/image_interp.html deleted file mode 100644 index ca24c4a058e..00000000000 --- a/examples/pylab_examples/image_interp.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/image_masked.html b/examples/pylab_examples/image_masked.html deleted file mode 100644 index 285930840f6..00000000000 --- a/examples/pylab_examples/image_masked.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/image_nonuniform.html b/examples/pylab_examples/image_nonuniform.html deleted file mode 100644 index 98f8c5632b6..00000000000 --- a/examples/pylab_examples/image_nonuniform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/image_origin.html b/examples/pylab_examples/image_origin.html deleted file mode 100644 index f8ab393acfc..00000000000 --- a/examples/pylab_examples/image_origin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/image_slices_viewer.html b/examples/pylab_examples/image_slices_viewer.html deleted file mode 100644 index b387bd6d563..00000000000 --- a/examples/pylab_examples/image_slices_viewer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/index.html b/examples/pylab_examples/index.html deleted file mode 100644 index 07b51c57444..00000000000 --- a/examples/pylab_examples/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/interp_demo.html b/examples/pylab_examples/interp_demo.html deleted file mode 100644 index 173b7d36173..00000000000 --- a/examples/pylab_examples/interp_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/invert_axes.html b/examples/pylab_examples/invert_axes.html deleted file mode 100644 index 2f1460e6eb2..00000000000 --- a/examples/pylab_examples/invert_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/layer_images.html b/examples/pylab_examples/layer_images.html deleted file mode 100644 index e7648d4aba9..00000000000 --- a/examples/pylab_examples/layer_images.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/leftventricle_bulleye.html b/examples/pylab_examples/leftventricle_bulleye.html deleted file mode 100644 index c6fb57e6435..00000000000 --- a/examples/pylab_examples/leftventricle_bulleye.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_auto.html b/examples/pylab_examples/legend_auto.html deleted file mode 100644 index f9d9806cb16..00000000000 --- a/examples/pylab_examples/legend_auto.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_demo.html b/examples/pylab_examples/legend_demo.html deleted file mode 100644 index 94a0c48d5fd..00000000000 --- a/examples/pylab_examples/legend_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_demo2.html b/examples/pylab_examples/legend_demo2.html deleted file mode 100644 index d718823340f..00000000000 --- a/examples/pylab_examples/legend_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_demo3.html b/examples/pylab_examples/legend_demo3.html deleted file mode 100644 index d34fda15efb..00000000000 --- a/examples/pylab_examples/legend_demo3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_demo4.html b/examples/pylab_examples/legend_demo4.html deleted file mode 100644 index b1c0400a4d2..00000000000 --- a/examples/pylab_examples/legend_demo4.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_demo5.html b/examples/pylab_examples/legend_demo5.html deleted file mode 100644 index 34f27434984..00000000000 --- a/examples/pylab_examples/legend_demo5.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_demo_custom_handler.html b/examples/pylab_examples/legend_demo_custom_handler.html deleted file mode 100644 index 6e117e2078d..00000000000 --- a/examples/pylab_examples/legend_demo_custom_handler.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_scatter.html b/examples/pylab_examples/legend_scatter.html deleted file mode 100644 index f1cac54cd36..00000000000 --- a/examples/pylab_examples/legend_scatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/legend_translucent.html b/examples/pylab_examples/legend_translucent.html deleted file mode 100644 index f908b3035a4..00000000000 --- a/examples/pylab_examples/legend_translucent.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/line_collection.html b/examples/pylab_examples/line_collection.html deleted file mode 100644 index ff43bcc72ea..00000000000 --- a/examples/pylab_examples/line_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/line_collection2.html b/examples/pylab_examples/line_collection2.html deleted file mode 100644 index 317adf069b9..00000000000 --- a/examples/pylab_examples/line_collection2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/line_styles.html b/examples/pylab_examples/line_styles.html deleted file mode 100644 index c4f47a1f558..00000000000 --- a/examples/pylab_examples/line_styles.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/load_converter.html b/examples/pylab_examples/load_converter.html deleted file mode 100644 index 3649bf1ad3e..00000000000 --- a/examples/pylab_examples/load_converter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/loadrec.html b/examples/pylab_examples/loadrec.html deleted file mode 100644 index 115c08dc58e..00000000000 --- a/examples/pylab_examples/loadrec.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/log_bar.html b/examples/pylab_examples/log_bar.html deleted file mode 100644 index 23f0dc26fa1..00000000000 --- a/examples/pylab_examples/log_bar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/log_demo.html b/examples/pylab_examples/log_demo.html deleted file mode 100644 index 2840163bc7d..00000000000 --- a/examples/pylab_examples/log_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/log_test.html b/examples/pylab_examples/log_test.html deleted file mode 100644 index 2159e3759d7..00000000000 --- a/examples/pylab_examples/log_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/logo.html b/examples/pylab_examples/logo.html deleted file mode 100644 index 342cc7f1787..00000000000 --- a/examples/pylab_examples/logo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/major_minor_demo1.html b/examples/pylab_examples/major_minor_demo1.html deleted file mode 100644 index 56924f7551a..00000000000 --- a/examples/pylab_examples/major_minor_demo1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/major_minor_demo2.html b/examples/pylab_examples/major_minor_demo2.html deleted file mode 100644 index 4d5e9b04c31..00000000000 --- a/examples/pylab_examples/major_minor_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/manual_axis.html b/examples/pylab_examples/manual_axis.html deleted file mode 100644 index 4cbe982246d..00000000000 --- a/examples/pylab_examples/manual_axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/marker_path.html b/examples/pylab_examples/marker_path.html deleted file mode 100644 index 1e20ce687eb..00000000000 --- a/examples/pylab_examples/marker_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/markevery_demo.html b/examples/pylab_examples/markevery_demo.html deleted file mode 100644 index a7828e6075c..00000000000 --- a/examples/pylab_examples/markevery_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/masked_demo.html b/examples/pylab_examples/masked_demo.html deleted file mode 100644 index bb7119c5293..00000000000 --- a/examples/pylab_examples/masked_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/mathtext_demo.html b/examples/pylab_examples/mathtext_demo.html deleted file mode 100644 index d7e9e0840b0..00000000000 --- a/examples/pylab_examples/mathtext_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/mathtext_examples.html b/examples/pylab_examples/mathtext_examples.html deleted file mode 100644 index 268d7817899..00000000000 --- a/examples/pylab_examples/mathtext_examples.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/matplotlib_icon.html b/examples/pylab_examples/matplotlib_icon.html deleted file mode 100644 index 1c5e23d7bdd..00000000000 --- a/examples/pylab_examples/matplotlib_icon.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/matshow.html b/examples/pylab_examples/matshow.html deleted file mode 100644 index acc83264ed2..00000000000 --- a/examples/pylab_examples/matshow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/movie_demo.html b/examples/pylab_examples/movie_demo.html deleted file mode 100644 index 0aac45cbeac..00000000000 --- a/examples/pylab_examples/movie_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/movie_demo.py b/examples/pylab_examples/movie_demo.py deleted file mode 120000 index 417886d8f94..00000000000 --- a/examples/pylab_examples/movie_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../1.5.3/examples/pylab_examples/movie_demo.py \ No newline at end of file diff --git a/examples/pylab_examples/mri_demo.html b/examples/pylab_examples/mri_demo.html deleted file mode 100644 index 0bf23c8be5b..00000000000 --- a/examples/pylab_examples/mri_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/mri_with_eeg.html b/examples/pylab_examples/mri_with_eeg.html deleted file mode 100644 index cce214ba386..00000000000 --- a/examples/pylab_examples/mri_with_eeg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/multi_image.html b/examples/pylab_examples/multi_image.html deleted file mode 100644 index 04d2d3acfb0..00000000000 --- a/examples/pylab_examples/multi_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/multicolored_line.html b/examples/pylab_examples/multicolored_line.html deleted file mode 100644 index b03d78973b5..00000000000 --- a/examples/pylab_examples/multicolored_line.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/multiline.html b/examples/pylab_examples/multiline.html deleted file mode 100644 index 65d5dd4dc5e..00000000000 --- a/examples/pylab_examples/multiline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/multipage_pdf.html b/examples/pylab_examples/multipage_pdf.html deleted file mode 100644 index 4d8fb02b958..00000000000 --- a/examples/pylab_examples/multipage_pdf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/multiple_figs_demo.html b/examples/pylab_examples/multiple_figs_demo.html deleted file mode 100644 index 678516e917f..00000000000 --- a/examples/pylab_examples/multiple_figs_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/multiple_yaxis_with_spines.html b/examples/pylab_examples/multiple_yaxis_with_spines.html deleted file mode 100644 index 02703d6e5d8..00000000000 --- a/examples/pylab_examples/multiple_yaxis_with_spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/nan_test.html b/examples/pylab_examples/nan_test.html deleted file mode 100644 index 5df08a59d53..00000000000 --- a/examples/pylab_examples/nan_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/newscalarformatter_demo.html b/examples/pylab_examples/newscalarformatter_demo.html deleted file mode 100644 index 00f0fe489a2..00000000000 --- a/examples/pylab_examples/newscalarformatter_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/patheffect_demo.html b/examples/pylab_examples/patheffect_demo.html deleted file mode 100644 index 05d1eb862ed..00000000000 --- a/examples/pylab_examples/patheffect_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/pcolor_demo.html b/examples/pylab_examples/pcolor_demo.html deleted file mode 100644 index 1729966f834..00000000000 --- a/examples/pylab_examples/pcolor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/pcolor_log.html b/examples/pylab_examples/pcolor_log.html deleted file mode 100644 index baa64cbd3db..00000000000 --- a/examples/pylab_examples/pcolor_log.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/pcolor_small.html b/examples/pylab_examples/pcolor_small.html deleted file mode 100644 index fafbc73095b..00000000000 --- a/examples/pylab_examples/pcolor_small.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/pie_demo2.html b/examples/pylab_examples/pie_demo2.html deleted file mode 100644 index 8108426ba73..00000000000 --- a/examples/pylab_examples/pie_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/plotfile_demo.html b/examples/pylab_examples/plotfile_demo.html deleted file mode 100644 index 70197f113b8..00000000000 --- a/examples/pylab_examples/plotfile_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/polar_demo.html b/examples/pylab_examples/polar_demo.html deleted file mode 100644 index 405b805eb4c..00000000000 --- a/examples/pylab_examples/polar_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/polar_legend.html b/examples/pylab_examples/polar_legend.html deleted file mode 100644 index c2ec6ec12de..00000000000 --- a/examples/pylab_examples/polar_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/print_stdout.html b/examples/pylab_examples/print_stdout.html deleted file mode 100644 index e53256b7849..00000000000 --- a/examples/pylab_examples/print_stdout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/print_stdout.py b/examples/pylab_examples/print_stdout.py deleted file mode 120000 index 5e81ee9a0cf..00000000000 --- a/examples/pylab_examples/print_stdout.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/print_stdout.py \ No newline at end of file diff --git a/examples/pylab_examples/psd_demo.html b/examples/pylab_examples/psd_demo.html deleted file mode 100644 index bde1917d930..00000000000 --- a/examples/pylab_examples/psd_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/psd_demo2.html b/examples/pylab_examples/psd_demo2.html deleted file mode 100644 index c91df85107f..00000000000 --- a/examples/pylab_examples/psd_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/psd_demo3.html b/examples/pylab_examples/psd_demo3.html deleted file mode 100644 index 5c1317d3ce2..00000000000 --- a/examples/pylab_examples/psd_demo3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/psd_demo_complex.html b/examples/pylab_examples/psd_demo_complex.html deleted file mode 100644 index c32a32a8a54..00000000000 --- a/examples/pylab_examples/psd_demo_complex.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/pstest.html b/examples/pylab_examples/pstest.html deleted file mode 100644 index 114960316f6..00000000000 --- a/examples/pylab_examples/pstest.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/pythonic_matplotlib.html b/examples/pylab_examples/pythonic_matplotlib.html deleted file mode 100644 index b2e32d0220d..00000000000 --- a/examples/pylab_examples/pythonic_matplotlib.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/quadmesh_demo.html b/examples/pylab_examples/quadmesh_demo.html deleted file mode 100644 index b52bf1bd11f..00000000000 --- a/examples/pylab_examples/quadmesh_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/quiver_demo.html b/examples/pylab_examples/quiver_demo.html deleted file mode 100644 index cddc2d54ed7..00000000000 --- a/examples/pylab_examples/quiver_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/quiver_simple_demo.html b/examples/pylab_examples/quiver_simple_demo.html deleted file mode 100644 index 2d329f1f198..00000000000 --- a/examples/pylab_examples/quiver_simple_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/scatter_custom_symbol.html b/examples/pylab_examples/scatter_custom_symbol.html deleted file mode 100644 index f9add698377..00000000000 --- a/examples/pylab_examples/scatter_custom_symbol.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/scatter_demo2.html b/examples/pylab_examples/scatter_demo2.html deleted file mode 100644 index c3a71fb9a4b..00000000000 --- a/examples/pylab_examples/scatter_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/scatter_hist.html b/examples/pylab_examples/scatter_hist.html deleted file mode 100644 index 79ed3aec3b9..00000000000 --- a/examples/pylab_examples/scatter_hist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/scatter_masked.html b/examples/pylab_examples/scatter_masked.html deleted file mode 100644 index 1ad15cd31ce..00000000000 --- a/examples/pylab_examples/scatter_masked.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/scatter_profile.html b/examples/pylab_examples/scatter_profile.html deleted file mode 100644 index d009459f912..00000000000 --- a/examples/pylab_examples/scatter_profile.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/scatter_star_poly.html b/examples/pylab_examples/scatter_star_poly.html deleted file mode 100644 index 17560f37b19..00000000000 --- a/examples/pylab_examples/scatter_star_poly.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/scatter_symbol.html b/examples/pylab_examples/scatter_symbol.html deleted file mode 100644 index 2c874f51e98..00000000000 --- a/examples/pylab_examples/scatter_symbol.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/set_and_get.html b/examples/pylab_examples/set_and_get.html deleted file mode 100644 index f0b3bde8264..00000000000 --- a/examples/pylab_examples/set_and_get.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/shading_example.html b/examples/pylab_examples/shading_example.html deleted file mode 100644 index 4a7f33c1ef8..00000000000 --- a/examples/pylab_examples/shading_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/shared_axis_across_figures.html b/examples/pylab_examples/shared_axis_across_figures.html deleted file mode 100644 index 6d303918969..00000000000 --- a/examples/pylab_examples/shared_axis_across_figures.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/shared_axis_demo.html b/examples/pylab_examples/shared_axis_demo.html deleted file mode 100644 index 835296f0073..00000000000 --- a/examples/pylab_examples/shared_axis_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/simple_plot.html b/examples/pylab_examples/simple_plot.html deleted file mode 100644 index e852197d12b..00000000000 --- a/examples/pylab_examples/simple_plot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/simple_plot_fps.html b/examples/pylab_examples/simple_plot_fps.html deleted file mode 100644 index 7715537622f..00000000000 --- a/examples/pylab_examples/simple_plot_fps.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/specgram_demo.html b/examples/pylab_examples/specgram_demo.html deleted file mode 100644 index 2aee9f671c9..00000000000 --- a/examples/pylab_examples/specgram_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/spectrum_demo.html b/examples/pylab_examples/spectrum_demo.html deleted file mode 100644 index 9b3cf35659f..00000000000 --- a/examples/pylab_examples/spectrum_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/spine_placement_demo.html b/examples/pylab_examples/spine_placement_demo.html deleted file mode 100644 index 342577359a8..00000000000 --- a/examples/pylab_examples/spine_placement_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/spy_demos.html b/examples/pylab_examples/spy_demos.html deleted file mode 100644 index 69b3140c5f0..00000000000 --- a/examples/pylab_examples/spy_demos.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/stackplot_demo.html b/examples/pylab_examples/stackplot_demo.html deleted file mode 100644 index 4abb16490d3..00000000000 --- a/examples/pylab_examples/stackplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/stackplot_demo2.html b/examples/pylab_examples/stackplot_demo2.html deleted file mode 100644 index 8888ae74934..00000000000 --- a/examples/pylab_examples/stackplot_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/stem_plot.html b/examples/pylab_examples/stem_plot.html deleted file mode 100644 index 93d8717b714..00000000000 --- a/examples/pylab_examples/stem_plot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/step_demo.html b/examples/pylab_examples/step_demo.html deleted file mode 100644 index d88b4abd5e8..00000000000 --- a/examples/pylab_examples/step_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/stix_fonts_demo.html b/examples/pylab_examples/stix_fonts_demo.html deleted file mode 100644 index 492de7a99de..00000000000 --- a/examples/pylab_examples/stix_fonts_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/stock_demo.html b/examples/pylab_examples/stock_demo.html deleted file mode 100644 index b60a4a5b8d0..00000000000 --- a/examples/pylab_examples/stock_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/subplot_demo.html b/examples/pylab_examples/subplot_demo.html deleted file mode 100644 index 83bc53d4d03..00000000000 --- a/examples/pylab_examples/subplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/subplot_toolbar.html b/examples/pylab_examples/subplot_toolbar.html deleted file mode 100644 index 6c4a434107b..00000000000 --- a/examples/pylab_examples/subplot_toolbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/subplots_adjust.html b/examples/pylab_examples/subplots_adjust.html deleted file mode 100644 index c1062432627..00000000000 --- a/examples/pylab_examples/subplots_adjust.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/subplots_demo.html b/examples/pylab_examples/subplots_demo.html deleted file mode 100644 index 71cbcdd87cc..00000000000 --- a/examples/pylab_examples/subplots_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/symlog_demo.html b/examples/pylab_examples/symlog_demo.html deleted file mode 100644 index 74e3b5c565c..00000000000 --- a/examples/pylab_examples/symlog_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/system_monitor.html b/examples/pylab_examples/system_monitor.html deleted file mode 100644 index 38119e0e3f9..00000000000 --- a/examples/pylab_examples/system_monitor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/table_demo.html b/examples/pylab_examples/table_demo.html deleted file mode 100644 index 6365c51aff5..00000000000 --- a/examples/pylab_examples/table_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/tex_demo.html b/examples/pylab_examples/tex_demo.html deleted file mode 100644 index 1b8123fad7d..00000000000 --- a/examples/pylab_examples/tex_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/tex_unicode_demo.html b/examples/pylab_examples/tex_unicode_demo.html deleted file mode 100644 index 1a1dcf44bad..00000000000 --- a/examples/pylab_examples/tex_unicode_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/text_handles.html b/examples/pylab_examples/text_handles.html deleted file mode 100644 index a0c932d4f50..00000000000 --- a/examples/pylab_examples/text_handles.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/text_rotation.html b/examples/pylab_examples/text_rotation.html deleted file mode 100644 index 5acaf33cb82..00000000000 --- a/examples/pylab_examples/text_rotation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/text_rotation_relative_to_line.html b/examples/pylab_examples/text_rotation_relative_to_line.html deleted file mode 100644 index 0119758c4cf..00000000000 --- a/examples/pylab_examples/text_rotation_relative_to_line.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/titles_demo.html b/examples/pylab_examples/titles_demo.html deleted file mode 100644 index 990f54b3c10..00000000000 --- a/examples/pylab_examples/titles_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/to_numeric.html b/examples/pylab_examples/to_numeric.html deleted file mode 100644 index 617c13b2bea..00000000000 --- a/examples/pylab_examples/to_numeric.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/toggle_images.html b/examples/pylab_examples/toggle_images.html deleted file mode 100644 index b43abbcb6fa..00000000000 --- a/examples/pylab_examples/toggle_images.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/transoffset.html b/examples/pylab_examples/transoffset.html deleted file mode 100644 index 28b6ed3ede1..00000000000 --- a/examples/pylab_examples/transoffset.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/tricontour_demo.html b/examples/pylab_examples/tricontour_demo.html deleted file mode 100644 index 909ccaee70f..00000000000 --- a/examples/pylab_examples/tricontour_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/tricontour_smooth_delaunay.html b/examples/pylab_examples/tricontour_smooth_delaunay.html deleted file mode 100644 index 147b4eb2dfe..00000000000 --- a/examples/pylab_examples/tricontour_smooth_delaunay.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/tricontour_smooth_user.html b/examples/pylab_examples/tricontour_smooth_user.html deleted file mode 100644 index 551c4c96e73..00000000000 --- a/examples/pylab_examples/tricontour_smooth_user.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/tricontour_vs_griddata.html b/examples/pylab_examples/tricontour_vs_griddata.html deleted file mode 100644 index 2d0374362dc..00000000000 --- a/examples/pylab_examples/tricontour_vs_griddata.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/trigradient_demo.html b/examples/pylab_examples/trigradient_demo.html deleted file mode 100644 index 48b0486e461..00000000000 --- a/examples/pylab_examples/trigradient_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/triinterp_demo.html b/examples/pylab_examples/triinterp_demo.html deleted file mode 100644 index a77da09c2bf..00000000000 --- a/examples/pylab_examples/triinterp_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/tripcolor_demo.html b/examples/pylab_examples/tripcolor_demo.html deleted file mode 100644 index afdaf259c88..00000000000 --- a/examples/pylab_examples/tripcolor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/triplot_demo.html b/examples/pylab_examples/triplot_demo.html deleted file mode 100644 index 813a679fa58..00000000000 --- a/examples/pylab_examples/triplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/usetex_baseline_test.html b/examples/pylab_examples/usetex_baseline_test.html deleted file mode 100644 index d4b6d8aeee4..00000000000 --- a/examples/pylab_examples/usetex_baseline_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/usetex_demo.html b/examples/pylab_examples/usetex_demo.html deleted file mode 100644 index 2440a0ecc48..00000000000 --- a/examples/pylab_examples/usetex_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/usetex_fonteffects.html b/examples/pylab_examples/usetex_fonteffects.html deleted file mode 100644 index cd5907c21b1..00000000000 --- a/examples/pylab_examples/usetex_fonteffects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/vline_hline_demo.html b/examples/pylab_examples/vline_hline_demo.html deleted file mode 100644 index f529da3c848..00000000000 --- a/examples/pylab_examples/vline_hline_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/webapp_demo.html b/examples/pylab_examples/webapp_demo.html deleted file mode 100644 index 0906ae6ece2..00000000000 --- a/examples/pylab_examples/webapp_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/webapp_demo.py b/examples/pylab_examples/webapp_demo.py deleted file mode 120000 index 95cb82b46c8..00000000000 --- a/examples/pylab_examples/webapp_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pylab_examples/webapp_demo.py \ No newline at end of file diff --git a/examples/pylab_examples/xcorr_demo.html b/examples/pylab_examples/xcorr_demo.html deleted file mode 100644 index a8af398c2b9..00000000000 --- a/examples/pylab_examples/xcorr_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pylab_examples/zorder_demo.html b/examples/pylab_examples/zorder_demo.html deleted file mode 100644 index a888eada253..00000000000 --- a/examples/pylab_examples/zorder_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/align_ylabels.html b/examples/pyplots/align_ylabels.html deleted file mode 100644 index 758d47e78bd..00000000000 --- a/examples/pyplots/align_ylabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/align_ylabels.py b/examples/pyplots/align_ylabels.py deleted file mode 120000 index d9e30752491..00000000000 --- a/examples/pyplots/align_ylabels.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/align_ylabels.py \ No newline at end of file diff --git a/examples/pyplots/annotate_transform.html b/examples/pyplots/annotate_transform.html deleted file mode 100644 index f4a82eb6bc1..00000000000 --- a/examples/pyplots/annotate_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/annotate_transform.py b/examples/pyplots/annotate_transform.py deleted file mode 120000 index eff0f0f3fd8..00000000000 --- a/examples/pyplots/annotate_transform.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/annotate_transform.py \ No newline at end of file diff --git a/examples/pyplots/annotation_basic.html b/examples/pyplots/annotation_basic.html deleted file mode 100644 index 1a8fdb698b6..00000000000 --- a/examples/pyplots/annotation_basic.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/annotation_basic.py b/examples/pyplots/annotation_basic.py deleted file mode 120000 index 25ba933c80a..00000000000 --- a/examples/pyplots/annotation_basic.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/annotation_basic.py \ No newline at end of file diff --git a/examples/pyplots/annotation_polar.html b/examples/pyplots/annotation_polar.html deleted file mode 100644 index cfa24c06207..00000000000 --- a/examples/pyplots/annotation_polar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/annotation_polar.py b/examples/pyplots/annotation_polar.py deleted file mode 120000 index e6d22d00b53..00000000000 --- a/examples/pyplots/annotation_polar.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/annotation_polar.py \ No newline at end of file diff --git a/examples/pyplots/auto_subplots_adjust.html b/examples/pyplots/auto_subplots_adjust.html deleted file mode 100644 index 86e23f743dd..00000000000 --- a/examples/pyplots/auto_subplots_adjust.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/auto_subplots_adjust.py b/examples/pyplots/auto_subplots_adjust.py deleted file mode 120000 index f7508c5fb66..00000000000 --- a/examples/pyplots/auto_subplots_adjust.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/auto_subplots_adjust.py \ No newline at end of file diff --git a/examples/pyplots/boxplot_demo.html b/examples/pyplots/boxplot_demo.html deleted file mode 100644 index bf9fcfb1a2b..00000000000 --- a/examples/pyplots/boxplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/boxplot_demo.py b/examples/pyplots/boxplot_demo.py deleted file mode 120000 index 7630ed3c011..00000000000 --- a/examples/pyplots/boxplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/boxplot_demo.py \ No newline at end of file diff --git a/examples/pyplots/compound_path_demo.html b/examples/pyplots/compound_path_demo.html deleted file mode 100644 index 65e3e26bbb2..00000000000 --- a/examples/pyplots/compound_path_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/compound_path_demo.py b/examples/pyplots/compound_path_demo.py deleted file mode 120000 index eb7bcfdb0dd..00000000000 --- a/examples/pyplots/compound_path_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/compound_path_demo.py \ No newline at end of file diff --git a/examples/pyplots/dollar_ticks.html b/examples/pyplots/dollar_ticks.html deleted file mode 100644 index 97f696af7c9..00000000000 --- a/examples/pyplots/dollar_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/dollar_ticks.py b/examples/pyplots/dollar_ticks.py deleted file mode 120000 index 908a15a7535..00000000000 --- a/examples/pyplots/dollar_ticks.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/dollar_ticks.py \ No newline at end of file diff --git a/examples/pyplots/fig_axes_customize_simple.html b/examples/pyplots/fig_axes_customize_simple.html deleted file mode 100644 index 201a48cd8d8..00000000000 --- a/examples/pyplots/fig_axes_customize_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/fig_axes_customize_simple.py b/examples/pyplots/fig_axes_customize_simple.py deleted file mode 120000 index 3c37651d45e..00000000000 --- a/examples/pyplots/fig_axes_customize_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/fig_axes_customize_simple.py \ No newline at end of file diff --git a/examples/pyplots/fig_axes_labels_simple.html b/examples/pyplots/fig_axes_labels_simple.html deleted file mode 100644 index 3bdda29638e..00000000000 --- a/examples/pyplots/fig_axes_labels_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/fig_axes_labels_simple.py b/examples/pyplots/fig_axes_labels_simple.py deleted file mode 120000 index de09008a966..00000000000 --- a/examples/pyplots/fig_axes_labels_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/fig_axes_labels_simple.py \ No newline at end of file diff --git a/examples/pyplots/fig_x.html b/examples/pyplots/fig_x.html deleted file mode 100644 index 3073a230188..00000000000 --- a/examples/pyplots/fig_x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/fig_x.py b/examples/pyplots/fig_x.py deleted file mode 120000 index c4be9b37b62..00000000000 --- a/examples/pyplots/fig_x.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/fig_x.py \ No newline at end of file diff --git a/examples/pyplots/index.html b/examples/pyplots/index.html deleted file mode 100644 index 634036f118c..00000000000 --- a/examples/pyplots/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_annotate.html b/examples/pyplots/pyplot_annotate.html deleted file mode 100644 index 2d549471d1e..00000000000 --- a/examples/pyplots/pyplot_annotate.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_annotate.py b/examples/pyplots/pyplot_annotate.py deleted file mode 120000 index 7e70f5e007c..00000000000 --- a/examples/pyplots/pyplot_annotate.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_annotate.py \ No newline at end of file diff --git a/examples/pyplots/pyplot_formatstr.html b/examples/pyplots/pyplot_formatstr.html deleted file mode 100644 index 3ca3f84db98..00000000000 --- a/examples/pyplots/pyplot_formatstr.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_formatstr.py b/examples/pyplots/pyplot_formatstr.py deleted file mode 120000 index bd434be67c1..00000000000 --- a/examples/pyplots/pyplot_formatstr.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_formatstr.py \ No newline at end of file diff --git a/examples/pyplots/pyplot_mathtext.html b/examples/pyplots/pyplot_mathtext.html deleted file mode 100644 index 558425e01f2..00000000000 --- a/examples/pyplots/pyplot_mathtext.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_mathtext.py b/examples/pyplots/pyplot_mathtext.py deleted file mode 120000 index 4952c899713..00000000000 --- a/examples/pyplots/pyplot_mathtext.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_mathtext.py \ No newline at end of file diff --git a/examples/pyplots/pyplot_scales.html b/examples/pyplots/pyplot_scales.html deleted file mode 100644 index b158b6310ce..00000000000 --- a/examples/pyplots/pyplot_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_scales.py b/examples/pyplots/pyplot_scales.py deleted file mode 120000 index d9920dacfea..00000000000 --- a/examples/pyplots/pyplot_scales.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_scales.py \ No newline at end of file diff --git a/examples/pyplots/pyplot_simple.html b/examples/pyplots/pyplot_simple.html deleted file mode 100644 index 3033a1a0beb..00000000000 --- a/examples/pyplots/pyplot_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_simple.py b/examples/pyplots/pyplot_simple.py deleted file mode 120000 index e4c26c1b516..00000000000 --- a/examples/pyplots/pyplot_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_simple.py \ No newline at end of file diff --git a/examples/pyplots/pyplot_text.html b/examples/pyplots/pyplot_text.html deleted file mode 100644 index ebaafb9866a..00000000000 --- a/examples/pyplots/pyplot_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_text.py b/examples/pyplots/pyplot_text.py deleted file mode 120000 index ce6f72cf882..00000000000 --- a/examples/pyplots/pyplot_text.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_text.py \ No newline at end of file diff --git a/examples/pyplots/pyplot_three.html b/examples/pyplots/pyplot_three.html deleted file mode 100644 index 94e5bdd54c5..00000000000 --- a/examples/pyplots/pyplot_three.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_three.py b/examples/pyplots/pyplot_three.py deleted file mode 120000 index a018bc1ee6a..00000000000 --- a/examples/pyplots/pyplot_three.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_three.py \ No newline at end of file diff --git a/examples/pyplots/pyplot_two_subplots.html b/examples/pyplots/pyplot_two_subplots.html deleted file mode 100644 index 1b844e00e71..00000000000 --- a/examples/pyplots/pyplot_two_subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/pyplot_two_subplots.py b/examples/pyplots/pyplot_two_subplots.py deleted file mode 120000 index 2a0db416050..00000000000 --- a/examples/pyplots/pyplot_two_subplots.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/pyplot_two_subplots.py \ No newline at end of file diff --git a/examples/pyplots/tex_demo.html b/examples/pyplots/tex_demo.html deleted file mode 100644 index 0343dd42bda..00000000000 --- a/examples/pyplots/tex_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/tex_demo.py b/examples/pyplots/tex_demo.py deleted file mode 120000 index 79e0bed9bf0..00000000000 --- a/examples/pyplots/tex_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/tex_demo.py \ No newline at end of file diff --git a/examples/pyplots/text_commands.html b/examples/pyplots/text_commands.html deleted file mode 100644 index 70bd9bea8e1..00000000000 --- a/examples/pyplots/text_commands.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/text_commands.py b/examples/pyplots/text_commands.py deleted file mode 120000 index 16b7f52020c..00000000000 --- a/examples/pyplots/text_commands.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/text_commands.py \ No newline at end of file diff --git a/examples/pyplots/text_layout.html b/examples/pyplots/text_layout.html deleted file mode 100644 index 8f93c31ede9..00000000000 --- a/examples/pyplots/text_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/text_layout.py b/examples/pyplots/text_layout.py deleted file mode 120000 index d1f4b4a7e93..00000000000 --- a/examples/pyplots/text_layout.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/text_layout.py \ No newline at end of file diff --git a/examples/pyplots/whats_new_1_subplot3d.html b/examples/pyplots/whats_new_1_subplot3d.html deleted file mode 100644 index a76cdfcd8f2..00000000000 --- a/examples/pyplots/whats_new_1_subplot3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/whats_new_1_subplot3d.py b/examples/pyplots/whats_new_1_subplot3d.py deleted file mode 120000 index 1aac8c9bd56..00000000000 --- a/examples/pyplots/whats_new_1_subplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/whats_new_1_subplot3d.py \ No newline at end of file diff --git a/examples/pyplots/whats_new_98_4_fancy.html b/examples/pyplots/whats_new_98_4_fancy.html deleted file mode 100644 index fca6983f4bc..00000000000 --- a/examples/pyplots/whats_new_98_4_fancy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/whats_new_98_4_fancy.py b/examples/pyplots/whats_new_98_4_fancy.py deleted file mode 120000 index bfce5e966ef..00000000000 --- a/examples/pyplots/whats_new_98_4_fancy.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/whats_new_98_4_fancy.py \ No newline at end of file diff --git a/examples/pyplots/whats_new_98_4_fill_between.html b/examples/pyplots/whats_new_98_4_fill_between.html deleted file mode 100644 index b9ed6e73863..00000000000 --- a/examples/pyplots/whats_new_98_4_fill_between.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/whats_new_98_4_fill_between.py b/examples/pyplots/whats_new_98_4_fill_between.py deleted file mode 120000 index 86d21b2f848..00000000000 --- a/examples/pyplots/whats_new_98_4_fill_between.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/whats_new_98_4_fill_between.py \ No newline at end of file diff --git a/examples/pyplots/whats_new_98_4_legend.html b/examples/pyplots/whats_new_98_4_legend.html deleted file mode 100644 index 08cadc28126..00000000000 --- a/examples/pyplots/whats_new_98_4_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/whats_new_98_4_legend.py b/examples/pyplots/whats_new_98_4_legend.py deleted file mode 120000 index 66bf7b06433..00000000000 --- a/examples/pyplots/whats_new_98_4_legend.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/whats_new_98_4_legend.py \ No newline at end of file diff --git a/examples/pyplots/whats_new_99_axes_grid.html b/examples/pyplots/whats_new_99_axes_grid.html deleted file mode 100644 index 999a7190367..00000000000 --- a/examples/pyplots/whats_new_99_axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/whats_new_99_axes_grid.py b/examples/pyplots/whats_new_99_axes_grid.py deleted file mode 120000 index 6095e536c27..00000000000 --- a/examples/pyplots/whats_new_99_axes_grid.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/whats_new_99_axes_grid.py \ No newline at end of file diff --git a/examples/pyplots/whats_new_99_mplot3d.html b/examples/pyplots/whats_new_99_mplot3d.html deleted file mode 100644 index bb0e0267502..00000000000 --- a/examples/pyplots/whats_new_99_mplot3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/whats_new_99_mplot3d.py b/examples/pyplots/whats_new_99_mplot3d.py deleted file mode 120000 index 60d4b8ab0df..00000000000 --- a/examples/pyplots/whats_new_99_mplot3d.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/whats_new_99_mplot3d.py \ No newline at end of file diff --git a/examples/pyplots/whats_new_99_spines.html b/examples/pyplots/whats_new_99_spines.html deleted file mode 100644 index 571f3c681e7..00000000000 --- a/examples/pyplots/whats_new_99_spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/pyplots/whats_new_99_spines.py b/examples/pyplots/whats_new_99_spines.py deleted file mode 120000 index de24f8526a6..00000000000 --- a/examples/pyplots/whats_new_99_spines.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/pyplots/whats_new_99_spines.py \ No newline at end of file diff --git a/examples/scales/index.html b/examples/scales/index.html deleted file mode 100644 index c2a5f57448e..00000000000 --- a/examples/scales/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/scales/scales.html b/examples/scales/scales.html deleted file mode 100644 index 4b75a21d8ff..00000000000 --- a/examples/scales/scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/shapes_and_collections/artist_reference.html b/examples/shapes_and_collections/artist_reference.html deleted file mode 100644 index e51168a667b..00000000000 --- a/examples/shapes_and_collections/artist_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/shapes_and_collections/index.html b/examples/shapes_and_collections/index.html deleted file mode 100644 index 5657041e802..00000000000 --- a/examples/shapes_and_collections/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/shapes_and_collections/path_patch_demo.html b/examples/shapes_and_collections/path_patch_demo.html deleted file mode 100644 index b2cbb42c6b3..00000000000 --- a/examples/shapes_and_collections/path_patch_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/shapes_and_collections/scatter_demo.html b/examples/shapes_and_collections/scatter_demo.html deleted file mode 100644 index f8d0e9462a6..00000000000 --- a/examples/shapes_and_collections/scatter_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/showcase/anatomy.html b/examples/showcase/anatomy.html deleted file mode 100644 index 263b8a2ad10..00000000000 --- a/examples/showcase/anatomy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/showcase/bachelors_degrees_by_gender.html b/examples/showcase/bachelors_degrees_by_gender.html deleted file mode 100644 index fa85d86c8cc..00000000000 --- a/examples/showcase/bachelors_degrees_by_gender.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/showcase/firefox.html b/examples/showcase/firefox.html deleted file mode 100644 index c8ea727369c..00000000000 --- a/examples/showcase/firefox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/showcase/index.html b/examples/showcase/index.html deleted file mode 100644 index f60cbcb4b9c..00000000000 --- a/examples/showcase/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/showcase/integral_demo.html b/examples/showcase/integral_demo.html deleted file mode 100644 index 16e12c13d5a..00000000000 --- a/examples/showcase/integral_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/showcase/mandelbrot.html b/examples/showcase/mandelbrot.html deleted file mode 100644 index 4027988170c..00000000000 --- a/examples/showcase/mandelbrot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/showcase/xkcd.html b/examples/showcase/xkcd.html deleted file mode 100644 index 78949af609d..00000000000 --- a/examples/showcase/xkcd.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/specialty_plots/advanced_hillshading.html b/examples/specialty_plots/advanced_hillshading.html deleted file mode 100644 index 0856d953bff..00000000000 --- a/examples/specialty_plots/advanced_hillshading.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/specialty_plots/hinton_demo.html b/examples/specialty_plots/hinton_demo.html deleted file mode 100644 index ca7fbbc9957..00000000000 --- a/examples/specialty_plots/hinton_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/specialty_plots/index.html b/examples/specialty_plots/index.html deleted file mode 100644 index 555da0928c0..00000000000 --- a/examples/specialty_plots/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/specialty_plots/topographic_hillshading.html b/examples/specialty_plots/topographic_hillshading.html deleted file mode 100644 index 5ded7eff637..00000000000 --- a/examples/specialty_plots/topographic_hillshading.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/boxplot_color_demo.html b/examples/statistics/boxplot_color_demo.html deleted file mode 100644 index fa210a63923..00000000000 --- a/examples/statistics/boxplot_color_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/boxplot_demo.html b/examples/statistics/boxplot_demo.html deleted file mode 100644 index 6534354ae86..00000000000 --- a/examples/statistics/boxplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/boxplot_vs_violin_demo.html b/examples/statistics/boxplot_vs_violin_demo.html deleted file mode 100644 index 04951912956..00000000000 --- a/examples/statistics/boxplot_vs_violin_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/bxp_demo.html b/examples/statistics/bxp_demo.html deleted file mode 100644 index 9e28983e998..00000000000 --- a/examples/statistics/bxp_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/customized_violin_demo.html b/examples/statistics/customized_violin_demo.html deleted file mode 100644 index 7c86fa4ce7d..00000000000 --- a/examples/statistics/customized_violin_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/errorbar_demo.html b/examples/statistics/errorbar_demo.html deleted file mode 100644 index 80e749c07e4..00000000000 --- a/examples/statistics/errorbar_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/errorbar_demo_features.html b/examples/statistics/errorbar_demo_features.html deleted file mode 100644 index fffea7247c2..00000000000 --- a/examples/statistics/errorbar_demo_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/errorbar_limits.html b/examples/statistics/errorbar_limits.html deleted file mode 100644 index cf738edfadc..00000000000 --- a/examples/statistics/errorbar_limits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/errorbars_and_boxes.html b/examples/statistics/errorbars_and_boxes.html deleted file mode 100644 index 792923f67a7..00000000000 --- a/examples/statistics/errorbars_and_boxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/histogram_demo_cumulative.html b/examples/statistics/histogram_demo_cumulative.html deleted file mode 100644 index 12ce2c46a5d..00000000000 --- a/examples/statistics/histogram_demo_cumulative.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/histogram_demo_features.html b/examples/statistics/histogram_demo_features.html deleted file mode 100644 index b0eb21fbf58..00000000000 --- a/examples/statistics/histogram_demo_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/histogram_demo_histtypes.html b/examples/statistics/histogram_demo_histtypes.html deleted file mode 100644 index 31ef983e07c..00000000000 --- a/examples/statistics/histogram_demo_histtypes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/histogram_demo_multihist.html b/examples/statistics/histogram_demo_multihist.html deleted file mode 100644 index 66475bcd333..00000000000 --- a/examples/statistics/histogram_demo_multihist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/index.html b/examples/statistics/index.html deleted file mode 100644 index 0d57b976c19..00000000000 --- a/examples/statistics/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/multiple_histograms_side_by_side.html b/examples/statistics/multiple_histograms_side_by_side.html deleted file mode 100644 index 177083cf533..00000000000 --- a/examples/statistics/multiple_histograms_side_by_side.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/statistics/violinplot_demo.html b/examples/statistics/violinplot_demo.html deleted file mode 100644 index 681eed65db4..00000000000 --- a/examples/statistics/violinplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/style_sheets/index.html b/examples/style_sheets/index.html deleted file mode 100644 index 314ea9f8a8e..00000000000 --- a/examples/style_sheets/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/style_sheets/plot_bmh.html b/examples/style_sheets/plot_bmh.html deleted file mode 100644 index 5a0ff733165..00000000000 --- a/examples/style_sheets/plot_bmh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/style_sheets/plot_dark_background.html b/examples/style_sheets/plot_dark_background.html deleted file mode 100644 index 1db107ea2b6..00000000000 --- a/examples/style_sheets/plot_dark_background.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/style_sheets/plot_fivethirtyeight.html b/examples/style_sheets/plot_fivethirtyeight.html deleted file mode 100644 index bbda1ce026b..00000000000 --- a/examples/style_sheets/plot_fivethirtyeight.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/style_sheets/plot_ggplot.html b/examples/style_sheets/plot_ggplot.html deleted file mode 100644 index 1fa9c014d26..00000000000 --- a/examples/style_sheets/plot_ggplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/style_sheets/plot_grayscale.html b/examples/style_sheets/plot_grayscale.html deleted file mode 100644 index a9b2fa44eb8..00000000000 --- a/examples/style_sheets/plot_grayscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/style_sheets/style_sheets_reference.html b/examples/style_sheets/style_sheets_reference.html deleted file mode 100644 index 5ab89942b19..00000000000 --- a/examples/style_sheets/style_sheets_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.html b/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.html deleted file mode 100644 index 17e89cdc8ca..00000000000 --- a/examples/subplots_axes_and_figures/fahrenheit_celsius_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/subplots_axes_and_figures/index.html b/examples/subplots_axes_and_figures/index.html deleted file mode 100644 index 4f287ec7686..00000000000 --- a/examples/subplots_axes_and_figures/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/subplots_axes_and_figures/subplot_demo.html b/examples/subplots_axes_and_figures/subplot_demo.html deleted file mode 100644 index 9a18d2dfd13..00000000000 --- a/examples/subplots_axes_and_figures/subplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/tests/backend_driver.html b/examples/tests/backend_driver.html deleted file mode 100644 index 5494ac28f68..00000000000 --- a/examples/tests/backend_driver.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/tests/backend_driver.py b/examples/tests/backend_driver.py deleted file mode 120000 index 1c9daf07dad..00000000000 --- a/examples/tests/backend_driver.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/tests/backend_driver.py \ No newline at end of file diff --git a/examples/tests/index.html b/examples/tests/index.html deleted file mode 100644 index 378a905f93b..00000000000 --- a/examples/tests/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/text_labels_and_annotations/autowrap_demo.html b/examples/text_labels_and_annotations/autowrap_demo.html deleted file mode 100644 index 83df407172a..00000000000 --- a/examples/text_labels_and_annotations/autowrap_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/text_labels_and_annotations/index.html b/examples/text_labels_and_annotations/index.html deleted file mode 100644 index fc186889e2a..00000000000 --- a/examples/text_labels_and_annotations/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/text_labels_and_annotations/rainbow_text.html b/examples/text_labels_and_annotations/rainbow_text.html deleted file mode 100644 index f1c3be81b52..00000000000 --- a/examples/text_labels_and_annotations/rainbow_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/text_labels_and_annotations/text_demo_fontdict.html b/examples/text_labels_and_annotations/text_demo_fontdict.html deleted file mode 100644 index 8cdf77be8ed..00000000000 --- a/examples/text_labels_and_annotations/text_demo_fontdict.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/text_labels_and_annotations/unicode_demo.html b/examples/text_labels_and_annotations/unicode_demo.html deleted file mode 100644 index 90ef47c5992..00000000000 --- a/examples/text_labels_and_annotations/unicode_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/index.html b/examples/ticks_and_spines/index.html deleted file mode 100644 index 1e7acabf392..00000000000 --- a/examples/ticks_and_spines/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/spines_demo.html b/examples/ticks_and_spines/spines_demo.html deleted file mode 100644 index be036f001c1..00000000000 --- a/examples/ticks_and_spines/spines_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/spines_demo_bounds.html b/examples/ticks_and_spines/spines_demo_bounds.html deleted file mode 100644 index cf181dcf0ed..00000000000 --- a/examples/ticks_and_spines/spines_demo_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/spines_demo_dropped.html b/examples/ticks_and_spines/spines_demo_dropped.html deleted file mode 100644 index a441c67675f..00000000000 --- a/examples/ticks_and_spines/spines_demo_dropped.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/tick-formatters.html b/examples/ticks_and_spines/tick-formatters.html deleted file mode 100644 index 38051d18327..00000000000 --- a/examples/ticks_and_spines/tick-formatters.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/tick-locators.html b/examples/ticks_and_spines/tick-locators.html deleted file mode 100644 index dacb5c9f25f..00000000000 --- a/examples/ticks_and_spines/tick-locators.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/tick_labels_from_values.html b/examples/ticks_and_spines/tick_labels_from_values.html deleted file mode 100644 index 0bf70d34bfb..00000000000 --- a/examples/ticks_and_spines/tick_labels_from_values.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/ticks_and_spines/ticklabels_demo_rotation.html b/examples/ticks_and_spines/ticklabels_demo_rotation.html deleted file mode 100644 index 0dd4f61b639..00000000000 --- a/examples/ticks_and_spines/ticklabels_demo_rotation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/annotate_with_units.html b/examples/units/annotate_with_units.html deleted file mode 100644 index 6c1a76bc891..00000000000 --- a/examples/units/annotate_with_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/artist_tests.html b/examples/units/artist_tests.html deleted file mode 100644 index cb7e8e4c531..00000000000 --- a/examples/units/artist_tests.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/bar_demo2.html b/examples/units/bar_demo2.html deleted file mode 100644 index 573f269f198..00000000000 --- a/examples/units/bar_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/bar_unit_demo.html b/examples/units/bar_unit_demo.html deleted file mode 100644 index 9df4c6f1a20..00000000000 --- a/examples/units/bar_unit_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/basic_units.html b/examples/units/basic_units.html deleted file mode 100644 index 26b5ecf2992..00000000000 --- a/examples/units/basic_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/ellipse_with_units.html b/examples/units/ellipse_with_units.html deleted file mode 100644 index 24a3681d3b8..00000000000 --- a/examples/units/ellipse_with_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/evans_test.html b/examples/units/evans_test.html deleted file mode 100644 index 86f27c7eb29..00000000000 --- a/examples/units/evans_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/index.html b/examples/units/index.html deleted file mode 100644 index a13c559939e..00000000000 --- a/examples/units/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/radian_demo.html b/examples/units/radian_demo.html deleted file mode 100644 index ad2a1aac396..00000000000 --- a/examples/units/radian_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/units_sample.html b/examples/units/units_sample.html deleted file mode 100644 index 3410b99a07e..00000000000 --- a/examples/units/units_sample.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/units/units_scatter.html b/examples/units/units_scatter.html deleted file mode 100644 index 4afea851012..00000000000 --- a/examples/units/units_scatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_gtk.html b/examples/user_interfaces/embedding_in_gtk.html deleted file mode 100644 index 5be17dba0f0..00000000000 --- a/examples/user_interfaces/embedding_in_gtk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_gtk.py b/examples/user_interfaces/embedding_in_gtk.py deleted file mode 120000 index e2646d4f998..00000000000 --- a/examples/user_interfaces/embedding_in_gtk.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_gtk.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_gtk2.html b/examples/user_interfaces/embedding_in_gtk2.html deleted file mode 100644 index bffe8107261..00000000000 --- a/examples/user_interfaces/embedding_in_gtk2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_gtk2.py b/examples/user_interfaces/embedding_in_gtk2.py deleted file mode 120000 index a75d1bb6de2..00000000000 --- a/examples/user_interfaces/embedding_in_gtk2.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_gtk2.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_gtk3.html b/examples/user_interfaces/embedding_in_gtk3.html deleted file mode 100644 index 000b577c9f4..00000000000 --- a/examples/user_interfaces/embedding_in_gtk3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_gtk3.py b/examples/user_interfaces/embedding_in_gtk3.py deleted file mode 120000 index 9f5a9185d5e..00000000000 --- a/examples/user_interfaces/embedding_in_gtk3.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_gtk3.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_gtk3_panzoom.html b/examples/user_interfaces/embedding_in_gtk3_panzoom.html deleted file mode 100644 index ea13af87b61..00000000000 --- a/examples/user_interfaces/embedding_in_gtk3_panzoom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_gtk3_panzoom.py b/examples/user_interfaces/embedding_in_gtk3_panzoom.py deleted file mode 120000 index 53e41de21fc..00000000000 --- a/examples/user_interfaces/embedding_in_gtk3_panzoom.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_gtk3_panzoom.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_qt.html b/examples/user_interfaces/embedding_in_qt.html deleted file mode 100644 index 45f7377738d..00000000000 --- a/examples/user_interfaces/embedding_in_qt.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_qt4.html b/examples/user_interfaces/embedding_in_qt4.html deleted file mode 100644 index 28b684a6c1a..00000000000 --- a/examples/user_interfaces/embedding_in_qt4.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_qt4.py b/examples/user_interfaces/embedding_in_qt4.py deleted file mode 120000 index 81e53822d23..00000000000 --- a/examples/user_interfaces/embedding_in_qt4.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_qt4.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_qt4_wtoolbar.html b/examples/user_interfaces/embedding_in_qt4_wtoolbar.html deleted file mode 100644 index a7633329527..00000000000 --- a/examples/user_interfaces/embedding_in_qt4_wtoolbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_qt4_wtoolbar.py b/examples/user_interfaces/embedding_in_qt4_wtoolbar.py deleted file mode 120000 index d352144f178..00000000000 --- a/examples/user_interfaces/embedding_in_qt4_wtoolbar.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_qt4_wtoolbar.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_qt5.html b/examples/user_interfaces/embedding_in_qt5.html deleted file mode 100644 index fffafbaa7bb..00000000000 --- a/examples/user_interfaces/embedding_in_qt5.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_qt5.py b/examples/user_interfaces/embedding_in_qt5.py deleted file mode 120000 index 711759cf53c..00000000000 --- a/examples/user_interfaces/embedding_in_qt5.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_qt5.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_tk.html b/examples/user_interfaces/embedding_in_tk.html deleted file mode 100644 index 764dbaaebc7..00000000000 --- a/examples/user_interfaces/embedding_in_tk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_tk.py b/examples/user_interfaces/embedding_in_tk.py deleted file mode 120000 index ce017a4ca39..00000000000 --- a/examples/user_interfaces/embedding_in_tk.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_tk.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_tk2.html b/examples/user_interfaces/embedding_in_tk2.html deleted file mode 100644 index 2ce77659b86..00000000000 --- a/examples/user_interfaces/embedding_in_tk2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_tk2.py b/examples/user_interfaces/embedding_in_tk2.py deleted file mode 120000 index 99c126ba676..00000000000 --- a/examples/user_interfaces/embedding_in_tk2.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_tk2.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_tk_canvas.html b/examples/user_interfaces/embedding_in_tk_canvas.html deleted file mode 100644 index 37d6c1556a2..00000000000 --- a/examples/user_interfaces/embedding_in_tk_canvas.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_tk_canvas.py b/examples/user_interfaces/embedding_in_tk_canvas.py deleted file mode 120000 index 54352d0413d..00000000000 --- a/examples/user_interfaces/embedding_in_tk_canvas.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_tk_canvas.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_wx2.html b/examples/user_interfaces/embedding_in_wx2.html deleted file mode 100644 index e80fa891c8a..00000000000 --- a/examples/user_interfaces/embedding_in_wx2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_wx2.py b/examples/user_interfaces/embedding_in_wx2.py deleted file mode 120000 index 260b712747f..00000000000 --- a/examples/user_interfaces/embedding_in_wx2.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_wx2.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_wx3.html b/examples/user_interfaces/embedding_in_wx3.html deleted file mode 100644 index 2a4f9005272..00000000000 --- a/examples/user_interfaces/embedding_in_wx3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_wx3.py b/examples/user_interfaces/embedding_in_wx3.py deleted file mode 120000 index 76b30edbdea..00000000000 --- a/examples/user_interfaces/embedding_in_wx3.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_wx3.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_wx4.html b/examples/user_interfaces/embedding_in_wx4.html deleted file mode 100644 index 837cdf20216..00000000000 --- a/examples/user_interfaces/embedding_in_wx4.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_wx4.py b/examples/user_interfaces/embedding_in_wx4.py deleted file mode 120000 index 249374b14ff..00000000000 --- a/examples/user_interfaces/embedding_in_wx4.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_wx4.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_in_wx5.html b/examples/user_interfaces/embedding_in_wx5.html deleted file mode 100644 index 2d0ccac2b54..00000000000 --- a/examples/user_interfaces/embedding_in_wx5.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_in_wx5.py b/examples/user_interfaces/embedding_in_wx5.py deleted file mode 120000 index 478228bc8d4..00000000000 --- a/examples/user_interfaces/embedding_in_wx5.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_in_wx5.py \ No newline at end of file diff --git a/examples/user_interfaces/embedding_webagg.html b/examples/user_interfaces/embedding_webagg.html deleted file mode 100644 index 70b3a593499..00000000000 --- a/examples/user_interfaces/embedding_webagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/embedding_webagg.py b/examples/user_interfaces/embedding_webagg.py deleted file mode 120000 index 9321a3b1469..00000000000 --- a/examples/user_interfaces/embedding_webagg.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/embedding_webagg.py \ No newline at end of file diff --git a/examples/user_interfaces/fourier_demo_wx.html b/examples/user_interfaces/fourier_demo_wx.html deleted file mode 100644 index a1ff2b2a94b..00000000000 --- a/examples/user_interfaces/fourier_demo_wx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/fourier_demo_wx.py b/examples/user_interfaces/fourier_demo_wx.py deleted file mode 120000 index e625c7303c5..00000000000 --- a/examples/user_interfaces/fourier_demo_wx.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/fourier_demo_wx.py \ No newline at end of file diff --git a/examples/user_interfaces/gtk_spreadsheet.html b/examples/user_interfaces/gtk_spreadsheet.html deleted file mode 100644 index 84ff77b82c1..00000000000 --- a/examples/user_interfaces/gtk_spreadsheet.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/gtk_spreadsheet.py b/examples/user_interfaces/gtk_spreadsheet.py deleted file mode 120000 index f453c1ad931..00000000000 --- a/examples/user_interfaces/gtk_spreadsheet.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/gtk_spreadsheet.py \ No newline at end of file diff --git a/examples/user_interfaces/histogram_demo_canvasagg.html b/examples/user_interfaces/histogram_demo_canvasagg.html deleted file mode 100644 index bc5cd7c75ef..00000000000 --- a/examples/user_interfaces/histogram_demo_canvasagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/histogram_demo_canvasagg.py b/examples/user_interfaces/histogram_demo_canvasagg.py deleted file mode 120000 index 4f2460521c2..00000000000 --- a/examples/user_interfaces/histogram_demo_canvasagg.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/histogram_demo_canvasagg.py \ No newline at end of file diff --git a/examples/user_interfaces/index.html b/examples/user_interfaces/index.html deleted file mode 100644 index be7b9b54552..00000000000 --- a/examples/user_interfaces/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/interactive.html b/examples/user_interfaces/interactive.html deleted file mode 100644 index 891b8493381..00000000000 --- a/examples/user_interfaces/interactive.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/interactive.py b/examples/user_interfaces/interactive.py deleted file mode 120000 index 8fe3ee0afe8..00000000000 --- a/examples/user_interfaces/interactive.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/interactive.py \ No newline at end of file diff --git a/examples/user_interfaces/interactive2.html b/examples/user_interfaces/interactive2.html deleted file mode 100644 index c992133f88a..00000000000 --- a/examples/user_interfaces/interactive2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/interactive2.py b/examples/user_interfaces/interactive2.py deleted file mode 120000 index f902d8891bd..00000000000 --- a/examples/user_interfaces/interactive2.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/interactive2.py \ No newline at end of file diff --git a/examples/user_interfaces/lineprops_dialog_gtk.html b/examples/user_interfaces/lineprops_dialog_gtk.html deleted file mode 100644 index 3026e355ef6..00000000000 --- a/examples/user_interfaces/lineprops_dialog_gtk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/lineprops_dialog_gtk.py b/examples/user_interfaces/lineprops_dialog_gtk.py deleted file mode 120000 index 209f1def52e..00000000000 --- a/examples/user_interfaces/lineprops_dialog_gtk.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/lineprops_dialog_gtk.py \ No newline at end of file diff --git a/examples/user_interfaces/mathtext_wx.html b/examples/user_interfaces/mathtext_wx.html deleted file mode 100644 index db405ec3736..00000000000 --- a/examples/user_interfaces/mathtext_wx.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/mathtext_wx.py b/examples/user_interfaces/mathtext_wx.py deleted file mode 120000 index e4e6fa637a3..00000000000 --- a/examples/user_interfaces/mathtext_wx.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/mathtext_wx.py \ No newline at end of file diff --git a/examples/user_interfaces/mpl_with_glade.html b/examples/user_interfaces/mpl_with_glade.html deleted file mode 100644 index 6a4869813a9..00000000000 --- a/examples/user_interfaces/mpl_with_glade.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/mpl_with_glade.py b/examples/user_interfaces/mpl_with_glade.py deleted file mode 120000 index 7ebc342ef81..00000000000 --- a/examples/user_interfaces/mpl_with_glade.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/mpl_with_glade.py \ No newline at end of file diff --git a/examples/user_interfaces/mpl_with_glade_316.html b/examples/user_interfaces/mpl_with_glade_316.html deleted file mode 100644 index dd8dd93674a..00000000000 --- a/examples/user_interfaces/mpl_with_glade_316.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/mpl_with_glade_316.py b/examples/user_interfaces/mpl_with_glade_316.py deleted file mode 120000 index 3764da0b18e..00000000000 --- a/examples/user_interfaces/mpl_with_glade_316.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/mpl_with_glade_316.py \ No newline at end of file diff --git a/examples/user_interfaces/pylab_with_gtk.html b/examples/user_interfaces/pylab_with_gtk.html deleted file mode 100644 index c46fc2d0ba8..00000000000 --- a/examples/user_interfaces/pylab_with_gtk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/pylab_with_gtk.py b/examples/user_interfaces/pylab_with_gtk.py deleted file mode 120000 index a37c3359ed2..00000000000 --- a/examples/user_interfaces/pylab_with_gtk.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/pylab_with_gtk.py \ No newline at end of file diff --git a/examples/user_interfaces/rec_edit_gtk_custom.html b/examples/user_interfaces/rec_edit_gtk_custom.html deleted file mode 100644 index 899c1314d61..00000000000 --- a/examples/user_interfaces/rec_edit_gtk_custom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/rec_edit_gtk_custom.py b/examples/user_interfaces/rec_edit_gtk_custom.py deleted file mode 120000 index c7fe09d4ccb..00000000000 --- a/examples/user_interfaces/rec_edit_gtk_custom.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/rec_edit_gtk_custom.py \ No newline at end of file diff --git a/examples/user_interfaces/rec_edit_gtk_simple.html b/examples/user_interfaces/rec_edit_gtk_simple.html deleted file mode 100644 index 4249d898466..00000000000 --- a/examples/user_interfaces/rec_edit_gtk_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/rec_edit_gtk_simple.py b/examples/user_interfaces/rec_edit_gtk_simple.py deleted file mode 120000 index d3cbbc40b15..00000000000 --- a/examples/user_interfaces/rec_edit_gtk_simple.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/rec_edit_gtk_simple.py \ No newline at end of file diff --git a/examples/user_interfaces/svg_histogram.html b/examples/user_interfaces/svg_histogram.html deleted file mode 100644 index c73c8adfe4f..00000000000 --- a/examples/user_interfaces/svg_histogram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/svg_histogram.py b/examples/user_interfaces/svg_histogram.py deleted file mode 120000 index d0a724a336f..00000000000 --- a/examples/user_interfaces/svg_histogram.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/svg_histogram.py \ No newline at end of file diff --git a/examples/user_interfaces/svg_tooltip.html b/examples/user_interfaces/svg_tooltip.html deleted file mode 100644 index a92d8ff247e..00000000000 --- a/examples/user_interfaces/svg_tooltip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/svg_tooltip.py b/examples/user_interfaces/svg_tooltip.py deleted file mode 120000 index 4a47e578ddd..00000000000 --- a/examples/user_interfaces/svg_tooltip.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/svg_tooltip.py \ No newline at end of file diff --git a/examples/user_interfaces/toolmanager.html b/examples/user_interfaces/toolmanager.html deleted file mode 100644 index 4e9be2e411e..00000000000 --- a/examples/user_interfaces/toolmanager.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/toolmanager.py b/examples/user_interfaces/toolmanager.py deleted file mode 120000 index 8b383b3a5ed..00000000000 --- a/examples/user_interfaces/toolmanager.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/toolmanager.py \ No newline at end of file diff --git a/examples/user_interfaces/wxcursor_demo.html b/examples/user_interfaces/wxcursor_demo.html deleted file mode 100644 index 88d29b08898..00000000000 --- a/examples/user_interfaces/wxcursor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/user_interfaces/wxcursor_demo.py b/examples/user_interfaces/wxcursor_demo.py deleted file mode 120000 index ffaef7e32ff..00000000000 --- a/examples/user_interfaces/wxcursor_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/user_interfaces/wxcursor_demo.py \ No newline at end of file diff --git a/examples/widgets/buttons.html b/examples/widgets/buttons.html deleted file mode 100644 index 2f7b7c8b617..00000000000 --- a/examples/widgets/buttons.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/buttons.py b/examples/widgets/buttons.py deleted file mode 120000 index b6a6b294971..00000000000 --- a/examples/widgets/buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/buttons.py \ No newline at end of file diff --git a/examples/widgets/check_buttons.html b/examples/widgets/check_buttons.html deleted file mode 100644 index 21ebaacd46a..00000000000 --- a/examples/widgets/check_buttons.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/check_buttons.py b/examples/widgets/check_buttons.py deleted file mode 120000 index 5552d599757..00000000000 --- a/examples/widgets/check_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/check_buttons.py \ No newline at end of file diff --git a/examples/widgets/cursor.html b/examples/widgets/cursor.html deleted file mode 100644 index 181063bb5d0..00000000000 --- a/examples/widgets/cursor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/cursor.py b/examples/widgets/cursor.py deleted file mode 120000 index f19b8ffbdc7..00000000000 --- a/examples/widgets/cursor.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/cursor.py \ No newline at end of file diff --git a/examples/widgets/index.html b/examples/widgets/index.html deleted file mode 100644 index b21219a70c6..00000000000 --- a/examples/widgets/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/lasso_selector_demo.html b/examples/widgets/lasso_selector_demo.html deleted file mode 100644 index ae5ad92c48c..00000000000 --- a/examples/widgets/lasso_selector_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/lasso_selector_demo.py b/examples/widgets/lasso_selector_demo.py deleted file mode 120000 index eb5b1236358..00000000000 --- a/examples/widgets/lasso_selector_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/lasso_selector_demo.py \ No newline at end of file diff --git a/examples/widgets/menu.html b/examples/widgets/menu.html deleted file mode 100644 index 859614e6e06..00000000000 --- a/examples/widgets/menu.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/menu.py b/examples/widgets/menu.py deleted file mode 120000 index 7e1db138d59..00000000000 --- a/examples/widgets/menu.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/menu.py \ No newline at end of file diff --git a/examples/widgets/multicursor.html b/examples/widgets/multicursor.html deleted file mode 100644 index 4f5f97295dd..00000000000 --- a/examples/widgets/multicursor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/multicursor.py b/examples/widgets/multicursor.py deleted file mode 120000 index d673ddd7af5..00000000000 --- a/examples/widgets/multicursor.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/multicursor.py \ No newline at end of file diff --git a/examples/widgets/radio_buttons.html b/examples/widgets/radio_buttons.html deleted file mode 100644 index ff64604d9e2..00000000000 --- a/examples/widgets/radio_buttons.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/radio_buttons.py b/examples/widgets/radio_buttons.py deleted file mode 120000 index dd9fd891cd6..00000000000 --- a/examples/widgets/radio_buttons.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/radio_buttons.py \ No newline at end of file diff --git a/examples/widgets/rectangle_selector.html b/examples/widgets/rectangle_selector.html deleted file mode 100644 index 5ef2052eb4b..00000000000 --- a/examples/widgets/rectangle_selector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/rectangle_selector.py b/examples/widgets/rectangle_selector.py deleted file mode 120000 index c7293d8a771..00000000000 --- a/examples/widgets/rectangle_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/rectangle_selector.py \ No newline at end of file diff --git a/examples/widgets/slider_demo.html b/examples/widgets/slider_demo.html deleted file mode 100644 index 03b69612a2c..00000000000 --- a/examples/widgets/slider_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/slider_demo.py b/examples/widgets/slider_demo.py deleted file mode 120000 index b9ac6ff2c72..00000000000 --- a/examples/widgets/slider_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/slider_demo.py \ No newline at end of file diff --git a/examples/widgets/span_selector.html b/examples/widgets/span_selector.html deleted file mode 100644 index 7d072402304..00000000000 --- a/examples/widgets/span_selector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/examples/widgets/span_selector.py b/examples/widgets/span_selector.py deleted file mode 120000 index 4acb81e4c73..00000000000 --- a/examples/widgets/span_selector.py +++ /dev/null @@ -1 +0,0 @@ -../../2.0.2/examples/widgets/span_selector.py \ No newline at end of file diff --git a/faq/environment_variables_faq.html b/faq/environment_variables_faq.html deleted file mode 100644 index e8f9081d865..00000000000 --- a/faq/environment_variables_faq.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/faq/howto_faq-1.hires.png b/faq/howto_faq-1.hires.png deleted file mode 120000 index a49824e9dd9..00000000000 --- a/faq/howto_faq-1.hires.png +++ /dev/null @@ -1 +0,0 @@ -../1.5.3/faq/howto_faq-1.hires.png \ No newline at end of file diff --git a/faq/howto_faq-1.pdf b/faq/howto_faq-1.pdf deleted file mode 120000 index 9a4e23386c1..00000000000 --- a/faq/howto_faq-1.pdf +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/faq/howto_faq-1.pdf \ No newline at end of file diff --git a/faq/howto_faq-1.png b/faq/howto_faq-1.png deleted file mode 120000 index b9840ae13d9..00000000000 --- a/faq/howto_faq-1.png +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/faq/howto_faq-1.png \ No newline at end of file diff --git a/faq/howto_faq-1.py b/faq/howto_faq-1.py deleted file mode 120000 index 126c6755f53..00000000000 --- a/faq/howto_faq-1.py +++ /dev/null @@ -1 +0,0 @@ -../3.4.3/faq/howto_faq-1.py \ No newline at end of file diff --git a/faq/howto_faq.html b/faq/howto_faq.html deleted file mode 100644 index 9f8b60dcad8..00000000000 --- a/faq/howto_faq.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/faq/index.html b/faq/index.html deleted file mode 100644 index 3758f8b7436..00000000000 --- a/faq/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/faq/installing_faq.html b/faq/installing_faq.html deleted file mode 100644 index c5e020b7733..00000000000 --- a/faq/installing_faq.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/faq/osx_framework.html b/faq/osx_framework.html deleted file mode 100644 index e6e1128e6ec..00000000000 --- a/faq/osx_framework.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/faq/troubleshooting_faq.html b/faq/troubleshooting_faq.html deleted file mode 100644 index 4793e54e6f1..00000000000 --- a/faq/troubleshooting_faq.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/faq/usage_faq.html b/faq/usage_faq.html deleted file mode 100644 index d3e93263666..00000000000 --- a/faq/usage_faq.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/faq/virtualenv_faq.html b/faq/virtualenv_faq.html deleted file mode 100644 index 05324406cd5..00000000000 --- a/faq/virtualenv_faq.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery.html b/gallery.html deleted file mode 100644 index a7b8e8f2081..00000000000 --- a/gallery.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/animate_decay.html b/gallery/animation/animate_decay.html deleted file mode 100644 index c4d585fba81..00000000000 --- a/gallery/animation/animate_decay.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/animated_histogram.html b/gallery/animation/animated_histogram.html deleted file mode 100644 index 98b5f62a03f..00000000000 --- a/gallery/animation/animated_histogram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/animation_demo.html b/gallery/animation/animation_demo.html deleted file mode 100644 index 43dffc1397f..00000000000 --- a/gallery/animation/animation_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/basic_example.html b/gallery/animation/basic_example.html deleted file mode 100644 index 73c250eafd0..00000000000 --- a/gallery/animation/basic_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/basic_example_writer_sgskip.html b/gallery/animation/basic_example_writer_sgskip.html deleted file mode 100644 index fe4a3ee9aa7..00000000000 --- a/gallery/animation/basic_example_writer_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/bayes_update.html b/gallery/animation/bayes_update.html deleted file mode 100644 index 2333c31a3af..00000000000 --- a/gallery/animation/bayes_update.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/bayes_update_sgskip.html b/gallery/animation/bayes_update_sgskip.html deleted file mode 100644 index 7c217b074ae..00000000000 --- a/gallery/animation/bayes_update_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/double_pendulum.html b/gallery/animation/double_pendulum.html deleted file mode 100644 index 0c7dbb7fd8c..00000000000 --- a/gallery/animation/double_pendulum.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/double_pendulum_animated_sgskip.html b/gallery/animation/double_pendulum_animated_sgskip.html deleted file mode 100644 index 852b040e6a3..00000000000 --- a/gallery/animation/double_pendulum_animated_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/double_pendulum_sgskip.html b/gallery/animation/double_pendulum_sgskip.html deleted file mode 100644 index 1489afb88e1..00000000000 --- a/gallery/animation/double_pendulum_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/dynamic_image.html b/gallery/animation/dynamic_image.html deleted file mode 100644 index d82f4b26f22..00000000000 --- a/gallery/animation/dynamic_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/dynamic_image2.html b/gallery/animation/dynamic_image2.html deleted file mode 100644 index f5551cb9367..00000000000 --- a/gallery/animation/dynamic_image2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/frame_grabbing_sgskip.html b/gallery/animation/frame_grabbing_sgskip.html deleted file mode 100644 index cb3443554c3..00000000000 --- a/gallery/animation/frame_grabbing_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/histogram.html b/gallery/animation/histogram.html deleted file mode 100644 index 26a0b4ff434..00000000000 --- a/gallery/animation/histogram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/image_slices_viewer.html b/gallery/animation/image_slices_viewer.html deleted file mode 100644 index ee24adcdb72..00000000000 --- a/gallery/animation/image_slices_viewer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/movie_demo_sgskip.html b/gallery/animation/movie_demo_sgskip.html deleted file mode 100644 index 971b164fff4..00000000000 --- a/gallery/animation/movie_demo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/moviewriter_sgskip.html b/gallery/animation/moviewriter_sgskip.html deleted file mode 100644 index caf368954d5..00000000000 --- a/gallery/animation/moviewriter_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/pause_resume.html b/gallery/animation/pause_resume.html deleted file mode 100644 index df1d72e1e62..00000000000 --- a/gallery/animation/pause_resume.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/rain.html b/gallery/animation/rain.html deleted file mode 100644 index 663f9ccacee..00000000000 --- a/gallery/animation/rain.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/random_data.html b/gallery/animation/random_data.html deleted file mode 100644 index fc30b62c0cc..00000000000 --- a/gallery/animation/random_data.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/random_walk.html b/gallery/animation/random_walk.html deleted file mode 100644 index de1ed4bff31..00000000000 --- a/gallery/animation/random_walk.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/sg_execution_times.html b/gallery/animation/sg_execution_times.html deleted file mode 100644 index 6c4b4415959..00000000000 --- a/gallery/animation/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/simple_3danim.html b/gallery/animation/simple_3danim.html deleted file mode 100644 index dce2678c26a..00000000000 --- a/gallery/animation/simple_3danim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/simple_anim.html b/gallery/animation/simple_anim.html deleted file mode 100644 index 0086366011c..00000000000 --- a/gallery/animation/simple_anim.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/strip_chart.html b/gallery/animation/strip_chart.html deleted file mode 100644 index 1db63e1d31a..00000000000 --- a/gallery/animation/strip_chart.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/strip_chart_demo.html b/gallery/animation/strip_chart_demo.html deleted file mode 100644 index 358953cbd9a..00000000000 --- a/gallery/animation/strip_chart_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/subplots.html b/gallery/animation/subplots.html deleted file mode 100644 index c272925e56e..00000000000 --- a/gallery/animation/subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/animation/unchained.html b/gallery/animation/unchained.html deleted file mode 100644 index 057bc7d9c0a..00000000000 --- a/gallery/animation/unchained.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/affine_image.html b/gallery/api/affine_image.html deleted file mode 100644 index 63ed4bf1321..00000000000 --- a/gallery/api/affine_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/agg_oo_sgskip.html b/gallery/api/agg_oo_sgskip.html deleted file mode 100644 index 7de85f4e292..00000000000 --- a/gallery/api/agg_oo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/axes_margins.html b/gallery/api/axes_margins.html deleted file mode 100644 index f547843775f..00000000000 --- a/gallery/api/axes_margins.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/barchart.html b/gallery/api/barchart.html deleted file mode 100644 index 38045c24f12..00000000000 --- a/gallery/api/barchart.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/bbox_intersect.html b/gallery/api/bbox_intersect.html deleted file mode 100644 index d0d1c27da8a..00000000000 --- a/gallery/api/bbox_intersect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/collections.html b/gallery/api/collections.html deleted file mode 100644 index c3ef86dc53f..00000000000 --- a/gallery/api/collections.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/colorbar_basics.html b/gallery/api/colorbar_basics.html deleted file mode 100644 index 5f6ce8fd00b..00000000000 --- a/gallery/api/colorbar_basics.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/compound_path.html b/gallery/api/compound_path.html deleted file mode 100644 index 6ecc8c80964..00000000000 --- a/gallery/api/compound_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/custom_index_formatter.html b/gallery/api/custom_index_formatter.html deleted file mode 100644 index 14784c7ff1a..00000000000 --- a/gallery/api/custom_index_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/custom_projection_example.html b/gallery/api/custom_projection_example.html deleted file mode 100644 index 85687dd9f47..00000000000 --- a/gallery/api/custom_projection_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/custom_scale_example.html b/gallery/api/custom_scale_example.html deleted file mode 100644 index 0f86d3bcacd..00000000000 --- a/gallery/api/custom_scale_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/date.html b/gallery/api/date.html deleted file mode 100644 index 906ff4616db..00000000000 --- a/gallery/api/date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/date_index_formatter.html b/gallery/api/date_index_formatter.html deleted file mode 100644 index 9a7afb08e6e..00000000000 --- a/gallery/api/date_index_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/donut.html b/gallery/api/donut.html deleted file mode 100644 index 4b803c36b9c..00000000000 --- a/gallery/api/donut.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/engineering_formatter.html b/gallery/api/engineering_formatter.html deleted file mode 100644 index 8c45abb5d73..00000000000 --- a/gallery/api/engineering_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/filled_step.html b/gallery/api/filled_step.html deleted file mode 100644 index 33ab62408df..00000000000 --- a/gallery/api/filled_step.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/font_family_rc_sgskip.html b/gallery/api/font_family_rc_sgskip.html deleted file mode 100644 index 20a8867c0db..00000000000 --- a/gallery/api/font_family_rc_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/font_file.html b/gallery/api/font_file.html deleted file mode 100644 index cbf0d773747..00000000000 --- a/gallery/api/font_file.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/font_file_sgskip.html b/gallery/api/font_file_sgskip.html deleted file mode 100644 index 6bb337a9dfd..00000000000 --- a/gallery/api/font_file_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/histogram_path.html b/gallery/api/histogram_path.html deleted file mode 100644 index 525afdaee25..00000000000 --- a/gallery/api/histogram_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/histogram_path.pdf b/gallery/api/histogram_path.pdf deleted file mode 120000 index 0657006a5d1..00000000000 --- a/gallery/api/histogram_path.pdf +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/histogram_path.pdf \ No newline at end of file diff --git a/gallery/api/histogram_path.png b/gallery/api/histogram_path.png deleted file mode 120000 index 6dba883de75..00000000000 --- a/gallery/api/histogram_path.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/histogram_path.png \ No newline at end of file diff --git a/gallery/api/histogram_path.py b/gallery/api/histogram_path.py deleted file mode 120000 index 578b70ac05e..00000000000 --- a/gallery/api/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/histogram_path.py \ No newline at end of file diff --git a/gallery/api/image_zcoord.html b/gallery/api/image_zcoord.html deleted file mode 100644 index 2094fc1f4d3..00000000000 --- a/gallery/api/image_zcoord.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/joinstyle.html b/gallery/api/joinstyle.html deleted file mode 100644 index 0880a34b5a9..00000000000 --- a/gallery/api/joinstyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/legend.html b/gallery/api/legend.html deleted file mode 100644 index 8388af09d63..00000000000 --- a/gallery/api/legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/legend.pdf b/gallery/api/legend.pdf deleted file mode 120000 index dfa650a788c..00000000000 --- a/gallery/api/legend.pdf +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/legend.pdf \ No newline at end of file diff --git a/gallery/api/legend.png b/gallery/api/legend.png deleted file mode 120000 index 0225e33145e..00000000000 --- a/gallery/api/legend.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/legend.png \ No newline at end of file diff --git a/gallery/api/legend.py b/gallery/api/legend.py deleted file mode 120000 index cd79f41bf55..00000000000 --- a/gallery/api/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/legend.py \ No newline at end of file diff --git a/gallery/api/line_with_text.html b/gallery/api/line_with_text.html deleted file mode 100644 index 1df24fc452f..00000000000 --- a/gallery/api/line_with_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/logos2.html b/gallery/api/logos2.html deleted file mode 100644 index a2b62ac7e4b..00000000000 --- a/gallery/api/logos2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/mathtext_asarray.html b/gallery/api/mathtext_asarray.html deleted file mode 100644 index 11206adf4cd..00000000000 --- a/gallery/api/mathtext_asarray.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/patch_collection.html b/gallery/api/patch_collection.html deleted file mode 100644 index 6fe621064ca..00000000000 --- a/gallery/api/patch_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/power_norm.html b/gallery/api/power_norm.html deleted file mode 100644 index b3124947507..00000000000 --- a/gallery/api/power_norm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/quad_bezier.html b/gallery/api/quad_bezier.html deleted file mode 100644 index 912905b67c0..00000000000 --- a/gallery/api/quad_bezier.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/radar_chart.html b/gallery/api/radar_chart.html deleted file mode 100644 index 11f06822bf9..00000000000 --- a/gallery/api/radar_chart.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/sankey_basics.html b/gallery/api/sankey_basics.html deleted file mode 100644 index 954bd024884..00000000000 --- a/gallery/api/sankey_basics.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/sankey_basics.py b/gallery/api/sankey_basics.py deleted file mode 120000 index da6c95eb79b..00000000000 --- a/gallery/api/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/sankey_basics.py \ No newline at end of file diff --git a/gallery/api/sankey_basics_00.pdf b/gallery/api/sankey_basics_00.pdf deleted file mode 120000 index d0f62c9fd94..00000000000 --- a/gallery/api/sankey_basics_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/sankey_basics_00.pdf \ No newline at end of file diff --git a/gallery/api/sankey_basics_00.png b/gallery/api/sankey_basics_00.png deleted file mode 120000 index 2cde953d816..00000000000 --- a/gallery/api/sankey_basics_00.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/sankey_basics_00.png \ No newline at end of file diff --git a/gallery/api/sankey_basics_01.pdf b/gallery/api/sankey_basics_01.pdf deleted file mode 120000 index cbab664c8c7..00000000000 --- a/gallery/api/sankey_basics_01.pdf +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/sankey_basics_01.pdf \ No newline at end of file diff --git a/gallery/api/sankey_basics_01.png b/gallery/api/sankey_basics_01.png deleted file mode 120000 index 6e4ec3bc67c..00000000000 --- a/gallery/api/sankey_basics_01.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/sankey_basics_01.png \ No newline at end of file diff --git a/gallery/api/sankey_basics_02.pdf b/gallery/api/sankey_basics_02.pdf deleted file mode 120000 index 873117e975b..00000000000 --- a/gallery/api/sankey_basics_02.pdf +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/sankey_basics_02.pdf \ No newline at end of file diff --git a/gallery/api/sankey_basics_02.png b/gallery/api/sankey_basics_02.png deleted file mode 120000 index 6d5d030d3d1..00000000000 --- a/gallery/api/sankey_basics_02.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/api/sankey_basics_02.png \ No newline at end of file diff --git a/gallery/api/sankey_links.html b/gallery/api/sankey_links.html deleted file mode 100644 index 727e6af6d9a..00000000000 --- a/gallery/api/sankey_links.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/sankey_rankine.html b/gallery/api/sankey_rankine.html deleted file mode 100644 index 147a66c3c66..00000000000 --- a/gallery/api/sankey_rankine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/scatter_piecharts.html b/gallery/api/scatter_piecharts.html deleted file mode 100644 index c3f12f569cb..00000000000 --- a/gallery/api/scatter_piecharts.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/skewt.html b/gallery/api/skewt.html deleted file mode 100644 index ae85f572322..00000000000 --- a/gallery/api/skewt.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/span_regions.html b/gallery/api/span_regions.html deleted file mode 100644 index 77cb07c3a9d..00000000000 --- a/gallery/api/span_regions.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/two_scales.html b/gallery/api/two_scales.html deleted file mode 100644 index 41329bc715d..00000000000 --- a/gallery/api/two_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/unicode_minus.html b/gallery/api/unicode_minus.html deleted file mode 100644 index 6a2dee79f4f..00000000000 --- a/gallery/api/unicode_minus.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/watermark_image.html b/gallery/api/watermark_image.html deleted file mode 100644 index a31235cadb7..00000000000 --- a/gallery/api/watermark_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/api/watermark_text.html b/gallery/api/watermark_text.html deleted file mode 100644 index c177eaffda7..00000000000 --- a/gallery/api/watermark_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_anchored_direction_arrows.html b/gallery/axes_grid1/demo_anchored_direction_arrows.html deleted file mode 100644 index 6decafc4793..00000000000 --- a/gallery/axes_grid1/demo_anchored_direction_arrows.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_axes_divider.html b/gallery/axes_grid1/demo_axes_divider.html deleted file mode 100644 index 041fb18d0e5..00000000000 --- a/gallery/axes_grid1/demo_axes_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_axes_grid.html b/gallery/axes_grid1/demo_axes_grid.html deleted file mode 100644 index 6e55c4b9d4e..00000000000 --- a/gallery/axes_grid1/demo_axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_axes_grid2.html b/gallery/axes_grid1/demo_axes_grid2.html deleted file mode 100644 index f29ce383950..00000000000 --- a/gallery/axes_grid1/demo_axes_grid2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_axes_hbox_divider.html b/gallery/axes_grid1/demo_axes_hbox_divider.html deleted file mode 100644 index 6c773706144..00000000000 --- a/gallery/axes_grid1/demo_axes_hbox_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_axes_hbox_divider.pdf b/gallery/axes_grid1/demo_axes_hbox_divider.pdf deleted file mode 120000 index 2d4c972ed8a..00000000000 --- a/gallery/axes_grid1/demo_axes_hbox_divider.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/axes_grid1/demo_axes_hbox_divider.pdf \ No newline at end of file diff --git a/gallery/axes_grid1/demo_axes_hbox_divider.png b/gallery/axes_grid1/demo_axes_hbox_divider.png deleted file mode 120000 index b74435a9162..00000000000 --- a/gallery/axes_grid1/demo_axes_hbox_divider.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/axes_grid1/demo_axes_hbox_divider.png \ No newline at end of file diff --git a/gallery/axes_grid1/demo_axes_hbox_divider.py b/gallery/axes_grid1/demo_axes_hbox_divider.py deleted file mode 120000 index 589432d9d2b..00000000000 --- a/gallery/axes_grid1/demo_axes_hbox_divider.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/axes_grid1/demo_axes_hbox_divider.py \ No newline at end of file diff --git a/gallery/axes_grid1/demo_axes_rgb.html b/gallery/axes_grid1/demo_axes_rgb.html deleted file mode 100644 index 2978c3cd75a..00000000000 --- a/gallery/axes_grid1/demo_axes_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_colorbar_of_inset_axes.html b/gallery/axes_grid1/demo_colorbar_of_inset_axes.html deleted file mode 100644 index 9b21a709c81..00000000000 --- a/gallery/axes_grid1/demo_colorbar_of_inset_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_colorbar_with_axes_divider.html b/gallery/axes_grid1/demo_colorbar_with_axes_divider.html deleted file mode 100644 index a767bc932ed..00000000000 --- a/gallery/axes_grid1/demo_colorbar_with_axes_divider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_colorbar_with_inset_locator.html b/gallery/axes_grid1/demo_colorbar_with_inset_locator.html deleted file mode 100644 index 9f6b9656a4f..00000000000 --- a/gallery/axes_grid1/demo_colorbar_with_inset_locator.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_edge_colorbar.html b/gallery/axes_grid1/demo_edge_colorbar.html deleted file mode 100644 index c1d699c9003..00000000000 --- a/gallery/axes_grid1/demo_edge_colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_fixed_size_axes.html b/gallery/axes_grid1/demo_fixed_size_axes.html deleted file mode 100644 index c2ea13ecd0b..00000000000 --- a/gallery/axes_grid1/demo_fixed_size_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_imagegrid_aspect.html b/gallery/axes_grid1/demo_imagegrid_aspect.html deleted file mode 100644 index 77d964f0d18..00000000000 --- a/gallery/axes_grid1/demo_imagegrid_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/demo_new_colorbar.html b/gallery/axes_grid1/demo_new_colorbar.html deleted file mode 100644 index 218d5f181ff..00000000000 --- a/gallery/axes_grid1/demo_new_colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/inset_locator_demo.html b/gallery/axes_grid1/inset_locator_demo.html deleted file mode 100644 index 31eb371ca3a..00000000000 --- a/gallery/axes_grid1/inset_locator_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/inset_locator_demo2.html b/gallery/axes_grid1/inset_locator_demo2.html deleted file mode 100644 index 9d1ce3b7f1c..00000000000 --- a/gallery/axes_grid1/inset_locator_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.html b/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.html deleted file mode 100644 index 4dfe93521de..00000000000 --- a/gallery/axes_grid1/make_room_for_ylabel_using_axesgrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/parasite_simple.html b/gallery/axes_grid1/parasite_simple.html deleted file mode 100644 index ba7fb1b79e8..00000000000 --- a/gallery/axes_grid1/parasite_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/parasite_simple2.html b/gallery/axes_grid1/parasite_simple2.html deleted file mode 100644 index b4bf40e865c..00000000000 --- a/gallery/axes_grid1/parasite_simple2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/scatter_hist.html b/gallery/axes_grid1/scatter_hist.html deleted file mode 100644 index 5c1d4ea56e5..00000000000 --- a/gallery/axes_grid1/scatter_hist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/scatter_hist_locatable_axes.html b/gallery/axes_grid1/scatter_hist_locatable_axes.html deleted file mode 100644 index 53d1212f0d2..00000000000 --- a/gallery/axes_grid1/scatter_hist_locatable_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/sg_execution_times.html b/gallery/axes_grid1/sg_execution_times.html deleted file mode 100644 index b13c06a4112..00000000000 --- a/gallery/axes_grid1/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_anchored_artists.html b/gallery/axes_grid1/simple_anchored_artists.html deleted file mode 100644 index ee45887b1c3..00000000000 --- a/gallery/axes_grid1/simple_anchored_artists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_axes_divider1.html b/gallery/axes_grid1/simple_axes_divider1.html deleted file mode 100644 index c252743377a..00000000000 --- a/gallery/axes_grid1/simple_axes_divider1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_axes_divider2.html b/gallery/axes_grid1/simple_axes_divider2.html deleted file mode 100644 index 7cfc81f0eb7..00000000000 --- a/gallery/axes_grid1/simple_axes_divider2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_axes_divider3.html b/gallery/axes_grid1/simple_axes_divider3.html deleted file mode 100644 index aa916ac9856..00000000000 --- a/gallery/axes_grid1/simple_axes_divider3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_axesgrid.html b/gallery/axes_grid1/simple_axesgrid.html deleted file mode 100644 index b590189f473..00000000000 --- a/gallery/axes_grid1/simple_axesgrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_axesgrid2.html b/gallery/axes_grid1/simple_axesgrid2.html deleted file mode 100644 index 615d96e5633..00000000000 --- a/gallery/axes_grid1/simple_axesgrid2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_axisline4.html b/gallery/axes_grid1/simple_axisline4.html deleted file mode 100644 index eaeb66533a2..00000000000 --- a/gallery/axes_grid1/simple_axisline4.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_colorbar.html b/gallery/axes_grid1/simple_colorbar.html deleted file mode 100644 index a2b3578bb04..00000000000 --- a/gallery/axes_grid1/simple_colorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axes_grid1/simple_rgb.html b/gallery/axes_grid1/simple_rgb.html deleted file mode 100644 index 353e4bbe7b5..00000000000 --- a/gallery/axes_grid1/simple_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/axis_direction.html b/gallery/axisartist/axis_direction.html deleted file mode 100644 index bc38892ae83..00000000000 --- a/gallery/axisartist/axis_direction.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/axis_direction_demo_step01.html b/gallery/axisartist/axis_direction_demo_step01.html deleted file mode 100644 index fe9f91f2a2b..00000000000 --- a/gallery/axisartist/axis_direction_demo_step01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/axis_direction_demo_step02.html b/gallery/axisartist/axis_direction_demo_step02.html deleted file mode 100644 index 09a3753385d..00000000000 --- a/gallery/axisartist/axis_direction_demo_step02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/axis_direction_demo_step03.html b/gallery/axisartist/axis_direction_demo_step03.html deleted file mode 100644 index ad78ae2c1cd..00000000000 --- a/gallery/axisartist/axis_direction_demo_step03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/axis_direction_demo_step04.html b/gallery/axisartist/axis_direction_demo_step04.html deleted file mode 100644 index 138c5a51145..00000000000 --- a/gallery/axisartist/axis_direction_demo_step04.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_axis_direction.html b/gallery/axisartist/demo_axis_direction.html deleted file mode 100644 index 1092cd7d57b..00000000000 --- a/gallery/axisartist/demo_axis_direction.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_axisline_style.html b/gallery/axisartist/demo_axisline_style.html deleted file mode 100644 index 199cf207681..00000000000 --- a/gallery/axisartist/demo_axisline_style.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_curvelinear_grid.html b/gallery/axisartist/demo_curvelinear_grid.html deleted file mode 100644 index bf386f7b52e..00000000000 --- a/gallery/axisartist/demo_curvelinear_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_curvelinear_grid2.html b/gallery/axisartist/demo_curvelinear_grid2.html deleted file mode 100644 index d7f6f0fdfb7..00000000000 --- a/gallery/axisartist/demo_curvelinear_grid2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_floating_axes.html b/gallery/axisartist/demo_floating_axes.html deleted file mode 100644 index 5c337865a84..00000000000 --- a/gallery/axisartist/demo_floating_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_floating_axis.html b/gallery/axisartist/demo_floating_axis.html deleted file mode 100644 index 23cb491df3e..00000000000 --- a/gallery/axisartist/demo_floating_axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_parasite_axes.html b/gallery/axisartist/demo_parasite_axes.html deleted file mode 100644 index 536f63fbee3..00000000000 --- a/gallery/axisartist/demo_parasite_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_parasite_axes2.html b/gallery/axisartist/demo_parasite_axes2.html deleted file mode 100644 index 7dc6f21374d..00000000000 --- a/gallery/axisartist/demo_parasite_axes2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_ticklabel_alignment.html b/gallery/axisartist/demo_ticklabel_alignment.html deleted file mode 100644 index 5a38a9750a9..00000000000 --- a/gallery/axisartist/demo_ticklabel_alignment.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/demo_ticklabel_direction.html b/gallery/axisartist/demo_ticklabel_direction.html deleted file mode 100644 index 9687ba8671e..00000000000 --- a/gallery/axisartist/demo_ticklabel_direction.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/sg_execution_times.html b/gallery/axisartist/sg_execution_times.html deleted file mode 100644 index 5d3bc5c321f..00000000000 --- a/gallery/axisartist/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/simple_axis_direction01.html b/gallery/axisartist/simple_axis_direction01.html deleted file mode 100644 index b0609bb9691..00000000000 --- a/gallery/axisartist/simple_axis_direction01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/simple_axis_direction03.html b/gallery/axisartist/simple_axis_direction03.html deleted file mode 100644 index 252dce647fc..00000000000 --- a/gallery/axisartist/simple_axis_direction03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/simple_axis_pad.html b/gallery/axisartist/simple_axis_pad.html deleted file mode 100644 index b0c69436162..00000000000 --- a/gallery/axisartist/simple_axis_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/simple_axisartist1.html b/gallery/axisartist/simple_axisartist1.html deleted file mode 100644 index 95295e82a66..00000000000 --- a/gallery/axisartist/simple_axisartist1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/simple_axisline.html b/gallery/axisartist/simple_axisline.html deleted file mode 100644 index ddde53ad8ce..00000000000 --- a/gallery/axisartist/simple_axisline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/simple_axisline2.html b/gallery/axisartist/simple_axisline2.html deleted file mode 100644 index 7db3869307c..00000000000 --- a/gallery/axisartist/simple_axisline2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/axisartist/simple_axisline3.html b/gallery/axisartist/simple_axisline3.html deleted file mode 100644 index 638faf0e87a..00000000000 --- a/gallery/axisartist/simple_axisline3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/color_by_yvalue.html b/gallery/color/color_by_yvalue.html deleted file mode 100644 index ae518c0c9a5..00000000000 --- a/gallery/color/color_by_yvalue.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/color_cycle.html b/gallery/color/color_cycle.html deleted file mode 100644 index 2b53dd65ec4..00000000000 --- a/gallery/color/color_cycle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/color_cycle_default.html b/gallery/color/color_cycle_default.html deleted file mode 100644 index 971af49e6af..00000000000 --- a/gallery/color/color_cycle_default.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/color_cycler.html b/gallery/color/color_cycler.html deleted file mode 100644 index 5fabebc4e62..00000000000 --- a/gallery/color/color_cycler.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/color_demo.html b/gallery/color/color_demo.html deleted file mode 100644 index c042c28f6e9..00000000000 --- a/gallery/color/color_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/colorbar_basics.html b/gallery/color/colorbar_basics.html deleted file mode 100644 index 1553af57d7b..00000000000 --- a/gallery/color/colorbar_basics.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/colormap_reference.html b/gallery/color/colormap_reference.html deleted file mode 100644 index aecda006d22..00000000000 --- a/gallery/color/colormap_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/colors_sgskip.html b/gallery/color/colors_sgskip.html deleted file mode 100644 index f30255de72b..00000000000 --- a/gallery/color/colors_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/custom_cmap.html b/gallery/color/custom_cmap.html deleted file mode 100644 index 6af598980df..00000000000 --- a/gallery/color/custom_cmap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/named_colors.html b/gallery/color/named_colors.html deleted file mode 100644 index e5ab1236825..00000000000 --- a/gallery/color/named_colors.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/color/sg_execution_times.html b/gallery/color/sg_execution_times.html deleted file mode 100644 index 4bf6bee11e4..00000000000 --- a/gallery/color/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/close_event.html b/gallery/event_handling/close_event.html deleted file mode 100644 index 03723137666..00000000000 --- a/gallery/event_handling/close_event.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/coords_demo.html b/gallery/event_handling/coords_demo.html deleted file mode 100644 index 83837083513..00000000000 --- a/gallery/event_handling/coords_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/data_browser.html b/gallery/event_handling/data_browser.html deleted file mode 100644 index c3df06b504d..00000000000 --- a/gallery/event_handling/data_browser.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/figure_axes_enter_leave.html b/gallery/event_handling/figure_axes_enter_leave.html deleted file mode 100644 index 88885d93fab..00000000000 --- a/gallery/event_handling/figure_axes_enter_leave.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/ginput_demo_sgskip.html b/gallery/event_handling/ginput_demo_sgskip.html deleted file mode 100644 index 1d909ffa2e8..00000000000 --- a/gallery/event_handling/ginput_demo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/ginput_manual_clabel_sgskip.html b/gallery/event_handling/ginput_manual_clabel_sgskip.html deleted file mode 100644 index 6df793e1b7e..00000000000 --- a/gallery/event_handling/ginput_manual_clabel_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/image_slices_viewer.html b/gallery/event_handling/image_slices_viewer.html deleted file mode 100644 index ceea3f62fad..00000000000 --- a/gallery/event_handling/image_slices_viewer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/keypress_demo.html b/gallery/event_handling/keypress_demo.html deleted file mode 100644 index f486dbef9f7..00000000000 --- a/gallery/event_handling/keypress_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/lasso_demo.html b/gallery/event_handling/lasso_demo.html deleted file mode 100644 index 4e2cc97d7a9..00000000000 --- a/gallery/event_handling/lasso_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/legend_picking.html b/gallery/event_handling/legend_picking.html deleted file mode 100644 index 866109d1c45..00000000000 --- a/gallery/event_handling/legend_picking.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/looking_glass.html b/gallery/event_handling/looking_glass.html deleted file mode 100644 index fc50555197e..00000000000 --- a/gallery/event_handling/looking_glass.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/path_editor.html b/gallery/event_handling/path_editor.html deleted file mode 100644 index 9f69a2662c3..00000000000 --- a/gallery/event_handling/path_editor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/pick_event_demo.html b/gallery/event_handling/pick_event_demo.html deleted file mode 100644 index 00768c34d26..00000000000 --- a/gallery/event_handling/pick_event_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/pick_event_demo2.html b/gallery/event_handling/pick_event_demo2.html deleted file mode 100644 index 12ef0f768c4..00000000000 --- a/gallery/event_handling/pick_event_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/pipong.html b/gallery/event_handling/pipong.html deleted file mode 100644 index f576cb5aa7a..00000000000 --- a/gallery/event_handling/pipong.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/poly_editor.html b/gallery/event_handling/poly_editor.html deleted file mode 100644 index e860ae639e2..00000000000 --- a/gallery/event_handling/poly_editor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/pong_sgskip.html b/gallery/event_handling/pong_sgskip.html deleted file mode 100644 index 76b5b2f8dcc..00000000000 --- a/gallery/event_handling/pong_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/resample.html b/gallery/event_handling/resample.html deleted file mode 100644 index cb476a95d84..00000000000 --- a/gallery/event_handling/resample.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/sg_execution_times.html b/gallery/event_handling/sg_execution_times.html deleted file mode 100644 index 8f60aea8910..00000000000 --- a/gallery/event_handling/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/timers.html b/gallery/event_handling/timers.html deleted file mode 100644 index abefbd7b998..00000000000 --- a/gallery/event_handling/timers.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/trifinder_event_demo.html b/gallery/event_handling/trifinder_event_demo.html deleted file mode 100644 index 4ed331e33ef..00000000000 --- a/gallery/event_handling/trifinder_event_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/viewlims.html b/gallery/event_handling/viewlims.html deleted file mode 100644 index 59b56e6cba4..00000000000 --- a/gallery/event_handling/viewlims.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/event_handling/zoom_window.html b/gallery/event_handling/zoom_window.html deleted file mode 100644 index 5363e2d8fa7..00000000000 --- a/gallery/event_handling/zoom_window.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/frontpage/3D.html b/gallery/frontpage/3D.html deleted file mode 100644 index 01f535b2dbe..00000000000 --- a/gallery/frontpage/3D.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/frontpage/contour.html b/gallery/frontpage/contour.html deleted file mode 100644 index fa2803fbe7c..00000000000 --- a/gallery/frontpage/contour.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/frontpage/contour_frontpage.html b/gallery/frontpage/contour_frontpage.html deleted file mode 100644 index 9f83295a6b3..00000000000 --- a/gallery/frontpage/contour_frontpage.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/frontpage/histogram.html b/gallery/frontpage/histogram.html deleted file mode 100644 index d1700d70385..00000000000 --- a/gallery/frontpage/histogram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/frontpage/membrane.html b/gallery/frontpage/membrane.html deleted file mode 100644 index ede451c92db..00000000000 --- a/gallery/frontpage/membrane.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/frontpage/sg_execution_times.html b/gallery/frontpage/sg_execution_times.html deleted file mode 100644 index 99646f6cceb..00000000000 --- a/gallery/frontpage/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/affine_image.html b/gallery/images_contours_and_fields/affine_image.html deleted file mode 100644 index c77ec79508c..00000000000 --- a/gallery/images_contours_and_fields/affine_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/barb_demo.html b/gallery/images_contours_and_fields/barb_demo.html deleted file mode 100644 index 5e44b24c64b..00000000000 --- a/gallery/images_contours_and_fields/barb_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/barcode_demo.html b/gallery/images_contours_and_fields/barcode_demo.html deleted file mode 100644 index 6cde7fa3f22..00000000000 --- a/gallery/images_contours_and_fields/barcode_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contour_corner_mask.html b/gallery/images_contours_and_fields/contour_corner_mask.html deleted file mode 100644 index 5de1e8f1bdb..00000000000 --- a/gallery/images_contours_and_fields/contour_corner_mask.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contour_demo.html b/gallery/images_contours_and_fields/contour_demo.html deleted file mode 100644 index a64072894d3..00000000000 --- a/gallery/images_contours_and_fields/contour_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contour_image.html b/gallery/images_contours_and_fields/contour_image.html deleted file mode 100644 index 557c05ea113..00000000000 --- a/gallery/images_contours_and_fields/contour_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contour_label_demo.html b/gallery/images_contours_and_fields/contour_label_demo.html deleted file mode 100644 index f0779c845f8..00000000000 --- a/gallery/images_contours_and_fields/contour_label_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contourf_demo.html b/gallery/images_contours_and_fields/contourf_demo.html deleted file mode 100644 index 39e3e61105f..00000000000 --- a/gallery/images_contours_and_fields/contourf_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contourf_hatching.html b/gallery/images_contours_and_fields/contourf_hatching.html deleted file mode 100644 index 9389c05f0e8..00000000000 --- a/gallery/images_contours_and_fields/contourf_hatching.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contourf_log.html b/gallery/images_contours_and_fields/contourf_log.html deleted file mode 100644 index fecb976a84a..00000000000 --- a/gallery/images_contours_and_fields/contourf_log.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/contours_in_optimization_demo.html b/gallery/images_contours_and_fields/contours_in_optimization_demo.html deleted file mode 100644 index 7ab88583a2c..00000000000 --- a/gallery/images_contours_and_fields/contours_in_optimization_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/custom_cmap.html b/gallery/images_contours_and_fields/custom_cmap.html deleted file mode 100644 index a32b9c82b4e..00000000000 --- a/gallery/images_contours_and_fields/custom_cmap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/demo_bboximage.html b/gallery/images_contours_and_fields/demo_bboximage.html deleted file mode 100644 index 3d19460a344..00000000000 --- a/gallery/images_contours_and_fields/demo_bboximage.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/figimage_demo.html b/gallery/images_contours_and_fields/figimage_demo.html deleted file mode 100644 index 675b283c80a..00000000000 --- a/gallery/images_contours_and_fields/figimage_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/griddata_demo.html b/gallery/images_contours_and_fields/griddata_demo.html deleted file mode 100644 index bbc200cf3c8..00000000000 --- a/gallery/images_contours_and_fields/griddata_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_annotated_heatmap.html b/gallery/images_contours_and_fields/image_annotated_heatmap.html deleted file mode 100644 index 719f063ec1a..00000000000 --- a/gallery/images_contours_and_fields/image_annotated_heatmap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_antialiasing.html b/gallery/images_contours_and_fields/image_antialiasing.html deleted file mode 100644 index 87df362c829..00000000000 --- a/gallery/images_contours_and_fields/image_antialiasing.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_clip_path.html b/gallery/images_contours_and_fields/image_clip_path.html deleted file mode 100644 index 8cdbc47c0a4..00000000000 --- a/gallery/images_contours_and_fields/image_clip_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_demo.html b/gallery/images_contours_and_fields/image_demo.html deleted file mode 100644 index 469fa375d26..00000000000 --- a/gallery/images_contours_and_fields/image_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_masked.html b/gallery/images_contours_and_fields/image_masked.html deleted file mode 100644 index d713f3ace13..00000000000 --- a/gallery/images_contours_and_fields/image_masked.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_nonuniform.html b/gallery/images_contours_and_fields/image_nonuniform.html deleted file mode 100644 index 8f30dfa0eff..00000000000 --- a/gallery/images_contours_and_fields/image_nonuniform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_transparency_blend.html b/gallery/images_contours_and_fields/image_transparency_blend.html deleted file mode 100644 index 0db9e33cbab..00000000000 --- a/gallery/images_contours_and_fields/image_transparency_blend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/image_zcoord.html b/gallery/images_contours_and_fields/image_zcoord.html deleted file mode 100644 index ba12beb110b..00000000000 --- a/gallery/images_contours_and_fields/image_zcoord.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/interpolation_methods.html b/gallery/images_contours_and_fields/interpolation_methods.html deleted file mode 100644 index ae4dd88e1b2..00000000000 --- a/gallery/images_contours_and_fields/interpolation_methods.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/irregulardatagrid.html b/gallery/images_contours_and_fields/irregulardatagrid.html deleted file mode 100644 index b9d052db19e..00000000000 --- a/gallery/images_contours_and_fields/irregulardatagrid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/layer_images.html b/gallery/images_contours_and_fields/layer_images.html deleted file mode 100644 index b2ae2c24586..00000000000 --- a/gallery/images_contours_and_fields/layer_images.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/matshow.html b/gallery/images_contours_and_fields/matshow.html deleted file mode 100644 index 316d0a275e9..00000000000 --- a/gallery/images_contours_and_fields/matshow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/multi_image.html b/gallery/images_contours_and_fields/multi_image.html deleted file mode 100644 index cf78b5b421e..00000000000 --- a/gallery/images_contours_and_fields/multi_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/pcolor_demo.html b/gallery/images_contours_and_fields/pcolor_demo.html deleted file mode 100644 index 878fe0074a2..00000000000 --- a/gallery/images_contours_and_fields/pcolor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/pcolormesh_grids.html b/gallery/images_contours_and_fields/pcolormesh_grids.html deleted file mode 100644 index bdb9d7731b1..00000000000 --- a/gallery/images_contours_and_fields/pcolormesh_grids.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/pcolormesh_levels.html b/gallery/images_contours_and_fields/pcolormesh_levels.html deleted file mode 100644 index 00a7eaf3d62..00000000000 --- a/gallery/images_contours_and_fields/pcolormesh_levels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/plot_streamplot.html b/gallery/images_contours_and_fields/plot_streamplot.html deleted file mode 100644 index 46a85756afe..00000000000 --- a/gallery/images_contours_and_fields/plot_streamplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/quadmesh_demo.html b/gallery/images_contours_and_fields/quadmesh_demo.html deleted file mode 100644 index 2b67f6a4bdd..00000000000 --- a/gallery/images_contours_and_fields/quadmesh_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/quiver_demo.html b/gallery/images_contours_and_fields/quiver_demo.html deleted file mode 100644 index de804ea0f9e..00000000000 --- a/gallery/images_contours_and_fields/quiver_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/quiver_simple_demo.html b/gallery/images_contours_and_fields/quiver_simple_demo.html deleted file mode 100644 index f683ca60a47..00000000000 --- a/gallery/images_contours_and_fields/quiver_simple_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/sg_execution_times.html b/gallery/images_contours_and_fields/sg_execution_times.html deleted file mode 100644 index ca8c6b8d614..00000000000 --- a/gallery/images_contours_and_fields/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/shading_example.html b/gallery/images_contours_and_fields/shading_example.html deleted file mode 100644 index 3a2b6ffee62..00000000000 --- a/gallery/images_contours_and_fields/shading_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/specgram_demo.html b/gallery/images_contours_and_fields/specgram_demo.html deleted file mode 100644 index 6016dfcbfb5..00000000000 --- a/gallery/images_contours_and_fields/specgram_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/spy_demos.html b/gallery/images_contours_and_fields/spy_demos.html deleted file mode 100644 index 072d159fda2..00000000000 --- a/gallery/images_contours_and_fields/spy_demos.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/tricontour_demo.html b/gallery/images_contours_and_fields/tricontour_demo.html deleted file mode 100644 index 672995a6df2..00000000000 --- a/gallery/images_contours_and_fields/tricontour_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/tricontour_smooth_delaunay.html b/gallery/images_contours_and_fields/tricontour_smooth_delaunay.html deleted file mode 100644 index df1aef78cea..00000000000 --- a/gallery/images_contours_and_fields/tricontour_smooth_delaunay.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/tricontour_smooth_user.html b/gallery/images_contours_and_fields/tricontour_smooth_user.html deleted file mode 100644 index bb53bbea379..00000000000 --- a/gallery/images_contours_and_fields/tricontour_smooth_user.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/tricontour_vs_griddata.html b/gallery/images_contours_and_fields/tricontour_vs_griddata.html deleted file mode 100644 index 45a0420ed21..00000000000 --- a/gallery/images_contours_and_fields/tricontour_vs_griddata.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/trigradient_demo.html b/gallery/images_contours_and_fields/trigradient_demo.html deleted file mode 100644 index 89cc2ba83f1..00000000000 --- a/gallery/images_contours_and_fields/trigradient_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/triinterp_demo.html b/gallery/images_contours_and_fields/triinterp_demo.html deleted file mode 100644 index 224da8d544b..00000000000 --- a/gallery/images_contours_and_fields/triinterp_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/tripcolor_demo.html b/gallery/images_contours_and_fields/tripcolor_demo.html deleted file mode 100644 index 1f8b0749906..00000000000 --- a/gallery/images_contours_and_fields/tripcolor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/triplot_demo.html b/gallery/images_contours_and_fields/triplot_demo.html deleted file mode 100644 index 68315ee4aa9..00000000000 --- a/gallery/images_contours_and_fields/triplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/images_contours_and_fields/watermark_image.html b/gallery/images_contours_and_fields/watermark_image.html deleted file mode 100644 index 49c0b95fc67..00000000000 --- a/gallery/images_contours_and_fields/watermark_image.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/index.html b/gallery/index.html deleted file mode 100644 index 43d5e4c4c51..00000000000 --- a/gallery/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/arctest.html b/gallery/lines_bars_and_markers/arctest.html deleted file mode 100644 index 05c7cf1083f..00000000000 --- a/gallery/lines_bars_and_markers/arctest.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/bar_label_demo.html b/gallery/lines_bars_and_markers/bar_label_demo.html deleted file mode 100644 index 6655d8a91a4..00000000000 --- a/gallery/lines_bars_and_markers/bar_label_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/bar_stacked.html b/gallery/lines_bars_and_markers/bar_stacked.html deleted file mode 100644 index 070bc1bcf82..00000000000 --- a/gallery/lines_bars_and_markers/bar_stacked.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/barchart.html b/gallery/lines_bars_and_markers/barchart.html deleted file mode 100644 index d6c7d2921b4..00000000000 --- a/gallery/lines_bars_and_markers/barchart.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/barh.html b/gallery/lines_bars_and_markers/barh.html deleted file mode 100644 index 7b246d3a766..00000000000 --- a/gallery/lines_bars_and_markers/barh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/broken_barh.html b/gallery/lines_bars_and_markers/broken_barh.html deleted file mode 100644 index 8d0aa74a29c..00000000000 --- a/gallery/lines_bars_and_markers/broken_barh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/capstyle.html b/gallery/lines_bars_and_markers/capstyle.html deleted file mode 100644 index 1008b581931..00000000000 --- a/gallery/lines_bars_and_markers/capstyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/categorical_variables.html b/gallery/lines_bars_and_markers/categorical_variables.html deleted file mode 100644 index b8ae6434dee..00000000000 --- a/gallery/lines_bars_and_markers/categorical_variables.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/cohere.html b/gallery/lines_bars_and_markers/cohere.html deleted file mode 100644 index b6e396ced48..00000000000 --- a/gallery/lines_bars_and_markers/cohere.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/csd_demo.html b/gallery/lines_bars_and_markers/csd_demo.html deleted file mode 100644 index 752071d2316..00000000000 --- a/gallery/lines_bars_and_markers/csd_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/curve_error_band.html b/gallery/lines_bars_and_markers/curve_error_band.html deleted file mode 100644 index 43cb840ae39..00000000000 --- a/gallery/lines_bars_and_markers/curve_error_band.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/errorbar_limits.html b/gallery/lines_bars_and_markers/errorbar_limits.html deleted file mode 100644 index 55569b3f71b..00000000000 --- a/gallery/lines_bars_and_markers/errorbar_limits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/errorbar_limits_simple.html b/gallery/lines_bars_and_markers/errorbar_limits_simple.html deleted file mode 100644 index e664dadbb9e..00000000000 --- a/gallery/lines_bars_and_markers/errorbar_limits_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/errorbar_subsample.html b/gallery/lines_bars_and_markers/errorbar_subsample.html deleted file mode 100644 index 9891d5b3a12..00000000000 --- a/gallery/lines_bars_and_markers/errorbar_subsample.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/eventcollection_demo.html b/gallery/lines_bars_and_markers/eventcollection_demo.html deleted file mode 100644 index efd1e5e07c3..00000000000 --- a/gallery/lines_bars_and_markers/eventcollection_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/eventcollection_demo.pdf b/gallery/lines_bars_and_markers/eventcollection_demo.pdf deleted file mode 120000 index 24f18d3c873..00000000000 --- a/gallery/lines_bars_and_markers/eventcollection_demo.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/lines_bars_and_markers/eventcollection_demo.pdf \ No newline at end of file diff --git a/gallery/lines_bars_and_markers/eventcollection_demo.png b/gallery/lines_bars_and_markers/eventcollection_demo.png deleted file mode 120000 index 00d180490dc..00000000000 --- a/gallery/lines_bars_and_markers/eventcollection_demo.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/lines_bars_and_markers/eventcollection_demo.png \ No newline at end of file diff --git a/gallery/lines_bars_and_markers/eventcollection_demo.py b/gallery/lines_bars_and_markers/eventcollection_demo.py deleted file mode 120000 index 9356ccaedcf..00000000000 --- a/gallery/lines_bars_and_markers/eventcollection_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/lines_bars_and_markers/eventcollection_demo.py \ No newline at end of file diff --git a/gallery/lines_bars_and_markers/eventplot_demo.html b/gallery/lines_bars_and_markers/eventplot_demo.html deleted file mode 100644 index ee4b0c9af8c..00000000000 --- a/gallery/lines_bars_and_markers/eventplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/eventplot_demo.pdf b/gallery/lines_bars_and_markers/eventplot_demo.pdf deleted file mode 120000 index 7ce90ff5bac..00000000000 --- a/gallery/lines_bars_and_markers/eventplot_demo.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/lines_bars_and_markers/eventplot_demo.pdf \ No newline at end of file diff --git a/gallery/lines_bars_and_markers/eventplot_demo.png b/gallery/lines_bars_and_markers/eventplot_demo.png deleted file mode 120000 index 4906622cf01..00000000000 --- a/gallery/lines_bars_and_markers/eventplot_demo.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/lines_bars_and_markers/eventplot_demo.png \ No newline at end of file diff --git a/gallery/lines_bars_and_markers/eventplot_demo.py b/gallery/lines_bars_and_markers/eventplot_demo.py deleted file mode 120000 index f09da4042b9..00000000000 --- a/gallery/lines_bars_and_markers/eventplot_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/lines_bars_and_markers/eventplot_demo.py \ No newline at end of file diff --git a/gallery/lines_bars_and_markers/fill.html b/gallery/lines_bars_and_markers/fill.html deleted file mode 100644 index be2b325f57e..00000000000 --- a/gallery/lines_bars_and_markers/fill.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/fill_between_alpha.html b/gallery/lines_bars_and_markers/fill_between_alpha.html deleted file mode 100644 index f463ff3bff9..00000000000 --- a/gallery/lines_bars_and_markers/fill_between_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/fill_between_demo.html b/gallery/lines_bars_and_markers/fill_between_demo.html deleted file mode 100644 index 57e79dc44cd..00000000000 --- a/gallery/lines_bars_and_markers/fill_between_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/fill_betweenx_demo.html b/gallery/lines_bars_and_markers/fill_betweenx_demo.html deleted file mode 100644 index e0f0a1b386e..00000000000 --- a/gallery/lines_bars_and_markers/fill_betweenx_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/filled_step.html b/gallery/lines_bars_and_markers/filled_step.html deleted file mode 100644 index 458ccf1d704..00000000000 --- a/gallery/lines_bars_and_markers/filled_step.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/gradient_bar.html b/gallery/lines_bars_and_markers/gradient_bar.html deleted file mode 100644 index 2c2ed2099d4..00000000000 --- a/gallery/lines_bars_and_markers/gradient_bar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/hat_graph.html b/gallery/lines_bars_and_markers/hat_graph.html deleted file mode 100644 index a13e0c3c4fa..00000000000 --- a/gallery/lines_bars_and_markers/hat_graph.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/horizontal_barchart_distribution.html b/gallery/lines_bars_and_markers/horizontal_barchart_distribution.html deleted file mode 100644 index ee9e076b003..00000000000 --- a/gallery/lines_bars_and_markers/horizontal_barchart_distribution.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/interp_demo.html b/gallery/lines_bars_and_markers/interp_demo.html deleted file mode 100644 index 807e2166ef2..00000000000 --- a/gallery/lines_bars_and_markers/interp_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/joinstyle.html b/gallery/lines_bars_and_markers/joinstyle.html deleted file mode 100644 index ebef7898964..00000000000 --- a/gallery/lines_bars_and_markers/joinstyle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/line_demo_dash_control.html b/gallery/lines_bars_and_markers/line_demo_dash_control.html deleted file mode 100644 index 7807aa351c6..00000000000 --- a/gallery/lines_bars_and_markers/line_demo_dash_control.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/line_styles_reference.html b/gallery/lines_bars_and_markers/line_styles_reference.html deleted file mode 100644 index a0e94ae12d9..00000000000 --- a/gallery/lines_bars_and_markers/line_styles_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/lines_with_ticks_demo.html b/gallery/lines_bars_and_markers/lines_with_ticks_demo.html deleted file mode 100644 index c1ab061750a..00000000000 --- a/gallery/lines_bars_and_markers/lines_with_ticks_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/linestyles.html b/gallery/lines_bars_and_markers/linestyles.html deleted file mode 100644 index 67368722363..00000000000 --- a/gallery/lines_bars_and_markers/linestyles.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/marker_fillstyle_reference.html b/gallery/lines_bars_and_markers/marker_fillstyle_reference.html deleted file mode 100644 index c31ee6e271d..00000000000 --- a/gallery/lines_bars_and_markers/marker_fillstyle_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/marker_reference.html b/gallery/lines_bars_and_markers/marker_reference.html deleted file mode 100644 index 26dbb00fc50..00000000000 --- a/gallery/lines_bars_and_markers/marker_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/markevery_demo.html b/gallery/lines_bars_and_markers/markevery_demo.html deleted file mode 100644 index d2a12c5a10a..00000000000 --- a/gallery/lines_bars_and_markers/markevery_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/markevery_prop_cycle.html b/gallery/lines_bars_and_markers/markevery_prop_cycle.html deleted file mode 100644 index 76af18904bb..00000000000 --- a/gallery/lines_bars_and_markers/markevery_prop_cycle.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/masked_demo.html b/gallery/lines_bars_and_markers/masked_demo.html deleted file mode 100644 index 5de0f7c76b3..00000000000 --- a/gallery/lines_bars_and_markers/masked_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/multicolored_line.html b/gallery/lines_bars_and_markers/multicolored_line.html deleted file mode 100644 index 6f5397915e3..00000000000 --- a/gallery/lines_bars_and_markers/multicolored_line.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/nan_test.html b/gallery/lines_bars_and_markers/nan_test.html deleted file mode 100644 index 72aed3a8123..00000000000 --- a/gallery/lines_bars_and_markers/nan_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/psd_demo.html b/gallery/lines_bars_and_markers/psd_demo.html deleted file mode 100644 index 9c268bfca1e..00000000000 --- a/gallery/lines_bars_and_markers/psd_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_custom_symbol.html b/gallery/lines_bars_and_markers/scatter_custom_symbol.html deleted file mode 100644 index 845c0a7344a..00000000000 --- a/gallery/lines_bars_and_markers/scatter_custom_symbol.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_demo2.html b/gallery/lines_bars_and_markers/scatter_demo2.html deleted file mode 100644 index 880866970f6..00000000000 --- a/gallery/lines_bars_and_markers/scatter_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_hist.html b/gallery/lines_bars_and_markers/scatter_hist.html deleted file mode 100644 index 3090fd731bf..00000000000 --- a/gallery/lines_bars_and_markers/scatter_hist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_masked.html b/gallery/lines_bars_and_markers/scatter_masked.html deleted file mode 100644 index d00477526ed..00000000000 --- a/gallery/lines_bars_and_markers/scatter_masked.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_piecharts.html b/gallery/lines_bars_and_markers/scatter_piecharts.html deleted file mode 100644 index a114fcd8a97..00000000000 --- a/gallery/lines_bars_and_markers/scatter_piecharts.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_star_poly.html b/gallery/lines_bars_and_markers/scatter_star_poly.html deleted file mode 100644 index f5bcce8ca9f..00000000000 --- a/gallery/lines_bars_and_markers/scatter_star_poly.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_symbol.html b/gallery/lines_bars_and_markers/scatter_symbol.html deleted file mode 100644 index 1709002fecb..00000000000 --- a/gallery/lines_bars_and_markers/scatter_symbol.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/scatter_with_legend.html b/gallery/lines_bars_and_markers/scatter_with_legend.html deleted file mode 100644 index 6a97e9d0a5e..00000000000 --- a/gallery/lines_bars_and_markers/scatter_with_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/sg_execution_times.html b/gallery/lines_bars_and_markers/sg_execution_times.html deleted file mode 100644 index c26494f9573..00000000000 --- a/gallery/lines_bars_and_markers/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/simple_plot.html b/gallery/lines_bars_and_markers/simple_plot.html deleted file mode 100644 index 339a67e0474..00000000000 --- a/gallery/lines_bars_and_markers/simple_plot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/span_regions.html b/gallery/lines_bars_and_markers/span_regions.html deleted file mode 100644 index aaa4ab19af5..00000000000 --- a/gallery/lines_bars_and_markers/span_regions.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/spectrum_demo.html b/gallery/lines_bars_and_markers/spectrum_demo.html deleted file mode 100644 index e7eab5497b2..00000000000 --- a/gallery/lines_bars_and_markers/spectrum_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/stackplot_demo.html b/gallery/lines_bars_and_markers/stackplot_demo.html deleted file mode 100644 index e1376cf2935..00000000000 --- a/gallery/lines_bars_and_markers/stackplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/stairs_demo.html b/gallery/lines_bars_and_markers/stairs_demo.html deleted file mode 100644 index 1d70317fd6b..00000000000 --- a/gallery/lines_bars_and_markers/stairs_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/stem_plot.html b/gallery/lines_bars_and_markers/stem_plot.html deleted file mode 100644 index 92c6efff31a..00000000000 --- a/gallery/lines_bars_and_markers/stem_plot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/step_demo.html b/gallery/lines_bars_and_markers/step_demo.html deleted file mode 100644 index afacf1a3c1e..00000000000 --- a/gallery/lines_bars_and_markers/step_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/timeline.html b/gallery/lines_bars_and_markers/timeline.html deleted file mode 100644 index a85de24deac..00000000000 --- a/gallery/lines_bars_and_markers/timeline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/vline_hline_demo.html b/gallery/lines_bars_and_markers/vline_hline_demo.html deleted file mode 100644 index c9f14bd0b2b..00000000000 --- a/gallery/lines_bars_and_markers/vline_hline_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/lines_bars_and_markers/xcorr_acorr_demo.html b/gallery/lines_bars_and_markers/xcorr_acorr_demo.html deleted file mode 100644 index 66c4908d884..00000000000 --- a/gallery/lines_bars_and_markers/xcorr_acorr_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/agg_buffer.html b/gallery/misc/agg_buffer.html deleted file mode 100644 index d062be87f0c..00000000000 --- a/gallery/misc/agg_buffer.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/agg_buffer_to_array.html b/gallery/misc/agg_buffer_to_array.html deleted file mode 100644 index 78f51527d2b..00000000000 --- a/gallery/misc/agg_buffer_to_array.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/anchored_artists.html b/gallery/misc/anchored_artists.html deleted file mode 100644 index aff6b56a649..00000000000 --- a/gallery/misc/anchored_artists.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/bbox_intersect.html b/gallery/misc/bbox_intersect.html deleted file mode 100644 index 44fa0cf88d3..00000000000 --- a/gallery/misc/bbox_intersect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/contour_manual.html b/gallery/misc/contour_manual.html deleted file mode 100644 index c5aff343f8d..00000000000 --- a/gallery/misc/contour_manual.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/coords_report.html b/gallery/misc/coords_report.html deleted file mode 100644 index 80396ae256d..00000000000 --- a/gallery/misc/coords_report.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/cursor_demo.html b/gallery/misc/cursor_demo.html deleted file mode 100644 index d80b85d9d1e..00000000000 --- a/gallery/misc/cursor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/cursor_demo_sgskip.html b/gallery/misc/cursor_demo_sgskip.html deleted file mode 100644 index 3e6d3e9e7b8..00000000000 --- a/gallery/misc/cursor_demo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/custom_projection.html b/gallery/misc/custom_projection.html deleted file mode 100644 index b5082327131..00000000000 --- a/gallery/misc/custom_projection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/customize_rc.html b/gallery/misc/customize_rc.html deleted file mode 100644 index 5e0f74bba25..00000000000 --- a/gallery/misc/customize_rc.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/demo_agg_filter.html b/gallery/misc/demo_agg_filter.html deleted file mode 100644 index c3a100c62a4..00000000000 --- a/gallery/misc/demo_agg_filter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/demo_ribbon_box.html b/gallery/misc/demo_ribbon_box.html deleted file mode 100644 index bbcf45ca5f4..00000000000 --- a/gallery/misc/demo_ribbon_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/fill_spiral.html b/gallery/misc/fill_spiral.html deleted file mode 100644 index 4bd7d04c01b..00000000000 --- a/gallery/misc/fill_spiral.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/findobj_demo.html b/gallery/misc/findobj_demo.html deleted file mode 100644 index dbf51de9a8b..00000000000 --- a/gallery/misc/findobj_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/font_indexing.html b/gallery/misc/font_indexing.html deleted file mode 100644 index 1da39f1daeb..00000000000 --- a/gallery/misc/font_indexing.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/ftface_props.html b/gallery/misc/ftface_props.html deleted file mode 100644 index 8ed361c8e17..00000000000 --- a/gallery/misc/ftface_props.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/histogram_path.html b/gallery/misc/histogram_path.html deleted file mode 100644 index e178511ee36..00000000000 --- a/gallery/misc/histogram_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/histogram_path.py b/gallery/misc/histogram_path.py deleted file mode 120000 index bb219052c67..00000000000 --- a/gallery/misc/histogram_path.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/misc/histogram_path.py \ No newline at end of file diff --git a/gallery/misc/histogram_path_00_00.pdf b/gallery/misc/histogram_path_00_00.pdf deleted file mode 120000 index b889ac307c7..00000000000 --- a/gallery/misc/histogram_path_00_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/misc/histogram_path_00_00.pdf \ No newline at end of file diff --git a/gallery/misc/histogram_path_00_00.png b/gallery/misc/histogram_path_00_00.png deleted file mode 120000 index 3415f502d18..00000000000 --- a/gallery/misc/histogram_path_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/misc/histogram_path_00_00.png \ No newline at end of file diff --git a/gallery/misc/hyperlinks_sgskip.html b/gallery/misc/hyperlinks_sgskip.html deleted file mode 100644 index f5292ca3437..00000000000 --- a/gallery/misc/hyperlinks_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/image_thumbnail_sgskip.html b/gallery/misc/image_thumbnail_sgskip.html deleted file mode 100644 index c2d03db2ffb..00000000000 --- a/gallery/misc/image_thumbnail_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/keyword_plotting.html b/gallery/misc/keyword_plotting.html deleted file mode 100644 index 52ef048fde4..00000000000 --- a/gallery/misc/keyword_plotting.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/load_converter.html b/gallery/misc/load_converter.html deleted file mode 100644 index bf4d71fe6c5..00000000000 --- a/gallery/misc/load_converter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/logo.html b/gallery/misc/logo.html deleted file mode 100644 index a01c7290e60..00000000000 --- a/gallery/misc/logo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/logos2.html b/gallery/misc/logos2.html deleted file mode 100644 index f2a418672c4..00000000000 --- a/gallery/misc/logos2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/multipage_pdf.html b/gallery/misc/multipage_pdf.html deleted file mode 100644 index 9b161cee751..00000000000 --- a/gallery/misc/multipage_pdf.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/multiprocess_sgskip.html b/gallery/misc/multiprocess_sgskip.html deleted file mode 100644 index d9e8f29aca2..00000000000 --- a/gallery/misc/multiprocess_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/packed_bubbles.html b/gallery/misc/packed_bubbles.html deleted file mode 100644 index f0504c5b10e..00000000000 --- a/gallery/misc/packed_bubbles.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/patheffect_demo.html b/gallery/misc/patheffect_demo.html deleted file mode 100644 index 0519beadb00..00000000000 --- a/gallery/misc/patheffect_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/plotfile_demo.html b/gallery/misc/plotfile_demo.html deleted file mode 100644 index 300c1920e8d..00000000000 --- a/gallery/misc/plotfile_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/plotfile_demo_sgskip.html b/gallery/misc/plotfile_demo_sgskip.html deleted file mode 100644 index 1009e9bb300..00000000000 --- a/gallery/misc/plotfile_demo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/print_stdout_sgskip.html b/gallery/misc/print_stdout_sgskip.html deleted file mode 100644 index 550c106b8f8..00000000000 --- a/gallery/misc/print_stdout_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/pythonic_matplotlib.html b/gallery/misc/pythonic_matplotlib.html deleted file mode 100644 index b3c36f81137..00000000000 --- a/gallery/misc/pythonic_matplotlib.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/rasterization_demo.html b/gallery/misc/rasterization_demo.html deleted file mode 100644 index 8565cd5fe02..00000000000 --- a/gallery/misc/rasterization_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/rc_traits_sgskip.html b/gallery/misc/rc_traits_sgskip.html deleted file mode 100644 index 55db123da65..00000000000 --- a/gallery/misc/rc_traits_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/rec_groupby_demo.html b/gallery/misc/rec_groupby_demo.html deleted file mode 100644 index e0dc826ef3c..00000000000 --- a/gallery/misc/rec_groupby_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/set_and_get.html b/gallery/misc/set_and_get.html deleted file mode 100644 index 38e4547eadb..00000000000 --- a/gallery/misc/set_and_get.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/sg_execution_times.html b/gallery/misc/sg_execution_times.html deleted file mode 100644 index 1e09f382823..00000000000 --- a/gallery/misc/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/svg_filter_line.html b/gallery/misc/svg_filter_line.html deleted file mode 100644 index c05bd4f79b3..00000000000 --- a/gallery/misc/svg_filter_line.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/svg_filter_pie.html b/gallery/misc/svg_filter_pie.html deleted file mode 100644 index b2e1289085d..00000000000 --- a/gallery/misc/svg_filter_pie.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/table_demo.html b/gallery/misc/table_demo.html deleted file mode 100644 index 2aad0953923..00000000000 --- a/gallery/misc/table_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/tickedstroke_demo.html b/gallery/misc/tickedstroke_demo.html deleted file mode 100644 index d7243630075..00000000000 --- a/gallery/misc/tickedstroke_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/tight_bbox_test.html b/gallery/misc/tight_bbox_test.html deleted file mode 100644 index fd880e2fa41..00000000000 --- a/gallery/misc/tight_bbox_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/transoffset.html b/gallery/misc/transoffset.html deleted file mode 100644 index 9b1b496fafb..00000000000 --- a/gallery/misc/transoffset.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/webapp_demo_sgskip.html b/gallery/misc/webapp_demo_sgskip.html deleted file mode 100644 index d83c852f9c4..00000000000 --- a/gallery/misc/webapp_demo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/misc/zorder_demo.html b/gallery/misc/zorder_demo.html deleted file mode 100644 index 8751af2cf04..00000000000 --- a/gallery/misc/zorder_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/2dcollections3d.html b/gallery/mplot3d/2dcollections3d.html deleted file mode 100644 index 49b8b17e029..00000000000 --- a/gallery/mplot3d/2dcollections3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/3d_bars.html b/gallery/mplot3d/3d_bars.html deleted file mode 100644 index 95853c7040d..00000000000 --- a/gallery/mplot3d/3d_bars.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/bars3d.html b/gallery/mplot3d/bars3d.html deleted file mode 100644 index 251e0f8be2d..00000000000 --- a/gallery/mplot3d/bars3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/box3d.html b/gallery/mplot3d/box3d.html deleted file mode 100644 index 525f4bb5ddd..00000000000 --- a/gallery/mplot3d/box3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/contour3d.html b/gallery/mplot3d/contour3d.html deleted file mode 100644 index 3495e81c1cb..00000000000 --- a/gallery/mplot3d/contour3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/contour3d_2.html b/gallery/mplot3d/contour3d_2.html deleted file mode 100644 index 1b8306e2a4a..00000000000 --- a/gallery/mplot3d/contour3d_2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/contour3d_3.html b/gallery/mplot3d/contour3d_3.html deleted file mode 100644 index de065dda984..00000000000 --- a/gallery/mplot3d/contour3d_3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/contourf3d.html b/gallery/mplot3d/contourf3d.html deleted file mode 100644 index ecbcaa52db4..00000000000 --- a/gallery/mplot3d/contourf3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/contourf3d_2.html b/gallery/mplot3d/contourf3d_2.html deleted file mode 100644 index daeccb7757d..00000000000 --- a/gallery/mplot3d/contourf3d_2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/custom_shaded_3d_surface.html b/gallery/mplot3d/custom_shaded_3d_surface.html deleted file mode 100644 index e18b8914cf3..00000000000 --- a/gallery/mplot3d/custom_shaded_3d_surface.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/errorbar3d.html b/gallery/mplot3d/errorbar3d.html deleted file mode 100644 index 3412493062a..00000000000 --- a/gallery/mplot3d/errorbar3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/errorbar3d.pdf b/gallery/mplot3d/errorbar3d.pdf deleted file mode 120000 index 77598807dd3..00000000000 --- a/gallery/mplot3d/errorbar3d.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/errorbar3d.pdf \ No newline at end of file diff --git a/gallery/mplot3d/errorbar3d.png b/gallery/mplot3d/errorbar3d.png deleted file mode 120000 index d8bfdb54189..00000000000 --- a/gallery/mplot3d/errorbar3d.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/errorbar3d.png \ No newline at end of file diff --git a/gallery/mplot3d/errorbar3d.py b/gallery/mplot3d/errorbar3d.py deleted file mode 120000 index 777d0fe941e..00000000000 --- a/gallery/mplot3d/errorbar3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/errorbar3d.py \ No newline at end of file diff --git a/gallery/mplot3d/hist3d.html b/gallery/mplot3d/hist3d.html deleted file mode 100644 index f0c23073b4f..00000000000 --- a/gallery/mplot3d/hist3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/lines3d.html b/gallery/mplot3d/lines3d.html deleted file mode 100644 index b9d3f479b3c..00000000000 --- a/gallery/mplot3d/lines3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/lorenz_attractor.html b/gallery/mplot3d/lorenz_attractor.html deleted file mode 100644 index 5c35264a25a..00000000000 --- a/gallery/mplot3d/lorenz_attractor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/mixed_subplots.html b/gallery/mplot3d/mixed_subplots.html deleted file mode 100644 index e1e2da69426..00000000000 --- a/gallery/mplot3d/mixed_subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/offset.html b/gallery/mplot3d/offset.html deleted file mode 100644 index 9af44161bd9..00000000000 --- a/gallery/mplot3d/offset.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/pathpatch3d.html b/gallery/mplot3d/pathpatch3d.html deleted file mode 100644 index faa2dff99f2..00000000000 --- a/gallery/mplot3d/pathpatch3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/polys3d.html b/gallery/mplot3d/polys3d.html deleted file mode 100644 index bcb2fc50e2d..00000000000 --- a/gallery/mplot3d/polys3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/quiver3d.html b/gallery/mplot3d/quiver3d.html deleted file mode 100644 index ab63f72a66c..00000000000 --- a/gallery/mplot3d/quiver3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/rotate_axes3d.html b/gallery/mplot3d/rotate_axes3d.html deleted file mode 100644 index 41129165e17..00000000000 --- a/gallery/mplot3d/rotate_axes3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/rotate_axes3d_sgskip.html b/gallery/mplot3d/rotate_axes3d_sgskip.html deleted file mode 100644 index faeeb2e7ec9..00000000000 --- a/gallery/mplot3d/rotate_axes3d_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/scatter3d.html b/gallery/mplot3d/scatter3d.html deleted file mode 100644 index da6951e536d..00000000000 --- a/gallery/mplot3d/scatter3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/sg_execution_times.html b/gallery/mplot3d/sg_execution_times.html deleted file mode 100644 index b56f98241f3..00000000000 --- a/gallery/mplot3d/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/stem3d_demo.html b/gallery/mplot3d/stem3d_demo.html deleted file mode 100644 index 48068a409ca..00000000000 --- a/gallery/mplot3d/stem3d_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/stem3d_demo.py b/gallery/mplot3d/stem3d_demo.py deleted file mode 120000 index 9458ac6afcf..00000000000 --- a/gallery/mplot3d/stem3d_demo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/stem3d_demo.py \ No newline at end of file diff --git a/gallery/mplot3d/stem3d_demo_00_00.pdf b/gallery/mplot3d/stem3d_demo_00_00.pdf deleted file mode 120000 index 9bd542a0047..00000000000 --- a/gallery/mplot3d/stem3d_demo_00_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/stem3d_demo_00_00.pdf \ No newline at end of file diff --git a/gallery/mplot3d/stem3d_demo_00_00.png b/gallery/mplot3d/stem3d_demo_00_00.png deleted file mode 120000 index 89ebdc6536a..00000000000 --- a/gallery/mplot3d/stem3d_demo_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/stem3d_demo_00_00.png \ No newline at end of file diff --git a/gallery/mplot3d/stem3d_demo_01_00.pdf b/gallery/mplot3d/stem3d_demo_01_00.pdf deleted file mode 120000 index 88100934695..00000000000 --- a/gallery/mplot3d/stem3d_demo_01_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/stem3d_demo_01_00.pdf \ No newline at end of file diff --git a/gallery/mplot3d/stem3d_demo_01_00.png b/gallery/mplot3d/stem3d_demo_01_00.png deleted file mode 120000 index 2a95b3bc3ef..00000000000 --- a/gallery/mplot3d/stem3d_demo_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/stem3d_demo_01_00.png \ No newline at end of file diff --git a/gallery/mplot3d/stem3d_demo_02_00.pdf b/gallery/mplot3d/stem3d_demo_02_00.pdf deleted file mode 120000 index 7c045717cc0..00000000000 --- a/gallery/mplot3d/stem3d_demo_02_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/stem3d_demo_02_00.pdf \ No newline at end of file diff --git a/gallery/mplot3d/stem3d_demo_02_00.png b/gallery/mplot3d/stem3d_demo_02_00.png deleted file mode 120000 index efc69cea166..00000000000 --- a/gallery/mplot3d/stem3d_demo_02_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/stem3d_demo_02_00.png \ No newline at end of file diff --git a/gallery/mplot3d/subplot3d.html b/gallery/mplot3d/subplot3d.html deleted file mode 100644 index 8e07d23b063..00000000000 --- a/gallery/mplot3d/subplot3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/surface3d.html b/gallery/mplot3d/surface3d.html deleted file mode 100644 index 67aa1c6a2a6..00000000000 --- a/gallery/mplot3d/surface3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/surface3d_2.html b/gallery/mplot3d/surface3d_2.html deleted file mode 100644 index 596123b981e..00000000000 --- a/gallery/mplot3d/surface3d_2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/surface3d_3.html b/gallery/mplot3d/surface3d_3.html deleted file mode 100644 index a966389f099..00000000000 --- a/gallery/mplot3d/surface3d_3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/surface3d_radial.html b/gallery/mplot3d/surface3d_radial.html deleted file mode 100644 index 10b85aae319..00000000000 --- a/gallery/mplot3d/surface3d_radial.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/text3d.html b/gallery/mplot3d/text3d.html deleted file mode 100644 index 0bf2b450dd1..00000000000 --- a/gallery/mplot3d/text3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/tricontour3d.html b/gallery/mplot3d/tricontour3d.html deleted file mode 100644 index 9752fc01357..00000000000 --- a/gallery/mplot3d/tricontour3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/tricontourf3d.html b/gallery/mplot3d/tricontourf3d.html deleted file mode 100644 index 4a20e3f14b8..00000000000 --- a/gallery/mplot3d/tricontourf3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/trisurf3d.html b/gallery/mplot3d/trisurf3d.html deleted file mode 100644 index b5ba0b14220..00000000000 --- a/gallery/mplot3d/trisurf3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/trisurf3d.pdf b/gallery/mplot3d/trisurf3d.pdf deleted file mode 120000 index ae4e89a9bf4..00000000000 --- a/gallery/mplot3d/trisurf3d.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/trisurf3d.pdf \ No newline at end of file diff --git a/gallery/mplot3d/trisurf3d.png b/gallery/mplot3d/trisurf3d.png deleted file mode 120000 index 4d7ade18581..00000000000 --- a/gallery/mplot3d/trisurf3d.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/trisurf3d.png \ No newline at end of file diff --git a/gallery/mplot3d/trisurf3d.py b/gallery/mplot3d/trisurf3d.py deleted file mode 120000 index 2ebf67f304a..00000000000 --- a/gallery/mplot3d/trisurf3d.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/trisurf3d.py \ No newline at end of file diff --git a/gallery/mplot3d/trisurf3d_2.html b/gallery/mplot3d/trisurf3d_2.html deleted file mode 100644 index acde7e80693..00000000000 --- a/gallery/mplot3d/trisurf3d_2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/trisurf3d_2.pdf b/gallery/mplot3d/trisurf3d_2.pdf deleted file mode 120000 index 92a21f2e655..00000000000 --- a/gallery/mplot3d/trisurf3d_2.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/trisurf3d_2.pdf \ No newline at end of file diff --git a/gallery/mplot3d/trisurf3d_2.png b/gallery/mplot3d/trisurf3d_2.png deleted file mode 120000 index 47baf88bc5f..00000000000 --- a/gallery/mplot3d/trisurf3d_2.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/trisurf3d_2.png \ No newline at end of file diff --git a/gallery/mplot3d/trisurf3d_2.py b/gallery/mplot3d/trisurf3d_2.py deleted file mode 120000 index f2f184a7c40..00000000000 --- a/gallery/mplot3d/trisurf3d_2.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/trisurf3d_2.py \ No newline at end of file diff --git a/gallery/mplot3d/voxels.html b/gallery/mplot3d/voxels.html deleted file mode 100644 index 1d78259fb7c..00000000000 --- a/gallery/mplot3d/voxels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/voxels.pdf b/gallery/mplot3d/voxels.pdf deleted file mode 120000 index 3e294ddf33c..00000000000 --- a/gallery/mplot3d/voxels.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/voxels.pdf \ No newline at end of file diff --git a/gallery/mplot3d/voxels.png b/gallery/mplot3d/voxels.png deleted file mode 120000 index 4c6d82107b5..00000000000 --- a/gallery/mplot3d/voxels.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels.png \ No newline at end of file diff --git a/gallery/mplot3d/voxels.py b/gallery/mplot3d/voxels.py deleted file mode 120000 index a1842cb42c7..00000000000 --- a/gallery/mplot3d/voxels.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels.py \ No newline at end of file diff --git a/gallery/mplot3d/voxels_numpy_logo.html b/gallery/mplot3d/voxels_numpy_logo.html deleted file mode 100644 index bddf8f6a278..00000000000 --- a/gallery/mplot3d/voxels_numpy_logo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/voxels_numpy_logo.pdf b/gallery/mplot3d/voxels_numpy_logo.pdf deleted file mode 120000 index f2a218d6a78..00000000000 --- a/gallery/mplot3d/voxels_numpy_logo.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/voxels_numpy_logo.pdf \ No newline at end of file diff --git a/gallery/mplot3d/voxels_numpy_logo.png b/gallery/mplot3d/voxels_numpy_logo.png deleted file mode 120000 index 1c9516ff4b8..00000000000 --- a/gallery/mplot3d/voxels_numpy_logo.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels_numpy_logo.png \ No newline at end of file diff --git a/gallery/mplot3d/voxels_numpy_logo.py b/gallery/mplot3d/voxels_numpy_logo.py deleted file mode 120000 index 537bb92663d..00000000000 --- a/gallery/mplot3d/voxels_numpy_logo.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels_numpy_logo.py \ No newline at end of file diff --git a/gallery/mplot3d/voxels_rgb.html b/gallery/mplot3d/voxels_rgb.html deleted file mode 100644 index d279e433a5d..00000000000 --- a/gallery/mplot3d/voxels_rgb.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/voxels_rgb.pdf b/gallery/mplot3d/voxels_rgb.pdf deleted file mode 120000 index e8064ce4336..00000000000 --- a/gallery/mplot3d/voxels_rgb.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/voxels_rgb.pdf \ No newline at end of file diff --git a/gallery/mplot3d/voxels_rgb.png b/gallery/mplot3d/voxels_rgb.png deleted file mode 120000 index 65c382ccadd..00000000000 --- a/gallery/mplot3d/voxels_rgb.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels_rgb.png \ No newline at end of file diff --git a/gallery/mplot3d/voxels_rgb.py b/gallery/mplot3d/voxels_rgb.py deleted file mode 120000 index e12ef830d8a..00000000000 --- a/gallery/mplot3d/voxels_rgb.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels_rgb.py \ No newline at end of file diff --git a/gallery/mplot3d/voxels_torus.html b/gallery/mplot3d/voxels_torus.html deleted file mode 100644 index 10f8bed726a..00000000000 --- a/gallery/mplot3d/voxels_torus.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/voxels_torus.pdf b/gallery/mplot3d/voxels_torus.pdf deleted file mode 120000 index 8407a533763..00000000000 --- a/gallery/mplot3d/voxels_torus.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/mplot3d/voxels_torus.pdf \ No newline at end of file diff --git a/gallery/mplot3d/voxels_torus.png b/gallery/mplot3d/voxels_torus.png deleted file mode 120000 index 71ba3abe3a1..00000000000 --- a/gallery/mplot3d/voxels_torus.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels_torus.png \ No newline at end of file diff --git a/gallery/mplot3d/voxels_torus.py b/gallery/mplot3d/voxels_torus.py deleted file mode 120000 index f25555892a6..00000000000 --- a/gallery/mplot3d/voxels_torus.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/mplot3d/voxels_torus.py \ No newline at end of file diff --git a/gallery/mplot3d/wire3d.html b/gallery/mplot3d/wire3d.html deleted file mode 100644 index 2f4e59f9af0..00000000000 --- a/gallery/mplot3d/wire3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/wire3d_animation.html b/gallery/mplot3d/wire3d_animation.html deleted file mode 100644 index 1b77c2f1204..00000000000 --- a/gallery/mplot3d/wire3d_animation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/wire3d_animation_sgskip.html b/gallery/mplot3d/wire3d_animation_sgskip.html deleted file mode 100644 index b0b8dfced8b..00000000000 --- a/gallery/mplot3d/wire3d_animation_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/mplot3d/wire3d_zero_stride.html b/gallery/mplot3d/wire3d_zero_stride.html deleted file mode 100644 index c0db04dcc84..00000000000 --- a/gallery/mplot3d/wire3d_zero_stride.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/bar_of_pie.html b/gallery/pie_and_polar_charts/bar_of_pie.html deleted file mode 100644 index 19cd2c3752d..00000000000 --- a/gallery/pie_and_polar_charts/bar_of_pie.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/nested_pie.html b/gallery/pie_and_polar_charts/nested_pie.html deleted file mode 100644 index 195606596e4..00000000000 --- a/gallery/pie_and_polar_charts/nested_pie.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/pie_and_donut_labels.html b/gallery/pie_and_polar_charts/pie_and_donut_labels.html deleted file mode 100644 index 410f0171ae5..00000000000 --- a/gallery/pie_and_polar_charts/pie_and_donut_labels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/pie_demo2.html b/gallery/pie_and_polar_charts/pie_demo2.html deleted file mode 100644 index cb25f51988f..00000000000 --- a/gallery/pie_and_polar_charts/pie_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/pie_features.html b/gallery/pie_and_polar_charts/pie_features.html deleted file mode 100644 index 9b7e30ed406..00000000000 --- a/gallery/pie_and_polar_charts/pie_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/polar_bar.html b/gallery/pie_and_polar_charts/polar_bar.html deleted file mode 100644 index cb06804c7ea..00000000000 --- a/gallery/pie_and_polar_charts/polar_bar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/polar_demo.html b/gallery/pie_and_polar_charts/polar_demo.html deleted file mode 100644 index 4858aeed529..00000000000 --- a/gallery/pie_and_polar_charts/polar_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/polar_legend.html b/gallery/pie_and_polar_charts/polar_legend.html deleted file mode 100644 index 6d26ae2e01f..00000000000 --- a/gallery/pie_and_polar_charts/polar_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/polar_scatter.html b/gallery/pie_and_polar_charts/polar_scatter.html deleted file mode 100644 index 91390f29673..00000000000 --- a/gallery/pie_and_polar_charts/polar_scatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pie_and_polar_charts/sg_execution_times.html b/gallery/pie_and_polar_charts/sg_execution_times.html deleted file mode 100644 index cfc4a974fbf..00000000000 --- a/gallery/pie_and_polar_charts/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/align_ylabels.html b/gallery/pyplots/align_ylabels.html deleted file mode 100644 index f141862a53d..00000000000 --- a/gallery/pyplots/align_ylabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/annotate_transform.html b/gallery/pyplots/annotate_transform.html deleted file mode 100644 index 68aa0d9d1c6..00000000000 --- a/gallery/pyplots/annotate_transform.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/annotation_basic.html b/gallery/pyplots/annotation_basic.html deleted file mode 100644 index 25ef07094ac..00000000000 --- a/gallery/pyplots/annotation_basic.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/annotation_polar.html b/gallery/pyplots/annotation_polar.html deleted file mode 100644 index 6c82756e2ff..00000000000 --- a/gallery/pyplots/annotation_polar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/auto_subplots_adjust.html b/gallery/pyplots/auto_subplots_adjust.html deleted file mode 100644 index 17b7620f810..00000000000 --- a/gallery/pyplots/auto_subplots_adjust.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/axline.html b/gallery/pyplots/axline.html deleted file mode 100644 index 2f8f41145e0..00000000000 --- a/gallery/pyplots/axline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/boxplot_demo.html b/gallery/pyplots/boxplot_demo.html deleted file mode 100644 index 4a6d38196b6..00000000000 --- a/gallery/pyplots/boxplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/boxplot_demo_pyplot.html b/gallery/pyplots/boxplot_demo_pyplot.html deleted file mode 100644 index d307c3721ba..00000000000 --- a/gallery/pyplots/boxplot_demo_pyplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/compound_path_demo.html b/gallery/pyplots/compound_path_demo.html deleted file mode 100644 index 27f2b07964d..00000000000 --- a/gallery/pyplots/compound_path_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/dollar_ticks.html b/gallery/pyplots/dollar_ticks.html deleted file mode 100644 index a28f768ff86..00000000000 --- a/gallery/pyplots/dollar_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/fig_axes_customize_simple.html b/gallery/pyplots/fig_axes_customize_simple.html deleted file mode 100644 index 9a1cfca0a5e..00000000000 --- a/gallery/pyplots/fig_axes_customize_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/fig_axes_labels_simple.html b/gallery/pyplots/fig_axes_labels_simple.html deleted file mode 100644 index b03973846ab..00000000000 --- a/gallery/pyplots/fig_axes_labels_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/fig_x.html b/gallery/pyplots/fig_x.html deleted file mode 100644 index 0fc33082df6..00000000000 --- a/gallery/pyplots/fig_x.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_annotate.html b/gallery/pyplots/pyplot_annotate.html deleted file mode 100644 index 083ee9a176a..00000000000 --- a/gallery/pyplots/pyplot_annotate.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_formatstr.html b/gallery/pyplots/pyplot_formatstr.html deleted file mode 100644 index 0df46fd8efb..00000000000 --- a/gallery/pyplots/pyplot_formatstr.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_mathtext.html b/gallery/pyplots/pyplot_mathtext.html deleted file mode 100644 index 08338349661..00000000000 --- a/gallery/pyplots/pyplot_mathtext.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_scales.html b/gallery/pyplots/pyplot_scales.html deleted file mode 100644 index 2c24d73d37d..00000000000 --- a/gallery/pyplots/pyplot_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_simple.html b/gallery/pyplots/pyplot_simple.html deleted file mode 100644 index b82c4050c48..00000000000 --- a/gallery/pyplots/pyplot_simple.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_text.html b/gallery/pyplots/pyplot_text.html deleted file mode 100644 index bbc7433e3ff..00000000000 --- a/gallery/pyplots/pyplot_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_three.html b/gallery/pyplots/pyplot_three.html deleted file mode 100644 index 6ceec5c813a..00000000000 --- a/gallery/pyplots/pyplot_three.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/pyplot_two_subplots.html b/gallery/pyplots/pyplot_two_subplots.html deleted file mode 100644 index 1a68cc4adce..00000000000 --- a/gallery/pyplots/pyplot_two_subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/sg_execution_times.html b/gallery/pyplots/sg_execution_times.html deleted file mode 100644 index 2d808d6ef72..00000000000 --- a/gallery/pyplots/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/text_commands.html b/gallery/pyplots/text_commands.html deleted file mode 100644 index 0e5ec17d360..00000000000 --- a/gallery/pyplots/text_commands.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/text_layout.html b/gallery/pyplots/text_layout.html deleted file mode 100644 index 7cc217fb07a..00000000000 --- a/gallery/pyplots/text_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/whats_new_1_subplot3d.html b/gallery/pyplots/whats_new_1_subplot3d.html deleted file mode 100644 index 4fb7c3b8943..00000000000 --- a/gallery/pyplots/whats_new_1_subplot3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/whats_new_98_4_fancy.html b/gallery/pyplots/whats_new_98_4_fancy.html deleted file mode 100644 index 8e4cb267b0f..00000000000 --- a/gallery/pyplots/whats_new_98_4_fancy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/whats_new_98_4_fill_between.html b/gallery/pyplots/whats_new_98_4_fill_between.html deleted file mode 100644 index c29efd861f5..00000000000 --- a/gallery/pyplots/whats_new_98_4_fill_between.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/whats_new_98_4_legend.html b/gallery/pyplots/whats_new_98_4_legend.html deleted file mode 100644 index fbc1aeede90..00000000000 --- a/gallery/pyplots/whats_new_98_4_legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/whats_new_99_axes_grid.html b/gallery/pyplots/whats_new_99_axes_grid.html deleted file mode 100644 index 48be7cb8d9a..00000000000 --- a/gallery/pyplots/whats_new_99_axes_grid.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/whats_new_99_mplot3d.html b/gallery/pyplots/whats_new_99_mplot3d.html deleted file mode 100644 index e25ce5a07d9..00000000000 --- a/gallery/pyplots/whats_new_99_mplot3d.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/pyplots/whats_new_99_spines.html b/gallery/pyplots/whats_new_99_spines.html deleted file mode 100644 index eb52c9ae0f4..00000000000 --- a/gallery/pyplots/whats_new_99_spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/centered_spines_with_arrows.html b/gallery/recipes/centered_spines_with_arrows.html deleted file mode 100644 index 7ebb3809e99..00000000000 --- a/gallery/recipes/centered_spines_with_arrows.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/common_date_problems.html b/gallery/recipes/common_date_problems.html deleted file mode 100644 index 8616779a0e5..00000000000 --- a/gallery/recipes/common_date_problems.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/create_subplots.html b/gallery/recipes/create_subplots.html deleted file mode 100644 index efc6819da78..00000000000 --- a/gallery/recipes/create_subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/fill_between_alpha.html b/gallery/recipes/fill_between_alpha.html deleted file mode 100644 index dcc36010562..00000000000 --- a/gallery/recipes/fill_between_alpha.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/placing_text_boxes.html b/gallery/recipes/placing_text_boxes.html deleted file mode 100644 index c30323c4cfe..00000000000 --- a/gallery/recipes/placing_text_boxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/sg_execution_times.html b/gallery/recipes/sg_execution_times.html deleted file mode 100644 index 98ed86c3380..00000000000 --- a/gallery/recipes/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/share_axis_lims_views.html b/gallery/recipes/share_axis_lims_views.html deleted file mode 100644 index 35003582c84..00000000000 --- a/gallery/recipes/share_axis_lims_views.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/recipes/transparent_legends.html b/gallery/recipes/transparent_legends.html deleted file mode 100644 index 67bb97c8e37..00000000000 --- a/gallery/recipes/transparent_legends.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/aspect_loglog.html b/gallery/scales/aspect_loglog.html deleted file mode 100644 index 52d5126005f..00000000000 --- a/gallery/scales/aspect_loglog.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/custom_scale.html b/gallery/scales/custom_scale.html deleted file mode 100644 index fe2785db286..00000000000 --- a/gallery/scales/custom_scale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/log_bar.html b/gallery/scales/log_bar.html deleted file mode 100644 index 300e14dc2eb..00000000000 --- a/gallery/scales/log_bar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/log_demo.html b/gallery/scales/log_demo.html deleted file mode 100644 index 1d7c9851ddf..00000000000 --- a/gallery/scales/log_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/log_test.html b/gallery/scales/log_test.html deleted file mode 100644 index 6bf7938fb33..00000000000 --- a/gallery/scales/log_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/logit_demo.html b/gallery/scales/logit_demo.html deleted file mode 100644 index 9a9615afbbd..00000000000 --- a/gallery/scales/logit_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/power_norm.html b/gallery/scales/power_norm.html deleted file mode 100644 index 861fb967462..00000000000 --- a/gallery/scales/power_norm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/scales.html b/gallery/scales/scales.html deleted file mode 100644 index 28b94b788ff..00000000000 --- a/gallery/scales/scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/sg_execution_times.html b/gallery/scales/sg_execution_times.html deleted file mode 100644 index 591a43ab91a..00000000000 --- a/gallery/scales/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/scales/symlog_demo.html b/gallery/scales/symlog_demo.html deleted file mode 100644 index 29c1defb0c5..00000000000 --- a/gallery/scales/symlog_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/arrow_guide.html b/gallery/shapes_and_collections/arrow_guide.html deleted file mode 100644 index 46b673c6092..00000000000 --- a/gallery/shapes_and_collections/arrow_guide.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/artist_reference.html b/gallery/shapes_and_collections/artist_reference.html deleted file mode 100644 index b9b382c7484..00000000000 --- a/gallery/shapes_and_collections/artist_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/collections.html b/gallery/shapes_and_collections/collections.html deleted file mode 100644 index 8825cd1bb3b..00000000000 --- a/gallery/shapes_and_collections/collections.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/compound_path.html b/gallery/shapes_and_collections/compound_path.html deleted file mode 100644 index 97583aa7fac..00000000000 --- a/gallery/shapes_and_collections/compound_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/dolphin.html b/gallery/shapes_and_collections/dolphin.html deleted file mode 100644 index 703c42422b1..00000000000 --- a/gallery/shapes_and_collections/dolphin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/donut.html b/gallery/shapes_and_collections/donut.html deleted file mode 100644 index 21d79d8a85f..00000000000 --- a/gallery/shapes_and_collections/donut.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/ellipse_collection.html b/gallery/shapes_and_collections/ellipse_collection.html deleted file mode 100644 index da7edc300b3..00000000000 --- a/gallery/shapes_and_collections/ellipse_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/ellipse_demo.html b/gallery/shapes_and_collections/ellipse_demo.html deleted file mode 100644 index 9659b11f99c..00000000000 --- a/gallery/shapes_and_collections/ellipse_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/ellipse_rotated.html b/gallery/shapes_and_collections/ellipse_rotated.html deleted file mode 100644 index 0bedd926fd8..00000000000 --- a/gallery/shapes_and_collections/ellipse_rotated.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/fancybox_demo.html b/gallery/shapes_and_collections/fancybox_demo.html deleted file mode 100644 index 851b67cebe5..00000000000 --- a/gallery/shapes_and_collections/fancybox_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/hatch_demo.html b/gallery/shapes_and_collections/hatch_demo.html deleted file mode 100644 index 82a15b6ae1b..00000000000 --- a/gallery/shapes_and_collections/hatch_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/hatch_style_reference.html b/gallery/shapes_and_collections/hatch_style_reference.html deleted file mode 100644 index 538ce3b3566..00000000000 --- a/gallery/shapes_and_collections/hatch_style_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/line_collection.html b/gallery/shapes_and_collections/line_collection.html deleted file mode 100644 index f28e609b17f..00000000000 --- a/gallery/shapes_and_collections/line_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/marker_path.html b/gallery/shapes_and_collections/marker_path.html deleted file mode 100644 index 897cbdeff44..00000000000 --- a/gallery/shapes_and_collections/marker_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/patch_collection.html b/gallery/shapes_and_collections/patch_collection.html deleted file mode 100644 index 2a1992f8ce8..00000000000 --- a/gallery/shapes_and_collections/patch_collection.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/path_patch.html b/gallery/shapes_and_collections/path_patch.html deleted file mode 100644 index 4612493baa2..00000000000 --- a/gallery/shapes_and_collections/path_patch.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/quad_bezier.html b/gallery/shapes_and_collections/quad_bezier.html deleted file mode 100644 index b60a79f7091..00000000000 --- a/gallery/shapes_and_collections/quad_bezier.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/scatter.html b/gallery/shapes_and_collections/scatter.html deleted file mode 100644 index e8620d2eff1..00000000000 --- a/gallery/shapes_and_collections/scatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/shapes_and_collections/sg_execution_times.html b/gallery/shapes_and_collections/sg_execution_times.html deleted file mode 100644 index 7aacb2c69f5..00000000000 --- a/gallery/shapes_and_collections/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/showcase/anatomy.html b/gallery/showcase/anatomy.html deleted file mode 100644 index 02cab91d4a4..00000000000 --- a/gallery/showcase/anatomy.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/showcase/bachelors_degrees_by_gender.html b/gallery/showcase/bachelors_degrees_by_gender.html deleted file mode 100644 index f52608df784..00000000000 --- a/gallery/showcase/bachelors_degrees_by_gender.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/showcase/firefox.html b/gallery/showcase/firefox.html deleted file mode 100644 index f22530dfa96..00000000000 --- a/gallery/showcase/firefox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/showcase/integral.html b/gallery/showcase/integral.html deleted file mode 100644 index bca3fe3ed26..00000000000 --- a/gallery/showcase/integral.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/showcase/mandelbrot.html b/gallery/showcase/mandelbrot.html deleted file mode 100644 index 043025877fa..00000000000 --- a/gallery/showcase/mandelbrot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/showcase/sg_execution_times.html b/gallery/showcase/sg_execution_times.html deleted file mode 100644 index b5df8d31958..00000000000 --- a/gallery/showcase/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/showcase/xkcd.html b/gallery/showcase/xkcd.html deleted file mode 100644 index eac2629f29c..00000000000 --- a/gallery/showcase/xkcd.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/advanced_hillshading.html b/gallery/specialty_plots/advanced_hillshading.html deleted file mode 100644 index 43cb7911cc2..00000000000 --- a/gallery/specialty_plots/advanced_hillshading.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/anscombe.html b/gallery/specialty_plots/anscombe.html deleted file mode 100644 index 7cfa243ff93..00000000000 --- a/gallery/specialty_plots/anscombe.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/hinton_demo.html b/gallery/specialty_plots/hinton_demo.html deleted file mode 100644 index 4b1926a580c..00000000000 --- a/gallery/specialty_plots/hinton_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/leftventricle_bulleye.html b/gallery/specialty_plots/leftventricle_bulleye.html deleted file mode 100644 index 381c673fe42..00000000000 --- a/gallery/specialty_plots/leftventricle_bulleye.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/mri_demo.html b/gallery/specialty_plots/mri_demo.html deleted file mode 100644 index e7b8ab9f8ee..00000000000 --- a/gallery/specialty_plots/mri_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/mri_with_eeg.html b/gallery/specialty_plots/mri_with_eeg.html deleted file mode 100644 index 3c6bdf5ae89..00000000000 --- a/gallery/specialty_plots/mri_with_eeg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/radar_chart.html b/gallery/specialty_plots/radar_chart.html deleted file mode 100644 index 0d93c9d5bd5..00000000000 --- a/gallery/specialty_plots/radar_chart.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/sankey_basics.html b/gallery/specialty_plots/sankey_basics.html deleted file mode 100644 index 889751d2f3c..00000000000 --- a/gallery/specialty_plots/sankey_basics.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/sankey_basics.py b/gallery/specialty_plots/sankey_basics.py deleted file mode 120000 index d71eddf2999..00000000000 --- a/gallery/specialty_plots/sankey_basics.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/specialty_plots/sankey_basics.py \ No newline at end of file diff --git a/gallery/specialty_plots/sankey_basics_00_00.pdf b/gallery/specialty_plots/sankey_basics_00_00.pdf deleted file mode 120000 index cae46a0a668..00000000000 --- a/gallery/specialty_plots/sankey_basics_00_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/specialty_plots/sankey_basics_00_00.pdf \ No newline at end of file diff --git a/gallery/specialty_plots/sankey_basics_00_00.png b/gallery/specialty_plots/sankey_basics_00_00.png deleted file mode 120000 index cee59a794b2..00000000000 --- a/gallery/specialty_plots/sankey_basics_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/specialty_plots/sankey_basics_00_00.png \ No newline at end of file diff --git a/gallery/specialty_plots/sankey_basics_00_01.pdf b/gallery/specialty_plots/sankey_basics_00_01.pdf deleted file mode 120000 index 801774c764d..00000000000 --- a/gallery/specialty_plots/sankey_basics_00_01.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/specialty_plots/sankey_basics_00_01.pdf \ No newline at end of file diff --git a/gallery/specialty_plots/sankey_basics_00_01.png b/gallery/specialty_plots/sankey_basics_00_01.png deleted file mode 120000 index 6a8e01c67e0..00000000000 --- a/gallery/specialty_plots/sankey_basics_00_01.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/specialty_plots/sankey_basics_00_01.png \ No newline at end of file diff --git a/gallery/specialty_plots/sankey_basics_00_02.pdf b/gallery/specialty_plots/sankey_basics_00_02.pdf deleted file mode 120000 index ad42a9fc738..00000000000 --- a/gallery/specialty_plots/sankey_basics_00_02.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/specialty_plots/sankey_basics_00_02.pdf \ No newline at end of file diff --git a/gallery/specialty_plots/sankey_basics_00_02.png b/gallery/specialty_plots/sankey_basics_00_02.png deleted file mode 120000 index 4b734b949b3..00000000000 --- a/gallery/specialty_plots/sankey_basics_00_02.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/specialty_plots/sankey_basics_00_02.png \ No newline at end of file diff --git a/gallery/specialty_plots/sankey_links.html b/gallery/specialty_plots/sankey_links.html deleted file mode 100644 index 113d27db4ef..00000000000 --- a/gallery/specialty_plots/sankey_links.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/sankey_rankine.html b/gallery/specialty_plots/sankey_rankine.html deleted file mode 100644 index ef8e34d6f2d..00000000000 --- a/gallery/specialty_plots/sankey_rankine.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/sg_execution_times.html b/gallery/specialty_plots/sg_execution_times.html deleted file mode 100644 index 826f3c55082..00000000000 --- a/gallery/specialty_plots/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/skewt.html b/gallery/specialty_plots/skewt.html deleted file mode 100644 index 0fa9087b258..00000000000 --- a/gallery/specialty_plots/skewt.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/system_monitor.html b/gallery/specialty_plots/system_monitor.html deleted file mode 100644 index 34c239e89c5..00000000000 --- a/gallery/specialty_plots/system_monitor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/specialty_plots/topographic_hillshading.html b/gallery/specialty_plots/topographic_hillshading.html deleted file mode 100644 index 5e558566c5a..00000000000 --- a/gallery/specialty_plots/topographic_hillshading.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/spines/centered_spines_with_arrows.html b/gallery/spines/centered_spines_with_arrows.html deleted file mode 100644 index 853fb8ac06e..00000000000 --- a/gallery/spines/centered_spines_with_arrows.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/spines/multiple_yaxis_with_spines.html b/gallery/spines/multiple_yaxis_with_spines.html deleted file mode 100644 index 1758a9ba47e..00000000000 --- a/gallery/spines/multiple_yaxis_with_spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/spines/sg_execution_times.html b/gallery/spines/sg_execution_times.html deleted file mode 100644 index fe75a94687a..00000000000 --- a/gallery/spines/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/spines/spine_placement_demo.html b/gallery/spines/spine_placement_demo.html deleted file mode 100644 index 9b3604d8dae..00000000000 --- a/gallery/spines/spine_placement_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/spines/spines.html b/gallery/spines/spines.html deleted file mode 100644 index a65ab827914..00000000000 --- a/gallery/spines/spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/spines/spines_bounds.html b/gallery/spines/spines_bounds.html deleted file mode 100644 index 0dba47c4b29..00000000000 --- a/gallery/spines/spines_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/spines/spines_dropped.html b/gallery/spines/spines_dropped.html deleted file mode 100644 index f7ab450d695..00000000000 --- a/gallery/spines/spines_dropped.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/barchart_demo.html b/gallery/statistics/barchart_demo.html deleted file mode 100644 index d9b1fa89df1..00000000000 --- a/gallery/statistics/barchart_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/boxplot.html b/gallery/statistics/boxplot.html deleted file mode 100644 index 098c64600be..00000000000 --- a/gallery/statistics/boxplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/boxplot_color.html b/gallery/statistics/boxplot_color.html deleted file mode 100644 index f2cdeb57b60..00000000000 --- a/gallery/statistics/boxplot_color.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/boxplot_demo.html b/gallery/statistics/boxplot_demo.html deleted file mode 100644 index 6661c0cae14..00000000000 --- a/gallery/statistics/boxplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/boxplot_vs_violin.html b/gallery/statistics/boxplot_vs_violin.html deleted file mode 100644 index 5386c5309b7..00000000000 --- a/gallery/statistics/boxplot_vs_violin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/bxp.html b/gallery/statistics/bxp.html deleted file mode 100644 index 04a84034af8..00000000000 --- a/gallery/statistics/bxp.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/bxp.py b/gallery/statistics/bxp.py deleted file mode 120000 index 17462c72761..00000000000 --- a/gallery/statistics/bxp.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/statistics/bxp.py \ No newline at end of file diff --git a/gallery/statistics/bxp_00_00.pdf b/gallery/statistics/bxp_00_00.pdf deleted file mode 120000 index 524bd93ec34..00000000000 --- a/gallery/statistics/bxp_00_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/statistics/bxp_00_00.pdf \ No newline at end of file diff --git a/gallery/statistics/bxp_00_00.png b/gallery/statistics/bxp_00_00.png deleted file mode 120000 index 650bd0d6d70..00000000000 --- a/gallery/statistics/bxp_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/statistics/bxp_00_00.png \ No newline at end of file diff --git a/gallery/statistics/bxp_01_00.pdf b/gallery/statistics/bxp_01_00.pdf deleted file mode 120000 index 0fc07200a1c..00000000000 --- a/gallery/statistics/bxp_01_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/statistics/bxp_01_00.pdf \ No newline at end of file diff --git a/gallery/statistics/bxp_01_00.png b/gallery/statistics/bxp_01_00.png deleted file mode 120000 index b675b92514a..00000000000 --- a/gallery/statistics/bxp_01_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/statistics/bxp_01_00.png \ No newline at end of file diff --git a/gallery/statistics/confidence_ellipse.html b/gallery/statistics/confidence_ellipse.html deleted file mode 100644 index 4fea03b02bf..00000000000 --- a/gallery/statistics/confidence_ellipse.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/customized_violin.html b/gallery/statistics/customized_violin.html deleted file mode 100644 index 854e58abb2e..00000000000 --- a/gallery/statistics/customized_violin.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/errorbar.html b/gallery/statistics/errorbar.html deleted file mode 100644 index 9470ecb8b73..00000000000 --- a/gallery/statistics/errorbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/errorbar_features.html b/gallery/statistics/errorbar_features.html deleted file mode 100644 index 6e169538acd..00000000000 --- a/gallery/statistics/errorbar_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/errorbar_limits.html b/gallery/statistics/errorbar_limits.html deleted file mode 100644 index 848af0ad6bd..00000000000 --- a/gallery/statistics/errorbar_limits.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/errorbars_and_boxes.html b/gallery/statistics/errorbars_and_boxes.html deleted file mode 100644 index 8fec8a578d4..00000000000 --- a/gallery/statistics/errorbars_and_boxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/hexbin_demo.html b/gallery/statistics/hexbin_demo.html deleted file mode 100644 index 4aade298072..00000000000 --- a/gallery/statistics/hexbin_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/hist.html b/gallery/statistics/hist.html deleted file mode 100644 index 04bee4698fb..00000000000 --- a/gallery/statistics/hist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/histogram_cumulative.html b/gallery/statistics/histogram_cumulative.html deleted file mode 100644 index 75288f3dcdc..00000000000 --- a/gallery/statistics/histogram_cumulative.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/histogram_features.html b/gallery/statistics/histogram_features.html deleted file mode 100644 index bcb851b2a8a..00000000000 --- a/gallery/statistics/histogram_features.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/histogram_histtypes.html b/gallery/statistics/histogram_histtypes.html deleted file mode 100644 index 3c587fc55f0..00000000000 --- a/gallery/statistics/histogram_histtypes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/histogram_multihist.html b/gallery/statistics/histogram_multihist.html deleted file mode 100644 index 0dd63913874..00000000000 --- a/gallery/statistics/histogram_multihist.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/multiple_histograms_side_by_side.html b/gallery/statistics/multiple_histograms_side_by_side.html deleted file mode 100644 index 7baa729033b..00000000000 --- a/gallery/statistics/multiple_histograms_side_by_side.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/sg_execution_times.html b/gallery/statistics/sg_execution_times.html deleted file mode 100644 index 267595dd877..00000000000 --- a/gallery/statistics/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/time_series_histogram.html b/gallery/statistics/time_series_histogram.html deleted file mode 100644 index 7de952c1177..00000000000 --- a/gallery/statistics/time_series_histogram.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/statistics/violinplot.html b/gallery/statistics/violinplot.html deleted file mode 100644 index ba001df0473..00000000000 --- a/gallery/statistics/violinplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/bmh.html b/gallery/style_sheets/bmh.html deleted file mode 100644 index 03c68660147..00000000000 --- a/gallery/style_sheets/bmh.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/dark_background.html b/gallery/style_sheets/dark_background.html deleted file mode 100644 index 265b52b68f9..00000000000 --- a/gallery/style_sheets/dark_background.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/fivethirtyeight.html b/gallery/style_sheets/fivethirtyeight.html deleted file mode 100644 index 4fcf139ed9a..00000000000 --- a/gallery/style_sheets/fivethirtyeight.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/ggplot.html b/gallery/style_sheets/ggplot.html deleted file mode 100644 index 715212cd109..00000000000 --- a/gallery/style_sheets/ggplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/grayscale.html b/gallery/style_sheets/grayscale.html deleted file mode 100644 index 63c44253bce..00000000000 --- a/gallery/style_sheets/grayscale.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/plot_solarizedlight2.html b/gallery/style_sheets/plot_solarizedlight2.html deleted file mode 100644 index 1461df0e220..00000000000 --- a/gallery/style_sheets/plot_solarizedlight2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/sg_execution_times.html b/gallery/style_sheets/sg_execution_times.html deleted file mode 100644 index 65fd48f214c..00000000000 --- a/gallery/style_sheets/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/style_sheets/style_sheets_reference.html b/gallery/style_sheets/style_sheets_reference.html deleted file mode 100644 index 84e334e145a..00000000000 --- a/gallery/style_sheets/style_sheets_reference.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/align_labels_demo.html b/gallery/subplots_axes_and_figures/align_labels_demo.html deleted file mode 100644 index 27f3ba113a7..00000000000 --- a/gallery/subplots_axes_and_figures/align_labels_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axes_box_aspect.html b/gallery/subplots_axes_and_figures/axes_box_aspect.html deleted file mode 100644 index 817af544469..00000000000 --- a/gallery/subplots_axes_and_figures/axes_box_aspect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axes_demo.html b/gallery/subplots_axes_and_figures/axes_demo.html deleted file mode 100644 index 030c4ec2307..00000000000 --- a/gallery/subplots_axes_and_figures/axes_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axes_margins.html b/gallery/subplots_axes_and_figures/axes_margins.html deleted file mode 100644 index 3c098d32902..00000000000 --- a/gallery/subplots_axes_and_figures/axes_margins.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axes_props.html b/gallery/subplots_axes_and_figures/axes_props.html deleted file mode 100644 index d80ed0f8074..00000000000 --- a/gallery/subplots_axes_and_figures/axes_props.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axes_zoom_effect.html b/gallery/subplots_axes_and_figures/axes_zoom_effect.html deleted file mode 100644 index 2ad380f0c05..00000000000 --- a/gallery/subplots_axes_and_figures/axes_zoom_effect.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axhspan_demo.html b/gallery/subplots_axes_and_figures/axhspan_demo.html deleted file mode 100644 index 08e98c4cc24..00000000000 --- a/gallery/subplots_axes_and_figures/axhspan_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axis_equal_demo.html b/gallery/subplots_axes_and_figures/axis_equal_demo.html deleted file mode 100644 index 79169124347..00000000000 --- a/gallery/subplots_axes_and_figures/axis_equal_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/axis_labels_demo.html b/gallery/subplots_axes_and_figures/axis_labels_demo.html deleted file mode 100644 index 5bc5d873f9a..00000000000 --- a/gallery/subplots_axes_and_figures/axis_labels_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/broken_axis.html b/gallery/subplots_axes_and_figures/broken_axis.html deleted file mode 100644 index 870b1b9e85c..00000000000 --- a/gallery/subplots_axes_and_figures/broken_axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/colorbar_placement.html b/gallery/subplots_axes_and_figures/colorbar_placement.html deleted file mode 100644 index 33d6f04e339..00000000000 --- a/gallery/subplots_axes_and_figures/colorbar_placement.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/custom_figure_class.html b/gallery/subplots_axes_and_figures/custom_figure_class.html deleted file mode 100644 index abdd899bc07..00000000000 --- a/gallery/subplots_axes_and_figures/custom_figure_class.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/demo_constrained_layout.html b/gallery/subplots_axes_and_figures/demo_constrained_layout.html deleted file mode 100644 index 9894ce71648..00000000000 --- a/gallery/subplots_axes_and_figures/demo_constrained_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/demo_tight_layout.html b/gallery/subplots_axes_and_figures/demo_tight_layout.html deleted file mode 100644 index c5f57c1868a..00000000000 --- a/gallery/subplots_axes_and_figures/demo_tight_layout.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/fahrenheit_celsius_scales.html b/gallery/subplots_axes_and_figures/fahrenheit_celsius_scales.html deleted file mode 100644 index e830a73f265..00000000000 --- a/gallery/subplots_axes_and_figures/fahrenheit_celsius_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/figure_size_units.html b/gallery/subplots_axes_and_figures/figure_size_units.html deleted file mode 100644 index b5f33e6b4a6..00000000000 --- a/gallery/subplots_axes_and_figures/figure_size_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/figure_title.html b/gallery/subplots_axes_and_figures/figure_title.html deleted file mode 100644 index c25d7bdd47a..00000000000 --- a/gallery/subplots_axes_and_figures/figure_title.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/ganged_plots.html b/gallery/subplots_axes_and_figures/ganged_plots.html deleted file mode 100644 index 6aff28d6939..00000000000 --- a/gallery/subplots_axes_and_figures/ganged_plots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/geo_demo.html b/gallery/subplots_axes_and_figures/geo_demo.html deleted file mode 100644 index 636799f9472..00000000000 --- a/gallery/subplots_axes_and_figures/geo_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/gridspec_and_subplots.html b/gallery/subplots_axes_and_figures/gridspec_and_subplots.html deleted file mode 100644 index 59597c284f3..00000000000 --- a/gallery/subplots_axes_and_figures/gridspec_and_subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/gridspec_multicolumn.html b/gallery/subplots_axes_and_figures/gridspec_multicolumn.html deleted file mode 100644 index a55fad855f3..00000000000 --- a/gallery/subplots_axes_and_figures/gridspec_multicolumn.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/gridspec_nested.html b/gallery/subplots_axes_and_figures/gridspec_nested.html deleted file mode 100644 index f2014a3b539..00000000000 --- a/gallery/subplots_axes_and_figures/gridspec_nested.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/invert_axes.html b/gallery/subplots_axes_and_figures/invert_axes.html deleted file mode 100644 index 47498698ffa..00000000000 --- a/gallery/subplots_axes_and_figures/invert_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/multiple_figs_demo.html b/gallery/subplots_axes_and_figures/multiple_figs_demo.html deleted file mode 100644 index b222054d5fa..00000000000 --- a/gallery/subplots_axes_and_figures/multiple_figs_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/secondary_axis.html b/gallery/subplots_axes_and_figures/secondary_axis.html deleted file mode 100644 index 8f8fda0111b..00000000000 --- a/gallery/subplots_axes_and_figures/secondary_axis.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/sg_execution_times.html b/gallery/subplots_axes_and_figures/sg_execution_times.html deleted file mode 100644 index ce105c9da6f..00000000000 --- a/gallery/subplots_axes_and_figures/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/share_axis_lims_views.html b/gallery/subplots_axes_and_figures/share_axis_lims_views.html deleted file mode 100644 index 69fc147fd2f..00000000000 --- a/gallery/subplots_axes_and_figures/share_axis_lims_views.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/shared_axis_demo.html b/gallery/subplots_axes_and_figures/shared_axis_demo.html deleted file mode 100644 index 96eb1e1915a..00000000000 --- a/gallery/subplots_axes_and_figures/shared_axis_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/subfigures.html b/gallery/subplots_axes_and_figures/subfigures.html deleted file mode 100644 index 89cc38a9e2d..00000000000 --- a/gallery/subplots_axes_and_figures/subfigures.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/subplot.html b/gallery/subplots_axes_and_figures/subplot.html deleted file mode 100644 index a8681c0c363..00000000000 --- a/gallery/subplots_axes_and_figures/subplot.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/subplot.pdf b/gallery/subplots_axes_and_figures/subplot.pdf deleted file mode 120000 index d9b08bbce1e..00000000000 --- a/gallery/subplots_axes_and_figures/subplot.pdf +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/subplots_axes_and_figures/subplot.pdf \ No newline at end of file diff --git a/gallery/subplots_axes_and_figures/subplot.png b/gallery/subplots_axes_and_figures/subplot.png deleted file mode 120000 index a4cc707a443..00000000000 --- a/gallery/subplots_axes_and_figures/subplot.png +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/subplots_axes_and_figures/subplot.png \ No newline at end of file diff --git a/gallery/subplots_axes_and_figures/subplot.py b/gallery/subplots_axes_and_figures/subplot.py deleted file mode 120000 index b53818bf320..00000000000 --- a/gallery/subplots_axes_and_figures/subplot.py +++ /dev/null @@ -1 +0,0 @@ -../../2.2.5/gallery/subplots_axes_and_figures/subplot.py \ No newline at end of file diff --git a/gallery/subplots_axes_and_figures/subplot_demo.html b/gallery/subplots_axes_and_figures/subplot_demo.html deleted file mode 100644 index bb83778655e..00000000000 --- a/gallery/subplots_axes_and_figures/subplot_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/subplot_toolbar.html b/gallery/subplots_axes_and_figures/subplot_toolbar.html deleted file mode 100644 index 3a819f916bf..00000000000 --- a/gallery/subplots_axes_and_figures/subplot_toolbar.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/subplots_adjust.html b/gallery/subplots_axes_and_figures/subplots_adjust.html deleted file mode 100644 index dfa6a9bddb1..00000000000 --- a/gallery/subplots_axes_and_figures/subplots_adjust.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/subplots_demo.html b/gallery/subplots_axes_and_figures/subplots_demo.html deleted file mode 100644 index 90c264c4433..00000000000 --- a/gallery/subplots_axes_and_figures/subplots_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/two_scales.html b/gallery/subplots_axes_and_figures/two_scales.html deleted file mode 100644 index 4842f6a99a9..00000000000 --- a/gallery/subplots_axes_and_figures/two_scales.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/subplots_axes_and_figures/zoom_inset_axes.html b/gallery/subplots_axes_and_figures/zoom_inset_axes.html deleted file mode 100644 index e5488c27a67..00000000000 --- a/gallery/subplots_axes_and_figures/zoom_inset_axes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/accented_text.html b/gallery/text_labels_and_annotations/accented_text.html deleted file mode 100644 index 1708c508aed..00000000000 --- a/gallery/text_labels_and_annotations/accented_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/angle_annotation.html b/gallery/text_labels_and_annotations/angle_annotation.html deleted file mode 100644 index 15db3eb9a0b..00000000000 --- a/gallery/text_labels_and_annotations/angle_annotation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/annotation_demo.html b/gallery/text_labels_and_annotations/annotation_demo.html deleted file mode 100644 index c26984916c0..00000000000 --- a/gallery/text_labels_and_annotations/annotation_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/arrow_demo.html b/gallery/text_labels_and_annotations/arrow_demo.html deleted file mode 100644 index d722f234c62..00000000000 --- a/gallery/text_labels_and_annotations/arrow_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/arrow_simple_demo.html b/gallery/text_labels_and_annotations/arrow_simple_demo.html deleted file mode 100644 index 4b9c1a3a3de..00000000000 --- a/gallery/text_labels_and_annotations/arrow_simple_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/autowrap.html b/gallery/text_labels_and_annotations/autowrap.html deleted file mode 100644 index cd1a4540956..00000000000 --- a/gallery/text_labels_and_annotations/autowrap.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/custom_date_formatter.html b/gallery/text_labels_and_annotations/custom_date_formatter.html deleted file mode 100644 index ee68527a31d..00000000000 --- a/gallery/text_labels_and_annotations/custom_date_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/custom_legends.html b/gallery/text_labels_and_annotations/custom_legends.html deleted file mode 100644 index f523cb59c57..00000000000 --- a/gallery/text_labels_and_annotations/custom_legends.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/dashpointlabel.html b/gallery/text_labels_and_annotations/dashpointlabel.html deleted file mode 100644 index a77875a96fb..00000000000 --- a/gallery/text_labels_and_annotations/dashpointlabel.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/date.html b/gallery/text_labels_and_annotations/date.html deleted file mode 100644 index 4da3dded8c6..00000000000 --- a/gallery/text_labels_and_annotations/date.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/date_index_formatter.html b/gallery/text_labels_and_annotations/date_index_formatter.html deleted file mode 100644 index 60d21716a9a..00000000000 --- a/gallery/text_labels_and_annotations/date_index_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/demo_annotation_box.html b/gallery/text_labels_and_annotations/demo_annotation_box.html deleted file mode 100644 index 17dce225305..00000000000 --- a/gallery/text_labels_and_annotations/demo_annotation_box.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/demo_text_path.html b/gallery/text_labels_and_annotations/demo_text_path.html deleted file mode 100644 index 29d9253e095..00000000000 --- a/gallery/text_labels_and_annotations/demo_text_path.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/demo_text_rotation_mode.html b/gallery/text_labels_and_annotations/demo_text_rotation_mode.html deleted file mode 100644 index 189c89b6d33..00000000000 --- a/gallery/text_labels_and_annotations/demo_text_rotation_mode.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/dfrac_demo.html b/gallery/text_labels_and_annotations/dfrac_demo.html deleted file mode 100644 index dd0930a44b5..00000000000 --- a/gallery/text_labels_and_annotations/dfrac_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/engineering_formatter.html b/gallery/text_labels_and_annotations/engineering_formatter.html deleted file mode 100644 index ce081220545..00000000000 --- a/gallery/text_labels_and_annotations/engineering_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/fancyarrow_demo.html b/gallery/text_labels_and_annotations/fancyarrow_demo.html deleted file mode 100644 index 92982e42c7e..00000000000 --- a/gallery/text_labels_and_annotations/fancyarrow_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/fancytextbox_demo.html b/gallery/text_labels_and_annotations/fancytextbox_demo.html deleted file mode 100644 index b09184898d2..00000000000 --- a/gallery/text_labels_and_annotations/fancytextbox_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/figlegend_demo.html b/gallery/text_labels_and_annotations/figlegend_demo.html deleted file mode 100644 index 321560889b0..00000000000 --- a/gallery/text_labels_and_annotations/figlegend_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/font_family_rc_sgskip.html b/gallery/text_labels_and_annotations/font_family_rc_sgskip.html deleted file mode 100644 index 823d1a92db5..00000000000 --- a/gallery/text_labels_and_annotations/font_family_rc_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/font_file.html b/gallery/text_labels_and_annotations/font_file.html deleted file mode 100644 index 37b9c9b301c..00000000000 --- a/gallery/text_labels_and_annotations/font_file.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/font_table.html b/gallery/text_labels_and_annotations/font_table.html deleted file mode 100644 index 56b316990ab..00000000000 --- a/gallery/text_labels_and_annotations/font_table.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/font_table_ttf_sgskip.html b/gallery/text_labels_and_annotations/font_table_ttf_sgskip.html deleted file mode 100644 index 3784f3c7338..00000000000 --- a/gallery/text_labels_and_annotations/font_table_ttf_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/fonts_demo.html b/gallery/text_labels_and_annotations/fonts_demo.html deleted file mode 100644 index 8ffc275e0c0..00000000000 --- a/gallery/text_labels_and_annotations/fonts_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/fonts_demo_kw.html b/gallery/text_labels_and_annotations/fonts_demo_kw.html deleted file mode 100644 index b15304198e3..00000000000 --- a/gallery/text_labels_and_annotations/fonts_demo_kw.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/label_subplots.html b/gallery/text_labels_and_annotations/label_subplots.html deleted file mode 100644 index ee58a2c2cf1..00000000000 --- a/gallery/text_labels_and_annotations/label_subplots.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/legend.html b/gallery/text_labels_and_annotations/legend.html deleted file mode 100644 index 0aada41a57c..00000000000 --- a/gallery/text_labels_and_annotations/legend.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/legend.py b/gallery/text_labels_and_annotations/legend.py deleted file mode 120000 index 470b67264fb..00000000000 --- a/gallery/text_labels_and_annotations/legend.py +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/text_labels_and_annotations/legend.py \ No newline at end of file diff --git a/gallery/text_labels_and_annotations/legend_00_00.pdf b/gallery/text_labels_and_annotations/legend_00_00.pdf deleted file mode 120000 index 21ce9598da6..00000000000 --- a/gallery/text_labels_and_annotations/legend_00_00.pdf +++ /dev/null @@ -1 +0,0 @@ -../../3.5.3/gallery/text_labels_and_annotations/legend_00_00.pdf \ No newline at end of file diff --git a/gallery/text_labels_and_annotations/legend_00_00.png b/gallery/text_labels_and_annotations/legend_00_00.png deleted file mode 120000 index 1b05959f824..00000000000 --- a/gallery/text_labels_and_annotations/legend_00_00.png +++ /dev/null @@ -1 +0,0 @@ -../../stable/gallery/text_labels_and_annotations/legend_00_00.png \ No newline at end of file diff --git a/gallery/text_labels_and_annotations/legend_demo.html b/gallery/text_labels_and_annotations/legend_demo.html deleted file mode 100644 index 280a32f80e7..00000000000 --- a/gallery/text_labels_and_annotations/legend_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/line_with_text.html b/gallery/text_labels_and_annotations/line_with_text.html deleted file mode 100644 index 3641c857973..00000000000 --- a/gallery/text_labels_and_annotations/line_with_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/mathtext_asarray.html b/gallery/text_labels_and_annotations/mathtext_asarray.html deleted file mode 100644 index 36f2708c519..00000000000 --- a/gallery/text_labels_and_annotations/mathtext_asarray.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/mathtext_demo.html b/gallery/text_labels_and_annotations/mathtext_demo.html deleted file mode 100644 index dd88caa7e42..00000000000 --- a/gallery/text_labels_and_annotations/mathtext_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/mathtext_examples.html b/gallery/text_labels_and_annotations/mathtext_examples.html deleted file mode 100644 index c06ed97755e..00000000000 --- a/gallery/text_labels_and_annotations/mathtext_examples.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/mathtext_fontfamily_example.html b/gallery/text_labels_and_annotations/mathtext_fontfamily_example.html deleted file mode 100644 index 21b5c86db55..00000000000 --- a/gallery/text_labels_and_annotations/mathtext_fontfamily_example.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/multiline.html b/gallery/text_labels_and_annotations/multiline.html deleted file mode 100644 index 8a94e4f905f..00000000000 --- a/gallery/text_labels_and_annotations/multiline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/placing_text_boxes.html b/gallery/text_labels_and_annotations/placing_text_boxes.html deleted file mode 100644 index c5fe317cc3f..00000000000 --- a/gallery/text_labels_and_annotations/placing_text_boxes.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/rainbow_text.html b/gallery/text_labels_and_annotations/rainbow_text.html deleted file mode 100644 index 29d5468a71a..00000000000 --- a/gallery/text_labels_and_annotations/rainbow_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/sg_execution_times.html b/gallery/text_labels_and_annotations/sg_execution_times.html deleted file mode 100644 index 7cdec4635d3..00000000000 --- a/gallery/text_labels_and_annotations/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/stix_fonts_demo.html b/gallery/text_labels_and_annotations/stix_fonts_demo.html deleted file mode 100644 index 971b3b6bc9c..00000000000 --- a/gallery/text_labels_and_annotations/stix_fonts_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/tex_demo.html b/gallery/text_labels_and_annotations/tex_demo.html deleted file mode 100644 index 1512895d911..00000000000 --- a/gallery/text_labels_and_annotations/tex_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/text_alignment.html b/gallery/text_labels_and_annotations/text_alignment.html deleted file mode 100644 index 9290af0987d..00000000000 --- a/gallery/text_labels_and_annotations/text_alignment.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/text_fontdict.html b/gallery/text_labels_and_annotations/text_fontdict.html deleted file mode 100644 index 9f963a272ce..00000000000 --- a/gallery/text_labels_and_annotations/text_fontdict.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/text_rotation.html b/gallery/text_labels_and_annotations/text_rotation.html deleted file mode 100644 index 292ee8d6122..00000000000 --- a/gallery/text_labels_and_annotations/text_rotation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/text_rotation_relative_to_line.html b/gallery/text_labels_and_annotations/text_rotation_relative_to_line.html deleted file mode 100644 index 0e42405a1e8..00000000000 --- a/gallery/text_labels_and_annotations/text_rotation_relative_to_line.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/titles_demo.html b/gallery/text_labels_and_annotations/titles_demo.html deleted file mode 100644 index a55f52a877b..00000000000 --- a/gallery/text_labels_and_annotations/titles_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/unicode_minus.html b/gallery/text_labels_and_annotations/unicode_minus.html deleted file mode 100644 index 0a3db9e6c9d..00000000000 --- a/gallery/text_labels_and_annotations/unicode_minus.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/usetex_baseline_test.html b/gallery/text_labels_and_annotations/usetex_baseline_test.html deleted file mode 100644 index d7c284b9c9f..00000000000 --- a/gallery/text_labels_and_annotations/usetex_baseline_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/usetex_demo.html b/gallery/text_labels_and_annotations/usetex_demo.html deleted file mode 100644 index e91e41dc424..00000000000 --- a/gallery/text_labels_and_annotations/usetex_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/usetex_fonteffects.html b/gallery/text_labels_and_annotations/usetex_fonteffects.html deleted file mode 100644 index 2abac76c0c6..00000000000 --- a/gallery/text_labels_and_annotations/usetex_fonteffects.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/text_labels_and_annotations/watermark_text.html b/gallery/text_labels_and_annotations/watermark_text.html deleted file mode 100644 index 233d6607647..00000000000 --- a/gallery/text_labels_and_annotations/watermark_text.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/auto_ticks.html b/gallery/ticks/auto_ticks.html deleted file mode 100644 index b0c33ff4f71..00000000000 --- a/gallery/ticks/auto_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/centered_ticklabels.html b/gallery/ticks/centered_ticklabels.html deleted file mode 100644 index 852e861b547..00000000000 --- a/gallery/ticks/centered_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/colorbar_tick_labelling_demo.html b/gallery/ticks/colorbar_tick_labelling_demo.html deleted file mode 100644 index 7d4f7715f48..00000000000 --- a/gallery/ticks/colorbar_tick_labelling_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/custom_ticker1.html b/gallery/ticks/custom_ticker1.html deleted file mode 100644 index dd57eb92798..00000000000 --- a/gallery/ticks/custom_ticker1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/date_concise_formatter.html b/gallery/ticks/date_concise_formatter.html deleted file mode 100644 index c793730c6e7..00000000000 --- a/gallery/ticks/date_concise_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/date_demo_convert.html b/gallery/ticks/date_demo_convert.html deleted file mode 100644 index dd5917e7799..00000000000 --- a/gallery/ticks/date_demo_convert.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/date_demo_rrule.html b/gallery/ticks/date_demo_rrule.html deleted file mode 100644 index 447c9784254..00000000000 --- a/gallery/ticks/date_demo_rrule.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/date_index_formatter2.html b/gallery/ticks/date_index_formatter2.html deleted file mode 100644 index 502a01fba2c..00000000000 --- a/gallery/ticks/date_index_formatter2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/date_precision_and_epochs.html b/gallery/ticks/date_precision_and_epochs.html deleted file mode 100644 index 705737818a5..00000000000 --- a/gallery/ticks/date_precision_and_epochs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/major_minor_demo.html b/gallery/ticks/major_minor_demo.html deleted file mode 100644 index 51864943008..00000000000 --- a/gallery/ticks/major_minor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/scalarformatter.html b/gallery/ticks/scalarformatter.html deleted file mode 100644 index 795a20cf74d..00000000000 --- a/gallery/ticks/scalarformatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/sg_execution_times.html b/gallery/ticks/sg_execution_times.html deleted file mode 100644 index 1f270f3d837..00000000000 --- a/gallery/ticks/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/tick-formatters.html b/gallery/ticks/tick-formatters.html deleted file mode 100644 index de952d530e0..00000000000 --- a/gallery/ticks/tick-formatters.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/tick-locators.html b/gallery/ticks/tick-locators.html deleted file mode 100644 index a4b1aa3b4f4..00000000000 --- a/gallery/ticks/tick-locators.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/tick_label_right.html b/gallery/ticks/tick_label_right.html deleted file mode 100644 index d5a9fa9fd6b..00000000000 --- a/gallery/ticks/tick_label_right.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/tick_labels_from_values.html b/gallery/ticks/tick_labels_from_values.html deleted file mode 100644 index e8bd8f0b5a4..00000000000 --- a/gallery/ticks/tick_labels_from_values.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/tick_xlabel_top.html b/gallery/ticks/tick_xlabel_top.html deleted file mode 100644 index cf1341661a6..00000000000 --- a/gallery/ticks/tick_xlabel_top.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks/ticklabels_rotation.html b/gallery/ticks/ticklabels_rotation.html deleted file mode 100644 index c2578242332..00000000000 --- a/gallery/ticks/ticklabels_rotation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/auto_ticks.html b/gallery/ticks_and_spines/auto_ticks.html deleted file mode 100644 index 6c20220661f..00000000000 --- a/gallery/ticks_and_spines/auto_ticks.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/centered_spines_with_arrows.html b/gallery/ticks_and_spines/centered_spines_with_arrows.html deleted file mode 100644 index aa80cbb4691..00000000000 --- a/gallery/ticks_and_spines/centered_spines_with_arrows.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/centered_ticklabels.html b/gallery/ticks_and_spines/centered_ticklabels.html deleted file mode 100644 index 2a36703363e..00000000000 --- a/gallery/ticks_and_spines/centered_ticklabels.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/colorbar_tick_labelling_demo.html b/gallery/ticks_and_spines/colorbar_tick_labelling_demo.html deleted file mode 100644 index 047b4f437ce..00000000000 --- a/gallery/ticks_and_spines/colorbar_tick_labelling_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/custom_ticker1.html b/gallery/ticks_and_spines/custom_ticker1.html deleted file mode 100644 index 9843cde246e..00000000000 --- a/gallery/ticks_and_spines/custom_ticker1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/date_concise_formatter.html b/gallery/ticks_and_spines/date_concise_formatter.html deleted file mode 100644 index e4089e5ce96..00000000000 --- a/gallery/ticks_and_spines/date_concise_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/date_demo_convert.html b/gallery/ticks_and_spines/date_demo_convert.html deleted file mode 100644 index c5707732ccf..00000000000 --- a/gallery/ticks_and_spines/date_demo_convert.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/date_demo_rrule.html b/gallery/ticks_and_spines/date_demo_rrule.html deleted file mode 100644 index c3b2f18ac8e..00000000000 --- a/gallery/ticks_and_spines/date_demo_rrule.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/date_index_formatter.html b/gallery/ticks_and_spines/date_index_formatter.html deleted file mode 100644 index d125f429c91..00000000000 --- a/gallery/ticks_and_spines/date_index_formatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/date_index_formatter2.html b/gallery/ticks_and_spines/date_index_formatter2.html deleted file mode 100644 index 810dc960eb9..00000000000 --- a/gallery/ticks_and_spines/date_index_formatter2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/date_precision_and_epochs.html b/gallery/ticks_and_spines/date_precision_and_epochs.html deleted file mode 100644 index 523b68b582c..00000000000 --- a/gallery/ticks_and_spines/date_precision_and_epochs.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/major_minor_demo.html b/gallery/ticks_and_spines/major_minor_demo.html deleted file mode 100644 index 91226c128fc..00000000000 --- a/gallery/ticks_and_spines/major_minor_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/multiple_yaxis_with_spines.html b/gallery/ticks_and_spines/multiple_yaxis_with_spines.html deleted file mode 100644 index 81de631f5bf..00000000000 --- a/gallery/ticks_and_spines/multiple_yaxis_with_spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/scalarformatter.html b/gallery/ticks_and_spines/scalarformatter.html deleted file mode 100644 index 869e8ef539a..00000000000 --- a/gallery/ticks_and_spines/scalarformatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/sg_execution_times.html b/gallery/ticks_and_spines/sg_execution_times.html deleted file mode 100644 index 0da5a475eb3..00000000000 --- a/gallery/ticks_and_spines/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/spine_placement_demo.html b/gallery/ticks_and_spines/spine_placement_demo.html deleted file mode 100644 index 9268302ae8b..00000000000 --- a/gallery/ticks_and_spines/spine_placement_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/spines.html b/gallery/ticks_and_spines/spines.html deleted file mode 100644 index db28596a3b1..00000000000 --- a/gallery/ticks_and_spines/spines.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/spines_bounds.html b/gallery/ticks_and_spines/spines_bounds.html deleted file mode 100644 index 7c6fd5d8f65..00000000000 --- a/gallery/ticks_and_spines/spines_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/spines_dropped.html b/gallery/ticks_and_spines/spines_dropped.html deleted file mode 100644 index 7aac2726ec8..00000000000 --- a/gallery/ticks_and_spines/spines_dropped.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/tick-formatters.html b/gallery/ticks_and_spines/tick-formatters.html deleted file mode 100644 index 0960d6bf50d..00000000000 --- a/gallery/ticks_and_spines/tick-formatters.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/tick-locators.html b/gallery/ticks_and_spines/tick-locators.html deleted file mode 100644 index a360b8da337..00000000000 --- a/gallery/ticks_and_spines/tick-locators.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/tick_label_right.html b/gallery/ticks_and_spines/tick_label_right.html deleted file mode 100644 index 85c19935a61..00000000000 --- a/gallery/ticks_and_spines/tick_label_right.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/tick_labels_from_values.html b/gallery/ticks_and_spines/tick_labels_from_values.html deleted file mode 100644 index 1bc7852ee98..00000000000 --- a/gallery/ticks_and_spines/tick_labels_from_values.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/tick_xlabel_top.html b/gallery/ticks_and_spines/tick_xlabel_top.html deleted file mode 100644 index 6062cb75e48..00000000000 --- a/gallery/ticks_and_spines/tick_xlabel_top.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/ticks_and_spines/ticklabels_rotation.html b/gallery/ticks_and_spines/ticklabels_rotation.html deleted file mode 100644 index fd1942255fa..00000000000 --- a/gallery/ticks_and_spines/ticklabels_rotation.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/annotate_with_units.html b/gallery/units/annotate_with_units.html deleted file mode 100644 index 0bc88ff29ed..00000000000 --- a/gallery/units/annotate_with_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/artist_tests.html b/gallery/units/artist_tests.html deleted file mode 100644 index c28fd5f4228..00000000000 --- a/gallery/units/artist_tests.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/bar_demo2.html b/gallery/units/bar_demo2.html deleted file mode 100644 index eba134901b4..00000000000 --- a/gallery/units/bar_demo2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/bar_unit_demo.html b/gallery/units/bar_unit_demo.html deleted file mode 100644 index 205f7341f00..00000000000 --- a/gallery/units/bar_unit_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/basic_units.html b/gallery/units/basic_units.html deleted file mode 100644 index 7f63365da36..00000000000 --- a/gallery/units/basic_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/ellipse_with_units.html b/gallery/units/ellipse_with_units.html deleted file mode 100644 index e037ab4291a..00000000000 --- a/gallery/units/ellipse_with_units.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/evans_test.html b/gallery/units/evans_test.html deleted file mode 100644 index 93208045946..00000000000 --- a/gallery/units/evans_test.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/radian_demo.html b/gallery/units/radian_demo.html deleted file mode 100644 index a0ece39d3e6..00000000000 --- a/gallery/units/radian_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/sg_execution_times.html b/gallery/units/sg_execution_times.html deleted file mode 100644 index 6cfd571fa7a..00000000000 --- a/gallery/units/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/units_sample.html b/gallery/units/units_sample.html deleted file mode 100644 index e4154e83828..00000000000 --- a/gallery/units/units_sample.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/units/units_scatter.html b/gallery/units/units_scatter.html deleted file mode 100644 index 285d4ff0fe0..00000000000 --- a/gallery/units/units_scatter.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/canvasagg.html b/gallery/user_interfaces/canvasagg.html deleted file mode 100644 index 9f5791d0dc8..00000000000 --- a/gallery/user_interfaces/canvasagg.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_gtk2_sgskip.html b/gallery/user_interfaces/embedding_in_gtk2_sgskip.html deleted file mode 100644 index 4cdfcbcc80a..00000000000 --- a/gallery/user_interfaces/embedding_in_gtk2_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_gtk3_panzoom_sgskip.html b/gallery/user_interfaces/embedding_in_gtk3_panzoom_sgskip.html deleted file mode 100644 index 48e7c98ffec..00000000000 --- a/gallery/user_interfaces/embedding_in_gtk3_panzoom_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_gtk3_sgskip.html b/gallery/user_interfaces/embedding_in_gtk3_sgskip.html deleted file mode 100644 index 9084e660f86..00000000000 --- a/gallery/user_interfaces/embedding_in_gtk3_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_gtk4_panzoom_sgskip.html b/gallery/user_interfaces/embedding_in_gtk4_panzoom_sgskip.html deleted file mode 100644 index c8480e54d39..00000000000 --- a/gallery/user_interfaces/embedding_in_gtk4_panzoom_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_gtk4_sgskip.html b/gallery/user_interfaces/embedding_in_gtk4_sgskip.html deleted file mode 100644 index 92251ac5be2..00000000000 --- a/gallery/user_interfaces/embedding_in_gtk4_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_gtk_sgskip.html b/gallery/user_interfaces/embedding_in_gtk_sgskip.html deleted file mode 100644 index ce8fa7456ad..00000000000 --- a/gallery/user_interfaces/embedding_in_gtk_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_qt4_sgskip.html b/gallery/user_interfaces/embedding_in_qt4_sgskip.html deleted file mode 100644 index 23e38e8ac80..00000000000 --- a/gallery/user_interfaces/embedding_in_qt4_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_qt4_wtoolbar_sgskip.html b/gallery/user_interfaces/embedding_in_qt4_wtoolbar_sgskip.html deleted file mode 100644 index 6491f122632..00000000000 --- a/gallery/user_interfaces/embedding_in_qt4_wtoolbar_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_qt5_sgskip.html b/gallery/user_interfaces/embedding_in_qt5_sgskip.html deleted file mode 100644 index 0cb7fdbdd94..00000000000 --- a/gallery/user_interfaces/embedding_in_qt5_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_qt_sgskip.html b/gallery/user_interfaces/embedding_in_qt_sgskip.html deleted file mode 100644 index 3cbdaf9fd19..00000000000 --- a/gallery/user_interfaces/embedding_in_qt_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_tk2_sgskip.html b/gallery/user_interfaces/embedding_in_tk2_sgskip.html deleted file mode 100644 index 91ce7a71115..00000000000 --- a/gallery/user_interfaces/embedding_in_tk2_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_tk_canvas_sgskip.html b/gallery/user_interfaces/embedding_in_tk_canvas_sgskip.html deleted file mode 100644 index 476ef235142..00000000000 --- a/gallery/user_interfaces/embedding_in_tk_canvas_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_tk_sgskip.html b/gallery/user_interfaces/embedding_in_tk_sgskip.html deleted file mode 100644 index 865e3f18217..00000000000 --- a/gallery/user_interfaces/embedding_in_tk_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_wx2_sgskip.html b/gallery/user_interfaces/embedding_in_wx2_sgskip.html deleted file mode 100644 index 91a1d97838c..00000000000 --- a/gallery/user_interfaces/embedding_in_wx2_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_wx3_sgskip.html b/gallery/user_interfaces/embedding_in_wx3_sgskip.html deleted file mode 100644 index 23691fd7a79..00000000000 --- a/gallery/user_interfaces/embedding_in_wx3_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_wx4_sgskip.html b/gallery/user_interfaces/embedding_in_wx4_sgskip.html deleted file mode 100644 index c73c1845cf7..00000000000 --- a/gallery/user_interfaces/embedding_in_wx4_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_in_wx5_sgskip.html b/gallery/user_interfaces/embedding_in_wx5_sgskip.html deleted file mode 100644 index 7df70a39c56..00000000000 --- a/gallery/user_interfaces/embedding_in_wx5_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/embedding_webagg_sgskip.html b/gallery/user_interfaces/embedding_webagg_sgskip.html deleted file mode 100644 index f8bf17f6425..00000000000 --- a/gallery/user_interfaces/embedding_webagg_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/fourier_demo_wx_sgskip.html b/gallery/user_interfaces/fourier_demo_wx_sgskip.html deleted file mode 100644 index 1248e52cfcd..00000000000 --- a/gallery/user_interfaces/fourier_demo_wx_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/gtk3_spreadsheet_sgskip.html b/gallery/user_interfaces/gtk3_spreadsheet_sgskip.html deleted file mode 100644 index 9fa1ecb8493..00000000000 --- a/gallery/user_interfaces/gtk3_spreadsheet_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/gtk4_spreadsheet_sgskip.html b/gallery/user_interfaces/gtk4_spreadsheet_sgskip.html deleted file mode 100644 index c4ced585b6d..00000000000 --- a/gallery/user_interfaces/gtk4_spreadsheet_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/gtk_spreadsheet_sgskip.html b/gallery/user_interfaces/gtk_spreadsheet_sgskip.html deleted file mode 100644 index 9f1c71380aa..00000000000 --- a/gallery/user_interfaces/gtk_spreadsheet_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/histogram_demo_canvasagg_sgskip.html b/gallery/user_interfaces/histogram_demo_canvasagg_sgskip.html deleted file mode 100644 index ac0575a852f..00000000000 --- a/gallery/user_interfaces/histogram_demo_canvasagg_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/lineprops_dialog_gtk_sgskip.html b/gallery/user_interfaces/lineprops_dialog_gtk_sgskip.html deleted file mode 100644 index a28d4835cb9..00000000000 --- a/gallery/user_interfaces/lineprops_dialog_gtk_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/mathtext_wx_sgskip.html b/gallery/user_interfaces/mathtext_wx_sgskip.html deleted file mode 100644 index ec69573120a..00000000000 --- a/gallery/user_interfaces/mathtext_wx_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/mpl_with_glade3_sgskip.html b/gallery/user_interfaces/mpl_with_glade3_sgskip.html deleted file mode 100644 index 02a99245ac1..00000000000 --- a/gallery/user_interfaces/mpl_with_glade3_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/mpl_with_glade_316_sgskip.html b/gallery/user_interfaces/mpl_with_glade_316_sgskip.html deleted file mode 100644 index 7ec4b45c3f0..00000000000 --- a/gallery/user_interfaces/mpl_with_glade_316_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/mpl_with_glade_sgskip.html b/gallery/user_interfaces/mpl_with_glade_sgskip.html deleted file mode 100644 index e4ec61b8e48..00000000000 --- a/gallery/user_interfaces/mpl_with_glade_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/pylab_with_gtk3_sgskip.html b/gallery/user_interfaces/pylab_with_gtk3_sgskip.html deleted file mode 100644 index fba98166325..00000000000 --- a/gallery/user_interfaces/pylab_with_gtk3_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/pylab_with_gtk4_sgskip.html b/gallery/user_interfaces/pylab_with_gtk4_sgskip.html deleted file mode 100644 index c71110c2426..00000000000 --- a/gallery/user_interfaces/pylab_with_gtk4_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/pylab_with_gtk_sgskip.html b/gallery/user_interfaces/pylab_with_gtk_sgskip.html deleted file mode 100644 index dc2d447bcc2..00000000000 --- a/gallery/user_interfaces/pylab_with_gtk_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/sg_execution_times.html b/gallery/user_interfaces/sg_execution_times.html deleted file mode 100644 index a7538995edc..00000000000 --- a/gallery/user_interfaces/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/svg_histogram_sgskip.html b/gallery/user_interfaces/svg_histogram_sgskip.html deleted file mode 100644 index 043408176a0..00000000000 --- a/gallery/user_interfaces/svg_histogram_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/svg_tooltip_sgskip.html b/gallery/user_interfaces/svg_tooltip_sgskip.html deleted file mode 100644 index 1d67549ca9b..00000000000 --- a/gallery/user_interfaces/svg_tooltip_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/toolmanager_sgskip.html b/gallery/user_interfaces/toolmanager_sgskip.html deleted file mode 100644 index b46bf2081fd..00000000000 --- a/gallery/user_interfaces/toolmanager_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/web_application_server_sgskip.html b/gallery/user_interfaces/web_application_server_sgskip.html deleted file mode 100644 index 04290eac982..00000000000 --- a/gallery/user_interfaces/web_application_server_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/user_interfaces/wxcursor_demo_sgskip.html b/gallery/user_interfaces/wxcursor_demo_sgskip.html deleted file mode 100644 index 8205d57f8c9..00000000000 --- a/gallery/user_interfaces/wxcursor_demo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/anchored_box01.html b/gallery/userdemo/anchored_box01.html deleted file mode 100644 index ada1aa4f37c..00000000000 --- a/gallery/userdemo/anchored_box01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/anchored_box02.html b/gallery/userdemo/anchored_box02.html deleted file mode 100644 index 3efc2151179..00000000000 --- a/gallery/userdemo/anchored_box02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/anchored_box03.html b/gallery/userdemo/anchored_box03.html deleted file mode 100644 index 85cf56c7b84..00000000000 --- a/gallery/userdemo/anchored_box03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/anchored_box04.html b/gallery/userdemo/anchored_box04.html deleted file mode 100644 index d44049da501..00000000000 --- a/gallery/userdemo/anchored_box04.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_explain.html b/gallery/userdemo/annotate_explain.html deleted file mode 100644 index 5085bf9446f..00000000000 --- a/gallery/userdemo/annotate_explain.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_simple01.html b/gallery/userdemo/annotate_simple01.html deleted file mode 100644 index ce7bbf53326..00000000000 --- a/gallery/userdemo/annotate_simple01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_simple02.html b/gallery/userdemo/annotate_simple02.html deleted file mode 100644 index d9ee41481bd..00000000000 --- a/gallery/userdemo/annotate_simple02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_simple03.html b/gallery/userdemo/annotate_simple03.html deleted file mode 100644 index a38d821d221..00000000000 --- a/gallery/userdemo/annotate_simple03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_simple04.html b/gallery/userdemo/annotate_simple04.html deleted file mode 100644 index 227534ae243..00000000000 --- a/gallery/userdemo/annotate_simple04.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_simple_coord01.html b/gallery/userdemo/annotate_simple_coord01.html deleted file mode 100644 index 688bda12602..00000000000 --- a/gallery/userdemo/annotate_simple_coord01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_simple_coord02.html b/gallery/userdemo/annotate_simple_coord02.html deleted file mode 100644 index 89ccf4e38a6..00000000000 --- a/gallery/userdemo/annotate_simple_coord02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_simple_coord03.html b/gallery/userdemo/annotate_simple_coord03.html deleted file mode 100644 index feda8b17954..00000000000 --- a/gallery/userdemo/annotate_simple_coord03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/annotate_text_arrow.html b/gallery/userdemo/annotate_text_arrow.html deleted file mode 100644 index 2ca163b0e55..00000000000 --- a/gallery/userdemo/annotate_text_arrow.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/axis_direction_demo_step01.html b/gallery/userdemo/axis_direction_demo_step01.html deleted file mode 100644 index 85d110a3b65..00000000000 --- a/gallery/userdemo/axis_direction_demo_step01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/axis_direction_demo_step02.html b/gallery/userdemo/axis_direction_demo_step02.html deleted file mode 100644 index d7fd9a750b0..00000000000 --- a/gallery/userdemo/axis_direction_demo_step02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/axis_direction_demo_step03.html b/gallery/userdemo/axis_direction_demo_step03.html deleted file mode 100644 index 3c56cbf9100..00000000000 --- a/gallery/userdemo/axis_direction_demo_step03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/axis_direction_demo_step04.html b/gallery/userdemo/axis_direction_demo_step04.html deleted file mode 100644 index 31460a58a41..00000000000 --- a/gallery/userdemo/axis_direction_demo_step04.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_interactive_adjustment.html b/gallery/userdemo/colormap_interactive_adjustment.html deleted file mode 100644 index 40214db82be..00000000000 --- a/gallery/userdemo/colormap_interactive_adjustment.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_normalizations.html b/gallery/userdemo/colormap_normalizations.html deleted file mode 100644 index 43782f31a98..00000000000 --- a/gallery/userdemo/colormap_normalizations.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_normalizations_bounds.html b/gallery/userdemo/colormap_normalizations_bounds.html deleted file mode 100644 index d622b7db2e0..00000000000 --- a/gallery/userdemo/colormap_normalizations_bounds.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_normalizations_custom.html b/gallery/userdemo/colormap_normalizations_custom.html deleted file mode 100644 index 157c9953a2f..00000000000 --- a/gallery/userdemo/colormap_normalizations_custom.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_normalizations_diverging.html b/gallery/userdemo/colormap_normalizations_diverging.html deleted file mode 100644 index 4a17ca14416..00000000000 --- a/gallery/userdemo/colormap_normalizations_diverging.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_normalizations_lognorm.html b/gallery/userdemo/colormap_normalizations_lognorm.html deleted file mode 100644 index 6a073805fce..00000000000 --- a/gallery/userdemo/colormap_normalizations_lognorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_normalizations_power.html b/gallery/userdemo/colormap_normalizations_power.html deleted file mode 100644 index d2b7c008232..00000000000 --- a/gallery/userdemo/colormap_normalizations_power.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/colormap_normalizations_symlognorm.html b/gallery/userdemo/colormap_normalizations_symlognorm.html deleted file mode 100644 index 5aabe892da3..00000000000 --- a/gallery/userdemo/colormap_normalizations_symlognorm.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/connect_simple01.html b/gallery/userdemo/connect_simple01.html deleted file mode 100644 index 23457efbfd1..00000000000 --- a/gallery/userdemo/connect_simple01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/connectionstyle_demo.html b/gallery/userdemo/connectionstyle_demo.html deleted file mode 100644 index 4a817e6f37f..00000000000 --- a/gallery/userdemo/connectionstyle_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/custom_boxstyle01.html b/gallery/userdemo/custom_boxstyle01.html deleted file mode 100644 index 67016404344..00000000000 --- a/gallery/userdemo/custom_boxstyle01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/custom_boxstyle02.html b/gallery/userdemo/custom_boxstyle02.html deleted file mode 100644 index 611bed30385..00000000000 --- a/gallery/userdemo/custom_boxstyle02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_axis_direction.html b/gallery/userdemo/demo_axis_direction.html deleted file mode 100644 index efc3c1edf20..00000000000 --- a/gallery/userdemo/demo_axis_direction.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_gridspec01.html b/gallery/userdemo/demo_gridspec01.html deleted file mode 100644 index 5d382576c18..00000000000 --- a/gallery/userdemo/demo_gridspec01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_gridspec02.html b/gallery/userdemo/demo_gridspec02.html deleted file mode 100644 index 2d3edd57f5a..00000000000 --- a/gallery/userdemo/demo_gridspec02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_gridspec03.html b/gallery/userdemo/demo_gridspec03.html deleted file mode 100644 index 038e3a13a74..00000000000 --- a/gallery/userdemo/demo_gridspec03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_gridspec04.html b/gallery/userdemo/demo_gridspec04.html deleted file mode 100644 index e0d0d4a4fc3..00000000000 --- a/gallery/userdemo/demo_gridspec04.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_gridspec05.html b/gallery/userdemo/demo_gridspec05.html deleted file mode 100644 index 0b794c17856..00000000000 --- a/gallery/userdemo/demo_gridspec05.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_gridspec06.html b/gallery/userdemo/demo_gridspec06.html deleted file mode 100644 index 838b8b28e09..00000000000 --- a/gallery/userdemo/demo_gridspec06.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_parasite_axes_sgskip.html b/gallery/userdemo/demo_parasite_axes_sgskip.html deleted file mode 100644 index 24a28dbb00a..00000000000 --- a/gallery/userdemo/demo_parasite_axes_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_ticklabel_alignment.html b/gallery/userdemo/demo_ticklabel_alignment.html deleted file mode 100644 index 477c974599e..00000000000 --- a/gallery/userdemo/demo_ticklabel_alignment.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/demo_ticklabel_direction.html b/gallery/userdemo/demo_ticklabel_direction.html deleted file mode 100644 index d7e7fd792c8..00000000000 --- a/gallery/userdemo/demo_ticklabel_direction.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/pgf_fonts.html b/gallery/userdemo/pgf_fonts.html deleted file mode 100644 index 1d680c3a8f2..00000000000 --- a/gallery/userdemo/pgf_fonts.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/pgf_fonts_sgskip.html b/gallery/userdemo/pgf_fonts_sgskip.html deleted file mode 100644 index fc53089b3d9..00000000000 --- a/gallery/userdemo/pgf_fonts_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/pgf_preamble_sgskip.html b/gallery/userdemo/pgf_preamble_sgskip.html deleted file mode 100644 index c3ba2e783a1..00000000000 --- a/gallery/userdemo/pgf_preamble_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/pgf_texsystem.html b/gallery/userdemo/pgf_texsystem.html deleted file mode 100644 index be50c0f2f7b..00000000000 --- a/gallery/userdemo/pgf_texsystem.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/pgf_texsystem_sgskip.html b/gallery/userdemo/pgf_texsystem_sgskip.html deleted file mode 100644 index b54b78ed73f..00000000000 --- a/gallery/userdemo/pgf_texsystem_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/sg_execution_times.html b/gallery/userdemo/sg_execution_times.html deleted file mode 100644 index ba61662b67a..00000000000 --- a/gallery/userdemo/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_annotate01.html b/gallery/userdemo/simple_annotate01.html deleted file mode 100644 index cde6f13de9f..00000000000 --- a/gallery/userdemo/simple_annotate01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_axis_direction01.html b/gallery/userdemo/simple_axis_direction01.html deleted file mode 100644 index 92067b9c45f..00000000000 --- a/gallery/userdemo/simple_axis_direction01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_axis_direction03.html b/gallery/userdemo/simple_axis_direction03.html deleted file mode 100644 index 79a6e5eabba..00000000000 --- a/gallery/userdemo/simple_axis_direction03.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_axis_pad.html b/gallery/userdemo/simple_axis_pad.html deleted file mode 100644 index 4766e759170..00000000000 --- a/gallery/userdemo/simple_axis_pad.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_axisartist1.html b/gallery/userdemo/simple_axisartist1.html deleted file mode 100644 index 080d5d9ed01..00000000000 --- a/gallery/userdemo/simple_axisartist1.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_axisline.html b/gallery/userdemo/simple_axisline.html deleted file mode 100644 index 9e059fec93f..00000000000 --- a/gallery/userdemo/simple_axisline.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_axisline2.html b/gallery/userdemo/simple_axisline2.html deleted file mode 100644 index 6039e193f2d..00000000000 --- a/gallery/userdemo/simple_axisline2.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_axisline3.html b/gallery/userdemo/simple_axisline3.html deleted file mode 100644 index 9e67e357cc6..00000000000 --- a/gallery/userdemo/simple_axisline3.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_legend01.html b/gallery/userdemo/simple_legend01.html deleted file mode 100644 index 8d73497afc7..00000000000 --- a/gallery/userdemo/simple_legend01.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/userdemo/simple_legend02.html b/gallery/userdemo/simple_legend02.html deleted file mode 100644 index 676db7dc890..00000000000 --- a/gallery/userdemo/simple_legend02.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/annotated_cursor.html b/gallery/widgets/annotated_cursor.html deleted file mode 100644 index f07a150ae17..00000000000 --- a/gallery/widgets/annotated_cursor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/buttons.html b/gallery/widgets/buttons.html deleted file mode 100644 index 35e96a86580..00000000000 --- a/gallery/widgets/buttons.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/check_buttons.html b/gallery/widgets/check_buttons.html deleted file mode 100644 index 4fc68065c33..00000000000 --- a/gallery/widgets/check_buttons.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/cursor.html b/gallery/widgets/cursor.html deleted file mode 100644 index 3e927e71200..00000000000 --- a/gallery/widgets/cursor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/lasso_selector_demo_sgskip.html b/gallery/widgets/lasso_selector_demo_sgskip.html deleted file mode 100644 index ebc2b7cebe8..00000000000 --- a/gallery/widgets/lasso_selector_demo_sgskip.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/menu.html b/gallery/widgets/menu.html deleted file mode 100644 index 641eb1145f2..00000000000 --- a/gallery/widgets/menu.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/mouse_cursor.html b/gallery/widgets/mouse_cursor.html deleted file mode 100644 index 50f0e1b0a6d..00000000000 --- a/gallery/widgets/mouse_cursor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/multicursor.html b/gallery/widgets/multicursor.html deleted file mode 100644 index 66288c7f80f..00000000000 --- a/gallery/widgets/multicursor.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/polygon_selector_demo.html b/gallery/widgets/polygon_selector_demo.html deleted file mode 100644 index 4d7c184cef7..00000000000 --- a/gallery/widgets/polygon_selector_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/radio_buttons.html b/gallery/widgets/radio_buttons.html deleted file mode 100644 index 1cad17b60b5..00000000000 --- a/gallery/widgets/radio_buttons.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/range_slider.html b/gallery/widgets/range_slider.html deleted file mode 100644 index 1b64174eea7..00000000000 --- a/gallery/widgets/range_slider.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/rectangle_selector.html b/gallery/widgets/rectangle_selector.html deleted file mode 100644 index 2013b4d3a83..00000000000 --- a/gallery/widgets/rectangle_selector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/sg_execution_times.html b/gallery/widgets/sg_execution_times.html deleted file mode 100644 index e953c0d655e..00000000000 --- a/gallery/widgets/sg_execution_times.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/slider_demo.html b/gallery/widgets/slider_demo.html deleted file mode 100644 index 21ee3470577..00000000000 --- a/gallery/widgets/slider_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/slider_snap_demo.html b/gallery/widgets/slider_snap_demo.html deleted file mode 100644 index 1acc01e8779..00000000000 --- a/gallery/widgets/slider_snap_demo.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/span_selector.html b/gallery/widgets/span_selector.html deleted file mode 100644 index d9cde7d0261..00000000000 --- a/gallery/widgets/span_selector.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/gallery/widgets/textbox.html b/gallery/widgets/textbox.html deleted file mode 100644 index 429dfd264dc..00000000000 --- a/gallery/widgets/textbox.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/genindex.html b/genindex.html deleted file mode 100644 index 6282f1e4ebf..00000000000 --- a/genindex.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - Index — Visualization with Python - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -

Index

- -
- -
- - -
- - - - - \ No newline at end of file diff --git a/glossary/index.html b/glossary/index.html deleted file mode 100644 index ffe715e809b..00000000000 --- a/glossary/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -

- The page been moved here! -

- - diff --git a/index.html b/index.html deleted file mode 100644 index 69a0962f664..00000000000 --- a/index.html +++ /dev/null @@ -1,706 +0,0 @@ - - - - - - - - - Matplotlib — Visualization with Python - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-

Matplotlib: Visualization with Python

-

- Matplotlib is a comprehensive library for creating static, animated, - and interactive visualizations in Python. Matplotlib makes easy things - easy and hard things possible. -

- - - - - Try Matplotlib (on Binder) - -
-
- - - - - - -
- - -
-
- - -

News

-
-
November 15, 2021
- Matplotlib 3.5.0 Released -

- Highlights include shared axes in subplot_mosaic, post-colormaping resampling, and support for GTK4 and - Qt6. -

- See the release notes and API changes for details. -

-
- - - - - - - - - -
- - - -
- - - - -

Resources

-
- -

- Be sure to check the - Users - guide and the - API docs. The full text - search is a - good way to discover the docs including the many examples. -

-
- -
- -

- Join our community at - - discourse.matplotlib.org - - to get help, share your work, and discuss contributing & - development. -

-
- -
- -

- Short questions may be posted on the - gitter - channel. -

-
- -
- -

- Check out the Matplotlib tag on - stackoverflow. -

-
- -
- - -
- -
-

Domain Specific Tools

-

- A large number of third party packages extend and build on Matplotlib - functionality, including several higher-level plotting interfaces - (seaborn, HoloViews, ggplot, ...), and a projection and mapping - toolkit (Cartopy). -

- More Domain-Specific Tools -
- - -
-
- - - - - -
-
- - -
- - - - -
- - -
- - -
-

Support Matplotlib

- -
- - - - -
- - - - - \ No newline at end of file diff --git a/mpl-probscale/.nojekyll b/mpl-probscale/.nojekyll deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/mpl-probscale/_images/example.png b/mpl-probscale/_images/example.png deleted file mode 100644 index 8f19b666636..00000000000 Binary files a/mpl-probscale/_images/example.png and /dev/null differ diff --git a/mpl-probscale/_images/output_10_0.png b/mpl-probscale/_images/output_10_0.png deleted file mode 100644 index c868d044ff2..00000000000 Binary files a/mpl-probscale/_images/output_10_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_11_0.png b/mpl-probscale/_images/output_11_0.png deleted file mode 100644 index a2f96f2f3fb..00000000000 Binary files a/mpl-probscale/_images/output_11_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_11_01.png b/mpl-probscale/_images/output_11_01.png deleted file mode 100644 index 8124ce9af5a..00000000000 Binary files a/mpl-probscale/_images/output_11_01.png and /dev/null differ diff --git a/mpl-probscale/_images/output_12_0.png b/mpl-probscale/_images/output_12_0.png deleted file mode 100644 index 5ebc86a197d..00000000000 Binary files a/mpl-probscale/_images/output_12_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_13_0.png b/mpl-probscale/_images/output_13_0.png deleted file mode 100644 index ba9f0717fa3..00000000000 Binary files a/mpl-probscale/_images/output_13_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_13_01.png b/mpl-probscale/_images/output_13_01.png deleted file mode 100644 index b853bf1d11f..00000000000 Binary files a/mpl-probscale/_images/output_13_01.png and /dev/null differ diff --git a/mpl-probscale/_images/output_14_0.png b/mpl-probscale/_images/output_14_0.png deleted file mode 100644 index ea2caa67a54..00000000000 Binary files a/mpl-probscale/_images/output_14_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_15_0.png b/mpl-probscale/_images/output_15_0.png deleted file mode 100644 index aa61598d240..00000000000 Binary files a/mpl-probscale/_images/output_15_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_16_0.png b/mpl-probscale/_images/output_16_0.png deleted file mode 100644 index 167467f955a..00000000000 Binary files a/mpl-probscale/_images/output_16_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_17_0.png b/mpl-probscale/_images/output_17_0.png deleted file mode 100644 index 24b69644aba..00000000000 Binary files a/mpl-probscale/_images/output_17_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_18_0.png b/mpl-probscale/_images/output_18_0.png deleted file mode 100644 index 2dc0cdf9512..00000000000 Binary files a/mpl-probscale/_images/output_18_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_19_0.png b/mpl-probscale/_images/output_19_0.png deleted file mode 100644 index f399d42d55b..00000000000 Binary files a/mpl-probscale/_images/output_19_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_20_0.png b/mpl-probscale/_images/output_20_0.png deleted file mode 100644 index 8c912e4d9ec..00000000000 Binary files a/mpl-probscale/_images/output_20_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_22_0.png b/mpl-probscale/_images/output_22_0.png deleted file mode 100644 index 36b81b690be..00000000000 Binary files a/mpl-probscale/_images/output_22_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_22_01.png b/mpl-probscale/_images/output_22_01.png deleted file mode 100644 index 65824bfe11a..00000000000 Binary files a/mpl-probscale/_images/output_22_01.png and /dev/null differ diff --git a/mpl-probscale/_images/output_24_0.png b/mpl-probscale/_images/output_24_0.png deleted file mode 100644 index 70ebfcab010..00000000000 Binary files a/mpl-probscale/_images/output_24_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_25_0.png b/mpl-probscale/_images/output_25_0.png deleted file mode 100644 index a1c21604fd3..00000000000 Binary files a/mpl-probscale/_images/output_25_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_27_0.png b/mpl-probscale/_images/output_27_0.png deleted file mode 100644 index 7d444f281a8..00000000000 Binary files a/mpl-probscale/_images/output_27_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_29_0.png b/mpl-probscale/_images/output_29_0.png deleted file mode 100644 index 67118a1be87..00000000000 Binary files a/mpl-probscale/_images/output_29_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_32_0.png b/mpl-probscale/_images/output_32_0.png deleted file mode 100644 index ed3400d8e7c..00000000000 Binary files a/mpl-probscale/_images/output_32_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_34_0.png b/mpl-probscale/_images/output_34_0.png deleted file mode 100644 index a09e4c63737..00000000000 Binary files a/mpl-probscale/_images/output_34_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_37_0.png b/mpl-probscale/_images/output_37_0.png deleted file mode 100644 index 58c5b2d8f0b..00000000000 Binary files a/mpl-probscale/_images/output_37_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_38_0.png b/mpl-probscale/_images/output_38_0.png deleted file mode 100644 index 6a0c72c813d..00000000000 Binary files a/mpl-probscale/_images/output_38_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_39_0.png b/mpl-probscale/_images/output_39_0.png deleted file mode 100644 index 40e36b50f95..00000000000 Binary files a/mpl-probscale/_images/output_39_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_4_0.png b/mpl-probscale/_images/output_4_0.png deleted file mode 100644 index dcdfd7d49cc..00000000000 Binary files a/mpl-probscale/_images/output_4_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_4_01.png b/mpl-probscale/_images/output_4_01.png deleted file mode 100644 index 11719ca5408..00000000000 Binary files a/mpl-probscale/_images/output_4_01.png and /dev/null differ diff --git a/mpl-probscale/_images/output_6_0.png b/mpl-probscale/_images/output_6_0.png deleted file mode 100644 index 4afe8e701d1..00000000000 Binary files a/mpl-probscale/_images/output_6_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_6_01.png b/mpl-probscale/_images/output_6_01.png deleted file mode 100644 index 6c66afd4f52..00000000000 Binary files a/mpl-probscale/_images/output_6_01.png and /dev/null differ diff --git a/mpl-probscale/_images/output_8_0.png b/mpl-probscale/_images/output_8_0.png deleted file mode 100644 index 623dc4e9a25..00000000000 Binary files a/mpl-probscale/_images/output_8_0.png and /dev/null differ diff --git a/mpl-probscale/_images/output_9_0.png b/mpl-probscale/_images/output_9_0.png deleted file mode 100644 index aa52aec50ab..00000000000 Binary files a/mpl-probscale/_images/output_9_0.png and /dev/null differ diff --git a/mpl-probscale/_images/probscale-1.png b/mpl-probscale/_images/probscale-1.png deleted file mode 100644 index 46228dff652..00000000000 Binary files a/mpl-probscale/_images/probscale-1.png and /dev/null differ diff --git a/mpl-probscale/_images/viz-1.png b/mpl-probscale/_images/viz-1.png deleted file mode 100644 index 4a99c4e1a3c..00000000000 Binary files a/mpl-probscale/_images/viz-1.png and /dev/null differ diff --git a/mpl-probscale/_images/viz-2.png b/mpl-probscale/_images/viz-2.png deleted file mode 100644 index c64476d54e5..00000000000 Binary files a/mpl-probscale/_images/viz-2.png and /dev/null differ diff --git a/mpl-probscale/_modules/index.html b/mpl-probscale/_modules/index.html deleted file mode 100644 index 798b8a251f7..00000000000 --- a/mpl-probscale/_modules/index.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - - - - Overview: module code — probscale 0.2.3 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - -
-
- - - - - - -
-
    -
  • Docs »
  • - -
  • Overview: module code
  • -
  • - - - -
  • -
-
-
-
-
- -

All modules for which code is available

- - -
-
-
- - -
- -
-

- © Copyright 2015, Paul Hobson (Geosyntec Consultants). - -

-
- Built with Sphinx using a theme provided by Read the Docs. - -
- -
-
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mpl-probscale/_modules/probscale/formatters.html b/mpl-probscale/_modules/probscale/formatters.html deleted file mode 100644 index 8a53d5b6d3f..00000000000 --- a/mpl-probscale/_modules/probscale/formatters.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - - - - - probscale.formatters — probscale 0.2.3 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - -
-
- - - - - - -
- -
-
-
-
- -

Source code for probscale.formatters

-import numpy as numpy
-from matplotlib.ticker import Formatter
-
-
-class _FormatterMixin(Formatter):
-    """ A mpl-axes formatter mixin class """
-
-    @classmethod
-    def _sig_figs(cls, x, n, expthresh=5, forceint=False):
-        """
-        Formats a number with the correct number of significant digits.
-
-        Parameters
-        ----------
-        x : int or float
-            The number you want to format.
-        n : int
-            The number of significan figures it should have.
-        expthresh : int, optional (default = 5)
-            The absolute value of the order of magnitude at which numbers
-            are formatted in exponential notation.
-        forceint : bool, optional (default is False)
-            If true, simply returns int(x)
-
-        Returns
-        -------
-        formatted : str
-            The formatted number as a string
-
-        Examples
-        --------
-        >>> _sig_figs(1247.15, 3)
-        '1250'
-        >>> _sig_figs(1247.15, 7)
-        '1247.150'
-
-        """
-
-        # return a string value unaltered
-        if isinstance(x, str):
-            out = cls._sig_figs(float(x), n, expthresh=expthresh, forceint=forceint)
-
-        elif x == 0.0:
-            out = '0'
-
-        # check on the number provided
-        elif x is not None and numpy.isfinite(x):
-
-            # check on the _sig_figs
-            if n < 1:
-                raise ValueError("number of sig figs (n) must be greater than zero")
-
-            elif forceint:
-                out = '{:,.0f}'.format(x)
-
-            # logic to do all of the rounding
-            else:
-                order = numpy.floor(numpy.log10(numpy.abs(x)))
-
-                if (-1.0 * expthresh <= order <= expthresh):
-                    decimal_places = int(n - 1 - order)
-
-                    if decimal_places <= 0:
-                        out = '{0:,.0f}'.format(round(x, decimal_places))
-
-                    else:
-                        fmt = '{0:,.%df}' % decimal_places
-                        out = fmt.format(x)
-
-                else:
-                    decimal_places = n - 1
-                    fmt = '{0:.%de}' % decimal_places
-                    out = fmt.format(x)
-
-        # with NAs and INFs, just return 'NA'
-        else:
-            out = 'NA'
-
-        return out
-
-    def __call__(self, x, pos=None):
-        if x < (10 / self.factor):
-            out = self._sig_figs(x, 1)
-        elif x <= (99 / self.factor):
-            out =  self._sig_figs(x, 2)
-        else:
-            order = numpy.ceil(numpy.round(numpy.abs(numpy.log10(self.top - x)), 6))
-            out = self._sig_figs(x, order + self.offset)
-
-        return '{}'.format(out)
-
-
-
[docs]class PctFormatter(_FormatterMixin): - """ - Formatter class for MPL axes to display probalities as percentages. - - Examples - -------- - >>> from probscale import formatters - >>> fmt = formatters.PctFormatter() - >>> fmt(0.2) - '0.2' - >>> fmt(10) - '10' - >>> fmt(99.999) - '99.999' - - """ - - factor = 1.0 - offset = 2 - top = 100 - -
-
[docs]class ProbFormatter(_FormatterMixin): - """ - Formatter class for MPL axes to display probalities as decimals. - - Examples - -------- - >>> from probscale import formatters - >>> fmt = formatters.ProbFormatter() - >>> fmt(0.01) - '0.01' - >>> fmt(0.2) - '0.20' - >>> try: - ... fmt(10.5) - ... except(ValueError): - ... print('formatter out of bounds') - formatter out of bounds - """ - - factor = 100.0 - offset = 0 - top = 1
-
- -
-
-
- - -
- -
-

- © Copyright 2015, Paul Hobson (Geosyntec Consultants). - -

-
- Built with Sphinx using a theme provided by Read the Docs. - -
- -
-
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mpl-probscale/_modules/probscale/probscale.html b/mpl-probscale/_modules/probscale/probscale.html deleted file mode 100644 index 982ec1cfb91..00000000000 --- a/mpl-probscale/_modules/probscale/probscale.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - - - - probscale.probscale — probscale 0.2.3 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - -
-
- - - - - - -
- -
-
-
-
- -

Source code for probscale.probscale

-import numpy
-from matplotlib.scale import ScaleBase
-from matplotlib.ticker import (
-    FixedLocator,
-    NullLocator,
-    NullFormatter,
-    FuncFormatter,
-)
-
-from .transforms import ProbTransform
-from .formatters import PctFormatter, ProbFormatter
-
-
-class _minimal_norm(object):
-    """
-    A basic implmentation of a normal distribution, minimally
-    API-complient with scipt.stats.norm
-
-    """
-
-    _A = -(8 * (numpy.pi - 3.0) / (3.0 * numpy.pi * (numpy.pi - 4.0)))
-
-    @classmethod
-    def _approx_erf(cls, x):
-        """ Approximate solution to the error function
-
-        http://en.wikipedia.org/wiki/Error_function
-
-        """
-
-        guts = -x**2 * (4.0 / numpy.pi + cls._A * x**2) / (1.0 + cls._A * x**2)
-        return numpy.sign(x) * numpy.sqrt(1.0 - numpy.exp(guts))
-
-    @classmethod
-    def _approx_inv_erf(cls, z):
-        """ Approximate solution to the inverse error function
-
-        http://en.wikipedia.org/wiki/Error_function
-
-        """
-
-        _b = (2 / numpy.pi / cls._A) + (0.5 * numpy.log(1 - z**2))
-        _c = numpy.log(1 - z**2) / cls._A
-        return numpy.sign(z) * numpy.sqrt(numpy.sqrt(_b**2 - _c) - _b)
-
-    @classmethod
-    def ppf(cls, q):
-        """ Percent point function (inverse of cdf)
-
-        Wikipedia: https://goo.gl/Rtxjme
-
-        """
-        return numpy.sqrt(2) * cls._approx_inv_erf(2*q - 1)
-
-    @classmethod
-    def cdf(cls, x):
-        """ Cumulative density function
-
-        Wikipedia: https://goo.gl/ciUNLx
-
-        """
-        return 0.5 * (1 + cls._approx_erf(x/numpy.sqrt(2)))
-
-
-
[docs]class ProbScale(ScaleBase): - """ A probability scale for matplotlib Axes. - - Parameters - ---------- - axis : a matplotlib axis artist - The axis whose scale will be set. - dist : scipy.stats probability distribution, optional - The distribution whose ppf/cdf methods should be used to compute - the tick positions. By default, a minimal implimentation of the - ``scipy.stats.norm`` class is used so that scipy is not a - requirement. - - Examples - -------- - The most basic use: - - .. plot:: - :context: close-figs - - >>> from matplotlib import pyplot - >>> import probscale - >>> fig, ax = pyplot.subplots(figsize=(4, 7)) - >>> ax.set_ylim(bottom=0.5, top=99.5) - >>> ax.set_yscale('prob') - - """ - - name = 'prob' - - def __init__(self, axis, **kwargs): - self.dist = kwargs.pop('dist', _minimal_norm) - self.as_pct = kwargs.pop('as_pct', True) - self.nonpos = kwargs.pop('nonpos', 'mask') - self._transform = ProbTransform(self.dist, as_pct=self.as_pct) - - @classmethod - def _get_probs(cls, nobs, as_pct): - """ Returns the x-axis labels for a probability plot based on - the number of observations (`nobs`). - """ - if as_pct: - factor = 1.0 - else: - factor = 100.0 - - order = int(numpy.floor(numpy.log10(nobs))) - base_probs = numpy.array([10, 20, 30, 40, 50, 60, 70, 80, 90]) - - axis_probs = base_probs.copy() - for n in range(order): - if n <= 2: - lower_fringe = numpy.array([1, 2, 5]) - upper_fringe = numpy.array([5, 8, 9]) - else: - lower_fringe = numpy.array([1]) - upper_fringe = numpy.array([9]) - - new_lower = lower_fringe / 10**(n) - new_upper = upper_fringe / 10**(n) + axis_probs.max() - axis_probs = numpy.hstack([new_lower, axis_probs, new_upper]) - - locs = axis_probs / factor - return locs - -
[docs] def set_default_locators_and_formatters(self, axis): - """ - Set the locators and formatters to specialized versions for - log scaling. - """ - - axis.set_major_locator(FixedLocator(self._get_probs(1e8, self.as_pct))) - if self.as_pct: - axis.set_major_formatter(FuncFormatter(PctFormatter())) - else: - axis.set_major_formatter(FuncFormatter(ProbFormatter())) - axis.set_minor_locator(NullLocator()) - axis.set_minor_formatter(NullFormatter()) -
-
[docs] def get_transform(self): - """ - Return a :class:`~matplotlib.transforms.Transform` instance - appropriate for the given logarithm base. - """ - return self._transform -
-
[docs] def limit_range_for_scale(self, vmin, vmax, minpos): - """ - Limit the domain to positive values. - """ - return (vmin <= 0.0 and minpos or vmin, vmax <= 0.0 and minpos or vmax)
-
- -
-
-
- - -
- -
-

- © Copyright 2015, Paul Hobson (Geosyntec Consultants). - -

-
- Built with Sphinx using a theme provided by Read the Docs. - -
- -
-
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mpl-probscale/_modules/probscale/transforms.html b/mpl-probscale/_modules/probscale/transforms.html deleted file mode 100644 index 46439240e93..00000000000 --- a/mpl-probscale/_modules/probscale/transforms.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - - - - - - probscale.transforms — probscale 0.2.3 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - -
-
- - - - - - -
- -
-
-
-
- -

Source code for probscale.transforms

-import numpy
-from matplotlib.transforms import Transform
-
-
-def _mask_out_of_bounds(a):
-    """
-    Return a Numpy array where all values outside ]0, 1[ are
-    replaced with NaNs. If all values are inside ]0, 1[, the original
-    array is returned.
-    """
-    a = numpy.array(a, float)
-    mask = (a <= 0.0) | (a >= 1.0)
-    if mask.any():
-        return numpy.where(mask, numpy.nan, a)
-    return a
-
-
-def _clip_out_of_bounds(a):
-    """
-    Return a Numpy array where all values outside ]0, 1[ are
-    replaced with eps or 1 - eps. If all values are inside ]0, 1[
-    the original array is returned. (eps = 1e-300)
-    """
-    a = numpy.array(a, float)
-    a[a <= 0.0] = 1e-300
-    a[a >= 1.0] = 1 - 1e-300
-    return a
-
-
-class _ProbTransformMixin(Transform):
-    """
-    Mixin for MPL axes transform for quantiles/probabilities or
-    percentages.
-
-    """
-
-    input_dims = 1
-    output_dims = 1
-    is_separable = True
-    has_inverse = True
-
-    def __init__(self, dist, as_pct=True, out_of_bounds='mask'):
-        Transform.__init__(self)
-        self.dist = dist
-        self.as_pct = as_pct
-        self.out_of_bounds = out_of_bounds
-        if self.as_pct:
-            self.factor = 100.0
-        else:
-            self.factor = 1.0
-
-        if self.out_of_bounds == 'mask':
-            self._handle_out_of_bounds = _mask_out_of_bounds
-        elif self.out_of_bounds == 'clip':
-            self._handle_out_of_bounds = _clip_out_of_bounds
-        else:
-            raise ValueError("`out_of_bounds` muse be either 'mask' or 'clip'")
-
-
-
[docs]class ProbTransform(_ProbTransformMixin): - """ - MPL axes tranform class to convert quantiles to probabilities - or percents. - - Parameters - ---------- - dist : scipy.stats distribution - The distribution whose ``cdf`` and ``pdf`` methods wiil set the - scale of the axis. - as_pct : bool, optional (True) - Toggles the formatting of the probabilities associated with the - tick labels as percentanges (0 - 100) or fractions (0 - 1). - out_of_bounds : string, optionals ('mask' or 'clip') - Determines how data outside the range of valid values is - handled. The default behavior is to mask the data. - Alternatively, the data can be clipped to values arbitrarily - close to the limits of the scale. - - """ - -
[docs] def transform_non_affine(self, prob): - prob = self._handle_out_of_bounds(numpy.asarray(prob) / self.factor) - q = self.dist.ppf(prob) - return q -
-
[docs] def inverted(self): - return QuantileTransform(self.dist, as_pct=self.as_pct, out_of_bounds=self.out_of_bounds) - -
-
[docs]class QuantileTransform(_ProbTransformMixin): - """ - MPL axes tranform class to convert probabilities or percents to - quantiles. - - Parameters - ---------- - dist : scipy.stats distribution - The distribution whose ``cdf`` and ``pdf`` methods wiil set the - scale of the axis. - as_pct : bool, optional (True) - Toggles the formatting of the probabilities associated with the - tick labels as percentanges (0 - 100) or fractions (0 - 1). - out_of_bounds : string, optionals ('mask' or 'clip') - Determines how data outside the range of valid values is - handled. The default behavior is to mask the data. - Alternatively, the data can be clipped to values arbitrarily - close to the limits of the scale. - - """ - -
[docs] def transform_non_affine(self, q): - prob = self.dist.cdf(q) * self.factor - return prob -
-
[docs] def inverted(self): - return ProbTransform(self.dist, as_pct=self.as_pct, out_of_bounds=self.out_of_bounds)
-
- -
-
-
- - -
- -
-

- © Copyright 2015, Paul Hobson (Geosyntec Consultants). - -

-
- Built with Sphinx using a theme provided by Read the Docs. - -
- -
-
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mpl-probscale/_modules/probscale/validate.html b/mpl-probscale/_modules/probscale/validate.html deleted file mode 100644 index ab1138d5335..00000000000 --- a/mpl-probscale/_modules/probscale/validate.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - - - - - probscale.validate — probscale 0.2.3 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - -
-
- - - - - - -
- -
-
-
-
- -

Source code for probscale.validate

-from matplotlib import pyplot
-
-from .algo import _bs_fit
-
-
-
[docs]def axes_object(ax): - """ Checks if a value if an Axes. If None, a new one is created. - Both the figure and axes are returned (in that order). - - """ - - if ax is None: - ax = pyplot.gca() - fig = ax.figure - elif isinstance(ax, pyplot.Axes): - fig = ax.figure - else: - msg = "`ax` must be a matplotlib Axes instance or None" - raise ValueError(msg) - - return fig, ax - -
-
[docs]def axis_name(axis, axname): - """ - Checks that an axis name is in ``{'x', 'y'}``. Raises an error on - an invalid value. Returns the lower case verion of valid values. - - """ - - valid_args = ['x', 'y'] - if axis.lower() not in valid_args: - msg = 'Invalid value for {} ({}). Must be on of {}.' - raise ValueError(msg.format(axname, axis, valid_args)) - - return axis.lower() - -
-
[docs]def fit_argument(arg, argname): - """ - Checks that an axis options is in ``{'x', y', 'both', None}``. - Raises an error on an invalid value. Returns the lower case verion - of valid values. - - """ - - valid_args = ['x', 'y', 'both', None] - if arg not in valid_args: - msg = 'Invalid value for {} ({}). Must be on of {}.' - raise ValueError(msg.format(argname, arg, valid_args)) - elif arg is not None: - arg = arg.lower() - - return arg - -
-
[docs]def axis_type(axtype): - """ - Checks that a valid axis type is requested. - - - *pp* - percentile axis - - *qq* - quantile axis - - *prob* - probability axis - - Raises an error on an invalid value. Returns the lower case verion - of valid values. - - """ - - if axtype.lower() not in ['pp', 'qq', 'prob']: - raise ValueError("invalid axtype: {}".format(axtype)) - return axtype.lower() - -
-
[docs]def axis_label(label): - """ - Replaces None with an empty string for axis labels. - - """ - - return '' if label is None else label - -
-
[docs]def other_options(options): - """ - Replaces None with an empty dict for plotting options. - - """ - - return dict() if options is None else options.copy() - -
-
[docs]def estimator(value): - if value.lower() in ['res', 'resid', 'resids', 'residual', 'residuals']: - msg = 'Bootstrapping the residuals is not ready yet' - raise NotImplementedError(msg) - elif value.lower() in ['fit', 'values']: - est = _bs_fit - else: - raise ValueError('estimator must be either "resid" or "fit".') - - return est
-
- -
-
-
- - -
- -
-

- © Copyright 2015, Paul Hobson (Geosyntec Consultants). - -

-
- Built with Sphinx using a theme provided by Read the Docs. - -
- -
-
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mpl-probscale/_modules/probscale/viz.html b/mpl-probscale/_modules/probscale/viz.html deleted file mode 100644 index 758249713ff..00000000000 --- a/mpl-probscale/_modules/probscale/viz.html +++ /dev/null @@ -1,702 +0,0 @@ - - - - - - - - - - - probscale.viz — probscale 0.2.3 documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- - - - - - -
-
- - - - - - -
- -
-
-
-
- -

Source code for probscale.viz

-import copy
-
-import numpy
-from matplotlib import pyplot
-
-from .probscale import _minimal_norm
-from . import validate
-from . import algo
-
-
-
[docs]def probplot(data, ax=None, plottype='prob', dist=None, probax='x', - problabel=None, datascale='linear', datalabel=None, - bestfit=False, return_best_fit_results=False, - estimate_ci=False, ci_kws=None, pp_kws=None, - scatter_kws=None, line_kws=None, **fgkwargs): - """ - Probability, percentile, and quantile plots. - - Parameters - ---------- - data : array-like - 1-dimensional data to be plotted - - ax : matplotlib axes, optional - The Axes on which to plot. If one is not provided, a new Axes - will be created. - - plottype : string (default = 'prob') - Type of plot to be created. Options are: - - - 'prob': probabilty plot - - 'pp': percentile plot - - 'qq': quantile plot - - - dist : scipy distribution, optional - A distribtion to compute the scale's tick positions. If not - specified, a standard normal distribution will be used. - - probax : string, optional (default = 'x') - The axis ('x' or 'y') that will serve as the probability (or - quantile) axis. - - problabel, datalabel : string, optional - Axis labels for the probability/quantile and data axes - respectively. - - datascale : string, optional (default = 'log') - Scale for the other axis that is not - - bestfit : bool, optional (default is False) - Specifies whether a best-fit line should be added to the plot. - - return_best_fit_results : bool (default is False) - If True a dictionary of results of is returned along with the - figure. - - estimate_ci : bool, optional (False) - Estimate and draw a confidence band around the best-fit line - using a percentile bootstrap. - - ci_kws : dict, optional - Dictionary of keyword arguments passed directly to - ``viz.fit_line`` when computing the best-fit line. - - pp_kws : dict, optional - Dictionary of keyword arguments passed directly to - ``viz.plot_pos`` when computing the plotting positions. - - scatter_kws, line_kws : dict, optional - Dictionary of keyword arguments passed directly to ``ax.plot`` - when drawing the scatter points and best-fit line, respectively. - - Other Parameters - ---------------- - color : string, optional - A directly-specified matplotlib color argument for both the - data series and the best-fit line if drawn. This argument is - made available for compatibility for the seaborn package and - is not recommended for general use. Instead colors should be - specified within ``scatter_kws`` and ``line_kws``. - - .. note:: - Users should not specify this parameter. It is inteded to - only be used by seaborn when operating within a - ``FacetGrid``. - - label : string, optional - A directly-specified legend label for the data series. This - argument is made available for compatibility for the seaborn - package and is not recommended for general use. Instead the - data series label should be specified within ``scatter_kws``. - - .. note:: - Users should not specify this parameter. It is inteded to - only be used by seaborn when operating within a - ``FacetGrid``. - - - Returns - ------- - fig : matplotlib.Figure - The figure on which the plot was drawn. - - result : dict of linear fit results, optional - Keys are: - - - q : array of quantiles - - x, y : arrays of data passed to function - - xhat, yhat : arrays of modeled data plotted in best-fit line - - res : array of coeffcients of the best-fit line. - - See also - -------- - viz.plot_pos - viz.fit_line - numpy.polyfit - scipy.stats.probplot - scipy.stats.mstats.plotting_positions - - Examples - -------- - - Probability plot with the probabilities on the y-axis - - .. plot:: - :context: close-figs - - >>> import numpy; numpy.random.seed(0) - >>> from matplotlib import pyplot - >>> from scipy import stats - >>> from probscale.viz import probplot - >>> data = numpy.random.normal(loc=5, scale=1.25, size=37) - >>> fig = probplot(data, plottype='prob', probax='y', - ... problabel='Non-exceedance probability', - ... datalabel='Observed values', bestfit=True, - ... line_kws=dict(linestyle='--', linewidth=2), - ... scatter_kws=dict(marker='o', alpha=0.5)) - - - Quantile plot with the quantiles on the x-axis - - .. plot:: - :context: close-figs - - >>> fig = probplot(data, plottype='qq', probax='x', - ... problabel='Theoretical Quantiles', - ... datalabel='Observed values', bestfit=True, - ... line_kws=dict(linestyle='-', linewidth=2), - ... scatter_kws=dict(marker='s', alpha=0.5)) - - """ - - if dist is None: - dist = _minimal_norm - - # check input values - fig, ax = validate.axes_object(ax) - probax = validate.axis_name(probax, 'probability axis') - problabel = validate.axis_label(problabel) - datalabel = validate.axis_label(datalabel) - - # default values for symbology options - scatter_kws = validate.other_options(scatter_kws) - line_kws = validate.other_options(line_kws) - pp_kws = validate.other_options(pp_kws) - - # check plottype - plottype = validate.axis_type(plottype) - - ## !-- kwarg that only seaborn should use --! ## - _color = fgkwargs.get('color', None) - if _color is not None: - scatter_kws['color'] = _color - line_kws['color'] = _color - - ## !-- kwarg that only seaborn should use --! ## - _label = fgkwargs.get('label', None) - if _label is not None: - scatter_kws['label'] = _label - - # compute the plotting positions and sort the data - probs, datavals = plot_pos(data, **pp_kws) - qntls = dist.ppf(probs) - - # determine how the probability values should be expressed - if plottype == 'qq': - probvals = qntls - else: - probvals = probs * 100 - - # set up x, y, Axes for probabilities on the x - if probax == 'x': - x, y = probvals, datavals - ax.set_xlabel(problabel) - ax.set_ylabel(datalabel) - if plottype == 'prob': - ax.set_xscale('prob', dist=dist) - fitprobs = 'x' - else: - fitprobs = None - if plottype == 'pp': - ax.set_xlim(left=0, right=100) - - ax.set_yscale(datascale) - fitlogs = 'y' if datascale == 'log' else None - - # setup x, y, Axes for probabilities on the y - elif probax == 'y': - y, x = probvals, datavals - ax.set_xlabel(datalabel) - ax.set_ylabel(problabel) - if plottype == 'prob': - ax.set_yscale('prob', dist=dist) - fitprobs = 'y' - else: - fitprobs = None - if plottype == 'pp': - ax.set_ylim(bottom=0, top=100) - - ax.set_xscale(datascale) - fitlogs = 'x' if datascale == 'log' else None - - # finally plot the data - linestyle = scatter_kws.pop('linestyle', 'none') - marker = scatter_kws.pop('marker', 'o') - ax.plot(x, y, linestyle=linestyle, marker=marker, **scatter_kws) - - # maybe do a best-fit and plot - if bestfit: - xhat, yhat, modelres = fit_line(x, y, xhat=sorted(x), dist=dist, - fitprobs=fitprobs, fitlogs=fitlogs, - estimate_ci=estimate_ci) - ax.plot(xhat, yhat, **line_kws) - if estimate_ci: - # for alpha, use half of existing or 0.5 * 0.5 = 0.25 - # for zorder, use 1 less than existing or 1 - 1 = 0 - opts = { - 'facecolor': line_kws.get('color', 'k'), - 'edgecolor': line_kws.get('color', 'None'), - 'alpha': line_kws.get('alpha', 0.5) * 0.5, - 'zorder': line_kws.get('zorder', 1) - 1, - 'label': '95% conf. interval' - } - ax.fill_between(xhat, y1=modelres['yhat_hi'], y2=modelres['yhat_lo'], - **opts) - else: - xhat, yhat, modelres = (None, None, None) - - # set the probability axes limits - if plottype == 'prob': - _set_prob_limits(ax, probax, len(probs)) - - # return the figure and maybe results of the best-fit - if return_best_fit_results: - results = dict(q=qntls, x=x, y=y, xhat=xhat, yhat=yhat, res=modelres) - return fig, results - else: - return fig - -
-
[docs]def plot_pos(data, postype=None, alpha=None, beta=None): - """ - Compute the plotting positions for a dataset. Heavily borrows from - ``scipy.stats.mstats.plotting_positions``. - - A plottiting position is defined as: ``(i-alpha)/(n+1-alpha-beta)`` - where: - - - ``i`` is the rank order - - ``n`` is the size of the dataset - - ``alpha`` and ``beta`` are parameters used to adjust the - positions. - - The values of ``alpha`` and ``beta`` can be explicitly set. Typical - values can also be access via the ``postype`` parameter. Available - ``postype`` values (alpha, beta) are: - - "type 4" (alpha=0, beta=1) - Linear interpolation of the empirical CDF. - "type 5" or "hazen" (alpha=0.5, beta=0.5) - Piecewise linear interpolation. - "type 6" or "weibull" (alpha=0, beta=0) - Weibull plotting positions. Unbiased exceedance probability - for all distributions. Recommended for hydrologic - applications. - "type 7" (alpha=1, beta=1) - The default values in R. Not recommended with probability - scales as the min and max data points get plotting positions - of 0 and 1, respectively, and therefore cannot be shown. - "type 8" (alpha=1/3, beta=1/3) - Approximately median-unbiased. - "type 9" or "blom" (alpha=0.375, beta=0.375) - Approximately unbiased positions if the data are normally - distributed. - "median" (alpha=0.3175, beta=0.3175) - Median exceedance probabilities for all distributions - (used in ``scipy.stats.probplot``). - "apl" or "pwm" (alpha=0.35, beta=0.35) - Used with probability-weighted moments. - "cunnane" (alpha=0.4, beta=0.4) - Nearly unbiased quantiles for normally distributed data. - This is the default value. - "gringorten" (alpha=0.44, beta=0.44) - Used for Gumble distributions. - - Parameters - ---------- - data : array-like - The values whose plotting positions need to be computed. - - postype : string, optional (default: "cunnane") - - alpha, beta : float, optional - Custom plotting position parameters is the options available - through the `postype` parameter are insufficient. - - Returns - ------- - plot_pos : numpy.array - The computed plotting positions, sorted. - - data_sorted : numpy.array - The original data values, sorted. - - References - ---------- - http://artax.karlin.mff.cuni.cz/r-help/library/lmomco/html/pp.html - http://astrostatistics.psu.edu/su07/R/html/stats/html/quantile.html - http://docs.scipy.org/doc/scipy-0.17.0/reference/generated/scipy.stats.probplot.html - http://docs.scipy.org/doc/scipy-0.17.0/reference/generated/scipy.stats.mstats.plotting_positions.html - - """ - - pos_params = { - 'type 4': (0, 1), - 'type 5': (0.5, 0.5), - 'type 6': (0, 0), - 'type 7': (1, 1), - 'type 8': (1/3., 1/3.), - 'type 9': (0.375, 0.375), - 'weibull': (0, 0), - 'median': (0.3175, 0.3175), - 'apl': (0.35, 0.35), - 'pwm': (0.35, 0.35), - 'blom': (0.375, 0.375), - 'hazen': (0.5, 0.5), - 'cunnane': (0.4, 0.4), - 'gringorten': (0.44, 0.44), # Gumble - } - - postype = 'cunnane' if postype is None else postype - if alpha is None and beta is None: - alpha, beta = pos_params[postype.lower()] - - data = numpy.asarray(data, dtype=float).flatten() - n = data.shape[0] - pos = numpy.empty_like(data) - pos[n:] = 0 - - sorted_index = data.argsort() - pos[sorted_index[:n]] = (numpy.arange(1, n+1) - alpha) / (n + 1.0 - alpha - beta) - - return pos[sorted_index], data[sorted_index] - -
-def _set_prob_limits(ax, probax, N): - """ Sets the limits of a probabilty axis based the number of point. - - Parameters - ---------- - ax : matplotlib Axes - The Axes object that will be modified. - N : int - Maximum number of points for the series plotted on the Axes. - which : string - The axis whose ticklabels will be rotated. Valid values are 'x', - 'y', or 'both'. - - Returns - ------- - None - - """ - - fig, ax = validate.axes_object(ax) - which = validate.axis_name(probax, 'probability axis') - - if N <= 5: - minval = 10 - elif N <= 10: - minval = 5 - else: - minval = 10 ** (-1 * numpy.ceil(numpy.log10(N) - 2)) - - if which in ['x', 'both']: - ax.set_xlim(left=minval, right=100-minval) - elif which in ['y', 'both']: - ax.set_ylim(bottom=minval, top=100-minval) - - -
[docs]def fit_line(x, y, xhat=None, fitprobs=None, fitlogs=None, dist=None, - estimate_ci=False, niter=10000, alpha=0.05): - """ - Fits a line to x-y data in various forms (linear, log, prob scales). - - Parameters - ---------- - x, y : array-like - Independent and dependent data, respectively. - - xhat : array-like, optional - The values at which ``yhat`` should should be estimated. If - not provided, falls back to the sorted values of ``x``. - - fitprobs, fitlogs : str, optional. - Defines how data should be transformed. Valid values are - 'x', 'y', or 'both'. If using ``fitprobs``, variables should - be expressed as a percentage, i.e., - for a probablility transform, data will be transformed with - ``lambda x: dist.ppf(x / 100.)``. - For a log transform, ``lambda x: numpy.log(x)``. - Take care to not pass the same value to both ``fitlogs`` and - ``figprobs`` as both transforms will be applied. - - dist : distribution, optional - A fully-spec'd scipy.stats distribution-like object - such that ``dist.ppf`` and ``dist.cdf`` can be called. If not - provided, defaults to a minimal implementation of - ``scipt.stats.norm``. - - estimate_ci : bool, optional (False) - Estimate and draw a confidence band around the best-fit line - using a percentile bootstrap. - - niter : int, optional (default = 10000) - Number of bootstrap iterations if ``estimate_ci`` is provided. - - alpha : float, optional (default = 0.05) - The confidence level of the bootstrap estimate. - - Returns - ------- - xhat, yhat : numpy arrays - Linear model estimates of ``x`` and ``y``. - results : dict - Dictionary of linear fit results. Keys include: - - - slope - - intersept - - yhat_lo (lower confidence interval of the estimated y-vals) - - yhat_hi (upper confidence interval of the estimated y-vals) - - """ - - fitprobs = validate.fit_argument(fitprobs, "fitprobs") - fitlogs = validate.fit_argument(fitlogs, "fitlogs") - - # maybe set xhat to default values - if xhat is None: - xhat = copy.copy(x) - - # maybe set dist to default value - if dist is None: - dist = _minimal_norm - - # maybe compute ppf of x - if fitprobs in ['x', 'both']: - x = dist.ppf(x / 100.) - xhat = dist.ppf(numpy.array(xhat)/100.) - - # maybe compute ppf of y - if fitprobs in ['y', 'both']: - y = dist.ppf(y / 100.) - - # maybe compute log of x - if fitlogs in ['x', 'both']: - x = numpy.log(x) - - # maybe compute log of y - if fitlogs in ['y', 'both']: - y = numpy.log(y) - - yhat, results = algo._fit_simple(x, y, xhat, fitlogs=fitlogs) - - if estimate_ci: - yhat_lo, yhat_hi = algo._bs_fit(x, y, xhat, fitlogs=fitlogs, - niter=niter, alpha=alpha) - else: - yhat_lo, yhat_hi = None, None - - # maybe undo the ppf transform - if fitprobs in ['y', 'both']: - yhat = 100. * dist.cdf(yhat) - if yhat_lo is not None: - yhat_lo = 100. * dist.cdf(yhat_lo) - yhat_hi = 100. * dist.cdf(yhat_hi) - - # maybe undo ppf transform - if fitprobs in ['x', 'both']: - xhat = 100. * dist.cdf(xhat) - - results['yhat_lo'] = yhat_lo - results['yhat_hi'] = yhat_hi - - return xhat, yhat, results
-
- -
-
-
- - -
- -
-

- © Copyright 2015, Paul Hobson (Geosyntec Consultants). - -

-
- Built with Sphinx using a theme provided by Read the Docs. - -
- -
-
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mpl-probscale/_sources/api.txt b/mpl-probscale/_sources/api.txt deleted file mode 100644 index 6ecfa49f00c..00000000000 --- a/mpl-probscale/_sources/api.txt +++ /dev/null @@ -1,11 +0,0 @@ -API and Source Reference ------------------------- - -.. toctree:: - :maxdepth: 2 - - api/viz.rst - api/probscale.rst - api/formatters.rst - api/transforms.rst - api/validate.rst diff --git a/mpl-probscale/_sources/api/formatters.txt b/mpl-probscale/_sources/api/formatters.txt deleted file mode 100644 index 44059611ca8..00000000000 --- a/mpl-probscale/_sources/api/formatters.txt +++ /dev/null @@ -1,11 +0,0 @@ -.. _formatters_auto: - - The ``formatters`` API - -``formatters`` API Reference -============================ - -.. automodule:: probscale.formatters - :members: - :undoc-members: - :show-inheritance: \ No newline at end of file diff --git a/mpl-probscale/_sources/api/probscale.txt b/mpl-probscale/_sources/api/probscale.txt deleted file mode 100644 index f595714684d..00000000000 --- a/mpl-probscale/_sources/api/probscale.txt +++ /dev/null @@ -1,11 +0,0 @@ -.. _probscale_auto: - - The ``probscale`` API - -``probscale`` API Reference -=========================== - -.. automodule:: probscale.probscale - :members: - :undoc-members: - :show-inheritance: diff --git a/mpl-probscale/_sources/api/transforms.txt b/mpl-probscale/_sources/api/transforms.txt deleted file mode 100644 index be18037468d..00000000000 --- a/mpl-probscale/_sources/api/transforms.txt +++ /dev/null @@ -1,11 +0,0 @@ -.. _transforms_auto: - - The ``transforms`` API - -``transforms`` API Reference -============================ - -.. automodule:: probscale.transforms - :members: - :undoc-members: - :show-inheritance: diff --git a/mpl-probscale/_sources/api/validate.txt b/mpl-probscale/_sources/api/validate.txt deleted file mode 100644 index 430a0819834..00000000000 --- a/mpl-probscale/_sources/api/validate.txt +++ /dev/null @@ -1,11 +0,0 @@ -.. _validate_auto: - - The ``validate`` API - -``validate`` API Reference -============================ - -.. automodule:: probscale.validate - :members: - :undoc-members: - :show-inheritance: \ No newline at end of file diff --git a/mpl-probscale/_sources/api/viz.txt b/mpl-probscale/_sources/api/viz.txt deleted file mode 100644 index b594a658ef1..00000000000 --- a/mpl-probscale/_sources/api/viz.txt +++ /dev/null @@ -1,11 +0,0 @@ -.. _viz_auto: - - The ``viz`` API - -``viz`` API Reference -===================== - -.. automodule:: probscale.viz - :members: - :undoc-members: - :show-inheritance: diff --git a/mpl-probscale/_sources/authors.txt b/mpl-probscale/_sources/authors.txt deleted file mode 100644 index e122f914a87..00000000000 --- a/mpl-probscale/_sources/authors.txt +++ /dev/null @@ -1 +0,0 @@ -.. include:: ../AUTHORS.rst diff --git a/mpl-probscale/_sources/contributing.txt b/mpl-probscale/_sources/contributing.txt deleted file mode 100644 index e582053ea01..00000000000 --- a/mpl-probscale/_sources/contributing.txt +++ /dev/null @@ -1 +0,0 @@ -.. include:: ../CONTRIBUTING.rst diff --git a/mpl-probscale/_sources/examples/index.txt b/mpl-probscale/_sources/examples/index.txt deleted file mode 100644 index 144aedc4fca..00000000000 --- a/mpl-probscale/_sources/examples/index.txt +++ /dev/null @@ -1,85 +0,0 @@ - - -.. raw:: html - - - -.. _example_gallery: - -Example gallery -=============== - - - -.. toctree:: - :hidden: - - - - - - - -.. raw:: html - -
diff --git a/mpl-probscale/_sources/index.txt b/mpl-probscale/_sources/index.txt deleted file mode 100644 index b37165e665e..00000000000 --- a/mpl-probscale/_sources/index.txt +++ /dev/null @@ -1,104 +0,0 @@ -.. probscale documentation master file, created by - sphinx-quickstart on Thu Nov 19 23:14:08 2015. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - - -mpl-probscale: Real probability scales for matplotlib -===================================================== - -.. image:: https://travis-ci.org/matplotlib/mpl-probscale.svg?branch=master - :target: https://travis-ci.org/matplotlib/mpl-probscale - -.. image:: https://coveralls.io/repos/matplotlib/mpl-probscale/badge.svg?branch=master&service=github - :target: https://coveralls.io/github/matplotlib/mpl-probscale?branch=master - -https://github.com/matplotlib/mpl-probscale - -Installation ------------- - -Official releases -~~~~~~~~~~~~~~~~~ - -Official releases are available through the conda-forge channel or pip: - -``conda install mpl-probscale --channel=conda-forge`` - -or - -``pip install probscale`` - -Development builds -~~~~~~~~~~~~~~~~~~ - -This is a pure-python package, so building from source is easy on all platforms: - -:: - - git clone git@github.com:matplotlib/mpl-probscale.git - cd mpl-probscale - pip install -e . - - -Quickstart ----------- - -Simply importing ``probscale`` lets you use probability scales in your matplotlib figures: - -.. code-block:: python - - import matplotlib.pyplot as plt - import probscale - import seaborn - clear_bkgd = {'axes.facecolor':'none', 'figure.facecolor':'none'} - seaborn.set(style='ticks', context='notebook', rc=clear_bkgd) - - fig, ax = plt.subplots(figsize=(8, 4)) - ax.set_ylim(1e-2, 1e2) - ax.set_yscale('log') - - ax.set_xlim(0.5, 99.5) - ax.set_xscale('prob') - seaborn.despine(fig=fig) - - -.. image:: /img/example.png - - -Tutorials -========= - -.. toctree:: - :maxdepth: 2 - - tutorial/getting_started.rst - tutorial/closer_look_at_viz.rst - tutorial/closer_look_at_plot_pos.rst - -Testing -======= - -It's easiest to run the tests from an interactive python session: - -.. code-block:: python - - import matplotlib - matplotlib.use('agg') - import probscale - probscale.test() - -API References -============== - -.. toctree:: - :maxdepth: 2 - - api.rst - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/mpl-probscale/_sources/installation.txt b/mpl-probscale/_sources/installation.txt deleted file mode 100644 index e139ad90090..00000000000 --- a/mpl-probscale/_sources/installation.txt +++ /dev/null @@ -1,51 +0,0 @@ -.. highlight:: shell - -============ -Installation -============ - - -Stable release --------------- - -To install mpl-probscale, run this command in your terminal: - -.. code-block:: console - - $ pip install probscale - -This is the preferred method to install mpl-probscale, as it will always install the most recent stable release. - -If you don't have `pip`_ installed, this `Python installation guide`_ can guide -you through the process. - -.. _pip: https://pip.pypa.io -.. _Python installation guide: http://docs.python-guide.org/en/latest/starting/installation/ - - -From sources ------------- - -The sources for mpl-probscale can be downloaded from the `Github repo`_. - -You can either clone the public repository: - -.. code-block:: console - - $ git clone git://github.com/matplotlib/mpl-probscale - -Or download the `tarball`_: - -.. code-block:: console - - $ curl -OL https://github.com/matplotlib/mpl-probscale/tarball/master - -Once you have a copy of the source, you can install it with: - -.. code-block:: console - - $ pip install . - - -.. _Github repo: https://github.com/matplotlib/mpl-probscale -.. _tarball: https://github.com/matplotlib/mpl-probscale/tarball/master diff --git a/mpl-probscale/_sources/readme.txt b/mpl-probscale/_sources/readme.txt deleted file mode 100644 index bdff72a8eef..00000000000 --- a/mpl-probscale/_sources/readme.txt +++ /dev/null @@ -1 +0,0 @@ -.. include:: ../README.md diff --git a/mpl-probscale/_sources/tutorial/closer_look_at_plot_pos.txt b/mpl-probscale/_sources/tutorial/closer_look_at_plot_pos.txt deleted file mode 100644 index c724acb8fd9..00000000000 --- a/mpl-probscale/_sources/tutorial/closer_look_at_plot_pos.txt +++ /dev/null @@ -1,226 +0,0 @@ - -Using different formulations of plotting positions -================================================== - -Computing plotting positions ----------------------------- - -When drawing a percentile, quantile, or probability plot, the potting -positions of ordered data must be computed. - -For a sample :math:`X` with population size :math:`n`, the plotting -position of of the :math:`j^\mathrm{th}` element is defined as: - -.. math:: \frac{x_{j} - \alpha}{n + 1 - \alpha - \beta } - -In this equation, α and β can take on several values. Common values are -described below: - - "type 4" (α=0, β=1) - Linear interpolation of the empirical CDF. - "type 5" or "hazen" (α=0.5, β=0.5) - Piecewise linear interpolation. - "type 6" or "weibull" (α=0, β=0) - Weibull plotting positions. Unbiased exceedance probability for all distributions. - Recommended for hydrologic applications. - "type 7" (α=1, β=1) - The default values in R. - Not recommended with probability scales as the min and max data points get plotting positions of 0 and 1, respectively, and therefore cannot be shown. - "type 8" (α=1/3, β=1/3) - Approximately median-unbiased. - "type 9" or "blom" (α=0.375, β=0.375) - Approximately unbiased positions if the data are normally distributed. - "median" (α=0.3175, β=0.3175) - Median exceedance probabilities for all distributions (used in ``scipy.stats.probplot``). - "apl" or "pwm" (α=0.35, β=0.35) - Used with probability-weighted moments. - "cunnane" (α=0.4, β=0.4) - Nearly unbiased quantiles for normally distributed data. - This is the default value. - "gringorten" (α=0.44, β=0.44) - Used for Gumble distributions. - -The purpose of this tutorial is to show how the selected α and β can -alter the shape of a probability plot. - -First let's get some analytical setup out of the way... - -.. code:: python - - %matplotlib inline - -.. code:: python - - import warnings - warnings.simplefilter('ignore') - - import numpy - from matplotlib import pyplot - from scipy import stats - import seaborn - - clear_bkgd = {'axes.facecolor':'none', 'figure.facecolor':'none'} - seaborn.set(style='ticks', context='talk', color_codes=True, rc=clear_bkgd) - - import probscale - - - def format_axes(ax1, ax2): - """ Sets axes labels and grids """ - for ax in (ax1, ax2): - if ax is not None: - ax.set_ylim(bottom=1, top=99) - ax.set_xlabel('Values of Data') - seaborn.despine(ax=ax) - ax.yaxis.grid(True) - - ax1.legend(loc='upper left', numpoints=1, frameon=False) - ax1.set_ylabel('Normal Probability Scale') - if ax2 is not None: - ax2.set_ylabel('Weibull Probability Scale') - -Normal vs Weibull scales and Cunnane vs Weibull plotting positions ------------------------------------------------------------------- - -Here we'll generate some fake, normally distributed data and define a -Weibull distribution from scipy to use for a probability scale. - -.. code:: python - - numpy.random.seed(0) # reproducible - data = numpy.random.normal(loc=5, scale=1.25, size=37) - - # simple weibull distribution - weibull = stats.weibull_min(2) - -Now let's create probability plots on both Weibull and normal -probability scales. Additionally, we'll compute the plotting positions -two different but commone ways for each plot. - -First, in blue circles, we'll show the data with Weibull (α=0, β=0) -plotting positions. Weibull plotting positions are commonly use in -fields such as hydrology and water resources engineering. - -In green squares, we'll use Cunnane (α=0.4, β=0.4) plotting positions. -Cunnane plotting positions are good for normally distributed data and -are the default values. - -.. code:: python - - w_opts = {'label': 'Weibull (α=0, β=0)', 'marker': 'o', 'markeredgecolor': 'b'} - c_opts = {'label': 'Cunnane (α=0.4, β=0.4)', 'marker': 's', 'markeredgecolor': 'g'} - - common_opts = { - 'markerfacecolor': 'none', - 'markeredgewidth': 1.25, - 'linestyle': 'none' - } - - fig, (ax1, ax2) = pyplot.subplots(figsize=(10, 8), ncols=2, sharex=True, sharey=False) - - for dist, ax in zip([None, weibull], [ax1, ax2]): - for opts, postype in zip([w_opts, c_opts,], ['weibull', 'cunnane']): - probscale.probplot(data, ax=ax, dist=dist, probax='y', - scatter_kws={**opts, **common_opts}, - pp_kws={'postype': postype}) - - format_axes(ax1, ax2) - fig.tight_layout() - - - -.. image:: closer_look_at_plot_pos_files/output_9_0.png - - -This demostrates that the different formulations of the plotting -positions vary most at the extreme values of the dataset. - -Hazen plotting positions -~~~~~~~~~~~~~~~~~~~~~~~~ - -Next, let's compare the Hazen/Type 5 (α=0.5, β=0.5) formulation to -Cunnane. Hazen plotting positions (shown as red triangles) represet a -piece-wise linear interpolation of the emperical cumulative distribution -function of the dataset. - -Given the values of α and β=0.5 vary only slightly from the Cunnane -values, the plotting position predictably are similar. - -.. code:: python - - h_opts = {'label': 'Hazen (α=0.5, β=0.5)', 'marker': '^', 'markeredgecolor': 'r'} - fig, (ax1, ax2) = pyplot.subplots(figsize=(10, 8), ncols=2, sharex=True, sharey=False) - - for dist, ax in zip([None, weibull], [ax1, ax2]): - for opts, postype in zip([c_opts, h_opts,], ['cunnane', 'Hazen']): - probscale.probplot(data, ax=ax, dist=dist, probax='y', - scatter_kws={**opts, **common_opts}, - pp_kws={'postype': postype}) - - format_axes(ax1, ax2) - fig.tight_layout() - - - -.. image:: closer_look_at_plot_pos_files/output_11_0.png - - -Summary -~~~~~~~ - -At the risk of showing a very cluttered and hard to read figure, let's -throw all three on the same normal probability scale: - -.. code:: python - - fig, ax1 = pyplot.subplots(figsize=(6, 8)) - - for opts, postype in zip([w_opts, c_opts, h_opts,], ['weibull', 'cunnane', 'hazen']): - probscale.probplot(data, ax=ax1, dist=None, probax='y', - scatter_kws={**opts, **common_opts}, - pp_kws={'postype': postype}) - - format_axes(ax1, None) - fig.tight_layout() - - - -.. image:: closer_look_at_plot_pos_files/output_13_0.png - - -Again, the different values of α and β don't significantly alter the -shape of the probability plot near between -- say -- the lower and upper -quartiles. Beyond the quartiles, however, the difference is more -obvious. - -The cell below computes the plotting positions with the three sets of α -and β values that we've investigated and prints the first ten value for -easy comparison. - -.. code:: python - - # weibull plotting positions and sorted data - w_probs, _ = probscale.plot_pos(data, postype='weibull') - - # normal plotting positions, returned "data" is identical to above - c_probs, _ = probscale.plot_pos(data, postype='cunnane') - - # type 4 plot positions - h_probs, _ = probscale.plot_pos(data, postype='hazen') - - # convert to percentages - w_probs *= 100 - c_probs *= 100 - h_probs *= 100 - - print('Weibull: ', numpy.round(w_probs[:10], 2)) - print('Cunnane: ', numpy.round(c_probs[:10], 2)) - print('Hazen: ', numpy.round(h_probs[:10], 2)) - - -.. parsed-literal:: - - Weibull: [ 2.63 5.26 7.89 10.53 13.16 15.79 18.42 21.05 23.68 26.32] - Cunnane: [ 1.61 4.3 6.99 9.68 12.37 15.05 17.74 20.43 23.12 25.81] - Hazen: [ 1.35 4.05 6.76 9.46 12.16 14.86 17.57 20.27 22.97 25.68] - diff --git a/mpl-probscale/_sources/tutorial/closer_look_at_viz.txt b/mpl-probscale/_sources/tutorial/closer_look_at_viz.txt deleted file mode 100644 index 25c88b0f811..00000000000 --- a/mpl-probscale/_sources/tutorial/closer_look_at_viz.txt +++ /dev/null @@ -1,604 +0,0 @@ - -A closer look at probability plots -================================== - -Overview --------- - -The ``probscale.probplot`` function let's you do a couple of things. -They are: - -1. Creating percentile, quantile, or probability plots. -2. Placing your probability scale either axis. -3. Specifying an arbitrary distribution for your probability scale. -4. Drawing a best-fit line line in linear-probability or log-probability - space. -5. Computing the plotting positions of your data anyway you want. -6. Using probability axes on seaborn ``FacetGrids`` - -We'll go over all of these options in this tutorial. - -.. code:: python - - %matplotlib inline - -.. code:: python - - import warnings - warnings.simplefilter('ignore') - - import numpy - from matplotlib import pyplot - import seaborn - - import probscale - clear_bkgd = {'axes.facecolor':'none', 'figure.facecolor':'none'} - seaborn.set(style='ticks', context='talk', color_codes=True, rc=clear_bkgd) - - # load up some example data from the seaborn package - tips = seaborn.load_dataset("tips") - iris = seaborn.load_dataset("iris") - -Different plot types --------------------- - -In general, there are three plot types: - -1. Percentile, a.k.a. P-P plots -2. Quantile, a.k.a. Q-Q plots -3. Probability, a.k.a. Prob Plots - -Percentile plots -~~~~~~~~~~~~~~~~ - -Percentile plots are the simplest plots. You simply plot the data -against their plotting positions. The plotting positions are shown on a -linear scale, but the data can be scaled as appropriate. - -If you were doing that from scratch, it would look like this: - -.. code:: python - - position, bill = probscale.plot_pos(tips['total_bill']) - position *= 100 - fig, ax = pyplot.subplots(figsize=(6, 3)) - ax.plot(position, bill, marker='.', linestyle='none', label='Bill amount') - ax.set_xlabel('Percentile') - ax.set_ylabel('Total Bill (USD)') - ax.set_yscale('log') - ax.set_ylim(bottom=1, top=100) - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_4_0.png - - -Using the ``probplot`` function with ``plottype='pp'``, it becomes: - -.. code:: python - - fig, ax = pyplot.subplots(figsize=(6, 3)) - fig = probscale.probplot(tips['total_bill'], ax=ax, plottype='pp', datascale='log', - problabel='Percentile', datalabel='Total Bill (USD)', - scatter_kws=dict(marker='.', linestyle='none', label='Bill Amount')) - ax.set_ylim(bottom=1, top=100) - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_6_0.png - - -Quantile plots -~~~~~~~~~~~~~~ - -Quantile plots are similar to propbabilty plots. The main differences is -that plotting positions are converted into quantiles or :math:`Z`-scores -based on a probability distribution. The default distribution is the -standard-normal distribution. Using a different distribution is covered -further down. - -Usings the same dataset as a above let's make a quantile plot. Like -above, we'll do it from scratch and then using ``probplot``. - -.. code:: python - - from scipy import stats - - position, bill = probscale.plot_pos(tips['total_bill']) - quantile = stats.norm.ppf(position) - - fig, ax = pyplot.subplots(figsize=(6, 3)) - ax.plot(quantile, bill, marker='.', linestyle='none', label='Bill amount') - ax.set_xlabel('Normal Quantiles') - ax.set_ylabel('Total Bill (USD)') - ax.set_yscale('log') - ax.set_ylim(bottom=1, top=100) - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_8_0.png - - -Using ``probplot``: - -.. code:: python - - fig, ax = pyplot.subplots(figsize=(6, 3)) - fig = probscale.probplot(tips['total_bill'], ax=ax, plottype='qq', datascale='log', - problabel='Standard Normal Quantiles', datalabel='Total Bill (USD)', - scatter_kws=dict(marker='.', linestyle='none', label='Bill Amount')) - - ax.set_ylim(bottom=1, top=100) - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_10_0.png - - -You'll notice that the shape of the data is straighter on the Q-Q plot -than the P-P plot. This is due to the transformation that takes place -when converting the plotting positions to a distribution's quantiles. -The plot below hopefully illustrates this more clearly. Additionally, -we'll show how use the ``probax`` option to flip the plot so that the -P-P/Q-Q/Probability axis is on the y-scale. - -.. code:: python - - fig, (ax1, ax2) = pyplot.subplots(figsize=(6, 6), ncols=2, sharex=True) - markers = dict(marker='.', linestyle='none', label='Bill Amount') - - fig = probscale.probplot(tips['total_bill'], ax=ax1, plottype='pp', probax='y', - datascale='log', problabel='Percentiles', - datalabel='Total Bill (USD)', scatter_kws=markers) - - fig = probscale.probplot(tips['total_bill'], ax=ax2, plottype='qq', probax='y', - datascale='log', problabel='Standard Normal Quantiles', - datalabel='Total Bill (USD)', scatter_kws=markers) - - ax1.set_xlim(left=1, right=100) - fig.tight_layout() - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_12_0.png - - -In these case of P-P plots and simple Q-Q plots, the ``probplot`` -function doesn't offer much convencience compared to writing raw -matplotlib commands. However, this changes when you start making -probability plots and using more advanced options. - -Probability plots -~~~~~~~~~~~~~~~~~ - -Visually, the curve of plots on probability and quantile scales should -be the same. The difference is that the axis ticks are placed and -labeled based on non-exceedance probailities rather than the more -abstract quantiles of the distribution. - -Unsurprisingly, a picture explains this much better. Let's build off of -the previos plot: - -.. code:: python - - fig, (ax1, ax2, ax3) = pyplot.subplots(figsize=(9, 6), ncols=3, sharex=True) - common_opts = dict( - probax='y', - datascale='log', - datalabel='Total Bill (USD)', - scatter_kws=dict(marker='.', linestyle='none') - ) - - fig = probscale.probplot(tips['total_bill'], ax=ax1, plottype='pp', - problabel='Percentiles', **common_opts) - - fig = probscale.probplot(tips['total_bill'], ax=ax2, plottype='qq', - problabel='Standard Normal Quantiles', **common_opts) - - fig = probscale.probplot(tips['total_bill'], ax=ax3, plottype='prob', - problabel='Standard Normal Probabilities', **common_opts) - - ax3.set_xlim(left=1, right=100) - ax3.set_ylim(bottom=0.13, top=99.87) - fig.tight_layout() - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_14_0.png - - -Visually, shapes of the curves on the right-most plots are identical. -The difference is that the y-axis ticks and labels are more "human" -readable. - -In other words, the probability (right) axis gives us the ease of -finding e.g. the 75th percentile found on percentile (left) axis, and -illustrates how well the data fit a given distribution like the quantile -(middle) axes. - -Using different distributions for your scales ---------------------------------------------- - -When using quantile or probability scales, you can pass a distribution -from the ``scipy.stats`` module to the ``probplot`` function. When a -distribution is not provided to the ``dist`` parameter, a standard -normal distribution is used. - -.. code:: python - - common_opts = dict( - plottype='prob', - probax='y', - datascale='log', - datalabel='Total Bill (USD)', - scatter_kws=dict(marker='+', linestyle='none', mew=1) - ) - - alpha = stats.alpha(10) - beta = stats.beta(6, 3) - - fig, (ax1, ax2, ax3) = pyplot.subplots(figsize=(9, 6), ncols=3, sharex=True) - fig = probscale.probplot(tips['total_bill'], ax=ax1, dist=alpha, - problabel='Alpha(10) Probabilities', **common_opts) - - fig = probscale.probplot(tips['total_bill'], ax=ax2, dist=beta, - problabel='Beta(6, 1) Probabilities', **common_opts) - - fig = probscale.probplot(tips['total_bill'], ax=ax3, dist=None, - problabel='Standard Normal Probabilities', **common_opts) - - ax3.set_xlim(left=1, right=100) - for ax in [ax1, ax2, ax3]: - ax.set_ylim(bottom=0.2, top=99.8) - seaborn.despine() - fig.tight_layout() - - - -.. image:: closer_look_at_viz_files/output_16_0.png - - -This can also be done for QQ scales: - -.. code:: python - - common_opts = dict( - plottype='qq', - probax='y', - datascale='log', - datalabel='Total Bill (USD)', - scatter_kws=dict(marker='+', linestyle='none', mew=1) - ) - - alpha = stats.alpha(10) - beta = stats.beta(6, 3) - - fig, (ax1, ax2, ax3) = pyplot.subplots(figsize=(9, 6), ncols=3, sharex=True) - fig = probscale.probplot(tips['total_bill'], ax=ax1, dist=alpha, - problabel='Alpha(10) Quantiles', **common_opts) - - fig = probscale.probplot(tips['total_bill'], ax=ax2, dist=beta, - problabel='Beta(6, 3) Quantiles', **common_opts) - - fig = probscale.probplot(tips['total_bill'], ax=ax3, dist=None, - problabel='Standard Normal Quantiles', **common_opts) - - ax1.set_xlim(left=1, right=100) - seaborn.despine() - fig.tight_layout() - - - -.. image:: closer_look_at_viz_files/output_18_0.png - - -Using a specific distribution with a quantile scale can give us an idea -of how well the data fit that distribution. For instance, let's say we -have a hunch that the values of the ``total_bill`` column in our dataset -are normally distributed and their mean and standard deviation are 19.8 -and 8.9, respectively. We could investigate that by create a -``scipy.stat.norm`` distribution with those parameters and use that -distribution in the Q-Q plot. - -.. code:: python - - def equality_line(ax, label=None): - limits = [ - numpy.min([ax.get_xlim(), ax.get_ylim()]), - numpy.max([ax.get_xlim(), ax.get_ylim()]), - ] - ax.set_xlim(limits) - ax.set_ylim(limits) - ax.plot(limits, limits, 'k-', alpha=0.75, zorder=0, label=label) - - norm = stats.norm(loc=21, scale=8) - fig, ax = pyplot.subplots(figsize=(5, 5)) - ax.set_aspect('equal') - - common_opts = dict( - plottype='qq', - probax='x', - problabel='Theoretical Quantiles', - datalabel='Emperical Quantiles', - scatter_kws=dict(label='Bill amounts') - ) - - fig = probscale.probplot(tips['total_bill'], ax=ax, dist=norm, **common_opts) - - equality_line(ax, label='Guessed Normal Distribution') - ax.legend(loc='lower right') - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_20_0.png - - -Hmm. That doesn't look too good. Let's use scipy's fitting functionality -to try out a lognormal distribution. - -.. code:: python - - lognorm_params = stats.lognorm.fit(tips['total_bill'], floc=0) - lognorm = stats.lognorm(*lognorm_params) - fig, ax = pyplot.subplots(figsize=(5, 5)) - ax.set_aspect('equal') - - fig = probscale.probplot(tips['total_bill'], ax=ax, dist=lognorm, **common_opts) - - equality_line(ax, label='Fit Lognormal Distribution') - ax.legend(loc='lower right') - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_22_0.png - - -That's a little bit better. - -Finding the best distribution is left as an exercise to the reader. - -Best-fit lines --------------- - -Adding a best-fit line to a probability plot can provide insight as to -whether or not a dataset can be characterized by a distribution. - -This is simply done with the ``bestfit=True`` option in ``probplot``. -Behind the scenes, ``probplot`` transforms both the x- and y-data of fed -to the regression based on the plot type and scale of the data axis -(controlled via ``datascale``). - -Visual attributes of the line can be controled with the ``line_kws`` -parameter. If you want label the best-fit line, that is where you -specify its label. - -Simple examples -~~~~~~~~~~~~~~~ - -The most trivial case is a P-P plot with a linear data axis - -.. code:: python - - fig, ax = pyplot.subplots(figsize=(6, 3)) - fig = probscale.probplot(tips['total_bill'], ax=ax, plottype='pp', bestfit=True, - problabel='Percentile', datalabel='Total Bill (USD)', - scatter_kws=dict(label='Bill Amount'), - line_kws=dict(label='Best-fit line')) - ax.legend(loc='upper left') - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_25_0.png - - -The least trivial case is a probability plot with a log-scaled data -axes. - -As suggested by the section on quantile plots with custom distributions, -using a normal probability scale with a lognormal data scale provides a -decent fit (visually speaking). - -Note that you still put the probability scale on either the x- or -y-axis. - -.. code:: python - - fig, ax = pyplot.subplots(figsize=(4, 6)) - fig = probscale.probplot(tips['total_bill'], ax=ax, plottype='prob', probax='y', bestfit=True, - datascale='log', problabel='Probabilities', datalabel='Total Bill (USD)', - scatter_kws=dict(label='Bill Amount'), - line_kws=dict(label='Best-fit line')) - ax.legend(loc='upper left') - ax.set_ylim(bottom=0.1, top=99.9) - ax.set_xlim(left=1, right=100) - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_27_0.png - - -Bootstrapped confidence intervals -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Regardless of the scales of the plot (linear, log, or prob), you can add -bootstrapped confidence intervals around the best-fit line. Simply use -the ``estimate_ci=True`` option along with ``bestfit=True``: - -.. code:: python - - N = 15 - numpy.random.seed(0) - x = numpy.random.normal(size=N) + numpy.random.uniform(size=N) - fig, ax = pyplot.subplots(figsize=(8, 4)) - fig = probscale.probplot(x, ax=ax, bestfit=True, estimate_ci=True, - line_kws={'label': 'BF Line', 'color': 'b'}, - scatter_kws={'label': 'Observations'}, - problabel='Probability (%)') - ax.legend(loc='lower right') - ax.set_ylim(bottom=-2, top=4) - seaborn.despine(fig) - - - -.. image:: closer_look_at_viz_files/output_29_0.png - - -Tuning the plotting positions ------------------------------ - -The ``probplot`` function calls the :func:`viz.plot_plos` function to compute each dataset's plotting positions. - -You should read that function's docstring for more detailed information. -But the high-level overview is that there are a couple of parameters (``alpha`` and ``beta``) that you can tweak in the plotting positions calculation. - -The most common values can be selected via the ``postype`` parameter. - -These are controlled via the `pp_kws` parameter in `probplot` -and are discussed in much more detail in the `next tutorial `_. - -.. code:: python - - common_opts = dict( - plottype='prob', - probax='x', - datalabel='Data', - ) - - numpy.random.seed(0) - x = numpy.random.normal(size=15) - - fig, (ax1, ax2, ax3) = pyplot.subplots(figsize=(6, 6), nrows=3, - sharey=True, sharex=True) - fig = probscale.probplot(x, ax=ax1, problabel='Cunnuane (default) plotting positions', - **common_opts) - - fig = probscale.probplot(x, ax=ax2, problabel='Weibull plotting positions', - pp_kws=dict(postype='weibull'), **common_opts) - - fig = probscale.probplot(x, ax=ax3, problabel='Custom plotting positions', - pp_kws=dict(alpha=0.6, beta=0.1), **common_opts) - ax1.set_xlim(left=1, right=99) - seaborn.despine() - fig.tight_layout() - - - -.. image:: closer_look_at_viz_files/output_32_0.png - - -Controlling the aesthetics of the plot elements ------------------------------------------------ - -As it has been hinted in the examples above, the ``probplot`` function -takes two dictionaries to customize the data series and the best-fit -line (``scatter_kws`` and ``line_kws``, respectively. These dictionaries -are passed directly to the ``plot`` method of current axes. - -By default, the data series assumes that ``linestyle='none'`` and -``marker='o'``. These can be overwritten through ``scatter_kws`` - -Revisting the previous example, we can customize it like so: - -.. code:: python - - scatter_options = dict( - marker='^', - markerfacecolor='none', - markeredgecolor='firebrick', - markeredgewidth=1.25, - linestyle='none', - alpha=0.35, - zorder=5, - label='Meal Cost ($)' - ) - - line_options = dict( - dashes=(10,2,5,2,10,2), - color='0.25', - linewidth=3, - zorder=10, - label='Best-fit line' - ) - - fig, ax = pyplot.subplots(figsize=(4, 6)) - fig = probscale.probplot(tips['total_bill'], ax=ax, plottype='prob', probax='y', bestfit=True, - datascale='log', problabel='Probabilities', datalabel='Total Bill (USD)', - scatter_kws=scatter_options, line_kws=line_options) - ax.legend(loc='upper left') - ax.set_ylim(bottom=0.1, top=99.9) - seaborn.despine() - - - -.. image:: closer_look_at_viz_files/output_34_0.png - - -.. note:: - The ``probplot`` function can take two additional aesthetic parameters: - `color` and `label`. If provided, `color` will override the marker face color - and line color options of the `scatter_kws` and `line_kws` parameters, respectively. - Similarly, the label of the scatter series will be overridden by the explicit parameter. - It is not recommended that `color` and `label` are used. They exist primarily for - compatibility with the seaborn package. - -Mapping probability plots to seaborn `FacetGrids `__ ------------------------------------------------------------------------------------------------------------------------------------------------------------ - -In general, ``probplot`` was written with ``FacetGrids`` in mind. All -you need to do is specify the data column and other options in the call -to ``FacetGrid.map``. - -Unfortunately the labels don't work out exactly like I want, but it's a -work in progress. - -.. code:: python - - fg = ( - seaborn.FacetGrid(data=iris, hue='species', aspect=2) - .map(probscale.probplot, 'sepal_length') - .set_axis_labels(x_var='Probability', y_var='Sepal Length') - .add_legend() - ) - - - -.. image:: closer_look_at_viz_files/output_37_0.png - - -.. code:: python - - fg = ( - seaborn.FacetGrid(data=iris, hue='species', aspect=2) - .map(probscale.probplot, 'petal_length', plottype='qq', probax='y') - .set_ylabels('Quantiles') - .add_legend() - ) - - - -.. image:: closer_look_at_viz_files/output_38_0.png - - -.. code:: python - - fg = ( - seaborn.FacetGrid(data=tips, hue='sex', row='smoker', col='time', margin_titles=True, size=4) - .map(probscale.probplot, 'total_bill', probax='y', bestfit=True) - .set_ylabels('Probability') - .add_legend() - ) - - - -.. image:: closer_look_at_viz_files/output_39_0.png - diff --git a/mpl-probscale/_sources/tutorial/getting_started.txt b/mpl-probscale/_sources/tutorial/getting_started.txt deleted file mode 100644 index cc9cda6a3c9..00000000000 --- a/mpl-probscale/_sources/tutorial/getting_started.txt +++ /dev/null @@ -1,313 +0,0 @@ - -Getting started with ``mpl-probscale`` -====================================== - -Installation ------------- - -``mpl-probscale`` is developed on Python 3.6. It is also tested on -Python 3.4, 3.5, and even 2.7 (for the time being). - -From conda -~~~~~~~~~~ - -Official releases of ``mpl-probscale`` can be found on conda-forge: - -``conda install --channel=conda-forge mpl-probscale`` - -Fairly recent builds of the development verions are available on my -channel: - -``conda install --channel=conda-forge mpl-probscale`` - -From PyPI -~~~~~~~~~ - -Official source releases are also available on PyPI -``pip install probscale`` - -From source -~~~~~~~~~~~ - -``mpl-probscale`` is a pure python package. It should be fairly trivial -to install from source on any platform. To do that, download or clone -from `github `__, unzip the -archive if necessary then do: - -:: - - cd mpl-probscale # or wherever the setup.py got placed - pip install . - -I recommend ``pip install .`` over ``python setup.py install`` for -`reasons I don't fully -understand `__. - -.. code:: python - - %matplotlib inline - -.. code:: python - - import warnings - warnings.simplefilter('ignore') - - import numpy - from matplotlib import pyplot - from scipy import stats - import seaborn - - clear_bkgd = {'axes.facecolor':'none', 'figure.facecolor':'none'} - seaborn.set(style='ticks', context='talk', color_codes=True, rc=clear_bkgd) - -Background ----------- - -Built-in matplotlib scales -~~~~~~~~~~~~~~~~~~~~~~~~~~ - -To the casual user, you can set matplotlib scales to either "linear" or -"log" (logarithmic). There are others (e.g., logit, symlog), but I -haven't seen them too much in the wild. - -Linear scales are the default: - -.. code:: python - - fig, ax = pyplot.subplots() - seaborn.despine(fig=fig) - - - -.. image:: getting_started_files/output_4_0.png - - -Logarithmic scales can work well when your data cover several orders of -magnitude and don't have to be in base 10. - -.. code:: python - - fig, (ax1, ax2) = pyplot.subplots(nrows=2, figsize=(8,3)) - ax1.set_xscale('log') - ax1.set_xlim(left=1e-3, right=1e3) - ax1.set_xlabel("Base 10") - ax1.set_yticks([]) - - ax2.set_xscale('log', basex=2) - ax2.set_xlim(left=2**-3, right=2**3) - ax2.set_xlabel("Base 2") - ax2.set_yticks([]) - - seaborn.despine(fig=fig, left=True) - - - -.. image:: getting_started_files/output_6_0.png - - -Probabilty Scales -~~~~~~~~~~~~~~~~~ - -``mpl-probscale`` lets you use probability scales. All you need to do is -import it. - -Before importing, there is no probability scale available in matplotlib: - -.. code:: python - - try: - fig, ax = pyplot.subplots() - ax.set_xscale('prob') - except ValueError as e: - pyplot.close(fig) - print(e) - - -.. parsed-literal:: - - Unknown scale type 'prob' - - -To access probability scales, simply import the ``probscale`` module. - -.. code:: python - - import probscale - fig, ax = pyplot.subplots(figsize=(8, 3)) - ax.set_xscale('prob') - ax.set_xlim(left=0.5, right=99.5) - ax.set_xlabel('Normal probability scale (%)') - seaborn.despine(fig=fig) - - - -.. image:: getting_started_files/output_11_0.png - - -Probability scales default to the standard normal distribution (note -that the formatting is a percentage-based probability) - -You can even use different probability distributions, though it can be -tricky. You have to pass a frozen distribution from either -`scipy.stats `__ -or `paramnormal `__ to the -``dist`` kwarg in ``ax.set_[x|y]scale``. - -Here's a standard normal scale with two different beta scales and a -linear scale for comparison. - -.. code:: python - - fig, (ax1, ax2, ax3, ax4) = pyplot.subplots(figsize=(9, 5), nrows=4) - - for ax in [ax1, ax2, ax3, ax4]: - ax.set_xlim(left=2, right=98) - ax.set_yticks([]) - - ax1.set_xscale('prob') - ax1.set_xlabel('Normal probability scale, as percents') - - beta1 = stats.beta(a=3, b=2) - ax2.set_xscale('prob', dist=beta1) - ax2.set_xlabel('Beta probability scale (α=3, β=2)') - - beta2 = stats.beta(a=2, b=7) - ax3.set_xscale('prob', dist=beta2) - ax3.set_xlabel('Beta probability scale (α=2, β=7)') - - ax4.set_xticks(ax1.get_xticks()[12:-12]) - ax4.set_xlabel('Linear scale (for reference)') - - seaborn.despine(fig=fig, left=True) - - - -.. image:: getting_started_files/output_13_0.png - - -Ready-made probability plots ----------------------------- - -``mpl-probscale`` ships with a small ``viz`` module that can help you -make a probability plot of a sample. - -With only the sample data, ``probscale.probplot`` will create a figure, -compute the plotting position and non-exceedance probabilities, and plot -everything: - -.. code:: python - - numpy.random.seed(0) - sample = numpy.random.normal(loc=4, scale=2, size=37) - - fig = probscale.probplot(sample) - seaborn.despine(fig=fig) - - - -.. image:: getting_started_files/output_15_0.png - - -You should specify the matplotlib axes on which the plot should occur if -you want to customize the plot using matplotlib commands directly: - -.. code:: python - - fig, ax = pyplot.subplots(figsize=(7, 3)) - - probscale.probplot(sample, ax=ax) - - ax.set_ylabel('Normal Values') - ax.set_xlabel('Non-exceedance probability') - ax.set_xlim(left=1, right=99) - seaborn.despine(fig=fig) - - - -.. image:: getting_started_files/output_17_0.png - - -Lots of other options are directly accessible from the ``probplot`` -function signature. - -.. code:: python - - fig, ax = pyplot.subplots(figsize=(3, 7)) - - numpy.random.seed(0) - new_sample = numpy.random.lognormal(mean=2.0, sigma=0.75, size=37) - - probscale.probplot( - new_sample, - ax=ax, - probax='y', # flip the plot - datascale='log', # scale of the non-probability axis - bestfit=True, # draw a best-fit line - estimate_ci=True, - datalabel='Lognormal Values', # labels and markers... - problabel='Non-exceedance probability', - scatter_kws=dict(marker='d', zorder=2, mew=1.25, mec='w', markersize=10), - line_kws=dict(color='0.17', linewidth=2.5, zorder=0, alpha=0.75), - ) - - ax.set_ylim(bottom=1, top=99) - seaborn.despine(fig=fig) - - - -.. image:: getting_started_files/output_19_0.png - - -Percentile and Quanitile plots -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -For convenience, you can do percetile and quantile plots with the same -function. - -.. note:: - The percentile and probability axes are plotted against the - same values. The difference is only that "percentiles" - are plotted on a linear scale. - -.. code:: python - - fig, (ax1, ax2, ax3) = pyplot.subplots(nrows=3, figsize=(8, 7)) - - probscale.probplot(sample, ax=ax1, plottype='pp', problabel='Percentiles') - probscale.probplot(sample, ax=ax2, plottype='qq', problabel='Quantiles') - probscale.probplot(sample, ax=ax3, plottype='prob', problabel='Probabilities') - - ax2.set_xlim(left=-2.5, right=2.5) - ax3.set_xlim(left=0.5, right=99.5) - fig.tight_layout() - seaborn.despine(fig=fig) - - - -.. image:: getting_started_files/output_22_0.png - - -Working with seaborn ``FacetGrids`` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Good news, everyone. The ``probplot`` function generally works as -expected with -`FacetGrids `__. - -.. code:: python - - plot = ( - seaborn.load_dataset("tips") - .assign(pct=lambda df: 100 * df['tip'] / df['total_bill']) - .pipe(seaborn.FacetGrid, hue='sex', col='time', row='smoker', margin_titles=True, aspect=1., size=4) - .map(probscale.probplot, 'pct', bestfit=True, scatter_kws=dict(alpha=0.75), probax='y') - .add_legend() - .set_ylabels('Non-Exceedance Probabilty') - .set_xlabels('Tips as percent of total bill') - .set(ylim=(0.5, 99.5), xlim=(0, 100)) - ) - - - -.. image:: getting_started_files/output_24_0.png - diff --git a/mpl-probscale/_static/ajax-loader.gif b/mpl-probscale/_static/ajax-loader.gif deleted file mode 100644 index 61faf8cab23..00000000000 Binary files a/mpl-probscale/_static/ajax-loader.gif and /dev/null differ diff --git a/mpl-probscale/_static/basic.css b/mpl-probscale/_static/basic.css deleted file mode 100644 index 9fa77d886d4..00000000000 --- a/mpl-probscale/_static/basic.css +++ /dev/null @@ -1,599 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox input[type="text"] { - width: 170px; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - width: 30px; -} - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable dl, table.indextable dd { - margin-top: 0; - margin-bottom: 0; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- general body styles --------------------------------------------------- */ - -a.headerlink { - visibility: hidden; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.field-list ul { - padding-left: 1em; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.field-list td, table.field-list th { - border: 0 !important; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text { -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -dl { - margin-bottom: 15px; -} - -dd p { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, .highlighted { - background-color: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -div.code-block-caption { - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -div.code-block-caption + div > div.highlight > pre { - margin-top: 0; -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - padding: 1em 1em 0; -} - -div.literal-block-wrapper div.highlight { - margin: 0; -} - -code.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -code.descclassname { - background-color: transparent; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/mpl-probscale/_static/comment-bright.png b/mpl-probscale/_static/comment-bright.png deleted file mode 100644 index 551517b8c83..00000000000 Binary files a/mpl-probscale/_static/comment-bright.png and /dev/null differ diff --git a/mpl-probscale/_static/comment-close.png b/mpl-probscale/_static/comment-close.png deleted file mode 100644 index 09b54be46da..00000000000 Binary files a/mpl-probscale/_static/comment-close.png and /dev/null differ diff --git a/mpl-probscale/_static/comment.png b/mpl-probscale/_static/comment.png deleted file mode 100644 index 92feb52b882..00000000000 Binary files a/mpl-probscale/_static/comment.png and /dev/null differ diff --git a/mpl-probscale/_static/css/badge_only.css b/mpl-probscale/_static/css/badge_only.css deleted file mode 100644 index 7e17fb148c6..00000000000 --- a/mpl-probscale/_static/css/badge_only.css +++ /dev/null @@ -1,2 +0,0 @@ -.fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-weight:normal;font-style:normal;src:url("../font/fontawesome_webfont.eot");src:url("../font/fontawesome_webfont.eot?#iefix") format("embedded-opentype"),url("../font/fontawesome_webfont.woff") format("woff"),url("../font/fontawesome_webfont.ttf") format("truetype"),url("../font/fontawesome_webfont.svg#FontAwesome") format("svg")}.fa:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa{display:inline-block;text-decoration:inherit}li .fa{display:inline-block}li .fa-large:before,li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-0.8em}ul.fas li .fa{width:0.8em}ul.fas li .fa-large:before,ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before{content:""}.icon-book:before{content:""}.fa-caret-down:before{content:""}.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.icon-caret-up:before{content:""}.fa-caret-left:before{content:""}.icon-caret-left:before{content:""}.fa-caret-right:before{content:""}.icon-caret-right:before{content:""}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}} -/*# sourceMappingURL=badge_only.css.map */ diff --git a/mpl-probscale/_static/css/theme.css b/mpl-probscale/_static/css/theme.css deleted file mode 100644 index 7be93399a4f..00000000000 --- a/mpl-probscale/_static/css/theme.css +++ /dev/null @@ -1,5 +0,0 @@ -*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:hover,a:active{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;color:#000;text-decoration:none}mark{background:#ff0;color:#000;font-style:italic;font-weight:bold}pre,code,.rst-content tt,.rst-content code,kbd,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}ul,ol,dl{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:0;margin:0;padding:0}label{cursor:pointer}legend{border:0;*margin-left:-7px;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top;resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:0.2em 0;background:#ccc;color:#000;padding:0.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none !important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{html,body,section{background:none !important}*{box-shadow:none !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,.rst-content .toctree-wrapper p.caption,h3{orphans:3;widows:3}h2,.rst-content .toctree-wrapper p.caption,h3{page-break-after:avoid}}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.btn,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}/*! - * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot?v=4.2.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff?v=4.2.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.2.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.wy-menu-vertical li span.pull-left.toctree-expand,.wy-menu-vertical li.on a span.pull-left.toctree-expand,.wy-menu-vertical li.current>a span.pull-left.toctree-expand,.rst-content .pull-left.admonition-title,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content dl dt .pull-left.headerlink,.rst-content p.caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.rst-content code.download span.pull-left:first-child,.pull-left.icon{margin-right:.3em}.fa.pull-right,.wy-menu-vertical li span.pull-right.toctree-expand,.wy-menu-vertical li.on a span.pull-right.toctree-expand,.wy-menu-vertical li.current>a span.pull-right.toctree-expand,.rst-content .pull-right.admonition-title,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content dl dt .pull-right.headerlink,.rst-content p.caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.rst-content code.download span.pull-right:first-child,.pull-right.icon{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.rst-content .admonition-title:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li span.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context{font-family:inherit}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before{font-family:"FontAwesome";display:inline-block;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa,a .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,a .rst-content .admonition-title,.rst-content a .admonition-title,a .rst-content h1 .headerlink,.rst-content h1 a .headerlink,a .rst-content h2 .headerlink,.rst-content h2 a .headerlink,a .rst-content h3 .headerlink,.rst-content h3 a .headerlink,a .rst-content h4 .headerlink,.rst-content h4 a .headerlink,a .rst-content h5 .headerlink,.rst-content h5 a .headerlink,a .rst-content h6 .headerlink,.rst-content h6 a .headerlink,a .rst-content dl dt .headerlink,.rst-content dl dt a .headerlink,a .rst-content p.caption .headerlink,.rst-content p.caption a .headerlink,a .rst-content tt.download span:first-child,.rst-content tt.download a span:first-child,a .rst-content code.download span:first-child,.rst-content code.download a span:first-child,a .icon{display:inline-block;text-decoration:inherit}.btn .fa,.btn .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .btn span.toctree-expand,.btn .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .btn span.toctree-expand,.btn .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .btn span.toctree-expand,.btn .rst-content .admonition-title,.rst-content .btn .admonition-title,.btn .rst-content h1 .headerlink,.rst-content h1 .btn .headerlink,.btn .rst-content h2 .headerlink,.rst-content h2 .btn .headerlink,.btn .rst-content h3 .headerlink,.rst-content h3 .btn .headerlink,.btn .rst-content h4 .headerlink,.rst-content h4 .btn .headerlink,.btn .rst-content h5 .headerlink,.rst-content h5 .btn .headerlink,.btn .rst-content h6 .headerlink,.rst-content h6 .btn .headerlink,.btn .rst-content dl dt .headerlink,.rst-content dl dt .btn .headerlink,.btn .rst-content p.caption .headerlink,.rst-content p.caption .btn .headerlink,.btn .rst-content tt.download span:first-child,.rst-content tt.download .btn span:first-child,.btn .rst-content code.download span:first-child,.rst-content code.download .btn span:first-child,.btn .icon,.nav .fa,.nav .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .nav span.toctree-expand,.nav .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .nav span.toctree-expand,.nav .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .nav span.toctree-expand,.nav .rst-content .admonition-title,.rst-content .nav .admonition-title,.nav .rst-content h1 .headerlink,.rst-content h1 .nav .headerlink,.nav .rst-content h2 .headerlink,.rst-content h2 .nav .headerlink,.nav .rst-content h3 .headerlink,.rst-content h3 .nav .headerlink,.nav .rst-content h4 .headerlink,.rst-content h4 .nav .headerlink,.nav .rst-content h5 .headerlink,.rst-content h5 .nav .headerlink,.nav .rst-content h6 .headerlink,.rst-content h6 .nav .headerlink,.nav .rst-content dl dt .headerlink,.rst-content dl dt .nav .headerlink,.nav .rst-content p.caption .headerlink,.rst-content p.caption .nav .headerlink,.nav .rst-content tt.download span:first-child,.rst-content tt.download .nav span:first-child,.nav .rst-content code.download span:first-child,.rst-content code.download .nav span:first-child,.nav .icon{display:inline}.btn .fa.fa-large,.btn .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .btn span.fa-large.toctree-expand,.btn .rst-content .fa-large.admonition-title,.rst-content .btn .fa-large.admonition-title,.btn .rst-content h1 .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.btn .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .btn .fa-large.headerlink,.btn .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .btn .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .btn span.fa-large:first-child,.btn .rst-content code.download span.fa-large:first-child,.rst-content code.download .btn span.fa-large:first-child,.btn .fa-large.icon,.nav .fa.fa-large,.nav .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .nav span.fa-large.toctree-expand,.nav .rst-content .fa-large.admonition-title,.rst-content .nav .fa-large.admonition-title,.nav .rst-content h1 .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.nav .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.nav .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .nav .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.nav .rst-content code.download span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.nav .fa-large.icon{line-height:0.9em}.btn .fa.fa-spin,.btn .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .btn span.fa-spin.toctree-expand,.btn .rst-content .fa-spin.admonition-title,.rst-content .btn .fa-spin.admonition-title,.btn .rst-content h1 .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.btn .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .btn .fa-spin.headerlink,.btn .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .btn .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .btn span.fa-spin:first-child,.btn .rst-content code.download span.fa-spin:first-child,.rst-content code.download .btn span.fa-spin:first-child,.btn .fa-spin.icon,.nav .fa.fa-spin,.nav .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .nav span.fa-spin.toctree-expand,.nav .rst-content .fa-spin.admonition-title,.rst-content .nav .fa-spin.admonition-title,.nav .rst-content h1 .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.nav .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.nav .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .nav .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.nav .rst-content code.download span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.nav .fa-spin.icon{display:inline-block}.btn.fa:before,.wy-menu-vertical li span.btn.toctree-expand:before,.rst-content .btn.admonition-title:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content dl dt .btn.headerlink:before,.rst-content p.caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.rst-content code.download span.btn:first-child:before,.btn.icon:before{opacity:0.5;-webkit-transition:opacity 0.05s ease-in;-moz-transition:opacity 0.05s ease-in;transition:opacity 0.05s ease-in}.btn.fa:hover:before,.wy-menu-vertical li span.btn.toctree-expand:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content p.caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.rst-content code.download span.btn:first-child:hover:before,.btn.icon:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li .btn-mini span.toctree-expand:before,.btn-mini .rst-content .admonition-title:before,.rst-content .btn-mini .admonition-title:before,.btn-mini .rst-content h1 .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.btn-mini .rst-content dl dt .headerlink:before,.rst-content dl dt .btn-mini .headerlink:before,.btn-mini .rst-content p.caption .headerlink:before,.rst-content p.caption .btn-mini .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.rst-content tt.download .btn-mini span:first-child:before,.btn-mini .rst-content code.download span:first-child:before,.rst-content code.download .btn-mini span:first-child:before,.btn-mini .icon:before{font-size:14px;vertical-align:-15%}.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.wy-alert-title,.rst-content .admonition-title{color:#fff;font-weight:bold;display:block;color:#fff;background:#6ab0de;margin:-12px;padding:6px 12px;margin-bottom:12px}.wy-alert.wy-alert-danger,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.admonition-todo{background:#fdf3f2}.wy-alert.wy-alert-danger .wy-alert-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .danger .wy-alert-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .danger .admonition-title,.rst-content .error .admonition-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title{background:#f29f97}.wy-alert.wy-alert-warning,.rst-content .wy-alert-warning.note,.rst-content .attention,.rst-content .caution,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.tip,.rst-content .warning,.rst-content .wy-alert-warning.seealso,.rst-content .admonition-todo{background:#ffedcc}.wy-alert.wy-alert-warning .wy-alert-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .attention .wy-alert-title,.rst-content .caution .wy-alert-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .admonition-todo .wy-alert-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .attention .admonition-title,.rst-content .caution .admonition-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .warning .admonition-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .admonition-todo .admonition-title{background:#f0b37e}.wy-alert.wy-alert-info,.rst-content .note,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.rst-content .seealso,.rst-content .wy-alert-info.admonition-todo{background:#e7f2fa}.wy-alert.wy-alert-info .wy-alert-title,.rst-content .note .wy-alert-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.rst-content .note .admonition-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .seealso .admonition-title,.rst-content .wy-alert-info.admonition-todo .admonition-title{background:#6ab0de}.wy-alert.wy-alert-success,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.warning,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.admonition-todo{background:#dbfaf4}.wy-alert.wy-alert-success .wy-alert-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .hint .wy-alert-title,.rst-content .important .wy-alert-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .hint .admonition-title,.rst-content .important .admonition-title,.rst-content .tip .admonition-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.admonition-todo .admonition-title{background:#1abc9c}.wy-alert.wy-alert-neutral,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.admonition-todo{background:#f3f6f6}.wy-alert.wy-alert-neutral .wy-alert-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .admonition-title{color:#404040;background:#e1e4e5}.wy-alert.wy-alert-neutral a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.admonition-todo a{color:#2980B9}.wy-alert p:last-child,.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition-todo p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0px;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all 0.3s ease-in;-moz-transition:all 0.3s ease-in;transition:all 0.3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27AE60}.wy-tray-container li.wy-tray-item-info{background:#2980B9}.wy-tray-container li.wy-tray-item-warning{background:#E67E22}.wy-tray-container li.wy-tray-item-danger{background:#E74C3C}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width: 768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px 12px;color:#fff;border:1px solid rgba(0,0,0,0.1);background-color:#27AE60;text-decoration:none;font-weight:normal;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset;outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all 0.1s linear;-moz-transition:all 0.1s linear;transition:all 0.1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset;padding:8px 12px 6px 12px}.btn:visited{color:#fff}.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:0.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980B9 !important}.btn-info:hover{background-color:#2e8ece !important}.btn-neutral{background-color:#f3f6f6 !important;color:#404040 !important}.btn-neutral:hover{background-color:#e5ebeb !important;color:#404040}.btn-neutral:visited{color:#404040 !important}.btn-success{background-color:#27AE60 !important}.btn-success:hover{background-color:#295 !important}.btn-danger{background-color:#E74C3C !important}.btn-danger:hover{background-color:#ea6153 !important}.btn-warning{background-color:#E67E22 !important}.btn-warning:hover{background-color:#e98b39 !important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f !important}.btn-link{background-color:transparent !important;color:#2980B9;box-shadow:none;border-color:transparent !important}.btn-link:hover{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:active{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:visited{color:#9B59B6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:before,.wy-btn-group:after{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:solid 1px #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,0.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980B9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:solid 1px #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type="search"]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980B9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{border:0;margin:0;padding:0}legend{display:block;width:100%;border:0;padding:0;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label{display:block;margin:0 0 0.3125em 0;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;*zoom:1;max-width:68em;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#E74C3C}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full input[type="text"],.wy-control-group .wy-form-full input[type="password"],.wy-control-group .wy-form-full input[type="email"],.wy-control-group .wy-form-full input[type="url"],.wy-control-group .wy-form-full input[type="date"],.wy-control-group .wy-form-full input[type="month"],.wy-control-group .wy-form-full input[type="time"],.wy-control-group .wy-form-full input[type="datetime"],.wy-control-group .wy-form-full input[type="datetime-local"],.wy-control-group .wy-form-full input[type="week"],.wy-control-group .wy-form-full input[type="number"],.wy-control-group .wy-form-full input[type="search"],.wy-control-group .wy-form-full input[type="tel"],.wy-control-group .wy-form-full input[type="color"],.wy-control-group .wy-form-halves input[type="text"],.wy-control-group .wy-form-halves input[type="password"],.wy-control-group .wy-form-halves input[type="email"],.wy-control-group .wy-form-halves input[type="url"],.wy-control-group .wy-form-halves input[type="date"],.wy-control-group .wy-form-halves input[type="month"],.wy-control-group .wy-form-halves input[type="time"],.wy-control-group .wy-form-halves input[type="datetime"],.wy-control-group .wy-form-halves input[type="datetime-local"],.wy-control-group .wy-form-halves input[type="week"],.wy-control-group .wy-form-halves input[type="number"],.wy-control-group .wy-form-halves input[type="search"],.wy-control-group .wy-form-halves input[type="tel"],.wy-control-group .wy-form-halves input[type="color"],.wy-control-group .wy-form-thirds input[type="text"],.wy-control-group .wy-form-thirds input[type="password"],.wy-control-group .wy-form-thirds input[type="email"],.wy-control-group .wy-form-thirds input[type="url"],.wy-control-group .wy-form-thirds input[type="date"],.wy-control-group .wy-form-thirds input[type="month"],.wy-control-group .wy-form-thirds input[type="time"],.wy-control-group .wy-form-thirds input[type="datetime"],.wy-control-group .wy-form-thirds input[type="datetime-local"],.wy-control-group .wy-form-thirds input[type="week"],.wy-control-group .wy-form-thirds input[type="number"],.wy-control-group .wy-form-thirds input[type="search"],.wy-control-group .wy-form-thirds input[type="tel"],.wy-control-group .wy-form-thirds input[type="color"]{width:100%}.wy-control-group .wy-form-full{float:left;display:block;margin-right:2.35765%;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child{margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n+1){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child{margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control{margin:6px 0 0 0;font-size:90%}.wy-control-no-input{display:inline-block;margin:6px 0 0 0;font-size:90%}.wy-control-group.fluid-input input[type="text"],.wy-control-group.fluid-input input[type="password"],.wy-control-group.fluid-input input[type="email"],.wy-control-group.fluid-input input[type="url"],.wy-control-group.fluid-input input[type="date"],.wy-control-group.fluid-input input[type="month"],.wy-control-group.fluid-input input[type="time"],.wy-control-group.fluid-input input[type="datetime"],.wy-control-group.fluid-input input[type="datetime-local"],.wy-control-group.fluid-input input[type="week"],.wy-control-group.fluid-input input[type="number"],.wy-control-group.fluid-input input[type="search"],.wy-control-group.fluid-input input[type="tel"],.wy-control-group.fluid-input input[type="color"]{width:100%}.wy-form-message-inline{display:inline-block;padding-left:0.3em;color:#666;vertical-align:middle;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:0.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;*overflow:visible}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}input[type="datetime-local"]{padding:0.34375em 0.625em}input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin-right:0.3125em;*height:13px;*width:13px}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{outline:0;outline:thin dotted \9;border-color:#333}input.no-focus:focus{border-color:#ccc !important}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:1px auto #129FEA}input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#E74C3C;border:1px solid #E74C3C}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#E74C3C}input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus{outline-color:#E74C3C}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif}select,textarea{padding:0.5em 0.625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border 0.3s linear;-moz-transition:border 0.3s linear;transition:border 0.3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type="radio"][disabled],input[type="checkbox"][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:solid 1px #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{width:36px;height:12px;margin:12px 0;position:relative;border-radius:4px;background:#ccc;cursor:pointer;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.wy-switch:before{position:absolute;content:"";display:block;width:18px;height:18px;border-radius:4px;background:#999;left:-3px;top:-3px;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.wy-switch:after{content:"false";position:absolute;left:48px;display:block;font-size:12px;color:#ccc}.wy-switch.active{background:#1e8449}.wy-switch.active:before{left:24px;background:#27AE60}.wy-switch.active:after{content:"true"}.wy-switch.disabled,.wy-switch.active.disabled{cursor:not-allowed}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#E74C3C}.wy-control-group.wy-control-group-error input[type="text"],.wy-control-group.wy-control-group-error input[type="password"],.wy-control-group.wy-control-group-error input[type="email"],.wy-control-group.wy-control-group-error input[type="url"],.wy-control-group.wy-control-group-error input[type="date"],.wy-control-group.wy-control-group-error input[type="month"],.wy-control-group.wy-control-group-error input[type="time"],.wy-control-group.wy-control-group-error input[type="datetime"],.wy-control-group.wy-control-group-error input[type="datetime-local"],.wy-control-group.wy-control-group-error input[type="week"],.wy-control-group.wy-control-group-error input[type="number"],.wy-control-group.wy-control-group-error input[type="search"],.wy-control-group.wy-control-group-error input[type="tel"],.wy-control-group.wy-control-group-error input[type="color"]{border:solid 1px #E74C3C}.wy-control-group.wy-control-group-error textarea{border:solid 1px #E74C3C}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:0.5em 0.625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27AE60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#E74C3C}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#E67E22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980B9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width: 480px){.wy-form button[type="submit"]{margin:0.7em 0 0}.wy-form input[type="text"],.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0.3em;display:block}.wy-form label{margin-bottom:0.3em;display:block}.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:0.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0 0}.wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width: 768px){.tablet-hide{display:none}}@media screen and (max-width: 480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.wy-table,.rst-content table.docutils,.rst-content table.field-list{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td,.wy-table th,.rst-content table.docutils th,.rst-content table.field-list th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.wy-table td:first-child,.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.wy-table th:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{border-left-width:0}.wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th{font-weight:bold;border-bottom:solid 2px #e1e4e5}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td{background-color:transparent;vertical-align:middle}.wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p{line-height:18px}.wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{margin-bottom:0}.wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min{width:1%;padding-right:0}.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:gray;font-size:90%}.wy-table-tertiary{color:gray;font-size:80%}.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td,.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{background-color:#f3f6f6}.wy-table-backed{background-color:#f3f6f6}.wy-table-bordered-all,.rst-content table.docutils{border:1px solid #e1e4e5}.wy-table-bordered-all td,.rst-content table.docutils td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px 0;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0 !important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980B9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9B59B6}html{height:100%;overflow-x:hidden}body{font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;font-weight:normal;color:#404040;min-height:100%;overflow-x:hidden;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#E67E22 !important}a.wy-text-warning:hover{color:#eb9950 !important}.wy-text-info{color:#2980B9 !important}a.wy-text-info:hover{color:#409ad5 !important}.wy-text-success{color:#27AE60 !important}a.wy-text-success:hover{color:#36d278 !important}.wy-text-danger{color:#E74C3C !important}a.wy-text-danger:hover{color:#ed7669 !important}.wy-text-neutral{color:#404040 !important}a.wy-text-neutral:hover{color:#595959 !important}h1,h2,.rst-content .toctree-wrapper p.caption,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}p{line-height:24px;margin:0;font-size:16px;margin-bottom:24px}h1{font-size:175%}h2,.rst-content .toctree-wrapper p.caption{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}code,.rst-content tt,.rst-content code{white-space:nowrap;max-width:100%;background:#fff;border:solid 1px #e1e4e5;font-size:75%;padding:0 5px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;color:#E74C3C;overflow-x:auto}code.code-large,.rst-content tt.code-large{font-size:90%}.wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li{list-style:disc;margin-left:24px}.wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child{margin-bottom:0}.wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul{margin-bottom:0}.wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li{list-style:circle}.wy-plain-list-disc li li li,.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,article ul li li li{list-style:square}.wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li{list-style:decimal}.wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li{list-style:decimal;margin-left:24px}.wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child{margin-bottom:0}.wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul{margin-bottom:0}.wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li{list-style:disc}.codeblock-example{border:1px solid #e1e4e5;border-bottom:none;padding:24px;padding-top:48px;font-weight:500;background:#fff;position:relative}.codeblock-example:after{content:"Example";position:absolute;top:0px;left:0px;background:#9B59B6;color:#fff;padding:6px 12px}.codeblock-example.prettyprint-example-only{border:1px solid #e1e4e5;margin-bottom:24px}.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight']{border:1px solid #e1e4e5;padding:0px;overflow-x:auto;background:#fff;margin:1px 0 24px 0}.codeblock div[class^='highlight'],pre.literal-block div[class^='highlight'],.rst-content .literal-block div[class^='highlight'],div[class^='highlight'] div[class^='highlight']{border:none;background:none;margin:0}div[class^='highlight'] td.code{width:100%}.linenodiv pre{border-right:solid 1px #e6e9ea;margin:0;padding:12px 12px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:12px;line-height:1.5;color:#d9d9d9}div[class^='highlight'] pre{white-space:pre;margin:0;padding:12px 12px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:12px;line-height:1.5;display:block;overflow:auto;color:#404040}@media print{.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight'],div[class^='highlight'] pre{white-space:pre-wrap}}.hll{background-color:#ffc;margin:0 -12px;padding:0 12px;display:block}.c{color:#998;font-style:italic}.err{color:#a61717;background-color:#e3d2d2}.k{font-weight:bold}.o{font-weight:bold}.cm{color:#998;font-style:italic}.cp{color:#999;font-weight:bold}.c1{color:#998;font-style:italic}.cs{color:#999;font-weight:bold;font-style:italic}.gd{color:#000;background-color:#fdd}.gd .x{color:#000;background-color:#faa}.ge{font-style:italic}.gr{color:#a00}.gh{color:#999}.gi{color:#000;background-color:#dfd}.gi .x{color:#000;background-color:#afa}.go{color:#888}.gp{color:#555}.gs{font-weight:bold}.gu{color:purple;font-weight:bold}.gt{color:#a00}.kc{font-weight:bold}.kd{font-weight:bold}.kn{font-weight:bold}.kp{font-weight:bold}.kr{font-weight:bold}.kt{color:#458;font-weight:bold}.m{color:#099}.s{color:#d14}.n{color:#333}.na{color:teal}.nb{color:#0086b3}.nc{color:#458;font-weight:bold}.no{color:teal}.ni{color:purple}.ne{color:#900;font-weight:bold}.nf{color:#900;font-weight:bold}.nn{color:#555}.nt{color:navy}.nv{color:teal}.ow{font-weight:bold}.w{color:#bbb}.mf{color:#099}.mh{color:#099}.mi{color:#099}.mo{color:#099}.sb{color:#d14}.sc{color:#d14}.sd{color:#d14}.s2{color:#d14}.se{color:#d14}.sh{color:#d14}.si{color:#d14}.sx{color:#d14}.sr{color:#009926}.s1{color:#d14}.ss{color:#990073}.bp{color:#999}.vc{color:teal}.vg{color:teal}.vi{color:teal}.il{color:#099}.gc{color:#999;background-color:#EAF2F5}.wy-breadcrumbs li{display:inline-block}.wy-breadcrumbs li.wy-breadcrumbs-aside{float:right}.wy-breadcrumbs li a{display:inline-block;padding:5px}.wy-breadcrumbs li a:first-child{padding-left:0}.wy-breadcrumbs li code,.wy-breadcrumbs li .rst-content tt,.rst-content .wy-breadcrumbs li tt{padding:5px;border:none;background:none}.wy-breadcrumbs li code.literal,.wy-breadcrumbs li .rst-content tt.literal,.rst-content .wy-breadcrumbs li tt.literal{color:#404040}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width: 480px){.wy-breadcrumbs-extra{display:none}.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:before,.wy-menu-horiz:after{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz ul,.wy-menu-horiz li{display:inline-block}.wy-menu-horiz li:hover{background:rgba(255,255,255,0.1)}.wy-menu-horiz li.divide-left{border-left:solid 1px #404040}.wy-menu-horiz li.divide-right{border-right:solid 1px #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{height:32px;display:inline-block;line-height:32px;padding:0 1.618em;margin-bottom:0;display:block;font-weight:bold;text-transform:uppercase;font-size:80%;color:#555;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:solid 1px #404040}.wy-menu-vertical li.divide-bottom{border-bottom:solid 1px #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:gray;border-right:solid 1px #c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.wy-menu-vertical li code,.wy-menu-vertical li .rst-content tt,.rst-content .wy-menu-vertical li tt{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li span.toctree-expand{display:block;float:left;margin-left:-1.2em;font-size:0.8em;line-height:1.6em;color:#4d4d4d}.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a{color:#404040;padding:0.4045em 1.618em;font-weight:bold;position:relative;background:#fcfcfc;border:none;border-bottom:solid 1px #c9c9c9;border-top:solid 1px #c9c9c9;padding-left:1.618em -4px}.wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover{background:#fcfcfc}.wy-menu-vertical li.on a:hover span.toctree-expand,.wy-menu-vertical li.current>a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand{display:block;font-size:0.8em;line-height:1.6em;color:#333}.wy-menu-vertical li.toctree-l1.current li.toctree-l2>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>ul{display:none}.wy-menu-vertical li.toctree-l1.current li.toctree-l2.current>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3.current>ul{display:block}.wy-menu-vertical li.toctree-l2.current>a{background:#c9c9c9;padding:0.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{display:block;background:#c9c9c9;padding:0.4045em 4.045em}.wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l2 span.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3{font-size:0.9em}.wy-menu-vertical li.toctree-l3.current>a{background:#bdbdbd;padding:0.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{display:block;background:#bdbdbd;padding:0.4045em 5.663em;border-top:none;border-bottom:none}.wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l3 span.toctree-expand{color:#969696}.wy-menu-vertical li.toctree-l4{font-size:0.9em}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical .local-toc li ul{display:block}.wy-menu-vertical li ul li a{margin-bottom:0;color:#b3b3b3;font-weight:normal}.wy-menu-vertical a{display:inline-block;line-height:18px;padding:0.4045em 1.618em;display:block;position:relative;font-size:90%;color:#b3b3b3}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover span.toctree-expand{color:#b3b3b3}.wy-menu-vertical a:active{background-color:#2980B9;cursor:pointer;color:#fff}.wy-menu-vertical a:active span.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:0.809em;margin-bottom:0.809em;z-index:200;background-color:#2980B9;text-align:center;padding:0.809em;display:block;color:#fcfcfc;margin-bottom:0.809em}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto 0.809em auto;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a{color:#fcfcfc;font-size:100%;font-weight:bold;display:inline-block;padding:4px 6px;margin-bottom:0.809em}.wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover{background:rgba(255,255,255,0.1)}.wy-side-nav-search>a img.logo,.wy-side-nav-search .wy-dropdown>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search>a.icon img.logo,.wy-side-nav-search .wy-dropdown>a.icon img.logo{margin-top:0.85em}.wy-side-nav-search>div.version{margin-top:-0.4045em;margin-bottom:0.809em;font-weight:normal;color:rgba(255,255,255,0.3)}.wy-nav .wy-menu-vertical header{color:#2980B9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980B9;color:#fff}[data-menu-wrap]{-webkit-transition:all 0.2s ease-in;-moz-transition:all 0.2s ease-in;transition:all 0.2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:left repeat-y #fcfcfc;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC);background-size:300px 1px}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980B9;color:#fff;padding:0.4045em 0.809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:before,.wy-nav-top:after{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:bold}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:#999}footer p{margin-bottom:12px}footer span.commit code,footer span.commit .rst-content tt,.rst-content footer span.commit tt{padding:0px;font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;font-size:1em;background:none;border:none;color:#999}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:before,.rst-footer-buttons:after{display:table;content:""}.rst-footer-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:solid 1px #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:solid 1px #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:gray;font-size:90%}@media screen and (max-width: 768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-side-scroll{width:auto}.wy-side-nav-search{width:auto}.wy-menu.wy-menu-vertical{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width: 1400px){.wy-nav-content-wrap{background:rgba(0,0,0,0.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,footer,.wy-nav-side{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content p.caption .headerlink,.rst-content p.caption .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .icon{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}}.rst-content img{max-width:100%;height:auto !important}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure p.caption{font-style:italic}.rst-content div.figure.align-center{text-align:center}.rst-content .section>img,.rst-content .section>a>img{margin-bottom:24px}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content .note .last,.rst-content .attention .last,.rst-content .caution .last,.rst-content .danger .last,.rst-content .error .last,.rst-content .hint .last,.rst-content .important .last,.rst-content .tip .last,.rst-content .warning .last,.rst-content .seealso .last,.rst-content .admonition-todo .last{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,0.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent !important;border-color:rgba(0,0,0,0.1) !important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li{list-style:upper-alpha}.rst-content .section ol p,.rst-content .section ul p{margin-bottom:12px}.rst-content .line-block{margin-left:24px}.rst-content .topic-title{font-weight:bold;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0px 0px 24px 24px}.rst-content .align-left{float:left;margin:0px 24px 24px 0px}.rst-content .align-center{margin:auto;display:block}.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content .toctree-wrapper p.caption .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink{display:none;visibility:hidden;font-size:14px}.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content .toctree-wrapper p.caption .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after,.rst-content p.caption .headerlink:after{visibility:visible;content:"";font-family:FontAwesome;display:inline-block}.rst-content h1:hover .headerlink,.rst-content h2:hover .headerlink,.rst-content .toctree-wrapper p.caption:hover .headerlink,.rst-content h3:hover .headerlink,.rst-content h4:hover .headerlink,.rst-content h5:hover .headerlink,.rst-content h6:hover .headerlink,.rst-content dl dt:hover .headerlink,.rst-content p.caption:hover .headerlink{display:inline-block}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:solid 1px #e1e4e5}.rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl{font-size:90%}.rst-content .sidebar .last{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;font-weight:bold;background:#e1e4e5;padding:6px 12px;margin:-24px;margin-bottom:24px;font-size:100%}.rst-content .highlighted{background:#F1C40F;display:inline-block;font-weight:bold;padding:0 6px}.rst-content .footnote-reference,.rst-content .citation-reference{vertical-align:super;font-size:90%}.rst-content table.docutils.citation,.rst-content table.docutils.footnote{background:none;border:none;color:#999}.rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr{border:none;background-color:transparent !important;white-space:normal}.rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}.rst-content table.docutils.citation tt,.rst-content table.docutils.citation code,.rst-content table.docutils.footnote tt,.rst-content table.docutils.footnote code{color:#555}.rst-content table.field-list{border:none}.rst-content table.field-list td{border:none;padding-top:5px}.rst-content table.field-list td>strong{display:inline-block;margin-top:3px}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left;padding-left:0}.rst-content tt,.rst-content tt,.rst-content code{color:#000;padding:2px 5px}.rst-content tt big,.rst-content tt em,.rst-content tt big,.rst-content code big,.rst-content tt em,.rst-content code em{font-size:100% !important;line-height:normal}.rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal{color:#E74C3C}.rst-content tt.xref,a .rst-content tt,.rst-content tt.xref,.rst-content code.xref,a .rst-content tt,a .rst-content code{font-weight:bold;color:#404040}.rst-content a tt,.rst-content a tt,.rst-content a code{color:#2980B9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:bold}.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{margin-bottom:12px !important}.rst-content dl dd{margin:0 0 12px 24px}.rst-content dl:not(.docutils){margin-bottom:24px}.rst-content dl:not(.docutils) dt{display:inline-block;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980B9;border-top:solid 3px #6ab0de;padding:6px;position:relative}.rst-content dl:not(.docutils) dt:before{color:#6ab0de}.rst-content dl:not(.docutils) dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dl dt{margin-bottom:6px;border:none;border-left:solid 3px #ccc;background:#f0f0f0;color:#555}.rst-content dl:not(.docutils) dl dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dt:first-child{margin-top:0}.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) code{font-weight:bold}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) code.descclassname{background-color:transparent;border:none;padding:0;font-size:100% !important}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname{font-weight:bold}.rst-content dl:not(.docutils) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:bold}.rst-content dl:not(.docutils) .property{display:inline-block;padding-right:8px}.rst-content .viewcode-link,.rst-content .viewcode-back{display:inline-block;color:#27AE60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:bold}.rst-content tt.download,.rst-content code.download{background:inherit;padding:inherit;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{margin-right:4px}@media screen and (max-width: 480px){.rst-content .sidebar{width:100%}}span[id*='MathJax-Span']{color:#404040}.math{text-align:center}@font-face{font-family:"Inconsolata";font-style:normal;font-weight:400;src:local("Inconsolata"),local("Inconsolata-Regular"),url(../fonts/Inconsolata-Regular.ttf) format("truetype")}@font-face{font-family:"Inconsolata";font-style:normal;font-weight:700;src:local("Inconsolata Bold"),local("Inconsolata-Bold"),url(../fonts/Inconsolata-Bold.ttf) format("truetype")}@font-face{font-family:"Lato";font-style:normal;font-weight:400;src:local("Lato Regular"),local("Lato-Regular"),url(../fonts/Lato-Regular.ttf) format("truetype")}@font-face{font-family:"Lato";font-style:normal;font-weight:700;src:local("Lato Bold"),local("Lato-Bold"),url(../fonts/Lato-Bold.ttf) format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:400;src:local("Roboto Slab Regular"),local("RobotoSlab-Regular"),url(../fonts/RobotoSlab-Regular.ttf) format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:700;src:local("Roboto Slab Bold"),local("RobotoSlab-Bold"),url(../fonts/RobotoSlab-Bold.ttf) format("truetype")} -/*# sourceMappingURL=theme.css.map */ diff --git a/mpl-probscale/_static/doctools.js b/mpl-probscale/_static/doctools.js deleted file mode 100644 index c7bfe760aa8..00000000000 --- a/mpl-probscale/_static/doctools.js +++ /dev/null @@ -1,263 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - */ -jQuery.urldecode = function(x) { - return decodeURIComponent(x).replace(/\+/g, ' '); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s == 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node) { - if (node.nodeType == 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { - var span = document.createElement("span"); - span.className = className; - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this); - }); - } - } - return this.each(function() { - highlight(this); - }); -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated == 'undefined') - return string; - return (typeof translated == 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated == 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) == 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this == '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/mpl-probscale/_static/down-pressed.png b/mpl-probscale/_static/down-pressed.png deleted file mode 100644 index 7c30d004b71..00000000000 Binary files a/mpl-probscale/_static/down-pressed.png and /dev/null differ diff --git a/mpl-probscale/_static/down.png b/mpl-probscale/_static/down.png deleted file mode 100644 index f48098a43b0..00000000000 Binary files a/mpl-probscale/_static/down.png and /dev/null differ diff --git a/mpl-probscale/_static/file.png b/mpl-probscale/_static/file.png deleted file mode 100644 index 254c60bfbe2..00000000000 Binary files a/mpl-probscale/_static/file.png and /dev/null differ diff --git a/mpl-probscale/_static/fonts/Inconsolata-Bold.ttf b/mpl-probscale/_static/fonts/Inconsolata-Bold.ttf deleted file mode 100644 index 58c9fef3a01..00000000000 Binary files a/mpl-probscale/_static/fonts/Inconsolata-Bold.ttf and /dev/null differ diff --git a/mpl-probscale/_static/fonts/Inconsolata-Regular.ttf b/mpl-probscale/_static/fonts/Inconsolata-Regular.ttf deleted file mode 100644 index a87ffba6bef..00000000000 Binary files a/mpl-probscale/_static/fonts/Inconsolata-Regular.ttf and /dev/null differ diff --git a/mpl-probscale/_static/fonts/Lato-Bold.ttf b/mpl-probscale/_static/fonts/Lato-Bold.ttf deleted file mode 100644 index 74343694e2b..00000000000 Binary files a/mpl-probscale/_static/fonts/Lato-Bold.ttf and /dev/null differ diff --git a/mpl-probscale/_static/fonts/Lato-Regular.ttf b/mpl-probscale/_static/fonts/Lato-Regular.ttf deleted file mode 100644 index 04ea8efb136..00000000000 Binary files a/mpl-probscale/_static/fonts/Lato-Regular.ttf and /dev/null differ diff --git a/mpl-probscale/_static/fonts/RobotoSlab-Bold.ttf b/mpl-probscale/_static/fonts/RobotoSlab-Bold.ttf deleted file mode 100644 index df5d1df2730..00000000000 Binary files a/mpl-probscale/_static/fonts/RobotoSlab-Bold.ttf and /dev/null differ diff --git a/mpl-probscale/_static/fonts/RobotoSlab-Regular.ttf b/mpl-probscale/_static/fonts/RobotoSlab-Regular.ttf deleted file mode 100644 index eb52a790736..00000000000 Binary files a/mpl-probscale/_static/fonts/RobotoSlab-Regular.ttf and /dev/null differ diff --git a/mpl-probscale/_static/fonts/fontawesome-webfont.eot b/mpl-probscale/_static/fonts/fontawesome-webfont.eot deleted file mode 100644 index 84677bc0c5f..00000000000 Binary files a/mpl-probscale/_static/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/mpl-probscale/_static/fonts/fontawesome-webfont.svg b/mpl-probscale/_static/fonts/fontawesome-webfont.svg deleted file mode 100644 index d907b25ae60..00000000000 --- a/mpl-probscale/_static/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,520 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mpl-probscale/_static/fonts/fontawesome-webfont.ttf b/mpl-probscale/_static/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 96a3639cdde..00000000000 Binary files a/mpl-probscale/_static/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/mpl-probscale/_static/fonts/fontawesome-webfont.woff b/mpl-probscale/_static/fonts/fontawesome-webfont.woff deleted file mode 100644 index 628b6a52a87..00000000000 Binary files a/mpl-probscale/_static/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/mpl-probscale/_static/jquery-1.11.1.js b/mpl-probscale/_static/jquery-1.11.1.js deleted file mode 100644 index d4b67f7e6c1..00000000000 --- a/mpl-probscale/_static/jquery-1.11.1.js +++ /dev/null @@ -1,10308 +0,0 @@ -/*! - * jQuery JavaScript Library v1.11.1 - * http://jquery.com/ - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * - * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2014-05-01T17:42Z - */ - -(function( global, factory ) { - - if ( typeof module === "object" && typeof module.exports === "object" ) { - // For CommonJS and CommonJS-like environments where a proper window is present, - // execute the factory and get jQuery - // For environments that do not inherently posses a window with a document - // (such as Node.js), expose a jQuery-making factory as module.exports - // This accentuates the need for the creation of a real window - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Can't do this because several apps including ASP.NET trace -// the stack via arguments.caller.callee and Firefox dies if -// you try to trace through "use strict" call chains. (#13335) -// Support: Firefox 18+ -// - -var deletedIds = []; - -var slice = deletedIds.slice; - -var concat = deletedIds.concat; - -var push = deletedIds.push; - -var indexOf = deletedIds.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var support = {}; - - - -var - version = "1.11.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }, - - // Support: Android<4.1, IE<9 - // Make sure we trim BOM and NBSP - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, - - // Matches dashed string for camelizing - rmsPrefix = /^-ms-/, - rdashAlpha = /-([\da-z])/gi, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return letter.toUpperCase(); - }; - -jQuery.fn = jQuery.prototype = { - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // Start with an empty selector - selector: "", - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num != null ? - - // Return just the one element from the set - ( num < 0 ? this[ num + this.length ] : this[ num ] ) : - - // Return all the elements in a clean array - slice.call( this ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - ret.context = this.context; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: deletedIds.sort, - splice: deletedIds.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var src, copyIsArray, copy, name, options, clone, - target = arguments[0] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray(src) ? src : []; - - } else { - clone = src && jQuery.isPlainObject(src) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type(obj) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, - - isWindow: function( obj ) { - /* jshint eqeqeq: false */ - return obj != null && obj == obj.window; - }, - - isNumeric: function( obj ) { - // parseFloat NaNs numeric-cast false positives (null|true|false|"") - // ...but misinterprets leading-number strings, particularly hex literals ("0x...") - // subtraction forces infinities to NaN - return !jQuery.isArray( obj ) && obj - parseFloat( obj ) >= 0; - }, - - isEmptyObject: function( obj ) { - var name; - for ( name in obj ) { - return false; - } - return true; - }, - - isPlainObject: function( obj ) { - var key; - - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - try { - // Not own constructor property must be Object - if ( obj.constructor && - !hasOwn.call(obj, "constructor") && - !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - } catch ( e ) { - // IE8,9 Will throw exceptions on certain host objects #9897 - return false; - } - - // Support: IE<9 - // Handle iteration over inherited properties before own properties. - if ( support.ownLast ) { - for ( key in obj ) { - return hasOwn.call( obj, key ); - } - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - for ( key in obj ) {} - - return key === undefined || hasOwn.call( obj, key ); - }, - - type: function( obj ) { - if ( obj == null ) { - return obj + ""; - } - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call(obj) ] || "object" : - typeof obj; - }, - - // Evaluates a script in a global context - // Workarounds based on findings by Jim Driscoll - // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context - globalEval: function( data ) { - if ( data && jQuery.trim( data ) ) { - // We use execScript on Internet Explorer - // We use an anonymous function so that context is window - // rather than jQuery in Firefox - ( window.execScript || function( data ) { - window[ "eval" ].call( window, data ); - } )( data ); - } - }, - - // Convert dashed to camelCase; used by the css and data modules - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - }, - - // args is for internal usage only - each: function( obj, callback, args ) { - var value, - i = 0, - length = obj.length, - isArray = isArraylike( obj ); - - if ( args ) { - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback.apply( obj[ i ], args ); - - if ( value === false ) { - break; - } - } - } else { - for ( i in obj ) { - value = callback.apply( obj[ i ], args ); - - if ( value === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback.call( obj[ i ], i, obj[ i ] ); - - if ( value === false ) { - break; - } - } - } else { - for ( i in obj ) { - value = callback.call( obj[ i ], i, obj[ i ] ); - - if ( value === false ) { - break; - } - } - } - } - - return obj; - }, - - // Support: Android<4.1, IE<9 - trim: function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArraylike( Object(arr) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - var len; - - if ( arr ) { - if ( indexOf ) { - return indexOf.call( arr, elem, i ); - } - - len = arr.length; - i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; - - for ( ; i < len; i++ ) { - // Skip accessing in sparse arrays - if ( i in arr && arr[ i ] === elem ) { - return i; - } - } - } - - return -1; - }, - - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - while ( j < len ) { - first[ i++ ] = second[ j++ ]; - } - - // Support: IE<9 - // Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists) - if ( len !== len ) { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var value, - i = 0, - length = elems.length, - isArray = isArraylike( elems ), - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - var args, proxy, tmp; - - if ( typeof context === "string" ) { - tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - args = slice.call( arguments, 2 ); - proxy = function() { - return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || jQuery.guid++; - - return proxy; - }, - - now: function() { - return +( new Date() ); - }, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -}); - -// Populate the class2type map -jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -}); - -function isArraylike( obj ) { - var length = obj.length, - type = jQuery.type( obj ); - - if ( type === "function" || jQuery.isWindow( obj ) ) { - return false; - } - - if ( obj.nodeType === 1 && length ) { - return true; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v1.10.19 - * http://sizzlejs.com/ - * - * Copyright 2013 jQuery Foundation, Inc. and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2014-04-18 - */ -(function( window ) { - -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + -(new Date()), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // General-purpose constants - strundefined = typeof undefined, - MAX_NEGATIVE = 1 << 31, - - // Instance methods - hasOwn = ({}).hasOwnProperty, - arr = [], - pop = arr.pop, - push_native = arr.push, - push = arr.push, - slice = arr.slice, - // Use a stripped-down indexOf if we can't use a native one - indexOf = arr.indexOf || function( elem ) { - var i = 0, - len = this.length; - for ( ; i < len; i++ ) { - if ( this[i] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - // http://www.w3.org/TR/css3-syntax/#characters - characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", - - // Loosely modeled on CSS identifier characters - // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors - // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = characterEncoding.replace( "w", "w#" ), - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace + - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + - "*\\]", - - pseudos = ":(" + characterEncoding + ")(?:\\((" + - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), - - rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + characterEncoding + ")" ), - "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), - "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - rescape = /'|\\/g, - - // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), - funescape = function( _, escaped, escapedWhitespace ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - // Support: Firefox<24 - // Workaround erroneous numeric interpretation of +"0x" - return high !== high || escapedWhitespace ? - escaped : - high < 0 ? - // BMP codepoint - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }; - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - (arr = slice.call( preferredDoc.childNodes )), - preferredDoc.childNodes - ); - // Support: Android<4.0 - // Detect silently failing push.apply - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - push_native.apply( target, slice.call(els) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - // Can't trust NodeList.length - while ( (target[j++] = els[i++]) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var match, elem, m, nodeType, - // QSA vars - i, groups, old, nid, newContext, newSelector; - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - - context = context || document; - results = results || []; - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { - return []; - } - - if ( documentIsHTML && !seed ) { - - // Shortcuts - if ( (match = rquickExpr.exec( selector )) ) { - // Speed-up: Sizzle("#ID") - if ( (m = match[1]) ) { - if ( nodeType === 9 ) { - elem = context.getElementById( m ); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document (jQuery #6963) - if ( elem && elem.parentNode ) { - // Handle the case where IE, Opera, and Webkit return items - // by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - } else { - // Context is not a document - if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && - contains( context, elem ) && elem.id === m ) { - results.push( elem ); - return results; - } - } - - // Speed-up: Sizzle("TAG") - } else if ( match[2] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Speed-up: Sizzle(".CLASS") - } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // QSA path - if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { - nid = old = expando; - newContext = context; - newSelector = nodeType === 9 && selector; - - // qSA works strangely on Element-rooted queries - // We can work around this by specifying an extra ID on the root - // and working up from there (Thanks to Andrew Dupont for the technique) - // IE 8 doesn't work on object elements - if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { - groups = tokenize( selector ); - - if ( (old = context.getAttribute("id")) ) { - nid = old.replace( rescape, "\\$&" ); - } else { - context.setAttribute( "id", nid ); - } - nid = "[id='" + nid + "'] "; - - i = groups.length; - while ( i-- ) { - groups[i] = nid + toSelector( groups[i] ); - } - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; - newSelector = groups.join(","); - } - - if ( newSelector ) { - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch(qsaError) { - } finally { - if ( !old ) { - context.removeAttribute("id"); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {Function(string, Object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return (cache[ key + " " ] = value); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created div and expects a boolean result - */ -function assert( fn ) { - var div = document.createElement("div"); - - try { - return !!fn( div ); - } catch (e) { - return false; - } finally { - // Remove from its parent by default - if ( div.parentNode ) { - div.parentNode.removeChild( div ); - } - // release memory in IE - div = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split("|"), - i = attrs.length; - - while ( i-- ) { - Expr.attrHandle[ arr[i] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - ( ~b.sourceIndex || MAX_NEGATIVE ) - - ( ~a.sourceIndex || MAX_NEGATIVE ); - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( (cur = cur.nextSibling) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction(function( argument ) { - argument = +argument; - return markFunction(function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ (j = matchIndexes[i]) ] ) { - seed[j] = !(matches[j] = seed[j]); - } - } - }); - }); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== strundefined && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = elem && (elem.ownerDocument || elem).documentElement; - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, - doc = node ? node.ownerDocument || node : preferredDoc, - parent = doc.defaultView; - - // If no document and documentElement is available, return - if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Set our document - document = doc; - docElem = doc.documentElement; - - // Support tests - documentIsHTML = !isXML( doc ); - - // Support: IE>8 - // If iframe document is assigned to "document" variable and if iframe has been reloaded, - // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 - // IE6-8 do not support the defaultView property so parent will be undefined - if ( parent && parent !== parent.top ) { - // IE11 does not have attachEvent, so all must suffer - if ( parent.addEventListener ) { - parent.addEventListener( "unload", function() { - setDocument(); - }, false ); - } else if ( parent.attachEvent ) { - parent.attachEvent( "onunload", function() { - setDocument(); - }); - } - } - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) - support.attributes = assert(function( div ) { - div.className = "i"; - return !div.getAttribute("className"); - }); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert(function( div ) { - div.appendChild( doc.createComment("") ); - return !div.getElementsByTagName("*").length; - }); - - // Check if getElementsByClassName can be trusted - support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) { - div.innerHTML = "
"; - - // Support: Safari<4 - // Catch class over-caching - div.firstChild.className = "i"; - // Support: Opera<10 - // Catch gEBCN failure to find non-leading classes - return div.getElementsByClassName("i").length === 2; - }); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert(function( div ) { - docElem.appendChild( div ).id = expando; - return !doc.getElementsByName || !doc.getElementsByName( expando ).length; - }); - - // ID find and filter - if ( support.getById ) { - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== strundefined && documentIsHTML ) { - var m = context.getElementById( id ); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - return m && m.parentNode ? [ m ] : []; - } - }; - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute("id") === attrId; - }; - }; - } else { - // Support: IE6/7 - // getElementById is not reliable as a find shortcut - delete Expr.find["ID"]; - - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); - return node && node.value === attrId; - }; - }; - } - - // Tag - Expr.find["TAG"] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== strundefined ) { - return context.getElementsByTagName( tag ); - } - } : - function( tag, context ) { - var elem, - tmp = [], - i = 0, - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( (elem = results[i++]) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See http://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) { - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert(function( div ) { - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // http://bugs.jquery.com/ticket/12359 - div.innerHTML = ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( div.querySelectorAll("[msallowclip^='']").length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !div.querySelectorAll("[selected]").length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); - } - }); - - assert(function( div ) { - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = doc.createElement("input"); - input.setAttribute( "type", "hidden" ); - div.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( div.querySelectorAll("[name=d]").length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( !div.querySelectorAll(":enabled").length ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Opera 10-11 does not throw on post-comma invalid pseudos - div.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); - } - - if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { - - assert(function( div ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( div, "div" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( div, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - }); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully does not implement inclusive descendent - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { - - // Choose the first element that is related to our preferred document - if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { - return -1; - } - if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - return a === doc ? -1 : - b === doc ? 1 : - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( (cur = cur.parentNode) ) { - ap.unshift( cur ); - } - cur = b; - while ( (cur = cur.parentNode) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { - i++; - } - - return i ? - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : - - // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : - 0; - }; - - return doc; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - // Make sure that attribute selectors are quoted - expr = expr.replace( rattributeQuotes, "='$1']" ); - - if ( support.matchesSelector && documentIsHTML && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch(e) {} - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - (val = elem.getAttributeNode(name)) && val.specified ? - val.value : - null; -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( (elem = results[i++]) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - // If no nodeType, this is expected to be an array - while ( (node = elem[i++]) ) { - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); - - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[1] = match[1].toLowerCase(); - - if ( match[1].slice( 0, 3 ) === "nth" ) { - // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); - - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[6] && match[2]; - - if ( matchExpr["CHILD"].test( match[0] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[3] ) { - match[2] = match[4] || match[5] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && - // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { - - // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { return true; } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" ); - }); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - }; - }, - - "CHILD": function( type, what, argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, context, xml ) { - var cache, outerCache, node, diff, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( (node = node[ dir ]) ) { - if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { - return false; - } - } - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - // Seek `elem` from a previously-cached index - outerCache = parent[ expando ] || (parent[ expando ] = {}); - cache = outerCache[ type ] || []; - nodeIndex = cache[0] === dirruns && cache[1]; - diff = cache[0] === dirruns && cache[2]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( (node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - outerCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - // Use previously-cached element index if available - } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { - diff = cache[1]; - - // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) - } else { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { - // Cache the index of each encountered element - if ( useCache ) { - (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf.call( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); - } - }) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - // Potentially complex pseudos - "not": markFunction(function( selector ) { - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); - } - } - }) : - function( elem, context, xml ) { - input[0] = elem; - matcher( input, null, xml, results ); - return !results.pop(); - }; - }), - - "has": markFunction(function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - }), - - "contains": markFunction(function( text ) { - return function( elem ) { - return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; - }; - }), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - // lang value must be a valid identifier - if ( !ridentifier.test(lang || "") ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( (elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); - return false; - }; - }), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); - }, - - // Boolean properties - "enabled": function( elem ) { - return elem.disabled === false; - }, - - "disabled": function( elem ) { - return elem.disabled === true; - }, - - "checked": function( elem ) { - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); - }, - - "selected": function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo(function() { - return [ 0 ]; - }), - - "last": createPositionalPseudo(function( matchIndexes, length ) { - return [ length - 1 ]; - }), - - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - }), - - "even": createPositionalPseudo(function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "odd": createPositionalPseudo(function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }) - } -}; - -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { - if ( match ) { - // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; - } - groups.push( (tokens = []) ); - } - - matched = false; - - // Combinators - if ( (match = rcombinators.exec( soFar )) ) { - matched = match.shift(); - tokens.push({ - value: matched, - // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - }); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { - matched = match.shift(); - tokens.push({ - value: matched, - type: type, - matches: match - }); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[i].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - checkNonElements = base && dir === "parentNode", - doneName = done++; - - return combinator.first ? - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching - if ( xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); - if ( (oldCache = outerCache[ dir ]) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return (newCache[ 2 ] = oldCache[ 2 ]); - } else { - // Reuse newcache so results back-propagate to previous elements - outerCache[ dir ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { - return true; - } - } - } - } - } - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[0]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction(function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) ) { - // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); - } - } - postFinder( null, (matcherOut = []), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { - - seed[temp] = !(results[temp] = elem); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - }); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf.call( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - } ]; - - for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; - } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), - len = elems.length; - - if ( outermost ) { - outermostContext = context !== document && context; - } - - // Add elements passing elementMatchers directly to results - // Keep `i` a string if there are no elements so `matchedCount` will be "00" below - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && (elem = elems[i]) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // Apply set filters to unmatched elements - matchedCount += i; - if ( bySet && i !== matchedCount ) { - j = 0; - while ( (matcher = setMatchers[j++]) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[i] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( (selector = compiled.selector || selector) ); - - results = results || []; - - // Try to minimize operations if there is no seed and only one group - if ( match.length === 1 ) { - - // Take a shortcut and set the context if the root selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - support.getById && context.nodeType === 9 && documentIsHTML && - Expr.relative[ tokens[1].type ] ) { - - context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[i]; - - // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { - break; - } - if ( (find = Expr.find[ type ]) ) { - // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context - )) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; - -// Support: Chrome<14 -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert(function( div1 ) { - // Should return 1, but returns 4 (following) - return div1.compareDocumentPosition( document.createElement("div") ) & 1; -}); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert(function( div ) { - div.innerHTML = ""; - return div.firstChild.getAttribute("href") === "#" ; -}) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - }); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert(function( div ) { - div.innerHTML = ""; - div.firstChild.setAttribute( "value", "" ); - return div.firstChild.getAttribute( "value" ) === ""; -}) ) { - addHandle( "value", function( elem, name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - }); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert(function( div ) { - return div.getAttribute("disabled") == null; -}) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - (val = elem.getAttributeNode( name )) && val.specified ? - val.value : - null; - } - }); -} - -return Sizzle; - -})( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.pseudos; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - - -var rneedsContext = jQuery.expr.match.needsContext; - -var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); - - - -var risSimple = /^.[^:#\[\.,]*$/; - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - /* jshint -W018 */ - return !!qualifier.call( elem, i, elem ) !== not; - }); - - } - - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - }); - - } - - if ( typeof qualifier === "string" ) { - if ( risSimple.test( qualifier ) ) { - return jQuery.filter( qualifier, elements, not ); - } - - qualifier = jQuery.filter( qualifier, elements ); - } - - return jQuery.grep( elements, function( elem ) { - return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not; - }); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 && elem.nodeType === 1 ? - jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : - jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - })); -}; - -jQuery.fn.extend({ - find: function( selector ) { - var i, - ret = [], - self = this, - len = self.length; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter(function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - }) ); - } - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - // Needed because $( selector, context ) becomes $( context ).find( selector ) - ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); - ret.selector = this.selector ? this.selector + " " + selector : selector; - return ret; - }, - filter: function( selector ) { - return this.pushStack( winnow(this, selector || [], false) ); - }, - not: function( selector ) { - return this.pushStack( winnow(this, selector || [], true) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -}); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // Use the correct document accordingly with window argument (sandbox) - document = window.document, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, - - init = jQuery.fn.init = function( selector, context ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - context = context instanceof jQuery ? context[0] : context; - - // scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[1], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - // Properties of context are called as methods if possible - if ( jQuery.isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[2] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || rootjQuery ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return typeof rootjQuery.ready !== "undefined" ? - rootjQuery.ready( selector ) : - // Execute immediately if ready is not present - selector( jQuery ); - } - - if ( selector.selector !== undefined ) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.extend({ - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -jQuery.fn.extend({ - has: function( target ) { - var i, - targets = jQuery( target, this ), - len = targets.length; - - return this.filter(function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? - jQuery( selectors, context || this.context ) : - 0; - - for ( ; i < l; i++ ) { - for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { - // Always skip document fragments - if ( cur.nodeType < 11 && (pos ? - pos.index(cur) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector(cur, selectors)) ) { - - matched.push( cur ); - break; - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; - } - - // index in selector - if ( typeof elem === "string" ) { - return jQuery.inArray( this[0], jQuery( elem ) ); - } - - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.unique( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter(selector) - ); - } -}); - -function sibling( cur, dir ) { - do { - cur = cur[ dir ]; - } while ( cur && cur.nodeType !== 1 ); - - return cur; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - if ( this.length > 1 ) { - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - ret = jQuery.unique( ret ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - } - - return this.pushStack( ret ); - }; -}); -var rnotwhite = (/\S+/g); - - - -// String to Object options format cache -var optionsCache = {}; - -// Convert String-formatted options into Object-formatted ones and store in cache -function createOptions( options ) { - var object = optionsCache[ options ] = {}; - jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { - object[ flag ] = true; - }); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - ( optionsCache[ options ] || createOptions( options ) ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - // Last fire value (for non-forgettable lists) - memory, - // Flag to know if list was already fired - fired, - // End of the loop when firing - firingLength, - // Index of currently firing callback (modified by remove if needed) - firingIndex, - // First callback to fire (used internally by add and fireWith) - firingStart, - // Actual callback list - list = [], - // Stack of fire calls for repeatable lists - stack = !options.once && [], - // Fire callbacks - fire = function( data ) { - memory = options.memory && data; - fired = true; - firingIndex = firingStart || 0; - firingStart = 0; - firingLength = list.length; - firing = true; - for ( ; list && firingIndex < firingLength; firingIndex++ ) { - if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { - memory = false; // To prevent further calls using add - break; - } - } - firing = false; - if ( list ) { - if ( stack ) { - if ( stack.length ) { - fire( stack.shift() ); - } - } else if ( memory ) { - list = []; - } else { - self.disable(); - } - } - }, - // Actual Callbacks object - self = { - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - // First, we save the current length - var start = list.length; - (function add( args ) { - jQuery.each( args, function( _, arg ) { - var type = jQuery.type( arg ); - if ( type === "function" ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && type !== "string" ) { - // Inspect recursively - add( arg ); - } - }); - })( arguments ); - // Do we need to add the callbacks to the - // current firing batch? - if ( firing ) { - firingLength = list.length; - // With memory, if we're not firing then - // we should call right away - } else if ( memory ) { - firingStart = start; - fire( memory ); - } - } - return this; - }, - // Remove a callback from the list - remove: function() { - if ( list ) { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - // Handle firing indexes - if ( firing ) { - if ( index <= firingLength ) { - firingLength--; - } - if ( index <= firingIndex ) { - firingIndex--; - } - } - } - }); - } - return this; - }, - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); - }, - // Remove all callbacks from the list - empty: function() { - list = []; - firingLength = 0; - return this; - }, - // Have the list do nothing anymore - disable: function() { - list = stack = memory = undefined; - return this; - }, - // Is it disabled? - disabled: function() { - return !list; - }, - // Lock the list in its current state - lock: function() { - stack = undefined; - if ( !memory ) { - self.disable(); - } - return this; - }, - // Is it locked? - locked: function() { - return !stack; - }, - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( list && ( !fired || stack ) ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - if ( firing ) { - stack.push( args ); - } else { - fire( args ); - } - } - return this; - }, - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -jQuery.extend({ - - Deferred: function( func ) { - var tuples = [ - // action, add listener, listener list, final state - [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], - [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], - [ "notify", "progress", jQuery.Callbacks("memory") ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - then: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - return jQuery.Deferred(function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { - var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; - // deferred[ done | fail | progress ] for forwarding actions to newDefer - deferred[ tuple[1] ](function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && jQuery.isFunction( returned.promise ) ) { - returned.promise() - .done( newDefer.resolve ) - .fail( newDefer.reject ) - .progress( newDefer.notify ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); - } - }); - }); - fns = null; - }).promise(); - }, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Keep pipe for back-compat - promise.pipe = promise.then; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 3 ]; - - // promise[ done | fail | progress ] = list.add - promise[ tuple[1] ] = list.add; - - // Handle state - if ( stateString ) { - list.add(function() { - // state = [ resolved | rejected ] - state = stateString; - - // [ reject_list | resolve_list ].disable; progress_list.lock - }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); - } - - // deferred[ resolve | reject | notify ] - deferred[ tuple[0] ] = function() { - deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); - return this; - }; - deferred[ tuple[0] + "With" ] = list.fireWith; - }); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( subordinate /* , ..., subordinateN */ ) { - var i = 0, - resolveValues = slice.call( arguments ), - length = resolveValues.length, - - // the count of uncompleted subordinates - remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, - - // the master Deferred. If resolveValues consist of only a single Deferred, just use that. - deferred = remaining === 1 ? subordinate : jQuery.Deferred(), - - // Update function for both resolve and progress values - updateFunc = function( i, contexts, values ) { - return function( value ) { - contexts[ i ] = this; - values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( values === progressValues ) { - deferred.notifyWith( contexts, values ); - - } else if ( !(--remaining) ) { - deferred.resolveWith( contexts, values ); - } - }; - }, - - progressValues, progressContexts, resolveContexts; - - // add listeners to Deferred subordinates; treat others as resolved - if ( length > 1 ) { - progressValues = new Array( length ); - progressContexts = new Array( length ); - resolveContexts = new Array( length ); - for ( ; i < length; i++ ) { - if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { - resolveValues[ i ].promise() - .done( updateFunc( i, resolveContexts, resolveValues ) ) - .fail( deferred.reject ) - .progress( updateFunc( i, progressContexts, progressValues ) ); - } else { - --remaining; - } - } - } - - // if we're not waiting on anything, resolve the master - if ( !remaining ) { - deferred.resolveWith( resolveContexts, resolveValues ); - } - - return deferred.promise(); - } -}); - - -// The deferred used on DOM ready -var readyList; - -jQuery.fn.ready = function( fn ) { - // Add the callback - jQuery.ready.promise().done( fn ); - - return this; -}; - -jQuery.extend({ - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Hold (or release) the ready event - holdReady: function( hold ) { - if ( hold ) { - jQuery.readyWait++; - } else { - jQuery.ready( true ); - } - }, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.triggerHandler ) { - jQuery( document ).triggerHandler( "ready" ); - jQuery( document ).off( "ready" ); - } - } -}); - -/** - * Clean-up method for dom ready events - */ -function detach() { - if ( document.addEventListener ) { - document.removeEventListener( "DOMContentLoaded", completed, false ); - window.removeEventListener( "load", completed, false ); - - } else { - document.detachEvent( "onreadystatechange", completed ); - window.detachEvent( "onload", completed ); - } -} - -/** - * The ready event handler and self cleanup method - */ -function completed() { - // readyState === "complete" is good enough for us to call the dom ready in oldIE - if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { - detach(); - jQuery.ready(); - } -} - -jQuery.ready.promise = function( obj ) { - if ( !readyList ) { - - readyList = jQuery.Deferred(); - - // Catch cases where $(document).ready() is called after the browser event has already occurred. - // we once tried to use readyState "interactive" here, but it caused issues like the one - // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 - if ( document.readyState === "complete" ) { - // Handle it asynchronously to allow scripts the opportunity to delay ready - setTimeout( jQuery.ready ); - - // Standards-based browsers support DOMContentLoaded - } else if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed, false ); - - // If IE event model is used - } else { - // Ensure firing before onload, maybe late but safe also for iframes - document.attachEvent( "onreadystatechange", completed ); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", completed ); - - // If IE and not a frame - // continually check to see if the document is ready - var top = false; - - try { - top = window.frameElement == null && document.documentElement; - } catch(e) {} - - if ( top && top.doScroll ) { - (function doScrollCheck() { - if ( !jQuery.isReady ) { - - try { - // Use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - top.doScroll("left"); - } catch(e) { - return setTimeout( doScrollCheck, 50 ); - } - - // detach all dom ready events - detach(); - - // and execute any waiting functions - jQuery.ready(); - } - })(); - } - } - } - return readyList.promise( obj ); -}; - - -var strundefined = typeof undefined; - - - -// Support: IE<9 -// Iteration over object's inherited properties before its own -var i; -for ( i in jQuery( support ) ) { - break; -} -support.ownLast = i !== "0"; - -// Note: most support tests are defined in their respective modules. -// false until the test is run -support.inlineBlockNeedsLayout = false; - -// Execute ASAP in case we need to set body.style.zoom -jQuery(function() { - // Minified: var a,b,c,d - var val, div, body, container; - - body = document.getElementsByTagName( "body" )[ 0 ]; - if ( !body || !body.style ) { - // Return for frameset docs that don't have a body - return; - } - - // Setup - div = document.createElement( "div" ); - container = document.createElement( "div" ); - container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"; - body.appendChild( container ).appendChild( div ); - - if ( typeof div.style.zoom !== strundefined ) { - // Support: IE<8 - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - div.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1"; - - support.inlineBlockNeedsLayout = val = div.offsetWidth === 3; - if ( val ) { - // Prevent IE 6 from affecting layout for positioned elements #11048 - // Prevent IE from shrinking the body in IE 7 mode #12869 - // Support: IE<8 - body.style.zoom = 1; - } - } - - body.removeChild( container ); -}); - - - - -(function() { - var div = document.createElement( "div" ); - - // Execute the test only if not already executed in another module. - if (support.deleteExpando == null) { - // Support: IE<9 - support.deleteExpando = true; - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - } - - // Null elements to avoid leaks in IE. - div = null; -})(); - - -/** - * Determines whether an object can have data - */ -jQuery.acceptData = function( elem ) { - var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ], - nodeType = +elem.nodeType || 1; - - // Do not set data on non-element DOM nodes because it will not be cleared (#8335). - return nodeType !== 1 && nodeType !== 9 ? - false : - - // Nodes accept data unless otherwise specified; rejection can be conditional - !noData || noData !== true && elem.getAttribute("classid") === noData; -}; - - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /([A-Z])/g; - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - - var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); - - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - // Only convert to a number if it doesn't change the string - +data + "" === data ? +data : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - -// checks a cache object for emptiness -function isEmptyDataObject( obj ) { - var name; - for ( name in obj ) { - - // if the public data object is empty, the private is still empty - if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { - continue; - } - if ( name !== "toJSON" ) { - return false; - } - } - - return true; -} - -function internalData( elem, name, data, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var ret, thisCache, - internalKey = jQuery.expando, - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++; - } else { - id = internalKey; - } - } - - if ( !cache[ id ] ) { - // Avoid exposing jQuery metadata on plain JS objects when the object - // is serialized using JSON.stringify - cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" || typeof name === "function" ) { - if ( pvt ) { - cache[ id ] = jQuery.extend( cache[ id ], name ); - } else { - cache[ id ].data = jQuery.extend( cache[ id ].data, name ); - } - } - - thisCache = cache[ id ]; - - // jQuery data() is stored in a separate object inside the object's internal data - // cache in order to avoid key collisions between internal data and user-defined - // data. - if ( !pvt ) { - if ( !thisCache.data ) { - thisCache.data = {}; - } - - thisCache = thisCache.data; - } - - if ( data !== undefined ) { - thisCache[ jQuery.camelCase( name ) ] = data; - } - - // Check for both converted-to-camel and non-converted data property names - // If a data property was specified - if ( typeof name === "string" ) { - - // First Try to find as-is property data - ret = thisCache[ name ]; - - // Test for null|undefined property data - if ( ret == null ) { - - // Try to find the camelCased property - ret = thisCache[ jQuery.camelCase( name ) ]; - } - } else { - ret = thisCache; - } - - return ret; -} - -function internalRemoveData( elem, name, pvt ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var thisCache, i, - isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - id = isNode ? elem[ jQuery.expando ] : jQuery.expando; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - - thisCache = pvt ? cache[ id ] : cache[ id ].data; - - if ( thisCache ) { - - // Support array or space separated string names for data keys - if ( !jQuery.isArray( name ) ) { - - // try the string as a key before any manipulation - if ( name in thisCache ) { - name = [ name ]; - } else { - - // split the camel cased version by spaces unless a key with the spaces exists - name = jQuery.camelCase( name ); - if ( name in thisCache ) { - name = [ name ]; - } else { - name = name.split(" "); - } - } - } else { - // If "name" is an array of keys... - // When data is initially created, via ("key", "val") signature, - // keys will be converted to camelCase. - // Since there is no way to tell _how_ a key was added, remove - // both plain key and camelCase key. #12786 - // This will only penalize the array argument path. - name = name.concat( jQuery.map( name, jQuery.camelCase ) ); - } - - i = name.length; - while ( i-- ) { - delete thisCache[ name[i] ]; - } - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( !pvt ) { - delete cache[ id ].data; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !isEmptyDataObject( cache[ id ] ) ) { - return; - } - } - - // Destroy the cache - if ( isNode ) { - jQuery.cleanData( [ elem ], true ); - - // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) - /* jshint eqeqeq: false */ - } else if ( support.deleteExpando || cache != cache.window ) { - /* jshint eqeqeq: true */ - delete cache[ id ]; - - // When all else fails, null - } else { - cache[ id ] = null; - } -} - -jQuery.extend({ - cache: {}, - - // The following elements (space-suffixed to avoid Object.prototype collisions) - // throw uncatchable exceptions if you attempt to set expando properties - noData: { - "applet ": true, - "embed ": true, - // ...but Flash objects (which have this classid) *can* handle expandos - "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - return !!elem && !isEmptyDataObject( elem ); - }, - - data: function( elem, name, data ) { - return internalData( elem, name, data ); - }, - - removeData: function( elem, name ) { - return internalRemoveData( elem, name ); - }, - - // For internal use only. - _data: function( elem, name, data ) { - return internalData( elem, name, data, true ); - }, - - _removeData: function( elem, name ) { - return internalRemoveData( elem, name, true ); - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var i, name, data, - elem = this[0], - attrs = elem && elem.attributes; - - // Special expections of .data basically thwart jQuery.access, - // so implement the relevant behavior ourselves - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = jQuery.data( elem ); - - if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE11+ - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = jQuery.camelCase( name.slice(5) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - jQuery._data( elem, "parsedAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - return arguments.length > 1 ? - - // Sets one value - this.each(function() { - jQuery.data( this, key, value ); - }) : - - // Gets one value - // Try to fetch any internally stored data first - elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined; - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - - -jQuery.extend({ - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || jQuery.isArray(data) ) { - queue = jQuery._data( elem, type, jQuery.makeArray(data) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // not intended for public consumption - generates a queueHooks object, or returns the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return jQuery._data( elem, key ) || jQuery._data( elem, key, { - empty: jQuery.Callbacks("once memory").add(function() { - jQuery._removeData( elem, type + "queue" ); - jQuery._removeData( elem, key ); - }) - }); - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[0], type ); - } - - return data === undefined ? - this : - this.each(function() { - var queue = jQuery.queue( this, type, data ); - - // ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = jQuery._data( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -}); -var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var isHidden = function( elem, el ) { - // isHidden might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); - }; - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - length = elems.length, - bulk = key == null; - - // Sets many values - if ( jQuery.type( key ) === "object" ) { - chainable = true; - for ( i in key ) { - jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !jQuery.isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < length; i++ ) { - fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); - } - } - } - - return chainable ? - elems : - - // Gets - bulk ? - fn.call( elems ) : - length ? fn( elems[0], key ) : emptyGet; -}; -var rcheckableType = (/^(?:checkbox|radio)$/i); - - - -(function() { - // Minified: var a,b,c - var input = document.createElement( "input" ), - div = document.createElement( "div" ), - fragment = document.createDocumentFragment(); - - // Setup - div.innerHTML = "
a"; - - // IE strips leading whitespace when .innerHTML is used - support.leadingWhitespace = div.firstChild.nodeType === 3; - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - support.tbody = !div.getElementsByTagName( "tbody" ).length; - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - support.htmlSerialize = !!div.getElementsByTagName( "link" ).length; - - // Makes sure cloning an html5 element does not cause problems - // Where outerHTML is undefined, this still works - support.html5Clone = - document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav>"; - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - input.type = "checkbox"; - input.checked = true; - fragment.appendChild( input ); - support.appendChecked = input.checked; - - // Make sure textarea (and checkbox) defaultValue is properly cloned - // Support: IE6-IE11+ - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // #11217 - WebKit loses check when the name is after the checked attribute - fragment.appendChild( div ); - div.innerHTML = ""; - - // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3 - // old WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE<9 - // Opera does not clone events (and typeof div.attachEvent === undefined). - // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() - support.noCloneEvent = true; - if ( div.attachEvent ) { - div.attachEvent( "onclick", function() { - support.noCloneEvent = false; - }); - - div.cloneNode( true ).click(); - } - - // Execute the test only if not already executed in another module. - if (support.deleteExpando == null) { - // Support: IE<9 - support.deleteExpando = true; - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - } -})(); - - -(function() { - var i, eventName, - div = document.createElement( "div" ); - - // Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event) - for ( i in { submit: true, change: true, focusin: true }) { - eventName = "on" + i; - - if ( !(support[ i + "Bubbles" ] = eventName in window) ) { - // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) - div.setAttribute( eventName, "t" ); - support[ i + "Bubbles" ] = div.attributes[ eventName ].expando === false; - } - } - - // Null elements to avoid leaks in IE. - div = null; -})(); - - -var rformElems = /^(?:input|select|textarea)$/i, - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/, - rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - var tmp, events, t, handleObjIn, - special, eventHandle, handleObj, - handlers, type, namespaces, origType, - elemData = jQuery._data( elem ); - - // Don't attach events to noData or text/comment nodes (but allow plain objects) - if ( !elemData ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !(events = elemData.events) ) { - events = elemData.events = {}; - } - if ( !(eventHandle = elemData.handle) ) { - eventHandle = elemData.handle = function( e ) { - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ? - jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : - undefined; - }; - // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events - eventHandle.elem = elem; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnotwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend({ - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join(".") - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !(handlers = events[ type ]) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener/attachEvent if the special events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - var j, handleObj, tmp, - origCount, t, events, - special, handlers, type, - namespaces, origType, - elemData = jQuery.hasData( elem ) && jQuery._data( elem ); - - if ( !elemData || !(events = elemData.events) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnotwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[t] ) || []; - type = origType = tmp[1]; - namespaces = ( tmp[2] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - delete elemData.handle; - - // removeData also checks for emptiness and clears the expando if empty - // so use it instead of delete - jQuery._removeData( elem, "events" ); - } - }, - - trigger: function( event, data, elem, onlyHandlers ) { - var handle, ontype, cur, - bubbleType, special, tmp, i, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; - - cur = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf(".") >= 0 ) { - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split("."); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf(":") < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join("."); - event.namespace_re = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === (elem.ownerDocument || document) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { - - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && jQuery.acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && - jQuery.acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name name as the event. - // Can't use an .isFunction() check here because IE6/7 fails that test. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - try { - elem[ type ](); - } catch ( e ) { - // IE<9 dies on focus/blur to hidden element (#1486,#12518) - // only reproducible on winXP IE8 native, not IE9 in IE8 mode - } - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - dispatch: function( event ) { - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( event ); - - var i, ret, handleObj, matched, j, - handlerQueue = [], - args = slice.call( arguments ), - handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[0] = event; - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { - - // Triggered event must either 1) have no namespace, or - // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). - if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) - .apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( (event.result = ret) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var sel, handleObj, matches, i, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - // Black-hole SVG instance trees (#13180) - // Avoid non-left-click bubbling in Firefox (#3861) - if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { - - /* jshint eqeqeq: false */ - for ( ; cur != this; cur = cur.parentNode || this ) { - /* jshint eqeqeq: true */ - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { - matches = []; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matches[ sel ] === undefined ) { - matches[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) >= 0 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matches[ sel ] ) { - matches.push( handleObj ); - } - } - if ( matches.length ) { - handlerQueue.push({ elem: cur, handlers: matches }); - } - } - } - } - - // Add the remaining (directly-bound) handlers - if ( delegateCount < handlers.length ) { - handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); - } - - return handlerQueue; - }, - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // Create a writable copy of the event object and normalize some properties - var i, prop, copy, - type = event.type, - originalEvent = event, - fixHook = this.fixHooks[ type ]; - - if ( !fixHook ) { - this.fixHooks[ type ] = fixHook = - rmouseEvent.test( type ) ? this.mouseHooks : - rkeyEvent.test( type ) ? this.keyHooks : - {}; - } - copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; - - event = new jQuery.Event( originalEvent ); - - i = copy.length; - while ( i-- ) { - prop = copy[ i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Support: IE<9 - // Fix target property (#1925) - if ( !event.target ) { - event.target = originalEvent.srcElement || document; - } - - // Support: Chrome 23+, Safari? - // Target should not be a text node (#504, #13143) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Support: IE<9 - // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) - event.metaKey = !!event.metaKey; - - return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; - }, - - // Includes some event props shared by KeyEvent and MouseEvent - props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - - fixHooks: {}, - - keyHooks: { - props: "char charCode key keyCode".split(" "), - filter: function( event, original ) { - - // Add which for key events - if ( event.which == null ) { - event.which = original.charCode != null ? original.charCode : original.keyCode; - } - - return event; - } - }, - - mouseHooks: { - props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), - filter: function( event, original ) { - var body, eventDoc, doc, - button = original.button, - fromElement = original.fromElement; - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && original.clientX != null ) { - eventDoc = event.target.ownerDocument || document; - doc = eventDoc.documentElement; - body = eventDoc.body; - - event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); - event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && fromElement ) { - event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && button !== undefined ) { - event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); - } - - return event; - } - }, - - special: { - load: { - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - focus: { - // Fire native event if possible so blur/focus sequence is correct - trigger: function() { - if ( this !== safeActiveElement() && this.focus ) { - try { - this.focus(); - return false; - } catch ( e ) { - // Support: IE<9 - // If we error on focus to hidden element (#1486, #12518), - // let .trigger() run the handlers - } - } - }, - delegateType: "focusin" - }, - blur: { - trigger: function() { - if ( this === safeActiveElement() && this.blur ) { - this.blur(); - return false; - } - }, - delegateType: "focusout" - }, - click: { - // For checkbox, fire native event so checked state will be right - trigger: function() { - if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { - this.click(); - return false; - } - }, - - // For cross-browser consistency, don't fire native .click() on links - _default: function( event ) { - return jQuery.nodeName( event.target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - }, - - simulate: function( type, elem, event, bubble ) { - // Piggyback on a donor event to simulate a different one. - // Fake originalEvent to avoid donor's stopPropagation, but if the - // simulated event prevents default then we do the same on the donor. - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true, - originalEvent: {} - } - ); - if ( bubble ) { - jQuery.event.trigger( e, null, elem ); - } else { - jQuery.event.dispatch.call( elem, e ); - } - if ( e.isDefaultPrevented() ) { - event.preventDefault(); - } - } -}; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - var name = "on" + type; - - if ( elem.detachEvent ) { - - // #8545, #7054, preventing memory leaks for custom events in IE6-8 - // detachEvent needed property on element, by name of that event, to properly expose it to GC - if ( typeof elem[ name ] === strundefined ) { - elem[ name ] = null; - } - - elem.detachEvent( name, handle ); - } - }; - -jQuery.Event = function( src, props ) { - // Allow instantiation without the 'new' keyword - if ( !(this instanceof jQuery.Event) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - // Support: IE < 9, Android < 4.0 - src.returnValue === false ? - returnTrue : - returnFalse; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - if ( !e ) { - return; - } - - // If preventDefault exists, run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // Support: IE - // Otherwise set the returnValue property of the original event to false - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - if ( !e ) { - return; - } - // If stopPropagation exists, run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - - // Support: IE - // Set the cancelBubble property of the original event to true - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && e.stopImmediatePropagation ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Create mouseenter/leave events using mouseover/out and event-time checks -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || (related !== target && !jQuery.contains( target, related )) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -}); - -// IE submit delegation -if ( !support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Lazy-add a submit handler when a descendant form may potentially be submitted - jQuery.event.add( this, "click._submit keypress._submit", function( e ) { - // Node name check avoids a VML-related crash in IE (#9807) - var elem = e.target, - form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; - if ( form && !jQuery._data( form, "submitBubbles" ) ) { - jQuery.event.add( form, "submit._submit", function( event ) { - event._submit_bubble = true; - }); - jQuery._data( form, "submitBubbles", true ); - } - }); - // return undefined since we don't need an event listener - }, - - postDispatch: function( event ) { - // If form was submitted by the user, bubble the event up the tree - if ( event._submit_bubble ) { - delete event._submit_bubble; - if ( this.parentNode && !event.isTrigger ) { - jQuery.event.simulate( "submit", this.parentNode, event, true ); - } - } - }, - - teardown: function() { - // Only need this for delegated form submit events - if ( jQuery.nodeName( this, "form" ) ) { - return false; - } - - // Remove delegated handlers; cleanData eventually reaps submit handlers attached above - jQuery.event.remove( this, "._submit" ); - } - }; -} - -// IE change delegation and checkbox/radio fix -if ( !support.changeBubbles ) { - - jQuery.event.special.change = { - - setup: function() { - - if ( rformElems.test( this.nodeName ) ) { - // IE doesn't fire change on a check/radio until blur; trigger it on click - // after a propertychange. Eat the blur-change in special.change.handle. - // This still fires onchange a second time for check/radio after blur. - if ( this.type === "checkbox" || this.type === "radio" ) { - jQuery.event.add( this, "propertychange._change", function( event ) { - if ( event.originalEvent.propertyName === "checked" ) { - this._just_changed = true; - } - }); - jQuery.event.add( this, "click._change", function( event ) { - if ( this._just_changed && !event.isTrigger ) { - this._just_changed = false; - } - // Allow triggered, simulated change events (#11500) - jQuery.event.simulate( "change", this, event, true ); - }); - } - return false; - } - // Delegated event; lazy-add a change handler on descendant inputs - jQuery.event.add( this, "beforeactivate._change", function( e ) { - var elem = e.target; - - if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { - jQuery.event.add( elem, "change._change", function( event ) { - if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { - jQuery.event.simulate( "change", this.parentNode, event, true ); - } - }); - jQuery._data( elem, "changeBubbles", true ); - } - }); - }, - - handle: function( event ) { - var elem = event.target; - - // Swallow native change events from checkbox/radio, we already triggered them above - if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { - return event.handleObj.handler.apply( this, arguments ); - } - }, - - teardown: function() { - jQuery.event.remove( this, "._change" ); - - return !rformElems.test( this.nodeName ); - } - }; -} - -// Create "bubbling" focus and blur events -if ( !support.focusinBubbles ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - var doc = this.ownerDocument || this, - attaches = jQuery._data( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - jQuery._data( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this, - attaches = jQuery._data( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - jQuery._removeData( doc, fix ); - } else { - jQuery._data( doc, fix, attaches ); - } - } - }; - }); -} - -jQuery.fn.extend({ - - on: function( types, selector, data, fn, /*INTERNAL*/ one ) { - var type, origFn; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - this.on( type, selector, data, types[ type ], one ); - } - return this; - } - - if ( data == null && fn == null ) { - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return this; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return this.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - }); - }, - one: function( types, selector, data, fn ) { - return this.on( types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each(function() { - jQuery.event.remove( this, types, fn, selector ); - }); - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - triggerHandler: function( type, data ) { - var elem = this[0]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -}); - - -function createSafeFragment( document ) { - var list = nodeNames.split( "|" ), - safeFrag = document.createDocumentFragment(); - - if ( safeFrag.createElement ) { - while ( list.length ) { - safeFrag.createElement( - list.pop() - ); - } - } - return safeFrag; -} - -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + - "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", - rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, - rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, - rtagName = /<([\w:]+)/, - rtbody = /\s*$/g, - - // We have to close these tags to support XHTML (#13200) - wrapMap = { - option: [ 1, "" ], - legend: [ 1, "
", "
" ], - area: [ 1, "", "" ], - param: [ 1, "", "" ], - thead: [ 1, "", "
" ], - tr: [ 2, "", "
" ], - col: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, - // unless wrapped in a div with non-breaking characters in front of it. - _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
", "
" ] - }, - safeFragment = createSafeFragment( document ), - fragmentDiv = safeFragment.appendChild( document.createElement("div") ); - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -function getAll( context, tag ) { - var elems, elem, - i = 0, - found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) : - typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) : - undefined; - - if ( !found ) { - for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { - if ( !tag || jQuery.nodeName( elem, tag ) ) { - found.push( elem ); - } else { - jQuery.merge( found, getAll( elem, tag ) ); - } - } - } - - return tag === undefined || tag && jQuery.nodeName( context, tag ) ? - jQuery.merge( [ context ], found ) : - found; -} - -// Used in buildFragment, fixes the defaultChecked property -function fixDefaultChecked( elem ) { - if ( rcheckableType.test( elem.type ) ) { - elem.defaultChecked = elem.checked; - } -} - -// Support: IE<8 -// Manipulating tables requires a tbody -function manipulationTarget( elem, content ) { - return jQuery.nodeName( elem, "table" ) && - jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? - - elem.getElementsByTagName("tbody")[0] || - elem.appendChild( elem.ownerDocument.createElement("tbody") ) : - elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - var match = rscriptTypeMasked.exec( elem.type ); - if ( match ) { - elem.type = match[1]; - } else { - elem.removeAttribute("type"); - } - return elem; -} - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var elem, - i = 0; - for ( ; (elem = elems[i]) != null; i++ ) { - jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); - } -} - -function cloneCopyEvent( src, dest ) { - - if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { - return; - } - - var type, i, l, - oldData = jQuery._data( src ), - curData = jQuery._data( dest, oldData ), - events = oldData.events; - - if ( events ) { - delete curData.handle; - curData.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - - // make the cloned public data object a copy from the original - if ( curData.data ) { - curData.data = jQuery.extend( {}, curData.data ); - } -} - -function fixCloneNodeIssues( src, dest ) { - var nodeName, e, data; - - // We do not need to do anything for non-Elements - if ( dest.nodeType !== 1 ) { - return; - } - - nodeName = dest.nodeName.toLowerCase(); - - // IE6-8 copies events bound via attachEvent when using cloneNode. - if ( !support.noCloneEvent && dest[ jQuery.expando ] ) { - data = jQuery._data( dest ); - - for ( e in data.events ) { - jQuery.removeEvent( dest, e, data.handle ); - } - - // Event data gets referenced instead of copied if the expando gets copied too - dest.removeAttribute( jQuery.expando ); - } - - // IE blanks contents when cloning scripts, and tries to evaluate newly-set text - if ( nodeName === "script" && dest.text !== src.text ) { - disableScript( dest ).text = src.text; - restoreScript( dest ); - - // IE6-10 improperly clones children of object elements using classid. - // IE10 throws NoModificationAllowedError if parent is null, #12132. - } else if ( nodeName === "object" ) { - if ( dest.parentNode ) { - dest.outerHTML = src.outerHTML; - } - - // This path appears unavoidable for IE9. When cloning an object - // element in IE9, the outerHTML strategy above is not sufficient. - // If the src has innerHTML and the destination does not, - // copy the src.innerHTML into the dest.innerHTML. #10324 - if ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { - dest.innerHTML = src.innerHTML; - } - - } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - // IE6-8 fails to persist the checked state of a cloned checkbox - // or radio button. Worse, IE6-7 fail to give the cloned element - // a checked appearance if the defaultChecked value isn't also set - - dest.defaultChecked = dest.checked = src.checked; - - // IE6-7 get confused and end up setting the value of a cloned - // checkbox/radio button to an empty string instead of "on" - if ( dest.value !== src.value ) { - dest.value = src.value; - } - - // IE6-8 fails to return the selected option to the default selected - // state when cloning options - } else if ( nodeName === "option" ) { - dest.defaultSelected = dest.selected = src.defaultSelected; - - // IE6-8 fails to set the defaultValue to the correct value when - // cloning other types of input fields - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -jQuery.extend({ - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var destElements, node, clone, i, srcElements, - inPage = jQuery.contains( elem.ownerDocument, elem ); - - if ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { - clone = elem.cloneNode( true ); - - // IE<=8 does not properly clone detached, unknown element nodes - } else { - fragmentDiv.innerHTML = elem.outerHTML; - fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); - } - - if ( (!support.noCloneEvent || !support.noCloneChecked) && - (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { - - // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - // Fix all IE cloning issues - for ( i = 0; (node = srcElements[i]) != null; ++i ) { - // Ensure that the destination node is not null; Fixes #9587 - if ( destElements[i] ) { - fixCloneNodeIssues( node, destElements[i] ); - } - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0; (node = srcElements[i]) != null; i++ ) { - cloneCopyEvent( node, destElements[i] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - destElements = srcElements = node = null; - - // Return the cloned set - return clone; - }, - - buildFragment: function( elems, context, scripts, selection ) { - var j, elem, contains, - tmp, tag, tbody, wrap, - l = elems.length, - - // Ensure a safe fragment - safe = createSafeFragment( context ), - - nodes = [], - i = 0; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( jQuery.type( elem ) === "object" ) { - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || safe.appendChild( context.createElement("div") ); - - // Deserialize a standard representation - tag = (rtagName.exec( elem ) || [ "", "" ])[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - - tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; - - // Descend through wrappers to the right content - j = wrap[0]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Manually add leading whitespace removed by IE - if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); - } - - // Remove IE's autoinserted from table fragments - if ( !support.tbody ) { - - // String was a , *may* have spurious - elem = tag === "table" && !rtbody.test( elem ) ? - tmp.firstChild : - - // String was a bare or - wrap[1] === "
" && !rtbody.test( elem ) ? - tmp : - 0; - - j = elem && elem.childNodes.length; - while ( j-- ) { - if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { - elem.removeChild( tbody ); - } - } - } - - jQuery.merge( nodes, tmp.childNodes ); - - // Fix #12392 for WebKit and IE > 9 - tmp.textContent = ""; - - // Fix #12392 for oldIE - while ( tmp.firstChild ) { - tmp.removeChild( tmp.firstChild ); - } - - // Remember the top-level container for proper cleanup - tmp = safe.lastChild; - } - } - } - - // Fix #11356: Clear elements from fragment - if ( tmp ) { - safe.removeChild( tmp ); - } - - // Reset defaultChecked for any radios and checkboxes - // about to be appended to the DOM in IE 6/7 (#8060) - if ( !support.appendChecked ) { - jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); - } - - i = 0; - while ( (elem = nodes[ i++ ]) ) { - - // #4087 - If origin and destination elements are the same, and this is - // that element, do not do anything - if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( safe.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( (elem = tmp[ j++ ]) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - tmp = null; - - return safe; - }, - - cleanData: function( elems, /* internal */ acceptData ) { - var elem, type, id, data, - i = 0, - internalKey = jQuery.expando, - cache = jQuery.cache, - deleteExpando = support.deleteExpando, - special = jQuery.event.special; - - for ( ; (elem = elems[i]) != null; i++ ) { - if ( acceptData || jQuery.acceptData( elem ) ) { - - id = elem[ internalKey ]; - data = id && cache[ id ]; - - if ( data ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Remove cache only if it was not already removed by jQuery.event.remove - if ( cache[ id ] ) { - - delete cache[ id ]; - - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( deleteExpando ) { - delete elem[ internalKey ]; - - } else if ( typeof elem.removeAttribute !== strundefined ) { - elem.removeAttribute( internalKey ); - - } else { - elem[ internalKey ] = null; - } - - deletedIds.push( id ); - } - } - } - } - } -}); - -jQuery.fn.extend({ - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); - }, null, value, arguments.length ); - }, - - append: function() { - return this.domManip( arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - }); - }, - - prepend: function() { - return this.domManip( arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - }); - }, - - before: function() { - return this.domManip( arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - }); - }, - - after: function() { - return this.domManip( arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - }); - }, - - remove: function( selector, keepData /* Internal Use Only */ ) { - var elem, - elems = selector ? jQuery.filter( selector, this ) : this, - i = 0; - - for ( ; (elem = elems[i]) != null; i++ ) { - - if ( !keepData && elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem ) ); - } - - if ( elem.parentNode ) { - if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { - setGlobalEval( getAll( elem, "script" ) ); - } - elem.parentNode.removeChild( elem ); - } - } - - return this; - }, - - empty: function() { - var elem, - i = 0; - - for ( ; (elem = this[i]) != null; i++ ) { - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - } - - // Remove any remaining nodes - while ( elem.firstChild ) { - elem.removeChild( elem.firstChild ); - } - - // If this is a select, ensure that it displays empty (#12336) - // Support: IE<9 - if ( elem.options && jQuery.nodeName( elem, "select" ) ) { - elem.options.length = 0; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map(function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - }); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined ) { - return elem.nodeType === 1 ? - elem.innerHTML.replace( rinlinejQuery, "" ) : - undefined; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - ( support.htmlSerialize || !rnoshimcache.test( value ) ) && - ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && - !wrapMap[ (rtagName.exec( value ) || [ "", "" ])[ 1 ].toLowerCase() ] ) { - - value = value.replace( rxhtmlTag, "<$1>" ); - - try { - for (; i < l; i++ ) { - // Remove element nodes and prevent memory leaks - elem = this[i] || {}; - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch(e) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var arg = arguments[ 0 ]; - - // Make the changes, replacing each context element with the new content - this.domManip( arguments, function( elem ) { - arg = this.parentNode; - - jQuery.cleanData( getAll( this ) ); - - if ( arg ) { - arg.replaceChild( elem, this ); - } - }); - - // Force removal if there was no new content (e.g., from empty arguments) - return arg && (arg.length || arg.nodeType) ? this : this.remove(); - }, - - detach: function( selector ) { - return this.remove( selector, true ); - }, - - domManip: function( args, callback ) { - - // Flatten any nested arrays - args = concat.apply( [], args ); - - var first, node, hasScripts, - scripts, doc, fragment, - i = 0, - l = this.length, - set = this, - iNoClone = l - 1, - value = args[0], - isFunction = jQuery.isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( isFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return this.each(function( index ) { - var self = set.eq( index ); - if ( isFunction ) { - args[0] = value.call( this, index, self.html() ); - } - self.domManip( args, callback ); - }); - } - - if ( l ) { - fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - if ( first ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( this[i], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { - - if ( node.src ) { - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl ) { - jQuery._evalUrl( node.src ); - } - } else { - jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); - } - } - } - } - - // Fix #11809: Avoid leaking memory - fragment = first = null; - } - } - - return this; - } -}); - -jQuery.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - i = 0, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone(true); - jQuery( insert[i] )[ original ]( elems ); - - // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -}); - - -var iframe, - elemdisplay = {}; - -/** - * Retrieve the actual display of a element - * @param {String} name nodeName of the element - * @param {Object} doc Document object - */ -// Called only from within defaultDisplay -function actualDisplay( name, doc ) { - var style, - elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), - - // getDefaultComputedStyle might be reliably used only on attached element - display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ? - - // Use of this method is a temporary fix (more like optmization) until something better comes along, - // since it was removed from specification and supported only in FF - style.display : jQuery.css( elem[ 0 ], "display" ); - - // We don't have any data stored on the element, - // so use "detach" method as fast way to get rid of the element - elem.detach(); - - return display; -} - -/** - * Try to determine the default display value of an element - * @param {String} nodeName - */ -function defaultDisplay( nodeName ) { - var doc = document, - display = elemdisplay[ nodeName ]; - - if ( !display ) { - display = actualDisplay( nodeName, doc ); - - // If the simple way fails, read from inside an iframe - if ( display === "none" || !display ) { - - // Use the already-created iframe if possible - iframe = (iframe || jQuery( "